1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
use std::str::FromStr;
use std::process::ExitStatus;
use strum_macros::EnumString;
use std::io::{Read, Error, ErrorKind};
#[macro_use]
extern crate default_env;
fn systemctl (args: Vec<&str>) -> std::io::Result<ExitStatus> {
let mut child = std::process::Command::new(default_env!("SYSTEMCTL_PATH", "/usr/bin/systemctl"))
.args(args)
.stdout(std::process::Stdio::piped())
.stderr(std::process::Stdio::null())
.spawn()?;
child.wait()
}
fn systemctl_capture (args: Vec<&str>) -> std::io::Result<String> {
let mut child = std::process::Command::new(default_env!("SYSTEMCTL_PATH", "/usr/bin/systemctl"))
.args(args.clone())
.stdout(std::process::Stdio::piped())
.stderr(std::process::Stdio::null())
.spawn()?;
let _exitcode = child.wait()?;
let mut stdout : Vec<u8> = Vec::new();
if let Ok(size) = child.stdout.unwrap().read_to_end(&mut stdout) {
if size > 0 {
if let Ok(s) = String::from_utf8(stdout) {
Ok(s)
} else {
Err(Error::new(ErrorKind::InvalidData, "Invalid utf8 data in stdout"))
}
} else {
Err(Error::new(ErrorKind::InvalidData, "systemctl stdout empty"))
}
} else {
Err(Error::new(ErrorKind::InvalidData, "systemctl stdout empty"))
}
}
pub fn restart (unit: &str) -> std::io::Result<ExitStatus> { systemctl(vec!["restart", unit]) }
pub fn stop (unit: &str) -> std::io::Result<ExitStatus> { systemctl(vec!["stop", unit]) }
pub fn status (unit: &str) -> std::io::Result<String> { systemctl_capture(vec!["status", unit]) }
pub fn cat (unit: &str) -> std::io::Result<String> { systemctl_capture(vec!["cat", unit]) }
pub fn is_active (unit: &str) -> std::io::Result<bool> {
let status = systemctl_capture(vec!["is-active", unit])?;
Ok(status.trim_end().eq("active"))
}
pub fn isolate (unit: &str) -> std::io::Result<ExitStatus> { systemctl(vec!["isolate", unit]) }
pub fn freeze (unit: &str) -> std::io::Result<ExitStatus> { systemctl(vec!["freeze", unit]) }
pub fn unfreeze (unit: &str) -> std::io::Result<ExitStatus> { systemctl(vec!["thaw", unit]) }
pub fn exists (unit: &str) -> std::io::Result<bool> {
let status = status(unit);
Ok(status.is_ok() && !status.unwrap().trim_end().eq(&format!("Unit {}.service could not be found.", unit)))
}
pub fn list_units (type_filter: Option<&str>, state_filter: Option<&str>) -> std::io::Result<Vec<String>> {
let mut args = vec!["list-unit-files"];
if let Some(filter) = type_filter {
args.push("--type");
args.push(filter)
}
if let Some(filter) = state_filter {
args.push("--state");
args.push(filter)
}
let mut result : Vec<String> = Vec::new();
let content = systemctl_capture(args)?;
let lines = content.lines();
for l in lines.skip(1) { let parsed : Vec<_> = l.split_ascii_whitespace().collect();
if parsed.len() == 2 {
result.push(parsed[0].to_string())
}
}
Ok(result)
}
pub fn list_disabled_services() -> std::io::Result<Vec<String>> { Ok(list_units(Some("service"), Some("disabled"))?) }
pub fn list_enabled_services() -> std::io::Result<Vec<String>> { Ok(list_units(Some("service"), Some("enabled"))?) }
#[derive(Copy, Clone, PartialEq, Eq, EnumString, Debug)]
pub enum AutoStartStatus {
#[strum(serialize = "static")]
Static,
#[strum(serialize = "enabled")]
Enabled,
#[strum(serialize = "disabled")]
Disabled,
#[strum(serialize = "generated")]
Generated,
#[strum(serialize = "indirect")]
Indirect,
}
impl Default for AutoStartStatus {
fn default() -> AutoStartStatus { AutoStartStatus::Disabled }
}
#[derive(Copy, Clone, PartialEq, Eq, EnumString, Debug)]
pub enum Type {
#[strum(serialize = "automount")]
AutoMount,
#[strum(serialize = "mount")]
Mount,
#[strum(serialize = "service")]
Service,
#[strum(serialize = "scope")]
Scope,
#[strum(serialize = "socket")]
Socket,
#[strum(serialize = "slice")]
Slice,
#[strum(serialize = "timer")]
Timer,
#[strum(serialize = "path")]
Path,
#[strum(serialize = "target")]
Target,
}
impl Default for Type {
fn default() -> Type { Type::Service }
}
#[derive(Copy, Clone, PartialEq, Eq, EnumString, Debug)]
pub enum State {
#[strum(serialize = "masked")]
Masked,
#[strum(serialize = "loaded")]
Loaded,
}
impl Default for State {
fn default() -> State { State::Masked }
}
#[derive(Clone, Debug)]
pub enum Doc {
Man(String),
Url(String),
}
impl Doc {
pub fn as_man (&self) -> Option<&str> {
match self {
Doc::Man(s) => Some(&s),
_ => None,
}
}
pub fn as_url (&self) -> Option<&str> {
match self {
Doc::Url(s) => Some(&s),
_ => None,
}
}
}
impl std::str::FromStr for Doc {
type Err = std::io::Error;
fn from_str (status: &str) -> Result<Self, Self::Err> {
let items : Vec<&str> = status.split(":").collect();
if items.len() != 2 {
return Err(std::io::Error::new(ErrorKind::InvalidData, "malformed doc descriptor"))
}
match items[0] {
"man" => {
let content : Vec<&str> = items[1].split("(").collect();
Ok(Doc::Man(content[0].to_string()))
},
"http" => {
Ok(Doc::Url("http:".to_owned() + items[1].trim()))
},
"https" => {
Ok(Doc::Url("https:".to_owned() + items[1].trim()))
},
_ => {
Err(std::io::Error::new(ErrorKind::InvalidData, "unknown type of doc"))
}
}
}
}
#[derive(Clone, Debug)]
pub struct Unit {
pub name: String,
pub utype: Type,
pub description: Option<String>,
pub state: State,
pub auto_start: AutoStartStatus,
pub active: bool,
pub preset: bool,
pub script: String,
pub restart_policy: Option<String>,
pub kill_mode: Option<String>,
pub process: Option<String>,
pub pid: Option<u64>,
pub tasks: Option<u64>,
pub cpu: Option<String>,
pub memory: Option<String>,
pub mounted: Option<String>,
pub mountpoint: Option<String>,
pub docs: Option<Vec<Doc>>,
pub wants : Option<Vec<String>>,
pub wanted_by : Option<Vec<String>>,
pub also: Option<Vec<String>>,
pub before: Option<Vec<String>>,
pub after: Option<Vec<String>>,
pub exec_start: Option<String>,
pub exec_reload: Option<String>,
}
impl Default for Unit {
fn default() -> Unit {
Unit {
name: Default::default(),
utype: Default::default(),
description: Default::default(),
script: Default::default(),
pid: Default::default(),
tasks: Default::default(),
cpu: Default::default(),
memory: Default::default(),
state: Default::default(),
auto_start: Default::default(),
preset: Default::default(),
active: Default::default(),
docs: Default::default(),
process: Default::default(),
mounted: Default::default(),
mountpoint: Default::default(),
wants: Default::default(),
wanted_by: Default::default(),
restart_policy: Default::default(),
kill_mode: Default::default(),
after: Default::default(),
before: Default::default(),
also: Default::default(),
exec_start: Default::default(),
exec_reload: Default::default(),
}
}
}
impl Unit {
pub fn from_systemctl (name: &str) -> std::io::Result<Unit> {
if let Ok(false) = exists(name) {
return Err(
Error::new(
ErrorKind::InvalidData, format!("Unit or service \"{}\" does not exist", name)))
}
let status = status(name)?;
let mut lines = status.lines();
let next = lines.next().unwrap();
let (_, rem) = next.split_at(3);
let mut items = rem.split_ascii_whitespace();
let name = items.next().unwrap().trim();
let mut description : Option<String> = None;
if let Some(delim) = items.next() {
if delim.trim().eq("-") {
let items : Vec<_> = items.collect();
description = Some(itertools::join(&items, " "));
}
}
let items : Vec<_> = name.split_terminator(".").collect();
let name = items[0];
let utype = Type::from_str(items[1].trim()).unwrap();
let mut script: String = String::new();
let mut pid : Option<u64> = None;
let mut process: Option<String> = None;
let mut state: State = State::default();
let mut auto_start : AutoStartStatus = AutoStartStatus::default();
let mut preset: bool = false;
let mut cpu: Option<String> = None;
let mut memory: Option<String> = None;
let mut mounted: Option<String> = None;
let mut mountpoint: Option<String> = None;
let mut docs: Vec<Doc> = Vec::with_capacity(3);
let mut is_doc : bool = false;
let mut wants: Vec<String> = Vec::new();
let mut wanted_by : Vec<String> = Vec::new();
let mut before : Vec<String> = Vec::new();
let mut after : Vec<String> = Vec::new();
let mut also : Vec<String> = Vec::new();
let mut exec_start = String::new();
let mut exec_reload = String::new();
let mut kill_mode = String::new();
let mut restart_policy = String::new();
for line in lines {
let line = line.trim_start();
if line.starts_with("Loaded:") {
let (_, line) = line.split_at(8); if line.starts_with("loaded") {
state = State::Loaded;
let (_, rem) = line.split_at(1); let (rem, _) = rem.split_at(rem.len()-1); let items : Vec<_> = rem.split_terminator(";").collect();
script = items[0].trim().to_string();
auto_start = AutoStartStatus::from_str(items[1].trim()).unwrap();
if items.len() > 2 {
preset = items[2].trim().ends_with("enabled")
}
} else if line.starts_with("masked") {
state = State::Masked;
}
} else if line.starts_with("Active: ") {
} else if line.starts_with("Docs: ") {
is_doc = true;
let (_, line) = line.split_at(6); if let Ok(doc) = Doc::from_str(line) {
docs.push(doc)
}
} else if line.starts_with("What: ") { mounted = Some(line.split_at(6).1.trim().to_string());
} else if line.starts_with("Where: ") { mountpoint = Some(line.split_at(7).1.trim().to_string());
} else if line.starts_with("Main PID: ") {
let items : Vec<&str> = line.split_ascii_whitespace().collect();
pid = Some(u64::from_str_radix(items[2].trim(), 10).unwrap());
process = Some(items[3]
.replace(")", "")
.replace("(","")
.to_string())
} else if line.starts_with("Process: ") {
} else if line.starts_with("CGroup: ") {
} else if line.starts_with("Tasks: ") {
} else if line.starts_with("Memory: ") {
let line = line.split_at(8).1;
memory = Some(line.trim().to_string())
} else if line.starts_with("CPU: ") {
let line = line.split_at(5).1;
cpu = Some(line.trim().to_string())
} else {
if is_doc {
let line = line.trim_start();
if let Ok(doc) = Doc::from_str(line) {
docs.push(doc)
}
}
}
}
if let Ok(content) = cat(name) {
let lines = content.lines();
for line in lines {
if line.contains("=") {
let items : Vec<&str> = line.split("=").collect();
let key = items[0];
let value = items[1].trim();
println!("Key {} Value {}", key, value);
match key {
"Wants" => wants.push(value.to_string()),
"WantedBy" => wanted_by.push(value.to_string()),
"Also" => also.push(value.to_string()),
"Before" => before.push(value.to_string()),
"After" => after.push(value.to_string()),
"ExecStart" => exec_start = value.to_string(),
"ExecReload" => exec_reload = value.to_string(),
"Restart" => restart_policy = value.to_string(),
"KillMode" => kill_mode = value.to_string(),
_ => {},
}
}
}
}
Ok(Unit {
name: name.to_string(),
description,
script,
utype,
process,
pid,
state,
auto_start,
restart_policy: {
if restart_policy.len() > 0 {
Some(restart_policy)
} else {
None
}
},
kill_mode: {
if kill_mode.len() > 0 {
Some(kill_mode)
} else {
None
}
},
preset,
active: is_active(name)?,
tasks: Default::default(),
cpu,
memory,
mounted,
mountpoint,
docs: {
if docs.len() > 0 {
Some(docs)
} else {
None
}
},
wants: {
if wants.len() > 0 {
Some(wants)
} else {
None
}
},
wanted_by: {
if wanted_by.len() > 0 {
Some(wanted_by)
} else {
None
}
},
before: {
if before.len() > 0 {
Some(before)
} else {
None
}
},
also: {
if also.len() > 0 {
Some(also)
} else {
None
}
},
after: {
if after.len() > 0 {
Some(after)
} else {
None
}
},
exec_start: {
if exec_start.len() > 0 {
Some(exec_start)
} else {
None
}
},
exec_reload: {
if exec_reload.len() > 0 {
Some(exec_reload)
} else {
None
}
},
})
}
pub fn restart (&self) -> std::io::Result<ExitStatus> {
restart(&self.name)
}
pub fn status (&self) -> std::io::Result<String> {
status(&self.name)
}
pub fn is_active (&self) -> std::io::Result<bool> {
is_active(&self.name)
}
pub fn isolate (&self) -> std::io::Result<ExitStatus> {
isolate(&self.name)
}
pub fn freeze (&self) -> std::io::Result<ExitStatus> {
freeze(&self.name)
}
pub fn unfreeze (&self) -> std::io::Result<ExitStatus> {
unfreeze(&self.name)
}
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn test_status() {
let status = status("sshd");
assert_eq!(status.is_ok(), true);
println!("sshd status : {:#?}", status)
}
#[test]
fn test_is_active() {
let units = vec!["sshd","dropbear","ntpd"];
for u in units {
let active = is_active(u);
assert_eq!(active.is_ok(), true);
println!("{} is-active: {:#?}", u, active);
}
}
#[test]
fn test_service_exists() {
let units = vec!["sshd","dropbear","ntpd","example","non-existing","dummy"];
for u in units {
let ex = exists(u);
assert_eq!(ex.is_ok(), true);
println!("{} exists: {:#?}", u, ex);
}
}
#[test]
fn test_disabled_services() {
let services = list_disabled_services().unwrap();
println!("disabled services: {:#?}", services)
}
#[test]
fn test_enabled_services() {
let services = list_enabled_services().unwrap();
println!("enabled services: {:#?}", services)
}
#[test]
fn test_non_existing_unit() {
let unit = Unit::from_systemctl("non-existing");
assert_eq!(unit.is_err(), true);
}
#[test]
fn test_service_unit_construction() {
let units = list_units(None, None).unwrap(); for unit in units {
let unit = unit.as_str();
if unit.contains("@") {
continue
}
let c0 = unit.chars().nth(0).unwrap();
if c0.is_alphanumeric() { let u = Unit::from_systemctl(&unit).unwrap();
println!("####################################");
println!("Unit: {:#?}", u);
println!("active: {}", u.active);
println!("preset: {}", u.preset);
println!("auto_start (enabled): {:#?}", u.auto_start);
println!("config script : {}", u.script);
println!("pid: {:?}", u.pid);
println!("Running task(s): {:?}", u.tasks);
println!("Memory consumption: {:?}", u.memory);
println!("####################################")
}
}
}
}