CVE-2022-49209 Information
Description
In the Linux kernel the following vulnerability has been resolved:
bpf sockmap: Fix memleak in tcp_bpf_sendmsg while sk msg is full
If tcp_bpf_sendmsg() is running while sk msg is full. When sk_msg_alloc() returns -ENOMEM error tcp_bpf_sendmsg() goes to wait_for_memory. If partial memory has been alloced by sk_msg_alloc() that is msg_tx->sg.size is greater than osize after sk_msg_alloc() memleak occurs. To fix we use sk_msg_trim() to release the allocated memory then goto wait for memory.
Other call paths of sk_msg_alloc() have the similar issue such as tls_sw_sendmsg() so handle sk_msg_trim logic inside sk_msg_alloc() as Cong Wang suggested.
This issue can cause the following info:
WARNING: CPU: 3 PID: 7950 at net/core/stream.c:208 sk_stream_kill_queues+0xd4/0x1a0
Call Trace:
WARNING: CPU: 3 PID: 2094 at net/ipv4/af_inet.c:155 inet_sock_destruct+0x13c/0x260
Call Trace:
Reference
https://git.kernel.org/stable/c/6d03722c34d9603df325f67c6d30dc1b7b3c6067 https://git.kernel.org/stable/c/9c34e38c4a870eb30b13f42f5b44f42e9d19ccb8 https://git.kernel.org/stable/c/bec34a91eba3483e1830c02bdd36f8f968642047 https://git.kernel.org/stable/c/d0b85dfc6f01d26808e2576c6537c131b590e270 https://git.kernel.org/stable/c/de3a8d8fab0710186f7864ec812836d8d70da3c9 https://git.kernel.org/stable/c/f677328f05f52d535cbdc15cb04476db49477eb4
Share on: