From: lily Date: Tue, 23 Aug 2022 05:44:11 +0000 (-0700) Subject: net/core/skbuff: Check the return value of skb_copy_bits() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c624c58e08b15105662b9ab9be23d14a6b945a49;p=linux.git net/core/skbuff: Check the return value of skb_copy_bits() skb_copy_bits() could fail, which requires a check on the return value. Signed-off-by: Li Zhong Signed-off-by: David S. Miller --- diff --git a/net/core/skbuff.c b/net/core/skbuff.c index 974bbbbe7138a..5ea1d074a920b 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -4205,9 +4205,8 @@ normal: SKB_GSO_CB(nskb)->csum_start = skb_headroom(nskb) + doffset; } else { - skb_copy_bits(head_skb, offset, - skb_put(nskb, len), - len); + if (skb_copy_bits(head_skb, offset, skb_put(nskb, len), len)) + goto err; } continue; }