]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
gpio: sysfs: fix memory leaks and device hotplug
authorJohan Hovold <johan@kernel.org>
Tue, 21 Apr 2015 15:42:09 +0000 (17:42 +0200)
committerSasha Levin <sasha.levin@oracle.com>
Sat, 23 May 2015 19:43:19 +0000 (15:43 -0400)
commitd4b113a8840776191189952a9d194cf7c034af35
tree0e99ea299f75128fc3305cfa12bcebc4e95bfae5
parenteed9aeb7b5f84ca10bed64af7b51808540d1b881
gpio: sysfs: fix memory leaks and device hotplug

[ Upstream commit 483d821108791092798f5d230686868112927044 ]

Unregister GPIOs requested through sysfs at chip remove to avoid leaking
the associated memory and sysfs entries.

The stale sysfs entries prevented the gpio numbers from being exported
when the gpio range was later reused (e.g. at device reconnect).

This also fixes the related module-reference leak.

Note that kernfs makes sure that any on-going sysfs operations finish
before the class devices are unregistered and that further accesses
fail.

The chip exported flag is used to prevent gpiod exports during removal.
This also makes it harder to trigger, but does not fix, the related race
between gpiochip_remove and export_store, which is really a race with
gpiod_request that needs to be addressed separately.

Also note that this would prevent the crashes (e.g. NULL-dereferences)
at reconnect that affects pre-3.18 kernels, as well as use-after-free on
operations on open attribute files on pre-3.14 kernels (prior to
kernfs).

Fixes: d8f388d8dc8d ("gpio: sysfs interface")
Cc: stable <stable@vger.kernel.org> # v2.6.27: 01cca93a9491
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
drivers/gpio/gpiolib-sysfs.c