aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/scripts/python
diff options
context:
space:
mode:
authorIan Abbott <[email protected]>2025-07-07 13:34:29 +0000
committerGreg Kroah-Hartman <[email protected]>2025-07-16 13:02:44 +0000
commitb14b076ce593f72585412fc7fd3747e03a5e3632 (patch)
treea9cb8e82b33bef1a0a6c0c6fa5ca11201bf04b8c /tools/perf/scripts/python
parentcomedi: das16m1: Fix bit shift out of bounds (diff)
downloadkernel-b14b076ce593f72585412fc7fd3747e03a5e3632.tar.gz
kernel-b14b076ce593f72585412fc7fd3747e03a5e3632.zip
comedi: pcl812: Fix bit shift out of bounds
When checking for a supported IRQ number, the following test is used: if ((1 << it->options[1]) & board->irq_bits) { However, `it->options[i]` is an unchecked `int` value from userspace, so the shift amount could be negative or out of bounds. Fix the test by requiring `it->options[1]` to be within bounds before proceeding with the original test. Valid `it->options[1]` values that select the IRQ will be in the range [1,15]. The value 0 explicitly disables the use of interrupts. Reported-by: [email protected] Closes: https://syzkaller.appspot.com/bug?extid=32de323b0addb9e114ff Fixes: fcdb427bc7cf ("Staging: comedi: add pcl821 driver") Cc: [email protected] # 5.13+ Signed-off-by: Ian Abbott <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions