forked from luck/tmp_suning_uos_patched
net: geneve: check skb is large enough for IPv4/IPv6 header
[ Upstream commit 6628ddfec7580882f11fdc5c194a8ea781fdadfa ] Check within geneve_xmit_skb/geneve6_xmit_skb that sk_buff structure is large enough to include IPv4 or IPv6 header, and reject if not. The geneve_xmit_skb portion and overall idea was contributed by Eric Dumazet. Fixes a KMSAN-found uninit-value bug reported by syzbot at: https://syzkaller.appspot.com/bug?id=abe95dc3e3e9667fc23b8d81f29ecad95c6f106f Suggested-by: Eric Dumazet <edumazet@google.com> Reported-by: syzbot+2e406a9ac75bb71d4b7a@syzkaller.appspotmail.com Signed-off-by: Phillip Potter <phil@philpotter.co.uk> Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
6ce6443722
commit
66d0cf7dca
|
@ -890,6 +890,9 @@ static int geneve_xmit_skb(struct sk_buff *skb, struct net_device *dev,
|
||||||
__be16 sport;
|
__be16 sport;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
|
if (!pskb_network_may_pull(skb, sizeof(struct iphdr)))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
sport = udp_flow_src_port(geneve->net, skb, 1, USHRT_MAX, true);
|
sport = udp_flow_src_port(geneve->net, skb, 1, USHRT_MAX, true);
|
||||||
rt = geneve_get_v4_rt(skb, dev, gs4, &fl4, info,
|
rt = geneve_get_v4_rt(skb, dev, gs4, &fl4, info,
|
||||||
geneve->cfg.info.key.tp_dst, sport);
|
geneve->cfg.info.key.tp_dst, sport);
|
||||||
|
@ -984,6 +987,9 @@ static int geneve6_xmit_skb(struct sk_buff *skb, struct net_device *dev,
|
||||||
__be16 sport;
|
__be16 sport;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
|
if (!pskb_network_may_pull(skb, sizeof(struct ipv6hdr)))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
sport = udp_flow_src_port(geneve->net, skb, 1, USHRT_MAX, true);
|
sport = udp_flow_src_port(geneve->net, skb, 1, USHRT_MAX, true);
|
||||||
dst = geneve_get_v6_dst(skb, dev, gs6, &fl6, info,
|
dst = geneve_get_v6_dst(skb, dev, gs6, &fl6, info,
|
||||||
geneve->cfg.info.key.tp_dst, sport);
|
geneve->cfg.info.key.tp_dst, sport);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user