1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 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.
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* @(#)kern_ktrace.c 8.2 (Berkeley) 9/23/93
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
|
1996-01-03 21:42:35 +00:00
|
|
|
#include "opt_ktrace.h"
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
1994-08-18 22:36:09 +00:00
|
|
|
#include <sys/systm.h>
|
1995-11-12 06:43:28 +00:00
|
|
|
#include <sys/sysproto.h>
|
1998-11-10 09:16:29 +00:00
|
|
|
#include <sys/kernel.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/proc.h>
|
1997-03-23 03:37:54 +00:00
|
|
|
#include <sys/fcntl.h>
|
1997-12-05 19:55:52 +00:00
|
|
|
#include <sys/lock.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/namei.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/ktrace.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/syslog.h>
|
2001-02-21 06:39:57 +00:00
|
|
|
#include <sys/jail.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1997-10-12 20:26:33 +00:00
|
|
|
static MALLOC_DEFINE(M_KTRACE, "KTRACE", "KTRACE");
|
1997-10-11 18:31:40 +00:00
|
|
|
|
1996-01-03 21:42:35 +00:00
|
|
|
#ifdef KTRACE
|
1995-12-14 08:32:45 +00:00
|
|
|
static struct ktr_header *ktrgetheader __P((int type));
|
2000-07-02 08:08:09 +00:00
|
|
|
static void ktrwrite __P((struct vnode *, struct ktr_header *, struct uio *));
|
1995-12-14 08:32:45 +00:00
|
|
|
static int ktrcanset __P((struct proc *,struct proc *));
|
|
|
|
static int ktrsetchildren __P((struct proc *,struct proc *,int,int,struct vnode *));
|
|
|
|
static int ktrops __P((struct proc *,struct proc *,int,int,struct vnode *));
|
1995-12-02 18:58:56 +00:00
|
|
|
|
1995-12-14 08:32:45 +00:00
|
|
|
|
|
|
|
static struct ktr_header *
|
1994-05-24 10:09:53 +00:00
|
|
|
ktrgetheader(type)
|
|
|
|
int type;
|
|
|
|
{
|
|
|
|
register struct ktr_header *kth;
|
|
|
|
struct proc *p = curproc; /* XXX */
|
|
|
|
|
1995-05-30 08:16:23 +00:00
|
|
|
MALLOC(kth, struct ktr_header *, sizeof (struct ktr_header),
|
1996-08-04 20:13:08 +00:00
|
|
|
M_KTRACE, M_WAITOK);
|
1994-05-24 10:09:53 +00:00
|
|
|
kth->ktr_type = type;
|
|
|
|
microtime(&kth->ktr_time);
|
|
|
|
kth->ktr_pid = p->p_pid;
|
1999-09-20 21:53:17 +00:00
|
|
|
bcopy(p->p_comm, kth->ktr_comm, MAXCOMLEN + 1);
|
1994-05-24 10:09:53 +00:00
|
|
|
return (kth);
|
|
|
|
}
|
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
void
|
1994-05-24 10:09:53 +00:00
|
|
|
ktrsyscall(vp, code, narg, args)
|
|
|
|
struct vnode *vp;
|
1999-06-16 18:37:01 +00:00
|
|
|
int code, narg;
|
|
|
|
register_t args[];
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
struct ktr_header *kth;
|
|
|
|
struct ktr_syscall *ktp;
|
1999-06-16 18:37:01 +00:00
|
|
|
register int len = offsetof(struct ktr_syscall, ktr_args) +
|
|
|
|
(narg * sizeof(register_t));
|
1994-05-24 10:09:53 +00:00
|
|
|
struct proc *p = curproc; /* XXX */
|
1999-06-16 18:37:01 +00:00
|
|
|
register_t *argp;
|
|
|
|
int i;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
p->p_traceflag |= KTRFAC_ACTIVE;
|
|
|
|
kth = ktrgetheader(KTR_SYSCALL);
|
1996-08-04 20:13:08 +00:00
|
|
|
MALLOC(ktp, struct ktr_syscall *, len, M_KTRACE, M_WAITOK);
|
1994-05-24 10:09:53 +00:00
|
|
|
ktp->ktr_code = code;
|
|
|
|
ktp->ktr_narg = narg;
|
1999-06-16 18:37:01 +00:00
|
|
|
argp = &ktp->ktr_args[0];
|
1994-05-24 10:09:53 +00:00
|
|
|
for (i = 0; i < narg; i++)
|
|
|
|
*argp++ = args[i];
|
2000-09-07 01:29:44 +00:00
|
|
|
kth->ktr_buffer = (caddr_t)ktp;
|
1994-05-24 10:09:53 +00:00
|
|
|
kth->ktr_len = len;
|
2000-07-02 08:08:09 +00:00
|
|
|
ktrwrite(vp, kth, NULL);
|
1996-08-04 20:13:08 +00:00
|
|
|
FREE(ktp, M_KTRACE);
|
|
|
|
FREE(kth, M_KTRACE);
|
1994-05-24 10:09:53 +00:00
|
|
|
p->p_traceflag &= ~KTRFAC_ACTIVE;
|
|
|
|
}
|
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
void
|
1994-05-24 10:09:53 +00:00
|
|
|
ktrsysret(vp, code, error, retval)
|
|
|
|
struct vnode *vp;
|
1999-06-16 18:37:01 +00:00
|
|
|
int code, error;
|
|
|
|
register_t retval;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
struct ktr_header *kth;
|
|
|
|
struct ktr_sysret ktp;
|
|
|
|
struct proc *p = curproc; /* XXX */
|
|
|
|
|
|
|
|
p->p_traceflag |= KTRFAC_ACTIVE;
|
|
|
|
kth = ktrgetheader(KTR_SYSRET);
|
|
|
|
ktp.ktr_code = code;
|
|
|
|
ktp.ktr_error = error;
|
|
|
|
ktp.ktr_retval = retval; /* what about val2 ? */
|
|
|
|
|
2000-09-07 01:29:44 +00:00
|
|
|
kth->ktr_buffer = (caddr_t)&ktp;
|
1994-05-24 10:09:53 +00:00
|
|
|
kth->ktr_len = sizeof(struct ktr_sysret);
|
|
|
|
|
2000-07-02 08:08:09 +00:00
|
|
|
ktrwrite(vp, kth, NULL);
|
1996-08-04 20:13:08 +00:00
|
|
|
FREE(kth, M_KTRACE);
|
1994-05-24 10:09:53 +00:00
|
|
|
p->p_traceflag &= ~KTRFAC_ACTIVE;
|
|
|
|
}
|
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
void
|
1994-05-24 10:09:53 +00:00
|
|
|
ktrnamei(vp, path)
|
|
|
|
struct vnode *vp;
|
|
|
|
char *path;
|
|
|
|
{
|
|
|
|
struct ktr_header *kth;
|
|
|
|
struct proc *p = curproc; /* XXX */
|
|
|
|
|
|
|
|
p->p_traceflag |= KTRFAC_ACTIVE;
|
|
|
|
kth = ktrgetheader(KTR_NAMEI);
|
|
|
|
kth->ktr_len = strlen(path);
|
2000-09-07 01:29:44 +00:00
|
|
|
kth->ktr_buffer = path;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2000-07-02 08:08:09 +00:00
|
|
|
ktrwrite(vp, kth, NULL);
|
1996-08-04 20:13:08 +00:00
|
|
|
FREE(kth, M_KTRACE);
|
1994-05-24 10:09:53 +00:00
|
|
|
p->p_traceflag &= ~KTRFAC_ACTIVE;
|
|
|
|
}
|
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
void
|
2000-07-02 08:08:09 +00:00
|
|
|
ktrgenio(vp, fd, rw, uio, error)
|
1994-05-24 10:09:53 +00:00
|
|
|
struct vnode *vp;
|
|
|
|
int fd;
|
|
|
|
enum uio_rw rw;
|
2000-07-02 08:08:09 +00:00
|
|
|
struct uio *uio;
|
|
|
|
int error;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
struct ktr_header *kth;
|
2000-07-02 08:08:09 +00:00
|
|
|
struct ktr_genio ktg;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct proc *p = curproc; /* XXX */
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
if (error)
|
|
|
|
return;
|
|
|
|
p->p_traceflag |= KTRFAC_ACTIVE;
|
|
|
|
kth = ktrgetheader(KTR_GENIO);
|
2000-07-02 08:08:09 +00:00
|
|
|
ktg.ktr_fd = fd;
|
|
|
|
ktg.ktr_rw = rw;
|
2000-09-07 01:29:44 +00:00
|
|
|
kth->ktr_buffer = (caddr_t)&ktg;
|
2000-07-02 08:08:09 +00:00
|
|
|
kth->ktr_len = sizeof(struct ktr_genio);
|
|
|
|
uio->uio_offset = 0;
|
2000-07-07 21:52:15 +00:00
|
|
|
uio->uio_rw = UIO_WRITE;
|
2000-07-02 08:08:09 +00:00
|
|
|
|
|
|
|
ktrwrite(vp, kth, uio);
|
1996-08-04 20:13:08 +00:00
|
|
|
FREE(kth, M_KTRACE);
|
1994-05-24 10:09:53 +00:00
|
|
|
p->p_traceflag &= ~KTRFAC_ACTIVE;
|
|
|
|
}
|
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
void
|
1994-05-24 10:09:53 +00:00
|
|
|
ktrpsig(vp, sig, action, mask, code)
|
|
|
|
struct vnode *vp;
|
1999-10-04 18:29:51 +00:00
|
|
|
int sig;
|
1994-05-24 10:09:53 +00:00
|
|
|
sig_t action;
|
1999-09-29 15:03:48 +00:00
|
|
|
sigset_t *mask;
|
1999-10-04 18:29:51 +00:00
|
|
|
int code;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
struct ktr_header *kth;
|
|
|
|
struct ktr_psig kp;
|
|
|
|
struct proc *p = curproc; /* XXX */
|
|
|
|
|
|
|
|
p->p_traceflag |= KTRFAC_ACTIVE;
|
|
|
|
kth = ktrgetheader(KTR_PSIG);
|
|
|
|
kp.signo = (char)sig;
|
|
|
|
kp.action = action;
|
1999-09-29 15:03:48 +00:00
|
|
|
kp.mask = *mask;
|
1994-05-24 10:09:53 +00:00
|
|
|
kp.code = code;
|
2000-09-07 01:29:44 +00:00
|
|
|
kth->ktr_buffer = (caddr_t)&kp;
|
1994-05-24 10:09:53 +00:00
|
|
|
kth->ktr_len = sizeof (struct ktr_psig);
|
|
|
|
|
2000-07-02 08:08:09 +00:00
|
|
|
ktrwrite(vp, kth, NULL);
|
1996-08-04 20:13:08 +00:00
|
|
|
FREE(kth, M_KTRACE);
|
1994-05-24 10:09:53 +00:00
|
|
|
p->p_traceflag &= ~KTRFAC_ACTIVE;
|
|
|
|
}
|
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
void
|
1994-05-24 10:09:53 +00:00
|
|
|
ktrcsw(vp, out, user)
|
|
|
|
struct vnode *vp;
|
|
|
|
int out, user;
|
|
|
|
{
|
|
|
|
struct ktr_header *kth;
|
|
|
|
struct ktr_csw kc;
|
|
|
|
struct proc *p = curproc; /* XXX */
|
|
|
|
|
|
|
|
p->p_traceflag |= KTRFAC_ACTIVE;
|
|
|
|
kth = ktrgetheader(KTR_CSW);
|
|
|
|
kc.out = out;
|
|
|
|
kc.user = user;
|
2000-09-07 01:29:44 +00:00
|
|
|
kth->ktr_buffer = (caddr_t)&kc;
|
1994-05-24 10:09:53 +00:00
|
|
|
kth->ktr_len = sizeof (struct ktr_csw);
|
|
|
|
|
2000-07-02 08:08:09 +00:00
|
|
|
ktrwrite(vp, kth, NULL);
|
1996-08-04 20:13:08 +00:00
|
|
|
FREE(kth, M_KTRACE);
|
1994-05-24 10:09:53 +00:00
|
|
|
p->p_traceflag &= ~KTRFAC_ACTIVE;
|
|
|
|
}
|
1996-01-03 21:42:35 +00:00
|
|
|
#endif
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
/* Interface and common routines */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ktrace system call
|
|
|
|
*/
|
1995-11-12 06:43:28 +00:00
|
|
|
#ifndef _SYS_SYSPROTO_H_
|
1994-05-24 10:09:53 +00:00
|
|
|
struct ktrace_args {
|
|
|
|
char *fname;
|
|
|
|
int ops;
|
|
|
|
int facs;
|
|
|
|
int pid;
|
|
|
|
};
|
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
|
1997-11-06 19:29:57 +00:00
|
|
|
ktrace(curp, uap)
|
1994-05-24 10:09:53 +00:00
|
|
|
struct proc *curp;
|
|
|
|
register struct ktrace_args *uap;
|
|
|
|
{
|
1996-01-03 21:42:35 +00:00
|
|
|
#ifdef KTRACE
|
1994-05-24 10:09:53 +00:00
|
|
|
register struct vnode *vp = NULL;
|
|
|
|
register struct proc *p;
|
|
|
|
struct pgrp *pg;
|
|
|
|
int facs = uap->facs & ~KTRFAC_ROOT;
|
|
|
|
int ops = KTROP(uap->ops);
|
|
|
|
int descend = uap->ops & KTRFLAG_DESCEND;
|
|
|
|
int ret = 0;
|
2000-07-04 03:34:11 +00:00
|
|
|
int flags, error = 0;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct nameidata nd;
|
|
|
|
|
|
|
|
curp->p_traceflag |= KTRFAC_ACTIVE;
|
|
|
|
if (ops != KTROP_CLEAR) {
|
|
|
|
/*
|
|
|
|
* an operation which requires a file argument.
|
|
|
|
*/
|
1999-08-30 19:08:28 +00:00
|
|
|
NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_USERSPACE, uap->fname, curp);
|
2000-07-04 03:34:11 +00:00
|
|
|
flags = FREAD | FWRITE | O_NOFOLLOW;
|
|
|
|
error = vn_open(&nd, &flags, 0);
|
1994-10-02 17:35:40 +00:00
|
|
|
if (error) {
|
1994-05-24 10:09:53 +00:00
|
|
|
curp->p_traceflag &= ~KTRFAC_ACTIVE;
|
|
|
|
return (error);
|
|
|
|
}
|
1999-12-15 23:02:35 +00:00
|
|
|
NDFREE(&nd, NDF_ONLY_PNBUF);
|
1994-05-24 10:09:53 +00:00
|
|
|
vp = nd.ni_vp;
|
1997-02-10 02:22:35 +00:00
|
|
|
VOP_UNLOCK(vp, 0, curp);
|
1994-05-24 10:09:53 +00:00
|
|
|
if (vp->v_type != VREG) {
|
|
|
|
(void) vn_close(vp, FREAD|FWRITE, curp->p_ucred, curp);
|
|
|
|
curp->p_traceflag &= ~KTRFAC_ACTIVE;
|
|
|
|
return (EACCES);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Clear all uses of the tracefile
|
|
|
|
*/
|
|
|
|
if (ops == KTROP_CLEARFILE) {
|
2000-12-13 00:17:05 +00:00
|
|
|
ALLPROC_LOCK(AP_SHARED);
|
1999-11-16 10:56:05 +00:00
|
|
|
LIST_FOREACH(p, &allproc, p_list) {
|
1994-05-24 10:09:53 +00:00
|
|
|
if (p->p_tracep == vp) {
|
|
|
|
if (ktrcanset(curp, p)) {
|
|
|
|
p->p_tracep = NULL;
|
|
|
|
p->p_traceflag = 0;
|
|
|
|
(void) vn_close(vp, FREAD|FWRITE,
|
|
|
|
p->p_ucred, p);
|
|
|
|
} else
|
|
|
|
error = EPERM;
|
|
|
|
}
|
|
|
|
}
|
2000-12-13 00:17:05 +00:00
|
|
|
ALLPROC_LOCK(AP_RELEASE);
|
1994-05-24 10:09:53 +00:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* need something to (un)trace (XXX - why is this here?)
|
|
|
|
*/
|
|
|
|
if (!facs) {
|
|
|
|
error = EINVAL;
|
|
|
|
goto done;
|
|
|
|
}
|
1995-05-30 08:16:23 +00:00
|
|
|
/*
|
1994-05-24 10:09:53 +00:00
|
|
|
* do it
|
|
|
|
*/
|
|
|
|
if (uap->pid < 0) {
|
|
|
|
/*
|
|
|
|
* by process group
|
|
|
|
*/
|
|
|
|
pg = pgfind(-uap->pid);
|
|
|
|
if (pg == NULL) {
|
|
|
|
error = ESRCH;
|
|
|
|
goto done;
|
|
|
|
}
|
1999-11-16 10:56:05 +00:00
|
|
|
LIST_FOREACH(p, &pg->pg_members, p_pglist)
|
1994-05-24 10:09:53 +00:00
|
|
|
if (descend)
|
|
|
|
ret |= ktrsetchildren(curp, p, ops, facs, vp);
|
1995-05-30 08:16:23 +00:00
|
|
|
else
|
1994-05-24 10:09:53 +00:00
|
|
|
ret |= ktrops(curp, p, ops, facs, vp);
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* by pid
|
|
|
|
*/
|
|
|
|
p = pfind(uap->pid);
|
|
|
|
if (p == NULL) {
|
|
|
|
error = ESRCH;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (descend)
|
|
|
|
ret |= ktrsetchildren(curp, p, ops, facs, vp);
|
|
|
|
else
|
|
|
|
ret |= ktrops(curp, p, ops, facs, vp);
|
|
|
|
}
|
|
|
|
if (!ret)
|
|
|
|
error = EPERM;
|
|
|
|
done:
|
|
|
|
if (vp != NULL)
|
|
|
|
(void) vn_close(vp, FWRITE, curp->p_ucred, curp);
|
|
|
|
curp->p_traceflag &= ~KTRFAC_ACTIVE;
|
|
|
|
return (error);
|
1996-01-03 21:42:35 +00:00
|
|
|
#else
|
|
|
|
return ENOSYS;
|
|
|
|
#endif
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
1996-09-19 19:49:13 +00:00
|
|
|
/*
|
|
|
|
* utrace system call
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
1997-11-06 19:29:57 +00:00
|
|
|
utrace(curp, uap)
|
1996-09-19 19:49:13 +00:00
|
|
|
struct proc *curp;
|
|
|
|
register struct utrace_args *uap;
|
|
|
|
{
|
|
|
|
#ifdef KTRACE
|
|
|
|
struct ktr_header *kth;
|
|
|
|
struct proc *p = curproc; /* XXX */
|
|
|
|
register caddr_t cp;
|
|
|
|
|
|
|
|
if (!KTRPOINT(p, KTR_USER))
|
|
|
|
return (0);
|
2001-01-08 07:22:06 +00:00
|
|
|
if (uap->len > KTR_USER_MAXLEN)
|
2001-01-06 09:34:20 +00:00
|
|
|
return (EINVAL);
|
1996-09-19 19:49:13 +00:00
|
|
|
p->p_traceflag |= KTRFAC_ACTIVE;
|
|
|
|
kth = ktrgetheader(KTR_USER);
|
1996-09-22 18:17:51 +00:00
|
|
|
MALLOC(cp, caddr_t, uap->len, M_KTRACE, M_WAITOK);
|
1996-09-19 19:49:13 +00:00
|
|
|
if (!copyin(uap->addr, cp, uap->len)) {
|
2000-09-07 01:29:44 +00:00
|
|
|
kth->ktr_buffer = cp;
|
1996-09-22 18:17:51 +00:00
|
|
|
kth->ktr_len = uap->len;
|
2000-07-02 08:08:09 +00:00
|
|
|
ktrwrite(p->p_tracep, kth, NULL);
|
1996-09-19 19:49:13 +00:00
|
|
|
}
|
|
|
|
FREE(kth, M_KTRACE);
|
1996-09-22 18:17:51 +00:00
|
|
|
FREE(cp, M_KTRACE);
|
1996-09-19 19:49:13 +00:00
|
|
|
p->p_traceflag &= ~KTRFAC_ACTIVE;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
#else
|
|
|
|
return (ENOSYS);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1996-01-03 21:42:35 +00:00
|
|
|
#ifdef KTRACE
|
1995-12-14 08:32:45 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
ktrops(curp, p, ops, facs, vp)
|
|
|
|
struct proc *p, *curp;
|
|
|
|
int ops, facs;
|
|
|
|
struct vnode *vp;
|
|
|
|
{
|
|
|
|
|
|
|
|
if (!ktrcanset(curp, p))
|
|
|
|
return (0);
|
|
|
|
if (ops == KTROP_SET) {
|
1995-05-30 08:16:23 +00:00
|
|
|
if (p->p_tracep != vp) {
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* if trace file already in use, relinquish
|
|
|
|
*/
|
|
|
|
if (p->p_tracep != NULL)
|
|
|
|
vrele(p->p_tracep);
|
|
|
|
VREF(vp);
|
|
|
|
p->p_tracep = vp;
|
|
|
|
}
|
|
|
|
p->p_traceflag |= facs;
|
|
|
|
if (curp->p_ucred->cr_uid == 0)
|
|
|
|
p->p_traceflag |= KTRFAC_ROOT;
|
1995-05-30 08:16:23 +00:00
|
|
|
} else {
|
1994-05-24 10:09:53 +00:00
|
|
|
/* KTROP_CLEAR */
|
|
|
|
if (((p->p_traceflag &= ~facs) & KTRFAC_MASK) == 0) {
|
|
|
|
/* no more tracing */
|
|
|
|
p->p_traceflag = 0;
|
|
|
|
if (p->p_tracep != NULL) {
|
|
|
|
vrele(p->p_tracep);
|
|
|
|
p->p_tracep = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
1995-12-14 08:32:45 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
ktrsetchildren(curp, top, ops, facs, vp)
|
|
|
|
struct proc *curp, *top;
|
|
|
|
int ops, facs;
|
|
|
|
struct vnode *vp;
|
|
|
|
{
|
|
|
|
register struct proc *p;
|
|
|
|
register int ret = 0;
|
|
|
|
|
|
|
|
p = top;
|
2000-12-23 19:43:10 +00:00
|
|
|
PROCTREE_LOCK(PT_SHARED);
|
1994-05-24 10:09:53 +00:00
|
|
|
for (;;) {
|
|
|
|
ret |= ktrops(curp, p, ops, facs, vp);
|
|
|
|
/*
|
|
|
|
* If this process has children, descend to them next,
|
|
|
|
* otherwise do any siblings, and if done with this level,
|
|
|
|
* follow back up the tree (but not past top).
|
|
|
|
*/
|
1999-11-16 10:56:05 +00:00
|
|
|
if (!LIST_EMPTY(&p->p_children))
|
|
|
|
p = LIST_FIRST(&p->p_children);
|
1994-05-24 10:09:53 +00:00
|
|
|
else for (;;) {
|
2000-12-23 19:43:10 +00:00
|
|
|
if (p == top) {
|
|
|
|
PROCTREE_LOCK(PT_RELEASE);
|
1994-05-24 10:09:53 +00:00
|
|
|
return (ret);
|
2000-12-23 19:43:10 +00:00
|
|
|
}
|
1999-11-16 10:56:05 +00:00
|
|
|
if (LIST_NEXT(p, p_sibling)) {
|
|
|
|
p = LIST_NEXT(p, p_sibling);
|
1994-05-24 10:09:53 +00:00
|
|
|
break;
|
|
|
|
}
|
1996-03-11 06:05:03 +00:00
|
|
|
p = p->p_pptr;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
|
1995-12-14 08:32:45 +00:00
|
|
|
static void
|
2000-07-02 08:08:09 +00:00
|
|
|
ktrwrite(vp, kth, uio)
|
1994-05-24 10:09:53 +00:00
|
|
|
struct vnode *vp;
|
|
|
|
register struct ktr_header *kth;
|
2000-07-02 08:08:09 +00:00
|
|
|
struct uio *uio;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
struct uio auio;
|
|
|
|
struct iovec aiov[2];
|
2000-07-11 22:07:57 +00:00
|
|
|
struct proc *p = curproc; /* XXX */
|
|
|
|
struct mount *mp;
|
1994-05-24 10:09:53 +00:00
|
|
|
int error;
|
|
|
|
|
|
|
|
if (vp == NULL)
|
|
|
|
return;
|
|
|
|
auio.uio_iov = &aiov[0];
|
|
|
|
auio.uio_offset = 0;
|
|
|
|
auio.uio_segflg = UIO_SYSSPACE;
|
|
|
|
auio.uio_rw = UIO_WRITE;
|
|
|
|
aiov[0].iov_base = (caddr_t)kth;
|
|
|
|
aiov[0].iov_len = sizeof(struct ktr_header);
|
|
|
|
auio.uio_resid = sizeof(struct ktr_header);
|
|
|
|
auio.uio_iovcnt = 1;
|
1998-12-10 01:47:41 +00:00
|
|
|
auio.uio_procp = curproc;
|
1994-05-24 10:09:53 +00:00
|
|
|
if (kth->ktr_len > 0) {
|
|
|
|
auio.uio_iovcnt++;
|
2000-09-07 01:29:44 +00:00
|
|
|
aiov[1].iov_base = kth->ktr_buffer;
|
1994-05-24 10:09:53 +00:00
|
|
|
aiov[1].iov_len = kth->ktr_len;
|
|
|
|
auio.uio_resid += kth->ktr_len;
|
2000-07-02 08:08:09 +00:00
|
|
|
if (uio != NULL)
|
|
|
|
kth->ktr_len += uio->uio_resid;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
2000-07-11 22:07:57 +00:00
|
|
|
vn_start_write(vp, &mp, V_WAIT);
|
1997-02-10 02:22:35 +00:00
|
|
|
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, p);
|
2000-07-02 08:08:09 +00:00
|
|
|
(void)VOP_LEASE(vp, p, p->p_ucred, LEASE_WRITE);
|
|
|
|
error = VOP_WRITE(vp, &auio, IO_UNIT | IO_APPEND, p->p_ucred);
|
|
|
|
if (error == 0 && uio != NULL) {
|
|
|
|
(void)VOP_LEASE(vp, p, p->p_ucred, LEASE_WRITE);
|
|
|
|
error = VOP_WRITE(vp, uio, IO_UNIT | IO_APPEND, p->p_ucred);
|
|
|
|
}
|
1997-02-10 02:22:35 +00:00
|
|
|
VOP_UNLOCK(vp, 0, p);
|
2000-07-11 22:07:57 +00:00
|
|
|
vn_finished_write(mp);
|
1994-05-24 10:09:53 +00:00
|
|
|
if (!error)
|
|
|
|
return;
|
|
|
|
/*
|
|
|
|
* If error encountered, give up tracing on this vnode.
|
|
|
|
*/
|
|
|
|
log(LOG_NOTICE, "ktrace write failed, errno %d, tracing stopped\n",
|
|
|
|
error);
|
2000-12-13 00:17:05 +00:00
|
|
|
ALLPROC_LOCK(AP_SHARED);
|
1999-11-16 10:56:05 +00:00
|
|
|
LIST_FOREACH(p, &allproc, p_list) {
|
1994-05-24 10:09:53 +00:00
|
|
|
if (p->p_tracep == vp) {
|
|
|
|
p->p_tracep = NULL;
|
|
|
|
p->p_traceflag = 0;
|
|
|
|
vrele(vp);
|
|
|
|
}
|
|
|
|
}
|
2000-12-13 00:17:05 +00:00
|
|
|
ALLPROC_LOCK(AP_RELEASE);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return true if caller has permission to set the ktracing state
|
|
|
|
* of target. Essentially, the target can't possess any
|
|
|
|
* more permissions than the caller. KTRFAC_ROOT signifies that
|
1995-05-30 08:16:23 +00:00
|
|
|
* root previously set the tracing status on the target process, and
|
1994-05-24 10:09:53 +00:00
|
|
|
* so, only root may further change it.
|
|
|
|
*
|
o Centralize inter-process access control, introducing:
int p_can(p1, p2, operation, privused)
which allows specification of subject process, object process,
inter-process operation, and an optional call-by-reference privused
flag, allowing the caller to determine if privilege was required
for the call to succeed. This allows jail, kern.ps_showallprocs and
regular credential-based interaction checks to occur in one block of
code. Possible operations are P_CAN_SEE, P_CAN_SCHED, P_CAN_KILL,
and P_CAN_DEBUG. p_can currently breaks out as a wrapper to a
series of static function checks in kern_prot, which should not
be invoked directly.
o Commented out capabilities entries are included for some checks.
o Update most inter-process authorization to make use of p_can() instead
of manual checks, PRISON_CHECK(), P_TRESPASS(), and
kern.ps_showallprocs.
o Modify suser{,_xxx} to use const arguments, as it no longer modifies
process flags due to the disabling of ASU.
o Modify some checks/errors in procfs so that ENOENT is returned instead
of ESRCH, further improving concealment of processes that should not
be visible to other processes. Also introduce new access checks to
improve hiding of processes for procfs_lookup(), procfs_getattr(),
procfs_readdir(). Correct a bug reported by bp concerning not
handling the CREATE case in procfs_lookup(). Remove volatile flag in
procfs that caused apparently spurious qualifier warnigns (approved by
bde).
o Add comment noting that ktrace() has not been updated, as its access
control checks are different from ptrace(), whereas they should
probably be the same. Further discussion should happen on this topic.
Reviewed by: bde, green, phk, freebsd-security, others
Approved by: bde
Obtained from: TrustedBSD Project
2000-08-30 04:49:09 +00:00
|
|
|
* XXX: These checks are stronger than for ptrace()
|
2001-02-21 06:39:57 +00:00
|
|
|
* XXX: This check should be p_can(... P_CAN_DEBUG ...);
|
o Centralize inter-process access control, introducing:
int p_can(p1, p2, operation, privused)
which allows specification of subject process, object process,
inter-process operation, and an optional call-by-reference privused
flag, allowing the caller to determine if privilege was required
for the call to succeed. This allows jail, kern.ps_showallprocs and
regular credential-based interaction checks to occur in one block of
code. Possible operations are P_CAN_SEE, P_CAN_SCHED, P_CAN_KILL,
and P_CAN_DEBUG. p_can currently breaks out as a wrapper to a
series of static function checks in kern_prot, which should not
be invoked directly.
o Commented out capabilities entries are included for some checks.
o Update most inter-process authorization to make use of p_can() instead
of manual checks, PRISON_CHECK(), P_TRESPASS(), and
kern.ps_showallprocs.
o Modify suser{,_xxx} to use const arguments, as it no longer modifies
process flags due to the disabling of ASU.
o Modify some checks/errors in procfs so that ENOENT is returned instead
of ESRCH, further improving concealment of processes that should not
be visible to other processes. Also introduce new access checks to
improve hiding of processes for procfs_lookup(), procfs_getattr(),
procfs_readdir(). Correct a bug reported by bp concerning not
handling the CREATE case in procfs_lookup(). Remove volatile flag in
procfs that caused apparently spurious qualifier warnigns (approved by
bde).
o Add comment noting that ktrace() has not been updated, as its access
control checks are different from ptrace(), whereas they should
probably be the same. Further discussion should happen on this topic.
Reviewed by: bde, green, phk, freebsd-security, others
Approved by: bde
Obtained from: TrustedBSD Project
2000-08-30 04:49:09 +00:00
|
|
|
*
|
1994-05-24 10:09:53 +00:00
|
|
|
* TODO: check groups. use caller effective gid.
|
|
|
|
*/
|
1995-12-14 08:32:45 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
ktrcanset(callp, targetp)
|
|
|
|
struct proc *callp, *targetp;
|
|
|
|
{
|
|
|
|
register struct pcred *caller = callp->p_cred;
|
|
|
|
register struct pcred *target = targetp->p_cred;
|
|
|
|
|
2001-02-21 06:39:57 +00:00
|
|
|
if (prison_check(callp->p_ucred, targetp->p_ucred))
|
This Implements the mumbled about "Jail" feature.
This is a seriously beefed up chroot kind of thing. The process
is jailed along the same lines as a chroot does it, but with
additional tough restrictions imposed on what the superuser can do.
For all I know, it is safe to hand over the root bit inside a
prison to the customer living in that prison, this is what
it was developed for in fact: "real virtual servers".
Each prison has an ip number associated with it, which all IP
communications will be coerced to use and each prison has its own
hostname.
Needless to say, you need more RAM this way, but the advantage is
that each customer can run their own particular version of apache
and not stomp on the toes of their neighbors.
It generally does what one would expect, but setting up a jail
still takes a little knowledge.
A few notes:
I have no scripts for setting up a jail, don't ask me for them.
The IP number should be an alias on one of the interfaces.
mount a /proc in each jail, it will make ps more useable.
/proc/<pid>/status tells the hostname of the prison for
jailed processes.
Quotas are only sensible if you have a mountpoint per prison.
There are no privisions for stopping resource-hogging.
Some "#ifdef INET" and similar may be missing (send patches!)
If somebody wants to take it from here and develop it into
more of a "virtual machine" they should be most welcome!
Tools, comments, patches & documentation most welcome.
Have fun...
Sponsored by: http://www.rndassociates.com/
Run for almost a year by: http://www.servetheweb.com/
1999-04-28 11:38:52 +00:00
|
|
|
return (0);
|
1994-05-24 10:09:53 +00:00
|
|
|
if ((caller->pc_ucred->cr_uid == target->p_ruid &&
|
|
|
|
target->p_ruid == target->p_svuid &&
|
|
|
|
caller->p_rgid == target->p_rgid && /* XXX */
|
|
|
|
target->p_rgid == target->p_svgid &&
|
|
|
|
(targetp->p_traceflag & KTRFAC_ROOT) == 0) ||
|
|
|
|
caller->pc_ucred->cr_uid == 0)
|
|
|
|
return (1);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1996-01-03 21:42:35 +00:00
|
|
|
#endif /* KTRACE */
|