qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Kevin Wolf <kwolf@redhat.com>
To: qemu-devel@nongnu.org
Cc: kwolf@redhat.com, stefanha@redhat.com
Subject: [Qemu-devel] [PATCH v2 6/8] blockdev: Keep a copy of DriveInfo.serial
Date: Fri, 15 Mar 2013 10:35:06 +0100	[thread overview]
Message-ID: <1363340108-28042-7-git-send-email-kwolf@redhat.com> (raw)
In-Reply-To: <1363340108-28042-1-git-send-email-kwolf@redhat.com>

Pointing to a QemuOpts element is surprising and can lead to subtle
use-after-free errors when the QemuOpts is freed after all options are
parsed.

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
---
 blockdev.c                | 5 ++++-
 include/sysemu/blockdev.h | 2 +-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/blockdev.c b/blockdev.c
index d679174..acf1c32 100644
--- a/blockdev.c
+++ b/blockdev.c
@@ -191,6 +191,7 @@ static void drive_uninit(DriveInfo *dinfo)
     bdrv_delete(dinfo->bdrv);
     g_free(dinfo->id);
     QTAILQ_REMOVE(&drives, dinfo, next);
+    g_free(dinfo->serial);
     g_free(dinfo);
 }
 
@@ -566,7 +567,9 @@ DriveInfo *drive_init(QemuOpts *opts, BlockInterfaceType block_default_type)
     dinfo->trans = translation;
     dinfo->opts = opts;
     dinfo->refcount = 1;
-    dinfo->serial = serial;
+    if (serial != NULL) {
+        dinfo->serial = g_strdup(serial);
+    }
     QTAILQ_INSERT_TAIL(&drives, dinfo, next);
 
     bdrv_set_on_error(dinfo->bdrv, on_read_error, on_write_error);
diff --git a/include/sysemu/blockdev.h b/include/sysemu/blockdev.h
index 1fe5332..804ec88 100644
--- a/include/sysemu/blockdev.h
+++ b/include/sysemu/blockdev.h
@@ -40,7 +40,7 @@ struct DriveInfo {
     int media_cd;
     int cyls, heads, secs, trans;
     QemuOpts *opts;
-    const char *serial;
+    char *serial;
     QTAILQ_ENTRY(DriveInfo) next;
     int refcount;
 };
-- 
1.8.1.4

  parent reply	other threads:[~2013-03-15  9:35 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-15  9:35 [Qemu-devel] [PATCH v2 0/8] block: Add driver specific options Kevin Wolf
2013-03-15  9:35 ` [Qemu-devel] [PATCH v2 1/8] block: Add options QDict to .bdrv_open() Kevin Wolf
2013-03-15  9:35 ` [Qemu-devel] [PATCH v2 2/8] block: Add options QDict to bdrv_open() prototype Kevin Wolf
2013-03-15  9:35 ` [Qemu-devel] [PATCH v2 3/8] Add qdict_clone_shallow() Kevin Wolf
2013-03-15  9:35 ` [Qemu-devel] [PATCH v2 4/8] block: Add options QDict to bdrv_open_common() Kevin Wolf
2013-03-15  9:35 ` [Qemu-devel] [PATCH v2 5/8] qemu-option: Add qemu_opts_absorb_qdict() Kevin Wolf
2013-03-15  9:35 ` Kevin Wolf [this message]
2013-03-15  9:35 ` [Qemu-devel] [PATCH v2 7/8] block: Support driver specific options in drive_init() Kevin Wolf
2013-03-15  9:35 ` [Qemu-devel] [PATCH v2 8/8] qcow2: Allow lazy refcounts to be enabled on the command line Kevin Wolf
2013-03-15 15:12 ` [Qemu-devel] [PATCH v2 0/8] block: Add driver specific options 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=1363340108-28042-7-git-send-email-kwolf@redhat.com \
    --to=kwolf@redhat.com \
    --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).