From: P J P <ppandit@redhat.com>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: Ruhr-University <bugs-syssec@rub.de>,
QEMU Developers <qemu-devel@nongnu.org>,
Prasad J Pandit <pjp@fedoraproject.org>
Subject: [PATCH] xhci: check return value from usb_packet_map
Date: Thu, 27 Aug 2020 17:29:33 +0530 [thread overview]
Message-ID: <20200827115933.1851563-1-ppandit@redhat.com> (raw)
From: Prasad J Pandit <pjp@fedoraproject.org>
While setting up a packet in xhci_setup_packet() routine,
usb_packet_map() may return an error. Check this return value
before further processing the packet, to avoid use-after-free
issue.
-> https://ruhr-uni-bochum.sciebo.de/s/NNWP2GfwzYKeKwE?path=%2Fxhci_uaf_2
#0 __interceptor_free (/lib64/libasan.so.6+0xb0307)
#1 qemu_vfree ../util/oslib-posix.c:247
#2 address_space_unmap ../exec.c:3635
#3 dma_memory_unmap ../include/sysemu/dma.h:145
#4 usb_packet_unmap ../hw/usb/libhw.c:65
#5 usb_packet_map ../hw/usb/libhw.c:54
#6 xhci_setup_packet ../hw/usb/hcd-xhci.c:1618
#7 xhci_fire_ctl_transfer ../hw/usb/hcd-xhci.c:1722
#8 xhci_kick_epctx ../hw/usb/hcd-xhci.c:1991
#9 xhci_kick_ep ../hw/usb/hcd-xhci.c:1861
#10 xhci_doorbell_write ../hw/usb/hcd-xhci.c:3162
...
Reported-by: Ruhr-University <bugs-syssec@rub.de>
Signed-off-by: Prasad J Pandit <pjp@fedoraproject.org>
---
hw/usb/hcd-xhci.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.c
index 67a18fe2b6..848e7e935f 100644
--- a/hw/usb/hcd-xhci.c
+++ b/hw/usb/hcd-xhci.c
@@ -1615,7 +1615,14 @@ static int xhci_setup_packet(XHCITransfer *xfer)
xhci_xfer_create_sgl(xfer, dir == USB_TOKEN_IN); /* Also sets int_req */
usb_packet_setup(&xfer->packet, dir, ep, xfer->streamid,
xfer->trbs[0].addr, false, xfer->int_req);
- usb_packet_map(&xfer->packet, &xfer->sgl);
+ if (usb_packet_map(&xfer->packet, &xfer->sgl) < 0) {
+ DPRINTF("xhci: setup packet failed: pid: 0x%x addr %d ep %d\n",
+ xfer->packet.pid, ep->dev->addr, ep->nr);
+ usb_packet_cleanup(&xfer->packet);
+ qemu_sglist_destroy(&xfer->sgl);
+ return -1;
+ }
+
DPRINTF("xhci: setup packet pid 0x%x addr %d ep %d\n",
xfer->packet.pid, ep->dev->addr, ep->nr);
return 0;
--
2.26.2
next reply other threads:[~2020-08-27 12:02 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-27 11:59 P J P [this message]
2020-08-30 15:27 ` [PATCH] xhci: check return value from usb_packet_map Alexander Bulekov
2020-09-01 4:49 ` P J P
2020-09-01 5:27 ` Gerd Hoffmann
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=20200827115933.1851563-1-ppandit@redhat.com \
--to=ppandit@redhat.com \
--cc=bugs-syssec@rub.de \
--cc=kraxel@redhat.com \
--cc=pjp@fedoraproject.org \
--cc=qemu-devel@nongnu.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 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).