4 * Copyright Red Hat, Inc. 2012, 2013
6 * Author: Laszlo Ersek <lersek@redhat.com>
8 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
9 * See the COPYING.LIB file in the top-level directory.
13 #include "qemu-common.h"
14 #include "qapi/qmp/qerror.h"
15 #include "qapi/opts-visitor.h"
16 #include "qemu/queue.h"
17 #include "qemu/option_int.h"
18 #include "qapi/visitor-impl.h"
23 LM_NONE
, /* not traversing a list of repeated options */
24 LM_STARTED
, /* opts_start_list() succeeded */
26 LM_IN_PROGRESS
, /* opts_next_list() has been called.
28 * Generating the next list link will consume the most
29 * recently parsed QemuOpt instance of the repeated
32 * Parsing a value into the list link will examine the
33 * next QemuOpt instance of the repeated option, and
34 * possibly enter LM_SIGNED_INTERVAL or
35 * LM_UNSIGNED_INTERVAL.
38 LM_SIGNED_INTERVAL
, /* opts_next_list() has been called.
40 * Generating the next list link will consume the most
41 * recently stored element from the signed interval,
42 * parsed from the most recent QemuOpt instance of the
43 * repeated option. This may consume QemuOpt itself
44 * and return to LM_IN_PROGRESS.
46 * Parsing a value into the list link will store the
47 * next element of the signed interval.
50 LM_UNSIGNED_INTERVAL
/* Same as above, only for an unsigned interval. */
53 typedef enum ListMode ListMode
;
59 /* Ownership remains with opts_visitor_new()'s caller. */
60 const QemuOpts
*opts_root
;
64 /* Non-null iff depth is positive. Each key is a QemuOpt name. Each value
65 * is a non-empty GQueue, enumerating all QemuOpt occurrences with that
67 GHashTable
*unprocessed_opts
;
69 /* The list currently being traversed with opts_start_list() /
70 * opts_next_list(). The list must have a struct element type in the
71 * schema, with a single mandatory scalar member. */
73 GQueue
*repeated_opts
;
75 /* When parsing a list of repeating options as integers, values of the form
76 * "a-b", representing a closed interval, are allowed. Elements in the
77 * range are generated individually.
82 } range_next
, range_limit
;
84 /* If "opts_root->id" is set, reinstantiate it as a fake QemuOpt for
85 * uniformity. Only its "name" and "str" fields are set. "fake_id_opt" does
86 * not survive or escape the OptsVisitor object.
93 destroy_list(gpointer list
)
100 opts_visitor_insert(GHashTable
*unprocessed_opts
, const QemuOpt
*opt
)
104 list
= g_hash_table_lookup(unprocessed_opts
, opt
->name
);
106 list
= g_queue_new();
108 /* GHashTable will never try to free the keys -- we supply NULL as
109 * "key_destroy_func" in opts_start_struct(). Thus cast away key
110 * const-ness in order to suppress gcc's warning.
112 g_hash_table_insert(unprocessed_opts
, (gpointer
)opt
->name
, list
);
115 /* Similarly, destroy_list() doesn't call g_queue_free_full(). */
116 g_queue_push_tail(list
, (gpointer
)opt
);
121 opts_start_struct(Visitor
*v
, void **obj
, const char *kind
,
122 const char *name
, size_t size
, Error
**errp
)
124 OptsVisitor
*ov
= DO_UPCAST(OptsVisitor
, visitor
, v
);
128 *obj
= g_malloc0(size
> 0 ? size
: 1);
130 if (ov
->depth
++ > 0) {
134 ov
->unprocessed_opts
= g_hash_table_new_full(&g_str_hash
, &g_str_equal
,
135 NULL
, &destroy_list
);
136 QTAILQ_FOREACH(opt
, &ov
->opts_root
->head
, next
) {
137 /* ensured by qemu-option.c::opts_do_parse() */
138 assert(strcmp(opt
->name
, "id") != 0);
140 opts_visitor_insert(ov
->unprocessed_opts
, opt
);
143 if (ov
->opts_root
->id
!= NULL
) {
144 ov
->fake_id_opt
= g_malloc0(sizeof *ov
->fake_id_opt
);
146 ov
->fake_id_opt
->name
= "id";
147 ov
->fake_id_opt
->str
= ov
->opts_root
->id
;
148 opts_visitor_insert(ov
->unprocessed_opts
, ov
->fake_id_opt
);
154 ghr_true(gpointer ign_key
, gpointer ign_value
, gpointer ign_user_data
)
161 opts_end_struct(Visitor
*v
, Error
**errp
)
163 OptsVisitor
*ov
= DO_UPCAST(OptsVisitor
, visitor
, v
);
166 if (--ov
->depth
> 0) {
170 /* we should have processed all (distinct) QemuOpt instances */
171 any
= g_hash_table_find(ov
->unprocessed_opts
, &ghr_true
, NULL
);
173 const QemuOpt
*first
;
175 first
= g_queue_peek_head(any
);
176 error_set(errp
, QERR_INVALID_PARAMETER
, first
->name
);
178 g_hash_table_destroy(ov
->unprocessed_opts
);
179 ov
->unprocessed_opts
= NULL
;
180 g_free(ov
->fake_id_opt
);
181 ov
->fake_id_opt
= NULL
;
186 lookup_distinct(const OptsVisitor
*ov
, const char *name
, Error
**errp
)
190 list
= g_hash_table_lookup(ov
->unprocessed_opts
, name
);
192 error_set(errp
, QERR_MISSING_PARAMETER
, name
);
199 opts_start_list(Visitor
*v
, const char *name
, Error
**errp
)
201 OptsVisitor
*ov
= DO_UPCAST(OptsVisitor
, visitor
, v
);
203 /* we can't traverse a list in a list */
204 assert(ov
->list_mode
== LM_NONE
);
205 ov
->repeated_opts
= lookup_distinct(ov
, name
, errp
);
206 if (ov
->repeated_opts
!= NULL
) {
207 ov
->list_mode
= LM_STARTED
;
213 opts_next_list(Visitor
*v
, GenericList
**list
, Error
**errp
)
215 OptsVisitor
*ov
= DO_UPCAST(OptsVisitor
, visitor
, v
);
218 switch (ov
->list_mode
) {
220 ov
->list_mode
= LM_IN_PROGRESS
;
224 case LM_SIGNED_INTERVAL
:
225 case LM_UNSIGNED_INTERVAL
:
226 link
= &(*list
)->next
;
228 if (ov
->list_mode
== LM_SIGNED_INTERVAL
) {
229 if (ov
->range_next
.s
< ov
->range_limit
.s
) {
233 } else if (ov
->range_next
.u
< ov
->range_limit
.u
) {
237 ov
->list_mode
= LM_IN_PROGRESS
;
238 /* range has been completed, fall through in order to pop option */
240 case LM_IN_PROGRESS
: {
243 opt
= g_queue_pop_head(ov
->repeated_opts
);
244 if (g_queue_is_empty(ov
->repeated_opts
)) {
245 g_hash_table_remove(ov
->unprocessed_opts
, opt
->name
);
248 link
= &(*list
)->next
;
256 *link
= g_malloc0(sizeof **link
);
262 opts_end_list(Visitor
*v
, Error
**errp
)
264 OptsVisitor
*ov
= DO_UPCAST(OptsVisitor
, visitor
, v
);
266 assert(ov
->list_mode
== LM_STARTED
||
267 ov
->list_mode
== LM_IN_PROGRESS
||
268 ov
->list_mode
== LM_SIGNED_INTERVAL
||
269 ov
->list_mode
== LM_UNSIGNED_INTERVAL
);
270 ov
->repeated_opts
= NULL
;
271 ov
->list_mode
= LM_NONE
;
275 static const QemuOpt
*
276 lookup_scalar(const OptsVisitor
*ov
, const char *name
, Error
**errp
)
278 if (ov
->list_mode
== LM_NONE
) {
281 /* the last occurrence of any QemuOpt takes effect when queried by name
283 list
= lookup_distinct(ov
, name
, errp
);
284 return list
? g_queue_peek_tail(list
) : NULL
;
286 assert(ov
->list_mode
== LM_IN_PROGRESS
);
287 return g_queue_peek_head(ov
->repeated_opts
);
292 processed(OptsVisitor
*ov
, const char *name
)
294 if (ov
->list_mode
== LM_NONE
) {
295 g_hash_table_remove(ov
->unprocessed_opts
, name
);
298 assert(ov
->list_mode
== LM_IN_PROGRESS
);
304 opts_type_str(Visitor
*v
, char **obj
, const char *name
, Error
**errp
)
306 OptsVisitor
*ov
= DO_UPCAST(OptsVisitor
, visitor
, v
);
309 opt
= lookup_scalar(ov
, name
, errp
);
313 *obj
= g_strdup(opt
->str
? opt
->str
: "");
318 /* mimics qemu-option.c::parse_option_bool() */
320 opts_type_bool(Visitor
*v
, bool *obj
, const char *name
, Error
**errp
)
322 OptsVisitor
*ov
= DO_UPCAST(OptsVisitor
, visitor
, v
);
325 opt
= lookup_scalar(ov
, name
, errp
);
331 if (strcmp(opt
->str
, "on") == 0 ||
332 strcmp(opt
->str
, "yes") == 0 ||
333 strcmp(opt
->str
, "y") == 0) {
335 } else if (strcmp(opt
->str
, "off") == 0 ||
336 strcmp(opt
->str
, "no") == 0 ||
337 strcmp(opt
->str
, "n") == 0) {
340 error_set(errp
, QERR_INVALID_PARAMETER_VALUE
, opt
->name
,
341 "on|yes|y|off|no|n");
353 opts_type_int(Visitor
*v
, int64_t *obj
, const char *name
, Error
**errp
)
355 OptsVisitor
*ov
= DO_UPCAST(OptsVisitor
, visitor
, v
);
361 if (ov
->list_mode
== LM_SIGNED_INTERVAL
) {
362 *obj
= ov
->range_next
.s
;
366 opt
= lookup_scalar(ov
, name
, errp
);
370 str
= opt
->str
? opt
->str
: "";
372 /* we've gotten past lookup_scalar() */
373 assert(ov
->list_mode
== LM_NONE
|| ov
->list_mode
== LM_IN_PROGRESS
);
376 val
= strtoll(str
, &endptr
, 0);
377 if (errno
== 0 && endptr
> str
&& INT64_MIN
<= val
&& val
<= INT64_MAX
) {
378 if (*endptr
== '\0') {
383 if (*endptr
== '-' && ov
->list_mode
== LM_IN_PROGRESS
) {
387 val2
= strtoll(str
, &endptr
, 0);
388 if (errno
== 0 && endptr
> str
&& *endptr
== '\0' &&
389 INT64_MIN
<= val2
&& val2
<= INT64_MAX
&& val
<= val2
&&
390 (val
> INT64_MAX
- OPTS_VISITOR_RANGE_MAX
||
391 val2
< val
+ OPTS_VISITOR_RANGE_MAX
)) {
392 ov
->range_next
.s
= val
;
393 ov
->range_limit
.s
= val2
;
394 ov
->list_mode
= LM_SIGNED_INTERVAL
;
396 /* as if entering on the top */
397 *obj
= ov
->range_next
.s
;
402 error_set(errp
, QERR_INVALID_PARAMETER_VALUE
, opt
->name
,
403 (ov
->list_mode
== LM_NONE
) ? "an int64 value" :
404 "an int64 value or range");
409 opts_type_uint64(Visitor
*v
, uint64_t *obj
, const char *name
, Error
**errp
)
411 OptsVisitor
*ov
= DO_UPCAST(OptsVisitor
, visitor
, v
);
414 unsigned long long val
;
417 if (ov
->list_mode
== LM_UNSIGNED_INTERVAL
) {
418 *obj
= ov
->range_next
.u
;
422 opt
= lookup_scalar(ov
, name
, errp
);
428 /* we've gotten past lookup_scalar() */
429 assert(ov
->list_mode
== LM_NONE
|| ov
->list_mode
== LM_IN_PROGRESS
);
431 if (parse_uint(str
, &val
, &endptr
, 0) == 0 && val
<= UINT64_MAX
) {
432 if (*endptr
== '\0') {
437 if (*endptr
== '-' && ov
->list_mode
== LM_IN_PROGRESS
) {
438 unsigned long long val2
;
441 if (parse_uint_full(str
, &val2
, 0) == 0 &&
442 val2
<= UINT64_MAX
&& val
<= val2
&&
443 val2
- val
< OPTS_VISITOR_RANGE_MAX
) {
444 ov
->range_next
.u
= val
;
445 ov
->range_limit
.u
= val2
;
446 ov
->list_mode
= LM_UNSIGNED_INTERVAL
;
448 /* as if entering on the top */
449 *obj
= ov
->range_next
.u
;
454 error_set(errp
, QERR_INVALID_PARAMETER_VALUE
, opt
->name
,
455 (ov
->list_mode
== LM_NONE
) ? "a uint64 value" :
456 "a uint64 value or range");
461 opts_type_size(Visitor
*v
, uint64_t *obj
, const char *name
, Error
**errp
)
463 OptsVisitor
*ov
= DO_UPCAST(OptsVisitor
, visitor
, v
);
468 opt
= lookup_scalar(ov
, name
, errp
);
473 val
= strtosz_suffix(opt
->str
? opt
->str
: "", &endptr
,
474 STRTOSZ_DEFSUFFIX_B
);
475 if (val
!= -1 && *endptr
== '\0') {
480 error_set(errp
, QERR_INVALID_PARAMETER_VALUE
, opt
->name
,
481 "a size value representible as a non-negative int64");
486 opts_start_optional(Visitor
*v
, bool *present
, const char *name
,
489 OptsVisitor
*ov
= DO_UPCAST(OptsVisitor
, visitor
, v
);
491 /* we only support a single mandatory scalar field in a list node */
492 assert(ov
->list_mode
== LM_NONE
);
493 *present
= (lookup_distinct(ov
, name
, NULL
) != NULL
);
498 opts_visitor_new(const QemuOpts
*opts
)
502 ov
= g_malloc0(sizeof *ov
);
504 ov
->visitor
.start_struct
= &opts_start_struct
;
505 ov
->visitor
.end_struct
= &opts_end_struct
;
507 ov
->visitor
.start_list
= &opts_start_list
;
508 ov
->visitor
.next_list
= &opts_next_list
;
509 ov
->visitor
.end_list
= &opts_end_list
;
511 /* input_type_enum() covers both "normal" enums and union discriminators.
512 * The union discriminator field is always generated as "type"; it should
513 * match the "type" QemuOpt child of any QemuOpts.
515 * input_type_enum() will remove the looked-up key from the
516 * "unprocessed_opts" hash even if the lookup fails, because the removal is
517 * done earlier in opts_type_str(). This should be harmless.
519 ov
->visitor
.type_enum
= &input_type_enum
;
521 ov
->visitor
.type_int
= &opts_type_int
;
522 ov
->visitor
.type_uint64
= &opts_type_uint64
;
523 ov
->visitor
.type_size
= &opts_type_size
;
524 ov
->visitor
.type_bool
= &opts_type_bool
;
525 ov
->visitor
.type_str
= &opts_type_str
;
527 /* type_number() is not filled in, but this is not the first visitor to
528 * skip some mandatory methods... */
530 ov
->visitor
.start_optional
= &opts_start_optional
;
532 ov
->opts_root
= opts
;
539 opts_visitor_cleanup(OptsVisitor
*ov
)
541 if (ov
->unprocessed_opts
!= NULL
) {
542 g_hash_table_destroy(ov
->unprocessed_opts
);
544 g_free(ov
->fake_id_opt
);
550 opts_get_visitor(OptsVisitor
*ov
)