]> git.proxmox.com Git - mirror_qemu.git/commitdiff
i386: fix regression parsing multiboot initrd modules
authorDaniel P. Berrangé <berrange@redhat.com>
Mon, 14 May 2018 17:19:11 +0000 (18:19 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Tue, 17 Jul 2018 14:24:49 +0000 (16:24 +0200)
The logic for parsing the multiboot initrd modules was messed up in

  commit 950c4e6c94b15cd0d8b63891dddd7a8dbf458e6a
  Author: Daniel P. Berrangé <berrange@redhat.com>
  Date:   Mon Apr 16 12:17:43 2018 +0100

    opts: don't silently truncate long option values

Causing the length to be undercounter, and the number of modules over
counted. It also passes NULL to get_opt_value() which was not robust
at accepting a NULL value.

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Message-Id: <20180514171913.17664-2-berrange@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Tested-by: Roman Kagan <rkagan@virtuozzo.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
hw/i386/multiboot.c
util/qemu-option.c

index 7a2953e26f578907c6aa35c340dd10984b4de551..8e26545814ab866eb8d4b2f40760064a33e21af5 100644 (file)
@@ -292,8 +292,7 @@ int load_multiboot(FWCfgState *fw_cfg,
     cmdline_len += strlen(kernel_cmdline) + 1;
     if (initrd_filename) {
         const char *r = get_opt_value(initrd_filename, NULL);
-        cmdline_len += strlen(r) + 1;
-        mbs.mb_mods_avail = 1;
+        cmdline_len += strlen(initrd_filename) + 1;
         while (1) {
             mbs.mb_mods_avail++;
             r = get_opt_value(r, NULL);
index 19761e3eaff0efeae20d344c73e2a9ac98beac5c..834217fc75e4529b8bbd8fc2d7455891bd90e3ca 100644 (file)
@@ -75,7 +75,9 @@ const char *get_opt_value(const char *p, char **value)
     size_t capacity = 0, length;
     const char *offset;
 
-    *value = NULL;
+    if (value) {
+        *value = NULL;
+    }
     while (1) {
         offset = qemu_strchrnul(p, ',');
         length = offset - p;