You can follow your own plan since I am an enthusiast who discovers and patches security vulnerabilities, instead of reply on the functionability.
On 4/17/23 03:33, Dongliang Mu wrote:
On 2023/4/17 18:24, Vicki Pfau wrote:I'll take care of it. I have a patch prepared, but I need to do a bit more testing before I can confirm it doesn't break one specific controller. I'll try to file it as soon as possible. Do you have a timeframe you need this by?
Hi,If this is necessary, we can change it with another device pointer. Otherwise, we need to move it after the allocation and assignment. Or move the allocation and assignment before which is not suggested.
On 4/17/23 03:01, Dongliang Mu wrote:
On 2023/4/17 17:25, Dan Carpenter wrote:Sorry, this appears to be my code, and was merged recently after a few drafts with Dmitry. This code is sensitive to being moved and only affects some controllers, so I'm looking into if I can move it into after creation of the input_dev right now. It's something I'd already thought might be necessary, but I didn't find any evidence for it before. I'll try to get back to you on that soon.
On Fri, Apr 14, 2023 at 08:55:47PM +0800, Dongliang Mu wrote:
In xpad_probe(), it does not allocate xpad->dev with input_dev type.What is a call tree for this? Actually I found it from the bug report.
Then, when it invokes dev_warn with 1st argument - &xpad->dev->dev, it
would trigger GPF.
drivers/input/joystick/xpad.c
2034 if (error)
2035 dev_warn(&xpad->dev->dev,
2036 "unable to receive magic message: %d\n",
2037 error);
2038 }
Thanks for your reply. Do I need to submit a v2 patch? Or you will take care of it?
Dongliang MuVicki
Hi Dan,Vicki
this only occurs in linux-next tree.
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/tree/drivers/input/joystick/xpad.c?n2053#n2053
Yeah, the allocation and assignment is in the last part that I missed before. We have two choices to fix this issue:Fix this by allocating xpad->dev, its error handling and cleanupThe xpad->dev = input_dev; already happens in xpad_init_input(). We
operations in the remove function.
Note that this crash does not have any reproducer, so the patch
only passes compilation testing.
shouldn't allocate it twice. I think the fix is to just use a different
device pointer for the dev_warn(). Why not use &xpad->intf->dev?
1. Change to another device pointer;
2. Move the allocation and assignment to a previous code site;
If there is no other places dereferencing this pointer before the allocation and assignment, it's better to use the 1st one.
Let me craft a v2 patch.
Sure, no problem.Reported-by: syzbot+a3f758b8d8cb7e49afec@xxxxxxxxxxxxxxxxxxxxxxxxxCould you use a Link tag to link to the bug report?
Link: https://groups.google.com/g/syzkaller-bugs/c/iMhTgpGuIbM
This needs a Fixes tag.
Fixes: db7220c48d8d ("Input: xpad - fix support for some third-party controllers")
regards,
dan carpenter