Skip to content

Commit

Permalink
[media] rc: Fix invalid free_region and/or free_irq on probe failure
Browse files Browse the repository at this point in the history
fintek-cir, ite-cir and nuvoton-cir may try to free an I/O region
and/or IRQ handler that was never allocated after a failure in their
respective probe functions.  Add and use separate labels on the
failure path so they will do the right cleanup after each possible
point of failure.

Compile-tested only.

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Ben Hutchings authored and Mauro Carvalho Chehab committed May 20, 2012
1 parent 81cda57 commit f27b853
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 29 deletions.
13 changes: 6 additions & 7 deletions drivers/media/rc/fintek-cir.c
Original file line number Diff line number Diff line change
Expand Up @@ -556,11 +556,11 @@ static int fintek_probe(struct pnp_dev *pdev, const struct pnp_device_id *dev_id

if (request_irq(fintek->cir_irq, fintek_cir_isr, IRQF_SHARED,
FINTEK_DRIVER_NAME, (void *)fintek))
goto failure;
goto failure2;

ret = rc_register_device(rdev);
if (ret)
goto failure;
goto failure3;

device_init_wakeup(&pdev->dev, true);
fintek->rdev = rdev;
Expand All @@ -570,12 +570,11 @@ static int fintek_probe(struct pnp_dev *pdev, const struct pnp_device_id *dev_id

return 0;

failure3:
free_irq(fintek->cir_irq, fintek);
failure2:
release_region(fintek->cir_addr, fintek->cir_port_len);
failure:
if (fintek->cir_irq)
free_irq(fintek->cir_irq, fintek);
if (fintek->cir_addr)
release_region(fintek->cir_addr, fintek->cir_port_len);

rc_free_device(rdev);
kfree(fintek);

Expand Down
14 changes: 6 additions & 8 deletions drivers/media/rc/ite-cir.c
Original file line number Diff line number Diff line change
Expand Up @@ -1598,24 +1598,22 @@ static int ite_probe(struct pnp_dev *pdev, const struct pnp_device_id

if (request_irq(itdev->cir_irq, ite_cir_isr, IRQF_SHARED,
ITE_DRIVER_NAME, (void *)itdev))
goto failure;
goto failure2;

ret = rc_register_device(rdev);
if (ret)
goto failure;
goto failure3;

itdev->rdev = rdev;
ite_pr(KERN_NOTICE, "driver has been successfully loaded\n");

return 0;

failure3:
free_irq(itdev->cir_irq, itdev);
failure2:
release_region(itdev->cir_addr, itdev->params.io_region_size);
failure:
if (itdev->cir_irq)
free_irq(itdev->cir_irq, itdev);

if (itdev->cir_addr)
release_region(itdev->cir_addr, itdev->params.io_region_size);

rc_free_device(rdev);
kfree(itdev);

Expand Down
26 changes: 12 additions & 14 deletions drivers/media/rc/nuvoton-cir.c
Original file line number Diff line number Diff line change
Expand Up @@ -1075,19 +1075,19 @@ static int nvt_probe(struct pnp_dev *pdev, const struct pnp_device_id *dev_id)

if (request_irq(nvt->cir_irq, nvt_cir_isr, IRQF_SHARED,
NVT_DRIVER_NAME, (void *)nvt))
goto failure;
goto failure2;

if (!request_region(nvt->cir_wake_addr,
CIR_IOREG_LENGTH, NVT_DRIVER_NAME))
goto failure;
goto failure3;

if (request_irq(nvt->cir_wake_irq, nvt_cir_wake_isr, IRQF_SHARED,
NVT_DRIVER_NAME, (void *)nvt))
goto failure;
goto failure4;

ret = rc_register_device(rdev);
if (ret)
goto failure;
goto failure5;

device_init_wakeup(&pdev->dev, true);
nvt->rdev = rdev;
Expand All @@ -1099,17 +1099,15 @@ static int nvt_probe(struct pnp_dev *pdev, const struct pnp_device_id *dev_id)

return 0;

failure5:
free_irq(nvt->cir_wake_irq, nvt);
failure4:
release_region(nvt->cir_wake_addr, CIR_IOREG_LENGTH);
failure3:
free_irq(nvt->cir_irq, nvt);
failure2:
release_region(nvt->cir_addr, CIR_IOREG_LENGTH);
failure:
if (nvt->cir_irq)
free_irq(nvt->cir_irq, nvt);
if (nvt->cir_addr)
release_region(nvt->cir_addr, CIR_IOREG_LENGTH);

if (nvt->cir_wake_irq)
free_irq(nvt->cir_wake_irq, nvt);
if (nvt->cir_wake_addr)
release_region(nvt->cir_wake_addr, CIR_IOREG_LENGTH);

rc_free_device(rdev);
kfree(nvt);

Expand Down

0 comments on commit f27b853

Please sign in to comment.