]> git.baikalelectronics.ru Git - kernel.git/commit
udp: on peeking bad csum, drop packets even if not at head
authorEric Dumazet <edumazet@google.com>
Tue, 22 Aug 2017 16:39:28 +0000 (09:39 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 22 Aug 2017 21:27:58 +0000 (14:27 -0700)
commit046a26701b9b6463f940e1b3fac9dc663d451583
treef828d275d247ce353ff67f39fe554fff22ae3421
parent0cafbf3c9738dd3b0c7c2a06bfee1af2de347751
udp: on peeking bad csum, drop packets even if not at head

When peeking, if a bad csum is discovered, the skb is unlinked from
the queue with __sk_queue_drop_skb and the peek operation restarted.

__sk_queue_drop_skb only drops packets that match the queue head.

This fails if the skb was found after the head, using SO_PEEK_OFF
socket option. This causes an infinite loop.

We MUST drop this problematic skb, and we can simply check if skb was
already removed by another thread, by looking at skb->next :

This pointer is set to NULL by the  __skb_unlink() operation, that might
have happened only under the spinlock protection.

Many thanks to syzkaller team (and particularly Dmitry Vyukov who
provided us nice C reproducers exhibiting the lockup) and Willem de
Bruijn who provided first version for this patch and a test program.

Fixes: a05e5c8f9688 ("udp: enable MSG_PEEK at non-zero offset")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reported-by: Dmitry Vyukov <dvyukov@google.com>
Cc: Willem de Bruijn <willemb@google.com>
Acked-by: Paolo Abeni <pabeni@redhat.com>
Acked-by: Willem de Bruijn <willemb@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/datagram.c