2001-11-12 18:25:01 +03:00
|
|
|
/* $NetBSD: kern_xxx.c,v 1.47 2001/11/12 15:25:18 lukem 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 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.
|
|
|
|
*
|
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.47 2001/11/12 15:25:18 lukem Exp $");
|
|
|
|
|
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>
|
1994-05-20 11:24:51 +04:00
|
|
|
#include <sys/sysctl.h>
|
1994-10-20 07:22:35 +03:00
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/syscallargs.h>
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/* ARGSUSED */
|
1993-06-27 10:01:27 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
sys_reboot(p, v, retval)
|
1993-03-21 12:45:37 +03:00
|
|
|
struct proc *p;
|
1995-09-20 01:40:36 +04:00
|
|
|
void *v;
|
1994-10-20 07:22:35 +03:00
|
|
|
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
|
|
|
|
1996-02-04 05:15:01 +03:00
|
|
|
if ((error = suser(p->p_ucred, &p->p_acflag)) != 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
|
1994-10-20 07:22:35 +03:00
|
|
|
scdebug_call(p, code, args)
|
1994-02-15 09:58:07 +03:00
|
|
|
struct proc *p;
|
1995-03-09 11:54:37 +03:00
|
|
|
register_t code, args[];
|
1994-02-15 09:38:33 +03:00
|
|
|
{
|
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];
|
|
|
|
if (!(scdebug & SCDEBUG_ALL || code < 0 || code >= em->e_nsysent ||
|
1996-08-21 02:00:36 +04:00
|
|
|
sy->sy_call == sys_nosys))
|
1994-10-20 07:22:35 +03:00
|
|
|
return;
|
|
|
|
|
1996-10-13 06:32:29 +04:00
|
|
|
printf("proc %d (%s): %s num ", p->p_pid, p->p_comm, em->e_name);
|
1995-04-22 23:42:47 +04:00
|
|
|
if (code < 0 || code >= em->e_nsysent)
|
1996-10-13 06:32:29 +04:00
|
|
|
printf("OUT OF RANGE (%d)", code);
|
1995-04-22 18:17:18 +04:00
|
|
|
else {
|
1996-10-13 06:32:29 +04:00
|
|
|
printf("%d call: %s", 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("(");
|
1995-04-22 18:17:18 +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");
|
1994-02-15 09:38:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1994-02-15 09:58:07 +03:00
|
|
|
scdebug_ret(p, code, error, retval)
|
|
|
|
struct proc *p;
|
1995-03-09 11:54:37 +03:00
|
|
|
register_t code;
|
|
|
|
int error;
|
|
|
|
register_t retval[];
|
1994-02-15 09:38:33 +03:00
|
|
|
{
|
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];
|
1995-04-26 01:10:01 +04:00
|
|
|
if (!(scdebug & SCDEBUG_ALL || code < 0 || code >= em->e_nsysent ||
|
1996-08-21 02:00:36 +04:00
|
|
|
sy->sy_call == sys_nosys))
|
1994-10-20 07:22:35 +03:00
|
|
|
return;
|
|
|
|
|
1996-10-13 06:32:29 +04:00
|
|
|
printf("proc %d (%s): %s num ", p->p_pid, p->p_comm, em->e_name);
|
1995-04-22 23:42:47 +04:00
|
|
|
if (code < 0 || code >= em->e_nsysent)
|
1996-10-13 06:32:29 +04:00
|
|
|
printf("OUT OF RANGE (%d)", code);
|
1995-04-22 18:17:18 +04:00
|
|
|
else
|
1996-10-13 06:32:29 +04:00
|
|
|
printf("%d ret: err = %d, rv = 0x%lx,0x%lx", 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");
|
1994-02-15 09:38:33 +03:00
|
|
|
}
|
|
|
|
#endif /* SYSCALL_DEBUG */
|