From: Jens Rosenboom Date: Thu, 10 Sep 2009 06:25:11 +0000 (+0000) Subject: ipv6: Ignore route option with ROUTER_PREF_INVALID X-Git-Tag: v2.6.32-rc1~21^2~60 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3933fc952a5a5af4cf23fca94e20203251c9d825;p=platform%2Fupstream%2Fkernel-adaptation-pc.git ipv6: Ignore route option with ROUTER_PREF_INVALID RFC4191 says that "If the Reserved (10) value is received, the Route Information Option MUST be ignored.", so this patch makes us conform to the RFC. This is different to the usage of the Default Router Preference, where an invalid value must indeed be treated as PREF_MEDIUM. Signed-off-by: Jens Rosenboom Signed-off-by: David S. Miller --- diff --git a/net/ipv6/route.c b/net/ipv6/route.c index 9ccfef3..77aecbe 100644 --- a/net/ipv6/route.c +++ b/net/ipv6/route.c @@ -481,7 +481,7 @@ int rt6_route_rcv(struct net_device *dev, u8 *opt, int len, pref = rinfo->route_pref; if (pref == ICMPV6_ROUTER_PREF_INVALID) - pref = ICMPV6_ROUTER_PREF_MEDIUM; + return -EINVAL; lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);