]> git.baikalelectronics.ru Git - kernel.git/commit
Input: goodix - fix race on driver unbind
authorHans de Goede <hdegoede@redhat.com>
Tue, 1 Mar 2022 06:59:34 +0000 (22:59 -0800)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Tue, 1 Mar 2022 07:26:30 +0000 (23:26 -0800)
commit0c04cfdc5bc46102ff8cacf53fcfa4db08e92d37
treeb9baf75b005ef2461437d74cac991a21a3c0c3ee
parent8e93f10e177c36073c1d7c1cdbbc110ab6095028
Input: goodix - fix race on driver unbind

Because there is no way to detect if the touchscreen has pen support,
the driver is allocating and registering the input_pen input_dev on
receiving the first pen event.

But this means that the input_dev gets allocated after the request_irq()
call which means that the devm framework will free it before disabling
the irq, leaving a window where the irq handler may run and reference the
free-ed input_dev.

To fix this move the allocation of the input_pen input_dev to before
the request_irq() call, while still only registering it on the first pen
event so that the driver does not advertise pen capability on touchscreens
without it (most goodix touchscreens do not have pen support).

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Link: https://lore.kernel.org/r/20220131143539.109142-4-hdegoede@redhat.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/touchscreen/goodix.c
drivers/input/touchscreen/goodix.h