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/types.h"
32 #include "qapi/qmp/qerror.h"
33 #include "qemu/option_int.h"
34 #include "qemu/cutils.h"
36 #include "qemu/help_option.h"
39 * Extracts the name of an option from the parameter string (p points at the
40 * first byte of the option name)
42 * The option name is delimited by delim (usually , or =) or the string end
43 * and is copied into buf. If the option name is longer than buf_size, it is
44 * truncated. buf is always zero terminated.
46 * The return value is the position of the delimiter/zero byte after the option
49 const char *get_opt_name(char *buf
, int buf_size
, const char *p
, char delim
)
54 while (*p
!= '\0' && *p
!= delim
) {
55 if (q
&& (q
- buf
) < buf_size
- 1)
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(char *buf
, int buf_size
, const char *p
)
84 if (q
&& (q
- buf
) < buf_size
- 1)
94 static void parse_option_bool(const char *name
, const char *value
, bool *ret
,
97 if (!strcmp(value
, "on")) {
99 } else if (!strcmp(value
, "off")) {
102 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
,
103 name
, "'on' or 'off'");
107 static void parse_option_number(const char *name
, const char *value
,
108 uint64_t *ret
, Error
**errp
)
113 err
= qemu_strtou64(value
, NULL
, 0, &number
);
114 if (err
== -ERANGE
) {
115 error_setg(errp
, "Value '%s' is too large for parameter '%s'",
120 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, name
, "a number");
126 static const QemuOptDesc
*find_desc_by_name(const QemuOptDesc
*desc
,
131 for (i
= 0; desc
[i
].name
!= NULL
; i
++) {
132 if (strcmp(desc
[i
].name
, name
) == 0) {
140 void parse_option_size(const char *name
, const char *value
,
141 uint64_t *ret
, Error
**errp
)
146 err
= qemu_strtosz(value
, NULL
, &size
);
147 if (err
== -ERANGE
) {
148 error_setg(errp
, "Value '%s' is out of range for parameter '%s'",
153 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, name
,
154 "a non-negative number below 2^64");
155 error_append_hint(errp
, "Optional suffix k, M, G, T, P or E means"
156 " kilo-, mega-, giga-, tera-, peta-\n"
157 "and exabytes, respectively.\n");
163 bool has_help_option(const char *param
)
165 size_t buflen
= strlen(param
) + 1;
166 char *buf
= g_malloc(buflen
);
167 const char *p
= param
;
171 p
= get_opt_value(buf
, buflen
, p
);
176 if (is_help_option(buf
)) {
187 bool is_valid_option_list(const char *param
)
189 size_t buflen
= strlen(param
) + 1;
190 char *buf
= g_malloc(buflen
);
191 const char *p
= param
;
195 p
= get_opt_value(buf
, buflen
, p
);
201 if (!*buf
|| *buf
== ',') {
212 void qemu_opts_print_help(QemuOptsList
*list
)
218 printf("Supported options:\n");
219 while (desc
&& desc
->name
) {
220 printf("%-16s %s\n", desc
->name
,
221 desc
->help
? desc
->help
: "No description available");
225 /* ------------------------------------------------------------------ */
227 QemuOpt
*qemu_opt_find(QemuOpts
*opts
, const char *name
)
231 QTAILQ_FOREACH_REVERSE(opt
, &opts
->head
, QemuOptHead
, next
) {
232 if (strcmp(opt
->name
, name
) != 0)
239 static void qemu_opt_del(QemuOpt
*opt
)
241 QTAILQ_REMOVE(&opt
->opts
->head
, opt
, next
);
247 /* qemu_opt_set allows many settings for the same option.
248 * This function deletes all settings for an option.
250 static void qemu_opt_del_all(QemuOpts
*opts
, const char *name
)
252 QemuOpt
*opt
, *next_opt
;
254 QTAILQ_FOREACH_SAFE(opt
, &opts
->head
, next
, next_opt
) {
255 if (!strcmp(opt
->name
, name
)) {
261 const char *qemu_opt_get(QemuOpts
*opts
, const char *name
)
269 opt
= qemu_opt_find(opts
, name
);
271 const QemuOptDesc
*desc
= find_desc_by_name(opts
->list
->desc
, name
);
272 if (desc
&& desc
->def_value_str
) {
273 return desc
->def_value_str
;
276 return opt
? opt
->str
: NULL
;
279 void qemu_opt_iter_init(QemuOptsIter
*iter
, QemuOpts
*opts
, const char *name
)
282 iter
->opt
= QTAILQ_FIRST(&opts
->head
);
286 const char *qemu_opt_iter_next(QemuOptsIter
*iter
)
288 QemuOpt
*ret
= iter
->opt
;
290 while (ret
&& !g_str_equal(iter
->name
, ret
->name
)) {
291 ret
= QTAILQ_NEXT(ret
, next
);
294 iter
->opt
= ret
? QTAILQ_NEXT(ret
, next
) : NULL
;
295 return ret
? ret
->str
: NULL
;
298 /* Get a known option (or its default) and remove it from the list
299 * all in one action. Return a malloced string of the option value.
300 * Result must be freed by caller with g_free().
302 char *qemu_opt_get_del(QemuOpts
*opts
, const char *name
)
305 const QemuOptDesc
*desc
;
312 opt
= qemu_opt_find(opts
, name
);
314 desc
= find_desc_by_name(opts
->list
->desc
, name
);
315 if (desc
&& desc
->def_value_str
) {
316 str
= g_strdup(desc
->def_value_str
);
322 qemu_opt_del_all(opts
, name
);
326 bool qemu_opt_has_help_opt(QemuOpts
*opts
)
330 QTAILQ_FOREACH_REVERSE(opt
, &opts
->head
, QemuOptHead
, next
) {
331 if (is_help_option(opt
->name
)) {
338 static bool qemu_opt_get_bool_helper(QemuOpts
*opts
, const char *name
,
339 bool defval
, bool del
)
348 opt
= qemu_opt_find(opts
, name
);
350 const QemuOptDesc
*desc
= find_desc_by_name(opts
->list
->desc
, name
);
351 if (desc
&& desc
->def_value_str
) {
352 parse_option_bool(name
, desc
->def_value_str
, &ret
, &error_abort
);
356 assert(opt
->desc
&& opt
->desc
->type
== QEMU_OPT_BOOL
);
357 ret
= opt
->value
.boolean
;
359 qemu_opt_del_all(opts
, name
);
364 bool qemu_opt_get_bool(QemuOpts
*opts
, const char *name
, bool defval
)
366 return qemu_opt_get_bool_helper(opts
, name
, defval
, false);
369 bool qemu_opt_get_bool_del(QemuOpts
*opts
, const char *name
, bool defval
)
371 return qemu_opt_get_bool_helper(opts
, name
, defval
, true);
374 static uint64_t qemu_opt_get_number_helper(QemuOpts
*opts
, const char *name
,
375 uint64_t defval
, bool del
)
378 uint64_t ret
= defval
;
384 opt
= qemu_opt_find(opts
, name
);
386 const QemuOptDesc
*desc
= find_desc_by_name(opts
->list
->desc
, name
);
387 if (desc
&& desc
->def_value_str
) {
388 parse_option_number(name
, desc
->def_value_str
, &ret
, &error_abort
);
392 assert(opt
->desc
&& opt
->desc
->type
== QEMU_OPT_NUMBER
);
393 ret
= opt
->value
.uint
;
395 qemu_opt_del_all(opts
, name
);
400 uint64_t qemu_opt_get_number(QemuOpts
*opts
, const char *name
, uint64_t defval
)
402 return qemu_opt_get_number_helper(opts
, name
, defval
, false);
405 uint64_t qemu_opt_get_number_del(QemuOpts
*opts
, const char *name
,
408 return qemu_opt_get_number_helper(opts
, name
, defval
, true);
411 static uint64_t qemu_opt_get_size_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_size(name
, desc
->def_value_str
, &ret
, &error_abort
);
429 assert(opt
->desc
&& opt
->desc
->type
== QEMU_OPT_SIZE
);
430 ret
= opt
->value
.uint
;
432 qemu_opt_del_all(opts
, name
);
437 uint64_t qemu_opt_get_size(QemuOpts
*opts
, const char *name
, uint64_t defval
)
439 return qemu_opt_get_size_helper(opts
, name
, defval
, false);
442 uint64_t qemu_opt_get_size_del(QemuOpts
*opts
, const char *name
,
445 return qemu_opt_get_size_helper(opts
, name
, defval
, true);
448 static void qemu_opt_parse(QemuOpt
*opt
, Error
**errp
)
450 if (opt
->desc
== NULL
)
453 switch (opt
->desc
->type
) {
454 case QEMU_OPT_STRING
:
458 parse_option_bool(opt
->name
, opt
->str
, &opt
->value
.boolean
, errp
);
460 case QEMU_OPT_NUMBER
:
461 parse_option_number(opt
->name
, opt
->str
, &opt
->value
.uint
, errp
);
464 parse_option_size(opt
->name
, opt
->str
, &opt
->value
.uint
, errp
);
471 static bool opts_accepts_any(const QemuOpts
*opts
)
473 return opts
->list
->desc
[0].name
== NULL
;
476 int qemu_opt_unset(QemuOpts
*opts
, const char *name
)
478 QemuOpt
*opt
= qemu_opt_find(opts
, name
);
480 assert(opts_accepts_any(opts
));
490 static void opt_set(QemuOpts
*opts
, const char *name
, const char *value
,
491 bool prepend
, Error
**errp
)
494 const QemuOptDesc
*desc
;
495 Error
*local_err
= NULL
;
497 desc
= find_desc_by_name(opts
->list
->desc
, name
);
498 if (!desc
&& !opts_accepts_any(opts
)) {
499 error_setg(errp
, QERR_INVALID_PARAMETER
, name
);
503 opt
= g_malloc0(sizeof(*opt
));
504 opt
->name
= g_strdup(name
);
507 QTAILQ_INSERT_HEAD(&opts
->head
, opt
, next
);
509 QTAILQ_INSERT_TAIL(&opts
->head
, opt
, next
);
512 opt
->str
= g_strdup(value
);
514 qemu_opt_parse(opt
, &local_err
);
516 error_propagate(errp
, local_err
);
521 void qemu_opt_set(QemuOpts
*opts
, const char *name
, const char *value
,
524 opt_set(opts
, name
, value
, false, errp
);
527 void qemu_opt_set_bool(QemuOpts
*opts
, const char *name
, bool val
,
531 const QemuOptDesc
*desc
= opts
->list
->desc
;
533 opt
= g_malloc0(sizeof(*opt
));
534 opt
->desc
= find_desc_by_name(desc
, name
);
535 if (!opt
->desc
&& !opts_accepts_any(opts
)) {
536 error_setg(errp
, QERR_INVALID_PARAMETER
, name
);
541 opt
->name
= g_strdup(name
);
543 opt
->value
.boolean
= !!val
;
544 opt
->str
= g_strdup(val
? "on" : "off");
545 QTAILQ_INSERT_TAIL(&opts
->head
, opt
, next
);
548 void qemu_opt_set_number(QemuOpts
*opts
, const char *name
, int64_t val
,
552 const QemuOptDesc
*desc
= opts
->list
->desc
;
554 opt
= g_malloc0(sizeof(*opt
));
555 opt
->desc
= find_desc_by_name(desc
, name
);
556 if (!opt
->desc
&& !opts_accepts_any(opts
)) {
557 error_setg(errp
, QERR_INVALID_PARAMETER
, name
);
562 opt
->name
= g_strdup(name
);
564 opt
->value
.uint
= val
;
565 opt
->str
= g_strdup_printf("%" PRId64
, val
);
566 QTAILQ_INSERT_TAIL(&opts
->head
, opt
, next
);
570 * For each member of @opts, call @func(@opaque, name, value, @errp).
571 * @func() may store an Error through @errp, but must return non-zero then.
572 * When @func() returns non-zero, break the loop and return that value.
573 * Return zero when the loop completes.
575 int qemu_opt_foreach(QemuOpts
*opts
, qemu_opt_loopfunc func
, void *opaque
,
581 QTAILQ_FOREACH(opt
, &opts
->head
, next
) {
582 rc
= func(opaque
, opt
->name
, opt
->str
, errp
);
586 assert(!errp
|| !*errp
);
591 QemuOpts
*qemu_opts_find(QemuOptsList
*list
, const char *id
)
595 QTAILQ_FOREACH(opts
, &list
->head
, next
) {
596 if (!opts
->id
&& !id
) {
599 if (opts
->id
&& id
&& !strcmp(opts
->id
, id
)) {
606 QemuOpts
*qemu_opts_create(QemuOptsList
*list
, const char *id
,
607 int fail_if_exists
, Error
**errp
)
609 QemuOpts
*opts
= NULL
;
612 if (!id_wellformed(id
)) {
613 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "id",
615 error_append_hint(errp
, "Identifiers consist of letters, digits, "
616 "'-', '.', '_', starting with a letter.\n");
619 opts
= qemu_opts_find(list
, id
);
621 if (fail_if_exists
&& !list
->merge_lists
) {
622 error_setg(errp
, "Duplicate ID '%s' for %s", id
, list
->name
);
628 } else if (list
->merge_lists
) {
629 opts
= qemu_opts_find(list
, NULL
);
634 opts
= g_malloc0(sizeof(*opts
));
635 opts
->id
= g_strdup(id
);
637 loc_save(&opts
->loc
);
638 QTAILQ_INIT(&opts
->head
);
639 QTAILQ_INSERT_TAIL(&list
->head
, opts
, next
);
643 void qemu_opts_reset(QemuOptsList
*list
)
645 QemuOpts
*opts
, *next_opts
;
647 QTAILQ_FOREACH_SAFE(opts
, &list
->head
, next
, next_opts
) {
652 void qemu_opts_loc_restore(QemuOpts
*opts
)
654 loc_restore(&opts
->loc
);
657 void qemu_opts_set(QemuOptsList
*list
, const char *id
,
658 const char *name
, const char *value
, Error
**errp
)
661 Error
*local_err
= NULL
;
663 opts
= qemu_opts_create(list
, id
, 1, &local_err
);
665 error_propagate(errp
, local_err
);
668 qemu_opt_set(opts
, name
, value
, errp
);
671 const char *qemu_opts_id(QemuOpts
*opts
)
676 /* The id string will be g_free()d by qemu_opts_del */
677 void qemu_opts_set_id(QemuOpts
*opts
, char *id
)
682 void qemu_opts_del(QemuOpts
*opts
)
691 opt
= QTAILQ_FIRST(&opts
->head
);
696 QTAILQ_REMOVE(&opts
->list
->head
, opts
, next
);
701 /* print value, escaping any commas in value */
702 static void escaped_print(const char *value
)
706 for (ptr
= value
; *ptr
; ++ptr
) {
714 void qemu_opts_print(QemuOpts
*opts
, const char *separator
)
717 QemuOptDesc
*desc
= opts
->list
->desc
;
718 const char *sep
= "";
721 printf("id=%s", opts
->id
); /* passed id_wellformed -> no commas */
725 if (desc
[0].name
== NULL
) {
726 QTAILQ_FOREACH(opt
, &opts
->head
, next
) {
727 printf("%s%s=", sep
, opt
->name
);
728 escaped_print(opt
->str
);
733 for (; desc
&& desc
->name
; desc
++) {
735 opt
= qemu_opt_find(opts
, desc
->name
);
737 value
= opt
? opt
->str
: desc
->def_value_str
;
741 if (desc
->type
== QEMU_OPT_STRING
) {
742 printf("%s%s=", sep
, desc
->name
);
743 escaped_print(value
);
744 } else if ((desc
->type
== QEMU_OPT_SIZE
||
745 desc
->type
== QEMU_OPT_NUMBER
) && opt
) {
746 printf("%s%s=%" PRId64
, sep
, desc
->name
, opt
->value
.uint
);
748 printf("%s%s=%s", sep
, desc
->name
, value
);
754 static void opts_do_parse(QemuOpts
*opts
, const char *params
,
755 const char *firstname
, bool prepend
, Error
**errp
)
757 char option
[128], value
[1024];
758 const char *p
,*pe
,*pc
;
759 Error
*local_err
= NULL
;
761 for (p
= params
; *p
!= '\0'; p
++) {
764 if (!pe
|| (pc
&& pc
< pe
)) {
765 /* found "foo,more" */
766 if (p
== params
&& firstname
) {
767 /* implicitly named first option */
768 pstrcpy(option
, sizeof(option
), firstname
);
769 p
= get_opt_value(value
, sizeof(value
), p
);
771 /* option without value, probably a flag */
772 p
= get_opt_name(option
, sizeof(option
), p
, ',');
773 if (strncmp(option
, "no", 2) == 0) {
774 memmove(option
, option
+2, strlen(option
+2)+1);
775 pstrcpy(value
, sizeof(value
), "off");
777 pstrcpy(value
, sizeof(value
), "on");
781 /* found "foo=bar,more" */
782 p
= get_opt_name(option
, sizeof(option
), p
, '=');
787 p
= get_opt_value(value
, sizeof(value
), p
);
789 if (strcmp(option
, "id") != 0) {
790 /* store and parse */
791 opt_set(opts
, option
, value
, prepend
, &local_err
);
793 error_propagate(errp
, local_err
);
804 * Store options parsed from @params into @opts.
805 * If @firstname is non-null, the first key=value in @params may omit
806 * key=, and is treated as if key was @firstname.
807 * On error, store an error object through @errp if non-null.
809 void qemu_opts_do_parse(QemuOpts
*opts
, const char *params
,
810 const char *firstname
, Error
**errp
)
812 opts_do_parse(opts
, params
, firstname
, false, errp
);
815 static QemuOpts
*opts_parse(QemuOptsList
*list
, const char *params
,
816 bool permit_abbrev
, bool defaults
, Error
**errp
)
818 const char *firstname
;
819 char value
[1024], *id
= NULL
;
822 Error
*local_err
= NULL
;
824 assert(!permit_abbrev
|| list
->implied_opt_name
);
825 firstname
= permit_abbrev
? list
->implied_opt_name
: NULL
;
827 if (strncmp(params
, "id=", 3) == 0) {
828 get_opt_value(value
, sizeof(value
), params
+3);
830 } else if ((p
= strstr(params
, ",id=")) != NULL
) {
831 get_opt_value(value
, sizeof(value
), p
+4);
836 * This code doesn't work for defaults && !list->merge_lists: when
837 * params has no id=, and list has an element with !opts->id, it
838 * appends a new element instead of returning the existing opts.
839 * However, we got no use for this case. Guard against possible
840 * (if unlikely) future misuse:
842 assert(!defaults
|| list
->merge_lists
);
843 opts
= qemu_opts_create(list
, id
, !defaults
, &local_err
);
845 error_propagate(errp
, local_err
);
849 opts_do_parse(opts
, params
, firstname
, defaults
, &local_err
);
851 error_propagate(errp
, local_err
);
860 * Create a QemuOpts in @list and with options parsed from @params.
861 * If @permit_abbrev, the first key=value in @params may omit key=,
862 * and is treated as if key was @list->implied_opt_name.
863 * On error, store an error object through @errp if non-null.
864 * Return the new QemuOpts on success, null pointer on error.
866 QemuOpts
*qemu_opts_parse(QemuOptsList
*list
, const char *params
,
867 bool permit_abbrev
, Error
**errp
)
869 return opts_parse(list
, params
, permit_abbrev
, false, errp
);
873 * Create a QemuOpts in @list and with options parsed from @params.
874 * If @permit_abbrev, the first key=value in @params may omit key=,
875 * and is treated as if key was @list->implied_opt_name.
876 * Report errors with error_report_err(). This is inappropriate in
877 * QMP context. Do not use this function there!
878 * Return the new QemuOpts on success, null pointer on error.
880 QemuOpts
*qemu_opts_parse_noisily(QemuOptsList
*list
, const char *params
,
886 opts
= opts_parse(list
, params
, permit_abbrev
, false, &err
);
888 error_report_err(err
);
893 void qemu_opts_set_defaults(QemuOptsList
*list
, const char *params
,
898 opts
= opts_parse(list
, params
, permit_abbrev
, true, NULL
);
902 typedef struct OptsFromQDictState
{
905 } OptsFromQDictState
;
907 static void qemu_opts_from_qdict_1(const char *key
, QObject
*obj
, void *opaque
)
909 OptsFromQDictState
*state
= opaque
;
910 char buf
[32], *tmp
= NULL
;
913 if (!strcmp(key
, "id") || *state
->errp
) {
917 switch (qobject_type(obj
)) {
919 value
= qstring_get_str(qobject_to_qstring(obj
));
922 tmp
= qnum_to_string(qobject_to_qnum(obj
));
926 pstrcpy(buf
, sizeof(buf
),
927 qbool_get_bool(qobject_to_qbool(obj
)) ? "on" : "off");
934 qemu_opt_set(state
->opts
, key
, value
, state
->errp
);
939 * Create QemuOpts from a QDict.
940 * Use value of key "id" as ID if it exists and is a QString. Only
941 * QStrings, QNums and QBools are copied. Entries with other types
942 * are silently ignored.
944 QemuOpts
*qemu_opts_from_qdict(QemuOptsList
*list
, const QDict
*qdict
,
947 OptsFromQDictState state
;
948 Error
*local_err
= NULL
;
951 opts
= qemu_opts_create(list
, qdict_get_try_str(qdict
, "id"), 1,
954 error_propagate(errp
, local_err
);
958 assert(opts
!= NULL
);
960 state
.errp
= &local_err
;
962 qdict_iter(qdict
, qemu_opts_from_qdict_1
, &state
);
964 error_propagate(errp
, local_err
);
973 * Adds all QDict entries to the QemuOpts that can be added and removes them
974 * from the QDict. When this function returns, the QDict contains only those
975 * entries that couldn't be added to the QemuOpts.
977 void qemu_opts_absorb_qdict(QemuOpts
*opts
, QDict
*qdict
, Error
**errp
)
979 const QDictEntry
*entry
, *next
;
981 entry
= qdict_first(qdict
);
983 while (entry
!= NULL
) {
984 Error
*local_err
= NULL
;
985 OptsFromQDictState state
= {
990 next
= qdict_next(qdict
, entry
);
992 if (find_desc_by_name(opts
->list
->desc
, entry
->key
)) {
993 qemu_opts_from_qdict_1(entry
->key
, entry
->value
, &state
);
995 error_propagate(errp
, local_err
);
998 qdict_del(qdict
, entry
->key
);
1007 * Convert from QemuOpts to QDict.
1008 * The QDict values are of type QString.
1009 * TODO We'll want to use types appropriate for opt->desc->type, but
1010 * this is enough for now.
1012 QDict
*qemu_opts_to_qdict(QemuOpts
*opts
, QDict
*qdict
)
1017 qdict
= qdict_new();
1020 qdict_put_str(qdict
, "id", opts
->id
);
1022 QTAILQ_FOREACH(opt
, &opts
->head
, next
) {
1023 qdict_put_str(qdict
, opt
->name
, opt
->str
);
1028 /* Validate parsed opts against descriptions where no
1029 * descriptions were provided in the QemuOptsList.
1031 void qemu_opts_validate(QemuOpts
*opts
, const QemuOptDesc
*desc
, Error
**errp
)
1034 Error
*local_err
= NULL
;
1036 assert(opts_accepts_any(opts
));
1038 QTAILQ_FOREACH(opt
, &opts
->head
, next
) {
1039 opt
->desc
= find_desc_by_name(desc
, opt
->name
);
1041 error_setg(errp
, QERR_INVALID_PARAMETER
, opt
->name
);
1045 qemu_opt_parse(opt
, &local_err
);
1047 error_propagate(errp
, local_err
);
1054 * For each member of @list, call @func(@opaque, member, @errp).
1055 * Call it with the current location temporarily set to the member's.
1056 * @func() may store an Error through @errp, but must return non-zero then.
1057 * When @func() returns non-zero, break the loop and return that value.
1058 * Return zero when the loop completes.
1060 int qemu_opts_foreach(QemuOptsList
*list
, qemu_opts_loopfunc func
,
1061 void *opaque
, Error
**errp
)
1067 loc_push_none(&loc
);
1068 QTAILQ_FOREACH(opts
, &list
->head
, next
) {
1069 loc_restore(&opts
->loc
);
1070 rc
= func(opaque
, opts
, errp
);
1074 assert(!errp
|| !*errp
);
1080 static size_t count_opts_list(QemuOptsList
*list
)
1082 QemuOptDesc
*desc
= NULL
;
1083 size_t num_opts
= 0;
1090 while (desc
&& desc
->name
) {
1098 void qemu_opts_free(QemuOptsList
*list
)
1103 /* Realloc dst option list and append options from an option list (list)
1104 * to it. dst could be NULL or a malloced list.
1105 * The lifetime of dst must be shorter than the input list because the
1106 * QemuOptDesc->name, ->help, and ->def_value_str strings are shared.
1108 QemuOptsList
*qemu_opts_append(QemuOptsList
*dst
,
1111 size_t num_opts
, num_dst_opts
;
1113 bool need_init
= false;
1114 bool need_head_update
;
1120 /* If dst is NULL, after realloc, some area of dst should be initialized
1121 * before adding options to it.
1125 need_head_update
= true;
1127 /* Moreover, even if dst is not NULL, the realloc may move it to a
1128 * different address in which case we may get a stale tail pointer
1130 need_head_update
= QTAILQ_EMPTY(&dst
->head
);
1133 num_opts
= count_opts_list(dst
);
1134 num_dst_opts
= num_opts
;
1135 num_opts
+= count_opts_list(list
);
1136 dst
= g_realloc(dst
, sizeof(QemuOptsList
) +
1137 (num_opts
+ 1) * sizeof(QemuOptDesc
));
1140 dst
->implied_opt_name
= NULL
;
1141 dst
->merge_lists
= false;
1143 if (need_head_update
) {
1144 QTAILQ_INIT(&dst
->head
);
1146 dst
->desc
[num_dst_opts
].name
= NULL
;
1148 /* append list->desc to dst->desc */
1151 while (desc
&& desc
->name
) {
1152 if (find_desc_by_name(dst
->desc
, desc
->name
) == NULL
) {
1153 dst
->desc
[num_dst_opts
++] = *desc
;
1154 dst
->desc
[num_dst_opts
].name
= NULL
;