aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/basic/docproc.c
diff options
context:
space:
mode:
authorDeepanshu Kartikey <[email protected]>2025-09-24 10:26:39 +0000
committerGreg Kroah-Hartman <[email protected]>2025-10-22 06:03:52 +0000
commit87b318ba81dda2ee7b603f4f6c55e78ec3e95974 (patch)
treedf7cfd03c0f2d7cd1e19d2edff5c02493cc4d774 /scripts/basic/docproc.c
parentmei: late_bind: Fix -Wincompatible-function-pointer-types-strict (diff)
downloadkernel-87b318ba81dda2ee7b603f4f6c55e78ec3e95974.tar.gz
kernel-87b318ba81dda2ee7b603f4f6c55e78ec3e95974.zip
comedi: fix divide-by-zero in comedi_buf_munge()
The comedi_buf_munge() function performs a modulo operation `async->munge_chan %= async->cmd.chanlist_len` without first checking if chanlist_len is zero. If a user program submits a command with chanlist_len set to zero, this causes a divide-by-zero error when the device processes data in the interrupt handler path. Add a check for zero chanlist_len at the beginning of the function, similar to the existing checks for !map and CMDF_RAWDATA flag. When chanlist_len is zero, update munge_count and return early, indicating the data was handled without munging. This prevents potential kernel panics from malformed user commands. Reported-by: [email protected] Closes: https://syzkaller.appspot.com/bug?extid=f6c3c066162d2c43a66c Cc: [email protected] Signed-off-by: Deepanshu Kartikey <[email protected]> Reviewed-by: Ian Abbott <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'scripts/basic/docproc.c')
0 files changed, 0 insertions, 0 deletions