CVE-2026-46051
概要

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

md/raid5: fix soft lockup in retry_aligned_read()

When retry_aligned_read() encounters an overlapped stripe, it releases
the stripe via raid5_release_stripe() which puts it on the lockless
released_stripes llist. In the next raid5d loop iteration,
release_stripe_list() drains the stripe onto handle_list (since
STRIPE_HANDLE is set by the original IO), but retry_aligned_read()
runs before handle_active_stripes() and removes the stripe from
handle_list via find_get_stripe() -> list_del_init(). This prevents
handle_stripe() from ever processing the stripe to resolve the
overlap, causing an infinite loop and soft lockup.

Fix this by using __release_stripe() with temp_inactive_list instead
of raid5_release_stripe() in the failure path, so the stripe does not
go through the released_stripes llist. This allows raid5d to break out
of its loop, and the overlap will be resolved when the stripe is
eventually processed by handle_stripe().

公表日 2026年5月27日23:17
登録日 2026年5月28日4:13
最終更新日 2026年6月2日2:17
関連情報、対策とツール
共通脆弱性一覧

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

Linuxカーネルにおいて、以下の脆弱性が修正されました。md/raid5のretry_aligned_read()関数におけるソフトロックアップの問題です。retry_aligned_read()が重複したストライプに遭遇した際、raid5_release_stripe()を介してストライプを解放し、これによりロックなしのreleased_stripesリストに追加されます。次のraid5dループの繰り返しで、release_stripe_list()がSTRIPE_HANDLEを元のIOによって設定し、ストライプをhandle_listに移します。しかし、retry_aligned_read()はhandle_active_stripes()の前に実行され、find_get_stripe() - list_del_init()を介してhandle_listからストライプを削除します。これにより、handle_stripe()が重複を解消するためにストライプを正常に処理できなくなり、無限ループとソフトロックアップが発生しました。修正として、失敗パスでraid5_release_stripe()の代わりに__release_stripe()をtemp_inactive_listで使用し、ストライプがreleased_stripesリストを通過しないようにしました。これにより、raid5dはループから抜け出し、ストライプが最終的にhandle_stripe()で処理される際に重複が解決されます。

想定される影響 ・当該ソフトウェアが扱う情報について、外部への漏えいは発生しません。 ・当該ソフトウェアが扱う情報について、書き換えは発生しません。 ・当該ソフトウェアが完全に停止する可能性があります。 
対策

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

公表日 2026年5月27日0:00
登録日 2026年6月17日15:40
最終更新日 2026年6月17日15:40
影響を受けるシステム
Linux
Linux Kernel 3.12 以上 5.10.258 未満
Linux Kernel 5.11 以上 5.15.209 未満
Linux Kernel 5.16 以上 6.1.175 未満
Linux Kernel 6.13 以上 6.18.27 未満
Linux Kernel 6.19 以上 7.0.4 未満
Linux Kernel 6.2 以上 6.6.140 未満
Linux Kernel 6.7 以上 6.12.86 未満
CVE (情報セキュリティ 共通脆弱性識別子)
CWE (共通脆弱性タイプ一覧)
その他
変更履歴
No 変更内容 変更日
1 [2026年06月17日]
  掲載
2026年6月17日15:40