]> git.proxmox.com Git - qemu.git/blame - qemu-option.c
Replace 'struct siginfo' with 'siginfo_t'.
[qemu.git] / qemu-option.c
CommitLineData
d3f24367
KW
1/*
2 * Commandline option parsing functions
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 * Copyright (c) 2009 Kevin Wolf <kwolf@redhat.com>
6 *
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:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
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.
24 */
25
26#include <stdio.h>
27#include <string.h>
28
29#include "qemu-common.h"
827b0813 30#include "qemu-error.h"
01e7f188 31#include "qemu-objects.h"
8be7e7e4 32#include "error.h"
975b63a4 33#include "qerror.h"
fdb17976 34#include "qemu-option-internal.h"
d3f24367
KW
35
36/*
37 * Extracts the name of an option from the parameter string (p points at the
38 * first byte of the option name)
39 *
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.
43 *
44 * The return value is the position of the delimiter/zero byte after the option
45 * name in p.
46 */
47const char *get_opt_name(char *buf, int buf_size, const char *p, char delim)
48{
49 char *q;
50
51 q = buf;
52 while (*p != '\0' && *p != delim) {
53 if (q && (q - buf) < buf_size - 1)
54 *q++ = *p;
55 p++;
56 }
57 if (q)
58 *q = '\0';
59
60 return p;
61}
62
63/*
64 * Extracts the value of an option from the parameter string p (p points at the
65 * first byte of the option value)
66 *
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.
70 */
71const char *get_opt_value(char *buf, int buf_size, const char *p)
72{
73 char *q;
74
75 q = buf;
76 while (*p != '\0') {
77 if (*p == ',') {
78 if (*(p + 1) != ',')
79 break;
80 p++;
81 }
82 if (q && (q - buf) < buf_size - 1)
83 *q++ = *p;
84 p++;
85 }
86 if (q)
87 *q = '\0';
88
89 return p;
90}
91
62c5802e
GH
92int get_next_param_value(char *buf, int buf_size,
93 const char *tag, const char **pstr)
94{
95 const char *p;
96 char option[128];
97
98 p = *pstr;
99 for(;;) {
100 p = get_opt_name(option, sizeof(option), p, '=');
101 if (*p != '=')
102 break;
103 p++;
104 if (!strcmp(tag, option)) {
105 *pstr = get_opt_value(buf, buf_size, p);
106 if (**pstr == ',') {
107 (*pstr)++;
108 }
109 return strlen(buf);
110 } else {
111 p = get_opt_value(NULL, 0, p);
112 }
113 if (*p != ',')
114 break;
115 p++;
116 }
117 return 0;
118}
119
120int get_param_value(char *buf, int buf_size,
121 const char *tag, const char *str)
122{
123 return get_next_param_value(buf, buf_size, tag, &str);
124}
125
126int check_params(char *buf, int buf_size,
127 const char * const *params, const char *str)
128{
129 const char *p;
130 int i;
131
132 p = str;
133 while (*p != '\0') {
134 p = get_opt_name(buf, buf_size, p, '=');
135 if (*p != '=') {
136 return -1;
137 }
138 p++;
139 for (i = 0; params[i] != NULL; i++) {
140 if (!strcmp(params[i], buf)) {
141 break;
142 }
143 }
144 if (params[i] == NULL) {
145 return -1;
146 }
147 p = get_opt_value(NULL, 0, p);
148 if (*p != ',') {
149 break;
150 }
151 p++;
152 }
153 return 0;
154}
155
d3f24367
KW
156/*
157 * Searches an option list for an option with the given name
158 */
159QEMUOptionParameter *get_option_parameter(QEMUOptionParameter *list,
160 const char *name)
161{
162 while (list && list->name) {
163 if (!strcmp(list->name, name)) {
164 return list;
165 }
166 list++;
167 }
168
169 return NULL;
170}
171
cf62adfa
LC
172static void parse_option_bool(const char *name, const char *value, bool *ret,
173 Error **errp)
67b1355b
GH
174{
175 if (value != NULL) {
176 if (!strcmp(value, "on")) {
177 *ret = 1;
178 } else if (!strcmp(value, "off")) {
179 *ret = 0;
180 } else {
cf62adfa 181 error_set(errp,QERR_INVALID_PARAMETER_VALUE, name, "'on' or 'off'");
67b1355b
GH
182 }
183 } else {
184 *ret = 1;
185 }
67b1355b
GH
186}
187
2f39df5b
LC
188static void parse_option_number(const char *name, const char *value,
189 uint64_t *ret, Error **errp)
e27c88fe
GH
190{
191 char *postfix;
192 uint64_t number;
193
194 if (value != NULL) {
195 number = strtoull(value, &postfix, 0);
196 if (*postfix != '\0') {
2f39df5b
LC
197 error_set(errp, QERR_INVALID_PARAMETER_VALUE, name, "a number");
198 return;
e27c88fe 199 }
21c9f4cd 200 *ret = number;
e27c88fe 201 } else {
2f39df5b 202 error_set(errp, QERR_INVALID_PARAMETER_VALUE, name, "a number");
e27c88fe 203 }
e27c88fe
GH
204}
205
ec7b2ccb
LC
206static void parse_option_size(const char *name, const char *value,
207 uint64_t *ret, Error **errp)
7695019b
GH
208{
209 char *postfix;
210 double sizef;
211
212 if (value != NULL) {
213 sizef = strtod(value, &postfix);
214 switch (*postfix) {
215 case 'T':
216 sizef *= 1024;
0b0404bf 217 /* fall through */
7695019b
GH
218 case 'G':
219 sizef *= 1024;
0b0404bf 220 /* fall through */
7695019b
GH
221 case 'M':
222 sizef *= 1024;
0b0404bf 223 /* fall through */
7695019b
GH
224 case 'K':
225 case 'k':
226 sizef *= 1024;
0b0404bf 227 /* fall through */
7695019b
GH
228 case 'b':
229 case '\0':
230 *ret = (uint64_t) sizef;
231 break;
232 default:
ec7b2ccb 233 error_set(errp, QERR_INVALID_PARAMETER_VALUE, name, "a size");
c64f27d4 234 error_printf_unless_qmp("You may use k, M, G or T suffixes for "
7695019b 235 "kilobytes, megabytes, gigabytes and terabytes.\n");
ec7b2ccb 236 return;
7695019b
GH
237 }
238 } else {
ec7b2ccb 239 error_set(errp, QERR_INVALID_PARAMETER_VALUE, name, "a size");
7695019b 240 }
7695019b
GH
241}
242
d3f24367
KW
243/*
244 * Sets the value of a parameter in a given option list. The parsing of the
245 * value depends on the type of option:
246 *
247 * OPT_FLAG (uses value.n):
248 * If no value is given, the flag is set to 1.
249 * Otherwise the value must be "on" (set to 1) or "off" (set to 0)
250 *
251 * OPT_STRING (uses value.s):
252 * value is strdup()ed and assigned as option value
253 *
254 * OPT_SIZE (uses value.n):
255 * The value is converted to an integer. Suffixes for kilobytes etc. are
256 * allowed (powers of 1024).
257 *
258 * Returns 0 on succes, -1 in error cases
259 */
260int set_option_parameter(QEMUOptionParameter *list, const char *name,
261 const char *value)
262{
f02b77c9 263 bool flag;
cf62adfa 264 Error *local_err = NULL;
67b1355b 265
d3f24367
KW
266 // Find a matching parameter
267 list = get_option_parameter(list, name);
268 if (list == NULL) {
269 fprintf(stderr, "Unknown option '%s'\n", name);
270 return -1;
271 }
272
273 // Process parameter
274 switch (list->type) {
275 case OPT_FLAG:
cf62adfa
LC
276 parse_option_bool(name, value, &flag, &local_err);
277 if (!error_is_set(&local_err)) {
278 list->value.n = flag;
279 }
d3f24367
KW
280 break;
281
282 case OPT_STRING:
283 if (value != NULL) {
7267c094 284 list->value.s = g_strdup(value);
d3f24367
KW
285 } else {
286 fprintf(stderr, "Option '%s' needs a parameter\n", name);
287 return -1;
288 }
289 break;
290
291 case OPT_SIZE:
ec7b2ccb 292 parse_option_size(name, value, &list->value.n, &local_err);
d3f24367 293 break;
7695019b 294
d3f24367
KW
295 default:
296 fprintf(stderr, "Bug: Option '%s' has an unknown type\n", name);
297 return -1;
298 }
299
cf62adfa
LC
300 if (error_is_set(&local_err)) {
301 qerror_report_err(local_err);
302 error_free(local_err);
303 return -1;
304 }
305
d3f24367
KW
306 return 0;
307}
308
309/*
310 * Sets the given parameter to an integer instead of a string.
311 * This function cannot be used to set string options.
312 *
313 * Returns 0 on success, -1 in error cases
314 */
315int set_option_parameter_int(QEMUOptionParameter *list, const char *name,
316 uint64_t value)
317{
318 // Find a matching parameter
319 list = get_option_parameter(list, name);
320 if (list == NULL) {
321 fprintf(stderr, "Unknown option '%s'\n", name);
322 return -1;
323 }
324
325 // Process parameter
326 switch (list->type) {
327 case OPT_FLAG:
328 case OPT_NUMBER:
329 case OPT_SIZE:
330 list->value.n = value;
331 break;
332
333 default:
334 return -1;
335 }
336
337 return 0;
338}
339
340/*
341 * Frees a option list. If it contains strings, the strings are freed as well.
342 */
343void free_option_parameters(QEMUOptionParameter *list)
344{
345 QEMUOptionParameter *cur = list;
346
347 while (cur && cur->name) {
348 if (cur->type == OPT_STRING) {
7267c094 349 g_free(cur->value.s);
d3f24367
KW
350 }
351 cur++;
352 }
353
7267c094 354 g_free(list);
d3f24367
KW
355}
356
b50cbabc
MK
357/*
358 * Count valid options in list
359 */
360static size_t count_option_parameters(QEMUOptionParameter *list)
361{
362 size_t num_options = 0;
363
364 while (list && list->name) {
365 num_options++;
366 list++;
367 }
368
369 return num_options;
370}
371
372/*
373 * Append an option list (list) to an option list (dest).
374 *
375 * If dest is NULL, a new copy of list is created.
376 *
377 * Returns a pointer to the first element of dest (or the newly allocated copy)
378 */
379QEMUOptionParameter *append_option_parameters(QEMUOptionParameter *dest,
380 QEMUOptionParameter *list)
381{
382 size_t num_options, num_dest_options;
383
384 num_options = count_option_parameters(dest);
385 num_dest_options = num_options;
386
387 num_options += count_option_parameters(list);
388
7267c094 389 dest = g_realloc(dest, (num_options + 1) * sizeof(QEMUOptionParameter));
bd69fe84 390 dest[num_dest_options].name = NULL;
b50cbabc
MK
391
392 while (list && list->name) {
393 if (get_option_parameter(dest, list->name) == NULL) {
394 dest[num_dest_options++] = *list;
395 dest[num_dest_options].name = NULL;
396 }
397 list++;
398 }
399
400 return dest;
401}
402
d3f24367
KW
403/*
404 * Parses a parameter string (param) into an option list (dest).
405 *
0e72e753
SH
406 * list is the template option list. If dest is NULL, a new copy of list is
407 * created. If list is NULL, this function fails.
d3f24367
KW
408 *
409 * A parameter string consists of one or more parameters, separated by commas.
410 * Each parameter consists of its name and possibly of a value. In the latter
411 * case, the value is delimited by an = character. To specify a value which
412 * contains commas, double each comma so it won't be recognized as the end of
413 * the parameter.
414 *
415 * For more details of the parsing see above.
416 *
417 * Returns a pointer to the first element of dest (or the newly allocated copy)
418 * or NULL in error cases
419 */
420QEMUOptionParameter *parse_option_parameters(const char *param,
421 QEMUOptionParameter *list, QEMUOptionParameter *dest)
422{
d3f24367
KW
423 QEMUOptionParameter *allocated = NULL;
424 char name[256];
425 char value[256];
426 char *param_delim, *value_delim;
427 char next_delim;
d3f24367
KW
428
429 if (list == NULL) {
430 return NULL;
431 }
432
433 if (dest == NULL) {
898c257b 434 dest = allocated = append_option_parameters(NULL, list);
d3f24367
KW
435 }
436
437 while (*param) {
438
439 // Find parameter name and value in the string
440 param_delim = strchr(param, ',');
441 value_delim = strchr(param, '=');
442
443 if (value_delim && (value_delim < param_delim || !param_delim)) {
444 next_delim = '=';
445 } else {
446 next_delim = ',';
447 value_delim = NULL;
448 }
449
450 param = get_opt_name(name, sizeof(name), param, next_delim);
451 if (value_delim) {
452 param = get_opt_value(value, sizeof(value), param + 1);
453 }
454 if (*param != '\0') {
455 param++;
456 }
457
458 // Set the parameter
459 if (set_option_parameter(dest, name, value_delim ? value : NULL)) {
460 goto fail;
461 }
462 }
463
464 return dest;
465
466fail:
467 // Only free the list if it was newly allocated
468 free_option_parameters(allocated);
469 return NULL;
470}
471
472/*
473 * Prints all options of a list that have a value to stdout
474 */
475void print_option_parameters(QEMUOptionParameter *list)
476{
477 while (list && list->name) {
478 switch (list->type) {
479 case OPT_STRING:
480 if (list->value.s != NULL) {
481 printf("%s='%s' ", list->name, list->value.s);
482 }
483 break;
484 case OPT_FLAG:
485 printf("%s=%s ", list->name, list->value.n ? "on" : "off");
486 break;
487 case OPT_SIZE:
488 case OPT_NUMBER:
489 printf("%s=%" PRId64 " ", list->name, list->value.n);
490 break;
491 default:
07f35073 492 printf("%s=(unknown type) ", list->name);
d3f24367
KW
493 break;
494 }
495 list++;
496 }
497}
db08adf5
KW
498
499/*
500 * Prints an overview of all available options
501 */
502void print_option_help(QEMUOptionParameter *list)
503{
504 printf("Supported options:\n");
505 while (list && list->name) {
506 printf("%-16s %s\n", list->name,
507 list->help ? list->help : "No description available");
508 list++;
509 }
510}
e27c88fe
GH
511
512/* ------------------------------------------------------------------ */
513
e27c88fe
GH
514static QemuOpt *qemu_opt_find(QemuOpts *opts, const char *name)
515{
516 QemuOpt *opt;
517
dc9ca4ba 518 QTAILQ_FOREACH_REVERSE(opt, &opts->head, QemuOptHead, next) {
e27c88fe
GH
519 if (strcmp(opt->name, name) != 0)
520 continue;
521 return opt;
522 }
523 return NULL;
524}
525
526const char *qemu_opt_get(QemuOpts *opts, const char *name)
527{
528 QemuOpt *opt = qemu_opt_find(opts, name);
529 return opt ? opt->str : NULL;
530}
531
f02b77c9 532bool qemu_opt_get_bool(QemuOpts *opts, const char *name, bool defval)
e27c88fe
GH
533{
534 QemuOpt *opt = qemu_opt_find(opts, name);
535
536 if (opt == NULL)
537 return defval;
538 assert(opt->desc && opt->desc->type == QEMU_OPT_BOOL);
1f5c1775 539 return opt->value.boolean;
e27c88fe
GH
540}
541
542uint64_t qemu_opt_get_number(QemuOpts *opts, const char *name, uint64_t defval)
543{
544 QemuOpt *opt = qemu_opt_find(opts, name);
545
546 if (opt == NULL)
547 return defval;
548 assert(opt->desc && opt->desc->type == QEMU_OPT_NUMBER);
549 return opt->value.uint;
550}
551
552uint64_t qemu_opt_get_size(QemuOpts *opts, const char *name, uint64_t defval)
553{
554 QemuOpt *opt = qemu_opt_find(opts, name);
555
556 if (opt == NULL)
557 return defval;
558 assert(opt->desc && opt->desc->type == QEMU_OPT_SIZE);
559 return opt->value.uint;
560}
561
6c519404 562static void qemu_opt_parse(QemuOpt *opt, Error **errp)
e27c88fe
GH
563{
564 if (opt->desc == NULL)
6c519404 565 return;
2f39df5b 566
e27c88fe
GH
567 switch (opt->desc->type) {
568 case QEMU_OPT_STRING:
569 /* nothing */
6c519404 570 return;
e27c88fe 571 case QEMU_OPT_BOOL:
6c519404 572 parse_option_bool(opt->name, opt->str, &opt->value.boolean, errp);
cf62adfa 573 break;
e27c88fe 574 case QEMU_OPT_NUMBER:
6c519404 575 parse_option_number(opt->name, opt->str, &opt->value.uint, errp);
2f39df5b 576 break;
e27c88fe 577 case QEMU_OPT_SIZE:
6c519404 578 parse_option_size(opt->name, opt->str, &opt->value.uint, errp);
ec7b2ccb 579 break;
e27c88fe
GH
580 default:
581 abort();
582 }
583}
584
585static void qemu_opt_del(QemuOpt *opt)
586{
72cf2d4f 587 QTAILQ_REMOVE(&opt->opts->head, opt, next);
7267c094
AL
588 g_free((/* !const */ char*)opt->name);
589 g_free((/* !const */ char*)opt->str);
590 g_free(opt);
e27c88fe
GH
591}
592
584d4064
LC
593static void opt_set(QemuOpts *opts, const char *name, const char *value,
594 bool prepend, Error **errp)
e27c88fe
GH
595{
596 QemuOpt *opt;
238431a9 597 const QemuOptDesc *desc = opts->list->desc;
6c519404 598 Error *local_err = NULL;
dc9ca4ba 599 int i;
e27c88fe 600
dc9ca4ba
MM
601 for (i = 0; desc[i].name != NULL; i++) {
602 if (strcmp(desc[i].name, name) == 0) {
603 break;
e27c88fe 604 }
dc9ca4ba
MM
605 }
606 if (desc[i].name == NULL) {
607 if (i == 0) {
608 /* empty list -> allow any */;
609 } else {
584d4064
LC
610 error_set(errp, QERR_INVALID_PARAMETER, name);
611 return;
e27c88fe
GH
612 }
613 }
dc9ca4ba 614
7267c094
AL
615 opt = g_malloc0(sizeof(*opt));
616 opt->name = g_strdup(name);
dc9ca4ba 617 opt->opts = opts;
4f6dd9af
JK
618 if (prepend) {
619 QTAILQ_INSERT_HEAD(&opts->head, opt, next);
620 } else {
621 QTAILQ_INSERT_TAIL(&opts->head, opt, next);
622 }
dc9ca4ba
MM
623 if (desc[i].name != NULL) {
624 opt->desc = desc+i;
625 }
e27c88fe 626 if (value) {
7267c094 627 opt->str = g_strdup(value);
e27c88fe 628 }
6c519404
LC
629 qemu_opt_parse(opt, &local_err);
630 if (error_is_set(&local_err)) {
584d4064 631 error_propagate(errp, local_err);
e27c88fe 632 qemu_opt_del(opt);
e27c88fe 633 }
e27c88fe
GH
634}
635
4f6dd9af
JK
636int qemu_opt_set(QemuOpts *opts, const char *name, const char *value)
637{
584d4064
LC
638 Error *local_err = NULL;
639
640 opt_set(opts, name, value, false, &local_err);
641 if (error_is_set(&local_err)) {
642 qerror_report_err(local_err);
643 error_free(local_err);
644 return -1;
645 }
646
647 return 0;
4f6dd9af
JK
648}
649
384f2139
LC
650void qemu_opt_set_err(QemuOpts *opts, const char *name, const char *value,
651 Error **errp)
652{
653 opt_set(opts, name, value, false, errp);
654}
655
f02b77c9
MK
656int qemu_opt_set_bool(QemuOpts *opts, const char *name, bool val)
657{
658 QemuOpt *opt;
659 const QemuOptDesc *desc = opts->list->desc;
660 int i;
661
662 for (i = 0; desc[i].name != NULL; i++) {
663 if (strcmp(desc[i].name, name) == 0) {
664 break;
665 }
666 }
667 if (desc[i].name == NULL) {
668 if (i == 0) {
669 /* empty list -> allow any */;
670 } else {
671 qerror_report(QERR_INVALID_PARAMETER, name);
672 return -1;
673 }
674 }
675
676 opt = g_malloc0(sizeof(*opt));
677 opt->name = g_strdup(name);
678 opt->opts = opts;
679 QTAILQ_INSERT_TAIL(&opts->head, opt, next);
680 if (desc[i].name != NULL) {
681 opt->desc = desc+i;
682 }
683 opt->value.boolean = !!val;
684 return 0;
685}
686
48026075
GH
687int qemu_opt_foreach(QemuOpts *opts, qemu_opt_loopfunc func, void *opaque,
688 int abort_on_failure)
689{
690 QemuOpt *opt;
691 int rc = 0;
692
72cf2d4f 693 QTAILQ_FOREACH(opt, &opts->head, next) {
48026075
GH
694 rc = func(opt->name, opt->str, opaque);
695 if (abort_on_failure && rc != 0)
696 break;
697 }
698 return rc;
699}
700
e27c88fe
GH
701QemuOpts *qemu_opts_find(QemuOptsList *list, const char *id)
702{
703 QemuOpts *opts;
704
72cf2d4f 705 QTAILQ_FOREACH(opts, &list->head, next) {
e27c88fe 706 if (!opts->id) {
4f6dd9af
JK
707 if (!id) {
708 return opts;
709 }
e27c88fe
GH
710 continue;
711 }
712 if (strcmp(opts->id, id) != 0) {
713 continue;
714 }
715 return opts;
716 }
717 return NULL;
718}
719
b560a9ab
MA
720static int id_wellformed(const char *id)
721{
722 int i;
723
724 if (!qemu_isalpha(id[0])) {
725 return 0;
726 }
727 for (i = 1; id[i]; i++) {
728 if (!qemu_isalnum(id[i]) && !strchr("-._", id[i])) {
729 return 0;
730 }
731 }
732 return 1;
733}
734
8be7e7e4
LC
735QemuOpts *qemu_opts_create(QemuOptsList *list, const char *id,
736 int fail_if_exists, Error **errp)
e27c88fe
GH
737{
738 QemuOpts *opts = NULL;
739
740 if (id) {
b560a9ab 741 if (!id_wellformed(id)) {
8be7e7e4 742 error_set(errp,QERR_INVALID_PARAMETER_VALUE, "id", "an identifier");
b560a9ab
MA
743 error_printf_unless_qmp("Identifiers consist of letters, digits, '-', '.', '_', starting with a letter.\n");
744 return NULL;
745 }
e27c88fe
GH
746 opts = qemu_opts_find(list, id);
747 if (opts != NULL) {
da93318a 748 if (fail_if_exists && !list->merge_lists) {
8be7e7e4 749 error_set(errp, QERR_DUPLICATE_ID, id, list->name);
e27c88fe
GH
750 return NULL;
751 } else {
752 return opts;
753 }
754 }
da93318a
PM
755 } else if (list->merge_lists) {
756 opts = qemu_opts_find(list, NULL);
757 if (opts) {
758 return opts;
759 }
e27c88fe 760 }
7267c094 761 opts = g_malloc0(sizeof(*opts));
e27c88fe 762 if (id) {
7267c094 763 opts->id = g_strdup(id);
e27c88fe
GH
764 }
765 opts->list = list;
827b0813 766 loc_save(&opts->loc);
72cf2d4f
BS
767 QTAILQ_INIT(&opts->head);
768 QTAILQ_INSERT_TAIL(&list->head, opts, next);
e27c88fe
GH
769 return opts;
770}
771
bb67ab02
MA
772void qemu_opts_reset(QemuOptsList *list)
773{
774 QemuOpts *opts, *next_opts;
775
776 QTAILQ_FOREACH_SAFE(opts, &list->head, next, next_opts) {
777 qemu_opts_del(opts);
778 }
779}
780
94ac7268
MA
781void qemu_opts_loc_restore(QemuOpts *opts)
782{
783 loc_restore(&opts->loc);
784}
785
e27c88fe
GH
786int qemu_opts_set(QemuOptsList *list, const char *id,
787 const char *name, const char *value)
788{
789 QemuOpts *opts;
8be7e7e4 790 Error *local_err = NULL;
e27c88fe 791
8be7e7e4
LC
792 opts = qemu_opts_create(list, id, 1, &local_err);
793 if (error_is_set(&local_err)) {
794 qerror_report_err(local_err);
795 error_free(local_err);
e27c88fe
GH
796 return -1;
797 }
798 return qemu_opt_set(opts, name, value);
799}
800
48026075
GH
801const char *qemu_opts_id(QemuOpts *opts)
802{
803 return opts->id;
804}
805
e27c88fe
GH
806void qemu_opts_del(QemuOpts *opts)
807{
808 QemuOpt *opt;
809
810 for (;;) {
72cf2d4f 811 opt = QTAILQ_FIRST(&opts->head);
e27c88fe
GH
812 if (opt == NULL)
813 break;
814 qemu_opt_del(opt);
815 }
72cf2d4f 816 QTAILQ_REMOVE(&opts->list->head, opts, next);
7267c094
AL
817 g_free(opts->id);
818 g_free(opts);
e27c88fe
GH
819}
820
821int qemu_opts_print(QemuOpts *opts, void *dummy)
822{
823 QemuOpt *opt;
824
825 fprintf(stderr, "%s: %s:", opts->list->name,
826 opts->id ? opts->id : "<noid>");
72cf2d4f 827 QTAILQ_FOREACH(opt, &opts->head, next) {
e27c88fe
GH
828 fprintf(stderr, " %s=\"%s\"", opt->name, opt->str);
829 }
830 fprintf(stderr, "\n");
831 return 0;
832}
833
4f6dd9af
JK
834static int opts_do_parse(QemuOpts *opts, const char *params,
835 const char *firstname, bool prepend)
e27c88fe 836{
d318ff99 837 char option[128], value[1024];
e27c88fe 838 const char *p,*pe,*pc;
584d4064 839 Error *local_err = NULL;
e27c88fe 840
2cfa571f 841 for (p = params; *p != '\0'; p++) {
e27c88fe
GH
842 pe = strchr(p, '=');
843 pc = strchr(p, ',');
844 if (!pe || (pc && pc < pe)) {
845 /* found "foo,more" */
846 if (p == params && firstname) {
847 /* implicitly named first option */
848 pstrcpy(option, sizeof(option), firstname);
849 p = get_opt_value(value, sizeof(value), p);
850 } else {
851 /* option without value, probably a flag */
852 p = get_opt_name(option, sizeof(option), p, ',');
96729cbd 853 if (strncmp(option, "no", 2) == 0) {
e27c88fe
GH
854 memmove(option, option+2, strlen(option+2)+1);
855 pstrcpy(value, sizeof(value), "off");
856 } else {
857 pstrcpy(value, sizeof(value), "on");
858 }
859 }
860 } else {
861 /* found "foo=bar,more" */
862 p = get_opt_name(option, sizeof(option), p, '=');
863 if (*p != '=') {
864 break;
865 }
866 p++;
867 p = get_opt_value(value, sizeof(value), p);
868 }
869 if (strcmp(option, "id") != 0) {
870 /* store and parse */
584d4064
LC
871 opt_set(opts, option, value, prepend, &local_err);
872 if (error_is_set(&local_err)) {
873 qerror_report_err(local_err);
874 error_free(local_err);
96729cbd 875 return -1;
e27c88fe
GH
876 }
877 }
878 if (*p != ',') {
879 break;
880 }
e27c88fe 881 }
96729cbd
GH
882 return 0;
883}
884
4f6dd9af
JK
885int qemu_opts_do_parse(QemuOpts *opts, const char *params, const char *firstname)
886{
887 return opts_do_parse(opts, params, firstname, false);
888}
889
890static QemuOpts *opts_parse(QemuOptsList *list, const char *params,
891 int permit_abbrev, bool defaults)
96729cbd 892{
8212c64f 893 const char *firstname;
d318ff99 894 char value[1024], *id = NULL;
96729cbd
GH
895 const char *p;
896 QemuOpts *opts;
8be7e7e4 897 Error *local_err = NULL;
96729cbd 898
8212c64f
MA
899 assert(!permit_abbrev || list->implied_opt_name);
900 firstname = permit_abbrev ? list->implied_opt_name : NULL;
901
96729cbd
GH
902 if (strncmp(params, "id=", 3) == 0) {
903 get_opt_value(value, sizeof(value), params+3);
d510c5cf 904 id = value;
96729cbd
GH
905 } else if ((p = strstr(params, ",id=")) != NULL) {
906 get_opt_value(value, sizeof(value), p+4);
d510c5cf 907 id = value;
96729cbd 908 }
4f6dd9af
JK
909 if (defaults) {
910 if (!id && !QTAILQ_EMPTY(&list->head)) {
911 opts = qemu_opts_find(list, NULL);
912 } else {
8be7e7e4 913 opts = qemu_opts_create(list, id, 0, &local_err);
4f6dd9af
JK
914 }
915 } else {
8be7e7e4 916 opts = qemu_opts_create(list, id, 1, &local_err);
4f6dd9af 917 }
8be7e7e4
LC
918 if (opts == NULL) {
919 if (error_is_set(&local_err)) {
920 qerror_report_err(local_err);
921 error_free(local_err);
922 }
96729cbd 923 return NULL;
8be7e7e4 924 }
96729cbd 925
4f6dd9af 926 if (opts_do_parse(opts, params, firstname, defaults) != 0) {
96729cbd
GH
927 qemu_opts_del(opts);
928 return NULL;
929 }
930
e27c88fe
GH
931 return opts;
932}
933
4f6dd9af
JK
934QemuOpts *qemu_opts_parse(QemuOptsList *list, const char *params,
935 int permit_abbrev)
936{
937 return opts_parse(list, params, permit_abbrev, false);
938}
939
940void qemu_opts_set_defaults(QemuOptsList *list, const char *params,
941 int permit_abbrev)
942{
943 QemuOpts *opts;
944
945 opts = opts_parse(list, params, permit_abbrev, true);
946 assert(opts);
947}
948
4e89978e
LC
949typedef struct OptsFromQDictState {
950 QemuOpts *opts;
951 Error **errp;
952} OptsFromQDictState;
953
01e7f188
MA
954static void qemu_opts_from_qdict_1(const char *key, QObject *obj, void *opaque)
955{
4e89978e 956 OptsFromQDictState *state = opaque;
01e7f188
MA
957 char buf[32];
958 const char *value;
959 int n;
960
4e89978e 961 if (!strcmp(key, "id") || error_is_set(state->errp)) {
01e7f188
MA
962 return;
963 }
964
965 switch (qobject_type(obj)) {
966 case QTYPE_QSTRING:
967 value = qstring_get_str(qobject_to_qstring(obj));
968 break;
969 case QTYPE_QINT:
970 n = snprintf(buf, sizeof(buf), "%" PRId64,
971 qint_get_int(qobject_to_qint(obj)));
972 assert(n < sizeof(buf));
973 value = buf;
974 break;
975 case QTYPE_QFLOAT:
976 n = snprintf(buf, sizeof(buf), "%.17g",
977 qfloat_get_double(qobject_to_qfloat(obj)));
978 assert(n < sizeof(buf));
979 value = buf;
980 break;
981 case QTYPE_QBOOL:
d35215f8
BS
982 pstrcpy(buf, sizeof(buf),
983 qbool_get_int(qobject_to_qbool(obj)) ? "on" : "off");
01e7f188
MA
984 value = buf;
985 break;
986 default:
987 return;
988 }
4e89978e
LC
989
990 qemu_opt_set_err(state->opts, key, value, state->errp);
01e7f188
MA
991}
992
993/*
994 * Create QemuOpts from a QDict.
995 * Use value of key "id" as ID if it exists and is a QString.
996 * Only QStrings, QInts, QFloats and QBools are copied. Entries with
997 * other types are silently ignored.
998 */
4e89978e
LC
999QemuOpts *qemu_opts_from_qdict(QemuOptsList *list, const QDict *qdict,
1000 Error **errp)
01e7f188 1001{
4e89978e 1002 OptsFromQDictState state;
8be7e7e4 1003 Error *local_err = NULL;
4e89978e 1004 QemuOpts *opts;
01e7f188 1005
8be7e7e4
LC
1006 opts = qemu_opts_create(list, qdict_get_try_str(qdict, "id"), 1,
1007 &local_err);
1008 if (error_is_set(&local_err)) {
4e89978e 1009 error_propagate(errp, local_err);
01e7f188 1010 return NULL;
8be7e7e4 1011 }
01e7f188 1012
8be7e7e4 1013 assert(opts != NULL);
4e89978e
LC
1014
1015 state.errp = &local_err;
1016 state.opts = opts;
1017 qdict_iter(qdict, qemu_opts_from_qdict_1, &state);
1018 if (error_is_set(&local_err)) {
1019 error_propagate(errp, local_err);
1020 qemu_opts_del(opts);
1021 return NULL;
1022 }
1023
01e7f188
MA
1024 return opts;
1025}
1026
1027/*
1028 * Convert from QemuOpts to QDict.
1029 * The QDict values are of type QString.
1030 * TODO We'll want to use types appropriate for opt->desc->type, but
1031 * this is enough for now.
1032 */
1033QDict *qemu_opts_to_qdict(QemuOpts *opts, QDict *qdict)
1034{
1035 QemuOpt *opt;
1036 QObject *val;
1037
1038 if (!qdict) {
1039 qdict = qdict_new();
1040 }
1041 if (opts->id) {
1042 qdict_put(qdict, "id", qstring_from_str(opts->id));
1043 }
1044 QTAILQ_FOREACH(opt, &opts->head, next) {
1045 val = QOBJECT(qstring_from_str(opt->str));
1046 qdict_put_obj(qdict, opt->name, val);
1047 }
1048 return qdict;
1049}
1050
5dc519ef
MM
1051/* Validate parsed opts against descriptions where no
1052 * descriptions were provided in the QemuOptsList.
1053 */
29952866 1054void qemu_opts_validate(QemuOpts *opts, const QemuOptDesc *desc, Error **errp)
5dc519ef
MM
1055{
1056 QemuOpt *opt;
6c519404 1057 Error *local_err = NULL;
5dc519ef
MM
1058
1059 assert(opts->list->desc[0].name == NULL);
1060
1061 QTAILQ_FOREACH(opt, &opts->head, next) {
1062 int i;
1063
1064 for (i = 0; desc[i].name != NULL; i++) {
1065 if (strcmp(desc[i].name, opt->name) == 0) {
1066 break;
1067 }
1068 }
1069 if (desc[i].name == NULL) {
29952866
LC
1070 error_set(errp, QERR_INVALID_PARAMETER, opt->name);
1071 return;
5dc519ef
MM
1072 }
1073
1074 opt->desc = &desc[i];
1075
6c519404
LC
1076 qemu_opt_parse(opt, &local_err);
1077 if (error_is_set(&local_err)) {
29952866
LC
1078 error_propagate(errp, local_err);
1079 return;
5dc519ef
MM
1080 }
1081 }
5dc519ef
MM
1082}
1083
e27c88fe
GH
1084int qemu_opts_foreach(QemuOptsList *list, qemu_opts_loopfunc func, void *opaque,
1085 int abort_on_failure)
1086{
827b0813 1087 Location loc;
e27c88fe
GH
1088 QemuOpts *opts;
1089 int rc = 0;
1090
827b0813 1091 loc_push_none(&loc);
72cf2d4f 1092 QTAILQ_FOREACH(opts, &list->head, next) {
827b0813 1093 loc_restore(&opts->loc);
4a2594dd 1094 rc |= func(opts, opaque);
e27c88fe
GH
1095 if (abort_on_failure && rc != 0)
1096 break;
1097 }
827b0813 1098 loc_pop(&loc);
e27c88fe
GH
1099 return rc;
1100}