* [PATCH] HID: magicmouse: Fix an error handling path in magicmouse_probe()
@ 2021-12-28 21:09 Christophe JAILLET
2021-12-29 7:50 ` José Expósito
2022-01-06 13:04 ` Jiri Kosina
0 siblings, 2 replies; 4+ messages in thread
From: Christophe JAILLET @ 2021-12-28 21:09 UTC (permalink / raw)
To: jikos, benjamin.tissoires, jose.exposito89
Cc: linux-input, linux-kernel, kernel-janitors, Christophe JAILLET
If the timer introduced by the commit below is started, then it must be
deleted in the error handling of the probe. Otherwise it would trigger
once the driver is no more.
Fixes: 0b91b4e4dae6 ("HID: magicmouse: Report battery level over USB")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
---
drivers/hid/hid-magicmouse.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/hid/hid-magicmouse.c b/drivers/hid/hid-magicmouse.c
index eba1e8087bfd..b8b08f0a8c54 100644
--- a/drivers/hid/hid-magicmouse.c
+++ b/drivers/hid/hid-magicmouse.c
@@ -873,6 +873,7 @@ static int magicmouse_probe(struct hid_device *hdev,
return 0;
err_stop_hw:
+ del_timer_sync(&msc->battery_timer);
hid_hw_stop(hdev);
return ret;
}
--
2.32.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] HID: magicmouse: Fix an error handling path in magicmouse_probe()
2021-12-28 21:09 [PATCH] HID: magicmouse: Fix an error handling path in magicmouse_probe() Christophe JAILLET
@ 2021-12-29 7:50 ` José Expósito
2021-12-29 8:42 ` Christophe JAILLET
2022-01-06 13:04 ` Jiri Kosina
1 sibling, 1 reply; 4+ messages in thread
From: José Expósito @ 2021-12-29 7:50 UTC (permalink / raw)
To: Christophe JAILLET
Cc: jikos, benjamin.tissoires, linux-input, linux-kernel,
kernel-janitors
On Tue, Dec 28, 2021 at 10:09:17PM +0100, Christophe JAILLET wrote:
> If the timer introduced by the commit below is started, then it must be
> deleted in the error handling of the probe. Otherwise it would trigger
> once the driver is no more.
>
> Fixes: 0b91b4e4dae6 ("HID: magicmouse: Report battery level over USB")
> Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
> ---
> drivers/hid/hid-magicmouse.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/hid/hid-magicmouse.c b/drivers/hid/hid-magicmouse.c
> index eba1e8087bfd..b8b08f0a8c54 100644
> --- a/drivers/hid/hid-magicmouse.c
> +++ b/drivers/hid/hid-magicmouse.c
> @@ -873,6 +873,7 @@ static int magicmouse_probe(struct hid_device *hdev,
>
> return 0;
> err_stop_hw:
> + del_timer_sync(&msc->battery_timer);
> hid_hw_stop(hdev);
> return ret;
> }
> --
> 2.32.0
>
My bad, thanks for catching it!
Tested-by: José Expósito <jose.exposito89@gmail.com>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] HID: magicmouse: Fix an error handling path in magicmouse_probe()
2021-12-29 7:50 ` José Expósito
@ 2021-12-29 8:42 ` Christophe JAILLET
0 siblings, 0 replies; 4+ messages in thread
From: Christophe JAILLET @ 2021-12-29 8:42 UTC (permalink / raw)
To: José Expósito
Cc: jikos, benjamin.tissoires, linux-input, linux-kernel,
kernel-janitors
Le 29/12/2021 à 08:50, José Expósito a écrit :
> On Tue, Dec 28, 2021 at 10:09:17PM +0100, Christophe JAILLET wrote:
>> If the timer introduced by the commit below is started, then it must be
>> deleted in the error handling of the probe. Otherwise it would trigger
>> once the driver is no more.
>>
>> Fixes: 0b91b4e4dae6 ("HID: magicmouse: Report battery level over USB")
>> Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
>> ---
>> drivers/hid/hid-magicmouse.c | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/drivers/hid/hid-magicmouse.c b/drivers/hid/hid-magicmouse.c
>> index eba1e8087bfd..b8b08f0a8c54 100644
>> --- a/drivers/hid/hid-magicmouse.c
>> +++ b/drivers/hid/hid-magicmouse.c
>> @@ -873,6 +873,7 @@ static int magicmouse_probe(struct hid_device *hdev,
>>
>> return 0;
>> err_stop_hw:
>> + del_timer_sync(&msc->battery_timer);
>> hid_hw_stop(hdev);
>> return ret;
>> }
>> --
>> 2.32.0
>>
>
> My bad, thanks for catching it!
>
> Tested-by: José Expósito <jose.exposito89@gmail.com>
>
Hi, just in case, I got a reply from syzbot that this patch fixes:
https://syzkaller.appspot.com/bug?id=ae4e9aaf5651e1d6895071208c7844d4fdfbe30c
If it is the same issue, we can add:
Reported-by: syzbot+a437546ec71b04dfb5ac@syzkaller.appspotmail.com
I've not found it with syzbot, but with a coccinelle script which tries
to spot things that are in the remove function and should also be in the
error handling path of the probe.
However, if it help syzbot, I don't care mentioning it.
CJ
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] HID: magicmouse: Fix an error handling path in magicmouse_probe()
2021-12-28 21:09 [PATCH] HID: magicmouse: Fix an error handling path in magicmouse_probe() Christophe JAILLET
2021-12-29 7:50 ` José Expósito
@ 2022-01-06 13:04 ` Jiri Kosina
1 sibling, 0 replies; 4+ messages in thread
From: Jiri Kosina @ 2022-01-06 13:04 UTC (permalink / raw)
To: Christophe JAILLET
Cc: benjamin.tissoires, jose.exposito89, linux-input, linux-kernel,
kernel-janitors
On Tue, 28 Dec 2021, Christophe JAILLET wrote:
> If the timer introduced by the commit below is started, then it must be
> deleted in the error handling of the probe. Otherwise it would trigger
> once the driver is no more.
>
> Fixes: 0b91b4e4dae6 ("HID: magicmouse: Report battery level over USB")
> Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
> ---
> drivers/hid/hid-magicmouse.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/hid/hid-magicmouse.c b/drivers/hid/hid-magicmouse.c
> index eba1e8087bfd..b8b08f0a8c54 100644
> --- a/drivers/hid/hid-magicmouse.c
> +++ b/drivers/hid/hid-magicmouse.c
> @@ -873,6 +873,7 @@ static int magicmouse_probe(struct hid_device *hdev,
>
> return 0;
> err_stop_hw:
> + del_timer_sync(&msc->battery_timer);
> hid_hw_stop(hdev);
> return ret;
> }
Applied, thanks.
--
Jiri Kosina
SUSE Labs
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-01-06 13:04 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-28 21:09 [PATCH] HID: magicmouse: Fix an error handling path in magicmouse_probe() Christophe JAILLET
2021-12-29 7:50 ` José Expósito
2021-12-29 8:42 ` Christophe JAILLET
2022-01-06 13:04 ` Jiri Kosina
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox