Skip to content

Commit

Permalink
packet: hold bind lock when rebinding to fanout hook
Browse files Browse the repository at this point in the history
[ Upstream commit 008ba2a ]

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.

Fixes: dc99f60 ("packet: Add fanout support.")
Reported-by: nixioaming <[email protected]>
Signed-off-by: Willem de Bruijn <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
wdebruij authored and gregkh committed Oct 12, 2017
1 parent 6eac2cd commit 6f7cdd4
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions net/packet/af_packet.c
Original file line number Diff line number Diff line change
Expand Up @@ -1648,10 +1648,6 @@ static int fanout_add(struct sock *sk, u16 id, u16 type_flags)

mutex_lock(&fanout_mutex);

err = -EINVAL;
if (!po->running)
goto out;

err = -EALREADY;
if (po->fanout)
goto out;
Expand Down Expand Up @@ -1700,7 +1696,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;
Expand All @@ -1712,6 +1711,13 @@ static int fanout_add(struct sock *sk, u16 id, u16 type_flags)
err = 0;
}
}
spin_unlock(&po->bind_lock);

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

out:
if (err && rollover) {
kfree(rollover);
Expand Down

0 comments on commit 6f7cdd4

Please sign in to comment.