LinuxのLinux Kernelにおけるリソースのロックに関する脆弱性
タイトル LinuxのLinux Kernelにおけるリソースのロックに関する脆弱性
概要

Linuxカーネルにおいて、以下の脆弱性が修正されました。sched_extでは、waitをbalanceコールバックに延期することでSCX_KICK_WAITのデッドロックを修正しました。SCX_KICK_WAITはkick_cpus_irq_workfn()内でsmp_cond_load_acquire()を用いてターゲットCPUのkick_syncが進行するのを忙待ちしていました。irq_workはhardirqコンテキストで実行されるため、待機中のCPUはリスケジュールできず、自身のkick_syncも進まなくなります。複数のCPUが待機サイクルを形成すると、すべてのCPUがデッドロックします。そこで、kick_cpus_irq_workfn()の忙待ちをresched_curr()に置き換え、CPUをdo_pick_task_scx()へ強制的に移行させ、waitを実行するバランスコールバックをキューに入れます。バランスコールバックはsched_core_balance()パターンに従いrqロックを解放しIRQを有効にするため、CPUは待機中にIPIを処理できます。ローカルCPUのkick_syncはdo_pick_task_scx()の開始時と待機中に継続的に進められ、待機を開始する任意のCPUが進行を認識し、循環依存関係を形成できないようにしています。

想定される影響 当該ソフトウェアが扱う情報について、外部への漏えいは発生しません。 また、当該ソフトウェアが扱う情報について、書き換えは発生しません。 さらに、当該ソフトウェアが完全に停止する可能性があります。 そして、この脆弱性を悪用した攻撃の影響は、他のソフトウェアには及びません。 
対策

リリース情報、またはパッチ情報が公開されています。参考情報を参照して適切な対策を実施してください。

公表日 2026年5月8日0:00
登録日 2026年5月18日11:28
最終更新日 2026年5月18日11:28
CVSS3.0 : 警告
スコア 5.5
ベクター CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
影響を受けるシステム
Linux
Linux Kernel 6.12 以上 6.19.12 未満
Linux Kernel 7.0
CVE (情報セキュリティ 共通脆弱性識別子)
CWE (共通脆弱性タイプ一覧)
その他
変更履歴
No 変更内容 変更日
1 [2026年05月18日]
  掲載
2026年5月18日11:28

NVD脆弱性情報
CVE-2026-43326
概要

In the Linux kernel, the following vulnerability has been resolved:

sched_ext: Fix SCX_KICK_WAIT deadlock by deferring wait to balance callback

SCX_KICK_WAIT busy-waits in kick_cpus_irq_workfn() using
smp_cond_load_acquire() until the target CPU's kick_sync advances. Because
the irq_work runs in hardirq context, the waiting CPU cannot reschedule and
its own kick_sync never advances. If multiple CPUs form a wait cycle, all
CPUs deadlock.

Replace the busy-wait in kick_cpus_irq_workfn() with resched_curr() to
force the CPU through do_pick_task_scx(), which queues a balance callback
to perform the wait. The balance callback drops the rq lock and enables
IRQs following the sched_core_balance() pattern, so the CPU can process
IPIs while waiting. The local CPU's kick_sync is advanced on entry to
do_pick_task_scx() and continuously during the wait, ensuring any CPU that
starts waiting for us sees the advancement and cannot form cyclic
dependencies.

公表日 2026年5月8日23:16
登録日 2026年5月9日4:13
最終更新日 2026年5月12日23:10
関連情報、対策とツール
共通脆弱性一覧