CVE-2024-50196
概要

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

pinctrl: ocelot: fix system hang on level based interrupts

The current implementation only calls chained_irq_enter() and
chained_irq_exit() if it detects pending interrupts.

```
for (i = 0; i < info->stride; i++) {
uregmap_read(info->map, id_reg + 4 * i, &reg);
if (!reg)
continue;

chained_irq_enter(parent_chip, desc);
```

However, in case of GPIO pin configured in level mode and the parent
controller configured in edge mode, GPIO interrupt might be lowered by the
hardware. In the result, if the interrupt is short enough, the parent
interrupt is still pending while the GPIO interrupt is cleared;
chained_irq_enter() never gets called and the system hangs trying to
service the parent interrupt.

Moving chained_irq_enter() and chained_irq_exit() outside the for loop
ensures that they are called even when GPIO interrupt is lowered by the
hardware.

The similar code with chained_irq_enter() / chained_irq_exit() functions
wrapping interrupt checking loop may be found in many other drivers:
```
grep -r -A 10 chained_irq_enter drivers/pinctrl
```

公表日 2024年11月8日15:15
登録日 2024年11月9日5:00
最終更新日 2024年11月8日15:15
関連情報、対策とツール
共通脆弱性一覧

JVN脆弱性情報
Linux の Linux Kernel における例外的な状態のチェックに関する脆弱性
タイトル Linux の Linux Kernel における例外的な状態のチェックに関する脆弱性
概要

Linux の Linux Kernel には、例外的な状態のチェックに関する脆弱性が存在します。

想定される影響 サービス運用妨害 (DoS) 状態にされる可能性があります。 
対策

ベンダより正式な対策が公開されています。ベンダ情報を参照して適切な対策を実施してください。

公表日 2024年10月12日0:00
登録日 2024年12月2日12:07
最終更新日 2024年12月2日12:07
影響を受けるシステム
Linux
Linux Kernel 5.15.169 未満
Linux Kernel 5.16 以上 6.1.114 未満
Linux Kernel 6.12
Linux Kernel 6.2 以上 6.6.58 未満
Linux Kernel 6.7 以上 6.11.5 未満
CVE (情報セキュリティ 共通脆弱性識別子)
CWE (共通脆弱性タイプ一覧)
ベンダー情報
変更履歴
No 変更内容 変更日
1 [2024年12月02日]   掲載 2024年12月2日11:09