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