4 * Copyright Red Hat, Inc. 2012
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 "opts-visitor.h"
14 #include "qemu-queue.h"
15 #include "qemu-option-internal.h"
16 #include "qapi-visit-impl.h"
23 /* Ownership remains with opts_visitor_new()'s caller. */
24 const QemuOpts *opts_root;
28 /* Non-null iff depth is positive. Each key is a QemuOpt name. Each value
29 * is a non-empty GQueue, enumerating all QemuOpt occurrences with that
31 GHashTable *unprocessed_opts;
33 /* The list currently being traversed with opts_start_list() /
34 * opts_next_list(). The list must have a struct element type in the
35 * schema, with a single mandatory scalar member. */
36 GQueue *repeated_opts;
37 bool repeated_opts_first;
39 /* If "opts_root->id" is set, reinstantiate it as a fake QemuOpt for
40 * uniformity. Only its "name" and "str" fields are set. "fake_id_opt" does
41 * not survive or escape the OptsVisitor object.
48 destroy_list(gpointer list)
55 opts_visitor_insert(GHashTable *unprocessed_opts, const QemuOpt *opt)
59 list = g_hash_table_lookup(unprocessed_opts, opt->name);
63 /* GHashTable will never try to free the keys -- we supply NULL as
64 * "key_destroy_func" in opts_start_struct(). Thus cast away key
65 * const-ness in order to suppress gcc's warning.
67 g_hash_table_insert(unprocessed_opts, (gpointer)opt->name, list);
70 /* Similarly, destroy_list() doesn't call g_queue_free_full(). */
71 g_queue_push_tail(list, (gpointer)opt);
76 opts_start_struct(Visitor *v, void **obj, const char *kind,
77 const char *name, size_t size, Error **errp)
79 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
82 *obj = g_malloc0(size > 0 ? size : 1);
83 if (ov->depth++ > 0) {
87 ov->unprocessed_opts = g_hash_table_new_full(&g_str_hash, &g_str_equal,
89 QTAILQ_FOREACH(opt, &ov->opts_root->head, next) {
90 /* ensured by qemu-option.c::opts_do_parse() */
91 assert(strcmp(opt->name, "id") != 0);
93 opts_visitor_insert(ov->unprocessed_opts, opt);
96 if (ov->opts_root->id != NULL) {
97 ov->fake_id_opt = g_malloc0(sizeof *ov->fake_id_opt);
99 ov->fake_id_opt->name = "id";
100 ov->fake_id_opt->str = ov->opts_root->id;
101 opts_visitor_insert(ov->unprocessed_opts, ov->fake_id_opt);
107 ghr_true(gpointer ign_key, gpointer ign_value, gpointer ign_user_data)
114 opts_end_struct(Visitor *v, Error **errp)
116 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
119 if (--ov->depth > 0) {
123 /* we should have processed all (distinct) QemuOpt instances */
124 any = g_hash_table_find(ov->unprocessed_opts, &ghr_true, NULL);
126 const QemuOpt *first;
128 first = g_queue_peek_head(any);
129 error_set(errp, QERR_INVALID_PARAMETER, first->name);
131 g_hash_table_destroy(ov->unprocessed_opts);
132 ov->unprocessed_opts = NULL;
133 g_free(ov->fake_id_opt);
134 ov->fake_id_opt = NULL;
139 lookup_distinct(const OptsVisitor *ov, const char *name, Error **errp)
143 list = g_hash_table_lookup(ov->unprocessed_opts, name);
145 error_set(errp, QERR_MISSING_PARAMETER, name);
152 opts_start_list(Visitor *v, const char *name, Error **errp)
154 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
156 /* we can't traverse a list in a list */
157 assert(ov->repeated_opts == NULL);
158 ov->repeated_opts = lookup_distinct(ov, name, errp);
159 ov->repeated_opts_first = (ov->repeated_opts != NULL);
164 opts_next_list(Visitor *v, GenericList **list, Error **errp)
166 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
169 if (ov->repeated_opts_first) {
170 ov->repeated_opts_first = false;
175 opt = g_queue_pop_head(ov->repeated_opts);
176 if (g_queue_is_empty(ov->repeated_opts)) {
177 g_hash_table_remove(ov->unprocessed_opts, opt->name);
180 link = &(*list)->next;
183 *link = g_malloc0(sizeof **link);
189 opts_end_list(Visitor *v, Error **errp)
191 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
193 ov->repeated_opts = NULL;
197 static const QemuOpt *
198 lookup_scalar(const OptsVisitor *ov, const char *name, Error **errp)
200 if (ov->repeated_opts == NULL) {
203 /* the last occurrence of any QemuOpt takes effect when queried by name
205 list = lookup_distinct(ov, name, errp);
206 return list ? g_queue_peek_tail(list) : NULL;
208 return g_queue_peek_head(ov->repeated_opts);
213 processed(OptsVisitor *ov, const char *name)
215 if (ov->repeated_opts == NULL) {
216 g_hash_table_remove(ov->unprocessed_opts, name);
222 opts_type_str(Visitor *v, char **obj, const char *name, Error **errp)
224 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
227 opt = lookup_scalar(ov, name, errp);
231 *obj = g_strdup(opt->str ? opt->str : "");
236 /* mimics qemu-option.c::parse_option_bool() */
238 opts_type_bool(Visitor *v, bool *obj, const char *name, Error **errp)
240 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
243 opt = lookup_scalar(ov, name, errp);
249 if (strcmp(opt->str, "on") == 0 ||
250 strcmp(opt->str, "yes") == 0 ||
251 strcmp(opt->str, "y") == 0) {
253 } else if (strcmp(opt->str, "off") == 0 ||
254 strcmp(opt->str, "no") == 0 ||
255 strcmp(opt->str, "n") == 0) {
258 error_set(errp, QERR_INVALID_PARAMETER_VALUE, opt->name,
259 "on|yes|y|off|no|n");
271 opts_type_int(Visitor *v, int64_t *obj, const char *name, Error **errp)
273 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
279 opt = lookup_scalar(ov, name, errp);
283 str = opt->str ? opt->str : "";
286 val = strtoll(str, &endptr, 0);
287 if (*str != '\0' && *endptr == '\0' && errno == 0 && INT64_MIN <= val &&
293 error_set(errp, QERR_INVALID_PARAMETER_VALUE, opt->name, "an int64 value");
298 opts_type_uint64(Visitor *v, uint64_t *obj, const char *name, Error **errp)
300 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
304 opt = lookup_scalar(ov, name, errp);
311 while (isspace((unsigned char)*str)) {
315 if (*str != '-' && *str != '\0') {
316 unsigned long long val;
319 /* non-empty, non-negative subject sequence */
321 val = strtoull(str, &endptr, 0);
322 if (*endptr == '\0' && errno == 0 && val <= UINT64_MAX) {
329 error_set(errp, QERR_INVALID_PARAMETER_VALUE, opt->name,
335 opts_type_size(Visitor *v, uint64_t *obj, const char *name, Error **errp)
337 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
342 opt = lookup_scalar(ov, name, errp);
347 val = strtosz_suffix(opt->str ? opt->str : "", &endptr,
348 STRTOSZ_DEFSUFFIX_B);
349 if (val != -1 && *endptr == '\0') {
354 error_set(errp, QERR_INVALID_PARAMETER_VALUE, opt->name,
355 "a size value representible as a non-negative int64");
360 opts_start_optional(Visitor *v, bool *present, const char *name,
363 OptsVisitor *ov = DO_UPCAST(OptsVisitor, visitor, v);
365 /* we only support a single mandatory scalar field in a list node */
366 assert(ov->repeated_opts == NULL);
367 *present = (lookup_distinct(ov, name, NULL) != NULL);
372 opts_visitor_new(const QemuOpts *opts)
376 ov = g_malloc0(sizeof *ov);
378 ov->visitor.start_struct = &opts_start_struct;
379 ov->visitor.end_struct = &opts_end_struct;
381 ov->visitor.start_list = &opts_start_list;
382 ov->visitor.next_list = &opts_next_list;
383 ov->visitor.end_list = &opts_end_list;
385 /* input_type_enum() covers both "normal" enums and union discriminators.
386 * The union discriminator field is always generated as "type"; it should
387 * match the "type" QemuOpt child of any QemuOpts.
389 * input_type_enum() will remove the looked-up key from the
390 * "unprocessed_opts" hash even if the lookup fails, because the removal is
391 * done earlier in opts_type_str(). This should be harmless.
393 ov->visitor.type_enum = &input_type_enum;
395 ov->visitor.type_int = &opts_type_int;
396 ov->visitor.type_uint64 = &opts_type_uint64;
397 ov->visitor.type_size = &opts_type_size;
398 ov->visitor.type_bool = &opts_type_bool;
399 ov->visitor.type_str = &opts_type_str;
401 /* type_number() is not filled in, but this is not the first visitor to
402 * skip some mandatory methods... */
404 ov->visitor.start_optional = &opts_start_optional;
406 ov->opts_root = opts;
413 opts_visitor_cleanup(OptsVisitor *ov)
415 if (ov->unprocessed_opts != NULL) {
416 g_hash_table_destroy(ov->unprocessed_opts);
418 g_free(ov->fake_id_opt);
424 opts_get_visitor(OptsVisitor *ov)