Skip to content
Commit ef0efcd3 authored by Junwei Hu's avatar Junwei Hu Committed by David S. Miller
Browse files

ipv6: Fix dangling pointer when ipv6 fragment



At the beginning of ip6_fragment func, the prevhdr pointer is
obtained in the ip6_find_1stfragopt func.
However, all the pointers pointing into skb header may change
when calling skb_checksum_help func with
skb->ip_summed = CHECKSUM_PARTIAL condition.
The prevhdr pointe will be dangling if it is not reloaded after
calling __skb_linearize func in skb_checksum_help func.

Here, I add a variable, nexthdr_offset, to evaluate the offset,
which does not changes even after calling __skb_linearize func.

Fixes: 405c92f7 ("ipv6: add defensive check for CHECKSUM_PARTIAL skbs in ip_fragment")
Signed-off-by: default avatarJunwei Hu <hujunwei4@huawei.com>
Reported-by: default avatarWenhao Zhang <zhangwenhao8@huawei.com>
Reported-by: default avatar <syzbot+e8ce541d095e486074fc@syzkaller.appspotmail.com>
Reviewed-by: default avatarZhiqiang Liu <liuzhiqiang26@huawei.com>
Acked-by: default avatarMartin KaFai Lau <kafai@fb.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0ab03f35
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment