All of lore.kernel.org
 help / color / mirror / Atom feed
From: gregkh at linuxfoundation.org (Greg KH)
Subject: [Linux-kernel-mentees] [PATCH v3] Media: Radio: Change devm_k*alloc to k*alloc
Date: Tue, 18 Jun 2019 08:10:01 +0200	[thread overview]
Message-ID: <20190618061001.GA7024@kroah.com> (raw)
In-Reply-To: <4a93f478-116c-fb85-fd74-12f5133a3bb1@eng.ucsd.edu>

On Mon, Jun 17, 2019 at 10:42:49PM -0700, Luke Nowakowski-Krijger wrote:
> Change devm_k*alloc to k*alloc to manually allocate memory. Memory is freed in v4l2.release callback which now calls raremono_device_release to free up the appropriate memory, just like in radio-shark driver. 

Please properly wrap your changelog text at 72 columns and do not add
trailing whitespace.

> 
> This patch aims to fix the use-after-free read described in
> https://syzkaller.appspot.com/bug?extid=a4387f5b6b799f6becbf

Does it?  Did you submit it to syzkaller and get any results?

There is a proper way to credit the tool as well, please do that.

> 
> Signed-off-by: Luke Nowakowski-Krijger <lnowakow at eng.ucsd.edu>
> ---
> diff --git a/drivers/media/radio/radio-raremono.c b/drivers/media/radio/radio-raremono.c
> index 5e782b3c2fa9..b467ad7fdd21 100644
> --- a/drivers/media/radio/radio-raremono.c
> +++ b/drivers/media/radio/radio-raremono.c
> @@ -271,6 +271,15 @@ static int vidioc_g_frequency(struct file *file, void *priv,
>         return 0;
>  }
>  
> +static void raremono_device_release(struct v4l2_device *v4l2_dev)
> +{
> +       struct raremono_device *radio = to_raremono_dev(v4l2_dev);
> +       

Trailing whitespace :(

Did you run your patch through checkpatch?

> +       kfree(radio->buffer);
> +       kfree(radio);
> +}
> +
> +
>  /* File system interface */
>  static const struct v4l2_file_operations usb_raremono_fops = {
>         .owner          = THIS_MODULE,
> @@ -295,12 +304,15 @@ static int usb_raremono_probe(struct usb_interface *intf,
>         struct raremono_device *radio;
>         int retval = 0;
>  
> -       radio = devm_kzalloc(&intf->dev, sizeof(struct raremono_device), GFP_KERNEL);
> -       if (radio)
> -               radio->buffer = devm_kmalloc(&intf->dev, BUFFER_LENGTH, GFP_KERNEL);
> -
> -       if (!radio || !radio->buffer)
> +       radio = kzalloc(sizeof(struct raremono_device), GFP_KERNEL);
> +       if (!radio)
>                 return -ENOMEM;
> +       

Trailing whitespace :(

> +       radio->buffer = kmalloc(BUFFER_LENGTH, GFP_KERNEL);
> +       if (!radio->buffer) {
> +               kfree(radio);
> +               return -ENOMEM;
> +       }
>  
>         radio->usbdev = interface_to_usbdev(intf);
>         radio->intf = intf;
> @@ -324,7 +336,9 @@ static int usb_raremono_probe(struct usb_interface *intf,
>         if (retval != 3 ||
>             (get_unaligned_be16(&radio->buffer[1]) & 0xfff) == 0x0242) {
>                 dev_info(&intf->dev, "this is not Thanko's Raremono.\n");
> -               return -ENODEV;
> +               

More trailing whitespace.

Please fix your editor to show this type of thing in bright red so you
know not to include it.  It's all over this patch.

thanks.

greg k-h

WARNING: multiple messages have this Message-ID (diff)
From: gregkh@linuxfoundation.org (Greg KH)
Subject: [Linux-kernel-mentees] [PATCH v3] Media: Radio: Change devm_k*alloc to k*alloc
Date: Tue, 18 Jun 2019 08:10:01 +0200	[thread overview]
Message-ID: <20190618061001.GA7024@kroah.com> (raw)
Message-ID: <20190618061001.VtCBToXekXdLt6CBzwa0j3YnVd2mbG_waXr9YJpa4wc@z> (raw)
In-Reply-To: <4a93f478-116c-fb85-fd74-12f5133a3bb1@eng.ucsd.edu>

On Mon, Jun 17, 2019 at 10:42:49PM -0700, Luke Nowakowski-Krijger wrote:
> Change devm_k*alloc to k*alloc to manually allocate memory. Memory is freed in v4l2.release callback which now calls raremono_device_release to free up the appropriate memory, just like in radio-shark driver. 

Please properly wrap your changelog text at 72 columns and do not add
trailing whitespace.

> 
> This patch aims to fix the use-after-free read described in
> https://syzkaller.appspot.com/bug?extid=a4387f5b6b799f6becbf

Does it?  Did you submit it to syzkaller and get any results?

There is a proper way to credit the tool as well, please do that.

> 
> Signed-off-by: Luke Nowakowski-Krijger <lnowakow at eng.ucsd.edu>
> ---
> diff --git a/drivers/media/radio/radio-raremono.c b/drivers/media/radio/radio-raremono.c
> index 5e782b3c2fa9..b467ad7fdd21 100644
> --- a/drivers/media/radio/radio-raremono.c
> +++ b/drivers/media/radio/radio-raremono.c
> @@ -271,6 +271,15 @@ static int vidioc_g_frequency(struct file *file, void *priv,
>         return 0;
>  }
>  
> +static void raremono_device_release(struct v4l2_device *v4l2_dev)
> +{
> +       struct raremono_device *radio = to_raremono_dev(v4l2_dev);
> +       

Trailing whitespace :(

Did you run your patch through checkpatch?

> +       kfree(radio->buffer);
> +       kfree(radio);
> +}
> +
> +
>  /* File system interface */
>  static const struct v4l2_file_operations usb_raremono_fops = {
>         .owner          = THIS_MODULE,
> @@ -295,12 +304,15 @@ static int usb_raremono_probe(struct usb_interface *intf,
>         struct raremono_device *radio;
>         int retval = 0;
>  
> -       radio = devm_kzalloc(&intf->dev, sizeof(struct raremono_device), GFP_KERNEL);
> -       if (radio)
> -               radio->buffer = devm_kmalloc(&intf->dev, BUFFER_LENGTH, GFP_KERNEL);
> -
> -       if (!radio || !radio->buffer)
> +       radio = kzalloc(sizeof(struct raremono_device), GFP_KERNEL);
> +       if (!radio)
>                 return -ENOMEM;
> +       

Trailing whitespace :(

> +       radio->buffer = kmalloc(BUFFER_LENGTH, GFP_KERNEL);
> +       if (!radio->buffer) {
> +               kfree(radio);
> +               return -ENOMEM;
> +       }
>  
>         radio->usbdev = interface_to_usbdev(intf);
>         radio->intf = intf;
> @@ -324,7 +336,9 @@ static int usb_raremono_probe(struct usb_interface *intf,
>         if (retval != 3 ||
>             (get_unaligned_be16(&radio->buffer[1]) & 0xfff) == 0x0242) {
>                 dev_info(&intf->dev, "this is not Thanko's Raremono.\n");
> -               return -ENODEV;
> +               

More trailing whitespace.

Please fix your editor to show this type of thing in bright red so you
know not to include it.  It's all over this patch.

thanks.

greg k-h

  reply	other threads:[~2019-06-18  6:10 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-18  5:42 [Linux-kernel-mentees] [PATCH v3] Media: Radio: Change devm_k*alloc to k*alloc lnowakow
2019-06-18  5:42 ` Luke Nowakowski-Krijger
2019-06-18  6:10 ` gregkh [this message]
2019-06-18  6:10   ` Greg KH

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=20190618061001.GA7024@kroah.com \
    --to=unknown@example.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.