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-common.h"
30 #include "qemu/error-report.h"
31 #include "qapi/qmp/qbool.h"
32 #include "qapi/qmp/qdict.h"
33 #include "qapi/qmp/qnum.h"
34 #include "qapi/qmp/qstring.h"
35 #include "qapi/qmp/qerror.h"
36 #include "qemu/option_int.h"
37 #include "qemu/cutils.h"
39 #include "qemu/help_option.h"
42 * Extracts the name of an option from the parameter string (p points at the
43 * first byte of the option name)
45 * The option name is delimited by delim (usually , or =) or the string end
46 * and is copied into option. The caller is responsible for free'ing option
47 * when no longer required.
49 * The return value is the position of the delimiter/zero byte after the option
52 static const char *get_opt_name(const char *p
, char **option
, char delim
)
54 char *offset
= strchr(p
, delim
);
57 *option
= g_strndup(p
, offset
- p
);
60 *option
= g_strdup(p
);
66 * Extracts the value of an option from the parameter string p (p points at the
67 * first byte of the option value)
69 * This function is comparable to get_opt_name with the difference that the
70 * delimiter is fixed to be comma which starts a new option. To specify an
71 * option value that contains commas, double each comma.
73 const char *get_opt_value(const char *p
, char **value
)
75 size_t capacity
= 0, length
;
80 offset
= qemu_strchrnul(p
, ',');
82 if (*offset
!= '\0' && *(offset
+ 1) == ',') {
85 *value
= g_renew(char, *value
, capacity
+ length
+ 1);
86 strncpy(*value
+ capacity
, p
, length
);
87 (*value
)[capacity
+ length
] = '\0';
89 if (*offset
== '\0' ||
90 *(offset
+ 1) != ',') {
94 p
+= (offset
- p
) + 2;
100 static void parse_option_bool(const char *name
, const char *value
, bool *ret
,
103 if (!strcmp(value
, "on")) {
105 } else if (!strcmp(value
, "off")) {
108 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
,
109 name
, "'on' or 'off'");
113 static void parse_option_number(const char *name
, const char *value
,
114 uint64_t *ret
, Error
**errp
)
119 err
= qemu_strtou64(value
, NULL
, 0, &number
);
120 if (err
== -ERANGE
) {
121 error_setg(errp
, "Value '%s' is too large for parameter '%s'",
126 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, name
, "a number");
132 static const QemuOptDesc
*find_desc_by_name(const QemuOptDesc
*desc
,
137 for (i
= 0; desc
[i
].name
!= NULL
; i
++) {
138 if (strcmp(desc
[i
].name
, name
) == 0) {
146 void parse_option_size(const char *name
, const char *value
,
147 uint64_t *ret
, Error
**errp
)
152 err
= qemu_strtosz(value
, NULL
, &size
);
153 if (err
== -ERANGE
) {
154 error_setg(errp
, "Value '%s' is out of range for parameter '%s'",
159 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, name
,
160 "a non-negative number below 2^64");
161 error_append_hint(errp
, "Optional suffix k, M, G, T, P or E means"
162 " kilo-, mega-, giga-, tera-, peta-\n"
163 "and exabytes, respectively.\n");
169 bool has_help_option(const char *param
)
171 const char *p
= param
;
174 while (*p
&& !result
) {
177 p
= get_opt_value(p
, &value
);
182 result
= is_help_option(value
);
189 bool is_valid_option_list(const char *p
)
195 p
= get_opt_value(p
, &value
);
197 (!*value
|| *value
== ',')) {
211 void qemu_opts_print_help(QemuOptsList
*list
)
217 while (desc
&& desc
->name
) {
218 printf("%-16s %s\n", desc
->name
,
219 desc
->help
? desc
->help
: "No description available");
223 /* ------------------------------------------------------------------ */
225 QemuOpt
*qemu_opt_find(QemuOpts
*opts
, const char *name
)
229 QTAILQ_FOREACH_REVERSE(opt
, &opts
->head
, QemuOptHead
, next
) {
230 if (strcmp(opt
->name
, name
) != 0)
237 static void qemu_opt_del(QemuOpt
*opt
)
239 QTAILQ_REMOVE(&opt
->opts
->head
, opt
, next
);
245 /* qemu_opt_set allows many settings for the same option.
246 * This function deletes all settings for an option.
248 static void qemu_opt_del_all(QemuOpts
*opts
, const char *name
)
250 QemuOpt
*opt
, *next_opt
;
252 QTAILQ_FOREACH_SAFE(opt
, &opts
->head
, next
, next_opt
) {
253 if (!strcmp(opt
->name
, name
)) {
259 const char *qemu_opt_get(QemuOpts
*opts
, const char *name
)
267 opt
= qemu_opt_find(opts
, name
);
269 const QemuOptDesc
*desc
= find_desc_by_name(opts
->list
->desc
, name
);
270 if (desc
&& desc
->def_value_str
) {
271 return desc
->def_value_str
;
274 return opt
? opt
->str
: NULL
;
277 void qemu_opt_iter_init(QemuOptsIter
*iter
, QemuOpts
*opts
, const char *name
)
280 iter
->opt
= QTAILQ_FIRST(&opts
->head
);
284 const char *qemu_opt_iter_next(QemuOptsIter
*iter
)
286 QemuOpt
*ret
= iter
->opt
;
288 while (ret
&& !g_str_equal(iter
->name
, ret
->name
)) {
289 ret
= QTAILQ_NEXT(ret
, next
);
292 iter
->opt
= ret
? QTAILQ_NEXT(ret
, next
) : NULL
;
293 return ret
? ret
->str
: NULL
;
296 /* Get a known option (or its default) and remove it from the list
297 * all in one action. Return a malloced string of the option value.
298 * Result must be freed by caller with g_free().
300 char *qemu_opt_get_del(QemuOpts
*opts
, const char *name
)
303 const QemuOptDesc
*desc
;
310 opt
= qemu_opt_find(opts
, name
);
312 desc
= find_desc_by_name(opts
->list
->desc
, name
);
313 if (desc
&& desc
->def_value_str
) {
314 str
= g_strdup(desc
->def_value_str
);
320 qemu_opt_del_all(opts
, name
);
324 bool qemu_opt_has_help_opt(QemuOpts
*opts
)
328 QTAILQ_FOREACH_REVERSE(opt
, &opts
->head
, QemuOptHead
, next
) {
329 if (is_help_option(opt
->name
)) {
336 static bool qemu_opt_get_bool_helper(QemuOpts
*opts
, const char *name
,
337 bool defval
, bool del
)
346 opt
= qemu_opt_find(opts
, name
);
348 const QemuOptDesc
*desc
= find_desc_by_name(opts
->list
->desc
, name
);
349 if (desc
&& desc
->def_value_str
) {
350 parse_option_bool(name
, desc
->def_value_str
, &ret
, &error_abort
);
354 assert(opt
->desc
&& opt
->desc
->type
== QEMU_OPT_BOOL
);
355 ret
= opt
->value
.boolean
;
357 qemu_opt_del_all(opts
, name
);
362 bool qemu_opt_get_bool(QemuOpts
*opts
, const char *name
, bool defval
)
364 return qemu_opt_get_bool_helper(opts
, name
, defval
, false);
367 bool qemu_opt_get_bool_del(QemuOpts
*opts
, const char *name
, bool defval
)
369 return qemu_opt_get_bool_helper(opts
, name
, defval
, true);
372 static uint64_t qemu_opt_get_number_helper(QemuOpts
*opts
, const char *name
,
373 uint64_t defval
, bool del
)
376 uint64_t ret
= defval
;
382 opt
= qemu_opt_find(opts
, name
);
384 const QemuOptDesc
*desc
= find_desc_by_name(opts
->list
->desc
, name
);
385 if (desc
&& desc
->def_value_str
) {
386 parse_option_number(name
, desc
->def_value_str
, &ret
, &error_abort
);
390 assert(opt
->desc
&& opt
->desc
->type
== QEMU_OPT_NUMBER
);
391 ret
= opt
->value
.uint
;
393 qemu_opt_del_all(opts
, name
);
398 uint64_t qemu_opt_get_number(QemuOpts
*opts
, const char *name
, uint64_t defval
)
400 return qemu_opt_get_number_helper(opts
, name
, defval
, false);
403 uint64_t qemu_opt_get_number_del(QemuOpts
*opts
, const char *name
,
406 return qemu_opt_get_number_helper(opts
, name
, defval
, true);
409 static uint64_t qemu_opt_get_size_helper(QemuOpts
*opts
, const char *name
,
410 uint64_t defval
, bool del
)
413 uint64_t ret
= defval
;
419 opt
= qemu_opt_find(opts
, name
);
421 const QemuOptDesc
*desc
= find_desc_by_name(opts
->list
->desc
, name
);
422 if (desc
&& desc
->def_value_str
) {
423 parse_option_size(name
, desc
->def_value_str
, &ret
, &error_abort
);
427 assert(opt
->desc
&& opt
->desc
->type
== QEMU_OPT_SIZE
);
428 ret
= opt
->value
.uint
;
430 qemu_opt_del_all(opts
, name
);
435 uint64_t qemu_opt_get_size(QemuOpts
*opts
, const char *name
, uint64_t defval
)
437 return qemu_opt_get_size_helper(opts
, name
, defval
, false);
440 uint64_t qemu_opt_get_size_del(QemuOpts
*opts
, const char *name
,
443 return qemu_opt_get_size_helper(opts
, name
, defval
, true);
446 static void qemu_opt_parse(QemuOpt
*opt
, Error
**errp
)
448 if (opt
->desc
== NULL
)
451 switch (opt
->desc
->type
) {
452 case QEMU_OPT_STRING
:
456 parse_option_bool(opt
->name
, opt
->str
, &opt
->value
.boolean
, errp
);
458 case QEMU_OPT_NUMBER
:
459 parse_option_number(opt
->name
, opt
->str
, &opt
->value
.uint
, errp
);
462 parse_option_size(opt
->name
, opt
->str
, &opt
->value
.uint
, errp
);
469 static bool opts_accepts_any(const QemuOpts
*opts
)
471 return opts
->list
->desc
[0].name
== NULL
;
474 int qemu_opt_unset(QemuOpts
*opts
, const char *name
)
476 QemuOpt
*opt
= qemu_opt_find(opts
, name
);
478 assert(opts_accepts_any(opts
));
488 static void opt_set(QemuOpts
*opts
, const char *name
, char *value
,
489 bool prepend
, Error
**errp
)
492 const QemuOptDesc
*desc
;
493 Error
*local_err
= NULL
;
495 desc
= find_desc_by_name(opts
->list
->desc
, name
);
496 if (!desc
&& !opts_accepts_any(opts
)) {
498 error_setg(errp
, QERR_INVALID_PARAMETER
, name
);
502 opt
= g_malloc0(sizeof(*opt
));
503 opt
->name
= g_strdup(name
);
506 QTAILQ_INSERT_HEAD(&opts
->head
, opt
, next
);
508 QTAILQ_INSERT_TAIL(&opts
->head
, opt
, next
);
512 qemu_opt_parse(opt
, &local_err
);
514 error_propagate(errp
, local_err
);
519 void qemu_opt_set(QemuOpts
*opts
, const char *name
, const char *value
,
522 opt_set(opts
, name
, g_strdup(value
), false, errp
);
525 void qemu_opt_set_bool(QemuOpts
*opts
, const char *name
, bool val
,
529 const QemuOptDesc
*desc
= opts
->list
->desc
;
531 opt
= g_malloc0(sizeof(*opt
));
532 opt
->desc
= find_desc_by_name(desc
, name
);
533 if (!opt
->desc
&& !opts_accepts_any(opts
)) {
534 error_setg(errp
, QERR_INVALID_PARAMETER
, name
);
539 opt
->name
= g_strdup(name
);
541 opt
->value
.boolean
= !!val
;
542 opt
->str
= g_strdup(val
? "on" : "off");
543 QTAILQ_INSERT_TAIL(&opts
->head
, opt
, next
);
546 void qemu_opt_set_number(QemuOpts
*opts
, const char *name
, int64_t val
,
550 const QemuOptDesc
*desc
= opts
->list
->desc
;
552 opt
= g_malloc0(sizeof(*opt
));
553 opt
->desc
= find_desc_by_name(desc
, name
);
554 if (!opt
->desc
&& !opts_accepts_any(opts
)) {
555 error_setg(errp
, QERR_INVALID_PARAMETER
, name
);
560 opt
->name
= g_strdup(name
);
562 opt
->value
.uint
= val
;
563 opt
->str
= g_strdup_printf("%" PRId64
, val
);
564 QTAILQ_INSERT_TAIL(&opts
->head
, opt
, next
);
568 * For each member of @opts, call @func(@opaque, name, value, @errp).
569 * @func() may store an Error through @errp, but must return non-zero then.
570 * When @func() returns non-zero, break the loop and return that value.
571 * Return zero when the loop completes.
573 int qemu_opt_foreach(QemuOpts
*opts
, qemu_opt_loopfunc func
, void *opaque
,
579 QTAILQ_FOREACH(opt
, &opts
->head
, next
) {
580 rc
= func(opaque
, opt
->name
, opt
->str
, errp
);
584 assert(!errp
|| !*errp
);
589 QemuOpts
*qemu_opts_find(QemuOptsList
*list
, const char *id
)
593 QTAILQ_FOREACH(opts
, &list
->head
, next
) {
594 if (!opts
->id
&& !id
) {
597 if (opts
->id
&& id
&& !strcmp(opts
->id
, id
)) {
604 QemuOpts
*qemu_opts_create(QemuOptsList
*list
, const char *id
,
605 int fail_if_exists
, Error
**errp
)
607 QemuOpts
*opts
= NULL
;
610 if (!id_wellformed(id
)) {
611 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "id",
613 error_append_hint(errp
, "Identifiers consist of letters, digits, "
614 "'-', '.', '_', starting with a letter.\n");
617 opts
= qemu_opts_find(list
, id
);
619 if (fail_if_exists
&& !list
->merge_lists
) {
620 error_setg(errp
, "Duplicate ID '%s' for %s", id
, list
->name
);
626 } else if (list
->merge_lists
) {
627 opts
= qemu_opts_find(list
, NULL
);
632 opts
= g_malloc0(sizeof(*opts
));
633 opts
->id
= g_strdup(id
);
635 loc_save(&opts
->loc
);
636 QTAILQ_INIT(&opts
->head
);
637 QTAILQ_INSERT_TAIL(&list
->head
, opts
, next
);
641 void qemu_opts_reset(QemuOptsList
*list
)
643 QemuOpts
*opts
, *next_opts
;
645 QTAILQ_FOREACH_SAFE(opts
, &list
->head
, next
, next_opts
) {
650 void qemu_opts_loc_restore(QemuOpts
*opts
)
652 loc_restore(&opts
->loc
);
655 void qemu_opts_set(QemuOptsList
*list
, const char *id
,
656 const char *name
, const char *value
, Error
**errp
)
659 Error
*local_err
= NULL
;
661 opts
= qemu_opts_create(list
, id
, 1, &local_err
);
663 error_propagate(errp
, local_err
);
666 qemu_opt_set(opts
, name
, value
, errp
);
669 const char *qemu_opts_id(QemuOpts
*opts
)
674 /* The id string will be g_free()d by qemu_opts_del */
675 void qemu_opts_set_id(QemuOpts
*opts
, char *id
)
680 void qemu_opts_del(QemuOpts
*opts
)
689 opt
= QTAILQ_FIRST(&opts
->head
);
694 QTAILQ_REMOVE(&opts
->list
->head
, opts
, next
);
699 /* print value, escaping any commas in value */
700 static void escaped_print(const char *value
)
704 for (ptr
= value
; *ptr
; ++ptr
) {
712 void qemu_opts_print(QemuOpts
*opts
, const char *separator
)
715 QemuOptDesc
*desc
= opts
->list
->desc
;
716 const char *sep
= "";
719 printf("id=%s", opts
->id
); /* passed id_wellformed -> no commas */
723 if (desc
[0].name
== NULL
) {
724 QTAILQ_FOREACH(opt
, &opts
->head
, next
) {
725 printf("%s%s=", sep
, opt
->name
);
726 escaped_print(opt
->str
);
731 for (; desc
&& desc
->name
; desc
++) {
733 opt
= qemu_opt_find(opts
, desc
->name
);
735 value
= opt
? opt
->str
: desc
->def_value_str
;
739 if (desc
->type
== QEMU_OPT_STRING
) {
740 printf("%s%s=", sep
, desc
->name
);
741 escaped_print(value
);
742 } else if ((desc
->type
== QEMU_OPT_SIZE
||
743 desc
->type
== QEMU_OPT_NUMBER
) && opt
) {
744 printf("%s%s=%" PRId64
, sep
, desc
->name
, opt
->value
.uint
);
746 printf("%s%s=%s", sep
, desc
->name
, value
);
752 static void opts_do_parse(QemuOpts
*opts
, const char *params
,
753 const char *firstname
, bool prepend
, Error
**errp
)
757 const char *p
,*pe
,*pc
;
758 Error
*local_err
= NULL
;
760 for (p
= params
; *p
!= '\0'; p
++) {
763 if (!pe
|| (pc
&& pc
< pe
)) {
764 /* found "foo,more" */
765 if (p
== params
&& firstname
) {
766 /* implicitly named first option */
767 option
= g_strdup(firstname
);
768 p
= get_opt_value(p
, &value
);
770 /* option without value, probably a flag */
771 p
= get_opt_name(p
, &option
, ',');
772 if (strncmp(option
, "no", 2) == 0) {
773 memmove(option
, option
+2, strlen(option
+2)+1);
774 value
= g_strdup("off");
776 value
= g_strdup("on");
780 /* found "foo=bar,more" */
781 p
= get_opt_name(p
, &option
, '=');
784 p
= get_opt_value(p
, &value
);
786 if (strcmp(option
, "id") != 0) {
787 /* store and parse */
788 opt_set(opts
, option
, value
, prepend
, &local_err
);
791 error_propagate(errp
, local_err
);
800 option
= value
= NULL
;
809 * Store options parsed from @params into @opts.
810 * If @firstname is non-null, the first key=value in @params may omit
811 * key=, and is treated as if key was @firstname.
812 * On error, store an error object through @errp if non-null.
814 void qemu_opts_do_parse(QemuOpts
*opts
, const char *params
,
815 const char *firstname
, Error
**errp
)
817 opts_do_parse(opts
, params
, firstname
, false, errp
);
820 static QemuOpts
*opts_parse(QemuOptsList
*list
, const char *params
,
821 bool permit_abbrev
, bool defaults
, Error
**errp
)
823 const char *firstname
;
827 Error
*local_err
= NULL
;
829 assert(!permit_abbrev
|| list
->implied_opt_name
);
830 firstname
= permit_abbrev
? list
->implied_opt_name
: NULL
;
832 if (strncmp(params
, "id=", 3) == 0) {
833 get_opt_value(params
+ 3, &id
);
834 } else if ((p
= strstr(params
, ",id=")) != NULL
) {
835 get_opt_value(p
+ 4, &id
);
839 * This code doesn't work for defaults && !list->merge_lists: when
840 * params has no id=, and list has an element with !opts->id, it
841 * appends a new element instead of returning the existing opts.
842 * However, we got no use for this case. Guard against possible
843 * (if unlikely) future misuse:
845 assert(!defaults
|| list
->merge_lists
);
846 opts
= qemu_opts_create(list
, id
, !defaults
, &local_err
);
849 error_propagate(errp
, local_err
);
853 opts_do_parse(opts
, params
, firstname
, defaults
, &local_err
);
855 error_propagate(errp
, local_err
);
864 * Create a QemuOpts in @list and with options parsed from @params.
865 * If @permit_abbrev, the first key=value in @params may omit key=,
866 * and is treated as if key was @list->implied_opt_name.
867 * On error, store an error object through @errp if non-null.
868 * Return the new QemuOpts on success, null pointer on error.
870 QemuOpts
*qemu_opts_parse(QemuOptsList
*list
, const char *params
,
871 bool permit_abbrev
, Error
**errp
)
873 return opts_parse(list
, params
, permit_abbrev
, false, errp
);
877 * Create a QemuOpts in @list and with options parsed from @params.
878 * If @permit_abbrev, the first key=value in @params may omit key=,
879 * and is treated as if key was @list->implied_opt_name.
880 * Report errors with error_report_err(). This is inappropriate in
881 * QMP context. Do not use this function there!
882 * Return the new QemuOpts on success, null pointer on error.
884 QemuOpts
*qemu_opts_parse_noisily(QemuOptsList
*list
, const char *params
,
890 opts
= opts_parse(list
, params
, permit_abbrev
, false, &err
);
892 error_report_err(err
);
897 void qemu_opts_set_defaults(QemuOptsList
*list
, const char *params
,
902 opts
= opts_parse(list
, params
, permit_abbrev
, true, NULL
);
906 typedef struct OptsFromQDictState
{
909 } OptsFromQDictState
;
911 static void qemu_opts_from_qdict_1(const char *key
, QObject
*obj
, void *opaque
)
913 OptsFromQDictState
*state
= opaque
;
914 char buf
[32], *tmp
= NULL
;
917 if (!strcmp(key
, "id") || *state
->errp
) {
921 switch (qobject_type(obj
)) {
923 value
= qstring_get_str(qobject_to(QString
, obj
));
926 tmp
= qnum_to_string(qobject_to(QNum
, obj
));
930 pstrcpy(buf
, sizeof(buf
),
931 qbool_get_bool(qobject_to(QBool
, obj
)) ? "on" : "off");
938 qemu_opt_set(state
->opts
, key
, value
, state
->errp
);
943 * Create QemuOpts from a QDict.
944 * Use value of key "id" as ID if it exists and is a QString. Only
945 * QStrings, QNums and QBools are copied. Entries with other types
946 * are silently ignored.
948 QemuOpts
*qemu_opts_from_qdict(QemuOptsList
*list
, const QDict
*qdict
,
951 OptsFromQDictState state
;
952 Error
*local_err
= NULL
;
955 opts
= qemu_opts_create(list
, qdict_get_try_str(qdict
, "id"), 1,
958 error_propagate(errp
, local_err
);
962 assert(opts
!= NULL
);
964 state
.errp
= &local_err
;
966 qdict_iter(qdict
, qemu_opts_from_qdict_1
, &state
);
968 error_propagate(errp
, local_err
);
977 * Adds all QDict entries to the QemuOpts that can be added and removes them
978 * from the QDict. When this function returns, the QDict contains only those
979 * entries that couldn't be added to the QemuOpts.
981 void qemu_opts_absorb_qdict(QemuOpts
*opts
, QDict
*qdict
, Error
**errp
)
983 const QDictEntry
*entry
, *next
;
985 entry
= qdict_first(qdict
);
987 while (entry
!= NULL
) {
988 Error
*local_err
= NULL
;
989 OptsFromQDictState state
= {
994 next
= qdict_next(qdict
, entry
);
996 if (find_desc_by_name(opts
->list
->desc
, entry
->key
)) {
997 qemu_opts_from_qdict_1(entry
->key
, entry
->value
, &state
);
999 error_propagate(errp
, local_err
);
1002 qdict_del(qdict
, entry
->key
);
1011 * Convert from QemuOpts to QDict. The QDict values are of type QString.
1013 * If @list is given, only add those options to the QDict that are contained in
1014 * the list. If @del is true, any options added to the QDict are removed from
1015 * the QemuOpts, otherwise they remain there.
1017 * If two options in @opts have the same name, they are processed in order
1018 * so that the last one wins (consistent with the reverse iteration in
1019 * qemu_opt_find()), but all of them are deleted if @del is true.
1021 * TODO We'll want to use types appropriate for opt->desc->type, but
1022 * this is enough for now.
1024 QDict
*qemu_opts_to_qdict_filtered(QemuOpts
*opts
, QDict
*qdict
,
1025 QemuOptsList
*list
, bool del
)
1027 QemuOpt
*opt
, *next
;
1030 qdict
= qdict_new();
1033 qdict_put_str(qdict
, "id", opts
->id
);
1035 QTAILQ_FOREACH_SAFE(opt
, &opts
->head
, next
, next
) {
1039 for (desc
= list
->desc
; desc
->name
; desc
++) {
1040 if (!strcmp(desc
->name
, opt
->name
)) {
1049 qdict_put_str(qdict
, opt
->name
, opt
->str
);
1057 /* Copy all options in a QemuOpts to the given QDict. See
1058 * qemu_opts_to_qdict_filtered() for details. */
1059 QDict
*qemu_opts_to_qdict(QemuOpts
*opts
, QDict
*qdict
)
1061 return qemu_opts_to_qdict_filtered(opts
, qdict
, NULL
, false);
1064 /* Validate parsed opts against descriptions where no
1065 * descriptions were provided in the QemuOptsList.
1067 void qemu_opts_validate(QemuOpts
*opts
, const QemuOptDesc
*desc
, Error
**errp
)
1070 Error
*local_err
= NULL
;
1072 assert(opts_accepts_any(opts
));
1074 QTAILQ_FOREACH(opt
, &opts
->head
, next
) {
1075 opt
->desc
= find_desc_by_name(desc
, opt
->name
);
1077 error_setg(errp
, QERR_INVALID_PARAMETER
, opt
->name
);
1081 qemu_opt_parse(opt
, &local_err
);
1083 error_propagate(errp
, local_err
);
1090 * For each member of @list, call @func(@opaque, member, @errp).
1091 * Call it with the current location temporarily set to the member's.
1092 * @func() may store an Error through @errp, but must return non-zero then.
1093 * When @func() returns non-zero, break the loop and return that value.
1094 * Return zero when the loop completes.
1096 int qemu_opts_foreach(QemuOptsList
*list
, qemu_opts_loopfunc func
,
1097 void *opaque
, Error
**errp
)
1103 loc_push_none(&loc
);
1104 QTAILQ_FOREACH(opts
, &list
->head
, next
) {
1105 loc_restore(&opts
->loc
);
1106 rc
= func(opaque
, opts
, errp
);
1110 assert(!errp
|| !*errp
);
1116 static size_t count_opts_list(QemuOptsList
*list
)
1118 QemuOptDesc
*desc
= NULL
;
1119 size_t num_opts
= 0;
1126 while (desc
&& desc
->name
) {
1134 void qemu_opts_free(QemuOptsList
*list
)
1139 /* Realloc dst option list and append options from an option list (list)
1140 * to it. dst could be NULL or a malloced list.
1141 * The lifetime of dst must be shorter than the input list because the
1142 * QemuOptDesc->name, ->help, and ->def_value_str strings are shared.
1144 QemuOptsList
*qemu_opts_append(QemuOptsList
*dst
,
1147 size_t num_opts
, num_dst_opts
;
1149 bool need_init
= false;
1150 bool need_head_update
;
1156 /* If dst is NULL, after realloc, some area of dst should be initialized
1157 * before adding options to it.
1161 need_head_update
= true;
1163 /* Moreover, even if dst is not NULL, the realloc may move it to a
1164 * different address in which case we may get a stale tail pointer
1166 need_head_update
= QTAILQ_EMPTY(&dst
->head
);
1169 num_opts
= count_opts_list(dst
);
1170 num_dst_opts
= num_opts
;
1171 num_opts
+= count_opts_list(list
);
1172 dst
= g_realloc(dst
, sizeof(QemuOptsList
) +
1173 (num_opts
+ 1) * sizeof(QemuOptDesc
));
1176 dst
->implied_opt_name
= NULL
;
1177 dst
->merge_lists
= false;
1179 if (need_head_update
) {
1180 QTAILQ_INIT(&dst
->head
);
1182 dst
->desc
[num_dst_opts
].name
= NULL
;
1184 /* append list->desc to dst->desc */
1187 while (desc
&& desc
->name
) {
1188 if (find_desc_by_name(dst
->desc
, desc
->name
) == NULL
) {
1189 dst
->desc
[num_dst_opts
++] = *desc
;
1190 dst
->desc
[num_dst_opts
].name
= NULL
;