diff -ur v2.6.4/linux/Documentation/filesystems/proc.txt linux/Documentation/filesystems/proc.txt --- v2.6.4/linux/Documentation/filesystems/proc.txt 2004-03-11 23:45:34.000000000 +0200 +++ linux/Documentation/filesystems/proc.txt 2004-03-12 01:45:45.018015960 +0200 @@ -1587,6 +1587,16 @@ (external addresses can still be spoofed), without the need for additional firewall rules. +rp_filter_mask +-------------- + +Integer value representing bitmask of the mediums for which the reverse path +protection is disabled. If the source validation results in reverse path to +interface with medium_id value in the 1..31 range the access is allowed if the +corresponding bit is set in the bitmask. The bitmask value is considered only +when rp_filter is enabled. By default the bitmask is empty preserving the +original rp_filter semantic. + secure_redirects ---------------- diff -ur v2.6.4/linux/Documentation/networking/ip-sysctl.txt linux/Documentation/networking/ip-sysctl.txt --- v2.6.4/linux/Documentation/networking/ip-sysctl.txt 2004-03-11 23:45:35.000000000 +0200 +++ linux/Documentation/networking/ip-sysctl.txt 2004-03-12 01:48:22.252112744 +0200 @@ -480,6 +480,15 @@ Default value is 0. Note that some distributions enable it in startup scripts. +rp_filter_mask - INTEGER + Integer value representing bitmask of the mediums for which the + reverse path protection is disabled. If the source validation + results in reverse path to interface with medium_id value in + the 1..31 range the access is allowed if the corresponding bit + is set in the bitmask. The bitmask value is considered only when + rp_filter is enabled. By default the bitmask is empty preserving + the original rp_filter semantic. + arp_filter - BOOLEAN 1 - Allows you to have multiple network interfaces on the same subnet, and have the ARPs for each interface be answered diff -ur v2.6.4/linux/include/linux/inetdevice.h linux/include/linux/inetdevice.h --- v2.6.4/linux/include/linux/inetdevice.h 2004-03-11 23:48:02.000000000 +0200 +++ linux/include/linux/inetdevice.h 2004-03-12 01:45:45.019015808 +0200 @@ -24,6 +24,7 @@ int no_xfrm; int no_policy; int force_igmp_version; + int rp_filter_mask; void *sysctl; }; @@ -65,6 +66,7 @@ #define IN_DEV_SEC_REDIRECTS(in_dev) (ipv4_devconf.secure_redirects || (in_dev)->cnf.secure_redirects) #define IN_DEV_IDTAG(in_dev) ((in_dev)->cnf.tag) #define IN_DEV_MEDIUM_ID(in_dev) ((in_dev)->cnf.medium_id) +#define IN_DEV_RPFILTER_MASK(in_dev) ((in_dev)->cnf.rp_filter_mask) #define IN_DEV_RX_REDIRECTS(in_dev) \ ((IN_DEV_FORWARD(in_dev) && \ diff -ur v2.6.4/linux/include/linux/sysctl.h linux/include/linux/sysctl.h --- v2.6.4/linux/include/linux/sysctl.h 2004-03-11 23:48:06.000000000 +0200 +++ linux/include/linux/sysctl.h 2004-03-12 01:46:05.994827000 +0200 @@ -374,6 +374,7 @@ NET_IPV4_CONF_FORCE_IGMP_VERSION=17, NET_IPV4_CONF_ARP_ANNOUNCE=18, NET_IPV4_CONF_ARP_IGNORE=19, + NET_IPV4_CONF_RP_FILTER_MASK=20, }; /* /proc/sys/net/ipv4/netfilter */ diff -ur v2.6.4/linux/net/ipv4/devinet.c linux/net/ipv4/devinet.c --- v2.6.4/linux/net/ipv4/devinet.c 2004-03-11 23:48:15.000000000 +0200 +++ linux/net/ipv4/devinet.c 2004-03-12 01:46:22.999241936 +0200 @@ -1210,7 +1210,7 @@ static struct devinet_sysctl_table { struct ctl_table_header *sysctl_header; - ctl_table devinet_vars[20]; + ctl_table devinet_vars[21]; ctl_table devinet_dev[2]; ctl_table devinet_conf_dir[2]; ctl_table devinet_proto_dir[2]; @@ -1298,6 +1298,14 @@ .proc_handler = &proc_dointvec, }, { + .ctl_name = NET_IPV4_CONF_RP_FILTER_MASK, + .procname = "rp_filter_mask", + .data = &ipv4_devconf.rp_filter_mask, + .maxlen = sizeof(int), + .mode = 0644, + .proc_handler = &proc_dointvec, + }, + { .ctl_name = NET_IPV4_CONF_BOOTP_RELAY, .procname = "bootp_relay", .data = &ipv4_devconf.bootp_relay, diff -ur v2.6.4/linux/net/ipv4/fib_frontend.c linux/net/ipv4/fib_frontend.c --- v2.6.4/linux/net/ipv4/fib_frontend.c 2003-10-10 01:16:29.000000000 +0300 +++ linux/net/ipv4/fib_frontend.c 2004-03-12 01:45:45.023015200 +0200 @@ -169,6 +169,7 @@ .iif = oif }; struct fib_result res; int no_addr, rpf; + unsigned rpf_mask = 0; int ret; no_addr = rpf = 0; @@ -177,6 +178,7 @@ if (in_dev) { no_addr = in_dev->ifa_list == NULL; rpf = IN_DEV_RPFILTER(in_dev); + rpf_mask = IN_DEV_RPFILTER_MASK(in_dev); } read_unlock(&inetdev_lock); @@ -199,6 +201,17 @@ fib_res_put(&res); return ret; } + if (rpf_mask && rpf) { + int omi = 0; + + read_lock(&inetdev_lock); + in_dev = __in_dev_get(FIB_RES_DEV(res)); + if (in_dev) + omi = IN_DEV_MEDIUM_ID(in_dev); + read_unlock(&inetdev_lock); + if (omi >= 1 && omi <= 31 && ((1 << omi) & rpf_mask)) + rpf = 0; + } fib_res_put(&res); if (no_addr) goto last_resort;