projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
725cbb6
)
GSO: Reload iph after pskb_may_pull
author
Arnaldo Carvalho de Melo
<
[email protected]
>
Mon, 28 Nov 2016 15:36:58 +0000
(12:36 -0300)
committer
David S. Miller
<
[email protected]
>
Wed, 30 Nov 2016 01:45:54 +0000
(20:45 -0500)
As it may get stale and lead to use after free.
Acked-by: Eric Dumazet <
[email protected]
>
Cc: Alexander Duyck <
[email protected]
>
Cc: Andrey Konovalov <
[email protected]
>
Fixes: cbc53e08a793 ("GSO: Add GSO type for fixed IPv4 ID")
Signed-off-by: Arnaldo Carvalho de Melo <
[email protected]
>
Acked-by: Alexander Duyck <
[email protected]
>
Signed-off-by: David S. Miller <
[email protected]
>
net/ipv4/af_inet.c
patch
|
blob
|
history
diff --git
a/net/ipv4/af_inet.c
b/net/ipv4/af_inet.c
index 5ddf5cda07f4173b0c110c034390428fe2928097..215143246e4b3e57440aba0fd314d0e96acd22a7 100644
(file)
--- a/
net/ipv4/af_inet.c
+++ b/
net/ipv4/af_inet.c
@@
-1233,7
+1233,7
@@
struct sk_buff *inet_gso_segment(struct sk_buff *skb,
fixedid = !!(skb_shinfo(skb)->gso_type & SKB_GSO_TCP_FIXEDID);
/* fixed ID is invalid if DF bit is not set */
- if (fixedid && !(ip
h
->frag_off & htons(IP_DF)))
+ if (fixedid && !(ip
_hdr(skb)
->frag_off & htons(IP_DF)))
goto out;
}