X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/43866e378188c25dd1e2208016ab3cbeb086ae6c..e5568f75972dfc723778653c11cb6b4dc825716a:/bsd/kern/kern_ktrace.c diff --git a/bsd/kern/kern_ktrace.c b/bsd/kern/kern_ktrace.c index 2a4d1c3d3..4234c2fbc 100644 --- a/bsd/kern/kern_ktrace.c +++ b/bsd/kern/kern_ktrace.c @@ -1,24 +1,21 @@ /* - * Copyright (c) 2000-2001 Apple Computer, Inc. All rights reserved. + * Copyright (c) 2000-2004 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * - * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. + * The contents of this file constitute Original Code as defined in and + * are subject to the Apple Public Source License Version 1.1 (the + * "License"). You may not use this file except in compliance with the + * License. Please obtain a copy of the License at + * http://www.apple.com/publicsource and read it before using this file. * - * This file contains Original Code and/or Modifications of Original Code - * as defined in and that are subject to the Apple Public Source License - * Version 2.0 (the 'License'). You may not use this file except in - * compliance with the License. Please obtain a copy of the License at - * http://www.opensource.apple.com/apsl/ and read it before using this - * file. - * - * The Original Code and all software distributed under the License are - * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER + * This Original Code and all software distributed under the License are + * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. - * Please see the License for the specific language governing rights and - * limitations under the License. + * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the + * License for the specific language governing rights and limitations + * under the License. * * @APPLE_LICENSE_HEADER_END@ */ @@ -72,6 +69,9 @@ #endif #include #include +#include + +#include #if KTRACE static struct ktr_header *ktrgetheader __P((int type)); @@ -301,6 +301,9 @@ ktrace(curp, uap, retval) int error = 0; struct nameidata nd; + AUDIT_ARG(cmd, uap->ops); + AUDIT_ARG(pid, uap->pid); + AUDIT_ARG(value, uap->facs); curp->p_traceflag |= KTRFAC_ACTIVE; if (ops != KTROP_CLEAR) { /* @@ -332,6 +335,9 @@ ktrace(curp, uap, retval) p->p_traceflag = 0; if (tvp != NULL) { p->p_tracep = NULL; + + VOP_CLOSE(vp, FREAD|FWRITE, curp->p_ucred, curp); + ubc_rele(tvp); vrele(tvp); } } else @@ -375,6 +381,7 @@ ktrace(curp, uap, retval) error = ESRCH; goto done; } + AUDIT_ARG(process, p); if (descend) ret |= ktrsetchildren(curp, p, ops, facs, vp); else @@ -419,7 +426,7 @@ utrace(curp, uap, retval) p->p_traceflag |= KTRFAC_ACTIVE; kth = ktrgetheader(KTR_USER); MALLOC(cp, caddr_t, uap->len, M_KTRACE, M_WAITOK); - if (!copyin(uap->addr, cp, uap->len)) { + if (!copyin((caddr_t)uap->addr, cp, uap->len)) { kth->ktr_buf = cp; kth->ktr_len = uap->len; ktrwrite(p->p_tracep, kth, NULL, KERNEL_FUNNEL); @@ -451,10 +458,17 @@ ktrops(curp, p, ops, facs, vp) * if trace file already in use, relinquish */ tvp = p->p_tracep; + + if (UBCINFOEXISTS(vp)) + ubc_hold(vp); VREF(vp); + p->p_tracep = vp; - if (tvp != NULL) + if (tvp != NULL) { + VOP_CLOSE(tvp, FREAD|FWRITE, p->p_ucred, p); + ubc_rele(tvp); vrele(tvp); + } } p->p_traceflag |= facs; if (curp->p_ucred->cr_uid == 0) @@ -467,6 +481,9 @@ ktrops(curp, p, ops, facs, vp) p->p_traceflag = 0; if (tvp != NULL) { p->p_tracep = NULL; + + VOP_CLOSE(tvp, FREAD|FWRITE, p->p_ucred, p); + ubc_rele(tvp); vrele(tvp); } } @@ -599,6 +616,9 @@ bad: if (p->p_tracep == vp) { p->p_tracep = NULL; p->p_traceflag = 0; + + VOP_CLOSE(vp, FREAD|FWRITE, p->p_ucred, p); + ubc_rele(vp); vrele(vp); } } @@ -641,7 +661,8 @@ ktrcanset(callp, targetp) 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) || + (targetp->p_traceflag & KTRFAC_ROOT) == 0 && + (targetp->p_flag & P_SUGID) == 0) || caller->pc_ucred->cr_uid == 0) return (1);