CVE-2021-47249

MEDIUM

Linux Kernel 2.6.30-4.4.273 - Use-After-Free in rds_recvmsg

Title source: llm
STIX 2.1

Description

In the Linux kernel, the following vulnerability has been resolved: net: rds: fix memory leak in rds_recvmsg Syzbot reported memory leak in rds. The problem was in unputted refcount in case of error. int rds_recvmsg(struct socket *sock, struct msghdr *msg, size_t size, int msg_flags) { ... if (!rds_next_incoming(rs, &inc)) { ... } After this "if" inc refcount incremented and if (rds_cmsg_recv(inc, msg, rs)) { ret = -EFAULT; goto out; } ... out: return ret; } in case of rds_cmsg_recv() fail the refcount won't be decremented. And it's easy to see from ftrace log, that rds_inc_addref() don't have rds_inc_put() pair in rds_recvmsg() after rds_cmsg_recv() 1) | rds_recvmsg() { 1) 3.721 us | rds_inc_addref(); 1) 3.853 us | rds_message_inc_copy_to_user(); 1) + 10.395 us | rds_cmsg_recv(); 1) + 34.260 us | }

Scores

CVSS v3 5.5
EPSS 0.0024
EPSS Percentile 14.4%
Attack Vector LOCAL
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H

CISA SSVC

Vulnrichment
Exploitation none
Automatable no
Technical Impact partial

Details

CWE
CWE-401
Status published
Products (20)
Linux/Linux < 2.6.30
Linux/Linux 2.6.30
Linux/Linux 4.14.238 - 4.14.*
Linux/Linux 4.19.196 - 4.19.*
Linux/Linux 4.4.274 - 4.4.*
Linux/Linux 4.9.274 - 4.9.*
Linux/Linux 5.10.46 - 5.10.*
Linux/Linux 5.12.13 - 5.12.*
Linux/Linux 5.13
Linux/Linux 5.4.128 - 5.4.*
... and 10 more
Published May 21, 2024
Tracked Since Feb 18, 2026