[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20121008.151633.753185005887436197.davem@davemloft.net>
Date: Mon, 08 Oct 2012 15:16:33 -0400 (EDT)
From: David Miller <davem@...emloft.net>
To: ja@....bg
Cc: netdev@...r.kernel.org
Subject: Re: [PATCH net 1/6] ipv4: fix sending of redirects
From: Julian Anastasov <ja@....bg>
Date: Sun, 7 Oct 2012 14:26:03 +0300
> @@ -322,7 +322,8 @@ int fib_validate_source(struct sk_buff *skb, __be32 src, __be32 dst,
> {
> int r = secpath_exists(skb) ? 0 : IN_DEV_RPFILTER(idev);
>
> - if (!r && !fib_num_tclassid_users(dev_net(dev))) {
> + if (!r && !fib_num_tclassid_users(dev_net(dev)) &&
> + dev->ifindex != oif) {
> *itag = 0;
> return 0;
> }
Hmmm, won't this cause the slow path to be taken for locally
destined traffic?
> + rt->rt_gateway ? : ip_hdr(skb)->daddr);
Please use the rt_nexthop() helper.
> + __be32 gw = rt->rt_gateway ? : ip_hdr(skb)->daddr;
Likewise.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists