projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
76de008
)
net/core/skbuff: Check the return value of skb_copy_bits()
author
lily
<floridsleeves@gmail.com>
Tue, 23 Aug 2022 05:44:11 +0000
(22:44 -0700)
committer
David S. Miller
<davem@davemloft.net>
Wed, 24 Aug 2022 12:16:48 +0000
(13:16 +0100)
skb_copy_bits() could fail, which requires a check on the return
value.
Signed-off-by: Li Zhong <floridsleeves@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/skbuff.c
patch
|
blob
|
history
diff --git
a/net/core/skbuff.c
b/net/core/skbuff.c
index 974bbbbe7138a447e04d3a773d8c875574413516..5ea1d074a920b389b456a34748f906fd411daf76 100644
(file)
--- 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;
}