From owner-cvs-src@FreeBSD.ORG Thu Feb 2 00:37:06 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61DD616A420; Thu, 2 Feb 2006 00:37:06 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BDE543D46; Thu, 2 Feb 2006 00:37:06 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id k120b61J014700; Thu, 2 Feb 2006 00:37:06 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k120b6iM014699; Thu, 2 Feb 2006 00:37:06 GMT (envelope-from rwatson) Message-Id: <200602020037.k120b6iM014699@repoman.freebsd.org> From: Robert Watson Date: Thu, 2 Feb 2006 00:37:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_thread.c src/sys/security/audit audit.c audit.h src/sys/sys proc.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Feb 2006 00:37:06 -0000 rwatson 2006-02-02 00:37:06 UTC FreeBSD src repository Modified files: sys/kern kern_thread.c sys/security/audit audit.c audit.h sys/sys proc.h Log: Add new fields to process-related data structures: - td_ar to struct thread, which holds the in-progress audit record during a system call. - p_au to struct proc, which holds per-process audit state, such as the audit identifier, audit terminal, and process audit masks. In the earlier implementation, td_ar was added to the zero'd section of struct thread. In order to facilitate merging to RELENG_6, it has been moved to the end of the data structure, requiring explicit initalization in the thread constructor. Much help from: wsalamon Obtained from: TrustedBSD Project Revision Changes Path 1.225 +6 -0 src/sys/kern/kern_thread.c 1.2 +10 -0 src/sys/security/audit/audit.c 1.2 +1 -0 src/sys/security/audit/audit.h 1.449 +4 -0 src/sys/sys/proc.h