2 * Copyright (c) 2002 Juli Mallett.
4 * The Regents of the University of California. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. All advertising materials mentioning features or use of this software
15 * must display the following acknowledgement:
16 * This product includes software developed by the University of
17 * California, Berkeley and its contributors.
18 * 4. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * @(#) Copyright (c) 1993 The Regents of the University of California. All rights reserved.
35 * @(#)uname.c 8.2 (Berkeley) 5/4/95
36 * $FreeBSD: src/usr.bin/uname/uname.c,v 1.4.6.2 2002/10/17 07:47:29 jmallett Exp $
37 * $DragonFly: src/usr.bin/uname/uname.c,v 1.5 2007/01/04 14:19:03 y0netan1 Exp $
40 #include <sys/param.h>
41 #include <sys/sysctl.h>
48 #ifndef HW_MACHINE_UNAME
49 #define HW_MACHINE_UNAME HW_MACHINE
60 typedef void (*get_t
)(void);
61 get_t get_ident
, get_platform
, get_hostname
, get_arch
, get_release
, get_sysname
, get_version
;
63 void native_ident(void);
64 void native_platform(void);
65 void native_hostname(void);
66 void native_arch(void);
67 void native_release(void);
68 void native_sysname(void);
69 void native_version(void);
70 void print_uname(u_int
);
74 char *ident
, *platform
, *hostname
, *arch
, *release
, *sysname
, *version
;
78 main(int argc
, char *argv
[])
86 while ((ch
= getopt(argc
, argv
, "aimnprsv")) != -1)
89 flags
|= (MFLAG
| NFLAG
| RFLAG
| SFLAG
| VFLAG
);
130 #define CHECK_ENV(opt,var) \
132 if ((var = getenv("UNAME_" opt)) == NULL) { \
133 get_##var = native_##var; \
135 get_##var = (get_t)NULL; \
142 CHECK_ENV("s", sysname
);
143 CHECK_ENV("n", hostname
);
144 CHECK_ENV("r", release
);
145 CHECK_ENV("v", version
);
146 CHECK_ENV("m", platform
);
147 CHECK_ENV("p", arch
);
148 CHECK_ENV("i", ident
);
151 #define PRINT_FLAG(flags,flag,var) \
152 if ((flags & flag) == flag) { \
157 if (get_##var != NULL) \
163 print_uname(u_int flags
)
165 PRINT_FLAG(flags
, SFLAG
, sysname
);
166 PRINT_FLAG(flags
, NFLAG
, hostname
);
167 PRINT_FLAG(flags
, RFLAG
, release
);
168 PRINT_FLAG(flags
, VFLAG
, version
);
169 PRINT_FLAG(flags
, MFLAG
, platform
);
170 PRINT_FLAG(flags
, PFLAG
, arch
);
171 PRINT_FLAG(flags
, IFLAG
, ident
);
175 #define NATIVE_SYSCTL2_GET(var,mib0,mib1) \
179 int mib[] = { (mib0), (mib1) }; \
181 static char buf[1024]; \
182 char **varp = &(var); \
185 if (sysctl(mib, sizeof mib / sizeof mib[0], \
186 &buf, &len, NULL, 0) == -1) \
189 #define NATIVE_SYSCTLNAME_GET(var,name) \
194 static char buf[1024]; \
195 char **varp = &(var); \
198 if (sysctlbyname(name, &buf, &len, NULL,\
200 err(1, "sysctlbyname");
207 #define NATIVE_BUFFER (buf)
208 #define NATIVE_LENGTH (len)
210 NATIVE_SYSCTL2_GET(sysname
, CTL_KERN
, KERN_OSTYPE
) {
213 NATIVE_SYSCTL2_GET(hostname
, CTL_KERN
, KERN_HOSTNAME
) {
216 NATIVE_SYSCTL2_GET(release
, CTL_KERN
, KERN_OSRELEASE
) {
219 NATIVE_SYSCTL2_GET(version
, CTL_KERN
, KERN_VERSION
) {
226 if (*p
== '\n' || *p
== '\t')
230 NATIVE_SYSCTL2_GET(platform
, CTL_HW
, HW_MACHINE_UNAME
) {
233 NATIVE_SYSCTL2_GET(arch
, CTL_HW
, HW_MACHINE_ARCH
) {
236 NATIVE_SYSCTLNAME_GET(ident
, "kern.ident") {
242 fprintf(stderr
, "usage: uname [-aimnprsv]\n");