Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1367209 > unrolled thread
| Started by | Felipe Balbi <felipe.balbi@linux.intel.com> |
|---|---|
| First post | 2016-03-30 15:30 +0200 |
| Last post | 2016-03-31 00:50 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH] usb: dwc2: gadget: avoid null dereference on incomplete transfer Felipe Balbi <felipe.balbi@linux.intel.com> - 2016-03-30 15:30 +0200
Re: [PATCH] usb: dwc2: gadget: avoid null dereference on incomplete transfer John Youn <John.Youn@synopsys.com> - 2016-03-31 00:50 +0200
| From | Felipe Balbi <felipe.balbi@linux.intel.com> |
|---|---|
| Date | 2016-03-30 15:30 +0200 |
| Subject | Re: [PATCH] usb: dwc2: gadget: avoid null dereference on incomplete transfer |
| Message-ID | <riom7-60u-27@gated-at.bofh.it> |
[Multipart message — attachments visible in raw view] — view raw
Hi,
John Keeping <john@metanate.com> writes:
> Setting up a gadget with the uac2 function results in:
>
> Unable to handle kernel NULL pointer dereference at virtual address 00000058
> ...
> PC is at dwc2_hsotg_irq+0x7f0/0x908
> LR is at dwc2_hsotg_irq+0x4c/0x908
> Backtrace:
> [<c03cd5fc>] (dwc2_hsotg_irq) from [<c00814fc>] (handle_irq_event_percpu+0x130/0x3ec)
> [<c00813cc>] (handle_irq_event_percpu) from [<c0081800>] (handle_irq_event+0x48/0x6c)
>
> In all other loops we already skip endpoints that are null, so do so
> here as well.
>
> Signed-off-by: John Keeping <john@metanate.com>
> ---
> drivers/usb/dwc2/gadget.c | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/usb/dwc2/gadget.c b/drivers/usb/dwc2/gadget.c
> index 0abf73c..df43ec0 100644
> --- a/drivers/usb/dwc2/gadget.c
> +++ b/drivers/usb/dwc2/gadget.c
> @@ -2606,7 +2606,9 @@ irq_retry:
> for (idx = 1; idx < hsotg->num_of_eps; idx++) {
> hs_ep = hsotg->eps_in[idx];
>
> - if (!hs_ep->isochronous || hs_ep->has_correct_parity)
> + if (!hs_ep ||
> + !hs_ep->isochronous ||
> + hs_ep->has_correct_parity)
this is fine (even though choice of where to break line is a bit odd),
but I have a question about how the rest of the code works (a bit
off-topic, sorry)
> continue;
>
> epctl_reg = DIEPCTL(idx);
So, this means that the first ISO endpoint without correct parity will
be used. Isn't this a bit fragile ? What happens when you use a device
with several different interfaces using several different endpoints ?
Isn't there a register where we can check which physical endpoint
generated the IRQ ? Seems like you really wanna check what:
#define DIEPINT(_a) HSOTG_REG(0x908 + ((_a) * 0x20))
say about eps_in[idx].
> @@ -2623,7 +2625,9 @@ irq_retry:
> for (idx = 1; idx < hsotg->num_of_eps; idx++) {
> hs_ep = hsotg->eps_out[idx];
>
> - if (!hs_ep->isochronous || hs_ep->has_correct_parity)
> + if (!hs_ep ||
> + !hs_ep->isochronous ||
> + hs_ep->has_correct_parity)
> continue;
>
> epctl_reg = DOEPCTL(idx);
ditto for eps_out[idx] and:
#define DOEPINT(_a) HSOTG_REG(0xB08 + ((_a) * 0x20))
comments ?
--
balbi
[toc] | [next] | [standalone]
| From | John Youn <John.Youn@synopsys.com> |
|---|---|
| Date | 2016-03-31 00:50 +0200 |
| Subject | Re: [PATCH] usb: dwc2: gadget: avoid null dereference on incomplete transfer |
| Message-ID | <rix62-3Fi-3@gated-at.bofh.it> |
| In reply to | #1367209 |
On 3/30/2016 6:22 AM, Felipe Balbi wrote:
>
> Hi,
>
> John Keeping <john@metanate.com> writes:
>> Setting up a gadget with the uac2 function results in:
>>
>> Unable to handle kernel NULL pointer dereference at virtual address 00000058
>> ...
>> PC is at dwc2_hsotg_irq+0x7f0/0x908
>> LR is at dwc2_hsotg_irq+0x4c/0x908
>> Backtrace:
>> [<c03cd5fc>] (dwc2_hsotg_irq) from [<c00814fc>] (handle_irq_event_percpu+0x130/0x3ec)
>> [<c00813cc>] (handle_irq_event_percpu) from [<c0081800>] (handle_irq_event+0x48/0x6c)
>>
>> In all other loops we already skip endpoints that are null, so do so
>> here as well.
>>
>> Signed-off-by: John Keeping <john@metanate.com>
>> ---
>> drivers/usb/dwc2/gadget.c | 8 ++++++--
>> 1 file changed, 6 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/usb/dwc2/gadget.c b/drivers/usb/dwc2/gadget.c
>> index 0abf73c..df43ec0 100644
>> --- a/drivers/usb/dwc2/gadget.c
>> +++ b/drivers/usb/dwc2/gadget.c
>> @@ -2606,7 +2606,9 @@ irq_retry:
>> for (idx = 1; idx < hsotg->num_of_eps; idx++) {
>> hs_ep = hsotg->eps_in[idx];
>>
>> - if (!hs_ep->isochronous || hs_ep->has_correct_parity)
>> + if (!hs_ep ||
>> + !hs_ep->isochronous ||
>> + hs_ep->has_correct_parity)
>
> this is fine (even though choice of where to break line is a bit odd),
> but I have a question about how the rest of the code works (a bit
> off-topic, sorry)
>
>> continue;
>>
>> epctl_reg = DIEPCTL(idx);
>
> So, this means that the first ISO endpoint without correct parity will
> be used. Isn't this a bit fragile ? What happens when you use a device
> with several different interfaces using several different endpoints ?
>
> Isn't there a register where we can check which physical endpoint
> generated the IRQ ? Seems like you really wanna check what:
>
We discussed this back when the patch was first submitted and
determined it should work fine like this. I don't remember exactly why
though.
But this ISOC parity stuff is a workaround and we have a series of
patches to correctly set up ISOC allowing us to remove it. We're doing
some final tests before we send them.
Regards,
John
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web