* FAILED: patch "[PATCH] xhci: Fix memory leak in xhci_add_in_port()" failed to apply to 4.14-stable tree
@ 2019-12-15 9:25 gregkh
2019-12-15 17:47 ` Sasha Levin
0 siblings, 1 reply; 2+ messages in thread
From: gregkh @ 2019-12-15 9:25 UTC (permalink / raw)
To: mika.westerberg, gregkh, mathias.nyman, stable; +Cc: stable
The patch below does not apply to the 4.14-stable tree.
If someone wants it applied there, or to any other stable or longterm
tree, then please email the backport, including the original git commit
id to <stable@vger.kernel.org>.
thanks,
greg k-h
------------------ original commit in Linus's tree ------------------
From ce91f1a43b37463f517155bdfbd525eb43adbd1a Mon Sep 17 00:00:00 2001
From: Mika Westerberg <mika.westerberg@linux.intel.com>
Date: Wed, 11 Dec 2019 16:20:02 +0200
Subject: [PATCH] xhci: Fix memory leak in xhci_add_in_port()
When xHCI is part of Alpine or Titan Ridge Thunderbolt controller and
the xHCI device is hot-removed as a result of unplugging a dock for
example, the driver leaks memory it allocates for xhci->usb3_rhub.psi
and xhci->usb2_rhub.psi in xhci_add_in_port() as reported by kmemleak:
unreferenced object 0xffff922c24ef42f0 (size 16):
comm "kworker/u16:2", pid 178, jiffies 4294711640 (age 956.620s)
hex dump (first 16 bytes):
21 00 0c 00 12 00 dc 05 23 00 e0 01 00 00 00 00 !.......#.......
backtrace:
[<000000007ac80914>] xhci_mem_init+0xcf8/0xeb7
[<0000000001b6d775>] xhci_init+0x7c/0x160
[<00000000db443fe3>] xhci_gen_setup+0x214/0x340
[<00000000fdffd320>] xhci_pci_setup+0x48/0x110
[<00000000541e1e03>] usb_add_hcd.cold+0x265/0x747
[<00000000ca47a56b>] usb_hcd_pci_probe+0x219/0x3b4
[<0000000021043861>] xhci_pci_probe+0x24/0x1c0
[<00000000b9231f25>] local_pci_probe+0x3d/0x70
[<000000006385c9d7>] pci_device_probe+0xd0/0x150
[<0000000070241068>] really_probe+0xf5/0x3c0
[<0000000061f35c0a>] driver_probe_device+0x58/0x100
[<000000009da11198>] bus_for_each_drv+0x79/0xc0
[<000000009ce45f69>] __device_attach+0xda/0x160
[<00000000df201aaf>] pci_bus_add_device+0x46/0x70
[<0000000088a1bc48>] pci_bus_add_devices+0x27/0x60
[<00000000ad9ee708>] pci_bus_add_devices+0x52/0x60
unreferenced object 0xffff922c24ef3318 (size 8):
comm "kworker/u16:2", pid 178, jiffies 4294711640 (age 956.620s)
hex dump (first 8 bytes):
34 01 05 00 35 41 0a 00 4...5A..
backtrace:
[<000000007ac80914>] xhci_mem_init+0xcf8/0xeb7
[<0000000001b6d775>] xhci_init+0x7c/0x160
[<00000000db443fe3>] xhci_gen_setup+0x214/0x340
[<00000000fdffd320>] xhci_pci_setup+0x48/0x110
[<00000000541e1e03>] usb_add_hcd.cold+0x265/0x747
[<00000000ca47a56b>] usb_hcd_pci_probe+0x219/0x3b4
[<0000000021043861>] xhci_pci_probe+0x24/0x1c0
[<00000000b9231f25>] local_pci_probe+0x3d/0x70
[<000000006385c9d7>] pci_device_probe+0xd0/0x150
[<0000000070241068>] really_probe+0xf5/0x3c0
[<0000000061f35c0a>] driver_probe_device+0x58/0x100
[<000000009da11198>] bus_for_each_drv+0x79/0xc0
[<000000009ce45f69>] __device_attach+0xda/0x160
[<00000000df201aaf>] pci_bus_add_device+0x46/0x70
[<0000000088a1bc48>] pci_bus_add_devices+0x27/0x60
[<00000000ad9ee708>] pci_bus_add_devices+0x52/0x60
Fix this by calling kfree() for the both psi objects in
xhci_mem_cleanup().
Cc: <stable@vger.kernel.org> # 4.4+
Fixes: 47189098f8be ("xhci: parse xhci protocol speed ID list for usb 3.1 usage")
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Link: https://lore.kernel.org/r/20191211142007.8847-2-mathias.nyman@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
diff --git a/drivers/usb/host/xhci-mem.c b/drivers/usb/host/xhci-mem.c
index e16eda6e2b8b..3b1388fa2f36 100644
--- a/drivers/usb/host/xhci-mem.c
+++ b/drivers/usb/host/xhci-mem.c
@@ -1909,13 +1909,17 @@ void xhci_mem_cleanup(struct xhci_hcd *xhci)
xhci->usb3_rhub.num_ports = 0;
xhci->num_active_eps = 0;
kfree(xhci->usb2_rhub.ports);
+ kfree(xhci->usb2_rhub.psi);
kfree(xhci->usb3_rhub.ports);
+ kfree(xhci->usb3_rhub.psi);
kfree(xhci->hw_ports);
kfree(xhci->rh_bw);
kfree(xhci->ext_caps);
xhci->usb2_rhub.ports = NULL;
+ xhci->usb2_rhub.psi = NULL;
xhci->usb3_rhub.ports = NULL;
+ xhci->usb3_rhub.psi = NULL;
xhci->hw_ports = NULL;
xhci->rh_bw = NULL;
xhci->ext_caps = NULL;
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: FAILED: patch "[PATCH] xhci: Fix memory leak in xhci_add_in_port()" failed to apply to 4.14-stable tree
2019-12-15 9:25 FAILED: patch "[PATCH] xhci: Fix memory leak in xhci_add_in_port()" failed to apply to 4.14-stable tree gregkh
@ 2019-12-15 17:47 ` Sasha Levin
0 siblings, 0 replies; 2+ messages in thread
From: Sasha Levin @ 2019-12-15 17:47 UTC (permalink / raw)
To: gregkh; +Cc: mika.westerberg, mathias.nyman, stable
On Sun, Dec 15, 2019 at 10:25:25AM +0100, gregkh@linuxfoundation.org wrote:
>
>The patch below does not apply to the 4.14-stable tree.
>If someone wants it applied there, or to any other stable or longterm
>tree, then please email the backport, including the original git commit
>id to <stable@vger.kernel.org>.
>
>thanks,
>
>greg k-h
>
>------------------ original commit in Linus's tree ------------------
>
>From ce91f1a43b37463f517155bdfbd525eb43adbd1a Mon Sep 17 00:00:00 2001
>From: Mika Westerberg <mika.westerberg@linux.intel.com>
>Date: Wed, 11 Dec 2019 16:20:02 +0200
>Subject: [PATCH] xhci: Fix memory leak in xhci_add_in_port()
>
>When xHCI is part of Alpine or Titan Ridge Thunderbolt controller and
>the xHCI device is hot-removed as a result of unplugging a dock for
>example, the driver leaks memory it allocates for xhci->usb3_rhub.psi
>and xhci->usb2_rhub.psi in xhci_add_in_port() as reported by kmemleak:
>
>unreferenced object 0xffff922c24ef42f0 (size 16):
> comm "kworker/u16:2", pid 178, jiffies 4294711640 (age 956.620s)
> hex dump (first 16 bytes):
> 21 00 0c 00 12 00 dc 05 23 00 e0 01 00 00 00 00 !.......#.......
> backtrace:
> [<000000007ac80914>] xhci_mem_init+0xcf8/0xeb7
> [<0000000001b6d775>] xhci_init+0x7c/0x160
> [<00000000db443fe3>] xhci_gen_setup+0x214/0x340
> [<00000000fdffd320>] xhci_pci_setup+0x48/0x110
> [<00000000541e1e03>] usb_add_hcd.cold+0x265/0x747
> [<00000000ca47a56b>] usb_hcd_pci_probe+0x219/0x3b4
> [<0000000021043861>] xhci_pci_probe+0x24/0x1c0
> [<00000000b9231f25>] local_pci_probe+0x3d/0x70
> [<000000006385c9d7>] pci_device_probe+0xd0/0x150
> [<0000000070241068>] really_probe+0xf5/0x3c0
> [<0000000061f35c0a>] driver_probe_device+0x58/0x100
> [<000000009da11198>] bus_for_each_drv+0x79/0xc0
> [<000000009ce45f69>] __device_attach+0xda/0x160
> [<00000000df201aaf>] pci_bus_add_device+0x46/0x70
> [<0000000088a1bc48>] pci_bus_add_devices+0x27/0x60
> [<00000000ad9ee708>] pci_bus_add_devices+0x52/0x60
>unreferenced object 0xffff922c24ef3318 (size 8):
> comm "kworker/u16:2", pid 178, jiffies 4294711640 (age 956.620s)
> hex dump (first 8 bytes):
> 34 01 05 00 35 41 0a 00 4...5A..
> backtrace:
> [<000000007ac80914>] xhci_mem_init+0xcf8/0xeb7
> [<0000000001b6d775>] xhci_init+0x7c/0x160
> [<00000000db443fe3>] xhci_gen_setup+0x214/0x340
> [<00000000fdffd320>] xhci_pci_setup+0x48/0x110
> [<00000000541e1e03>] usb_add_hcd.cold+0x265/0x747
> [<00000000ca47a56b>] usb_hcd_pci_probe+0x219/0x3b4
> [<0000000021043861>] xhci_pci_probe+0x24/0x1c0
> [<00000000b9231f25>] local_pci_probe+0x3d/0x70
> [<000000006385c9d7>] pci_device_probe+0xd0/0x150
> [<0000000070241068>] really_probe+0xf5/0x3c0
> [<0000000061f35c0a>] driver_probe_device+0x58/0x100
> [<000000009da11198>] bus_for_each_drv+0x79/0xc0
> [<000000009ce45f69>] __device_attach+0xda/0x160
> [<00000000df201aaf>] pci_bus_add_device+0x46/0x70
> [<0000000088a1bc48>] pci_bus_add_devices+0x27/0x60
> [<00000000ad9ee708>] pci_bus_add_devices+0x52/0x60
>
>Fix this by calling kfree() for the both psi objects in
>xhci_mem_cleanup().
Context changes due to missing:
bcaa9d5c5900 ("xhci: Create new structures to store xhci port information")
Fixed up and queued up for 4.14 - 4.4.
--
Thanks,
Sasha
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-12-15 17:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-12-15 9:25 FAILED: patch "[PATCH] xhci: Fix memory leak in xhci_add_in_port()" failed to apply to 4.14-stable tree gregkh
2019-12-15 17:47 ` Sasha Levin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox