new NOFORKs: clear, nproc, tty, uname, arch, unlink, which
[oweals/busybox.git] / coreutils / uname.c
1 /* vi: set sw=4 ts=4: */
2 /* uname -- print system information
3  * Copyright (C) 1989-1999 Free Software Foundation, Inc.
4  *
5  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
6  */
7 /* Option               Example
8  * -s, --sysname        SunOS
9  * -n, --nodename       rocky8
10  * -r, --release        4.0
11  * -v, --version
12  * -m, --machine        sun
13  * -a, --all            SunOS rocky8 4.0  sun
14  *
15  * The default behavior is equivalent to '-s'.
16  *
17  * David MacKenzie <djm@gnu.ai.mit.edu>
18  *
19  * GNU coreutils 6.10:
20  * Option:                      struct   Example(s):
21  *                              utsname
22  *                              field:
23  * -s, --kernel-name            sysname  Linux
24  * -n, --nodename               nodename localhost.localdomain
25  * -r, --kernel-release         release  2.6.29
26  * -v, --kernel-version         version  #1 SMP Sun Jan 11 20:52:37 EST 2009
27  * -m, --machine                machine  x86_64   i686
28  * -p, --processor              (none)   x86_64   i686
29  * -i, --hardware-platform      (none)   x86_64   i386
30  *      NB: vanilla coreutils reports "unknown" -p and -i,
31  *      x86_64 and i686/i386 shown above are Fedora's inventions.
32  * -o, --operating-system       (none)   GNU/Linux
33  * -a, --all: all of the above, in the order shown.
34  *      If -p or -i is not known, don't show them
35  */
36 /* Busyboxed by Erik Andersen
37  *
38  * Before 2003: Glenn McGrath and Manuel Novoa III
39  *  Further size reductions.
40  * Mar 16, 2003: Manuel Novoa III (mjn3@codepoet.org)
41  *  Now does proper error checking on i/o.  Plus some further space savings.
42  * Jan 2009:
43  *  Fix handling of -a to not print "unknown", add -o and -i support.
44  */
45 //config:config UNAME
46 //config:       bool "uname (3.7 kb)"
47 //config:       default y
48 //config:       help
49 //config:       uname is used to print system information.
50 //config:
51 //config:config UNAME_OSNAME
52 //config:       string "Operating system name"
53 //config:       default "GNU/Linux"
54 //config:       depends on UNAME
55 //config:       help
56 //config:       Sets the operating system name reported by uname -o.  The
57 //config:       default is "GNU/Linux".
58 //config:
59 //can't use "ARCH" for this applet, all hell breaks loose in build system :)
60 //config:config BB_ARCH
61 //config:       bool "arch (1.6 kb)"
62 //config:       default y
63 //config:       help
64 //config:       Same as uname -m.
65
66 //                  APPLET_NOFORK:name   main   location    suid_type     help
67 //applet:IF_UNAME(APPLET_NOFORK(  uname, uname, BB_DIR_BIN, BB_SUID_DROP, uname))
68 //applet:IF_BB_ARCH(APPLET_NOFORK(arch,  uname, BB_DIR_BIN, BB_SUID_DROP, arch))
69
70 //kbuild:lib-$(CONFIG_UNAME)   += uname.o
71 //kbuild:lib-$(CONFIG_BB_ARCH) += uname.o
72
73 /* BB_AUDIT SUSv3 compliant */
74 /* http://www.opengroup.org/onlinepubs/007904975/utilities/uname.html */
75
76 //usage:#define uname_trivial_usage
77 //usage:       "[-amnrspvio]"
78 //usage:#define uname_full_usage "\n\n"
79 //usage:       "Print system information\n"
80 //usage:     "\n        -a      Print all"
81 //usage:     "\n        -m      The machine (hardware) type"
82 //usage:     "\n        -n      Hostname"
83 //usage:     "\n        -r      Kernel release"
84 //usage:     "\n        -s      Kernel name (default)"
85 //usage:     "\n        -p      Processor type"
86 //usage:     "\n        -v      Kernel version"
87 //usage:     "\n        -i      The hardware platform"
88 //usage:     "\n        -o      OS name"
89 //usage:
90 //usage:#define uname_example_usage
91 //usage:       "$ uname -a\n"
92 //usage:       "Linux debian 2.4.23 #2 Tue Dec 23 17:09:10 MST 2003 i686 GNU/Linux\n"
93
94 //usage:#define arch_trivial_usage
95 //usage:       ""
96 //usage:#define arch_full_usage "\n\n"
97 //usage:       "Print system architecture"
98
99 #include "libbb.h"
100 /* After libbb.h, since it needs sys/types.h on some systems */
101 #include <sys/utsname.h>
102
103 typedef struct {
104         struct utsname name;
105         char processor[sizeof(((struct utsname*)NULL)->machine)];
106         char platform[sizeof(((struct utsname*)NULL)->machine)];
107         char os[sizeof(CONFIG_UNAME_OSNAME)];
108 } uname_info_t;
109
110 #if ENABLE_UNAME
111 #define options "snrvmpioa"
112 static const unsigned short utsname_offset[] = {
113         offsetof(uname_info_t, name.sysname), /* -s */
114         offsetof(uname_info_t, name.nodename), /* -n */
115         offsetof(uname_info_t, name.release), /* -r */
116         offsetof(uname_info_t, name.version), /* -v */
117         offsetof(uname_info_t, name.machine), /* -m */
118         offsetof(uname_info_t, processor), /* -p */
119         offsetof(uname_info_t, platform), /* -i */
120         offsetof(uname_info_t, os), /* -o */
121 };
122 #endif
123
124 int uname_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
125 int uname_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
126 {
127         uname_info_t uname_info;
128         IF_UNAME(const char *unknown_str = "unknown";)
129         unsigned toprint;
130
131         toprint = (1 << 4); /* "arch" = "uname -m" */
132
133 #if ENABLE_UNAME
134         if (!ENABLE_BB_ARCH || applet_name[0] == 'u') {
135 # if ENABLE_LONG_OPTS
136                 static const char uname_longopts[] ALIGN1 =
137                         /* name, has_arg, val */
138                         "all\0"               No_argument       "a"
139                         "kernel-name\0"       No_argument       "s"
140                         "nodename\0"          No_argument       "n"
141                         "kernel-release\0"    No_argument       "r"
142                         "release\0"           No_argument       "r"
143                         "kernel-version\0"    No_argument       "v"
144                         "machine\0"           No_argument       "m"
145                         "processor\0"         No_argument       "p"
146                         "hardware-platform\0" No_argument       "i"
147                         "operating-system\0"  No_argument       "o"
148                 ;
149 # endif
150                 IF_LONG_OPTS(applet_long_options = uname_longopts);
151                 toprint = getopt32(argv, options);
152                 if (argv[optind]) { /* coreutils-6.9 compat */
153                         bb_show_usage();
154                 }
155                 if (toprint & (1 << 8)) { /* -a => all opts on */
156                         toprint = (1 << 8) - 1;
157                         unknown_str = ""; /* -a does not print unknown fields */
158                 }
159                 if (toprint == 0) { /* no opts => -s (sysname) */
160                         toprint = 1;
161                 }
162         } /* if "uname" */
163 #endif
164
165         uname(&uname_info.name); /* never fails */
166
167 #if defined(__sparc__) && defined(__linux__)
168         {
169                 char *fake_sparc = getenv("FAKE_SPARC");
170                 if (fake_sparc && (fake_sparc[0] | 0x20) == 'y') {
171                         strcpy(uname_info.name.machine, "sparc");
172                 }
173         }
174 #endif
175         if (ENABLE_BB_ARCH && (!ENABLE_UNAME || applet_name[0] == 'a')) {
176                 puts(uname_info.name.machine);
177         } else {
178 #if ENABLE_UNAME
179                 /* "uname" */
180                 const char *fmt;
181                 const unsigned short *delta;
182
183                 strcpy(uname_info.processor, unknown_str);
184                 strcpy(uname_info.platform, unknown_str);
185                 strcpy(uname_info.os, CONFIG_UNAME_OSNAME);
186 # if 0
187                 /* Fedora does something like this */
188                 strcpy(uname_info.processor, uname_info.name.machine);
189                 strcpy(uname_info.platform, uname_info.name.machine);
190                 if (uname_info.platform[0] == 'i'
191                  && uname_info.platform[1]
192                  && uname_info.platform[2] == '8'
193                  && uname_info.platform[3] == '6'
194                 ) {
195                         uname_info.platform[1] = '3';
196                 }
197 # endif
198                 delta = utsname_offset;
199                 fmt = " %s" + 1;
200                 do {
201                         if (toprint & 1) {
202                                 const char *p = (char *)(&uname_info) + *delta;
203                                 if (p[0]) {
204                                         printf(fmt, p);
205                                         fmt = " %s";
206                                 }
207                         }
208                         ++delta;
209                 } while (toprint >>= 1);
210                 bb_putchar('\n');
211 #endif
212         }
213
214         fflush_stdout_and_exit(EXIT_SUCCESS); /* coreutils-6.9 compat */
215 }