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
#![deny(warnings)]
extern crate libc;
use std::ffi::{CStr, CString, OsStr, OsString};
use std::os::unix::ffi::OsStrExt;
use libc::{PR_SET_NAME, prctl};
use crate::{DaemonError, Result};
#[cfg(target_os = "linux")]
use crate::DaemonError::{GetPasswdRecord, SetProcName};
#[cfg(not(target_os = "linux"))]
use crate::DaemonError::{GetPasswdRecord, SetProcName, UnsupportedOnOS};
use crate::DaemonError::InvalidProcName;
#[repr(C)]
#[allow(dead_code)]
struct group {
gr_name: *const libc::c_char,
gr_passwd: *const libc::c_char,
gr_gid: libc::gid_t,
gr_mem: *const *const libc::c_char,
}
#[repr(C)]
#[allow(dead_code)]
struct passwd {
pw_name: *const libc::c_char,
pw_passwd: *const libc::c_char,
pw_uid: libc::uid_t,
pw_gid: libc::gid_t,
pw_gecos: *const libc::c_char,
pw_dir: *const libc::c_char,
pw_shell: *const libc::c_char,
}
#[allow(dead_code)]
extern "C" {
fn getgrnam(name: *const libc::c_char) -> *const group;
fn getgrgid(name: libc::gid_t) -> *const group;
fn getpwnam(name: *const libc::c_char) -> *const passwd;
fn getpwuid(name: libc::uid_t) -> *const passwd;
}
#[derive(Debug)]
#[allow(dead_code)]
pub struct GroupRecord {
pub gr_name: String,
pub gr_passwd: String,
pub gr_gid: u32,
}
#[derive(Debug)]
#[allow(dead_code)]
pub struct PasswdRecord {
pub pw_name: String,
pub pw_passwd: String,
pub pw_uid: u32,
pub pw_gid: u32,
pub pw_gecos: String,
pub pw_dir: String,
pub pw_shell: String,
}
#[allow(dead_code)]
impl GroupRecord {
pub fn get_record_by_name(name: &str) -> Result<GroupRecord> {
let record_name = match CString::new(name) {
Ok(s) => s,
Err(_) => return Err(DaemonError::InvalidCstr),
};
unsafe {
let raw_passwd = getgrnam(record_name.as_ptr());
return if raw_passwd.is_null() {
Err(DaemonError::GetGrRecord)
} else {
let gr = &*raw_passwd;
let sgr = GroupRecord {
gr_name: CStr::from_ptr(gr.gr_name).to_string_lossy().to_string(),
gr_passwd: CStr::from_ptr(gr.gr_passwd).to_string_lossy().to_string(),
gr_gid: gr.gr_gid as u32,
};
Ok(sgr)
};
};
}
pub fn get_record_by_id(gid: u32) -> Result<GroupRecord> {
let record_id = gid as libc::uid_t;
unsafe {
let raw_passwd = getgrgid(record_id);
return if raw_passwd.is_null() {
Err(DaemonError::GetGrRecord)
} else {
let gr = &*raw_passwd;
let sgr = GroupRecord {
gr_name: CStr::from_ptr(gr.gr_name).to_string_lossy().to_string(),
gr_passwd: CStr::from_ptr(gr.gr_passwd).to_string_lossy().to_string(),
gr_gid: gr.gr_gid as u32,
};
Ok(sgr)
};
};
}
}
impl PasswdRecord {
pub fn get_record_by_name(name: &str) -> Result<PasswdRecord> {
let record_name = match CString::new(name) {
Ok(s) => s,
Err(_) => return Err(DaemonError::InvalidCstr),
};
unsafe {
let raw_passwd = getpwnam(record_name.as_ptr());
return if raw_passwd.is_null() {
Err(GetPasswdRecord)
} else {
let pw = &*raw_passwd;
let pwr = PasswdRecord {
pw_name: CStr::from_ptr(pw.pw_name).to_string_lossy().to_string(),
pw_passwd: CStr::from_ptr(pw.pw_passwd).to_string_lossy().to_string(),
pw_uid: pw.pw_uid as u32,
pw_gid: pw.pw_gid as u32,
pw_gecos: CStr::from_ptr(pw.pw_gecos).to_string_lossy().to_string(),
pw_dir: CStr::from_ptr(pw.pw_dir).to_string_lossy().to_string(),
pw_shell: CStr::from_ptr(pw.pw_shell).to_string_lossy().to_string(),
};
Ok(pwr)
};
};
}
pub fn get_record_by_id(uid: u32) -> Result<PasswdRecord> {
let record_id = uid as libc::uid_t;
unsafe {
let raw_passwd = getpwuid(record_id);
return if raw_passwd.is_null() {
Err(DaemonError::GetPasswdRecord)
} else {
let pw = &*raw_passwd;
let pwr = PasswdRecord {
pw_name: CStr::from_ptr(pw.pw_name).to_string_lossy().to_string(),
pw_passwd: CStr::from_ptr(pw.pw_passwd).to_string_lossy().to_string(),
pw_uid: pw.pw_uid as u32,
pw_gid: pw.pw_gid as u32,
pw_gecos: CStr::from_ptr(pw.pw_gecos).to_string_lossy().to_string(),
pw_dir: CStr::from_ptr(pw.pw_dir).to_string_lossy().to_string(),
pw_shell: CStr::from_ptr(pw.pw_shell).to_string_lossy().to_string(),
};
Ok(pwr)
};
};
}
}
#[cfg(target_os = "linux")]
pub fn set_proc_name(name: &OsStr) -> Result<()> {
let name_truncated = match CString::new(OsString::from(name).as_bytes()) {
Ok(procname) => procname,
Err(_) => return Err(InvalidProcName),
};
unsafe {
if prctl(PR_SET_NAME, name_truncated.as_bytes_with_nul()) < 0 {
Err(SetProcName)
} else {
Ok(())
}
}
}
#[cfg(not(target_os = "linux"))]
pub fn set_proc_name(name: &OsStr) -> Result<()> {
Err(UnsupportedOnOS)
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_passwd_by_name() {
let root = PasswdRecord::get_record_by_name("root").unwrap();
assert_eq!(root.pw_uid, 0)
}
#[test]
fn test_passwd_by_uid() {
let root = PasswdRecord::get_record_by_id(0).unwrap();
assert_eq!(root.pw_name, "root")
}
#[test]
fn test_gr_by_name() {
let root = GroupRecord::get_record_by_name("root").unwrap();
assert_eq!(root.gr_gid, 0)
}
#[test]
fn test_gr_by_gid() {
let root = GroupRecord::get_record_by_id(0).unwrap();
assert_eq!(root.gr_name, "root")
}
}