NetBSD/sys/kern/kern_xxx.c

186 lines
5.3 KiB
C
Raw Normal View History

/* $NetBSD: kern_xxx.c,v 1.70 2008/04/25 11:23:42 ad Exp $ */
1993-03-21 12:45:37 +03:00
/*
1994-05-20 11:24:51 +04:00
* Copyright (c) 1982, 1986, 1989, 1993
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* 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.
* 3. Neither the name of the University nor the names of its contributors
1993-03-21 12:45:37 +03: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.
*
1998-03-01 05:20:01 +03:00
* @(#)kern_xxx.c 8.3 (Berkeley) 2/14/95
1993-03-21 12:45:37 +03:00
*/
2001-11-12 18:25:01 +03:00
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: kern_xxx.c,v 1.70 2008/04/25 11:23:42 ad Exp $");
2001-11-12 18:25:01 +03:00
2000-06-06 22:26:32 +04:00
#include "opt_syscall_debug.h"
1993-12-18 06:59:02 +03:00
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/proc.h>
#include <sys/reboot.h>
2003-01-18 13:06:22 +03:00
#include <sys/syscall.h>
1994-05-20 11:24:51 +04:00
#include <sys/sysctl.h>
#include <sys/mount.h>
#include <sys/syscall.h>
#include <sys/syscallargs.h>
2006-05-15 01:15:11 +04:00
#include <sys/kauth.h>
1993-03-21 12:45:37 +03:00
/* ARGSUSED */
int
sys_reboot(struct lwp *l, const struct sys_reboot_args *uap, register_t *retval)
1993-03-21 12:45:37 +03:00
{
/* {
syscallarg(int) opt;
syscallarg(char *) bootstr;
} */
1993-03-21 12:45:37 +03:00
int error;
char *bootstr, bs[128];
1993-03-21 12:45:37 +03:00
First take at security model abstraction. - Add a few scopes to the kernel: system, network, and machdep. - Add a few more actions/sub-actions (requests), and start using them as opposed to the KAUTH_GENERIC_ISSUSER place-holders. - Introduce a basic set of listeners that implement our "traditional" security model, called "bsd44". This is the default (and only) model we have at the moment. - Update all relevant documentation. - Add some code and docs to help folks who want to actually use this stuff: * There's a sample overlay model, sitting on-top of "bsd44", for fast experimenting with tweaking just a subset of an existing model. This is pretty cool because it's *really* straightforward to do stuff you had to use ugly hacks for until now... * And of course, documentation describing how to do the above for quick reference, including code samples. All of these changes were tested for regressions using a Python-based testsuite that will be (I hope) available soon via pkgsrc. Information about the tests, and how to write new ones, can be found on: http://kauth.linbsd.org/kauthwiki NOTE FOR DEVELOPERS: *PLEASE* don't add any code that does any of the following: - Uses a KAUTH_GENERIC_ISSUSER kauth(9) request, - Checks 'securelevel' directly, - Checks a uid/gid directly. (or if you feel you have to, contact me first) This is still work in progress; It's far from being done, but now it'll be a lot easier. Relevant mailing list threads: http://mail-index.netbsd.org/tech-security/2006/01/25/0011.html http://mail-index.netbsd.org/tech-security/2006/03/24/0001.html http://mail-index.netbsd.org/tech-security/2006/04/18/0000.html http://mail-index.netbsd.org/tech-security/2006/05/15/0000.html http://mail-index.netbsd.org/tech-security/2006/08/01/0000.html http://mail-index.netbsd.org/tech-security/2006/08/25/0000.html Many thanks to YAMAMOTO Takashi, Matt Thomas, and Christos Zoulas for help stablizing kauth(9). Full credit for the regression tests, making sure these changes didn't break anything, goes to Matt Fleming and Jaime Fournier. Happy birthday Randi! :)
2006-09-09 00:58:56 +04:00
if ((error = kauth_authorize_system(l->l_cred, KAUTH_SYSTEM_REBOOT,
0, NULL, NULL, NULL)) != 0)
1993-03-21 12:45:37 +03:00
return (error);
/*
* Only use the boot string if RB_STRING is set.
*/
if ((SCARG(uap, opt) & RB_STRING) &&
(error = copyinstr(SCARG(uap, bootstr), bs, sizeof(bs), 0)) == 0)
bootstr = bs;
else
bootstr = NULL;
/*
* Not all ports use the bootstr currently.
*/
KERNEL_LOCK(1, NULL);
cpu_reboot(SCARG(uap, opt), bootstr);
KERNEL_UNLOCK_ONE(NULL);
1993-03-21 12:45:37 +03:00
return (0);
}
/*
* Pull in the indirect syscall functions here.
* They are only actually used if the ports syscall entry code
* doesn't special-case SYS_SYSCALL and SYS___SYSCALL
*
* In some cases the generated code for the two functions is identical,
* but there isn't a MI way of determining that - so we don't try.
*/
#define SYS_SYSCALL sys_syscall
#include "sys_syscall.c"
#undef SYS_SYSCALL
#define SYS_SYSCALL sys___syscall
#include "sys_syscall.c"
#undef SYS_SYSCALL
1994-02-15 09:38:33 +03:00
#ifdef SYSCALL_DEBUG
#define SCDEBUG_CALLS 0x0001 /* show calls */
#define SCDEBUG_RETURNS 0x0002 /* show returns */
#define SCDEBUG_ALL 0x0004 /* even syscalls that are implemented */
#define SCDEBUG_SHOWARGS 0x0008 /* show arguments to calls */
#if 0
int scdebug = SCDEBUG_CALLS|SCDEBUG_RETURNS|SCDEBUG_SHOWARGS;
#else
int scdebug = SCDEBUG_CALLS|SCDEBUG_RETURNS|SCDEBUG_SHOWARGS|SCDEBUG_ALL;
#endif
1994-02-15 09:38:33 +03:00
void
scdebug_call(register_t code, const register_t args[])
1994-02-15 09:38:33 +03:00
{
struct lwp *l = curlwp;
2003-01-18 13:06:22 +03:00
struct proc *p = l->l_proc;
const struct sysent *sy;
const struct emul *em;
1994-02-15 09:38:33 +03:00
int i;
if (!(scdebug & SCDEBUG_CALLS))
return;
em = p->p_emul;
sy = &em->e_sysent[code];
if (!(scdebug & SCDEBUG_ALL || (int)code < 0
#ifndef __HAVE_MINIMAL_EMUL
|| code >= em->e_nsysent
#endif
|| sy->sy_call == sys_nosys))
return;
2005-02-27 00:34:55 +03:00
1996-10-13 06:32:29 +04:00
printf("proc %d (%s): %s num ", p->p_pid, p->p_comm, em->e_name);
if ((int)code < 0
#ifndef __HAVE_MINIMAL_EMUL
|| code >= em->e_nsysent
#endif
)
printf("OUT OF RANGE (%ld)", (long)code);
else {
printf("%ld call: %s", (long)code, em->e_syscallnames[code]);
if (scdebug & SCDEBUG_SHOWARGS) {
1996-10-13 06:32:29 +04:00
printf("(");
for (i = 0; i < sy->sy_argsize/sizeof(register_t); i++)
1996-10-13 06:32:29 +04:00
printf("%s0x%lx", i == 0 ? "" : ", ",
(long)args[i]);
1996-10-13 06:32:29 +04:00
printf(")");
}
}
1996-10-13 06:32:29 +04:00
printf("\n");
1994-02-15 09:38:33 +03:00
}
void
scdebug_ret(register_t code, int error, const register_t retval[])
1994-02-15 09:38:33 +03:00
{
struct lwp *l = curlwp;
2003-01-18 13:06:22 +03:00
struct proc *p = l->l_proc;
const struct sysent *sy;
const struct emul *em;
if (!(scdebug & SCDEBUG_RETURNS))
return;
em = p->p_emul;
sy = &em->e_sysent[code];
2007-01-06 23:40:58 +03:00
if (!(scdebug & SCDEBUG_ALL || (int)code < 0
#ifndef __HAVE_MINIMAL_EMUL
|| (int)code >= em->e_nsysent
#endif
|| sy->sy_call == sys_nosys))
return;
2005-02-27 00:34:55 +03:00
1996-10-13 06:32:29 +04:00
printf("proc %d (%s): %s num ", p->p_pid, p->p_comm, em->e_name);
if ((int)code < 0
#ifndef __HAVE_MINIMAL_EMUL
|| code >= em->e_nsysent
#endif
)
printf("OUT OF RANGE (%ld)", (long)code);
else
printf("%ld ret: err = %d, rv = 0x%lx,0x%lx", (long)code,
error, (long)retval[0], (long)retval[1]);
1996-10-13 06:32:29 +04:00
printf("\n");
1994-02-15 09:38:33 +03:00
}
#endif /* SYSCALL_DEBUG */