CVE-2026-46168
Linux Kernel MPTCP sockopt Timestamp Scheduling Fix
Publication date: 2026-05-28
Last updated on: 2026-05-28
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | * |
| linux_kernel | linux_kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability in the Linux kernel involves improper locking in the Multipath TCP (mptcp) implementation. Specifically, the code used lock_sock_fast() in an atomic context around the functions sock_set_timestamp() and sock_set_timestamping(), but these functions can sleep, which is unsafe in atomic context.
The fix replaces lock_sock_fast() with the sleepable lock_sock() and release_sock() functions to avoid scheduling while in atomic context, preventing potential kernel panics.
How can this vulnerability impact me? :
This vulnerability can cause the Linux kernel to panic due to unsafe scheduling in atomic context. Kernel panics can lead to system crashes, resulting in downtime and potential loss of data or service availability.