]> git.proxmox.com Git - mirror_ovs.git/blob - lib/ovsdb-data.c
Merge branch 'dpdk_merge' of https://github.com/istokes/ovs into HEAD
[mirror_ovs.git] / lib / ovsdb-data.c
1 /* Copyright (c) 2009, 2010, 2011, 2012, 2014, 2016, 2017 Nicira, Inc.
2 *
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:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
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.
14 */
15
16 #include <config.h>
17
18 #include "ovsdb-data.h"
19
20 #include <ctype.h>
21 #include <float.h>
22 #include <inttypes.h>
23 #include <limits.h>
24
25 #include "openvswitch/dynamic-string.h"
26 #include "hash.h"
27 #include "ovs-thread.h"
28 #include "ovsdb-error.h"
29 #include "ovsdb-parser.h"
30 #include "openvswitch/json.h"
31 #include "openvswitch/shash.h"
32 #include "smap.h"
33 #include "sort.h"
34 #include "unicode.h"
35 #include "util.h"
36
37 static struct json *
38 wrap_json(const char *name, struct json *wrapped)
39 {
40 return json_array_create_2(json_string_create(name), wrapped);
41 }
42
43 /* Initializes 'atom' with the default value of the given 'type'.
44 *
45 * The default value for an atom is as defined in RFC 7047:
46 *
47 * - "integer" or "real": 0
48 *
49 * - "boolean": false
50 *
51 * - "string": "" (the empty string)
52 *
53 * - "uuid": 00000000-0000-0000-0000-000000000000
54 *
55 * The caller must eventually arrange for 'atom' to be destroyed (with
56 * ovsdb_atom_destroy()). */
57 void
58 ovsdb_atom_init_default(union ovsdb_atom *atom, enum ovsdb_atomic_type type)
59 {
60 switch (type) {
61 case OVSDB_TYPE_VOID:
62 OVS_NOT_REACHED();
63
64 case OVSDB_TYPE_INTEGER:
65 atom->integer = 0;
66 break;
67
68 case OVSDB_TYPE_REAL:
69 atom->real = 0.0;
70 break;
71
72 case OVSDB_TYPE_BOOLEAN:
73 atom->boolean = false;
74 break;
75
76 case OVSDB_TYPE_STRING:
77 atom->string = xmemdup("", 1);
78 break;
79
80 case OVSDB_TYPE_UUID:
81 uuid_zero(&atom->uuid);
82 break;
83
84 case OVSDB_N_TYPES:
85 default:
86 OVS_NOT_REACHED();
87 }
88 }
89
90 /* Returns a read-only atom of the given 'type' that has the default value for
91 * 'type'. The caller must not modify or free the returned atom.
92 *
93 * See ovsdb_atom_init_default() for an explanation of the default value of an
94 * atom. */
95 const union ovsdb_atom *
96 ovsdb_atom_default(enum ovsdb_atomic_type type)
97 {
98 static union ovsdb_atom default_atoms[OVSDB_N_TYPES];
99 static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
100
101 if (ovsthread_once_start(&once)) {
102 int i;
103
104 for (i = 0; i < OVSDB_N_TYPES; i++) {
105 if (i != OVSDB_TYPE_VOID) {
106 ovsdb_atom_init_default(&default_atoms[i], i);
107 }
108 }
109 ovsthread_once_done(&once);
110 }
111
112 ovs_assert(ovsdb_atomic_type_is_valid(type));
113 return &default_atoms[type];
114 }
115
116 /* Returns true if 'atom', which must have the given 'type', has the default
117 * value for that type.
118 *
119 * See ovsdb_atom_init_default() for an explanation of the default value of an
120 * atom. */
121 bool
122 ovsdb_atom_is_default(const union ovsdb_atom *atom,
123 enum ovsdb_atomic_type type)
124 {
125 switch (type) {
126 case OVSDB_TYPE_VOID:
127 OVS_NOT_REACHED();
128
129 case OVSDB_TYPE_INTEGER:
130 return atom->integer == 0;
131
132 case OVSDB_TYPE_REAL:
133 return atom->real == 0.0;
134
135 case OVSDB_TYPE_BOOLEAN:
136 return atom->boolean == false;
137
138 case OVSDB_TYPE_STRING:
139 return atom->string[0] == '\0';
140
141 case OVSDB_TYPE_UUID:
142 return uuid_is_zero(&atom->uuid);
143
144 case OVSDB_N_TYPES:
145 default:
146 OVS_NOT_REACHED();
147 }
148 }
149
150 /* Initializes 'new' as a copy of 'old', with the given 'type'.
151 *
152 * The caller must eventually arrange for 'new' to be destroyed (with
153 * ovsdb_atom_destroy()). */
154 void
155 ovsdb_atom_clone(union ovsdb_atom *new, const union ovsdb_atom *old,
156 enum ovsdb_atomic_type type)
157 {
158 switch (type) {
159 case OVSDB_TYPE_VOID:
160 OVS_NOT_REACHED();
161
162 case OVSDB_TYPE_INTEGER:
163 new->integer = old->integer;
164 break;
165
166 case OVSDB_TYPE_REAL:
167 new->real = old->real;
168 break;
169
170 case OVSDB_TYPE_BOOLEAN:
171 new->boolean = old->boolean;
172 break;
173
174 case OVSDB_TYPE_STRING:
175 new->string = xstrdup(old->string);
176 break;
177
178 case OVSDB_TYPE_UUID:
179 new->uuid = old->uuid;
180 break;
181
182 case OVSDB_N_TYPES:
183 default:
184 OVS_NOT_REACHED();
185 }
186 }
187
188 /* Swaps the contents of 'a' and 'b', which need not have the same type. */
189 void
190 ovsdb_atom_swap(union ovsdb_atom *a, union ovsdb_atom *b)
191 {
192 union ovsdb_atom tmp = *a;
193 *a = *b;
194 *b = tmp;
195 }
196
197 /* Returns a hash value for 'atom', which has the specified 'type', folding
198 * 'basis' into the calculation. */
199 uint32_t
200 ovsdb_atom_hash(const union ovsdb_atom *atom, enum ovsdb_atomic_type type,
201 uint32_t basis)
202 {
203 switch (type) {
204 case OVSDB_TYPE_VOID:
205 OVS_NOT_REACHED();
206
207 case OVSDB_TYPE_INTEGER:
208 return hash_int(atom->integer, basis);
209
210 case OVSDB_TYPE_REAL:
211 return hash_double(atom->real, basis);
212
213 case OVSDB_TYPE_BOOLEAN:
214 return hash_boolean(atom->boolean, basis);
215
216 case OVSDB_TYPE_STRING:
217 return hash_string(atom->string, basis);
218
219 case OVSDB_TYPE_UUID:
220 return hash_int(uuid_hash(&atom->uuid), basis);
221
222 case OVSDB_N_TYPES:
223 default:
224 OVS_NOT_REACHED();
225 }
226 }
227
228 /* Compares 'a' and 'b', which both have type 'type', and returns a
229 * strcmp()-like result. */
230 int
231 ovsdb_atom_compare_3way(const union ovsdb_atom *a,
232 const union ovsdb_atom *b,
233 enum ovsdb_atomic_type type)
234 {
235 switch (type) {
236 case OVSDB_TYPE_VOID:
237 OVS_NOT_REACHED();
238
239 case OVSDB_TYPE_INTEGER:
240 return a->integer < b->integer ? -1 : a->integer > b->integer;
241
242 case OVSDB_TYPE_REAL:
243 return a->real < b->real ? -1 : a->real > b->real;
244
245 case OVSDB_TYPE_BOOLEAN:
246 return a->boolean - b->boolean;
247
248 case OVSDB_TYPE_STRING:
249 return strcmp(a->string, b->string);
250
251 case OVSDB_TYPE_UUID:
252 return uuid_compare_3way(&a->uuid, &b->uuid);
253
254 case OVSDB_N_TYPES:
255 default:
256 OVS_NOT_REACHED();
257 }
258 }
259
260 static struct ovsdb_error *
261 unwrap_json(const struct json *json, const char *name,
262 enum json_type value_type, const struct json **value)
263 {
264 if (json->type != JSON_ARRAY
265 || json->u.array.n != 2
266 || json->u.array.elems[0]->type != JSON_STRING
267 || (name && strcmp(json->u.array.elems[0]->u.string, name))
268 || json->u.array.elems[1]->type != value_type)
269 {
270 *value = NULL;
271 return ovsdb_syntax_error(json, NULL, "expected [\"%s\", <%s>]", name,
272 json_type_to_string(value_type));
273 }
274 *value = json->u.array.elems[1];
275 return NULL;
276 }
277
278 static struct ovsdb_error *
279 parse_json_pair(const struct json *json,
280 const struct json **elem0, const struct json **elem1)
281 {
282 if (json->type != JSON_ARRAY || json->u.array.n != 2) {
283 return ovsdb_syntax_error(json, NULL, "expected 2-element array");
284 }
285 *elem0 = json->u.array.elems[0];
286 *elem1 = json->u.array.elems[1];
287 return NULL;
288 }
289
290 static void
291 ovsdb_symbol_referenced(struct ovsdb_symbol *symbol,
292 const struct ovsdb_base_type *base)
293 {
294 ovs_assert(base->type == OVSDB_TYPE_UUID);
295
296 if (base->u.uuid.refTableName) {
297 switch (base->u.uuid.refType) {
298 case OVSDB_REF_STRONG:
299 symbol->strong_ref = true;
300 break;
301 case OVSDB_REF_WEAK:
302 symbol->weak_ref = true;
303 break;
304 }
305 }
306 }
307
308 static union ovsdb_atom *
309 alloc_default_atoms(enum ovsdb_atomic_type type, size_t n)
310 {
311 if (type != OVSDB_TYPE_VOID && n) {
312 union ovsdb_atom *atoms;
313 unsigned int i;
314
315 atoms = xmalloc(n * sizeof *atoms);
316 for (i = 0; i < n; i++) {
317 ovsdb_atom_init_default(&atoms[i], type);
318 }
319 return atoms;
320 } else {
321 /* Avoid wasting memory in the n == 0 case, because xmalloc(0) is
322 * treated as xmalloc(1). */
323 return NULL;
324 }
325 }
326
327 static struct ovsdb_error * OVS_WARN_UNUSED_RESULT
328 ovsdb_atom_parse_uuid(struct uuid *uuid, const struct json *json,
329 struct ovsdb_symbol_table *symtab,
330 const struct ovsdb_base_type *base)
331 {
332 struct ovsdb_error *error0;
333 const struct json *value;
334
335 error0 = unwrap_json(json, "uuid", JSON_STRING, &value);
336 if (!error0) {
337 const char *uuid_string = json_string(value);
338 if (!uuid_from_string(uuid, uuid_string)) {
339 return ovsdb_syntax_error(json, NULL, "\"%s\" is not a valid UUID",
340 uuid_string);
341 }
342 } else if (symtab) {
343 struct ovsdb_error *error1;
344
345 error1 = unwrap_json(json, "named-uuid", JSON_STRING, &value);
346 if (!error1) {
347 struct ovsdb_symbol *symbol;
348
349 ovsdb_error_destroy(error0);
350 if (!ovsdb_parser_is_id(json_string(value))) {
351 return ovsdb_syntax_error(json, NULL, "named-uuid string is "
352 "not a valid <id>");
353 }
354
355 symbol = ovsdb_symbol_table_insert(symtab, json_string(value));
356 *uuid = symbol->uuid;
357 ovsdb_symbol_referenced(symbol, base);
358 return NULL;
359 }
360 ovsdb_error_destroy(error1);
361 }
362
363 return error0;
364 }
365
366 static struct ovsdb_error * OVS_WARN_UNUSED_RESULT
367 ovsdb_atom_from_json__(union ovsdb_atom *atom,
368 const struct ovsdb_base_type *base,
369 const struct json *json,
370 struct ovsdb_symbol_table *symtab)
371 {
372 enum ovsdb_atomic_type type = base->type;
373
374 switch (type) {
375 case OVSDB_TYPE_VOID:
376 OVS_NOT_REACHED();
377
378 case OVSDB_TYPE_INTEGER:
379 if (json->type == JSON_INTEGER) {
380 atom->integer = json->u.integer;
381 return NULL;
382 }
383 break;
384
385 case OVSDB_TYPE_REAL:
386 if (json->type == JSON_INTEGER) {
387 atom->real = json->u.integer;
388 return NULL;
389 } else if (json->type == JSON_REAL) {
390 atom->real = json->u.real;
391 return NULL;
392 }
393 break;
394
395 case OVSDB_TYPE_BOOLEAN:
396 if (json->type == JSON_TRUE) {
397 atom->boolean = true;
398 return NULL;
399 } else if (json->type == JSON_FALSE) {
400 atom->boolean = false;
401 return NULL;
402 }
403 break;
404
405 case OVSDB_TYPE_STRING:
406 if (json->type == JSON_STRING) {
407 atom->string = xstrdup(json->u.string);
408 return NULL;
409 }
410 break;
411
412 case OVSDB_TYPE_UUID:
413 return ovsdb_atom_parse_uuid(&atom->uuid, json, symtab, base);
414
415 case OVSDB_N_TYPES:
416 default:
417 OVS_NOT_REACHED();
418 }
419
420 return ovsdb_syntax_error(json, NULL, "expected %s",
421 ovsdb_atomic_type_to_string(type));
422 }
423
424 /* Parses 'json' as an atom of the type described by 'base'. If successful,
425 * returns NULL and initializes 'atom' with the parsed atom. On failure,
426 * returns an error and the contents of 'atom' are indeterminate. The caller
427 * is responsible for freeing the error or the atom that is returned.
428 *
429 * Violations of constraints expressed by 'base' are treated as errors.
430 *
431 * If 'symtab' is nonnull, then named UUIDs in 'symtab' are accepted. Refer to
432 * RFC 7047 for information about this, and for the syntax that this function
433 * accepts. If 'base' is a reference and a symbol is parsed, then the symbol's
434 * 'strong_ref' or 'weak_ref' member is set to true, as appropriate. */
435 struct ovsdb_error *
436 ovsdb_atom_from_json(union ovsdb_atom *atom,
437 const struct ovsdb_base_type *base,
438 const struct json *json,
439 struct ovsdb_symbol_table *symtab)
440 {
441 struct ovsdb_error *error;
442
443 error = ovsdb_atom_from_json__(atom, base, json, symtab);
444 if (error) {
445 return error;
446 }
447
448 error = ovsdb_atom_check_constraints(atom, base);
449 if (error) {
450 ovsdb_atom_destroy(atom, base->type);
451 }
452 return error;
453 }
454
455 /* Converts 'atom', of the specified 'type', to JSON format, and returns the
456 * JSON. The caller is responsible for freeing the returned JSON.
457 *
458 * Refer to RFC 7047 for the format of the JSON that this function produces. */
459 struct json *
460 ovsdb_atom_to_json(const union ovsdb_atom *atom, enum ovsdb_atomic_type type)
461 {
462 switch (type) {
463 case OVSDB_TYPE_VOID:
464 OVS_NOT_REACHED();
465
466 case OVSDB_TYPE_INTEGER:
467 return json_integer_create(atom->integer);
468
469 case OVSDB_TYPE_REAL:
470 return json_real_create(atom->real);
471
472 case OVSDB_TYPE_BOOLEAN:
473 return json_boolean_create(atom->boolean);
474
475 case OVSDB_TYPE_STRING:
476 return json_string_create(atom->string);
477
478 case OVSDB_TYPE_UUID:
479 return wrap_json("uuid", json_string_create_nocopy(
480 xasprintf(UUID_FMT, UUID_ARGS(&atom->uuid))));
481
482 case OVSDB_N_TYPES:
483 default:
484 OVS_NOT_REACHED();
485 }
486 }
487
488 static char *
489 ovsdb_atom_from_string__(union ovsdb_atom *atom,
490 union ovsdb_atom **range_end_atom,
491 const struct ovsdb_base_type *base, const char *s,
492 struct ovsdb_symbol_table *symtab)
493 {
494 enum ovsdb_atomic_type type = base->type;
495
496 switch (type) {
497 case OVSDB_TYPE_VOID:
498 OVS_NOT_REACHED();
499
500 case OVSDB_TYPE_INTEGER: {
501 long long int integer, end;
502 if (range_end_atom
503 && str_to_llong_range(s, 10, &integer, &end)) {
504 if (end < integer) {
505 return xasprintf("\"%s\" is not a valid range. "
506 "Range end cannot be before start.", s);
507 }
508 *range_end_atom = alloc_default_atoms(type, 1);
509 if (!(*range_end_atom)) {
510 return xasprintf("\"%s\" is not a valid range", s);
511 }
512 (*range_end_atom)->integer = end;
513 } else if (!str_to_llong(s, 10, &integer)) {
514 return xasprintf("\"%s\" is not a valid integer or range", s);
515 }
516 atom->integer = integer;
517 }
518 break;
519
520 case OVSDB_TYPE_REAL:
521 if (!str_to_double(s, &atom->real)) {
522 return xasprintf("\"%s\" is not a valid real number", s);
523 }
524 /* Our JSON input routines map negative zero to zero, so do that here
525 * too for consistency. */
526 if (atom->real == 0.0) {
527 atom->real = 0.0;
528 }
529 break;
530
531 case OVSDB_TYPE_BOOLEAN:
532 if (!strcmp(s, "true") || !strcmp(s, "yes") || !strcmp(s, "on")
533 || !strcmp(s, "1")) {
534 atom->boolean = true;
535 } else if (!strcmp(s, "false") || !strcmp(s, "no") || !strcmp(s, "off")
536 || !strcmp(s, "0")) {
537 atom->boolean = false;
538 } else {
539 return xasprintf("\"%s\" is not a valid boolean "
540 "(use \"true\" or \"false\")", s);
541 }
542 break;
543
544 case OVSDB_TYPE_STRING:
545 if (*s == '\0') {
546 return xstrdup("An empty string is not valid as input; "
547 "use \"\" to represent the empty string");
548 } else if (*s == '"') {
549 size_t s_len = strlen(s);
550
551 if (s_len < 2 || s[s_len - 1] != '"') {
552 return xasprintf("%s: missing quote at end of "
553 "quoted string", s);
554 } else if (!json_string_unescape(s + 1, s_len - 2,
555 &atom->string)) {
556 char *error = xasprintf("%s: %s", s, atom->string);
557 free(atom->string);
558 return error;
559 }
560 } else {
561 atom->string = xstrdup(s);
562 }
563 break;
564
565 case OVSDB_TYPE_UUID:
566 if (*s == '@') {
567 struct ovsdb_symbol *symbol = ovsdb_symbol_table_insert(symtab, s);
568 atom->uuid = symbol->uuid;
569 ovsdb_symbol_referenced(symbol, base);
570 } else if (!uuid_from_string(&atom->uuid, s)) {
571 return xasprintf("\"%s\" is not a valid UUID", s);
572 }
573 break;
574
575 case OVSDB_N_TYPES:
576 default:
577 OVS_NOT_REACHED();
578 }
579
580 return NULL;
581 }
582
583 /* Initializes 'atom' and optionally 'range_end_atom' to a value of type 'base'
584 * parsed from 's', which takes one of the following forms:
585 *
586 * - OVSDB_TYPE_INTEGER: A decimal integer optionally preceded by a sign
587 * or two decimal integers optionally preceded by a sign and separated
588 * by a hyphen, representing inclusive range of integers
589 * ['atom', 'range_end_atom'].
590 *
591 * - OVSDB_TYPE_REAL: A floating-point number in the format accepted by
592 * strtod().
593 *
594 * - OVSDB_TYPE_BOOLEAN: "true", "yes", "on", "1" for true, or "false",
595 * "no", "off", or "0" for false.
596 *
597 * - OVSDB_TYPE_STRING: A JSON string if it begins with a quote, otherwise
598 * an arbitrary string.
599 *
600 * - OVSDB_TYPE_UUID: A UUID in RFC 4122 format. If 'symtab' is nonnull,
601 * then an identifier beginning with '@' is also acceptable. If the
602 * named identifier is already in 'symtab', then the associated UUID is
603 * used; otherwise, a new, random UUID is used and added to the symbol
604 * table. If 'base' is a reference and a symbol is parsed, then the
605 * symbol's 'strong_ref' or 'weak_ref' member is set to true, as
606 * appropriate.
607 *
608 * Returns a null pointer if successful, otherwise an error message describing
609 * the problem. On failure, the contents of 'atom' are indeterminate. The
610 * caller is responsible for freeing the atom or the error.
611 *
612 * Does not attempt to parse range if 'range_end_atom' is a null pointer.
613 * Dynamically allocates ovdsb_atom and stores its address in '*range_end_atom'
614 * if successfully parses range. Caller is responsible for deallocating
615 * the memory by calling 'ovsdb_atom_destroy' and then 'free' on the address.
616 * Does not allocate memory and sets '*range_end_atom' to a null pointer
617 * if does not parse a range or fails for any reason.
618 */
619 char *
620 ovsdb_atom_from_string(union ovsdb_atom *atom,
621 union ovsdb_atom **range_end_atom,
622 const struct ovsdb_base_type *base, const char *s,
623 struct ovsdb_symbol_table *symtab)
624 {
625 struct ovsdb_error *error;
626 char *msg;
627
628 if (range_end_atom) {
629 *range_end_atom = NULL;
630 }
631
632 msg = ovsdb_atom_from_string__(atom, range_end_atom, base, s, symtab);
633 if (msg) {
634 return msg;
635 }
636
637 error = ovsdb_atom_check_constraints(atom, base);
638
639 if (!error && range_end_atom && *range_end_atom) {
640 /* Check range constraints */
641 int64_t start = atom->integer;
642 int64_t end = (*range_end_atom)->integer;
643 if (base->enum_) {
644 for (int64_t i = start + 1; i <= end; i++) {
645 union ovsdb_atom ai = { .integer = i };
646 error = ovsdb_atom_check_constraints(&ai, base);
647 if (error) {
648 break;
649 }
650 }
651 } else {
652 error = ovsdb_atom_check_constraints(*range_end_atom, base);
653 }
654
655 if (!error) {
656 error = ovsdb_atom_range_check_size(start, end);
657 }
658 }
659
660 if (error) {
661 ovsdb_atom_destroy(atom, base->type);
662 if (range_end_atom && *range_end_atom) {
663 ovsdb_atom_destroy(*range_end_atom, base->type);
664 free(*range_end_atom);
665 *range_end_atom = NULL;
666 }
667 msg = ovsdb_error_to_string_free(error);
668 }
669 return msg;
670 }
671
672 static bool
673 string_needs_quotes(const char *s)
674 {
675 const char *p = s;
676 unsigned char c;
677
678 c = *p++;
679 if (!isalpha(c) && c != '_') {
680 return true;
681 }
682
683 while ((c = *p++) != '\0') {
684 if (!isalpha(c) && c != '_' && c != '-' && c != '.') {
685 return true;
686 }
687 }
688
689 if (!strcmp(s, "true") || !strcmp(s, "false")) {
690 return true;
691 }
692
693 return false;
694 }
695
696 /* Appends 'atom' (which has the given 'type') to 'out', in a format acceptable
697 * to ovsdb_atom_from_string(). */
698 void
699 ovsdb_atom_to_string(const union ovsdb_atom *atom, enum ovsdb_atomic_type type,
700 struct ds *out)
701 {
702 switch (type) {
703 case OVSDB_TYPE_VOID:
704 OVS_NOT_REACHED();
705
706 case OVSDB_TYPE_INTEGER:
707 ds_put_format(out, "%"PRId64, atom->integer);
708 break;
709
710 case OVSDB_TYPE_REAL:
711 ds_put_format(out, "%.*g", DBL_DIG, atom->real);
712 break;
713
714 case OVSDB_TYPE_BOOLEAN:
715 ds_put_cstr(out, atom->boolean ? "true" : "false");
716 break;
717
718 case OVSDB_TYPE_STRING:
719 if (string_needs_quotes(atom->string)) {
720 struct json json;
721
722 json.type = JSON_STRING;
723 json.u.string = atom->string;
724 json_to_ds(&json, 0, out);
725 } else {
726 ds_put_cstr(out, atom->string);
727 }
728 break;
729
730 case OVSDB_TYPE_UUID:
731 ds_put_format(out, UUID_FMT, UUID_ARGS(&atom->uuid));
732 break;
733
734 case OVSDB_N_TYPES:
735 default:
736 OVS_NOT_REACHED();
737 }
738 }
739
740 /* Appends 'atom' (which has the given 'type') to 'out', in a bare string
741 * format that cannot be parsed uniformly back into a datum but is easier for
742 * shell scripts, etc., to deal with. */
743 void
744 ovsdb_atom_to_bare(const union ovsdb_atom *atom, enum ovsdb_atomic_type type,
745 struct ds *out)
746 {
747 if (type == OVSDB_TYPE_STRING) {
748 ds_put_cstr(out, atom->string);
749 } else {
750 ovsdb_atom_to_string(atom, type, out);
751 }
752 }
753
754 static struct ovsdb_error *
755 check_string_constraints(const char *s,
756 const struct ovsdb_string_constraints *c)
757 {
758 size_t n_chars;
759 char *msg;
760
761 msg = utf8_validate(s, &n_chars);
762 if (msg) {
763 struct ovsdb_error *error;
764
765 error = ovsdb_error("constraint violation",
766 "not a valid UTF-8 string: %s", msg);
767 free(msg);
768 return error;
769 }
770
771 if (n_chars < c->minLen) {
772 return ovsdb_error(
773 "constraint violation",
774 "\"%s\" length %"PRIuSIZE" is less than minimum allowed "
775 "length %u", s, n_chars, c->minLen);
776 } else if (n_chars > c->maxLen) {
777 return ovsdb_error(
778 "constraint violation",
779 "\"%s\" length %"PRIuSIZE" is greater than maximum allowed "
780 "length %u", s, n_chars, c->maxLen);
781 }
782
783 return NULL;
784 }
785
786 /* Checks whether 'atom' meets the constraints (if any) defined in 'base'.
787 * (base->type must specify 'atom''s type.) Returns a null pointer if the
788 * constraints are met, otherwise an error that explains the violation.
789 *
790 * Checking UUID constraints is deferred to transaction commit time, so this
791 * function does nothing for UUID constraints. */
792 struct ovsdb_error *
793 ovsdb_atom_check_constraints(const union ovsdb_atom *atom,
794 const struct ovsdb_base_type *base)
795 {
796 if (base->enum_
797 && ovsdb_datum_find_key(base->enum_, atom, base->type) == UINT_MAX) {
798 struct ovsdb_error *error;
799 struct ds actual = DS_EMPTY_INITIALIZER;
800 struct ds valid = DS_EMPTY_INITIALIZER;
801
802 ovsdb_atom_to_string(atom, base->type, &actual);
803 ovsdb_datum_to_string(base->enum_,
804 ovsdb_base_type_get_enum_type(base->type),
805 &valid);
806 error = ovsdb_error("constraint violation",
807 "%s is not one of the allowed values (%s)",
808 ds_cstr(&actual), ds_cstr(&valid));
809 ds_destroy(&actual);
810 ds_destroy(&valid);
811
812 return error;
813 }
814
815 switch (base->type) {
816 case OVSDB_TYPE_VOID:
817 OVS_NOT_REACHED();
818
819 case OVSDB_TYPE_INTEGER:
820 if (atom->integer >= base->u.integer.min
821 && atom->integer <= base->u.integer.max) {
822 return NULL;
823 } else if (base->u.integer.min != INT64_MIN) {
824 if (base->u.integer.max != INT64_MAX) {
825 return ovsdb_error("constraint violation",
826 "%"PRId64" is not in the valid range "
827 "%"PRId64" to %"PRId64" (inclusive)",
828 atom->integer,
829 base->u.integer.min, base->u.integer.max);
830 } else {
831 return ovsdb_error("constraint violation",
832 "%"PRId64" is less than minimum allowed "
833 "value %"PRId64,
834 atom->integer, base->u.integer.min);
835 }
836 } else {
837 return ovsdb_error("constraint violation",
838 "%"PRId64" is greater than maximum allowed "
839 "value %"PRId64,
840 atom->integer, base->u.integer.max);
841 }
842 OVS_NOT_REACHED();
843
844 case OVSDB_TYPE_REAL:
845 if (atom->real >= base->u.real.min && atom->real <= base->u.real.max) {
846 return NULL;
847 } else if (base->u.real.min != -DBL_MAX) {
848 if (base->u.real.max != DBL_MAX) {
849 return ovsdb_error("constraint violation",
850 "%.*g is not in the valid range "
851 "%.*g to %.*g (inclusive)",
852 DBL_DIG, atom->real,
853 DBL_DIG, base->u.real.min,
854 DBL_DIG, base->u.real.max);
855 } else {
856 return ovsdb_error("constraint violation",
857 "%.*g is less than minimum allowed "
858 "value %.*g",
859 DBL_DIG, atom->real,
860 DBL_DIG, base->u.real.min);
861 }
862 } else {
863 return ovsdb_error("constraint violation",
864 "%.*g is greater than maximum allowed "
865 "value %.*g",
866 DBL_DIG, atom->real,
867 DBL_DIG, base->u.real.max);
868 }
869 OVS_NOT_REACHED();
870
871 case OVSDB_TYPE_BOOLEAN:
872 return NULL;
873
874 case OVSDB_TYPE_STRING:
875 return check_string_constraints(atom->string, &base->u.string);
876
877 case OVSDB_TYPE_UUID:
878 return NULL;
879
880 case OVSDB_N_TYPES:
881 default:
882 OVS_NOT_REACHED();
883 }
884 }
885 \f
886 /* Initializes 'datum' as an empty datum. (An empty datum can be treated as
887 * any type.) */
888 void
889 ovsdb_datum_init_empty(struct ovsdb_datum *datum)
890 {
891 datum->n = 0;
892 datum->keys = NULL;
893 datum->values = NULL;
894 }
895
896 /* Initializes 'datum' as a datum that has the default value for 'type'.
897 *
898 * The default value for a particular type is as defined in RFC 7047:
899 *
900 * - If n_min is 0, then the default value is the empty set (or map).
901 *
902 * - If n_min is 1, the default value is a single value or a single
903 * key-value pair, whose key and value are the defaults for their
904 * atomic types. (See ovsdb_atom_init_default() for details.)
905 *
906 * - n_min > 1 is invalid. See ovsdb_type_is_valid().
907 */
908 void
909 ovsdb_datum_init_default(struct ovsdb_datum *datum,
910 const struct ovsdb_type *type)
911 {
912 datum->n = type->n_min;
913 datum->keys = alloc_default_atoms(type->key.type, datum->n);
914 datum->values = alloc_default_atoms(type->value.type, datum->n);
915 }
916
917 /* Returns a read-only datum of the given 'type' that has the default value for
918 * 'type'. The caller must not modify or free the returned datum.
919 *
920 * See ovsdb_datum_init_default() for an explanation of the default value of a
921 * datum. */
922 const struct ovsdb_datum *
923 ovsdb_datum_default(const struct ovsdb_type *type)
924 {
925 if (type->n_min == 0) {
926 static const struct ovsdb_datum empty;
927 return &empty;
928 } else if (type->n_min == 1) {
929 static struct ovsdb_datum default_data[OVSDB_N_TYPES][OVSDB_N_TYPES];
930 struct ovsdb_datum *d;
931 int kt = type->key.type;
932 int vt = type->value.type;
933
934 ovs_assert(ovsdb_type_is_valid(type));
935
936 d = &default_data[kt][vt];
937 if (!d->n) {
938 d->n = 1;
939 d->keys = CONST_CAST(union ovsdb_atom *, ovsdb_atom_default(kt));
940 if (vt != OVSDB_TYPE_VOID) {
941 d->values = CONST_CAST(union ovsdb_atom *,
942 ovsdb_atom_default(vt));
943 }
944 }
945 return d;
946 } else {
947 OVS_NOT_REACHED();
948 }
949 }
950
951 /* Returns true if 'datum', which must have the given 'type', has the default
952 * value for that type.
953 *
954 * See ovsdb_datum_init_default() for an explanation of the default value of a
955 * datum. */
956 bool
957 ovsdb_datum_is_default(const struct ovsdb_datum *datum,
958 const struct ovsdb_type *type)
959 {
960 size_t i;
961
962 if (datum->n != type->n_min) {
963 return false;
964 }
965 for (i = 0; i < datum->n; i++) {
966 if (!ovsdb_atom_is_default(&datum->keys[i], type->key.type)) {
967 return false;
968 }
969 if (type->value.type != OVSDB_TYPE_VOID
970 && !ovsdb_atom_is_default(&datum->values[i], type->value.type)) {
971 return false;
972 }
973 }
974
975 return true;
976 }
977
978 static union ovsdb_atom *
979 clone_atoms(const union ovsdb_atom *old, enum ovsdb_atomic_type type, size_t n)
980 {
981 if (type != OVSDB_TYPE_VOID && n) {
982 union ovsdb_atom *new;
983 unsigned int i;
984
985 new = xmalloc(n * sizeof *new);
986 for (i = 0; i < n; i++) {
987 ovsdb_atom_clone(&new[i], &old[i], type);
988 }
989 return new;
990 } else {
991 /* Avoid wasting memory in the n == 0 case, because xmalloc(0) is
992 * treated as xmalloc(1). */
993 return NULL;
994 }
995 }
996
997 /* Initializes 'new' as a copy of 'old', with the given 'type'.
998 *
999 * The caller must eventually arrange for 'new' to be destroyed (with
1000 * ovsdb_datum_destroy()). */
1001 void
1002 ovsdb_datum_clone(struct ovsdb_datum *new, const struct ovsdb_datum *old,
1003 const struct ovsdb_type *type)
1004 {
1005 unsigned int n = old->n;
1006 new->n = n;
1007 new->keys = clone_atoms(old->keys, type->key.type, n);
1008 new->values = clone_atoms(old->values, type->value.type, n);
1009 }
1010
1011 static void
1012 free_data(enum ovsdb_atomic_type type,
1013 union ovsdb_atom *atoms, size_t n_atoms)
1014 {
1015 if (ovsdb_atom_needs_destruction(type)) {
1016 unsigned int i;
1017 for (i = 0; i < n_atoms; i++) {
1018 ovsdb_atom_destroy(&atoms[i], type);
1019 }
1020 }
1021 free(atoms);
1022 }
1023
1024 /* Frees the data owned by 'datum', which must have the given 'type'.
1025 *
1026 * This does not actually call free(datum). If necessary, the caller must be
1027 * responsible for that. */
1028 void
1029 ovsdb_datum_destroy(struct ovsdb_datum *datum, const struct ovsdb_type *type)
1030 {
1031 free_data(type->key.type, datum->keys, datum->n);
1032 free_data(type->value.type, datum->values, datum->n);
1033 }
1034
1035 /* Swaps the contents of 'a' and 'b', which need not have the same type. */
1036 void
1037 ovsdb_datum_swap(struct ovsdb_datum *a, struct ovsdb_datum *b)
1038 {
1039 struct ovsdb_datum tmp = *a;
1040 *a = *b;
1041 *b = tmp;
1042 }
1043
1044 struct ovsdb_datum_sort_cbdata {
1045 enum ovsdb_atomic_type key_type;
1046 enum ovsdb_atomic_type value_type;
1047 struct ovsdb_datum *datum;
1048 };
1049
1050 static int
1051 ovsdb_datum_sort_compare_cb(size_t a, size_t b, void *cbdata_)
1052 {
1053 struct ovsdb_datum_sort_cbdata *cbdata = cbdata_;
1054 int retval;
1055
1056 retval = ovsdb_atom_compare_3way(&cbdata->datum->keys[a],
1057 &cbdata->datum->keys[b],
1058 cbdata->key_type);
1059 if (retval || cbdata->value_type == OVSDB_TYPE_VOID) {
1060 return retval;
1061 }
1062
1063 return ovsdb_atom_compare_3way(&cbdata->datum->values[a],
1064 &cbdata->datum->values[b],
1065 cbdata->value_type);
1066 }
1067
1068 static void
1069 ovsdb_datum_sort_swap_cb(size_t a, size_t b, void *cbdata_)
1070 {
1071 struct ovsdb_datum_sort_cbdata *cbdata = cbdata_;
1072
1073 ovsdb_atom_swap(&cbdata->datum->keys[a], &cbdata->datum->keys[b]);
1074 if (cbdata->datum->values) {
1075 ovsdb_atom_swap(&cbdata->datum->values[a], &cbdata->datum->values[b]);
1076 }
1077 }
1078
1079 static void
1080 ovsdb_datum_sort__(struct ovsdb_datum *datum, enum ovsdb_atomic_type key_type,
1081 enum ovsdb_atomic_type value_type)
1082 {
1083 struct ovsdb_datum_sort_cbdata cbdata;
1084
1085 cbdata.key_type = key_type;
1086 cbdata.value_type = value_type;
1087 cbdata.datum = datum;
1088 sort(datum->n, ovsdb_datum_sort_compare_cb, ovsdb_datum_sort_swap_cb,
1089 &cbdata);
1090 }
1091
1092 /* The keys in an ovsdb_datum must be unique and in sorted order. Most
1093 * functions that modify an ovsdb_datum maintain these invariants. For those
1094 * that don't, this function checks and restores these invariants for 'datum',
1095 * whose keys are of type 'key_type'.
1096 *
1097 * This function returns NULL if successful, otherwise an error message. The
1098 * caller must free the returned error when it is no longer needed. On error,
1099 * 'datum' is sorted but not unique. */
1100 struct ovsdb_error *
1101 ovsdb_datum_sort(struct ovsdb_datum *datum, enum ovsdb_atomic_type key_type)
1102 {
1103 size_t i;
1104
1105 if (datum->n < 2) {
1106 return NULL;
1107 }
1108
1109 ovsdb_datum_sort__(datum, key_type, OVSDB_TYPE_VOID);
1110
1111 for (i = 0; i < datum->n - 1; i++) {
1112 if (ovsdb_atom_equals(&datum->keys[i], &datum->keys[i + 1],
1113 key_type)) {
1114 if (datum->values) {
1115 return ovsdb_error(NULL, "map contains duplicate key");
1116 } else {
1117 return ovsdb_error(NULL, "set contains duplicate");
1118 }
1119 }
1120 }
1121 return NULL;
1122 }
1123
1124 /* This function is the same as ovsdb_datum_sort(), except that the caller
1125 * knows that 'datum' is unique. The operation therefore "cannot fail", so
1126 * this function assert-fails if it actually does. */
1127 void
1128 ovsdb_datum_sort_assert(struct ovsdb_datum *datum,
1129 enum ovsdb_atomic_type key_type)
1130 {
1131 struct ovsdb_error *error = ovsdb_datum_sort(datum, key_type);
1132 if (error) {
1133 OVS_NOT_REACHED();
1134 }
1135 }
1136
1137 /* This is similar to ovsdb_datum_sort(), except that it drops duplicate keys
1138 * instead of reporting an error. In a map type, the smallest value among a
1139 * group of duplicate pairs is retained and the others are dropped.
1140 *
1141 * Returns the number of keys (or pairs) that were dropped. */
1142 size_t
1143 ovsdb_datum_sort_unique(struct ovsdb_datum *datum,
1144 enum ovsdb_atomic_type key_type,
1145 enum ovsdb_atomic_type value_type)
1146 {
1147 size_t src, dst;
1148
1149 if (datum->n < 2) {
1150 return 0;
1151 }
1152
1153 ovsdb_datum_sort__(datum, key_type, value_type);
1154
1155 dst = 1;
1156 for (src = 1; src < datum->n; src++) {
1157 if (ovsdb_atom_equals(&datum->keys[src], &datum->keys[dst - 1],
1158 key_type)) {
1159 ovsdb_atom_destroy(&datum->keys[src], key_type);
1160 if (value_type != OVSDB_TYPE_VOID) {
1161 ovsdb_atom_destroy(&datum->values[src], value_type);
1162 }
1163 } else {
1164 if (src != dst) {
1165 datum->keys[dst] = datum->keys[src];
1166 if (value_type != OVSDB_TYPE_VOID) {
1167 datum->values[dst] = datum->values[src];
1168 }
1169 }
1170 dst++;
1171 }
1172 }
1173 datum->n = dst;
1174 return datum->n - src;
1175 }
1176
1177 /* Checks that each of the atoms in 'datum' conforms to the constraints
1178 * specified by its 'type'. Returns an error if a constraint is violated,
1179 * otherwise a null pointer.
1180 *
1181 * This function is not commonly useful because the most ordinary way to obtain
1182 * a datum is ultimately via ovsdb_atom_from_string() or
1183 * ovsdb_atom_from_json(), which check constraints themselves. */
1184 struct ovsdb_error *
1185 ovsdb_datum_check_constraints(const struct ovsdb_datum *datum,
1186 const struct ovsdb_type *type)
1187 {
1188 struct ovsdb_error *error;
1189 unsigned int i;
1190
1191 for (i = 0; i < datum->n; i++) {
1192 error = ovsdb_atom_check_constraints(&datum->keys[i], &type->key);
1193 if (error) {
1194 return error;
1195 }
1196 }
1197
1198 if (type->value.type != OVSDB_TYPE_VOID) {
1199 for (i = 0; i < datum->n; i++) {
1200 error = ovsdb_atom_check_constraints(&datum->values[i],
1201 &type->value);
1202 if (error) {
1203 return error;
1204 }
1205 }
1206 }
1207
1208 return NULL;
1209 }
1210
1211 static struct ovsdb_error *
1212 ovsdb_datum_from_json__(struct ovsdb_datum *datum,
1213 const struct ovsdb_type *type,
1214 const struct json *json,
1215 struct ovsdb_symbol_table *symtab)
1216 {
1217 struct ovsdb_error *error;
1218
1219 if (ovsdb_type_is_map(type)
1220 || (json->type == JSON_ARRAY
1221 && json->u.array.n > 0
1222 && json->u.array.elems[0]->type == JSON_STRING
1223 && !strcmp(json->u.array.elems[0]->u.string, "set"))) {
1224 bool is_map = ovsdb_type_is_map(type);
1225 const char *class = is_map ? "map" : "set";
1226 const struct json *inner;
1227 unsigned int i;
1228 size_t n;
1229
1230 error = unwrap_json(json, class, JSON_ARRAY, &inner);
1231 if (error) {
1232 return error;
1233 }
1234
1235 n = inner->u.array.n;
1236 if (n < type->n_min || n > type->n_max) {
1237 return ovsdb_syntax_error(json, NULL, "%s must have %u to "
1238 "%u members but %"PRIuSIZE" are present",
1239 class, type->n_min, type->n_max, n);
1240 }
1241
1242 datum->n = 0;
1243 datum->keys = xmalloc(n * sizeof *datum->keys);
1244 datum->values = is_map ? xmalloc(n * sizeof *datum->values) : NULL;
1245 for (i = 0; i < n; i++) {
1246 const struct json *element = inner->u.array.elems[i];
1247 const struct json *key = NULL;
1248 const struct json *value = NULL;
1249
1250 if (!is_map) {
1251 key = element;
1252 } else {
1253 error = parse_json_pair(element, &key, &value);
1254 if (error) {
1255 goto error;
1256 }
1257 }
1258
1259 error = ovsdb_atom_from_json(&datum->keys[i], &type->key,
1260 key, symtab);
1261 if (error) {
1262 goto error;
1263 }
1264
1265 if (is_map) {
1266 error = ovsdb_atom_from_json(&datum->values[i],
1267 &type->value, value, symtab);
1268 if (error) {
1269 ovsdb_atom_destroy(&datum->keys[i], type->key.type);
1270 goto error;
1271 }
1272 }
1273
1274 datum->n++;
1275 }
1276 return NULL;
1277
1278 error:
1279 ovsdb_datum_destroy(datum, type);
1280 return error;
1281 } else {
1282 datum->n = 1;
1283 datum->keys = xmalloc(sizeof *datum->keys);
1284 datum->values = NULL;
1285
1286 error = ovsdb_atom_from_json(&datum->keys[0], &type->key,
1287 json, symtab);
1288 if (error) {
1289 free(datum->keys);
1290 }
1291 return error;
1292 }
1293 }
1294
1295 /* Parses 'json' as a datum of the type described by 'type'. If successful,
1296 * returns NULL and initializes 'datum' with the parsed datum. On failure,
1297 * returns an error and the contents of 'datum' are indeterminate. The caller
1298 * is responsible for freeing the error or the datum that is returned.
1299 *
1300 * Violations of constraints expressed by 'type' are treated as errors.
1301 *
1302 * If 'symtab' is nonnull, then named UUIDs in 'symtab' are accepted. Refer to
1303 * RFC 7047 for information about this, and for the syntax that this function
1304 * accepts. */
1305 struct ovsdb_error * OVS_WARN_UNUSED_RESULT
1306 ovsdb_datum_from_json(struct ovsdb_datum *datum,
1307 const struct ovsdb_type *type,
1308 const struct json *json,
1309 struct ovsdb_symbol_table *symtab)
1310 {
1311 struct ovsdb_error *error;
1312
1313 error = ovsdb_datum_from_json__(datum, type, json, symtab);
1314 if (error) {
1315 return error;
1316 }
1317
1318 error = ovsdb_datum_sort(datum, type->key.type);
1319 if (error) {
1320 ovsdb_datum_destroy(datum, type);
1321 }
1322 return error;
1323 }
1324
1325 /* Parses 'json' as a datum of the type described by 'type' for internal
1326 * use. This function is similar to 'ovsdb_datum_from_json', except the
1327 * member size of set or map is not checked.
1328 *
1329 * The datum generated should be used then discard. It is not suitable
1330 * for storing into IDL because of the possible member size violation. */
1331 struct ovsdb_error * OVS_WARN_UNUSED_RESULT
1332 ovsdb_transient_datum_from_json(struct ovsdb_datum *datum,
1333 const struct ovsdb_type *type,
1334 const struct json *json)
1335 {
1336 struct ovsdb_type relaxed_type = *type;
1337
1338 relaxed_type.n_min = 0;
1339 relaxed_type.n_max = UINT_MAX;
1340
1341 return ovsdb_datum_from_json(datum, &relaxed_type, json, NULL);
1342 }
1343
1344 /* Parses 'json' as a datum of the type described by 'type', but ignoring all
1345 * constraints. */
1346 struct ovsdb_error * OVS_WARN_UNUSED_RESULT
1347 ovsdb_unconstrained_datum_from_json(struct ovsdb_datum *datum,
1348 const struct ovsdb_type *type,
1349 const struct json *json)
1350 {
1351 struct ovsdb_type relaxed_type;
1352
1353 ovsdb_base_type_init(&relaxed_type.key, type->key.type);
1354 ovsdb_base_type_init(&relaxed_type.value, type->value.type);
1355 relaxed_type.n_min = 0;
1356 relaxed_type.n_max = UINT_MAX;
1357
1358 return ovsdb_datum_from_json(datum, &relaxed_type, json, NULL);
1359 }
1360
1361 static struct json *
1362 ovsdb_base_to_json(const union ovsdb_atom *atom,
1363 const struct ovsdb_base_type *base,
1364 bool use_row_names)
1365 {
1366 if (!use_row_names
1367 || base->type != OVSDB_TYPE_UUID
1368 || !base->u.uuid.refTableName) {
1369 return ovsdb_atom_to_json(atom, base->type);
1370 } else {
1371 return json_array_create_2(
1372 json_string_create("named-uuid"),
1373 json_string_create_nocopy(ovsdb_data_row_name(&atom->uuid)));
1374 }
1375 }
1376
1377 static struct json *
1378 ovsdb_datum_to_json__(const struct ovsdb_datum *datum,
1379 const struct ovsdb_type *type,
1380 bool use_row_names)
1381 {
1382 if (ovsdb_type_is_map(type)) {
1383 struct json **elems;
1384 size_t i;
1385
1386 elems = xmalloc(datum->n * sizeof *elems);
1387 for (i = 0; i < datum->n; i++) {
1388 elems[i] = json_array_create_2(
1389 ovsdb_base_to_json(&datum->keys[i], &type->key,
1390 use_row_names),
1391 ovsdb_base_to_json(&datum->values[i], &type->value,
1392 use_row_names));
1393 }
1394
1395 return wrap_json("map", json_array_create(elems, datum->n));
1396 } else if (datum->n == 1) {
1397 return ovsdb_base_to_json(&datum->keys[0], &type->key, use_row_names);
1398 } else {
1399 struct json **elems;
1400 size_t i;
1401
1402 elems = xmalloc(datum->n * sizeof *elems);
1403 for (i = 0; i < datum->n; i++) {
1404 elems[i] = ovsdb_base_to_json(&datum->keys[i], &type->key,
1405 use_row_names);
1406 }
1407
1408 return wrap_json("set", json_array_create(elems, datum->n));
1409 }
1410 }
1411
1412 /* Converts 'datum', of the specified 'type', to JSON format, and returns the
1413 * JSON. The caller is responsible for freeing the returned JSON.
1414 *
1415 * 'type' constraints on datum->n are ignored.
1416 *
1417 * Refer to RFC 7047 for the format of the JSON that this function produces. */
1418 struct json *
1419 ovsdb_datum_to_json(const struct ovsdb_datum *datum,
1420 const struct ovsdb_type *type)
1421 {
1422 return ovsdb_datum_to_json__(datum, type, false);
1423 }
1424
1425 struct json *
1426 ovsdb_datum_to_json_with_row_names(const struct ovsdb_datum *datum,
1427 const struct ovsdb_type *type)
1428 {
1429 return ovsdb_datum_to_json__(datum, type, true);
1430 }
1431
1432 static const char *
1433 skip_spaces(const char *p)
1434 {
1435 while (isspace((unsigned char) *p)) {
1436 p++;
1437 }
1438 return p;
1439 }
1440
1441 static char *
1442 parse_atom_token(const char **s, const struct ovsdb_base_type *base,
1443 union ovsdb_atom *atom, union ovsdb_atom **range_end_atom,
1444 struct ovsdb_symbol_table *symtab)
1445 {
1446 char *token, *error;
1447
1448 error = ovsdb_token_parse(s, &token);
1449 if (!error) {
1450 error = ovsdb_atom_from_string(atom, range_end_atom,
1451 base, token, symtab);
1452 free(token);
1453 }
1454 return error;
1455 }
1456
1457 static char *
1458 parse_key_value(const char **s, const struct ovsdb_type *type,
1459 union ovsdb_atom *key, union ovsdb_atom *value,
1460 struct ovsdb_symbol_table *symtab,
1461 union ovsdb_atom **range_end_key)
1462 {
1463 const char *start = *s;
1464 char *error;
1465
1466 error = parse_atom_token(s, &type->key, key, range_end_key, symtab);
1467
1468 if (!error && type->value.type != OVSDB_TYPE_VOID) {
1469 *s = skip_spaces(*s);
1470 if (**s == '=') {
1471 (*s)++;
1472 *s = skip_spaces(*s);
1473 error = parse_atom_token(s, &type->value, value, NULL, symtab);
1474 } else {
1475 error = xasprintf("%s: syntax error at \"%c\" expecting \"=\"",
1476 start, **s);
1477 }
1478 if (error) {
1479 ovsdb_atom_destroy(key, type->key.type);
1480 if (range_end_key && *range_end_key) {
1481 ovsdb_atom_destroy(*range_end_key, type->key.type);
1482 free(*range_end_key);
1483 *range_end_key = NULL;
1484 }
1485 }
1486 }
1487 return error;
1488 }
1489
1490 static void
1491 free_key_value_range(const struct ovsdb_type *type,
1492 union ovsdb_atom *key, union ovsdb_atom *value,
1493 union ovsdb_atom **range_end_atom)
1494 {
1495 ovsdb_atom_destroy(key, type->key.type);
1496 if (type->value.type != OVSDB_TYPE_VOID) {
1497 ovsdb_atom_destroy(value, type->value.type);
1498 }
1499 if (range_end_atom && *range_end_atom) {
1500 ovsdb_atom_destroy(*range_end_atom, type->key.type);
1501 free(*range_end_atom);
1502 *range_end_atom = NULL;
1503 }
1504 }
1505
1506 /* Initializes 'datum' as a datum of the given 'type', parsing its contents
1507 * from 's'. The format of 's' is a series of space or comma separated atoms
1508 * or, for a map, '='-delimited pairs of atoms. Each atom must in a format
1509 * acceptable to ovsdb_atom_from_string(). Optionally, a set may be enclosed
1510 * in "[]" or a map in "{}"; for an empty set or map these punctuators are
1511 * required.
1512 *
1513 * Optionally, a symbol table may be supplied as 'symtab'. It is passed to
1514 * ovsdb_atom_to_string(). */
1515 char *
1516 ovsdb_datum_from_string(struct ovsdb_datum *datum,
1517 const struct ovsdb_type *type, const char *s,
1518 struct ovsdb_symbol_table *symtab)
1519 {
1520 bool is_map = ovsdb_type_is_map(type);
1521 struct ovsdb_error *dberror;
1522 const char *p;
1523 int end_delim;
1524 char *error;
1525
1526 ovsdb_datum_init_empty(datum);
1527
1528 /* Swallow a leading delimiter if there is one. */
1529 p = skip_spaces(s);
1530 if (*p == (is_map ? '{' : '[')) {
1531 end_delim = is_map ? '}' : ']';
1532 p = skip_spaces(p + 1);
1533 } else if (!*p) {
1534 if (is_map) {
1535 return xstrdup("use \"{}\" to specify the empty map");
1536 } else {
1537 return xstrdup("use \"[]\" to specify the empty set");
1538 }
1539 } else {
1540 end_delim = 0;
1541 }
1542
1543 while (*p && *p != end_delim) {
1544 union ovsdb_atom key, value;
1545 union ovsdb_atom *range_end_key = NULL;
1546
1547 if (ovsdb_token_is_delim(*p)) {
1548 char *type_str = ovsdb_type_to_english(type);
1549 error = xasprintf("%s: unexpected \"%c\" parsing %s",
1550 s, *p, type_str);
1551 free(type_str);
1552 goto error;
1553 }
1554
1555 /* Add to datum. */
1556 error = parse_key_value(&p, type, &key, &value,
1557 symtab, &range_end_key);
1558 if (error) {
1559 goto error;
1560 }
1561 ovsdb_datum_add_unsafe(datum, &key, &value, type, range_end_key);
1562 free_key_value_range(type, &key, &value, &range_end_key);
1563
1564 /* Skip optional white space and comma. */
1565 p = skip_spaces(p);
1566 if (*p == ',') {
1567 p = skip_spaces(p + 1);
1568 }
1569 }
1570
1571 if (*p != end_delim) {
1572 error = xasprintf("%s: missing \"%c\" at end of data", s, end_delim);
1573 goto error;
1574 }
1575 if (end_delim) {
1576 p = skip_spaces(p + 1);
1577 if (*p) {
1578 error = xasprintf("%s: trailing garbage after \"%c\"",
1579 s, end_delim);
1580 goto error;
1581 }
1582 }
1583
1584 if (datum->n < type->n_min) {
1585 error = xasprintf("%s: %u %s specified but the minimum number is %u",
1586 s, datum->n, is_map ? "pair(s)" : "value(s)",
1587 type->n_min);
1588 goto error;
1589 } else if (datum->n > type->n_max) {
1590 error = xasprintf("%s: %u %s specified but the maximum number is %u",
1591 s, datum->n, is_map ? "pair(s)" : "value(s)",
1592 type->n_max);
1593 goto error;
1594 }
1595
1596 dberror = ovsdb_datum_sort(datum, type->key.type);
1597 if (dberror) {
1598 ovsdb_error_destroy(dberror);
1599 if (ovsdb_type_is_map(type)) {
1600 error = xasprintf("%s: map contains duplicate key", s);
1601 } else {
1602 error = xasprintf("%s: set contains duplicate value", s);
1603 }
1604 goto error;
1605 }
1606
1607 return NULL;
1608
1609 error:
1610 ovsdb_datum_destroy(datum, type);
1611 ovsdb_datum_init_empty(datum);
1612 return error;
1613 }
1614
1615 /* Appends to 'out' the 'datum' (with the given 'type') in a format acceptable
1616 * to ovsdb_datum_from_string(). */
1617 void
1618 ovsdb_datum_to_string(const struct ovsdb_datum *datum,
1619 const struct ovsdb_type *type, struct ds *out)
1620 {
1621 bool is_map = ovsdb_type_is_map(type);
1622 size_t i;
1623
1624 if (type->n_max > 1 || !datum->n) {
1625 ds_put_char(out, is_map ? '{' : '[');
1626 }
1627 for (i = 0; i < datum->n; i++) {
1628 if (i > 0) {
1629 ds_put_cstr(out, ", ");
1630 }
1631
1632 ovsdb_atom_to_string(&datum->keys[i], type->key.type, out);
1633 if (is_map) {
1634 ds_put_char(out, '=');
1635 ovsdb_atom_to_string(&datum->values[i], type->value.type, out);
1636 }
1637 }
1638 if (type->n_max > 1 || !datum->n) {
1639 ds_put_char(out, is_map ? '}' : ']');
1640 }
1641 }
1642
1643 /* Appends to 'out' the 'datum' (with the given 'type') in a bare string format
1644 * that cannot be parsed uniformly back into a datum but is easier for shell
1645 * scripts, etc., to deal with. */
1646 void
1647 ovsdb_datum_to_bare(const struct ovsdb_datum *datum,
1648 const struct ovsdb_type *type, struct ds *out)
1649 {
1650 bool is_map = ovsdb_type_is_map(type);
1651 size_t i;
1652
1653 for (i = 0; i < datum->n; i++) {
1654 if (i > 0) {
1655 ds_put_cstr(out, " ");
1656 }
1657
1658 ovsdb_atom_to_bare(&datum->keys[i], type->key.type, out);
1659 if (is_map) {
1660 ds_put_char(out, '=');
1661 ovsdb_atom_to_bare(&datum->values[i], type->value.type, out);
1662 }
1663 }
1664 }
1665
1666 /* Initializes 'datum' as a string-to-string map whose contents are copied from
1667 * 'smap', which is not modified. */
1668 void
1669 ovsdb_datum_from_smap(struct ovsdb_datum *datum, const struct smap *smap)
1670 {
1671 datum->n = smap_count(smap);
1672 datum->keys = xmalloc(datum->n * sizeof *datum->keys);
1673 datum->values = xmalloc(datum->n * sizeof *datum->values);
1674
1675 struct smap_node *node;
1676 size_t i = 0;
1677 SMAP_FOR_EACH (node, smap) {
1678 datum->keys[i].string = xstrdup(node->key);
1679 datum->values[i].string = xstrdup(node->value);
1680 i++;
1681 }
1682 ovs_assert(i == datum->n);
1683
1684 ovsdb_datum_sort_unique(datum, OVSDB_TYPE_STRING, OVSDB_TYPE_STRING);
1685 }
1686
1687 static uint32_t
1688 hash_atoms(enum ovsdb_atomic_type type, const union ovsdb_atom *atoms,
1689 unsigned int n, uint32_t basis)
1690 {
1691 if (type != OVSDB_TYPE_VOID) {
1692 unsigned int i;
1693
1694 for (i = 0; i < n; i++) {
1695 basis = ovsdb_atom_hash(&atoms[i], type, basis);
1696 }
1697 }
1698 return basis;
1699 }
1700
1701 uint32_t
1702 ovsdb_datum_hash(const struct ovsdb_datum *datum,
1703 const struct ovsdb_type *type, uint32_t basis)
1704 {
1705 basis = hash_atoms(type->key.type, datum->keys, datum->n, basis);
1706 basis ^= (type->key.type << 24) | (type->value.type << 16) | datum->n;
1707 basis = hash_atoms(type->value.type, datum->values, datum->n, basis);
1708 return basis;
1709 }
1710
1711 static int
1712 atom_arrays_compare_3way(const union ovsdb_atom *a,
1713 const union ovsdb_atom *b,
1714 enum ovsdb_atomic_type type,
1715 size_t n)
1716 {
1717 unsigned int i;
1718
1719 for (i = 0; i < n; i++) {
1720 int cmp = ovsdb_atom_compare_3way(&a[i], &b[i], type);
1721 if (cmp) {
1722 return cmp;
1723 }
1724 }
1725
1726 return 0;
1727 }
1728
1729 bool
1730 ovsdb_datum_equals(const struct ovsdb_datum *a,
1731 const struct ovsdb_datum *b,
1732 const struct ovsdb_type *type)
1733 {
1734 return !ovsdb_datum_compare_3way(a, b, type);
1735 }
1736
1737 int
1738 ovsdb_datum_compare_3way(const struct ovsdb_datum *a,
1739 const struct ovsdb_datum *b,
1740 const struct ovsdb_type *type)
1741 {
1742 int cmp;
1743
1744 if (a->n != b->n) {
1745 return a->n < b->n ? -1 : 1;
1746 }
1747
1748 cmp = atom_arrays_compare_3way(a->keys, b->keys, type->key.type, a->n);
1749 if (cmp) {
1750 return cmp;
1751 }
1752
1753 return (type->value.type == OVSDB_TYPE_VOID ? 0
1754 : atom_arrays_compare_3way(a->values, b->values, type->value.type,
1755 a->n));
1756 }
1757
1758 /* If 'key' is one of the keys in 'datum', returns its index within 'datum',
1759 * otherwise UINT_MAX. 'key.type' must be the type of the atoms stored in the
1760 * 'keys' array in 'datum'.
1761 */
1762 unsigned int
1763 ovsdb_datum_find_key(const struct ovsdb_datum *datum,
1764 const union ovsdb_atom *key,
1765 enum ovsdb_atomic_type key_type)
1766 {
1767 unsigned int low = 0;
1768 unsigned int high = datum->n;
1769 while (low < high) {
1770 unsigned int idx = (low + high) / 2;
1771 int cmp = ovsdb_atom_compare_3way(key, &datum->keys[idx], key_type);
1772 if (cmp < 0) {
1773 high = idx;
1774 } else if (cmp > 0) {
1775 low = idx + 1;
1776 } else {
1777 return idx;
1778 }
1779 }
1780 return UINT_MAX;
1781 }
1782
1783 /* If 'key' and 'value' is one of the key-value pairs in 'datum', returns its
1784 * index within 'datum', otherwise UINT_MAX. 'key.type' must be the type of
1785 * the atoms stored in the 'keys' array in 'datum'. 'value_type' may be the
1786 * type of the 'values' atoms or OVSDB_TYPE_VOID to compare only keys.
1787 */
1788 unsigned int
1789 ovsdb_datum_find_key_value(const struct ovsdb_datum *datum,
1790 const union ovsdb_atom *key,
1791 enum ovsdb_atomic_type key_type,
1792 const union ovsdb_atom *value,
1793 enum ovsdb_atomic_type value_type)
1794 {
1795 unsigned int idx = ovsdb_datum_find_key(datum, key, key_type);
1796 if (idx != UINT_MAX
1797 && value_type != OVSDB_TYPE_VOID
1798 && !ovsdb_atom_equals(&datum->values[idx], value, value_type)) {
1799 idx = UINT_MAX;
1800 }
1801 return idx;
1802 }
1803
1804 /* If atom 'i' in 'a' is also in 'b', returns its index in 'b', otherwise
1805 * UINT_MAX. 'type' must be the type of 'a' and 'b', except that
1806 * type->value.type may be set to OVSDB_TYPE_VOID to compare keys but not
1807 * values. */
1808 static unsigned int
1809 ovsdb_datum_find(const struct ovsdb_datum *a, int i,
1810 const struct ovsdb_datum *b,
1811 const struct ovsdb_type *type)
1812 {
1813 return ovsdb_datum_find_key_value(b,
1814 &a->keys[i], type->key.type,
1815 a->values ? &a->values[i] : NULL,
1816 type->value.type);
1817 }
1818
1819 /* Returns true if every element in 'a' is also in 'b', false otherwise. */
1820 bool
1821 ovsdb_datum_includes_all(const struct ovsdb_datum *a,
1822 const struct ovsdb_datum *b,
1823 const struct ovsdb_type *type)
1824 {
1825 size_t i;
1826
1827 if (a->n > b->n) {
1828 return false;
1829 }
1830 for (i = 0; i < a->n; i++) {
1831 if (ovsdb_datum_find(a, i, b, type) == UINT_MAX) {
1832 return false;
1833 }
1834 }
1835 return true;
1836 }
1837
1838 /* Returns true if no element in 'a' is also in 'b', false otherwise. */
1839 bool
1840 ovsdb_datum_excludes_all(const struct ovsdb_datum *a,
1841 const struct ovsdb_datum *b,
1842 const struct ovsdb_type *type)
1843 {
1844 size_t i;
1845
1846 for (i = 0; i < a->n; i++) {
1847 if (ovsdb_datum_find(a, i, b, type) != UINT_MAX) {
1848 return false;
1849 }
1850 }
1851 return true;
1852 }
1853
1854 static void
1855 ovsdb_datum_reallocate(struct ovsdb_datum *a, const struct ovsdb_type *type,
1856 unsigned int capacity)
1857 {
1858 a->keys = xrealloc(a->keys, capacity * sizeof *a->keys);
1859 if (type->value.type != OVSDB_TYPE_VOID) {
1860 a->values = xrealloc(a->values, capacity * sizeof *a->values);
1861 }
1862 }
1863
1864 /* Removes the element with index 'idx' from 'datum', which has type 'type'.
1865 * If 'idx' is not the last element in 'datum', then the removed element is
1866 * replaced by the (former) last element.
1867 *
1868 * This function does not maintain ovsdb_datum invariants. Use
1869 * ovsdb_datum_sort() to check and restore these invariants. */
1870 void
1871 ovsdb_datum_remove_unsafe(struct ovsdb_datum *datum, size_t idx,
1872 const struct ovsdb_type *type)
1873 {
1874 ovsdb_atom_destroy(&datum->keys[idx], type->key.type);
1875 datum->keys[idx] = datum->keys[datum->n - 1];
1876 if (type->value.type != OVSDB_TYPE_VOID) {
1877 ovsdb_atom_destroy(&datum->values[idx], type->value.type);
1878 datum->values[idx] = datum->values[datum->n - 1];
1879 }
1880 datum->n--;
1881 }
1882
1883 /* Adds the element with the given 'key' and 'value' to 'datum', which must
1884 * have the specified 'type'. Optionally if 'range_end_atom' is not
1885 * a null pointer, adds a set of integers to 'datum' from inclusive
1886 * range ['key', 'range_end_atom'].
1887 *
1888 * This function always allocates memory, so it is not an efficient way to add
1889 * a number of elements to a datum.
1890 *
1891 * When adding a range of integers, this function allocates the memory once
1892 * for the whole range.
1893 *
1894 * This function does not maintain ovsdb_datum invariants. Use
1895 * ovsdb_datum_sort() to check and restore these invariants. (But a datum with
1896 * 0 or 1 elements cannot violate the invariants anyhow.) */
1897 void
1898 ovsdb_datum_add_unsafe(struct ovsdb_datum *datum,
1899 const union ovsdb_atom *key,
1900 const union ovsdb_atom *value,
1901 const struct ovsdb_type *type,
1902 const union ovsdb_atom *range_end_atom)
1903 {
1904 size_t idx = datum->n;
1905 datum->n += range_end_atom ?
1906 (range_end_atom->integer - key->integer + 1) : 1;
1907 datum->keys = xrealloc(datum->keys, datum->n * sizeof *datum->keys);
1908 if (range_end_atom && key->integer <= range_end_atom->integer) {
1909 for (int64_t i = key->integer; i <= range_end_atom->integer; i++) {
1910 datum->keys[idx++].integer = i;
1911 }
1912 } else {
1913 ovsdb_atom_clone(&datum->keys[idx], key, type->key.type);
1914 if (type->value.type != OVSDB_TYPE_VOID) {
1915 datum->values = xrealloc(datum->values,
1916 datum->n * sizeof *datum->values);
1917 ovsdb_atom_clone(&datum->values[idx], value, type->value.type);
1918 }
1919 }
1920 }
1921
1922 void
1923 ovsdb_datum_union(struct ovsdb_datum *a, const struct ovsdb_datum *b,
1924 const struct ovsdb_type *type, bool replace)
1925 {
1926 unsigned int n;
1927 size_t bi;
1928
1929 n = a->n;
1930 for (bi = 0; bi < b->n; bi++) {
1931 unsigned int ai;
1932
1933 ai = ovsdb_datum_find_key(a, &b->keys[bi], type->key.type);
1934 if (ai == UINT_MAX) {
1935 if (n == a->n) {
1936 ovsdb_datum_reallocate(a, type, a->n + (b->n - bi));
1937 }
1938 ovsdb_atom_clone(&a->keys[n], &b->keys[bi], type->key.type);
1939 if (type->value.type != OVSDB_TYPE_VOID) {
1940 ovsdb_atom_clone(&a->values[n], &b->values[bi],
1941 type->value.type);
1942 }
1943 n++;
1944 } else if (replace && type->value.type != OVSDB_TYPE_VOID) {
1945 ovsdb_atom_destroy(&a->values[ai], type->value.type);
1946 ovsdb_atom_clone(&a->values[ai], &b->values[bi],
1947 type->value.type);
1948 }
1949 }
1950 if (n != a->n) {
1951 a->n = n;
1952 ovs_assert(!ovsdb_datum_sort(a, type->key.type));
1953 }
1954 }
1955
1956 void
1957 ovsdb_datum_subtract(struct ovsdb_datum *a, const struct ovsdb_type *a_type,
1958 const struct ovsdb_datum *b,
1959 const struct ovsdb_type *b_type)
1960 {
1961 bool changed = false;
1962 size_t i;
1963
1964 ovs_assert(a_type->key.type == b_type->key.type);
1965 ovs_assert(a_type->value.type == b_type->value.type
1966 || b_type->value.type == OVSDB_TYPE_VOID);
1967
1968 /* XXX The big-O of this could easily be improved. */
1969 for (i = 0; i < a->n; ) {
1970 unsigned int idx = ovsdb_datum_find(a, i, b, b_type);
1971 if (idx != UINT_MAX) {
1972 changed = true;
1973 ovsdb_datum_remove_unsafe(a, i, a_type);
1974 } else {
1975 i++;
1976 }
1977 }
1978 if (changed) {
1979 ovsdb_datum_sort_assert(a, a_type->key.type);
1980 }
1981 }
1982 \f
1983 struct ovsdb_symbol_table *
1984 ovsdb_symbol_table_create(void)
1985 {
1986 struct ovsdb_symbol_table *symtab = xmalloc(sizeof *symtab);
1987 shash_init(&symtab->sh);
1988 return symtab;
1989 }
1990
1991 void
1992 ovsdb_symbol_table_destroy(struct ovsdb_symbol_table *symtab)
1993 {
1994 if (symtab) {
1995 shash_destroy_free_data(&symtab->sh);
1996 free(symtab);
1997 }
1998 }
1999
2000 struct ovsdb_symbol *
2001 ovsdb_symbol_table_get(const struct ovsdb_symbol_table *symtab,
2002 const char *name)
2003 {
2004 return shash_find_data(&symtab->sh, name);
2005 }
2006
2007 struct ovsdb_symbol *
2008 ovsdb_symbol_table_put(struct ovsdb_symbol_table *symtab, const char *name,
2009 const struct uuid *uuid, bool created)
2010 {
2011 struct ovsdb_symbol *symbol;
2012
2013 ovs_assert(!ovsdb_symbol_table_get(symtab, name));
2014 symbol = xmalloc(sizeof *symbol);
2015 symbol->uuid = *uuid;
2016 symbol->created = created;
2017 symbol->strong_ref = false;
2018 symbol->weak_ref = false;
2019 shash_add(&symtab->sh, name, symbol);
2020 return symbol;
2021 }
2022
2023 struct ovsdb_symbol *
2024 ovsdb_symbol_table_insert(struct ovsdb_symbol_table *symtab,
2025 const char *name)
2026 {
2027 struct ovsdb_symbol *symbol;
2028
2029 symbol = ovsdb_symbol_table_get(symtab, name);
2030 if (!symbol) {
2031 struct uuid uuid;
2032
2033 uuid_generate(&uuid);
2034 symbol = ovsdb_symbol_table_put(symtab, name, &uuid, false);
2035 }
2036 return symbol;
2037 }
2038 \f
2039 /* APIs for Generating and apply diffs. */
2040
2041 /* Generate a difference ovsdb_dataum between 'old' and 'new'.
2042 * 'new' can be regenerated by applying the difference to the 'old'.
2043 *
2044 * The diff operation is reversible. Given 'old',
2045 * 'new' can be recreated by applying diff to 'old'.
2046 *
2047 * Thus
2048 * Let d = 'old' diff 'new'
2049 * then 'new' = 'old' diff d
2050 *
2051 * The 'diff' datum is always safe; the orders of keys are maintained
2052 * since they are added in order. */
2053 void
2054 ovsdb_datum_diff(struct ovsdb_datum *diff,
2055 const struct ovsdb_datum *old,
2056 const struct ovsdb_datum *new,
2057 const struct ovsdb_type *type)
2058 {
2059 size_t oi, ni;
2060
2061 ovsdb_datum_init_empty(diff);
2062 if (!ovsdb_type_is_composite(type)) {
2063 ovsdb_datum_clone(diff, new, type);
2064 return;
2065 }
2066
2067 /* Generate the diff in O(n) time. */
2068 for (oi = ni = 0; oi < old->n && ni < new->n; ) {
2069 int c = ovsdb_atom_compare_3way(&old->keys[oi], &new->keys[ni],
2070 type->key.type);
2071 if (c < 0) {
2072 ovsdb_datum_add_unsafe(diff, &old->keys[oi], &old->values[oi],
2073 type, NULL);
2074 oi++;
2075 } else if (c > 0) {
2076 ovsdb_datum_add_unsafe(diff, &new->keys[ni], &new->values[ni],
2077 type, NULL);
2078 ni++;
2079 } else {
2080 if (type->value.type != OVSDB_TYPE_VOID &&
2081 ovsdb_atom_compare_3way(&old->values[oi], &new->values[ni],
2082 type->value.type)) {
2083 ovsdb_datum_add_unsafe(diff, &new->keys[ni], &new->values[ni],
2084 type, NULL);
2085 }
2086 oi++; ni++;
2087 }
2088 }
2089
2090 for (; oi < old->n; oi++) {
2091 ovsdb_datum_add_unsafe(diff, &old->keys[oi], &old->values[oi],
2092 type, NULL);
2093 }
2094
2095 for (; ni < new->n; ni++) {
2096 ovsdb_datum_add_unsafe(diff, &new->keys[ni], &new->values[ni],
2097 type, NULL);
2098 }
2099 }
2100
2101 /* Apply 'diff' to 'old' to regenerate 'new'.
2102 *
2103 * Return NULL if the 'new' is successfully generated, otherwise, return
2104 * ovsdb_error and the stat of 'new' is indeterministic. */
2105 struct ovsdb_error *
2106 ovsdb_datum_apply_diff(struct ovsdb_datum *new,
2107 const struct ovsdb_datum *old,
2108 const struct ovsdb_datum *diff,
2109 const struct ovsdb_type *type)
2110 {
2111 ovsdb_datum_init_empty(new);
2112 ovsdb_datum_diff(new, old, diff, type);
2113
2114 /* Make sure member size of 'new' conforms to type. */
2115 if (new->n < type->n_min || new->n > type->n_max) {
2116 ovsdb_datum_destroy(new, type);
2117 return ovsdb_error(NULL, "Datum crated by diff has size error");
2118 }
2119
2120 return NULL;
2121 }
2122
2123 \f
2124 /* Extracts a token from the beginning of 's' and returns a pointer just after
2125 * the token. Stores the token itself into '*outp', which the caller is
2126 * responsible for freeing (with free()).
2127 *
2128 * If 's[0]' is a delimiter, the returned token is the empty string.
2129 *
2130 * A token extends from 's' to the first delimiter, as defined by
2131 * ovsdb_token_is_delim(), or until the end of the string. A delimiter can be
2132 * escaped with a backslash, in which case the backslash does not appear in the
2133 * output. Double quotes also cause delimiters to be ignored, but the double
2134 * quotes are retained in the output. (Backslashes inside double quotes are
2135 * not removed, either.)
2136 */
2137 char *
2138 ovsdb_token_parse(const char **s, char **outp)
2139 {
2140 const char *p;
2141 struct ds out;
2142 bool in_quotes;
2143 char *error;
2144
2145 ds_init(&out);
2146 in_quotes = false;
2147 for (p = *s; *p != '\0'; ) {
2148 int c = *p++;
2149 if (c == '\\') {
2150 if (in_quotes) {
2151 ds_put_char(&out, '\\');
2152 }
2153 if (!*p) {
2154 error = xasprintf("%s: backslash at end of argument", *s);
2155 goto error;
2156 }
2157 ds_put_char(&out, *p++);
2158 } else if (!in_quotes && ovsdb_token_is_delim(c)) {
2159 p--;
2160 break;
2161 } else {
2162 ds_put_char(&out, c);
2163 if (c == '"') {
2164 in_quotes = !in_quotes;
2165 }
2166 }
2167 }
2168 if (in_quotes) {
2169 error = xasprintf("%s: quoted string extends past end of argument",
2170 *s);
2171 goto error;
2172 }
2173 *outp = ds_cstr(&out);
2174 *s = p;
2175 return NULL;
2176
2177 error:
2178 ds_destroy(&out);
2179 *outp = NULL;
2180 return error;
2181 }
2182
2183 /* Returns true if 'c' delimits tokens, or if 'c' is 0, and false otherwise. */
2184 bool
2185 ovsdb_token_is_delim(unsigned char c)
2186 {
2187 return strchr(":=, []{}!<>", c) != NULL;
2188 }
2189
2190 struct ovsdb_error *
2191 ovsdb_atom_range_check_size(int64_t range_start, int64_t range_end)
2192 {
2193 if ((uint64_t) range_end - (uint64_t) range_start
2194 >= MAX_OVSDB_ATOM_RANGE_SIZE) {
2195 return ovsdb_error("constraint violation",
2196 "Range \"%"PRId64"-%"PRId64"\" is too big. "
2197 "Maximum allowed size is %d.",
2198 range_start, range_end, MAX_OVSDB_ATOM_RANGE_SIZE);
2199 }
2200 return NULL;
2201 }
2202 \f
2203 char *
2204 ovsdb_data_row_name(const struct uuid *uuid)
2205 {
2206 char *name;
2207 char *p;
2208
2209 name = xasprintf("row"UUID_FMT, UUID_ARGS(uuid));
2210 for (p = name; *p != '\0'; p++) {
2211 if (*p == '-') {
2212 *p = '_';
2213 }
2214 }
2215
2216 return name;
2217 }