qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com>
To: qemu-devel@nongnu.org, qemu-block@nongnu.org
Cc: kwolf@redhat.com, vsementsov@virtuozzo.com, mreitz@redhat.com,
	andrey.shinkevich@virtuozzo.com, den@openvz.org
Subject: [Qemu-devel] [PATCH v4 7/7] block/nbd: NBDReply is used being uninitialized
Date: Fri, 19 Jul 2019 12:40:04 +0300	[thread overview]
Message-ID: <1563529204-3368-8-git-send-email-andrey.shinkevich@virtuozzo.com> (raw)
In-Reply-To: <1563529204-3368-1-git-send-email-andrey.shinkevich@virtuozzo.com>

In case nbd_co_receive_one_chunk() fails in
nbd_reply_chunk_iter_receive(), 'NBDReply reply' parameter is used in
the check nbd_reply_is_simple() without being initialized. The iotest
083 does not pass under the Valgrind: $./check -nbd -valgrind 083.
The alternative solution is to swap the operands in the condition:
'if (s->quit || nbd_reply_is_simple(reply))'

Signed-off-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com>
---
 block/nbd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/block/nbd.c b/block/nbd.c
index 81edabb..8480ad4 100644
--- a/block/nbd.c
+++ b/block/nbd.c
@@ -786,7 +786,7 @@ static int nbd_co_receive_cmdread_reply(BDRVNBDState *s, uint64_t handle,
                                         int *request_ret, Error **errp)
 {
     NBDReplyChunkIter iter;
-    NBDReply reply;
+    NBDReply reply = {};
     void *payload = NULL;
     Error *local_err = NULL;
 
-- 
1.8.3.1



  parent reply	other threads:[~2019-07-19  9:40 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-19  9:39 [Qemu-devel] [PATCH v4 0/7] Allow Valgrind checking all QEMU processes Andrey Shinkevich
2019-07-19  9:39 ` [Qemu-devel] [PATCH v4 1/7] iotests: allow " Andrey Shinkevich
2019-07-19  9:39 ` [Qemu-devel] [PATCH v4 2/7] iotests: exclude killed processes from running under Valgrind Andrey Shinkevich
2019-07-19  9:40 ` [Qemu-devel] [PATCH v4 3/7] iotests: Add casenotrun report to bash tests Andrey Shinkevich
2019-07-19  9:40 ` [Qemu-devel] [PATCH v4 4/7] iotests: Valgrind fails with nonexistent directory Andrey Shinkevich
2019-07-19  9:40 ` [Qemu-devel] [PATCH v4 5/7] iotests: extended timeout under Valgrind Andrey Shinkevich
2019-07-19  9:40 ` [Qemu-devel] [PATCH v4 6/7] iotests: extend sleeping time " Andrey Shinkevich
2019-07-19  9:40 ` Andrey Shinkevich [this message]
2019-07-19 14:34   ` [Qemu-devel] [PATCH v4 7/7] block/nbd: NBDReply is used being uninitialized Eric Blake
2019-07-19 14:43     ` Andrey Shinkevich
2019-07-19 14:44     ` Eric Blake
2019-07-19 15:00       ` Andrey Shinkevich
2019-07-19 15:15         ` Eric Blake
2019-07-19 15:43           ` Andrey Shinkevich

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=1563529204-3368-8-git-send-email-andrey.shinkevich@virtuozzo.com \
    --to=andrey.shinkevich@virtuozzo.com \
    --cc=den@openvz.org \
    --cc=kwolf@redhat.com \
    --cc=mreitz@redhat.com \
    --cc=qemu-block@nongnu.org \
    --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).