]> git.proxmox.com Git - mirror_ovs.git/blame - lib/ovsdb-data.c
userspace: Add packet_type in dp_packet and flow
[mirror_ovs.git] / lib / ovsdb-data.c
CommitLineData
9b03e59d 1/* Copyright (c) 2009, 2010, 2011, 2012, 2014, 2016 Nicira, Inc.
f85f8ebb
BP
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
0194f33a
BP
20#include <ctype.h>
21#include <float.h>
22#include <inttypes.h>
e9f8f936 23#include <limits.h>
f85f8ebb 24
3e8a2ad1 25#include "openvswitch/dynamic-string.h"
f85f8ebb 26#include "hash.h"
21a0e105 27#include "ovs-thread.h"
f85f8ebb 28#include "ovsdb-error.h"
d198c4be 29#include "ovsdb-parser.h"
ee89ea7b
TW
30#include "openvswitch/json.h"
31#include "openvswitch/shash.h"
57c8677b 32#include "smap.h"
f85f8ebb 33#include "sort.h"
bd76d25d 34#include "unicode.h"
ee89ea7b 35#include "util.h"
f85f8ebb
BP
36
37static struct json *
38wrap_json(const char *name, struct json *wrapped)
39{
40 return json_array_create_2(json_string_create(name), wrapped);
41}
42
5413de95
BP
43/* Initializes 'atom' with the default value of the given 'type'.
44 *
c70a7767 45 * The default value for an atom is as defined in RFC 7047:
5413de95
BP
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()). */
f85f8ebb
BP
57void
58ovsdb_atom_init_default(union ovsdb_atom *atom, enum ovsdb_atomic_type type)
59{
60 switch (type) {
61 case OVSDB_TYPE_VOID:
428b2edd 62 OVS_NOT_REACHED();
f85f8ebb
BP
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:
428b2edd 86 OVS_NOT_REACHED();
f85f8ebb
BP
87 }
88}
89
958ac03a
BP
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. */
95const union ovsdb_atom *
96ovsdb_atom_default(enum ovsdb_atomic_type type)
97{
98 static union ovsdb_atom default_atoms[OVSDB_N_TYPES];
21a0e105 99 static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
958ac03a 100
21a0e105 101 if (ovsthread_once_start(&once)) {
958ac03a
BP
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 }
21a0e105 109 ovsthread_once_done(&once);
958ac03a
BP
110 }
111
cb22974d 112 ovs_assert(ovsdb_atomic_type_is_valid(type));
958ac03a
BP
113 return &default_atoms[type];
114}
5413de95
BP
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. */
c532bf9d
BP
121bool
122ovsdb_atom_is_default(const union ovsdb_atom *atom,
123 enum ovsdb_atomic_type type)
124{
125 switch (type) {
126 case OVSDB_TYPE_VOID:
428b2edd 127 OVS_NOT_REACHED();
c532bf9d
BP
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:
428b2edd 146 OVS_NOT_REACHED();
c532bf9d
BP
147 }
148}
149
5413de95
BP
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()). */
f85f8ebb
BP
154void
155ovsdb_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:
428b2edd 160 OVS_NOT_REACHED();
f85f8ebb
BP
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:
428b2edd 184 OVS_NOT_REACHED();
f85f8ebb
BP
185 }
186}
187
5413de95 188/* Swaps the contents of 'a' and 'b', which need not have the same type. */
f85f8ebb
BP
189void
190ovsdb_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
5413de95
BP
197/* Returns a hash value for 'atom', which has the specified 'type', folding
198 * 'basis' into the calculation. */
f85f8ebb
BP
199uint32_t
200ovsdb_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:
428b2edd 205 OVS_NOT_REACHED();
f85f8ebb
BP
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:
428b2edd 224 OVS_NOT_REACHED();
f85f8ebb
BP
225 }
226}
227
5413de95
BP
228/* Compares 'a' and 'b', which both have type 'type', and returns a
229 * strcmp()-like result. */
f85f8ebb
BP
230int
231ovsdb_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:
428b2edd 237 OVS_NOT_REACHED();
f85f8ebb
BP
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:
428b2edd 256 OVS_NOT_REACHED();
f85f8ebb
BP
257 }
258}
259
260static struct ovsdb_error *
261unwrap_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 {
829d41bd 270 *value = NULL;
f85f8ebb
BP
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
278static struct ovsdb_error *
279parse_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
c5f341ab
BP
290static void
291ovsdb_symbol_referenced(struct ovsdb_symbol *symbol,
292 const struct ovsdb_base_type *base)
293{
cb22974d 294 ovs_assert(base->type == OVSDB_TYPE_UUID);
c5f341ab
BP
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
1ab39058
LR
308static union ovsdb_atom *
309alloc_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
cab50449 327static struct ovsdb_error * OVS_WARN_UNUSED_RESULT
f85f8ebb 328ovsdb_atom_parse_uuid(struct uuid *uuid, const struct json *json,
c5f341ab
BP
329 struct ovsdb_symbol_table *symtab,
330 const struct ovsdb_base_type *base)
f85f8ebb
BP
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) {
c5f341ab 347 struct ovsdb_symbol *symbol;
f85f8ebb
BP
348
349 ovsdb_error_destroy(error0);
d198c4be
BP
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 }
c5f341ab
BP
354
355 symbol = ovsdb_symbol_table_insert(symtab, json_string(value));
356 *uuid = symbol->uuid;
357 ovsdb_symbol_referenced(symbol, base);
fbf925e4 358 return NULL;
f85f8ebb
BP
359 }
360 ovsdb_error_destroy(error1);
361 }
362
363 return error0;
364}
365
cab50449 366static struct ovsdb_error * OVS_WARN_UNUSED_RESULT
c5f341ab
BP
367ovsdb_atom_from_json__(union ovsdb_atom *atom,
368 const struct ovsdb_base_type *base,
bd76d25d 369 const struct json *json,
fbf925e4 370 struct ovsdb_symbol_table *symtab)
f85f8ebb 371{
c5f341ab
BP
372 enum ovsdb_atomic_type type = base->type;
373
f85f8ebb
BP
374 switch (type) {
375 case OVSDB_TYPE_VOID:
428b2edd 376 OVS_NOT_REACHED();
f85f8ebb
BP
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:
c5f341ab 413 return ovsdb_atom_parse_uuid(&atom->uuid, json, symtab, base);
f85f8ebb
BP
414
415 case OVSDB_N_TYPES:
416 default:
428b2edd 417 OVS_NOT_REACHED();
f85f8ebb
BP
418 }
419
420 return ovsdb_syntax_error(json, NULL, "expected %s",
421 ovsdb_atomic_type_to_string(type));
422}
423
5413de95
BP
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 *
958ac03a
BP
429 * Violations of constraints expressed by 'base' are treated as errors.
430 *
5413de95 431 * If 'symtab' is nonnull, then named UUIDs in 'symtab' are accepted. Refer to
c70a7767
BP
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. */
bd76d25d
BP
435struct ovsdb_error *
436ovsdb_atom_from_json(union ovsdb_atom *atom,
437 const struct ovsdb_base_type *base,
438 const struct json *json,
fbf925e4 439 struct ovsdb_symbol_table *symtab)
bd76d25d
BP
440{
441 struct ovsdb_error *error;
442
c5f341ab 443 error = ovsdb_atom_from_json__(atom, base, json, symtab);
bd76d25d
BP
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
5413de95 455/* Converts 'atom', of the specified 'type', to JSON format, and returns the
958ac03a
BP
456 * JSON. The caller is responsible for freeing the returned JSON.
457 *
c70a7767 458 * Refer to RFC 7047 for the format of the JSON that this function produces. */
f85f8ebb
BP
459struct json *
460ovsdb_atom_to_json(const union ovsdb_atom *atom, enum ovsdb_atomic_type type)
461{
462 switch (type) {
463 case OVSDB_TYPE_VOID:
428b2edd 464 OVS_NOT_REACHED();
f85f8ebb
BP
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:
428b2edd 484 OVS_NOT_REACHED();
f85f8ebb
BP
485 }
486}
0194f33a 487
bd76d25d 488static char *
c5f341ab 489ovsdb_atom_from_string__(union ovsdb_atom *atom,
1ab39058 490 union ovsdb_atom **range_end_atom,
c5f341ab
BP
491 const struct ovsdb_base_type *base, const char *s,
492 struct ovsdb_symbol_table *symtab)
0194f33a 493{
c5f341ab
BP
494 enum ovsdb_atomic_type type = base->type;
495
0194f33a
BP
496 switch (type) {
497 case OVSDB_TYPE_VOID:
428b2edd 498 OVS_NOT_REACHED();
0194f33a
BP
499
500 case OVSDB_TYPE_INTEGER: {
1ab39058
LR
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);
0194f33a
BP
515 }
516 atom->integer = integer;
517 }
518 break;
519
520 case OVSDB_TYPE_REAL:
521 if (!str_to_double(s, &atom->real)) {
1bc6ff29 522 return xasprintf("\"%s\" is not a valid real number", s);
0194f33a 523 }
54a687fd
BP
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 }
0194f33a
BP
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 {
1bc6ff29
BP
539 return xasprintf("\"%s\" is not a valid boolean "
540 "(use \"true\" or \"false\")", s);
0194f33a
BP
541 }
542 break;
543
544 case OVSDB_TYPE_STRING:
545 if (*s == '\0') {
1bc6ff29
BP
546 return xstrdup("An empty string is not valid as input; "
547 "use \"\" to represent the empty string");
0194f33a
BP
548 } else if (*s == '"') {
549 size_t s_len = strlen(s);
550
551 if (s_len < 2 || s[s_len - 1] != '"') {
1bc6ff29
BP
552 return xasprintf("%s: missing quote at end of "
553 "quoted string", s);
0194f33a
BP
554 } else if (!json_string_unescape(s + 1, s_len - 2,
555 &atom->string)) {
1bc6ff29
BP
556 char *error = xasprintf("%s: %s", s, atom->string);
557 free(atom->string);
558 return error;
0194f33a
BP
559 }
560 } else {
561 atom->string = xstrdup(s);
562 }
563 break;
564
565 case OVSDB_TYPE_UUID:
ce5a3e38 566 if (*s == '@') {
c5f341ab
BP
567 struct ovsdb_symbol *symbol = ovsdb_symbol_table_insert(symtab, s);
568 atom->uuid = symbol->uuid;
569 ovsdb_symbol_referenced(symbol, base);
ce5a3e38 570 } else if (!uuid_from_string(&atom->uuid, s)) {
1bc6ff29 571 return xasprintf("\"%s\" is not a valid UUID", s);
0194f33a
BP
572 }
573 break;
574
575 case OVSDB_N_TYPES:
576 default:
428b2edd 577 OVS_NOT_REACHED();
0194f33a 578 }
1bc6ff29
BP
579
580 return NULL;
0194f33a
BP
581}
582
1ab39058
LR
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:
bd76d25d 585 *
1ab39058
LR
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'].
bd76d25d
BP
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 *
ce5a3e38
BP
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
c5f341ab
BP
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.
bd76d25d
BP
607 *
608 * Returns a null pointer if successful, otherwise an error message describing
5413de95
BP
609 * the problem. On failure, the contents of 'atom' are indeterminate. The
610 * caller is responsible for freeing the atom or the error.
1ab39058
LR
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.
bd76d25d
BP
618 */
619char *
620ovsdb_atom_from_string(union ovsdb_atom *atom,
1ab39058 621 union ovsdb_atom **range_end_atom,
ce5a3e38
BP
622 const struct ovsdb_base_type *base, const char *s,
623 struct ovsdb_symbol_table *symtab)
bd76d25d
BP
624{
625 struct ovsdb_error *error;
626 char *msg;
627
1ab39058
LR
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);
bd76d25d
BP
633 if (msg) {
634 return msg;
635 }
636
637 error = ovsdb_atom_check_constraints(atom, base);
1ab39058
LR
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
bd76d25d 660 if (error) {
e49190c4 661 ovsdb_atom_destroy(atom, base->type);
1ab39058
LR
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 }
bd76d25d
BP
667 msg = ovsdb_error_to_string(error);
668 ovsdb_error_destroy(error);
669 }
670 return msg;
671}
672
0194f33a
BP
673static bool
674string_needs_quotes(const char *s)
675{
676 const char *p = s;
677 unsigned char c;
678
679 c = *p++;
680 if (!isalpha(c) && c != '_') {
681 return true;
682 }
683
684 while ((c = *p++) != '\0') {
685 if (!isalpha(c) && c != '_' && c != '-' && c != '.') {
686 return true;
687 }
688 }
689
690 if (!strcmp(s, "true") || !strcmp(s, "false")) {
691 return true;
692 }
693
694 return false;
695}
696
697/* Appends 'atom' (which has the given 'type') to 'out', in a format acceptable
698 * to ovsdb_atom_from_string(). */
699void
700ovsdb_atom_to_string(const union ovsdb_atom *atom, enum ovsdb_atomic_type type,
701 struct ds *out)
702{
703 switch (type) {
704 case OVSDB_TYPE_VOID:
428b2edd 705 OVS_NOT_REACHED();
0194f33a
BP
706
707 case OVSDB_TYPE_INTEGER:
708 ds_put_format(out, "%"PRId64, atom->integer);
709 break;
710
711 case OVSDB_TYPE_REAL:
712 ds_put_format(out, "%.*g", DBL_DIG, atom->real);
713 break;
714
715 case OVSDB_TYPE_BOOLEAN:
716 ds_put_cstr(out, atom->boolean ? "true" : "false");
717 break;
718
719 case OVSDB_TYPE_STRING:
720 if (string_needs_quotes(atom->string)) {
721 struct json json;
722
723 json.type = JSON_STRING;
724 json.u.string = atom->string;
725 json_to_ds(&json, 0, out);
726 } else {
727 ds_put_cstr(out, atom->string);
728 }
729 break;
730
731 case OVSDB_TYPE_UUID:
732 ds_put_format(out, UUID_FMT, UUID_ARGS(&atom->uuid));
733 break;
734
735 case OVSDB_N_TYPES:
736 default:
428b2edd 737 OVS_NOT_REACHED();
0194f33a
BP
738 }
739}
bd76d25d 740
c6a41252
BP
741/* Appends 'atom' (which has the given 'type') to 'out', in a bare string
742 * format that cannot be parsed uniformly back into a datum but is easier for
743 * shell scripts, etc., to deal with. */
744void
745ovsdb_atom_to_bare(const union ovsdb_atom *atom, enum ovsdb_atomic_type type,
746 struct ds *out)
747{
748 if (type == OVSDB_TYPE_STRING) {
749 ds_put_cstr(out, atom->string);
750 } else {
751 ovsdb_atom_to_string(atom, type, out);
752 }
753}
754
bd76d25d
BP
755static struct ovsdb_error *
756check_string_constraints(const char *s,
757 const struct ovsdb_string_constraints *c)
758{
759 size_t n_chars;
760 char *msg;
761
762 msg = utf8_validate(s, &n_chars);
763 if (msg) {
764 struct ovsdb_error *error;
765
766 error = ovsdb_error("constraint violation",
be44585c 767 "not a valid UTF-8 string: %s", msg);
bd76d25d
BP
768 free(msg);
769 return error;
770 }
771
772 if (n_chars < c->minLen) {
773 return ovsdb_error(
774 "constraint violation",
34582733 775 "\"%s\" length %"PRIuSIZE" is less than minimum allowed "
bd76d25d
BP
776 "length %u", s, n_chars, c->minLen);
777 } else if (n_chars > c->maxLen) {
778 return ovsdb_error(
779 "constraint violation",
34582733 780 "\"%s\" length %"PRIuSIZE" is greater than maximum allowed "
bd76d25d
BP
781 "length %u", s, n_chars, c->maxLen);
782 }
783
bd76d25d
BP
784 return NULL;
785}
786
787/* Checks whether 'atom' meets the constraints (if any) defined in 'base'.
788 * (base->type must specify 'atom''s type.) Returns a null pointer if the
0d0f05b9
BP
789 * constraints are met, otherwise an error that explains the violation.
790 *
791 * Checking UUID constraints is deferred to transaction commit time, so this
792 * function does nothing for UUID constraints. */
bd76d25d
BP
793struct ovsdb_error *
794ovsdb_atom_check_constraints(const union ovsdb_atom *atom,
795 const struct ovsdb_base_type *base)
796{
bfc96d9b
BP
797 if (base->enum_
798 && ovsdb_datum_find_key(base->enum_, atom, base->type) == UINT_MAX) {
799 struct ovsdb_error *error;
800 struct ds actual = DS_EMPTY_INITIALIZER;
801 struct ds valid = DS_EMPTY_INITIALIZER;
802
803 ovsdb_atom_to_string(atom, base->type, &actual);
804 ovsdb_datum_to_string(base->enum_,
805 ovsdb_base_type_get_enum_type(base->type),
806 &valid);
807 error = ovsdb_error("constraint violation",
808 "%s is not one of the allowed values (%s)",
809 ds_cstr(&actual), ds_cstr(&valid));
810 ds_destroy(&actual);
811 ds_destroy(&valid);
812
813 return error;
814 }
815
bd76d25d
BP
816 switch (base->type) {
817 case OVSDB_TYPE_VOID:
428b2edd 818 OVS_NOT_REACHED();
bd76d25d
BP
819
820 case OVSDB_TYPE_INTEGER:
821 if (atom->integer >= base->u.integer.min
822 && atom->integer <= base->u.integer.max) {
823 return NULL;
824 } else if (base->u.integer.min != INT64_MIN) {
825 if (base->u.integer.max != INT64_MAX) {
826 return ovsdb_error("constraint violation",
827 "%"PRId64" is not in the valid range "
828 "%"PRId64" to %"PRId64" (inclusive)",
829 atom->integer,
830 base->u.integer.min, base->u.integer.max);
831 } else {
832 return ovsdb_error("constraint violation",
833 "%"PRId64" is less than minimum allowed "
834 "value %"PRId64,
835 atom->integer, base->u.integer.min);
836 }
837 } else {
838 return ovsdb_error("constraint violation",
839 "%"PRId64" is greater than maximum allowed "
840 "value %"PRId64,
841 atom->integer, base->u.integer.max);
842 }
428b2edd 843 OVS_NOT_REACHED();
bd76d25d
BP
844
845 case OVSDB_TYPE_REAL:
846 if (atom->real >= base->u.real.min && atom->real <= base->u.real.max) {
847 return NULL;
848 } else if (base->u.real.min != -DBL_MAX) {
849 if (base->u.real.max != DBL_MAX) {
850 return ovsdb_error("constraint violation",
851 "%.*g is not in the valid range "
852 "%.*g to %.*g (inclusive)",
853 DBL_DIG, atom->real,
854 DBL_DIG, base->u.real.min,
855 DBL_DIG, base->u.real.max);
856 } else {
857 return ovsdb_error("constraint violation",
858 "%.*g is less than minimum allowed "
859 "value %.*g",
860 DBL_DIG, atom->real,
861 DBL_DIG, base->u.real.min);
862 }
863 } else {
864 return ovsdb_error("constraint violation",
865 "%.*g is greater than maximum allowed "
866 "value %.*g",
867 DBL_DIG, atom->real,
868 DBL_DIG, base->u.real.max);
869 }
428b2edd 870 OVS_NOT_REACHED();
bd76d25d
BP
871
872 case OVSDB_TYPE_BOOLEAN:
873 return NULL;
874
875 case OVSDB_TYPE_STRING:
876 return check_string_constraints(atom->string, &base->u.string);
877
878 case OVSDB_TYPE_UUID:
879 return NULL;
880
881 case OVSDB_N_TYPES:
882 default:
428b2edd 883 OVS_NOT_REACHED();
bd76d25d
BP
884 }
885}
f85f8ebb 886\f
5413de95
BP
887/* Initializes 'datum' as an empty datum. (An empty datum can be treated as
888 * any type.) */
2f47998b
BP
889void
890ovsdb_datum_init_empty(struct ovsdb_datum *datum)
891{
892 datum->n = 0;
893 datum->keys = NULL;
894 datum->values = NULL;
895}
896
5413de95
BP
897/* Initializes 'datum' as a datum that has the default value for 'type'.
898 *
c70a7767 899 * The default value for a particular type is as defined in RFC 7047:
5413de95
BP
900 *
901 * - If n_min is 0, then the default value is the empty set (or map).
902 *
903 * - If n_min is 1, the default value is a single value or a single
904 * key-value pair, whose key and value are the defaults for their
905 * atomic types. (See ovsdb_atom_init_default() for details.)
906 *
907 * - n_min > 1 is invalid. See ovsdb_type_is_valid().
908 */
f85f8ebb
BP
909void
910ovsdb_datum_init_default(struct ovsdb_datum *datum,
911 const struct ovsdb_type *type)
912{
913 datum->n = type->n_min;
bd76d25d
BP
914 datum->keys = alloc_default_atoms(type->key.type, datum->n);
915 datum->values = alloc_default_atoms(type->value.type, datum->n);
f85f8ebb
BP
916}
917
958ac03a
BP
918/* Returns a read-only datum of the given 'type' that has the default value for
919 * 'type'. The caller must not modify or free the returned datum.
920 *
921 * See ovsdb_datum_init_default() for an explanation of the default value of a
922 * datum. */
923const struct ovsdb_datum *
924ovsdb_datum_default(const struct ovsdb_type *type)
925{
926 if (type->n_min == 0) {
927 static const struct ovsdb_datum empty;
928 return &empty;
929 } else if (type->n_min == 1) {
930 static struct ovsdb_datum default_data[OVSDB_N_TYPES][OVSDB_N_TYPES];
931 struct ovsdb_datum *d;
932 int kt = type->key.type;
933 int vt = type->value.type;
934
cb22974d 935 ovs_assert(ovsdb_type_is_valid(type));
958ac03a
BP
936
937 d = &default_data[kt][vt];
938 if (!d->n) {
939 d->n = 1;
ebc56baa 940 d->keys = CONST_CAST(union ovsdb_atom *, ovsdb_atom_default(kt));
958ac03a 941 if (vt != OVSDB_TYPE_VOID) {
ebc56baa
BP
942 d->values = CONST_CAST(union ovsdb_atom *,
943 ovsdb_atom_default(vt));
958ac03a
BP
944 }
945 }
946 return d;
947 } else {
428b2edd 948 OVS_NOT_REACHED();
958ac03a
BP
949 }
950}
951
5413de95
BP
952/* Returns true if 'datum', which must have the given 'type', has the default
953 * value for that type.
954 *
955 * See ovsdb_datum_init_default() for an explanation of the default value of a
956 * datum. */
c532bf9d
BP
957bool
958ovsdb_datum_is_default(const struct ovsdb_datum *datum,
959 const struct ovsdb_type *type)
960{
961 size_t i;
962
963 if (datum->n != type->n_min) {
964 return false;
965 }
966 for (i = 0; i < datum->n; i++) {
bd76d25d 967 if (!ovsdb_atom_is_default(&datum->keys[i], type->key.type)) {
c532bf9d
BP
968 return false;
969 }
bd76d25d
BP
970 if (type->value.type != OVSDB_TYPE_VOID
971 && !ovsdb_atom_is_default(&datum->values[i], type->value.type)) {
c532bf9d
BP
972 return false;
973 }
974 }
975
976 return true;
977}
978
f85f8ebb
BP
979static union ovsdb_atom *
980clone_atoms(const union ovsdb_atom *old, enum ovsdb_atomic_type type, size_t n)
981{
982 if (type != OVSDB_TYPE_VOID && n) {
983 union ovsdb_atom *new;
984 unsigned int i;
985
986 new = xmalloc(n * sizeof *new);
987 for (i = 0; i < n; i++) {
988 ovsdb_atom_clone(&new[i], &old[i], type);
989 }
990 return new;
991 } else {
992 /* Avoid wasting memory in the n == 0 case, because xmalloc(0) is
993 * treated as xmalloc(1). */
994 return NULL;
995 }
996}
997
5413de95
BP
998/* Initializes 'new' as a copy of 'old', with the given 'type'.
999 *
1000 * The caller must eventually arrange for 'new' to be destroyed (with
1001 * ovsdb_datum_destroy()). */
f85f8ebb
BP
1002void
1003ovsdb_datum_clone(struct ovsdb_datum *new, const struct ovsdb_datum *old,
1004 const struct ovsdb_type *type)
1005{
1006 unsigned int n = old->n;
1007 new->n = n;
bd76d25d
BP
1008 new->keys = clone_atoms(old->keys, type->key.type, n);
1009 new->values = clone_atoms(old->values, type->value.type, n);
f85f8ebb
BP
1010}
1011
1012static void
1013free_data(enum ovsdb_atomic_type type,
1014 union ovsdb_atom *atoms, size_t n_atoms)
1015{
1016 if (ovsdb_atom_needs_destruction(type)) {
1017 unsigned int i;
1018 for (i = 0; i < n_atoms; i++) {
1019 ovsdb_atom_destroy(&atoms[i], type);
1020 }
1021 }
1022 free(atoms);
1023}
1024
5413de95
BP
1025/* Frees the data owned by 'datum', which must have the given 'type'.
1026 *
1027 * This does not actually call free(datum). If necessary, the caller must be
1028 * responsible for that. */
f85f8ebb
BP
1029void
1030ovsdb_datum_destroy(struct ovsdb_datum *datum, const struct ovsdb_type *type)
1031{
bd76d25d
BP
1032 free_data(type->key.type, datum->keys, datum->n);
1033 free_data(type->value.type, datum->values, datum->n);
f85f8ebb
BP
1034}
1035
5413de95 1036/* Swaps the contents of 'a' and 'b', which need not have the same type. */
f85f8ebb
BP
1037void
1038ovsdb_datum_swap(struct ovsdb_datum *a, struct ovsdb_datum *b)
1039{
1040 struct ovsdb_datum tmp = *a;
1041 *a = *b;
1042 *b = tmp;
1043}
1044
1045struct ovsdb_datum_sort_cbdata {
bfc96d9b 1046 enum ovsdb_atomic_type key_type;
2b66469b 1047 enum ovsdb_atomic_type value_type;
f85f8ebb
BP
1048 struct ovsdb_datum *datum;
1049};
1050
1051static int
1052ovsdb_datum_sort_compare_cb(size_t a, size_t b, void *cbdata_)
1053{
1054 struct ovsdb_datum_sort_cbdata *cbdata = cbdata_;
2b66469b 1055 int retval;
f85f8ebb 1056
2b66469b
BP
1057 retval = ovsdb_atom_compare_3way(&cbdata->datum->keys[a],
1058 &cbdata->datum->keys[b],
1059 cbdata->key_type);
1060 if (retval || cbdata->value_type == OVSDB_TYPE_VOID) {
1061 return retval;
1062 }
1063
1064 return ovsdb_atom_compare_3way(&cbdata->datum->values[a],
1065 &cbdata->datum->values[b],
1066 cbdata->value_type);
f85f8ebb
BP
1067}
1068
1069static void
1070ovsdb_datum_sort_swap_cb(size_t a, size_t b, void *cbdata_)
1071{
1072 struct ovsdb_datum_sort_cbdata *cbdata = cbdata_;
1073
1074 ovsdb_atom_swap(&cbdata->datum->keys[a], &cbdata->datum->keys[b]);
bfc96d9b 1075 if (cbdata->datum->values) {
f85f8ebb
BP
1076 ovsdb_atom_swap(&cbdata->datum->values[a], &cbdata->datum->values[b]);
1077 }
1078}
1079
2b66469b
BP
1080static void
1081ovsdb_datum_sort__(struct ovsdb_datum *datum, enum ovsdb_atomic_type key_type,
1082 enum ovsdb_atomic_type value_type)
1083{
1084 struct ovsdb_datum_sort_cbdata cbdata;
1085
1086 cbdata.key_type = key_type;
1087 cbdata.value_type = value_type;
1088 cbdata.datum = datum;
1089 sort(datum->n, ovsdb_datum_sort_compare_cb, ovsdb_datum_sort_swap_cb,
1090 &cbdata);
1091}
1092
5413de95
BP
1093/* The keys in an ovsdb_datum must be unique and in sorted order. Most
1094 * functions that modify an ovsdb_datum maintain these invariants. For those
1095 * that don't, this function checks and restores these invariants for 'datum',
1096 * whose keys are of type 'key_type'.
1097 *
1098 * This function returns NULL if successful, otherwise an error message. The
1099 * caller must free the returned error when it is no longer needed. On error,
1100 * 'datum' is sorted but not unique. */
e9f8f936 1101struct ovsdb_error *
bfc96d9b 1102ovsdb_datum_sort(struct ovsdb_datum *datum, enum ovsdb_atomic_type key_type)
f85f8ebb 1103{
2b66469b
BP
1104 size_t i;
1105
f85f8ebb
BP
1106 if (datum->n < 2) {
1107 return NULL;
2b66469b
BP
1108 }
1109
1110 ovsdb_datum_sort__(datum, key_type, OVSDB_TYPE_VOID);
1111
1112 for (i = 0; i < datum->n - 1; i++) {
1113 if (ovsdb_atom_equals(&datum->keys[i], &datum->keys[i + 1],
1114 key_type)) {
1115 if (datum->values) {
1116 return ovsdb_error(NULL, "map contains duplicate key");
1117 } else {
1118 return ovsdb_error(NULL, "set contains duplicate");
f85f8ebb
BP
1119 }
1120 }
f85f8ebb 1121 }
2b66469b 1122 return NULL;
f85f8ebb
BP
1123}
1124
5413de95
BP
1125/* This function is the same as ovsdb_datum_sort(), except that the caller
1126 * knows that 'datum' is unique. The operation therefore "cannot fail", so
1127 * this function assert-fails if it actually does. */
bfc96d9b
BP
1128void
1129ovsdb_datum_sort_assert(struct ovsdb_datum *datum,
1130 enum ovsdb_atomic_type key_type)
1131{
1132 struct ovsdb_error *error = ovsdb_datum_sort(datum, key_type);
1133 if (error) {
428b2edd 1134 OVS_NOT_REACHED();
bfc96d9b
BP
1135 }
1136}
1137
2b66469b
BP
1138/* This is similar to ovsdb_datum_sort(), except that it drops duplicate keys
1139 * instead of reporting an error. In a map type, the smallest value among a
1140 * group of duplicate pairs is retained and the others are dropped.
1141 *
1142 * Returns the number of keys (or pairs) that were dropped. */
1143size_t
1144ovsdb_datum_sort_unique(struct ovsdb_datum *datum,
1145 enum ovsdb_atomic_type key_type,
1146 enum ovsdb_atomic_type value_type)
1147{
1148 size_t src, dst;
1149
1150 if (datum->n < 2) {
1151 return 0;
1152 }
1153
1154 ovsdb_datum_sort__(datum, key_type, value_type);
1155
1156 dst = 1;
1157 for (src = 1; src < datum->n; src++) {
1158 if (ovsdb_atom_equals(&datum->keys[src], &datum->keys[dst - 1],
1159 key_type)) {
1160 ovsdb_atom_destroy(&datum->keys[src], key_type);
1161 if (value_type != OVSDB_TYPE_VOID) {
1162 ovsdb_atom_destroy(&datum->values[src], value_type);
1163 }
1164 } else {
1165 if (src != dst) {
1166 datum->keys[dst] = datum->keys[src];
1167 if (value_type != OVSDB_TYPE_VOID) {
1168 datum->values[dst] = datum->values[src];
1169 }
1170 }
1171 dst++;
1172 }
1173 }
1174 datum->n = dst;
1175 return datum->n - src;
1176}
1177
bd76d25d
BP
1178/* Checks that each of the atoms in 'datum' conforms to the constraints
1179 * specified by its 'type'. Returns an error if a constraint is violated,
1180 * otherwise a null pointer.
1181 *
1182 * This function is not commonly useful because the most ordinary way to obtain
1183 * a datum is ultimately via ovsdb_atom_from_string() or
1184 * ovsdb_atom_from_json(), which check constraints themselves. */
1185struct ovsdb_error *
1186ovsdb_datum_check_constraints(const struct ovsdb_datum *datum,
1187 const struct ovsdb_type *type)
1188{
1189 struct ovsdb_error *error;
1190 unsigned int i;
1191
1192 for (i = 0; i < datum->n; i++) {
1193 error = ovsdb_atom_check_constraints(&datum->keys[i], &type->key);
1194 if (error) {
1195 return error;
1196 }
1197 }
1198
1199 if (type->value.type != OVSDB_TYPE_VOID) {
1200 for (i = 0; i < datum->n; i++) {
1201 error = ovsdb_atom_check_constraints(&datum->values[i],
1202 &type->value);
1203 if (error) {
1204 return error;
1205 }
1206 }
1207 }
1208
1209 return NULL;
1210}
1211
2b66469b
BP
1212static struct ovsdb_error *
1213ovsdb_datum_from_json__(struct ovsdb_datum *datum,
1214 const struct ovsdb_type *type,
1215 const struct json *json,
1216 struct ovsdb_symbol_table *symtab)
f85f8ebb
BP
1217{
1218 struct ovsdb_error *error;
1219
ae8f13e2
BP
1220 if (ovsdb_type_is_map(type)
1221 || (json->type == JSON_ARRAY
1222 && json->u.array.n > 0
1223 && json->u.array.elems[0]->type == JSON_STRING
1224 && !strcmp(json->u.array.elems[0]->u.string, "set"))) {
f85f8ebb
BP
1225 bool is_map = ovsdb_type_is_map(type);
1226 const char *class = is_map ? "map" : "set";
1227 const struct json *inner;
1228 unsigned int i;
1229 size_t n;
1230
f85f8ebb
BP
1231 error = unwrap_json(json, class, JSON_ARRAY, &inner);
1232 if (error) {
1233 return error;
1234 }
1235
1236 n = inner->u.array.n;
1237 if (n < type->n_min || n > type->n_max) {
1238 return ovsdb_syntax_error(json, NULL, "%s must have %u to "
34582733 1239 "%u members but %"PRIuSIZE" are present",
f85f8ebb
BP
1240 class, type->n_min, type->n_max, n);
1241 }
1242
1243 datum->n = 0;
1244 datum->keys = xmalloc(n * sizeof *datum->keys);
1245 datum->values = is_map ? xmalloc(n * sizeof *datum->values) : NULL;
1246 for (i = 0; i < n; i++) {
1247 const struct json *element = inner->u.array.elems[i];
1248 const struct json *key = NULL;
1249 const struct json *value = NULL;
1250
1251 if (!is_map) {
1252 key = element;
1253 } else {
1254 error = parse_json_pair(element, &key, &value);
1255 if (error) {
1256 goto error;
1257 }
1258 }
1259
bd76d25d 1260 error = ovsdb_atom_from_json(&datum->keys[i], &type->key,
f85f8ebb
BP
1261 key, symtab);
1262 if (error) {
1263 goto error;
1264 }
1265
1266 if (is_map) {
1267 error = ovsdb_atom_from_json(&datum->values[i],
bd76d25d 1268 &type->value, value, symtab);
f85f8ebb 1269 if (error) {
bd76d25d 1270 ovsdb_atom_destroy(&datum->keys[i], type->key.type);
f85f8ebb
BP
1271 goto error;
1272 }
1273 }
1274
1275 datum->n++;
1276 }
f85f8ebb
BP
1277 return NULL;
1278
1279 error:
1280 ovsdb_datum_destroy(datum, type);
1281 return error;
ae8f13e2
BP
1282 } else {
1283 datum->n = 1;
1284 datum->keys = xmalloc(sizeof *datum->keys);
1285 datum->values = NULL;
1286
1287 error = ovsdb_atom_from_json(&datum->keys[0], &type->key,
1288 json, symtab);
1289 if (error) {
1290 free(datum->keys);
1291 }
1292 return error;
f85f8ebb
BP
1293 }
1294}
1295
2b66469b
BP
1296/* Parses 'json' as a datum of the type described by 'type'. If successful,
1297 * returns NULL and initializes 'datum' with the parsed datum. On failure,
1298 * returns an error and the contents of 'datum' are indeterminate. The caller
1299 * is responsible for freeing the error or the datum that is returned.
1300 *
1301 * Violations of constraints expressed by 'type' are treated as errors.
1302 *
1303 * If 'symtab' is nonnull, then named UUIDs in 'symtab' are accepted. Refer to
c70a7767
BP
1304 * RFC 7047 for information about this, and for the syntax that this function
1305 * accepts. */
2b66469b
BP
1306struct ovsdb_error *
1307ovsdb_datum_from_json(struct ovsdb_datum *datum,
1308 const struct ovsdb_type *type,
1309 const struct json *json,
1310 struct ovsdb_symbol_table *symtab)
1311{
1312 struct ovsdb_error *error;
1313
1314 error = ovsdb_datum_from_json__(datum, type, json, symtab);
1315 if (error) {
1316 return error;
1317 }
1318
1319 error = ovsdb_datum_sort(datum, type->key.type);
1320 if (error) {
1321 ovsdb_datum_destroy(datum, type);
1322 }
1323 return error;
1324}
1325
aefd97b7
AZ
1326/* Parses 'json' as a datum of the type described by 'type' for internal
1327 * use. This function is similar to 'ovsdb_datum_from_json', except the
1328 * member size of set or map is not checked.
1329 *
1330 * The datum generated should be used then discard. It is not suitable
1331 * for storing into IDL because of the possible member size violation. */
1332struct ovsdb_error *
1333ovsdb_transient_datum_from_json(struct ovsdb_datum *datum,
1334 const struct ovsdb_type *type,
1335 const struct json *json)
1336{
1337 struct ovsdb_type relaxed_type = *type;
1338
1339 relaxed_type.n_min = 0;
1340 relaxed_type.n_max = UINT_MAX;
1341
1342 return ovsdb_datum_from_json(datum, &relaxed_type, json, NULL);
1343}
1344
958ac03a
BP
1345/* Converts 'datum', of the specified 'type', to JSON format, and returns the
1346 * JSON. The caller is responsible for freeing the returned JSON.
1347 *
1348 * 'type' constraints on datum->n are ignored.
1349 *
c70a7767 1350 * Refer to RFC 7047 for the format of the JSON that this function produces. */
f85f8ebb
BP
1351struct json *
1352ovsdb_datum_to_json(const struct ovsdb_datum *datum,
1353 const struct ovsdb_type *type)
1354{
6a6f8d16 1355 if (ovsdb_type_is_map(type)) {
f85f8ebb
BP
1356 struct json **elems;
1357 size_t i;
1358
1359 elems = xmalloc(datum->n * sizeof *elems);
1360 for (i = 0; i < datum->n; i++) {
6a6f8d16
BP
1361 elems[i] = json_array_create_2(
1362 ovsdb_atom_to_json(&datum->keys[i], type->key.type),
1363 ovsdb_atom_to_json(&datum->values[i], type->value.type));
f85f8ebb
BP
1364 }
1365
6a6f8d16
BP
1366 return wrap_json("map", json_array_create(elems, datum->n));
1367 } else if (datum->n == 1) {
1368 return ovsdb_atom_to_json(&datum->keys[0], type->key.type);
f85f8ebb
BP
1369 } else {
1370 struct json **elems;
1371 size_t i;
1372
1373 elems = xmalloc(datum->n * sizeof *elems);
1374 for (i = 0; i < datum->n; i++) {
6a6f8d16 1375 elems[i] = ovsdb_atom_to_json(&datum->keys[i], type->key.type);
f85f8ebb
BP
1376 }
1377
6a6f8d16 1378 return wrap_json("set", json_array_create(elems, datum->n));
f85f8ebb
BP
1379 }
1380}
1381
0194f33a
BP
1382static const char *
1383skip_spaces(const char *p)
1384{
cb456217
BP
1385 while (isspace((unsigned char) *p)) {
1386 p++;
1387 }
1388 return p;
0194f33a
BP
1389}
1390
1bc6ff29 1391static char *
bd76d25d 1392parse_atom_token(const char **s, const struct ovsdb_base_type *base,
1ab39058
LR
1393 union ovsdb_atom *atom, union ovsdb_atom **range_end_atom,
1394 struct ovsdb_symbol_table *symtab)
0194f33a 1395{
1bc6ff29 1396 char *token, *error;
0194f33a 1397
1bc6ff29
BP
1398 error = ovsdb_token_parse(s, &token);
1399 if (!error) {
1ab39058
LR
1400 error = ovsdb_atom_from_string(atom, range_end_atom,
1401 base, token, symtab);
1bc6ff29
BP
1402 free(token);
1403 }
1404 return error;
1405}
0194f33a 1406
1bc6ff29
BP
1407static char *
1408parse_key_value(const char **s, const struct ovsdb_type *type,
ce5a3e38 1409 union ovsdb_atom *key, union ovsdb_atom *value,
1ab39058
LR
1410 struct ovsdb_symbol_table *symtab,
1411 union ovsdb_atom **range_end_key)
1bc6ff29
BP
1412{
1413 const char *start = *s;
1414 char *error;
1415
1ab39058
LR
1416 error = parse_atom_token(s, &type->key, key, range_end_key, symtab);
1417
bd76d25d 1418 if (!error && type->value.type != OVSDB_TYPE_VOID) {
9397a13f 1419 *s = skip_spaces(*s);
1bc6ff29
BP
1420 if (**s == '=') {
1421 (*s)++;
9397a13f 1422 *s = skip_spaces(*s);
1ab39058 1423 error = parse_atom_token(s, &type->value, value, NULL, symtab);
1bc6ff29
BP
1424 } else {
1425 error = xasprintf("%s: syntax error at \"%c\" expecting \"=\"",
1426 start, **s);
1427 }
1428 if (error) {
bd76d25d 1429 ovsdb_atom_destroy(key, type->key.type);
1ab39058
LR
1430 if (range_end_key && *range_end_key) {
1431 ovsdb_atom_destroy(*range_end_key, type->key.type);
1432 free(*range_end_key);
1433 *range_end_key = NULL;
1434 }
0194f33a 1435 }
0194f33a 1436 }
1bc6ff29 1437 return error;
0194f33a
BP
1438}
1439
1440static void
1ab39058
LR
1441free_key_value_range(const struct ovsdb_type *type,
1442 union ovsdb_atom *key, union ovsdb_atom *value,
1443 union ovsdb_atom **range_end_atom)
0194f33a 1444{
bd76d25d
BP
1445 ovsdb_atom_destroy(key, type->key.type);
1446 if (type->value.type != OVSDB_TYPE_VOID) {
1447 ovsdb_atom_destroy(value, type->value.type);
0194f33a 1448 }
1ab39058
LR
1449 if (range_end_atom && *range_end_atom) {
1450 ovsdb_atom_destroy(*range_end_atom, type->key.type);
1451 free(*range_end_atom);
1452 *range_end_atom = NULL;
1453 }
0194f33a
BP
1454}
1455
1456/* Initializes 'datum' as a datum of the given 'type', parsing its contents
1457 * from 's'. The format of 's' is a series of space or comma separated atoms
1458 * or, for a map, '='-delimited pairs of atoms. Each atom must in a format
1459 * acceptable to ovsdb_atom_from_string(). Optionally, a set may be enclosed
1460 * in "[]" or a map in "{}"; for an empty set or map these punctuators are
ce5a3e38
BP
1461 * required.
1462 *
1463 * Optionally, a symbol table may be supplied as 'symtab'. It is passed to
1464 * ovsdb_atom_to_string(). */
1bc6ff29 1465char *
0194f33a 1466ovsdb_datum_from_string(struct ovsdb_datum *datum,
ce5a3e38
BP
1467 const struct ovsdb_type *type, const char *s,
1468 struct ovsdb_symbol_table *symtab)
0194f33a
BP
1469{
1470 bool is_map = ovsdb_type_is_map(type);
1bc6ff29 1471 struct ovsdb_error *dberror;
0194f33a
BP
1472 const char *p;
1473 int end_delim;
1bc6ff29 1474 char *error;
0194f33a
BP
1475
1476 ovsdb_datum_init_empty(datum);
1477
1478 /* Swallow a leading delimiter if there is one. */
1479 p = skip_spaces(s);
1480 if (*p == (is_map ? '{' : '[')) {
1481 end_delim = is_map ? '}' : ']';
1482 p = skip_spaces(p + 1);
1483 } else if (!*p) {
1484 if (is_map) {
1bc6ff29 1485 return xstrdup("use \"{}\" to specify the empty map");
0194f33a 1486 } else {
1bc6ff29 1487 return xstrdup("use \"[]\" to specify the empty set");
0194f33a
BP
1488 }
1489 } else {
1490 end_delim = 0;
1491 }
1492
1493 while (*p && *p != end_delim) {
1494 union ovsdb_atom key, value;
1ab39058 1495 union ovsdb_atom *range_end_key = NULL;
0194f33a
BP
1496
1497 if (ovsdb_token_is_delim(*p)) {
9466d7d4 1498 char *type_str = ovsdb_type_to_english(type);
1bc6ff29 1499 error = xasprintf("%s: unexpected \"%c\" parsing %s",
9466d7d4
JP
1500 s, *p, type_str);
1501 free(type_str);
1bc6ff29 1502 goto error;
0194f33a
BP
1503 }
1504
1505 /* Add to datum. */
1ab39058
LR
1506 error = parse_key_value(&p, type, &key, &value,
1507 symtab, &range_end_key);
1bc6ff29
BP
1508 if (error) {
1509 goto error;
1510 }
1ab39058
LR
1511 ovsdb_datum_add_unsafe(datum, &key, &value, type, range_end_key);
1512 free_key_value_range(type, &key, &value, &range_end_key);
0194f33a
BP
1513
1514 /* Skip optional white space and comma. */
1515 p = skip_spaces(p);
1516 if (*p == ',') {
1517 p = skip_spaces(p + 1);
1518 }
1519 }
1520
1521 if (*p != end_delim) {
1bc6ff29
BP
1522 error = xasprintf("%s: missing \"%c\" at end of data", s, end_delim);
1523 goto error;
0194f33a
BP
1524 }
1525 if (end_delim) {
1526 p = skip_spaces(p + 1);
1527 if (*p) {
1bc6ff29
BP
1528 error = xasprintf("%s: trailing garbage after \"%c\"",
1529 s, end_delim);
1530 goto error;
0194f33a
BP
1531 }
1532 }
1533
1534 if (datum->n < type->n_min) {
1bc6ff29
BP
1535 error = xasprintf("%s: %u %s specified but the minimum number is %u",
1536 s, datum->n, is_map ? "pair(s)" : "value(s)",
1537 type->n_min);
1538 goto error;
0194f33a 1539 } else if (datum->n > type->n_max) {
1bc6ff29
BP
1540 error = xasprintf("%s: %u %s specified but the maximum number is %u",
1541 s, datum->n, is_map ? "pair(s)" : "value(s)",
1542 type->n_max);
1543 goto error;
0194f33a
BP
1544 }
1545
bfc96d9b 1546 dberror = ovsdb_datum_sort(datum, type->key.type);
1bc6ff29
BP
1547 if (dberror) {
1548 ovsdb_error_destroy(dberror);
0194f33a 1549 if (ovsdb_type_is_map(type)) {
1bc6ff29 1550 error = xasprintf("%s: map contains duplicate key", s);
0194f33a 1551 } else {
1bc6ff29 1552 error = xasprintf("%s: set contains duplicate value", s);
0194f33a 1553 }
1bc6ff29 1554 goto error;
0194f33a 1555 }
1bc6ff29
BP
1556
1557 return NULL;
1558
1559error:
1560 ovsdb_datum_destroy(datum, type);
1561 ovsdb_datum_init_empty(datum);
1562 return error;
0194f33a
BP
1563}
1564
1565/* Appends to 'out' the 'datum' (with the given 'type') in a format acceptable
1566 * to ovsdb_datum_from_string(). */
1567void
1568ovsdb_datum_to_string(const struct ovsdb_datum *datum,
1569 const struct ovsdb_type *type, struct ds *out)
1570{
1571 bool is_map = ovsdb_type_is_map(type);
1572 size_t i;
1573
1574 if (type->n_max > 1 || !datum->n) {
1575 ds_put_char(out, is_map ? '{' : '[');
1576 }
1577 for (i = 0; i < datum->n; i++) {
1578 if (i > 0) {
1579 ds_put_cstr(out, ", ");
1580 }
1581
bd76d25d 1582 ovsdb_atom_to_string(&datum->keys[i], type->key.type, out);
0194f33a
BP
1583 if (is_map) {
1584 ds_put_char(out, '=');
bd76d25d 1585 ovsdb_atom_to_string(&datum->values[i], type->value.type, out);
0194f33a
BP
1586 }
1587 }
1588 if (type->n_max > 1 || !datum->n) {
1589 ds_put_char(out, is_map ? '}' : ']');
1590 }
1591}
1592
c6a41252
BP
1593/* Appends to 'out' the 'datum' (with the given 'type') in a bare string format
1594 * that cannot be parsed uniformly back into a datum but is easier for shell
1595 * scripts, etc., to deal with. */
1596void
1597ovsdb_datum_to_bare(const struct ovsdb_datum *datum,
1598 const struct ovsdb_type *type, struct ds *out)
1599{
1600 bool is_map = ovsdb_type_is_map(type);
1601 size_t i;
1602
1603 for (i = 0; i < datum->n; i++) {
1604 if (i > 0) {
1605 ds_put_cstr(out, " ");
1606 }
1607
1608 ovsdb_atom_to_bare(&datum->keys[i], type->key.type, out);
1609 if (is_map) {
1610 ds_put_char(out, '=');
1611 ovsdb_atom_to_bare(&datum->values[i], type->value.type, out);
1612 }
1613 }
1614}
1615
9b03e59d
BP
1616/* Initializes 'datum' as a string-to-string map whose contents are copied from
1617 * 'smap', which is not modified. */
e4af5615 1618void
9b03e59d 1619ovsdb_datum_from_smap(struct ovsdb_datum *datum, const struct smap *smap)
e4af5615 1620{
57c8677b 1621 datum->n = smap_count(smap);
e4af5615
BP
1622 datum->keys = xmalloc(datum->n * sizeof *datum->keys);
1623 datum->values = xmalloc(datum->n * sizeof *datum->values);
1624
9b03e59d
BP
1625 struct smap_node *node;
1626 size_t i = 0;
1627 SMAP_FOR_EACH (node, smap) {
1628 datum->keys[i].string = xstrdup(node->key);
1629 datum->values[i].string = xstrdup(node->value);
e4af5615
BP
1630 i++;
1631 }
cb22974d 1632 ovs_assert(i == datum->n);
e4af5615 1633
e4af5615
BP
1634 ovsdb_datum_sort_unique(datum, OVSDB_TYPE_STRING, OVSDB_TYPE_STRING);
1635}
1636
f85f8ebb
BP
1637static uint32_t
1638hash_atoms(enum ovsdb_atomic_type type, const union ovsdb_atom *atoms,
1639 unsigned int n, uint32_t basis)
1640{
1641 if (type != OVSDB_TYPE_VOID) {
1642 unsigned int i;
1643
1644 for (i = 0; i < n; i++) {
1645 basis = ovsdb_atom_hash(&atoms[i], type, basis);
1646 }
1647 }
1648 return basis;
1649}
1650
1651uint32_t
1652ovsdb_datum_hash(const struct ovsdb_datum *datum,
1653 const struct ovsdb_type *type, uint32_t basis)
1654{
bd76d25d
BP
1655 basis = hash_atoms(type->key.type, datum->keys, datum->n, basis);
1656 basis ^= (type->key.type << 24) | (type->value.type << 16) | datum->n;
1657 basis = hash_atoms(type->value.type, datum->values, datum->n, basis);
f85f8ebb
BP
1658 return basis;
1659}
1660
1661static int
1662atom_arrays_compare_3way(const union ovsdb_atom *a,
2f47998b
BP
1663 const union ovsdb_atom *b,
1664 enum ovsdb_atomic_type type,
1665 size_t n)
f85f8ebb
BP
1666{
1667 unsigned int i;
1668
1669 for (i = 0; i < n; i++) {
1670 int cmp = ovsdb_atom_compare_3way(&a[i], &b[i], type);
1671 if (cmp) {
1672 return cmp;
1673 }
1674 }
1675
1676 return 0;
1677}
1678
1679bool
1680ovsdb_datum_equals(const struct ovsdb_datum *a,
1681 const struct ovsdb_datum *b,
1682 const struct ovsdb_type *type)
1683{
1684 return !ovsdb_datum_compare_3way(a, b, type);
1685}
1686
1687int
1688ovsdb_datum_compare_3way(const struct ovsdb_datum *a,
1689 const struct ovsdb_datum *b,
1690 const struct ovsdb_type *type)
1691{
1692 int cmp;
1693
1694 if (a->n != b->n) {
1695 return a->n < b->n ? -1 : 1;
1696 }
1697
bd76d25d 1698 cmp = atom_arrays_compare_3way(a->keys, b->keys, type->key.type, a->n);
f85f8ebb
BP
1699 if (cmp) {
1700 return cmp;
1701 }
1702
bd76d25d
BP
1703 return (type->value.type == OVSDB_TYPE_VOID ? 0
1704 : atom_arrays_compare_3way(a->values, b->values, type->value.type,
f85f8ebb
BP
1705 a->n));
1706}
1707
2f47998b 1708/* If 'key' is one of the keys in 'datum', returns its index within 'datum',
bd76d25d 1709 * otherwise UINT_MAX. 'key.type' must be the type of the atoms stored in the
2f47998b
BP
1710 * 'keys' array in 'datum'.
1711 */
1712unsigned int
1713ovsdb_datum_find_key(const struct ovsdb_datum *datum,
1714 const union ovsdb_atom *key,
1715 enum ovsdb_atomic_type key_type)
1716{
1717 unsigned int low = 0;
1718 unsigned int high = datum->n;
1719 while (low < high) {
1720 unsigned int idx = (low + high) / 2;
1721 int cmp = ovsdb_atom_compare_3way(key, &datum->keys[idx], key_type);
1722 if (cmp < 0) {
1723 high = idx;
1724 } else if (cmp > 0) {
1725 low = idx + 1;
1726 } else {
1727 return idx;
1728 }
1729 }
1730 return UINT_MAX;
1731}
1732
1733/* If 'key' and 'value' is one of the key-value pairs in 'datum', returns its
bd76d25d 1734 * index within 'datum', otherwise UINT_MAX. 'key.type' must be the type of
2f47998b
BP
1735 * the atoms stored in the 'keys' array in 'datum'. 'value_type' may be the
1736 * type of the 'values' atoms or OVSDB_TYPE_VOID to compare only keys.
1737 */
1738unsigned int
1739ovsdb_datum_find_key_value(const struct ovsdb_datum *datum,
1740 const union ovsdb_atom *key,
1741 enum ovsdb_atomic_type key_type,
1742 const union ovsdb_atom *value,
1743 enum ovsdb_atomic_type value_type)
1744{
1745 unsigned int idx = ovsdb_datum_find_key(datum, key, key_type);
1746 if (idx != UINT_MAX
1747 && value_type != OVSDB_TYPE_VOID
1748 && !ovsdb_atom_equals(&datum->values[idx], value, value_type)) {
1749 idx = UINT_MAX;
1750 }
1751 return idx;
1752}
1753
e9f8f936
BP
1754/* If atom 'i' in 'a' is also in 'b', returns its index in 'b', otherwise
1755 * UINT_MAX. 'type' must be the type of 'a' and 'b', except that
bd76d25d 1756 * type->value.type may be set to OVSDB_TYPE_VOID to compare keys but not
e9f8f936
BP
1757 * values. */
1758static unsigned int
1759ovsdb_datum_find(const struct ovsdb_datum *a, int i,
1760 const struct ovsdb_datum *b,
1761 const struct ovsdb_type *type)
f85f8ebb 1762{
2f47998b 1763 return ovsdb_datum_find_key_value(b,
bd76d25d 1764 &a->keys[i], type->key.type,
2f47998b 1765 a->values ? &a->values[i] : NULL,
bd76d25d 1766 type->value.type);
f85f8ebb
BP
1767}
1768
1769/* Returns true if every element in 'a' is also in 'b', false otherwise. */
1770bool
1771ovsdb_datum_includes_all(const struct ovsdb_datum *a,
1772 const struct ovsdb_datum *b,
1773 const struct ovsdb_type *type)
1774{
1775 size_t i;
1776
ca261b65
BP
1777 if (a->n > b->n) {
1778 return false;
1779 }
f85f8ebb 1780 for (i = 0; i < a->n; i++) {
e9f8f936 1781 if (ovsdb_datum_find(a, i, b, type) == UINT_MAX) {
f85f8ebb
BP
1782 return false;
1783 }
1784 }
1785 return true;
1786}
1787
1788/* Returns true if no element in 'a' is also in 'b', false otherwise. */
1789bool
1790ovsdb_datum_excludes_all(const struct ovsdb_datum *a,
1791 const struct ovsdb_datum *b,
1792 const struct ovsdb_type *type)
1793{
1794 size_t i;
1795
1796 for (i = 0; i < a->n; i++) {
e9f8f936 1797 if (ovsdb_datum_find(a, i, b, type) != UINT_MAX) {
f85f8ebb
BP
1798 return false;
1799 }
1800 }
1801 return true;
1802}
e9f8f936
BP
1803
1804static void
1805ovsdb_datum_reallocate(struct ovsdb_datum *a, const struct ovsdb_type *type,
1806 unsigned int capacity)
1807{
1808 a->keys = xrealloc(a->keys, capacity * sizeof *a->keys);
bd76d25d 1809 if (type->value.type != OVSDB_TYPE_VOID) {
e9f8f936
BP
1810 a->values = xrealloc(a->values, capacity * sizeof *a->values);
1811 }
1812}
1813
2f47998b
BP
1814/* Removes the element with index 'idx' from 'datum', which has type 'type'.
1815 * If 'idx' is not the last element in 'datum', then the removed element is
1816 * replaced by the (former) last element.
1817 *
1818 * This function does not maintain ovsdb_datum invariants. Use
1819 * ovsdb_datum_sort() to check and restore these invariants. */
1820void
1821ovsdb_datum_remove_unsafe(struct ovsdb_datum *datum, size_t idx,
1822 const struct ovsdb_type *type)
e9f8f936 1823{
bd76d25d 1824 ovsdb_atom_destroy(&datum->keys[idx], type->key.type);
2f47998b 1825 datum->keys[idx] = datum->keys[datum->n - 1];
bd76d25d
BP
1826 if (type->value.type != OVSDB_TYPE_VOID) {
1827 ovsdb_atom_destroy(&datum->values[idx], type->value.type);
2f47998b
BP
1828 datum->values[idx] = datum->values[datum->n - 1];
1829 }
1830 datum->n--;
1831}
1832
1833/* Adds the element with the given 'key' and 'value' to 'datum', which must
1ab39058
LR
1834 * have the specified 'type'. Optionally if 'range_end_atom' is not
1835 * a null pointer, adds a set of integers to 'datum' from inclusive
1836 * range ['key', 'range_end_atom'].
2f47998b
BP
1837 *
1838 * This function always allocates memory, so it is not an efficient way to add
1839 * a number of elements to a datum.
1840 *
1ab39058
LR
1841 * When adding a range of integers, this function allocates the memory once
1842 * for the whole range.
1843 *
2f47998b
BP
1844 * This function does not maintain ovsdb_datum invariants. Use
1845 * ovsdb_datum_sort() to check and restore these invariants. (But a datum with
1846 * 0 or 1 elements cannot violate the invariants anyhow.) */
1847void
1848ovsdb_datum_add_unsafe(struct ovsdb_datum *datum,
1849 const union ovsdb_atom *key,
1850 const union ovsdb_atom *value,
1ab39058
LR
1851 const struct ovsdb_type *type,
1852 const union ovsdb_atom *range_end_atom)
2f47998b 1853{
1ab39058
LR
1854 size_t idx = datum->n;
1855 datum->n += range_end_atom ?
1856 (range_end_atom->integer - key->integer + 1) : 1;
2f47998b 1857 datum->keys = xrealloc(datum->keys, datum->n * sizeof *datum->keys);
1ab39058
LR
1858 if (range_end_atom && key->integer <= range_end_atom->integer) {
1859 for (int64_t i = key->integer; i <= range_end_atom->integer; i++) {
1860 datum->keys[idx++].integer = i;
1861 }
1862 } else {
1863 ovsdb_atom_clone(&datum->keys[idx], key, type->key.type);
1864 if (type->value.type != OVSDB_TYPE_VOID) {
1865 datum->values = xrealloc(datum->values,
1866 datum->n * sizeof *datum->values);
1867 ovsdb_atom_clone(&datum->values[idx], value, type->value.type);
1868 }
e9f8f936 1869 }
e9f8f936
BP
1870}
1871
1872void
2f47998b
BP
1873ovsdb_datum_union(struct ovsdb_datum *a, const struct ovsdb_datum *b,
1874 const struct ovsdb_type *type, bool replace)
e9f8f936 1875{
e9f8f936 1876 unsigned int n;
2f47998b 1877 size_t bi;
e9f8f936 1878
e9f8f936 1879 n = a->n;
2f47998b
BP
1880 for (bi = 0; bi < b->n; bi++) {
1881 unsigned int ai;
1882
bd76d25d 1883 ai = ovsdb_datum_find_key(a, &b->keys[bi], type->key.type);
2f47998b 1884 if (ai == UINT_MAX) {
e9f8f936 1885 if (n == a->n) {
2f47998b 1886 ovsdb_datum_reallocate(a, type, a->n + (b->n - bi));
e9f8f936 1887 }
bd76d25d
BP
1888 ovsdb_atom_clone(&a->keys[n], &b->keys[bi], type->key.type);
1889 if (type->value.type != OVSDB_TYPE_VOID) {
2f47998b 1890 ovsdb_atom_clone(&a->values[n], &b->values[bi],
bd76d25d 1891 type->value.type);
e9f8f936
BP
1892 }
1893 n++;
bd76d25d
BP
1894 } else if (replace && type->value.type != OVSDB_TYPE_VOID) {
1895 ovsdb_atom_destroy(&a->values[ai], type->value.type);
2f47998b 1896 ovsdb_atom_clone(&a->values[ai], &b->values[bi],
bd76d25d 1897 type->value.type);
e9f8f936
BP
1898 }
1899 }
1900 if (n != a->n) {
1901 struct ovsdb_error *error;
1902 a->n = n;
bfc96d9b 1903 error = ovsdb_datum_sort(a, type->key.type);
cb22974d 1904 ovs_assert(!error);
e9f8f936
BP
1905 }
1906}
1907
1908void
1909ovsdb_datum_subtract(struct ovsdb_datum *a, const struct ovsdb_type *a_type,
1910 const struct ovsdb_datum *b,
1911 const struct ovsdb_type *b_type)
1912{
1913 bool changed = false;
1914 size_t i;
1915
cb22974d
BP
1916 ovs_assert(a_type->key.type == b_type->key.type);
1917 ovs_assert(a_type->value.type == b_type->value.type
1918 || b_type->value.type == OVSDB_TYPE_VOID);
e9f8f936
BP
1919
1920 /* XXX The big-O of this could easily be improved. */
1921 for (i = 0; i < a->n; ) {
1922 unsigned int idx = ovsdb_datum_find(a, i, b, b_type);
1923 if (idx != UINT_MAX) {
1924 changed = true;
2f47998b 1925 ovsdb_datum_remove_unsafe(a, i, a_type);
e9f8f936
BP
1926 } else {
1927 i++;
1928 }
1929 }
1930 if (changed) {
bfc96d9b 1931 ovsdb_datum_sort_assert(a, a_type->key.type);
e9f8f936
BP
1932 }
1933}
f85f8ebb 1934\f
f85f8ebb
BP
1935struct ovsdb_symbol_table *
1936ovsdb_symbol_table_create(void)
1937{
1938 struct ovsdb_symbol_table *symtab = xmalloc(sizeof *symtab);
1939 shash_init(&symtab->sh);
1940 return symtab;
1941}
1942
1943void
1944ovsdb_symbol_table_destroy(struct ovsdb_symbol_table *symtab)
1945{
1946 if (symtab) {
506051fc 1947 shash_destroy_free_data(&symtab->sh);
f85f8ebb
BP
1948 free(symtab);
1949 }
1950}
1951
2d2d6d4a 1952struct ovsdb_symbol *
f85f8ebb
BP
1953ovsdb_symbol_table_get(const struct ovsdb_symbol_table *symtab,
1954 const char *name)
1955{
1956 return shash_find_data(&symtab->sh, name);
1957}
1958
fbf925e4 1959struct ovsdb_symbol *
f85f8ebb 1960ovsdb_symbol_table_put(struct ovsdb_symbol_table *symtab, const char *name,
e9387de4 1961 const struct uuid *uuid, bool created)
f85f8ebb 1962{
2d2d6d4a
BP
1963 struct ovsdb_symbol *symbol;
1964
cb22974d 1965 ovs_assert(!ovsdb_symbol_table_get(symtab, name));
2d2d6d4a
BP
1966 symbol = xmalloc(sizeof *symbol);
1967 symbol->uuid = *uuid;
e9387de4 1968 symbol->created = created;
c5f341ab
BP
1969 symbol->strong_ref = false;
1970 symbol->weak_ref = false;
2d2d6d4a 1971 shash_add(&symtab->sh, name, symbol);
fbf925e4
BP
1972 return symbol;
1973}
1974
1975struct ovsdb_symbol *
1976ovsdb_symbol_table_insert(struct ovsdb_symbol_table *symtab,
1977 const char *name)
1978{
1979 struct ovsdb_symbol *symbol;
1980
1981 symbol = ovsdb_symbol_table_get(symtab, name);
1982 if (!symbol) {
1983 struct uuid uuid;
1984
1985 uuid_generate(&uuid);
1986 symbol = ovsdb_symbol_table_put(symtab, name, &uuid, false);
1987 }
1988 return symbol;
f85f8ebb 1989}
1a6f1cef
AZ
1990\f
1991/* APIs for Generating and apply diffs. */
1992
1993/* Generate a difference ovsdb_dataum between 'old' and 'new'.
1994 * 'new' can be regenerated by applying the difference to the 'old'.
1995 *
1996 * The diff operation is reversible. Given 'old',
1997 * 'new' can be recreated by applying diff to 'old'.
1998 *
1999 * Thus
2000 * Let d = 'old' diff 'new'
2001 * then 'new' = 'old' diff d
2002 *
2003 * The 'diff' datum is always safe; the orders of keys are maintained
2004 * since they are added in order. */
2005void
2006ovsdb_datum_diff(struct ovsdb_datum *diff,
2007 const struct ovsdb_datum *old,
2008 const struct ovsdb_datum *new,
2009 const struct ovsdb_type *type)
2010{
2011 size_t oi, ni;
2012
2013 ovsdb_datum_init_empty(diff);
2014 if (!ovsdb_type_is_composite(type)) {
2015 ovsdb_datum_clone(diff, new, type);
2016 return;
2017 }
2018
2019 /* Generate the diff in O(n) time. */
2020 for (oi = ni = 0; oi < old->n && ni < new->n; ) {
2021 int c = ovsdb_atom_compare_3way(&old->keys[oi], &new->keys[ni],
2022 type->key.type);
2023 if (c < 0) {
2024 ovsdb_datum_add_unsafe(diff, &old->keys[oi], &old->values[oi],
1ab39058 2025 type, NULL);
1a6f1cef
AZ
2026 oi++;
2027 } else if (c > 0) {
2028 ovsdb_datum_add_unsafe(diff, &new->keys[ni], &new->values[ni],
1ab39058 2029 type, NULL);
1a6f1cef
AZ
2030 ni++;
2031 } else {
2032 if (type->value.type != OVSDB_TYPE_VOID &&
2033 ovsdb_atom_compare_3way(&old->values[oi], &new->values[ni],
2034 type->value.type)) {
2035 ovsdb_datum_add_unsafe(diff, &new->keys[ni], &new->values[ni],
1ab39058 2036 type, NULL);
1a6f1cef
AZ
2037 }
2038 oi++; ni++;
2039 }
2040 }
2041
2042 for (; oi < old->n; oi++) {
1ab39058
LR
2043 ovsdb_datum_add_unsafe(diff, &old->keys[oi], &old->values[oi],
2044 type, NULL);
1a6f1cef
AZ
2045 }
2046
2047 for (; ni < new->n; ni++) {
1ab39058
LR
2048 ovsdb_datum_add_unsafe(diff, &new->keys[ni], &new->values[ni],
2049 type, NULL);
1a6f1cef
AZ
2050 }
2051}
2052
2053/* Apply 'diff' to 'old' to regenerate 'new'.
2054 *
2055 * Return NULL if the 'new' is successfully generated, otherwise, return
2056 * ovsdb_error and the stat of 'new' is indeterministic. */
2057struct ovsdb_error *
2058ovsdb_datum_apply_diff(struct ovsdb_datum *new,
2059 const struct ovsdb_datum *old,
2060 const struct ovsdb_datum *diff,
2061 const struct ovsdb_type *type)
2062{
2063 ovsdb_datum_init_empty(new);
2064 ovsdb_datum_diff(new, old, diff, type);
2065
2066 /* Make sure member size of 'new' conforms to type. */
2067 if (new->n < type->n_min || new->n > type->n_max) {
2068 ovsdb_datum_destroy(new, type);
2069 return ovsdb_error(NULL, "Datum crated by diff has size error");
2070 }
2071
2072 return NULL;
2073}
2074
0194f33a
BP
2075\f
2076/* Extracts a token from the beginning of 's' and returns a pointer just after
2077 * the token. Stores the token itself into '*outp', which the caller is
2078 * responsible for freeing (with free()).
2079 *
2080 * If 's[0]' is a delimiter, the returned token is the empty string.
2081 *
2082 * A token extends from 's' to the first delimiter, as defined by
2083 * ovsdb_token_is_delim(), or until the end of the string. A delimiter can be
2084 * escaped with a backslash, in which case the backslash does not appear in the
2085 * output. Double quotes also cause delimiters to be ignored, but the double
2086 * quotes are retained in the output. (Backslashes inside double quotes are
2087 * not removed, either.)
2088 */
1bc6ff29
BP
2089char *
2090ovsdb_token_parse(const char **s, char **outp)
0194f33a
BP
2091{
2092 const char *p;
2093 struct ds out;
2094 bool in_quotes;
1bc6ff29 2095 char *error;
0194f33a
BP
2096
2097 ds_init(&out);
2098 in_quotes = false;
1bc6ff29 2099 for (p = *s; *p != '\0'; ) {
0194f33a
BP
2100 int c = *p++;
2101 if (c == '\\') {
2102 if (in_quotes) {
2103 ds_put_char(&out, '\\');
2104 }
2105 if (!*p) {
1bc6ff29
BP
2106 error = xasprintf("%s: backslash at end of argument", *s);
2107 goto error;
0194f33a
BP
2108 }
2109 ds_put_char(&out, *p++);
2110 } else if (!in_quotes && ovsdb_token_is_delim(c)) {
2111 p--;
2112 break;
2113 } else {
2114 ds_put_char(&out, c);
2115 if (c == '"') {
2116 in_quotes = !in_quotes;
2117 }
2118 }
2119 }
2120 if (in_quotes) {
1bc6ff29
BP
2121 error = xasprintf("%s: quoted string extends past end of argument",
2122 *s);
2123 goto error;
0194f33a
BP
2124 }
2125 *outp = ds_cstr(&out);
1bc6ff29
BP
2126 *s = p;
2127 return NULL;
2128
2129error:
2130 ds_destroy(&out);
2131 *outp = NULL;
2132 return error;
0194f33a
BP
2133}
2134
2135/* Returns true if 'c' delimits tokens, or if 'c' is 0, and false otherwise. */
2136bool
2137ovsdb_token_is_delim(unsigned char c)
2138{
e89e5374 2139 return strchr(":=, []{}!<>", c) != NULL;
0194f33a 2140}
1ab39058
LR
2141
2142struct ovsdb_error *
2143ovsdb_atom_range_check_size(int64_t range_start, int64_t range_end)
2144{
2145 if ((uint64_t) range_end - (uint64_t) range_start
2146 >= MAX_OVSDB_ATOM_RANGE_SIZE) {
2147 return ovsdb_error("constraint violation",
2148 "Range \"%"PRId64"-%"PRId64"\" is too big. "
2149 "Maximum allowed size is %d.",
2150 range_start, range_end, MAX_OVSDB_ATOM_RANGE_SIZE);
2151 }
2152 return NULL;
2153}