From owner-svn-src-stable@FreeBSD.ORG Sun Oct 28 16:14:07 2012 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A03E81C2; Sun, 28 Oct 2012 16:14:07 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 87AE68FC08; Sun, 28 Oct 2012 16:14:07 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SGE7TT047747; Sun, 28 Oct 2012 16:14:07 GMT (envelope-from avg@svn.freebsd.org) Received: (from avg@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SGE7qS047745; Sun, 28 Oct 2012 16:14:07 GMT (envelope-from avg@svn.freebsd.org) Message-Id: <201210281614.q9SGE7qS047745@svn.freebsd.org> From: Andriy Gapon Date: Sun, 28 Oct 2012 16:14:07 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r242245 - stable/9/sys/kern X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Oct 2012 16:14:07 -0000 Author: avg Date: Sun Oct 28 16:14:07 2012 New Revision: 242245 URL: http://svn.freebsd.org/changeset/base/242245 Log: MFC r241281: ktrace/kern_exec: check p_tracecred instead of p_cred Modified: stable/9/sys/kern/kern_exec.c Directory Properties: stable/9/sys/ (props changed) Modified: stable/9/sys/kern/kern_exec.c ============================================================================== --- stable/9/sys/kern/kern_exec.c Sun Oct 28 16:12:12 2012 (r242244) +++ stable/9/sys/kern/kern_exec.c Sun Oct 28 16:14:07 2012 (r242245) @@ -694,7 +694,8 @@ interpret: setsugid(p); #ifdef KTRACE - if (priv_check_cred(oldcred, PRIV_DEBUG_DIFFCRED, 0)) + if (p->p_tracecred != NULL && + priv_check_cred(p->p_tracecred, PRIV_DEBUG_DIFFCRED, 0)) ktrprocexec(p, &tracecred, &tracevp); #endif /*