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)]
|
2014-02-07 06:39:07 +00:00
|
|
|
|
2014-02-16 21:29:31 +00:00
|
|
|
extern crate getopts;
|
2014-04-26 05:03:08 +00:00
|
|
|
extern crate libc;
|
2013-10-18 12:00:38 +00:00
|
|
|
|
2014-01-13 09:05:02 +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-07 06:39:07 +00:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn getusername() -> ~str {
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2014-02-07 06:39:07 +00:00
|
|
|
static NAME: &'static str = "whoami";
|
|
|
|
|
2013-10-18 12:00:38 +00:00
|
|
|
fn main() {
|
|
|
|
let args = os::args();
|
|
|
|
let program = args[0].as_slice();
|
|
|
|
let opts = ~[
|
2014-02-07 06:39:07 +00:00
|
|
|
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
|
|
|
];
|
2014-02-07 06:39:07 +00:00
|
|
|
let matches = match getopts::getopts(args.tail(), opts) {
|
2013-10-18 12:00:38 +00:00
|
|
|
Ok(m) => m,
|
2014-02-07 06:39:07 +00:00
|
|
|
Err(f) => crash!(1, "{}", f.to_err_msg()),
|
2013-10-18 12:00:38 +00:00
|
|
|
};
|
2013-10-22 12:22:10 +00:00
|
|
|
if matches.opt_present("help") {
|
2014-01-13 09:05:02 +00:00
|
|
|
println!("whoami 1.0.0");
|
|
|
|
println!("");
|
|
|
|
println!("Usage:");
|
2013-10-18 12:00:38 +00:00
|
|
|
println!(" {:s}", program);
|
2014-01-13 09:05:02 +00:00
|
|
|
println!("");
|
2014-02-07 06:39:07 +00:00
|
|
|
print(getopts::usage("print effective userid", opts));
|
2013-10-18 12:00:38 +00:00
|
|
|
return;
|
|
|
|
}
|
2013-10-22 12:22:10 +00:00
|
|
|
if matches.opt_present("version") {
|
2014-01-13 09:05:02 +00:00
|
|
|
println!("whoami 1.0.0");
|
2013-10-18 12:00:38 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn exec() {
|
|
|
|
unsafe {
|
|
|
|
let username = getusername();
|
|
|
|
println!("{:s}", username);
|
|
|
|
}
|
|
|
|
}
|