2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-26 10:51:02 +05:30
|
|
|
/* uname -- print system information
|
2006-07-12 13:26:04 +05:30
|
|
|
* Copyright (C) 1989-1999 Free Software Foundation, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
|
|
|
*/
|
1999-10-26 10:51:02 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
/* BB_AUDIT SUSv3 compliant */
|
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/uname.html */
|
|
|
|
|
1999-10-26 10:51:02 +05:30
|
|
|
/* Option Example
|
2009-01-19 22:02:23 +05:30
|
|
|
* -s, --sysname SunOS
|
|
|
|
* -n, --nodename rocky8
|
|
|
|
* -r, --release 4.0
|
|
|
|
* -v, --version
|
|
|
|
* -m, --machine sun
|
|
|
|
* -a, --all SunOS rocky8 4.0 sun
|
|
|
|
*
|
|
|
|
* The default behavior is equivalent to '-s'.
|
|
|
|
*
|
|
|
|
* David MacKenzie <djm@gnu.ai.mit.edu>
|
|
|
|
*
|
|
|
|
* GNU coreutils 6.10:
|
|
|
|
* Option: struct Example(s):
|
|
|
|
* utsname
|
|
|
|
* field:
|
|
|
|
* -s, --kernel-name sysname Linux
|
|
|
|
* -n, --nodename nodename localhost.localdomain
|
|
|
|
* -r, --kernel-release release 2.6.29
|
|
|
|
* -v, --kernel-version version #1 SMP Sun Jan 11 20:52:37 EST 2009
|
|
|
|
* -m, --machine machine x86_64 i686
|
|
|
|
* -p, --processor (none) x86_64 i686
|
|
|
|
* -i, --hardware-platform (none) x86_64 i386
|
|
|
|
* NB: vanilla coreutils reports "unknown" -p and -i,
|
|
|
|
* x86_64 and i686/i386 shown above are Fedora's inventions.
|
|
|
|
* -o, --operating-system (none) GNU/Linux
|
|
|
|
* -a, --all: all of the above, in the order shown.
|
|
|
|
* If -p or -i is not known, don't show them
|
|
|
|
*/
|
1999-10-26 10:51:02 +05:30
|
|
|
|
2009-01-19 22:02:23 +05:30
|
|
|
/* Busyboxed by Erik Andersen
|
2003-03-19 14:43:01 +05:30
|
|
|
*
|
2009-01-19 22:02:23 +05:30
|
|
|
* Before 2003: Glenn McGrath and Manuel Novoa III
|
|
|
|
* Further size reductions.
|
|
|
|
* Mar 16, 2003: Manuel Novoa III (mjn3@codepoet.org)
|
|
|
|
* Now does proper error checking on i/o. Plus some further space savings.
|
|
|
|
* Jan 2009:
|
|
|
|
* Fix handling of -a to not print "unknown", add -o and -i support.
|
2003-03-19 14:43:01 +05:30
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2009-09-06 16:17:55 +05:30
|
|
|
/* After libbb.h, since it needs sys/types.h on some systems */
|
|
|
|
#include <sys/utsname.h>
|
1999-10-26 10:51:02 +05:30
|
|
|
|
2001-12-05 09:51:30 +05:30
|
|
|
typedef struct {
|
|
|
|
struct utsname name;
|
2009-01-19 22:02:23 +05:30
|
|
|
char processor[sizeof(((struct utsname*)NULL)->machine)];
|
|
|
|
char platform[sizeof(((struct utsname*)NULL)->machine)];
|
|
|
|
char os[sizeof("GNU/Linux")];
|
2001-12-05 09:51:30 +05:30
|
|
|
} uname_info_t;
|
|
|
|
|
2009-01-19 22:02:23 +05:30
|
|
|
static const char options[] ALIGN1 = "snrvmpioa";
|
2008-07-02 16:44:59 +05:30
|
|
|
static const unsigned short utsname_offset[] = {
|
2009-01-19 22:02:23 +05:30
|
|
|
offsetof(uname_info_t, name.sysname), /* -s */
|
|
|
|
offsetof(uname_info_t, name.nodename), /* -n */
|
|
|
|
offsetof(uname_info_t, name.release), /* -r */
|
|
|
|
offsetof(uname_info_t, name.version), /* -v */
|
|
|
|
offsetof(uname_info_t, name.machine), /* -m */
|
|
|
|
offsetof(uname_info_t, processor), /* -p */
|
|
|
|
offsetof(uname_info_t, platform), /* -i */
|
|
|
|
offsetof(uname_info_t, os), /* -o */
|
2001-12-05 09:51:30 +05:30
|
|
|
};
|
1999-10-26 10:51:02 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int uname_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int uname_main(int argc UNUSED_PARAM, char **argv)
|
1999-10-26 10:51:02 +05:30
|
|
|
{
|
2009-06-19 15:40:38 +05:30
|
|
|
#if ENABLE_LONG_OPTS
|
2009-07-18 07:11:29 +05:30
|
|
|
static const char uname_longopts[] ALIGN1 =
|
2009-03-15 00:11:19 +05:30
|
|
|
/* name, has_arg, val */
|
|
|
|
"all\0" No_argument "a"
|
|
|
|
"kernel-name\0" No_argument "s"
|
|
|
|
"nodename\0" No_argument "n"
|
|
|
|
"kernel-release\0" No_argument "r"
|
|
|
|
"release\0" No_argument "r"
|
|
|
|
"kernel-version\0" No_argument "v"
|
|
|
|
"machine\0" No_argument "m"
|
|
|
|
"processor\0" No_argument "p"
|
|
|
|
"hardware-platform\0" No_argument "i"
|
|
|
|
"operating-system\0" No_argument "o"
|
|
|
|
;
|
|
|
|
#endif
|
2001-12-05 09:51:30 +05:30
|
|
|
uname_info_t uname_info;
|
1999-10-26 10:51:02 +05:30
|
|
|
#if defined(__sparc__) && defined(__linux__)
|
2000-02-09 01:28:47 +05:30
|
|
|
char *fake_sparc = getenv("FAKE_SPARC");
|
1999-10-26 10:51:02 +05:30
|
|
|
#endif
|
2009-01-19 22:02:23 +05:30
|
|
|
const char *unknown_str = "unknown";
|
|
|
|
const char *fmt;
|
2008-07-02 16:44:59 +05:30
|
|
|
const unsigned short *delta;
|
2009-01-19 22:08:30 +05:30
|
|
|
unsigned toprint;
|
2001-12-05 09:51:30 +05:30
|
|
|
|
2009-07-18 07:11:29 +05:30
|
|
|
IF_LONG_OPTS(applet_long_options = uname_longopts);
|
2007-08-18 21:02:12 +05:30
|
|
|
toprint = getopt32(argv, options);
|
2003-03-19 14:43:01 +05:30
|
|
|
|
2008-07-02 16:44:59 +05:30
|
|
|
if (argv[optind]) { /* coreutils-6.9 compat */
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
|
|
|
}
|
|
|
|
|
2009-01-19 22:02:23 +05:30
|
|
|
if (toprint & (1 << 8)) { /* -a => all opts on */
|
|
|
|
toprint = (1 << 8) - 1;
|
|
|
|
unknown_str = ""; /* -a does not print unknown fields */
|
1999-10-26 10:51:02 +05:30
|
|
|
}
|
|
|
|
|
2008-07-02 16:44:59 +05:30
|
|
|
if (toprint == 0) { /* no opts => -s (sysname) */
|
|
|
|
toprint = 1;
|
2001-12-05 09:51:30 +05:30
|
|
|
}
|
1999-10-26 10:51:02 +05:30
|
|
|
|
2008-07-02 16:44:59 +05:30
|
|
|
uname(&uname_info.name); /* never fails */
|
1999-10-26 10:51:02 +05:30
|
|
|
|
|
|
|
#if defined(__sparc__) && defined(__linux__)
|
2008-07-02 16:44:59 +05:30
|
|
|
if (fake_sparc && (fake_sparc[0] | 0x20) == 'y') {
|
2001-12-05 09:51:30 +05:30
|
|
|
strcpy(uname_info.name.machine, "sparc");
|
|
|
|
}
|
1999-10-26 10:51:02 +05:30
|
|
|
#endif
|
2009-01-19 22:02:23 +05:30
|
|
|
strcpy(uname_info.processor, unknown_str);
|
|
|
|
strcpy(uname_info.platform, unknown_str);
|
|
|
|
strcpy(uname_info.os, "GNU/Linux");
|
|
|
|
#if 0
|
|
|
|
/* Fedora does something like this */
|
|
|
|
strcpy(uname_info.processor, uname_info.name.machine);
|
|
|
|
strcpy(uname_info.platform, uname_info.name.machine);
|
|
|
|
if (uname_info.platform[0] == 'i'
|
|
|
|
&& uname_info.platform[1]
|
|
|
|
&& uname_info.platform[2] == '8'
|
|
|
|
&& uname_info.platform[3] == '6'
|
|
|
|
) {
|
|
|
|
uname_info.platform[1] = '3';
|
|
|
|
}
|
|
|
|
#endif
|
1999-10-26 10:51:02 +05:30
|
|
|
|
2006-10-27 04:51:47 +05:30
|
|
|
delta = utsname_offset;
|
2009-01-19 22:02:23 +05:30
|
|
|
fmt = " %s" + 1;
|
2002-03-25 08:07:20 +05:30
|
|
|
do {
|
2001-12-05 09:51:30 +05:30
|
|
|
if (toprint & 1) {
|
2009-01-19 22:02:23 +05:30
|
|
|
const char *p = (char *)(&uname_info) + *delta;
|
|
|
|
if (p[0]) {
|
|
|
|
printf(fmt, p);
|
|
|
|
fmt = " %s";
|
2002-03-25 08:07:20 +05:30
|
|
|
}
|
2001-12-05 09:51:30 +05:30
|
|
|
}
|
2002-03-25 08:07:20 +05:30
|
|
|
++delta;
|
|
|
|
} while (toprint >>= 1);
|
2007-09-27 15:50:47 +05:30
|
|
|
bb_putchar('\n');
|
1999-10-26 10:51:02 +05:30
|
|
|
|
2008-07-02 16:44:59 +05:30
|
|
|
fflush_stdout_and_exit(EXIT_SUCCESS); /* coreutils-6.9 compat */
|
1999-10-26 10:51:02 +05:30
|
|
|
}
|