blob: 5b47de1bc00c3d5b7ba141f3fd7bb3428f391746 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Erik Andersen31638212000-01-15 22:28:50 +00002/*
3 * Mini hostid implementation for busybox
4 *
5 * Copyright (C) 2000 Edward Betts <edward@debian.org>.
6 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Erik Andersen31638212000-01-15 22:28:50 +00008 */
Pere Orgab1611d92011-08-11 13:42:00 +02009//config:config HOSTID
10//config: bool "hostid"
11//config: default y
12//config: help
13//config: hostid prints the numeric identifier (in hexadecimal) for
14//config: the current host.
15
16//applet:IF_HOSTID(APPLET_NOFORK(hostid, hostid, BB_DIR_USR_BIN, BB_SUID_DROP, hostid))
17
18//kbuild:lib-$(CONFIG_HOSTID) += hostid.o
19
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010020/* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */
21
Pere Orga34425382011-03-31 14:43:25 +020022//usage:#define hostid_trivial_usage
23//usage: ""
24//usage:#define hostid_full_usage "\n\n"
25//usage: "Print out a unique 32-bit identifier for the machine"
26
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000027#include "libbb.h"
Erik Andersen31638212000-01-15 22:28:50 +000028
Denis Vlasenko99912ca2007-04-10 15:43:37 +000029/* This is a NOFORK applet. Be very careful! */
30
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000031int hostid_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +010032int hostid_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Erik Andersene49d5ec2000-02-08 19:58:47 +000033{
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +010034 if (argv[1]) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000035 bb_show_usage();
36 }
37
Denys Vlasenko9bbf6b92013-03-04 03:04:38 +010038 /* POSIX says gethostid returns a "32-bit identifier" */
39 printf("%08x\n", (unsigned)(uint32_t)gethostid());
Manuel Novoa III cad53642003-03-19 09:13:01 +000040
Denys Vlasenko8131eea2009-11-02 14:19:51 +010041 return fflush_all();
Erik Andersen31638212000-01-15 22:28:50 +000042}