All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mauro Carvalho Chehab <mchehab@kernel.org>
To: Oliver Neukum <oneukum@suse.com>
Cc: linux-media@vger.kernel.org
Subject: Re: [PATCHv2] dvb: usb: fix use after free in dvb_usb_device_exit
Date: Tue, 30 Apr 2019 08:29:39 -0300	[thread overview]
Message-ID: <20190430082939.6e89ec41@coco.lan> (raw)
In-Reply-To: <20190430104358.8526-1-oneukum@suse.com>

Em Tue, 30 Apr 2019 12:43:58 +0200
Oliver Neukum <oneukum@suse.com> escreveu:

> dvb_usb_device_exit() frees and uses the device name in that order
> Fix by storing the name in a buffer before freeing it
> 
> v2: fixed style issues
> 
> Signed-off-by: Oliver Neukum <oneukum@suse.com>
> Reported-by: syzbot+26ec41e9f788b3eba396@syzkaller.appspotmail.com
> ---
>  drivers/media/usb/dvb-usb/dvb-usb-init.c | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/media/usb/dvb-usb/dvb-usb-init.c b/drivers/media/usb/dvb-usb/dvb-usb-init.c
> index 99951e02a880..959bbdad8f00 100644
> --- a/drivers/media/usb/dvb-usb/dvb-usb-init.c
> +++ b/drivers/media/usb/dvb-usb/dvb-usb-init.c
> @@ -288,13 +288,18 @@ void dvb_usb_device_exit(struct usb_interface *intf)
>  {
>  	struct dvb_usb_device *d = usb_get_intfdata(intf);
>  	const char *name = "generic DVB-USB module";

I would change this to default_name;

> +	char identifier[40];

And use name here, instead of identifier.

IMO, this makes easier to understand the code, as it is a common practice
to call "name" for such kind of var.

>  
>  	usb_set_intfdata(intf, NULL);

>  	if (d != NULL && d->desc != NULL) {
>  		name = d->desc->name;
> +		memcpy(identifier, name, 39);
> +		identifier[39] = 0;

Please use instead (considering the rename I proposed before):

	strscpy(name, d->desc->name, sizeof(name));

>  		dvb_usb_exit(d);
> +	} else {
> +		memcpy(identifier, name, 39);

And here:

	strscpy(name, default_name, sizeof(name));

>  	}

> -	info("%s successfully deinitialized and disconnected.", name);
> +	info("%s successfully deinitialized and disconnected.", identifier);

Dropping this change.

>  
>  }
>  EXPORT_SYMBOL(dvb_usb_device_exit);



Thanks,
Mauro

      reply	other threads:[~2019-04-30 11:29 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-30 10:43 [PATCHv2] dvb: usb: fix use after free in dvb_usb_device_exit Oliver Neukum
2019-04-30 11:29 ` Mauro Carvalho Chehab [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=20190430082939.6e89ec41@coco.lan \
    --to=mchehab@kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=oneukum@suse.com \
    /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.