All of lore.kernel.org
 help / color / mirror / Atom feed
From: lnowakow at eng.ucsd.edu (Luke Nowakowski-Krijger)
Subject: [Linux-kernel-mentees] [PATCH] Media: Radio: Change devm_k*alloc to k*alloc
Date: Thu, 23 May 2019 00:56:19 -0700	[thread overview]
Message-ID: <9d919e81-c291-5f7d-90db-5a2284eeab2a@eng.ucsd.edu> (raw)

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

Changes devm_k*alloc to k*alloc which manually frees memory allocated by
raremono_device instead of leaving it to be automatically deallocated
when the USB interface calls it to be freed. The devices resources are
freed in usb_raremono_disconnect as well as freed when error conditions
occur in usb_raremono_probe.

This change is necessary due to the fact that when the USB device is
disconnected, it frees the raremono_device structure before doing the
necessary cleanup to remove references to the device, thus we get these
use-after-free errors.

I would like to thank Hans Verkuil for pointing me in the right
direction to fix this issue.

Signed-off-by: Luke Nowakowski-Krijger <lnowakow at eng.ucsd.edu>

---
 ?drivers/media/radio/radio-raremono.c | 18 +++++++++++++-----
 ?1 file changed, 13 insertions(+), 5 deletions(-)

diff --git a/drivers/media/radio/radio-raremono.c b/drivers/media/radio/radio-raremono.c
index 5e782b3c2fa9..88cff46cde28 100644
--- a/drivers/media/radio/radio-raremono.c
+++ b/drivers/media/radio/radio-raremono.c
@@ -171,6 +171,8 @@ static void usb_raremono_disconnect(struct usb_interface *intf)
 ??????? v4l2_device_disconnect(&radio->v4l2_dev);
 ??????? mutex_unlock(&radio->lock);
 ??????? v4l2_device_put(&radio->v4l2_dev);
+?????? kfree(radio->buffer);
+?????? kfree(radio);
 ?}

 ?/*
@@ -295,12 +297,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;
+
+?????? radio->buffer = kmalloc(BUFFER_LENGTH, GFP_KERNEL);
+?????? if (!radio->buffer) {
+?????????????? kfree(radio);
 ??????????????? return -ENOMEM;
+?????? }

 ??????? radio->usbdev = interface_to_usbdev(intf);
 ??????? radio->intf = intf;
@@ -324,6 +329,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");
+
+?????????????? kfree(radio->buffer);
+?????????????? kfree(radio);
 ??????????????? return -ENODEV;
 ??????? }

-- 
2.20.1

WARNING: multiple messages have this Message-ID (diff)
From: lnowakow@eng.ucsd.edu (Luke Nowakowski-Krijger)
Subject: [Linux-kernel-mentees] [PATCH] Media: Radio: Change devm_k*alloc to k*alloc
Date: Thu, 23 May 2019 00:56:19 -0700	[thread overview]
Message-ID: <9d919e81-c291-5f7d-90db-5a2284eeab2a@eng.ucsd.edu> (raw)
Message-ID: <20190523075619.iwWeoNj5yKkPtSSH1DbnBAI63FrOWMqxnhDr8xrATks@z> (raw)

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

Changes devm_k*alloc to k*alloc which manually frees memory allocated by
raremono_device instead of leaving it to be automatically deallocated
when the USB interface calls it to be freed. The devices resources are
freed in usb_raremono_disconnect as well as freed when error conditions
occur in usb_raremono_probe.

This change is necessary due to the fact that when the USB device is
disconnected, it frees the raremono_device structure before doing the
necessary cleanup to remove references to the device, thus we get these
use-after-free errors.

I would like to thank Hans Verkuil for pointing me in the right
direction to fix this issue.

Signed-off-by: Luke Nowakowski-Krijger <lnowakow at eng.ucsd.edu>

---
 ?drivers/media/radio/radio-raremono.c | 18 +++++++++++++-----
 ?1 file changed, 13 insertions(+), 5 deletions(-)

diff --git a/drivers/media/radio/radio-raremono.c b/drivers/media/radio/radio-raremono.c
index 5e782b3c2fa9..88cff46cde28 100644
--- a/drivers/media/radio/radio-raremono.c
+++ b/drivers/media/radio/radio-raremono.c
@@ -171,6 +171,8 @@ static void usb_raremono_disconnect(struct usb_interface *intf)
 ??????? v4l2_device_disconnect(&radio->v4l2_dev);
 ??????? mutex_unlock(&radio->lock);
 ??????? v4l2_device_put(&radio->v4l2_dev);
+?????? kfree(radio->buffer);
+?????? kfree(radio);
 ?}

 ?/*
@@ -295,12 +297,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;
+
+?????? radio->buffer = kmalloc(BUFFER_LENGTH, GFP_KERNEL);
+?????? if (!radio->buffer) {
+?????????????? kfree(radio);
 ??????????????? return -ENOMEM;
+?????? }

 ??????? radio->usbdev = interface_to_usbdev(intf);
 ??????? radio->intf = intf;
@@ -324,6 +329,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");
+
+?????????????? kfree(radio->buffer);
+?????????????? kfree(radio);
 ??????????????? return -ENODEV;
 ??????? }

-- 
2.20.1

             reply	other threads:[~2019-05-23  7:56 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-23  7:56 lnowakow [this message]
2019-05-23  7:56 ` [Linux-kernel-mentees] [PATCH] Media: Radio: Change devm_k*alloc to k*alloc Luke Nowakowski-Krijger
2019-05-24  6:28 ` hverkuil
2019-05-24  6:28   ` Hans Verkuil

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=9d919e81-c291-5f7d-90db-5a2284eeab2a@eng.ucsd.edu \
    --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.