4 * Copyright Red Hat, Inc. 2012
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"
25 /* Ownership remains with opts_visitor_new()'s caller. */
26 const QemuOpts *opts_root;
30 /* Non-null iff depth is positive. Each key is a QemuOpt name. Each value
31 * is a non-empty GQueue, enumerating all QemuOpt occurrences with that
33 GHashTable *unprocessed_opts;
35 /* The list currently being traversed with opts_start_list() /
36 * opts_next_list(). The list must have a struct element type in the
37 * schema, with a single mandatory scalar member. */
38 GQueue *repeated_opts;
39 bool repeated_opts_first;
41 /* If "opts_root->id" is set, reinstantiate it as a fake QemuOpt for
42 * uniformity. Only its "name" and "str" fields are set. "fake_id_opt" does
43 * not survive or escape the OptsVisitor object.
50 destroy_list(gpointer list)
57 opts_visitor_insert(GHashTable *unprocessed_opts, const QemuOpt *opt)
61 list = g_hash_table_lookup(unprocessed_opts, opt->name);
65 /* GHashTable will never try to free the keys -- we supply NULL as
66 * "key_destroy_func" in opts_start_struct(). Thus cast away key
67 * const-ness in order to suppress gcc's warning.
69 g_hash_table_insert(unprocessed_opts, (gpointer)opt->name, list);
72 /* Similarly, destroy_list() doesn't call g_queue_free_full(). */
73 g_queue_push_tail(list, (gpointer)opt);
78 opts_start_struct(Visitor *v, void **obj, const char *kind,
79 const char *name, size_t size, Error **errp)
81 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
84 *obj = g_malloc0(size > 0 ? size : 1);
85 if (ov->depth++ > 0) {
89 ov->unprocessed_opts = g_hash_table_new_full(&g_str_hash, &g_str_equal,
91 QTAILQ_FOREACH(opt, &ov->opts_root->head, next) {
92 /* ensured by qemu-option.c::opts_do_parse() */
93 assert(strcmp(opt->name, "id") != 0);
95 opts_visitor_insert(ov->unprocessed_opts, opt);
98 if (ov->opts_root->id != NULL) {
99 ov->fake_id_opt = g_malloc0(sizeof *ov->fake_id_opt);
101 ov->fake_id_opt->name = "id";
102 ov->fake_id_opt->str = ov->opts_root->id;
103 opts_visitor_insert(ov->unprocessed_opts, ov->fake_id_opt);
109 ghr_true(gpointer ign_key, gpointer ign_value, gpointer ign_user_data)
116 opts_end_struct(Visitor *v, Error **errp)
118 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
121 if (--ov->depth > 0) {
125 /* we should have processed all (distinct) QemuOpt instances */
126 any = g_hash_table_find(ov->unprocessed_opts, &ghr_true, NULL);
128 const QemuOpt *first;
130 first = g_queue_peek_head(any);
131 error_set(errp, QERR_INVALID_PARAMETER, first->name);
133 g_hash_table_destroy(ov->unprocessed_opts);
134 ov->unprocessed_opts = NULL;
135 g_free(ov->fake_id_opt);
136 ov->fake_id_opt = NULL;
141 lookup_distinct(const OptsVisitor *ov, const char *name, Error **errp)
145 list = g_hash_table_lookup(ov->unprocessed_opts, name);
147 error_set(errp, QERR_MISSING_PARAMETER, name);
154 opts_start_list(Visitor *v, const char *name, Error **errp)
156 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
158 /* we can't traverse a list in a list */
159 assert(ov->repeated_opts == NULL);
160 ov->repeated_opts = lookup_distinct(ov, name, errp);
161 ov->repeated_opts_first = (ov->repeated_opts != NULL);
166 opts_next_list(Visitor *v, GenericList **list, Error **errp)
168 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
171 if (ov->repeated_opts_first) {
172 ov->repeated_opts_first = false;
177 opt = g_queue_pop_head(ov->repeated_opts);
178 if (g_queue_is_empty(ov->repeated_opts)) {
179 g_hash_table_remove(ov->unprocessed_opts, opt->name);
182 link = &(*list)->next;
185 *link = g_malloc0(sizeof **link);
191 opts_end_list(Visitor *v, Error **errp)
193 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
195 ov->repeated_opts = NULL;
199 static const QemuOpt *
200 lookup_scalar(const OptsVisitor *ov, const char *name, Error **errp)
202 if (ov->repeated_opts == NULL) {
205 /* the last occurrence of any QemuOpt takes effect when queried by name
207 list = lookup_distinct(ov, name, errp);
208 return list ? g_queue_peek_tail(list) : NULL;
210 return g_queue_peek_head(ov->repeated_opts);
215 processed(OptsVisitor *ov, const char *name)
217 if (ov->repeated_opts == NULL) {
218 g_hash_table_remove(ov->unprocessed_opts, name);
224 opts_type_str(Visitor *v, char **obj, const char *name, Error **errp)
226 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
229 opt = lookup_scalar(ov, name, errp);
233 *obj = g_strdup(opt->str ? opt->str : "");
238 /* mimics qemu-option.c::parse_option_bool() */
240 opts_type_bool(Visitor *v, bool *obj, const char *name, Error **errp)
242 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
245 opt = lookup_scalar(ov, name, errp);
251 if (strcmp(opt->str, "on") == 0 ||
252 strcmp(opt->str, "yes") == 0 ||
253 strcmp(opt->str, "y") == 0) {
255 } else if (strcmp(opt->str, "off") == 0 ||
256 strcmp(opt->str, "no") == 0 ||
257 strcmp(opt->str, "n") == 0) {
260 error_set(errp, QERR_INVALID_PARAMETER_VALUE, opt->name,
261 "on|yes|y|off|no|n");
273 opts_type_int(Visitor *v, int64_t *obj, const char *name, Error **errp)
275 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
281 opt = lookup_scalar(ov, name, errp);
285 str = opt->str ? opt->str : "";
288 val = strtoll(str, &endptr, 0);
289 if (*str != '\0' && *endptr == '\0' && errno == 0 && INT64_MIN <= val &&
295 error_set(errp, QERR_INVALID_PARAMETER_VALUE, opt->name, "an int64 value");
300 opts_type_uint64(Visitor *v, uint64_t *obj, const char *name, Error **errp)
302 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
306 opt = lookup_scalar(ov, name, errp);
313 while (isspace((unsigned char)*str)) {
317 if (*str != '-' && *str != '\0') {
318 unsigned long long val;
321 /* non-empty, non-negative subject sequence */
323 val = strtoull(str, &endptr, 0);
324 if (*endptr == '\0' && errno == 0 && val <= UINT64_MAX) {
331 error_set(errp, QERR_INVALID_PARAMETER_VALUE, opt->name,
337 opts_type_size(Visitor *v, uint64_t *obj, const char *name, Error **errp)
339 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
344 opt = lookup_scalar(ov, name, errp);
349 val = strtosz_suffix(opt->str ? opt->str : "", &endptr,
350 STRTOSZ_DEFSUFFIX_B);
351 if (val != -1 && *endptr == '\0') {
356 error_set(errp, QERR_INVALID_PARAMETER_VALUE, opt->name,
357 "a size value representible as a non-negative int64");
362 opts_start_optional(Visitor *v, bool *present, const char *name,
365 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
367 /* we only support a single mandatory scalar field in a list node */
368 assert(ov->repeated_opts == NULL);
369 *present = (lookup_distinct(ov, name, NULL) != NULL);
374 opts_visitor_new(const QemuOpts *opts)
378 ov = g_malloc0(sizeof *ov);
380 ov->visitor.start_struct = &opts_start_struct;
381 ov->visitor.end_struct = &opts_end_struct;
383 ov->visitor.start_list = &opts_start_list;
384 ov->visitor.next_list = &opts_next_list;
385 ov->visitor.end_list = &opts_end_list;
387 /* input_type_enum() covers both "normal" enums and union discriminators.
388 * The union discriminator field is always generated as "type"; it should
389 * match the "type" QemuOpt child of any QemuOpts.
391 * input_type_enum() will remove the looked-up key from the
392 * "unprocessed_opts" hash even if the lookup fails, because the removal is
393 * done earlier in opts_type_str(). This should be harmless.
395 ov->visitor.type_enum = &input_type_enum;
397 ov->visitor.type_int = &opts_type_int;
398 ov->visitor.type_uint64 = &opts_type_uint64;
399 ov->visitor.type_size = &opts_type_size;
400 ov->visitor.type_bool = &opts_type_bool;
401 ov->visitor.type_str = &opts_type_str;
403 /* type_number() is not filled in, but this is not the first visitor to
404 * skip some mandatory methods... */
406 ov->visitor.start_optional = &opts_start_optional;
408 ov->opts_root = opts;
415 opts_visitor_cleanup(OptsVisitor *ov)
417 if (ov->unprocessed_opts != NULL) {
418 g_hash_table_destroy(ov->unprocessed_opts);
420 g_free(ov->fake_id_opt);
426 opts_get_visitor(OptsVisitor *ov)