“2a260d9b0e6fdda3ef3720be55a3cc8002b31fe5”上不存在“...paddle/fluid/git@gitcode.net:BaiXuePrincess/Paddle.git”
提交 c4a3987f 编写于 作者: J Julia Lawall 提交者: David S. Miller

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: NJulia Lawall <julia@diku.dk>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 9e8307ec
...@@ -1453,8 +1453,10 @@ static int __devinit su_probe(struct of_device *op, const struct of_device_id *m ...@@ -1453,8 +1453,10 @@ static int __devinit su_probe(struct of_device *op, const struct of_device_id *m
if (up->su_type == SU_PORT_KBD || up->su_type == SU_PORT_MS) { if (up->su_type == SU_PORT_KBD || up->su_type == SU_PORT_MS) {
err = sunsu_kbd_ms_init(up); err = sunsu_kbd_ms_init(up);
if (err) { if (err) {
of_iounmap(&op->resource[0],
up->port.membase, up->reg_size);
kfree(up); kfree(up);
goto out_unmap; return err;
} }
dev_set_drvdata(&op->dev, up); dev_set_drvdata(&op->dev, up);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册