diff options
author | Vlad Yasevich <vladislav.yasevich@hp.com> | 2009-03-24 16:24:49 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-03-24 19:49:10 -0700 |
commit | 0f8d3c7ac3693d7b6c731bf2159273a59bf70e12 (patch) | |
tree | b1b5afc7a0c0475286dee7562cde523c9fbcdabe /net/ipv6 | |
parent | 783ed5a78373253052bc61a3c5c8b9f17af4e3c6 (diff) | |
download | linux-3.10-0f8d3c7ac3693d7b6c731bf2159273a59bf70e12.tar.gz linux-3.10-0f8d3c7ac3693d7b6c731bf2159273a59bf70e12.tar.bz2 linux-3.10-0f8d3c7ac3693d7b6c731bf2159273a59bf70e12.zip |
ipv6: Allow ipv4 wildcard binds after ipv6 address binds
The IPv4 wildcard (0.0.0.0) address does not intersect
in any way with explicit IPv6 addresses. These two should
be permitted, but the IPv4 conflict code checks the ipv6only
bit as part of the test. Since binding to an explicit IPv6
address restricts the socket to only that IPv6 address, the
side-effect is that the socket behaves as v6-only. By
explicitely setting ipv6only in this case, allows the 2 binds
to succeed.
Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/af_inet6.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net/ipv6/af_inet6.c b/net/ipv6/af_inet6.c index 7f092fa912b..9b6a37d16fb 100644 --- a/net/ipv6/af_inet6.c +++ b/net/ipv6/af_inet6.c @@ -346,8 +346,11 @@ int inet6_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len) goto out; } - if (addr_type != IPV6_ADDR_ANY) + if (addr_type != IPV6_ADDR_ANY) { sk->sk_userlocks |= SOCK_BINDADDR_LOCK; + if (addr_type != IPV6_ADDR_MAPPED) + np->ipv6only = 1; + } if (snum) sk->sk_userlocks |= SOCK_BINDPORT_LOCK; inet->sport = htons(inet->num); |