qdict: Make qdict_flatten() shallow-clone-friendly
[qemu.git] / qobject / block-qdict.c
blob36129e73798b11653719d21d9a1cc4dc3202e729
1 /*
2 * Special QDict functions used by the block layer
4 * Copyright (c) 2013-2018 Red Hat, Inc.
6 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
7 * See the COPYING.LIB file in the top-level directory.
8 */
10 #include "qemu/osdep.h"
11 #include "block/qdict.h"
12 #include "qapi/qmp/qbool.h"
13 #include "qapi/qmp/qlist.h"
14 #include "qapi/qmp/qnum.h"
15 #include "qapi/qmp/qstring.h"
16 #include "qapi/qobject-input-visitor.h"
17 #include "qemu/cutils.h"
18 #include "qapi/error.h"
20 /**
21 * qdict_copy_default(): If no entry mapped by 'key' exists in 'dst' yet, the
22 * value of 'key' in 'src' is copied there (and the refcount increased
23 * accordingly).
25 void qdict_copy_default(QDict *dst, QDict *src, const char *key)
27 QObject *val;
29 if (qdict_haskey(dst, key)) {
30 return;
33 val = qdict_get(src, key);
34 if (val) {
35 qdict_put_obj(dst, key, qobject_ref(val));
39 /**
40 * qdict_set_default_str(): If no entry mapped by 'key' exists in 'dst' yet, a
41 * new QString initialised by 'val' is put there.
43 void qdict_set_default_str(QDict *dst, const char *key, const char *val)
45 if (qdict_haskey(dst, key)) {
46 return;
49 qdict_put_str(dst, key, val);
52 static void qdict_flatten_qdict(QDict *qdict, QDict *target,
53 const char *prefix);
55 static void qdict_flatten_qlist(QList *qlist, QDict *target, const char *prefix)
57 QObject *value;
58 const QListEntry *entry;
59 QDict *dict_val;
60 QList *list_val;
61 char *new_key;
62 int i;
64 /* This function is never called with prefix == NULL, i.e., it is always
65 * called from within qdict_flatten_q(list|dict)(). Therefore, it does not
66 * need to remove list entries during the iteration (the whole list will be
67 * deleted eventually anyway from qdict_flatten_qdict()). */
68 assert(prefix);
70 entry = qlist_first(qlist);
72 for (i = 0; entry; entry = qlist_next(entry), i++) {
73 value = qlist_entry_obj(entry);
74 dict_val = qobject_to(QDict, value);
75 list_val = qobject_to(QList, value);
76 new_key = g_strdup_printf("%s.%i", prefix, i);
79 * Flatten non-empty QDict and QList recursively into @target,
80 * copy other objects to @target
82 if (dict_val && qdict_size(dict_val)) {
83 qdict_flatten_qdict(dict_val, target, new_key);
84 } else if (list_val && !qlist_empty(list_val)) {
85 qdict_flatten_qlist(list_val, target, new_key);
86 } else {
87 qdict_put_obj(target, new_key, qobject_ref(value));
90 g_free(new_key);
94 static void qdict_flatten_qdict(QDict *qdict, QDict *target, const char *prefix)
96 QObject *value;
97 const QDictEntry *entry, *next;
98 QDict *dict_val;
99 QList *list_val;
100 char *new_key;
102 entry = qdict_first(qdict);
104 while (entry != NULL) {
105 next = qdict_next(qdict, entry);
106 value = qdict_entry_value(entry);
107 dict_val = qobject_to(QDict, value);
108 list_val = qobject_to(QList, value);
109 new_key = NULL;
111 if (prefix) {
112 new_key = g_strdup_printf("%s.%s", prefix, entry->key);
116 * Flatten non-empty QDict and QList recursively into @target,
117 * copy other objects to @target.
118 * On the root level (if @qdict == @target), remove flattened
119 * nested QDicts and QLists from @qdict.
121 * (Note that we do not need to remove entries from nested
122 * dicts or lists. Their reference count is decremented on
123 * the root level, so there are no leaks. In fact, if they
124 * have a reference count greater than one, we are probably
125 * well advised not to modify them altogether.)
127 if (dict_val && qdict_size(dict_val)) {
128 qdict_flatten_qdict(dict_val, target,
129 new_key ? new_key : entry->key);
130 if (target == qdict) {
131 qdict_del(qdict, entry->key);
133 } else if (list_val && !qlist_empty(list_val)) {
134 qdict_flatten_qlist(list_val, target,
135 new_key ? new_key : entry->key);
136 if (target == qdict) {
137 qdict_del(qdict, entry->key);
139 } else if (target != qdict) {
140 qdict_put_obj(target, new_key, qobject_ref(value));
143 g_free(new_key);
144 entry = next;
149 * qdict_flatten(): For each nested non-empty QDict with key x, all
150 * fields with key y are moved to this QDict and their key is renamed
151 * to "x.y". For each nested non-empty QList with key x, the field at
152 * index y is moved to this QDict with the key "x.y" (i.e., the
153 * reverse of what qdict_array_split() does).
154 * This operation is applied recursively for nested QDicts and QLists.
156 void qdict_flatten(QDict *qdict)
158 qdict_flatten_qdict(qdict, qdict, NULL);
161 /* extract all the src QDict entries starting by start into dst */
162 void qdict_extract_subqdict(QDict *src, QDict **dst, const char *start)
165 const QDictEntry *entry, *next;
166 const char *p;
168 *dst = qdict_new();
169 entry = qdict_first(src);
171 while (entry != NULL) {
172 next = qdict_next(src, entry);
173 if (strstart(entry->key, start, &p)) {
174 qdict_put_obj(*dst, p, qobject_ref(entry->value));
175 qdict_del(src, entry->key);
177 entry = next;
181 static int qdict_count_prefixed_entries(const QDict *src, const char *start)
183 const QDictEntry *entry;
184 int count = 0;
186 for (entry = qdict_first(src); entry; entry = qdict_next(src, entry)) {
187 if (strstart(entry->key, start, NULL)) {
188 if (count == INT_MAX) {
189 return -ERANGE;
191 count++;
195 return count;
199 * qdict_array_split(): This function moves array-like elements of a QDict into
200 * a new QList. Every entry in the original QDict with a key "%u" or one
201 * prefixed "%u.", where %u designates an unsigned integer starting at 0 and
202 * incrementally counting up, will be moved to a new QDict at index %u in the
203 * output QList with the key prefix removed, if that prefix is "%u.". If the
204 * whole key is just "%u", the whole QObject will be moved unchanged without
205 * creating a new QDict. The function terminates when there is no entry in the
206 * QDict with a prefix directly (incrementally) following the last one; it also
207 * returns if there are both entries with "%u" and "%u." for the same index %u.
208 * Example: {"0.a": 42, "0.b": 23, "1.x": 0, "4.y": 1, "o.o": 7, "2": 66}
209 * (or {"1.x": 0, "4.y": 1, "0.a": 42, "o.o": 7, "0.b": 23, "2": 66})
210 * => [{"a": 42, "b": 23}, {"x": 0}, 66]
211 * and {"4.y": 1, "o.o": 7} (remainder of the old QDict)
213 void qdict_array_split(QDict *src, QList **dst)
215 unsigned i;
217 *dst = qlist_new();
219 for (i = 0; i < UINT_MAX; i++) {
220 QObject *subqobj;
221 bool is_subqdict;
222 QDict *subqdict;
223 char indexstr[32], prefix[32];
224 size_t snprintf_ret;
226 snprintf_ret = snprintf(indexstr, 32, "%u", i);
227 assert(snprintf_ret < 32);
229 subqobj = qdict_get(src, indexstr);
231 snprintf_ret = snprintf(prefix, 32, "%u.", i);
232 assert(snprintf_ret < 32);
234 /* Overflow is the same as positive non-zero results */
235 is_subqdict = qdict_count_prefixed_entries(src, prefix);
238 * There may be either a single subordinate object (named
239 * "%u") or multiple objects (each with a key prefixed "%u."),
240 * but not both.
242 if (!subqobj == !is_subqdict) {
243 break;
246 if (is_subqdict) {
247 qdict_extract_subqdict(src, &subqdict, prefix);
248 assert(qdict_size(subqdict) > 0);
249 } else {
250 qobject_ref(subqobj);
251 qdict_del(src, indexstr);
254 qlist_append_obj(*dst, subqobj ?: QOBJECT(subqdict));
259 * qdict_split_flat_key:
260 * @key: the key string to split
261 * @prefix: non-NULL pointer to hold extracted prefix
262 * @suffix: non-NULL pointer to remaining suffix
264 * Given a flattened key such as 'foo.0.bar', split it into two parts
265 * at the first '.' separator. Allows double dot ('..') to escape the
266 * normal separator.
268 * e.g.
269 * 'foo.0.bar' -> prefix='foo' and suffix='0.bar'
270 * 'foo..0.bar' -> prefix='foo.0' and suffix='bar'
272 * The '..' sequence will be unescaped in the returned 'prefix'
273 * string. The 'suffix' string will be left in escaped format, so it
274 * can be fed back into the qdict_split_flat_key() key as the input
275 * later.
277 * The caller is responsible for freeing the string returned in @prefix
278 * using g_free().
280 static void qdict_split_flat_key(const char *key, char **prefix,
281 const char **suffix)
283 const char *separator;
284 size_t i, j;
286 /* Find first '.' separator, but if there is a pair '..'
287 * that acts as an escape, so skip over '..' */
288 separator = NULL;
289 do {
290 if (separator) {
291 separator += 2;
292 } else {
293 separator = key;
295 separator = strchr(separator, '.');
296 } while (separator && separator[1] == '.');
298 if (separator) {
299 *prefix = g_strndup(key, separator - key);
300 *suffix = separator + 1;
301 } else {
302 *prefix = g_strdup(key);
303 *suffix = NULL;
306 /* Unescape the '..' sequence into '.' */
307 for (i = 0, j = 0; (*prefix)[i] != '\0'; i++, j++) {
308 if ((*prefix)[i] == '.') {
309 assert((*prefix)[i + 1] == '.');
310 i++;
312 (*prefix)[j] = (*prefix)[i];
314 (*prefix)[j] = '\0';
318 * qdict_is_list:
319 * @maybe_list: dict to check if keys represent list elements.
321 * Determine whether all keys in @maybe_list are valid list elements.
322 * If @maybe_list is non-zero in length and all the keys look like
323 * valid list indexes, this will return 1. If @maybe_list is zero
324 * length or all keys are non-numeric then it will return 0 to indicate
325 * it is a normal qdict. If there is a mix of numeric and non-numeric
326 * keys, or the list indexes are non-contiguous, an error is reported.
328 * Returns: 1 if a valid list, 0 if a dict, -1 on error
330 static int qdict_is_list(QDict *maybe_list, Error **errp)
332 const QDictEntry *ent;
333 ssize_t len = 0;
334 ssize_t max = -1;
335 int is_list = -1;
336 int64_t val;
338 for (ent = qdict_first(maybe_list); ent != NULL;
339 ent = qdict_next(maybe_list, ent)) {
340 int is_index = !qemu_strtoi64(ent->key, NULL, 10, &val);
342 if (is_list == -1) {
343 is_list = is_index;
346 if (is_index != is_list) {
347 error_setg(errp, "Cannot mix list and non-list keys");
348 return -1;
351 if (is_index) {
352 len++;
353 if (val > max) {
354 max = val;
359 if (is_list == -1) {
360 assert(!qdict_size(maybe_list));
361 is_list = 0;
364 /* NB this isn't a perfect check - e.g. it won't catch
365 * a list containing '1', '+1', '01', '3', but that
366 * does not matter - we've still proved that the
367 * input is a list. It is up the caller to do a
368 * stricter check if desired */
369 if (len != (max + 1)) {
370 error_setg(errp, "List indices are not contiguous, "
371 "saw %zd elements but %zd largest index",
372 len, max);
373 return -1;
376 return is_list;
380 * qdict_crumple:
381 * @src: the original flat dictionary (only scalar values) to crumple
383 * Takes a flat dictionary whose keys use '.' separator to indicate
384 * nesting, and values are scalars, empty dictionaries or empty lists,
385 * and crumples it into a nested structure.
387 * To include a literal '.' in a key name, it must be escaped as '..'
389 * For example, an input of:
391 * { 'foo.0.bar': 'one', 'foo.0.wizz': '1',
392 * 'foo.1.bar': 'two', 'foo.1.wizz': '2' }
394 * will result in an output of:
397 * 'foo': [
398 * { 'bar': 'one', 'wizz': '1' },
399 * { 'bar': 'two', 'wizz': '2' }
400 * ],
403 * The following scenarios in the input dict will result in an
404 * error being returned:
406 * - Any values in @src are non-scalar types
407 * - If keys in @src imply that a particular level is both a
408 * list and a dict. e.g., "foo.0.bar" and "foo.eek.bar".
409 * - If keys in @src imply that a particular level is a list,
410 * but the indices are non-contiguous. e.g. "foo.0.bar" and
411 * "foo.2.bar" without any "foo.1.bar" present.
412 * - If keys in @src represent list indexes, but are not in
413 * the "%zu" format. e.g. "foo.+0.bar"
415 * Returns: either a QDict or QList for the nested data structure, or NULL
416 * on error
418 QObject *qdict_crumple(const QDict *src, Error **errp)
420 const QDictEntry *ent;
421 QDict *two_level, *multi_level = NULL, *child_dict;
422 QDict *dict_val;
423 QList *list_val;
424 QObject *dst = NULL, *child;
425 size_t i;
426 char *prefix = NULL;
427 const char *suffix = NULL;
428 int is_list;
430 two_level = qdict_new();
432 /* Step 1: split our totally flat dict into a two level dict */
433 for (ent = qdict_first(src); ent != NULL; ent = qdict_next(src, ent)) {
434 dict_val = qobject_to(QDict, ent->value);
435 list_val = qobject_to(QList, ent->value);
436 if ((dict_val && qdict_size(dict_val))
437 || (list_val && !qlist_empty(list_val))) {
438 error_setg(errp, "Value %s is not flat", ent->key);
439 goto error;
442 qdict_split_flat_key(ent->key, &prefix, &suffix);
443 child = qdict_get(two_level, prefix);
444 child_dict = qobject_to(QDict, child);
446 if (child) {
448 * If @child_dict, then all previous keys with this prefix
449 * had a suffix. If @suffix, this one has one as well,
450 * and we're good, else there's a clash.
452 if (!child_dict || !suffix) {
453 error_setg(errp, "Cannot mix scalar and non-scalar keys");
454 goto error;
458 if (suffix) {
459 if (!child_dict) {
460 child_dict = qdict_new();
461 qdict_put(two_level, prefix, child_dict);
463 qdict_put_obj(child_dict, suffix, qobject_ref(ent->value));
464 } else {
465 qdict_put_obj(two_level, prefix, qobject_ref(ent->value));
468 g_free(prefix);
469 prefix = NULL;
472 /* Step 2: optionally process the two level dict recursively
473 * into a multi-level dict */
474 multi_level = qdict_new();
475 for (ent = qdict_first(two_level); ent != NULL;
476 ent = qdict_next(two_level, ent)) {
477 dict_val = qobject_to(QDict, ent->value);
478 if (dict_val && qdict_size(dict_val)) {
479 child = qdict_crumple(dict_val, errp);
480 if (!child) {
481 goto error;
484 qdict_put_obj(multi_level, ent->key, child);
485 } else {
486 qdict_put_obj(multi_level, ent->key, qobject_ref(ent->value));
489 qobject_unref(two_level);
490 two_level = NULL;
492 /* Step 3: detect if we need to turn our dict into list */
493 is_list = qdict_is_list(multi_level, errp);
494 if (is_list < 0) {
495 goto error;
498 if (is_list) {
499 dst = QOBJECT(qlist_new());
501 for (i = 0; i < qdict_size(multi_level); i++) {
502 char *key = g_strdup_printf("%zu", i);
504 child = qdict_get(multi_level, key);
505 g_free(key);
507 if (!child) {
508 error_setg(errp, "Missing list index %zu", i);
509 goto error;
512 qlist_append_obj(qobject_to(QList, dst), qobject_ref(child));
514 qobject_unref(multi_level);
515 multi_level = NULL;
516 } else {
517 dst = QOBJECT(multi_level);
520 return dst;
522 error:
523 g_free(prefix);
524 qobject_unref(multi_level);
525 qobject_unref(two_level);
526 qobject_unref(dst);
527 return NULL;
531 * qdict_crumple_for_keyval_qiv:
532 * @src: the flat dictionary (only scalar values) to crumple
533 * @errp: location to store error
535 * Like qdict_crumple(), but additionally transforms scalar values so
536 * the result can be passed to qobject_input_visitor_new_keyval().
538 * The block subsystem uses this function to prepare its flat QDict
539 * with possibly confused scalar types for a visit. It should not be
540 * used for anything else, and it should go away once the block
541 * subsystem has been cleaned up.
543 static QObject *qdict_crumple_for_keyval_qiv(QDict *src, Error **errp)
545 QDict *tmp = NULL;
546 char *buf;
547 const char *s;
548 const QDictEntry *ent;
549 QObject *dst;
551 for (ent = qdict_first(src); ent; ent = qdict_next(src, ent)) {
552 buf = NULL;
553 switch (qobject_type(ent->value)) {
554 case QTYPE_QNULL:
555 case QTYPE_QSTRING:
556 continue;
557 case QTYPE_QNUM:
558 s = buf = qnum_to_string(qobject_to(QNum, ent->value));
559 break;
560 case QTYPE_QDICT:
561 case QTYPE_QLIST:
562 /* @src isn't flat; qdict_crumple() will fail */
563 continue;
564 case QTYPE_QBOOL:
565 s = qbool_get_bool(qobject_to(QBool, ent->value))
566 ? "on" : "off";
567 break;
568 default:
569 abort();
572 if (!tmp) {
573 tmp = qdict_clone_shallow(src);
575 qdict_put(tmp, ent->key, qstring_from_str(s));
576 g_free(buf);
579 dst = qdict_crumple(tmp ?: src, errp);
580 qobject_unref(tmp);
581 return dst;
585 * qdict_array_entries(): Returns the number of direct array entries if the
586 * sub-QDict of src specified by the prefix in subqdict (or src itself for
587 * prefix == "") is valid as an array, i.e. the length of the created list if
588 * the sub-QDict would become empty after calling qdict_array_split() on it. If
589 * the array is not valid, -EINVAL is returned.
591 int qdict_array_entries(QDict *src, const char *subqdict)
593 const QDictEntry *entry;
594 unsigned i;
595 unsigned entries = 0;
596 size_t subqdict_len = strlen(subqdict);
598 assert(!subqdict_len || subqdict[subqdict_len - 1] == '.');
600 /* qdict_array_split() loops until UINT_MAX, but as we want to return
601 * negative errors, we only have a signed return value here. Any additional
602 * entries will lead to -EINVAL. */
603 for (i = 0; i < INT_MAX; i++) {
604 QObject *subqobj;
605 int subqdict_entries;
606 char *prefix = g_strdup_printf("%s%u.", subqdict, i);
608 subqdict_entries = qdict_count_prefixed_entries(src, prefix);
610 /* Remove ending "." */
611 prefix[strlen(prefix) - 1] = 0;
612 subqobj = qdict_get(src, prefix);
614 g_free(prefix);
616 if (subqdict_entries < 0) {
617 return subqdict_entries;
620 /* There may be either a single subordinate object (named "%u") or
621 * multiple objects (each with a key prefixed "%u."), but not both. */
622 if (subqobj && subqdict_entries) {
623 return -EINVAL;
624 } else if (!subqobj && !subqdict_entries) {
625 break;
628 entries += subqdict_entries ? subqdict_entries : 1;
631 /* Consider everything handled that isn't part of the given sub-QDict */
632 for (entry = qdict_first(src); entry; entry = qdict_next(src, entry)) {
633 if (!strstart(qdict_entry_key(entry), subqdict, NULL)) {
634 entries++;
638 /* Anything left in the sub-QDict that wasn't handled? */
639 if (qdict_size(src) != entries) {
640 return -EINVAL;
643 return i;
647 * qdict_join(): Absorb the src QDict into the dest QDict, that is, move all
648 * elements from src to dest.
650 * If an element from src has a key already present in dest, it will not be
651 * moved unless overwrite is true.
653 * If overwrite is true, the conflicting values in dest will be discarded and
654 * replaced by the corresponding values from src.
656 * Therefore, with overwrite being true, the src QDict will always be empty when
657 * this function returns. If overwrite is false, the src QDict will be empty
658 * iff there were no conflicts.
660 void qdict_join(QDict *dest, QDict *src, bool overwrite)
662 const QDictEntry *entry, *next;
664 entry = qdict_first(src);
665 while (entry) {
666 next = qdict_next(src, entry);
668 if (overwrite || !qdict_haskey(dest, entry->key)) {
669 qdict_put_obj(dest, entry->key, qobject_ref(entry->value));
670 qdict_del(src, entry->key);
673 entry = next;
678 * qdict_rename_keys(): Rename keys in qdict according to the replacements
679 * specified in the array renames. The array must be terminated by an entry
680 * with from = NULL.
682 * The renames are performed individually in the order of the array, so entries
683 * may be renamed multiple times and may or may not conflict depending on the
684 * order of the renames array.
686 * Returns true for success, false in error cases.
688 bool qdict_rename_keys(QDict *qdict, const QDictRenames *renames, Error **errp)
690 QObject *qobj;
692 while (renames->from) {
693 if (qdict_haskey(qdict, renames->from)) {
694 if (qdict_haskey(qdict, renames->to)) {
695 error_setg(errp, "'%s' and its alias '%s' can't be used at the "
696 "same time", renames->to, renames->from);
697 return false;
700 qobj = qdict_get(qdict, renames->from);
701 qdict_put_obj(qdict, renames->to, qobject_ref(qobj));
702 qdict_del(qdict, renames->from);
705 renames++;
707 return true;
711 * Create a QObject input visitor for flat @qdict with possibly
712 * confused scalar types.
714 * The block subsystem uses this function to visit its flat QDict with
715 * possibly confused scalar types. It should not be used for anything
716 * else, and it should go away once the block subsystem has been
717 * cleaned up.
719 Visitor *qobject_input_visitor_new_flat_confused(QDict *qdict,
720 Error **errp)
722 QObject *crumpled;
723 Visitor *v;
725 crumpled = qdict_crumple_for_keyval_qiv(qdict, errp);
726 if (!crumpled) {
727 return NULL;
730 v = qobject_input_visitor_new_keyval(crumpled);
731 qobject_unref(crumpled);
732 return v;