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
|
|
|
/* $NetBSD: kern_xxx.c,v 1.60 2006/09/08 20:58:57 elad Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
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.
|
2003-08-07 20:26:28 +04:00
|
|
|
* 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>
|
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
|
|
|
__KERNEL_RCSID(0, "$NetBSD: kern_xxx.c,v 1.60 2006/09/08 20:58:57 elad 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>
|
1994-10-20 07:22:35 +03:00
|
|
|
#include <sys/mount.h>
|
2003-01-18 13:06:22 +03:00
|
|
|
#include <sys/sa.h>
|
1994-10-20 07:22:35 +03:00
|
|
|
#include <sys/syscallargs.h>
|
2006-05-15 01:15:11 +04:00
|
|
|
#include <sys/kauth.h>
|
1994-10-20 07:22:35 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/* ARGSUSED */
|
1993-06-27 10:01:27 +04:00
|
|
|
int
|
2005-06-24 03:15:12 +04:00
|
|
|
sys_reboot(struct lwp *l, void *v, register_t *retval)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct sys_reboot_args /* {
|
1995-09-20 01:40:36 +04:00
|
|
|
syscallarg(int) opt;
|
1996-08-09 14:30:23 +04:00
|
|
|
syscallarg(char *) bootstr;
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
1993-03-21 12:45:37 +03:00
|
|
|
int error;
|
1996-08-11 08:05:33 +04:00
|
|
|
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);
|
1996-08-10 04:23:14 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Only use the boot string if RB_STRING is set.
|
|
|
|
*/
|
1996-08-11 08:05:33 +04:00
|
|
|
if ((SCARG(uap, opt) & RB_STRING) &&
|
|
|
|
(error = copyinstr(SCARG(uap, bootstr), bs, sizeof(bs), 0)) == 0)
|
1997-09-20 23:32:15 +04:00
|
|
|
bootstr = bs;
|
1996-08-10 04:23:14 +04:00
|
|
|
else
|
|
|
|
bootstr = NULL;
|
1996-08-09 14:30:23 +04:00
|
|
|
/*
|
|
|
|
* Not all ports use the bootstr currently.
|
|
|
|
*/
|
1997-03-27 01:42:13 +03:00
|
|
|
cpu_reboot(SCARG(uap, opt), bootstr);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1994-02-15 09:38:33 +03:00
|
|
|
#ifdef SYSCALL_DEBUG
|
1994-10-20 07:22:35 +03:00
|
|
|
#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 */
|
|
|
|
|
1998-02-05 10:59:28 +03:00
|
|
|
#if 0
|
1994-10-20 07:22:35 +03:00
|
|
|
int scdebug = SCDEBUG_CALLS|SCDEBUG_RETURNS|SCDEBUG_SHOWARGS;
|
1998-02-05 10:59:28 +03:00
|
|
|
#else
|
|
|
|
int scdebug = SCDEBUG_CALLS|SCDEBUG_RETURNS|SCDEBUG_SHOWARGS|SCDEBUG_ALL;
|
|
|
|
#endif
|
1994-10-20 07:22:35 +03:00
|
|
|
|
1994-02-15 09:38:33 +03:00
|
|
|
void
|
2005-06-24 03:15:12 +04:00
|
|
|
scdebug_call(struct lwp *l, register_t code, register_t args[])
|
1994-02-15 09:38:33 +03:00
|
|
|
{
|
2003-01-18 13:06:22 +03:00
|
|
|
struct proc *p = l->l_proc;
|
2000-11-21 03:37:49 +03:00
|
|
|
const struct sysent *sy;
|
|
|
|
const struct emul *em;
|
1994-02-15 09:38:33 +03:00
|
|
|
int i;
|
|
|
|
|
1994-10-20 07:22:35 +03:00
|
|
|
if (!(scdebug & SCDEBUG_CALLS))
|
1994-02-15 09:52:25 +03:00
|
|
|
return;
|
|
|
|
|
1995-04-22 23:42:47 +04:00
|
|
|
em = p->p_emul;
|
|
|
|
sy = &em->e_sysent[code];
|
2002-10-04 22:34:10 +04:00
|
|
|
if (!(scdebug & SCDEBUG_ALL || code < 0
|
|
|
|
#ifndef __HAVE_MINIMAL_EMUL
|
|
|
|
|| code >= em->e_nsysent
|
|
|
|
#endif
|
|
|
|
|| sy->sy_call == sys_nosys))
|
1994-10-20 07:22:35 +03:00
|
|
|
return;
|
2005-02-27 00:34:55 +03:00
|
|
|
|
2005-12-27 03:28:08 +03:00
|
|
|
KERNEL_PROC_LOCK(l);
|
1996-10-13 06:32:29 +04:00
|
|
|
printf("proc %d (%s): %s num ", p->p_pid, p->p_comm, em->e_name);
|
2002-10-04 22:34:10 +04:00
|
|
|
if (code < 0
|
|
|
|
#ifndef __HAVE_MINIMAL_EMUL
|
|
|
|
|| code >= em->e_nsysent
|
|
|
|
#endif
|
|
|
|
)
|
2002-05-31 05:10:35 +04:00
|
|
|
printf("OUT OF RANGE (%ld)", (long)code);
|
1995-04-22 18:17:18 +04:00
|
|
|
else {
|
2002-05-31 05:10:35 +04:00
|
|
|
printf("%ld call: %s", (long)code, em->e_syscallnames[code]);
|
1995-04-22 18:17:18 +04:00
|
|
|
if (scdebug & SCDEBUG_SHOWARGS) {
|
1996-10-13 06:32:29 +04:00
|
|
|
printf("(");
|
2003-08-04 22:53:06 +04:00
|
|
|
for (i = 0; i < sy->sy_argsize/sizeof(register_t); i++)
|
1996-10-13 06:32:29 +04:00
|
|
|
printf("%s0x%lx", i == 0 ? "" : ", ",
|
1995-04-22 18:17:18 +04:00
|
|
|
(long)args[i]);
|
1996-10-13 06:32:29 +04:00
|
|
|
printf(")");
|
1995-04-22 18:17:18 +04:00
|
|
|
}
|
1994-10-20 07:22:35 +03:00
|
|
|
}
|
1996-10-13 06:32:29 +04:00
|
|
|
printf("\n");
|
2005-12-27 03:28:08 +03:00
|
|
|
KERNEL_PROC_UNLOCK(l);
|
1994-02-15 09:38:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-06-24 03:15:12 +04:00
|
|
|
scdebug_ret(struct lwp *l, register_t code, int error, register_t retval[])
|
1994-02-15 09:38:33 +03:00
|
|
|
{
|
2003-01-18 13:06:22 +03:00
|
|
|
struct proc *p = l->l_proc;
|
2000-11-21 03:37:49 +03:00
|
|
|
const struct sysent *sy;
|
|
|
|
const struct emul *em;
|
1994-10-20 07:22:35 +03:00
|
|
|
|
|
|
|
if (!(scdebug & SCDEBUG_RETURNS))
|
1994-02-15 09:52:25 +03:00
|
|
|
return;
|
|
|
|
|
1995-04-22 23:42:47 +04:00
|
|
|
em = p->p_emul;
|
|
|
|
sy = &em->e_sysent[code];
|
2005-02-27 00:34:55 +03:00
|
|
|
if (!(scdebug & SCDEBUG_ALL || code < 0
|
2002-10-04 22:34:10 +04:00
|
|
|
#ifndef __HAVE_MINIMAL_EMUL
|
|
|
|
|| code >= em->e_nsysent
|
|
|
|
#endif
|
|
|
|
|| sy->sy_call == sys_nosys))
|
1994-10-20 07:22:35 +03:00
|
|
|
return;
|
2005-02-27 00:34:55 +03:00
|
|
|
|
2005-12-27 03:28:08 +03:00
|
|
|
KERNEL_PROC_LOCK(l);
|
1996-10-13 06:32:29 +04:00
|
|
|
printf("proc %d (%s): %s num ", p->p_pid, p->p_comm, em->e_name);
|
2002-10-04 22:34:10 +04:00
|
|
|
if (code < 0
|
|
|
|
#ifndef __HAVE_MINIMAL_EMUL
|
|
|
|
|| code >= em->e_nsysent
|
|
|
|
#endif
|
|
|
|
)
|
2002-05-31 05:10:35 +04:00
|
|
|
printf("OUT OF RANGE (%ld)", (long)code);
|
1995-04-22 18:17:18 +04:00
|
|
|
else
|
2002-05-31 05:10:35 +04:00
|
|
|
printf("%ld ret: err = %d, rv = 0x%lx,0x%lx", (long)code,
|
1995-04-22 18:17:18 +04:00
|
|
|
error, (long)retval[0], (long)retval[1]);
|
1996-10-13 06:32:29 +04:00
|
|
|
printf("\n");
|
2005-12-27 03:28:08 +03:00
|
|
|
KERNEL_PROC_UNLOCK(l);
|
1994-02-15 09:38:33 +03:00
|
|
|
}
|
|
|
|
#endif /* SYSCALL_DEBUG */
|