All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stanislaw Gruszka <stf_xl@wp.pl>
To: "Alexey V. Vissarionov" <gremlin@altlinux.org>
Cc: Matthieu CASTET <castet.matthieu@free.fr>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Andrew Morton <akpm@osdl.org>,
	linux-usb@vger.kernel.org, lvc-project@linuxtesting.org
Subject: Re: [PATCH] ueagle-atm: enforce boundary check for sync_wait[]
Date: Mon, 7 Apr 2025 19:30:01 +0200	[thread overview]
Message-ID: <20250407173001.GA36983@wp.pl> (raw)
In-Reply-To: <20250407130000.GD20970@altlinux.org>

On Mon, Apr 07, 2025 at 04:00:00PM +0300, Alexey V. Vissarionov wrote:
> After several increments of modem_index (e.g. after plugging and
> removing the device several times) modem_index may reach NB_MODEM
> value causing the out-of-boundary sync_wait[] array access.
> 
> Found by ALT Linux Team (altlinux.org) and Linux Verification Center
> (linuxtesting.org).
> 
> Fixes: b72458a80c75 ("[PATCH] USB: Eagle and ADI 930 usb adsl modem driver")
> Signed-off-by: Alexey V. Vissarionov <gremlin@altlinux.org>

Acked-by: Stanislaw Gruszka <stf_xl@wp.pl>

> ---
>  drivers/usb/atm/ueagle-atm.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/usb/atm/ueagle-atm.c b/drivers/usb/atm/ueagle-atm.c
> index cd0f7b4bd82ab132..436412b62c910e2f 100644
> --- a/drivers/usb/atm/ueagle-atm.c
> +++ b/drivers/usb/atm/ueagle-atm.c
> @@ -2500,7 +2500,9 @@ static int uea_bind(struct usbatm_data *usbatm, struct usb_interface *intf,
>  	if (ifnum != UEA_INTR_IFACE_NO)
>  		return -ENODEV;
>  
> -	usbatm->flags = (sync_wait[modem_index] ? 0 : UDSL_SKIP_HEAVY_INIT);
> +	usbatm->flags =
> +		modem_index < NB_MODEM && sync_wait[modem_index] ?
> +		0 : UDSL_SKIP_HEAVY_INIT;
>  
>  	/* interface 1 is for outbound traffic */
>  	ret = claim_interface(usb, usbatm, UEA_US_IFACE_NO);
> 
> -- 
> Alexey V. Vissarionov
> gremlin ПРИ altlinux ТЧК org; +vii-cmiii-ccxxix-lxxix-xlii
> GPG: 0D92F19E1C0DC36E27F61A29CD17E2B43D879005 @ hkp://keys.gnupg.net

      reply	other threads:[~2025-04-07 17:30 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-07 13:00 [PATCH] ueagle-atm: enforce boundary check for sync_wait[] Alexey V. Vissarionov
2025-04-07 17:30 ` Stanislaw Gruszka [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250407173001.GA36983@wp.pl \
    --to=stf_xl@wp.pl \
    --cc=akpm@osdl.org \
    --cc=castet.matthieu@free.fr \
    --cc=gregkh@linuxfoundation.org \
    --cc=gremlin@altlinux.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=lvc-project@linuxtesting.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.