use std::ptr::read; use std::ptr; use std::collections::HashMap; mod c { #![allow(non_camel_case_types)] extern crate libc; pub use self::libc::{ c_char, c_int, uid_t, gid_t, time_t }; #[repr(C)] pub struct c_passwd { pub pw_name: *const c_char, // login name pub pw_passwd: *const c_char, pub pw_uid: c_int, // user ID pub pw_gid: c_int, // group ID pub pw_change: time_t, pub pw_class: *const c_char, pub pw_gecos: *const c_char, // full name pub pw_dir: *const c_char, // login dir pub pw_shell: *const c_char, // login shell pub pw_expire: time_t, // password expiry time } #[repr(C)] pub struct c_group { pub gr_name: *const c_char, // group name pub gr_passwd: *const c_char, // password pub gr_gid: gid_t, // group id pub gr_mem: *const *const c_char, // names of users in the group } extern { pub fn getpwuid(uid: c_int) -> *const c_passwd; pub fn getgrgid(gid: uid_t) -> *const c_group; pub fn getuid() -> libc::c_int; } } pub struct Unix { user_names: HashMap>, // mapping of user IDs to user names group_names: HashMap>, // mapping of groups IDs to group names groups: HashMap, // mapping of group IDs to whether the current user is a member pub uid: u32, // current user's ID pub username: String, // current user's name } impl Unix { pub fn empty_cache() -> Unix { let uid = unsafe { c::getuid() }; let infoptr = unsafe { c::getpwuid(uid as i32) }; let info = unsafe { infoptr.as_ref().unwrap() }; // the user has to have a name let username = unsafe { String::from_raw_buf(info.pw_name as *const u8) }; let mut user_names = HashMap::new(); user_names.insert(uid as u32, Some(username.clone())); // Unix groups work like this: every group has a list of // users, referred to by their names. But, every user also has // a primary group, which isn't in this list. So handle this // case immediately after we look up the user's details. let mut groups = HashMap::new(); groups.insert(info.pw_gid as u32, true); Unix { user_names: user_names, group_names: HashMap::new(), uid: uid as u32, username: username, groups: groups, } } pub fn get_user_name(&self, uid: u32) -> Option { self.user_names[uid].clone() } pub fn get_group_name(&self, gid: u32) -> Option { self.group_names[gid].clone() } pub fn is_group_member(&self, gid: u32) -> bool { self.groups[gid] } pub fn load_user(&mut self, uid: u32) { let pw = unsafe { c::getpwuid(uid as i32) }; if pw.is_not_null() { let username = unsafe { Some(String::from_raw_buf(read(pw).pw_name as *const u8)) }; self.user_names.insert(uid, username); } else { self.user_names.insert(uid, None); } } fn group_membership(group: *const *const c::c_char, uname: &String) -> bool { let mut i = 0; // The list of members is a pointer to a pointer of // characters, terminated by a null pointer. loop { match unsafe { group.offset(i).as_ref() } { Some(&username) => { if username == ptr::null() { return false; // username was null, weird } else if unsafe { String::from_raw_buf(username as *const u8) } == *uname { return true; // group found! } else { i += 1; // try again with the next group } }, None => return false, // no more groups to check, and none found } } } pub fn load_group(&mut self, gid: u32) { match unsafe { c::getgrgid(gid).as_ref() } { None => { self.group_names.insert(gid, None); self.groups.insert(gid, false); }, Some(r) => { let group_name = unsafe { Some(String::from_raw_buf(r.gr_name as *const u8)) }; if !self.groups.contains_key(&gid) { self.groups.insert(gid, Unix::group_membership(r.gr_mem, &self.username)); } self.group_names.insert(gid, group_name); } } } }