CVE-2025-37920
MediumIn the Linux kernel, the following vulnerability has been resolved: xsk: Fix race condition in AF_XDP generic RX path Move rx_lock from xsk_socket to xsk_buff_pool. Fix synchronization for shared umem mode in generic RX path where multiple sockets share single xsk_buff_pool. RX queue is exclusive to xsk_socket, while FILL queue can be shared between multiple sockets. This could result in race condition where two CPU cores access RX path of two different sockets sharing the same umem. Protect both queues by acquiring spinlock in shared xsk_buff_pool. Lock contention may be minimized in the future by some per-thread FQ buffering. It's safe and necessary to move spin_lock_bh(rx_lock) after xsk_rcv_check(): * xs->pool and spinlock_init is synchronized by xsk_bind() -> xsk_is_bound() memory barriers. * xsk_rcv_check() may return true at the moment of xsk_release() or xsk_unbind_dev(), however this will not cause any data races or race conditions. xsk_unbind_dev() removes xdp socket from all maps and waits for completion of all outstanding rx operations. Packets in RX path will either complete safely or drop.
CVSS 3.1 score
4.7
CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H
Weakness type
CWE-362CVE-2025-37920 is a Race Condition vulnerability
What is Race Condition?
The product contains a code sequence that can run concurrently with other code, creating unexpected states. Learn more on MITRE CWE
Affected versions
Linux kernel versions
5.1.20,
5.2.3,
5.3
and later are affected. Fixed in
6.1.164,
6.6.123,
6.12.28,
6.14.6,
6.15
and their respective stable series.
References
The following references provide additional information about CVE-2025-37920 including vendor advisories, patch commits, exploit details, and third-party analysis. Links are sourced from the NIST NVD database.
-
PatchKernel patch commithttps://git.kernel.org/stable/c/65d3c570614b892257dc58a1b202908242ecf8fd
-
PatchKernel patch commithttps://git.kernel.org/stable/c/75a240a3e8abf17b9e00b0ef0492b1bbaa932251
-
PatchKernel patch commithttps://git.kernel.org/stable/c/975b372313dc018b9bd6cc0d85d188787054b19e
Frequently asked questions
-
What is CVE-2025-37920?
CVE-2025-37920 is a Medium severity Linux kernel vulnerability with a CVSS score of 4.7 out of 10 , classified as a Race Condition flaw (CWE-362) . It affects Linux kernel versions from 5.1.20 onward and has been patched in 6.1.164, 6.6.123, 6.12.28 and others. CVE-2025-37920 has not been confirmed as actively exploited and is not listed in the CISA KEV catalog.
-
What is the CVSS score for CVE-2025-37920?
CVE-2025-37920 has a CVSS score of 4.7 out of 10, rated Medium severity (CVSS 3.1). The vector string is
CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H. -
Is there a patch available for CVE-2025-37920?
Yes — CVE-2025-37920 has been patched. Fixed versions include 6.1.164, 6.6.123, 6.12.28 and others. If you are running Linux kernel 5.1.20 or later up to the fix versions, apply the relevant patch for your kernel branch.
-
Is CVE-2025-37920 actively exploited?
No — CVE-2025-37920 has not been confirmed as actively exploited. It is not listed in the CISA Known Exploited Vulnerabilities (KEV) catalog.
-
What is Race Condition (CWE-362)?
The product contains a code sequence that can run concurrently with other code, creating unexpected states. View CWE-362 on MITRE CWE →