From: Peter Maydell <peter.maydell@linaro.org>
To: Eric Blake <eblake@redhat.com>
Cc: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>,
QEMU Developers <qemu-devel@nongnu.org>
Subject: Re: nbd: bitmap_to_extents() calls nbd_extent_array_add() without checking return value: coverity false positive?
Date: Fri, 6 Nov 2020 22:53:04 +0000 [thread overview]
Message-ID: <CAFEAcA8Po-V6+b-AVxSdwrEJ7Zy2Pm7xf8Ss4fsUtWDMG=ziQw@mail.gmail.com> (raw)
In-Reply-To: <9ff386a7-c334-30ed-da79-341d75ed39b2@redhat.com>
On Fri, 6 Nov 2020 at 20:36, Eric Blake <eblake@redhat.com> wrote:
>
> On 11/6/20 11:22 AM, Peter Maydell wrote:
> > Hi; Coverity's "you usually check the return value of this function
> > but you didn't do that here" heuristic has fired on the code in
> > nbd/server.c:bitmap_to_extents() -- the function nbd_extent_array_add()
> > is called five times in server.c, and the return value is checked
> > in four of those, but not in the final call at the end of
> > bitmap_to_extents(). (CID 1436125.)
> >
> > Is this a false positive, or should the caller be handling an
> > error here ?
>
> False positive, but I don't mind tweaking the code to silence Coverity.
> This should do it; let me know if I should turn it into a formal patch.
>
> diff --git i/nbd/server.c w/nbd/server.c
> index d145e1a69083..377698a2ce85 100644
> --- i/nbd/server.c
> +++ w/nbd/server.c
> @@ -2128,9 +2128,8 @@ static void bitmap_to_extents(BdrvDirtyBitmap *bitmap,
> }
> }
>
> - if (!full) {
> - /* last non dirty extent */
> - nbd_extent_array_add(es, end - start, 0);
> + if (!full && nbd_extent_array_add(es, end - start, 0) < 0) {
> + /* last non dirty extent, not a problem if array is now full */
> }
>
> bdrv_dirty_bitmap_unlock(bitmap);
Hmm; that looks a little odd but I guess it's a bit more
documentative of the intent. Up to you whether you want
to submit it as a patch or not I guess :-)
thanks
-- PMM
next prev parent reply other threads:[~2020-11-06 22:54 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-06 17:22 nbd: bitmap_to_extents() calls nbd_extent_array_add() without checking return value: coverity false positive? Peter Maydell
2020-11-06 20:35 ` Eric Blake
2020-11-06 22:53 ` Peter Maydell [this message]
2020-11-09 7:17 ` Vladimir Sementsov-Ogievskiy
2020-11-09 15:22 ` Eric Blake
2020-11-10 7:29 ` Vladimir Sementsov-Ogievskiy
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='CAFEAcA8Po-V6+b-AVxSdwrEJ7Zy2Pm7xf8Ss4fsUtWDMG=ziQw@mail.gmail.com' \
--to=peter.maydell@linaro.org \
--cc=eblake@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=vsementsov@virtuozzo.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).