linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH AUTOSEL 4.9 01/12] usb: gadget: goku_udc: fix potential crashes in probe
@ 2020-11-10  3:56 Sasha Levin
  2020-11-10  3:56 ` [PATCH AUTOSEL 4.9 02/12] gfs2: Free rd_bits later in gfs2_clear_rgrpd to fix use-after-free Sasha Levin
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: Sasha Levin @ 2020-11-10  3:56 UTC (permalink / raw)
  To: linux-kernel, stable
  Cc: Evgeny Novikov, Pavel Andrianov, Felipe Balbi, Sasha Levin, linux-usb

From: Evgeny Novikov <novikov@ispras.ru>

[ Upstream commit 0d66e04875c5aae876cf3d4f4be7978fa2b00523 ]

goku_probe() goes to error label "err" and invokes goku_remove()
in case of failures of pci_enable_device(), pci_resource_start()
and ioremap(). goku_remove() gets a device from
pci_get_drvdata(pdev) and works with it without any checks, in
particular it dereferences a corresponding pointer. But
goku_probe() did not set this device yet. So, one can expect
various crashes. The patch moves setting the device just after
allocation of memory for it.

Found by Linux Driver Verification project (linuxtesting.org).

Reported-by: Pavel Andrianov <andrianov@ispras.ru>
Signed-off-by: Evgeny Novikov <novikov@ispras.ru>
Signed-off-by: Felipe Balbi <balbi@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/usb/gadget/udc/goku_udc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/usb/gadget/udc/goku_udc.c b/drivers/usb/gadget/udc/goku_udc.c
index 5107987bd3538..d363224dce6f5 100644
--- a/drivers/usb/gadget/udc/goku_udc.c
+++ b/drivers/usb/gadget/udc/goku_udc.c
@@ -1772,6 +1772,7 @@ static int goku_probe(struct pci_dev *pdev, const struct pci_device_id *id)
 		goto err;
 	}
 
+	pci_set_drvdata(pdev, dev);
 	spin_lock_init(&dev->lock);
 	dev->pdev = pdev;
 	dev->gadget.ops = &goku_ops;
@@ -1805,7 +1806,6 @@ static int goku_probe(struct pci_dev *pdev, const struct pci_device_id *id)
 	}
 	dev->regs = (struct goku_udc_regs __iomem *) base;
 
-	pci_set_drvdata(pdev, dev);
 	INFO(dev, "%s\n", driver_desc);
 	INFO(dev, "version: " DRIVER_VERSION " %s\n", dmastr());
 	INFO(dev, "irq %d, pci mem %p\n", pdev->irq, base);
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2020-11-10  3:58 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-10  3:56 [PATCH AUTOSEL 4.9 01/12] usb: gadget: goku_udc: fix potential crashes in probe Sasha Levin
2020-11-10  3:56 ` [PATCH AUTOSEL 4.9 02/12] gfs2: Free rd_bits later in gfs2_clear_rgrpd to fix use-after-free Sasha Levin
2020-11-10  3:56 ` [PATCH AUTOSEL 4.9 03/12] gfs2: check for live vs. read-only file system in gfs2_fitrim Sasha Levin
2020-11-10  3:56 ` [PATCH AUTOSEL 4.9 04/12] scsi: hpsa: Fix memory leak in hpsa_init_one() Sasha Levin
2020-11-10  3:56 ` [PATCH AUTOSEL 4.9 05/12] drm/amdgpu: perform srbm soft reset always on SDMA resume Sasha Levin
2020-11-10  3:56 ` [PATCH AUTOSEL 4.9 06/12] mac80211: fix use of skb payload instead of header Sasha Levin
2020-11-10  3:56 ` [PATCH AUTOSEL 4.9 07/12] mac80211: always wind down STA state Sasha Levin
2020-11-10  3:56 ` [PATCH AUTOSEL 4.9 08/12] cfg80211: regulatory: Fix inconsistent format argument Sasha Levin
2020-11-10  3:56 ` [PATCH AUTOSEL 4.9 09/12] scsi: scsi_dh_alua: Avoid crash during alua_bus_detach() Sasha Levin
2020-11-10  3:56 ` [PATCH AUTOSEL 4.9 10/12] iommu/amd: Increase interrupt remapping table limit to 512 entries Sasha Levin
2020-11-10  3:56 ` [PATCH AUTOSEL 4.9 11/12] kprobes: Tell lockdep about kprobe nesting Sasha Levin
2020-11-10  3:56 ` [PATCH AUTOSEL 4.9 12/12] vt: Disable KD_FONT_OP_COPY Sasha Levin

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).