Commit 82c9ae44 authored by John Haxby's avatar John Haxby Committed by David S. Miller
Browse files

ipv6: fix restrict IPV6_ADDRFORM operation



Commit b6f61189 ("ipv6: restrict IPV6_ADDRFORM operation") fixed a
problem found by syzbot an unfortunate logic error meant that it
also broke IPV6_ADDRFORM.

Rearrange the checks so that the earlier test is just one of the series
of checks made before moving the socket from IPv6 to IPv4.

Fixes: b6f61189 ("ipv6: restrict IPV6_ADDRFORM operation")
Signed-off-by: default avatarJohn Haxby <john.haxby@oracle.com>
Cc: stable@vger.kernel.org
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent bdbe05b3
Loading
Loading
Loading
Loading
+6 −7
Original line number Diff line number Diff line
@@ -183,15 +183,14 @@ static int do_ipv6_setsockopt(struct sock *sk, int level, int optname,
					retv = -EBUSY;
					break;
				}
			} else if (sk->sk_protocol == IPPROTO_TCP) {
				if (sk->sk_prot != &tcpv6_prot) {
			}
			if (sk->sk_protocol == IPPROTO_TCP &&
			    sk->sk_prot != &tcpv6_prot) {
				retv = -EBUSY;
				break;
			}
			if (sk->sk_protocol != IPPROTO_TCP)
				break;
			} else {
				break;
			}
			if (sk->sk_state != TCP_ESTABLISHED) {
				retv = -ENOTCONN;
				break;