1 /* Copyright (c) 2009, 2010 Nicira Networks
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
7 * http://www.apache.org/licenses/LICENSE-2.0
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
18 #include "ovsdb-data.h"
26 #include "dynamic-string.h"
28 #include "ovsdb-error.h"
35 wrap_json(const char *name, struct json *wrapped)
37 return json_array_create_2(json_string_create(name), wrapped);
41 ovsdb_atom_init_default(union ovsdb_atom *atom, enum ovsdb_atomic_type type)
47 case OVSDB_TYPE_INTEGER:
55 case OVSDB_TYPE_BOOLEAN:
56 atom->boolean = false;
59 case OVSDB_TYPE_STRING:
60 atom->string = xmemdup("", 1);
64 uuid_zero(&atom->uuid);
74 ovsdb_atom_is_default(const union ovsdb_atom *atom,
75 enum ovsdb_atomic_type type)
81 case OVSDB_TYPE_INTEGER:
82 return atom->integer == 0;
85 return atom->real == 0.0;
87 case OVSDB_TYPE_BOOLEAN:
88 return atom->boolean == false;
90 case OVSDB_TYPE_STRING:
91 return atom->string[0] == '\0';
94 return uuid_is_zero(&atom->uuid);
103 ovsdb_atom_clone(union ovsdb_atom *new, const union ovsdb_atom *old,
104 enum ovsdb_atomic_type type)
107 case OVSDB_TYPE_VOID:
110 case OVSDB_TYPE_INTEGER:
111 new->integer = old->integer;
114 case OVSDB_TYPE_REAL:
115 new->real = old->real;
118 case OVSDB_TYPE_BOOLEAN:
119 new->boolean = old->boolean;
122 case OVSDB_TYPE_STRING:
123 new->string = xstrdup(old->string);
126 case OVSDB_TYPE_UUID:
127 new->uuid = old->uuid;
137 ovsdb_atom_swap(union ovsdb_atom *a, union ovsdb_atom *b)
139 union ovsdb_atom tmp = *a;
145 ovsdb_atom_hash(const union ovsdb_atom *atom, enum ovsdb_atomic_type type,
149 case OVSDB_TYPE_VOID:
152 case OVSDB_TYPE_INTEGER:
153 return hash_int(atom->integer, basis);
155 case OVSDB_TYPE_REAL:
156 return hash_double(atom->real, basis);
158 case OVSDB_TYPE_BOOLEAN:
159 return hash_boolean(atom->boolean, basis);
161 case OVSDB_TYPE_STRING:
162 return hash_string(atom->string, basis);
164 case OVSDB_TYPE_UUID:
165 return hash_int(uuid_hash(&atom->uuid), basis);
174 ovsdb_atom_compare_3way(const union ovsdb_atom *a,
175 const union ovsdb_atom *b,
176 enum ovsdb_atomic_type type)
179 case OVSDB_TYPE_VOID:
182 case OVSDB_TYPE_INTEGER:
183 return a->integer < b->integer ? -1 : a->integer > b->integer;
185 case OVSDB_TYPE_REAL:
186 return a->real < b->real ? -1 : a->real > b->real;
188 case OVSDB_TYPE_BOOLEAN:
189 return a->boolean - b->boolean;
191 case OVSDB_TYPE_STRING:
192 return strcmp(a->string, b->string);
194 case OVSDB_TYPE_UUID:
195 return uuid_compare_3way(&a->uuid, &b->uuid);
203 static struct ovsdb_error *
204 unwrap_json(const struct json *json, const char *name,
205 enum json_type value_type, const struct json **value)
207 if (json->type != JSON_ARRAY
208 || json->u.array.n != 2
209 || json->u.array.elems[0]->type != JSON_STRING
210 || (name && strcmp(json->u.array.elems[0]->u.string, name))
211 || json->u.array.elems[1]->type != value_type)
213 return ovsdb_syntax_error(json, NULL, "expected [\"%s\", <%s>]", name,
214 json_type_to_string(value_type));
216 *value = json->u.array.elems[1];
220 static struct ovsdb_error *
221 parse_json_pair(const struct json *json,
222 const struct json **elem0, const struct json **elem1)
224 if (json->type != JSON_ARRAY || json->u.array.n != 2) {
225 return ovsdb_syntax_error(json, NULL, "expected 2-element array");
227 *elem0 = json->u.array.elems[0];
228 *elem1 = json->u.array.elems[1];
232 static struct ovsdb_error * WARN_UNUSED_RESULT
233 ovsdb_atom_parse_uuid(struct uuid *uuid, const struct json *json,
234 struct ovsdb_symbol_table *symtab)
236 struct ovsdb_error *error0;
237 const struct json *value;
239 error0 = unwrap_json(json, "uuid", JSON_STRING, &value);
241 const char *uuid_string = json_string(value);
242 if (!uuid_from_string(uuid, uuid_string)) {
243 return ovsdb_syntax_error(json, NULL, "\"%s\" is not a valid UUID",
247 struct ovsdb_error *error1;
249 error1 = unwrap_json(json, "named-uuid", JSON_STRING, &value);
251 const char *name = json_string(value);
253 ovsdb_error_destroy(error0);
254 *uuid = ovsdb_symbol_table_insert(symtab, name)->uuid;
257 ovsdb_error_destroy(error1);
263 static struct ovsdb_error * WARN_UNUSED_RESULT
264 ovsdb_atom_from_json__(union ovsdb_atom *atom, enum ovsdb_atomic_type type,
265 const struct json *json,
266 struct ovsdb_symbol_table *symtab)
269 case OVSDB_TYPE_VOID:
272 case OVSDB_TYPE_INTEGER:
273 if (json->type == JSON_INTEGER) {
274 atom->integer = json->u.integer;
279 case OVSDB_TYPE_REAL:
280 if (json->type == JSON_INTEGER) {
281 atom->real = json->u.integer;
283 } else if (json->type == JSON_REAL) {
284 atom->real = json->u.real;
289 case OVSDB_TYPE_BOOLEAN:
290 if (json->type == JSON_TRUE) {
291 atom->boolean = true;
293 } else if (json->type == JSON_FALSE) {
294 atom->boolean = false;
299 case OVSDB_TYPE_STRING:
300 if (json->type == JSON_STRING) {
301 atom->string = xstrdup(json->u.string);
306 case OVSDB_TYPE_UUID:
307 return ovsdb_atom_parse_uuid(&atom->uuid, json, symtab);
314 return ovsdb_syntax_error(json, NULL, "expected %s",
315 ovsdb_atomic_type_to_string(type));
319 ovsdb_atom_from_json(union ovsdb_atom *atom,
320 const struct ovsdb_base_type *base,
321 const struct json *json,
322 struct ovsdb_symbol_table *symtab)
324 struct ovsdb_error *error;
326 error = ovsdb_atom_from_json__(atom, base->type, json, symtab);
331 error = ovsdb_atom_check_constraints(atom, base);
333 ovsdb_atom_destroy(atom, base->type);
339 ovsdb_atom_to_json(const union ovsdb_atom *atom, enum ovsdb_atomic_type type)
342 case OVSDB_TYPE_VOID:
345 case OVSDB_TYPE_INTEGER:
346 return json_integer_create(atom->integer);
348 case OVSDB_TYPE_REAL:
349 return json_real_create(atom->real);
351 case OVSDB_TYPE_BOOLEAN:
352 return json_boolean_create(atom->boolean);
354 case OVSDB_TYPE_STRING:
355 return json_string_create(atom->string);
357 case OVSDB_TYPE_UUID:
358 return wrap_json("uuid", json_string_create_nocopy(
359 xasprintf(UUID_FMT, UUID_ARGS(&atom->uuid))));
368 ovsdb_atom_from_string__(union ovsdb_atom *atom, enum ovsdb_atomic_type type,
372 case OVSDB_TYPE_VOID:
375 case OVSDB_TYPE_INTEGER: {
376 long long int integer;
377 if (!str_to_llong(s, 10, &integer)) {
378 return xasprintf("\"%s\" is not a valid integer", s);
380 atom->integer = integer;
384 case OVSDB_TYPE_REAL:
385 if (!str_to_double(s, &atom->real)) {
386 return xasprintf("\"%s\" is not a valid real number", s);
388 /* Our JSON input routines map negative zero to zero, so do that here
389 * too for consistency. */
390 if (atom->real == 0.0) {
395 case OVSDB_TYPE_BOOLEAN:
396 if (!strcmp(s, "true") || !strcmp(s, "yes") || !strcmp(s, "on")
397 || !strcmp(s, "1")) {
398 atom->boolean = true;
399 } else if (!strcmp(s, "false") || !strcmp(s, "no") || !strcmp(s, "off")
400 || !strcmp(s, "0")) {
401 atom->boolean = false;
403 return xasprintf("\"%s\" is not a valid boolean "
404 "(use \"true\" or \"false\")", s);
408 case OVSDB_TYPE_STRING:
410 return xstrdup("An empty string is not valid as input; "
411 "use \"\" to represent the empty string");
412 } else if (*s == '"') {
413 size_t s_len = strlen(s);
415 if (s_len < 2 || s[s_len - 1] != '"') {
416 return xasprintf("%s: missing quote at end of "
418 } else if (!json_string_unescape(s + 1, s_len - 2,
420 char *error = xasprintf("%s: %s", s, atom->string);
425 atom->string = xstrdup(s);
429 case OVSDB_TYPE_UUID:
430 if (!uuid_from_string(&atom->uuid, s)) {
431 return xasprintf("\"%s\" is not a valid UUID", s);
443 /* Initializes 'atom' to a value of type 'base' parsed from 's', which takes
444 * one of the following forms:
446 * - OVSDB_TYPE_INTEGER: A decimal integer optionally preceded by a sign.
448 * - OVSDB_TYPE_REAL: A floating-point number in the format accepted by
451 * - OVSDB_TYPE_BOOLEAN: "true", "yes", "on", "1" for true, or "false",
452 * "no", "off", or "0" for false.
454 * - OVSDB_TYPE_STRING: A JSON string if it begins with a quote, otherwise
455 * an arbitrary string.
457 * - OVSDB_TYPE_UUID: A UUID in RFC 4122 format.
459 * Returns a null pointer if successful, otherwise an error message describing
460 * the problem. The caller is responsible for freeing the error.
463 ovsdb_atom_from_string(union ovsdb_atom *atom,
464 const struct ovsdb_base_type *base, const char *s)
466 struct ovsdb_error *error;
469 msg = ovsdb_atom_from_string__(atom, base->type, s);
474 error = ovsdb_atom_check_constraints(atom, base);
476 msg = ovsdb_error_to_string(error);
477 ovsdb_error_destroy(error);
483 string_needs_quotes(const char *s)
489 if (!isalpha(c) && c != '_') {
493 while ((c = *p++) != '\0') {
494 if (!isalpha(c) && c != '_' && c != '-' && c != '.') {
499 if (!strcmp(s, "true") || !strcmp(s, "false")) {
506 /* Appends 'atom' (which has the given 'type') to 'out', in a format acceptable
507 * to ovsdb_atom_from_string(). */
509 ovsdb_atom_to_string(const union ovsdb_atom *atom, enum ovsdb_atomic_type type,
513 case OVSDB_TYPE_VOID:
516 case OVSDB_TYPE_INTEGER:
517 ds_put_format(out, "%"PRId64, atom->integer);
520 case OVSDB_TYPE_REAL:
521 ds_put_format(out, "%.*g", DBL_DIG, atom->real);
524 case OVSDB_TYPE_BOOLEAN:
525 ds_put_cstr(out, atom->boolean ? "true" : "false");
528 case OVSDB_TYPE_STRING:
529 if (string_needs_quotes(atom->string)) {
532 json.type = JSON_STRING;
533 json.u.string = atom->string;
534 json_to_ds(&json, 0, out);
536 ds_put_cstr(out, atom->string);
540 case OVSDB_TYPE_UUID:
541 ds_put_format(out, UUID_FMT, UUID_ARGS(&atom->uuid));
550 static struct ovsdb_error *
551 check_string_constraints(const char *s,
552 const struct ovsdb_string_constraints *c)
557 msg = utf8_validate(s, &n_chars);
559 struct ovsdb_error *error;
561 error = ovsdb_error("constraint violation",
562 "\"%s\" is not a valid UTF-8 string: %s",
568 if (n_chars < c->minLen) {
570 "constraint violation",
571 "\"%s\" length %zu is less than minimum allowed "
572 "length %u", s, n_chars, c->minLen);
573 } else if (n_chars > c->maxLen) {
575 "constraint violation",
576 "\"%s\" length %zu is greater than maximum allowed "
577 "length %u", s, n_chars, c->maxLen);
583 /* Checks whether 'atom' meets the constraints (if any) defined in 'base'.
584 * (base->type must specify 'atom''s type.) Returns a null pointer if the
585 * constraints are met, otherwise an error that explains the violation.
587 * Checking UUID constraints is deferred to transaction commit time, so this
588 * function does nothing for UUID constraints. */
590 ovsdb_atom_check_constraints(const union ovsdb_atom *atom,
591 const struct ovsdb_base_type *base)
594 && ovsdb_datum_find_key(base->enum_, atom, base->type) == UINT_MAX) {
595 struct ovsdb_error *error;
596 struct ds actual = DS_EMPTY_INITIALIZER;
597 struct ds valid = DS_EMPTY_INITIALIZER;
599 ovsdb_atom_to_string(atom, base->type, &actual);
600 ovsdb_datum_to_string(base->enum_,
601 ovsdb_base_type_get_enum_type(base->type),
603 error = ovsdb_error("constraint violation",
604 "%s is not one of the allowed values (%s)",
605 ds_cstr(&actual), ds_cstr(&valid));
612 switch (base->type) {
613 case OVSDB_TYPE_VOID:
616 case OVSDB_TYPE_INTEGER:
617 if (atom->integer >= base->u.integer.min
618 && atom->integer <= base->u.integer.max) {
620 } else if (base->u.integer.min != INT64_MIN) {
621 if (base->u.integer.max != INT64_MAX) {
622 return ovsdb_error("constraint violation",
623 "%"PRId64" is not in the valid range "
624 "%"PRId64" to %"PRId64" (inclusive)",
626 base->u.integer.min, base->u.integer.max);
628 return ovsdb_error("constraint violation",
629 "%"PRId64" is less than minimum allowed "
631 atom->integer, base->u.integer.min);
634 return ovsdb_error("constraint violation",
635 "%"PRId64" is greater than maximum allowed "
637 atom->integer, base->u.integer.max);
641 case OVSDB_TYPE_REAL:
642 if (atom->real >= base->u.real.min && atom->real <= base->u.real.max) {
644 } else if (base->u.real.min != -DBL_MAX) {
645 if (base->u.real.max != DBL_MAX) {
646 return ovsdb_error("constraint violation",
647 "%.*g is not in the valid range "
648 "%.*g to %.*g (inclusive)",
650 DBL_DIG, base->u.real.min,
651 DBL_DIG, base->u.real.max);
653 return ovsdb_error("constraint violation",
654 "%.*g is less than minimum allowed "
657 DBL_DIG, base->u.real.min);
660 return ovsdb_error("constraint violation",
661 "%.*g is greater than maximum allowed "
664 DBL_DIG, base->u.real.max);
668 case OVSDB_TYPE_BOOLEAN:
671 case OVSDB_TYPE_STRING:
672 return check_string_constraints(atom->string, &base->u.string);
674 case OVSDB_TYPE_UUID:
683 static union ovsdb_atom *
684 alloc_default_atoms(enum ovsdb_atomic_type type, size_t n)
686 if (type != OVSDB_TYPE_VOID && n) {
687 union ovsdb_atom *atoms;
690 atoms = xmalloc(n * sizeof *atoms);
691 for (i = 0; i < n; i++) {
692 ovsdb_atom_init_default(&atoms[i], type);
696 /* Avoid wasting memory in the n == 0 case, because xmalloc(0) is
697 * treated as xmalloc(1). */
703 ovsdb_datum_init_empty(struct ovsdb_datum *datum)
707 datum->values = NULL;
711 ovsdb_datum_init_default(struct ovsdb_datum *datum,
712 const struct ovsdb_type *type)
714 datum->n = type->n_min;
715 datum->keys = alloc_default_atoms(type->key.type, datum->n);
716 datum->values = alloc_default_atoms(type->value.type, datum->n);
720 ovsdb_datum_is_default(const struct ovsdb_datum *datum,
721 const struct ovsdb_type *type)
725 if (datum->n != type->n_min) {
728 for (i = 0; i < datum->n; i++) {
729 if (!ovsdb_atom_is_default(&datum->keys[i], type->key.type)) {
732 if (type->value.type != OVSDB_TYPE_VOID
733 && !ovsdb_atom_is_default(&datum->values[i], type->value.type)) {
741 static union ovsdb_atom *
742 clone_atoms(const union ovsdb_atom *old, enum ovsdb_atomic_type type, size_t n)
744 if (type != OVSDB_TYPE_VOID && n) {
745 union ovsdb_atom *new;
748 new = xmalloc(n * sizeof *new);
749 for (i = 0; i < n; i++) {
750 ovsdb_atom_clone(&new[i], &old[i], type);
754 /* Avoid wasting memory in the n == 0 case, because xmalloc(0) is
755 * treated as xmalloc(1). */
761 ovsdb_datum_clone(struct ovsdb_datum *new, const struct ovsdb_datum *old,
762 const struct ovsdb_type *type)
764 unsigned int n = old->n;
766 new->keys = clone_atoms(old->keys, type->key.type, n);
767 new->values = clone_atoms(old->values, type->value.type, n);
771 free_data(enum ovsdb_atomic_type type,
772 union ovsdb_atom *atoms, size_t n_atoms)
774 if (ovsdb_atom_needs_destruction(type)) {
776 for (i = 0; i < n_atoms; i++) {
777 ovsdb_atom_destroy(&atoms[i], type);
784 ovsdb_datum_destroy(struct ovsdb_datum *datum, const struct ovsdb_type *type)
786 free_data(type->key.type, datum->keys, datum->n);
787 free_data(type->value.type, datum->values, datum->n);
791 ovsdb_datum_swap(struct ovsdb_datum *a, struct ovsdb_datum *b)
793 struct ovsdb_datum tmp = *a;
798 struct ovsdb_datum_sort_cbdata {
799 enum ovsdb_atomic_type key_type;
800 struct ovsdb_datum *datum;
804 ovsdb_datum_sort_compare_cb(size_t a, size_t b, void *cbdata_)
806 struct ovsdb_datum_sort_cbdata *cbdata = cbdata_;
808 return ovsdb_atom_compare_3way(&cbdata->datum->keys[a],
809 &cbdata->datum->keys[b],
814 ovsdb_datum_sort_swap_cb(size_t a, size_t b, void *cbdata_)
816 struct ovsdb_datum_sort_cbdata *cbdata = cbdata_;
818 ovsdb_atom_swap(&cbdata->datum->keys[a], &cbdata->datum->keys[b]);
819 if (cbdata->datum->values) {
820 ovsdb_atom_swap(&cbdata->datum->values[a], &cbdata->datum->values[b]);
825 ovsdb_datum_sort(struct ovsdb_datum *datum, enum ovsdb_atomic_type key_type)
830 struct ovsdb_datum_sort_cbdata cbdata;
833 cbdata.key_type = key_type;
834 cbdata.datum = datum;
835 sort(datum->n, ovsdb_datum_sort_compare_cb, ovsdb_datum_sort_swap_cb,
838 for (i = 0; i < datum->n - 1; i++) {
839 if (ovsdb_atom_equals(&datum->keys[i], &datum->keys[i + 1],
842 return ovsdb_error(NULL, "map contains duplicate key");
844 return ovsdb_error(NULL, "set contains duplicate");
854 ovsdb_datum_sort_assert(struct ovsdb_datum *datum,
855 enum ovsdb_atomic_type key_type)
857 struct ovsdb_error *error = ovsdb_datum_sort(datum, key_type);
863 /* Checks that each of the atoms in 'datum' conforms to the constraints
864 * specified by its 'type'. Returns an error if a constraint is violated,
865 * otherwise a null pointer.
867 * This function is not commonly useful because the most ordinary way to obtain
868 * a datum is ultimately via ovsdb_atom_from_string() or
869 * ovsdb_atom_from_json(), which check constraints themselves. */
871 ovsdb_datum_check_constraints(const struct ovsdb_datum *datum,
872 const struct ovsdb_type *type)
874 struct ovsdb_error *error;
877 for (i = 0; i < datum->n; i++) {
878 error = ovsdb_atom_check_constraints(&datum->keys[i], &type->key);
884 if (type->value.type != OVSDB_TYPE_VOID) {
885 for (i = 0; i < datum->n; i++) {
886 error = ovsdb_atom_check_constraints(&datum->values[i],
898 ovsdb_datum_from_json(struct ovsdb_datum *datum,
899 const struct ovsdb_type *type,
900 const struct json *json,
901 struct ovsdb_symbol_table *symtab)
903 struct ovsdb_error *error;
905 if (ovsdb_type_is_map(type)
906 || (json->type == JSON_ARRAY
907 && json->u.array.n > 0
908 && json->u.array.elems[0]->type == JSON_STRING
909 && !strcmp(json->u.array.elems[0]->u.string, "set"))) {
910 bool is_map = ovsdb_type_is_map(type);
911 const char *class = is_map ? "map" : "set";
912 const struct json *inner;
916 error = unwrap_json(json, class, JSON_ARRAY, &inner);
921 n = inner->u.array.n;
922 if (n < type->n_min || n > type->n_max) {
923 return ovsdb_syntax_error(json, NULL, "%s must have %u to "
924 "%u members but %zu are present",
925 class, type->n_min, type->n_max, n);
929 datum->keys = xmalloc(n * sizeof *datum->keys);
930 datum->values = is_map ? xmalloc(n * sizeof *datum->values) : NULL;
931 for (i = 0; i < n; i++) {
932 const struct json *element = inner->u.array.elems[i];
933 const struct json *key = NULL;
934 const struct json *value = NULL;
939 error = parse_json_pair(element, &key, &value);
945 error = ovsdb_atom_from_json(&datum->keys[i], &type->key,
952 error = ovsdb_atom_from_json(&datum->values[i],
953 &type->value, value, symtab);
955 ovsdb_atom_destroy(&datum->keys[i], type->key.type);
963 error = ovsdb_datum_sort(datum, type->key.type);
971 ovsdb_datum_destroy(datum, type);
975 datum->keys = xmalloc(sizeof *datum->keys);
976 datum->values = NULL;
978 error = ovsdb_atom_from_json(&datum->keys[0], &type->key,
988 ovsdb_datum_to_json(const struct ovsdb_datum *datum,
989 const struct ovsdb_type *type)
991 /* These tests somewhat tolerate a 'datum' that does not exactly match
992 * 'type', in particular a datum with 'n' not in the allowed range. */
993 if (datum->n == 1 && !ovsdb_type_is_map(type)) {
994 return ovsdb_atom_to_json(&datum->keys[0], type->key.type);
995 } else if (type->value.type == OVSDB_TYPE_VOID) {
999 elems = xmalloc(datum->n * sizeof *elems);
1000 for (i = 0; i < datum->n; i++) {
1001 elems[i] = ovsdb_atom_to_json(&datum->keys[i], type->key.type);
1004 return wrap_json("set", json_array_create(elems, datum->n));
1006 struct json **elems;
1009 elems = xmalloc(datum->n * sizeof *elems);
1010 for (i = 0; i < datum->n; i++) {
1011 elems[i] = json_array_create_2(
1012 ovsdb_atom_to_json(&datum->keys[i], type->key.type),
1013 ovsdb_atom_to_json(&datum->values[i], type->value.type));
1016 return wrap_json("map", json_array_create(elems, datum->n));
1021 skip_spaces(const char *p)
1023 while (isspace((unsigned char) *p)) {
1030 parse_atom_token(const char **s, const struct ovsdb_base_type *base,
1031 union ovsdb_atom *atom)
1033 char *token, *error;
1035 error = ovsdb_token_parse(s, &token);
1037 error = ovsdb_atom_from_string(atom, base, token);
1044 parse_key_value(const char **s, const struct ovsdb_type *type,
1045 union ovsdb_atom *key, union ovsdb_atom *value)
1047 const char *start = *s;
1050 error = parse_atom_token(s, &type->key, key);
1051 if (!error && type->value.type != OVSDB_TYPE_VOID) {
1052 *s = skip_spaces(*s);
1055 *s = skip_spaces(*s);
1056 error = parse_atom_token(s, &type->value, value);
1058 error = xasprintf("%s: syntax error at \"%c\" expecting \"=\"",
1062 ovsdb_atom_destroy(key, type->key.type);
1069 free_key_value(const struct ovsdb_type *type,
1070 union ovsdb_atom *key, union ovsdb_atom *value)
1072 ovsdb_atom_destroy(key, type->key.type);
1073 if (type->value.type != OVSDB_TYPE_VOID) {
1074 ovsdb_atom_destroy(value, type->value.type);
1078 /* Initializes 'datum' as a datum of the given 'type', parsing its contents
1079 * from 's'. The format of 's' is a series of space or comma separated atoms
1080 * or, for a map, '='-delimited pairs of atoms. Each atom must in a format
1081 * acceptable to ovsdb_atom_from_string(). Optionally, a set may be enclosed
1082 * in "[]" or a map in "{}"; for an empty set or map these punctuators are
1085 ovsdb_datum_from_string(struct ovsdb_datum *datum,
1086 const struct ovsdb_type *type, const char *s)
1088 bool is_map = ovsdb_type_is_map(type);
1089 struct ovsdb_error *dberror;
1094 ovsdb_datum_init_empty(datum);
1096 /* Swallow a leading delimiter if there is one. */
1098 if (*p == (is_map ? '{' : '[')) {
1099 end_delim = is_map ? '}' : ']';
1100 p = skip_spaces(p + 1);
1103 return xstrdup("use \"{}\" to specify the empty map");
1105 return xstrdup("use \"[]\" to specify the empty set");
1111 while (*p && *p != end_delim) {
1112 union ovsdb_atom key, value;
1114 if (ovsdb_token_is_delim(*p)) {
1115 error = xasprintf("%s: unexpected \"%c\" parsing %s",
1116 s, *p, ovsdb_type_to_english(type));
1121 error = parse_key_value(&p, type, &key, &value);
1125 ovsdb_datum_add_unsafe(datum, &key, &value, type);
1126 free_key_value(type, &key, &value);
1128 /* Skip optional white space and comma. */
1131 p = skip_spaces(p + 1);
1135 if (*p != end_delim) {
1136 error = xasprintf("%s: missing \"%c\" at end of data", s, end_delim);
1140 p = skip_spaces(p + 1);
1142 error = xasprintf("%s: trailing garbage after \"%c\"",
1148 if (datum->n < type->n_min) {
1149 error = xasprintf("%s: %u %s specified but the minimum number is %u",
1150 s, datum->n, is_map ? "pair(s)" : "value(s)",
1153 } else if (datum->n > type->n_max) {
1154 error = xasprintf("%s: %u %s specified but the maximum number is %u",
1155 s, datum->n, is_map ? "pair(s)" : "value(s)",
1160 dberror = ovsdb_datum_sort(datum, type->key.type);
1162 ovsdb_error_destroy(dberror);
1163 if (ovsdb_type_is_map(type)) {
1164 error = xasprintf("%s: map contains duplicate key", s);
1166 error = xasprintf("%s: set contains duplicate value", s);
1174 ovsdb_datum_destroy(datum, type);
1175 ovsdb_datum_init_empty(datum);
1179 /* Appends to 'out' the 'datum' (with the given 'type') in a format acceptable
1180 * to ovsdb_datum_from_string(). */
1182 ovsdb_datum_to_string(const struct ovsdb_datum *datum,
1183 const struct ovsdb_type *type, struct ds *out)
1185 bool is_map = ovsdb_type_is_map(type);
1188 if (type->n_max > 1 || !datum->n) {
1189 ds_put_char(out, is_map ? '{' : '[');
1191 for (i = 0; i < datum->n; i++) {
1193 ds_put_cstr(out, ", ");
1196 ovsdb_atom_to_string(&datum->keys[i], type->key.type, out);
1198 ds_put_char(out, '=');
1199 ovsdb_atom_to_string(&datum->values[i], type->value.type, out);
1202 if (type->n_max > 1 || !datum->n) {
1203 ds_put_char(out, is_map ? '}' : ']');
1208 hash_atoms(enum ovsdb_atomic_type type, const union ovsdb_atom *atoms,
1209 unsigned int n, uint32_t basis)
1211 if (type != OVSDB_TYPE_VOID) {
1214 for (i = 0; i < n; i++) {
1215 basis = ovsdb_atom_hash(&atoms[i], type, basis);
1222 ovsdb_datum_hash(const struct ovsdb_datum *datum,
1223 const struct ovsdb_type *type, uint32_t basis)
1225 basis = hash_atoms(type->key.type, datum->keys, datum->n, basis);
1226 basis ^= (type->key.type << 24) | (type->value.type << 16) | datum->n;
1227 basis = hash_atoms(type->value.type, datum->values, datum->n, basis);
1232 atom_arrays_compare_3way(const union ovsdb_atom *a,
1233 const union ovsdb_atom *b,
1234 enum ovsdb_atomic_type type,
1239 for (i = 0; i < n; i++) {
1240 int cmp = ovsdb_atom_compare_3way(&a[i], &b[i], type);
1250 ovsdb_datum_equals(const struct ovsdb_datum *a,
1251 const struct ovsdb_datum *b,
1252 const struct ovsdb_type *type)
1254 return !ovsdb_datum_compare_3way(a, b, type);
1258 ovsdb_datum_compare_3way(const struct ovsdb_datum *a,
1259 const struct ovsdb_datum *b,
1260 const struct ovsdb_type *type)
1265 return a->n < b->n ? -1 : 1;
1268 cmp = atom_arrays_compare_3way(a->keys, b->keys, type->key.type, a->n);
1273 return (type->value.type == OVSDB_TYPE_VOID ? 0
1274 : atom_arrays_compare_3way(a->values, b->values, type->value.type,
1278 /* If 'key' is one of the keys in 'datum', returns its index within 'datum',
1279 * otherwise UINT_MAX. 'key.type' must be the type of the atoms stored in the
1280 * 'keys' array in 'datum'.
1283 ovsdb_datum_find_key(const struct ovsdb_datum *datum,
1284 const union ovsdb_atom *key,
1285 enum ovsdb_atomic_type key_type)
1287 unsigned int low = 0;
1288 unsigned int high = datum->n;
1289 while (low < high) {
1290 unsigned int idx = (low + high) / 2;
1291 int cmp = ovsdb_atom_compare_3way(key, &datum->keys[idx], key_type);
1294 } else if (cmp > 0) {
1303 /* If 'key' and 'value' is one of the key-value pairs in 'datum', returns its
1304 * index within 'datum', otherwise UINT_MAX. 'key.type' must be the type of
1305 * the atoms stored in the 'keys' array in 'datum'. 'value_type' may be the
1306 * type of the 'values' atoms or OVSDB_TYPE_VOID to compare only keys.
1309 ovsdb_datum_find_key_value(const struct ovsdb_datum *datum,
1310 const union ovsdb_atom *key,
1311 enum ovsdb_atomic_type key_type,
1312 const union ovsdb_atom *value,
1313 enum ovsdb_atomic_type value_type)
1315 unsigned int idx = ovsdb_datum_find_key(datum, key, key_type);
1317 && value_type != OVSDB_TYPE_VOID
1318 && !ovsdb_atom_equals(&datum->values[idx], value, value_type)) {
1324 /* If atom 'i' in 'a' is also in 'b', returns its index in 'b', otherwise
1325 * UINT_MAX. 'type' must be the type of 'a' and 'b', except that
1326 * type->value.type may be set to OVSDB_TYPE_VOID to compare keys but not
1329 ovsdb_datum_find(const struct ovsdb_datum *a, int i,
1330 const struct ovsdb_datum *b,
1331 const struct ovsdb_type *type)
1333 return ovsdb_datum_find_key_value(b,
1334 &a->keys[i], type->key.type,
1335 a->values ? &a->values[i] : NULL,
1339 /* Returns true if every element in 'a' is also in 'b', false otherwise. */
1341 ovsdb_datum_includes_all(const struct ovsdb_datum *a,
1342 const struct ovsdb_datum *b,
1343 const struct ovsdb_type *type)
1347 for (i = 0; i < a->n; i++) {
1348 if (ovsdb_datum_find(a, i, b, type) == UINT_MAX) {
1355 /* Returns true if no element in 'a' is also in 'b', false otherwise. */
1357 ovsdb_datum_excludes_all(const struct ovsdb_datum *a,
1358 const struct ovsdb_datum *b,
1359 const struct ovsdb_type *type)
1363 for (i = 0; i < a->n; i++) {
1364 if (ovsdb_datum_find(a, i, b, type) != UINT_MAX) {
1372 ovsdb_datum_reallocate(struct ovsdb_datum *a, const struct ovsdb_type *type,
1373 unsigned int capacity)
1375 a->keys = xrealloc(a->keys, capacity * sizeof *a->keys);
1376 if (type->value.type != OVSDB_TYPE_VOID) {
1377 a->values = xrealloc(a->values, capacity * sizeof *a->values);
1381 /* Removes the element with index 'idx' from 'datum', which has type 'type'.
1382 * If 'idx' is not the last element in 'datum', then the removed element is
1383 * replaced by the (former) last element.
1385 * This function does not maintain ovsdb_datum invariants. Use
1386 * ovsdb_datum_sort() to check and restore these invariants. */
1388 ovsdb_datum_remove_unsafe(struct ovsdb_datum *datum, size_t idx,
1389 const struct ovsdb_type *type)
1391 ovsdb_atom_destroy(&datum->keys[idx], type->key.type);
1392 datum->keys[idx] = datum->keys[datum->n - 1];
1393 if (type->value.type != OVSDB_TYPE_VOID) {
1394 ovsdb_atom_destroy(&datum->values[idx], type->value.type);
1395 datum->values[idx] = datum->values[datum->n - 1];
1400 /* Adds the element with the given 'key' and 'value' to 'datum', which must
1401 * have the specified 'type'.
1403 * This function always allocates memory, so it is not an efficient way to add
1404 * a number of elements to a datum.
1406 * This function does not maintain ovsdb_datum invariants. Use
1407 * ovsdb_datum_sort() to check and restore these invariants. (But a datum with
1408 * 0 or 1 elements cannot violate the invariants anyhow.) */
1410 ovsdb_datum_add_unsafe(struct ovsdb_datum *datum,
1411 const union ovsdb_atom *key,
1412 const union ovsdb_atom *value,
1413 const struct ovsdb_type *type)
1415 size_t idx = datum->n++;
1416 datum->keys = xrealloc(datum->keys, datum->n * sizeof *datum->keys);
1417 ovsdb_atom_clone(&datum->keys[idx], key, type->key.type);
1418 if (type->value.type != OVSDB_TYPE_VOID) {
1419 datum->values = xrealloc(datum->values,
1420 datum->n * sizeof *datum->values);
1421 ovsdb_atom_clone(&datum->values[idx], value, type->value.type);
1426 ovsdb_datum_union(struct ovsdb_datum *a, const struct ovsdb_datum *b,
1427 const struct ovsdb_type *type, bool replace)
1433 for (bi = 0; bi < b->n; bi++) {
1436 ai = ovsdb_datum_find_key(a, &b->keys[bi], type->key.type);
1437 if (ai == UINT_MAX) {
1439 ovsdb_datum_reallocate(a, type, a->n + (b->n - bi));
1441 ovsdb_atom_clone(&a->keys[n], &b->keys[bi], type->key.type);
1442 if (type->value.type != OVSDB_TYPE_VOID) {
1443 ovsdb_atom_clone(&a->values[n], &b->values[bi],
1447 } else if (replace && type->value.type != OVSDB_TYPE_VOID) {
1448 ovsdb_atom_destroy(&a->values[ai], type->value.type);
1449 ovsdb_atom_clone(&a->values[ai], &b->values[bi],
1454 struct ovsdb_error *error;
1456 error = ovsdb_datum_sort(a, type->key.type);
1462 ovsdb_datum_subtract(struct ovsdb_datum *a, const struct ovsdb_type *a_type,
1463 const struct ovsdb_datum *b,
1464 const struct ovsdb_type *b_type)
1466 bool changed = false;
1469 assert(a_type->key.type == b_type->key.type);
1470 assert(a_type->value.type == b_type->value.type
1471 || b_type->value.type == OVSDB_TYPE_VOID);
1473 /* XXX The big-O of this could easily be improved. */
1474 for (i = 0; i < a->n; ) {
1475 unsigned int idx = ovsdb_datum_find(a, i, b, b_type);
1476 if (idx != UINT_MAX) {
1478 ovsdb_datum_remove_unsafe(a, i, a_type);
1484 ovsdb_datum_sort_assert(a, a_type->key.type);
1488 struct ovsdb_symbol_table {
1492 struct ovsdb_symbol_table *
1493 ovsdb_symbol_table_create(void)
1495 struct ovsdb_symbol_table *symtab = xmalloc(sizeof *symtab);
1496 shash_init(&symtab->sh);
1501 ovsdb_symbol_table_destroy(struct ovsdb_symbol_table *symtab)
1504 struct shash_node *node, *next;
1506 SHASH_FOR_EACH_SAFE (node, next, &symtab->sh) {
1507 struct ovsdb_symbol *symbol = node->data;
1509 shash_delete(&symtab->sh, node);
1511 shash_destroy(&symtab->sh);
1516 struct ovsdb_symbol *
1517 ovsdb_symbol_table_get(const struct ovsdb_symbol_table *symtab,
1520 return shash_find_data(&symtab->sh, name);
1523 struct ovsdb_symbol *
1524 ovsdb_symbol_table_put(struct ovsdb_symbol_table *symtab, const char *name,
1525 const struct uuid *uuid, bool used)
1527 struct ovsdb_symbol *symbol;
1529 assert(!ovsdb_symbol_table_get(symtab, name));
1530 symbol = xmalloc(sizeof *symbol);
1531 symbol->uuid = *uuid;
1532 symbol->used = used;
1533 shash_add(&symtab->sh, name, symbol);
1537 struct ovsdb_symbol *
1538 ovsdb_symbol_table_insert(struct ovsdb_symbol_table *symtab,
1541 struct ovsdb_symbol *symbol;
1543 symbol = ovsdb_symbol_table_get(symtab, name);
1547 uuid_generate(&uuid);
1548 symbol = ovsdb_symbol_table_put(symtab, name, &uuid, false);
1553 /* Extracts a token from the beginning of 's' and returns a pointer just after
1554 * the token. Stores the token itself into '*outp', which the caller is
1555 * responsible for freeing (with free()).
1557 * If 's[0]' is a delimiter, the returned token is the empty string.
1559 * A token extends from 's' to the first delimiter, as defined by
1560 * ovsdb_token_is_delim(), or until the end of the string. A delimiter can be
1561 * escaped with a backslash, in which case the backslash does not appear in the
1562 * output. Double quotes also cause delimiters to be ignored, but the double
1563 * quotes are retained in the output. (Backslashes inside double quotes are
1564 * not removed, either.)
1567 ovsdb_token_parse(const char **s, char **outp)
1576 for (p = *s; *p != '\0'; ) {
1580 ds_put_char(&out, '\\');
1583 error = xasprintf("%s: backslash at end of argument", *s);
1586 ds_put_char(&out, *p++);
1587 } else if (!in_quotes && ovsdb_token_is_delim(c)) {
1591 ds_put_char(&out, c);
1593 in_quotes = !in_quotes;
1598 error = xasprintf("%s: quoted string extends past end of argument",
1602 *outp = ds_cstr(&out);
1612 /* Returns true if 'c' delimits tokens, or if 'c' is 0, and false otherwise. */
1614 ovsdb_token_is_delim(unsigned char c)
1616 return strchr(":=, []{}", c) != NULL;