packet: unconditionally free po->rollover
authorWillem de Bruijn <willemb@google.com>
Fri, 31 May 2019 16:37:23 +0000 (12:37 -0400)
committerDavid S. Miller <davem@davemloft.net>
Mon, 3 Jun 2019 01:10:14 +0000 (18:10 -0700)
Rollover used to use a complex RCU mechanism for assignment, which had
a race condition. The below patch fixed the bug and greatly simplified
the logic.

The feature depends on fanout, but the state is private to the socket.
Fanout_release returns f only when the last member leaves and the
fanout struct is to be freed.

Destroy rollover unconditionally, regardless of fanout state.

Fixes: 57f015f5eccf2 ("packet: fix crash in fanout_demux_rollover()")
Reported-by: syzbot <syzkaller@googlegroups.com>
Diagnosed-by: Dmitry Vyukov <dvyukov@google.com>
Signed-off-by: Willem de Bruijn <willemb@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/packet/af_packet.c

index fbc775fbf7128f4d7253ad7e94e632bbe003eb9e..d4889bf7248e14a2dd9d184124ae07b5253b6415 100644 (file)
@@ -3014,8 +3014,8 @@ static int packet_release(struct socket *sock)
 
        synchronize_net();
 
+       kfree(po->rollover);
        if (f) {
-               kfree(po->rollover);
                fanout_release_data(f);
                kfree(f);
        }