]> git.proxmox.com Git - qemu.git/blame - util/qemu-option.c
Merge git://github.com/hw-claudio/qemu-aarch64-queue into tcg-next
[qemu.git] / util / 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"
1de7afc9 30#include "qemu/error-report.h"
7b1b5d19
PB
31#include "qapi/qmp/types.h"
32#include "qapi/error.h"
33#include "qapi/qmp/qerror.h"
1de7afc9 34#include "qemu/option_int.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
d3f24367
KW
126/*
127 * Searches an option list for an option with the given name
128 */
129QEMUOptionParameter *get_option_parameter(QEMUOptionParameter *list,
130 const char *name)
131{
132 while (list && list->name) {
133 if (!strcmp(list->name, name)) {
134 return list;
135 }
136 list++;
137 }
138
139 return NULL;
140}
141
cf62adfa
LC
142static void parse_option_bool(const char *name, const char *value, bool *ret,
143 Error **errp)
67b1355b
GH
144{
145 if (value != NULL) {
146 if (!strcmp(value, "on")) {
147 *ret = 1;
148 } else if (!strcmp(value, "off")) {
149 *ret = 0;
150 } else {
cf62adfa 151 error_set(errp,QERR_INVALID_PARAMETER_VALUE, name, "'on' or 'off'");
67b1355b
GH
152 }
153 } else {
154 *ret = 1;
155 }
67b1355b
GH
156}
157
2f39df5b
LC
158static void parse_option_number(const char *name, const char *value,
159 uint64_t *ret, Error **errp)
e27c88fe
GH
160{
161 char *postfix;
162 uint64_t number;
163
164 if (value != NULL) {
165 number = strtoull(value, &postfix, 0);
166 if (*postfix != '\0') {
2f39df5b
LC
167 error_set(errp, QERR_INVALID_PARAMETER_VALUE, name, "a number");
168 return;
e27c88fe 169 }
21c9f4cd 170 *ret = number;
e27c88fe 171 } else {
2f39df5b 172 error_set(errp, QERR_INVALID_PARAMETER_VALUE, name, "a number");
e27c88fe 173 }
e27c88fe
GH
174}
175
ec7b2ccb
LC
176static void parse_option_size(const char *name, const char *value,
177 uint64_t *ret, Error **errp)
7695019b
GH
178{
179 char *postfix;
180 double sizef;
181
182 if (value != NULL) {
183 sizef = strtod(value, &postfix);
184 switch (*postfix) {
185 case 'T':
186 sizef *= 1024;
0b0404bf 187 /* fall through */
7695019b
GH
188 case 'G':
189 sizef *= 1024;
0b0404bf 190 /* fall through */
7695019b
GH
191 case 'M':
192 sizef *= 1024;
0b0404bf 193 /* fall through */
7695019b
GH
194 case 'K':
195 case 'k':
196 sizef *= 1024;
0b0404bf 197 /* fall through */
7695019b
GH
198 case 'b':
199 case '\0':
200 *ret = (uint64_t) sizef;
201 break;
202 default:
ec7b2ccb 203 error_set(errp, QERR_INVALID_PARAMETER_VALUE, name, "a size");
7216ae3d 204#if 0 /* conversion from qerror_report() to error_set() broke this: */
c64f27d4 205 error_printf_unless_qmp("You may use k, M, G or T suffixes for "
7695019b 206 "kilobytes, megabytes, gigabytes and terabytes.\n");
7216ae3d 207#endif
ec7b2ccb 208 return;
7695019b
GH
209 }
210 } else {
ec7b2ccb 211 error_set(errp, QERR_INVALID_PARAMETER_VALUE, name, "a size");
7695019b 212 }
7695019b
GH
213}
214
d3f24367
KW
215/*
216 * Sets the value of a parameter in a given option list. The parsing of the
217 * value depends on the type of option:
218 *
219 * OPT_FLAG (uses value.n):
220 * If no value is given, the flag is set to 1.
221 * Otherwise the value must be "on" (set to 1) or "off" (set to 0)
222 *
223 * OPT_STRING (uses value.s):
224 * value is strdup()ed and assigned as option value
225 *
226 * OPT_SIZE (uses value.n):
227 * The value is converted to an integer. Suffixes for kilobytes etc. are
228 * allowed (powers of 1024).
229 *
230 * Returns 0 on succes, -1 in error cases
231 */
232int set_option_parameter(QEMUOptionParameter *list, const char *name,
233 const char *value)
234{
f02b77c9 235 bool flag;
cf62adfa 236 Error *local_err = NULL;
67b1355b 237
d3f24367
KW
238 // Find a matching parameter
239 list = get_option_parameter(list, name);
240 if (list == NULL) {
241 fprintf(stderr, "Unknown option '%s'\n", name);
242 return -1;
243 }
244
245 // Process parameter
246 switch (list->type) {
247 case OPT_FLAG:
cf62adfa
LC
248 parse_option_bool(name, value, &flag, &local_err);
249 if (!error_is_set(&local_err)) {
250 list->value.n = flag;
251 }
d3f24367
KW
252 break;
253
254 case OPT_STRING:
255 if (value != NULL) {
7267c094 256 list->value.s = g_strdup(value);
d3f24367
KW
257 } else {
258 fprintf(stderr, "Option '%s' needs a parameter\n", name);
259 return -1;
260 }
261 break;
262
263 case OPT_SIZE:
ec7b2ccb 264 parse_option_size(name, value, &list->value.n, &local_err);
d3f24367 265 break;
7695019b 266
d3f24367
KW
267 default:
268 fprintf(stderr, "Bug: Option '%s' has an unknown type\n", name);
269 return -1;
270 }
271
cf62adfa
LC
272 if (error_is_set(&local_err)) {
273 qerror_report_err(local_err);
274 error_free(local_err);
275 return -1;
276 }
277
d3f24367
KW
278 return 0;
279}
280
281/*
282 * Sets the given parameter to an integer instead of a string.
283 * This function cannot be used to set string options.
284 *
285 * Returns 0 on success, -1 in error cases
286 */
287int set_option_parameter_int(QEMUOptionParameter *list, const char *name,
288 uint64_t value)
289{
290 // Find a matching parameter
291 list = get_option_parameter(list, name);
292 if (list == NULL) {
293 fprintf(stderr, "Unknown option '%s'\n", name);
294 return -1;
295 }
296
297 // Process parameter
298 switch (list->type) {
299 case OPT_FLAG:
300 case OPT_NUMBER:
301 case OPT_SIZE:
302 list->value.n = value;
303 break;
304
305 default:
306 return -1;
307 }
308
309 return 0;
310}
311
312/*
313 * Frees a option list. If it contains strings, the strings are freed as well.
314 */
315void free_option_parameters(QEMUOptionParameter *list)
316{
317 QEMUOptionParameter *cur = list;
318
319 while (cur && cur->name) {
320 if (cur->type == OPT_STRING) {
7267c094 321 g_free(cur->value.s);
d3f24367
KW
322 }
323 cur++;
324 }
325
7267c094 326 g_free(list);
d3f24367
KW
327}
328
b50cbabc
MK
329/*
330 * Count valid options in list
331 */
332static size_t count_option_parameters(QEMUOptionParameter *list)
333{
334 size_t num_options = 0;
335
336 while (list && list->name) {
337 num_options++;
338 list++;
339 }
340
341 return num_options;
342}
343
344/*
345 * Append an option list (list) to an option list (dest).
346 *
347 * If dest is NULL, a new copy of list is created.
348 *
349 * Returns a pointer to the first element of dest (or the newly allocated copy)
350 */
351QEMUOptionParameter *append_option_parameters(QEMUOptionParameter *dest,
352 QEMUOptionParameter *list)
353{
354 size_t num_options, num_dest_options;
355
356 num_options = count_option_parameters(dest);
357 num_dest_options = num_options;
358
359 num_options += count_option_parameters(list);
360
7267c094 361 dest = g_realloc(dest, (num_options + 1) * sizeof(QEMUOptionParameter));
bd69fe84 362 dest[num_dest_options].name = NULL;
b50cbabc
MK
363
364 while (list && list->name) {
365 if (get_option_parameter(dest, list->name) == NULL) {
366 dest[num_dest_options++] = *list;
367 dest[num_dest_options].name = NULL;
368 }
369 list++;
370 }
371
372 return dest;
373}
374
d3f24367
KW
375/*
376 * Parses a parameter string (param) into an option list (dest).
377 *
0e72e753
SH
378 * list is the template option list. If dest is NULL, a new copy of list is
379 * created. If list is NULL, this function fails.
d3f24367
KW
380 *
381 * A parameter string consists of one or more parameters, separated by commas.
382 * Each parameter consists of its name and possibly of a value. In the latter
383 * case, the value is delimited by an = character. To specify a value which
384 * contains commas, double each comma so it won't be recognized as the end of
385 * the parameter.
386 *
387 * For more details of the parsing see above.
388 *
389 * Returns a pointer to the first element of dest (or the newly allocated copy)
390 * or NULL in error cases
391 */
392QEMUOptionParameter *parse_option_parameters(const char *param,
393 QEMUOptionParameter *list, QEMUOptionParameter *dest)
394{
d3f24367
KW
395 QEMUOptionParameter *allocated = NULL;
396 char name[256];
397 char value[256];
398 char *param_delim, *value_delim;
399 char next_delim;
d3f24367
KW
400
401 if (list == NULL) {
402 return NULL;
403 }
404
405 if (dest == NULL) {
898c257b 406 dest = allocated = append_option_parameters(NULL, list);
d3f24367
KW
407 }
408
409 while (*param) {
410
411 // Find parameter name and value in the string
412 param_delim = strchr(param, ',');
413 value_delim = strchr(param, '=');
414
415 if (value_delim && (value_delim < param_delim || !param_delim)) {
416 next_delim = '=';
417 } else {
418 next_delim = ',';
419 value_delim = NULL;
420 }
421
422 param = get_opt_name(name, sizeof(name), param, next_delim);
423 if (value_delim) {
424 param = get_opt_value(value, sizeof(value), param + 1);
425 }
426 if (*param != '\0') {
427 param++;
428 }
429
430 // Set the parameter
431 if (set_option_parameter(dest, name, value_delim ? value : NULL)) {
432 goto fail;
433 }
434 }
435
436 return dest;
437
438fail:
439 // Only free the list if it was newly allocated
440 free_option_parameters(allocated);
441 return NULL;
442}
443
444/*
445 * Prints all options of a list that have a value to stdout
446 */
447void print_option_parameters(QEMUOptionParameter *list)
448{
449 while (list && list->name) {
450 switch (list->type) {
451 case OPT_STRING:
452 if (list->value.s != NULL) {
453 printf("%s='%s' ", list->name, list->value.s);
454 }
455 break;
456 case OPT_FLAG:
457 printf("%s=%s ", list->name, list->value.n ? "on" : "off");
458 break;
459 case OPT_SIZE:
460 case OPT_NUMBER:
461 printf("%s=%" PRId64 " ", list->name, list->value.n);
462 break;
463 default:
07f35073 464 printf("%s=(unknown type) ", list->name);
d3f24367
KW
465 break;
466 }
467 list++;
468 }
469}
db08adf5
KW
470
471/*
472 * Prints an overview of all available options
473 */
474void print_option_help(QEMUOptionParameter *list)
475{
476 printf("Supported options:\n");
477 while (list && list->name) {
478 printf("%-16s %s\n", list->name,
479 list->help ? list->help : "No description available");
480 list++;
481 }
482}
e27c88fe
GH
483
484/* ------------------------------------------------------------------ */
485
e27c88fe
GH
486static QemuOpt *qemu_opt_find(QemuOpts *opts, const char *name)
487{
488 QemuOpt *opt;
489
dc9ca4ba 490 QTAILQ_FOREACH_REVERSE(opt, &opts->head, QemuOptHead, next) {
e27c88fe
GH
491 if (strcmp(opt->name, name) != 0)
492 continue;
493 return opt;
494 }
495 return NULL;
496}
497
498const char *qemu_opt_get(QemuOpts *opts, const char *name)
499{
500 QemuOpt *opt = qemu_opt_find(opts, name);
501 return opt ? opt->str : NULL;
502}
503
c8057f95
PM
504bool qemu_opt_has_help_opt(QemuOpts *opts)
505{
506 QemuOpt *opt;
507
508 QTAILQ_FOREACH_REVERSE(opt, &opts->head, QemuOptHead, next) {
509 if (is_help_option(opt->name)) {
510 return true;
511 }
512 }
513 return false;
514}
515
f02b77c9 516bool qemu_opt_get_bool(QemuOpts *opts, const char *name, bool defval)
e27c88fe
GH
517{
518 QemuOpt *opt = qemu_opt_find(opts, name);
519
520 if (opt == NULL)
521 return defval;
522 assert(opt->desc && opt->desc->type == QEMU_OPT_BOOL);
1f5c1775 523 return opt->value.boolean;
e27c88fe
GH
524}
525
526uint64_t qemu_opt_get_number(QemuOpts *opts, const char *name, uint64_t defval)
527{
528 QemuOpt *opt = qemu_opt_find(opts, name);
529
530 if (opt == NULL)
531 return defval;
532 assert(opt->desc && opt->desc->type == QEMU_OPT_NUMBER);
533 return opt->value.uint;
534}
535
536uint64_t qemu_opt_get_size(QemuOpts *opts, const char *name, uint64_t defval)
537{
538 QemuOpt *opt = qemu_opt_find(opts, name);
539
540 if (opt == NULL)
541 return defval;
542 assert(opt->desc && opt->desc->type == QEMU_OPT_SIZE);
543 return opt->value.uint;
544}
545
6c519404 546static void qemu_opt_parse(QemuOpt *opt, Error **errp)
e27c88fe
GH
547{
548 if (opt->desc == NULL)
6c519404 549 return;
2f39df5b 550
e27c88fe
GH
551 switch (opt->desc->type) {
552 case QEMU_OPT_STRING:
553 /* nothing */
6c519404 554 return;
e27c88fe 555 case QEMU_OPT_BOOL:
6c519404 556 parse_option_bool(opt->name, opt->str, &opt->value.boolean, errp);
cf62adfa 557 break;
e27c88fe 558 case QEMU_OPT_NUMBER:
6c519404 559 parse_option_number(opt->name, opt->str, &opt->value.uint, errp);
2f39df5b 560 break;
e27c88fe 561 case QEMU_OPT_SIZE:
6c519404 562 parse_option_size(opt->name, opt->str, &opt->value.uint, errp);
ec7b2ccb 563 break;
e27c88fe
GH
564 default:
565 abort();
566 }
567}
568
569static void qemu_opt_del(QemuOpt *opt)
570{
72cf2d4f 571 QTAILQ_REMOVE(&opt->opts->head, opt, next);
7267c094
AL
572 g_free((/* !const */ char*)opt->name);
573 g_free((/* !const */ char*)opt->str);
574 g_free(opt);
e27c88fe
GH
575}
576
c474ced8
DXW
577static bool opts_accepts_any(const QemuOpts *opts)
578{
579 return opts->list->desc[0].name == NULL;
580}
581
582static const QemuOptDesc *find_desc_by_name(const QemuOptDesc *desc,
583 const char *name)
e27c88fe 584{
dc9ca4ba 585 int i;
e27c88fe 586
dc9ca4ba
MM
587 for (i = 0; desc[i].name != NULL; i++) {
588 if (strcmp(desc[i].name, name) == 0) {
c474ced8 589 return &desc[i];
e27c88fe 590 }
dc9ca4ba 591 }
c474ced8
DXW
592
593 return NULL;
594}
595
596static void opt_set(QemuOpts *opts, const char *name, const char *value,
597 bool prepend, Error **errp)
598{
599 QemuOpt *opt;
600 const QemuOptDesc *desc;
601 Error *local_err = NULL;
602
603 desc = find_desc_by_name(opts->list->desc, name);
604 if (!desc && !opts_accepts_any(opts)) {
605 error_set(errp, QERR_INVALID_PARAMETER, name);
606 return;
e27c88fe 607 }
dc9ca4ba 608
7267c094
AL
609 opt = g_malloc0(sizeof(*opt));
610 opt->name = g_strdup(name);
dc9ca4ba 611 opt->opts = opts;
4f6dd9af
JK
612 if (prepend) {
613 QTAILQ_INSERT_HEAD(&opts->head, opt, next);
614 } else {
615 QTAILQ_INSERT_TAIL(&opts->head, opt, next);
616 }
c474ced8 617 opt->desc = desc;
c64f50d1 618 opt->str = g_strdup(value);
6c519404
LC
619 qemu_opt_parse(opt, &local_err);
620 if (error_is_set(&local_err)) {
584d4064 621 error_propagate(errp, local_err);
e27c88fe 622 qemu_opt_del(opt);
e27c88fe 623 }
e27c88fe
GH
624}
625
4f6dd9af
JK
626int qemu_opt_set(QemuOpts *opts, const char *name, const char *value)
627{
584d4064
LC
628 Error *local_err = NULL;
629
630 opt_set(opts, name, value, false, &local_err);
631 if (error_is_set(&local_err)) {
632 qerror_report_err(local_err);
633 error_free(local_err);
634 return -1;
635 }
636
637 return 0;
4f6dd9af
JK
638}
639
384f2139
LC
640void qemu_opt_set_err(QemuOpts *opts, const char *name, const char *value,
641 Error **errp)
642{
643 opt_set(opts, name, value, false, errp);
644}
645
f02b77c9
MK
646int qemu_opt_set_bool(QemuOpts *opts, const char *name, bool val)
647{
648 QemuOpt *opt;
649 const QemuOptDesc *desc = opts->list->desc;
f02b77c9 650
ad718d01
DXW
651 opt = g_malloc0(sizeof(*opt));
652 opt->desc = find_desc_by_name(desc, name);
653 if (!opt->desc && !opts_accepts_any(opts)) {
654 qerror_report(QERR_INVALID_PARAMETER, name);
655 g_free(opt);
656 return -1;
f02b77c9
MK
657 }
658
f02b77c9
MK
659 opt->name = g_strdup(name);
660 opt->opts = opts;
f02b77c9 661 opt->value.boolean = !!val;
ad718d01
DXW
662 opt->str = g_strdup(val ? "on" : "off");
663 QTAILQ_INSERT_TAIL(&opts->head, opt, next);
664
f02b77c9
MK
665 return 0;
666}
667
b83c18e2
DXW
668int qemu_opt_set_number(QemuOpts *opts, const char *name, int64_t val)
669{
670 QemuOpt *opt;
671 const QemuOptDesc *desc = opts->list->desc;
672
673 opt = g_malloc0(sizeof(*opt));
674 opt->desc = find_desc_by_name(desc, name);
675 if (!opt->desc && !opts_accepts_any(opts)) {
676 qerror_report(QERR_INVALID_PARAMETER, name);
677 g_free(opt);
678 return -1;
679 }
680
681 opt->name = g_strdup(name);
682 opt->opts = opts;
683 opt->value.uint = val;
684 opt->str = g_strdup_printf("%" PRId64, val);
685 QTAILQ_INSERT_TAIL(&opts->head, opt, next);
686
687 return 0;
688}
689
48026075
GH
690int qemu_opt_foreach(QemuOpts *opts, qemu_opt_loopfunc func, void *opaque,
691 int abort_on_failure)
692{
693 QemuOpt *opt;
694 int rc = 0;
695
72cf2d4f 696 QTAILQ_FOREACH(opt, &opts->head, next) {
48026075
GH
697 rc = func(opt->name, opt->str, opaque);
698 if (abort_on_failure && rc != 0)
699 break;
700 }
701 return rc;
702}
703
e27c88fe
GH
704QemuOpts *qemu_opts_find(QemuOptsList *list, const char *id)
705{
706 QemuOpts *opts;
707
72cf2d4f 708 QTAILQ_FOREACH(opts, &list->head, next) {
96bc97eb
MA
709 if (!opts->id && !id) {
710 return opts;
e27c88fe 711 }
96bc97eb
MA
712 if (opts->id && id && !strcmp(opts->id, id)) {
713 return opts;
e27c88fe 714 }
e27c88fe
GH
715 }
716 return NULL;
717}
718
b560a9ab
MA
719static int id_wellformed(const char *id)
720{
721 int i;
722
723 if (!qemu_isalpha(id[0])) {
724 return 0;
725 }
726 for (i = 1; id[i]; i++) {
727 if (!qemu_isalnum(id[i]) && !strchr("-._", id[i])) {
728 return 0;
729 }
730 }
731 return 1;
732}
733
8be7e7e4
LC
734QemuOpts *qemu_opts_create(QemuOptsList *list, const char *id,
735 int fail_if_exists, Error **errp)
e27c88fe
GH
736{
737 QemuOpts *opts = NULL;
738
739 if (id) {
b560a9ab 740 if (!id_wellformed(id)) {
8be7e7e4 741 error_set(errp,QERR_INVALID_PARAMETER_VALUE, "id", "an identifier");
7216ae3d 742#if 0 /* conversion from qerror_report() to error_set() broke this: */
b560a9ab 743 error_printf_unless_qmp("Identifiers consist of letters, digits, '-', '.', '_', starting with a letter.\n");
7216ae3d 744#endif
b560a9ab
MA
745 return NULL;
746 }
e27c88fe
GH
747 opts = qemu_opts_find(list, id);
748 if (opts != NULL) {
da93318a 749 if (fail_if_exists && !list->merge_lists) {
8be7e7e4 750 error_set(errp, QERR_DUPLICATE_ID, id, list->name);
e27c88fe
GH
751 return NULL;
752 } else {
753 return opts;
754 }
755 }
da93318a
PM
756 } else if (list->merge_lists) {
757 opts = qemu_opts_find(list, NULL);
758 if (opts) {
759 return opts;
760 }
e27c88fe 761 }
7267c094 762 opts = g_malloc0(sizeof(*opts));
c64f50d1 763 opts->id = g_strdup(id);
e27c88fe 764 opts->list = list;
827b0813 765 loc_save(&opts->loc);
72cf2d4f
BS
766 QTAILQ_INIT(&opts->head);
767 QTAILQ_INSERT_TAIL(&list->head, opts, next);
e27c88fe
GH
768 return opts;
769}
770
dd392449
DXW
771QemuOpts *qemu_opts_create_nofail(QemuOptsList *list)
772{
773 QemuOpts *opts;
774 Error *errp = NULL;
775 opts = qemu_opts_create(list, NULL, 0, &errp);
776 assert_no_error(errp);
777 return opts;
778}
779
bb67ab02
MA
780void qemu_opts_reset(QemuOptsList *list)
781{
782 QemuOpts *opts, *next_opts;
783
784 QTAILQ_FOREACH_SAFE(opts, &list->head, next, next_opts) {
785 qemu_opts_del(opts);
786 }
787}
788
94ac7268
MA
789void qemu_opts_loc_restore(QemuOpts *opts)
790{
791 loc_restore(&opts->loc);
792}
793
e27c88fe
GH
794int qemu_opts_set(QemuOptsList *list, const char *id,
795 const char *name, const char *value)
796{
797 QemuOpts *opts;
8be7e7e4 798 Error *local_err = NULL;
e27c88fe 799
8be7e7e4
LC
800 opts = qemu_opts_create(list, id, 1, &local_err);
801 if (error_is_set(&local_err)) {
802 qerror_report_err(local_err);
803 error_free(local_err);
e27c88fe
GH
804 return -1;
805 }
806 return qemu_opt_set(opts, name, value);
807}
808
48026075
GH
809const char *qemu_opts_id(QemuOpts *opts)
810{
811 return opts->id;
812}
813
e27c88fe
GH
814void qemu_opts_del(QemuOpts *opts)
815{
816 QemuOpt *opt;
817
818 for (;;) {
72cf2d4f 819 opt = QTAILQ_FIRST(&opts->head);
e27c88fe
GH
820 if (opt == NULL)
821 break;
822 qemu_opt_del(opt);
823 }
72cf2d4f 824 QTAILQ_REMOVE(&opts->list->head, opts, next);
7267c094
AL
825 g_free(opts->id);
826 g_free(opts);
e27c88fe
GH
827}
828
829int qemu_opts_print(QemuOpts *opts, void *dummy)
830{
831 QemuOpt *opt;
832
833 fprintf(stderr, "%s: %s:", opts->list->name,
834 opts->id ? opts->id : "<noid>");
72cf2d4f 835 QTAILQ_FOREACH(opt, &opts->head, next) {
e27c88fe
GH
836 fprintf(stderr, " %s=\"%s\"", opt->name, opt->str);
837 }
838 fprintf(stderr, "\n");
839 return 0;
840}
841
4f6dd9af
JK
842static int opts_do_parse(QemuOpts *opts, const char *params,
843 const char *firstname, bool prepend)
e27c88fe 844{
d318ff99 845 char option[128], value[1024];
e27c88fe 846 const char *p,*pe,*pc;
584d4064 847 Error *local_err = NULL;
e27c88fe 848
2cfa571f 849 for (p = params; *p != '\0'; p++) {
e27c88fe
GH
850 pe = strchr(p, '=');
851 pc = strchr(p, ',');
852 if (!pe || (pc && pc < pe)) {
853 /* found "foo,more" */
854 if (p == params && firstname) {
855 /* implicitly named first option */
856 pstrcpy(option, sizeof(option), firstname);
857 p = get_opt_value(value, sizeof(value), p);
858 } else {
859 /* option without value, probably a flag */
860 p = get_opt_name(option, sizeof(option), p, ',');
96729cbd 861 if (strncmp(option, "no", 2) == 0) {
e27c88fe
GH
862 memmove(option, option+2, strlen(option+2)+1);
863 pstrcpy(value, sizeof(value), "off");
864 } else {
865 pstrcpy(value, sizeof(value), "on");
866 }
867 }
868 } else {
869 /* found "foo=bar,more" */
870 p = get_opt_name(option, sizeof(option), p, '=');
871 if (*p != '=') {
872 break;
873 }
874 p++;
875 p = get_opt_value(value, sizeof(value), p);
876 }
877 if (strcmp(option, "id") != 0) {
878 /* store and parse */
584d4064
LC
879 opt_set(opts, option, value, prepend, &local_err);
880 if (error_is_set(&local_err)) {
881 qerror_report_err(local_err);
882 error_free(local_err);
96729cbd 883 return -1;
e27c88fe
GH
884 }
885 }
886 if (*p != ',') {
887 break;
888 }
e27c88fe 889 }
96729cbd
GH
890 return 0;
891}
892
4f6dd9af
JK
893int qemu_opts_do_parse(QemuOpts *opts, const char *params, const char *firstname)
894{
895 return opts_do_parse(opts, params, firstname, false);
896}
897
898static QemuOpts *opts_parse(QemuOptsList *list, const char *params,
899 int permit_abbrev, bool defaults)
96729cbd 900{
8212c64f 901 const char *firstname;
d318ff99 902 char value[1024], *id = NULL;
96729cbd
GH
903 const char *p;
904 QemuOpts *opts;
8be7e7e4 905 Error *local_err = NULL;
96729cbd 906
8212c64f
MA
907 assert(!permit_abbrev || list->implied_opt_name);
908 firstname = permit_abbrev ? list->implied_opt_name : NULL;
909
96729cbd
GH
910 if (strncmp(params, "id=", 3) == 0) {
911 get_opt_value(value, sizeof(value), params+3);
d510c5cf 912 id = value;
96729cbd
GH
913 } else if ((p = strstr(params, ",id=")) != NULL) {
914 get_opt_value(value, sizeof(value), p+4);
d510c5cf 915 id = value;
96729cbd 916 }
6d4cd408 917 opts = qemu_opts_create(list, id, !defaults, &local_err);
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
376609cc
KW
1027/*
1028 * Adds all QDict entries to the QemuOpts that can be added and removes them
1029 * from the QDict. When this function returns, the QDict contains only those
1030 * entries that couldn't be added to the QemuOpts.
1031 */
1032void qemu_opts_absorb_qdict(QemuOpts *opts, QDict *qdict, Error **errp)
1033{
1034 const QDictEntry *entry, *next;
1035
1036 entry = qdict_first(qdict);
1037
1038 while (entry != NULL) {
1039 Error *local_err = NULL;
1040 OptsFromQDictState state = {
1041 .errp = &local_err,
1042 .opts = opts,
1043 };
1044
1045 next = qdict_next(qdict, entry);
1046
1047 if (find_desc_by_name(opts->list->desc, entry->key)) {
1048 qemu_opts_from_qdict_1(entry->key, entry->value, &state);
1049 if (error_is_set(&local_err)) {
1050 error_propagate(errp, local_err);
1051 return;
1052 } else {
1053 qdict_del(qdict, entry->key);
1054 }
1055 }
1056
1057 entry = next;
1058 }
1059}
1060
01e7f188
MA
1061/*
1062 * Convert from QemuOpts to QDict.
1063 * The QDict values are of type QString.
1064 * TODO We'll want to use types appropriate for opt->desc->type, but
1065 * this is enough for now.
1066 */
1067QDict *qemu_opts_to_qdict(QemuOpts *opts, QDict *qdict)
1068{
1069 QemuOpt *opt;
1070 QObject *val;
1071
1072 if (!qdict) {
1073 qdict = qdict_new();
1074 }
1075 if (opts->id) {
1076 qdict_put(qdict, "id", qstring_from_str(opts->id));
1077 }
1078 QTAILQ_FOREACH(opt, &opts->head, next) {
1079 val = QOBJECT(qstring_from_str(opt->str));
1080 qdict_put_obj(qdict, opt->name, val);
1081 }
1082 return qdict;
1083}
1084
5dc519ef
MM
1085/* Validate parsed opts against descriptions where no
1086 * descriptions were provided in the QemuOptsList.
1087 */
29952866 1088void qemu_opts_validate(QemuOpts *opts, const QemuOptDesc *desc, Error **errp)
5dc519ef
MM
1089{
1090 QemuOpt *opt;
6c519404 1091 Error *local_err = NULL;
5dc519ef 1092
db97ceba 1093 assert(opts_accepts_any(opts));
5dc519ef
MM
1094
1095 QTAILQ_FOREACH(opt, &opts->head, next) {
db97ceba
DXW
1096 opt->desc = find_desc_by_name(desc, opt->name);
1097 if (!opt->desc) {
29952866
LC
1098 error_set(errp, QERR_INVALID_PARAMETER, opt->name);
1099 return;
5dc519ef
MM
1100 }
1101
6c519404
LC
1102 qemu_opt_parse(opt, &local_err);
1103 if (error_is_set(&local_err)) {
29952866
LC
1104 error_propagate(errp, local_err);
1105 return;
5dc519ef
MM
1106 }
1107 }
5dc519ef
MM
1108}
1109
e27c88fe
GH
1110int qemu_opts_foreach(QemuOptsList *list, qemu_opts_loopfunc func, void *opaque,
1111 int abort_on_failure)
1112{
827b0813 1113 Location loc;
e27c88fe
GH
1114 QemuOpts *opts;
1115 int rc = 0;
1116
827b0813 1117 loc_push_none(&loc);
72cf2d4f 1118 QTAILQ_FOREACH(opts, &list->head, next) {
827b0813 1119 loc_restore(&opts->loc);
4a2594dd 1120 rc |= func(opts, opaque);
e27c88fe
GH
1121 if (abort_on_failure && rc != 0)
1122 break;
1123 }
827b0813 1124 loc_pop(&loc);
e27c88fe
GH
1125 return rc;
1126}