]> git.proxmox.com Git - ovs.git/blame - utilities/ovs-vsctl.c
ovs-vsctl: Do not allow record names to be abbreviated.
[ovs.git] / utilities / ovs-vsctl.c
CommitLineData
c75d1511 1/*
ad83bfa6 2 * Copyright (c) 2009, 2010 Nicira Networks.
c75d1511
BP
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 <assert.h>
ad83bfa6 20#include <ctype.h>
c75d1511 21#include <errno.h>
ad83bfa6 22#include <float.h>
c75d1511
BP
23#include <getopt.h>
24#include <inttypes.h>
25#include <signal.h>
26#include <stdarg.h>
27#include <stdlib.h>
28#include <string.h>
29
30#include "command-line.h"
31#include "compiler.h"
32#include "dirs.h"
33#include "dynamic-string.h"
b54e22e9 34#include "json.h"
ad83bfa6 35#include "ovsdb-data.h"
c75d1511
BP
36#include "ovsdb-idl.h"
37#include "poll-loop.h"
f8ff4bc4 38#include "process.h"
218a6f59 39#include "stream-ssl.h"
dfbe07ba 40#include "svec.h"
c75d1511
BP
41#include "vswitchd/vswitch-idl.h"
42#include "timeval.h"
43#include "util.h"
44
45#include "vlog.h"
46#define THIS_MODULE VLM_vsctl
47
def90f62
BP
48/* vsctl_fatal() also logs the error, so it is preferred in this file. */
49#define ovs_fatal please_use_vsctl_fatal_instead_of_ovs_fatal
50
f8ff4bc4
BP
51struct vsctl_context;
52
53typedef void vsctl_handler_func(struct vsctl_context *);
54
55struct vsctl_command_syntax {
56 const char *name;
57 int min_args;
58 int max_args;
59 vsctl_handler_func *run;
3da1c516 60 vsctl_handler_func *postprocess;
f8ff4bc4
BP
61 const char *options;
62};
63
64struct vsctl_command {
65 /* Data that remains constant after initialization. */
66 const struct vsctl_command_syntax *syntax;
67 int argc;
68 char **argv;
69 struct shash options;
70
71 /* Data modified by commands. */
72 struct ds output;
73};
74
c75d1511
BP
75/* --db: The database server to contact. */
76static const char *db;
77
78/* --oneline: Write each command's output as a single line? */
79static bool oneline;
80
577aebdf
BP
81/* --dry-run: Do not commit any changes. */
82static bool dry_run;
83
b54e22e9
BP
84/* --no-wait: Wait for ovs-vswitchd to reload its configuration? */
85static bool wait_for_reload = true;
86
a39a859a
JP
87/* --timeout: Time to wait for a connection to 'db'. */
88static int timeout = 5;
89
f8ff4bc4
BP
90/* All supported commands. */
91static const struct vsctl_command_syntax all_commands[];
92
1d48b4be
BP
93/* The IDL we're using and the current transaction, if any.
94 * This is for use by vsctl_exit() only, to allow it to clean up.
95 * Other code should use its context arguments. */
96static struct ovsdb_idl *the_idl;
97static struct ovsdb_idl_txn *the_idl_txn;
98
99static void vsctl_exit(int status) NO_RETURN;
c88b6a27 100static void vsctl_fatal(const char *, ...) PRINTF_FORMAT(1, 2) NO_RETURN;
c75d1511
BP
101static char *default_db(void);
102static void usage(void) NO_RETURN;
103static void parse_options(int argc, char *argv[]);
104
f8ff4bc4
BP
105static struct vsctl_command *parse_commands(int argc, char *argv[],
106 size_t *n_commandsp);
107static void parse_command(int argc, char *argv[], struct vsctl_command *);
108static void do_vsctl(const char *args,
109 struct vsctl_command *, size_t n_commands,
110 struct ovsdb_idl *);
c75d1511 111
18b239f5
BP
112static const struct vsctl_table_class *get_table(const char *table_name);
113static void set_column(const struct vsctl_table_class *,
ce5a3e38
BP
114 const struct ovsdb_idl_row *, const char *arg,
115 struct ovsdb_symbol_table *);
18b239f5
BP
116
117
c75d1511
BP
118int
119main(int argc, char *argv[])
120{
121 struct ovsdb_idl *idl;
f8ff4bc4
BP
122 struct vsctl_command *commands;
123 size_t n_commands;
124 char *args;
c75d1511
BP
125
126 set_program_name(argv[0]);
127 signal(SIGPIPE, SIG_IGN);
128 time_init();
129 vlog_init();
dfbe07ba
BP
130 vlog_set_levels(VLM_ANY_MODULE, VLF_CONSOLE, VLL_WARN);
131 vlog_set_levels(VLM_reconnect, VLF_ANY_FACILITY, VLL_WARN);
bd76d25d 132 ovsrec_init();
f8ff4bc4
BP
133
134 /* Log our arguments. This is often valuable for debugging systems. */
135 args = process_escape_args(argv);
136 VLOG_INFO("Called as %s", args);
137
138 /* Parse command line. */
c75d1511 139 parse_options(argc, argv);
f8ff4bc4 140 commands = parse_commands(argc - optind, argv + optind, &n_commands);
c75d1511 141
a39a859a
JP
142 if (timeout) {
143 time_alarm(timeout);
144 }
145
524555d1 146 /* Now execute the commands. */
1d48b4be 147 idl = the_idl = ovsdb_idl_create(db, &ovsrec_idl_class);
c75d1511 148 for (;;) {
4ea21243 149 if (ovsdb_idl_run(idl)) {
f8ff4bc4 150 do_vsctl(args, commands, n_commands, idl);
c75d1511
BP
151 }
152
153 ovsdb_idl_wait(idl);
154 poll_block();
155 }
156}
157
158static void
159parse_options(int argc, char *argv[])
160{
161 enum {
162 OPT_DB = UCHAR_MAX + 1,
163 OPT_ONELINE,
0c3dd1e1 164 OPT_NO_SYSLOG,
577aebdf 165 OPT_NO_WAIT,
e26b5a06 166 OPT_DRY_RUN,
218a6f59 167 OPT_PEER_CA_CERT,
e26b5a06 168 VLOG_OPTION_ENUMS
c75d1511
BP
169 };
170 static struct option long_options[] = {
171 {"db", required_argument, 0, OPT_DB},
dfbe07ba 172 {"no-syslog", no_argument, 0, OPT_NO_SYSLOG},
0c3dd1e1 173 {"no-wait", no_argument, 0, OPT_NO_WAIT},
577aebdf 174 {"dry-run", no_argument, 0, OPT_DRY_RUN},
c75d1511 175 {"oneline", no_argument, 0, OPT_ONELINE},
342045e1 176 {"timeout", required_argument, 0, 't'},
c75d1511
BP
177 {"help", no_argument, 0, 'h'},
178 {"version", no_argument, 0, 'V'},
e26b5a06 179 VLOG_LONG_OPTIONS,
218a6f59
BP
180#ifdef HAVE_OPENSSL
181 STREAM_SSL_LONG_OPTIONS
182 {"peer-ca-cert", required_argument, 0, OPT_PEER_CA_CERT},
183#endif
c75d1511
BP
184 {0, 0, 0, 0},
185 };
c75d1511 186
342045e1 187
c75d1511
BP
188 for (;;) {
189 int c;
190
342045e1 191 c = getopt_long(argc, argv, "+v::hVt:", long_options, NULL);
c75d1511
BP
192 if (c == -1) {
193 break;
194 }
195
196 switch (c) {
197 case OPT_DB:
198 db = optarg;
199 break;
200
201 case OPT_ONELINE:
202 oneline = true;
203 break;
204
dfbe07ba
BP
205 case OPT_NO_SYSLOG:
206 vlog_set_levels(VLM_vsctl, VLF_SYSLOG, VLL_WARN);
207 break;
208
0c3dd1e1 209 case OPT_NO_WAIT:
b54e22e9 210 wait_for_reload = false;
0c3dd1e1
BP
211 break;
212
577aebdf
BP
213 case OPT_DRY_RUN:
214 dry_run = true;
215 break;
216
c75d1511
BP
217 case 'h':
218 usage();
219
220 case 'V':
221 OVS_PRINT_VERSION(0, 0);
222 exit(EXIT_SUCCESS);
223
342045e1
BP
224 case 't':
225 timeout = strtoul(optarg, NULL, 10);
a39a859a 226 if (timeout < 0) {
def90f62
BP
227 vsctl_fatal("value %s on -t or --timeout is invalid",
228 optarg);
342045e1
BP
229 }
230 break;
231
e26b5a06 232 VLOG_OPTION_HANDLERS
c75d1511 233
218a6f59
BP
234#ifdef HAVE_OPENSSL
235 STREAM_SSL_OPTION_HANDLERS
236
237 case OPT_PEER_CA_CERT:
238 stream_ssl_set_peer_ca_cert_file(optarg);
239 break;
240#endif
241
c75d1511
BP
242 case '?':
243 exit(EXIT_FAILURE);
244
245 default:
246 abort();
247 }
248 }
c75d1511
BP
249
250 if (!db) {
251 db = default_db();
252 }
253}
254
f8ff4bc4
BP
255static struct vsctl_command *
256parse_commands(int argc, char *argv[], size_t *n_commandsp)
257{
258 struct vsctl_command *commands;
259 size_t n_commands, allocated_commands;
260 int i, start;
261
262 commands = NULL;
263 n_commands = allocated_commands = 0;
264
265 for (start = i = 0; i <= argc; i++) {
266 if (i == argc || !strcmp(argv[i], "--")) {
267 if (i > start) {
268 if (n_commands >= allocated_commands) {
269 struct vsctl_command *c;
270
271 commands = x2nrealloc(commands, &allocated_commands,
272 sizeof *commands);
273 for (c = commands; c < &commands[n_commands]; c++) {
274 shash_moved(&c->options);
275 }
276 }
277 parse_command(i - start, &argv[start],
278 &commands[n_commands++]);
279 }
280 start = i + 1;
281 }
282 }
283 if (!n_commands) {
284 vsctl_fatal("missing command name (use --help for help)");
285 }
286 *n_commandsp = n_commands;
287 return commands;
288}
289
290static void
291parse_command(int argc, char *argv[], struct vsctl_command *command)
292{
293 const struct vsctl_command_syntax *p;
294 int i;
295
296 shash_init(&command->options);
297 for (i = 0; i < argc; i++) {
4a033593
BP
298 const char *option = argv[i];
299 const char *equals;
300 char *key, *value;
301
302 if (option[0] != '-') {
f8ff4bc4
BP
303 break;
304 }
4a033593
BP
305
306 equals = strchr(option, '=');
307 if (equals) {
308 key = xmemdup0(option, equals - option);
309 value = xstrdup(equals + 1);
310 } else {
311 key = xstrdup(option);
312 value = NULL;
313 }
314
315 if (shash_find(&command->options, key)) {
f8ff4bc4
BP
316 vsctl_fatal("'%s' option specified multiple times", argv[i]);
317 }
4a033593 318 shash_add_nocopy(&command->options, key, value);
f8ff4bc4
BP
319 }
320 if (i == argc) {
321 vsctl_fatal("missing command name");
322 }
323
324 for (p = all_commands; p->name; p++) {
325 if (!strcmp(p->name, argv[i])) {
326 struct shash_node *node;
327 int n_arg;
328
329 SHASH_FOR_EACH (node, &command->options) {
330 const char *s = strstr(p->options, node->name);
331 int end = s ? s[strlen(node->name)] : EOF;
4a033593
BP
332
333 if (end != '=' && end != ',' && end != ' ' && end != '\0') {
f8ff4bc4
BP
334 vsctl_fatal("'%s' command has no '%s' option",
335 argv[i], node->name);
336 }
4a033593
BP
337 if ((end == '=') != (node->data != NULL)) {
338 if (end == '=') {
339 vsctl_fatal("missing argument to '%s' option on '%s' "
340 "command", node->name, argv[i]);
341 } else {
342 vsctl_fatal("'%s' option on '%s' does not accept an "
343 "argument", node->name, argv[i]);
344 }
345 }
f8ff4bc4
BP
346 }
347
348 n_arg = argc - i - 1;
349 if (n_arg < p->min_args) {
350 vsctl_fatal("'%s' command requires at least %d arguments",
351 p->name, p->min_args);
352 } else if (n_arg > p->max_args) {
e6e7ab87
BP
353 int j;
354
355 for (j = i + 1; j < argc; j++) {
356 if (argv[j][0] == '-') {
357 vsctl_fatal("'%s' command takes at most %d arguments "
358 "(note that options must precede command "
359 "names and follow a \"--\" argument)",
360 p->name, p->max_args);
361 }
362 }
363
f8ff4bc4
BP
364 vsctl_fatal("'%s' command takes at most %d arguments",
365 p->name, p->max_args);
366 } else {
367 command->syntax = p;
368 command->argc = n_arg + 1;
369 command->argv = &argv[i];
370 return;
371 }
372 }
373 }
374
375 vsctl_fatal("unknown command '%s'; use --help for help", argv[i]);
376}
377
378static void
379vsctl_fatal(const char *format, ...)
380{
381 char *message;
382 va_list args;
383
384 va_start(args, format);
385 message = xvasprintf(format, args);
386 va_end(args);
387
388 vlog_set_levels(VLM_vsctl, VLF_CONSOLE, VLL_EMER);
389 VLOG_ERR("%s", message);
def90f62 390 ovs_error(0, "%s", message);
1d48b4be
BP
391 vsctl_exit(EXIT_FAILURE);
392}
393
394/* Frees the current transaction and the underlying IDL and then calls
395 * exit(status).
396 *
397 * Freeing the transaction and the IDL is not strictly necessary, but it makes
398 * for a clean memory leak report from valgrind in the normal case. That makes
399 * it easier to notice real memory leaks. */
400static void
401vsctl_exit(int status)
402{
403 if (the_idl_txn) {
404 ovsdb_idl_txn_abort(the_idl_txn);
405 ovsdb_idl_txn_destroy(the_idl_txn);
406 }
407 ovsdb_idl_destroy(the_idl);
408 exit(status);
f8ff4bc4
BP
409}
410
c75d1511
BP
411static void
412usage(void)
413{
8f7501e8
BP
414 printf("\
415%s: ovs-vswitchd management utility\n\
416usage: %s [OPTIONS] COMMAND [ARG...]\n\
417\n\
418Bridge commands:\n\
419 add-br BRIDGE create a new bridge named BRIDGE\n\
420 add-br BRIDGE PARENT VLAN create new fake BRIDGE in PARENT on VLAN\n\
421 del-br BRIDGE delete BRIDGE and all of its ports\n\
422 list-br print the names of all the bridges\n\
423 br-exists BRIDGE test whether BRIDGE exists\n\
424 br-to-vlan BRIDGE print the VLAN which BRIDGE is on\n\
425 br-to-parent BRIDGE print the parent of BRIDGE\n\
426 br-set-external-id BRIDGE KEY VALUE set KEY on BRIDGE to VALUE\n\
427 br-set-external-id BRIDGE KEY unset KEY on BRIDGE\n\
428 br-get-external-id BRIDGE KEY print value of KEY on BRIDGE\n\
429 br-get-external-id BRIDGE list key-value pairs on BRIDGE\n\
430\n\
431Port commands:\n\
432 list-ports BRIDGE print the names of all the ports on BRIDGE\n\
433 add-port BRIDGE PORT add network device PORT to BRIDGE\n\
434 add-bond BRIDGE PORT IFACE... add bonded port PORT in BRIDGE from IFACES\n\
435 del-port [BRIDGE] PORT delete PORT (which may be bonded) from BRIDGE\n\
436 port-to-br PORT print name of bridge that contains PORT\n\
8f7501e8
BP
437A bond is considered to be a single port.\n\
438\n\
439Interface commands (a bond consists of multiple interfaces):\n\
440 list-ifaces BRIDGE print the names of all interfaces on BRIDGE\n\
441 iface-to-br IFACE print name of bridge that contains IFACE\n\
8f7501e8
BP
442\n\
443Controller commands:\n\
444 get-controller [BRIDGE] print the controller for BRIDGE\n\
445 del-controller [BRIDGE] delete the controller for BRIDGE\n\
446 set-controller [BRIDGE] TARGET set the controller for BRIDGE to TARGET\n\
447 get-fail-mode [BRIDGE] print the fail-mode for BRIDGE\n\
448 del-fail-mode [BRIDGE] delete the fail-mode for BRIDGE\n\
449 set-fail-mode [BRIDGE] MODE set the fail-mode for BRIDGE to MODE\n\
450\n\
451SSL commands:\n\
452 get-ssl print the SSL configuration\n\
453 del-ssl delete the SSL configuration\n\
454 set-ssl PRIV-KEY CERT CA-CERT set the SSL configuration\n\
455\n\
18ee958b
JP
456Switch commands:\n\
457 emer-reset reset switch to known good state\n\
458\n\
8f7501e8
BP
459Database commands:\n\
460 list TBL [REC] list RECord (or all records) in TBL\n\
4f1361e8 461 get TBL REC COL[:KEY] print values of COLumns in RECord in TBL\n\
8f7501e8
BP
462 set TBL REC COL[:KEY]=VALUE set COLumn values in RECord in TBL\n\
463 add TBL REC COL [KEY=]VALUE add (KEY=)VALUE to COLumn in RECord in TBL\n\
464 remove TBL REC COL [KEY=]VALUE remove (KEY=)VALUE from COLumn\n\
465 clear TBL REC COL clear values from COLumn in RECord in TBL\n\
466 create TBL COL[:KEY]=VALUE create and initialize new record\n\
4f1361e8 467 destroy TBL REC delete RECord from TBL\n\
7db03f7c 468 wait-until TBL REC [COL[:KEY]=VALUE] wait until condition is true\n\
8f7501e8
BP
469Potentially unsafe database commands require --force option.\n\
470\n\
471Options:\n\
472 --db=DATABASE connect to DATABASE\n\
473 (default: %s)\n\
474 --oneline print exactly one line of output per command\n",
475 program_name, program_name, default_db());
c75d1511 476 vlog_usage();
8f7501e8
BP
477 printf("\n\
478Other options:\n\
479 -h, --help display this help message\n\
480 -V, --version display version information\n");
c75d1511
BP
481 exit(EXIT_SUCCESS);
482}
483
484static char *
485default_db(void)
486{
487 static char *def;
488 if (!def) {
bc391960 489 def = xasprintf("unix:%s/db.sock", ovs_rundir);
c75d1511
BP
490 }
491 return def;
492}
493\f
5d9cb63c 494struct vsctl_context {
f8ff4bc4 495 /* Read-only. */
5d9cb63c
BP
496 int argc;
497 char **argv;
f8ff4bc4
BP
498 struct shash options;
499
500 /* Modifiable state. */
501 struct ds output;
ad83bfa6 502 struct ovsdb_idl *idl;
f8ff4bc4 503 struct ovsdb_idl_txn *txn;
ce5a3e38 504 struct ovsdb_symbol_table *symtab;
5d9cb63c 505 const struct ovsrec_open_vswitch *ovs;
87b23a01
BP
506
507 /* A command may set this member to true if some prerequisite is not met
508 * and the caller should wait for something to change and then retry. */
509 bool try_again;
5d9cb63c
BP
510};
511
c75d1511
BP
512struct vsctl_bridge {
513 struct ovsrec_bridge *br_cfg;
514 char *name;
76ce9432
BP
515 struct ovsrec_controller **ctrl;
516 size_t n_ctrl;
c75d1511
BP
517 struct vsctl_bridge *parent;
518 int vlan;
519};
520
521struct vsctl_port {
522 struct ovsrec_port *port_cfg;
523 struct vsctl_bridge *bridge;
524};
525
526struct vsctl_iface {
527 struct ovsrec_interface *iface_cfg;
528 struct vsctl_port *port;
529};
530
531struct vsctl_info {
532 struct shash bridges;
533 struct shash ports;
534 struct shash ifaces;
76ce9432
BP
535 struct ovsrec_controller **ctrl;
536 size_t n_ctrl;
c75d1511
BP
537};
538
bb1c67c8
BP
539static char *
540vsctl_context_to_string(const struct vsctl_context *ctx)
541{
542 const struct shash_node *node;
543 struct svec words;
544 char *s;
545 int i;
546
547 svec_init(&words);
548 SHASH_FOR_EACH (node, &ctx->options) {
549 svec_add(&words, node->name);
550 }
551 for (i = 0; i < ctx->argc; i++) {
552 svec_add(&words, ctx->argv[i]);
553 }
554 svec_terminate(&words);
555
556 s = process_escape_args(words.names);
557
558 svec_destroy(&words);
559
560 return s;
561}
562
c75d1511
BP
563static struct vsctl_bridge *
564add_bridge(struct vsctl_info *b,
565 struct ovsrec_bridge *br_cfg, const char *name,
566 struct vsctl_bridge *parent, int vlan)
567{
568 struct vsctl_bridge *br = xmalloc(sizeof *br);
569 br->br_cfg = br_cfg;
570 br->name = xstrdup(name);
571 br->parent = parent;
572 br->vlan = vlan;
76ce9432
BP
573 if (parent) {
574 br->ctrl = parent->br_cfg->controller;
575 br->n_ctrl = parent->br_cfg->n_controller;
576 } else {
577 br->ctrl = br_cfg->controller;
578 br->n_ctrl = br_cfg->n_controller;
579 }
c75d1511
BP
580 shash_add(&b->bridges, br->name, br);
581 return br;
582}
583
584static bool
585port_is_fake_bridge(const struct ovsrec_port *port_cfg)
586{
587 return (port_cfg->fake_bridge
588 && port_cfg->tag
589 && *port_cfg->tag >= 1 && *port_cfg->tag <= 4095);
590}
591
592static struct vsctl_bridge *
593find_vlan_bridge(struct vsctl_info *info,
594 struct vsctl_bridge *parent, int vlan)
595{
596 struct shash_node *node;
597
598 SHASH_FOR_EACH (node, &info->bridges) {
599 struct vsctl_bridge *br = node->data;
600 if (br->parent == parent && br->vlan == vlan) {
601 return br;
602 }
603 }
604
605 return NULL;
606}
607
608static void
609free_info(struct vsctl_info *info)
610{
611 struct shash_node *node;
612
613 SHASH_FOR_EACH (node, &info->bridges) {
614 struct vsctl_bridge *bridge = node->data;
615 free(bridge->name);
616 free(bridge);
617 }
618 shash_destroy(&info->bridges);
619
506051fc
BP
620 shash_destroy_free_data(&info->ports);
621 shash_destroy_free_data(&info->ifaces);
c75d1511
BP
622}
623
624static void
625get_info(const struct ovsrec_open_vswitch *ovs, struct vsctl_info *info)
626{
627 struct shash bridges, ports;
628 size_t i;
629
630 shash_init(&info->bridges);
631 shash_init(&info->ports);
632 shash_init(&info->ifaces);
633
5aa00635 634 info->ctrl = ovs->controller;
76ce9432 635 info->n_ctrl = ovs->n_controller;
5aa00635 636
c75d1511
BP
637 shash_init(&bridges);
638 shash_init(&ports);
639 for (i = 0; i < ovs->n_bridges; i++) {
640 struct ovsrec_bridge *br_cfg = ovs->bridges[i];
641 struct vsctl_bridge *br;
642 size_t j;
643
644 if (!shash_add_once(&bridges, br_cfg->name, NULL)) {
645 VLOG_WARN("%s: database contains duplicate bridge name",
646 br_cfg->name);
647 continue;
648 }
649 br = add_bridge(info, br_cfg, br_cfg->name, NULL, 0);
650 if (!br) {
651 continue;
652 }
653
654 for (j = 0; j < br_cfg->n_ports; j++) {
655 struct ovsrec_port *port_cfg = br_cfg->ports[j];
656
657 if (!shash_add_once(&ports, port_cfg->name, NULL)) {
658 VLOG_WARN("%s: database contains duplicate port name",
659 port_cfg->name);
660 continue;
661 }
662
663 if (port_is_fake_bridge(port_cfg)
dfbe07ba 664 && shash_add_once(&bridges, port_cfg->name, NULL)) {
c75d1511
BP
665 add_bridge(info, NULL, port_cfg->name, br, *port_cfg->tag);
666 }
667 }
668 }
669 shash_destroy(&bridges);
670 shash_destroy(&ports);
671
672 shash_init(&bridges);
673 shash_init(&ports);
674 for (i = 0; i < ovs->n_bridges; i++) {
675 struct ovsrec_bridge *br_cfg = ovs->bridges[i];
676 struct vsctl_bridge *br;
677 size_t j;
678
679 if (!shash_add_once(&bridges, br_cfg->name, NULL)) {
680 continue;
681 }
682 br = shash_find_data(&info->bridges, br_cfg->name);
683 for (j = 0; j < br_cfg->n_ports; j++) {
684 struct ovsrec_port *port_cfg = br_cfg->ports[j];
685 struct vsctl_port *port;
686 size_t k;
687
688 if (!shash_add_once(&ports, port_cfg->name, NULL)) {
689 continue;
690 }
691
692 if (port_is_fake_bridge(port_cfg)
dfbe07ba 693 && !shash_add_once(&bridges, port_cfg->name, NULL)) {
c75d1511
BP
694 continue;
695 }
696
697 port = xmalloc(sizeof *port);
698 port->port_cfg = port_cfg;
699 if (port_cfg->tag
700 && *port_cfg->tag >= 1 && *port_cfg->tag <= 4095) {
701 port->bridge = find_vlan_bridge(info, br, *port_cfg->tag);
702 if (!port->bridge) {
703 port->bridge = br;
704 }
705 } else {
706 port->bridge = br;
707 }
708 shash_add(&info->ports, port_cfg->name, port);
709
710 for (k = 0; k < port_cfg->n_interfaces; k++) {
711 struct ovsrec_interface *iface_cfg = port_cfg->interfaces[k];
712 struct vsctl_iface *iface;
713
714 if (shash_find(&info->ifaces, iface_cfg->name)) {
715 VLOG_WARN("%s: database contains duplicate interface name",
716 iface_cfg->name);
717 continue;
718 }
719
720 iface = xmalloc(sizeof *iface);
721 iface->iface_cfg = iface_cfg;
722 iface->port = port;
dfbe07ba 723 shash_add(&info->ifaces, iface_cfg->name, iface);
c75d1511
BP
724 }
725 }
726 }
727 shash_destroy(&bridges);
728 shash_destroy(&ports);
729}
730
731static void
732check_conflicts(struct vsctl_info *info, const char *name,
733 char *msg)
734{
735 struct vsctl_iface *iface;
736 struct vsctl_port *port;
737
738 if (shash_find(&info->bridges, name)) {
c88b6a27
BP
739 vsctl_fatal("%s because a bridge named %s already exists",
740 msg, name);
c75d1511
BP
741 }
742
743 port = shash_find_data(&info->ports, name);
744 if (port) {
c88b6a27
BP
745 vsctl_fatal("%s because a port named %s already exists on "
746 "bridge %s", msg, name, port->bridge->name);
c75d1511
BP
747 }
748
749 iface = shash_find_data(&info->ifaces, name);
750 if (iface) {
c88b6a27
BP
751 vsctl_fatal("%s because an interface named %s already exists "
752 "on bridge %s", msg, name, iface->port->bridge->name);
c75d1511
BP
753 }
754
755 free(msg);
756}
757
758static struct vsctl_bridge *
01845ce8 759find_bridge(struct vsctl_info *info, const char *name, bool must_exist)
c75d1511
BP
760{
761 struct vsctl_bridge *br = shash_find_data(&info->bridges, name);
01845ce8 762 if (must_exist && !br) {
c88b6a27 763 vsctl_fatal("no bridge named %s", name);
c75d1511
BP
764 }
765 return br;
766}
767
975ac531
JP
768static struct vsctl_bridge *
769find_real_bridge(struct vsctl_info *info, const char *name, bool must_exist)
770{
771 struct vsctl_bridge *br = find_bridge(info, name, must_exist);
772 if (br && br->parent) {
773 vsctl_fatal("%s is a fake bridge", name);
774 }
775 return br;
776}
777
c75d1511 778static struct vsctl_port *
01845ce8 779find_port(struct vsctl_info *info, const char *name, bool must_exist)
c75d1511
BP
780{
781 struct vsctl_port *port = shash_find_data(&info->ports, name);
460aad80 782 if (port && !strcmp(name, port->bridge->name)) {
01845ce8
BP
783 port = NULL;
784 }
785 if (must_exist && !port) {
c88b6a27 786 vsctl_fatal("no port named %s", name);
c75d1511
BP
787 }
788 return port;
789}
790
791static struct vsctl_iface *
01845ce8 792find_iface(struct vsctl_info *info, const char *name, bool must_exist)
c75d1511
BP
793{
794 struct vsctl_iface *iface = shash_find_data(&info->ifaces, name);
460aad80 795 if (iface && !strcmp(name, iface->port->bridge->name)) {
01845ce8
BP
796 iface = NULL;
797 }
798 if (must_exist && !iface) {
c88b6a27 799 vsctl_fatal("no interface named %s", name);
c75d1511
BP
800 }
801 return iface;
802}
803
804static void
805bridge_insert_port(struct ovsrec_bridge *br, struct ovsrec_port *port)
806{
807 struct ovsrec_port **ports;
808 size_t i;
809
810 ports = xmalloc(sizeof *br->ports * (br->n_ports + 1));
811 for (i = 0; i < br->n_ports; i++) {
812 ports[i] = br->ports[i];
813 }
c75d1511
BP
814 ports[br->n_ports] = port;
815 ovsrec_bridge_set_ports(br, ports, br->n_ports + 1);
816 free(ports);
817}
818
819static void
820bridge_delete_port(struct ovsrec_bridge *br, struct ovsrec_port *port)
821{
822 struct ovsrec_port **ports;
823 size_t i, n;
824
825 ports = xmalloc(sizeof *br->ports * br->n_ports);
826 for (i = n = 0; i < br->n_ports; i++) {
827 if (br->ports[i] != port) {
828 ports[n++] = br->ports[i];
829 }
830 }
831 ovsrec_bridge_set_ports(br, ports, n);
832 free(ports);
833}
834
835static void
836ovs_insert_bridge(const struct ovsrec_open_vswitch *ovs,
837 struct ovsrec_bridge *bridge)
838{
839 struct ovsrec_bridge **bridges;
840 size_t i;
841
842 bridges = xmalloc(sizeof *ovs->bridges * (ovs->n_bridges + 1));
843 for (i = 0; i < ovs->n_bridges; i++) {
844 bridges[i] = ovs->bridges[i];
845 }
846 bridges[ovs->n_bridges] = bridge;
847 ovsrec_open_vswitch_set_bridges(ovs, bridges, ovs->n_bridges + 1);
848 free(bridges);
849}
850
851static void
852ovs_delete_bridge(const struct ovsrec_open_vswitch *ovs,
853 struct ovsrec_bridge *bridge)
854{
855 struct ovsrec_bridge **bridges;
856 size_t i, n;
857
858 bridges = xmalloc(sizeof *ovs->bridges * ovs->n_bridges);
859 for (i = n = 0; i < ovs->n_bridges; i++) {
860 if (ovs->bridges[i] != bridge) {
861 bridges[n++] = ovs->bridges[i];
862 }
863 }
864 ovsrec_open_vswitch_set_bridges(ovs, bridges, n);
865 free(bridges);
866}
867
524555d1 868static void
c69ee87c 869cmd_init(struct vsctl_context *ctx OVS_UNUSED)
524555d1
BP
870{
871}
872
18ee958b
JP
873static void
874cmd_emer_reset(struct vsctl_context *ctx)
875{
876 const struct ovsdb_idl *idl = ctx->idl;
877 const struct ovsrec_bridge *br;
878 const struct ovsrec_port *port;
879 const struct ovsrec_interface *iface;
880 const struct ovsrec_mirror *mirror, *next_mirror;
881 const struct ovsrec_controller *ctrl, *next_ctrl;
882 const struct ovsrec_netflow *nf, *next_nf;
883 const struct ovsrec_ssl *ssl, *next_ssl;
884 const struct ovsrec_sflow *sflow, *next_sflow;
885
886
887 /* Reset the Open_vSwitch table. */
888 ovsrec_open_vswitch_set_managers(ctx->ovs, NULL, 0);
889 ovsrec_open_vswitch_set_controller(ctx->ovs, NULL, 0);
890 ovsrec_open_vswitch_set_ssl(ctx->ovs, NULL);
891
892 OVSREC_BRIDGE_FOR_EACH (br, idl) {
893 int i;
894 char *hw_key = "hwaddr";
895 char *hw_val = NULL;
896
897 ovsrec_bridge_set_controller(br, NULL, 0);
898 ovsrec_bridge_set_mirrors(br, NULL, 0);
899 ovsrec_bridge_set_netflow(br, NULL);
900 ovsrec_bridge_set_sflow(br, NULL);
901 ovsrec_bridge_set_flood_vlans(br, NULL, 0);
902
903 /* We only want to save the "hwaddr" key from other_config. */
904 for (i=0; i < br->n_other_config; i++) {
905 if (!strcmp(br->key_other_config[i], hw_key)) {
906 hw_val = br->value_other_config[i];
907 break;
908 }
909 }
910 if (hw_val) {
911 char *val = xstrdup(hw_val);
912 ovsrec_bridge_set_other_config(br, &hw_key, &val, 1);
913 free(val);
914 } else {
915 ovsrec_bridge_set_other_config(br, NULL, NULL, 0);
916 }
917 }
918
919 OVSREC_PORT_FOR_EACH (port, idl) {
920 ovsrec_port_set_other_config(port, NULL, NULL, 0);
921 }
922
923 OVSREC_INTERFACE_FOR_EACH (iface, idl) {
924 /* xxx What do we do about gre/patch devices created by mgr? */
925
926 ovsrec_interface_set_ingress_policing_rate(iface, 0);
927 ovsrec_interface_set_ingress_policing_burst(iface, 0);
928 }
929
930 OVSREC_MIRROR_FOR_EACH_SAFE (mirror, next_mirror, idl) {
931 ovsrec_mirror_delete(mirror);
932 }
933
934 OVSREC_CONTROLLER_FOR_EACH_SAFE (ctrl, next_ctrl, idl) {
935 ovsrec_controller_delete(ctrl);
936 }
937
938 OVSREC_NETFLOW_FOR_EACH_SAFE (nf, next_nf, idl) {
939 ovsrec_netflow_delete(nf);
940 }
941
942 OVSREC_SSL_FOR_EACH_SAFE (ssl, next_ssl, idl) {
943 ovsrec_ssl_delete(ssl);
944 }
945
946 OVSREC_SFLOW_FOR_EACH_SAFE (sflow, next_sflow, idl) {
947 ovsrec_sflow_delete(sflow);
948 }
949}
950
c75d1511 951static void
5d9cb63c 952cmd_add_br(struct vsctl_context *ctx)
c75d1511 953{
aeee85aa 954 bool may_exist = shash_find(&ctx->options, "--may-exist") != 0;
b89d8339 955 const char *br_name, *parent_name;
c75d1511 956 struct vsctl_info info;
b89d8339 957 int vlan;
c75d1511 958
aeee85aa
BP
959 br_name = ctx->argv[1];
960 if (ctx->argc == 2) {
961 parent_name = NULL;
962 vlan = 0;
963 } else if (ctx->argc == 4) {
964 parent_name = ctx->argv[2];
965 vlan = atoi(ctx->argv[3]);
966 if (vlan < 1 || vlan > 4095) {
967 vsctl_fatal("%s: vlan must be between 1 and 4095", ctx->argv[0]);
968 }
969 } else {
970 vsctl_fatal("'%s' command takes exactly 1 or 3 arguments",
971 ctx->argv[0]);
972 }
973
5d9cb63c 974 get_info(ctx->ovs, &info);
aeee85aa
BP
975 if (may_exist) {
976 struct vsctl_bridge *br;
977
978 br = find_bridge(&info, br_name, false);
979 if (br) {
980 if (!parent_name) {
981 if (br->parent) {
982 vsctl_fatal("\"--may-exist add-br %s\" but %s is "
983 "a VLAN bridge for VLAN %d",
984 br_name, br_name, br->vlan);
985 }
986 } else {
987 if (!br->parent) {
988 vsctl_fatal("\"--may-exist add-br %s %s %d\" but %s "
989 "is not a VLAN bridge",
990 br_name, parent_name, vlan, br_name);
991 } else if (strcmp(br->parent->name, parent_name)) {
992 vsctl_fatal("\"--may-exist add-br %s %s %d\" but %s "
993 "has the wrong parent %s",
994 br_name, parent_name, vlan,
995 br_name, br->parent->name);
996 } else if (br->vlan != vlan) {
997 vsctl_fatal("\"--may-exist add-br %s %s %d\" but %s "
998 "is a VLAN bridge for the wrong VLAN %d",
999 br_name, parent_name, vlan, br_name, br->vlan);
1000 }
1001 }
1002 return;
1003 }
1004 }
c75d1511
BP
1005 check_conflicts(&info, br_name,
1006 xasprintf("cannot create a bridge named %s", br_name));
1007
aeee85aa 1008 if (!parent_name) {
c75d1511
BP
1009 struct ovsrec_port *port;
1010 struct ovsrec_interface *iface;
aeee85aa 1011 struct ovsrec_bridge *br;
c75d1511 1012
f8ff4bc4 1013 iface = ovsrec_interface_insert(ctx->txn);
c75d1511
BP
1014 ovsrec_interface_set_name(iface, br_name);
1015
f8ff4bc4 1016 port = ovsrec_port_insert(ctx->txn);
c75d1511
BP
1017 ovsrec_port_set_name(port, br_name);
1018 ovsrec_port_set_interfaces(port, &iface, 1);
1019
f8ff4bc4 1020 br = ovsrec_bridge_insert(ctx->txn);
c75d1511
BP
1021 ovsrec_bridge_set_name(br, br_name);
1022 ovsrec_bridge_set_ports(br, &port, 1);
1023
5d9cb63c 1024 ovs_insert_bridge(ctx->ovs, br);
aeee85aa 1025 } else {
c75d1511
BP
1026 struct vsctl_bridge *parent;
1027 struct ovsrec_port *port;
1028 struct ovsrec_interface *iface;
aeee85aa 1029 struct ovsrec_bridge *br;
c75d1511
BP
1030 int64_t tag = vlan;
1031
01845ce8 1032 parent = find_bridge(&info, parent_name, false);
c75d1511 1033 if (parent && parent->vlan) {
11aa5627 1034 vsctl_fatal("cannot create bridge with fake bridge as parent");
c75d1511
BP
1035 }
1036 if (!parent) {
c88b6a27 1037 vsctl_fatal("parent bridge %s does not exist", parent_name);
c75d1511
BP
1038 }
1039 br = parent->br_cfg;
1040
f8ff4bc4 1041 iface = ovsrec_interface_insert(ctx->txn);
c75d1511
BP
1042 ovsrec_interface_set_name(iface, br_name);
1043 ovsrec_interface_set_type(iface, "internal");
1044
f8ff4bc4 1045 port = ovsrec_port_insert(ctx->txn);
c75d1511
BP
1046 ovsrec_port_set_name(port, br_name);
1047 ovsrec_port_set_interfaces(port, &iface, 1);
1048 ovsrec_port_set_fake_bridge(port, true);
1049 ovsrec_port_set_tag(port, &tag, 1);
dfbe07ba
BP
1050
1051 bridge_insert_port(br, port);
c75d1511
BP
1052 }
1053
1054 free_info(&info);
1055}
1056
1057static void
1058del_port(struct vsctl_info *info, struct vsctl_port *port)
1059{
1060 struct shash_node *node;
1061
1062 SHASH_FOR_EACH (node, &info->ifaces) {
1063 struct vsctl_iface *iface = node->data;
1064 if (iface->port == port) {
1065 ovsrec_interface_delete(iface->iface_cfg);
1066 }
1067 }
1068 ovsrec_port_delete(port->port_cfg);
1069
1070 bridge_delete_port((port->bridge->parent
1071 ? port->bridge->parent->br_cfg
1072 : port->bridge->br_cfg), port->port_cfg);
1073}
1074
1075static void
5d9cb63c 1076cmd_del_br(struct vsctl_context *ctx)
c75d1511 1077{
460aad80 1078 bool must_exist = !shash_find(&ctx->options, "--if-exists");
c75d1511 1079 struct vsctl_bridge *bridge;
460aad80 1080 struct vsctl_info info;
c75d1511 1081
5d9cb63c 1082 get_info(ctx->ovs, &info);
460aad80
BP
1083 bridge = find_bridge(&info, ctx->argv[1], must_exist);
1084 if (bridge) {
1085 struct shash_node *node;
1086
1087 SHASH_FOR_EACH (node, &info.ports) {
1088 struct vsctl_port *port = node->data;
8cf8cc66 1089 if (port->bridge == bridge || port->bridge->parent == bridge
460aad80
BP
1090 || !strcmp(port->port_cfg->name, bridge->name)) {
1091 del_port(&info, port);
1092 }
1093 }
1094 if (bridge->br_cfg) {
1095 ovsrec_bridge_delete(bridge->br_cfg);
1096 ovs_delete_bridge(ctx->ovs, bridge->br_cfg);
c75d1511 1097 }
c75d1511
BP
1098 }
1099 free_info(&info);
1100}
1101
dfbe07ba
BP
1102static void
1103output_sorted(struct svec *svec, struct ds *output)
1104{
1105 const char *name;
1106 size_t i;
1107
1108 svec_sort(svec);
1109 SVEC_FOR_EACH (i, name, svec) {
1110 ds_put_format(output, "%s\n", name);
1111 }
1112}
1113
c75d1511 1114static void
5d9cb63c 1115cmd_list_br(struct vsctl_context *ctx)
c75d1511
BP
1116{
1117 struct shash_node *node;
1118 struct vsctl_info info;
dfbe07ba 1119 struct svec bridges;
c75d1511 1120
5d9cb63c 1121 get_info(ctx->ovs, &info);
dfbe07ba
BP
1122
1123 svec_init(&bridges);
c75d1511
BP
1124 SHASH_FOR_EACH (node, &info.bridges) {
1125 struct vsctl_bridge *br = node->data;
dfbe07ba 1126 svec_add(&bridges, br->name);
c75d1511 1127 }
5d9cb63c 1128 output_sorted(&bridges, &ctx->output);
dfbe07ba
BP
1129 svec_destroy(&bridges);
1130
c75d1511
BP
1131 free_info(&info);
1132}
1133
1134static void
5d9cb63c 1135cmd_br_exists(struct vsctl_context *ctx)
c75d1511
BP
1136{
1137 struct vsctl_info info;
1138
5d9cb63c 1139 get_info(ctx->ovs, &info);
01845ce8 1140 if (!find_bridge(&info, ctx->argv[1], false)) {
1d48b4be 1141 vsctl_exit(2);
c75d1511
BP
1142 }
1143 free_info(&info);
1144}
1145
457e1eb0
BP
1146/* Returns true if 'b_prefix' (of length 'b_prefix_len') concatenated with 'b'
1147 * equals 'a', false otherwise. */
1148static bool
1149key_matches(const char *a,
1150 const char *b_prefix, size_t b_prefix_len, const char *b)
1151{
1152 return !strncmp(a, b_prefix, b_prefix_len) && !strcmp(a + b_prefix_len, b);
1153}
1154
1155static void
1156set_external_id(char **old_keys, char **old_values, size_t old_n,
1157 char *key, char *value,
1158 char ***new_keysp, char ***new_valuesp, size_t *new_np)
1159{
1160 char **new_keys;
1161 char **new_values;
1162 size_t new_n;
1163 size_t i;
1164
1165 new_keys = xmalloc(sizeof *new_keys * (old_n + 1));
1166 new_values = xmalloc(sizeof *new_values * (old_n + 1));
1167 new_n = 0;
1168 for (i = 0; i < old_n; i++) {
1169 if (strcmp(key, old_keys[i])) {
1170 new_keys[new_n] = old_keys[i];
1171 new_values[new_n] = old_values[i];
1172 new_n++;
1173 }
1174 }
1175 if (value) {
1176 new_keys[new_n] = key;
1177 new_values[new_n] = value;
1178 new_n++;
1179 }
1180 *new_keysp = new_keys;
1181 *new_valuesp = new_values;
1182 *new_np = new_n;
1183}
1184
1185static void
5d9cb63c 1186cmd_br_set_external_id(struct vsctl_context *ctx)
457e1eb0
BP
1187{
1188 struct vsctl_info info;
1189 struct vsctl_bridge *bridge;
1190 char **keys, **values;
1191 size_t n;
1192
5d9cb63c 1193 get_info(ctx->ovs, &info);
01845ce8 1194 bridge = find_bridge(&info, ctx->argv[1], true);
457e1eb0
BP
1195 if (bridge->br_cfg) {
1196 set_external_id(bridge->br_cfg->key_external_ids,
1197 bridge->br_cfg->value_external_ids,
1198 bridge->br_cfg->n_external_ids,
5d9cb63c 1199 ctx->argv[2], ctx->argc >= 4 ? ctx->argv[3] : NULL,
457e1eb0
BP
1200 &keys, &values, &n);
1201 ovsrec_bridge_set_external_ids(bridge->br_cfg, keys, values, n);
1202 } else {
5d9cb63c
BP
1203 char *key = xasprintf("fake-bridge-%s", ctx->argv[2]);
1204 struct vsctl_port *port = shash_find_data(&info.ports, ctx->argv[1]);
457e1eb0
BP
1205 set_external_id(port->port_cfg->key_external_ids,
1206 port->port_cfg->value_external_ids,
1207 port->port_cfg->n_external_ids,
5d9cb63c 1208 key, ctx->argc >= 4 ? ctx->argv[3] : NULL,
457e1eb0
BP
1209 &keys, &values, &n);
1210 ovsrec_port_set_external_ids(port->port_cfg, keys, values, n);
1211 free(key);
1212 }
1213 free(keys);
1214 free(values);
1215
1216 free_info(&info);
1217}
1218
1219static void
1220get_external_id(char **keys, char **values, size_t n,
1221 const char *prefix, const char *key,
1222 struct ds *output)
1223{
1224 size_t prefix_len = strlen(prefix);
1225 struct svec svec;
1226 size_t i;
1227
1228 svec_init(&svec);
1229 for (i = 0; i < n; i++) {
1230 if (!key && !strncmp(keys[i], prefix, prefix_len)) {
1231 svec_add_nocopy(&svec, xasprintf("%s=%s",
1232 keys[i] + prefix_len, values[i]));
1233 } else if (key_matches(keys[i], prefix, prefix_len, key)) {
1234 svec_add(&svec, values[i]);
1235 break;
1236 }
1237 }
1238 output_sorted(&svec, output);
1239 svec_destroy(&svec);
1240}
1241
1242static void
5d9cb63c 1243cmd_br_get_external_id(struct vsctl_context *ctx)
457e1eb0
BP
1244{
1245 struct vsctl_info info;
1246 struct vsctl_bridge *bridge;
1247
5d9cb63c 1248 get_info(ctx->ovs, &info);
01845ce8 1249 bridge = find_bridge(&info, ctx->argv[1], true);
457e1eb0
BP
1250 if (bridge->br_cfg) {
1251 get_external_id(bridge->br_cfg->key_external_ids,
1252 bridge->br_cfg->value_external_ids,
1253 bridge->br_cfg->n_external_ids,
5d9cb63c
BP
1254 "", ctx->argc >= 3 ? ctx->argv[2] : NULL,
1255 &ctx->output);
457e1eb0 1256 } else {
5d9cb63c 1257 struct vsctl_port *port = shash_find_data(&info.ports, ctx->argv[1]);
457e1eb0
BP
1258 get_external_id(port->port_cfg->key_external_ids,
1259 port->port_cfg->value_external_ids,
1260 port->port_cfg->n_external_ids,
5d9cb63c 1261 "fake-bridge-", ctx->argc >= 3 ? ctx->argv[2] : NULL, &ctx->output);
457e1eb0
BP
1262 }
1263 free_info(&info);
1264}
1265
1266
c75d1511 1267static void
5d9cb63c 1268cmd_list_ports(struct vsctl_context *ctx)
c75d1511
BP
1269{
1270 struct vsctl_bridge *br;
1271 struct shash_node *node;
1272 struct vsctl_info info;
dfbe07ba 1273 struct svec ports;
c75d1511 1274
5d9cb63c 1275 get_info(ctx->ovs, &info);
01845ce8 1276 br = find_bridge(&info, ctx->argv[1], true);
dfbe07ba
BP
1277
1278 svec_init(&ports);
c75d1511
BP
1279 SHASH_FOR_EACH (node, &info.ports) {
1280 struct vsctl_port *port = node->data;
1281
1282 if (strcmp(port->port_cfg->name, br->name) && br == port->bridge) {
dfbe07ba 1283 svec_add(&ports, port->port_cfg->name);
c75d1511
BP
1284 }
1285 }
5d9cb63c 1286 output_sorted(&ports, &ctx->output);
dfbe07ba
BP
1287 svec_destroy(&ports);
1288
c75d1511
BP
1289 free_info(&info);
1290}
1291
1292static void
f8ff4bc4 1293add_port(struct vsctl_context *ctx,
bb1c67c8
BP
1294 const char *br_name, const char *port_name,
1295 bool may_exist, bool fake_iface,
18b239f5
BP
1296 char *iface_names[], int n_ifaces,
1297 char *settings[], int n_settings)
c75d1511
BP
1298{
1299 struct vsctl_info info;
1300 struct vsctl_bridge *bridge;
1301 struct ovsrec_interface **ifaces;
1302 struct ovsrec_port *port;
1303 size_t i;
1304
f8ff4bc4 1305 get_info(ctx->ovs, &info);
bb1c67c8
BP
1306 if (may_exist) {
1307 struct vsctl_port *port;
1308
1309 port = find_port(&info, port_name, false);
1310 if (port) {
1311 struct svec want_names, have_names;
1312 size_t i;
1313
1314 svec_init(&want_names);
1315 for (i = 0; i < n_ifaces; i++) {
1316 svec_add(&want_names, iface_names[i]);
1317 }
1318 svec_sort(&want_names);
1319
1320 svec_init(&have_names);
1321 for (i = 0; i < port->port_cfg->n_interfaces; i++) {
1322 svec_add(&have_names, port->port_cfg->interfaces[i]->name);
1323 }
1324 svec_sort(&have_names);
1325
1326 if (strcmp(port->bridge->name, br_name)) {
1327 char *command = vsctl_context_to_string(ctx);
1328 vsctl_fatal("\"%s\" but %s is actually attached to bridge %s",
1329 command, port_name, port->bridge->name);
1330 }
1331
1332 if (!svec_equal(&want_names, &have_names)) {
1333 char *have_names_string = svec_join(&have_names, ", ", "");
1334 char *command = vsctl_context_to_string(ctx);
1335
1336 vsctl_fatal("\"%s\" but %s actually has interface(s) %s",
1337 command, port_name, have_names_string);
1338 }
1339
1340 svec_destroy(&want_names);
1341 svec_destroy(&have_names);
1342
1343 return;
1344 }
1345 }
c75d1511
BP
1346 check_conflicts(&info, port_name,
1347 xasprintf("cannot create a port named %s", port_name));
bb1c67c8
BP
1348 for (i = 0; i < n_ifaces; i++) {
1349 check_conflicts(&info, iface_names[i],
1350 xasprintf("cannot create an interface named %s",
1351 iface_names[i]));
1352 }
01845ce8 1353 bridge = find_bridge(&info, br_name, true);
c75d1511
BP
1354
1355 ifaces = xmalloc(n_ifaces * sizeof *ifaces);
1356 for (i = 0; i < n_ifaces; i++) {
f8ff4bc4 1357 ifaces[i] = ovsrec_interface_insert(ctx->txn);
c75d1511
BP
1358 ovsrec_interface_set_name(ifaces[i], iface_names[i]);
1359 }
1360
f8ff4bc4 1361 port = ovsrec_port_insert(ctx->txn);
c75d1511
BP
1362 ovsrec_port_set_name(port, port_name);
1363 ovsrec_port_set_interfaces(port, ifaces, n_ifaces);
b4182c7f 1364 ovsrec_port_set_bond_fake_iface(port, fake_iface);
a0a9f31d
JP
1365 free(ifaces);
1366
c75d1511
BP
1367 if (bridge->vlan) {
1368 int64_t tag = bridge->vlan;
1369 ovsrec_port_set_tag(port, &tag, 1);
1370 }
1371
18b239f5 1372 for (i = 0; i < n_settings; i++) {
ce5a3e38
BP
1373 set_column(get_table("Port"), &port->header_, settings[i],
1374 ctx->symtab);
18b239f5
BP
1375 }
1376
c75d1511
BP
1377 bridge_insert_port((bridge->parent ? bridge->parent->br_cfg
1378 : bridge->br_cfg), port);
1379
1380 free_info(&info);
1381}
1382
1383static void
5d9cb63c 1384cmd_add_port(struct vsctl_context *ctx)
c75d1511 1385{
bb1c67c8
BP
1386 bool may_exist = shash_find(&ctx->options, "--may-exist") != 0;
1387
1388 add_port(ctx, ctx->argv[1], ctx->argv[2], may_exist, false,
18b239f5 1389 &ctx->argv[2], 1, &ctx->argv[3], ctx->argc - 3);
c75d1511
BP
1390}
1391
1392static void
5d9cb63c 1393cmd_add_bond(struct vsctl_context *ctx)
c75d1511 1394{
bb1c67c8 1395 bool may_exist = shash_find(&ctx->options, "--may-exist") != 0;
b4182c7f 1396 bool fake_iface = shash_find(&ctx->options, "--fake-iface");
18b239f5
BP
1397 int n_ifaces;
1398 int i;
1399
1400 n_ifaces = ctx->argc - 3;
1401 for (i = 3; i < ctx->argc; i++) {
1402 if (strchr(ctx->argv[i], '=')) {
1403 n_ifaces = i - 3;
1404 break;
1405 }
1406 }
1407 if (n_ifaces < 2) {
1408 vsctl_fatal("add-bond requires at least 2 interfaces, but only "
1409 "%d were specified", n_ifaces);
1410 }
b4182c7f 1411
bb1c67c8 1412 add_port(ctx, ctx->argv[1], ctx->argv[2], may_exist, fake_iface,
18b239f5
BP
1413 &ctx->argv[3], n_ifaces,
1414 &ctx->argv[n_ifaces + 3], ctx->argc - 3 - n_ifaces);
c75d1511
BP
1415}
1416
1417static void
5d9cb63c 1418cmd_del_port(struct vsctl_context *ctx)
c75d1511 1419{
460aad80 1420 bool must_exist = !shash_find(&ctx->options, "--if-exists");
7c79588e
BP
1421 bool with_iface = shash_find(&ctx->options, "--with-iface") != NULL;
1422 struct vsctl_port *port;
c75d1511
BP
1423 struct vsctl_info info;
1424
5d9cb63c 1425 get_info(ctx->ovs, &info);
7c79588e
BP
1426 if (!with_iface) {
1427 port = find_port(&info, ctx->argv[ctx->argc - 1], must_exist);
1428 } else {
1429 const char *target = ctx->argv[ctx->argc - 1];
1430 struct vsctl_iface *iface;
1431
1432 port = find_port(&info, target, false);
1433 if (!port) {
1434 iface = find_iface(&info, target, false);
1435 if (iface) {
1436 port = iface->port;
1437 }
1438 }
1439 if (must_exist && !port) {
1440 vsctl_fatal("no port or interface named %s", target);
460aad80 1441 }
7c79588e 1442 }
460aad80 1443
7c79588e
BP
1444 if (port) {
1445 if (ctx->argc == 3) {
1446 struct vsctl_bridge *bridge;
1447
1448 bridge = find_bridge(&info, ctx->argv[1], true);
1449 if (port->bridge != bridge) {
1450 if (port->bridge->parent == bridge) {
1451 vsctl_fatal("bridge %s does not have a port %s (although "
1452 "its parent bridge %s does)",
1453 ctx->argv[1], ctx->argv[2],
1454 bridge->parent->name);
1455 } else {
1456 vsctl_fatal("bridge %s does not have a port %s",
1457 ctx->argv[1], ctx->argv[2]);
1458 }
460aad80 1459 }
c75d1511 1460 }
7c79588e
BP
1461
1462 del_port(&info, port);
c75d1511 1463 }
7c79588e 1464
c75d1511
BP
1465 free_info(&info);
1466}
1467
1468static void
5d9cb63c 1469cmd_port_to_br(struct vsctl_context *ctx)
c75d1511
BP
1470{
1471 struct vsctl_port *port;
1472 struct vsctl_info info;
1473
5d9cb63c 1474 get_info(ctx->ovs, &info);
01845ce8 1475 port = find_port(&info, ctx->argv[1], true);
5d9cb63c 1476 ds_put_format(&ctx->output, "%s\n", port->bridge->name);
c75d1511
BP
1477 free_info(&info);
1478}
1479
1480static void
5d9cb63c 1481cmd_br_to_vlan(struct vsctl_context *ctx)
c75d1511
BP
1482{
1483 struct vsctl_bridge *bridge;
1484 struct vsctl_info info;
1485
5d9cb63c 1486 get_info(ctx->ovs, &info);
01845ce8 1487 bridge = find_bridge(&info, ctx->argv[1], true);
5d9cb63c 1488 ds_put_format(&ctx->output, "%d\n", bridge->vlan);
c75d1511
BP
1489 free_info(&info);
1490}
1491
1492static void
5d9cb63c 1493cmd_br_to_parent(struct vsctl_context *ctx)
c75d1511
BP
1494{
1495 struct vsctl_bridge *bridge;
1496 struct vsctl_info info;
1497
5d9cb63c 1498 get_info(ctx->ovs, &info);
01845ce8 1499 bridge = find_bridge(&info, ctx->argv[1], true);
c75d1511
BP
1500 if (bridge->parent) {
1501 bridge = bridge->parent;
1502 }
5d9cb63c 1503 ds_put_format(&ctx->output, "%s\n", bridge->name);
c75d1511
BP
1504 free_info(&info);
1505}
1506
1507static void
5d9cb63c 1508cmd_list_ifaces(struct vsctl_context *ctx)
c75d1511
BP
1509{
1510 struct vsctl_bridge *br;
1511 struct shash_node *node;
1512 struct vsctl_info info;
dfbe07ba 1513 struct svec ifaces;
c75d1511 1514
5d9cb63c 1515 get_info(ctx->ovs, &info);
01845ce8 1516 br = find_bridge(&info, ctx->argv[1], true);
dfbe07ba
BP
1517
1518 svec_init(&ifaces);
c75d1511
BP
1519 SHASH_FOR_EACH (node, &info.ifaces) {
1520 struct vsctl_iface *iface = node->data;
1521
dfbe07ba
BP
1522 if (strcmp(iface->iface_cfg->name, br->name)
1523 && br == iface->port->bridge) {
1524 svec_add(&ifaces, iface->iface_cfg->name);
c75d1511
BP
1525 }
1526 }
5d9cb63c 1527 output_sorted(&ifaces, &ctx->output);
dfbe07ba
BP
1528 svec_destroy(&ifaces);
1529
c75d1511
BP
1530 free_info(&info);
1531}
1532
1533static void
5d9cb63c 1534cmd_iface_to_br(struct vsctl_context *ctx)
c75d1511
BP
1535{
1536 struct vsctl_iface *iface;
1537 struct vsctl_info info;
1538
5d9cb63c 1539 get_info(ctx->ovs, &info);
01845ce8 1540 iface = find_iface(&info, ctx->argv[1], true);
5d9cb63c 1541 ds_put_format(&ctx->output, "%s\n", iface->port->bridge->name);
c75d1511
BP
1542 free_info(&info);
1543}
457e1eb0 1544
76ce9432
BP
1545/* Print targets of the 'n_controllers' in 'controllers' on the output for
1546 * 'ctx'. */
1547static void
1548print_controllers(struct vsctl_context *ctx,
1549 struct ovsrec_controller **controllers,
1550 size_t n_controllers)
1551{
1552 /* Print the targets in sorted order for reproducibility. */
1553 struct svec targets;
1554 size_t i;
1555
1556 svec_init(&targets);
1557 for (i = 0; i < n_controllers; i++) {
1558 svec_add(&targets, controllers[i]->target);
1559 }
1560
1561 svec_sort(&targets);
1562 for (i = 0; i < targets.n; i++) {
1563 ds_put_format(&ctx->output, "%s\n", targets.names[i]);
1564 }
1565 svec_destroy(&targets);
1566}
1567
5aa00635
JP
1568static void
1569cmd_get_controller(struct vsctl_context *ctx)
1570{
1571 struct vsctl_info info;
1572
1573 get_info(ctx->ovs, &info);
1574
76ce9432
BP
1575 if (ctx->argc == 1 || !strcmp(ctx->argv[1], "default")) {
1576 print_controllers(ctx, info.ctrl, info.n_ctrl);
5aa00635 1577 } else {
5aa00635 1578 struct vsctl_bridge *br = find_bridge(&info, ctx->argv[1], true);
76ce9432
BP
1579 if (br->n_ctrl) {
1580 print_controllers(ctx, br->ctrl, br->n_ctrl);
1581 } else {
1582 print_controllers(ctx, info.ctrl, info.n_ctrl);
5aa00635
JP
1583 }
1584 }
1585
1586 free_info(&info);
1587}
1588
76ce9432
BP
1589static void
1590delete_controllers(struct ovsrec_controller **controllers,
1591 size_t n_controllers)
1592{
1593 size_t i;
1594
1595 for (i = 0; i < n_controllers; i++) {
1596 ovsrec_controller_delete(controllers[i]);
1597 }
1598}
1599
5aa00635
JP
1600static void
1601cmd_del_controller(struct vsctl_context *ctx)
1602{
1603 struct vsctl_info info;
1604
1605 get_info(ctx->ovs, &info);
1606
76ce9432
BP
1607 if (ctx->argc == 1 || !strcmp(ctx->argv[1], "default")) {
1608 if (info.n_ctrl) {
1609 delete_controllers(info.ctrl, info.n_ctrl);
1610 ovsrec_open_vswitch_set_controller(ctx->ovs, NULL, 0);
5aa00635
JP
1611 }
1612 } else {
975ac531 1613 struct vsctl_bridge *br = find_real_bridge(&info, ctx->argv[1], true);
5aa00635 1614 if (br->ctrl) {
76ce9432
BP
1615 delete_controllers(br->ctrl, br->n_ctrl);
1616 ovsrec_bridge_set_controller(br->br_cfg, NULL, 0);
5aa00635
JP
1617 }
1618 }
1619
1620 free_info(&info);
1621}
1622
76ce9432
BP
1623static struct ovsrec_controller **
1624insert_controllers(struct ovsdb_idl_txn *txn, char *targets[], size_t n)
1625{
1626 struct ovsrec_controller **controllers;
1627 size_t i;
1628
1629 controllers = xmalloc(n * sizeof *controllers);
1630 for (i = 0; i < n; i++) {
1631 controllers[i] = ovsrec_controller_insert(txn);
1632 ovsrec_controller_set_target(controllers[i], targets[i]);
1633 }
1634
1635 return controllers;
1636}
1637
1638static void
1639set_default_controllers(struct vsctl_context *ctx, char *targets[], size_t n)
1640{
1641 struct ovsrec_controller **controllers;
1642
1643 delete_controllers(ctx->ovs->controller, ctx->ovs->n_controller);
1644
1645 controllers = insert_controllers(ctx->txn, targets, n);
1646 ovsrec_open_vswitch_set_controller(ctx->ovs, controllers, n);
1647 free(controllers);
1648}
1649
5aa00635
JP
1650static void
1651cmd_set_controller(struct vsctl_context *ctx)
1652{
1653 struct vsctl_info info;
5aa00635
JP
1654
1655 get_info(ctx->ovs, &info);
1656
1657 if (ctx->argc == 2) {
76ce9432
BP
1658 /* Set one controller in the "Open_vSwitch" table. */
1659 set_default_controllers(ctx, &ctx->argv[1], 1);
1660 } else if (!strcmp(ctx->argv[1], "default")) {
1661 /* Set one or more controllers in the "Open_vSwitch" table. */
1662 set_default_controllers(ctx, &ctx->argv[2], ctx->argc - 2);
5aa00635 1663 } else {
76ce9432 1664 /* Set one or more controllers for a particular bridge. */
975ac531 1665 struct vsctl_bridge *br = find_real_bridge(&info, ctx->argv[1], true);
76ce9432
BP
1666 struct ovsrec_controller **controllers;
1667 size_t n;
5aa00635 1668
76ce9432
BP
1669 delete_controllers(br->ctrl, br->n_ctrl);
1670
1671 n = ctx->argc - 2;
1672 controllers = insert_controllers(ctx->txn, &ctx->argv[2], n);
1673 ovsrec_bridge_set_controller(br->br_cfg, controllers, n);
1674 free(controllers);
5aa00635
JP
1675 }
1676
1677 free_info(&info);
1678}
1679
76ce9432
BP
1680static const char *
1681get_fail_mode(struct ovsrec_controller **controllers, size_t n_controllers)
1682{
1683 const char *fail_mode;
1684 size_t i;
1685
1686 fail_mode = NULL;
1687 for (i = 0; i < n_controllers; i++) {
1688 const char *s = controllers[i]->fail_mode;
1689 if (s) {
1690 if (!strcmp(s, "secure")) {
1691 return s;
1692 } else {
1693 fail_mode = s;
1694 }
1695 }
1696 }
1697
1698 return fail_mode;
1699}
1700
5aa00635
JP
1701static void
1702cmd_get_fail_mode(struct vsctl_context *ctx)
1703{
1704 struct vsctl_info info;
1705 const char *fail_mode = NULL;
1706
1707 get_info(ctx->ovs, &info);
1708
76ce9432 1709 if (ctx->argc == 1 || !strcmp(ctx->argv[1], "default")) {
5aa00635 1710 /* Return the fail-mode from the "Open_vSwitch" table */
76ce9432 1711 fail_mode = get_fail_mode(info.ctrl, info.n_ctrl);
5aa00635
JP
1712 } else {
1713 /* Return the fail-mode for a particular bridge. */
1714 struct vsctl_bridge *br = find_bridge(&info, ctx->argv[1], true);
1715
76ce9432
BP
1716 /* If no controller is defined for the requested bridge, fallback to
1717 * the "Open_vSwitch" table's controller. */
1718 fail_mode = (br->n_ctrl
1719 ? get_fail_mode(br->ctrl, br->n_ctrl)
1720 : get_fail_mode(info.ctrl, info.n_ctrl));
5aa00635
JP
1721 }
1722
1723 if (fail_mode && strlen(fail_mode)) {
d35a4ea8 1724 ds_put_format(&ctx->output, "%s\n", fail_mode);
5aa00635
JP
1725 }
1726
1727 free_info(&info);
1728}
1729
76ce9432
BP
1730static void
1731set_fail_mode(struct ovsrec_controller **controllers, size_t n_controllers,
1732 const char *fail_mode)
1733{
1734 size_t i;
1735
1736 for (i = 0; i < n_controllers; i++) {
1737 ovsrec_controller_set_fail_mode(controllers[i], fail_mode);
1738 }
1739}
1740
5aa00635
JP
1741static void
1742cmd_del_fail_mode(struct vsctl_context *ctx)
1743{
1744 struct vsctl_info info;
1745
1746 get_info(ctx->ovs, &info);
1747
76ce9432
BP
1748 if (ctx->argc == 1 || !strcmp(ctx->argv[1], "default")) {
1749 set_fail_mode(info.ctrl, info.n_ctrl, NULL);
5aa00635 1750 } else {
975ac531 1751 struct vsctl_bridge *br = find_real_bridge(&info, ctx->argv[1], true);
5aa00635 1752
76ce9432 1753 set_fail_mode(br->ctrl, br->n_ctrl, NULL);
5aa00635
JP
1754 }
1755
1756 free_info(&info);
1757}
1758
1759static void
1760cmd_set_fail_mode(struct vsctl_context *ctx)
1761{
1762 struct vsctl_info info;
76ce9432 1763 const char *bridge;
5aa00635
JP
1764 const char *fail_mode;
1765
1766 get_info(ctx->ovs, &info);
1767
76ce9432
BP
1768 if (ctx->argc == 2) {
1769 bridge = "default";
1770 fail_mode = ctx->argv[1];
1771 } else {
1772 bridge = ctx->argv[1];
1773 fail_mode = ctx->argv[2];
1774 }
5aa00635
JP
1775
1776 if (strcmp(fail_mode, "standalone") && strcmp(fail_mode, "secure")) {
1777 vsctl_fatal("fail-mode must be \"standalone\" or \"secure\"");
1778 }
1779
76ce9432 1780 if (!strcmp(bridge, "default")) {
5aa00635
JP
1781 /* Set the fail-mode in the "Open_vSwitch" table. */
1782 if (!info.ctrl) {
1783 vsctl_fatal("no controller declared");
1784 }
76ce9432 1785 set_fail_mode(info.ctrl, info.n_ctrl, fail_mode);
5aa00635 1786 } else {
76ce9432 1787 struct vsctl_bridge *br = find_real_bridge(&info, bridge, true);
5aa00635
JP
1788
1789 if (!br->ctrl) {
1790 vsctl_fatal("no controller declared for %s", br->name);
1791 }
76ce9432 1792 set_fail_mode(br->ctrl, br->n_ctrl, fail_mode);
5aa00635
JP
1793 }
1794
1795 free_info(&info);
1796}
dd8ac6fe
JP
1797
1798static void
1799cmd_get_ssl(struct vsctl_context *ctx)
1800{
1801 struct ovsrec_ssl *ssl = ctx->ovs->ssl;
1802
1803 if (ssl) {
1804 ds_put_format(&ctx->output, "Private key: %s\n", ssl->private_key);
1805 ds_put_format(&ctx->output, "Certificate: %s\n", ssl->certificate);
1806 ds_put_format(&ctx->output, "CA Certificate: %s\n", ssl->ca_cert);
1807 ds_put_format(&ctx->output, "Bootstrap: %s\n",
1808 ssl->bootstrap_ca_cert ? "true" : "false");
1809 }
1810}
1811
1812static void
1813cmd_del_ssl(struct vsctl_context *ctx)
1814{
1815 struct ovsrec_ssl *ssl = ctx->ovs->ssl;
1816
1817 if (ssl) {
1818 ovsrec_ssl_delete(ssl);
1819 ovsrec_open_vswitch_set_ssl(ctx->ovs, NULL);
1820 }
1821}
1822
1823static void
1824cmd_set_ssl(struct vsctl_context *ctx)
1825{
1826 bool bootstrap = shash_find(&ctx->options, "--bootstrap");
1827 struct ovsrec_ssl *ssl = ctx->ovs->ssl;
1828
1829 if (ssl) {
1830 ovsrec_ssl_delete(ssl);
1831 }
f8ff4bc4 1832 ssl = ovsrec_ssl_insert(ctx->txn);
dd8ac6fe
JP
1833
1834 ovsrec_ssl_set_private_key(ssl, ctx->argv[1]);
1835 ovsrec_ssl_set_certificate(ssl, ctx->argv[2]);
1836 ovsrec_ssl_set_ca_cert(ssl, ctx->argv[3]);
1837
1838 ovsrec_ssl_set_bootstrap_ca_cert(ssl, bootstrap);
1839
1840 ovsrec_open_vswitch_set_ssl(ctx->ovs, ssl);
1841}
c75d1511 1842\f
ad83bfa6
BP
1843/* Parameter commands. */
1844
ad83bfa6
BP
1845struct vsctl_row_id {
1846 const struct ovsdb_idl_table_class *table;
1847 const struct ovsdb_idl_column *name_column;
1848 const struct ovsdb_idl_column *uuid_column;
1849};
1850
1851struct vsctl_table_class {
1852 struct ovsdb_idl_table_class *class;
ad83bfa6
BP
1853 struct vsctl_row_id row_ids[2];
1854};
1855
1856static const struct vsctl_table_class tables[] = {
bd76d25d 1857 {&ovsrec_table_bridge,
ad83bfa6
BP
1858 {{&ovsrec_table_bridge, &ovsrec_bridge_col_name, NULL},
1859 {NULL, NULL, NULL}}},
1860
bd76d25d 1861 {&ovsrec_table_controller,
ad83bfa6
BP
1862 {{&ovsrec_table_bridge,
1863 &ovsrec_bridge_col_name,
1864 &ovsrec_bridge_col_controller},
1865 {&ovsrec_table_open_vswitch,
1866 NULL,
1867 &ovsrec_open_vswitch_col_controller}}},
1868
bd76d25d 1869 {&ovsrec_table_interface,
ad83bfa6
BP
1870 {{&ovsrec_table_interface, &ovsrec_interface_col_name, NULL},
1871 {NULL, NULL, NULL}}},
1872
bd76d25d 1873 {&ovsrec_table_mirror,
ad83bfa6
BP
1874 {{&ovsrec_table_mirror, &ovsrec_mirror_col_name, NULL},
1875 {NULL, NULL, NULL}}},
1876
bd76d25d 1877 {&ovsrec_table_netflow,
ad83bfa6
BP
1878 {{&ovsrec_table_bridge,
1879 &ovsrec_bridge_col_name,
1880 &ovsrec_bridge_col_netflow},
1881 {NULL, NULL, NULL}}},
1882
bd76d25d 1883 {&ovsrec_table_open_vswitch,
ad83bfa6
BP
1884 {{&ovsrec_table_open_vswitch, NULL, NULL},
1885 {NULL, NULL, NULL}}},
1886
bd76d25d 1887 {&ovsrec_table_port,
ad83bfa6
BP
1888 {{&ovsrec_table_port, &ovsrec_port_col_name, NULL},
1889 {NULL, NULL, NULL}}},
1890
c1c9c9c4
BP
1891 {&ovsrec_table_qos,
1892 {{&ovsrec_table_port, &ovsrec_port_col_name, &ovsrec_port_col_qos},
1893 {NULL, NULL, NULL}}},
1894
1895 {&ovsrec_table_queue,
1896 {{NULL, NULL, NULL},
1897 {NULL, NULL, NULL}}},
1898
bd76d25d 1899 {&ovsrec_table_ssl,
ad83bfa6
BP
1900 {{&ovsrec_table_open_vswitch, NULL, &ovsrec_open_vswitch_col_ssl}}},
1901
d01600a2
BP
1902 {&ovsrec_table_sflow,
1903 {{&ovsrec_table_bridge,
1904 &ovsrec_bridge_col_name,
1905 &ovsrec_bridge_col_sflow},
1906 {NULL, NULL, NULL}}},
1907
bd76d25d 1908 {NULL, {{NULL, NULL, NULL}, {NULL, NULL, NULL}}}
ad83bfa6
BP
1909};
1910
1bc6ff29
BP
1911static void
1912die_if_error(char *error)
1913{
1914 if (error) {
def90f62 1915 vsctl_fatal("%s", error);
1bc6ff29
BP
1916 }
1917}
1918
ad83bfa6
BP
1919static int
1920to_lower_and_underscores(unsigned c)
1921{
1922 return c == '-' ? '_' : tolower(c);
1923}
1924
1925static unsigned int
1926score_partial_match(const char *name, const char *s)
1927{
1928 int score;
1929
5128bd9c
BP
1930 if (!strcmp(name, s)) {
1931 return UINT_MAX;
1932 }
ad83bfa6
BP
1933 for (score = 0; ; score++, name++, s++) {
1934 if (to_lower_and_underscores(*name) != to_lower_and_underscores(*s)) {
1935 break;
1936 } else if (*name == '\0') {
5128bd9c 1937 return UINT_MAX - 1;
ad83bfa6
BP
1938 }
1939 }
1940 return *s == '\0' ? score : 0;
1941}
1942
1943static const struct vsctl_table_class *
1944get_table(const char *table_name)
1945{
1946 const struct vsctl_table_class *table;
1947 const struct vsctl_table_class *best_match = NULL;
1948 unsigned int best_score = 0;
1949
1950 for (table = tables; table->class; table++) {
1951 unsigned int score = score_partial_match(table->class->name,
1952 table_name);
1953 if (score > best_score) {
1954 best_match = table;
1955 best_score = score;
1956 } else if (score == best_score) {
1957 best_match = NULL;
1958 }
1959 }
1960 if (best_match) {
1961 return best_match;
1962 } else if (best_score) {
def90f62 1963 vsctl_fatal("multiple table names match \"%s\"", table_name);
ad83bfa6 1964 } else {
def90f62 1965 vsctl_fatal("unknown table \"%s\"", table_name);
ad83bfa6
BP
1966 }
1967}
1968
1969static const struct ovsdb_idl_row *
1970get_row_by_id(struct vsctl_context *ctx, const struct vsctl_table_class *table,
e111e681 1971 const struct vsctl_row_id *id, const char *record_id)
ad83bfa6
BP
1972{
1973 const struct ovsdb_idl_row *referrer, *final;
1974
1975 if (!id->table) {
1976 return NULL;
1977 }
1978
1979 if (!id->name_column) {
1980 if (strcmp(record_id, ".")) {
1981 return NULL;
1982 }
1983 referrer = ovsdb_idl_first_row(ctx->idl, id->table);
1984 if (!referrer || ovsdb_idl_next_row(referrer)) {
1985 return NULL;
1986 }
1987 } else {
1988 const struct ovsdb_idl_row *row;
ad83bfa6 1989
ad83bfa6
BP
1990 referrer = NULL;
1991 for (row = ovsdb_idl_first_row(ctx->idl, id->table);
e111e681 1992 row != NULL;
ad83bfa6
BP
1993 row = ovsdb_idl_next_row(row))
1994 {
8c3c2f30 1995 const struct ovsdb_datum *name;
ad83bfa6 1996
8c3c2f30
BP
1997 name = ovsdb_idl_get(row, id->name_column,
1998 OVSDB_TYPE_STRING, OVSDB_TYPE_VOID);
e111e681
BP
1999 if (name->n == 1 && !strcmp(name->keys[0].string, record_id)) {
2000 if (referrer) {
2001 vsctl_fatal("multiple rows in %s match \"%s\"",
2002 table->class->name, record_id);
ad83bfa6 2003 }
e111e681 2004 referrer = row;
ad83bfa6 2005 }
ad83bfa6
BP
2006 }
2007 }
2008 if (!referrer) {
2009 return NULL;
2010 }
2011
93255bc5 2012 final = NULL;
ad83bfa6 2013 if (id->uuid_column) {
8c3c2f30 2014 const struct ovsdb_datum *uuid;
ad83bfa6 2015
8c3c2f30
BP
2016 uuid = ovsdb_idl_get(referrer, id->uuid_column,
2017 OVSDB_TYPE_UUID, OVSDB_TYPE_VOID);
2018 if (uuid->n == 1) {
ad83bfa6 2019 final = ovsdb_idl_get_row_for_uuid(ctx->idl, table->class,
8c3c2f30 2020 &uuid->keys[0].uuid);
ad83bfa6 2021 }
ad83bfa6
BP
2022 } else {
2023 final = referrer;
2024 }
2025
2026 return final;
2027}
2028
2029static const struct ovsdb_idl_row *
e111e681
BP
2030get_row (struct vsctl_context *ctx,
2031 const struct vsctl_table_class *table, const char *record_id)
ad83bfa6
BP
2032{
2033 const struct ovsdb_idl_row *row;
2034 struct uuid uuid;
2035
2036 if (uuid_from_string(&uuid, record_id)) {
2037 row = ovsdb_idl_get_row_for_uuid(ctx->idl, table->class, &uuid);
2038 } else {
2039 int i;
2040
2041 for (i = 0; i < ARRAY_SIZE(table->row_ids); i++) {
e111e681 2042 row = get_row_by_id(ctx, table, &table->row_ids[i], record_id);
ad83bfa6
BP
2043 if (row) {
2044 break;
2045 }
2046 }
2047 }
b7f74b6f
BP
2048 return row;
2049}
2050
2051static const struct ovsdb_idl_row *
2052must_get_row(struct vsctl_context *ctx,
2053 const struct vsctl_table_class *table, const char *record_id)
2054{
2055 const struct ovsdb_idl_row *row = get_row(ctx, table, record_id);
ad83bfa6 2056 if (!row) {
def90f62
BP
2057 vsctl_fatal("no row \"%s\" in table %s",
2058 record_id, table->class->name);
ad83bfa6
BP
2059 }
2060 return row;
2061}
2062
1bc6ff29
BP
2063static char *
2064get_column(const struct vsctl_table_class *table, const char *column_name,
bd76d25d 2065 const struct ovsdb_idl_column **columnp)
ad83bfa6 2066{
bd76d25d 2067 const struct ovsdb_idl_column *best_match = NULL;
ad83bfa6 2068 unsigned int best_score = 0;
bd76d25d 2069 size_t i;
ad83bfa6 2070
bd76d25d
BP
2071 for (i = 0; i < table->class->n_columns; i++) {
2072 const struct ovsdb_idl_column *column = &table->class->columns[i];
2073 unsigned int score = score_partial_match(column->name, column_name);
2074 if (score > best_score) {
2075 best_match = column;
2076 best_score = score;
2077 } else if (score == best_score) {
2078 best_match = NULL;
ad83bfa6
BP
2079 }
2080 }
1bc6ff29
BP
2081
2082 *columnp = best_match;
ad83bfa6 2083 if (best_match) {
1bc6ff29 2084 return NULL;
ad83bfa6 2085 } else if (best_score) {
1bc6ff29
BP
2086 return xasprintf("%s contains more than one column whose name "
2087 "matches \"%s\"", table->class->name, column_name);
ad83bfa6 2088 } else {
1bc6ff29
BP
2089 return xasprintf("%s does not contain a column whose name matches "
2090 "\"%s\"", table->class->name, column_name);
ad83bfa6
BP
2091 }
2092}
2093
e89e5374
BP
2094static char *
2095missing_operator_error(const char *arg, const char **allowed_operators,
2096 size_t n_allowed)
2097{
2098 struct ds s;
2099
2100 ds_init(&s);
2101 ds_put_format(&s, "%s: argument does not end in ", arg);
2102 ds_put_format(&s, "\"%s\"", allowed_operators[0]);
2103 if (n_allowed == 2) {
2104 ds_put_format(&s, " or \"%s\"", allowed_operators[1]);
2105 } else if (n_allowed > 2) {
2106 size_t i;
2107
2108 for (i = 1; i < n_allowed - 1; i++) {
2109 ds_put_format(&s, ", \"%s\"", allowed_operators[i]);
2110 }
2111 ds_put_format(&s, ", or \"%s\"", allowed_operators[i]);
2112 }
2113 ds_put_format(&s, " followed by a value.");
2114
2115 return ds_steal_cstr(&s);
2116}
2117
2118/* Breaks 'arg' apart into a number of fields in the following order:
2119 *
2120 * - If 'columnp' is nonnull, the name of a column in 'table'. The column
2121 * is stored into '*columnp'. The column name may be abbreviated.
2122 *
2123 * - If 'keyp' is nonnull, optionally a key string. (If both 'columnp'
2124 * and 'keyp' are nonnull, then the column and key names are expected to
2125 * be separated by ':'). The key is stored as a malloc()'d string into
2126 * '*keyp', or NULL if no key is present in 'arg'.
2127 *
2128 * - If 'valuep' is nonnull, an operator followed by a value string. The
2129 * allowed operators are the 'n_allowed' string in 'allowed_operators',
2130 * or just "=" if 'n_allowed' is 0. If 'operatorp' is nonnull, then the
2131 * operator is stored into '*operatorp' (one of the pointers from
2132 * 'allowed_operators' is stored; nothing is malloc()'d). The value is
2133 * stored as a malloc()'d string into '*valuep', or NULL if no value is
2134 * present in 'arg'.
2135 *
2136 * At least 'columnp' or 'keyp' must be nonnull.
2137 *
2138 * On success, returns NULL. On failure, returned a malloc()'d string error
2139 * message and stores NULL into all of the nonnull output arguments. */
1bc6ff29 2140static char * WARN_UNUSED_RESULT
e89e5374
BP
2141parse_column_key_value(const char *arg,
2142 const struct vsctl_table_class *table,
2143 const struct ovsdb_idl_column **columnp, char **keyp,
2144 const char **operatorp,
2145 const char **allowed_operators, size_t n_allowed,
2146 char **valuep)
ad83bfa6
BP
2147{
2148 const char *p = arg;
1bc6ff29 2149 char *error;
ad83bfa6
BP
2150
2151 assert(columnp || keyp);
e89e5374 2152 assert(!(operatorp && !valuep));
1bc6ff29
BP
2153 if (keyp) {
2154 *keyp = NULL;
2155 }
2156 if (valuep) {
2157 *valuep = NULL;
2158 }
ad83bfa6
BP
2159
2160 /* Parse column name. */
2161 if (columnp) {
2162 char *column_name;
2163
557e3718 2164 error = ovsdb_token_parse(&p, &column_name);
1bc6ff29
BP
2165 if (error) {
2166 goto error;
2167 }
ad83bfa6 2168 if (column_name[0] == '\0') {
1bc6ff29
BP
2169 free(column_name);
2170 error = xasprintf("%s: missing column name", arg);
2171 goto error;
2172 }
2173 error = get_column(table, column_name, columnp);
a3326252 2174 free(column_name);
1bc6ff29
BP
2175 if (error) {
2176 goto error;
ad83bfa6 2177 }
ad83bfa6
BP
2178 }
2179
2180 /* Parse key string. */
2181 if (*p == ':' || !columnp) {
2182 if (columnp) {
2183 p++;
2184 } else if (!keyp) {
1bc6ff29
BP
2185 error = xasprintf("%s: key not accepted here", arg);
2186 goto error;
2187 }
2188 error = ovsdb_token_parse(&p, keyp);
2189 if (error) {
2190 goto error;
ad83bfa6 2191 }
ad83bfa6
BP
2192 } else if (keyp) {
2193 *keyp = NULL;
2194 }
2195
2196 /* Parse value string. */
e89e5374
BP
2197 if (valuep) {
2198 const char *best;
2199 size_t best_len;
2200 size_t i;
2201
2202 if (!allowed_operators) {
2203 static const char *equals = "=";
2204 allowed_operators = &equals;
2205 n_allowed = 1;
2206 }
2207
2208 best = NULL;
2209 best_len = 0;
2210 for (i = 0; i < n_allowed; i++) {
2211 const char *op = allowed_operators[i];
2212 size_t op_len = strlen(op);
2213
7db03f7c 2214 if (op_len > best_len && !strncmp(op, p, op_len) && p[op_len]) {
e89e5374
BP
2215 best_len = op_len;
2216 best = op;
2217 }
2218 }
2219 if (!best) {
2220 error = missing_operator_error(arg, allowed_operators, n_allowed);
1bc6ff29 2221 goto error;
ad83bfa6 2222 }
e89e5374
BP
2223
2224 if (operatorp) {
2225 *operatorp = best;
2226 }
7db03f7c 2227 *valuep = xstrdup(p + best_len);
ad83bfa6
BP
2228 } else {
2229 if (valuep) {
2230 *valuep = NULL;
2231 }
1bc6ff29 2232 if (*p != '\0') {
c29a8ba8
BP
2233 error = xasprintf("%s: trailing garbage \"%s\" in argument",
2234 arg, p);
1bc6ff29
BP
2235 goto error;
2236 }
2237 }
2238 return NULL;
2239
2240error:
2241 if (columnp) {
2242 *columnp = NULL;
2243 }
2244 if (keyp) {
2245 free(*keyp);
2246 *keyp = NULL;
2247 }
2248 if (valuep) {
2249 free(*valuep);
2250 *valuep = NULL;
e89e5374
BP
2251 if (operatorp) {
2252 *operatorp = NULL;
2253 }
ad83bfa6 2254 }
1bc6ff29 2255 return error;
ad83bfa6
BP
2256}
2257
2258static void
2259cmd_get(struct vsctl_context *ctx)
2260{
870aeb4a 2261 bool if_exists = shash_find(&ctx->options, "--if-exists");
ad83bfa6
BP
2262 const char *table_name = ctx->argv[1];
2263 const char *record_id = ctx->argv[2];
2264 const struct vsctl_table_class *table;
2265 const struct ovsdb_idl_row *row;
2266 struct ds *out = &ctx->output;
2267 int i;
2268
2269 table = get_table(table_name);
b7f74b6f 2270 row = must_get_row(ctx, table, record_id);
ad83bfa6 2271 for (i = 3; i < ctx->argc; i++) {
bd76d25d 2272 const struct ovsdb_idl_column *column;
8c3c2f30 2273 const struct ovsdb_datum *datum;
ad83bfa6
BP
2274 char *key_string;
2275
f40a9b61
BP
2276 /* Special case for obtaining the UUID of a row. We can't just do this
2277 * through parse_column_key_value() below since it returns a "struct
2278 * ovsdb_idl_column" and the UUID column doesn't have one. */
2279 if (!strcasecmp(ctx->argv[i], "_uuid")
2280 || !strcasecmp(ctx->argv[i], "-uuid")) {
2281 ds_put_format(out, UUID_FMT"\n", UUID_ARGS(&row->uuid));
2282 continue;
2283 }
2284
1bc6ff29 2285 die_if_error(parse_column_key_value(ctx->argv[i], table,
e89e5374
BP
2286 &column, &key_string,
2287 NULL, NULL, 0, NULL));
ad83bfa6 2288
8c3c2f30 2289 datum = ovsdb_idl_read(row, column);
ad83bfa6
BP
2290 if (key_string) {
2291 union ovsdb_atom key;
2292 unsigned int idx;
2293
bd76d25d 2294 if (column->type.value.type == OVSDB_TYPE_VOID) {
def90f62 2295 vsctl_fatal("cannot specify key to get for non-map column %s",
bd76d25d 2296 column->name);
ad83bfa6
BP
2297 }
2298
1bc6ff29 2299 die_if_error(ovsdb_atom_from_string(&key,
bd76d25d 2300 &column->type.key,
ce5a3e38 2301 key_string, ctx->symtab));
ad83bfa6 2302
8c3c2f30 2303 idx = ovsdb_datum_find_key(datum, &key,
bd76d25d 2304 column->type.key.type);
ad83bfa6 2305 if (idx == UINT_MAX) {
870aeb4a 2306 if (!if_exists) {
def90f62
BP
2307 vsctl_fatal("no key \"%s\" in %s record \"%s\" column %s",
2308 key_string, table->class->name, record_id,
bd76d25d 2309 column->name);
870aeb4a
BP
2310 }
2311 } else {
8c3c2f30 2312 ovsdb_atom_to_string(&datum->values[idx],
bd76d25d 2313 column->type.value.type, out);
ad83bfa6 2314 }
bd76d25d 2315 ovsdb_atom_destroy(&key, column->type.key.type);
ad83bfa6 2316 } else {
8c3c2f30 2317 ovsdb_datum_to_string(datum, &column->type, out);
ad83bfa6
BP
2318 }
2319 ds_put_char(out, '\n');
ad83bfa6
BP
2320
2321 free(key_string);
2322 }
2323}
2324
2325static void
1bc6ff29
BP
2326list_record(const struct vsctl_table_class *table,
2327 const struct ovsdb_idl_row *row, struct ds *out)
ad83bfa6 2328{
bd76d25d 2329 size_t i;
ad83bfa6 2330
bd76d25d 2331 ds_put_format(out, "%-20s: "UUID_FMT"\n", "_uuid",
c611c9d0 2332 UUID_ARGS(&row->uuid));
bd76d25d
BP
2333 for (i = 0; i < table->class->n_columns; i++) {
2334 const struct ovsdb_idl_column *column = &table->class->columns[i];
8c3c2f30 2335 const struct ovsdb_datum *datum;
ad83bfa6 2336
8c3c2f30 2337 datum = ovsdb_idl_read(row, column);
ad83bfa6 2338
bd76d25d 2339 ds_put_format(out, "%-20s: ", column->name);
8c3c2f30 2340 ovsdb_datum_to_string(datum, &column->type, out);
ad83bfa6 2341 ds_put_char(out, '\n');
ad83bfa6
BP
2342 }
2343}
2344
2345static void
2346cmd_list(struct vsctl_context *ctx)
2347{
2348 const char *table_name = ctx->argv[1];
2349 const struct vsctl_table_class *table;
2350 struct ds *out = &ctx->output;
2351 int i;
2352
2353 table = get_table(table_name);
2354 if (ctx->argc > 2) {
2355 for (i = 2; i < ctx->argc; i++) {
2356 if (i > 2) {
2357 ds_put_char(out, '\n');
2358 }
b7f74b6f 2359 list_record(table, must_get_row(ctx, table, ctx->argv[i]), out);
ad83bfa6
BP
2360 }
2361 } else {
2362 const struct ovsdb_idl_row *row;
2363 bool first;
2364
2365 for (row = ovsdb_idl_first_row(ctx->idl, table->class), first = true;
2366 row != NULL;
2367 row = ovsdb_idl_next_row(row), first = false) {
2368 if (!first) {
2369 ds_put_char(out, '\n');
2370 }
2371 list_record(table, row, out);
2372 }
2373 }
2374}
2375
ad83bfa6 2376static void
557e3718 2377set_column(const struct vsctl_table_class *table,
ce5a3e38
BP
2378 const struct ovsdb_idl_row *row, const char *arg,
2379 struct ovsdb_symbol_table *symtab)
ad83bfa6 2380{
bd76d25d 2381 const struct ovsdb_idl_column *column;
557e3718
BP
2382 char *key_string, *value_string;
2383 char *error;
ad83bfa6 2384
557e3718 2385 error = parse_column_key_value(arg, table, &column, &key_string,
e89e5374 2386 NULL, NULL, 0, &value_string);
557e3718 2387 die_if_error(error);
557e3718 2388 if (!value_string) {
def90f62 2389 vsctl_fatal("%s: missing value", arg);
557e3718 2390 }
ad83bfa6 2391
557e3718
BP
2392 if (key_string) {
2393 union ovsdb_atom key, value;
8c3c2f30 2394 struct ovsdb_datum datum;
557e3718 2395
bd76d25d 2396 if (column->type.value.type == OVSDB_TYPE_VOID) {
def90f62 2397 vsctl_fatal("cannot specify key to set for non-map column %s",
bd76d25d 2398 column->name);
ad83bfa6
BP
2399 }
2400
bd76d25d 2401 die_if_error(ovsdb_atom_from_string(&key, &column->type.key,
ce5a3e38 2402 key_string, symtab));
bd76d25d 2403 die_if_error(ovsdb_atom_from_string(&value, &column->type.value,
ce5a3e38 2404 value_string, symtab));
ad83bfa6 2405
8c3c2f30
BP
2406 ovsdb_datum_init_empty(&datum);
2407 ovsdb_datum_add_unsafe(&datum, &key, &value, &column->type);
ad83bfa6 2408
bd76d25d
BP
2409 ovsdb_atom_destroy(&key, column->type.key.type);
2410 ovsdb_atom_destroy(&value, column->type.value.type);
a3326252 2411
8c3c2f30
BP
2412 ovsdb_datum_union(&datum, ovsdb_idl_read(row, column),
2413 &column->type, false);
2414 ovsdb_idl_txn_write(row, column, &datum);
557e3718
BP
2415 } else {
2416 struct ovsdb_datum datum;
ad83bfa6 2417
bd76d25d 2418 die_if_error(ovsdb_datum_from_string(&datum, &column->type,
ce5a3e38 2419 value_string, symtab));
bd76d25d 2420 ovsdb_idl_txn_write(row, column, &datum);
557e3718 2421 }
ad83bfa6 2422
557e3718 2423 free(key_string);
a3326252 2424 free(value_string);
557e3718 2425}
ad83bfa6 2426
557e3718
BP
2427static void
2428cmd_set(struct vsctl_context *ctx)
2429{
557e3718
BP
2430 const char *table_name = ctx->argv[1];
2431 const char *record_id = ctx->argv[2];
2432 const struct vsctl_table_class *table;
2433 const struct ovsdb_idl_row *row;
2434 int i;
ad83bfa6 2435
557e3718 2436 table = get_table(table_name);
b7f74b6f 2437 row = must_get_row(ctx, table, record_id);
557e3718 2438 for (i = 3; i < ctx->argc; i++) {
ce5a3e38 2439 set_column(table, row, ctx->argv[i], ctx->symtab);
ad83bfa6
BP
2440 }
2441}
2442
2443static void
2444cmd_add(struct vsctl_context *ctx)
2445{
2446 const char *table_name = ctx->argv[1];
2447 const char *record_id = ctx->argv[2];
2448 const char *column_name = ctx->argv[3];
2449 const struct vsctl_table_class *table;
bd76d25d 2450 const struct ovsdb_idl_column *column;
ad83bfa6
BP
2451 const struct ovsdb_idl_row *row;
2452 const struct ovsdb_type *type;
2453 struct ovsdb_datum old;
2454 int i;
2455
2456 table = get_table(table_name);
b7f74b6f 2457 row = must_get_row(ctx, table, record_id);
1bc6ff29 2458 die_if_error(get_column(table, column_name, &column));
c29a8ba8 2459
bd76d25d 2460 type = &column->type;
8c3c2f30 2461 ovsdb_datum_clone(&old, ovsdb_idl_read(row, column), &column->type);
ad83bfa6
BP
2462 for (i = 4; i < ctx->argc; i++) {
2463 struct ovsdb_type add_type;
2464 struct ovsdb_datum add;
2465
ad83bfa6
BP
2466 add_type = *type;
2467 add_type.n_min = 1;
2468 add_type.n_max = UINT_MAX;
ce5a3e38
BP
2469 die_if_error(ovsdb_datum_from_string(&add, &add_type, ctx->argv[i],
2470 ctx->symtab));
ad83bfa6
BP
2471 ovsdb_datum_union(&old, &add, type, false);
2472 ovsdb_datum_destroy(&add, type);
2473 }
2474 if (old.n > type->n_max) {
def90f62
BP
2475 vsctl_fatal("\"add\" operation would put %u %s in column %s of "
2476 "table %s but the maximum number is %u",
2477 old.n,
bd76d25d
BP
2478 type->value.type == OVSDB_TYPE_VOID ? "values" : "pairs",
2479 column->name, table->class->name, type->n_max);
ad83bfa6 2480 }
bd76d25d 2481 ovsdb_idl_txn_write(row, column, &old);
ad83bfa6 2482}
90c4bd00
BP
2483
2484static void
2485cmd_remove(struct vsctl_context *ctx)
2486{
2487 const char *table_name = ctx->argv[1];
2488 const char *record_id = ctx->argv[2];
2489 const char *column_name = ctx->argv[3];
2490 const struct vsctl_table_class *table;
bd76d25d 2491 const struct ovsdb_idl_column *column;
90c4bd00
BP
2492 const struct ovsdb_idl_row *row;
2493 const struct ovsdb_type *type;
2494 struct ovsdb_datum old;
2495 int i;
2496
2497 table = get_table(table_name);
b7f74b6f 2498 row = must_get_row(ctx, table, record_id);
90c4bd00 2499 die_if_error(get_column(table, column_name, &column));
c29a8ba8 2500
bd76d25d 2501 type = &column->type;
8c3c2f30 2502 ovsdb_datum_clone(&old, ovsdb_idl_read(row, column), &column->type);
90c4bd00
BP
2503 for (i = 4; i < ctx->argc; i++) {
2504 struct ovsdb_type rm_type;
2505 struct ovsdb_datum rm;
2506 char *error;
2507
90c4bd00
BP
2508 rm_type = *type;
2509 rm_type.n_min = 1;
2510 rm_type.n_max = UINT_MAX;
ce5a3e38
BP
2511 error = ovsdb_datum_from_string(&rm, &rm_type,
2512 ctx->argv[i], ctx->symtab);
90c4bd00
BP
2513 if (error && ovsdb_type_is_map(&rm_type)) {
2514 free(error);
bd76d25d 2515 rm_type.value.type = OVSDB_TYPE_VOID;
ce5a3e38
BP
2516 die_if_error(ovsdb_datum_from_string(&rm, &rm_type,
2517 ctx->argv[i], ctx->symtab));
90c4bd00
BP
2518 }
2519 ovsdb_datum_subtract(&old, type, &rm, &rm_type);
2520 ovsdb_datum_destroy(&rm, &rm_type);
2521 }
2522 if (old.n < type->n_min) {
def90f62 2523 vsctl_fatal("\"remove\" operation would put %u %s in column %s of "
f19f25a4 2524 "table %s but the minimum number is %u",
def90f62 2525 old.n,
bd76d25d
BP
2526 type->value.type == OVSDB_TYPE_VOID ? "values" : "pairs",
2527 column->name, table->class->name, type->n_min);
90c4bd00 2528 }
bd76d25d 2529 ovsdb_idl_txn_write(row, column, &old);
90c4bd00
BP
2530}
2531
2532static void
2533cmd_clear(struct vsctl_context *ctx)
2534{
2535 const char *table_name = ctx->argv[1];
2536 const char *record_id = ctx->argv[2];
2537 const struct vsctl_table_class *table;
2538 const struct ovsdb_idl_row *row;
2539 int i;
2540
2541 table = get_table(table_name);
b7f74b6f 2542 row = must_get_row(ctx, table, record_id);
90c4bd00 2543 for (i = 3; i < ctx->argc; i++) {
bd76d25d 2544 const struct ovsdb_idl_column *column;
90c4bd00
BP
2545 const struct ovsdb_type *type;
2546 struct ovsdb_datum datum;
2547
2548 die_if_error(get_column(table, ctx->argv[i], &column));
2549
bd76d25d
BP
2550 type = &column->type;
2551 if (type->n_min > 0) {
def90f62
BP
2552 vsctl_fatal("\"clear\" operation cannot be applied to column %s "
2553 "of table %s, which is not allowed to be empty",
bd76d25d 2554 column->name, table->class->name);
90c4bd00
BP
2555 }
2556
2557 ovsdb_datum_init_empty(&datum);
bd76d25d 2558 ovsdb_idl_txn_write(row, column, &datum);
90c4bd00
BP
2559 }
2560}
557e3718
BP
2561
2562static void
2563cmd_create(struct vsctl_context *ctx)
2564{
ce5a3e38 2565 const char *id = shash_find_data(&ctx->options, "--id");
557e3718
BP
2566 const char *table_name = ctx->argv[1];
2567 const struct vsctl_table_class *table;
2568 const struct ovsdb_idl_row *row;
ce5a3e38 2569 const struct uuid *uuid;
557e3718
BP
2570 int i;
2571
ce5a3e38
BP
2572 if (id) {
2573 struct ovsdb_symbol *symbol;
2574
2575 if (id[0] != '@') {
2576 vsctl_fatal("row id \"%s\" does not begin with \"@\"", id);
2577 }
2578
2579 symbol = ovsdb_symbol_table_insert(ctx->symtab, id);
2580 if (symbol->used) {
2581 vsctl_fatal("row id \"%s\" may only be used to insert a single "
2582 "row", id);
2583 }
2584 symbol->used = true;
2585
2586 uuid = &symbol->uuid;
2587 } else {
2588 uuid = NULL;
2589 }
2590
557e3718 2591 table = get_table(table_name);
ce5a3e38 2592 row = ovsdb_idl_txn_insert(ctx->txn, table->class, uuid);
557e3718 2593 for (i = 2; i < ctx->argc; i++) {
ce5a3e38 2594 set_column(table, row, ctx->argv[i], ctx->symtab);
557e3718 2595 }
f8ff4bc4 2596 ds_put_format(&ctx->output, UUID_FMT, UUID_ARGS(&row->uuid));
557e3718 2597}
b7f74b6f 2598
3ef917b5
BP
2599/* This function may be used as the 'postprocess' function for commands that
2600 * insert new rows into the database. It expects that the command's 'run'
2601 * function prints the UUID reported by ovsdb_idl_txn_insert() as the command's
2602 * sole output. It replaces that output by the row's permanent UUID assigned
2603 * by the database server and appends a new-line.
2604 *
2605 * Currently we use this only for "create", because the higher-level commands
2606 * are supposed to be independent of the actual structure of the vswitch
2607 * configuration. */
2608static void
2609post_create(struct vsctl_context *ctx)
2610{
2611 const struct uuid *real;
2612 struct uuid dummy;
2613
2614 uuid_from_string(&dummy, ds_cstr(&ctx->output));
2615 real = ovsdb_idl_txn_get_insert_uuid(ctx->txn, &dummy);
2616 if (real) {
2617 ds_clear(&ctx->output);
2618 ds_put_format(&ctx->output, UUID_FMT, UUID_ARGS(real));
2619 }
2620 ds_put_char(&ctx->output, '\n');
2621}
2622
b7f74b6f
BP
2623static void
2624cmd_destroy(struct vsctl_context *ctx)
2625{
b7f74b6f
BP
2626 bool must_exist = !shash_find(&ctx->options, "--if-exists");
2627 const char *table_name = ctx->argv[1];
2628 const struct vsctl_table_class *table;
2629 int i;
2630
b7f74b6f 2631 table = get_table(table_name);
f8ff4bc4 2632 for (i = 2; i < ctx->argc; i++) {
b7f74b6f
BP
2633 const struct ovsdb_idl_row *row;
2634
2635 row = (must_exist ? must_get_row : get_row)(ctx, table, ctx->argv[i]);
2636 if (row) {
2637 ovsdb_idl_txn_delete(row);
2638 }
2639 }
2640}
7db03f7c
BP
2641
2642static bool
2643is_condition_satified(const struct vsctl_table_class *table,
2644 const struct ovsdb_idl_row *row, const char *arg,
2645 struct ovsdb_symbol_table *symtab)
2646{
2647 static const char *operators[] = {
2648 "=", "!=", "<", ">", "<=", ">="
2649 };
2650
2651 const struct ovsdb_idl_column *column;
8c3c2f30 2652 const struct ovsdb_datum *have_datum;
7db03f7c 2653 char *key_string, *value_string;
7db03f7c
BP
2654 const char *operator;
2655 unsigned int idx;
2656 char *error;
2657 int cmp;
2658
2659 error = parse_column_key_value(arg, table, &column, &key_string,
2660 &operator, operators, ARRAY_SIZE(operators),
2661 &value_string);
2662 die_if_error(error);
2663 if (!value_string) {
2664 vsctl_fatal("%s: missing value", arg);
2665 }
2666
8c3c2f30 2667 have_datum = ovsdb_idl_read(row, column);
7db03f7c
BP
2668 if (key_string) {
2669 union ovsdb_atom want_key, want_value;
2670
2671 if (column->type.value.type == OVSDB_TYPE_VOID) {
2672 vsctl_fatal("cannot specify key to check for non-map column %s",
2673 column->name);
2674 }
2675
2676 die_if_error(ovsdb_atom_from_string(&want_key, &column->type.key,
2677 key_string, symtab));
2678 die_if_error(ovsdb_atom_from_string(&want_value, &column->type.value,
2679 value_string, symtab));
2680
8c3c2f30 2681 idx = ovsdb_datum_find_key(have_datum,
7db03f7c
BP
2682 &want_key, column->type.key.type);
2683 if (idx != UINT_MAX) {
8c3c2f30 2684 cmp = ovsdb_atom_compare_3way(&have_datum->values[idx],
7db03f7c
BP
2685 &want_value,
2686 column->type.value.type);
2687 }
2688
2689 ovsdb_atom_destroy(&want_key, column->type.key.type);
2690 ovsdb_atom_destroy(&want_value, column->type.value.type);
2691 } else {
2692 struct ovsdb_datum want_datum;
2693
2694 die_if_error(ovsdb_datum_from_string(&want_datum, &column->type,
2695 value_string, symtab));
2696 idx = 0;
8c3c2f30 2697 cmp = ovsdb_datum_compare_3way(have_datum, &want_datum,
7db03f7c
BP
2698 &column->type);
2699 ovsdb_datum_destroy(&want_datum, &column->type);
2700 }
7db03f7c
BP
2701
2702 free(key_string);
2703 free(value_string);
2704
2705 return (idx == UINT_MAX ? false
2706 : !strcmp(operator, "=") ? cmp == 0
2707 : !strcmp(operator, "!=") ? cmp != 0
2708 : !strcmp(operator, "<") ? cmp < 0
2709 : !strcmp(operator, ">") ? cmp > 0
2710 : !strcmp(operator, "<=") ? cmp <= 0
2711 : !strcmp(operator, ">=") ? cmp >= 0
2712 : (abort(), 0));
2713}
2714
2715static void
2716cmd_wait_until(struct vsctl_context *ctx)
2717{
2718 const char *table_name = ctx->argv[1];
2719 const char *record_id = ctx->argv[2];
2720 const struct vsctl_table_class *table;
2721 const struct ovsdb_idl_row *row;
2722 int i;
2723
2724 table = get_table(table_name);
2725
e111e681 2726 row = get_row(ctx, table, record_id);
7db03f7c
BP
2727 if (!row) {
2728 ctx->try_again = true;
2729 return;
2730 }
2731
2732 for (i = 3; i < ctx->argc; i++) {
2733 if (!is_condition_satified(table, row, ctx->argv[i], ctx->symtab)) {
2734 ctx->try_again = true;
2735 return;
2736 }
2737 }
2738}
ad83bfa6 2739\f
b54e22e9
BP
2740static struct json *
2741where_uuid_equals(const struct uuid *uuid)
2742{
2743 return
2744 json_array_create_1(
2745 json_array_create_3(
2746 json_string_create("_uuid"),
2747 json_string_create("=="),
2748 json_array_create_2(
2749 json_string_create("uuid"),
2750 json_string_create_nocopy(
2751 xasprintf(UUID_FMT, UUID_ARGS(uuid))))));
2752}
2753
c75d1511 2754static void
f8ff4bc4
BP
2755vsctl_context_init(struct vsctl_context *ctx, struct vsctl_command *command,
2756 struct ovsdb_idl *idl, struct ovsdb_idl_txn *txn,
ce5a3e38
BP
2757 const struct ovsrec_open_vswitch *ovs,
2758 struct ovsdb_symbol_table *symtab)
f8ff4bc4
BP
2759{
2760 ctx->argc = command->argc;
2761 ctx->argv = command->argv;
2762 ctx->options = command->options;
2763
2764 ds_swap(&ctx->output, &command->output);
2765 ctx->idl = idl;
2766 ctx->txn = txn;
2767 ctx->ovs = ovs;
ce5a3e38 2768 ctx->symtab = symtab;
87b23a01
BP
2769
2770 ctx->try_again = false;
f8ff4bc4
BP
2771}
2772
2773static void
2774vsctl_context_done(struct vsctl_context *ctx, struct vsctl_command *command)
2775{
2776 ds_swap(&ctx->output, &command->output);
2777}
2778
2779static void
2780do_vsctl(const char *args, struct vsctl_command *commands, size_t n_commands,
2781 struct ovsdb_idl *idl)
c75d1511
BP
2782{
2783 struct ovsdb_idl_txn *txn;
2784 const struct ovsrec_open_vswitch *ovs;
2785 enum ovsdb_idl_txn_status status;
ce5a3e38
BP
2786 struct ovsdb_symbol_table *symtab;
2787 const char *unused;
f8ff4bc4 2788 struct vsctl_command *c;
84a0ee89 2789 int64_t next_cfg = 0;
91e310a5 2790 char *error;
c75d1511 2791
1d48b4be 2792 txn = the_idl_txn = ovsdb_idl_txn_create(idl);
577aebdf
BP
2793 if (dry_run) {
2794 ovsdb_idl_txn_set_dry_run(txn);
2795 }
524555d1 2796
e1c0e2d1 2797 ovsdb_idl_txn_add_comment(txn, "ovs-vsctl: %s", args);
d171b584 2798
c75d1511
BP
2799 ovs = ovsrec_open_vswitch_first(idl);
2800 if (!ovs) {
524555d1
BP
2801 /* XXX add verification that table is empty */
2802 ovs = ovsrec_open_vswitch_insert(txn);
c75d1511
BP
2803 }
2804
b54e22e9
BP
2805 if (wait_for_reload) {
2806 struct json *where = where_uuid_equals(&ovs->header_.uuid);
ad83bfa6 2807 ovsdb_idl_txn_increment(txn, "Open_vSwitch", "next_cfg", where);
b54e22e9
BP
2808 json_destroy(where);
2809 }
2810
ce5a3e38 2811 symtab = ovsdb_symbol_table_create();
87b23a01
BP
2812 for (c = commands; c < &commands[n_commands]; c++) {
2813 ds_init(&c->output);
2814 }
f8ff4bc4
BP
2815 for (c = commands; c < &commands[n_commands]; c++) {
2816 struct vsctl_context ctx;
2817
ce5a3e38 2818 vsctl_context_init(&ctx, c, idl, txn, ovs, symtab);
f8ff4bc4
BP
2819 (c->syntax->run)(&ctx);
2820 vsctl_context_done(&ctx, c);
87b23a01
BP
2821
2822 if (ctx.try_again) {
2823 goto try_again;
2824 }
c75d1511 2825 }
c75d1511 2826
af96ccd2 2827 status = ovsdb_idl_txn_commit_block(txn);
b54e22e9
BP
2828 if (wait_for_reload && status == TXN_SUCCESS) {
2829 next_cfg = ovsdb_idl_txn_get_increment_new_value(txn);
2830 }
8d49c47a
BP
2831 if (status == TXN_UNCHANGED || status == TXN_SUCCESS) {
2832 for (c = commands; c < &commands[n_commands]; c++) {
2833 if (c->syntax->postprocess) {
2834 struct vsctl_context ctx;
2835
ce5a3e38 2836 vsctl_context_init(&ctx, c, idl, txn, ovs, symtab);
8d49c47a
BP
2837 (c->syntax->postprocess)(&ctx);
2838 vsctl_context_done(&ctx, c);
2839 }
3da1c516
BP
2840 }
2841 }
91e310a5 2842 error = xstrdup(ovsdb_idl_txn_get_error(txn));
c75d1511 2843 ovsdb_idl_txn_destroy(txn);
1d48b4be 2844 the_idl_txn = NULL;
c75d1511 2845
ce5a3e38
BP
2846 unused = ovsdb_symbol_table_find_unused(symtab);
2847 if (unused) {
2848 vsctl_fatal("row id \"%s\" is referenced but never created (e.g. "
2849 "with \"-- --id=%s create ...\")", unused, unused);
2850 }
ce5a3e38 2851
c75d1511
BP
2852 switch (status) {
2853 case TXN_INCOMPLETE:
2854 NOT_REACHED();
2855
2856 case TXN_ABORTED:
2857 /* Should not happen--we never call ovsdb_idl_txn_abort(). */
c88b6a27 2858 vsctl_fatal("transaction aborted");
c75d1511 2859
b54e22e9 2860 case TXN_UNCHANGED:
c75d1511
BP
2861 case TXN_SUCCESS:
2862 break;
2863
2864 case TXN_TRY_AGAIN:
87b23a01 2865 goto try_again;
c75d1511
BP
2866
2867 case TXN_ERROR:
91e310a5 2868 vsctl_fatal("transaction error: %s", error);
c75d1511
BP
2869
2870 default:
2871 NOT_REACHED();
2872 }
91e310a5 2873 free(error);
c75d1511 2874
87b23a01
BP
2875 ovsdb_symbol_table_destroy(symtab);
2876
f8ff4bc4
BP
2877 for (c = commands; c < &commands[n_commands]; c++) {
2878 struct ds *ds = &c->output;
ce5a3e38
BP
2879 struct shash_node *node;
2880
c75d1511
BP
2881 if (oneline) {
2882 size_t j;
2883
2884 ds_chomp(ds, '\n');
2885 for (j = 0; j < ds->length; j++) {
2886 int c = ds->string[j];
2887 switch (c) {
2888 case '\n':
2889 fputs("\\n", stdout);
2890 break;
2891
2892 case '\\':
2893 fputs("\\\\", stdout);
2894 break;
2895
2896 default:
2897 putchar(c);
2898 }
2899 }
2900 putchar('\n');
2901 } else {
2902 fputs(ds_cstr(ds), stdout);
2903 }
b86b43aa 2904 ds_destroy(&c->output);
ce5a3e38
BP
2905
2906 SHASH_FOR_EACH (node, &c->options) {
2907 free(node->data);
2908 }
b86b43aa 2909 shash_destroy(&c->options);
c75d1511 2910 }
b86b43aa 2911 free(commands);
b54e22e9
BP
2912
2913 if (wait_for_reload && status != TXN_UNCHANGED) {
2914 for (;;) {
2915 const struct ovsrec_open_vswitch *ovs;
2916
2917 ovsdb_idl_run(idl);
2918 OVSREC_OPEN_VSWITCH_FOR_EACH (ovs, idl) {
2919 if (ovs->cur_cfg >= next_cfg) {
2920 goto done;
2921 }
2922 }
2923 ovsdb_idl_wait(idl);
2924 poll_block();
2925 }
2926 done: ;
2927 }
b86b43aa 2928 ovsdb_idl_destroy(idl);
b54e22e9 2929
c75d1511 2930 exit(EXIT_SUCCESS);
87b23a01
BP
2931
2932try_again:
2933 /* Our transaction needs to be rerun, or a prerequisite was not met. Free
2934 * resources and return so that the caller can try again. */
2935 ovsdb_idl_txn_abort(txn);
2936 ovsdb_idl_txn_destroy(txn);
2937 ovsdb_symbol_table_destroy(symtab);
2938 for (c = commands; c < &commands[n_commands]; c++) {
2939 ds_destroy(&c->output);
2940 }
2941 free(error);
c75d1511
BP
2942}
2943
f8ff4bc4
BP
2944static const struct vsctl_command_syntax all_commands[] = {
2945 /* Open vSwitch commands. */
3da1c516 2946 {"init", 0, 0, cmd_init, NULL, ""},
f8ff4bc4
BP
2947
2948 /* Bridge commands. */
aeee85aa 2949 {"add-br", 1, 3, cmd_add_br, NULL, "--may-exist"},
3da1c516
BP
2950 {"del-br", 1, 1, cmd_del_br, NULL, "--if-exists"},
2951 {"list-br", 0, 0, cmd_list_br, NULL, ""},
2952 {"br-exists", 1, 1, cmd_br_exists, NULL, ""},
2953 {"br-to-vlan", 1, 1, cmd_br_to_vlan, NULL, ""},
2954 {"br-to-parent", 1, 1, cmd_br_to_parent, NULL, ""},
2955 {"br-set-external-id", 2, 3, cmd_br_set_external_id, NULL, ""},
2956 {"br-get-external-id", 1, 2, cmd_br_get_external_id, NULL, ""},
f8ff4bc4
BP
2957
2958 /* Port commands. */
3da1c516 2959 {"list-ports", 1, 1, cmd_list_ports, NULL, ""},
18b239f5 2960 {"add-port", 2, INT_MAX, cmd_add_port, NULL, "--may-exist"},
bb1c67c8 2961 {"add-bond", 4, INT_MAX, cmd_add_bond, NULL, "--may-exist,--fake-iface"},
7c79588e 2962 {"del-port", 1, 2, cmd_del_port, NULL, "--if-exists,--with-iface"},
3da1c516 2963 {"port-to-br", 1, 1, cmd_port_to_br, NULL, ""},
f8ff4bc4
BP
2964
2965 /* Interface commands. */
3da1c516
BP
2966 {"list-ifaces", 1, 1, cmd_list_ifaces, NULL, ""},
2967 {"iface-to-br", 1, 1, cmd_iface_to_br, NULL, ""},
f8ff4bc4
BP
2968
2969 /* Controller commands. */
3da1c516
BP
2970 {"get-controller", 0, 1, cmd_get_controller, NULL, ""},
2971 {"del-controller", 0, 1, cmd_del_controller, NULL, ""},
76ce9432 2972 {"set-controller", 1, INT_MAX, cmd_set_controller, NULL, ""},
3da1c516
BP
2973 {"get-fail-mode", 0, 1, cmd_get_fail_mode, NULL, ""},
2974 {"del-fail-mode", 0, 1, cmd_del_fail_mode, NULL, ""},
2975 {"set-fail-mode", 1, 2, cmd_set_fail_mode, NULL, ""},
f8ff4bc4
BP
2976
2977 /* SSL commands. */
3da1c516
BP
2978 {"get-ssl", 0, 0, cmd_get_ssl, NULL, ""},
2979 {"del-ssl", 0, 0, cmd_del_ssl, NULL, ""},
2980 {"set-ssl", 3, 3, cmd_set_ssl, NULL, "--bootstrap"},
f8ff4bc4 2981
18ee958b
JP
2982 /* Switch commands. */
2983 {"emer-reset", 0, 0, cmd_emer_reset, NULL, ""},
2984
f8ff4bc4 2985 /* Parameter commands. */
870aeb4a 2986 {"get", 3, INT_MAX, cmd_get, NULL, "--if-exists"},
3da1c516 2987 {"list", 1, INT_MAX, cmd_list, NULL, ""},
bd76d25d
BP
2988 {"set", 3, INT_MAX, cmd_set, NULL, ""},
2989 {"add", 4, INT_MAX, cmd_add, NULL, ""},
2990 {"remove", 4, INT_MAX, cmd_remove, NULL, ""},
2991 {"clear", 3, INT_MAX, cmd_clear, NULL, ""},
ce5a3e38 2992 {"create", 2, INT_MAX, cmd_create, post_create, "--id="},
0d0f05b9 2993 {"destroy", 1, INT_MAX, cmd_destroy, NULL, "--if-exists"},
7db03f7c 2994 {"wait-until", 2, INT_MAX, cmd_wait_until, NULL, ""},
3da1c516
BP
2995
2996 {NULL, 0, 0, NULL, NULL, NULL},
f8ff4bc4 2997};
5d9cb63c 2998