public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] comedi: fix divide-by-zero in comedi_buf_munge()
@ 2025-09-24 10:26 Deepanshu Kartikey
  2025-09-24 11:21 ` Ian Abbott
  0 siblings, 1 reply; 4+ messages in thread
From: Deepanshu Kartikey @ 2025-09-24 10:26 UTC (permalink / raw)
  To: Ian Abbott, H Hartley Sweeten
  Cc: Greg Kroah-Hartman, linux-kernel, stable, Deepanshu Kartikey,
	syzbot+f6c3c066162d2c43a66c

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: syzbot+f6c3c066162d2c43a66c@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=f6c3c066162d2c43a66c
Cc: stable@vger.kernel.org
Signed-off-by: Deepanshu Kartikey <kartikey406@gmail.com>
---
v2: Merged the chanlist_len check with existing early return
    check as suggested by Ian Abbott

---
 drivers/comedi/comedi_buf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/comedi/comedi_buf.c b/drivers/comedi/comedi_buf.c
index 002c0e76baff..c7c262a2d8ca 100644
--- a/drivers/comedi/comedi_buf.c
+++ b/drivers/comedi/comedi_buf.c
@@ -317,7 +317,7 @@ static unsigned int comedi_buf_munge(struct comedi_subdevice *s,
 	unsigned int count = 0;
 	const unsigned int num_sample_bytes = comedi_bytes_per_sample(s);
 
-	if (!s->munge || (async->cmd.flags & CMDF_RAWDATA)) {
+	if (!s->munge || (async->cmd.flags & CMDF_RAWDATA) || async->cmd.chanlist_len == 0) {
 		async->munge_count += num_bytes;
 		return num_bytes;
 	}
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] comedi: fix divide-by-zero in comedi_buf_munge()
  2025-09-24 10:26 Deepanshu Kartikey
@ 2025-09-24 11:21 ` Ian Abbott
  0 siblings, 0 replies; 4+ messages in thread
From: Ian Abbott @ 2025-09-24 11:21 UTC (permalink / raw)
  To: Deepanshu Kartikey, H Hartley Sweeten
  Cc: Greg Kroah-Hartman, linux-kernel, stable,
	syzbot+f6c3c066162d2c43a66c

On 24/09/2025 11:26, Deepanshu Kartikey wrote:
> 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: syzbot+f6c3c066162d2c43a66c@syzkaller.appspotmail.com
> Closes: https://syzkaller.appspot.com/bug?extid=f6c3c066162d2c43a66c
> Cc: stable@vger.kernel.org
> Signed-off-by: Deepanshu Kartikey <kartikey406@gmail.com>
> ---
> v2: Merged the chanlist_len check with existing early return
>      check as suggested by Ian Abbott
> 
> ---
>   drivers/comedi/comedi_buf.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/comedi/comedi_buf.c b/drivers/comedi/comedi_buf.c
> index 002c0e76baff..c7c262a2d8ca 100644
> --- a/drivers/comedi/comedi_buf.c
> +++ b/drivers/comedi/comedi_buf.c
> @@ -317,7 +317,7 @@ static unsigned int comedi_buf_munge(struct comedi_subdevice *s,
>   	unsigned int count = 0;
>   	const unsigned int num_sample_bytes = comedi_bytes_per_sample(s);
>   
> -	if (!s->munge || (async->cmd.flags & CMDF_RAWDATA)) {
> +	if (!s->munge || (async->cmd.flags & CMDF_RAWDATA) || async->cmd.chanlist_len == 0) {
>   		async->munge_count += num_bytes;
>   		return num_bytes;
>   	}

Looks good, thanks!

Reviewed-by: Ian Abbott <abbotti@mev.co.uk>

-- 
-=( Ian Abbott <abbotti@mev.co.uk> || MEV Ltd. is a company  )=-
-=( registered in England & Wales.  Regd. number: 02862268.  )=-
-=( Regd. addr.: S11 & 12 Building 67, Europa Business Park, )=-
-=( Bird Hall Lane, STOCKPORT, SK3 0XA, UK. || www.mev.co.uk )=-

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] comedi: fix divide-by-zero in comedi_buf_munge()
@ 2025-10-04  1:15 Deepanshu Kartikey
  2025-10-04  5:46 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Deepanshu Kartikey @ 2025-10-04  1:15 UTC (permalink / raw)
  To: abbotti, hsweeten, gregkh; +Cc: linux-kernel, stable


Hello Ian and maintainers,

Just a gentle ping on this patch. It's been 10 days since v2 was sent
incorporating Ian's feedback to merge the chanlist_len check with the 
existing early return.

Please let me know if any further changes are needed.

Thank you,
Deepanshu


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] comedi: fix divide-by-zero in comedi_buf_munge()
  2025-10-04  1:15 [PATCH v2] comedi: fix divide-by-zero in comedi_buf_munge() Deepanshu Kartikey
@ 2025-10-04  5:46 ` Greg KH
  0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2025-10-04  5:46 UTC (permalink / raw)
  To: Deepanshu Kartikey; +Cc: abbotti, hsweeten, linux-kernel, stable

On Sat, Oct 04, 2025 at 06:45:22AM +0530, Deepanshu Kartikey wrote:
> 
> Hello Ian and maintainers,
> 
> Just a gentle ping on this patch. It's been 10 days since v2 was sent
> incorporating Ian's feedback to merge the chanlist_len check with the 
> existing early return.
> 
> Please let me know if any further changes are needed.

It's the middle of the merge window, I will get to these pending patches
when it ends in a week.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-10-04  5:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-04  1:15 [PATCH v2] comedi: fix divide-by-zero in comedi_buf_munge() Deepanshu Kartikey
2025-10-04  5:46 ` Greg KH
  -- strict thread matches above, loose matches on Subject: below --
2025-09-24 10:26 Deepanshu Kartikey
2025-09-24 11:21 ` Ian Abbott

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox