2 * 43BSD_HOSTINFO.C - 4.3BSD compatibility host info syscalls
4 * Copyright (c) 1982, 1986, 1989, 1993
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the University of
18 * California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * $DragonFly: src/sys/emulation/43bsd/43bsd_hostinfo.c,v 1.4 2006/09/05 00:55:44 dillon Exp $
36 * from: DragonFly kern/kern_xxx.c,v 1.7
37 * from: DragonFly kern/kern_sysctl.c,v 1.12
39 * These syscalls used to live in kern/kern_xxx.c and kern/kern_sysctl.c.
42 #include "opt_compat.h"
44 #include <sys/param.h>
45 #include <sys/systm.h>
46 #include <sys/sysproto.h>
47 #include <sys/kernel.h>
49 #include <sys/socket.h>
50 #include <sys/sysctl.h>
51 #include <vm/vm_param.h>
54 sys_ogethostname(struct gethostname_args
*uap
)
61 name
[1] = KERN_HOSTNAME
;
62 len
= MIN(uap
->len
, MAXHOSTNAMELEN
);
63 hostname
= kmalloc(MAXHOSTNAMELEN
, M_TEMP
, M_WAITOK
);
65 error
= kernel_sysctl(name
, 2, hostname
, &len
, NULL
, 0, NULL
);
68 error
= copyout(hostname
, uap
->hostname
, len
);
70 kfree(hostname
, M_TEMP
);
75 sys_osethostname(struct sethostname_args
*uap
)
77 struct thread
*td
= curthread
;
78 struct proc
*p
= td
->td_proc
;
86 name
[1] = KERN_HOSTNAME
;
87 error
= suser_cred(p
->p_ucred
, PRISON_ROOT
);
90 len
= MIN(uap
->len
, MAXHOSTNAMELEN
);
91 hostname
= kmalloc(MAXHOSTNAMELEN
, M_TEMP
, M_WAITOK
);
93 error
= copyin(uap
->hostname
, hostname
, len
);
95 kfree(hostname
, M_TEMP
);
99 error
= kernel_sysctl(name
, 2, NULL
, 0, hostname
, len
, NULL
);
101 kfree(hostname
, M_TEMP
);
106 sys_ogethostid(struct ogethostid_args
*uap
)
108 uap
->sysmsg_lresult
= hostid
;
113 sys_osethostid(struct osethostid_args
*uap
)
115 struct thread
*td
= curthread
;
121 hostid
= uap
->hostid
;
126 sys_oquota(struct oquota_args
*uap
)
131 #define KINFO_PROC (0<<8)
132 #define KINFO_RT (1<<8)
133 #define KINFO_VNODE (2<<8)
134 #define KINFO_FILE (3<<8)
135 #define KINFO_METER (4<<8)
136 #define KINFO_LOADAVG (5<<8)
137 #define KINFO_CLOCKRATE (6<<8)
139 /* Non-standard BSDI extension - only present on their 4.3 net-2 releases */
140 #define KINFO_BSDI_SYSINFO (101<<8)
143 * XXX this is bloat, but I hope it's better here than on the potentially
144 * limited kernel stack... -Peter
148 int bsdi_machine
; /* "i386" on BSD/386 */
149 /* ^^^ this is an offset to the string, relative to the struct start */
158 int bsdi_ostype
; /* "BSD/386" on BSD/386 */
159 int bsdi_osrelease
; /* "1.1" on BSD/386 */
171 struct timeval pad16
;
172 /* we dont set this, because BSDI's uname used gethostname() instead */
173 int bsdi_hostname
; /* hostname on BSD/386 */
175 /* the actual string data is appended here */
179 * this data is appended to the end of the bsdi_si structure during copyout.
180 * The "char *" offsets are relative to the base of the bsdi_si struct.
181 * This contains "FreeBSD\02.0-BUILT-nnnnnn\0i386\0", and these strings
182 * should not exceed the length of the buffer here... (or else!! :-)
184 static char bsdi_strings
[80]; /* It had better be less than this! */
187 sys_ogetkerninfo(struct getkerninfo_args
*uap
)
193 switch (uap
->op
& 0xff00) {
199 name
[3] = (uap
->op
& 0xff0000) >> 16;
200 name
[4] = uap
->op
& 0xff;
202 error
= userland_sysctl(name
, 6, uap
->where
, uap
->size
,
208 name
[1] = KERN_VNODE
;
209 error
= userland_sysctl(name
, 2, uap
->where
, uap
->size
,
216 name
[2] = uap
->op
& 0xff;
218 error
= userland_sysctl(name
, 4, uap
->where
, uap
->size
,
225 error
= userland_sysctl(name
, 2, uap
->where
, uap
->size
,
232 error
= userland_sysctl(name
, 2, uap
->where
, uap
->size
,
238 name
[1] = VM_LOADAVG
;
239 error
= userland_sysctl(name
, 2, uap
->where
, uap
->size
,
243 case KINFO_CLOCKRATE
:
245 name
[1] = KERN_CLOCKRATE
;
246 error
= userland_sysctl(name
, 2, uap
->where
, uap
->size
,
250 case KINFO_BSDI_SYSINFO
: {
252 * this is pretty crude, but it's just enough for uname()
253 * from BSDI's 1.x libc to work.
254 * *size gives the size of the buffer before the call, and
255 * the amount of data copied after a successful call.
256 * If successful, the return value is the amount of data
257 * available, which can be larger than *size.
259 * BSDI's 2.x product apparently fails with ENOMEM if
260 * *size is too small.
266 bzero((char *)&bsdi_si
, sizeof(bsdi_si
));
267 bzero(bsdi_strings
, sizeof(bsdi_strings
));
271 bsdi_si
.bsdi_ostype
= (s
- bsdi_strings
) + sizeof(bsdi_si
);
275 bsdi_si
.bsdi_osrelease
= (s
- bsdi_strings
) + sizeof(bsdi_si
);
276 strcpy(s
, osrelease
);
279 bsdi_si
.bsdi_machine
= (s
- bsdi_strings
) + sizeof(bsdi_si
);
283 needed
= sizeof(bsdi_si
) + (s
- bsdi_strings
);
285 if (uap
->where
== NULL
|| (uap
->size
== NULL
)) {
286 /* process is asking how much buffer to supply.. */
292 if ((error
= copyin(uap
->size
, &size
, sizeof(size
))) != 0)
295 /* if too much buffer supplied, trim it down */
299 /* how much of the buffer is remaining */
302 if ((error
= copyout((char *)&bsdi_si
, uap
->where
, left
)) != 0)
305 /* is there any point in continuing? */
306 if (left
> sizeof(bsdi_si
)) {
307 left
-= sizeof(bsdi_si
);
308 error
= copyout(&bsdi_strings
,
309 uap
->where
+ sizeof(bsdi_si
), left
);
319 uap
->sysmsg_result
= size
;
321 error
= copyout((caddr_t
)&size
, (caddr_t
)uap
->size
,