diff options
| author | Christian Bruel <[email protected]> | 2025-01-24 12:30:43 +0000 |
|---|---|---|
| committer | Krzysztof Wilczyński <[email protected]> | 2025-03-08 14:47:35 +0000 |
| commit | 934e9d137d937706004c325fa1474f9e3f1ba10a (patch) | |
| tree | ddb1281f6b8dc7c9b031eed6cc8b2df1011ed735 /drivers/pci/controller/dwc/pcie-qcom-common.c | |
| parent | PCI: endpoint: Remove unused devm_pci_epc_destroy() (diff) | |
| download | kernel-934e9d137d937706004c325fa1474f9e3f1ba10a.tar.gz kernel-934e9d137d937706004c325fa1474f9e3f1ba10a.zip | |
PCI: endpoint: pci-epf-test: Fix double free that causes kernel to oops
Fix a kernel oops found while testing the stm32_pcie Endpoint driver
with handling of PERST# deassertion:
During EP initialization, pci_epf_test_alloc_space() allocates all BARs,
which are further freed if epc_set_bar() fails (for instance, due to no
free inbound window).
However, when pci_epc_set_bar() fails, the error path:
pci_epc_set_bar() ->
pci_epf_free_space()
does not clear the previous assignment to epf_test->reg[bar].
Then, if the host reboots, the PERST# deassertion restarts the BAR
allocation sequence with the same allocation failure (no free inbound
window), creating a double free situation since epf_test->reg[bar] was
deallocated and is still non-NULL.
Thus, make sure that pci_epf_alloc_space() and pci_epf_free_space()
invocations are symmetric, and as such, set epf_test->reg[bar] to NULL
when memory is freed.
Reviewed-by: Niklas Cassel <[email protected]>
Reviewed-by: Manivannan Sadhasivam <[email protected]>
Signed-off-by: Christian Bruel <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
[kwilczynski: commit log]
Signed-off-by: Krzysztof Wilczyński <[email protected]>
Diffstat (limited to 'drivers/pci/controller/dwc/pcie-qcom-common.c')
0 files changed, 0 insertions, 0 deletions
