lkml.org 
[lkml]   [2022]   [Apr]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
SubjectRe: [PATCH 4/4] xen/scsifront: harden driver against malicious backend
From
On 21.04.22 12:13, Juergen Gross wrote:
> On 20.04.22 18:13, Boris Ostrovsky wrote:
>> Just a couple of nits.
>>
>>
>> On 4/20/22 5:25 AM, Juergen Gross wrote:
>>> -static int scsifront_ring_drain(struct vscsifrnt_info *info)
>>> +static int scsifront_ring_drain(struct vscsifrnt_info *info,
>>> +                unsigned int *eoiflag)
>>>   {
>>> -    struct vscsiif_response *ring_rsp;
>>> +    struct vscsiif_response ring_rsp;
>>>       RING_IDX i, rp;
>>>       int more_to_do = 0;
>>> -    rp = info->ring.sring->rsp_prod;
>>> -    rmb();    /* ordering required respective to dom0 */
>>> +    rp = READ_ONCE(info->ring.sring->rsp_prod);
>>> +    virt_rmb();    /* ordering required respective to backend */
>>> +    if (RING_RESPONSE_PROD_OVERFLOW(&info->ring, rp)) {
>>> +        scsifront_set_error(info, "illegal number of responses");
>>
>>
>> In net and block drivers we report number of such responses. (But not in usb)
> I'm not sure the specific value is of any interest.
>
>>> +        return 0;
>>> +    }
>>>       for (i = info->ring.rsp_cons; i != rp; i++) {
>>> -        ring_rsp = RING_GET_RESPONSE(&info->ring, i);
>>> -        scsifront_do_response(info, ring_rsp);
>>> +        RING_COPY_RESPONSE(&info->ring, i, &ring_rsp);
>>> +        scsifront_do_response(info, &ring_rsp);
>>> +        if (info->host_active == STATE_ERROR)
>>> +            return 0;
>>> +        *eoiflag = 0;
>>
>>
>> *eoiflags &= ~XEN_EOI_FLAG_SPURIOUS; ?
>
> Yes, probably better.
>
>> We also use eoi_flags name in other instances in this file.
>
> I'll unify the name.

Oh, eoi_flags is used in the backend driver. So nothing to unify.


Juergen
[unhandled content-type:application/pgp-keys][unhandled content-type:application/pgp-signature]
\
 
 \ /
  Last update: 2022-09-17 16:21    [W:0.030 / U:0.568 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site