Bug in atmel-ecc driver
Uwe Kleine-König
u.kleine-koenig at pengutronix.de
Fri May 13 06:59:54 PDT 2022
Hello,
TL;DR: when a device bound to the drivers/crypto/atmel-ecc.c driver is
unbound while tfm_count isn't zero, this probably results in a
use-after-free.
The .remove function has:
if (atomic_read(&i2c_priv->tfm_count)) {
dev_err(&client->dev, "Device is busy\n");
return -EBUSY;
}
before actually calling the cleanup stuff. If this branch is hit the
result is likely:
- "Device is busy" from drivers/crypto/atmel-ecc.c
- "remove failed (EBUSY), will be ignored" from the i2c core
- the devm cleanup callbacks are called, including the one kfreeing
*i2c_priv
- at a later time atmel_ecc_i2c_client_free() is called which does
atomic_dec(&i2c_priv->tfm_count);
- *boom*
I think to fix that you need to call get_device for the i2c device
before increasing tfm_count (and a matching put_device when decreasing
it). Having said that the architecture of this driver looks strange to
me, so there might be nicer fixes (probably with more effort).
I noticed this issue while working on my quest to make i2c-remove
callbacks return void. So if you address this, it would be great if you
did that in a way that makes atmel_ecc_remove always return 0.
Best regards
Uwe
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | https://www.pengutronix.de/ |
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 488 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20220513/6c9e7b9e/attachment.sig>
More information about the linux-arm-kernel
mailing list