Katalog CVE

CVE-2026-68438

Niskie ryzyko· EPSS 4%
Opublikowano: Zaktualizowano: Przetłumaczono: NVD NIST

Prawdopodobieństwo exploitacji (EPSS)

Niskie ryzyko
0.15%

Percentyl 4 - wyżej niż 4% wszystkich znanych CVE

Streszczenie

W jądrze Linux w mechanizmie SMP, gdy włączone jest debugowanie blokady CSD, wiele procesorów może jednocześnie przygotowywać ten sam CSD dla CPU docelowego, co prowadzi do nieatomowej operacji read-modify-write na fladze CSD_FLAG_LOCK. Może to spowodować dodanie tego samego węzła llist do kolejki, prowadząc do zakleszczenia lub miękkiego zawieszenia (soft-lockup).

Ocena ryzyka

Podatność może prowadzić do zakleszczeń, miękkich zawieszeń systemu lub panik, co skutkuje odmową usługi.

Rekomendacja

Zastosuj poprawkę jądra Linux, która używa try_cmpxchg_acquire() do atomowego ustawiania flagi CSD_FLAG_LOCK w trybie debugowania, zachowując szybką ścieżkę bez debugowania.

Inne podatności w Linux kernel

Zobacz wszystkie
Oryginalny opis (angielski, źródło NVD)

In the Linux kernel, the following vulnerability has been resolved: smp: Make CSD lock acquisition atomic for debug mode Commit b0473dcd4b1d ("smp: Improve smp_call_function_single() CSD-lock diagnostics") changed smp_call_function_single() so that, when CSD lock debugging is enabled, async !wait calls use the destination CPU csd_data. That improves diagnostics, but it also removes the single-writer property that made the old csd_lock() safe: multiple CPUs can now prepare the same destination CPU CSD concurrently. csd_lock() currently waits for CSD_FLAG_LOCK to clear and then sets the bit with a non-atomic read-modify-write. Two senders can both see an unlocked CSD, set the bit, overwrite the callback fields, and enqueue the same llist node. Re-adding a node that is already the queue head can make node->next point to itself, leaving the target CPU stuck walking call_single_queue. Later synchronous work, such as a TLB shootdown, can then remain queued and trigger soft-lockup warnings or panics. Keep the single csd_lock() implementation, but when CSD lock debugging is enabled, acquire CSD_FLAG_LOCK with try_cmpxchg_acquire(). This makes the destination CPU CSD a real atomic lock in the only configuration where it can be shared by multiple remote senders, while preserving the existing non-debug fast path.

Dane podatności pochodzą z NVD (NIST) · CISA KEV · EPSS