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
29 #include "qemu-common.h"
30 #include "qemu/error-report.h"
31 #include "qapi/qmp/types.h"
32 #include "qapi/error.h"
33 #include "qapi/qmp/qerror.h"
34 #include "qemu/option_int.h"
37 * Extracts the name of an option from the parameter string (p points at the
38 * first byte of the option name)
40 * The option name is delimited by delim (usually , or =) or the string end
41 * and is copied into buf. If the option name is longer than buf_size, it is
42 * truncated. buf is always zero terminated.
44 * The return value is the position of the delimiter/zero byte after the option
47 const char *get_opt_name(char *buf
, int buf_size
, const char *p
, char delim
)
52 while (*p
!= '\0' && *p
!= delim
) {
53 if (q
&& (q
- buf
) < buf_size
- 1)
64 * Extracts the value of an option from the parameter string p (p points at the
65 * first byte of the option value)
67 * This function is comparable to get_opt_name with the difference that the
68 * delimiter is fixed to be comma which starts a new option. To specify an
69 * option value that contains commas, double each comma.
71 const char *get_opt_value(char *buf
, int buf_size
, const char *p
)
82 if (q
&& (q
- buf
) < buf_size
- 1)
92 int get_next_param_value(char *buf
, int buf_size
,
93 const char *tag
, const char **pstr
)
100 p
= get_opt_name(option
, sizeof(option
), p
, '=');
104 if (!strcmp(tag
, option
)) {
105 *pstr
= get_opt_value(buf
, buf_size
, p
);
111 p
= get_opt_value(NULL
, 0, p
);
120 int get_param_value(char *buf
, int buf_size
,
121 const char *tag
, const char *str
)
123 return get_next_param_value(buf
, buf_size
, tag
, &str
);
126 static void parse_option_bool(const char *name
, const char *value
, bool *ret
,
130 if (!strcmp(value
, "on")) {
132 } else if (!strcmp(value
, "off")) {
135 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
,
136 name
, "'on' or 'off'");
143 static void parse_option_number(const char *name
, const char *value
,
144 uint64_t *ret
, Error
**errp
)
150 number
= strtoull(value
, &postfix
, 0);
151 if (*postfix
!= '\0') {
152 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, name
, "a number");
157 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, name
, "a number");
161 static const QemuOptDesc
*find_desc_by_name(const QemuOptDesc
*desc
,
166 for (i
= 0; desc
[i
].name
!= NULL
; i
++) {
167 if (strcmp(desc
[i
].name
, name
) == 0) {
175 void parse_option_size(const char *name
, const char *value
,
176 uint64_t *ret
, Error
**errp
)
182 sizef
= strtod(value
, &postfix
);
183 if (sizef
< 0 || sizef
> UINT64_MAX
) {
184 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, name
,
185 "a non-negative number below 2^64");
204 *ret
= (uint64_t) sizef
;
207 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, name
, "a size");
208 #if 0 /* conversion from qerror_report() to error_set() broke this: */
209 error_printf_unless_qmp("You may use k, M, G or T suffixes for "
210 "kilobytes, megabytes, gigabytes and terabytes.\n");
215 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, name
, "a size");
219 bool has_help_option(const char *param
)
221 size_t buflen
= strlen(param
) + 1;
222 char *buf
= g_malloc(buflen
);
223 const char *p
= param
;
227 p
= get_opt_value(buf
, buflen
, p
);
232 if (is_help_option(buf
)) {
243 bool is_valid_option_list(const char *param
)
245 size_t buflen
= strlen(param
) + 1;
246 char *buf
= g_malloc(buflen
);
247 const char *p
= param
;
251 p
= get_opt_value(buf
, buflen
, p
);
257 if (!*buf
|| *buf
== ',') {
268 void qemu_opts_print_help(QemuOptsList
*list
)
274 printf("Supported options:\n");
275 while (desc
&& desc
->name
) {
276 printf("%-16s %s\n", desc
->name
,
277 desc
->help
? desc
->help
: "No description available");
281 /* ------------------------------------------------------------------ */
283 QemuOpt
*qemu_opt_find(QemuOpts
*opts
, const char *name
)
287 QTAILQ_FOREACH_REVERSE(opt
, &opts
->head
, QemuOptHead
, next
) {
288 if (strcmp(opt
->name
, name
) != 0)
295 static void qemu_opt_del(QemuOpt
*opt
)
297 QTAILQ_REMOVE(&opt
->opts
->head
, opt
, next
);
303 /* qemu_opt_set allows many settings for the same option.
304 * This function deletes all settings for an option.
306 static void qemu_opt_del_all(QemuOpts
*opts
, const char *name
)
308 QemuOpt
*opt
, *next_opt
;
310 QTAILQ_FOREACH_SAFE(opt
, &opts
->head
, next
, next_opt
) {
311 if (!strcmp(opt
->name
, name
)) {
317 const char *qemu_opt_get(QemuOpts
*opts
, const char *name
)
325 opt
= qemu_opt_find(opts
, name
);
327 const QemuOptDesc
*desc
= find_desc_by_name(opts
->list
->desc
, name
);
328 if (desc
&& desc
->def_value_str
) {
329 return desc
->def_value_str
;
332 return opt
? opt
->str
: NULL
;
335 /* Get a known option (or its default) and remove it from the list
336 * all in one action. Return a malloced string of the option value.
337 * Result must be freed by caller with g_free().
339 char *qemu_opt_get_del(QemuOpts
*opts
, const char *name
)
342 const QemuOptDesc
*desc
;
349 opt
= qemu_opt_find(opts
, name
);
351 desc
= find_desc_by_name(opts
->list
->desc
, name
);
352 if (desc
&& desc
->def_value_str
) {
353 str
= g_strdup(desc
->def_value_str
);
359 qemu_opt_del_all(opts
, name
);
363 bool qemu_opt_has_help_opt(QemuOpts
*opts
)
367 QTAILQ_FOREACH_REVERSE(opt
, &opts
->head
, QemuOptHead
, next
) {
368 if (is_help_option(opt
->name
)) {
375 static bool qemu_opt_get_bool_helper(QemuOpts
*opts
, const char *name
,
376 bool defval
, bool del
)
385 opt
= qemu_opt_find(opts
, name
);
387 const QemuOptDesc
*desc
= find_desc_by_name(opts
->list
->desc
, name
);
388 if (desc
&& desc
->def_value_str
) {
389 parse_option_bool(name
, desc
->def_value_str
, &ret
, &error_abort
);
393 assert(opt
->desc
&& opt
->desc
->type
== QEMU_OPT_BOOL
);
394 ret
= opt
->value
.boolean
;
396 qemu_opt_del_all(opts
, name
);
401 bool qemu_opt_get_bool(QemuOpts
*opts
, const char *name
, bool defval
)
403 return qemu_opt_get_bool_helper(opts
, name
, defval
, false);
406 bool qemu_opt_get_bool_del(QemuOpts
*opts
, const char *name
, bool defval
)
408 return qemu_opt_get_bool_helper(opts
, name
, defval
, true);
411 static uint64_t qemu_opt_get_number_helper(QemuOpts
*opts
, const char *name
,
412 uint64_t defval
, bool del
)
415 uint64_t ret
= defval
;
421 opt
= qemu_opt_find(opts
, name
);
423 const QemuOptDesc
*desc
= find_desc_by_name(opts
->list
->desc
, name
);
424 if (desc
&& desc
->def_value_str
) {
425 parse_option_number(name
, desc
->def_value_str
, &ret
, &error_abort
);
429 assert(opt
->desc
&& opt
->desc
->type
== QEMU_OPT_NUMBER
);
430 ret
= opt
->value
.uint
;
432 qemu_opt_del_all(opts
, name
);
437 uint64_t qemu_opt_get_number(QemuOpts
*opts
, const char *name
, uint64_t defval
)
439 return qemu_opt_get_number_helper(opts
, name
, defval
, false);
442 uint64_t qemu_opt_get_number_del(QemuOpts
*opts
, const char *name
,
445 return qemu_opt_get_number_helper(opts
, name
, defval
, true);
448 static uint64_t qemu_opt_get_size_helper(QemuOpts
*opts
, const char *name
,
449 uint64_t defval
, bool del
)
452 uint64_t ret
= defval
;
458 opt
= qemu_opt_find(opts
, name
);
460 const QemuOptDesc
*desc
= find_desc_by_name(opts
->list
->desc
, name
);
461 if (desc
&& desc
->def_value_str
) {
462 parse_option_size(name
, desc
->def_value_str
, &ret
, &error_abort
);
466 assert(opt
->desc
&& opt
->desc
->type
== QEMU_OPT_SIZE
);
467 ret
= opt
->value
.uint
;
469 qemu_opt_del_all(opts
, name
);
474 uint64_t qemu_opt_get_size(QemuOpts
*opts
, const char *name
, uint64_t defval
)
476 return qemu_opt_get_size_helper(opts
, name
, defval
, false);
479 uint64_t qemu_opt_get_size_del(QemuOpts
*opts
, const char *name
,
482 return qemu_opt_get_size_helper(opts
, name
, defval
, true);
485 static void qemu_opt_parse(QemuOpt
*opt
, Error
**errp
)
487 if (opt
->desc
== NULL
)
490 switch (opt
->desc
->type
) {
491 case QEMU_OPT_STRING
:
495 parse_option_bool(opt
->name
, opt
->str
, &opt
->value
.boolean
, errp
);
497 case QEMU_OPT_NUMBER
:
498 parse_option_number(opt
->name
, opt
->str
, &opt
->value
.uint
, errp
);
501 parse_option_size(opt
->name
, opt
->str
, &opt
->value
.uint
, errp
);
508 static bool opts_accepts_any(const QemuOpts
*opts
)
510 return opts
->list
->desc
[0].name
== NULL
;
513 int qemu_opt_unset(QemuOpts
*opts
, const char *name
)
515 QemuOpt
*opt
= qemu_opt_find(opts
, name
);
517 assert(opts_accepts_any(opts
));
527 static void opt_set(QemuOpts
*opts
, const char *name
, const char *value
,
528 bool prepend
, Error
**errp
)
531 const QemuOptDesc
*desc
;
532 Error
*local_err
= NULL
;
534 desc
= find_desc_by_name(opts
->list
->desc
, name
);
535 if (!desc
&& !opts_accepts_any(opts
)) {
536 error_setg(errp
, QERR_INVALID_PARAMETER
, name
);
540 opt
= g_malloc0(sizeof(*opt
));
541 opt
->name
= g_strdup(name
);
544 QTAILQ_INSERT_HEAD(&opts
->head
, opt
, next
);
546 QTAILQ_INSERT_TAIL(&opts
->head
, opt
, next
);
549 opt
->str
= g_strdup(value
);
550 qemu_opt_parse(opt
, &local_err
);
552 error_propagate(errp
, local_err
);
557 void qemu_opt_set(QemuOpts
*opts
, const char *name
, const char *value
,
560 opt_set(opts
, name
, value
, false, errp
);
563 void qemu_opt_set_bool(QemuOpts
*opts
, const char *name
, bool val
,
567 const QemuOptDesc
*desc
= opts
->list
->desc
;
569 opt
= g_malloc0(sizeof(*opt
));
570 opt
->desc
= find_desc_by_name(desc
, name
);
571 if (!opt
->desc
&& !opts_accepts_any(opts
)) {
572 error_setg(errp
, QERR_INVALID_PARAMETER
, name
);
577 opt
->name
= g_strdup(name
);
579 opt
->value
.boolean
= !!val
;
580 opt
->str
= g_strdup(val
? "on" : "off");
581 QTAILQ_INSERT_TAIL(&opts
->head
, opt
, next
);
584 void qemu_opt_set_number(QemuOpts
*opts
, const char *name
, int64_t val
,
588 const QemuOptDesc
*desc
= opts
->list
->desc
;
590 opt
= g_malloc0(sizeof(*opt
));
591 opt
->desc
= find_desc_by_name(desc
, name
);
592 if (!opt
->desc
&& !opts_accepts_any(opts
)) {
593 error_setg(errp
, QERR_INVALID_PARAMETER
, name
);
598 opt
->name
= g_strdup(name
);
600 opt
->value
.uint
= val
;
601 opt
->str
= g_strdup_printf("%" PRId64
, val
);
602 QTAILQ_INSERT_TAIL(&opts
->head
, opt
, next
);
606 * For each member of @opts, call @func(@opaque, name, value, @errp).
607 * @func() may store an Error through @errp, but must return non-zero then.
608 * When @func() returns non-zero, break the loop and return that value.
609 * Return zero when the loop completes.
611 int qemu_opt_foreach(QemuOpts
*opts
, qemu_opt_loopfunc func
, void *opaque
,
617 QTAILQ_FOREACH(opt
, &opts
->head
, next
) {
618 rc
= func(opaque
, opt
->name
, opt
->str
, errp
);
622 assert(!errp
|| !*errp
);
627 QemuOpts
*qemu_opts_find(QemuOptsList
*list
, const char *id
)
631 QTAILQ_FOREACH(opts
, &list
->head
, next
) {
632 if (!opts
->id
&& !id
) {
635 if (opts
->id
&& id
&& !strcmp(opts
->id
, id
)) {
642 QemuOpts
*qemu_opts_create(QemuOptsList
*list
, const char *id
,
643 int fail_if_exists
, Error
**errp
)
645 QemuOpts
*opts
= NULL
;
648 if (!id_wellformed(id
)) {
649 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "id",
651 #if 0 /* conversion from qerror_report() to error_set() broke this: */
652 error_printf_unless_qmp("Identifiers consist of letters, digits, '-', '.', '_', starting with a letter.\n");
656 opts
= qemu_opts_find(list
, id
);
658 if (fail_if_exists
&& !list
->merge_lists
) {
659 error_setg(errp
, "Duplicate ID '%s' for %s", id
, list
->name
);
665 } else if (list
->merge_lists
) {
666 opts
= qemu_opts_find(list
, NULL
);
671 opts
= g_malloc0(sizeof(*opts
));
672 opts
->id
= g_strdup(id
);
674 loc_save(&opts
->loc
);
675 QTAILQ_INIT(&opts
->head
);
676 QTAILQ_INSERT_TAIL(&list
->head
, opts
, next
);
680 void qemu_opts_reset(QemuOptsList
*list
)
682 QemuOpts
*opts
, *next_opts
;
684 QTAILQ_FOREACH_SAFE(opts
, &list
->head
, next
, next_opts
) {
689 void qemu_opts_loc_restore(QemuOpts
*opts
)
691 loc_restore(&opts
->loc
);
694 void qemu_opts_set(QemuOptsList
*list
, const char *id
,
695 const char *name
, const char *value
, Error
**errp
)
698 Error
*local_err
= NULL
;
700 opts
= qemu_opts_create(list
, id
, 1, &local_err
);
702 error_propagate(errp
, local_err
);
705 qemu_opt_set(opts
, name
, value
, errp
);
708 const char *qemu_opts_id(QemuOpts
*opts
)
713 /* The id string will be g_free()d by qemu_opts_del */
714 void qemu_opts_set_id(QemuOpts
*opts
, char *id
)
719 void qemu_opts_del(QemuOpts
*opts
)
728 opt
= QTAILQ_FIRST(&opts
->head
);
733 QTAILQ_REMOVE(&opts
->list
->head
, opts
, next
);
738 /* print value, escaping any commas in value */
739 static void escaped_print(const char *value
)
743 for (ptr
= value
; *ptr
; ++ptr
) {
751 void qemu_opts_print(QemuOpts
*opts
, const char *separator
)
754 QemuOptDesc
*desc
= opts
->list
->desc
;
755 const char *sep
= "";
758 printf("id=%s", opts
->id
); /* passed id_wellformed -> no commas */
762 if (desc
[0].name
== NULL
) {
763 QTAILQ_FOREACH(opt
, &opts
->head
, next
) {
764 printf("%s%s=", sep
, opt
->name
);
765 escaped_print(opt
->str
);
770 for (; desc
&& desc
->name
; desc
++) {
772 QemuOpt
*opt
= qemu_opt_find(opts
, desc
->name
);
774 value
= opt
? opt
->str
: desc
->def_value_str
;
778 if (desc
->type
== QEMU_OPT_STRING
) {
779 printf("%s%s=", sep
, desc
->name
);
780 escaped_print(value
);
781 } else if ((desc
->type
== QEMU_OPT_SIZE
||
782 desc
->type
== QEMU_OPT_NUMBER
) && opt
) {
783 printf("%s%s=%" PRId64
, sep
, desc
->name
, opt
->value
.uint
);
785 printf("%s%s=%s", sep
, desc
->name
, value
);
791 static void opts_do_parse(QemuOpts
*opts
, const char *params
,
792 const char *firstname
, bool prepend
, Error
**errp
)
794 char option
[128], value
[1024];
795 const char *p
,*pe
,*pc
;
796 Error
*local_err
= NULL
;
798 for (p
= params
; *p
!= '\0'; p
++) {
801 if (!pe
|| (pc
&& pc
< pe
)) {
802 /* found "foo,more" */
803 if (p
== params
&& firstname
) {
804 /* implicitly named first option */
805 pstrcpy(option
, sizeof(option
), firstname
);
806 p
= get_opt_value(value
, sizeof(value
), p
);
808 /* option without value, probably a flag */
809 p
= get_opt_name(option
, sizeof(option
), p
, ',');
810 if (strncmp(option
, "no", 2) == 0) {
811 memmove(option
, option
+2, strlen(option
+2)+1);
812 pstrcpy(value
, sizeof(value
), "off");
814 pstrcpy(value
, sizeof(value
), "on");
818 /* found "foo=bar,more" */
819 p
= get_opt_name(option
, sizeof(option
), p
, '=');
824 p
= get_opt_value(value
, sizeof(value
), p
);
826 if (strcmp(option
, "id") != 0) {
827 /* store and parse */
828 opt_set(opts
, option
, value
, prepend
, &local_err
);
830 error_propagate(errp
, local_err
);
841 * Store options parsed from @params into @opts.
842 * If @firstname is non-null, the first key=value in @params may omit
843 * key=, and is treated as if key was @firstname.
844 * On error, store an error object through @errp if non-null.
846 void qemu_opts_do_parse(QemuOpts
*opts
, const char *params
,
847 const char *firstname
, Error
**errp
)
849 opts_do_parse(opts
, params
, firstname
, false, errp
);
852 static QemuOpts
*opts_parse(QemuOptsList
*list
, const char *params
,
853 bool permit_abbrev
, bool defaults
, Error
**errp
)
855 const char *firstname
;
856 char value
[1024], *id
= NULL
;
859 Error
*local_err
= NULL
;
861 assert(!permit_abbrev
|| list
->implied_opt_name
);
862 firstname
= permit_abbrev
? list
->implied_opt_name
: NULL
;
864 if (strncmp(params
, "id=", 3) == 0) {
865 get_opt_value(value
, sizeof(value
), params
+3);
867 } else if ((p
= strstr(params
, ",id=")) != NULL
) {
868 get_opt_value(value
, sizeof(value
), p
+4);
873 * This code doesn't work for defaults && !list->merge_lists: when
874 * params has no id=, and list has an element with !opts->id, it
875 * appends a new element instead of returning the existing opts.
876 * However, we got no use for this case. Guard against possible
877 * (if unlikely) future misuse:
879 assert(!defaults
|| list
->merge_lists
);
880 opts
= qemu_opts_create(list
, id
, !defaults
, &local_err
);
882 error_propagate(errp
, local_err
);
886 opts_do_parse(opts
, params
, firstname
, defaults
, &local_err
);
888 error_propagate(errp
, local_err
);
897 * Create a QemuOpts in @list and with options parsed from @params.
898 * If @permit_abbrev, the first key=value in @params may omit key=,
899 * and is treated as if key was @list->implied_opt_name.
900 * On error, store an error object through @errp if non-null.
901 * Return the new QemuOpts on success, null pointer on error.
903 QemuOpts
*qemu_opts_parse(QemuOptsList
*list
, const char *params
,
904 bool permit_abbrev
, Error
**errp
)
906 return opts_parse(list
, params
, permit_abbrev
, false, errp
);
910 * Create a QemuOpts in @list and with options parsed from @params.
911 * If @permit_abbrev, the first key=value in @params may omit key=,
912 * and is treated as if key was @list->implied_opt_name.
913 * Report errors with error_report_err(). This is inappropriate in
914 * QMP context. Do not use this function there!
915 * Return the new QemuOpts on success, null pointer on error.
917 QemuOpts
*qemu_opts_parse_noisily(QemuOptsList
*list
, const char *params
,
923 opts
= opts_parse(list
, params
, permit_abbrev
, false, &err
);
925 error_report_err(err
);
930 void qemu_opts_set_defaults(QemuOptsList
*list
, const char *params
,
935 opts
= opts_parse(list
, params
, permit_abbrev
, true, NULL
);
939 typedef struct OptsFromQDictState
{
942 } OptsFromQDictState
;
944 static void qemu_opts_from_qdict_1(const char *key
, QObject
*obj
, void *opaque
)
946 OptsFromQDictState
*state
= opaque
;
951 if (!strcmp(key
, "id") || *state
->errp
) {
955 switch (qobject_type(obj
)) {
957 value
= qstring_get_str(qobject_to_qstring(obj
));
960 n
= snprintf(buf
, sizeof(buf
), "%" PRId64
,
961 qint_get_int(qobject_to_qint(obj
)));
962 assert(n
< sizeof(buf
));
966 n
= snprintf(buf
, sizeof(buf
), "%.17g",
967 qfloat_get_double(qobject_to_qfloat(obj
)));
968 assert(n
< sizeof(buf
));
972 pstrcpy(buf
, sizeof(buf
),
973 qbool_get_bool(qobject_to_qbool(obj
)) ? "on" : "off");
980 qemu_opt_set(state
->opts
, key
, value
, state
->errp
);
984 * Create QemuOpts from a QDict.
985 * Use value of key "id" as ID if it exists and is a QString.
986 * Only QStrings, QInts, QFloats and QBools are copied. Entries with
987 * other types are silently ignored.
989 QemuOpts
*qemu_opts_from_qdict(QemuOptsList
*list
, const QDict
*qdict
,
992 OptsFromQDictState state
;
993 Error
*local_err
= NULL
;
996 opts
= qemu_opts_create(list
, qdict_get_try_str(qdict
, "id"), 1,
999 error_propagate(errp
, local_err
);
1003 assert(opts
!= NULL
);
1005 state
.errp
= &local_err
;
1007 qdict_iter(qdict
, qemu_opts_from_qdict_1
, &state
);
1009 error_propagate(errp
, local_err
);
1010 qemu_opts_del(opts
);
1018 * Adds all QDict entries to the QemuOpts that can be added and removes them
1019 * from the QDict. When this function returns, the QDict contains only those
1020 * entries that couldn't be added to the QemuOpts.
1022 void qemu_opts_absorb_qdict(QemuOpts
*opts
, QDict
*qdict
, Error
**errp
)
1024 const QDictEntry
*entry
, *next
;
1026 entry
= qdict_first(qdict
);
1028 while (entry
!= NULL
) {
1029 Error
*local_err
= NULL
;
1030 OptsFromQDictState state
= {
1035 next
= qdict_next(qdict
, entry
);
1037 if (find_desc_by_name(opts
->list
->desc
, entry
->key
)) {
1038 qemu_opts_from_qdict_1(entry
->key
, entry
->value
, &state
);
1040 error_propagate(errp
, local_err
);
1043 qdict_del(qdict
, entry
->key
);
1052 * Convert from QemuOpts to QDict.
1053 * The QDict values are of type QString.
1054 * TODO We'll want to use types appropriate for opt->desc->type, but
1055 * this is enough for now.
1057 QDict
*qemu_opts_to_qdict(QemuOpts
*opts
, QDict
*qdict
)
1063 qdict
= qdict_new();
1066 qdict_put(qdict
, "id", qstring_from_str(opts
->id
));
1068 QTAILQ_FOREACH(opt
, &opts
->head
, next
) {
1069 val
= QOBJECT(qstring_from_str(opt
->str
));
1070 qdict_put_obj(qdict
, opt
->name
, val
);
1075 /* Validate parsed opts against descriptions where no
1076 * descriptions were provided in the QemuOptsList.
1078 void qemu_opts_validate(QemuOpts
*opts
, const QemuOptDesc
*desc
, Error
**errp
)
1081 Error
*local_err
= NULL
;
1083 assert(opts_accepts_any(opts
));
1085 QTAILQ_FOREACH(opt
, &opts
->head
, next
) {
1086 opt
->desc
= find_desc_by_name(desc
, opt
->name
);
1088 error_setg(errp
, QERR_INVALID_PARAMETER
, opt
->name
);
1092 qemu_opt_parse(opt
, &local_err
);
1094 error_propagate(errp
, local_err
);
1101 * For each member of @list, call @func(@opaque, member, @errp).
1102 * Call it with the current location temporarily set to the member's.
1103 * @func() may store an Error through @errp, but must return non-zero then.
1104 * When @func() returns non-zero, break the loop and return that value.
1105 * Return zero when the loop completes.
1107 int qemu_opts_foreach(QemuOptsList
*list
, qemu_opts_loopfunc func
,
1108 void *opaque
, Error
**errp
)
1114 loc_push_none(&loc
);
1115 QTAILQ_FOREACH(opts
, &list
->head
, next
) {
1116 loc_restore(&opts
->loc
);
1117 rc
= func(opaque
, opts
, errp
);
1121 assert(!errp
|| !*errp
);
1127 static size_t count_opts_list(QemuOptsList
*list
)
1129 QemuOptDesc
*desc
= NULL
;
1130 size_t num_opts
= 0;
1137 while (desc
&& desc
->name
) {
1145 void qemu_opts_free(QemuOptsList
*list
)
1150 /* Realloc dst option list and append options from an option list (list)
1151 * to it. dst could be NULL or a malloced list.
1152 * The lifetime of dst must be shorter than the input list because the
1153 * QemuOptDesc->name, ->help, and ->def_value_str strings are shared.
1155 QemuOptsList
*qemu_opts_append(QemuOptsList
*dst
,
1158 size_t num_opts
, num_dst_opts
;
1160 bool need_init
= false;
1161 bool need_head_update
;
1167 /* If dst is NULL, after realloc, some area of dst should be initialized
1168 * before adding options to it.
1172 need_head_update
= true;
1174 /* Moreover, even if dst is not NULL, the realloc may move it to a
1175 * different address in which case we may get a stale tail pointer
1177 need_head_update
= QTAILQ_EMPTY(&dst
->head
);
1180 num_opts
= count_opts_list(dst
);
1181 num_dst_opts
= num_opts
;
1182 num_opts
+= count_opts_list(list
);
1183 dst
= g_realloc(dst
, sizeof(QemuOptsList
) +
1184 (num_opts
+ 1) * sizeof(QemuOptDesc
));
1187 dst
->implied_opt_name
= NULL
;
1188 dst
->merge_lists
= false;
1190 if (need_head_update
) {
1191 QTAILQ_INIT(&dst
->head
);
1193 dst
->desc
[num_dst_opts
].name
= NULL
;
1195 /* append list->desc to dst->desc */
1198 while (desc
&& desc
->name
) {
1199 if (find_desc_by_name(dst
->desc
, desc
->name
) == NULL
) {
1200 dst
->desc
[num_dst_opts
++] = *desc
;
1201 dst
->desc
[num_dst_opts
].name
= NULL
;