Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ce757d71 authored by Willem de Bruijn's avatar Willem de Bruijn Committed by Gerrit - the friendly Code Review server
Browse files

packet: hold bind lock when rebinding to fanout hook



[ Upstream commit 008ba2a13f2d04c947adc536d19debb8fe66f110 ]

Packet socket bind operations must hold the po->bind_lock. This keeps
po->running consistent with whether the socket is actually on a ptype
list to receive packets.

fanout_add unbinds a socket and its packet_rcv/tpacket_rcv call, then
binds the fanout object to receive through packet_rcv_fanout.

Make it hold the po->bind_lock when testing po->running and rebinding.
Else, it can race with other rebind operations, such as that in
packet_set_ring from packet_rcv to tpacket_rcv. Concurrent updates
can result in a socket being added to a fanout group twice, causing
use-after-free KASAN bug reports, among others.

Reported independently by both trinity and syzkaller.
Verified that the syzkaller reproducer passes after this patch.

Change-Id: I085f048f219cf927ce21c26c21da9f0729801503
Fixes: dc99f600 ("packet: Add fanout support.")
Reported-by: default avatarnixioaming <nixiaoming@huawei.com>
Signed-off-by: default avatarWillem de Bruijn <willemb@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Git-repo: https://android.googlesource.com/kernel/common


Git-commit: e4ffdf9e
Signed-off-by: default avatarAshwanth Goli <ashwanth@codeaurora.org>
parent 9a1bf032
Loading
Loading
Loading
Loading
+11 −1
Original line number Diff line number Diff line
@@ -1475,7 +1475,10 @@ static int fanout_add(struct sock *sk, u16 id, u16 type_flags)
		list_add(&match->list, &fanout_list);
	}
	err = -EINVAL;
	if (match->type == type &&

	spin_lock(&po->bind_lock);
	if (po->running &&
	    match->type == type &&
	    match->prot_hook.type == po->prot_hook.type &&
	    match->prot_hook.dev == po->prot_hook.dev) {
		err = -ENOSPC;
@@ -1487,6 +1490,13 @@ static int fanout_add(struct sock *sk, u16 id, u16 type_flags)
			err = 0;
		}
	}
	spin_unlock(&po->bind_lock);

	if (err && !atomic_read(&match->sk_ref)) {
		list_del(&match->list);
		kfree(match);
	}

out:
	mutex_unlock(&fanout_mutex);
	return err;