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
= strchr(p
, ',');
82 offset
= p
+ strlen(p
);
86 if (*offset
!= '\0' && *(offset
+ 1) == ',') {
90 *value
= g_renew(char, *value
, capacity
+ length
+ 1);
91 strncpy(*value
+ capacity
, p
, length
);
92 (*value
)[capacity
+ length
] = '\0';
95 if (*offset
== '\0' ||
96 *(offset
+ 1) != ',') {
100 p
+= (offset
- p
) + 2;
106 static void parse_option_bool(const char *name
, const char *value
, bool *ret
,
109 if (!strcmp(value
, "on")) {
111 } else if (!strcmp(value
, "off")) {
114 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
,
115 name
, "'on' or 'off'");
119 static void parse_option_number(const char *name
, const char *value
,
120 uint64_t *ret
, Error
**errp
)
125 err
= qemu_strtou64(value
, NULL
, 0, &number
);
126 if (err
== -ERANGE
) {
127 error_setg(errp
, "Value '%s' is too large for parameter '%s'",
132 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, name
, "a number");
138 static const QemuOptDesc
*find_desc_by_name(const QemuOptDesc
*desc
,
143 for (i
= 0; desc
[i
].name
!= NULL
; i
++) {
144 if (strcmp(desc
[i
].name
, name
) == 0) {
152 void parse_option_size(const char *name
, const char *value
,
153 uint64_t *ret
, Error
**errp
)
158 err
= qemu_strtosz(value
, NULL
, &size
);
159 if (err
== -ERANGE
) {
160 error_setg(errp
, "Value '%s' is out of range for parameter '%s'",
165 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, name
,
166 "a non-negative number below 2^64");
167 error_append_hint(errp
, "Optional suffix k, M, G, T, P or E means"
168 " kilo-, mega-, giga-, tera-, peta-\n"
169 "and exabytes, respectively.\n");
175 bool has_help_option(const char *param
)
177 const char *p
= param
;
180 while (*p
&& !result
) {
183 p
= get_opt_value(p
, &value
);
188 result
= is_help_option(value
);
195 bool is_valid_option_list(const char *p
)
201 p
= get_opt_value(p
, &value
);
203 (!*value
|| *value
== ',')) {
217 void qemu_opts_print_help(QemuOptsList
*list
)
223 printf("Supported options:\n");
224 while (desc
&& desc
->name
) {
225 printf("%-16s %s\n", desc
->name
,
226 desc
->help
? desc
->help
: "No description available");
230 /* ------------------------------------------------------------------ */
232 QemuOpt
*qemu_opt_find(QemuOpts
*opts
, const char *name
)
236 QTAILQ_FOREACH_REVERSE(opt
, &opts
->head
, QemuOptHead
, next
) {
237 if (strcmp(opt
->name
, name
) != 0)
244 static void qemu_opt_del(QemuOpt
*opt
)
246 QTAILQ_REMOVE(&opt
->opts
->head
, opt
, next
);
252 /* qemu_opt_set allows many settings for the same option.
253 * This function deletes all settings for an option.
255 static void qemu_opt_del_all(QemuOpts
*opts
, const char *name
)
257 QemuOpt
*opt
, *next_opt
;
259 QTAILQ_FOREACH_SAFE(opt
, &opts
->head
, next
, next_opt
) {
260 if (!strcmp(opt
->name
, name
)) {
266 const char *qemu_opt_get(QemuOpts
*opts
, const char *name
)
274 opt
= qemu_opt_find(opts
, name
);
276 const QemuOptDesc
*desc
= find_desc_by_name(opts
->list
->desc
, name
);
277 if (desc
&& desc
->def_value_str
) {
278 return desc
->def_value_str
;
281 return opt
? opt
->str
: NULL
;
284 void qemu_opt_iter_init(QemuOptsIter
*iter
, QemuOpts
*opts
, const char *name
)
287 iter
->opt
= QTAILQ_FIRST(&opts
->head
);
291 const char *qemu_opt_iter_next(QemuOptsIter
*iter
)
293 QemuOpt
*ret
= iter
->opt
;
295 while (ret
&& !g_str_equal(iter
->name
, ret
->name
)) {
296 ret
= QTAILQ_NEXT(ret
, next
);
299 iter
->opt
= ret
? QTAILQ_NEXT(ret
, next
) : NULL
;
300 return ret
? ret
->str
: NULL
;
303 /* Get a known option (or its default) and remove it from the list
304 * all in one action. Return a malloced string of the option value.
305 * Result must be freed by caller with g_free().
307 char *qemu_opt_get_del(QemuOpts
*opts
, const char *name
)
310 const QemuOptDesc
*desc
;
317 opt
= qemu_opt_find(opts
, name
);
319 desc
= find_desc_by_name(opts
->list
->desc
, name
);
320 if (desc
&& desc
->def_value_str
) {
321 str
= g_strdup(desc
->def_value_str
);
327 qemu_opt_del_all(opts
, name
);
331 bool qemu_opt_has_help_opt(QemuOpts
*opts
)
335 QTAILQ_FOREACH_REVERSE(opt
, &opts
->head
, QemuOptHead
, next
) {
336 if (is_help_option(opt
->name
)) {
343 static bool qemu_opt_get_bool_helper(QemuOpts
*opts
, const char *name
,
344 bool defval
, bool del
)
353 opt
= qemu_opt_find(opts
, name
);
355 const QemuOptDesc
*desc
= find_desc_by_name(opts
->list
->desc
, name
);
356 if (desc
&& desc
->def_value_str
) {
357 parse_option_bool(name
, desc
->def_value_str
, &ret
, &error_abort
);
361 assert(opt
->desc
&& opt
->desc
->type
== QEMU_OPT_BOOL
);
362 ret
= opt
->value
.boolean
;
364 qemu_opt_del_all(opts
, name
);
369 bool qemu_opt_get_bool(QemuOpts
*opts
, const char *name
, bool defval
)
371 return qemu_opt_get_bool_helper(opts
, name
, defval
, false);
374 bool qemu_opt_get_bool_del(QemuOpts
*opts
, const char *name
, bool defval
)
376 return qemu_opt_get_bool_helper(opts
, name
, defval
, true);
379 static uint64_t qemu_opt_get_number_helper(QemuOpts
*opts
, const char *name
,
380 uint64_t defval
, bool del
)
383 uint64_t ret
= defval
;
389 opt
= qemu_opt_find(opts
, name
);
391 const QemuOptDesc
*desc
= find_desc_by_name(opts
->list
->desc
, name
);
392 if (desc
&& desc
->def_value_str
) {
393 parse_option_number(name
, desc
->def_value_str
, &ret
, &error_abort
);
397 assert(opt
->desc
&& opt
->desc
->type
== QEMU_OPT_NUMBER
);
398 ret
= opt
->value
.uint
;
400 qemu_opt_del_all(opts
, name
);
405 uint64_t qemu_opt_get_number(QemuOpts
*opts
, const char *name
, uint64_t defval
)
407 return qemu_opt_get_number_helper(opts
, name
, defval
, false);
410 uint64_t qemu_opt_get_number_del(QemuOpts
*opts
, const char *name
,
413 return qemu_opt_get_number_helper(opts
, name
, defval
, true);
416 static uint64_t qemu_opt_get_size_helper(QemuOpts
*opts
, const char *name
,
417 uint64_t defval
, bool del
)
420 uint64_t ret
= defval
;
426 opt
= qemu_opt_find(opts
, name
);
428 const QemuOptDesc
*desc
= find_desc_by_name(opts
->list
->desc
, name
);
429 if (desc
&& desc
->def_value_str
) {
430 parse_option_size(name
, desc
->def_value_str
, &ret
, &error_abort
);
434 assert(opt
->desc
&& opt
->desc
->type
== QEMU_OPT_SIZE
);
435 ret
= opt
->value
.uint
;
437 qemu_opt_del_all(opts
, name
);
442 uint64_t qemu_opt_get_size(QemuOpts
*opts
, const char *name
, uint64_t defval
)
444 return qemu_opt_get_size_helper(opts
, name
, defval
, false);
447 uint64_t qemu_opt_get_size_del(QemuOpts
*opts
, const char *name
,
450 return qemu_opt_get_size_helper(opts
, name
, defval
, true);
453 static void qemu_opt_parse(QemuOpt
*opt
, Error
**errp
)
455 if (opt
->desc
== NULL
)
458 switch (opt
->desc
->type
) {
459 case QEMU_OPT_STRING
:
463 parse_option_bool(opt
->name
, opt
->str
, &opt
->value
.boolean
, errp
);
465 case QEMU_OPT_NUMBER
:
466 parse_option_number(opt
->name
, opt
->str
, &opt
->value
.uint
, errp
);
469 parse_option_size(opt
->name
, opt
->str
, &opt
->value
.uint
, errp
);
476 static bool opts_accepts_any(const QemuOpts
*opts
)
478 return opts
->list
->desc
[0].name
== NULL
;
481 int qemu_opt_unset(QemuOpts
*opts
, const char *name
)
483 QemuOpt
*opt
= qemu_opt_find(opts
, name
);
485 assert(opts_accepts_any(opts
));
495 static void opt_set(QemuOpts
*opts
, const char *name
, char *value
,
496 bool prepend
, Error
**errp
)
499 const QemuOptDesc
*desc
;
500 Error
*local_err
= NULL
;
502 desc
= find_desc_by_name(opts
->list
->desc
, name
);
503 if (!desc
&& !opts_accepts_any(opts
)) {
505 error_setg(errp
, QERR_INVALID_PARAMETER
, name
);
509 opt
= g_malloc0(sizeof(*opt
));
510 opt
->name
= g_strdup(name
);
513 QTAILQ_INSERT_HEAD(&opts
->head
, opt
, next
);
515 QTAILQ_INSERT_TAIL(&opts
->head
, opt
, next
);
519 qemu_opt_parse(opt
, &local_err
);
521 error_propagate(errp
, local_err
);
526 void qemu_opt_set(QemuOpts
*opts
, const char *name
, const char *value
,
529 opt_set(opts
, name
, g_strdup(value
), false, errp
);
532 void qemu_opt_set_bool(QemuOpts
*opts
, const char *name
, bool val
,
536 const QemuOptDesc
*desc
= opts
->list
->desc
;
538 opt
= g_malloc0(sizeof(*opt
));
539 opt
->desc
= find_desc_by_name(desc
, name
);
540 if (!opt
->desc
&& !opts_accepts_any(opts
)) {
541 error_setg(errp
, QERR_INVALID_PARAMETER
, name
);
546 opt
->name
= g_strdup(name
);
548 opt
->value
.boolean
= !!val
;
549 opt
->str
= g_strdup(val
? "on" : "off");
550 QTAILQ_INSERT_TAIL(&opts
->head
, opt
, next
);
553 void qemu_opt_set_number(QemuOpts
*opts
, const char *name
, int64_t val
,
557 const QemuOptDesc
*desc
= opts
->list
->desc
;
559 opt
= g_malloc0(sizeof(*opt
));
560 opt
->desc
= find_desc_by_name(desc
, name
);
561 if (!opt
->desc
&& !opts_accepts_any(opts
)) {
562 error_setg(errp
, QERR_INVALID_PARAMETER
, name
);
567 opt
->name
= g_strdup(name
);
569 opt
->value
.uint
= val
;
570 opt
->str
= g_strdup_printf("%" PRId64
, val
);
571 QTAILQ_INSERT_TAIL(&opts
->head
, opt
, next
);
575 * For each member of @opts, call @func(@opaque, name, value, @errp).
576 * @func() may store an Error through @errp, but must return non-zero then.
577 * When @func() returns non-zero, break the loop and return that value.
578 * Return zero when the loop completes.
580 int qemu_opt_foreach(QemuOpts
*opts
, qemu_opt_loopfunc func
, void *opaque
,
586 QTAILQ_FOREACH(opt
, &opts
->head
, next
) {
587 rc
= func(opaque
, opt
->name
, opt
->str
, errp
);
591 assert(!errp
|| !*errp
);
596 QemuOpts
*qemu_opts_find(QemuOptsList
*list
, const char *id
)
600 QTAILQ_FOREACH(opts
, &list
->head
, next
) {
601 if (!opts
->id
&& !id
) {
604 if (opts
->id
&& id
&& !strcmp(opts
->id
, id
)) {
611 QemuOpts
*qemu_opts_create(QemuOptsList
*list
, const char *id
,
612 int fail_if_exists
, Error
**errp
)
614 QemuOpts
*opts
= NULL
;
617 if (!id_wellformed(id
)) {
618 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "id",
620 error_append_hint(errp
, "Identifiers consist of letters, digits, "
621 "'-', '.', '_', starting with a letter.\n");
624 opts
= qemu_opts_find(list
, id
);
626 if (fail_if_exists
&& !list
->merge_lists
) {
627 error_setg(errp
, "Duplicate ID '%s' for %s", id
, list
->name
);
633 } else if (list
->merge_lists
) {
634 opts
= qemu_opts_find(list
, NULL
);
639 opts
= g_malloc0(sizeof(*opts
));
640 opts
->id
= g_strdup(id
);
642 loc_save(&opts
->loc
);
643 QTAILQ_INIT(&opts
->head
);
644 QTAILQ_INSERT_TAIL(&list
->head
, opts
, next
);
648 void qemu_opts_reset(QemuOptsList
*list
)
650 QemuOpts
*opts
, *next_opts
;
652 QTAILQ_FOREACH_SAFE(opts
, &list
->head
, next
, next_opts
) {
657 void qemu_opts_loc_restore(QemuOpts
*opts
)
659 loc_restore(&opts
->loc
);
662 void qemu_opts_set(QemuOptsList
*list
, const char *id
,
663 const char *name
, const char *value
, Error
**errp
)
666 Error
*local_err
= NULL
;
668 opts
= qemu_opts_create(list
, id
, 1, &local_err
);
670 error_propagate(errp
, local_err
);
673 qemu_opt_set(opts
, name
, value
, errp
);
676 const char *qemu_opts_id(QemuOpts
*opts
)
681 /* The id string will be g_free()d by qemu_opts_del */
682 void qemu_opts_set_id(QemuOpts
*opts
, char *id
)
687 void qemu_opts_del(QemuOpts
*opts
)
696 opt
= QTAILQ_FIRST(&opts
->head
);
701 QTAILQ_REMOVE(&opts
->list
->head
, opts
, next
);
706 /* print value, escaping any commas in value */
707 static void escaped_print(const char *value
)
711 for (ptr
= value
; *ptr
; ++ptr
) {
719 void qemu_opts_print(QemuOpts
*opts
, const char *separator
)
722 QemuOptDesc
*desc
= opts
->list
->desc
;
723 const char *sep
= "";
726 printf("id=%s", opts
->id
); /* passed id_wellformed -> no commas */
730 if (desc
[0].name
== NULL
) {
731 QTAILQ_FOREACH(opt
, &opts
->head
, next
) {
732 printf("%s%s=", sep
, opt
->name
);
733 escaped_print(opt
->str
);
738 for (; desc
&& desc
->name
; desc
++) {
740 opt
= qemu_opt_find(opts
, desc
->name
);
742 value
= opt
? opt
->str
: desc
->def_value_str
;
746 if (desc
->type
== QEMU_OPT_STRING
) {
747 printf("%s%s=", sep
, desc
->name
);
748 escaped_print(value
);
749 } else if ((desc
->type
== QEMU_OPT_SIZE
||
750 desc
->type
== QEMU_OPT_NUMBER
) && opt
) {
751 printf("%s%s=%" PRId64
, sep
, desc
->name
, opt
->value
.uint
);
753 printf("%s%s=%s", sep
, desc
->name
, value
);
759 static void opts_do_parse(QemuOpts
*opts
, const char *params
,
760 const char *firstname
, bool prepend
, Error
**errp
)
764 const char *p
,*pe
,*pc
;
765 Error
*local_err
= NULL
;
767 for (p
= params
; *p
!= '\0'; p
++) {
770 if (!pe
|| (pc
&& pc
< pe
)) {
771 /* found "foo,more" */
772 if (p
== params
&& firstname
) {
773 /* implicitly named first option */
774 option
= g_strdup(firstname
);
775 p
= get_opt_value(p
, &value
);
777 /* option without value, probably a flag */
778 p
= get_opt_name(p
, &option
, ',');
779 if (strncmp(option
, "no", 2) == 0) {
780 memmove(option
, option
+2, strlen(option
+2)+1);
781 value
= g_strdup("off");
783 value
= g_strdup("on");
787 /* found "foo=bar,more" */
788 p
= get_opt_name(p
, &option
, '=');
791 p
= get_opt_value(p
, &value
);
793 if (strcmp(option
, "id") != 0) {
794 /* store and parse */
795 opt_set(opts
, option
, value
, prepend
, &local_err
);
798 error_propagate(errp
, local_err
);
807 option
= value
= NULL
;
816 * Store options parsed from @params into @opts.
817 * If @firstname is non-null, the first key=value in @params may omit
818 * key=, and is treated as if key was @firstname.
819 * On error, store an error object through @errp if non-null.
821 void qemu_opts_do_parse(QemuOpts
*opts
, const char *params
,
822 const char *firstname
, Error
**errp
)
824 opts_do_parse(opts
, params
, firstname
, false, errp
);
827 static QemuOpts
*opts_parse(QemuOptsList
*list
, const char *params
,
828 bool permit_abbrev
, bool defaults
, Error
**errp
)
830 const char *firstname
;
834 Error
*local_err
= NULL
;
836 assert(!permit_abbrev
|| list
->implied_opt_name
);
837 firstname
= permit_abbrev
? list
->implied_opt_name
: NULL
;
839 if (strncmp(params
, "id=", 3) == 0) {
840 get_opt_value(params
+ 3, &id
);
841 } else if ((p
= strstr(params
, ",id=")) != NULL
) {
842 get_opt_value(p
+ 4, &id
);
846 * This code doesn't work for defaults && !list->merge_lists: when
847 * params has no id=, and list has an element with !opts->id, it
848 * appends a new element instead of returning the existing opts.
849 * However, we got no use for this case. Guard against possible
850 * (if unlikely) future misuse:
852 assert(!defaults
|| list
->merge_lists
);
853 opts
= qemu_opts_create(list
, id
, !defaults
, &local_err
);
856 error_propagate(errp
, local_err
);
860 opts_do_parse(opts
, params
, firstname
, defaults
, &local_err
);
862 error_propagate(errp
, local_err
);
871 * Create a QemuOpts in @list and with options parsed from @params.
872 * If @permit_abbrev, the first key=value in @params may omit key=,
873 * and is treated as if key was @list->implied_opt_name.
874 * On error, store an error object through @errp if non-null.
875 * Return the new QemuOpts on success, null pointer on error.
877 QemuOpts
*qemu_opts_parse(QemuOptsList
*list
, const char *params
,
878 bool permit_abbrev
, Error
**errp
)
880 return opts_parse(list
, params
, permit_abbrev
, false, errp
);
884 * Create a QemuOpts in @list and with options parsed from @params.
885 * If @permit_abbrev, the first key=value in @params may omit key=,
886 * and is treated as if key was @list->implied_opt_name.
887 * Report errors with error_report_err(). This is inappropriate in
888 * QMP context. Do not use this function there!
889 * Return the new QemuOpts on success, null pointer on error.
891 QemuOpts
*qemu_opts_parse_noisily(QemuOptsList
*list
, const char *params
,
897 opts
= opts_parse(list
, params
, permit_abbrev
, false, &err
);
899 error_report_err(err
);
904 void qemu_opts_set_defaults(QemuOptsList
*list
, const char *params
,
909 opts
= opts_parse(list
, params
, permit_abbrev
, true, NULL
);
913 typedef struct OptsFromQDictState
{
916 } OptsFromQDictState
;
918 static void qemu_opts_from_qdict_1(const char *key
, QObject
*obj
, void *opaque
)
920 OptsFromQDictState
*state
= opaque
;
921 char buf
[32], *tmp
= NULL
;
924 if (!strcmp(key
, "id") || *state
->errp
) {
928 switch (qobject_type(obj
)) {
930 value
= qstring_get_str(qobject_to(QString
, obj
));
933 tmp
= qnum_to_string(qobject_to(QNum
, obj
));
937 pstrcpy(buf
, sizeof(buf
),
938 qbool_get_bool(qobject_to(QBool
, obj
)) ? "on" : "off");
945 qemu_opt_set(state
->opts
, key
, value
, state
->errp
);
950 * Create QemuOpts from a QDict.
951 * Use value of key "id" as ID if it exists and is a QString. Only
952 * QStrings, QNums and QBools are copied. Entries with other types
953 * are silently ignored.
955 QemuOpts
*qemu_opts_from_qdict(QemuOptsList
*list
, const QDict
*qdict
,
958 OptsFromQDictState state
;
959 Error
*local_err
= NULL
;
962 opts
= qemu_opts_create(list
, qdict_get_try_str(qdict
, "id"), 1,
965 error_propagate(errp
, local_err
);
969 assert(opts
!= NULL
);
971 state
.errp
= &local_err
;
973 qdict_iter(qdict
, qemu_opts_from_qdict_1
, &state
);
975 error_propagate(errp
, local_err
);
984 * Adds all QDict entries to the QemuOpts that can be added and removes them
985 * from the QDict. When this function returns, the QDict contains only those
986 * entries that couldn't be added to the QemuOpts.
988 void qemu_opts_absorb_qdict(QemuOpts
*opts
, QDict
*qdict
, Error
**errp
)
990 const QDictEntry
*entry
, *next
;
992 entry
= qdict_first(qdict
);
994 while (entry
!= NULL
) {
995 Error
*local_err
= NULL
;
996 OptsFromQDictState state
= {
1001 next
= qdict_next(qdict
, entry
);
1003 if (find_desc_by_name(opts
->list
->desc
, entry
->key
)) {
1004 qemu_opts_from_qdict_1(entry
->key
, entry
->value
, &state
);
1006 error_propagate(errp
, local_err
);
1009 qdict_del(qdict
, entry
->key
);
1018 * Convert from QemuOpts to QDict. The QDict values are of type QString.
1020 * If @list is given, only add those options to the QDict that are contained in
1021 * the list. If @del is true, any options added to the QDict are removed from
1022 * the QemuOpts, otherwise they remain there.
1024 * If two options in @opts have the same name, they are processed in order
1025 * so that the last one wins (consistent with the reverse iteration in
1026 * qemu_opt_find()), but all of them are deleted if @del is true.
1028 * TODO We'll want to use types appropriate for opt->desc->type, but
1029 * this is enough for now.
1031 QDict
*qemu_opts_to_qdict_filtered(QemuOpts
*opts
, QDict
*qdict
,
1032 QemuOptsList
*list
, bool del
)
1034 QemuOpt
*opt
, *next
;
1037 qdict
= qdict_new();
1040 qdict_put_str(qdict
, "id", opts
->id
);
1042 QTAILQ_FOREACH_SAFE(opt
, &opts
->head
, next
, next
) {
1046 for (desc
= list
->desc
; desc
->name
; desc
++) {
1047 if (!strcmp(desc
->name
, opt
->name
)) {
1056 qdict_put_str(qdict
, opt
->name
, opt
->str
);
1064 /* Copy all options in a QemuOpts to the given QDict. See
1065 * qemu_opts_to_qdict_filtered() for details. */
1066 QDict
*qemu_opts_to_qdict(QemuOpts
*opts
, QDict
*qdict
)
1068 return qemu_opts_to_qdict_filtered(opts
, qdict
, NULL
, false);
1071 /* Validate parsed opts against descriptions where no
1072 * descriptions were provided in the QemuOptsList.
1074 void qemu_opts_validate(QemuOpts
*opts
, const QemuOptDesc
*desc
, Error
**errp
)
1077 Error
*local_err
= NULL
;
1079 assert(opts_accepts_any(opts
));
1081 QTAILQ_FOREACH(opt
, &opts
->head
, next
) {
1082 opt
->desc
= find_desc_by_name(desc
, opt
->name
);
1084 error_setg(errp
, QERR_INVALID_PARAMETER
, opt
->name
);
1088 qemu_opt_parse(opt
, &local_err
);
1090 error_propagate(errp
, local_err
);
1097 * For each member of @list, call @func(@opaque, member, @errp).
1098 * Call it with the current location temporarily set to the member's.
1099 * @func() may store an Error through @errp, but must return non-zero then.
1100 * When @func() returns non-zero, break the loop and return that value.
1101 * Return zero when the loop completes.
1103 int qemu_opts_foreach(QemuOptsList
*list
, qemu_opts_loopfunc func
,
1104 void *opaque
, Error
**errp
)
1110 loc_push_none(&loc
);
1111 QTAILQ_FOREACH(opts
, &list
->head
, next
) {
1112 loc_restore(&opts
->loc
);
1113 rc
= func(opaque
, opts
, errp
);
1117 assert(!errp
|| !*errp
);
1123 static size_t count_opts_list(QemuOptsList
*list
)
1125 QemuOptDesc
*desc
= NULL
;
1126 size_t num_opts
= 0;
1133 while (desc
&& desc
->name
) {
1141 void qemu_opts_free(QemuOptsList
*list
)
1146 /* Realloc dst option list and append options from an option list (list)
1147 * to it. dst could be NULL or a malloced list.
1148 * The lifetime of dst must be shorter than the input list because the
1149 * QemuOptDesc->name, ->help, and ->def_value_str strings are shared.
1151 QemuOptsList
*qemu_opts_append(QemuOptsList
*dst
,
1154 size_t num_opts
, num_dst_opts
;
1156 bool need_init
= false;
1157 bool need_head_update
;
1163 /* If dst is NULL, after realloc, some area of dst should be initialized
1164 * before adding options to it.
1168 need_head_update
= true;
1170 /* Moreover, even if dst is not NULL, the realloc may move it to a
1171 * different address in which case we may get a stale tail pointer
1173 need_head_update
= QTAILQ_EMPTY(&dst
->head
);
1176 num_opts
= count_opts_list(dst
);
1177 num_dst_opts
= num_opts
;
1178 num_opts
+= count_opts_list(list
);
1179 dst
= g_realloc(dst
, sizeof(QemuOptsList
) +
1180 (num_opts
+ 1) * sizeof(QemuOptDesc
));
1183 dst
->implied_opt_name
= NULL
;
1184 dst
->merge_lists
= false;
1186 if (need_head_update
) {
1187 QTAILQ_INIT(&dst
->head
);
1189 dst
->desc
[num_dst_opts
].name
= NULL
;
1191 /* append list->desc to dst->desc */
1194 while (desc
&& desc
->name
) {
1195 if (find_desc_by_name(dst
->desc
, desc
->name
) == NULL
) {
1196 dst
->desc
[num_dst_opts
++] = *desc
;
1197 dst
->desc
[num_dst_opts
].name
= NULL
;