LinuxのLinux Kernelにおける不特定の脆弱性
タイトル LinuxのLinux Kernelにおける不特定の脆弱性
概要

Linuxカーネルにおいて、以下の脆弱性が修正されました。sched_ext: fairクラスの飽和状態で発生するscx_enable()のスターベーションを修正しました。scx_enable()の間、READYからENABLEDへのタスク切り替えループは呼び出しスレッドのsched_classをfairからextに変更します。fairクラスはextより優先度が高いため、fairクラスのワークロードが飽和するとenableスレッドが無期限にスターベーションし、システムがハングする可能性があります。この問題はenableパスがpreempt_disable()からscx_bypass()に切り替わった際に導入されましたが、scx_bypass()はfairクラスのスターベーションを防げません。なお、元のpreempt_disable()の保護も完全ではなく、部分的な切り替えモードにおいてはpreempt_enable()後に呼び出しスレッドがextクラスに切り替わり、スターベーションが発生する可能性がありました。これを修正するため、enableの本体処理をfairクラスまたはextクラスのタスクによってスターベーションされない専用のシステム全体のRT(SCHED_FIFO)kthreadにオフロードします。scx_enable()は初回使用時にkthreadを遅延的に生成し、opsポインタをkthread_workを含むstruct scx_enable_cmd経由で渡し、同期的に完了を待ちます。workfnはsch-helper(disable_workを実行)とは異なるkthread上で動作するため、エラー時のパスでデッドロックなくdisable_workを安全にフラッシュできます。

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

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

公表日 2026年5月8日0:00
登録日 2026年5月28日14:41
最終更新日 2026年5月28日14:41
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
Linux Kernel 6.12.1 以上 6.12.78 未満
Linux Kernel 6.13 以上 6.18.20 未満
Linux Kernel 6.19 以上 6.19.9 未満
Linux Kernel 7.0
CVE (情報セキュリティ 共通脆弱性識別子)
CWE (共通脆弱性タイプ一覧)
その他
変更履歴
No 変更内容 変更日
1 [2026年05月28日]
  掲載
2026年5月28日14:41

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

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

sched_ext: Fix starvation of scx_enable() under fair-class saturation

During scx_enable(), the READY -> ENABLED task switching loop changes the
calling thread's sched_class from fair to ext. Since fair has higher
priority than ext, saturating fair-class workloads can indefinitely starve
the enable thread, hanging the system. This was introduced when the enable
path switched from preempt_disable() to scx_bypass() which doesn't protect
against fair-class starvation. Note that the original preempt_disable()
protection wasn't complete either - in partial switch modes, the calling
thread could still be starved after preempt_enable() as it may have been
switched to ext class.

Fix it by offloading the enable body to a dedicated system-wide RT
(SCHED_FIFO) kthread which cannot be starved by either fair or ext class
tasks. scx_enable() lazily creates the kthread on first use and passes the
ops pointer through a struct scx_enable_cmd containing the kthread_work,
then synchronously waits for completion.

The workfn runs on a different kthread from sch->helper (which runs
disable_work), so it can safely flush disable_work on the error path
without deadlock.

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