From owner-cvs-all@FreeBSD.ORG Sat Jul 17 02:40:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E57E16A4CE; Sat, 17 Jul 2004 02:40:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95EA843D48; Sat, 17 Jul 2004 02:40:14 +0000 (GMT) (envelope-from jmallett@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6H2eEXt021684; Sat, 17 Jul 2004 02:40:14 GMT (envelope-from jmallett@repoman.freebsd.org) Received: (from jmallett@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6H2eEHO021683; Sat, 17 Jul 2004 02:40:14 GMT (envelope-from jmallett) Message-Id: <200407170240.i6H2eEHO021683@repoman.freebsd.org> From: Juli Mallett Date: Sat, 17 Jul 2004 02:40:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_fw2.c src/sys/sys mbuf.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jul 2004 02:40:14 -0000 jmallett 2004-07-17 02:40:14 UTC FreeBSD src repository Modified files: sys/netinet ip_fw2.c sys/sys mbuf.h Log: Make M_SKIP_FIREWALL a global (and semantic) flag, preventing anything from using M_PROTO6 and possibly shooting someone's foot, as well as allowing the firewall to be used in multiple passes, or with a packet classifier frontend, that may need to explicitly allow a certain packet. Presently this is handled in the ipfw_chk code as before, though I have run with it moved to upper layers, and possibly it should apply to ipfilter and pf as well, though this has not been investigated. Discussed with: luigi, rwatson Revision Changes Path 1.65 +0 -12 src/sys/netinet/ip_fw2.c 1.151 +2 -2 src/sys/sys/mbuf.h