coreutils/whoami/whoami.rs

82 lines
1.8 KiB
Rust
Raw Normal View History

2014-03-31 16:40:21 +00:00
#![crate_id(name="whoami", version="1.0.0", author="KokaKiwi")]
2013-10-18 12:00:38 +00:00
/*
* This file is part of the uutils coreutils package.
*
* (c) Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/* last synced with: whoami (GNU coreutils) 8.21 */
2014-03-31 16:40:21 +00:00
#![allow(non_camel_case_types)]
2014-02-23 21:31:51 +00:00
2014-03-31 16:40:21 +00:00
#![feature(macro_rules)]
extern crate getopts;
extern crate libc;
2013-10-18 12:00:38 +00:00
use std::io::print;
2013-10-18 12:00:38 +00:00
use std::os;
use std::str;
2014-02-25 17:23:58 +00:00
use c_types::{c_passwd, getpwuid};
2014-02-24 05:55:01 +00:00
#[path = "../common/util.rs"] mod util;
#[path = "../common/c_types.rs"] mod c_types;
2013-10-18 12:00:38 +00:00
extern {
pub fn geteuid() -> libc::c_int;
}
2014-05-25 09:20:52 +00:00
unsafe fn getusername() -> String {
2013-10-18 12:00:38 +00:00
let passwd: *c_passwd = getpwuid(geteuid());
let pw_name: *libc::c_char = (*passwd).pw_name;
let name = str::raw::from_c_str(pw_name);
name
}
static NAME: &'static str = "whoami";
#[allow(dead_code)]
fn main() { os::set_exit_status(uumain(os::args())); }
2014-05-28 11:43:37 +00:00
pub fn uumain(args: Vec<String>) -> int {
2014-05-16 08:32:58 +00:00
let program = args.get(0).as_slice();
2014-05-30 08:35:54 +00:00
let opts = [
getopts::optflag("h", "help", "display this help and exit"),
getopts::optflag("V", "version", "output version information and exit"),
2013-10-18 12:00:38 +00:00
];
let matches = match getopts::getopts(args.tail(), opts) {
2013-10-18 12:00:38 +00:00
Ok(m) => m,
2014-06-15 10:50:40 +00:00
Err(f) => crash!(1, "{}", f),
2013-10-18 12:00:38 +00:00
};
2013-10-22 12:22:10 +00:00
if matches.opt_present("help") {
println!("whoami 1.0.0");
println!("");
println!("Usage:");
2013-10-18 12:00:38 +00:00
println!(" {:s}", program);
println!("");
2014-05-17 10:32:14 +00:00
print(getopts::usage("print effective userid", opts).as_slice());
return 0;
2013-10-18 12:00:38 +00:00
}
2013-10-22 12:22:10 +00:00
if matches.opt_present("version") {
println!("whoami 1.0.0");
return 0;
2013-10-18 12:00:38 +00:00
}
exec();
0
2013-10-18 12:00:38 +00:00
}
pub fn exec() {
unsafe {
let username = getusername();
println!("{:s}", username);
}
}