diff options
author | Eric Dumazet <edumazet@google.com> | 2015-03-13 15:51:10 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-03-14 15:05:10 -0400 |
commit | 16f86165bd0a94a96ab99629828cc9057db50221 (patch) | |
tree | abb1a7c6f69f2f424dd08e035091945d252dd141 /net/ipv4/syncookies.c | |
parent | a3795208b9a9801a66b305395e9ebaae850eee03 (diff) | |
download | linux-16f86165bd0a94a96ab99629828cc9057db50221.tar.bz2 |
inet: fill request sock ir_iif for IPv4
Once request socks will be in ehash table, they will need to have
a valid ir_iff field.
This is currently true only for IPv6. This patch extends support
for IPv4 as well.
This means inet_diag_fill_req() can now properly use ir_iif,
which is better for IPv6 link locals anyway, as request sockets
and established sockets will propagate consistent netlink idiag_if.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/syncookies.c')
-rw-r--r-- | net/ipv4/syncookies.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/ipv4/syncookies.c b/net/ipv4/syncookies.c index 0c432730c7b4..f17db898ed26 100644 --- a/net/ipv4/syncookies.c +++ b/net/ipv4/syncookies.c @@ -349,6 +349,8 @@ struct sock *cookie_v4_check(struct sock *sk, struct sk_buff *skb) write_pnet(&ireq->ireq_net, sock_net(sk)); ireq->ireq_family = AF_INET; + ireq->ir_iif = sk->sk_bound_dev_if; + /* We throwed the options of the initial SYN away, so we hope * the ACK carries the same options again (see RFC1122 4.2.3.8) */ |