LinuxのLinux Kernelにおける競合状態に関する脆弱性
タイトル LinuxのLinux Kernelにおける競合状態に関する脆弱性
概要

Linuxカーネルにおいて、以下の脆弱性が修正されました。wifi: rsi: kthreadの自己終了(self-exit)と外部停止(external-stop)の間に競合状態が発生していた問題を修正しました。RSIドライバはkthreadを終了させる際に、自己終了(kthread_complete_and_exit)と外部停止(kthread_stop)の両方を使用します。通常はまずkthread_stop()が呼ばれ、この場合は特に問題が発生しません。しかし、まれにkthread_complete_and_exit()が先に呼ばれ、その後にkthread_stop()が呼ばれると、既に終了し解放されたkthreadオブジェクトに再アクセスが発生し、Use-After-Free(UAF)が起こります。したがって、この問題を最小限の修正で防ぐために、kthread_stop()を削除し、自己終了処理が完了するまで待つようにコードを変更しました。

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

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

公表日 2026年5月28日0:00
登録日 2026年6月12日14:48
最終更新日 2026年6月12日14:48
CVSS3.0 : 警告
スコア 4.7
ベクター CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H
影響を受けるシステム
Linux
Linux Kernel 3.18.139 以上 3.19 未満
Linux Kernel 4.14.113 以上 4.15 未満
Linux Kernel 4.19.36 以上 5.10.258 未満
Linux Kernel 4.4.179 以上 4.5 未満
Linux Kernel 4.9.170 以上 4.10 未満
Linux Kernel 5.11 以上 5.15.209 未満
Linux Kernel 5.16 以上 6.1.175 未満
Linux Kernel 6.13 以上 6.18.30 未満
Linux Kernel 6.19 以上 7.0.7 未満
Linux Kernel 6.2 以上 6.6.140 未満
Linux Kernel 6.7 以上 6.12.88 未満
Linux Kernel 7.1
CVE (情報セキュリティ 共通脆弱性識別子)
CWE (共通脆弱性タイプ一覧)
その他
変更履歴
No 変更内容 変更日
1 [2026年06月12日]
  掲載
2026年6月12日14:48

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

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

wifi: rsi: fix kthread lifetime race between self-exit and external-stop

RSI driver use both self-exit(kthread_complete_and_exit) and external-stop
(kthread_stop) when killing a kthread. Generally, kthread_stop() is called
first, and in this case, no particular issues occur.

However, in rare instances where kthread_complete_and_exit() is called
first and then kthread_stop() is called, a UAF occurs because the kthread
object, which has already exited and been freed, is accessed again.

Therefore, to prevent this with minimal modification, you must remove
kthread_stop() and change the code to wait until the self-exit operation
is completed.

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