* [PATCH] usb: gadget: fsl_qe_udc: validate endpoint index for ch9 udc
@ 2023-06-28 8:15 Ma Ke
2023-06-28 17:04 ` Leo Li
0 siblings, 1 reply; 7+ messages in thread
From: Ma Ke @ 2023-06-28 8:15 UTC (permalink / raw)
To: leoyang.li; +Cc: gregkh, linux-usb, linuxppc-dev, linux-kernel, Ma Ke
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@163.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;
struct qe_ep *target_ep = &udc->eps[pipe];
u16 usep;
--
2.37.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* RE: [PATCH] usb: gadget: fsl_qe_udc: validate endpoint index for ch9 udc
2023-06-28 8:15 [PATCH] usb: gadget: fsl_qe_udc: validate endpoint index for ch9 udc Ma Ke
@ 2023-06-28 17:04 ` Leo Li
2023-06-28 19:40 ` Christophe Leroy
0 siblings, 1 reply; 7+ messages in thread
From: Leo Li @ 2023-06-28 17:04 UTC (permalink / raw)
To: Ma Ke
Cc: gregkh@linuxfoundation.org, linux-usb@vger.kernel.org,
linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org
> -----Original Message-----
> From: Ma Ke <make_ruc2021@163.com>
> Sent: Wednesday, June 28, 2023 3:15 AM
> To: Leo Li <leoyang.li@nxp.com>
> Cc: gregkh@linuxfoundation.org; linux-usb@vger.kernel.org; linuxppc-
> dev@lists.ozlabs.org; linux-kernel@vger.kernel.org; Ma Ke
> <make_ruc2021@163.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@163.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?
> struct qe_ep *target_ep = &udc->eps[pipe];
> u16 usep;
>
> --
> 2.37.2
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] usb: gadget: fsl_qe_udc: validate endpoint index for ch9 udc
2023-06-28 17:04 ` Leo Li
@ 2023-06-28 19:40 ` Christophe Leroy
2023-06-28 21:10 ` Leo Li
0 siblings, 1 reply; 7+ messages in thread
From: Christophe Leroy @ 2023-06-28 19:40 UTC (permalink / raw)
To: Leo Li, Ma Ke
Cc: gregkh@linuxfoundation.org, linux-usb@vger.kernel.org,
linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org
Le 28/06/2023 à 19:04, Leo Li a écrit :
>
>
>> -----Original Message-----
>> From: Ma Ke <make_ruc2021@163.com>
>> Sent: Wednesday, June 28, 2023 3:15 AM
>> To: Leo Li <leoyang.li@nxp.com>
>> Cc: gregkh@linuxfoundation.org; linux-usb@vger.kernel.org; linuxppc-
>> dev@lists.ozlabs.org; linux-kernel@vger.kernel.org; Ma Ke
>> <make_ruc2021@163.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@163.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 ?
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
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* RE: [PATCH] usb: gadget: fsl_qe_udc: validate endpoint index for ch9 udc
2023-06-28 19:40 ` Christophe Leroy
@ 2023-06-28 21:10 ` Leo Li
2023-06-29 5:56 ` Christophe Leroy
0 siblings, 1 reply; 7+ messages in thread
From: Leo Li @ 2023-06-28 21:10 UTC (permalink / raw)
To: Christophe Leroy, Ma Ke
Cc: gregkh@linuxfoundation.org, linux-usb@vger.kernel.org,
linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org
> -----Original Message-----
> From: Christophe Leroy <christophe.leroy@csgroup.eu>
> Sent: Wednesday, June 28, 2023 2:40 PM
> To: Leo Li <leoyang.li@nxp.com>; Ma Ke <make_ruc2021@163.com>
> Cc: gregkh@linuxfoundation.org; linux-usb@vger.kernel.org; linuxppc-
> dev@lists.ozlabs.org; linux-kernel@vger.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@163.com>
> >> Sent: Wednesday, June 28, 2023 3:15 AM
> >> To: Leo Li <leoyang.li@nxp.com>
> >> Cc: gregkh@linuxfoundation.org; linux-usb@vger.kernel.org; linuxppc-
> >> dev@lists.ozlabs.org; linux-kernel@vger.kernel.org; Ma Ke
> >> <make_ruc2021@163.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@163.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?
>
> 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
> >
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] usb: gadget: fsl_qe_udc: validate endpoint index for ch9 udc
2023-06-28 21:10 ` Leo Li
@ 2023-06-29 5:56 ` Christophe Leroy
2023-06-29 8:41 ` gregkh
0 siblings, 1 reply; 7+ messages in thread
From: Christophe Leroy @ 2023-06-29 5:56 UTC (permalink / raw)
To: Leo Li, Ma Ke
Cc: gregkh@linuxfoundation.org, linux-usb@vger.kernel.org,
linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org
Le 28/06/2023 à 23:10, Leo Li a écrit :
>
>
>> -----Original Message-----
>> From: Christophe Leroy <christophe.leroy@csgroup.eu>
>> Sent: Wednesday, June 28, 2023 2:40 PM
>> To: Leo Li <leoyang.li@nxp.com>; Ma Ke <make_ruc2021@163.com>
>> Cc: gregkh@linuxfoundation.org; linux-usb@vger.kernel.org; linuxppc-
>> dev@lists.ozlabs.org; linux-kernel@vger.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@163.com>
>>>> Sent: Wednesday, June 28, 2023 3:15 AM
>>>> To: Leo Li <leoyang.li@nxp.com>
>>>> Cc: gregkh@linuxfoundation.org; linux-usb@vger.kernel.org; linuxppc-
>>>> dev@lists.ozlabs.org; linux-kernel@vger.kernel.org; Ma Ke
>>>> <make_ruc2021@163.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@163.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
>>>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] usb: gadget: fsl_qe_udc: validate endpoint index for ch9 udc
2023-06-29 5:56 ` Christophe Leroy
@ 2023-06-29 8:41 ` gregkh
2023-06-29 15:13 ` Leo Li
0 siblings, 1 reply; 7+ messages in thread
From: gregkh @ 2023-06-29 8:41 UTC (permalink / raw)
To: Christophe Leroy
Cc: Leo Li, Ma Ke, linux-usb@vger.kernel.org,
linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org
On Thu, Jun 29, 2023 at 05:56:30AM +0000, Christophe Leroy wrote:
>
>
> Le 28/06/2023 à 23:10, Leo Li a écrit :
> >
> >
> >> -----Original Message-----
> >> From: Christophe Leroy <christophe.leroy@csgroup.eu>
> >> Sent: Wednesday, June 28, 2023 2:40 PM
> >> To: Leo Li <leoyang.li@nxp.com>; Ma Ke <make_ruc2021@163.com>
> >> Cc: gregkh@linuxfoundation.org; linux-usb@vger.kernel.org; linuxppc-
> >> dev@lists.ozlabs.org; linux-kernel@vger.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@163.com>
> >>>> Sent: Wednesday, June 28, 2023 3:15 AM
> >>>> To: Leo Li <leoyang.li@nxp.com>
> >>>> Cc: gregkh@linuxfoundation.org; linux-usb@vger.kernel.org; linuxppc-
> >>>> dev@lists.ozlabs.org; linux-kernel@vger.kernel.org; Ma Ke
> >>>> <make_ruc2021@163.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@163.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.
This is fine as-is, no need to change anything.
greg k-h
^ permalink raw reply [flat|nested] 7+ messages in thread
* RE: [PATCH] usb: gadget: fsl_qe_udc: validate endpoint index for ch9 udc
2023-06-29 8:41 ` gregkh
@ 2023-06-29 15:13 ` Leo Li
0 siblings, 0 replies; 7+ messages in thread
From: Leo Li @ 2023-06-29 15:13 UTC (permalink / raw)
To: gregkh@linuxfoundation.org, Christophe Leroy
Cc: Ma Ke, linux-usb@vger.kernel.org, linuxppc-dev@lists.ozlabs.org,
linux-kernel@vger.kernel.org
> -----Original Message-----
> From: gregkh@linuxfoundation.org <gregkh@linuxfoundation.org>
> Sent: Thursday, June 29, 2023 3:41 AM
> To: Christophe Leroy <christophe.leroy@csgroup.eu>
> Cc: Leo Li <leoyang.li@nxp.com>; Ma Ke <make_ruc2021@163.com>; linux-
> usb@vger.kernel.org; linuxppc-dev@lists.ozlabs.org; linux-
> kernel@vger.kernel.org
> Subject: Re: [PATCH] usb: gadget: fsl_qe_udc: validate endpoint index for
> ch9 udc
>
> On Thu, Jun 29, 2023 at 05:56:30AM +0000, Christophe Leroy wrote:
> >
> >
> > Le 28/06/2023 à 23:10, Leo Li a écrit :
> > >
> > >
> > >> -----Original Message-----
> > >> From: Christophe Leroy <christophe.leroy@csgroup.eu>
> > >> Sent: Wednesday, June 28, 2023 2:40 PM
> > >> To: Leo Li <leoyang.li@nxp.com>; Ma Ke <make_ruc2021@163.com>
> > >> Cc: gregkh@linuxfoundation.org; linux-usb@vger.kernel.org;
> > >> linuxppc- dev@lists.ozlabs.org; linux-kernel@vger.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@163.com>
> > >>>> Sent: Wednesday, June 28, 2023 3:15 AM
> > >>>> To: Leo Li <leoyang.li@nxp.com>
> > >>>> Cc: gregkh@linuxfoundation.org; linux-usb@vger.kernel.org;
> > >>>> linuxppc- dev@lists.ozlabs.org; linux-kernel@vger.kernel.org; Ma
> > >>>> Ke <make_ruc2021@163.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@163.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.
>
> This is fine as-is, no need to change anything.
With the approval from Greg, I have no objection to the patch.
Acked-by: Li Yang <leoyang.li@nxp.com>
Regards,
Leo
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-06-29 15:13 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-28 8:15 [PATCH] usb: gadget: fsl_qe_udc: validate endpoint index for ch9 udc Ma Ke
2023-06-28 17:04 ` Leo Li
2023-06-28 19:40 ` Christophe Leroy
2023-06-28 21:10 ` Leo Li
2023-06-29 5:56 ` Christophe Leroy
2023-06-29 8:41 ` gregkh
2023-06-29 15:13 ` Leo Li
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).