qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Hanna Czenczek <hreitz@redhat.com>
To: Stefan Hajnoczi <stefanha@redhat.com>
Cc: qemu-block@nongnu.org, qemu-devel@nongnu.org,
	Kevin Wolf <kwolf@redhat.com>,
	Peter Maydell <peter.maydell@linaro.org>
Subject: Re: [PATCH] block: Fix pad_request's request restriction
Date: Wed, 12 Jul 2023 09:41:05 +0200	[thread overview]
Message-ID: <d4459ee1-bdea-bff0-ab99-b38de004c2a7@redhat.com> (raw)
In-Reply-To: <20230711202321.GB154686@fedora>

On 11.07.23 22:23, Stefan Hajnoczi wrote:
> On Fri, Jun 09, 2023 at 10:33:16AM +0200, Hanna Czenczek wrote:
>> bdrv_pad_request() relies on requests' lengths not to exceed SIZE_MAX,
>> which bdrv_check_qiov_request() does not guarantee.
>>
>> bdrv_check_request32() however will guarantee this, and both of
>> bdrv_pad_request()'s callers (bdrv_co_preadv_part() and
>> bdrv_co_pwritev_part()) already run it before calling
>> bdrv_pad_request().  Therefore, bdrv_pad_request() can safely call
>> bdrv_check_request32() without expecting error, too.
>>
>> There is one difference between bdrv_check_qiov_request() and
>> bdrv_check_request32(): The former takes an errp, the latter does not,
>> so we can no longer just pass &error_abort.  Instead, we need to check
>> the returned value.  While we do expect success (because the callers
>> have already run this function), an assert(ret == 0) is not much simpler
>> than just to return an error if it occurs, so let us handle errors by
>> returning them up the stack now.
> Is this patch intended to silence a Coverity warning or can this be
> triggered by a guest?

Neither.  There was a Coverity warning about the `assert(*bytes <= 
SIZE_MAX)`, which is always true on 32-bit architectures. Regardless of 
Coverity, Peter inquired how bdrv_check_qiov_request() would guarantee 
this condition (as the comments I’ve put above the assertions say).  It 
doesn’t, only bdrv_check_request32() does, which I was thinking of, and 
just confused the two.

As the commit message says, all callers already run 
bdrv_check_request32(), so I expect this change to functionally be a 
no-op.  (That is why the pre-patch code runs bdrv_check_qiov_request() 
with `&error_abort`.)

> I find this commit description and patch confusing. Instead of checking
> the actual SIZE_MAX value that bdrv_pad_request() relies on, we use a
> 32-bit offsets/lengths helper because it checks INT_MAX or SIZE_MAX (but
> really INT_MAX, because that's always smaller on host architectures that
> QEMU supports).

I preferred to use a bounds-checking function that we already use for 
requests, and that happens to be used to limit all I/O that ends up here 
in bdrv_pad_request() anyway, instead of adding a new specific limit.

It doesn’t matter to me, though.  The callers already ensure that 
everything is in bounds, so I’d be happy with anything, ranging from 
keeping the bare assertions with no checks beforehand, over specifically 
checking SIZE_MAX and returning an error then, to bdrv_check_request32().

(I thought repeating the simple bounds check that all callers already 
did for verbosity would be the most robust and obvious way to do it, but 
now I’m biting myself for not just using bare assertions annotated with 
“Caller must guarantee this” from the start...)

Hanna

> Vladimir: Is this the intended use of bdrv_check_request32()?
>
>> Reported-by: Peter Maydell <peter.maydell@linaro.org>
>> Fixes: 18743311b829cafc1737a5f20bc3248d5f91ee2a
>>         ("block: Collapse padded I/O vecs exceeding IOV_MAX")
>> Signed-off-by: Hanna Czenczek <hreitz@redhat.com>
>> ---
>>   block/io.c | 8 ++++++--
>>   1 file changed, 6 insertions(+), 2 deletions(-)
>> diff --git a/block/io.c b/block/io.c
>> index 30748f0b59..e43b4ad09b 100644
>> --- a/block/io.c
>> +++ b/block/io.c
>> @@ -1710,7 +1710,11 @@ static int bdrv_pad_request(BlockDriverState *bs,
>>       int sliced_niov;
>>       size_t sliced_head, sliced_tail;
>>   
>> -    bdrv_check_qiov_request(*offset, *bytes, *qiov, *qiov_offset, &error_abort);
>> +    /* Should have been checked by the caller already */
>> +    ret = bdrv_check_request32(*offset, *bytes, *qiov, *qiov_offset);
>> +    if (ret < 0) {
>> +        return ret;
>> +    }
>>   
>>       if (!bdrv_init_padding(bs, *offset, *bytes, write, pad)) {
>>           if (padded) {
>> @@ -1723,7 +1727,7 @@ static int bdrv_pad_request(BlockDriverState *bs,
>>                                     &sliced_head, &sliced_tail,
>>                                     &sliced_niov);
>>   
>> -    /* Guaranteed by bdrv_check_qiov_request() */
>> +    /* Guaranteed by bdrv_check_request32() */
>>       assert(*bytes <= SIZE_MAX);
>>       ret = bdrv_create_padded_qiov(bs, pad, sliced_iov, sliced_niov,
>>                                     sliced_head, *bytes);
>> -- 
>> 2.40.1
>>



  reply	other threads:[~2023-07-12  7:43 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-09  8:33 [PATCH] block: Fix pad_request's request restriction Hanna Czenczek
2023-07-10 12:10 ` Hanna Czenczek
2023-07-11 20:23 ` Stefan Hajnoczi
2023-07-12  7:41   ` Hanna Czenczek [this message]
2023-07-12 14:15     ` Stefan Hajnoczi
2023-07-12 14:50       ` Hanna Czenczek
2023-07-12 15:02         ` Peter Maydell
2023-07-12 19:32         ` Stefan Hajnoczi

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=d4459ee1-bdea-bff0-ab99-b38de004c2a7@redhat.com \
    --to=hreitz@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@redhat.com \
    /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;
as well as URLs for NNTP newsgroup(s).