2005-01-06 23:35:40 +00:00
|
|
|
/*-
|
2017-11-20 19:43:44 +00:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
1994-05-24 10:09:53 +00:00
|
|
|
* Copyright (c) 1982, 1986, 1989, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2016-09-15 13:16:20 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-24 10:09:53 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* @(#)kern_xxx.c 8.2 (Berkeley) 11/14/93
|
|
|
|
*/
|
|
|
|
|
2003-06-11 00:56:59 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
1995-11-12 06:43:28 +00:00
|
|
|
#include <sys/sysproto.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/kernel.h>
|
2006-11-06 13:42:10 +00:00
|
|
|
#include <sys/priv.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/proc.h>
|
2001-09-01 05:47:58 +00:00
|
|
|
#include <sys/lock.h>
|
|
|
|
#include <sys/mutex.h>
|
2008-12-29 19:24:00 +00:00
|
|
|
#include <sys/socket.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/sysctl.h>
|
1994-05-25 09:21:21 +00:00
|
|
|
#include <sys/utsname.h>
|
|
|
|
|
2008-12-29 19:24:00 +00:00
|
|
|
#include <vm/vm_param.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2004-06-11 11:16:26 +00:00
|
|
|
#if defined(COMPAT_43)
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
2018-12-04 16:48:47 +00:00
|
|
|
ogethostname(struct thread *td, struct ogethostname_args *uap)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-11-09 20:22:12 +00:00
|
|
|
int name[2];
|
1998-08-24 08:39:39 +00:00
|
|
|
size_t len = uap->len;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1995-11-09 20:22:12 +00:00
|
|
|
name[0] = CTL_KERN;
|
|
|
|
name[1] = KERN_HOSTNAME;
|
2008-12-29 12:58:45 +00:00
|
|
|
return (userland_sysctl(td, name, 2, uap->hostname, &len,
|
|
|
|
1, 0, 0, 0, 0));
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
2018-12-04 16:48:47 +00:00
|
|
|
osethostname(struct thread *td, struct osethostname_args *uap)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-11-09 20:22:12 +00:00
|
|
|
int name[2];
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1995-11-09 20:22:12 +00:00
|
|
|
name[0] = CTL_KERN;
|
|
|
|
name[1] = KERN_HOSTNAME;
|
2008-12-29 12:58:45 +00:00
|
|
|
return (userland_sysctl(td, name, 2, 0, 0, 0, uap->hostname,
|
|
|
|
uap->len, 0, 0));
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
1995-11-12 06:43:28 +00:00
|
|
|
#ifndef _SYS_SYSPROTO_H_
|
1995-11-11 01:04:42 +00:00
|
|
|
struct ogethostid_args {
|
1994-05-24 10:09:53 +00:00
|
|
|
int dummy;
|
|
|
|
};
|
1995-11-12 06:43:28 +00:00
|
|
|
#endif
|
1994-05-24 10:09:53 +00:00
|
|
|
/* ARGSUSED */
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
2017-05-17 00:34:34 +00:00
|
|
|
ogethostid(struct thread *td, struct ogethostid_args *uap)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2009-05-29 21:27:12 +00:00
|
|
|
size_t len = sizeof(long);
|
|
|
|
int name[2];
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2009-05-29 21:27:12 +00:00
|
|
|
name[0] = CTL_KERN;
|
|
|
|
name[1] = KERN_HOSTID;
|
|
|
|
return (kernel_sysctl(td, name, 2, (long *)td->td_retval, &len,
|
|
|
|
NULL, 0, NULL, 0));
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
2017-05-17 00:34:34 +00:00
|
|
|
osethostid(struct thread *td, struct osethostid_args *uap)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2009-05-29 21:27:12 +00:00
|
|
|
int name[2];
|
|
|
|
|
|
|
|
name[0] = CTL_KERN;
|
|
|
|
name[1] = KERN_HOSTID;
|
|
|
|
return (kernel_sysctl(td, name, 2, NULL, NULL, &uap->hostid,
|
|
|
|
sizeof(uap->hostid), NULL, 0));
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
2017-05-17 00:34:34 +00:00
|
|
|
oquota(struct thread *td, struct oquota_args *uap)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2007-03-05 13:10:58 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
return (ENOSYS);
|
|
|
|
}
|
2008-12-29 19:24:00 +00:00
|
|
|
|
|
|
|
#define KINFO_PROC (0<<8)
|
|
|
|
#define KINFO_RT (1<<8)
|
|
|
|
#define KINFO_VNODE (2<<8)
|
|
|
|
#define KINFO_FILE (3<<8)
|
|
|
|
#define KINFO_METER (4<<8)
|
|
|
|
#define KINFO_LOADAVG (5<<8)
|
|
|
|
#define KINFO_CLOCKRATE (6<<8)
|
|
|
|
|
|
|
|
/* Non-standard BSDI extension - only present on their 4.3 net-2 releases */
|
|
|
|
#define KINFO_BSDI_SYSINFO (101<<8)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX this is bloat, but I hope it's better here than on the potentially
|
|
|
|
* limited kernel stack... -Peter
|
|
|
|
*/
|
|
|
|
|
|
|
|
static struct {
|
|
|
|
int bsdi_machine; /* "i386" on BSD/386 */
|
|
|
|
/* ^^^ this is an offset to the string, relative to the struct start */
|
|
|
|
char *pad0;
|
|
|
|
long pad1;
|
|
|
|
long pad2;
|
|
|
|
long pad3;
|
|
|
|
u_long pad4;
|
|
|
|
u_long pad5;
|
|
|
|
u_long pad6;
|
|
|
|
|
|
|
|
int bsdi_ostype; /* "BSD/386" on BSD/386 */
|
|
|
|
int bsdi_osrelease; /* "1.1" on BSD/386 */
|
|
|
|
long pad7;
|
|
|
|
long pad8;
|
|
|
|
char *pad9;
|
|
|
|
|
|
|
|
long pad10;
|
|
|
|
long pad11;
|
|
|
|
int pad12;
|
|
|
|
long pad13;
|
|
|
|
quad_t pad14;
|
|
|
|
long pad15;
|
|
|
|
|
|
|
|
struct timeval pad16;
|
|
|
|
/* we dont set this, because BSDI's uname used gethostname() instead */
|
|
|
|
int bsdi_hostname; /* hostname on BSD/386 */
|
|
|
|
|
|
|
|
/* the actual string data is appended here */
|
|
|
|
|
|
|
|
} bsdi_si;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* this data is appended to the end of the bsdi_si structure during copyout.
|
|
|
|
* The "char *" offsets are relative to the base of the bsdi_si struct.
|
|
|
|
* This contains "FreeBSD\02.0-BUILT-nnnnnn\0i386\0", and these strings
|
|
|
|
* should not exceed the length of the buffer here... (or else!! :-)
|
|
|
|
*/
|
|
|
|
static char bsdi_strings[80]; /* It had better be less than this! */
|
|
|
|
|
|
|
|
int
|
2018-12-04 16:48:47 +00:00
|
|
|
ogetkerninfo(struct thread *td, struct ogetkerninfo_args *uap)
|
2008-12-29 19:24:00 +00:00
|
|
|
{
|
|
|
|
int error, name[6];
|
|
|
|
size_t size;
|
|
|
|
u_int needed = 0;
|
|
|
|
|
|
|
|
switch (uap->op & 0xff00) {
|
|
|
|
case KINFO_RT:
|
|
|
|
name[0] = CTL_NET;
|
|
|
|
name[1] = PF_ROUTE;
|
|
|
|
name[2] = 0;
|
|
|
|
name[3] = (uap->op & 0xff0000) >> 16;
|
|
|
|
name[4] = uap->op & 0xff;
|
|
|
|
name[5] = uap->arg;
|
|
|
|
error = userland_sysctl(td, name, 6, uap->where, uap->size,
|
|
|
|
0, 0, 0, &size, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case KINFO_VNODE:
|
|
|
|
name[0] = CTL_KERN;
|
|
|
|
name[1] = KERN_VNODE;
|
|
|
|
error = userland_sysctl(td, name, 2, uap->where, uap->size,
|
|
|
|
0, 0, 0, &size, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case KINFO_PROC:
|
|
|
|
name[0] = CTL_KERN;
|
|
|
|
name[1] = KERN_PROC;
|
|
|
|
name[2] = uap->op & 0xff;
|
|
|
|
name[3] = uap->arg;
|
|
|
|
error = userland_sysctl(td, name, 4, uap->where, uap->size,
|
|
|
|
0, 0, 0, &size, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case KINFO_FILE:
|
|
|
|
name[0] = CTL_KERN;
|
|
|
|
name[1] = KERN_FILE;
|
|
|
|
error = userland_sysctl(td, name, 2, uap->where, uap->size,
|
|
|
|
0, 0, 0, &size, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case KINFO_METER:
|
|
|
|
name[0] = CTL_VM;
|
|
|
|
name[1] = VM_TOTAL;
|
|
|
|
error = userland_sysctl(td, name, 2, uap->where, uap->size,
|
|
|
|
0, 0, 0, &size, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case KINFO_LOADAVG:
|
|
|
|
name[0] = CTL_VM;
|
|
|
|
name[1] = VM_LOADAVG;
|
|
|
|
error = userland_sysctl(td, name, 2, uap->where, uap->size,
|
|
|
|
0, 0, 0, &size, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case KINFO_CLOCKRATE:
|
|
|
|
name[0] = CTL_KERN;
|
|
|
|
name[1] = KERN_CLOCKRATE;
|
|
|
|
error = userland_sysctl(td, name, 2, uap->where, uap->size,
|
|
|
|
0, 0, 0, &size, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case KINFO_BSDI_SYSINFO: {
|
|
|
|
/*
|
|
|
|
* this is pretty crude, but it's just enough for uname()
|
|
|
|
* from BSDI's 1.x libc to work.
|
|
|
|
*
|
|
|
|
* *size gives the size of the buffer before the call, and
|
|
|
|
* the amount of data copied after a successful call.
|
|
|
|
* If successful, the return value is the amount of data
|
|
|
|
* available, which can be larger than *size.
|
|
|
|
*
|
|
|
|
* BSDI's 2.x product apparently fails with ENOMEM if *size
|
|
|
|
* is too small.
|
|
|
|
*/
|
|
|
|
|
|
|
|
u_int left;
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
bzero((char *)&bsdi_si, sizeof(bsdi_si));
|
|
|
|
bzero(bsdi_strings, sizeof(bsdi_strings));
|
|
|
|
|
|
|
|
s = bsdi_strings;
|
|
|
|
|
|
|
|
bsdi_si.bsdi_ostype = (s - bsdi_strings) + sizeof(bsdi_si);
|
|
|
|
strcpy(s, ostype);
|
|
|
|
s += strlen(s) + 1;
|
|
|
|
|
|
|
|
bsdi_si.bsdi_osrelease = (s - bsdi_strings) + sizeof(bsdi_si);
|
|
|
|
strcpy(s, osrelease);
|
|
|
|
s += strlen(s) + 1;
|
|
|
|
|
|
|
|
bsdi_si.bsdi_machine = (s - bsdi_strings) + sizeof(bsdi_si);
|
|
|
|
strcpy(s, machine);
|
|
|
|
s += strlen(s) + 1;
|
|
|
|
|
|
|
|
needed = sizeof(bsdi_si) + (s - bsdi_strings);
|
|
|
|
|
|
|
|
if ((uap->where == NULL) || (uap->size == NULL)) {
|
|
|
|
/* process is asking how much buffer to supply.. */
|
|
|
|
size = needed;
|
|
|
|
error = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = copyin(uap->size, &size, sizeof(size))) != 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* if too much buffer supplied, trim it down */
|
|
|
|
if (size > needed)
|
|
|
|
size = needed;
|
|
|
|
|
|
|
|
/* how much of the buffer is remaining */
|
|
|
|
left = size;
|
|
|
|
|
|
|
|
if ((error = copyout((char *)&bsdi_si, uap->where, left)) != 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* is there any point in continuing? */
|
|
|
|
if (left > sizeof(bsdi_si)) {
|
|
|
|
left -= sizeof(bsdi_si);
|
|
|
|
error = copyout(&bsdi_strings,
|
|
|
|
uap->where + sizeof(bsdi_si), left);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
error = EOPNOTSUPP;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (error == 0) {
|
|
|
|
td->td_retval[0] = needed ? needed : size;
|
|
|
|
if (uap->size) {
|
|
|
|
error = copyout(&size, uap->size, sizeof(size));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (error);
|
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
#endif /* COMPAT_43 */
|
1994-05-25 09:21:21 +00:00
|
|
|
|
Mark uname(), getdomainname() and setdomainname() with COMPAT_FREEBSD4.
Looking at our source code history, it seems the uname(),
getdomainname() and setdomainname() system calls got deprecated
somewhere after FreeBSD 1.1, but they have never been phased out
properly. Because we don't have a COMPAT_FREEBSD1, just use
COMPAT_FREEBSD4.
Also fix the Linuxolator to build without the setdomainname() routine by
just making it call userland_sysctl on kern.domainname. Also replace the
setdomainname()'s implementation to use this approach, because we're
duplicating code with sysctl_domainname().
I wasn't able to keep these three routines working in our
COMPAT_FREEBSD32, because that would require yet another keyword for
syscalls.master (COMPAT4+NOPROTO). Because this routine is probably
unused already, this won't be a problem in practice. If it turns out to
be a problem, we'll just restore this functionality.
Reviewed by: rdivacky, kib
2008-11-09 10:45:13 +00:00
|
|
|
#ifdef COMPAT_FREEBSD4
|
2001-03-24 04:40:49 +00:00
|
|
|
/*
|
Mark uname(), getdomainname() and setdomainname() with COMPAT_FREEBSD4.
Looking at our source code history, it seems the uname(),
getdomainname() and setdomainname() system calls got deprecated
somewhere after FreeBSD 1.1, but they have never been phased out
properly. Because we don't have a COMPAT_FREEBSD1, just use
COMPAT_FREEBSD4.
Also fix the Linuxolator to build without the setdomainname() routine by
just making it call userland_sysctl on kern.domainname. Also replace the
setdomainname()'s implementation to use this approach, because we're
duplicating code with sysctl_domainname().
I wasn't able to keep these three routines working in our
COMPAT_FREEBSD32, because that would require yet another keyword for
syscalls.master (COMPAT4+NOPROTO). Because this routine is probably
unused already, this won't be a problem in practice. If it turns out to
be a problem, we'll just restore this functionality.
Reviewed by: rdivacky, kib
2008-11-09 10:45:13 +00:00
|
|
|
* This is the FreeBSD-1.1 compatible uname(2) interface. These days it is
|
2007-03-05 13:10:58 +00:00
|
|
|
* done in libc as a wrapper around a bunch of sysctl's. This must maintain
|
|
|
|
* the old 1.1 binary ABI.
|
2001-03-24 04:40:49 +00:00
|
|
|
*/
|
|
|
|
#if SYS_NMLN != 32
|
|
|
|
#error "FreeBSD-1.1 uname syscall has been broken"
|
|
|
|
#endif
|
1995-11-12 06:43:28 +00:00
|
|
|
#ifndef _SYS_SYSPROTO_H_
|
1994-05-25 09:21:21 +00:00
|
|
|
struct uname_args {
|
2008-06-26 22:45:04 +00:00
|
|
|
struct utsname *name;
|
1994-05-25 09:21:21 +00:00
|
|
|
};
|
1995-11-12 06:43:28 +00:00
|
|
|
#endif
|
1994-05-25 09:21:21 +00:00
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
Mark uname(), getdomainname() and setdomainname() with COMPAT_FREEBSD4.
Looking at our source code history, it seems the uname(),
getdomainname() and setdomainname() system calls got deprecated
somewhere after FreeBSD 1.1, but they have never been phased out
properly. Because we don't have a COMPAT_FREEBSD1, just use
COMPAT_FREEBSD4.
Also fix the Linuxolator to build without the setdomainname() routine by
just making it call userland_sysctl on kern.domainname. Also replace the
setdomainname()'s implementation to use this approach, because we're
duplicating code with sysctl_domainname().
I wasn't able to keep these three routines working in our
COMPAT_FREEBSD32, because that would require yet another keyword for
syscalls.master (COMPAT4+NOPROTO). Because this routine is probably
unused already, this won't be a problem in practice. If it turns out to
be a problem, we'll just restore this functionality.
Reviewed by: rdivacky, kib
2008-11-09 10:45:13 +00:00
|
|
|
freebsd4_uname(struct thread *td, struct freebsd4_uname_args *uap)
|
1994-05-25 09:21:21 +00:00
|
|
|
{
|
2001-09-01 05:47:58 +00:00
|
|
|
int name[2], error;
|
1998-08-24 08:39:39 +00:00
|
|
|
size_t len;
|
1994-05-25 09:21:21 +00:00
|
|
|
char *s, *us;
|
|
|
|
|
1995-11-09 20:22:12 +00:00
|
|
|
name[0] = CTL_KERN;
|
|
|
|
name[1] = KERN_OSTYPE;
|
2001-09-01 05:47:58 +00:00
|
|
|
len = sizeof (uap->name->sysname);
|
2001-09-12 08:38:13 +00:00
|
|
|
error = userland_sysctl(td, name, 2, uap->name->sysname, &len,
|
2004-10-11 22:04:16 +00:00
|
|
|
1, 0, 0, 0, 0);
|
2001-09-01 05:47:58 +00:00
|
|
|
if (error)
|
2008-12-29 12:58:45 +00:00
|
|
|
return (error);
|
1994-05-25 09:21:21 +00:00
|
|
|
subyte( uap->name->sysname + sizeof(uap->name->sysname) - 1, 0);
|
|
|
|
|
1995-11-09 20:22:12 +00:00
|
|
|
name[1] = KERN_HOSTNAME;
|
1994-05-25 09:21:21 +00:00
|
|
|
len = sizeof uap->name->nodename;
|
2001-09-12 08:38:13 +00:00
|
|
|
error = userland_sysctl(td, name, 2, uap->name->nodename, &len,
|
2004-10-11 22:04:16 +00:00
|
|
|
1, 0, 0, 0, 0);
|
2001-09-01 05:47:58 +00:00
|
|
|
if (error)
|
2008-12-29 12:58:45 +00:00
|
|
|
return (error);
|
1994-05-25 09:21:21 +00:00
|
|
|
subyte( uap->name->nodename + sizeof(uap->name->nodename) - 1, 0);
|
|
|
|
|
1995-11-09 20:22:12 +00:00
|
|
|
name[1] = KERN_OSRELEASE;
|
1994-05-25 09:21:21 +00:00
|
|
|
len = sizeof uap->name->release;
|
2001-09-12 08:38:13 +00:00
|
|
|
error = userland_sysctl(td, name, 2, uap->name->release, &len,
|
2004-10-11 22:04:16 +00:00
|
|
|
1, 0, 0, 0, 0);
|
2001-09-01 05:47:58 +00:00
|
|
|
if (error)
|
2008-12-29 12:58:45 +00:00
|
|
|
return (error);
|
1994-05-25 09:21:21 +00:00
|
|
|
subyte( uap->name->release + sizeof(uap->name->release) - 1, 0);
|
|
|
|
|
|
|
|
/*
|
|
|
|
name = KERN_VERSION;
|
|
|
|
len = sizeof uap->name->version;
|
2001-09-12 08:38:13 +00:00
|
|
|
error = userland_sysctl(td, name, 2, uap->name->version, &len,
|
2004-10-11 22:04:16 +00:00
|
|
|
1, 0, 0, 0, 0);
|
2001-09-01 05:47:58 +00:00
|
|
|
if (error)
|
2008-12-29 12:58:45 +00:00
|
|
|
return (error);
|
1994-05-25 09:21:21 +00:00
|
|
|
subyte( uap->name->version + sizeof(uap->name->version) - 1, 0);
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* this stupid hackery to make the version field look like FreeBSD 1.1
|
|
|
|
*/
|
|
|
|
for(s = version; *s && *s != '#'; s++);
|
|
|
|
|
|
|
|
for(us = uap->name->version; *s && *s != ':'; s++) {
|
2001-09-01 05:47:58 +00:00
|
|
|
error = subyte( us++, *s);
|
|
|
|
if (error)
|
2008-12-29 12:58:45 +00:00
|
|
|
return (error);
|
1994-05-25 09:21:21 +00:00
|
|
|
}
|
2001-09-01 05:47:58 +00:00
|
|
|
error = subyte( us++, 0);
|
|
|
|
if (error)
|
2008-12-29 12:58:45 +00:00
|
|
|
return (error);
|
1994-05-25 09:21:21 +00:00
|
|
|
|
1998-08-24 08:39:39 +00:00
|
|
|
name[0] = CTL_HW;
|
1995-11-09 20:22:12 +00:00
|
|
|
name[1] = HW_MACHINE;
|
1994-05-25 09:21:21 +00:00
|
|
|
len = sizeof uap->name->machine;
|
2001-09-12 08:38:13 +00:00
|
|
|
error = userland_sysctl(td, name, 2, uap->name->machine, &len,
|
2004-10-11 22:04:16 +00:00
|
|
|
1, 0, 0, 0, 0);
|
2001-09-01 05:47:58 +00:00
|
|
|
if (error)
|
2008-12-29 12:58:45 +00:00
|
|
|
return (error);
|
1994-05-25 09:21:21 +00:00
|
|
|
subyte( uap->name->machine + sizeof(uap->name->machine) - 1, 0);
|
2008-12-29 12:58:45 +00:00
|
|
|
return (0);
|
1994-05-25 09:21:21 +00:00
|
|
|
}
|
|
|
|
|
1995-11-12 06:43:28 +00:00
|
|
|
#ifndef _SYS_SYSPROTO_H_
|
1994-05-25 09:21:21 +00:00
|
|
|
struct getdomainname_args {
|
2008-06-26 22:45:04 +00:00
|
|
|
char *domainname;
|
|
|
|
int len;
|
1994-05-25 09:21:21 +00:00
|
|
|
};
|
1995-11-12 06:43:28 +00:00
|
|
|
#endif
|
1994-05-25 09:21:21 +00:00
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
Mark uname(), getdomainname() and setdomainname() with COMPAT_FREEBSD4.
Looking at our source code history, it seems the uname(),
getdomainname() and setdomainname() system calls got deprecated
somewhere after FreeBSD 1.1, but they have never been phased out
properly. Because we don't have a COMPAT_FREEBSD1, just use
COMPAT_FREEBSD4.
Also fix the Linuxolator to build without the setdomainname() routine by
just making it call userland_sysctl on kern.domainname. Also replace the
setdomainname()'s implementation to use this approach, because we're
duplicating code with sysctl_domainname().
I wasn't able to keep these three routines working in our
COMPAT_FREEBSD32, because that would require yet another keyword for
syscalls.master (COMPAT4+NOPROTO). Because this routine is probably
unused already, this won't be a problem in practice. If it turns out to
be a problem, we'll just restore this functionality.
Reviewed by: rdivacky, kib
2008-11-09 10:45:13 +00:00
|
|
|
freebsd4_getdomainname(struct thread *td,
|
|
|
|
struct freebsd4_getdomainname_args *uap)
|
1994-05-25 09:21:21 +00:00
|
|
|
{
|
Mark uname(), getdomainname() and setdomainname() with COMPAT_FREEBSD4.
Looking at our source code history, it seems the uname(),
getdomainname() and setdomainname() system calls got deprecated
somewhere after FreeBSD 1.1, but they have never been phased out
properly. Because we don't have a COMPAT_FREEBSD1, just use
COMPAT_FREEBSD4.
Also fix the Linuxolator to build without the setdomainname() routine by
just making it call userland_sysctl on kern.domainname. Also replace the
setdomainname()'s implementation to use this approach, because we're
duplicating code with sysctl_domainname().
I wasn't able to keep these three routines working in our
COMPAT_FREEBSD32, because that would require yet another keyword for
syscalls.master (COMPAT4+NOPROTO). Because this routine is probably
unused already, this won't be a problem in practice. If it turns out to
be a problem, we'll just restore this functionality.
Reviewed by: rdivacky, kib
2008-11-09 10:45:13 +00:00
|
|
|
int name[2];
|
|
|
|
size_t len = uap->len;
|
2008-07-05 13:10:10 +00:00
|
|
|
|
Mark uname(), getdomainname() and setdomainname() with COMPAT_FREEBSD4.
Looking at our source code history, it seems the uname(),
getdomainname() and setdomainname() system calls got deprecated
somewhere after FreeBSD 1.1, but they have never been phased out
properly. Because we don't have a COMPAT_FREEBSD1, just use
COMPAT_FREEBSD4.
Also fix the Linuxolator to build without the setdomainname() routine by
just making it call userland_sysctl on kern.domainname. Also replace the
setdomainname()'s implementation to use this approach, because we're
duplicating code with sysctl_domainname().
I wasn't able to keep these three routines working in our
COMPAT_FREEBSD32, because that would require yet another keyword for
syscalls.master (COMPAT4+NOPROTO). Because this routine is probably
unused already, this won't be a problem in practice. If it turns out to
be a problem, we'll just restore this functionality.
Reviewed by: rdivacky, kib
2008-11-09 10:45:13 +00:00
|
|
|
name[0] = CTL_KERN;
|
|
|
|
name[1] = KERN_NISDOMAINNAME;
|
2008-12-29 12:58:45 +00:00
|
|
|
return (userland_sysctl(td, name, 2, uap->domainname, &len,
|
|
|
|
1, 0, 0, 0, 0));
|
1994-05-25 09:21:21 +00:00
|
|
|
}
|
|
|
|
|
1995-11-12 06:43:28 +00:00
|
|
|
#ifndef _SYS_SYSPROTO_H_
|
1994-05-25 09:21:21 +00:00
|
|
|
struct setdomainname_args {
|
2008-06-26 22:45:04 +00:00
|
|
|
char *domainname;
|
|
|
|
int len;
|
1994-05-25 09:21:21 +00:00
|
|
|
};
|
1995-11-12 06:43:28 +00:00
|
|
|
#endif
|
1994-05-25 09:21:21 +00:00
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
Mark uname(), getdomainname() and setdomainname() with COMPAT_FREEBSD4.
Looking at our source code history, it seems the uname(),
getdomainname() and setdomainname() system calls got deprecated
somewhere after FreeBSD 1.1, but they have never been phased out
properly. Because we don't have a COMPAT_FREEBSD1, just use
COMPAT_FREEBSD4.
Also fix the Linuxolator to build without the setdomainname() routine by
just making it call userland_sysctl on kern.domainname. Also replace the
setdomainname()'s implementation to use this approach, because we're
duplicating code with sysctl_domainname().
I wasn't able to keep these three routines working in our
COMPAT_FREEBSD32, because that would require yet another keyword for
syscalls.master (COMPAT4+NOPROTO). Because this routine is probably
unused already, this won't be a problem in practice. If it turns out to
be a problem, we'll just restore this functionality.
Reviewed by: rdivacky, kib
2008-11-09 10:45:13 +00:00
|
|
|
freebsd4_setdomainname(struct thread *td,
|
|
|
|
struct freebsd4_setdomainname_args *uap)
|
1994-05-25 09:21:21 +00:00
|
|
|
{
|
Mark uname(), getdomainname() and setdomainname() with COMPAT_FREEBSD4.
Looking at our source code history, it seems the uname(),
getdomainname() and setdomainname() system calls got deprecated
somewhere after FreeBSD 1.1, but they have never been phased out
properly. Because we don't have a COMPAT_FREEBSD1, just use
COMPAT_FREEBSD4.
Also fix the Linuxolator to build without the setdomainname() routine by
just making it call userland_sysctl on kern.domainname. Also replace the
setdomainname()'s implementation to use this approach, because we're
duplicating code with sysctl_domainname().
I wasn't able to keep these three routines working in our
COMPAT_FREEBSD32, because that would require yet another keyword for
syscalls.master (COMPAT4+NOPROTO). Because this routine is probably
unused already, this won't be a problem in practice. If it turns out to
be a problem, we'll just restore this functionality.
Reviewed by: rdivacky, kib
2008-11-09 10:45:13 +00:00
|
|
|
int name[2];
|
1994-05-25 09:21:21 +00:00
|
|
|
|
Mark uname(), getdomainname() and setdomainname() with COMPAT_FREEBSD4.
Looking at our source code history, it seems the uname(),
getdomainname() and setdomainname() system calls got deprecated
somewhere after FreeBSD 1.1, but they have never been phased out
properly. Because we don't have a COMPAT_FREEBSD1, just use
COMPAT_FREEBSD4.
Also fix the Linuxolator to build without the setdomainname() routine by
just making it call userland_sysctl on kern.domainname. Also replace the
setdomainname()'s implementation to use this approach, because we're
duplicating code with sysctl_domainname().
I wasn't able to keep these three routines working in our
COMPAT_FREEBSD32, because that would require yet another keyword for
syscalls.master (COMPAT4+NOPROTO). Because this routine is probably
unused already, this won't be a problem in practice. If it turns out to
be a problem, we'll just restore this functionality.
Reviewed by: rdivacky, kib
2008-11-09 10:45:13 +00:00
|
|
|
name[0] = CTL_KERN;
|
|
|
|
name[1] = KERN_NISDOMAINNAME;
|
2008-12-29 12:58:45 +00:00
|
|
|
return (userland_sysctl(td, name, 2, 0, 0, 0, uap->domainname,
|
|
|
|
uap->len, 0, 0));
|
1994-05-25 09:21:21 +00:00
|
|
|
}
|
Mark uname(), getdomainname() and setdomainname() with COMPAT_FREEBSD4.
Looking at our source code history, it seems the uname(),
getdomainname() and setdomainname() system calls got deprecated
somewhere after FreeBSD 1.1, but they have never been phased out
properly. Because we don't have a COMPAT_FREEBSD1, just use
COMPAT_FREEBSD4.
Also fix the Linuxolator to build without the setdomainname() routine by
just making it call userland_sysctl on kern.domainname. Also replace the
setdomainname()'s implementation to use this approach, because we're
duplicating code with sysctl_domainname().
I wasn't able to keep these three routines working in our
COMPAT_FREEBSD32, because that would require yet another keyword for
syscalls.master (COMPAT4+NOPROTO). Because this routine is probably
unused already, this won't be a problem in practice. If it turns out to
be a problem, we'll just restore this functionality.
Reviewed by: rdivacky, kib
2008-11-09 10:45:13 +00:00
|
|
|
#endif /* COMPAT_FREEBSD4 */
|