forked from uutils/coreutils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhostid.rs
More file actions
44 lines (36 loc) · 1.26 KB
/
hostid.rs
File metadata and controls
44 lines (36 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// This file is part of the uutils coreutils package.
//
// For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code.
// spell-checker:ignore (ToDO) gethostid
use clap::Command;
use libc::{c_long, gethostid};
use std::io::{Write, stdout};
use uucore::{error::UResult, format_usage};
use uucore::translate;
#[uucore::main]
pub fn uumain(args: impl uucore::Args) -> UResult<()> {
uucore::clap_localization::handle_clap_result(uu_app(), args)?;
/*
* POSIX says gethostid returns a "32-bit identifier" but is silent
* whether it's sign-extended. Turn off any sign-extension. This
* is a no-op unless unsigned int is wider than 32 bits.
*/
let mut result: c_long;
unsafe {
result = gethostid();
}
#[allow(overflowing_literals)]
let mask = 0xffff_ffff;
result &= mask;
writeln!(stdout().lock(), "{result:0>8x}")?;
Ok(())
}
pub fn uu_app() -> Command {
Command::new(uucore::util_name())
.version(uucore::crate_version!())
.help_template(uucore::localized_help_template(uucore::util_name()))
.about(translate!("hostid-about"))
.override_usage(format_usage(&translate!("hostid-usage")))
.infer_long_args(true)
}