From: Faisal Hassan <quic_faisalh@quicinc.com>
To: Johan Hovold <johan@kernel.org>
Cc: Thinh Nguyen <Thinh.Nguyen@synopsys.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
<linux-arm-msm@vger.kernel.org>, <linux-usb@vger.kernel.org>,
<linux-kernel@vger.kernel.org>, <stable@vger.kernel.org>
Subject: Re: [PATCH] usb: dwc3: qcom: fix NULL pointer dereference on dwc3_qcom_read_usb2_speed
Date: Fri, 23 Aug 2024 09:26:18 +0530 [thread overview]
Message-ID: <a3facdb7-e38e-4ef0-aff6-3e6aff0f9d88@quicinc.com> (raw)
In-Reply-To: <ZscgKygXTFON3lKk@hovoldconsulting.com>
On 8/22/2024 4:55 PM, Johan Hovold wrote:
> On Tue, Aug 13, 2024 at 04:48:47PM +0530, Faisal Hassan wrote:
>> Null pointer dereference occurs when accessing 'hcd' to detect speed
>> from dwc3_qcom_suspend after the xhci-hcd is unbound.
>
> Why are you unbinding the xhci driver?
>
On our automotive platforms, when preparing for suspend, a script
unbinds the xhci driver to remove all devices, ensuring the platform
reaches the lowest power state.
>> To avoid this issue, ensure to check for NULL in dwc3_qcom_read_usb2_speed.
>>
>> echo xhci-hcd.0.auto > /sys/bus/platform/drivers/xhci-hcd/unbind
>> xhci_plat_remove() -> usb_put_hcd() -> hcd_release() -> kfree(hcd)
>>
>> Unable to handle kernel NULL pointer dereference at virtual address
>> 0000000000000060
>> Call trace:
>> dwc3_qcom_suspend.part.0+0x17c/0x2d0 [dwc3_qcom]
>> dwc3_qcom_runtime_suspend+0x2c/0x40 [dwc3_qcom]
>> pm_generic_runtime_suspend+0x30/0x44
>> __rpm_callback+0x4c/0x190
>> rpm_callback+0x6c/0x80
>> rpm_suspend+0x10c/0x620
>> pm_runtime_work+0xc8/0xe0
>> process_one_work+0x1e4/0x4f4
>> worker_thread+0x64/0x43c
>> kthread+0xec/0x100
>> ret_from_fork+0x10/0x20
>>
>> Fixes: c5f14abeb52b ("usb: dwc3: qcom: fix peripheral and OTG suspend")
>
> This is clearly not the commit that introduced this issue, please be
> more careful.
>
My mistake, I should have verified that. I appreciate your feedback.
I’ll make sure to be more careful in the future.
> Also make sure to CC the author of any patch introducing a bug so that
> they may help with review.
>
Understood. I’ll ensure to CC the author from next time.
>> Cc: stable@vger.kernel.org
>> Signed-off-by: Faisal Hassan <quic_faisalh@quicinc.com>
>> ---
>> drivers/usb/dwc3/dwc3-qcom.c | 4 +++-
>> 1 file changed, 3 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/usb/dwc3/dwc3-qcom.c b/drivers/usb/dwc3/dwc3-qcom.c
>> index 88fb6706a18d..0c7846478655 100644
>> --- a/drivers/usb/dwc3/dwc3-qcom.c
>> +++ b/drivers/usb/dwc3/dwc3-qcom.c
>> @@ -319,13 +319,15 @@ static bool dwc3_qcom_is_host(struct dwc3_qcom *qcom)
>> static enum usb_device_speed dwc3_qcom_read_usb2_speed(struct dwc3_qcom *qcom, int port_index)
>> {
>> struct dwc3 *dwc = platform_get_drvdata(qcom->dwc3);
>> - struct usb_device *udev;
>> + struct usb_device __maybe_unused *udev;
>> struct usb_hcd __maybe_unused *hcd;
>>
>> /*
>> * FIXME: Fix this layering violation.
>> */
>> hcd = platform_get_drvdata(dwc->xhci);
>> + if (!hcd)
>> + return USB_SPEED_UNKNOWN;
>
> This is just papering over the real issue here which is the layering
> violation of having drivers accessing driver data of their children.
>
> Nothing is preventing the driver data from being deallocated after you
> check for NULL here.
>
> I suggest leaving this as is until Bjorn's patches that should address
> this properly lands.
>
I agree that this part needs to be cleaned up. Currently, this is 100%
reproducible on our platform, and adding this NULL check is very
helpful, but I agree that the vulnerability is still not completely
eliminated.
Until this part is cleaned up, can this check be added to reduce the risk?
>>
>> #ifdef CONFIG_USB
>> udev = usb_hub_find_child(hcd->self.root_hub, port_index + 1);
>
> Johan
Thanks,
Faisal
next prev parent reply other threads:[~2024-08-23 3:56 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-13 11:18 [PATCH] usb: dwc3: qcom: fix NULL pointer dereference on dwc3_qcom_read_usb2_speed Faisal Hassan
2024-08-14 0:17 ` Thinh Nguyen
2024-08-14 5:35 ` Prashanth K
2024-08-14 11:12 ` Faisal Hassan
2024-08-14 23:05 ` Thinh Nguyen
2024-08-22 9:33 ` Greg Kroah-Hartman
2024-08-23 3:55 ` Faisal Hassan
2024-08-22 11:25 ` Johan Hovold
2024-08-23 3:56 ` Faisal Hassan [this message]
2024-08-23 6:14 ` Greg Kroah-Hartman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=a3facdb7-e38e-4ef0-aff6-3e6aff0f9d88@quicinc.com \
--to=quic_faisalh@quicinc.com \
--cc=Thinh.Nguyen@synopsys.com \
--cc=gregkh@linuxfoundation.org \
--cc=johan@kernel.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox