summaryrefslogtreecommitdiffstats
path: root/net/ipv4/route.c
diff options
context:
space:
mode:
authorJulian Anastasov2017-02-26 16:14:35 +0100
committerDavid S. Miller2017-02-26 17:03:38 +0100
commit6e28099d38c0e50d62c1afc054e37e573adf3d21 (patch)
treed657edf93ccf2204af4e8e50e396fd285c2e9baf /net/ipv4/route.c
parentipv4: add missing initialization for flowi4_uid (diff)
downloadkernel-qcow2-linux-6e28099d38c0e50d62c1afc054e37e573adf3d21.tar.gz
kernel-qcow2-linux-6e28099d38c0e50d62c1afc054e37e573adf3d21.tar.xz
kernel-qcow2-linux-6e28099d38c0e50d62c1afc054e37e573adf3d21.zip
ipv4: mask tos for input route
Restore the lost masking of TOS in input route code to allow ip rules to match it properly. Problem [1] noticed by Shmulik Ladkani <shmulik.ladkani@gmail.com> [1] http://marc.info/?t=137331755300040&r=1&w=2 Fixes: 89aef8921bfb ("ipv4: Delete routing cache.") Signed-off-by: Julian Anastasov <ja@ssi.bg> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/route.c')
-rw-r--r--net/ipv4/route.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index 584ed667bfa4..8471dd116771 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -2009,6 +2009,7 @@ int ip_route_input_noref(struct sk_buff *skb, __be32 daddr, __be32 saddr,
{
int res;
+ tos &= IPTOS_RT_MASK;
rcu_read_lock();
/* Multicast recognition logic is moved from route cache to here.