From: Eric Dumazet Date: Sat, 7 Apr 2018 20:42:39 +0000 (-0700) Subject: net: initialize skb->peeked when cloning X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=5652aed1de29c6e977608effa94ce217f3b959e7;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git net: initialize skb->peeked when cloning commit b13dda9f9aa7caceeee61c080c2e544d5f5d85e5 upstream. syzbot reported __skb_try_recv_from_queue() was using skb->peeked while it was potentially unitialized. We need to clear it in __skb_clone() Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2") Signed-off-by: Eric Dumazet Reported-by: syzbot Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- diff --git a/net/core/skbuff.c b/net/core/skbuff.c index 564beb7e6d1c..ef734ad1d852 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -857,6 +857,7 @@ static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb) n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len; n->cloned = 1; n->nohdr = 0; + n->peeked = 0; n->destructor = NULL; C(tail); C(end);