Index: net/ipv4/netfilter/Kconfig =================================================================== RCS file: /cvsroot/selinux/nsa/linux-2.6/net/ipv4/netfilter/Kconfig,v retrieving revision 1.1.1.7 diff -u -u -r1.1.1.7 Kconfig --- net/ipv4/netfilter/Kconfig 13 May 2004 18:03:22 -0000 1.1.1.7 +++ net/ipv4/netfilter/Kconfig 11 Sep 2004 12:17:53 -0000 @@ -256,6 +256,15 @@ To compile it as a module, choose M here. If unsure, say N. +config IP_NF_MATCH_PROGRAM + tristate "Full program pathname match support" + depends on IP_NF_IPTABLES + help + Packet program name matching allows you to match locally-generated packets + based on the full path name of the program that generated them. + + To compile it as a module, choose M here. If unsure, say N. + config IP_NF_MATCH_OWNER tristate "Owner match support" depends on IP_NF_IPTABLES Index: net/ipv4/netfilter/Makefile =================================================================== RCS file: /cvsroot/selinux/nsa/linux-2.6/net/ipv4/netfilter/Makefile,v retrieving revision 1.1.1.3 diff -u -u -r1.1.1.3 Makefile --- net/ipv4/netfilter/Makefile 13 May 2004 18:03:22 -0000 1.1.1.3 +++ net/ipv4/netfilter/Makefile 11 Sep 2004 12:17:53 -0000 @@ -50,6 +50,7 @@ obj-$(CONFIG_IP_NF_MATCH_PKTTYPE) += ipt_pkttype.o obj-$(CONFIG_IP_NF_MATCH_MULTIPORT) += ipt_multiport.o obj-$(CONFIG_IP_NF_MATCH_OWNER) += ipt_owner.o +obj-$(CONFIG_IP_NF_MATCH_PROGRAM) += ipt_program.o obj-$(CONFIG_IP_NF_MATCH_TOS) += ipt_tos.o obj-$(CONFIG_IP_NF_MATCH_RECENT) += ipt_recent.o Index: security/selinux/hooks.c