aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJulia Lawall <julia@diku.dk>2010-03-30 01:33:28 -0400
committerDavid S. Miller <davem@davemloft.net>2010-03-30 01:33:28 -0400
commitc4a3987fa075b2d15ebc3d59b01fb7ed403cd3e1 (patch)
treeb751350fb5c0abc2c8f636dae7429d409300be7f /drivers
parent9e8307ecaf9f8c8b5b3b22145021204c4e73114a (diff)
drivers/serial/sunsu.c: Correct use after free
The of_iounmap is at the out_unmap label, but at that point up has already been freed. The free cannot be moved to the out_unmap label, because that label is reachable from cases where up should not be freed. So the call to of_iounmap is just duplicated, and the goto converted to a return. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression x,e; identifier f; iterator I; statement S; @@ *kfree(x); ... when != &x when != x = e when != I(x,...) S *x->f // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/serial/sunsu.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/serial/sunsu.c b/drivers/serial/sunsu.c
index 170d3d68c8f0..cbcfb1885f79 100644
--- a/drivers/serial/sunsu.c
+++ b/drivers/serial/sunsu.c
@@ -1453,8 +1453,10 @@ static int __devinit su_probe(struct of_device *op, const struct of_device_id *m
1453 if (up->su_type == SU_PORT_KBD || up->su_type == SU_PORT_MS) { 1453 if (up->su_type == SU_PORT_KBD || up->su_type == SU_PORT_MS) {
1454 err = sunsu_kbd_ms_init(up); 1454 err = sunsu_kbd_ms_init(up);
1455 if (err) { 1455 if (err) {
1456 of_iounmap(&op->resource[0],
1457 up->port.membase, up->reg_size);
1456 kfree(up); 1458 kfree(up);
1457 goto out_unmap; 1459 return err;
1458 } 1460 }
1459 dev_set_drvdata(&op->dev, up); 1461 dev_set_drvdata(&op->dev, up);
1460 1462