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
|
|
|
|
|
|
|
|
-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> */
|
|
|
|
|
|
|
|
/* Busyboxed by Erik Andersen */
|
|
|
|
|
2001-12-05 09:51:30 +05:30
|
|
|
/* Further size reductions by Glenn McGrath and Manuel Novoa III. */
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
|
|
|
|
*
|
|
|
|
* Now does proper error checking on i/o. Plus some further space savings.
|
|
|
|
*/
|
|
|
|
|
1999-10-26 10:51:02 +05:30
|
|
|
#include <sys/utsname.h>
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
1999-10-26 10:51:02 +05:30
|
|
|
|
2001-12-05 09:51:30 +05:30
|
|
|
typedef struct {
|
|
|
|
struct utsname name;
|
|
|
|
char processor[8]; /* for "unknown" */
|
|
|
|
} uname_info_t;
|
|
|
|
|
|
|
|
static const char options[] = "snrvmpa";
|
|
|
|
static const unsigned short int utsname_offset[] = {
|
|
|
|
offsetof(uname_info_t,name.sysname),
|
|
|
|
offsetof(uname_info_t,name.nodename),
|
|
|
|
offsetof(uname_info_t,name.release),
|
|
|
|
offsetof(uname_info_t,name.version),
|
|
|
|
offsetof(uname_info_t,name.machine),
|
|
|
|
offsetof(uname_info_t,processor)
|
|
|
|
};
|
1999-10-26 10:51:02 +05:30
|
|
|
|
2007-02-03 22:58:39 +05:30
|
|
|
int uname_main(int argc, char **argv);
|
1999-10-26 10:51:02 +05:30
|
|
|
int uname_main(int argc, char **argv)
|
|
|
|
{
|
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
|
2001-12-05 09:51:30 +05:30
|
|
|
const unsigned short int *delta;
|
2003-03-19 14:43:01 +05:30
|
|
|
char toprint;
|
2001-12-05 09:51:30 +05:30
|
|
|
|
2006-10-04 02:30:06 +05:30
|
|
|
toprint = getopt32(argc, argv, options);
|
2003-03-19 14:43:01 +05:30
|
|
|
|
|
|
|
if (argc != optind) {
|
|
|
|
bb_show_usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (toprint & (1 << 6)) {
|
|
|
|
toprint = 0x3f;
|
1999-10-26 10:51:02 +05:30
|
|
|
}
|
|
|
|
|
2001-12-05 09:51:30 +05:30
|
|
|
if (toprint == 0) {
|
2003-03-19 14:43:01 +05:30
|
|
|
toprint = 1; /* sysname */
|
2001-12-05 09:51:30 +05:30
|
|
|
}
|
1999-10-26 10:51:02 +05:30
|
|
|
|
2001-12-05 09:51:30 +05:30
|
|
|
if (uname(&uname_info.name) == -1) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("cannot get system name");
|
2001-12-05 09:51:30 +05:30
|
|
|
}
|
1999-10-26 10:51:02 +05:30
|
|
|
|
|
|
|
#if defined(__sparc__) && defined(__linux__)
|
2006-01-25 05:38:53 +05:30
|
|
|
if ((fake_sparc != NULL)
|
2001-12-05 09:51:30 +05:30
|
|
|
&& ((fake_sparc[0] == 'y')
|
|
|
|
|| (fake_sparc[0] == 'Y'))) {
|
|
|
|
strcpy(uname_info.name.machine, "sparc");
|
|
|
|
}
|
1999-10-26 10:51:02 +05:30
|
|
|
#endif
|
|
|
|
|
2001-12-05 09:51:30 +05:30
|
|
|
strcpy(uname_info.processor, "unknown");
|
1999-10-26 10:51:02 +05:30
|
|
|
|
2006-10-27 04:51:47 +05:30
|
|
|
delta = utsname_offset;
|
2002-03-25 08:07:20 +05:30
|
|
|
do {
|
2001-12-05 09:51:30 +05:30
|
|
|
if (toprint & 1) {
|
2006-10-27 04:51:47 +05:30
|
|
|
printf(((char *)(&uname_info)) + *delta);
|
2002-03-25 08:07:20 +05:30
|
|
|
if (toprint > 1) {
|
|
|
|
putchar(' ');
|
|
|
|
}
|
2001-12-05 09:51:30 +05:30
|
|
|
}
|
2002-03-25 08:07:20 +05:30
|
|
|
++delta;
|
|
|
|
} while (toprint >>= 1);
|
2001-12-05 09:51:30 +05:30
|
|
|
putchar('\n');
|
1999-10-26 10:51:02 +05:30
|
|
|
|
2006-10-27 04:51:47 +05:30
|
|
|
fflush_stdout_and_exit(EXIT_SUCCESS);
|
1999-10-26 10:51:02 +05:30
|
|
|
}
|