]> git.hungrycats.org Git - linux/commitdiff
[XFRM]: Use output device disable_xfrm for forwarded packets
authorPatrick McHardy <kaber@trash.net>
Sat, 9 Dec 2006 15:14:39 +0000 (16:14 +0100)
committerAdrian Bunk <bunk@stusta.de>
Sat, 9 Dec 2006 15:14:39 +0000 (16:14 +0100)
Currently the behaviour of disable_xfrm is inconsistent between
locally generated and forwarded packets. For locally generated
packets disable_xfrm disables the policy lookup if it is set on
the output device, for forwarded traffic however it looks at the
input device. This makes it impossible to disable xfrm on all
devices but a dummy device and use normal routing to direct
traffic to that device.

Always use the output device when checking disable_xfrm.

Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
net/ipv4/route.c

index c2cd901327bd7b3bbdbdd5edc95c981eb300a605..c83066cc342aa6449f6a4edebb8df8eff769fc3c 100644 (file)
@@ -1768,7 +1768,7 @@ static inline int __mkroute_input(struct sk_buff *skb,
 #endif
        if (in_dev->cnf.no_policy)
                rth->u.dst.flags |= DST_NOPOLICY;
-       if (in_dev->cnf.no_xfrm)
+       if (out_dev->cnf.no_xfrm)
                rth->u.dst.flags |= DST_NOXFRM;
        rth->fl.fl4_dst = daddr;
        rth->rt_dst     = daddr;