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
use crate::User;
use libc::{getgrgid, getgrouplist};
use std::fs::File;
use std::io::Read;
pub fn get_users_list() -> Vec<User> {
let mut s = String::new();
let mut ngroups = 100;
let mut groups = vec![0; ngroups as usize];
let _ = File::open("/etc/passwd").and_then(|mut f| f.read_to_string(&mut s));
s.lines()
.filter_map(|line| {
let mut parts = line.split(':');
if let Some(username) = parts.next() {
let mut parts = parts.skip(2);
if let Some(group_id) = parts.next().and_then(|x| u32::from_str_radix(x, 10).ok()) {
if let Some(command) = parts.last() {
if command.is_empty()
|| command.ends_with("/false")
|| command.ends_with("/nologin")
{
return None;
}
let mut c_user = username.as_bytes().to_vec();
c_user.push(0);
loop {
let mut current = ngroups;
if unsafe {
getgrouplist(
c_user.as_ptr() as *const _,
group_id,
groups.as_mut_ptr(),
&mut current,
)
} == -1
{
if current > ngroups {
groups.resize(current as _, 0);
ngroups = current;
continue;
}
return None;
}
return Some(User {
name: username.to_owned(),
groups: groups[..current as usize]
.iter()
.filter_map(|id| {
let g = unsafe { getgrgid(*id as _) };
if g.is_null() {
return None;
}
let mut group_name = Vec::new();
let c_group_name = unsafe { (*g).gr_name };
let mut x = 0;
loop {
let c = unsafe { *c_group_name.offset(x) };
if c == 0 {
break;
}
group_name.push(c as u8);
x += 1;
}
String::from_utf8(group_name).ok()
})
.collect(),
});
}
}
}
}
None
})
.collect()
}