diff options
| author | Edward Adam Davis <[email protected]> | 2025-07-07 12:39:58 +0000 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2025-08-19 10:56:16 +0000 |
| commit | 96cb948408b3adb69df7e451ba7da9d21f814d00 (patch) | |
| tree | 58420df14dd0c4e324b5de6fd0d50f8f26043320 /drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c | |
| parent | cdx: Fix off-by-one error in cdx_rpmsg_probe() (diff) | |
| download | kernel-96cb948408b3adb69df7e451ba7da9d21f814d00.tar.gz kernel-96cb948408b3adb69df7e451ba7da9d21f814d00.zip | |
comedi: pcl726: Prevent invalid irq number
The reproducer passed in an irq number(0x80008000) that was too large,
which triggered the oob.
Added an interrupt number check to prevent users from passing in an irq
number that was too large.
If `it->options[1]` is 31, then `1 << it->options[1]` is still invalid
because it shifts a 1-bit into the sign bit (which is UB in C).
Possible solutions include reducing the upper bound on the
`it->options[1]` value to 30 or lower, or using `1U << it->options[1]`.
The old code would just not attempt to request the IRQ if the
`options[1]` value were invalid. And it would still configure the
device without interrupts even if the call to `request_irq` returned an
error. So it would be better to combine this test with the test below.
Fixes: fff46207245c ("staging: comedi: pcl726: enable the interrupt support code")
Cc: stable <[email protected]> # 5.13+
Reported-by: [email protected]
Closes: https://syzkaller.appspot.com/bug?extid=5cd373521edd68bebcb3
Tested-by: [email protected]
Signed-off-by: Edward Adam Davis <[email protected]>
Reviewed-by: Ian Abbott <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c')
0 files changed, 0 insertions, 0 deletions
