158f0484fSRodney W. Grimes /*-
28a16b7a1SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni *
458f0484fSRodney W. Grimes * Copyright (c) 1994
558f0484fSRodney W. Grimes * The Regents of the University of California. All rights reserved.
658f0484fSRodney W. Grimes *
758f0484fSRodney W. Grimes * Redistribution and use in source and binary forms, with or without
858f0484fSRodney W. Grimes * modification, are permitted provided that the following conditions
958f0484fSRodney W. Grimes * are met:
1058f0484fSRodney W. Grimes * 1. Redistributions of source code must retain the above copyright
1158f0484fSRodney W. Grimes * notice, this list of conditions and the following disclaimer.
1258f0484fSRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright
1358f0484fSRodney W. Grimes * notice, this list of conditions and the following disclaimer in the
1458f0484fSRodney W. Grimes * documentation and/or other materials provided with the distribution.
15fbbd9655SWarner Losh * 3. Neither the name of the University nor the names of its contributors
1658f0484fSRodney W. Grimes * may be used to endorse or promote products derived from this software
1758f0484fSRodney W. Grimes * without specific prior written permission.
1858f0484fSRodney W. Grimes *
1958f0484fSRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2058f0484fSRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2158f0484fSRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2258f0484fSRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2358f0484fSRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2458f0484fSRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2558f0484fSRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2658f0484fSRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2758f0484fSRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2858f0484fSRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2958f0484fSRodney W. Grimes * SUCH DAMAGE.
3058f0484fSRodney W. Grimes */
3158f0484fSRodney W. Grimes
3258f0484fSRodney W. Grimes #include <sys/param.h>
3358f0484fSRodney W. Grimes #include <sys/sysctl.h>
3458f0484fSRodney W. Grimes #include <sys/utsname.h>
35b938dc24SGarrett Wollman #include <errno.h>
3600bb0c6bSDoug Ambrisko #include <stdlib.h>
3700bb0c6bSDoug Ambrisko #include <string.h>
3858f0484fSRodney W. Grimes
3958f0484fSRodney W. Grimes int
__xuname(int namesize,void * namebuf)4032e47970SPeter Wemm __xuname(int namesize, void *namebuf)
4158f0484fSRodney W. Grimes {
4258f0484fSRodney W. Grimes int mib[2], rval;
4358f0484fSRodney W. Grimes size_t len;
4416511f59SKonstantin Belousov char *p, *q;
45b938dc24SGarrett Wollman int oerrno;
4658f0484fSRodney W. Grimes
4758f0484fSRodney W. Grimes rval = 0;
4816511f59SKonstantin Belousov q = (char *)namebuf;
4958f0484fSRodney W. Grimes
5058f0484fSRodney W. Grimes mib[0] = CTL_KERN;
5116511f59SKonstantin Belousov
52d630a05fSDoug Ambrisko if ((p = getenv("UNAME_s")))
5316511f59SKonstantin Belousov strlcpy(q, p, namesize);
5416511f59SKonstantin Belousov else {
5516511f59SKonstantin Belousov mib[1] = KERN_OSTYPE;
5616511f59SKonstantin Belousov len = namesize;
5716511f59SKonstantin Belousov oerrno = errno;
5816511f59SKonstantin Belousov if (sysctl(mib, 2, q, &len, NULL, 0) == -1) {
5916511f59SKonstantin Belousov if (errno == ENOMEM)
6016511f59SKonstantin Belousov errno = oerrno;
6116511f59SKonstantin Belousov else
6216511f59SKonstantin Belousov rval = -1;
6316511f59SKonstantin Belousov }
6416511f59SKonstantin Belousov q[namesize - 1] = '\0';
6516511f59SKonstantin Belousov }
6616511f59SKonstantin Belousov q += namesize;
6758f0484fSRodney W. Grimes
6858f0484fSRodney W. Grimes mib[1] = KERN_HOSTNAME;
6916511f59SKonstantin Belousov len = namesize;
70b938dc24SGarrett Wollman oerrno = errno;
7116511f59SKonstantin Belousov if (sysctl(mib, 2, q, &len, NULL, 0) == -1) {
72b938dc24SGarrett Wollman if (errno == ENOMEM)
73b938dc24SGarrett Wollman errno = oerrno;
74b938dc24SGarrett Wollman else
7558f0484fSRodney W. Grimes rval = -1;
76b938dc24SGarrett Wollman }
7716511f59SKonstantin Belousov q[namesize - 1] = '\0';
7816511f59SKonstantin Belousov q += namesize;
7958f0484fSRodney W. Grimes
80d630a05fSDoug Ambrisko if ((p = getenv("UNAME_r")))
8116511f59SKonstantin Belousov strlcpy(q, p, namesize);
8216511f59SKonstantin Belousov else {
8316511f59SKonstantin Belousov mib[1] = KERN_OSRELEASE;
8416511f59SKonstantin Belousov len = namesize;
85b938dc24SGarrett Wollman oerrno = errno;
8616511f59SKonstantin Belousov if (sysctl(mib, 2, q, &len, NULL, 0) == -1) {
87b938dc24SGarrett Wollman if (errno == ENOMEM)
88b938dc24SGarrett Wollman errno = oerrno;
8958f0484fSRodney W. Grimes else
90b938dc24SGarrett Wollman rval = -1;
91a9680d71SMike Pritchard }
9216511f59SKonstantin Belousov q[namesize - 1] = '\0';
9316511f59SKonstantin Belousov }
9416511f59SKonstantin Belousov q += namesize;
9516511f59SKonstantin Belousov
9616511f59SKonstantin Belousov if ((p = getenv("UNAME_v")))
9716511f59SKonstantin Belousov strlcpy(q, p, namesize);
9816511f59SKonstantin Belousov else {
9916511f59SKonstantin Belousov
10016511f59SKonstantin Belousov /*
10116511f59SKonstantin Belousov * The version may have newlines in it, turn them into
10216511f59SKonstantin Belousov * spaces.
10316511f59SKonstantin Belousov */
10416511f59SKonstantin Belousov mib[1] = KERN_VERSION;
10516511f59SKonstantin Belousov len = namesize;
10616511f59SKonstantin Belousov oerrno = errno;
10716511f59SKonstantin Belousov if (sysctl(mib, 2, q, &len, NULL, 0) == -1) {
10816511f59SKonstantin Belousov if (errno == ENOMEM)
10916511f59SKonstantin Belousov errno = oerrno;
11016511f59SKonstantin Belousov else
11116511f59SKonstantin Belousov rval = -1;
11216511f59SKonstantin Belousov }
11316511f59SKonstantin Belousov q[namesize - 1] = '\0';
11416511f59SKonstantin Belousov for (p = q; len--; ++p) {
115b938dc24SGarrett Wollman if (*p == '\n' || *p == '\t') {
11658f0484fSRodney W. Grimes if (len > 1)
11758f0484fSRodney W. Grimes *p = ' ';
11858f0484fSRodney W. Grimes else
11958f0484fSRodney W. Grimes *p = '\0';
120b938dc24SGarrett Wollman }
121b938dc24SGarrett Wollman }
12216511f59SKonstantin Belousov }
12316511f59SKonstantin Belousov q += namesize;
12458f0484fSRodney W. Grimes
125*85dd8532SPiotr Kubaj if ((p = getenv("UNAME_m")))
12616511f59SKonstantin Belousov strlcpy(q, p, namesize);
12716511f59SKonstantin Belousov else {
12858f0484fSRodney W. Grimes mib[0] = CTL_HW;
129*85dd8532SPiotr Kubaj mib[1] = HW_MACHINE;
13016511f59SKonstantin Belousov len = namesize;
131b938dc24SGarrett Wollman oerrno = errno;
13259e2759dSKonstantin Belousov if (sysctl(mib, 2, q, &len, NULL, 0) == -1) {
133b938dc24SGarrett Wollman if (errno == ENOMEM)
134b938dc24SGarrett Wollman errno = oerrno;
135b938dc24SGarrett Wollman else
13658f0484fSRodney W. Grimes rval = -1;
137b938dc24SGarrett Wollman }
13816511f59SKonstantin Belousov q[namesize - 1] = '\0';
13916511f59SKonstantin Belousov }
14016511f59SKonstantin Belousov
14158f0484fSRodney W. Grimes return (rval);
14258f0484fSRodney W. Grimes }
143