qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] Check and report for incomplete 'global' option format
@ 2022-02-15  5:51 Rohit Kumar
  2022-02-15  9:30 ` Markus Armbruster
  0 siblings, 1 reply; 3+ messages in thread
From: Rohit Kumar @ 2022-02-15  5:51 UTC (permalink / raw)
  To: qemu-devel
  Cc: eduardo, thuth, berrange, prerna.saxena, armbru, prachatos.mitra,
	pbonzini, Rohit Kumar

Qemu might crash when provided incomplete '-global' option.
For example:
        qemu-system-x86_64 -global driver=isa-fdc
        qemu-system-x86_64: ../../devel/qemu/qapi/string-input-visitor.c:394:
        string_input_visitor_new: Assertion `str' failed.
        Aborted (core dumped)

Resolves: https://gitlab.com/qemu-project/qemu/-/issues/604
Signed-off-by: Rohit Kumar <rohit.kumar3@nutanix.com>
---
 diff to v1:
  - Removed '\n' from error log message.

 softmmu/qdev-monitor.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/softmmu/qdev-monitor.c b/softmmu/qdev-monitor.c
index 01f3834db5..51b33caeca 100644
--- a/softmmu/qdev-monitor.c
+++ b/softmmu/qdev-monitor.c
@@ -1020,6 +1020,7 @@ int qemu_global_option(const char *str)
     char driver[64], property[64];
     QemuOpts *opts;
     int rc, offset;
+    Error *err = NULL;
 
     rc = sscanf(str, "%63[^.=].%63[^=]%n", driver, property, &offset);
     if (rc == 2 && str[offset] == '=') {
@@ -1031,7 +1032,12 @@ int qemu_global_option(const char *str)
     }
 
     opts = qemu_opts_parse_noisily(&qemu_global_opts, str, false);
-    if (!opts) {
+    if (!opts || !qemu_opt_get(opts, "driver") || !qemu_opt_get(opts,"property") ||
+    !qemu_opt_get(opts, "value")) {
+        error_setg(&err, "Invalid 'global' option format! "
+        "Use -global <driver>.<property>=<value> or "
+        "-global driver=driver,property=property,value=value");
+        error_report_err(err);
         return -1;
     }
 
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-02-16  6:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-15  5:51 [PATCH v2] Check and report for incomplete 'global' option format Rohit Kumar
2022-02-15  9:30 ` Markus Armbruster
2022-02-16  6:00   ` Rohit Kumar

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).