diff mbox series

gpio: don't free unallocated ida on gpiochip_add_data_with_key() error path

Message ID 20181102133943.7798-1-vz@mleia.com
State New
Headers show
Series gpio: don't free unallocated ida on gpiochip_add_data_with_key() error path | expand

Commit Message

Vladimir Zapolskiy Nov. 2, 2018, 1:39 p.m. UTC
The change corrects the error path in gpiochip_add_data_with_key()
by avoiding to call ida_simple_remove(), if ida_simple_get() returns
an error.

Note that ida_simple_remove()/ida_free() throws a BUG(), if id argument
is negative, it allows to easily check the correctness of the fix by
fuzzing the return value from ida_simple_get().

Fixes: ff2b13592299 ("gpio: make the gpiochip a real device")
Cc: stable@vger.kernel.org # v4.6+
Signed-off-by: Vladimir Zapolskiy <vz@mleia.com>
---
 drivers/gpio/gpiolib.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Comments

Linus Walleij Nov. 9, 2018, 10:17 a.m. UTC | #1
On Fri, Nov 2, 2018 at 2:39 PM Vladimir Zapolskiy <vz@mleia.com> wrote:

> The change corrects the error path in gpiochip_add_data_with_key()
> by avoiding to call ida_simple_remove(), if ida_simple_get() returns
> an error.
>
> Note that ida_simple_remove()/ida_free() throws a BUG(), if id argument
> is negative, it allows to easily check the correctness of the fix by
> fuzzing the return value from ida_simple_get().
>
> Fixes: ff2b13592299 ("gpio: make the gpiochip a real device")
> Cc: stable@vger.kernel.org # v4.6+
> Signed-off-by: Vladimir Zapolskiy <vz@mleia.com>

Patch applied for fixes!

Good find Vladimir, thanks a lot.

Yours,
Linus Walleij
diff mbox series

Patch

diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c
index 230e41562462..a2cbb474901c 100644
--- a/drivers/gpio/gpiolib.c
+++ b/drivers/gpio/gpiolib.c
@@ -1295,7 +1295,7 @@  int gpiochip_add_data_with_key(struct gpio_chip *chip, void *data,
 	gdev->descs = kcalloc(chip->ngpio, sizeof(gdev->descs[0]), GFP_KERNEL);
 	if (!gdev->descs) {
 		status = -ENOMEM;
-		goto err_free_gdev;
+		goto err_free_ida;
 	}
 
 	if (chip->ngpio == 0) {
@@ -1427,8 +1427,9 @@  int gpiochip_add_data_with_key(struct gpio_chip *chip, void *data,
 	kfree_const(gdev->label);
 err_free_descs:
 	kfree(gdev->descs);
-err_free_gdev:
+err_free_ida:
 	ida_simple_remove(&gpio_ida, gdev->id);
+err_free_gdev:
 	/* failures here can mean systems won't boot... */
 	pr_err("%s: GPIOs %d..%d (%s) failed to register, %d\n", __func__,
 	       gdev->base, gdev->base + gdev->ngpio - 1,