]> git.proxmox.com Git - mirror_ovs.git/blob - lib/db-ctl-base.c
python: Update build system to ensure dirs.py is created.
[mirror_ovs.git] / lib / db-ctl-base.c
1 /*
2 * Copyright (c) 2015, 2016, 2017 Nicira, Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #include <config.h>
18
19 #include <ctype.h>
20 #include <getopt.h>
21 #include <unistd.h>
22
23 #include "db-ctl-base.h"
24
25 #include "command-line.h"
26 #include "compiler.h"
27 #include "dirs.h"
28 #include "openvswitch/dynamic-string.h"
29 #include "fatal-signal.h"
30 #include "hash.h"
31 #include "openvswitch/json.h"
32 #include "openvswitch/vlog.h"
33 #include "ovsdb-data.h"
34 #include "ovsdb-idl.h"
35 #include "ovsdb-idl-provider.h"
36 #include "openvswitch/shash.h"
37 #include "sset.h"
38 #include "svec.h"
39 #include "string.h"
40 #include "table.h"
41 #include "util.h"
42
43 VLOG_DEFINE_THIS_MODULE(db_ctl_base);
44
45 /* This array defines the 'show' command output format. User can check the
46 * definition in utilities/ovs-vsctl.c as reference.
47 *
48 * Particularly, if an element in 'columns[]' represents a reference to
49 * another table, the referred table must also be defined as an entry in
50 * in 'cmd_show_tables[]'.
51 *
52 * The definition must end with an all-NULL entry. It is initalized once
53 * when ctl_init() is called.
54 *
55 * */
56 static const struct cmd_show_table *cmd_show_tables;
57
58 /* ctl_exit() is called by ctl_fatal(). User can optionally supply an exit
59 * function ctl_exit_func() via ctl_init. If supplied, this function will
60 * be called by ctl_exit()
61 */
62 static void (*ctl_exit_func)(int status) = NULL;
63 OVS_NO_RETURN static void ctl_exit(int status);
64
65 /* IDL class. */
66 static const struct ovsdb_idl_class *idl_class;
67
68 /* Two arrays with 'n_classes' elements, which represent the tables in this
69 * database and how the user can refer to their rows. */
70 static const struct ctl_table_class *ctl_classes;
71 static const struct ovsdb_idl_table_class *idl_classes;
72 static size_t n_classes;
73
74 static struct shash all_commands = SHASH_INITIALIZER(&all_commands);
75 static char *get_table(const char *, const struct ovsdb_idl_table_class **);
76 static char *set_column(const struct ovsdb_idl_table_class *,
77 const struct ovsdb_idl_row *, const char *,
78 struct ovsdb_symbol_table *);
79
80 \f
81 static struct option *
82 find_option(const char *name, struct option *options, size_t n_options)
83 {
84 size_t i;
85
86 for (i = 0; i < n_options; i++) {
87 if (!strcmp(options[i].name, name)) {
88 return &options[i];
89 }
90 }
91 return NULL;
92 }
93
94 static struct option *
95 add_option(struct option **optionsp, size_t *n_optionsp,
96 size_t *allocated_optionsp)
97 {
98 if (*n_optionsp >= *allocated_optionsp) {
99 *optionsp = x2nrealloc(*optionsp, allocated_optionsp,
100 sizeof **optionsp);
101 }
102 return &(*optionsp)[(*n_optionsp)++];
103 }
104
105 /* Converts the command arguments into format that can be parsed by
106 * bash completion script.
107 *
108 * Therein, arguments will be attached with following prefixes:
109 *
110 * !argument :: The argument is required
111 * ?argument :: The argument is optional
112 * *argument :: The argument may appear any number (0 or more) times
113 * +argument :: The argument may appear one or more times
114 *
115 */
116 static void
117 print_command_arguments(const struct ctl_command_syntax *command)
118 {
119 /*
120 * The argument string is parsed in reverse. We use a stack 'oew_stack' to
121 * keep track of nested optionals. Whenever a ']' is encountered, we push
122 * a bit to 'oew_stack'. The bit is set to 1 if the ']' is not nested.
123 * Subsequently, we pop an entry everytime '[' is met.
124 *
125 * We use 'whole_word_is_optional' value to decide whether or not a ! or +
126 * should be added on encountering a space: if the optional surrounds the
127 * whole word then it shouldn't be, but if it is only a part of the word
128 * (i.e. [key=]value), it should be.
129 */
130 uint32_t oew_stack = 0;
131
132 const char *arguments = command->arguments;
133 int length = strlen(arguments);
134 if (!length) {
135 return;
136 }
137
138 /* Output buffer, written backward from end. */
139 char *output = xmalloc(2 * length);
140 char *outp = output + 2 * length;
141 *--outp = '\0';
142
143 bool in_repeated = false;
144 bool whole_word_is_optional = false;
145
146 for (const char *inp = arguments + length; inp > arguments; ) {
147 switch (*--inp) {
148 case ']':
149 oew_stack <<= 1;
150 if (inp[1] == '\0' || inp[1] == ' ' || inp[1] == '.') {
151 oew_stack |= 1;
152 }
153 break;
154 case '[':
155 /* Checks if the whole word is optional, and sets the
156 * 'whole_word_is_optional' accordingly. */
157 if ((inp == arguments || inp[-1] == ' ') && oew_stack & 1) {
158 *--outp = in_repeated ? '*' : '?';
159 whole_word_is_optional = true;
160 } else {
161 *--outp = '?';
162 whole_word_is_optional = false;
163 }
164 oew_stack >>= 1;
165 break;
166 case ' ':
167 if (!whole_word_is_optional) {
168 *--outp = in_repeated ? '+' : '!';
169 }
170 *--outp = ' ';
171 in_repeated = false;
172 whole_word_is_optional = false;
173 break;
174 case '.':
175 in_repeated = true;
176 break;
177 default:
178 *--outp = *inp;
179 break;
180 }
181 }
182 if (arguments[0] != '[' && outp != output + 2 * length - 1) {
183 *--outp = in_repeated ? '+' : '!';
184 }
185 printf("%s", outp);
186 free(output);
187 }
188
189 static int
190 to_lower_and_underscores(unsigned c)
191 {
192 return c == '-' ? '_' : tolower(c);
193 }
194
195 /* Returns a score representing how well 's' matches 'name'. Higher return
196 * values indicate a better match. The order of the arguments is important:
197 * 'name' is the name of an entity such as a table or a column, and 's' is user
198 * input. */
199 static unsigned int
200 score_partial_match(const char *name, const char *s)
201 {
202 int score;
203
204 if (!strcmp(name, s)) {
205 return UINT_MAX;
206 }
207 for (score = 0; ; score++, name++, s++) {
208 if (to_lower_and_underscores(*name) != to_lower_and_underscores(*s)) {
209 break;
210 } else if (*name == '\0') {
211 return UINT_MAX - 1;
212 }
213 }
214 return *s == '\0' ? score : 0;
215 }
216
217 /* Returns NULL and sets 'symbolp' and 'newp' if symbol was created
218 * successfully. Otherwise returns a malloc()'ed error message on failure. */
219 static char * OVS_WARN_UNUSED_RESULT
220 create_symbol(struct ovsdb_symbol_table *symtab, const char *id,
221 struct ovsdb_symbol **symbolp, bool *newp)
222 {
223 struct ovsdb_symbol *symbol;
224
225 ovs_assert(symbolp);
226
227 if (id[0] != '@') {
228 return xasprintf("row id \"%s\" does not begin with \"@\"", id);
229 }
230
231 if (newp) {
232 *newp = ovsdb_symbol_table_get(symtab, id) == NULL;
233 }
234
235 symbol = ovsdb_symbol_table_insert(symtab, id);
236 if (symbol->created) {
237 return xasprintf("row id \"%s\" may only be specified on one --id "
238 "option", id);
239 }
240 symbol->created = true;
241 *symbolp = symbol;
242 return NULL;
243 }
244
245 static bool
246 record_id_equals(const union ovsdb_atom *name, enum ovsdb_atomic_type type,
247 const char *record_id)
248 {
249 if (type == OVSDB_TYPE_STRING) {
250 if (!strcmp(name->string, record_id)) {
251 return true;
252 }
253
254 struct uuid uuid;
255 size_t len = strlen(record_id);
256 if (len >= 4
257 && uuid_from_string(&uuid, name->string)
258 && !strncmp(name->string, record_id, len)) {
259 return true;
260 }
261
262 return false;
263 } else {
264 ovs_assert(type == OVSDB_TYPE_INTEGER);
265 return name->integer == strtoll(record_id, NULL, 10);
266 }
267 }
268
269 static const struct ovsdb_idl_row *
270 get_row_by_id(struct ctl_context *ctx,
271 const struct ovsdb_idl_table_class *table,
272 const struct ctl_row_id *id, const char *record_id,
273 bool *multiple_matches)
274 {
275 ovs_assert(multiple_matches);
276 *multiple_matches = false;
277
278 if (!id->name_column) {
279 return NULL;
280 }
281
282 const struct ovsdb_idl_row *referrer = NULL;
283
284 /* Figure out the 'key' and 'value' types for the column that we're going
285 * to look at. One of these ('name_type') is the type of the name we're
286 * going to compare against 'record_id'. */
287 enum ovsdb_atomic_type key, value, name_type;
288 if (!id->key) {
289 name_type = key = id->name_column->type.key.type;
290 value = OVSDB_TYPE_VOID;
291 } else {
292 key = OVSDB_TYPE_STRING;
293 name_type = value = id->name_column->type.value.type;
294 }
295
296 /* We only support integer and string names (so far). */
297 if (name_type == OVSDB_TYPE_INTEGER) {
298 if (!record_id[0] || record_id[strspn(record_id, "0123456789")]) {
299 return NULL;
300 }
301 } else {
302 ovs_assert(name_type == OVSDB_TYPE_STRING);
303 }
304
305 const struct ovsdb_idl_class *class = ovsdb_idl_get_class(ctx->idl);
306 const struct ovsdb_idl_table_class *id_table
307 = ovsdb_idl_table_class_from_column(class, id->name_column);
308 for (const struct ovsdb_idl_row *row = ovsdb_idl_first_row(ctx->idl,
309 id_table);
310 row != NULL;
311 row = ovsdb_idl_next_row(row)) {
312 /* Pick out the name column's data. */
313 const struct ovsdb_datum *datum = ovsdb_idl_get(
314 row, id->name_column, key, value);
315
316 /* Extract the name from the column. */
317 const union ovsdb_atom *name;
318 if (!id->key) {
319 name = datum->n == 1 ? &datum->keys[0] : NULL;
320 } else {
321 const union ovsdb_atom key_atom
322 = { .string = CONST_CAST(char *, id->key) };
323 unsigned int i = ovsdb_datum_find_key(datum, &key_atom,
324 OVSDB_TYPE_STRING);
325 name = i == UINT_MAX ? NULL : &datum->values[i];
326 }
327 if (!name) {
328 continue;
329 }
330
331 /* If the name equals 'record_id', take it. */
332 if (record_id_equals(name, name_type, record_id)) {
333 if (referrer) {
334 *multiple_matches = true;
335 return NULL;
336 }
337 referrer = row;
338 }
339 }
340 if (!referrer) {
341 return NULL;
342 }
343
344 const struct ovsdb_idl_row *final = referrer;
345 if (id->uuid_column) {
346 const struct ovsdb_datum *uuid;
347
348 ovsdb_idl_txn_verify(referrer, id->uuid_column);
349 uuid = ovsdb_idl_get(referrer, id->uuid_column,
350 OVSDB_TYPE_UUID, OVSDB_TYPE_VOID);
351 if (uuid->n == 1) {
352 final = ovsdb_idl_get_row_for_uuid(ctx->idl, table,
353 &uuid->keys[0].uuid);
354 } else {
355 final = NULL;
356 }
357 }
358 return final;
359 }
360
361 char * OVS_WARN_UNUSED_RESULT
362 ctl_get_row(struct ctl_context *ctx,
363 const struct ovsdb_idl_table_class *table, const char *record_id,
364 bool must_exist, const struct ovsdb_idl_row **rowp)
365 {
366 const struct ovsdb_idl_row *row = NULL;
367 struct uuid uuid;
368
369 ovs_assert(rowp);
370
371 if (uuid_from_string(&uuid, record_id)) {
372 row = ovsdb_idl_get_row_for_uuid(ctx->idl, table, &uuid);
373 }
374 if (!row) {
375 if (!strcmp(record_id, ".")) {
376 row = ovsdb_idl_first_row(ctx->idl, table);
377 if (row && ovsdb_idl_next_row(row)) {
378 row = NULL;
379 }
380 }
381 }
382 if (!row) {
383 const struct ctl_table_class *ctl_class
384 = &ctl_classes[table - idl_classes];
385 for (int i = 0; i < ARRAY_SIZE(ctl_class->row_ids); i++) {
386 const struct ctl_row_id *id = &ctl_class->row_ids[i];
387 bool multiple_matches;
388
389 row = get_row_by_id(ctx, table, id, record_id, &multiple_matches);
390 if (multiple_matches) {
391 const struct ovsdb_idl_class *class =
392 ovsdb_idl_get_class(ctx->idl);
393 const struct ovsdb_idl_table_class *table_class =
394 ovsdb_idl_table_class_from_column(class, id->name_column);
395 return xasprintf("multiple rows in %s match \"%s\"",
396 table_class->name, record_id);
397 }
398 if (row) {
399 break;
400 }
401 }
402 }
403 if (!row && uuid_is_partial_string(record_id) >= 4) {
404 for (const struct ovsdb_idl_row *r = ovsdb_idl_first_row(ctx->idl,
405 table);
406 r != NULL;
407 r = ovsdb_idl_next_row(r)) {
408 if (uuid_is_partial_match(&r->uuid, record_id)) {
409 if (!row) {
410 row = r;
411 } else {
412 return xasprintf("%s contains 2 or more rows whose UUIDs "
413 "begin with %s: at least "UUID_FMT" "
414 "and "UUID_FMT, table->name, record_id,
415 UUID_ARGS(&row->uuid),
416 UUID_ARGS(&r->uuid));
417 }
418 }
419 }
420 }
421 if (must_exist && !row) {
422 return xasprintf("no row \"%s\" in table %s", record_id, table->name);
423 }
424
425 *rowp = row;
426 return NULL;
427 }
428
429 static char *
430 get_column(const struct ovsdb_idl_table_class *table, const char *column_name,
431 const struct ovsdb_idl_column **columnp)
432 {
433 struct sset best_matches = SSET_INITIALIZER(&best_matches);
434 const struct ovsdb_idl_column *best_match = NULL;
435 unsigned int best_score = 0;
436
437 for (size_t i = 0; i < table->n_columns; i++) {
438 const struct ovsdb_idl_column *column = &table->columns[i];
439 unsigned int score = score_partial_match(column->name, column_name);
440 if (score && score >= best_score) {
441 if (score > best_score) {
442 sset_clear(&best_matches);
443 }
444 sset_add(&best_matches, column->name);
445 best_match = column;
446 best_score = score;
447 }
448 }
449
450 char *error = NULL;
451 *columnp = NULL;
452 if (!best_match) {
453 error = xasprintf("%s does not contain a column whose name matches "
454 "\"%s\"", table->name, column_name);
455 } else if (sset_count(&best_matches) == 1) {
456 *columnp = best_match;
457 } else {
458 char *matches = sset_join(&best_matches, ", ", "");
459 error = xasprintf("%s contains more than one column "
460 "whose name matches \"%s\": %s",
461 table->name, column_name, matches);
462 free(matches);
463 }
464 sset_destroy(&best_matches);
465 return error;
466 }
467
468 static char * OVS_WARN_UNUSED_RESULT
469 pre_get_column(struct ctl_context *ctx,
470 const struct ovsdb_idl_table_class *table,
471 const char *column_name,
472 const struct ovsdb_idl_column **columnp)
473 {
474 char *error = get_column(table, column_name, columnp);
475 if (error) {
476 return error;
477 }
478 ovsdb_idl_add_column(ctx->idl, *columnp);
479 return NULL;
480 }
481
482 static char * OVS_WARN_UNUSED_RESULT
483 pre_get_table(struct ctl_context *ctx, const char *table_name,
484 const struct ovsdb_idl_table_class **tablep)
485 {
486 const struct ovsdb_idl_table_class *table;
487 char *error = get_table(table_name, &table);
488 if (error) {
489 return error;
490 }
491 ovsdb_idl_add_table(ctx->idl, table);
492
493 const struct ctl_table_class *ctl = &ctl_classes[table - idl_classes];
494 for (int i = 0; i < ARRAY_SIZE(ctl->row_ids); i++) {
495 const struct ctl_row_id *id = &ctl->row_ids[i];
496 if (id->name_column) {
497 ovsdb_idl_add_column(ctx->idl, id->name_column);
498 }
499 if (id->uuid_column) {
500 ovsdb_idl_add_column(ctx->idl, id->uuid_column);
501 }
502 }
503
504 if (tablep) {
505 *tablep = table;
506 }
507 return NULL;
508 }
509
510 static char *
511 missing_operator_error(const char *arg, const char **allowed_operators,
512 size_t n_allowed)
513 {
514 struct ds s;
515
516 ds_init(&s);
517 ds_put_format(&s, "%s: argument does not end in ", arg);
518 ds_put_format(&s, "\"%s\"", allowed_operators[0]);
519 if (n_allowed == 2) {
520 ds_put_format(&s, " or \"%s\"", allowed_operators[1]);
521 } else if (n_allowed > 2) {
522 size_t i;
523
524 for (i = 1; i < n_allowed - 1; i++) {
525 ds_put_format(&s, ", \"%s\"", allowed_operators[i]);
526 }
527 ds_put_format(&s, ", or \"%s\"", allowed_operators[i]);
528 }
529 ds_put_format(&s, " followed by a value.");
530
531 return ds_steal_cstr(&s);
532 }
533
534 /* Breaks 'arg' apart into a number of fields in the following order:
535 *
536 * - The name of a column in 'table', stored into '*columnp'. The column
537 * name may be abbreviated.
538 *
539 * - Optionally ':' followed by a key string. The key is stored as a
540 * malloc()'d string into '*keyp', or NULL if no key is present in
541 * 'arg'.
542 *
543 * - If 'valuep' is nonnull, an operator followed by a value string. The
544 * allowed operators are the 'n_allowed' string in 'allowed_operators',
545 * or just "=" if 'n_allowed' is 0. If 'operatorp' is nonnull, then the
546 * index of the operator within 'allowed_operators' is stored into
547 * '*operatorp'. The value is stored as a malloc()'d string into
548 * '*valuep', or NULL if no value is present in 'arg'.
549 *
550 * On success, returns NULL. On failure, returned a malloc()'d string error
551 * message and stores NULL into all of the nonnull output arguments. */
552 static char * OVS_WARN_UNUSED_RESULT
553 parse_column_key_value(const char *arg,
554 const struct ovsdb_idl_table_class *table,
555 const struct ovsdb_idl_column **columnp, char **keyp,
556 int *operatorp,
557 const char **allowed_operators, size_t n_allowed,
558 char **valuep)
559 {
560 const char *p = arg;
561 char *column_name;
562 char *error;
563
564 ovs_assert(!(operatorp && !valuep));
565 *keyp = NULL;
566 if (valuep) {
567 *valuep = NULL;
568 }
569
570 /* Parse column name. */
571 error = ovsdb_token_parse(&p, &column_name);
572 if (error) {
573 goto error;
574 }
575 if (column_name[0] == '\0') {
576 free(column_name);
577 error = xasprintf("%s: missing column name", arg);
578 goto error;
579 }
580 error = get_column(table, column_name, columnp);
581 free(column_name);
582 if (error) {
583 goto error;
584 }
585
586 /* Parse key string. */
587 if (*p == ':') {
588 p++;
589 error = ovsdb_token_parse(&p, keyp);
590 if (error) {
591 goto error;
592 }
593 }
594
595 /* Parse value string. */
596 if (valuep) {
597 size_t best_len;
598 size_t i;
599 int best;
600
601 if (!allowed_operators) {
602 static const char *equals = "=";
603 allowed_operators = &equals;
604 n_allowed = 1;
605 }
606
607 best = -1;
608 best_len = 0;
609 for (i = 0; i < n_allowed; i++) {
610 const char *op = allowed_operators[i];
611 size_t op_len = strlen(op);
612
613 if (op_len > best_len && !strncmp(op, p, op_len) && p[op_len]) {
614 best_len = op_len;
615 best = i;
616 }
617 }
618 if (best < 0) {
619 error = missing_operator_error(arg, allowed_operators, n_allowed);
620 goto error;
621 }
622
623 if (operatorp) {
624 *operatorp = best;
625 }
626 *valuep = xstrdup(p + best_len);
627 } else {
628 if (*p != '\0') {
629 error = xasprintf("%s: trailing garbage \"%s\" in argument",
630 arg, p);
631 goto error;
632 }
633 }
634 return NULL;
635
636 error:
637 *columnp = NULL;
638 free(*keyp);
639 *keyp = NULL;
640 if (valuep) {
641 free(*valuep);
642 *valuep = NULL;
643 if (operatorp) {
644 *operatorp = -1;
645 }
646 }
647 return error;
648 }
649
650 static char * OVS_WARN_UNUSED_RESULT
651 pre_parse_column_key_value(struct ctl_context *ctx, const char *arg,
652 const struct ovsdb_idl_table_class *table)
653 {
654 const struct ovsdb_idl_column *column;
655 const char *p;
656 char *column_name = NULL;
657 char *error;
658
659 p = arg;
660 error = ovsdb_token_parse(&p, &column_name);
661 if (error) {
662 goto out;
663 }
664 if (column_name[0] == '\0') {
665 error = xasprintf("%s: missing column name", arg);
666 goto out;
667 }
668
669 error = pre_get_column(ctx, table, column_name, &column);
670 out:
671 free(column_name);
672
673 return error;
674 }
675
676 /* Checks if the 'column' is mutable. Returns NULL if it is mutable, or a
677 * malloc()'ed error message otherwise. */
678 static char * OVS_WARN_UNUSED_RESULT
679 check_mutable(const struct ovsdb_idl_row *row,
680 const struct ovsdb_idl_column *column)
681 {
682 if (!ovsdb_idl_is_mutable(row, column)) {
683 return xasprintf("cannot modify read-only column %s in table %s",
684 column->name, row->table->class_->name);
685 }
686 return NULL;
687 }
688
689 #define RELOPS \
690 RELOP(RELOP_EQ, "=") \
691 RELOP(RELOP_NE, "!=") \
692 RELOP(RELOP_LT, "<") \
693 RELOP(RELOP_GT, ">") \
694 RELOP(RELOP_LE, "<=") \
695 RELOP(RELOP_GE, ">=") \
696 RELOP(RELOP_SET_EQ, "{=}") \
697 RELOP(RELOP_SET_NE, "{!=}") \
698 RELOP(RELOP_SET_LT, "{<}") \
699 RELOP(RELOP_SET_GT, "{>}") \
700 RELOP(RELOP_SET_LE, "{<=}") \
701 RELOP(RELOP_SET_GE, "{>=}")
702
703 enum relop {
704 #define RELOP(ENUM, STRING) ENUM,
705 RELOPS
706 #undef RELOP
707 };
708
709 static bool
710 is_set_operator(enum relop op)
711 {
712 return (op == RELOP_SET_EQ || op == RELOP_SET_NE ||
713 op == RELOP_SET_LT || op == RELOP_SET_GT ||
714 op == RELOP_SET_LE || op == RELOP_SET_GE);
715 }
716
717 static bool
718 evaluate_relop(const struct ovsdb_datum *a, const struct ovsdb_datum *b,
719 const struct ovsdb_type *type, enum relop op)
720 {
721 switch (op) {
722 case RELOP_EQ:
723 case RELOP_SET_EQ:
724 return ovsdb_datum_compare_3way(a, b, type) == 0;
725 case RELOP_NE:
726 case RELOP_SET_NE:
727 return ovsdb_datum_compare_3way(a, b, type) != 0;
728 case RELOP_LT:
729 return ovsdb_datum_compare_3way(a, b, type) < 0;
730 case RELOP_GT:
731 return ovsdb_datum_compare_3way(a, b, type) > 0;
732 case RELOP_LE:
733 return ovsdb_datum_compare_3way(a, b, type) <= 0;
734 case RELOP_GE:
735 return ovsdb_datum_compare_3way(a, b, type) >= 0;
736
737 case RELOP_SET_LT:
738 return b->n > a->n && ovsdb_datum_includes_all(a, b, type);
739 case RELOP_SET_GT:
740 return a->n > b->n && ovsdb_datum_includes_all(b, a, type);
741 case RELOP_SET_LE:
742 return ovsdb_datum_includes_all(a, b, type);
743 case RELOP_SET_GE:
744 return ovsdb_datum_includes_all(b, a, type);
745
746 default:
747 OVS_NOT_REACHED();
748 }
749 }
750
751 /* Checks if given row satisfies the specified condition. Returns the result of
752 * evaluating the condition in 'satisfied' flag and NULL as a return value on
753 * success. On failure returns a malloc()'ed error message and 'satisfied'
754 * value is not modified. */
755 static char * OVS_WARN_UNUSED_RESULT
756 check_condition(const struct ovsdb_idl_table_class *table,
757 const struct ovsdb_idl_row *row, const char *arg,
758 struct ovsdb_symbol_table *symtab, bool *satisfied)
759 {
760 static const char *operators[] = {
761 #define RELOP(ENUM, STRING) STRING,
762 RELOPS
763 #undef RELOP
764 };
765
766 const struct ovsdb_idl_column *column;
767 const struct ovsdb_datum *have_datum;
768 char *key_string = NULL;
769 char *value_string = NULL;
770 struct ovsdb_type type;
771 int operator;
772 bool retval;
773 char *error;
774
775 ovs_assert(satisfied);
776
777 error = parse_column_key_value(arg, table, &column, &key_string,
778 &operator, operators, ARRAY_SIZE(operators),
779 &value_string);
780 if (error) {
781 goto out;
782 }
783 if (!value_string) {
784 error = xasprintf("%s: missing value", arg);
785 goto out;
786 }
787
788 type = column->type;
789 type.n_max = UINT_MAX;
790
791 have_datum = ovsdb_idl_read(row, column);
792 if (key_string) {
793 union ovsdb_atom want_key;
794 struct ovsdb_datum b;
795 unsigned int idx;
796
797 if (column->type.value.type == OVSDB_TYPE_VOID) {
798 error = xasprintf("cannot specify key to check for non-map column "
799 "%s", column->name);
800 goto out;
801 }
802
803 error = ovsdb_atom_from_string(&want_key, NULL, &column->type.key,
804 key_string, symtab);
805 if (error) {
806 goto out;
807 }
808
809 type.key = type.value;
810 type.value.type = OVSDB_TYPE_VOID;
811 error = ovsdb_datum_from_string(&b, &type, value_string, symtab);
812 if (error) {
813 goto out;
814 }
815
816 idx = ovsdb_datum_find_key(have_datum,
817 &want_key, column->type.key.type);
818 if (idx == UINT_MAX && !is_set_operator(operator)) {
819 retval = false;
820 } else {
821 struct ovsdb_datum a;
822
823 if (idx != UINT_MAX) {
824 a.n = 1;
825 a.keys = &have_datum->values[idx];
826 a.values = NULL;
827 } else {
828 a.n = 0;
829 a.keys = NULL;
830 a.values = NULL;
831 }
832
833 retval = evaluate_relop(&a, &b, &type, operator);
834 }
835
836 ovsdb_atom_destroy(&want_key, column->type.key.type);
837 ovsdb_datum_destroy(&b, &type);
838 } else {
839 struct ovsdb_datum want_datum;
840
841 error = ovsdb_datum_from_string(&want_datum, &column->type,
842 value_string, symtab);
843 if (error) {
844 goto out;
845 }
846 retval = evaluate_relop(have_datum, &want_datum, &type, operator);
847 ovsdb_datum_destroy(&want_datum, &column->type);
848 }
849
850 *satisfied = retval;
851 out:
852 free(key_string);
853 free(value_string);
854
855 return error;
856 }
857
858 static void
859 invalidate_cache(struct ctl_context *ctx)
860 {
861 if (ctx->invalidate_cache_cb) {
862 (ctx->invalidate_cache_cb)(ctx);
863 }
864 }
865 \f
866 static void
867 pre_cmd_get(struct ctl_context *ctx)
868 {
869 const char *id = shash_find_data(&ctx->options, "--id");
870 const char *table_name = ctx->argv[1];
871 const struct ovsdb_idl_table_class *table;
872 int i;
873
874 /* Using "get" without --id or a column name could possibly make sense.
875 * Maybe, for example, a *ctl command run wants to assert that a row
876 * exists. But it is unlikely that an interactive user would want to do
877 * that, so issue a warning if we're running on a terminal. */
878 if (!id && ctx->argc <= 3 && isatty(STDOUT_FILENO)) {
879 VLOG_WARN("\"get\" command without row arguments or \"--id\" is "
880 "possibly erroneous");
881 }
882
883 ctx->error = pre_get_table(ctx, table_name, &table);
884 if (ctx->error) {
885 return;
886 }
887 for (i = 3; i < ctx->argc; i++) {
888 if (!strcasecmp(ctx->argv[i], "_uuid")
889 || !strcasecmp(ctx->argv[i], "-uuid")) {
890 continue;
891 }
892
893 ctx->error = pre_parse_column_key_value(ctx, ctx->argv[i], table);
894 if (ctx->error) {
895 return;
896 }
897 }
898 }
899
900 static void
901 cmd_get(struct ctl_context *ctx)
902 {
903 const char *id = shash_find_data(&ctx->options, "--id");
904 bool must_exist = !shash_find(&ctx->options, "--if-exists");
905 const char *table_name = ctx->argv[1];
906 const char *record_id = ctx->argv[2];
907 const struct ovsdb_idl_table_class *table;
908 const struct ovsdb_idl_row *row;
909 struct ds *out = &ctx->output;
910 int i;
911
912 if (id && !must_exist) {
913 ctl_error(ctx, "--if-exists and --id may not be specified together");
914 return;
915 }
916
917 ctx->error = get_table(table_name, &table);
918 if (ctx->error) {
919 return;
920 }
921 ctx->error = ctl_get_row(ctx, table, record_id, must_exist, &row);
922 if (ctx->error) {
923 return;
924 }
925 if (!row) {
926 return;
927 }
928
929 if (id) {
930 struct ovsdb_symbol *symbol = NULL;
931 bool new = false;
932
933 ctx->error = create_symbol(ctx->symtab, id, &symbol, &new);
934 if (ctx->error) {
935 return;
936 }
937 if (!new) {
938 ctl_error(ctx, "row id \"%s\" specified on \"get\" command was "
939 "used before it was defined", id);
940 return;
941 }
942 symbol->uuid = row->uuid;
943
944 /* This symbol refers to a row that already exists, so disable warnings
945 * about it being unreferenced. */
946 symbol->strong_ref = true;
947 }
948 for (i = 3; i < ctx->argc; i++) {
949 const struct ovsdb_idl_column *column;
950 const struct ovsdb_datum *datum;
951 char *key_string;
952
953 /* Special case for obtaining the UUID of a row. We can't just do this
954 * through parse_column_key_value() below since it returns a "struct
955 * ovsdb_idl_column" and the UUID column doesn't have one. */
956 if (!strcasecmp(ctx->argv[i], "_uuid")
957 || !strcasecmp(ctx->argv[i], "-uuid")) {
958 ds_put_format(out, UUID_FMT"\n", UUID_ARGS(&row->uuid));
959 continue;
960 }
961
962 ctx->error = parse_column_key_value(ctx->argv[i], table, &column,
963 &key_string, NULL, NULL, 0, NULL);
964 if (ctx->error) {
965 return;
966 }
967
968 ovsdb_idl_txn_verify(row, column);
969 datum = ovsdb_idl_read(row, column);
970 if (key_string) {
971 union ovsdb_atom key;
972 unsigned int idx;
973
974 if (column->type.value.type == OVSDB_TYPE_VOID) {
975 ctl_error(ctx,
976 "cannot specify key to get for non-map column %s",
977 column->name);
978 free(key_string);
979 return;
980 }
981
982 ctx->error = ovsdb_atom_from_string(&key, NULL, &column->type.key,
983 key_string, ctx->symtab);
984 if (ctx->error) {
985 free(key_string);
986 return;
987 }
988
989 idx = ovsdb_datum_find_key(datum, &key,
990 column->type.key.type);
991 if (idx == UINT_MAX) {
992 if (must_exist) {
993 ctl_error(
994 ctx, "no key \"%s\" in %s record \"%s\" column %s",
995 key_string, table->name, record_id, column->name);
996 free(key_string);
997 ovsdb_atom_destroy(&key, column->type.key.type);
998 return;
999 }
1000 } else {
1001 ovsdb_atom_to_string(&datum->values[idx],
1002 column->type.value.type, out);
1003 }
1004 ovsdb_atom_destroy(&key, column->type.key.type);
1005 } else {
1006 ovsdb_datum_to_string(datum, &column->type, out);
1007 }
1008 ds_put_char(out, '\n');
1009
1010 free(key_string);
1011 }
1012 }
1013
1014 /* Returns NULL on success or malloc()'ed error message on failure. */
1015 static char * OVS_WARN_UNUSED_RESULT
1016 parse_column_names(const char *column_names,
1017 const struct ovsdb_idl_table_class *table,
1018 const struct ovsdb_idl_column ***columnsp,
1019 size_t *n_columnsp)
1020 {
1021 const struct ovsdb_idl_column **columns;
1022 size_t n_columns;
1023
1024 if (!column_names) {
1025 size_t i;
1026
1027 n_columns = table->n_columns + 1;
1028 columns = xmalloc(n_columns * sizeof *columns);
1029 columns[0] = NULL;
1030 for (i = 0; i < table->n_columns; i++) {
1031 columns[i + 1] = &table->columns[i];
1032 }
1033 } else {
1034 char *s = xstrdup(column_names);
1035 size_t allocated_columns;
1036 char *save_ptr = NULL;
1037 char *column_name;
1038
1039 columns = NULL;
1040 allocated_columns = n_columns = 0;
1041 for (column_name = strtok_r(s, ", ", &save_ptr); column_name;
1042 column_name = strtok_r(NULL, ", ", &save_ptr)) {
1043 const struct ovsdb_idl_column *column;
1044
1045 if (!strcasecmp(column_name, "_uuid")) {
1046 column = NULL;
1047 } else {
1048 char *error = get_column(table, column_name, &column);
1049 if (error) {
1050 free(columns);
1051 free(s);
1052 return error;
1053 }
1054 }
1055 if (n_columns >= allocated_columns) {
1056 columns = x2nrealloc(columns, &allocated_columns,
1057 sizeof *columns);
1058 }
1059 columns[n_columns++] = column;
1060 }
1061 free(s);
1062
1063 if (!n_columns) {
1064 return xstrdup("must specify at least one column name");
1065 }
1066 }
1067 *columnsp = columns;
1068 *n_columnsp = n_columns;
1069 return NULL;
1070 }
1071
1072 static char * OVS_WARN_UNUSED_RESULT
1073 pre_list_columns(struct ctl_context *ctx,
1074 const struct ovsdb_idl_table_class *table,
1075 const char *column_names)
1076 {
1077 const struct ovsdb_idl_column **columns;
1078 size_t n_columns;
1079 size_t i;
1080 char *error;
1081
1082 error = parse_column_names(column_names, table, &columns, &n_columns);
1083 if (error) {
1084 return error;
1085 }
1086 for (i = 0; i < n_columns; i++) {
1087 if (columns[i]) {
1088 ovsdb_idl_add_column(ctx->idl, columns[i]);
1089 }
1090 }
1091 free(columns);
1092 return NULL;
1093 }
1094
1095 static void
1096 pre_cmd_list(struct ctl_context *ctx)
1097 {
1098 const char *column_names = shash_find_data(&ctx->options, "--columns");
1099 const char *table_name = ctx->argv[1];
1100 const struct ovsdb_idl_table_class *table;
1101
1102 ctx->error = pre_get_table(ctx, table_name, &table);
1103 if (ctx->error) {
1104 return;
1105 }
1106 ctx->error = pre_list_columns(ctx, table, column_names);
1107 if (ctx->error) {
1108 return;
1109 }
1110 }
1111
1112 static struct table *
1113 list_make_table(const struct ovsdb_idl_column **columns, size_t n_columns)
1114 {
1115 struct table *out;
1116 size_t i;
1117
1118 out = xmalloc(sizeof *out);
1119 table_init(out);
1120
1121 for (i = 0; i < n_columns; i++) {
1122 const struct ovsdb_idl_column *column = columns[i];
1123 const char *column_name = column ? column->name : "_uuid";
1124
1125 table_add_column(out, "%s", column_name);
1126 }
1127
1128 return out;
1129 }
1130
1131 static void
1132 list_record(const struct ovsdb_idl_row *row,
1133 const struct ovsdb_idl_column **columns, size_t n_columns,
1134 struct table *out)
1135 {
1136 size_t i;
1137
1138 if (!row) {
1139 return;
1140 }
1141
1142 table_add_row(out);
1143 for (i = 0; i < n_columns; i++) {
1144 const struct ovsdb_idl_column *column = columns[i];
1145 struct cell *cell = table_add_cell(out);
1146
1147 if (!column) {
1148 struct ovsdb_datum datum;
1149 union ovsdb_atom atom;
1150
1151 atom.uuid = row->uuid;
1152
1153 datum.keys = &atom;
1154 datum.values = NULL;
1155 datum.n = 1;
1156
1157 cell->json = ovsdb_datum_to_json(&datum, &ovsdb_type_uuid);
1158 cell->type = &ovsdb_type_uuid;
1159 } else {
1160 const struct ovsdb_datum *datum = ovsdb_idl_read(row, column);
1161
1162 cell->json = ovsdb_datum_to_json(datum, &column->type);
1163 cell->type = &column->type;
1164 }
1165 }
1166 }
1167
1168 static void
1169 cmd_list(struct ctl_context *ctx)
1170 {
1171 const char *column_names = shash_find_data(&ctx->options, "--columns");
1172 bool must_exist = !shash_find(&ctx->options, "--if-exists");
1173 const struct ovsdb_idl_column **columns;
1174 const char *table_name = ctx->argv[1];
1175 const struct ovsdb_idl_table_class *table;
1176 struct table *out;
1177 size_t n_columns;
1178 int i;
1179
1180 ctx->error = get_table(table_name, &table);
1181 if (ctx->error) {
1182 return;
1183 }
1184 ctx->error = parse_column_names(column_names, table, &columns, &n_columns);
1185 if (ctx->error) {
1186 return;
1187 }
1188 out = ctx->table = list_make_table(columns, n_columns);
1189 if (ctx->argc > 2) {
1190 for (i = 2; i < ctx->argc; i++) {
1191 const struct ovsdb_idl_row *row;
1192
1193 ctx->error = ctl_get_row(ctx, table, ctx->argv[i], must_exist,
1194 &row);
1195 if (ctx->error) {
1196 free(columns);
1197 return;
1198 }
1199 list_record(row, columns, n_columns, out);
1200 }
1201 } else {
1202 const struct ovsdb_idl_row *row;
1203
1204 for (row = ovsdb_idl_first_row(ctx->idl, table); row != NULL;
1205 row = ovsdb_idl_next_row(row)) {
1206 list_record(row, columns, n_columns, out);
1207 }
1208 }
1209 free(columns);
1210 }
1211
1212 /* Finds the "struct ovsdb_idl_table_class *" with 'table_name' by searching
1213 * the tables in these schema. Returns NULL and sets 'tablep' on success, or a
1214 * malloc()'ed error message on failure. */
1215 static char * OVS_WARN_UNUSED_RESULT
1216 get_table(const char *table_name, const struct ovsdb_idl_table_class **tablep)
1217 {
1218 struct sset best_matches = SSET_INITIALIZER(&best_matches);
1219 const struct ovsdb_idl_table_class *best_match = NULL;
1220 unsigned int best_score = 0;
1221
1222 for (const struct ovsdb_idl_table_class *table = idl_classes;
1223 table < &idl_classes[n_classes]; table++) {
1224 unsigned int score = score_partial_match(table->name, table_name);
1225 if (score && score >= best_score) {
1226 if (score > best_score) {
1227 sset_clear(&best_matches);
1228 }
1229 sset_add(&best_matches, table->name);
1230 best_match = table;
1231 best_score = score;
1232 }
1233 }
1234
1235 char *error = NULL;
1236 if (!best_match) {
1237 error = xasprintf("unknown table \"%s\"", table_name);
1238 } else if (sset_count(&best_matches) == 1) {
1239 *tablep = best_match;
1240 } else {
1241 char *matches = sset_join(&best_matches, ", ", "");
1242 error = xasprintf("\"%s\" matches multiple table names: %s",
1243 table_name, matches);
1244 free(matches);
1245 }
1246 sset_destroy(&best_matches);
1247 return error;
1248 }
1249
1250 static void
1251 pre_cmd_find(struct ctl_context *ctx)
1252 {
1253 const char *column_names = shash_find_data(&ctx->options, "--columns");
1254 const char *table_name = ctx->argv[1];
1255 const struct ovsdb_idl_table_class *table;
1256 int i;
1257
1258 ctx->error = pre_get_table(ctx, table_name, &table);
1259 if (ctx->error) {
1260 return;
1261 }
1262 ctx->error = pre_list_columns(ctx, table, column_names);
1263 if (ctx->error) {
1264 return;
1265 }
1266 for (i = 2; i < ctx->argc; i++) {
1267 ctx->error = pre_parse_column_key_value(ctx, ctx->argv[i], table);
1268 if (ctx->error) {
1269 return;
1270 }
1271 }
1272 }
1273
1274 static void
1275 cmd_find(struct ctl_context *ctx)
1276 {
1277 const char *column_names = shash_find_data(&ctx->options, "--columns");
1278 const struct ovsdb_idl_column **columns;
1279 const char *table_name = ctx->argv[1];
1280 const struct ovsdb_idl_table_class *table;
1281 const struct ovsdb_idl_row *row;
1282 struct table *out;
1283 size_t n_columns;
1284
1285 ctx->error = get_table(table_name, &table);
1286 if (ctx->error) {
1287 return;
1288 }
1289 ctx->error = parse_column_names(column_names, table, &columns, &n_columns);
1290 if (ctx->error) {
1291 return;
1292 }
1293 out = ctx->table = list_make_table(columns, n_columns);
1294 for (row = ovsdb_idl_first_row(ctx->idl, table); row;
1295 row = ovsdb_idl_next_row(row)) {
1296 int i;
1297
1298 for (i = 2; i < ctx->argc; i++) {
1299 bool satisfied = false;
1300
1301 ctx->error = check_condition(table, row, ctx->argv[i],
1302 ctx->symtab, &satisfied);
1303 if (ctx->error) {
1304 free(columns);
1305 return;
1306 }
1307 if (!satisfied) {
1308 goto next_row;
1309 }
1310 }
1311 list_record(row, columns, n_columns, out);
1312
1313 next_row: ;
1314 }
1315 free(columns);
1316 }
1317
1318 /* Sets the column of 'row' in 'table'. Returns NULL on success or a
1319 * malloc()'ed error message on failure. */
1320 static char * OVS_WARN_UNUSED_RESULT
1321 set_column(const struct ovsdb_idl_table_class *table,
1322 const struct ovsdb_idl_row *row, const char *arg,
1323 struct ovsdb_symbol_table *symtab)
1324 {
1325 const struct ovsdb_idl_column *column;
1326 char *key_string = NULL;
1327 char *value_string = NULL;
1328 char *error;
1329
1330 error = parse_column_key_value(arg, table, &column, &key_string,
1331 NULL, NULL, 0, &value_string);
1332 if (error) {
1333 goto out;
1334 }
1335 if (!value_string) {
1336 error = xasprintf("%s: missing value", arg);
1337 goto out;
1338 }
1339 error = check_mutable(row, column);
1340 if (error) {
1341 goto out;
1342 }
1343
1344 if (key_string) {
1345 union ovsdb_atom key, value;
1346 struct ovsdb_datum datum;
1347
1348 if (column->type.value.type == OVSDB_TYPE_VOID) {
1349 error = xasprintf("cannot specify key to set for non-map column "
1350 "%s", column->name);
1351 goto out;
1352 }
1353
1354 error = ovsdb_atom_from_string(&key, NULL, &column->type.key,
1355 key_string, symtab);
1356 if (error) {
1357 goto out;
1358 }
1359 error = ovsdb_atom_from_string(&value, NULL, &column->type.value,
1360 value_string, symtab);
1361 if (error) {
1362 goto out;
1363 }
1364
1365 ovsdb_datum_init_empty(&datum);
1366 ovsdb_datum_add_unsafe(&datum, &key, &value, &column->type, NULL);
1367
1368 ovsdb_atom_destroy(&key, column->type.key.type);
1369 ovsdb_atom_destroy(&value, column->type.value.type);
1370
1371 ovsdb_datum_union(&datum, ovsdb_idl_read(row, column),
1372 &column->type, false);
1373 ovsdb_idl_txn_verify(row, column);
1374 ovsdb_idl_txn_write(row, column, &datum);
1375 } else {
1376 struct ovsdb_datum datum;
1377
1378 error = ovsdb_datum_from_string(&datum, &column->type,
1379 value_string, symtab);
1380 if (error) {
1381 goto out;
1382 }
1383 ovsdb_idl_txn_write(row, column, &datum);
1384 }
1385
1386 out:
1387 free(key_string);
1388 free(value_string);
1389
1390 return error;
1391 }
1392
1393 static void
1394 pre_cmd_set(struct ctl_context *ctx)
1395 {
1396 const char *table_name = ctx->argv[1];
1397 const struct ovsdb_idl_table_class *table;
1398 int i;
1399
1400 ctx->error = pre_get_table(ctx, table_name, &table);
1401 if (ctx->error) {
1402 return;
1403 }
1404 for (i = 3; i < ctx->argc; i++) {
1405 ctx->error = pre_parse_column_key_value(ctx, ctx->argv[i], table);
1406 if (ctx->error) {
1407 return;
1408 }
1409 }
1410 }
1411
1412 static void
1413 cmd_set(struct ctl_context *ctx)
1414 {
1415 bool must_exist = !shash_find(&ctx->options, "--if-exists");
1416 const char *table_name = ctx->argv[1];
1417 const char *record_id = ctx->argv[2];
1418 const struct ovsdb_idl_table_class *table;
1419 const struct ovsdb_idl_row *row;
1420 int i;
1421
1422 ctx->error = get_table(table_name, &table);
1423 if (ctx->error) {
1424 return;
1425 }
1426 ctx->error = ctl_get_row(ctx, table, record_id, must_exist, &row);
1427 if (ctx->error) {
1428 return;
1429 }
1430 if (!row) {
1431 return;
1432 }
1433
1434 for (i = 3; i < ctx->argc; i++) {
1435 ctx->error = set_column(table, row, ctx->argv[i], ctx->symtab);
1436 if (ctx->error) {
1437 return;
1438 }
1439 }
1440
1441 invalidate_cache(ctx);
1442 }
1443
1444 static void
1445 pre_cmd_add(struct ctl_context *ctx)
1446 {
1447 const char *table_name = ctx->argv[1];
1448 const char *column_name = ctx->argv[3];
1449 const struct ovsdb_idl_table_class *table;
1450 const struct ovsdb_idl_column *column;
1451
1452 ctx->error = pre_get_table(ctx, table_name, &table);
1453 if (ctx->error) {
1454 return;
1455 }
1456 ctx->error = pre_get_column(ctx, table, column_name, &column);
1457 if (ctx->error) {
1458 return;
1459 }
1460 }
1461
1462 static void
1463 cmd_add(struct ctl_context *ctx)
1464 {
1465 bool must_exist = !shash_find(&ctx->options, "--if-exists");
1466 const char *table_name = ctx->argv[1];
1467 const char *record_id = ctx->argv[2];
1468 const char *column_name = ctx->argv[3];
1469 const struct ovsdb_idl_table_class *table;
1470 const struct ovsdb_idl_column *column;
1471 const struct ovsdb_idl_row *row;
1472 const struct ovsdb_type *type;
1473 struct ovsdb_datum old;
1474 int i;
1475
1476 ctx->error = get_table(table_name, &table);
1477 if (ctx->error) {
1478 return;
1479 }
1480 ctx->error = get_column(table, column_name, &column);
1481 if (ctx->error) {
1482 return;
1483 }
1484 ctx->error = ctl_get_row(ctx, table, record_id, must_exist, &row);
1485 if (ctx->error) {
1486 return;
1487 }
1488 if (!row) {
1489 return;
1490 }
1491 ctx->error = check_mutable(row, column);
1492 if (ctx->error) {
1493 return;
1494 }
1495
1496 type = &column->type;
1497 ovsdb_datum_clone(&old, ovsdb_idl_read(row, column), &column->type);
1498 for (i = 4; i < ctx->argc; i++) {
1499 struct ovsdb_type add_type;
1500 struct ovsdb_datum add;
1501
1502 add_type = *type;
1503 add_type.n_min = 1;
1504 add_type.n_max = UINT_MAX;
1505 ctx->error = ovsdb_datum_from_string(&add, &add_type, ctx->argv[i],
1506 ctx->symtab);
1507 if (ctx->error) {
1508 ovsdb_datum_destroy(&old, &column->type);
1509 return;
1510 }
1511 ovsdb_datum_union(&old, &add, type, false);
1512 ovsdb_datum_destroy(&add, type);
1513 }
1514 if (old.n > type->n_max) {
1515 ctl_error(ctx, "\"add\" operation would put %u %s in column %s of "
1516 "table %s but the maximum number is %u",
1517 old.n,
1518 type->value.type == OVSDB_TYPE_VOID ? "values" : "pairs",
1519 column->name, table->name, type->n_max);
1520 ovsdb_datum_destroy(&old, &column->type);
1521 return;
1522 }
1523 ovsdb_idl_txn_verify(row, column);
1524 ovsdb_idl_txn_write(row, column, &old);
1525
1526 invalidate_cache(ctx);
1527 }
1528
1529 static void
1530 pre_cmd_remove(struct ctl_context *ctx)
1531 {
1532 const char *table_name = ctx->argv[1];
1533 const char *column_name = ctx->argv[3];
1534 const struct ovsdb_idl_table_class *table;
1535 const struct ovsdb_idl_column *column;
1536
1537 ctx->error = pre_get_table(ctx, table_name, &table);
1538 if (ctx->error) {
1539 return;
1540 }
1541 ctx->error = pre_get_column(ctx, table, column_name, &column);
1542 if (ctx->error) {
1543 return;
1544 }
1545 }
1546
1547 static void
1548 cmd_remove(struct ctl_context *ctx)
1549 {
1550 bool must_exist = !shash_find(&ctx->options, "--if-exists");
1551 const char *table_name = ctx->argv[1];
1552 const char *record_id = ctx->argv[2];
1553 const char *column_name = ctx->argv[3];
1554 const struct ovsdb_idl_table_class *table;
1555 const struct ovsdb_idl_column *column;
1556 const struct ovsdb_idl_row *row;
1557 const struct ovsdb_type *type;
1558 struct ovsdb_datum old;
1559 int i;
1560
1561 ctx->error = get_table(table_name, &table);
1562 if (ctx->error) {
1563 return;
1564 }
1565 ctx->error = get_column(table, column_name, &column);
1566 if (ctx->error) {
1567 return;
1568 }
1569 ctx->error = ctl_get_row(ctx, table, record_id, must_exist, &row);
1570 if (ctx->error) {
1571 return;
1572 }
1573 if (!row) {
1574 return;
1575 }
1576 ctx->error = check_mutable(row, column);
1577 if (ctx->error) {
1578 return;
1579 }
1580
1581 type = &column->type;
1582 ovsdb_datum_clone(&old, ovsdb_idl_read(row, column), &column->type);
1583 for (i = 4; i < ctx->argc; i++) {
1584 struct ovsdb_type rm_type;
1585 struct ovsdb_datum rm;
1586 char *error;
1587
1588 rm_type = *type;
1589 rm_type.n_min = 1;
1590 rm_type.n_max = UINT_MAX;
1591 error = ovsdb_datum_from_string(&rm, &rm_type,
1592 ctx->argv[i], ctx->symtab);
1593
1594 if (error) {
1595 if (ovsdb_type_is_map(&rm_type)) {
1596 rm_type.value.type = OVSDB_TYPE_VOID;
1597 free(error);
1598 ctx->error = ovsdb_datum_from_string(&rm, &rm_type,
1599 ctx->argv[i],
1600 ctx->symtab);
1601 if (ctx->error) {
1602 ovsdb_datum_destroy(&old, &column->type);
1603 return;
1604 }
1605 } else {
1606 ctx->error = error;
1607 ovsdb_datum_destroy(&old, &column->type);
1608 return;
1609 }
1610 }
1611 ovsdb_datum_subtract(&old, type, &rm, &rm_type);
1612 ovsdb_datum_destroy(&rm, &rm_type);
1613 }
1614 if (old.n < type->n_min) {
1615 ctl_error(ctx, "\"remove\" operation would put %u %s in column %s of "
1616 "table %s but the minimum number is %u", old.n,
1617 type->value.type == OVSDB_TYPE_VOID ? "values" : "pairs",
1618 column->name, table->name, type->n_min);
1619 ovsdb_datum_destroy(&old, &column->type);
1620 return;
1621 }
1622 ovsdb_idl_txn_verify(row, column);
1623 ovsdb_idl_txn_write(row, column, &old);
1624
1625 invalidate_cache(ctx);
1626 }
1627
1628 static void
1629 pre_cmd_clear(struct ctl_context *ctx)
1630 {
1631 const char *table_name = ctx->argv[1];
1632 const struct ovsdb_idl_table_class *table;
1633 int i;
1634
1635 ctx->error = pre_get_table(ctx, table_name, &table);
1636 if (ctx->error) {
1637 return;
1638 }
1639 for (i = 3; i < ctx->argc; i++) {
1640 const struct ovsdb_idl_column *column;
1641
1642 ctx->error = pre_get_column(ctx, table, ctx->argv[i], &column);
1643 if (ctx->error) {
1644 return;
1645 }
1646 }
1647 }
1648
1649 static void
1650 cmd_clear(struct ctl_context *ctx)
1651 {
1652 bool must_exist = !shash_find(&ctx->options, "--if-exists");
1653 const char *table_name = ctx->argv[1];
1654 const char *record_id = ctx->argv[2];
1655 const struct ovsdb_idl_table_class *table;
1656 const struct ovsdb_idl_row *row;
1657 int i;
1658
1659 ctx->error = get_table(table_name, &table);
1660 if (ctx->error) {
1661 return;
1662 }
1663 ctx->error = ctl_get_row(ctx, table, record_id, must_exist, &row);
1664 if (ctx->error) {
1665 return;
1666 }
1667 if (!row) {
1668 return;
1669 }
1670
1671 for (i = 3; i < ctx->argc; i++) {
1672 const struct ovsdb_idl_column *column;
1673 const struct ovsdb_type *type;
1674 struct ovsdb_datum datum;
1675
1676 ctx->error = get_column(table, ctx->argv[i], &column);
1677 if (ctx->error) {
1678 return;
1679 }
1680 ctx->error = check_mutable(row, column);
1681 if (ctx->error) {
1682 return;
1683 }
1684
1685 type = &column->type;
1686 if (type->n_min > 0) {
1687 ctl_error(ctx, "\"clear\" operation cannot be applied to column "
1688 "%s of table %s, which is not allowed to be empty",
1689 column->name, table->name);
1690 return;
1691 }
1692
1693 ovsdb_datum_init_empty(&datum);
1694 ovsdb_idl_txn_write(row, column, &datum);
1695 }
1696
1697 invalidate_cache(ctx);
1698 }
1699
1700 static void
1701 pre_create(struct ctl_context *ctx)
1702 {
1703 const char *id = shash_find_data(&ctx->options, "--id");
1704 const char *table_name = ctx->argv[1];
1705 const struct ovsdb_idl_table_class *table;
1706
1707 ctx->error = get_table(table_name, &table);
1708 if (ctx->error) {
1709 return;
1710 }
1711 if (!id && !table->is_root) {
1712 VLOG_WARN("applying \"create\" command to table %s without --id "
1713 "option will have no effect", table->name);
1714 }
1715 }
1716
1717 static void
1718 cmd_create(struct ctl_context *ctx)
1719 {
1720 const char *id = shash_find_data(&ctx->options, "--id");
1721 const char *table_name = ctx->argv[1];
1722 const struct ovsdb_idl_table_class *table;
1723 const struct ovsdb_idl_row *row;
1724 const struct uuid *uuid = NULL;
1725 int i;
1726
1727 ctx->error = get_table(table_name, &table);
1728 if (ctx->error) {
1729 return;
1730 }
1731 if (id) {
1732 struct ovsdb_symbol *symbol = NULL;
1733
1734 ctx->error = create_symbol(ctx->symtab, id, &symbol, NULL);
1735 if (ctx->error) {
1736 return;
1737 }
1738 if (table->is_root) {
1739 /* This table is in the root set, meaning that rows created in it
1740 * won't disappear even if they are unreferenced, so disable
1741 * warnings about that by pretending that there is a reference. */
1742 symbol->strong_ref = true;
1743 }
1744 uuid = &symbol->uuid;
1745 }
1746
1747 row = ovsdb_idl_txn_insert(ctx->txn, table, uuid);
1748 for (i = 2; i < ctx->argc; i++) {
1749 ctx->error = set_column(table, row, ctx->argv[i], ctx->symtab);
1750 if (ctx->error) {
1751 return;
1752 }
1753 }
1754 ds_put_format(&ctx->output, UUID_FMT, UUID_ARGS(&row->uuid));
1755 }
1756
1757 /* This function may be used as the 'postprocess' function for commands that
1758 * insert new rows into the database. It expects that the command's 'run'
1759 * function prints the UUID reported by ovsdb_idl_txn_insert() as the command's
1760 * sole output. It replaces that output by the row's permanent UUID assigned
1761 * by the database server and appends a new-line.
1762 *
1763 * Currently we use this only for "create", because the higher-level commands
1764 * are supposed to be independent of the actual structure of the vswitch
1765 * configuration. */
1766 static void
1767 post_create(struct ctl_context *ctx)
1768 {
1769 const struct uuid *real;
1770 struct uuid dummy;
1771
1772 if (!uuid_from_string(&dummy, ds_cstr(&ctx->output))) {
1773 OVS_NOT_REACHED();
1774 }
1775 real = ovsdb_idl_txn_get_insert_uuid(ctx->txn, &dummy);
1776 if (real) {
1777 ds_clear(&ctx->output);
1778 ds_put_format(&ctx->output, UUID_FMT, UUID_ARGS(real));
1779 }
1780 ds_put_char(&ctx->output, '\n');
1781 }
1782
1783 static void
1784 pre_cmd_destroy(struct ctl_context *ctx)
1785 {
1786 const char *table_name = ctx->argv[1];
1787
1788 ctx->error = pre_get_table(ctx, table_name, NULL);
1789 if (ctx->error) {
1790 return;
1791 }
1792 }
1793
1794 static void
1795 cmd_destroy(struct ctl_context *ctx)
1796 {
1797 bool must_exist = !shash_find(&ctx->options, "--if-exists");
1798 bool delete_all = shash_find(&ctx->options, "--all");
1799 const char *table_name = ctx->argv[1];
1800 const struct ovsdb_idl_table_class *table;
1801 int i;
1802
1803 ctx->error = get_table(table_name, &table);
1804 if (ctx->error) {
1805 return;
1806 }
1807
1808 if (delete_all && ctx->argc > 2) {
1809 ctl_error(ctx, "--all and records argument should not be specified "
1810 "together");
1811 return;
1812 }
1813
1814 if (delete_all && !must_exist) {
1815 ctl_error(ctx, "--all and --if-exists should not be specified "
1816 "together");
1817 return;
1818 }
1819
1820 if (delete_all) {
1821 const struct ovsdb_idl_row *row;
1822 const struct ovsdb_idl_row *next_row;
1823
1824 for (row = ovsdb_idl_first_row(ctx->idl, table);
1825 row;) {
1826 next_row = ovsdb_idl_next_row(row);
1827 ovsdb_idl_txn_delete(row);
1828 row = next_row;
1829 }
1830 } else {
1831 for (i = 2; i < ctx->argc; i++) {
1832 const struct ovsdb_idl_row *row;
1833
1834 ctx->error = ctl_get_row(ctx, table, ctx->argv[i], must_exist,
1835 &row);
1836 if (ctx->error) {
1837 return;
1838 }
1839 if (row) {
1840 ovsdb_idl_txn_delete(row);
1841 }
1842 }
1843 }
1844 invalidate_cache(ctx);
1845 }
1846
1847 static void
1848 pre_cmd_wait_until(struct ctl_context *ctx)
1849 {
1850 const char *table_name = ctx->argv[1];
1851 const struct ovsdb_idl_table_class *table;
1852 int i;
1853
1854 ctx->error = pre_get_table(ctx, table_name, &table);
1855 if (ctx->error) {
1856 return;
1857 }
1858
1859 for (i = 3; i < ctx->argc; i++) {
1860 ctx->error = pre_parse_column_key_value(ctx, ctx->argv[i], table);
1861 if (ctx->error) {
1862 return;
1863 }
1864 }
1865 }
1866
1867 static void
1868 cmd_wait_until(struct ctl_context *ctx)
1869 {
1870 const char *table_name = ctx->argv[1];
1871 const char *record_id = ctx->argv[2];
1872 const struct ovsdb_idl_table_class *table;
1873 const struct ovsdb_idl_row *row;
1874 int i;
1875
1876 ctx->error = get_table(table_name, &table);
1877 if (ctx->error) {
1878 return;
1879 }
1880 ctx->error = ctl_get_row(ctx, table, record_id, false, &row);
1881 if (ctx->error) {
1882 return;
1883 }
1884 if (!row) {
1885 ctx->try_again = true;
1886 return;
1887 }
1888
1889 for (i = 3; i < ctx->argc; i++) {
1890 bool satisfied;
1891
1892 ctx->error = check_condition(table, row, ctx->argv[i], ctx->symtab,
1893 &satisfied);
1894 if (ctx->error) {
1895 return;
1896 }
1897 if (!satisfied) {
1898 ctx->try_again = true;
1899 return;
1900 }
1901 }
1902 }
1903
1904 /* Parses one command. */
1905 static char * OVS_WARN_UNUSED_RESULT
1906 parse_command(int argc, char *argv[], struct shash *local_options,
1907 struct ctl_command *command)
1908 {
1909 const struct ctl_command_syntax *p;
1910 struct shash_node *node;
1911 int n_arg;
1912 int i;
1913 char *error;
1914
1915 shash_init(&command->options);
1916 shash_swap(local_options, &command->options);
1917 for (i = 0; i < argc; i++) {
1918 const char *option = argv[i];
1919 const char *equals;
1920 char *key, *value;
1921
1922 if (option[0] != '-') {
1923 break;
1924 }
1925
1926 equals = strchr(option, '=');
1927 if (equals) {
1928 key = xmemdup0(option, equals - option);
1929 value = xstrdup(equals + 1);
1930 } else {
1931 key = xstrdup(option);
1932 value = NULL;
1933 }
1934
1935 if (shash_find(&command->options, key)) {
1936 free(key);
1937 free(value);
1938 error = xasprintf("'%s' option specified multiple times", argv[i]);
1939 goto error;
1940 }
1941 shash_add_nocopy(&command->options, key, value);
1942 }
1943 if (i == argc) {
1944 error = xstrdup("missing command name (use --help for help)");
1945 goto error;
1946 }
1947
1948 p = shash_find_data(&all_commands, argv[i]);
1949 if (!p) {
1950 error = xasprintf("unknown command '%s'; use --help for help",
1951 argv[i]);
1952 goto error;
1953 }
1954
1955 SHASH_FOR_EACH (node, &command->options) {
1956 const char *s = strstr(p->options, node->name);
1957 int end = s ? s[strlen(node->name)] : EOF;
1958
1959 if (!strchr("=,? ", end)) {
1960 error = xasprintf("'%s' command has no '%s' option",
1961 argv[i], node->name);
1962 goto error;
1963 }
1964 if (end != '?' && (end == '=') != (node->data != NULL)) {
1965 if (end == '=') {
1966 error = xasprintf("missing argument to '%s' option on '%s' "
1967 "command", node->name, argv[i]);
1968 goto error;
1969 } else {
1970 error = xasprintf("'%s' option on '%s' does not accept an "
1971 "argument", node->name, argv[i]);
1972 goto error;
1973 }
1974 }
1975 }
1976
1977 n_arg = argc - i - 1;
1978 if (n_arg < p->min_args) {
1979 error = xasprintf("'%s' command requires at least %d arguments",
1980 p->name, p->min_args);
1981 goto error;
1982 } else if (n_arg > p->max_args) {
1983 int j;
1984
1985 for (j = i + 1; j < argc; j++) {
1986 if (argv[j][0] == '-') {
1987 error = xasprintf("'%s' command takes at most %d arguments "
1988 "(note that options must precede command "
1989 "names and follow a \"--\" argument)",
1990 p->name, p->max_args);
1991 goto error;
1992 }
1993 }
1994
1995 error = xasprintf("'%s' command takes at most %d arguments",
1996 p->name, p->max_args);
1997 goto error;
1998 }
1999
2000 command->syntax = p;
2001 command->argc = n_arg + 1;
2002 command->argv = &argv[i];
2003 return NULL;
2004
2005 error:
2006 shash_destroy_free_data(&command->options);
2007 return error;
2008 }
2009
2010 static void
2011 pre_cmd_show(struct ctl_context *ctx)
2012 {
2013 const struct cmd_show_table *show;
2014
2015 for (show = cmd_show_tables; show->table; show++) {
2016 size_t i;
2017
2018 ovsdb_idl_add_table(ctx->idl, show->table);
2019 if (show->name_column) {
2020 ovsdb_idl_add_column(ctx->idl, show->name_column);
2021 }
2022 for (i = 0; i < ARRAY_SIZE(show->columns); i++) {
2023 const struct ovsdb_idl_column *column = show->columns[i];
2024 if (column) {
2025 ovsdb_idl_add_column(ctx->idl, column);
2026 }
2027 }
2028 if (show->wref_table.table) {
2029 ovsdb_idl_add_table(ctx->idl, show->wref_table.table);
2030 }
2031 if (show->wref_table.name_column) {
2032 ovsdb_idl_add_column(ctx->idl, show->wref_table.name_column);
2033 }
2034 if (show->wref_table.wref_column) {
2035 ovsdb_idl_add_column(ctx->idl, show->wref_table.wref_column);
2036 }
2037 }
2038 }
2039
2040 static const struct cmd_show_table *
2041 cmd_show_find_table_by_row(const struct ovsdb_idl_row *row)
2042 {
2043 const struct cmd_show_table *show;
2044
2045 for (show = cmd_show_tables; show->table; show++) {
2046 if (show->table == row->table->class_) {
2047 return show;
2048 }
2049 }
2050 return NULL;
2051 }
2052
2053 static const struct cmd_show_table *
2054 cmd_show_find_table_by_name(const char *name)
2055 {
2056 const struct cmd_show_table *show;
2057
2058 for (show = cmd_show_tables; show->table; show++) {
2059 if (!strcmp(show->table->name, name)) {
2060 return show;
2061 }
2062 }
2063 return NULL;
2064 }
2065
2066 /* Prints table entries that weak reference the 'cur_row'. */
2067 static void
2068 cmd_show_weak_ref(struct ctl_context *ctx, const struct cmd_show_table *show,
2069 const struct ovsdb_idl_row *cur_row, int level)
2070 {
2071 const struct ovsdb_idl_row *row_wref;
2072 const struct ovsdb_idl_table_class *table = show->wref_table.table;
2073 const struct ovsdb_idl_column *name_column
2074 = show->wref_table.name_column;
2075 const struct ovsdb_idl_column *wref_column
2076 = show->wref_table.wref_column;
2077
2078 if (!table || !name_column || !wref_column) {
2079 return;
2080 }
2081
2082 for (row_wref = ovsdb_idl_first_row(ctx->idl, table); row_wref;
2083 row_wref = ovsdb_idl_next_row(row_wref)) {
2084 const struct ovsdb_datum *wref_datum
2085 = ovsdb_idl_read(row_wref, wref_column);
2086 /* If weak reference refers to the 'cur_row', prints it. */
2087 if (wref_datum->n
2088 && uuid_equals(&cur_row->uuid, &wref_datum->keys[0].uuid)) {
2089 const struct ovsdb_datum *name_datum
2090 = ovsdb_idl_read(row_wref, name_column);
2091 ds_put_char_multiple(&ctx->output, ' ', (level + 1) * 4);
2092 ds_put_format(&ctx->output, "%s ", table->name);
2093 ovsdb_datum_to_string(name_datum, &name_column->type, &ctx->output);
2094 ds_put_char(&ctx->output, '\n');
2095 }
2096 }
2097 }
2098
2099 /* 'shown' records the tables that has been displayed by the current
2100 * command to avoid duplicated prints.
2101 */
2102 static void
2103 cmd_show_row(struct ctl_context *ctx, const struct ovsdb_idl_row *row,
2104 int level, struct sset *shown)
2105 {
2106 const struct cmd_show_table *show = cmd_show_find_table_by_row(row);
2107 size_t i;
2108
2109 ds_put_char_multiple(&ctx->output, ' ', level * 4);
2110 if (show && show->name_column) {
2111 const struct ovsdb_datum *datum;
2112
2113 ds_put_format(&ctx->output, "%s ", show->table->name);
2114 datum = ovsdb_idl_read(row, show->name_column);
2115 ovsdb_datum_to_string(datum, &show->name_column->type, &ctx->output);
2116 } else {
2117 ds_put_format(&ctx->output, UUID_FMT, UUID_ARGS(&row->uuid));
2118 }
2119 ds_put_char(&ctx->output, '\n');
2120
2121 if (!show || sset_find(shown, show->table->name)) {
2122 return;
2123 }
2124
2125 sset_add(shown, show->table->name);
2126 for (i = 0; i < ARRAY_SIZE(show->columns); i++) {
2127 const struct ovsdb_idl_column *column = show->columns[i];
2128 const struct ovsdb_datum *datum;
2129
2130 if (!column) {
2131 break;
2132 }
2133
2134 datum = ovsdb_idl_read(row, column);
2135 if (column->type.key.type == OVSDB_TYPE_UUID &&
2136 column->type.key.uuid.refTableName) {
2137 const struct cmd_show_table *ref_show;
2138 size_t j;
2139
2140 ref_show = cmd_show_find_table_by_name(
2141 column->type.key.uuid.refTableName);
2142 if (ref_show) {
2143 for (j = 0; j < datum->n; j++) {
2144 const struct ovsdb_idl_row *ref_row;
2145
2146 ref_row = ovsdb_idl_get_row_for_uuid(ctx->idl,
2147 ref_show->table,
2148 &datum->keys[j].uuid);
2149 if (ref_row) {
2150 cmd_show_row(ctx, ref_row, level + 1, shown);
2151 }
2152 }
2153 continue;
2154 }
2155 } else if (ovsdb_type_is_map(&column->type) &&
2156 column->type.value.type == OVSDB_TYPE_UUID &&
2157 column->type.value.uuid.refTableName) {
2158 const struct cmd_show_table *ref_show;
2159 size_t j;
2160
2161 /* Prints the key to ref'ed table name map if the ref'ed table
2162 * is also defined in 'cmd_show_tables'. */
2163 ref_show = cmd_show_find_table_by_name(
2164 column->type.value.uuid.refTableName);
2165 if (ref_show && ref_show->name_column) {
2166 ds_put_char_multiple(&ctx->output, ' ', (level + 1) * 4);
2167 ds_put_format(&ctx->output, "%s:\n", column->name);
2168 for (j = 0; j < datum->n; j++) {
2169 const struct ovsdb_idl_row *ref_row;
2170
2171 ref_row = ovsdb_idl_get_row_for_uuid(ctx->idl,
2172 ref_show->table,
2173 &datum->values[j].uuid);
2174
2175 ds_put_char_multiple(&ctx->output, ' ', (level + 2) * 4);
2176 ovsdb_atom_to_string(&datum->keys[j], column->type.key.type,
2177 &ctx->output);
2178 ds_put_char(&ctx->output, '=');
2179 if (ref_row) {
2180 const struct ovsdb_datum *ref_datum;
2181
2182 ref_datum = ovsdb_idl_read(ref_row,
2183 ref_show->name_column);
2184 ovsdb_datum_to_string(ref_datum,
2185 &ref_show->name_column->type,
2186 &ctx->output);
2187 } else {
2188 ds_put_cstr(&ctx->output, "\"<null>\"");
2189 }
2190 ds_put_char(&ctx->output, '\n');
2191 }
2192 continue;
2193 }
2194 }
2195
2196 if (!ovsdb_datum_is_default(datum, &column->type)) {
2197 ds_put_char_multiple(&ctx->output, ' ', (level + 1) * 4);
2198 ds_put_format(&ctx->output, "%s: ", column->name);
2199 ovsdb_datum_to_string(datum, &column->type, &ctx->output);
2200 ds_put_char(&ctx->output, '\n');
2201 }
2202 }
2203 cmd_show_weak_ref(ctx, show, row, level);
2204 sset_find_and_delete_assert(shown, show->table->name);
2205 }
2206
2207 static void
2208 cmd_show(struct ctl_context *ctx)
2209 {
2210 const struct ovsdb_idl_row *row;
2211 struct sset shown = SSET_INITIALIZER(&shown);
2212
2213 for (row = ovsdb_idl_first_row(ctx->idl, cmd_show_tables[0].table);
2214 row; row = ovsdb_idl_next_row(row)) {
2215 cmd_show_row(ctx, row, 0, &shown);
2216 }
2217
2218 ovs_assert(sset_is_empty(&shown));
2219 sset_destroy(&shown);
2220 }
2221
2222 \f
2223 /* Given pointer to dynamic array 'options_p', array's current size
2224 * 'allocated_options_p' and number of added options 'n_options_p',
2225 * adds all command options to the array. Enlarges the array if
2226 * necessary. */
2227 void
2228 ctl_add_cmd_options(struct option **options_p, size_t *n_options_p,
2229 size_t *allocated_options_p, int opt_val)
2230 {
2231 struct option *o;
2232 const struct shash_node *node;
2233 size_t n_existing_options = *n_options_p;
2234
2235 SHASH_FOR_EACH (node, &all_commands) {
2236 const struct ctl_command_syntax *p = node->data;
2237
2238 if (p->options[0]) {
2239 char *save_ptr = NULL;
2240 char *name;
2241 char *s;
2242
2243 s = xstrdup(p->options);
2244 for (name = strtok_r(s, ",", &save_ptr); name != NULL;
2245 name = strtok_r(NULL, ",", &save_ptr)) {
2246 ovs_assert(name[0] == '-' && name[1] == '-' && name[2]);
2247 name += 2;
2248
2249 size_t n = strcspn(name, "=?");
2250 int has_arg = (name[n] == '\0' ? no_argument
2251 : name[n] == '=' ? required_argument
2252 : optional_argument);
2253 name[n] = '\0';
2254
2255 o = find_option(name, *options_p, *n_options_p);
2256 if (o) {
2257 ovs_assert(o - *options_p >= n_existing_options);
2258 ovs_assert(o->has_arg == has_arg);
2259 } else {
2260 o = add_option(options_p, n_options_p, allocated_options_p);
2261 o->name = xstrdup(name);
2262 o->has_arg = has_arg;
2263 o->flag = NULL;
2264 o->val = opt_val;
2265 }
2266 }
2267
2268 free(s);
2269 }
2270 }
2271 o = add_option(options_p, n_options_p, allocated_options_p);
2272 memset(o, 0, sizeof *o);
2273 }
2274
2275 /* Parses command-line input for commands. */
2276 char *
2277 ctl_parse_commands(int argc, char *argv[], struct shash *local_options,
2278 struct ctl_command **commandsp, size_t *n_commandsp)
2279 {
2280 struct ctl_command *commands;
2281 size_t n_commands, allocated_commands;
2282 int i, start;
2283 char *error;
2284
2285 commands = NULL;
2286 n_commands = allocated_commands = 0;
2287
2288 *commandsp = NULL;
2289 *n_commandsp = 0;
2290
2291 for (start = i = 0; i <= argc; i++) {
2292 if (i == argc || !strcmp(argv[i], "--")) {
2293 if (i > start) {
2294 if (n_commands >= allocated_commands) {
2295 struct ctl_command *c;
2296
2297 commands = x2nrealloc(commands, &allocated_commands,
2298 sizeof *commands);
2299 for (c = commands; c < &commands[n_commands]; c++) {
2300 shash_moved(&c->options);
2301 }
2302 }
2303 error = parse_command(i - start, &argv[start], local_options,
2304 &commands[n_commands]);
2305 if (error) {
2306 struct ctl_command *c;
2307
2308 for (c = commands; c < &commands[n_commands]; c++) {
2309 shash_destroy_free_data(&c->options);
2310 }
2311 free(commands);
2312
2313 return error;
2314 }
2315
2316 n_commands++;
2317 } else if (!shash_is_empty(local_options)) {
2318 return xstrdup("missing command name (use --help for help)");
2319 }
2320 start = i + 1;
2321 }
2322 }
2323 if (!n_commands) {
2324 return xstrdup("missing command name (use --help for help)");
2325 }
2326 *commandsp = commands;
2327 *n_commandsp = n_commands;
2328 return NULL;
2329 }
2330
2331 /* Prints all registered commands. */
2332 void
2333 ctl_print_commands(void)
2334 {
2335 const struct shash_node *node;
2336
2337 SHASH_FOR_EACH (node, &all_commands) {
2338 const struct ctl_command_syntax *p = node->data;
2339 char *options = xstrdup(p->options);
2340 char *options_begin = options;
2341 char *item;
2342
2343 for (item = strsep(&options, ","); item != NULL;
2344 item = strsep(&options, ",")) {
2345 if (item[0] != '\0') {
2346 printf("[%s] ", item);
2347 }
2348 }
2349 printf(",%s,", p->name);
2350 print_command_arguments(p);
2351 printf("\n");
2352
2353 free(options_begin);
2354 }
2355
2356 exit(EXIT_SUCCESS);
2357 }
2358
2359 /* Given array of options 'options', prints them. */
2360 void
2361 ctl_print_options(const struct option *options)
2362 {
2363 for (; options->name; options++) {
2364 const struct option *o = options;
2365
2366 printf("--%s%s\n", o->name, o->has_arg ? "=ARG" : "");
2367 if (o->flag == NULL && o->val > 0 && o->val <= UCHAR_MAX) {
2368 printf("-%c%s\n", o->val, o->has_arg ? " ARG" : "");
2369 }
2370 }
2371
2372 exit(EXIT_SUCCESS);
2373 }
2374
2375 /* Returns the default local database path. */
2376 char *
2377 ctl_default_db(void)
2378 {
2379 static char *def;
2380 if (!def) {
2381 def = xasprintf("unix:%s/db.sock", ovs_rundir());
2382 }
2383 return def;
2384 }
2385
2386 /* Returns true if it looks like this set of arguments might modify the
2387 * database, otherwise false. (Not very smart, so it's prone to false
2388 * positives.) */
2389 bool
2390 ctl_might_write_to_db(const struct ctl_command *commands, size_t n)
2391 {
2392 for (size_t i = 0; i < n; i++) {
2393 if (commands[i].syntax->mode == RW) {
2394 return true;
2395 }
2396 }
2397 return false;
2398 }
2399
2400 /* Report an error while running in the command context. Caller should return
2401 * to its caller immediately after reporting the error. */
2402 void
2403 ctl_error(struct ctl_context *ctx, const char *format, ...)
2404 {
2405 va_list args;
2406
2407 ovs_assert(ctx);
2408
2409 if (ctx->error) {
2410 VLOG_ERR("Discarding unhandled error: %s", ctx->error);
2411 free(ctx->error);
2412 }
2413
2414 va_start(args, format);
2415 ctx->error = xvasprintf(format, args);
2416 va_end(args);
2417 }
2418
2419 void
2420 ctl_fatal(const char *format, ...)
2421 {
2422 char *message;
2423 va_list args;
2424
2425 va_start(args, format);
2426 message = xvasprintf(format, args);
2427 va_end(args);
2428
2429 vlog_set_levels(&this_module, VLF_CONSOLE, VLL_OFF);
2430 VLOG_ERR("%s", message);
2431 ovs_error(0, "%s", message);
2432 ctl_exit(EXIT_FAILURE);
2433 }
2434
2435 /* Frees the current transaction and the underlying IDL and then calls
2436 * exit(status).
2437 *
2438 * Freeing the transaction and the IDL is not strictly necessary, but it makes
2439 * for a clean memory leak report from valgrind in the normal case. That makes
2440 * it easier to notice real memory leaks. */
2441 static void
2442 ctl_exit(int status)
2443 {
2444 if (ctl_exit_func) {
2445 ctl_exit_func(status);
2446 }
2447 exit(status);
2448 }
2449
2450 /* Comman database commands to be registered. */
2451 static const struct ctl_command_syntax db_ctl_commands[] = {
2452 {"comment", 0, INT_MAX, "[ARG]...", NULL, NULL, NULL, "", RO},
2453 {"get", 2, INT_MAX, "TABLE RECORD [COLUMN[:KEY]]...",pre_cmd_get, cmd_get,
2454 NULL, "--if-exists,--id=", RO},
2455 {"list", 1, INT_MAX, "TABLE [RECORD]...", pre_cmd_list, cmd_list, NULL,
2456 "--if-exists,--columns=", RO},
2457 {"find", 1, INT_MAX, "TABLE [COLUMN[:KEY]=VALUE]...", pre_cmd_find,
2458 cmd_find, NULL, "--columns=", RO},
2459 {"set", 3, INT_MAX, "TABLE RECORD COLUMN[:KEY]=VALUE...", pre_cmd_set,
2460 cmd_set, NULL, "--if-exists", RW},
2461 {"add", 4, INT_MAX, "TABLE RECORD COLUMN [KEY=]VALUE...", pre_cmd_add,
2462 cmd_add, NULL, "--if-exists", RW},
2463 {"remove", 4, INT_MAX, "TABLE RECORD COLUMN KEY|VALUE|KEY=VALUE...",
2464 pre_cmd_remove, cmd_remove, NULL, "--if-exists", RW},
2465 {"clear", 3, INT_MAX, "TABLE RECORD COLUMN...", pre_cmd_clear, cmd_clear,
2466 NULL, "--if-exists", RW},
2467 {"create", 2, INT_MAX, "TABLE COLUMN[:KEY]=VALUE...", pre_create,
2468 cmd_create, post_create, "--id=", RW},
2469 {"destroy", 1, INT_MAX, "TABLE [RECORD]...", pre_cmd_destroy, cmd_destroy,
2470 NULL, "--if-exists,--all", RW},
2471 {"wait-until", 2, INT_MAX, "TABLE RECORD [COLUMN[:KEY]=VALUE]...",
2472 pre_cmd_wait_until, cmd_wait_until, NULL, "", RO},
2473 {NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, RO},
2474 };
2475
2476 static void
2477 ctl_register_command(const struct ctl_command_syntax *command)
2478 {
2479 shash_add_assert(&all_commands, command->name, command);
2480 }
2481
2482 /* Registers commands represented by 'struct ctl_command_syntax's to
2483 * 'all_commands'. The last element of 'commands' must be an all-NULL
2484 * element. */
2485 void
2486 ctl_register_commands(const struct ctl_command_syntax *commands)
2487 {
2488 const struct ctl_command_syntax *p;
2489
2490 for (p = commands; p->name; p++) {
2491 ctl_register_command(p);
2492 }
2493 }
2494
2495 /* Registers the 'db_ctl_commands' to 'all_commands'. */
2496 void
2497 ctl_init__(const struct ovsdb_idl_class *idl_class_,
2498 const struct ctl_table_class *ctl_classes_,
2499 const struct cmd_show_table cmd_show_tables_[],
2500 void (*ctl_exit_func_)(int status))
2501 {
2502 idl_class = idl_class_;
2503 idl_classes = idl_class_->tables;
2504 ctl_classes = ctl_classes_;
2505 n_classes = idl_class->n_tables;
2506 ctl_exit_func = ctl_exit_func_;
2507 ctl_register_commands(db_ctl_commands);
2508
2509 cmd_show_tables = cmd_show_tables_;
2510 if (cmd_show_tables) {
2511 static const struct ctl_command_syntax show =
2512 {"show", 0, 0, "", pre_cmd_show, cmd_show, NULL, "", RO};
2513 ctl_register_command(&show);
2514 }
2515 }
2516
2517 /* Returns the text for the database commands usage. */
2518 const char *
2519 ctl_get_db_cmd_usage(void)
2520 {
2521 return "Database commands:\n\
2522 list TBL [REC] list RECord (or all records) in TBL\n\
2523 find TBL CONDITION... list records satisfying CONDITION in TBL\n\
2524 get TBL REC COL[:KEY] print values of COLumns in RECord in TBL\n\
2525 set TBL REC COL[:KEY]=VALUE set COLumn values in RECord in TBL\n\
2526 add TBL REC COL [KEY=]VALUE add (KEY=)VALUE to COLumn in RECord in TBL\n\
2527 remove TBL REC COL [KEY=]VALUE remove (KEY=)VALUE from COLumn\n\
2528 clear TBL REC COL clear values from COLumn in RECord in TBL\n\
2529 create TBL COL[:KEY]=VALUE create and initialize new record\n\
2530 destroy TBL REC delete RECord from TBL\n\
2531 wait-until TBL REC [COL[:KEY]=VALUE] wait until condition is true\n\
2532 Potentially unsafe database commands require --force option.\n";
2533 }
2534
2535 const char *
2536 ctl_list_db_tables_usage(void)
2537 {
2538 static struct ds s = DS_EMPTY_INITIALIZER;
2539 if (s.length) {
2540 return ds_cstr(&s);
2541 }
2542
2543 ds_put_cstr(&s, "Database commands may reference a row in each table in the following ways:\n");
2544 for (int i = 0; i < n_classes; i++) {
2545 struct svec options = SVEC_EMPTY_INITIALIZER;
2546
2547 svec_add(&options, "by UUID");
2548 if (idl_classes[i].is_singleton) {
2549 svec_add(&options, "as \".\"");
2550 }
2551
2552 for (int j = 0; j < ARRAY_SIZE(ctl_classes[i].row_ids); j++) {
2553 const struct ctl_row_id *id = &ctl_classes[i].row_ids[j];
2554 if (!id->name_column) {
2555 continue;
2556 }
2557
2558 struct ds o = DS_EMPTY_INITIALIZER;
2559 if (id->uuid_column) {
2560 ds_put_format(&o, "via \"%s\"", id->uuid_column->name);
2561 const struct ovsdb_idl_table_class *referrer
2562 = ovsdb_idl_table_class_from_column(idl_class,
2563 id->uuid_column);
2564 if (referrer != &idl_classes[i]) {
2565 ds_put_format(&o, " of %s", referrer->name);
2566 }
2567 if (id->key) {
2568 ds_put_format(&o, " with matching \"%s:%s\"",
2569 id->name_column->name, id->key);
2570 } else {
2571 ds_put_format(&o, " with matching \"%s\"", id->name_column->name);
2572 }
2573 } else if (id->key) {
2574 ds_put_format(&o, "by \"%s:%s\"", id->name_column->name, id->key);
2575 } else {
2576 ds_put_format(&o, "by \"%s\"", id->name_column->name);
2577 }
2578 svec_add_nocopy(&options, ds_steal_cstr(&o));
2579 }
2580
2581 ds_put_format(&s, " %s:", idl_classes[i].name);
2582 for (int j = 0; j < options.n; j++) {
2583 ds_put_format(&s, "\n %s", options.names[j]);
2584 }
2585 ds_put_char(&s, '\n');
2586 svec_destroy(&options);
2587 }
2588
2589 return ds_cstr(&s);
2590 }
2591
2592 /* Initializes 'ctx' from 'command'. */
2593 void
2594 ctl_context_init_command(struct ctl_context *ctx,
2595 struct ctl_command *command)
2596 {
2597 ctx->argc = command->argc;
2598 ctx->argv = command->argv;
2599 ctx->options = command->options;
2600
2601 ds_swap(&ctx->output, &command->output);
2602 ctx->table = command->table;
2603 ctx->try_again = false;
2604 ctx->error = NULL;
2605 }
2606
2607 /* Initializes the entire 'ctx'. */
2608 void
2609 ctl_context_init(struct ctl_context *ctx, struct ctl_command *command,
2610 struct ovsdb_idl *idl, struct ovsdb_idl_txn *txn,
2611 struct ovsdb_symbol_table *symtab,
2612 void (*invalidate_cache_cb)(struct ctl_context *))
2613 {
2614 if (command) {
2615 ctl_context_init_command(ctx, command);
2616 }
2617 ctx->idl = idl;
2618 ctx->txn = txn;
2619 ctx->symtab = symtab;
2620 ctx->invalidate_cache_cb = invalidate_cache_cb;
2621 }
2622
2623 /* Completes processing of 'command' within 'ctx'. */
2624 void
2625 ctl_context_done_command(struct ctl_context *ctx,
2626 struct ctl_command *command)
2627 {
2628 ds_swap(&ctx->output, &command->output);
2629 command->table = ctx->table;
2630 free(ctx->error);
2631 ctx->error = NULL;
2632 }
2633
2634 /* Finishes up with 'ctx'.
2635 *
2636 * If command is nonnull, first calls ctl_context_done_command() to complete
2637 * processing that command within 'ctx'. */
2638 void
2639 ctl_context_done(struct ctl_context *ctx,
2640 struct ctl_command *command)
2641 {
2642 if (command) {
2643 ctl_context_done_command(ctx, command);
2644 }
2645 invalidate_cache(ctx);
2646 }
2647
2648 char * OVS_WARN_UNUSED_RESULT
2649 ctl_set_column(const char *table_name, const struct ovsdb_idl_row *row,
2650 const char *arg, struct ovsdb_symbol_table *symtab)
2651 {
2652 const struct ovsdb_idl_table_class *table;
2653 char *error;
2654
2655 error = get_table(table_name, &table);
2656 if (error) {
2657 return error;
2658 }
2659 error = set_column(table, row, arg, symtab);
2660 if (error) {
2661 return error;
2662 }
2663
2664 return NULL;
2665 }