diff options
author | csjp <csjp@FreeBSD.org> | 2006-09-12 04:25:13 +0000 |
---|---|---|
committer | csjp <csjp@FreeBSD.org> | 2006-09-12 04:25:13 +0000 |
commit | 63e89c05d2dd3463fdb87ade28334a74d7c6e6f0 (patch) | |
tree | bfad0bcbfb5566e8fc5f5992840f671a03dba9ea /sys/modules/pf/Makefile | |
parent | c74e70f7a8f39a60078eafdfacb3a154e190b0f8 (diff) | |
download | FreeBSD-src-63e89c05d2dd3463fdb87ade28334a74d7c6e6f0.zip FreeBSD-src-63e89c05d2dd3463fdb87ade28334a74d7c6e6f0.tar.gz |
Introduce a new entry point, mac_create_mbuf_from_firewall. This entry point
exists to allow the mandatory access control policy to properly initialize
mbufs generated by the firewall. An example where this might happen is keep
alive packets, or ICMP error packets in response to other packets.
This takes care of kernel panics associated with un-initialize mbuf labels
when the firewall generates packets.
[1] I modified this patch from it's original version, the initial patch
introduced a number of entry points which were programmatically
equivalent. So I introduced only one. Instead, we should leverage
mac_create_mbuf_netlayer() which is used for similar situations,
an example being icmp_error()
This will minimize the impact associated with the MFC
Submitted by: mlaier [1]
MFC after: 1 week
This is a RELENG_6 candidate
Diffstat (limited to 'sys/modules/pf/Makefile')
-rw-r--r-- | sys/modules/pf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/pf/Makefile b/sys/modules/pf/Makefile index 3cff478..4c29a0b 100644 --- a/sys/modules/pf/Makefile +++ b/sys/modules/pf/Makefile @@ -8,7 +8,7 @@ KMOD= pf SRCS = pf.c pf_if.c pf_subr.c pf_osfp.c pf_ioctl.c pf_norm.c pf_table.c \ in4_cksum.c \ - opt_pf.h opt_inet.h opt_inet6.h opt_bpf.h + opt_pf.h opt_inet.h opt_inet6.h opt_bpf.h opt_mac.h CFLAGS+= -I${.CURDIR}/../../contrib/pf |