aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/fib_rules.c
diff options
context:
space:
mode:
authorTom Herbert <therbert@google.com>2010-05-23 19:54:12 +0000
committerDavid S. Miller <davem@davemloft.net>2010-09-28 23:38:15 -0700
commit4465b469008bc03b98a1b8df4e9ae501b6c69d4b (patch)
tree89cd40165e62694e8ed84d4d60486350ebd8b992 /net/core/fib_rules.c
parentfc34ecd07f15358e2b29620fafeb8a6a9528ce79 (diff)
downloadkernel_samsung_smdk4412-4465b469008bc03b98a1b8df4e9ae501b6c69d4b.zip
kernel_samsung_smdk4412-4465b469008bc03b98a1b8df4e9ae501b6c69d4b.tar.gz
kernel_samsung_smdk4412-4465b469008bc03b98a1b8df4e9ae501b6c69d4b.tar.bz2
ipv4: Allow configuring subnets as local addresses
This patch allows a host to be configured to respond to any address in a specified range as if it were local, without actually needing to configure the address on an interface. This is done through routing table configuration. For instance, to configure a host to respond to any address in 10.1/16 received on eth0 as a local address we can do: ip rule add from all iif eth0 lookup 200 ip route add local 10.1/16 dev lo proto kernel scope host src 127.0.0.1 table 200 This host is now reachable by any 10.1/16 address (route lookup on input for packets received on eth0 can find the route). On output, the rule will not be matched so that this host can still send packets to 10.1/16 (not sent on loopback). Presumably, external routing can be configured to make sense out of this. To make this work, we needed to modify the logic in finding the interface which is assigned a given source address for output (dev_ip_find). We perform a normal fib_lookup instead of just a lookup on the local table, and in the lookup we ignore the input interface for matching. This patch is useful to implement IP-anycast for subnets of virtual addresses. Signed-off-by: Tom Herbert <therbert@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/fib_rules.c')
-rw-r--r--net/core/fib_rules.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/core/fib_rules.c b/net/core/fib_rules.c
index d078728..332c2e3 100644
--- a/net/core/fib_rules.c
+++ b/net/core/fib_rules.c
@@ -182,7 +182,8 @@ static int fib_rule_match(struct fib_rule *rule, struct fib_rules_ops *ops,
{
int ret = 0;
- if (rule->iifindex && (rule->iifindex != fl->iif))
+ if (rule->iifindex && (rule->iifindex != fl->iif) &&
+ !(fl->flags & FLOWI_FLAG_MATCH_ANY_IIF))
goto out;
if (rule->oifindex && (rule->oifindex != fl->oif))