Skip to content

Commit c5ee066

Browse files
dsaherndavem330
authored andcommitted
ipv6: Consider sk_bound_dev_if when binding a socket to an address
IPv6 does not consider if the socket is bound to a device when binding to an address. The result is that a socket can be bound to eth0 and then bound to the address of eth1. If the device is a VRF, the result is that a socket can only be bound to an address in the default VRF. Resolve by considering the device if sk_bound_dev_if is set. This problem exists from the beginning of git history. Signed-off-by: David Ahern <dsahern@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 7315587 commit c5ee066

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

net/ipv6/af_inet6.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,9 @@ static int __inet6_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len,
350350
err = -EINVAL;
351351
goto out_unlock;
352352
}
353+
}
354+
355+
if (sk->sk_bound_dev_if) {
353356
dev = dev_get_by_index_rcu(net, sk->sk_bound_dev_if);
354357
if (!dev) {
355358
err = -ENODEV;

0 commit comments

Comments
 (0)