CVE-2021-47249
published 2024-05-21CVE-2021-47249: 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…
PriorityP416medium5.5CVSS 3.1
AVLACLPRLUINSUCNINAH
EPSS
0.24%
14.7th percentile
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 | }
Affected
22 ranges
| Vendor | Product | Version range | Fixed in |
|---|---|---|---|
| debian | linux | < linux 5.10.46-1 (bookworm) | linux 5.10.46-1 (bookworm) |
| linux | linux | — | — |
| linux | linux | >= bdbe6fbc6a2f2ccfb384b141b257677d2a8d36fb < 8c3ec88b03e9e4ca117dcdc4204fd3edcd02084f | 8c3ec88b03e9e4ca117dcdc4204fd3edcd02084f |
| linux | linux | >= bdbe6fbc6a2f2ccfb384b141b257677d2a8d36fb < 423c6939758fb3b9cf5abbd1e7792068a5c4ae8c | 423c6939758fb3b9cf5abbd1e7792068a5c4ae8c |
| linux | linux | >= bdbe6fbc6a2f2ccfb384b141b257677d2a8d36fb < 1f79bc8ae81c05eb112a53f981cb2c244ee50d02 | 1f79bc8ae81c05eb112a53f981cb2c244ee50d02 |
| linux | linux | >= bdbe6fbc6a2f2ccfb384b141b257677d2a8d36fb < 06b7cb0194bd1ede0dd27f3a946e7c0279fba44a | 06b7cb0194bd1ede0dd27f3a946e7c0279fba44a |
| linux | linux | >= bdbe6fbc6a2f2ccfb384b141b257677d2a8d36fb < 2038cd15eacdf7512755c27686822e0052eb9042 | 2038cd15eacdf7512755c27686822e0052eb9042 |
| linux | linux | >= bdbe6fbc6a2f2ccfb384b141b257677d2a8d36fb < 5946fbf48355f5a8caeff72580c7658da5966b86 | 5946fbf48355f5a8caeff72580c7658da5966b86 |
| linux | linux | >= bdbe6fbc6a2f2ccfb384b141b257677d2a8d36fb < b25b60d076164edb3025e85aabd2cf50a5215b91 | b25b60d076164edb3025e85aabd2cf50a5215b91 |
| linux | linux | >= bdbe6fbc6a2f2ccfb384b141b257677d2a8d36fb < 49bfcbfd989a8f1f23e705759a6bb099de2cff9f | 49bfcbfd989a8f1f23e705759a6bb099de2cff9f |
| linux | linux_kernel | — | — |
| linux | linux_kernel | >= 0 < 5.10.46-1 | 5.10.46-1 |
| linux | linux_kernel | >= 0 < 5.10.46-1 | 5.10.46-1 |
| linux | linux_kernel | >= 0 < 5.10.46-1 | 5.10.46-1 |
| linux | linux_kernel | >= 0 < 5.10.46-1 | 5.10.46-1 |
| linux | linux_kernel | >= 2.6.30 < 4.4.274 | 4.4.274 |
| linux | linux_kernel | >= 4.10 < 4.14.238 | 4.14.238 |
| linux | linux_kernel | >= 4.15 < 4.19.196 | 4.19.196 |
| linux | linux_kernel | >= 4.20 < 5.4.128 | 5.4.128 |
| linux | linux_kernel | >= 4.5 < 4.9.274 | 4.9.274 |
| linux | linux_kernel | >= 5.11 < 5.12.13 | 5.12.13 |
| linux | linux_kernel | >= 5.5 < 5.10.46 | 5.10.46 |
CVSS provenance
nvdv3.15.5MEDIUMCVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
osv5.5MEDIUM
vendor_debian5.5MEDIUM
vendor_redhat5.5MEDIUM
Stop checking back — get the weekly exploitation signal.
Every Monday: what got weaponized or added to CISA KEV in the last seven days — each CVE cross-linked to its PoC, Nuclei template, and detection rule. Free, one email a week, unsubscribe in one click.
GHSA
GHSA-prq2-qj2r-jcgv: In the Linux kernel, the following vulnerability has been resolved:
net: rds: fix memory leak in rds_recvmsg
Syzbot reported memory leak in rds
ghsa_unreviewed·2024-05-21
CVE-2021-47249 [MEDIUM] CWE-401 GHSA-prq2-qj2r-jcgv: In the Linux kernel, the following vulnerability has been resolved:
net: rds: fix memory leak in rds_recvmsg
Syzbot reported memory leak in rds
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();
OSV
CVE-2021-47249: In the Linux kernel, the following vulnerability has been resolved: net: rds: fix memory leak in rds_recvmsg Syzbot reported memory leak in rds
osv·2024-05-21·CVSS 5.5
CVE-2021-47249 [MEDIUM] CVE-2021-47249: In the Linux kernel, the following vulnerability has been resolved: net: rds: fix memory leak in rds_recvmsg Syzbot reported memory leak in rds
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.
Red Hat
kernel: net: rds: fix memory leak in rds_recvmsg
vendor_redhat·2024-05-21·CVSS 5.5
CVE-2021-47249 [MEDIUM] CWE-402 kernel: net: rds: fix memory leak in rds_recvmsg
kernel: net: rds: fix memory leak in rds_recvmsg
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_
Debian
CVE-2021-47249: linux - In the Linux kernel, the following vulnerability has been resolved: net: rds: f...
vendor_debian·2021·CVSS 5.5
CVE-2021-47249 [MEDIUM] CVE-2021-47249: linux - In the Linux kernel, the following vulnerability has been resolved: net: rds: f...
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.
No detection rules found.
No public exploits indexed.
https://git.kernel.org/stable/c/06b7cb0194bd1ede0dd27f3a946e7c0279fba44ahttps://git.kernel.org/stable/c/1f79bc8ae81c05eb112a53f981cb2c244ee50d02https://git.kernel.org/stable/c/2038cd15eacdf7512755c27686822e0052eb9042https://git.kernel.org/stable/c/423c6939758fb3b9cf5abbd1e7792068a5c4ae8chttps://git.kernel.org/stable/c/49bfcbfd989a8f1f23e705759a6bb099de2cff9fhttps://git.kernel.org/stable/c/5946fbf48355f5a8caeff72580c7658da5966b86https://git.kernel.org/stable/c/8c3ec88b03e9e4ca117dcdc4204fd3edcd02084fhttps://git.kernel.org/stable/c/b25b60d076164edb3025e85aabd2cf50a5215b91https://git.kernel.org/stable/c/06b7cb0194bd1ede0dd27f3a946e7c0279fba44ahttps://git.kernel.org/stable/c/1f79bc8ae81c05eb112a53f981cb2c244ee50d02https://git.kernel.org/stable/c/2038cd15eacdf7512755c27686822e0052eb9042https://git.kernel.org/stable/c/423c6939758fb3b9cf5abbd1e7792068a5c4ae8chttps://git.kernel.org/stable/c/49bfcbfd989a8f1f23e705759a6bb099de2cff9fhttps://git.kernel.org/stable/c/5946fbf48355f5a8caeff72580c7658da5966b86https://git.kernel.org/stable/c/8c3ec88b03e9e4ca117dcdc4204fd3edcd02084fhttps://git.kernel.org/stable/c/b25b60d076164edb3025e85aabd2cf50a5215b91
2024-05-21
Published