2014-03-31 16:40:21 +00:00
|
|
|
#![crate_id(name="id", version="1.0.0", author="Alan Andrade")]
|
2014-02-02 09:54:38 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of the uutils coreutils package.
|
|
|
|
*
|
|
|
|
* (c) Alan Andrade <alan.andradec@gmail.com>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*
|
|
|
|
* Synced with:
|
|
|
|
* http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/1.0-RELEASE/ports/shellutils/src/id.c
|
|
|
|
* http://www.opensource.apple.com/source/shell_cmds/shell_cmds-118/id/id.c
|
|
|
|
*/
|
|
|
|
|
2014-03-31 16:40:21 +00:00
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
#![feature(macro_rules)]
|
2014-02-16 21:29:31 +00:00
|
|
|
extern crate getopts;
|
2014-04-26 05:03:08 +00:00
|
|
|
extern crate libc;
|
2014-02-02 09:54:38 +00:00
|
|
|
|
2014-04-26 05:03:08 +00:00
|
|
|
use std::os;
|
2014-02-16 21:29:31 +00:00
|
|
|
use std::ptr::read;
|
2014-04-26 05:03:08 +00:00
|
|
|
use libc::{
|
2014-02-23 22:18:04 +00:00
|
|
|
uid_t,
|
|
|
|
getgid,
|
2014-04-26 05:03:08 +00:00
|
|
|
getuid
|
2014-02-23 22:18:04 +00:00
|
|
|
};
|
2014-06-17 12:47:40 +00:00
|
|
|
use libc::funcs::posix88::unistd::{getegid, geteuid, getlogin};
|
2014-02-02 09:54:38 +00:00
|
|
|
use std::str::raw::from_c_str;
|
|
|
|
use getopts::{getopts, optflag, usage};
|
2014-02-24 05:55:01 +00:00
|
|
|
use c_types::{
|
|
|
|
c_passwd,
|
2014-02-25 17:23:58 +00:00
|
|
|
c_group,
|
2014-06-17 12:45:10 +00:00
|
|
|
get_groups,
|
|
|
|
get_group_list,
|
2014-02-25 17:23:58 +00:00
|
|
|
get_pw_from_args,
|
|
|
|
getpwuid,
|
|
|
|
group
|
2014-02-24 05:55:01 +00:00
|
|
|
};
|
2014-02-02 09:54:38 +00:00
|
|
|
|
2014-02-24 05:55:01 +00:00
|
|
|
#[path = "../common/util.rs"] mod util;
|
|
|
|
#[path = "../common/c_types.rs"] mod c_types;
|
2014-02-02 09:54:38 +00:00
|
|
|
|
2014-02-16 21:29:31 +00:00
|
|
|
#[cfg(not(target_os = "linux"))]
|
|
|
|
mod audit {
|
2014-05-28 04:11:49 +00:00
|
|
|
pub use std::mem::uninitialized;
|
2014-04-26 05:03:08 +00:00
|
|
|
use libc::{uid_t, pid_t, c_int, c_uint, uint64_t, dev_t};
|
2014-02-02 09:54:38 +00:00
|
|
|
|
2014-02-19 01:10:32 +00:00
|
|
|
pub type au_id_t = uid_t;
|
|
|
|
pub type au_asid_t = pid_t;
|
|
|
|
pub type au_event_t = c_uint;
|
|
|
|
pub type au_emod_t = c_uint;
|
|
|
|
pub type au_class_t = c_int;
|
2014-02-02 09:54:38 +00:00
|
|
|
|
2014-02-19 01:10:32 +00:00
|
|
|
pub struct au_mask {
|
2014-04-26 05:03:08 +00:00
|
|
|
pub am_success: c_uint,
|
|
|
|
pub am_failure: c_uint
|
2014-02-16 21:29:31 +00:00
|
|
|
}
|
2014-02-19 01:10:32 +00:00
|
|
|
pub type au_mask_t = au_mask;
|
2014-02-16 21:29:31 +00:00
|
|
|
|
2014-02-19 01:10:32 +00:00
|
|
|
pub struct au_tid_addr {
|
2014-04-26 05:03:08 +00:00
|
|
|
pub port: dev_t,
|
2014-02-16 21:29:31 +00:00
|
|
|
}
|
2014-02-19 01:10:32 +00:00
|
|
|
pub type au_tid_addr_t = au_tid_addr;
|
2014-02-16 21:29:31 +00:00
|
|
|
|
2014-02-19 01:10:32 +00:00
|
|
|
pub struct c_auditinfo_addr {
|
2014-04-26 05:03:08 +00:00
|
|
|
pub ai_auid: au_id_t, /* Audit user ID */
|
|
|
|
pub ai_mask: au_mask_t, /* Audit masks. */
|
|
|
|
pub ai_termid: au_tid_addr_t, /* Terminal ID. */
|
|
|
|
pub ai_asid: au_asid_t, /* Audit session ID. */
|
|
|
|
pub ai_flags: uint64_t /* Audit session flags */
|
2014-02-16 21:29:31 +00:00
|
|
|
}
|
|
|
|
pub type c_auditinfo_addr_t = c_auditinfo_addr;
|
|
|
|
|
|
|
|
extern {
|
|
|
|
pub fn getaudit(auditinfo_addr: *c_auditinfo_addr_t) -> c_int;
|
|
|
|
}
|
2014-02-02 09:54:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
extern {
|
|
|
|
fn getgrgid(gid: uid_t) -> *c_group;
|
|
|
|
}
|
|
|
|
|
2014-02-23 22:18:04 +00:00
|
|
|
static NAME: &'static str = "id";
|
|
|
|
|
2014-05-28 12:01:30 +00:00
|
|
|
#[allow(dead_code)]
|
2014-06-08 07:56:37 +00:00
|
|
|
fn main () { os::set_exit_status(uumain(os::args())); }
|
2014-05-28 11:43:37 +00:00
|
|
|
|
2014-06-08 07:56:37 +00:00
|
|
|
pub fn uumain(args: Vec<String>) -> int {
|
2014-02-02 09:54:38 +00:00
|
|
|
let args_t = args.tail();
|
|
|
|
|
|
|
|
let options = [
|
|
|
|
optflag("h", "", "Show help"),
|
2014-02-16 21:29:31 +00:00
|
|
|
optflag("A", "", "Display the process audit (not available on Linux)"),
|
2014-02-02 09:54:38 +00:00
|
|
|
optflag("G", "", "Display the different group IDs"),
|
|
|
|
optflag("g", "", "Display the effective group ID as a number"),
|
|
|
|
optflag("n", "", "Display the name of the user or group ID for the -G, -g and -u options"),
|
|
|
|
optflag("P", "", "Display the id as a password file entry"),
|
|
|
|
optflag("p", "", "Make the output human-readable"),
|
|
|
|
optflag("r", "", "Display the real ID for the -g and -u options"),
|
|
|
|
optflag("u", "", "Display the effective user ID as a number")
|
|
|
|
];
|
|
|
|
|
|
|
|
let matches = match getopts(args_t, options) {
|
|
|
|
Ok(m) => { m },
|
|
|
|
Err(_) => {
|
2014-02-23 22:18:04 +00:00
|
|
|
println!("{:s}", usage(NAME, options));
|
2014-06-22 14:44:31 +00:00
|
|
|
return 1;
|
2014-02-02 09:54:38 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if matches.opt_present("h") {
|
2014-02-23 22:18:04 +00:00
|
|
|
println!("{:s}", usage(NAME, options));
|
2014-06-08 07:56:37 +00:00
|
|
|
return 0;
|
2014-02-02 09:54:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if matches.opt_present("A") {
|
|
|
|
auditid();
|
2014-06-08 07:56:37 +00:00
|
|
|
return 0;
|
2014-02-02 09:54:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-25 17:23:58 +00:00
|
|
|
let possible_pw = get_pw_from_args(&matches.free);
|
2014-02-02 09:54:38 +00:00
|
|
|
|
|
|
|
let nflag = matches.opt_present("n");
|
|
|
|
let uflag = matches.opt_present("u");
|
|
|
|
let gflag = matches.opt_present("g");
|
|
|
|
let rflag = matches.opt_present("r");
|
|
|
|
|
|
|
|
if gflag {
|
|
|
|
let id = if possible_pw.is_some() {
|
|
|
|
possible_pw.unwrap().pw_gid
|
|
|
|
} else {
|
|
|
|
if rflag {
|
2014-06-16 20:09:04 +00:00
|
|
|
unsafe { getgid() }
|
2014-02-02 09:54:38 +00:00
|
|
|
} else {
|
2014-06-16 20:09:04 +00:00
|
|
|
unsafe { getegid() }
|
2014-02-02 09:54:38 +00:00
|
|
|
}
|
2014-06-16 20:09:04 +00:00
|
|
|
};
|
2014-02-02 09:54:38 +00:00
|
|
|
let gr = unsafe { getgrgid(id) };
|
|
|
|
|
2014-02-16 21:29:31 +00:00
|
|
|
if nflag && gr.is_not_null() {
|
|
|
|
let gr_name = unsafe { from_c_str(read(gr).gr_name) };
|
2014-02-02 09:54:38 +00:00
|
|
|
println!("{:s}", gr_name);
|
|
|
|
} else {
|
|
|
|
println!("{:u}", id);
|
|
|
|
}
|
2014-06-08 07:56:37 +00:00
|
|
|
return 0;
|
2014-02-02 09:54:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if uflag {
|
|
|
|
let id = if possible_pw.is_some() {
|
|
|
|
possible_pw.unwrap().pw_uid
|
|
|
|
} else if rflag {
|
2014-06-16 20:09:04 +00:00
|
|
|
unsafe { getgid() }
|
2014-02-02 09:54:38 +00:00
|
|
|
} else {
|
2014-06-16 20:09:04 +00:00
|
|
|
unsafe { getegid() }
|
2014-02-02 09:54:38 +00:00
|
|
|
};
|
|
|
|
|
2014-02-25 17:23:58 +00:00
|
|
|
let pw = unsafe { getpwuid(id) };
|
2014-02-16 21:29:31 +00:00
|
|
|
if nflag && pw.is_not_null() {
|
2014-02-02 09:54:38 +00:00
|
|
|
let pw_name = unsafe {
|
2014-02-16 21:29:31 +00:00
|
|
|
from_c_str(read(pw).pw_name)
|
2014-02-02 09:54:38 +00:00
|
|
|
};
|
|
|
|
println!("{:s}", pw_name);
|
|
|
|
} else {
|
2014-06-16 20:09:04 +00:00
|
|
|
println!("{:u}", id);
|
2014-02-02 09:54:38 +00:00
|
|
|
}
|
|
|
|
|
2014-06-08 07:56:37 +00:00
|
|
|
return 0;
|
2014-02-02 09:54:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if matches.opt_present("G") {
|
|
|
|
group(possible_pw, nflag);
|
2014-06-08 07:56:37 +00:00
|
|
|
return 0;
|
2014-02-02 09:54:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if matches.opt_present("P") {
|
|
|
|
pline(possible_pw);
|
2014-06-08 07:56:37 +00:00
|
|
|
return 0;
|
2014-02-02 09:54:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if matches.opt_present("p") {
|
|
|
|
pretty(possible_pw);
|
2014-06-08 07:56:37 +00:00
|
|
|
return 0;
|
2014-02-02 09:54:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if possible_pw.is_some() {
|
2014-06-17 12:28:19 +00:00
|
|
|
id_print(possible_pw, false, false)
|
2014-02-02 09:54:38 +00:00
|
|
|
} else {
|
2014-06-17 12:28:19 +00:00
|
|
|
id_print(possible_pw, true, true)
|
2014-02-02 09:54:38 +00:00
|
|
|
}
|
2014-06-08 07:56:37 +00:00
|
|
|
|
2014-06-12 04:41:53 +00:00
|
|
|
0
|
2014-02-02 09:54:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn pretty(possible_pw: Option<c_passwd>) {
|
|
|
|
if possible_pw.is_some() {
|
|
|
|
let pw = possible_pw.unwrap();
|
|
|
|
|
|
|
|
let pw_name = unsafe { from_c_str(pw.pw_name) };
|
|
|
|
print!("uid\t{:s}\ngroups\t", pw_name);
|
|
|
|
group(possible_pw, true);
|
|
|
|
} else {
|
|
|
|
let login = unsafe { from_c_str(getlogin()) };
|
|
|
|
let rid = unsafe { getuid() };
|
2014-06-16 20:09:04 +00:00
|
|
|
let pw = unsafe { getpwuid(rid) };
|
2014-02-02 09:54:38 +00:00
|
|
|
|
|
|
|
let is_same_user = unsafe {
|
2014-02-16 21:29:31 +00:00
|
|
|
from_c_str(read(pw).pw_name) == login
|
2014-02-02 09:54:38 +00:00
|
|
|
};
|
|
|
|
|
2014-02-16 21:29:31 +00:00
|
|
|
if pw.is_null() || is_same_user {
|
2014-02-02 09:54:38 +00:00
|
|
|
println!("login\t{:s}", login);
|
|
|
|
}
|
|
|
|
|
2014-02-16 21:29:31 +00:00
|
|
|
if pw.is_not_null() {
|
2014-02-02 09:54:38 +00:00
|
|
|
println!(
|
|
|
|
"uid\t{:s}",
|
2014-02-16 21:29:31 +00:00
|
|
|
unsafe { from_c_str(read(pw).pw_name) })
|
2014-02-02 09:54:38 +00:00
|
|
|
} else {
|
2014-02-16 21:29:31 +00:00
|
|
|
println!("uid\t{:u}\n", rid);
|
2014-02-02 09:54:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let eid = unsafe { getegid() };
|
|
|
|
if eid == rid {
|
2014-06-16 20:09:04 +00:00
|
|
|
let pw = unsafe { getpwuid(eid) };
|
2014-02-16 21:29:31 +00:00
|
|
|
if pw.is_not_null() {
|
2014-02-02 09:54:38 +00:00
|
|
|
println!(
|
|
|
|
"euid\t{:s}",
|
2014-02-16 21:29:31 +00:00
|
|
|
unsafe { from_c_str(read(pw).pw_name) });
|
2014-02-02 09:54:38 +00:00
|
|
|
} else {
|
|
|
|
println!("euid\t{:u}", eid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let rid = unsafe { getgid() };
|
|
|
|
|
|
|
|
if rid != eid {
|
|
|
|
let gr = unsafe { getgrgid(rid) };
|
2014-02-16 21:29:31 +00:00
|
|
|
if gr.is_not_null() {
|
2014-02-02 09:54:38 +00:00
|
|
|
println!(
|
|
|
|
"rgid\t{:s}",
|
2014-02-16 21:29:31 +00:00
|
|
|
unsafe { from_c_str(read(gr).gr_name) });
|
2014-02-02 09:54:38 +00:00
|
|
|
} else {
|
|
|
|
println!("rgid\t{:u}", rid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
print!("groups\t");
|
|
|
|
group(None, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-15 10:23:41 +00:00
|
|
|
#[cfg(target_os = "macos")]
|
2014-02-02 09:54:38 +00:00
|
|
|
fn pline(possible_pw: Option<c_passwd>) {
|
|
|
|
let pw = if possible_pw.is_none() {
|
2014-06-16 21:53:33 +00:00
|
|
|
unsafe { read(getpwuid(getuid())) }
|
2014-02-02 09:54:38 +00:00
|
|
|
} else {
|
|
|
|
possible_pw.unwrap()
|
|
|
|
};
|
|
|
|
|
|
|
|
let pw_name = unsafe { from_c_str(pw.pw_name) };
|
|
|
|
let pw_passwd = unsafe { from_c_str(pw.pw_passwd)};
|
|
|
|
let pw_class = unsafe { from_c_str(pw.pw_class) };
|
|
|
|
let pw_gecos = unsafe { from_c_str(pw.pw_gecos) };
|
|
|
|
let pw_dir = unsafe { from_c_str(pw.pw_dir) };
|
|
|
|
let pw_shell = unsafe { from_c_str(pw.pw_shell) };
|
|
|
|
|
|
|
|
println!(
|
2014-06-16 21:53:33 +00:00
|
|
|
"{:s}:{:s}:{:u}:{:u}:{:s}:{:d}:{:d}:{:s}:{:s}:{:s}",
|
2014-02-02 09:54:38 +00:00
|
|
|
pw_name,
|
|
|
|
pw_passwd,
|
|
|
|
pw.pw_uid,
|
|
|
|
pw.pw_gid,
|
|
|
|
pw_class,
|
|
|
|
pw.pw_change,
|
|
|
|
pw.pw_expire,
|
|
|
|
pw_gecos,
|
|
|
|
pw_dir,
|
|
|
|
pw_shell);
|
2014-06-15 10:23:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
fn pline(possible_pw: Option<c_passwd>) {
|
|
|
|
let pw = if possible_pw.is_none() {
|
2014-06-16 20:09:04 +00:00
|
|
|
unsafe { read(getpwuid(getuid())) }
|
2014-06-15 10:23:41 +00:00
|
|
|
} else {
|
|
|
|
possible_pw.unwrap()
|
|
|
|
};
|
|
|
|
|
|
|
|
let pw_name = unsafe { from_c_str(pw.pw_name) };
|
|
|
|
let pw_passwd = unsafe { from_c_str(pw.pw_passwd)};
|
|
|
|
let pw_gecos = unsafe { from_c_str(pw.pw_gecos) };
|
|
|
|
let pw_dir = unsafe { from_c_str(pw.pw_dir) };
|
|
|
|
let pw_shell = unsafe { from_c_str(pw.pw_shell) };
|
|
|
|
|
|
|
|
println!(
|
2014-06-16 20:09:04 +00:00
|
|
|
"{:s}:{:s}:{:u}:{:u}:{:s}:{:s}:{:s}",
|
2014-06-15 10:23:41 +00:00
|
|
|
pw_name,
|
|
|
|
pw_passwd,
|
|
|
|
pw.pw_uid,
|
|
|
|
pw.pw_gid,
|
|
|
|
pw_gecos,
|
|
|
|
pw_dir,
|
|
|
|
pw_shell);
|
2014-02-02 09:54:38 +00:00
|
|
|
}
|
|
|
|
|
2014-02-16 21:29:31 +00:00
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
fn auditid() { }
|
|
|
|
|
|
|
|
#[cfg(not(target_os = "linux"))]
|
|
|
|
fn auditid() {
|
2014-05-28 04:11:49 +00:00
|
|
|
let auditinfo: audit::c_auditinfo_addr_t = unsafe { audit::uninitialized() };
|
2014-02-16 21:29:31 +00:00
|
|
|
let address = &auditinfo as *audit::c_auditinfo_addr_t;
|
|
|
|
if unsafe { audit::getaudit(address) } < 0 {
|
2014-06-17 12:48:37 +00:00
|
|
|
println!("couldn't retrieve information");
|
2014-02-02 09:54:38 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
println!("auid={:u}", auditinfo.ai_auid);
|
|
|
|
println!("mask.success=0x{:x}", auditinfo.ai_mask.am_success);
|
|
|
|
println!("mask.failure=0x{:x}", auditinfo.ai_mask.am_failure);
|
|
|
|
println!("termid.port=0x{:x}", auditinfo.ai_termid.port);
|
|
|
|
println!("asid={:d}", auditinfo.ai_asid);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn id_print(possible_pw: Option<c_passwd>,
|
|
|
|
p_euid: bool,
|
|
|
|
p_egid: bool) {
|
|
|
|
|
|
|
|
let uid;
|
|
|
|
let gid;
|
|
|
|
|
|
|
|
if possible_pw.is_some() {
|
|
|
|
uid = possible_pw.unwrap().pw_uid;
|
|
|
|
gid = possible_pw.unwrap().pw_gid;
|
|
|
|
} else {
|
2014-06-16 20:09:04 +00:00
|
|
|
uid = unsafe { getuid() };
|
|
|
|
gid = unsafe { getgid() };
|
2014-02-02 09:54:38 +00:00
|
|
|
}
|
|
|
|
|
2014-06-17 12:45:10 +00:00
|
|
|
let groups = match possible_pw {
|
2014-06-18 03:47:29 +00:00
|
|
|
Some(pw) => Ok(get_group_list(pw.pw_name, pw.pw_gid)),
|
2014-06-17 12:45:10 +00:00
|
|
|
None => get_groups(),
|
|
|
|
};
|
2014-02-02 09:54:38 +00:00
|
|
|
|
2014-06-17 12:45:10 +00:00
|
|
|
let groups = groups.unwrap_or_else(|errno| {
|
|
|
|
crash!(1, "failed to get group list (errno={:d})", errno);
|
|
|
|
});
|
2014-02-02 09:54:38 +00:00
|
|
|
|
|
|
|
if possible_pw.is_some() {
|
|
|
|
print!(
|
2014-06-16 20:09:04 +00:00
|
|
|
"uid={:u}({:s})",
|
2014-02-02 09:54:38 +00:00
|
|
|
uid,
|
|
|
|
unsafe { from_c_str(possible_pw.unwrap().pw_name) });
|
|
|
|
} else {
|
|
|
|
print!("uid={:u}", unsafe { getuid() });
|
|
|
|
}
|
|
|
|
|
2014-06-16 20:09:04 +00:00
|
|
|
print!(" gid={:u}", gid);
|
|
|
|
let gr = unsafe { getgrgid(gid) };
|
2014-02-16 21:29:31 +00:00
|
|
|
if gr.is_not_null() {
|
2014-02-02 09:54:38 +00:00
|
|
|
print!(
|
|
|
|
"({:s})",
|
2014-02-16 21:29:31 +00:00
|
|
|
unsafe { from_c_str(read(gr).gr_name) });
|
2014-02-02 09:54:38 +00:00
|
|
|
}
|
|
|
|
|
2014-04-26 05:03:08 +00:00
|
|
|
let euid = unsafe { geteuid() };
|
2014-06-16 20:09:04 +00:00
|
|
|
if p_euid && (euid != uid) {
|
2014-02-02 09:54:38 +00:00
|
|
|
print!(" euid={:u}", euid);
|
2014-06-16 20:09:04 +00:00
|
|
|
let pw = unsafe { getpwuid(euid) };
|
2014-02-16 21:29:31 +00:00
|
|
|
if pw.is_not_null() {
|
2014-02-02 09:54:38 +00:00
|
|
|
print!(
|
|
|
|
"({:s})",
|
2014-02-16 21:29:31 +00:00
|
|
|
unsafe { from_c_str(read(pw).pw_name) });
|
2014-02-02 09:54:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let egid = unsafe { getegid() };
|
2014-06-17 12:46:02 +00:00
|
|
|
if p_egid && (egid != gid) {
|
2014-02-02 09:54:38 +00:00
|
|
|
print!(" egid={:u}", egid);
|
|
|
|
unsafe {
|
|
|
|
let grp = getgrgid(egid);
|
2014-02-16 21:29:31 +00:00
|
|
|
if grp.is_not_null() {
|
|
|
|
print!("({:s})", from_c_str(read(grp).gr_name));
|
2014-02-02 09:54:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-17 12:45:10 +00:00
|
|
|
if groups.len() > 0 {
|
2014-02-02 09:54:38 +00:00
|
|
|
print!(" groups=");
|
|
|
|
|
|
|
|
let mut first = true;
|
|
|
|
for &gr in groups.iter() {
|
|
|
|
if !first { print!(",") }
|
2014-06-16 20:09:04 +00:00
|
|
|
print!("{:u}", gr);
|
2014-06-17 12:45:10 +00:00
|
|
|
let group = unsafe { getgrgid(gr) };
|
2014-02-16 21:29:31 +00:00
|
|
|
if group.is_not_null() {
|
2014-02-02 09:54:38 +00:00
|
|
|
let name = unsafe {
|
2014-02-16 21:29:31 +00:00
|
|
|
from_c_str(read(group).gr_name)
|
2014-02-02 09:54:38 +00:00
|
|
|
};
|
|
|
|
print!("({:s})", name);
|
|
|
|
}
|
|
|
|
first = false
|
|
|
|
}
|
|
|
|
}
|
2014-06-17 12:45:10 +00:00
|
|
|
|
|
|
|
println!("");
|
2014-02-02 09:54:38 +00:00
|
|
|
}
|