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.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* 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$");
|
|
|
|
|
1997-12-16 17:40:42 +00:00
|
|
|
#include "opt_compat.h"
|
|
|
|
|
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>
|
|
|
|
#include <sys/proc.h>
|
2001-09-01 05:47:58 +00:00
|
|
|
#include <sys/lock.h>
|
|
|
|
#include <sys/mutex.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>
|
|
|
|
|
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
|
|
|
|
1995-11-12 06:43:28 +00:00
|
|
|
#ifndef _SYS_SYSPROTO_H_
|
1994-05-24 10:09:53 +00:00
|
|
|
struct gethostname_args {
|
|
|
|
char *hostname;
|
|
|
|
u_int len;
|
|
|
|
};
|
1995-11-12 06:43:28 +00:00
|
|
|
#endif
|
2001-09-01 05:47:58 +00:00
|
|
|
/*
|
|
|
|
* MPSAFE
|
|
|
|
*/
|
1994-05-24 10:09:53 +00:00
|
|
|
/* ARGSUSED */
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
ogethostname(td, uap)
|
|
|
|
struct thread *td;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct gethostname_args *uap;
|
|
|
|
{
|
1995-11-09 20:22:12 +00:00
|
|
|
int name[2];
|
2001-09-01 05:47:58 +00:00
|
|
|
int error;
|
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;
|
2001-09-01 05:47:58 +00:00
|
|
|
mtx_lock(&Giant);
|
2004-10-12 07:49:15 +00:00
|
|
|
error = userland_sysctl(td, name, 2, uap->hostname, &len,
|
|
|
|
1, 0, 0, 0, 0);
|
2001-09-01 05:47:58 +00:00
|
|
|
mtx_unlock(&Giant);
|
|
|
|
return(error);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
1995-11-12 06:43:28 +00:00
|
|
|
#ifndef _SYS_SYSPROTO_H_
|
1994-05-24 10:09:53 +00:00
|
|
|
struct sethostname_args {
|
|
|
|
char *hostname;
|
|
|
|
u_int len;
|
|
|
|
};
|
1995-11-12 06:43:28 +00:00
|
|
|
#endif
|
2001-09-01 05:47:58 +00:00
|
|
|
/*
|
|
|
|
* MPSAFE
|
|
|
|
*/
|
1994-05-24 10:09:53 +00:00
|
|
|
/* ARGSUSED */
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
osethostname(td, uap)
|
|
|
|
struct thread *td;
|
1994-05-24 10:09:53 +00:00
|
|
|
register struct sethostname_args *uap;
|
|
|
|
{
|
1995-11-09 20:22:12 +00:00
|
|
|
int name[2];
|
1994-05-24 10:09:53 +00:00
|
|
|
int error;
|
|
|
|
|
1995-11-09 20:22:12 +00:00
|
|
|
name[0] = CTL_KERN;
|
|
|
|
name[1] = KERN_HOSTNAME;
|
2001-09-01 05:47:58 +00:00
|
|
|
mtx_lock(&Giant);
|
2004-10-22 12:10:50 +00:00
|
|
|
error = userland_sysctl(td, name, 2, 0, 0, 0, uap->hostname,
|
|
|
|
uap->len, 0, 0);
|
2001-09-01 05:47:58 +00:00
|
|
|
mtx_unlock(&Giant);
|
|
|
|
return (error);
|
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
|
2001-09-01 05:47:58 +00:00
|
|
|
/*
|
|
|
|
* MPSAFE
|
|
|
|
*/
|
1994-05-24 10:09:53 +00:00
|
|
|
/* ARGSUSED */
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
ogethostid(td, uap)
|
|
|
|
struct thread *td;
|
1995-11-11 01:04:42 +00:00
|
|
|
struct ogethostid_args *uap;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
|
2001-09-12 08:38:13 +00:00
|
|
|
*(long *)(td->td_retval) = hostid;
|
1994-05-24 10:09:53 +00:00
|
|
|
return (0);
|
|
|
|
}
|
2004-06-11 11:16:26 +00:00
|
|
|
#endif /* COMPAT_43 */
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
#ifdef COMPAT_43
|
1995-11-12 06:43:28 +00:00
|
|
|
#ifndef _SYS_SYSPROTO_H_
|
1995-11-11 01:04:42 +00:00
|
|
|
struct osethostid_args {
|
1994-05-24 10:09:53 +00:00
|
|
|
long hostid;
|
|
|
|
};
|
1995-11-12 06:43:28 +00:00
|
|
|
#endif
|
2001-09-01 05:47:58 +00:00
|
|
|
/*
|
|
|
|
* MPSAFE
|
|
|
|
*/
|
1994-05-24 10:09:53 +00:00
|
|
|
/* ARGSUSED */
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
osethostid(td, uap)
|
|
|
|
struct thread *td;
|
1995-11-11 01:04:42 +00:00
|
|
|
struct osethostid_args *uap;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
int error;
|
|
|
|
|
2002-04-01 21:31:13 +00:00
|
|
|
if ((error = suser(td)))
|
2003-08-23 15:45:57 +00:00
|
|
|
return (error);
|
|
|
|
mtx_lock(&Giant);
|
|
|
|
hostid = uap->hostid;
|
2001-09-01 05:47:58 +00:00
|
|
|
mtx_unlock(&Giant);
|
2003-08-23 15:45:57 +00:00
|
|
|
return (0);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
2001-09-01 05:47:58 +00:00
|
|
|
/*
|
|
|
|
* MPSAFE
|
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
oquota(td, uap)
|
|
|
|
struct thread *td;
|
1995-11-11 01:04:42 +00:00
|
|
|
struct oquota_args *uap;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
return (ENOSYS);
|
|
|
|
}
|
|
|
|
#endif /* COMPAT_43 */
|
1994-05-25 09:21:21 +00:00
|
|
|
|
2001-03-24 04:40:49 +00:00
|
|
|
/*
|
|
|
|
* This is the FreeBSD-1.1 compatable uname(2) interface. These
|
|
|
|
* days it is done in libc as a wrapper around a bunch of sysctl's.
|
|
|
|
* This must maintain the old 1.1 binary ABI.
|
|
|
|
*/
|
|
|
|
#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 {
|
|
|
|
struct utsname *name;
|
|
|
|
};
|
1995-11-12 06:43:28 +00:00
|
|
|
#endif
|
1994-05-25 09:21:21 +00:00
|
|
|
|
2001-09-01 05:47:58 +00:00
|
|
|
/*
|
|
|
|
* MPSAFE
|
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
uname(td, uap)
|
|
|
|
struct thread *td;
|
1994-05-25 09:21:21 +00:00
|
|
|
struct uname_args *uap;
|
|
|
|
{
|
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);
|
|
|
|
mtx_lock(&Giant);
|
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)
|
|
|
|
goto done2;
|
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)
|
|
|
|
goto done2;
|
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)
|
|
|
|
goto done2;
|
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)
|
|
|
|
goto done2;
|
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)
|
|
|
|
goto done2;
|
1994-05-25 09:21:21 +00:00
|
|
|
}
|
2001-09-01 05:47:58 +00:00
|
|
|
error = subyte( us++, 0);
|
|
|
|
if (error)
|
|
|
|
goto done2;
|
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)
|
|
|
|
goto done2;
|
1994-05-25 09:21:21 +00:00
|
|
|
subyte( uap->name->machine + sizeof(uap->name->machine) - 1, 0);
|
2001-09-01 05:47:58 +00:00
|
|
|
done2:
|
|
|
|
mtx_unlock(&Giant);
|
|
|
|
return (error);
|
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 {
|
|
|
|
char *domainname;
|
1995-11-12 07:04:30 +00:00
|
|
|
int len;
|
1994-05-25 09:21:21 +00:00
|
|
|
};
|
1995-11-12 06:43:28 +00:00
|
|
|
#endif
|
1995-11-12 07:04:30 +00:00
|
|
|
|
2001-09-01 05:47:58 +00:00
|
|
|
/*
|
|
|
|
* MPSAFE
|
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
getdomainname(td, uap)
|
|
|
|
struct thread *td;
|
1994-05-25 09:21:21 +00:00
|
|
|
struct getdomainname_args *uap;
|
|
|
|
{
|
2001-09-01 05:47:58 +00:00
|
|
|
int domainnamelen;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
mtx_lock(&Giant);
|
|
|
|
domainnamelen = strlen(domainname) + 1;
|
2003-09-13 17:12:22 +00:00
|
|
|
if ((u_int)uap->len > domainnamelen)
|
|
|
|
uap->len = domainnamelen;
|
2002-06-29 02:00:02 +00:00
|
|
|
error = copyout(domainname, uap->domainname, uap->len);
|
2001-09-01 05:47:58 +00:00
|
|
|
mtx_unlock(&Giant);
|
|
|
|
return (error);
|
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 {
|
|
|
|
char *domainname;
|
1995-11-12 07:04:30 +00:00
|
|
|
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
|
|
|
|
2001-09-01 05:47:58 +00:00
|
|
|
/*
|
|
|
|
* MPSAFE
|
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
setdomainname(td, uap)
|
|
|
|
struct thread *td;
|
1994-05-25 09:21:21 +00:00
|
|
|
struct setdomainname_args *uap;
|
|
|
|
{
|
1995-11-14 09:10:54 +00:00
|
|
|
int error, domainnamelen;
|
1994-05-25 09:21:21 +00:00
|
|
|
|
2001-09-01 05:47:58 +00:00
|
|
|
mtx_lock(&Giant);
|
2002-04-01 21:31:13 +00:00
|
|
|
if ((error = suser(td)))
|
2001-09-01 05:47:58 +00:00
|
|
|
goto done2;
|
|
|
|
if ((u_int)uap->len > sizeof (domainname) - 1) {
|
|
|
|
error = EINVAL;
|
|
|
|
goto done2;
|
|
|
|
}
|
1994-05-25 09:21:21 +00:00
|
|
|
domainnamelen = uap->len;
|
2002-06-29 02:00:02 +00:00
|
|
|
error = copyin(uap->domainname, domainname, uap->len);
|
1994-05-25 09:21:21 +00:00
|
|
|
domainname[domainnamelen] = 0;
|
2001-09-01 05:47:58 +00:00
|
|
|
done2:
|
|
|
|
mtx_unlock(&Giant);
|
1994-05-25 09:21:21 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|