lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Thu, 29 Jun 2023 05:56:30 +0000
From:   Christophe Leroy <christophe.leroy@...roup.eu>
To:     Leo Li <leoyang.li@....com>, Ma Ke <make_ruc2021@....com>
CC:     "gregkh@...uxfoundation.org" <gregkh@...uxfoundation.org>,
        "linux-usb@...r.kernel.org" <linux-usb@...r.kernel.org>,
        "linuxppc-dev@...ts.ozlabs.org" <linuxppc-dev@...ts.ozlabs.org>,
        "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] usb: gadget: fsl_qe_udc: validate endpoint index for ch9
 udc



Le 28/06/2023 à 23:10, Leo Li a écrit :
> 
> 
>> -----Original Message-----
>> From: Christophe Leroy <christophe.leroy@...roup.eu>
>> Sent: Wednesday, June 28, 2023 2:40 PM
>> To: Leo Li <leoyang.li@....com>; Ma Ke <make_ruc2021@....com>
>> Cc: gregkh@...uxfoundation.org; linux-usb@...r.kernel.org; linuxppc-
>> dev@...ts.ozlabs.org; linux-kernel@...r.kernel.org
>> Subject: Re: [PATCH] usb: gadget: fsl_qe_udc: validate endpoint index for
>> ch9 udc
>>
>>
>>
>> Le 28/06/2023 à 19:04, Leo Li a écrit :
>>>
>>>
>>>> -----Original Message-----
>>>> From: Ma Ke <make_ruc2021@....com>
>>>> Sent: Wednesday, June 28, 2023 3:15 AM
>>>> To: Leo Li <leoyang.li@....com>
>>>> Cc: gregkh@...uxfoundation.org; linux-usb@...r.kernel.org; linuxppc-
>>>> dev@...ts.ozlabs.org; linux-kernel@...r.kernel.org; Ma Ke
>>>> <make_ruc2021@....com>
>>>> Subject: [PATCH] usb: gadget: fsl_qe_udc: validate endpoint index for
>>>> ch9 udc
>>>>
>>>> We should verify the bound of the array to assure that host may not
>>>> manipulate the index to point past endpoint array.
>>>>
>>>> Signed-off-by: Ma Ke <make_ruc2021@....com>
>>>> ---
>>>>    drivers/usb/gadget/udc/fsl_qe_udc.c | 2 ++
>>>>    1 file changed, 2 insertions(+)
>>>>
>>>> diff --git a/drivers/usb/gadget/udc/fsl_qe_udc.c
>>>> b/drivers/usb/gadget/udc/fsl_qe_udc.c
>>>> index 3b1cc8fa30c8..f4e5cbd193b7 100644
>>>> --- a/drivers/usb/gadget/udc/fsl_qe_udc.c
>>>> +++ b/drivers/usb/gadget/udc/fsl_qe_udc.c
>>>> @@ -1959,6 +1959,8 @@ static void ch9getstatus(struct qe_udc *udc, u8
>>>> request_type, u16 value,
>>>>    	} else if ((request_type & USB_RECIP_MASK) ==
>>>> USB_RECIP_ENDPOINT) {
>>>>    		/* Get endpoint status */
>>>>    		int pipe = index & USB_ENDPOINT_NUMBER_MASK;
>>>> +		if (pipe >= USB_MAX_ENDPOINTS)
>>>> +			goto stall;
>>>
>>> Thanks.  This seems to be the right thing to do.  But normally we don't mix
>> declarations with code within a code block.  Could we re-arrange the code a
>> little bit so declarations stay on top?
>>
>> But we are at the start of a code block aren't we ?
> 
> But they were at the beginning of a { } block which is compliant with the C89 standard.  I know gcc is more relaxed from this.  But it is probably still good to stick to the standard?

Sorry I misread the patch and failed to see that the declaration block 
was continuing after the change.

So yes don't interleave code with declarations. Leave declaration at the 
top of a block with a blank line between declarations and code.

> 
>>
>> The only missing thing is the blank line between the declarations and the
>> code, so that we clearly see where declarations end and where code start.
>>
>>>
>>>>    		struct qe_ep *target_ep = &udc->eps[pipe];
>>>>    		u16 usep;
>>>>
>>>> --
>>>> 2.37.2
>>>

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ