acpi/gpex: Build tables for pxb
[qemu/ar7.git] / util / qemu-option.c
blobacefbc23fa3c16baefc584ed6a531043f252ff25
1 /*
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
23 * THE SOFTWARE.
26 #include "qemu/osdep.h"
28 #include "qapi/error.h"
29 #include "qemu/error-report.h"
30 #include "qapi/qmp/qbool.h"
31 #include "qapi/qmp/qdict.h"
32 #include "qapi/qmp/qnum.h"
33 #include "qapi/qmp/qstring.h"
34 #include "qapi/qmp/qerror.h"
35 #include "qemu/option_int.h"
36 #include "qemu/cutils.h"
37 #include "qemu/id.h"
38 #include "qemu/help_option.h"
41 * Extracts the name of an option from the parameter string (p points at the
42 * first byte of the option name)
44 * The option name is delimited by delim (usually , or =) or the string end
45 * and is copied into option. The caller is responsible for free'ing option
46 * when no longer required.
48 * The return value is the position of the delimiter/zero byte after the option
49 * name in p.
51 static const char *get_opt_name(const char *p, char **option, char delim)
53 char *offset = strchr(p, delim);
55 if (offset) {
56 *option = g_strndup(p, offset - p);
57 return offset;
58 } else {
59 *option = g_strdup(p);
60 return p + strlen(p);
65 * Extracts the value of an option from the parameter string p (p points at the
66 * first byte of the option value)
68 * This function is comparable to get_opt_name with the difference that the
69 * delimiter is fixed to be comma which starts a new option. To specify an
70 * option value that contains commas, double each comma.
72 const char *get_opt_value(const char *p, char **value)
74 size_t capacity = 0, length;
75 const char *offset;
77 *value = NULL;
78 while (1) {
79 offset = qemu_strchrnul(p, ',');
80 length = offset - p;
81 if (*offset != '\0' && *(offset + 1) == ',') {
82 length++;
84 *value = g_renew(char, *value, capacity + length + 1);
85 strncpy(*value + capacity, p, length);
86 (*value)[capacity + length] = '\0';
87 capacity += length;
88 if (*offset == '\0' ||
89 *(offset + 1) != ',') {
90 break;
93 p += (offset - p) + 2;
96 return offset;
99 static bool parse_option_number(const char *name, const char *value,
100 uint64_t *ret, Error **errp)
102 uint64_t number;
103 int err;
105 err = qemu_strtou64(value, NULL, 0, &number);
106 if (err == -ERANGE) {
107 error_setg(errp, "Value '%s' is too large for parameter '%s'",
108 value, name);
109 return false;
111 if (err) {
112 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, name, "a number");
113 return false;
115 *ret = number;
116 return true;
119 static const QemuOptDesc *find_desc_by_name(const QemuOptDesc *desc,
120 const char *name)
122 int i;
124 for (i = 0; desc[i].name != NULL; i++) {
125 if (strcmp(desc[i].name, name) == 0) {
126 return &desc[i];
130 return NULL;
133 static const char *find_default_by_name(QemuOpts *opts, const char *name)
135 const QemuOptDesc *desc = find_desc_by_name(opts->list->desc, name);
137 return desc ? desc->def_value_str : NULL;
140 bool parse_option_size(const char *name, const char *value,
141 uint64_t *ret, Error **errp)
143 uint64_t size;
144 int err;
146 err = qemu_strtosz(value, NULL, &size);
147 if (err == -ERANGE) {
148 error_setg(errp, "Value '%s' is out of range for parameter '%s'",
149 value, name);
150 return false;
152 if (err) {
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");
158 return false;
160 *ret = size;
161 return true;
164 static const char *opt_type_to_string(enum QemuOptType type)
166 switch (type) {
167 case QEMU_OPT_STRING:
168 return "str";
169 case QEMU_OPT_BOOL:
170 return "bool (on/off)";
171 case QEMU_OPT_NUMBER:
172 return "num";
173 case QEMU_OPT_SIZE:
174 return "size";
177 g_assert_not_reached();
181 * Print the list of options available in the given list. If
182 * @print_caption is true, a caption (including the list name, if it
183 * exists) is printed. The options itself will be indented, so
184 * @print_caption should only be set to false if the caller prints its
185 * own custom caption (so that the indentation makes sense).
187 void qemu_opts_print_help(QemuOptsList *list, bool print_caption)
189 QemuOptDesc *desc;
190 int i;
191 GPtrArray *array = g_ptr_array_new();
193 assert(list);
194 desc = list->desc;
195 while (desc && desc->name) {
196 GString *str = g_string_new(NULL);
197 g_string_append_printf(str, " %s=<%s>", desc->name,
198 opt_type_to_string(desc->type));
199 if (desc->help) {
200 if (str->len < 24) {
201 g_string_append_printf(str, "%*s", 24 - (int)str->len, "");
203 g_string_append_printf(str, " - %s", desc->help);
205 g_ptr_array_add(array, g_string_free(str, false));
206 desc++;
209 g_ptr_array_sort(array, (GCompareFunc)qemu_pstrcmp0);
210 if (print_caption && array->len > 0) {
211 if (list->name) {
212 printf("%s options:\n", list->name);
213 } else {
214 printf("Options:\n");
216 } else if (array->len == 0) {
217 if (list->name) {
218 printf("There are no options for %s.\n", list->name);
219 } else {
220 printf("No options available.\n");
223 for (i = 0; i < array->len; i++) {
224 printf("%s\n", (char *)array->pdata[i]);
226 g_ptr_array_set_free_func(array, g_free);
227 g_ptr_array_free(array, true);
230 /* ------------------------------------------------------------------ */
232 QemuOpt *qemu_opt_find(QemuOpts *opts, const char *name)
234 QemuOpt *opt;
236 QTAILQ_FOREACH_REVERSE(opt, &opts->head, next) {
237 if (strcmp(opt->name, name) != 0)
238 continue;
239 return opt;
241 return NULL;
244 static void qemu_opt_del(QemuOpt *opt)
246 QTAILQ_REMOVE(&opt->opts->head, opt, next);
247 g_free(opt->name);
248 g_free(opt->str);
249 g_free(opt);
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)) {
261 qemu_opt_del(opt);
266 const char *qemu_opt_get(QemuOpts *opts, const char *name)
268 QemuOpt *opt;
270 if (opts == NULL) {
271 return NULL;
274 opt = qemu_opt_find(opts, name);
275 if (!opt) {
276 return find_default_by_name(opts, name);
279 return opt->str;
282 void qemu_opt_iter_init(QemuOptsIter *iter, QemuOpts *opts, const char *name)
284 iter->opts = opts;
285 iter->opt = QTAILQ_FIRST(&opts->head);
286 iter->name = name;
289 const char *qemu_opt_iter_next(QemuOptsIter *iter)
291 QemuOpt *ret = iter->opt;
292 if (iter->name) {
293 while (ret && !g_str_equal(iter->name, ret->name)) {
294 ret = QTAILQ_NEXT(ret, next);
297 iter->opt = ret ? QTAILQ_NEXT(ret, next) : NULL;
298 return ret ? ret->str : NULL;
301 /* Get a known option (or its default) and remove it from the list
302 * all in one action. Return a malloced string of the option value.
303 * Result must be freed by caller with g_free().
305 char *qemu_opt_get_del(QemuOpts *opts, const char *name)
307 QemuOpt *opt;
308 char *str;
310 if (opts == NULL) {
311 return NULL;
314 opt = qemu_opt_find(opts, name);
315 if (!opt) {
316 return g_strdup(find_default_by_name(opts, name));
318 str = opt->str;
319 opt->str = NULL;
320 qemu_opt_del_all(opts, name);
321 return str;
324 bool qemu_opt_has_help_opt(QemuOpts *opts)
326 QemuOpt *opt;
328 QTAILQ_FOREACH_REVERSE(opt, &opts->head, next) {
329 if (is_help_option(opt->name)) {
330 return true;
333 return false;
336 static bool qemu_opt_get_bool_helper(QemuOpts *opts, const char *name,
337 bool defval, bool del)
339 QemuOpt *opt;
340 const char *def_val;
341 bool ret = defval;
343 if (opts == NULL) {
344 return ret;
347 opt = qemu_opt_find(opts, name);
348 if (opt == NULL) {
349 def_val = find_default_by_name(opts, name);
350 if (def_val) {
351 qapi_bool_parse(name, def_val, &ret, &error_abort);
353 return ret;
355 assert(opt->desc && opt->desc->type == QEMU_OPT_BOOL);
356 ret = opt->value.boolean;
357 if (del) {
358 qemu_opt_del_all(opts, name);
360 return ret;
363 bool qemu_opt_get_bool(QemuOpts *opts, const char *name, bool defval)
365 return qemu_opt_get_bool_helper(opts, name, defval, false);
368 bool qemu_opt_get_bool_del(QemuOpts *opts, const char *name, bool defval)
370 return qemu_opt_get_bool_helper(opts, name, defval, true);
373 static uint64_t qemu_opt_get_number_helper(QemuOpts *opts, const char *name,
374 uint64_t defval, bool del)
376 QemuOpt *opt;
377 const char *def_val;
378 uint64_t ret = defval;
380 if (opts == NULL) {
381 return ret;
384 opt = qemu_opt_find(opts, name);
385 if (opt == NULL) {
386 def_val = find_default_by_name(opts, name);
387 if (def_val) {
388 parse_option_number(name, def_val, &ret, &error_abort);
390 return ret;
392 assert(opt->desc && opt->desc->type == QEMU_OPT_NUMBER);
393 ret = opt->value.uint;
394 if (del) {
395 qemu_opt_del_all(opts, name);
397 return ret;
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,
406 uint64_t defval)
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)
414 QemuOpt *opt;
415 const char *def_val;
416 uint64_t ret = defval;
418 if (opts == NULL) {
419 return ret;
422 opt = qemu_opt_find(opts, name);
423 if (opt == NULL) {
424 def_val = find_default_by_name(opts, name);
425 if (def_val) {
426 parse_option_size(name, def_val, &ret, &error_abort);
428 return ret;
430 assert(opt->desc && opt->desc->type == QEMU_OPT_SIZE);
431 ret = opt->value.uint;
432 if (del) {
433 qemu_opt_del_all(opts, name);
435 return ret;
438 uint64_t qemu_opt_get_size(QemuOpts *opts, const char *name, uint64_t defval)
440 return qemu_opt_get_size_helper(opts, name, defval, false);
443 uint64_t qemu_opt_get_size_del(QemuOpts *opts, const char *name,
444 uint64_t defval)
446 return qemu_opt_get_size_helper(opts, name, defval, true);
449 static bool qemu_opt_parse(QemuOpt *opt, Error **errp)
451 if (opt->desc == NULL)
452 return true;
454 switch (opt->desc->type) {
455 case QEMU_OPT_STRING:
456 /* nothing */
457 return true;
458 case QEMU_OPT_BOOL:
459 return qapi_bool_parse(opt->name, opt->str, &opt->value.boolean, errp);
460 case QEMU_OPT_NUMBER:
461 return parse_option_number(opt->name, opt->str, &opt->value.uint,
462 errp);
463 case QEMU_OPT_SIZE:
464 return parse_option_size(opt->name, opt->str, &opt->value.uint,
465 errp);
466 default:
467 abort();
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));
482 if (opt == NULL) {
483 return -1;
484 } else {
485 qemu_opt_del(opt);
486 return 0;
490 static QemuOpt *opt_create(QemuOpts *opts, const char *name, char *value,
491 bool prepend)
493 QemuOpt *opt = g_malloc0(sizeof(*opt));
495 opt->name = g_strdup(name);
496 opt->str = value;
497 opt->opts = opts;
498 if (prepend) {
499 QTAILQ_INSERT_HEAD(&opts->head, opt, next);
500 } else {
501 QTAILQ_INSERT_TAIL(&opts->head, opt, next);
504 return opt;
507 static bool opt_validate(QemuOpt *opt, bool *help_wanted,
508 Error **errp)
510 const QemuOptDesc *desc;
512 desc = find_desc_by_name(opt->opts->list->desc, opt->name);
513 if (!desc && !opts_accepts_any(opt->opts)) {
514 error_setg(errp, QERR_INVALID_PARAMETER, opt->name);
515 if (help_wanted && is_help_option(opt->name)) {
516 *help_wanted = true;
518 return false;
521 opt->desc = desc;
522 if (!qemu_opt_parse(opt, errp)) {
523 return false;
526 return true;
529 bool qemu_opt_set(QemuOpts *opts, const char *name, const char *value,
530 Error **errp)
532 QemuOpt *opt = opt_create(opts, name, g_strdup(value), false);
534 if (!opt_validate(opt, NULL, errp)) {
535 qemu_opt_del(opt);
536 return false;
538 return true;
541 bool qemu_opt_set_bool(QemuOpts *opts, const char *name, bool val,
542 Error **errp)
544 QemuOpt *opt;
545 const QemuOptDesc *desc;
547 desc = find_desc_by_name(opts->list->desc, name);
548 if (!desc && !opts_accepts_any(opts)) {
549 error_setg(errp, QERR_INVALID_PARAMETER, name);
550 return false;
553 opt = g_malloc0(sizeof(*opt));
554 opt->name = g_strdup(name);
555 opt->opts = opts;
556 opt->desc = desc;
557 opt->value.boolean = !!val;
558 opt->str = g_strdup(val ? "on" : "off");
559 QTAILQ_INSERT_TAIL(&opts->head, opt, next);
560 return true;
563 bool qemu_opt_set_number(QemuOpts *opts, const char *name, int64_t val,
564 Error **errp)
566 QemuOpt *opt;
567 const QemuOptDesc *desc;
569 desc = find_desc_by_name(opts->list->desc, name);
570 if (!desc && !opts_accepts_any(opts)) {
571 error_setg(errp, QERR_INVALID_PARAMETER, name);
572 return false;
575 opt = g_malloc0(sizeof(*opt));
576 opt->name = g_strdup(name);
577 opt->opts = opts;
578 opt->desc = desc;
579 opt->value.uint = val;
580 opt->str = g_strdup_printf("%" PRId64, val);
581 QTAILQ_INSERT_TAIL(&opts->head, opt, next);
582 return true;
586 * For each member of @opts, call @func(@opaque, name, value, @errp).
587 * @func() may store an Error through @errp, but must return non-zero then.
588 * When @func() returns non-zero, break the loop and return that value.
589 * Return zero when the loop completes.
591 int qemu_opt_foreach(QemuOpts *opts, qemu_opt_loopfunc func, void *opaque,
592 Error **errp)
594 QemuOpt *opt;
595 int rc;
597 QTAILQ_FOREACH(opt, &opts->head, next) {
598 rc = func(opaque, opt->name, opt->str, errp);
599 if (rc) {
600 return rc;
602 assert(!errp || !*errp);
604 return 0;
607 QemuOpts *qemu_opts_find(QemuOptsList *list, const char *id)
609 QemuOpts *opts;
611 QTAILQ_FOREACH(opts, &list->head, next) {
612 if (!opts->id && !id) {
613 return opts;
615 if (opts->id && id && !strcmp(opts->id, id)) {
616 return opts;
619 return NULL;
622 QemuOpts *qemu_opts_create(QemuOptsList *list, const char *id,
623 int fail_if_exists, Error **errp)
625 QemuOpts *opts = NULL;
627 if (id) {
628 if (!id_wellformed(id)) {
629 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "id",
630 "an identifier");
631 error_append_hint(errp, "Identifiers consist of letters, digits, "
632 "'-', '.', '_', starting with a letter.\n");
633 return NULL;
635 opts = qemu_opts_find(list, id);
636 if (opts != NULL) {
637 if (fail_if_exists && !list->merge_lists) {
638 error_setg(errp, "Duplicate ID '%s' for %s", id, list->name);
639 return NULL;
640 } else {
641 return opts;
644 } else if (list->merge_lists) {
645 opts = qemu_opts_find(list, NULL);
646 if (opts) {
647 return opts;
650 opts = g_malloc0(sizeof(*opts));
651 opts->id = g_strdup(id);
652 opts->list = list;
653 loc_save(&opts->loc);
654 QTAILQ_INIT(&opts->head);
655 QTAILQ_INSERT_TAIL(&list->head, opts, next);
656 return opts;
659 void qemu_opts_reset(QemuOptsList *list)
661 QemuOpts *opts, *next_opts;
663 QTAILQ_FOREACH_SAFE(opts, &list->head, next, next_opts) {
664 qemu_opts_del(opts);
668 void qemu_opts_loc_restore(QemuOpts *opts)
670 loc_restore(&opts->loc);
673 bool qemu_opts_set(QemuOptsList *list, const char *id,
674 const char *name, const char *value, Error **errp)
676 QemuOpts *opts;
678 opts = qemu_opts_create(list, id, 1, errp);
679 if (!opts) {
680 return false;
682 return qemu_opt_set(opts, name, value, errp);
685 const char *qemu_opts_id(QemuOpts *opts)
687 return opts->id;
690 /* The id string will be g_free()d by qemu_opts_del */
691 void qemu_opts_set_id(QemuOpts *opts, char *id)
693 opts->id = id;
696 void qemu_opts_del(QemuOpts *opts)
698 QemuOpt *opt;
700 if (opts == NULL) {
701 return;
704 for (;;) {
705 opt = QTAILQ_FIRST(&opts->head);
706 if (opt == NULL)
707 break;
708 qemu_opt_del(opt);
710 QTAILQ_REMOVE(&opts->list->head, opts, next);
711 g_free(opts->id);
712 g_free(opts);
715 /* print value, escaping any commas in value */
716 static void escaped_print(const char *value)
718 const char *ptr;
720 for (ptr = value; *ptr; ++ptr) {
721 if (*ptr == ',') {
722 putchar(',');
724 putchar(*ptr);
728 void qemu_opts_print(QemuOpts *opts, const char *separator)
730 QemuOpt *opt;
731 QemuOptDesc *desc = opts->list->desc;
732 const char *sep = "";
734 if (opts->id) {
735 printf("id=%s", opts->id); /* passed id_wellformed -> no commas */
736 sep = separator;
739 if (desc[0].name == NULL) {
740 QTAILQ_FOREACH(opt, &opts->head, next) {
741 printf("%s%s=", sep, opt->name);
742 escaped_print(opt->str);
743 sep = separator;
745 return;
747 for (; desc && desc->name; desc++) {
748 const char *value;
749 opt = qemu_opt_find(opts, desc->name);
751 value = opt ? opt->str : desc->def_value_str;
752 if (!value) {
753 continue;
755 if (desc->type == QEMU_OPT_STRING) {
756 printf("%s%s=", sep, desc->name);
757 escaped_print(value);
758 } else if ((desc->type == QEMU_OPT_SIZE ||
759 desc->type == QEMU_OPT_NUMBER) && opt) {
760 printf("%s%s=%" PRId64, sep, desc->name, opt->value.uint);
761 } else {
762 printf("%s%s=%s", sep, desc->name, value);
764 sep = separator;
768 static const char *get_opt_name_value(const char *params,
769 const char *firstname,
770 char **name, char **value)
772 const char *p, *pe, *pc;
774 pe = strchr(params, '=');
775 pc = strchr(params, ',');
777 if (!pe || (pc && pc < pe)) {
778 /* found "foo,more" */
779 if (firstname) {
780 /* implicitly named first option */
781 *name = g_strdup(firstname);
782 p = get_opt_value(params, value);
783 } else {
784 /* option without value, must be a flag */
785 p = get_opt_name(params, name, ',');
786 if (strncmp(*name, "no", 2) == 0) {
787 memmove(*name, *name + 2, strlen(*name + 2) + 1);
788 *value = g_strdup("off");
789 } else {
790 *value = g_strdup("on");
793 } else {
794 /* found "foo=bar,more" */
795 p = get_opt_name(params, name, '=');
796 assert(*p == '=');
797 p++;
798 p = get_opt_value(p, value);
801 assert(!*p || *p == ',');
802 if (*p == ',') {
803 p++;
805 return p;
808 static bool opts_do_parse(QemuOpts *opts, const char *params,
809 const char *firstname, bool prepend,
810 bool *help_wanted, Error **errp)
812 char *option, *value;
813 const char *p;
814 QemuOpt *opt;
816 for (p = params; *p;) {
817 p = get_opt_name_value(p, firstname, &option, &value);
818 firstname = NULL;
820 if (!strcmp(option, "id")) {
821 g_free(option);
822 g_free(value);
823 continue;
826 opt = opt_create(opts, option, value, prepend);
827 g_free(option);
828 if (!opt_validate(opt, help_wanted, errp)) {
829 qemu_opt_del(opt);
830 return false;
834 return true;
837 static char *opts_parse_id(const char *params)
839 const char *p;
840 char *name, *value;
842 for (p = params; *p;) {
843 p = get_opt_name_value(p, NULL, &name, &value);
844 if (!strcmp(name, "id")) {
845 g_free(name);
846 return value;
848 g_free(name);
849 g_free(value);
852 return NULL;
855 bool has_help_option(const char *params)
857 const char *p;
858 char *name, *value;
859 bool ret;
861 for (p = params; *p;) {
862 p = get_opt_name_value(p, NULL, &name, &value);
863 ret = is_help_option(name);
864 g_free(name);
865 g_free(value);
866 if (ret) {
867 return true;
871 return false;
875 * Store options parsed from @params into @opts.
876 * If @firstname is non-null, the first key=value in @params may omit
877 * key=, and is treated as if key was @firstname.
878 * On error, store an error object through @errp if non-null.
880 bool qemu_opts_do_parse(QemuOpts *opts, const char *params,
881 const char *firstname, Error **errp)
883 return opts_do_parse(opts, params, firstname, false, NULL, errp);
886 static QemuOpts *opts_parse(QemuOptsList *list, const char *params,
887 bool permit_abbrev, bool defaults,
888 bool *help_wanted, Error **errp)
890 const char *firstname;
891 char *id = opts_parse_id(params);
892 QemuOpts *opts;
894 assert(!permit_abbrev || list->implied_opt_name);
895 firstname = permit_abbrev ? list->implied_opt_name : NULL;
898 * This code doesn't work for defaults && !list->merge_lists: when
899 * params has no id=, and list has an element with !opts->id, it
900 * appends a new element instead of returning the existing opts.
901 * However, we got no use for this case. Guard against possible
902 * (if unlikely) future misuse:
904 assert(!defaults || list->merge_lists);
905 opts = qemu_opts_create(list, id, !defaults, errp);
906 g_free(id);
907 if (opts == NULL) {
908 return NULL;
911 if (!opts_do_parse(opts, params, firstname, defaults, help_wanted,
912 errp)) {
913 qemu_opts_del(opts);
914 return NULL;
917 return opts;
921 * Create a QemuOpts in @list and with options parsed from @params.
922 * If @permit_abbrev, the first key=value in @params may omit key=,
923 * and is treated as if key was @list->implied_opt_name.
924 * On error, store an error object through @errp if non-null.
925 * Return the new QemuOpts on success, null pointer on error.
927 QemuOpts *qemu_opts_parse(QemuOptsList *list, const char *params,
928 bool permit_abbrev, Error **errp)
930 return opts_parse(list, params, permit_abbrev, false, NULL, errp);
934 * Create a QemuOpts in @list and with options parsed from @params.
935 * If @permit_abbrev, the first key=value in @params may omit key=,
936 * and is treated as if key was @list->implied_opt_name.
937 * Report errors with error_report_err(). This is inappropriate in
938 * QMP context. Do not use this function there!
939 * Return the new QemuOpts on success, null pointer on error.
941 QemuOpts *qemu_opts_parse_noisily(QemuOptsList *list, const char *params,
942 bool permit_abbrev)
944 Error *err = NULL;
945 QemuOpts *opts;
946 bool help_wanted = false;
948 opts = opts_parse(list, params, permit_abbrev, false, &help_wanted, &err);
949 if (err) {
950 if (help_wanted) {
951 qemu_opts_print_help(list, true);
952 error_free(err);
953 } else {
954 error_report_err(err);
957 return opts;
960 void qemu_opts_set_defaults(QemuOptsList *list, const char *params,
961 int permit_abbrev)
963 QemuOpts *opts;
965 opts = opts_parse(list, params, permit_abbrev, true, NULL, NULL);
966 assert(opts);
969 static bool qemu_opts_from_qdict_entry(QemuOpts *opts,
970 const QDictEntry *entry,
971 Error **errp)
973 const char *key = qdict_entry_key(entry);
974 QObject *obj = qdict_entry_value(entry);
975 char buf[32];
976 g_autofree char *tmp = NULL;
977 const char *value;
979 if (!strcmp(key, "id")) {
980 return true;
983 switch (qobject_type(obj)) {
984 case QTYPE_QSTRING:
985 value = qstring_get_str(qobject_to(QString, obj));
986 break;
987 case QTYPE_QNUM:
988 tmp = qnum_to_string(qobject_to(QNum, obj));
989 value = tmp;
990 break;
991 case QTYPE_QBOOL:
992 pstrcpy(buf, sizeof(buf),
993 qbool_get_bool(qobject_to(QBool, obj)) ? "on" : "off");
994 value = buf;
995 break;
996 default:
997 return true;
1000 return qemu_opt_set(opts, key, value, errp);
1004 * Create QemuOpts from a QDict.
1005 * Use value of key "id" as ID if it exists and is a QString. Only
1006 * QStrings, QNums and QBools are copied. Entries with other types
1007 * are silently ignored.
1009 QemuOpts *qemu_opts_from_qdict(QemuOptsList *list, const QDict *qdict,
1010 Error **errp)
1012 QemuOpts *opts;
1013 const QDictEntry *entry;
1015 opts = qemu_opts_create(list, qdict_get_try_str(qdict, "id"), 1, errp);
1016 if (!opts) {
1017 return NULL;
1020 assert(opts != NULL);
1022 for (entry = qdict_first(qdict);
1023 entry;
1024 entry = qdict_next(qdict, entry)) {
1025 if (!qemu_opts_from_qdict_entry(opts, entry, errp)) {
1026 qemu_opts_del(opts);
1027 return NULL;
1031 return opts;
1035 * Adds all QDict entries to the QemuOpts that can be added and removes them
1036 * from the QDict. When this function returns, the QDict contains only those
1037 * entries that couldn't be added to the QemuOpts.
1039 bool qemu_opts_absorb_qdict(QemuOpts *opts, QDict *qdict, Error **errp)
1041 const QDictEntry *entry, *next;
1043 entry = qdict_first(qdict);
1045 while (entry != NULL) {
1046 next = qdict_next(qdict, entry);
1048 if (find_desc_by_name(opts->list->desc, entry->key)) {
1049 if (!qemu_opts_from_qdict_entry(opts, entry, errp)) {
1050 return false;
1052 qdict_del(qdict, entry->key);
1055 entry = next;
1058 return true;
1062 * Convert from QemuOpts to QDict. The QDict values are of type QString.
1064 * If @list is given, only add those options to the QDict that are contained in
1065 * the list. If @del is true, any options added to the QDict are removed from
1066 * the QemuOpts, otherwise they remain there.
1068 * If two options in @opts have the same name, they are processed in order
1069 * so that the last one wins (consistent with the reverse iteration in
1070 * qemu_opt_find()), but all of them are deleted if @del is true.
1072 * TODO We'll want to use types appropriate for opt->desc->type, but
1073 * this is enough for now.
1075 QDict *qemu_opts_to_qdict_filtered(QemuOpts *opts, QDict *qdict,
1076 QemuOptsList *list, bool del)
1078 QemuOpt *opt, *next;
1080 if (!qdict) {
1081 qdict = qdict_new();
1083 if (opts->id) {
1084 qdict_put_str(qdict, "id", opts->id);
1086 QTAILQ_FOREACH_SAFE(opt, &opts->head, next, next) {
1087 if (list) {
1088 QemuOptDesc *desc;
1089 bool found = false;
1090 for (desc = list->desc; desc->name; desc++) {
1091 if (!strcmp(desc->name, opt->name)) {
1092 found = true;
1093 break;
1096 if (!found) {
1097 continue;
1100 qdict_put_str(qdict, opt->name, opt->str);
1101 if (del) {
1102 qemu_opt_del(opt);
1105 return qdict;
1108 /* Copy all options in a QemuOpts to the given QDict. See
1109 * qemu_opts_to_qdict_filtered() for details. */
1110 QDict *qemu_opts_to_qdict(QemuOpts *opts, QDict *qdict)
1112 return qemu_opts_to_qdict_filtered(opts, qdict, NULL, false);
1115 /* Validate parsed opts against descriptions where no
1116 * descriptions were provided in the QemuOptsList.
1118 bool qemu_opts_validate(QemuOpts *opts, const QemuOptDesc *desc, Error **errp)
1120 QemuOpt *opt;
1122 assert(opts_accepts_any(opts));
1124 QTAILQ_FOREACH(opt, &opts->head, next) {
1125 opt->desc = find_desc_by_name(desc, opt->name);
1126 if (!opt->desc) {
1127 error_setg(errp, QERR_INVALID_PARAMETER, opt->name);
1128 return false;
1131 if (!qemu_opt_parse(opt, errp)) {
1132 return false;
1136 return true;
1140 * For each member of @list, call @func(@opaque, member, @errp).
1141 * Call it with the current location temporarily set to the member's.
1142 * @func() may store an Error through @errp, but must return non-zero then.
1143 * When @func() returns non-zero, break the loop and return that value.
1144 * Return zero when the loop completes.
1146 int qemu_opts_foreach(QemuOptsList *list, qemu_opts_loopfunc func,
1147 void *opaque, Error **errp)
1149 Location loc;
1150 QemuOpts *opts;
1151 int rc = 0;
1153 loc_push_none(&loc);
1154 QTAILQ_FOREACH(opts, &list->head, next) {
1155 loc_restore(&opts->loc);
1156 rc = func(opaque, opts, errp);
1157 if (rc) {
1158 break;
1160 assert(!errp || !*errp);
1162 loc_pop(&loc);
1163 return rc;
1166 static size_t count_opts_list(QemuOptsList *list)
1168 QemuOptDesc *desc = NULL;
1169 size_t num_opts = 0;
1171 if (!list) {
1172 return 0;
1175 desc = list->desc;
1176 while (desc && desc->name) {
1177 num_opts++;
1178 desc++;
1181 return num_opts;
1184 void qemu_opts_free(QemuOptsList *list)
1186 g_free(list);
1189 /* Realloc dst option list and append options from an option list (list)
1190 * to it. dst could be NULL or a malloced list.
1191 * The lifetime of dst must be shorter than the input list because the
1192 * QemuOptDesc->name, ->help, and ->def_value_str strings are shared.
1194 QemuOptsList *qemu_opts_append(QemuOptsList *dst,
1195 QemuOptsList *list)
1197 size_t num_opts, num_dst_opts;
1198 QemuOptDesc *desc;
1199 bool need_init = false;
1200 bool need_head_update;
1202 if (!list) {
1203 return dst;
1206 /* If dst is NULL, after realloc, some area of dst should be initialized
1207 * before adding options to it.
1209 if (!dst) {
1210 need_init = true;
1211 need_head_update = true;
1212 } else {
1213 /* Moreover, even if dst is not NULL, the realloc may move it to a
1214 * different address in which case we may get a stale tail pointer
1215 * in dst->head. */
1216 need_head_update = QTAILQ_EMPTY(&dst->head);
1219 num_opts = count_opts_list(dst);
1220 num_dst_opts = num_opts;
1221 num_opts += count_opts_list(list);
1222 dst = g_realloc(dst, sizeof(QemuOptsList) +
1223 (num_opts + 1) * sizeof(QemuOptDesc));
1224 if (need_init) {
1225 dst->name = NULL;
1226 dst->implied_opt_name = NULL;
1227 dst->merge_lists = false;
1229 if (need_head_update) {
1230 QTAILQ_INIT(&dst->head);
1232 dst->desc[num_dst_opts].name = NULL;
1234 /* append list->desc to dst->desc */
1235 if (list) {
1236 desc = list->desc;
1237 while (desc && desc->name) {
1238 if (find_desc_by_name(dst->desc, desc->name) == NULL) {
1239 dst->desc[num_dst_opts++] = *desc;
1240 dst->desc[num_dst_opts].name = NULL;
1242 desc++;
1246 return dst;