From owner-cvs-src@FreeBSD.ORG Thu Aug 21 11:38:54 2003 Return-Path: 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 1F76416A4BF; Thu, 21 Aug 2003 11:38:54 -0700 (PDT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2362643F85; Thu, 21 Aug 2003 11:38:53 -0700 (PDT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.9/8.12.9) with ESMTP id h7LIckrO065769; Thu, 21 Aug 2003 14:38:46 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)h7LIckxb065766; Thu, 21 Aug 2003 14:38:46 -0400 (EDT) Date: Thu, 21 Aug 2003 14:38:46 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200308211821.h7LILMpQ014529@repoman.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Re: cvs commit: src/sys/kern kern_mac.c src/sys/sys mac.h mac_policy.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 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, 21 Aug 2003 18:38:54 -0000 FYI, this commit was slightly mis-ordered: I meant to commit it shortly before a couple of the recent module commits, and realized afterwards that I'd skipped it. As a result, there may have been a short window where MAC modules depended on changes in mac_policy.h and mac.h that weren't yet present. Hope this didn't cause too much inconvenience! Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Network Associates Laboratories On Thu, 21 Aug 2003, Robert Watson wrote: > rwatson 2003/08/21 11:21:22 PDT > > FreeBSD src repository > > Modified files: > sys/kern kern_mac.c > sys/sys mac.h mac_policy.h > Log: > Introduce two new MAC Framework and MAC policy entry points: > > mac_reflect_mbuf_icmp() > mac_reflect_mbuf_tcp() > > These entry points permit MAC policies to do "update in place" > changes to the labels on ICMP and TCP mbuf headers when an ICMP or > TCP response is generated to a packet outside of the context of > an existing socket. For example, in respond to a ping or a RST > packet to a SYN on a closed port. > > Obtained from: TrustedBSD Project > Sponsored by: DARPA, Network Associates Laboratories > > Revision Changes Path > 1.97 +19 -0 src/sys/kern/kern_mac.c > 1.42 +2 -0 src/sys/sys/mac.h > 1.43 +3 -0 src/sys/sys/mac_policy.h >