From: Liam Merwick <Liam.Merwick@oracle.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH 3/8] block: Null pointer dereference in blk_root_get_parent_desc()
Date: Thu, 30 Aug 2018 16:47:06 +0100 [thread overview]
Message-ID: <1535644031-848-4-git-send-email-Liam.Merwick@oracle.com> (raw)
In-Reply-To: <1535644031-848-1-git-send-email-Liam.Merwick@oracle.com>
The dev_id returned by the call to blk_get_attached_dev_id() in
blk_root_get_parent_desc() can be NULL (an internal call to
object_get_canonical_path may have returned NULL) so it should
be checked before dereferencing.
Signed-off-by: Liam Merwick <Liam.Merwick@oracle.com>
Reviewed-by: Darren Kenny <Darren.Kenny@oracle.com>
Reviewed-by: Mark Kanda <Mark.Kanda@oracle.com>
---
block/block-backend.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/block/block-backend.c b/block/block-backend.c
index fa120630be83..210eee75006a 100644
--- a/block/block-backend.c
+++ b/block/block-backend.c
@@ -136,7 +136,7 @@ static char *blk_root_get_parent_desc(BdrvChild *child)
}
dev_id = blk_get_attached_dev_id(blk);
- if (*dev_id) {
+ if (dev_id && *dev_id) {
return dev_id;
} else {
/* TODO Callback into the BB owner for something more detailed */
--
1.8.3.1
next prev parent reply other threads:[~2018-08-30 15:49 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-30 15:47 [Qemu-devel] [PATCH 0/8] off-by-one and NULL pointer accesses detected by static analysis Liam Merwick
2018-08-30 15:47 ` [Qemu-devel] [PATCH 1/8] configure: Provide option to explicitly disable AVX2 Liam Merwick
2018-08-30 15:47 ` [Qemu-devel] [PATCH 2/8] job: Fix off-by-one accesses to JobSTT and JobVerbTable Liam Merwick
2018-08-30 18:34 ` Eric Blake
2018-08-31 13:22 ` Liam Merwick
2018-08-30 15:47 ` Liam Merwick [this message]
2018-08-30 15:47 ` [Qemu-devel] [PATCH 4/8] qemu-img: potential Null pointer deref in img_commit() Liam Merwick
2018-08-30 15:47 ` [Qemu-devel] [PATCH 5/8] block: Fix potential Null pointer dereferences in vvfat.c Liam Merwick
2018-08-30 15:47 ` [Qemu-devel] [PATCH 6/8] block: dump_qlist() may dereference a Null pointer Liam Merwick
2018-08-30 18:41 ` Eric Blake
2018-08-31 13:27 ` Liam Merwick
2018-08-30 15:47 ` [Qemu-devel] [PATCH 7/8] io: file descriptor not initialized in qio_channel_command_new_spawn() Liam Merwick
2018-08-30 16:18 ` Eric Blake
2018-08-31 15:36 ` Liam Merwick
2018-08-31 15:50 ` Eric Blake
2018-08-31 16:19 ` Liam Merwick
2018-08-31 16:45 ` Eric Blake
2018-08-30 15:47 ` [Qemu-devel] [PATCH 8/8] qcow2: Read outside array bounds in qcow2_pre_write_overlap_check() Liam Merwick
2018-08-30 18:43 ` Eric Blake
2018-08-31 13:32 ` Liam Merwick
2018-08-31 15:05 ` Eric Blake
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=1535644031-848-4-git-send-email-Liam.Merwick@oracle.com \
--to=liam.merwick@oracle.com \
--cc=qemu-devel@nongnu.org \
/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).