]> git.proxmox.com Git - ovs.git/blob - lib/ovsdb-data.c
ovsdb-data: Improve grammar in error message.
[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->array.n != 2
266 || json->array.elems[0]->type != JSON_STRING
267 || (name && strcmp(json->array.elems[0]->string, name))
268 || json->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->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->array.n != 2) {
283 return ovsdb_syntax_error(json, NULL, "expected 2-element array");
284 }
285 *elem0 = json->array.elems[0];
286 *elem1 = json->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->uuid.refTableName) {
297 switch (base->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->integer;
381 return NULL;
382 }
383 break;
384
385 case OVSDB_TYPE_REAL:
386 if (json->type == JSON_INTEGER) {
387 atom->real = json->integer;
388 return NULL;
389 } else if (json->type == JSON_REAL) {
390 atom->real = json->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->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.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->integer.min
821 && atom->integer <= base->integer.max) {
822 return NULL;
823 } else if (base->integer.min != INT64_MIN) {
824 if (base->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->integer.min, base->integer.max);
830 } else {
831 return ovsdb_error("constraint violation",
832 "%"PRId64" is less than minimum allowed "
833 "value %"PRId64,
834 atom->integer, base->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->integer.max);
841 }
842 OVS_NOT_REACHED();
843
844 case OVSDB_TYPE_REAL:
845 if (atom->real >= base->real.min && atom->real <= base->real.max) {
846 return NULL;
847 } else if (base->real.min != -DBL_MAX) {
848 if (base->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->real.min,
854 DBL_DIG, base->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->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->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->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->array.n > 0
1222 && json->array.elems[0]->type == JSON_STRING
1223 && !strcmp(json->array.elems[0]->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->array.n;
1236 if (n < type->n_min || n > type->n_max) {
1237 if (type->n_min == 1 && type->n_max == 1) {
1238 return ovsdb_syntax_error(json, NULL, "%s must have exactly "
1239 "one member but %"PRIuSIZE" "
1240 "are present", class, n);
1241 } else {
1242 return ovsdb_syntax_error(json, NULL, "%s must have %u to "
1243 "%u members but %"PRIuSIZE" are "
1244 "present",
1245 class, type->n_min, type->n_max, n);
1246 }
1247 }
1248
1249 datum->n = 0;
1250 datum->keys = xmalloc(n * sizeof *datum->keys);
1251 datum->values = is_map ? xmalloc(n * sizeof *datum->values) : NULL;
1252 for (i = 0; i < n; i++) {
1253 const struct json *element = inner->array.elems[i];
1254 const struct json *key = NULL;
1255 const struct json *value = NULL;
1256
1257 if (!is_map) {
1258 key = element;
1259 } else {
1260 error = parse_json_pair(element, &key, &value);
1261 if (error) {
1262 goto error;
1263 }
1264 }
1265
1266 error = ovsdb_atom_from_json(&datum->keys[i], &type->key,
1267 key, symtab);
1268 if (error) {
1269 goto error;
1270 }
1271
1272 if (is_map) {
1273 error = ovsdb_atom_from_json(&datum->values[i],
1274 &type->value, value, symtab);
1275 if (error) {
1276 ovsdb_atom_destroy(&datum->keys[i], type->key.type);
1277 goto error;
1278 }
1279 }
1280
1281 datum->n++;
1282 }
1283 return NULL;
1284
1285 error:
1286 ovsdb_datum_destroy(datum, type);
1287 return error;
1288 } else {
1289 datum->n = 1;
1290 datum->keys = xmalloc(sizeof *datum->keys);
1291 datum->values = NULL;
1292
1293 error = ovsdb_atom_from_json(&datum->keys[0], &type->key,
1294 json, symtab);
1295 if (error) {
1296 free(datum->keys);
1297 }
1298 return error;
1299 }
1300 }
1301
1302 /* Parses 'json' as a datum of the type described by 'type'. If successful,
1303 * returns NULL and initializes 'datum' with the parsed datum. On failure,
1304 * returns an error and the contents of 'datum' are indeterminate. The caller
1305 * is responsible for freeing the error or the datum that is returned.
1306 *
1307 * Violations of constraints expressed by 'type' are treated as errors.
1308 *
1309 * If 'symtab' is nonnull, then named UUIDs in 'symtab' are accepted. Refer to
1310 * RFC 7047 for information about this, and for the syntax that this function
1311 * accepts. */
1312 struct ovsdb_error * OVS_WARN_UNUSED_RESULT
1313 ovsdb_datum_from_json(struct ovsdb_datum *datum,
1314 const struct ovsdb_type *type,
1315 const struct json *json,
1316 struct ovsdb_symbol_table *symtab)
1317 {
1318 struct ovsdb_error *error;
1319
1320 error = ovsdb_datum_from_json__(datum, type, json, symtab);
1321 if (error) {
1322 return error;
1323 }
1324
1325 error = ovsdb_datum_sort(datum, type->key.type);
1326 if (error) {
1327 ovsdb_datum_destroy(datum, type);
1328 }
1329 return error;
1330 }
1331
1332 /* Parses 'json' as a datum of the type described by 'type' for internal
1333 * use. This function is similar to 'ovsdb_datum_from_json', except the
1334 * member size of set or map is not checked.
1335 *
1336 * The datum generated should be used then discard. It is not suitable
1337 * for storing into IDL because of the possible member size violation. */
1338 struct ovsdb_error * OVS_WARN_UNUSED_RESULT
1339 ovsdb_transient_datum_from_json(struct ovsdb_datum *datum,
1340 const struct ovsdb_type *type,
1341 const struct json *json)
1342 {
1343 struct ovsdb_type relaxed_type = *type;
1344
1345 relaxed_type.n_min = 0;
1346 relaxed_type.n_max = UINT_MAX;
1347
1348 return ovsdb_datum_from_json(datum, &relaxed_type, json, NULL);
1349 }
1350
1351 /* Parses 'json' as a datum of the type described by 'type', but ignoring all
1352 * constraints. */
1353 struct ovsdb_error * OVS_WARN_UNUSED_RESULT
1354 ovsdb_unconstrained_datum_from_json(struct ovsdb_datum *datum,
1355 const struct ovsdb_type *type,
1356 const struct json *json)
1357 {
1358 struct ovsdb_type relaxed_type;
1359
1360 ovsdb_base_type_init(&relaxed_type.key, type->key.type);
1361 ovsdb_base_type_init(&relaxed_type.value, type->value.type);
1362 relaxed_type.n_min = 0;
1363 relaxed_type.n_max = UINT_MAX;
1364
1365 return ovsdb_datum_from_json(datum, &relaxed_type, json, NULL);
1366 }
1367
1368 static struct json *
1369 ovsdb_base_to_json(const union ovsdb_atom *atom,
1370 const struct ovsdb_base_type *base,
1371 bool use_row_names)
1372 {
1373 if (!use_row_names
1374 || base->type != OVSDB_TYPE_UUID
1375 || !base->uuid.refTableName) {
1376 return ovsdb_atom_to_json(atom, base->type);
1377 } else {
1378 return json_array_create_2(
1379 json_string_create("named-uuid"),
1380 json_string_create_nocopy(ovsdb_data_row_name(&atom->uuid)));
1381 }
1382 }
1383
1384 static struct json *
1385 ovsdb_datum_to_json__(const struct ovsdb_datum *datum,
1386 const struct ovsdb_type *type,
1387 bool use_row_names)
1388 {
1389 if (ovsdb_type_is_map(type)) {
1390 struct json **elems;
1391 size_t i;
1392
1393 elems = xmalloc(datum->n * sizeof *elems);
1394 for (i = 0; i < datum->n; i++) {
1395 elems[i] = json_array_create_2(
1396 ovsdb_base_to_json(&datum->keys[i], &type->key,
1397 use_row_names),
1398 ovsdb_base_to_json(&datum->values[i], &type->value,
1399 use_row_names));
1400 }
1401
1402 return wrap_json("map", json_array_create(elems, datum->n));
1403 } else if (datum->n == 1) {
1404 return ovsdb_base_to_json(&datum->keys[0], &type->key, use_row_names);
1405 } else {
1406 struct json **elems;
1407 size_t i;
1408
1409 elems = xmalloc(datum->n * sizeof *elems);
1410 for (i = 0; i < datum->n; i++) {
1411 elems[i] = ovsdb_base_to_json(&datum->keys[i], &type->key,
1412 use_row_names);
1413 }
1414
1415 return wrap_json("set", json_array_create(elems, datum->n));
1416 }
1417 }
1418
1419 /* Converts 'datum', of the specified 'type', to JSON format, and returns the
1420 * JSON. The caller is responsible for freeing the returned JSON.
1421 *
1422 * 'type' constraints on datum->n are ignored.
1423 *
1424 * Refer to RFC 7047 for the format of the JSON that this function produces. */
1425 struct json *
1426 ovsdb_datum_to_json(const struct ovsdb_datum *datum,
1427 const struct ovsdb_type *type)
1428 {
1429 return ovsdb_datum_to_json__(datum, type, false);
1430 }
1431
1432 struct json *
1433 ovsdb_datum_to_json_with_row_names(const struct ovsdb_datum *datum,
1434 const struct ovsdb_type *type)
1435 {
1436 return ovsdb_datum_to_json__(datum, type, true);
1437 }
1438
1439 static const char *
1440 skip_spaces(const char *p)
1441 {
1442 while (isspace((unsigned char) *p)) {
1443 p++;
1444 }
1445 return p;
1446 }
1447
1448 static char *
1449 parse_atom_token(const char **s, const struct ovsdb_base_type *base,
1450 union ovsdb_atom *atom, union ovsdb_atom **range_end_atom,
1451 struct ovsdb_symbol_table *symtab)
1452 {
1453 char *token, *error;
1454
1455 error = ovsdb_token_parse(s, &token);
1456 if (!error) {
1457 error = ovsdb_atom_from_string(atom, range_end_atom,
1458 base, token, symtab);
1459 free(token);
1460 }
1461 return error;
1462 }
1463
1464 static char *
1465 parse_key_value(const char **s, const struct ovsdb_type *type,
1466 union ovsdb_atom *key, union ovsdb_atom *value,
1467 struct ovsdb_symbol_table *symtab,
1468 union ovsdb_atom **range_end_key)
1469 {
1470 const char *start = *s;
1471 char *error;
1472
1473 error = parse_atom_token(s, &type->key, key, range_end_key, symtab);
1474
1475 if (!error && type->value.type != OVSDB_TYPE_VOID) {
1476 *s = skip_spaces(*s);
1477 if (**s == '=') {
1478 (*s)++;
1479 *s = skip_spaces(*s);
1480 error = parse_atom_token(s, &type->value, value, NULL, symtab);
1481 } else {
1482 error = xasprintf("%s: syntax error at \"%c\" expecting \"=\"",
1483 start, **s);
1484 }
1485 if (error) {
1486 ovsdb_atom_destroy(key, type->key.type);
1487 if (range_end_key && *range_end_key) {
1488 ovsdb_atom_destroy(*range_end_key, type->key.type);
1489 free(*range_end_key);
1490 *range_end_key = NULL;
1491 }
1492 }
1493 }
1494 return error;
1495 }
1496
1497 static void
1498 free_key_value_range(const struct ovsdb_type *type,
1499 union ovsdb_atom *key, union ovsdb_atom *value,
1500 union ovsdb_atom **range_end_atom)
1501 {
1502 ovsdb_atom_destroy(key, type->key.type);
1503 if (type->value.type != OVSDB_TYPE_VOID) {
1504 ovsdb_atom_destroy(value, type->value.type);
1505 }
1506 if (range_end_atom && *range_end_atom) {
1507 ovsdb_atom_destroy(*range_end_atom, type->key.type);
1508 free(*range_end_atom);
1509 *range_end_atom = NULL;
1510 }
1511 }
1512
1513 /* Initializes 'datum' as a datum of the given 'type', parsing its contents
1514 * from 's'. The format of 's' is a series of space or comma separated atoms
1515 * or, for a map, '='-delimited pairs of atoms. Each atom must in a format
1516 * acceptable to ovsdb_atom_from_string(). Optionally, a set may be enclosed
1517 * in "[]" or a map in "{}"; for an empty set or map these punctuators are
1518 * required.
1519 *
1520 * Optionally, a symbol table may be supplied as 'symtab'. It is passed to
1521 * ovsdb_atom_to_string(). */
1522 char *
1523 ovsdb_datum_from_string(struct ovsdb_datum *datum,
1524 const struct ovsdb_type *type, const char *s,
1525 struct ovsdb_symbol_table *symtab)
1526 {
1527 bool is_map = ovsdb_type_is_map(type);
1528 struct ovsdb_error *dberror;
1529 const char *p;
1530 int end_delim;
1531 char *error;
1532
1533 ovsdb_datum_init_empty(datum);
1534
1535 /* Swallow a leading delimiter if there is one. */
1536 p = skip_spaces(s);
1537 if (*p == (is_map ? '{' : '[')) {
1538 end_delim = is_map ? '}' : ']';
1539 p = skip_spaces(p + 1);
1540 } else if (!*p) {
1541 if (is_map) {
1542 return xstrdup("use \"{}\" to specify the empty map");
1543 } else {
1544 return xstrdup("use \"[]\" to specify the empty set");
1545 }
1546 } else {
1547 end_delim = 0;
1548 }
1549
1550 while (*p && *p != end_delim) {
1551 union ovsdb_atom key, value;
1552 union ovsdb_atom *range_end_key = NULL;
1553
1554 if (ovsdb_token_is_delim(*p)) {
1555 char *type_str = ovsdb_type_to_english(type);
1556 error = xasprintf("%s: unexpected \"%c\" parsing %s",
1557 s, *p, type_str);
1558 free(type_str);
1559 goto error;
1560 }
1561
1562 /* Add to datum. */
1563 error = parse_key_value(&p, type, &key, &value,
1564 symtab, &range_end_key);
1565 if (error) {
1566 goto error;
1567 }
1568 ovsdb_datum_add_unsafe(datum, &key, &value, type, range_end_key);
1569 free_key_value_range(type, &key, &value, &range_end_key);
1570
1571 /* Skip optional white space and comma. */
1572 p = skip_spaces(p);
1573 if (*p == ',') {
1574 p = skip_spaces(p + 1);
1575 }
1576 }
1577
1578 if (*p != end_delim) {
1579 error = xasprintf("%s: missing \"%c\" at end of data", s, end_delim);
1580 goto error;
1581 }
1582 if (end_delim) {
1583 p = skip_spaces(p + 1);
1584 if (*p) {
1585 error = xasprintf("%s: trailing garbage after \"%c\"",
1586 s, end_delim);
1587 goto error;
1588 }
1589 }
1590
1591 if (datum->n < type->n_min) {
1592 error = xasprintf("%s: %u %s specified but the minimum number is %u",
1593 s, datum->n, is_map ? "pair(s)" : "value(s)",
1594 type->n_min);
1595 goto error;
1596 } else if (datum->n > type->n_max) {
1597 error = xasprintf("%s: %u %s specified but the maximum number is %u",
1598 s, datum->n, is_map ? "pair(s)" : "value(s)",
1599 type->n_max);
1600 goto error;
1601 }
1602
1603 dberror = ovsdb_datum_sort(datum, type->key.type);
1604 if (dberror) {
1605 ovsdb_error_destroy(dberror);
1606 if (ovsdb_type_is_map(type)) {
1607 error = xasprintf("%s: map contains duplicate key", s);
1608 } else {
1609 error = xasprintf("%s: set contains duplicate value", s);
1610 }
1611 goto error;
1612 }
1613
1614 return NULL;
1615
1616 error:
1617 ovsdb_datum_destroy(datum, type);
1618 ovsdb_datum_init_empty(datum);
1619 return error;
1620 }
1621
1622 /* Appends to 'out' the 'datum' (with the given 'type') in a format acceptable
1623 * to ovsdb_datum_from_string(). */
1624 void
1625 ovsdb_datum_to_string(const struct ovsdb_datum *datum,
1626 const struct ovsdb_type *type, struct ds *out)
1627 {
1628 bool is_map = ovsdb_type_is_map(type);
1629 size_t i;
1630
1631 if (type->n_max > 1 || !datum->n) {
1632 ds_put_char(out, is_map ? '{' : '[');
1633 }
1634 for (i = 0; i < datum->n; i++) {
1635 if (i > 0) {
1636 ds_put_cstr(out, ", ");
1637 }
1638
1639 ovsdb_atom_to_string(&datum->keys[i], type->key.type, out);
1640 if (is_map) {
1641 ds_put_char(out, '=');
1642 ovsdb_atom_to_string(&datum->values[i], type->value.type, out);
1643 }
1644 }
1645 if (type->n_max > 1 || !datum->n) {
1646 ds_put_char(out, is_map ? '}' : ']');
1647 }
1648 }
1649
1650 /* Appends to 'out' the 'datum' (with the given 'type') in a bare string format
1651 * that cannot be parsed uniformly back into a datum but is easier for shell
1652 * scripts, etc., to deal with. */
1653 void
1654 ovsdb_datum_to_bare(const struct ovsdb_datum *datum,
1655 const struct ovsdb_type *type, struct ds *out)
1656 {
1657 bool is_map = ovsdb_type_is_map(type);
1658 size_t i;
1659
1660 for (i = 0; i < datum->n; i++) {
1661 if (i > 0) {
1662 ds_put_cstr(out, " ");
1663 }
1664
1665 ovsdb_atom_to_bare(&datum->keys[i], type->key.type, out);
1666 if (is_map) {
1667 ds_put_char(out, '=');
1668 ovsdb_atom_to_bare(&datum->values[i], type->value.type, out);
1669 }
1670 }
1671 }
1672
1673 /* Initializes 'datum' as a string-to-string map whose contents are copied from
1674 * 'smap', which is not modified. */
1675 void
1676 ovsdb_datum_from_smap(struct ovsdb_datum *datum, const struct smap *smap)
1677 {
1678 datum->n = smap_count(smap);
1679 datum->keys = xmalloc(datum->n * sizeof *datum->keys);
1680 datum->values = xmalloc(datum->n * sizeof *datum->values);
1681
1682 struct smap_node *node;
1683 size_t i = 0;
1684 SMAP_FOR_EACH (node, smap) {
1685 datum->keys[i].string = xstrdup(node->key);
1686 datum->values[i].string = xstrdup(node->value);
1687 i++;
1688 }
1689 ovs_assert(i == datum->n);
1690
1691 ovsdb_datum_sort_unique(datum, OVSDB_TYPE_STRING, OVSDB_TYPE_STRING);
1692 }
1693
1694 struct ovsdb_error * OVS_WARN_UNUSED_RESULT
1695 ovsdb_datum_convert(struct ovsdb_datum *dst,
1696 const struct ovsdb_type *dst_type,
1697 const struct ovsdb_datum *src,
1698 const struct ovsdb_type *src_type)
1699 {
1700 struct json *json = ovsdb_datum_to_json(src, src_type);
1701 struct ovsdb_error *error = ovsdb_datum_from_json(dst, dst_type, json,
1702 NULL);
1703 json_destroy(json);
1704 return error;
1705 }
1706
1707 static uint32_t
1708 hash_atoms(enum ovsdb_atomic_type type, const union ovsdb_atom *atoms,
1709 unsigned int n, uint32_t basis)
1710 {
1711 if (type != OVSDB_TYPE_VOID) {
1712 unsigned int i;
1713
1714 for (i = 0; i < n; i++) {
1715 basis = ovsdb_atom_hash(&atoms[i], type, basis);
1716 }
1717 }
1718 return basis;
1719 }
1720
1721 uint32_t
1722 ovsdb_datum_hash(const struct ovsdb_datum *datum,
1723 const struct ovsdb_type *type, uint32_t basis)
1724 {
1725 basis = hash_atoms(type->key.type, datum->keys, datum->n, basis);
1726 basis ^= (type->key.type << 24) | (type->value.type << 16) | datum->n;
1727 basis = hash_atoms(type->value.type, datum->values, datum->n, basis);
1728 return basis;
1729 }
1730
1731 static int
1732 atom_arrays_compare_3way(const union ovsdb_atom *a,
1733 const union ovsdb_atom *b,
1734 enum ovsdb_atomic_type type,
1735 size_t n)
1736 {
1737 unsigned int i;
1738
1739 for (i = 0; i < n; i++) {
1740 int cmp = ovsdb_atom_compare_3way(&a[i], &b[i], type);
1741 if (cmp) {
1742 return cmp;
1743 }
1744 }
1745
1746 return 0;
1747 }
1748
1749 bool
1750 ovsdb_datum_equals(const struct ovsdb_datum *a,
1751 const struct ovsdb_datum *b,
1752 const struct ovsdb_type *type)
1753 {
1754 return !ovsdb_datum_compare_3way(a, b, type);
1755 }
1756
1757 int
1758 ovsdb_datum_compare_3way(const struct ovsdb_datum *a,
1759 const struct ovsdb_datum *b,
1760 const struct ovsdb_type *type)
1761 {
1762 int cmp;
1763
1764 if (a->n != b->n) {
1765 return a->n < b->n ? -1 : 1;
1766 }
1767
1768 cmp = atom_arrays_compare_3way(a->keys, b->keys, type->key.type, a->n);
1769 if (cmp) {
1770 return cmp;
1771 }
1772
1773 return (type->value.type == OVSDB_TYPE_VOID ? 0
1774 : atom_arrays_compare_3way(a->values, b->values, type->value.type,
1775 a->n));
1776 }
1777
1778 /* If 'key' is one of the keys in 'datum', returns its index within 'datum',
1779 * otherwise UINT_MAX. 'key.type' must be the type of the atoms stored in the
1780 * 'keys' array in 'datum'.
1781 */
1782 unsigned int
1783 ovsdb_datum_find_key(const struct ovsdb_datum *datum,
1784 const union ovsdb_atom *key,
1785 enum ovsdb_atomic_type key_type)
1786 {
1787 unsigned int low = 0;
1788 unsigned int high = datum->n;
1789 while (low < high) {
1790 unsigned int idx = (low + high) / 2;
1791 int cmp = ovsdb_atom_compare_3way(key, &datum->keys[idx], key_type);
1792 if (cmp < 0) {
1793 high = idx;
1794 } else if (cmp > 0) {
1795 low = idx + 1;
1796 } else {
1797 return idx;
1798 }
1799 }
1800 return UINT_MAX;
1801 }
1802
1803 /* If 'key' and 'value' is one of the key-value pairs in 'datum', returns its
1804 * index within 'datum', otherwise UINT_MAX. 'key.type' must be the type of
1805 * the atoms stored in the 'keys' array in 'datum'. 'value_type' may be the
1806 * type of the 'values' atoms or OVSDB_TYPE_VOID to compare only keys.
1807 */
1808 unsigned int
1809 ovsdb_datum_find_key_value(const struct ovsdb_datum *datum,
1810 const union ovsdb_atom *key,
1811 enum ovsdb_atomic_type key_type,
1812 const union ovsdb_atom *value,
1813 enum ovsdb_atomic_type value_type)
1814 {
1815 unsigned int idx = ovsdb_datum_find_key(datum, key, key_type);
1816 if (idx != UINT_MAX
1817 && value_type != OVSDB_TYPE_VOID
1818 && !ovsdb_atom_equals(&datum->values[idx], value, value_type)) {
1819 idx = UINT_MAX;
1820 }
1821 return idx;
1822 }
1823
1824 /* If atom 'i' in 'a' is also in 'b', returns its index in 'b', otherwise
1825 * UINT_MAX. 'type' must be the type of 'a' and 'b', except that
1826 * type->value.type may be set to OVSDB_TYPE_VOID to compare keys but not
1827 * values. */
1828 static unsigned int
1829 ovsdb_datum_find(const struct ovsdb_datum *a, int i,
1830 const struct ovsdb_datum *b,
1831 const struct ovsdb_type *type)
1832 {
1833 return ovsdb_datum_find_key_value(b,
1834 &a->keys[i], type->key.type,
1835 a->values ? &a->values[i] : NULL,
1836 type->value.type);
1837 }
1838
1839 /* Returns true if every element in 'a' is also in 'b', false otherwise. */
1840 bool
1841 ovsdb_datum_includes_all(const struct ovsdb_datum *a,
1842 const struct ovsdb_datum *b,
1843 const struct ovsdb_type *type)
1844 {
1845 size_t i;
1846
1847 if (a->n > b->n) {
1848 return false;
1849 }
1850 for (i = 0; i < a->n; i++) {
1851 if (ovsdb_datum_find(a, i, b, type) == UINT_MAX) {
1852 return false;
1853 }
1854 }
1855 return true;
1856 }
1857
1858 /* Returns true if no element in 'a' is also in 'b', false otherwise. */
1859 bool
1860 ovsdb_datum_excludes_all(const struct ovsdb_datum *a,
1861 const struct ovsdb_datum *b,
1862 const struct ovsdb_type *type)
1863 {
1864 size_t i;
1865
1866 for (i = 0; i < a->n; i++) {
1867 if (ovsdb_datum_find(a, i, b, type) != UINT_MAX) {
1868 return false;
1869 }
1870 }
1871 return true;
1872 }
1873
1874 static void
1875 ovsdb_datum_reallocate(struct ovsdb_datum *a, const struct ovsdb_type *type,
1876 unsigned int capacity)
1877 {
1878 a->keys = xrealloc(a->keys, capacity * sizeof *a->keys);
1879 if (type->value.type != OVSDB_TYPE_VOID) {
1880 a->values = xrealloc(a->values, capacity * sizeof *a->values);
1881 }
1882 }
1883
1884 /* Removes the element with index 'idx' from 'datum', which has type 'type'.
1885 * If 'idx' is not the last element in 'datum', then the removed element is
1886 * replaced by the (former) last element.
1887 *
1888 * This function does not maintain ovsdb_datum invariants. Use
1889 * ovsdb_datum_sort() to check and restore these invariants. */
1890 void
1891 ovsdb_datum_remove_unsafe(struct ovsdb_datum *datum, size_t idx,
1892 const struct ovsdb_type *type)
1893 {
1894 ovsdb_atom_destroy(&datum->keys[idx], type->key.type);
1895 datum->keys[idx] = datum->keys[datum->n - 1];
1896 if (type->value.type != OVSDB_TYPE_VOID) {
1897 ovsdb_atom_destroy(&datum->values[idx], type->value.type);
1898 datum->values[idx] = datum->values[datum->n - 1];
1899 }
1900 datum->n--;
1901 }
1902
1903 /* Adds the element with the given 'key' and 'value' to 'datum', which must
1904 * have the specified 'type'. Optionally if 'range_end_atom' is not
1905 * a null pointer, adds a set of integers to 'datum' from inclusive
1906 * range ['key', 'range_end_atom'].
1907 *
1908 * This function always allocates memory, so it is not an efficient way to add
1909 * a number of elements to a datum.
1910 *
1911 * When adding a range of integers, this function allocates the memory once
1912 * for the whole range.
1913 *
1914 * This function does not maintain ovsdb_datum invariants. Use
1915 * ovsdb_datum_sort() to check and restore these invariants. (But a datum with
1916 * 0 or 1 elements cannot violate the invariants anyhow.) */
1917 void
1918 ovsdb_datum_add_unsafe(struct ovsdb_datum *datum,
1919 const union ovsdb_atom *key,
1920 const union ovsdb_atom *value,
1921 const struct ovsdb_type *type,
1922 const union ovsdb_atom *range_end_atom)
1923 {
1924 size_t idx = datum->n;
1925 datum->n += range_end_atom ?
1926 (range_end_atom->integer - key->integer + 1) : 1;
1927 datum->keys = xrealloc(datum->keys, datum->n * sizeof *datum->keys);
1928 if (range_end_atom && key->integer <= range_end_atom->integer) {
1929 for (int64_t i = key->integer; i <= range_end_atom->integer; i++) {
1930 datum->keys[idx++].integer = i;
1931 }
1932 } else {
1933 ovsdb_atom_clone(&datum->keys[idx], key, type->key.type);
1934 if (type->value.type != OVSDB_TYPE_VOID) {
1935 datum->values = xrealloc(datum->values,
1936 datum->n * sizeof *datum->values);
1937 ovsdb_atom_clone(&datum->values[idx], value, type->value.type);
1938 }
1939 }
1940 }
1941
1942 void
1943 ovsdb_datum_union(struct ovsdb_datum *a, const struct ovsdb_datum *b,
1944 const struct ovsdb_type *type, bool replace)
1945 {
1946 unsigned int n;
1947 size_t bi;
1948
1949 n = a->n;
1950 for (bi = 0; bi < b->n; bi++) {
1951 unsigned int ai;
1952
1953 ai = ovsdb_datum_find_key(a, &b->keys[bi], type->key.type);
1954 if (ai == UINT_MAX) {
1955 if (n == a->n) {
1956 ovsdb_datum_reallocate(a, type, a->n + (b->n - bi));
1957 }
1958 ovsdb_atom_clone(&a->keys[n], &b->keys[bi], type->key.type);
1959 if (type->value.type != OVSDB_TYPE_VOID) {
1960 ovsdb_atom_clone(&a->values[n], &b->values[bi],
1961 type->value.type);
1962 }
1963 n++;
1964 } else if (replace && type->value.type != OVSDB_TYPE_VOID) {
1965 ovsdb_atom_destroy(&a->values[ai], type->value.type);
1966 ovsdb_atom_clone(&a->values[ai], &b->values[bi],
1967 type->value.type);
1968 }
1969 }
1970 if (n != a->n) {
1971 a->n = n;
1972 ovs_assert(!ovsdb_datum_sort(a, type->key.type));
1973 }
1974 }
1975
1976 void
1977 ovsdb_datum_subtract(struct ovsdb_datum *a, const struct ovsdb_type *a_type,
1978 const struct ovsdb_datum *b,
1979 const struct ovsdb_type *b_type)
1980 {
1981 bool changed = false;
1982 size_t i;
1983
1984 ovs_assert(a_type->key.type == b_type->key.type);
1985 ovs_assert(a_type->value.type == b_type->value.type
1986 || b_type->value.type == OVSDB_TYPE_VOID);
1987
1988 /* XXX The big-O of this could easily be improved. */
1989 for (i = 0; i < a->n; ) {
1990 unsigned int idx = ovsdb_datum_find(a, i, b, b_type);
1991 if (idx != UINT_MAX) {
1992 changed = true;
1993 ovsdb_datum_remove_unsafe(a, i, a_type);
1994 } else {
1995 i++;
1996 }
1997 }
1998 if (changed) {
1999 ovsdb_datum_sort_assert(a, a_type->key.type);
2000 }
2001 }
2002 \f
2003 struct ovsdb_symbol_table *
2004 ovsdb_symbol_table_create(void)
2005 {
2006 struct ovsdb_symbol_table *symtab = xmalloc(sizeof *symtab);
2007 shash_init(&symtab->sh);
2008 return symtab;
2009 }
2010
2011 void
2012 ovsdb_symbol_table_destroy(struct ovsdb_symbol_table *symtab)
2013 {
2014 if (symtab) {
2015 shash_destroy_free_data(&symtab->sh);
2016 free(symtab);
2017 }
2018 }
2019
2020 struct ovsdb_symbol *
2021 ovsdb_symbol_table_get(const struct ovsdb_symbol_table *symtab,
2022 const char *name)
2023 {
2024 return shash_find_data(&symtab->sh, name);
2025 }
2026
2027 struct ovsdb_symbol *
2028 ovsdb_symbol_table_put(struct ovsdb_symbol_table *symtab, const char *name,
2029 const struct uuid *uuid, bool created)
2030 {
2031 struct ovsdb_symbol *symbol;
2032
2033 ovs_assert(!ovsdb_symbol_table_get(symtab, name));
2034 symbol = xmalloc(sizeof *symbol);
2035 symbol->uuid = *uuid;
2036 symbol->created = created;
2037 symbol->strong_ref = false;
2038 symbol->weak_ref = false;
2039 shash_add(&symtab->sh, name, symbol);
2040 return symbol;
2041 }
2042
2043 struct ovsdb_symbol *
2044 ovsdb_symbol_table_insert(struct ovsdb_symbol_table *symtab,
2045 const char *name)
2046 {
2047 struct ovsdb_symbol *symbol;
2048
2049 symbol = ovsdb_symbol_table_get(symtab, name);
2050 if (!symbol) {
2051 struct uuid uuid;
2052
2053 uuid_generate(&uuid);
2054 symbol = ovsdb_symbol_table_put(symtab, name, &uuid, false);
2055 }
2056 return symbol;
2057 }
2058 \f
2059 /* APIs for Generating and apply diffs. */
2060
2061 /* Generate a difference ovsdb_dataum between 'old' and 'new'.
2062 * 'new' can be regenerated by applying the difference to the 'old'.
2063 *
2064 * The diff operation is reversible. Given 'old',
2065 * 'new' can be recreated by applying diff to 'old'.
2066 *
2067 * Thus
2068 * Let d = 'old' diff 'new'
2069 * then 'new' = 'old' diff d
2070 *
2071 * The 'diff' datum is always safe; the orders of keys are maintained
2072 * since they are added in order. */
2073 void
2074 ovsdb_datum_diff(struct ovsdb_datum *diff,
2075 const struct ovsdb_datum *old,
2076 const struct ovsdb_datum *new,
2077 const struct ovsdb_type *type)
2078 {
2079 size_t oi, ni;
2080
2081 ovsdb_datum_init_empty(diff);
2082 if (!ovsdb_type_is_composite(type)) {
2083 ovsdb_datum_clone(diff, new, type);
2084 return;
2085 }
2086
2087 /* Generate the diff in O(n) time. */
2088 for (oi = ni = 0; oi < old->n && ni < new->n; ) {
2089 int c = ovsdb_atom_compare_3way(&old->keys[oi], &new->keys[ni],
2090 type->key.type);
2091 if (c < 0) {
2092 ovsdb_datum_add_unsafe(diff, &old->keys[oi], &old->values[oi],
2093 type, NULL);
2094 oi++;
2095 } else if (c > 0) {
2096 ovsdb_datum_add_unsafe(diff, &new->keys[ni], &new->values[ni],
2097 type, NULL);
2098 ni++;
2099 } else {
2100 if (type->value.type != OVSDB_TYPE_VOID &&
2101 ovsdb_atom_compare_3way(&old->values[oi], &new->values[ni],
2102 type->value.type)) {
2103 ovsdb_datum_add_unsafe(diff, &new->keys[ni], &new->values[ni],
2104 type, NULL);
2105 }
2106 oi++; ni++;
2107 }
2108 }
2109
2110 for (; oi < old->n; oi++) {
2111 ovsdb_datum_add_unsafe(diff, &old->keys[oi], &old->values[oi],
2112 type, NULL);
2113 }
2114
2115 for (; ni < new->n; ni++) {
2116 ovsdb_datum_add_unsafe(diff, &new->keys[ni], &new->values[ni],
2117 type, NULL);
2118 }
2119 }
2120
2121 /* Apply 'diff' to 'old' to regenerate 'new'.
2122 *
2123 * Return NULL if the 'new' is successfully generated, otherwise, return
2124 * ovsdb_error and the stat of 'new' is indeterministic. */
2125 struct ovsdb_error *
2126 ovsdb_datum_apply_diff(struct ovsdb_datum *new,
2127 const struct ovsdb_datum *old,
2128 const struct ovsdb_datum *diff,
2129 const struct ovsdb_type *type)
2130 {
2131 ovsdb_datum_diff(new, old, diff, type);
2132
2133 /* Make sure member size of 'new' conforms to type. */
2134 if (new->n < type->n_min || new->n > type->n_max) {
2135 ovsdb_datum_destroy(new, type);
2136 return ovsdb_error(NULL, "Datum crated by diff has size error");
2137 }
2138
2139 return NULL;
2140 }
2141
2142 \f
2143 /* Extracts a token from the beginning of 's' and returns a pointer just after
2144 * the token. Stores the token itself into '*outp', which the caller is
2145 * responsible for freeing (with free()).
2146 *
2147 * If 's[0]' is a delimiter, the returned token is the empty string.
2148 *
2149 * A token extends from 's' to the first delimiter, as defined by
2150 * ovsdb_token_is_delim(), or until the end of the string. A delimiter can be
2151 * escaped with a backslash, in which case the backslash does not appear in the
2152 * output. Double quotes also cause delimiters to be ignored, but the double
2153 * quotes are retained in the output. (Backslashes inside double quotes are
2154 * not removed, either.)
2155 */
2156 char *
2157 ovsdb_token_parse(const char **s, char **outp)
2158 {
2159 const char *p;
2160 struct ds out;
2161 bool in_quotes;
2162 char *error;
2163
2164 ds_init(&out);
2165 in_quotes = false;
2166 for (p = *s; *p != '\0'; ) {
2167 int c = *p++;
2168 if (c == '\\') {
2169 if (in_quotes) {
2170 ds_put_char(&out, '\\');
2171 }
2172 if (!*p) {
2173 error = xasprintf("%s: backslash at end of argument", *s);
2174 goto error;
2175 }
2176 ds_put_char(&out, *p++);
2177 } else if (!in_quotes && ovsdb_token_is_delim(c)) {
2178 p--;
2179 break;
2180 } else {
2181 ds_put_char(&out, c);
2182 if (c == '"') {
2183 in_quotes = !in_quotes;
2184 }
2185 }
2186 }
2187 if (in_quotes) {
2188 error = xasprintf("%s: quoted string extends past end of argument",
2189 *s);
2190 goto error;
2191 }
2192 *outp = ds_cstr(&out);
2193 *s = p;
2194 return NULL;
2195
2196 error:
2197 ds_destroy(&out);
2198 *outp = NULL;
2199 return error;
2200 }
2201
2202 /* Returns true if 'c' delimits tokens, or if 'c' is 0, and false otherwise. */
2203 bool
2204 ovsdb_token_is_delim(unsigned char c)
2205 {
2206 return strchr(":=, []{}!<>", c) != NULL;
2207 }
2208
2209 struct ovsdb_error *
2210 ovsdb_atom_range_check_size(int64_t range_start, int64_t range_end)
2211 {
2212 if ((uint64_t) range_end - (uint64_t) range_start
2213 >= MAX_OVSDB_ATOM_RANGE_SIZE) {
2214 return ovsdb_error("constraint violation",
2215 "Range \"%"PRId64"-%"PRId64"\" is too big. "
2216 "Maximum allowed size is %d.",
2217 range_start, range_end, MAX_OVSDB_ATOM_RANGE_SIZE);
2218 }
2219 return NULL;
2220 }
2221 \f
2222 char *
2223 ovsdb_data_row_name(const struct uuid *uuid)
2224 {
2225 char *name;
2226 char *p;
2227
2228 name = xasprintf("row"UUID_FMT, UUID_ARGS(uuid));
2229 for (p = name; *p != '\0'; p++) {
2230 if (*p == '-') {
2231 *p = '_';
2232 }
2233 }
2234
2235 return name;
2236 }