forked from mirrors/linux
		
	ipv4: Fix raw socket lookup for local traffic
inet_iif should be used for the raw socket lookup. inet_iif considers
rt_iif which handles the case of local traffic.
As it stands, ping to a local address with the '-I <dev>' option fails
ever since ping was changed to use SO_BINDTODEVICE instead of
cmsg + IP_PKTINFO.
IPv6 works fine.
Fixes: 1da177e4c3 ("Linux-2.6.12-rc2")
Signed-off-by: David Ahern <dsahern@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
			
			
This commit is contained in:
		
							parent
							
								
									e9919a24d3
								
							
						
					
					
						commit
						19e4e76806
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -173,6 +173,7 @@ static int icmp_filter(const struct sock *sk, const struct sk_buff *skb)
 | 
				
			||||||
static int raw_v4_input(struct sk_buff *skb, const struct iphdr *iph, int hash)
 | 
					static int raw_v4_input(struct sk_buff *skb, const struct iphdr *iph, int hash)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	int sdif = inet_sdif(skb);
 | 
						int sdif = inet_sdif(skb);
 | 
				
			||||||
 | 
						int dif = inet_iif(skb);
 | 
				
			||||||
	struct sock *sk;
 | 
						struct sock *sk;
 | 
				
			||||||
	struct hlist_head *head;
 | 
						struct hlist_head *head;
 | 
				
			||||||
	int delivered = 0;
 | 
						int delivered = 0;
 | 
				
			||||||
| 
						 | 
					@ -185,8 +186,7 @@ static int raw_v4_input(struct sk_buff *skb, const struct iphdr *iph, int hash)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	net = dev_net(skb->dev);
 | 
						net = dev_net(skb->dev);
 | 
				
			||||||
	sk = __raw_v4_lookup(net, __sk_head(head), iph->protocol,
 | 
						sk = __raw_v4_lookup(net, __sk_head(head), iph->protocol,
 | 
				
			||||||
			     iph->saddr, iph->daddr,
 | 
								     iph->saddr, iph->daddr, dif, sdif);
 | 
				
			||||||
			     skb->dev->ifindex, sdif);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	while (sk) {
 | 
						while (sk) {
 | 
				
			||||||
		delivered = 1;
 | 
							delivered = 1;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue