2 * Commandline option parsing functions
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 * Copyright (c) 2009 Kevin Wolf <kwolf@redhat.com>
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 #include "qemu/osdep.h"
28 #include "qapi/error.h"
29 #include "qemu/error-report.h"
30 #include "qapi/qmp/qbool.h"
31 #include "qapi/qmp/qdict.h"
32 #include "qapi/qmp/qnum.h"
33 #include "qapi/qmp/qstring.h"
34 #include "qapi/qmp/qerror.h"
35 #include "qemu/option_int.h"
36 #include "qemu/cutils.h"
38 #include "qemu/help_option.h"
41 * Extracts the name of an option from the parameter string (p points at the
42 * first byte of the option name)
44 * The option name is delimited by delim (usually , or =) or the string end
45 * and is copied into option. The caller is responsible for free'ing option
46 * when no longer required.
48 * The return value is the position of the delimiter/zero byte after the option
51 static const char *get_opt_name(const char *p
, char **option
, char delim
)
53 char *offset
= strchr(p
, delim
);
56 *option
= g_strndup(p
, offset
- p
);
59 *option
= g_strdup(p
);
65 * Extracts the value of an option from the parameter string p (p points at the
66 * first byte of the option value)
68 * This function is comparable to get_opt_name with the difference that the
69 * delimiter is fixed to be comma which starts a new option. To specify an
70 * option value that contains commas, double each comma.
72 const char *get_opt_value(const char *p
, char **value
)
74 size_t capacity
= 0, length
;
79 offset
= qemu_strchrnul(p
, ',');
81 if (*offset
!= '\0' && *(offset
+ 1) == ',') {
84 *value
= g_renew(char, *value
, capacity
+ length
+ 1);
85 strncpy(*value
+ capacity
, p
, length
);
86 (*value
)[capacity
+ length
] = '\0';
88 if (*offset
== '\0' ||
89 *(offset
+ 1) != ',') {
93 p
+= (offset
- p
) + 2;
99 static void parse_option_bool(const char *name
, const char *value
, bool *ret
,
102 if (!strcmp(value
, "on")) {
104 } else if (!strcmp(value
, "off")) {
107 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
,
108 name
, "'on' or 'off'");
112 static void parse_option_number(const char *name
, const char *value
,
113 uint64_t *ret
, Error
**errp
)
118 err
= qemu_strtou64(value
, NULL
, 0, &number
);
119 if (err
== -ERANGE
) {
120 error_setg(errp
, "Value '%s' is too large for parameter '%s'",
125 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, name
, "a number");
131 static const QemuOptDesc
*find_desc_by_name(const QemuOptDesc
*desc
,
136 for (i
= 0; desc
[i
].name
!= NULL
; i
++) {
137 if (strcmp(desc
[i
].name
, name
) == 0) {
145 void parse_option_size(const char *name
, const char *value
,
146 uint64_t *ret
, Error
**errp
)
151 err
= qemu_strtosz(value
, NULL
, &size
);
152 if (err
== -ERANGE
) {
153 error_setg(errp
, "Value '%s' is out of range for parameter '%s'",
158 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, name
,
159 "a non-negative number below 2^64");
160 error_append_hint(errp
, "Optional suffix k, M, G, T, P or E means"
161 " kilo-, mega-, giga-, tera-, peta-\n"
162 "and exabytes, respectively.\n");
168 static const char *opt_type_to_string(enum QemuOptType type
)
171 case QEMU_OPT_STRING
:
174 return "bool (on/off)";
175 case QEMU_OPT_NUMBER
:
181 g_assert_not_reached();
185 * Print the list of options available in the given list. If
186 * @print_caption is true, a caption (including the list name, if it
187 * exists) is printed. The options itself will be indented, so
188 * @print_caption should only be set to false if the caller prints its
189 * own custom caption (so that the indentation makes sense).
191 void qemu_opts_print_help(QemuOptsList
*list
, bool print_caption
)
195 GPtrArray
*array
= g_ptr_array_new();
199 while (desc
&& desc
->name
) {
200 GString
*str
= g_string_new(NULL
);
201 g_string_append_printf(str
, " %s=<%s>", desc
->name
,
202 opt_type_to_string(desc
->type
));
205 g_string_append_printf(str
, "%*s", 24 - (int)str
->len
, "");
207 g_string_append_printf(str
, " - %s", desc
->help
);
209 g_ptr_array_add(array
, g_string_free(str
, false));
213 g_ptr_array_sort(array
, (GCompareFunc
)qemu_pstrcmp0
);
214 if (print_caption
&& array
->len
> 0) {
216 printf("%s options:\n", list
->name
);
218 printf("Options:\n");
220 } else if (array
->len
== 0) {
222 printf("There are no options for %s.\n", list
->name
);
224 printf("No options available.\n");
227 for (i
= 0; i
< array
->len
; i
++) {
228 printf("%s\n", (char *)array
->pdata
[i
]);
230 g_ptr_array_set_free_func(array
, g_free
);
231 g_ptr_array_free(array
, true);
234 /* ------------------------------------------------------------------ */
236 QemuOpt
*qemu_opt_find(QemuOpts
*opts
, const char *name
)
240 QTAILQ_FOREACH_REVERSE(opt
, &opts
->head
, next
) {
241 if (strcmp(opt
->name
, name
) != 0)
248 static void qemu_opt_del(QemuOpt
*opt
)
250 QTAILQ_REMOVE(&opt
->opts
->head
, opt
, next
);
256 /* qemu_opt_set allows many settings for the same option.
257 * This function deletes all settings for an option.
259 static void qemu_opt_del_all(QemuOpts
*opts
, const char *name
)
261 QemuOpt
*opt
, *next_opt
;
263 QTAILQ_FOREACH_SAFE(opt
, &opts
->head
, next
, next_opt
) {
264 if (!strcmp(opt
->name
, name
)) {
270 const char *qemu_opt_get(QemuOpts
*opts
, const char *name
)
278 opt
= qemu_opt_find(opts
, name
);
280 const QemuOptDesc
*desc
= find_desc_by_name(opts
->list
->desc
, name
);
281 if (desc
&& desc
->def_value_str
) {
282 return desc
->def_value_str
;
285 return opt
? opt
->str
: NULL
;
288 void qemu_opt_iter_init(QemuOptsIter
*iter
, QemuOpts
*opts
, const char *name
)
291 iter
->opt
= QTAILQ_FIRST(&opts
->head
);
295 const char *qemu_opt_iter_next(QemuOptsIter
*iter
)
297 QemuOpt
*ret
= iter
->opt
;
299 while (ret
&& !g_str_equal(iter
->name
, ret
->name
)) {
300 ret
= QTAILQ_NEXT(ret
, next
);
303 iter
->opt
= ret
? QTAILQ_NEXT(ret
, next
) : NULL
;
304 return ret
? ret
->str
: NULL
;
307 /* Get a known option (or its default) and remove it from the list
308 * all in one action. Return a malloced string of the option value.
309 * Result must be freed by caller with g_free().
311 char *qemu_opt_get_del(QemuOpts
*opts
, const char *name
)
314 const QemuOptDesc
*desc
;
321 opt
= qemu_opt_find(opts
, name
);
323 desc
= find_desc_by_name(opts
->list
->desc
, name
);
324 if (desc
&& desc
->def_value_str
) {
325 str
= g_strdup(desc
->def_value_str
);
331 qemu_opt_del_all(opts
, name
);
335 bool qemu_opt_has_help_opt(QemuOpts
*opts
)
339 QTAILQ_FOREACH_REVERSE(opt
, &opts
->head
, next
) {
340 if (is_help_option(opt
->name
)) {
347 static bool qemu_opt_get_bool_helper(QemuOpts
*opts
, const char *name
,
348 bool defval
, bool del
)
357 opt
= qemu_opt_find(opts
, name
);
359 const QemuOptDesc
*desc
= find_desc_by_name(opts
->list
->desc
, name
);
360 if (desc
&& desc
->def_value_str
) {
361 parse_option_bool(name
, desc
->def_value_str
, &ret
, &error_abort
);
365 assert(opt
->desc
&& opt
->desc
->type
== QEMU_OPT_BOOL
);
366 ret
= opt
->value
.boolean
;
368 qemu_opt_del_all(opts
, name
);
373 bool qemu_opt_get_bool(QemuOpts
*opts
, const char *name
, bool defval
)
375 return qemu_opt_get_bool_helper(opts
, name
, defval
, false);
378 bool qemu_opt_get_bool_del(QemuOpts
*opts
, const char *name
, bool defval
)
380 return qemu_opt_get_bool_helper(opts
, name
, defval
, true);
383 static uint64_t qemu_opt_get_number_helper(QemuOpts
*opts
, const char *name
,
384 uint64_t defval
, bool del
)
387 uint64_t ret
= defval
;
393 opt
= qemu_opt_find(opts
, name
);
395 const QemuOptDesc
*desc
= find_desc_by_name(opts
->list
->desc
, name
);
396 if (desc
&& desc
->def_value_str
) {
397 parse_option_number(name
, desc
->def_value_str
, &ret
, &error_abort
);
401 assert(opt
->desc
&& opt
->desc
->type
== QEMU_OPT_NUMBER
);
402 ret
= opt
->value
.uint
;
404 qemu_opt_del_all(opts
, name
);
409 uint64_t qemu_opt_get_number(QemuOpts
*opts
, const char *name
, uint64_t defval
)
411 return qemu_opt_get_number_helper(opts
, name
, defval
, false);
414 uint64_t qemu_opt_get_number_del(QemuOpts
*opts
, const char *name
,
417 return qemu_opt_get_number_helper(opts
, name
, defval
, true);
420 static uint64_t qemu_opt_get_size_helper(QemuOpts
*opts
, const char *name
,
421 uint64_t defval
, bool del
)
424 uint64_t ret
= defval
;
430 opt
= qemu_opt_find(opts
, name
);
432 const QemuOptDesc
*desc
= find_desc_by_name(opts
->list
->desc
, name
);
433 if (desc
&& desc
->def_value_str
) {
434 parse_option_size(name
, desc
->def_value_str
, &ret
, &error_abort
);
438 assert(opt
->desc
&& opt
->desc
->type
== QEMU_OPT_SIZE
);
439 ret
= opt
->value
.uint
;
441 qemu_opt_del_all(opts
, name
);
446 uint64_t qemu_opt_get_size(QemuOpts
*opts
, const char *name
, uint64_t defval
)
448 return qemu_opt_get_size_helper(opts
, name
, defval
, false);
451 uint64_t qemu_opt_get_size_del(QemuOpts
*opts
, const char *name
,
454 return qemu_opt_get_size_helper(opts
, name
, defval
, true);
457 static void qemu_opt_parse(QemuOpt
*opt
, Error
**errp
)
459 if (opt
->desc
== NULL
)
462 switch (opt
->desc
->type
) {
463 case QEMU_OPT_STRING
:
467 parse_option_bool(opt
->name
, opt
->str
, &opt
->value
.boolean
, errp
);
469 case QEMU_OPT_NUMBER
:
470 parse_option_number(opt
->name
, opt
->str
, &opt
->value
.uint
, errp
);
473 parse_option_size(opt
->name
, opt
->str
, &opt
->value
.uint
, errp
);
480 static bool opts_accepts_any(const QemuOpts
*opts
)
482 return opts
->list
->desc
[0].name
== NULL
;
485 int qemu_opt_unset(QemuOpts
*opts
, const char *name
)
487 QemuOpt
*opt
= qemu_opt_find(opts
, name
);
489 assert(opts_accepts_any(opts
));
499 static void opt_set(QemuOpts
*opts
, const char *name
, char *value
,
500 bool prepend
, bool *help_wanted
, Error
**errp
)
503 const QemuOptDesc
*desc
;
504 Error
*local_err
= NULL
;
506 desc
= find_desc_by_name(opts
->list
->desc
, name
);
507 if (!desc
&& !opts_accepts_any(opts
)) {
509 error_setg(errp
, QERR_INVALID_PARAMETER
, name
);
510 if (help_wanted
&& is_help_option(name
)) {
516 opt
= g_malloc0(sizeof(*opt
));
517 opt
->name
= g_strdup(name
);
520 QTAILQ_INSERT_HEAD(&opts
->head
, opt
, next
);
522 QTAILQ_INSERT_TAIL(&opts
->head
, opt
, next
);
526 qemu_opt_parse(opt
, &local_err
);
528 error_propagate(errp
, local_err
);
533 void qemu_opt_set(QemuOpts
*opts
, const char *name
, const char *value
,
536 opt_set(opts
, name
, g_strdup(value
), false, NULL
, errp
);
539 void qemu_opt_set_bool(QemuOpts
*opts
, const char *name
, bool val
,
543 const QemuOptDesc
*desc
= opts
->list
->desc
;
545 opt
= g_malloc0(sizeof(*opt
));
546 opt
->desc
= find_desc_by_name(desc
, name
);
547 if (!opt
->desc
&& !opts_accepts_any(opts
)) {
548 error_setg(errp
, QERR_INVALID_PARAMETER
, name
);
553 opt
->name
= g_strdup(name
);
555 opt
->value
.boolean
= !!val
;
556 opt
->str
= g_strdup(val
? "on" : "off");
557 QTAILQ_INSERT_TAIL(&opts
->head
, opt
, next
);
560 void qemu_opt_set_number(QemuOpts
*opts
, const char *name
, int64_t val
,
564 const QemuOptDesc
*desc
= opts
->list
->desc
;
566 opt
= g_malloc0(sizeof(*opt
));
567 opt
->desc
= find_desc_by_name(desc
, name
);
568 if (!opt
->desc
&& !opts_accepts_any(opts
)) {
569 error_setg(errp
, QERR_INVALID_PARAMETER
, name
);
574 opt
->name
= g_strdup(name
);
576 opt
->value
.uint
= val
;
577 opt
->str
= g_strdup_printf("%" PRId64
, val
);
578 QTAILQ_INSERT_TAIL(&opts
->head
, opt
, next
);
582 * For each member of @opts, call @func(@opaque, name, value, @errp).
583 * @func() may store an Error through @errp, but must return non-zero then.
584 * When @func() returns non-zero, break the loop and return that value.
585 * Return zero when the loop completes.
587 int qemu_opt_foreach(QemuOpts
*opts
, qemu_opt_loopfunc func
, void *opaque
,
593 QTAILQ_FOREACH(opt
, &opts
->head
, next
) {
594 rc
= func(opaque
, opt
->name
, opt
->str
, errp
);
598 assert(!errp
|| !*errp
);
603 QemuOpts
*qemu_opts_find(QemuOptsList
*list
, const char *id
)
607 QTAILQ_FOREACH(opts
, &list
->head
, next
) {
608 if (!opts
->id
&& !id
) {
611 if (opts
->id
&& id
&& !strcmp(opts
->id
, id
)) {
618 QemuOpts
*qemu_opts_create(QemuOptsList
*list
, const char *id
,
619 int fail_if_exists
, Error
**errp
)
621 QemuOpts
*opts
= NULL
;
624 if (!id_wellformed(id
)) {
625 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "id",
627 error_append_hint(errp
, "Identifiers consist of letters, digits, "
628 "'-', '.', '_', starting with a letter.\n");
631 opts
= qemu_opts_find(list
, id
);
633 if (fail_if_exists
&& !list
->merge_lists
) {
634 error_setg(errp
, "Duplicate ID '%s' for %s", id
, list
->name
);
640 } else if (list
->merge_lists
) {
641 opts
= qemu_opts_find(list
, NULL
);
646 opts
= g_malloc0(sizeof(*opts
));
647 opts
->id
= g_strdup(id
);
649 loc_save(&opts
->loc
);
650 QTAILQ_INIT(&opts
->head
);
651 QTAILQ_INSERT_TAIL(&list
->head
, opts
, next
);
655 void qemu_opts_reset(QemuOptsList
*list
)
657 QemuOpts
*opts
, *next_opts
;
659 QTAILQ_FOREACH_SAFE(opts
, &list
->head
, next
, next_opts
) {
664 void qemu_opts_loc_restore(QemuOpts
*opts
)
666 loc_restore(&opts
->loc
);
669 void qemu_opts_set(QemuOptsList
*list
, const char *id
,
670 const char *name
, const char *value
, Error
**errp
)
673 Error
*local_err
= NULL
;
675 opts
= qemu_opts_create(list
, id
, 1, &local_err
);
677 error_propagate(errp
, local_err
);
680 qemu_opt_set(opts
, name
, value
, errp
);
683 const char *qemu_opts_id(QemuOpts
*opts
)
688 /* The id string will be g_free()d by qemu_opts_del */
689 void qemu_opts_set_id(QemuOpts
*opts
, char *id
)
694 void qemu_opts_del(QemuOpts
*opts
)
703 opt
= QTAILQ_FIRST(&opts
->head
);
708 QTAILQ_REMOVE(&opts
->list
->head
, opts
, next
);
713 /* print value, escaping any commas in value */
714 static void escaped_print(const char *value
)
718 for (ptr
= value
; *ptr
; ++ptr
) {
726 void qemu_opts_print(QemuOpts
*opts
, const char *separator
)
729 QemuOptDesc
*desc
= opts
->list
->desc
;
730 const char *sep
= "";
733 printf("id=%s", opts
->id
); /* passed id_wellformed -> no commas */
737 if (desc
[0].name
== NULL
) {
738 QTAILQ_FOREACH(opt
, &opts
->head
, next
) {
739 printf("%s%s=", sep
, opt
->name
);
740 escaped_print(opt
->str
);
745 for (; desc
&& desc
->name
; desc
++) {
747 opt
= qemu_opt_find(opts
, desc
->name
);
749 value
= opt
? opt
->str
: desc
->def_value_str
;
753 if (desc
->type
== QEMU_OPT_STRING
) {
754 printf("%s%s=", sep
, desc
->name
);
755 escaped_print(value
);
756 } else if ((desc
->type
== QEMU_OPT_SIZE
||
757 desc
->type
== QEMU_OPT_NUMBER
) && opt
) {
758 printf("%s%s=%" PRId64
, sep
, desc
->name
, opt
->value
.uint
);
760 printf("%s%s=%s", sep
, desc
->name
, value
);
766 static const char *get_opt_name_value(const char *params
,
767 const char *firstname
,
768 char **name
, char **value
)
770 const char *p
, *pe
, *pc
;
772 pe
= strchr(params
, '=');
773 pc
= strchr(params
, ',');
775 if (!pe
|| (pc
&& pc
< pe
)) {
776 /* found "foo,more" */
778 /* implicitly named first option */
779 *name
= g_strdup(firstname
);
780 p
= get_opt_value(params
, value
);
782 /* option without value, must be a flag */
783 p
= get_opt_name(params
, name
, ',');
784 if (strncmp(*name
, "no", 2) == 0) {
785 memmove(*name
, *name
+ 2, strlen(*name
+ 2) + 1);
786 *value
= g_strdup("off");
788 *value
= g_strdup("on");
792 /* found "foo=bar,more" */
793 p
= get_opt_name(params
, name
, '=');
796 p
= get_opt_value(p
, value
);
799 assert(!*p
|| *p
== ',');
806 static void opts_do_parse(QemuOpts
*opts
, const char *params
,
807 const char *firstname
, bool prepend
,
808 bool *help_wanted
, Error
**errp
)
810 Error
*local_err
= NULL
;
811 char *option
, *value
;
814 for (p
= params
; *p
;) {
815 p
= get_opt_name_value(p
, firstname
, &option
, &value
);
818 if (!strcmp(option
, "id")) {
824 opt_set(opts
, option
, value
, prepend
, help_wanted
, &local_err
);
827 error_propagate(errp
, local_err
);
833 static char *opts_parse_id(const char *params
)
838 for (p
= params
; *p
;) {
839 p
= get_opt_name_value(p
, NULL
, &name
, &value
);
840 if (!strcmp(name
, "id")) {
851 bool has_help_option(const char *params
)
857 for (p
= params
; *p
;) {
858 p
= get_opt_name_value(p
, NULL
, &name
, &value
);
859 ret
= is_help_option(name
);
871 * Store options parsed from @params into @opts.
872 * If @firstname is non-null, the first key=value in @params may omit
873 * key=, and is treated as if key was @firstname.
874 * On error, store an error object through @errp if non-null.
876 void qemu_opts_do_parse(QemuOpts
*opts
, const char *params
,
877 const char *firstname
, Error
**errp
)
879 opts_do_parse(opts
, params
, firstname
, false, NULL
, errp
);
882 static QemuOpts
*opts_parse(QemuOptsList
*list
, const char *params
,
883 bool permit_abbrev
, bool defaults
,
884 bool *help_wanted
, Error
**errp
)
886 const char *firstname
;
887 char *id
= opts_parse_id(params
);
889 Error
*local_err
= NULL
;
891 assert(!permit_abbrev
|| list
->implied_opt_name
);
892 firstname
= permit_abbrev
? list
->implied_opt_name
: NULL
;
895 * This code doesn't work for defaults && !list->merge_lists: when
896 * params has no id=, and list has an element with !opts->id, it
897 * appends a new element instead of returning the existing opts.
898 * However, we got no use for this case. Guard against possible
899 * (if unlikely) future misuse:
901 assert(!defaults
|| list
->merge_lists
);
902 opts
= qemu_opts_create(list
, id
, !defaults
, &local_err
);
905 error_propagate(errp
, local_err
);
909 opts_do_parse(opts
, params
, firstname
, defaults
, help_wanted
, &local_err
);
911 error_propagate(errp
, local_err
);
920 * Create a QemuOpts in @list and with options parsed from @params.
921 * If @permit_abbrev, the first key=value in @params may omit key=,
922 * and is treated as if key was @list->implied_opt_name.
923 * On error, store an error object through @errp if non-null.
924 * Return the new QemuOpts on success, null pointer on error.
926 QemuOpts
*qemu_opts_parse(QemuOptsList
*list
, const char *params
,
927 bool permit_abbrev
, Error
**errp
)
929 return opts_parse(list
, params
, permit_abbrev
, false, NULL
, errp
);
933 * Create a QemuOpts in @list and with options parsed from @params.
934 * If @permit_abbrev, the first key=value in @params may omit key=,
935 * and is treated as if key was @list->implied_opt_name.
936 * Report errors with error_report_err(). This is inappropriate in
937 * QMP context. Do not use this function there!
938 * Return the new QemuOpts on success, null pointer on error.
940 QemuOpts
*qemu_opts_parse_noisily(QemuOptsList
*list
, const char *params
,
945 bool help_wanted
= false;
947 opts
= opts_parse(list
, params
, permit_abbrev
, false, &help_wanted
, &err
);
950 qemu_opts_print_help(list
, true);
953 error_report_err(err
);
959 void qemu_opts_set_defaults(QemuOptsList
*list
, const char *params
,
964 opts
= opts_parse(list
, params
, permit_abbrev
, true, NULL
, NULL
);
968 static void qemu_opts_from_qdict_entry(QemuOpts
*opts
,
969 const QDictEntry
*entry
,
972 const char *key
= qdict_entry_key(entry
);
973 QObject
*obj
= qdict_entry_value(entry
);
974 char buf
[32], *tmp
= NULL
;
977 if (!strcmp(key
, "id")) {
981 switch (qobject_type(obj
)) {
983 value
= qstring_get_str(qobject_to(QString
, obj
));
986 tmp
= qnum_to_string(qobject_to(QNum
, obj
));
990 pstrcpy(buf
, sizeof(buf
),
991 qbool_get_bool(qobject_to(QBool
, obj
)) ? "on" : "off");
998 qemu_opt_set(opts
, key
, value
, errp
);
1003 * Create QemuOpts from a QDict.
1004 * Use value of key "id" as ID if it exists and is a QString. Only
1005 * QStrings, QNums and QBools are copied. Entries with other types
1006 * are silently ignored.
1008 QemuOpts
*qemu_opts_from_qdict(QemuOptsList
*list
, const QDict
*qdict
,
1011 Error
*local_err
= NULL
;
1013 const QDictEntry
*entry
;
1015 opts
= qemu_opts_create(list
, qdict_get_try_str(qdict
, "id"), 1,
1018 error_propagate(errp
, local_err
);
1022 assert(opts
!= NULL
);
1024 for (entry
= qdict_first(qdict
);
1026 entry
= qdict_next(qdict
, entry
)) {
1027 qemu_opts_from_qdict_entry(opts
, entry
, &local_err
);
1029 error_propagate(errp
, local_err
);
1030 qemu_opts_del(opts
);
1039 * Adds all QDict entries to the QemuOpts that can be added and removes them
1040 * from the QDict. When this function returns, the QDict contains only those
1041 * entries that couldn't be added to the QemuOpts.
1043 void qemu_opts_absorb_qdict(QemuOpts
*opts
, QDict
*qdict
, Error
**errp
)
1045 const QDictEntry
*entry
, *next
;
1047 entry
= qdict_first(qdict
);
1049 while (entry
!= NULL
) {
1050 Error
*local_err
= NULL
;
1052 next
= qdict_next(qdict
, entry
);
1054 if (find_desc_by_name(opts
->list
->desc
, entry
->key
)) {
1055 qemu_opts_from_qdict_entry(opts
, entry
, &local_err
);
1057 error_propagate(errp
, local_err
);
1060 qdict_del(qdict
, entry
->key
);
1068 * Convert from QemuOpts to QDict. The QDict values are of type QString.
1070 * If @list is given, only add those options to the QDict that are contained in
1071 * the list. If @del is true, any options added to the QDict are removed from
1072 * the QemuOpts, otherwise they remain there.
1074 * If two options in @opts have the same name, they are processed in order
1075 * so that the last one wins (consistent with the reverse iteration in
1076 * qemu_opt_find()), but all of them are deleted if @del is true.
1078 * TODO We'll want to use types appropriate for opt->desc->type, but
1079 * this is enough for now.
1081 QDict
*qemu_opts_to_qdict_filtered(QemuOpts
*opts
, QDict
*qdict
,
1082 QemuOptsList
*list
, bool del
)
1084 QemuOpt
*opt
, *next
;
1087 qdict
= qdict_new();
1090 qdict_put_str(qdict
, "id", opts
->id
);
1092 QTAILQ_FOREACH_SAFE(opt
, &opts
->head
, next
, next
) {
1096 for (desc
= list
->desc
; desc
->name
; desc
++) {
1097 if (!strcmp(desc
->name
, opt
->name
)) {
1106 qdict_put_str(qdict
, opt
->name
, opt
->str
);
1114 /* Copy all options in a QemuOpts to the given QDict. See
1115 * qemu_opts_to_qdict_filtered() for details. */
1116 QDict
*qemu_opts_to_qdict(QemuOpts
*opts
, QDict
*qdict
)
1118 return qemu_opts_to_qdict_filtered(opts
, qdict
, NULL
, false);
1121 /* Validate parsed opts against descriptions where no
1122 * descriptions were provided in the QemuOptsList.
1124 void qemu_opts_validate(QemuOpts
*opts
, const QemuOptDesc
*desc
, Error
**errp
)
1127 Error
*local_err
= NULL
;
1129 assert(opts_accepts_any(opts
));
1131 QTAILQ_FOREACH(opt
, &opts
->head
, next
) {
1132 opt
->desc
= find_desc_by_name(desc
, opt
->name
);
1134 error_setg(errp
, QERR_INVALID_PARAMETER
, opt
->name
);
1138 qemu_opt_parse(opt
, &local_err
);
1140 error_propagate(errp
, local_err
);
1147 * For each member of @list, call @func(@opaque, member, @errp).
1148 * Call it with the current location temporarily set to the member's.
1149 * @func() may store an Error through @errp, but must return non-zero then.
1150 * When @func() returns non-zero, break the loop and return that value.
1151 * Return zero when the loop completes.
1153 int qemu_opts_foreach(QemuOptsList
*list
, qemu_opts_loopfunc func
,
1154 void *opaque
, Error
**errp
)
1160 loc_push_none(&loc
);
1161 QTAILQ_FOREACH(opts
, &list
->head
, next
) {
1162 loc_restore(&opts
->loc
);
1163 rc
= func(opaque
, opts
, errp
);
1167 assert(!errp
|| !*errp
);
1173 static size_t count_opts_list(QemuOptsList
*list
)
1175 QemuOptDesc
*desc
= NULL
;
1176 size_t num_opts
= 0;
1183 while (desc
&& desc
->name
) {
1191 void qemu_opts_free(QemuOptsList
*list
)
1196 /* Realloc dst option list and append options from an option list (list)
1197 * to it. dst could be NULL or a malloced list.
1198 * The lifetime of dst must be shorter than the input list because the
1199 * QemuOptDesc->name, ->help, and ->def_value_str strings are shared.
1201 QemuOptsList
*qemu_opts_append(QemuOptsList
*dst
,
1204 size_t num_opts
, num_dst_opts
;
1206 bool need_init
= false;
1207 bool need_head_update
;
1213 /* If dst is NULL, after realloc, some area of dst should be initialized
1214 * before adding options to it.
1218 need_head_update
= true;
1220 /* Moreover, even if dst is not NULL, the realloc may move it to a
1221 * different address in which case we may get a stale tail pointer
1223 need_head_update
= QTAILQ_EMPTY(&dst
->head
);
1226 num_opts
= count_opts_list(dst
);
1227 num_dst_opts
= num_opts
;
1228 num_opts
+= count_opts_list(list
);
1229 dst
= g_realloc(dst
, sizeof(QemuOptsList
) +
1230 (num_opts
+ 1) * sizeof(QemuOptDesc
));
1233 dst
->implied_opt_name
= NULL
;
1234 dst
->merge_lists
= false;
1236 if (need_head_update
) {
1237 QTAILQ_INIT(&dst
->head
);
1239 dst
->desc
[num_dst_opts
].name
= NULL
;
1241 /* append list->desc to dst->desc */
1244 while (desc
&& desc
->name
) {
1245 if (find_desc_by_name(dst
->desc
, desc
->name
) == NULL
) {
1246 dst
->desc
[num_dst_opts
++] = *desc
;
1247 dst
->desc
[num_dst_opts
].name
= NULL
;