mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-16 09:56:46 +00:00
staging: slicoss: fix use-after-free in slic_entry_probe
This patch fixes a use-after-free bug that can cause a kernel oops. If slic_card_init fails then slic_entry_probe (the pci probe() function for this device) will return error without cleaning up memory. Signed-off-by: David Matlack <dmatlack@google.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8522851e3b
commit
65bc0aaa9c
@ -3594,7 +3594,6 @@ static int slic_entry_probe(struct pci_dev *pcidev,
|
||||
struct net_device *netdev;
|
||||
struct adapter *adapter;
|
||||
void __iomem *memmapped_ioaddr = NULL;
|
||||
u32 status = 0;
|
||||
ulong mmio_start = 0;
|
||||
ulong mmio_len = 0;
|
||||
struct sliccard *card = NULL;
|
||||
@ -3685,16 +3684,11 @@ static int slic_entry_probe(struct pci_dev *pcidev,
|
||||
adapter->allocated = 1;
|
||||
}
|
||||
|
||||
status = slic_card_init(card, adapter);
|
||||
err = slic_card_init(card, adapter);
|
||||
if (err)
|
||||
goto err_out_unmap;
|
||||
|
||||
if (status != 0) {
|
||||
card->state = CARD_FAIL;
|
||||
adapter->state = ADAPT_FAIL;
|
||||
adapter->linkstate = LINK_DOWN;
|
||||
dev_err(&pcidev->dev, "FAILED status[%x]\n", status);
|
||||
} else {
|
||||
slic_adapter_set_hwaddr(adapter);
|
||||
}
|
||||
|
||||
netdev->base_addr = (unsigned long)adapter->memorybase;
|
||||
netdev->irq = adapter->irq;
|
||||
@ -3711,7 +3705,7 @@ static int slic_entry_probe(struct pci_dev *pcidev,
|
||||
|
||||
cards_found++;
|
||||
|
||||
return status;
|
||||
return 0;
|
||||
|
||||
err_out_unmap:
|
||||
iounmap(memmapped_ioaddr);
|
||||
|
Loading…
x
Reference in New Issue
Block a user