Merge branch 'vendor/LIBEDIT'
[dragonfly.git] / sys / kern / kern_xxx.c
1 /*
2  * Copyright (c) 1982, 1986, 1989, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 4. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  *      @(#)kern_xxx.c  8.2 (Berkeley) 11/14/93
30  * $FreeBSD: src/sys/kern/kern_xxx.c,v 1.31 1999/08/28 00:46:15 peter Exp $
31  * $DragonFly: src/sys/kern/kern_xxx.c,v 1.10 2006/06/05 07:26:10 dillon Exp $
32  */
33
34 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/sysproto.h>
37 #include <sys/kernel.h>
38 #include <sys/proc.h>
39 #include <sys/priv.h>
40 #include <sys/sysctl.h>
41 #include <sys/utsname.h>
42
43 #include <sys/mplock2.h>
44
45 /*
46  * MPALMOSTSAFE
47  */
48 int
49 sys_uname(struct uname_args *uap)
50 {
51         int name[2], rtval;
52         size_t len;
53         char *s, *us;
54
55         get_mplock();
56
57         name[0] = CTL_KERN;
58         name[1] = KERN_OSTYPE;
59         len = sizeof uap->name->sysname;
60         rtval = userland_sysctl(name, 2, uap->name->sysname, &len, 
61                 1, 0, 0, 0);
62         if (rtval)
63                 goto done;
64         subyte( uap->name->sysname + sizeof(uap->name->sysname) - 1, 0);
65
66         name[1] = KERN_HOSTNAME;
67         len = sizeof uap->name->nodename;
68         rtval = userland_sysctl(name, 2, uap->name->nodename, &len, 
69                 1, 0, 0, 0);
70         if (rtval)
71                 goto done;
72         subyte( uap->name->nodename + sizeof(uap->name->nodename) - 1, 0);
73
74         name[1] = KERN_OSRELEASE;
75         len = sizeof uap->name->release;
76         rtval = userland_sysctl(name, 2, uap->name->release, &len, 
77                 1, 0, 0, 0);
78         if (rtval)
79                 goto done;
80         subyte( uap->name->release + sizeof(uap->name->release) - 1, 0);
81
82 /*
83         name = KERN_VERSION;
84         len = sizeof uap->name->version;
85         rtval = userland_sysctl(name, 2, uap->name->version, &len, 
86                 1, 0, 0, 0);
87         if (rtval)
88                 goto done;
89         subyte( uap->name->version + sizeof(uap->name->version) - 1, 0);
90 */
91
92 /*
93  * this stupid hackery to make the version field look like FreeBSD 1.1
94  */
95         for(s = version; *s && *s != '#'; s++);
96
97         for(us = uap->name->version; *s && *s != ':'; s++) {
98                 rtval = subyte( us++, *s);
99                 if (rtval)
100                         goto done;
101         }
102         rtval = subyte( us++, 0);
103         if (rtval)
104                 goto done;
105
106         name[0] = CTL_HW;
107         name[1] = HW_MACHINE;
108         len = sizeof uap->name->machine;
109         rtval = userland_sysctl(name, 2, uap->name->machine, &len, 
110                 1, 0, 0, 0);
111         if (rtval)
112                 goto done;
113         rtval = subyte(uap->name->machine + sizeof(uap->name->machine) - 1, 0);
114 done:
115         rel_mplock();
116         return rtval;
117 }
118
119 /*
120  * MPALMOSTSAFE
121  */
122 int
123 sys_getdomainname(struct getdomainname_args *uap)
124 {
125         int domainnamelen;
126         int error;
127
128         get_mplock();
129         domainnamelen = strlen(domainname) + 1;
130         if ((u_int)uap->len > domainnamelen + 1)
131                 uap->len = domainnamelen + 1;
132         error = copyout(domainname, uap->domainname, uap->len);
133         rel_mplock();
134         return (error);
135 }
136
137 /*
138  * MPALMOSTSAFE
139  */
140 int
141 sys_setdomainname(struct setdomainname_args *uap)
142 {
143         struct thread *td = curthread;
144         int error, domainnamelen;
145
146         if ((error = priv_check(td, PRIV_SETDOMAINNAME)))
147                 return (error);
148         if ((u_int)uap->len > sizeof(domainname) - 1)
149                 return EINVAL;
150         get_mplock();
151         domainnamelen = uap->len;
152         error = copyin(uap->domainname, domainname, uap->len);
153         domainname[domainnamelen] = 0;
154         rel_mplock();
155         return (error);
156 }
157