PatchSiren

PatchSiren cyber security CVE debrief

CVE-2026-46168 Linux CVE debrief

A vulnerability in the Linux kernel's Multipath TCP (MPTCP) implementation could cause system instability through a scheduling-while-atomic condition. The issue occurs when setting socket timestamp options, where an atomic locking primitive was incorrectly used around functions that may sleep.

Vendor
Linux
Product
Unknown
CVSS
MEDIUM 5.5
CISA KEV
Not listed in stored evidence
Original CVE published
2026-05-28
Original CVE updated
2026-06-10
Advisory published
2026-05-28
Advisory updated
2026-06-10

Who should care

Organizations running Linux systems with MPTCP enabled, particularly those using timestamp socket options for network diagnostics or performance monitoring. Cloud providers and hosting platforms with customer-controlled networking may face elevated risk if unprivileged users can trigger the vulnerable code path.

Technical summary

The MPTCP subsystem in the Linux kernel used lock_sock_fast() to protect timestamp socket option operations. This function provides atomic context locking, but the called helpers sock_set_timestamp() and sock_set_timestamping() can sleep. When a sleepable function is invoked in atomic context, the kernel's scheduler detects the violation and typically triggers a panic. The resolution replaces lock_sock_fast()/unlock_sock_fast() with lock_sock()/release_sock(), which properly allows sleeping. The presence of five stable kernel commits suggests this fix has been backported to multiple maintained kernel release branches.

Defensive priority

medium

Recommended defensive actions

  • Apply kernel updates containing the referenced stable commits when available from your Linux distribution
  • Monitor vendor security advisories for patched kernel versions
  • If running custom MPTCP-enabled kernels, review and apply the upstream fix
  • Consider disabling MPTCP if not required and patches are unavailable, though this may impact network functionality

Evidence notes

The vulnerability description indicates that lock_sock_fast() creates an atomic context, while sock_set_timestamp() and sock_set_timestamping() are sleepable operations. This mismatch can trigger a kernel panic. The fix replaces the atomic fast lock with sleepable lock_sock()/release_sock() primitives. Five stable kernel commits are referenced, suggesting backports to multiple supported kernel versions.

Sources and references

Verified primary and authoritative sources

  • CVE-2026-46168 CVE Program record

    Publisher, destination, and source semantics verified

    URL: https://www.cve.org/CVERecord?id=CVE-2026-46168

    CVE Program - Official CVE Program record with source-provided CVE metadata.

  • CVE-2026-46168 NVD vulnerability detail

    Publisher, destination, and source semantics verified

    URL: https://nvd.nist.gov/vuln/detail/CVE-2026-46168

    NIST National Vulnerability Database - Official NIST NVD detail page and source-specific vulnerability assessment.

Supplemental references

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/7eb513b42721bee4b96da69f6188d5a7783f210d

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/8a005fe451c73fd2b3d1faa5643c11e6bd07acfc

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/b157dab93a7af44a84e78cf0cb311dde475cff5b

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/b5c52908d52c6c8eb8933264aa6087a0600fd892

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/ebeb70e29e37cfce899309cc2665a3bfe960ed94

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

Methodology and review provenance

AI-assisted synthesis based on stored public vulnerability evidence. System validation, approval state, and publication status do not by themselves establish human review of this revision. PatchSiren helps prioritize defensive review and does not prove exposure or remediation on any system.