linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Alan Stern <stern@rowland.harvard.edu>
To: Dan Carpenter <dan.carpenter@oracle.com>
Cc: syzbot <syzbot+784ccb935f9900cc7c9e@syzkaller.appspotmail.com>,
	<andreyknvl@google.com>, <benjamin.tissoires@redhat.com>,
	<jikos@kernel.org>, <linux-input@vger.kernel.org>,
	<linux-kernel@vger.kernel.org>, <linux-usb@vger.kernel.org>,
	<syzkaller-bugs@googlegroups.com>
Subject: Re: KASAN: use-after-free Write in hiddev_disconnect
Date: Tue, 14 Jan 2020 11:06:22 -0500 (EST)	[thread overview]
Message-ID: <Pine.LNX.4.44L0.2001141100290.1593-100000@iolanthe.rowland.org> (raw)
In-Reply-To: <20200114152414.GC3719@kadam>

On Tue, 14 Jan 2020, Dan Carpenter wrote:

> I'm trying to take a stab at diagnosing these bugs.  (But I'm seldom
> smart enough to actually fix anything).  These hiddev_disconnect() bugs
> are a race condition:
> 
> devel/drivers/hid/usbhid/hiddev.c
>    924  void hiddev_disconnect(struct hid_device *hid)
>    925  {
>    926          struct hiddev *hiddev = hid->hiddev;
>    927          struct usbhid_device *usbhid = hid->driver_data;
>    928  
>    929          usb_deregister_dev(usbhid->intf, &hiddev_class);
>    930  
>    931          mutex_lock(&hiddev->existancelock);
>    932          hiddev->exist = 0;
>                 ^^^^^^^^^^^^^^^^^^
> We set "exist = 0;"
> 
>    933  
>    934          if (hiddev->open) {
>    935                  mutex_unlock(&hiddev->existancelock);
>                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> Then we drop the lock.
> 
>    936                  hid_hw_close(hiddev->hid);
>    937                  wake_up_interruptible(&hiddev->wait);
>                                                ^^^^^^
> The other thread frees hiddev and it crashes here.
> 
>    938          } else {
>    939                  mutex_unlock(&hiddev->existancelock);
>    940                  kfree(hiddev);
>    941          }
>    942  }
> 
> The other thread is doing:
> 
> drivers/hid/usbhid/hiddev.c
>    216  static int hiddev_release(struct inode * inode, struct file * file)
>    217  {
>    218          struct hiddev_list *list = file->private_data;
>    219          unsigned long flags;
>    220  
>    221          spin_lock_irqsave(&list->hiddev->list_lock, flags);
>    222          list_del(&list->node);
>    223          spin_unlock_irqrestore(&list->hiddev->list_lock, flags);
>    224  
>    225          mutex_lock(&list->hiddev->existancelock);
>                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^
> Takes the lock.
> 
>    226          if (!--list->hiddev->open) {
>                      ^^^^^^^^^^^^^^^^^^^^
> Decrements open.
> 
>    227                  if (list->hiddev->exist) {
>                             ^^^^^^^^^^^^^^^^^^^
> This is false.
> 
>    228                          hid_hw_close(list->hiddev->hid);
>    229                          hid_hw_power(list->hiddev->hid, PM_HINT_NORMAL);
>    230                  } else {
>    231                          mutex_unlock(&list->hiddev->existancelock);
>    232                          kfree(list->hiddev);
>                                       ^^^^^^^^^^^^
> Freed here.
> 
>    233                          vfree(list);
>    234                          return 0;
>    235                  }
>    236          }
>    237  
>    238          mutex_unlock(&list->hiddev->existancelock);
>    239          vfree(list);
>    240  
>    241          return 0;
>    242  }
> 
> I'm not sure what the fix should be though.

Good sleuthing!

It certainly looks as though hiddev_disconnect() should not try to
reference hiddev after dropping the existance_lock -- at least, not in
the case that the device file is still open.  So I suggest reordering
the statements in that routine: First call hid_hw_close() and
wake_up_interruptible(), then drop the mutex.

Too bad syzbot doesn't have a reproducer to test this, though.

Alan Stern


  reply	other threads:[~2020-01-14 16:06 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-14 13:04 KASAN: use-after-free Write in hiddev_disconnect syzbot
2020-01-14 15:24 ` Dan Carpenter
2020-01-14 16:06   ` Alan Stern [this message]
2020-01-15 17:46     ` [PATCH] HID: hiddev: Fix race in in hiddev_disconnect() Dan Carpenter, syzbot
2020-02-12 13:47       ` Jiri Kosina

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=Pine.LNX.4.44L0.2001141100290.1593-100000@iolanthe.rowland.org \
    --to=stern@rowland.harvard.edu \
    --cc=andreyknvl@google.com \
    --cc=benjamin.tissoires@redhat.com \
    --cc=dan.carpenter@oracle.com \
    --cc=jikos@kernel.org \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=syzbot+784ccb935f9900cc7c9e@syzkaller.appspotmail.com \
    --cc=syzkaller-bugs@googlegroups.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).