NetBSD/sys/kern/kern_ktrace.c

680 lines
15 KiB
C
Raw Normal View History

/* $NetBSD: kern_ktrace.c,v 1.40 2000/05/08 20:01:05 thorpej Exp $ */
1993-03-21 12:45:37 +03:00
/*
* Copyright (c) 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_ktrace.c 8.5 (Berkeley) 5/14/95
1993-03-21 12:45:37 +03:00
*/
1998-06-26 01:17:15 +04:00
#include "opt_ktrace.h"
#ifdef KTRACE
1993-12-18 06:59:02 +03:00
#include <sys/param.h>
#include <sys/systm.h>
1993-12-18 06:59:02 +03:00
#include <sys/proc.h>
#include <sys/file.h>
#include <sys/namei.h>
#include <sys/vnode.h>
#include <sys/ktrace.h>
#include <sys/malloc.h>
#include <sys/syslog.h>
#include <sys/filedesc.h>
1993-03-21 12:45:37 +03:00
#include <sys/mount.h>
#include <sys/syscallargs.h>
void ktrinitheader __P((struct ktr_header *, struct proc *, int));
int ktrops __P((struct proc *, struct proc *, int, int, void *));
int ktrsetchildren __P((struct proc *, struct proc *, int, int, void *));
int ktrwrite __P((struct proc *, void *, struct ktr_header *));
int ktrcanset __P((struct proc *, struct proc *));
1996-02-04 05:15:01 +03:00
void
ktrderef(p)
struct proc *p;
{
if (p->p_tracep == NULL)
return;
if (p->p_traceflag & KTRFAC_FD) {
struct file *fp = p->p_tracep;
FILE_USE(fp);
closef(fp, NULL);
} else {
struct vnode *vp = p->p_tracep;
vrele(vp);
}
p->p_tracep = NULL;
p->p_traceflag = 0;
}
void
ktradref(p)
struct proc *p;
{
if (p->p_traceflag & KTRFAC_FD) {
struct file *fp = p->p_tracep;
fp->f_count++;
} else {
struct vnode *vp = p->p_tracep;
VREF(vp);
}
}
void
ktrinitheader(kth, p, type)
struct ktr_header *kth;
struct proc *p;
int type;
1993-03-21 12:45:37 +03:00
{
memset(kth, 0, sizeof(*kth));
1993-03-21 12:45:37 +03:00
kth->ktr_type = type;
microtime(&kth->ktr_time);
kth->ktr_pid = p->p_pid;
memcpy(kth->ktr_comm, p->p_comm, MAXCOMLEN);
1993-03-21 12:45:37 +03:00
}
void
ktrsyscall(v, code, argsize, args)
void *v;
1995-03-09 11:55:47 +03:00
register_t code;
size_t argsize;
register_t args[];
1993-03-21 12:45:37 +03:00
{
struct ktr_header kth;
struct ktr_syscall *ktp;
struct proc *p = curproc; /* XXX */
register_t *argp;
size_t len = sizeof(struct ktr_syscall) + argsize;
int i;
1993-03-21 12:45:37 +03:00
p->p_traceflag |= KTRFAC_ACTIVE;
ktrinitheader(&kth, p, KTR_SYSCALL);
ktp = malloc(len, M_TEMP, M_WAITOK);
1993-03-21 12:45:37 +03:00
ktp->ktr_code = code;
ktp->ktr_argsize = argsize;
argp = (register_t *)((char *)ktp + sizeof(struct ktr_syscall));
for (i = 0; i < (argsize / sizeof(*argp)); i++)
1993-03-21 12:45:37 +03:00
*argp++ = args[i];
kth.ktr_buf = (caddr_t)ktp;
kth.ktr_len = len;
(void) ktrwrite(p, v, &kth);
free(ktp, M_TEMP);
p->p_traceflag &= ~KTRFAC_ACTIVE;
1993-03-21 12:45:37 +03:00
}
void
ktrsysret(v, code, error, retval)
void *v;
1995-03-09 11:55:47 +03:00
register_t code;
int error;
register_t retval;
1993-03-21 12:45:37 +03:00
{
struct ktr_header kth;
1993-03-21 12:45:37 +03:00
struct ktr_sysret ktp;
struct proc *p = curproc; /* XXX */
1993-03-21 12:45:37 +03:00
p->p_traceflag |= KTRFAC_ACTIVE;
ktrinitheader(&kth, p, KTR_SYSRET);
1993-03-21 12:45:37 +03:00
ktp.ktr_code = code;
ktp.ktr_eosys = 0; /* XXX unused */
1993-03-21 12:45:37 +03:00
ktp.ktr_error = error;
ktp.ktr_retval = retval; /* what about val2 ? */
kth.ktr_buf = (caddr_t)&ktp;
kth.ktr_len = sizeof(struct ktr_sysret);
1993-03-21 12:45:37 +03:00
(void) ktrwrite(p, v, &kth);
p->p_traceflag &= ~KTRFAC_ACTIVE;
1993-03-21 12:45:37 +03:00
}
void
ktrnamei(v, path)
void *v;
1993-03-21 12:45:37 +03:00
char *path;
{
struct ktr_header kth;
struct proc *p = curproc; /* XXX */
1993-03-21 12:45:37 +03:00
p->p_traceflag |= KTRFAC_ACTIVE;
ktrinitheader(&kth, p, KTR_NAMEI);
kth.ktr_len = strlen(path);
kth.ktr_buf = path;
1993-03-21 12:45:37 +03:00
(void) ktrwrite(p, v, &kth);
p->p_traceflag &= ~KTRFAC_ACTIVE;
1993-03-21 12:45:37 +03:00
}
void
ktremul(v, p, emul)
void *v;
struct proc *p;
char *emul;
{
struct ktr_header kth;
p->p_traceflag |= KTRFAC_ACTIVE;
ktrinitheader(&kth, p, KTR_EMUL);
kth.ktr_len = strlen(emul);
kth.ktr_buf = emul;
(void) ktrwrite(p, v, &kth);
p->p_traceflag &= ~KTRFAC_ACTIVE;
}
void
ktrgenio(v, fd, rw, iov, len, error)
void *v;
1993-03-21 12:45:37 +03:00
int fd;
enum uio_rw rw;
struct iovec *iov;
int len, error;
1993-03-21 12:45:37 +03:00
{
struct ktr_header kth;
struct ktr_genio *ktp;
caddr_t cp;
int resid = len, cnt;
struct proc *p = curproc; /* XXX */
int buflen;
1993-03-21 12:45:37 +03:00
if (error)
return;
p->p_traceflag |= KTRFAC_ACTIVE;
buflen = min(PAGE_SIZE, len + sizeof(struct ktr_genio));
ktrinitheader(&kth, p, KTR_GENIO);
ktp = malloc(buflen, M_TEMP, M_WAITOK);
1993-03-21 12:45:37 +03:00
ktp->ktr_fd = fd;
ktp->ktr_rw = rw;
kth.ktr_buf = (caddr_t)ktp;
cp = (caddr_t)((char *)ktp + sizeof(struct ktr_genio));
buflen -= sizeof(struct ktr_genio);
1993-03-21 12:45:37 +03:00
while (resid > 0) {
if (p->p_schedflags & PSCHED_SHOULDYIELD)
preempt(NULL);
cnt = min(iov->iov_len, buflen);
if (cnt > resid)
1993-03-21 12:45:37 +03:00
cnt = resid;
if (copyin(iov->iov_base, cp, cnt))
break;
kth.ktr_len = cnt + sizeof(struct ktr_genio);
if (__predict_false(ktrwrite(p, v, &kth) != 0))
break;
iov->iov_base = (caddr_t)iov->iov_base + cnt;
iov->iov_len -= cnt;
if (iov->iov_len == 0)
iov++;
1993-03-21 12:45:37 +03:00
resid -= cnt;
}
free(ktp, M_TEMP);
p->p_traceflag &= ~KTRFAC_ACTIVE;
1993-03-21 12:45:37 +03:00
}
void
ktrpsig(v, sig, action, mask, code)
void *v;
int sig;
sig_t action;
sigset_t *mask;
int code;
1993-03-21 12:45:37 +03:00
{
struct ktr_header kth;
1993-03-21 12:45:37 +03:00
struct ktr_psig kp;
struct proc *p = curproc; /* XXX */
1993-03-21 12:45:37 +03:00
p->p_traceflag |= KTRFAC_ACTIVE;
ktrinitheader(&kth, p, KTR_PSIG);
1993-03-21 12:45:37 +03:00
kp.signo = (char)sig;
kp.action = action;
kp.mask = *mask;
1993-03-21 12:45:37 +03:00
kp.code = code;
kth.ktr_buf = (caddr_t)&kp;
kth.ktr_len = sizeof(struct ktr_psig);
1993-03-21 12:45:37 +03:00
(void) ktrwrite(p, v, &kth);
p->p_traceflag &= ~KTRFAC_ACTIVE;
}
void
ktrcsw(v, out, user)
void *v;
int out, user;
{
struct ktr_header kth;
struct ktr_csw kc;
struct proc *p = curproc; /* XXX */
p->p_traceflag |= KTRFAC_ACTIVE;
ktrinitheader(&kth, p, KTR_CSW);
kc.out = out;
kc.user = user;
kth.ktr_buf = (caddr_t)&kc;
kth.ktr_len = sizeof(struct ktr_csw);
(void) ktrwrite(p, v, &kth);
p->p_traceflag &= ~KTRFAC_ACTIVE;
1993-03-21 12:45:37 +03:00
}
/* Interface and common routines */
/*
* ktrace system call
*/
/* ARGSUSED */
int
sys_fktrace(curp, v, retval)
struct proc *curp;
void *v;
register_t *retval;
{
struct sys_fktrace_args /* {
syscallarg(int) fd;
syscallarg(int) ops;
syscallarg(int) facs;
syscallarg(int) pid;
} */ *uap = v;
struct file *fp = NULL;
struct proc *p;
struct filedesc *fdp = curp->p_fd;
struct pgrp *pg;
int facs;
int ops;
int descend;
int ret = 0;
int error = 0;
if (((u_int)SCARG(uap, fd)) >= fdp->fd_nfiles ||
(fp = fdp->fd_ofiles[SCARG(uap, fd)]) == NULL ||
(fp->f_flag & FWRITE) == 0)
return (EBADF);
ops = KTROP(SCARG(uap, ops)) | KTRFLAG_FD;
descend = SCARG(uap, ops) & KTRFLAG_DESCEND;
facs = SCARG(uap, facs) & ~((unsigned) KTRFAC_ROOT);
curp->p_traceflag |= KTRFAC_ACTIVE;
/*
* Clear all uses of the tracefile
*/
if (KTROP(ops) == KTROP_CLEARFILE) {
proclist_lock_read();
for (p = LIST_FIRST(&allproc); p != NULL;
p = LIST_NEXT(p, p_list)) {
if (p->p_tracep == fp) {
if (ktrcanset(curp, p))
ktrderef(p);
else
error = EPERM;
}
}
proclist_unlock_read();
goto done;
}
/*
* need something to (un)trace (XXX - why is this here?)
*/
if (!facs) {
error = EINVAL;
goto done;
}
/*
* do it
*/
if (SCARG(uap, pid) < 0) {
/*
* by process group
*/
pg = pgfind(-SCARG(uap, pid));
if (pg == NULL) {
error = ESRCH;
goto done;
}
for (p = LIST_FIRST(&pg->pg_members); p != NULL;
p = LIST_NEXT(p, p_pglist)) {
if (descend)
ret |= ktrsetchildren(curp, p, ops, facs, fp);
else
ret |= ktrops(curp, p, ops, facs, fp);
}
} else {
/*
* by pid
*/
p = pfind(SCARG(uap, pid));
if (p == NULL) {
error = ESRCH;
goto done;
}
if (descend)
ret |= ktrsetchildren(curp, p, ops, facs, fp);
else
ret |= ktrops(curp, p, ops, facs, fp);
}
if (!ret)
error = EPERM;
done:
curp->p_traceflag &= ~KTRFAC_ACTIVE;
return (error);
}
1993-03-21 12:45:37 +03:00
/*
* ktrace system call
*/
/* ARGSUSED */
int
sys_ktrace(curp, v, retval)
1993-03-21 12:45:37 +03:00
struct proc *curp;
void *v;
register_t *retval;
{
struct sys_ktrace_args /* {
1997-10-19 06:00:19 +04:00
syscallarg(const char *) fname;
syscallarg(int) ops;
syscallarg(int) facs;
syscallarg(int) pid;
} */ *uap = v;
struct vnode *vp = NULL;
struct proc *p;
1993-03-21 12:45:37 +03:00
struct pgrp *pg;
1996-02-04 05:15:01 +03:00
int facs = SCARG(uap, facs) & ~((unsigned) KTRFAC_ROOT);
int ops = KTROP(SCARG(uap, ops));
int descend = SCARG(uap, ops) & KTRFLAG_DESCEND;
1993-03-21 12:45:37 +03:00
int ret = 0;
int error = 0;
struct nameidata nd;
curp->p_traceflag |= KTRFAC_ACTIVE;
1993-03-21 12:45:37 +03:00
if (ops != KTROP_CLEAR) {
/*
* an operation which requires a file argument.
*/
NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, fname),
curp);
1996-02-04 05:15:01 +03:00
if ((error = vn_open(&nd, FREAD|FWRITE, 0)) != 0) {
curp->p_traceflag &= ~KTRFAC_ACTIVE;
1993-03-21 12:45:37 +03:00
return (error);
}
1993-03-21 12:45:37 +03:00
vp = nd.ni_vp;
1998-03-01 05:20:01 +03:00
VOP_UNLOCK(vp, 0);
1993-03-21 12:45:37 +03:00
if (vp->v_type != VREG) {
(void) vn_close(vp, FREAD|FWRITE, curp->p_ucred, curp);
curp->p_traceflag &= ~KTRFAC_ACTIVE;
1993-03-21 12:45:37 +03:00
return (EACCES);
}
}
/*
* Clear all uses of the tracefile
*/
if (KTROP(ops) == KTROP_CLEARFILE) {
proclist_lock_read();
for (p = LIST_FIRST(&allproc); p != NULL;
p = LIST_NEXT(p, p_list)) {
if (p->p_tracep == vp &&
!ktrops(curp, p, KTROP_CLEAR, ~0, vp))
error = EPERM;
1993-03-21 12:45:37 +03:00
}
proclist_unlock_read();
1993-03-21 12:45:37 +03:00
goto done;
}
/*
* need something to (un)trace (XXX - why is this here?)
*/
if (!facs) {
error = EINVAL;
goto done;
}
/*
* do it
*/
if (SCARG(uap, pid) < 0) {
1993-03-21 12:45:37 +03:00
/*
* by process group
*/
pg = pgfind(-SCARG(uap, pid));
1993-03-21 12:45:37 +03:00
if (pg == NULL) {
error = ESRCH;
goto done;
}
for (p = LIST_FIRST(&pg->pg_members); p != NULL;
p = LIST_NEXT(p, p_pglist)) {
1993-03-21 12:45:37 +03:00
if (descend)
ret |= ktrsetchildren(curp, p, ops, facs, vp);
else
ret |= ktrops(curp, p, ops, facs, vp);
}
1993-03-21 12:45:37 +03:00
} else {
/*
* by pid
*/
p = pfind(SCARG(uap, pid));
1993-03-21 12:45:37 +03:00
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;
1993-03-21 12:45:37 +03:00
return (error);
}
int
ktrops(curp, p, ops, facs, v)
struct proc *p, *curp;
int ops, facs;
void *v;
1993-03-21 12:45:37 +03:00
{
if (!ktrcanset(curp, p))
return (0);
if (KTROP(ops) == KTROP_SET) {
if (p->p_tracep != v) {
1993-03-21 12:45:37 +03:00
/*
* if trace file already in use, relinquish
*/
ktrderef(p);
if (ops & KTRFLAG_FD)
p->p_traceflag = KTRFAC_FD;
p->p_tracep = v;
ktradref(p);
1993-03-21 12:45:37 +03:00
}
p->p_traceflag |= facs;
if (curp->p_ucred->cr_uid == 0)
p->p_traceflag |= KTRFAC_ROOT;
} else {
/* KTROP_CLEAR */
if (((p->p_traceflag &= ~facs) & KTRFAC_MASK) == 0) {
/* no more tracing */
ktrderef(p);
1993-03-21 12:45:37 +03:00
}
}
/*
* Emit an emulation record, every time there is a ktrace
* change/attach request.
*/
if (KTRPOINT(p, KTR_EMUL))
ktremul(p->p_tracep, p, p->p_emul->e_name);
1993-03-21 12:45:37 +03:00
return (1);
}
1996-02-04 05:15:01 +03:00
int
ktrsetchildren(curp, top, ops, facs, v)
1993-03-21 12:45:37 +03:00
struct proc *curp, *top;
int ops, facs;
void *v;
1993-03-21 12:45:37 +03:00
{
struct proc *p;
int ret = 0;
1993-03-21 12:45:37 +03:00
p = top;
for (;;) {
ret |= ktrops(curp, p, ops, facs, v);
1993-03-21 12:45:37 +03:00
/*
* 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).
*/
if (LIST_FIRST(&p->p_children) != NULL)
p = LIST_FIRST(&p->p_children);
1993-03-21 12:45:37 +03:00
else for (;;) {
if (p == top)
return (ret);
if (LIST_NEXT(p, p_sibling) != NULL) {
p = LIST_NEXT(p, p_sibling);
1993-03-21 12:45:37 +03:00
break;
}
p = p->p_pptr;
1993-03-21 12:45:37 +03:00
}
}
/*NOTREACHED*/
}
int
ktrwrite(p, v, kth)
struct proc *p;
void *v;
struct ktr_header *kth;
1993-03-21 12:45:37 +03:00
{
struct uio auio;
struct iovec aiov[2];
int error;
if (v == NULL)
return (0);
1993-03-21 12:45:37 +03:00
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;
auio.uio_procp = (struct proc *)0;
if (kth->ktr_len > 0) {
auio.uio_iovcnt++;
aiov[1].iov_base = kth->ktr_buf;
aiov[1].iov_len = kth->ktr_len;
auio.uio_resid += kth->ktr_len;
}
if (p->p_traceflag & KTRFAC_FD) {
struct file *fp = v;
FILE_USE(fp);
error = (*fp->f_ops->fo_write)(fp, &fp->f_offset, &auio,
fp->f_cred, FOF_UPDATE_OFFSET);
FILE_UNUSE(fp, NULL);
}
else {
struct vnode *vp = v;
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
error = VOP_WRITE(vp, &auio, IO_UNIT|IO_APPEND, p->p_ucred);
VOP_UNLOCK(vp, 0);
}
if (__predict_true(error == 0))
return (0);
1993-03-21 12:45:37 +03:00
/*
* If error encountered, give up tracing on this vnode. Don't report
* EPIPE as this can easily happen with fktrace()/ktruss.
1993-03-21 12:45:37 +03:00
*/
if (error != EPIPE)
log(LOG_NOTICE,
"ktrace write failed, errno %d, tracing stopped\n",
error);
proclist_lock_read();
for (p = LIST_FIRST(&allproc); p != NULL; p = LIST_NEXT(p, p_list)) {
if (p->p_tracep == v)
ktrderef(p);
1993-03-21 12:45:37 +03:00
}
proclist_unlock_read();
return (error);
1993-03-21 12:45:37 +03: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
* root previously set the tracing status on the target process, and
* so, only root may further change it.
*
* TODO: check groups. use caller effective gid.
*/
1996-02-04 05:15:01 +03:00
int
1993-03-21 12:45:37 +03:00
ktrcanset(callp, targetp)
struct proc *callp, *targetp;
{
struct pcred *caller = callp->p_cred;
struct pcred *target = targetp->p_cred;
1993-03-21 12:45:37 +03: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);
}
#endif