mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 18:13:41 +02:00
udp: Fix a memory leak in udp_read_sock()
sk_psock_verdict_recv() clones the skb and uses the clone
afterward, so udp_read_sock() should free the skb after using
it, regardless of error or not.
This fixes a real kmemleak.
Fixes: d7f571188e ("udp: Implement ->read_sock() for sockmap")
Signed-off-by: Cong Wang <cong.wang@bytedance.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: John Fastabend <john.fastabend@gmail.com>
Acked-by: Jakub Sitnicki <jakub@cloudflare.com>
Link: https://lore.kernel.org/bpf/20210615021342.7416-4-xiyou.wangcong@gmail.com
This commit is contained in:
parent
a7e65fe7d8
commit
e00a5c331b
|
|
@ -1798,11 +1798,13 @@ int udp_read_sock(struct sock *sk, read_descriptor_t *desc,
|
||||||
if (used <= 0) {
|
if (used <= 0) {
|
||||||
if (!copied)
|
if (!copied)
|
||||||
copied = used;
|
copied = used;
|
||||||
|
kfree_skb(skb);
|
||||||
break;
|
break;
|
||||||
} else if (used <= skb->len) {
|
} else if (used <= skb->len) {
|
||||||
copied += used;
|
copied += used;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
kfree_skb(skb);
|
||||||
if (!desc->count)
|
if (!desc->count)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user