coreutils/src/whoami/whoami.rs

104 lines
2.5 KiB
Rust
Raw Normal View History

2014-07-06 08:13:36 +00:00
#![crate_name = "whoami"]
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;
2014-02-24 05:55:01 +00:00
#[path = "../common/util.rs"] mod util;
2013-10-18 12:00:38 +00:00
2014-06-15 20:37:58 +00:00
#[cfg(unix)]
mod platform {
use super::libc;
2014-07-29 06:52:58 +00:00
use std::string;
2014-06-15 20:37:58 +00:00
use self::c_types::{c_passwd, getpwuid};
#[path = "../../common/c_types.rs"] mod c_types;
extern {
pub fn geteuid() -> libc::uid_t;
2014-06-15 20:37:58 +00:00
}
pub unsafe fn getusername() -> String {
let passwd: *const c_passwd = getpwuid(geteuid());
2014-06-15 20:37:58 +00:00
let pw_name: *const libc::c_char = (*passwd).pw_name;
2014-07-29 06:52:58 +00:00
let name = string::raw::from_buf(pw_name as *const u8);
2014-06-15 20:37:58 +00:00
name
}
2013-10-18 12:00:38 +00:00
}
2014-06-15 20:37:58 +00:00
#[cfg(windows)]
mod platform {
pub use super::libc;
use std::mem;
2014-09-24 04:58:54 +00:00
use std::string;
2013-10-18 12:00:38 +00:00
2014-06-15 20:37:58 +00:00
extern "system" {
pub fn GetUserNameA(out: *mut libc::c_char, len: *mut libc::uint32_t) -> libc::uint8_t;
2014-06-15 20:37:58 +00:00
}
2013-10-18 12:00:38 +00:00
2014-06-15 20:37:58 +00:00
#[allow(unused_unsafe)]
pub unsafe fn getusername() -> String {
2014-08-15 22:53:23 +00:00
let mut buffer: [libc::c_char, ..2048] = mem::uninitialized(); // XXX: it may be possible that this isn't long enough. I don't know
if !GetUserNameA(buffer.as_mut_ptr(), &mut (buffer.len() as libc::uint32_t)) == 0 {
2014-06-15 20:37:58 +00:00
crash!(1, "username is too long");
}
2014-09-24 04:58:54 +00:00
string::raw::from_buf(buffer.as_ptr() as *const u8)
2014-06-15 20:37:58 +00:00
}
2013-10-18 12:00:38 +00:00
}
static NAME: &'static str = "whoami";
pub fn uumain(args: Vec<String>) -> int {
2014-07-20 01:13:55 +00:00
let program = args[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
];
2014-11-19 20:55:25 +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-11-19 20:55:25 +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 {
2014-06-15 20:37:58 +00:00
let username = platform::getusername();
2013-10-18 12:00:38 +00:00
println!("{:s}", username);
}
}