ovs-vsctl: Fix unitialized variables.
[sliver-openvswitch.git] / utilities / ovs-vsctl.c
1 /*
2  * Copyright (c) 2009, 2010 Nicira Networks.
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>
20 #include <ctype.h>
21 #include <errno.h>
22 #include <float.h>
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"
34 #include "json.h"
35 #include "ovsdb-data.h"
36 #include "ovsdb-idl.h"
37 #include "poll-loop.h"
38 #include "process.h"
39 #include "stream-ssl.h"
40 #include "svec.h"
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
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
51 struct vsctl_context;
52
53 typedef void vsctl_handler_func(struct vsctl_context *);
54
55 struct vsctl_command_syntax {
56     const char *name;
57     int min_args;
58     int max_args;
59     vsctl_handler_func *run;
60     vsctl_handler_func *postprocess;
61     const char *options;
62 };
63
64 struct 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
75 /* --db: The database server to contact. */
76 static const char *db;
77
78 /* --oneline: Write each command's output as a single line? */
79 static bool oneline;
80
81 /* --dry-run: Do not commit any changes. */
82 static bool dry_run;
83
84 /* --no-wait: Wait for ovs-vswitchd to reload its configuration? */
85 static bool wait_for_reload = true;
86
87 /* --timeout: Time to wait for a connection to 'db'. */
88 static int timeout = 5;
89
90 /* All supported commands. */
91 static const struct vsctl_command_syntax all_commands[];
92
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. */
96 static struct ovsdb_idl *the_idl;
97 static struct ovsdb_idl_txn *the_idl_txn;
98
99 static void vsctl_exit(int status) NO_RETURN;
100 static void vsctl_fatal(const char *, ...) PRINTF_FORMAT(1, 2) NO_RETURN;
101 static char *default_db(void);
102 static void usage(void) NO_RETURN;
103 static void parse_options(int argc, char *argv[]);
104
105 static struct vsctl_command *parse_commands(int argc, char *argv[],
106                                             size_t *n_commandsp);
107 static void parse_command(int argc, char *argv[], struct vsctl_command *);
108 static void do_vsctl(const char *args,
109                      struct vsctl_command *, size_t n_commands,
110                      struct ovsdb_idl *);
111
112 static const struct vsctl_table_class *get_table(const char *table_name);
113 static void set_column(const struct vsctl_table_class *,
114                        const struct ovsdb_idl_row *, const char *arg,
115                        struct ovsdb_symbol_table *);
116
117
118 int
119 main(int argc, char *argv[])
120 {
121     struct ovsdb_idl *idl;
122     struct vsctl_command *commands;
123     size_t n_commands;
124     char *args;
125
126     set_program_name(argv[0]);
127     signal(SIGPIPE, SIG_IGN);
128     time_init();
129     vlog_init();
130     vlog_set_levels(VLM_ANY_MODULE, VLF_CONSOLE, VLL_WARN);
131     vlog_set_levels(VLM_reconnect, VLF_ANY_FACILITY, VLL_WARN);
132     ovsrec_init();
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. */
139     parse_options(argc, argv);
140     commands = parse_commands(argc - optind, argv + optind, &n_commands);
141
142     if (timeout) {
143         time_alarm(timeout);
144     }
145
146     /* Now execute the commands. */
147     idl = the_idl = ovsdb_idl_create(db, &ovsrec_idl_class);
148     for (;;) {
149         if (ovsdb_idl_run(idl)) {
150             do_vsctl(args, commands, n_commands, idl);
151         }
152
153         ovsdb_idl_wait(idl);
154         poll_block();
155     }
156 }
157
158 static void
159 parse_options(int argc, char *argv[])
160 {
161     enum {
162         OPT_DB = UCHAR_MAX + 1,
163         OPT_ONELINE,
164         OPT_NO_SYSLOG,
165         OPT_NO_WAIT,
166         OPT_DRY_RUN,
167         OPT_PEER_CA_CERT,
168         VLOG_OPTION_ENUMS
169     };
170     static struct option long_options[] = {
171         {"db", required_argument, 0, OPT_DB},
172         {"no-syslog", no_argument, 0, OPT_NO_SYSLOG},
173         {"no-wait", no_argument, 0, OPT_NO_WAIT},
174         {"dry-run", no_argument, 0, OPT_DRY_RUN},
175         {"oneline", no_argument, 0, OPT_ONELINE},
176         {"timeout", required_argument, 0, 't'},
177         {"help", no_argument, 0, 'h'},
178         {"version", no_argument, 0, 'V'},
179         VLOG_LONG_OPTIONS,
180 #ifdef HAVE_OPENSSL
181         STREAM_SSL_LONG_OPTIONS
182         {"peer-ca-cert", required_argument, 0, OPT_PEER_CA_CERT},
183 #endif
184         {0, 0, 0, 0},
185     };
186
187
188     for (;;) {
189         int c;
190
191         c = getopt_long(argc, argv, "+v::hVt:", long_options, NULL);
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
205         case OPT_NO_SYSLOG:
206             vlog_set_levels(VLM_vsctl, VLF_SYSLOG, VLL_WARN);
207             break;
208
209         case OPT_NO_WAIT:
210             wait_for_reload = false;
211             break;
212
213         case OPT_DRY_RUN:
214             dry_run = true;
215             break;
216
217         case 'h':
218             usage();
219
220         case 'V':
221             OVS_PRINT_VERSION(0, 0);
222             exit(EXIT_SUCCESS);
223
224         case 't':
225             timeout = strtoul(optarg, NULL, 10);
226             if (timeout < 0) {
227                 vsctl_fatal("value %s on -t or --timeout is invalid",
228                             optarg);
229             }
230             break;
231
232         VLOG_OPTION_HANDLERS
233
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
242         case '?':
243             exit(EXIT_FAILURE);
244
245         default:
246             abort();
247         }
248     }
249
250     if (!db) {
251         db = default_db();
252     }
253 }
254
255 static struct vsctl_command *
256 parse_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
290 static void
291 parse_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++) {
298         const char *option = argv[i];
299         const char *equals;
300         char *key, *value;
301
302         if (option[0] != '-') {
303             break;
304         }
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)) {
316             vsctl_fatal("'%s' option specified multiple times", argv[i]);
317         }
318         shash_add_nocopy(&command->options, key, value);
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;
332
333                 if (end != '=' && end != ',' && end != ' ' && end != '\0') {
334                     vsctl_fatal("'%s' command has no '%s' option",
335                                 argv[i], node->name);
336                 }
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                 }
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) {
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
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
378 static void
379 vsctl_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);
390     ovs_error(0, "%s", message);
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. */
400 static void
401 vsctl_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);
409 }
410
411 static void
412 usage(void)
413 {
414     printf("\
415 %s: ovs-vswitchd management utility\n\
416 usage: %s [OPTIONS] COMMAND [ARG...]\n\
417 \n\
418 Bridge 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\
431 Port 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\
437 A bond is considered to be a single port.\n\
438 \n\
439 Interface 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\
442 \n\
443 Controller 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\
451 SSL 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\
456 Switch commands:\n\
457   emer-reset                  reset switch to known good state\n\
458 \n\
459 Database commands:\n\
460   list TBL [REC]              list RECord (or all records) in TBL\n\
461   get TBL REC COL[:KEY]       print values of COLumns in RECord in TBL\n\
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\
467   destroy TBL REC             delete RECord from TBL\n\
468   wait-until TBL REC [COL[:KEY]=VALUE]  wait until condition is true\n\
469 Potentially unsafe database commands require --force option.\n\
470 \n\
471 Options:\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());
476     vlog_usage();
477     printf("\n\
478 Other options:\n\
479   -h, --help                  display this help message\n\
480   -V, --version               display version information\n");
481     exit(EXIT_SUCCESS);
482 }
483
484 static char *
485 default_db(void)
486 {
487     static char *def;
488     if (!def) {
489         def = xasprintf("unix:%s/db.sock", ovs_rundir);
490     }
491     return def;
492 }
493 \f
494 struct vsctl_context {
495     /* Read-only. */
496     int argc;
497     char **argv;
498     struct shash options;
499
500     /* Modifiable state. */
501     struct ds output;
502     struct ovsdb_idl *idl;
503     struct ovsdb_idl_txn *txn;
504     struct ovsdb_symbol_table *symtab;
505     const struct ovsrec_open_vswitch *ovs;
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;
510 };
511
512 struct vsctl_bridge {
513     struct ovsrec_bridge *br_cfg;
514     char *name;
515     struct ovsrec_controller **ctrl;
516     size_t n_ctrl;
517     struct vsctl_bridge *parent;
518     int vlan;
519 };
520
521 struct vsctl_port {
522     struct ovsrec_port *port_cfg;
523     struct vsctl_bridge *bridge;
524 };
525
526 struct vsctl_iface {
527     struct ovsrec_interface *iface_cfg;
528     struct vsctl_port *port;
529 };
530
531 struct vsctl_info {
532     struct shash bridges;
533     struct shash ports;
534     struct shash ifaces;
535     struct ovsrec_controller **ctrl;
536     size_t n_ctrl;
537 };
538
539 static char *
540 vsctl_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
563 static struct vsctl_bridge *
564 add_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;
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     }
580     shash_add(&b->bridges, br->name, br);
581     return br;
582 }
583
584 static bool
585 port_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
592 static struct vsctl_bridge *
593 find_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
608 static void
609 free_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
620     shash_destroy_free_data(&info->ports);
621     shash_destroy_free_data(&info->ifaces);
622 }
623
624 static void
625 get_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
634     info->ctrl = ovs->controller;
635     info->n_ctrl = ovs->n_controller;
636
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)
664                 && shash_add_once(&bridges, port_cfg->name, NULL)) {
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)
693                 && !shash_add_once(&bridges, port_cfg->name, NULL)) {
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;
723                 shash_add(&info->ifaces, iface_cfg->name, iface);
724             }
725         }
726     }
727     shash_destroy(&bridges);
728     shash_destroy(&ports);
729 }
730
731 static void
732 check_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)) {
739         vsctl_fatal("%s because a bridge named %s already exists",
740                     msg, name);
741     }
742
743     port = shash_find_data(&info->ports, name);
744     if (port) {
745         vsctl_fatal("%s because a port named %s already exists on "
746                     "bridge %s", msg, name, port->bridge->name);
747     }
748
749     iface = shash_find_data(&info->ifaces, name);
750     if (iface) {
751         vsctl_fatal("%s because an interface named %s already exists "
752                     "on bridge %s", msg, name, iface->port->bridge->name);
753     }
754
755     free(msg);
756 }
757
758 static struct vsctl_bridge *
759 find_bridge(struct vsctl_info *info, const char *name, bool must_exist)
760 {
761     struct vsctl_bridge *br = shash_find_data(&info->bridges, name);
762     if (must_exist && !br) {
763         vsctl_fatal("no bridge named %s", name);
764     }
765     return br;
766 }
767
768 static struct vsctl_bridge *
769 find_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
778 static struct vsctl_port *
779 find_port(struct vsctl_info *info, const char *name, bool must_exist)
780 {
781     struct vsctl_port *port = shash_find_data(&info->ports, name);
782     if (port && !strcmp(name, port->bridge->name)) {
783         port = NULL;
784     }
785     if (must_exist && !port) {
786         vsctl_fatal("no port named %s", name);
787     }
788     return port;
789 }
790
791 static struct vsctl_iface *
792 find_iface(struct vsctl_info *info, const char *name, bool must_exist)
793 {
794     struct vsctl_iface *iface = shash_find_data(&info->ifaces, name);
795     if (iface && !strcmp(name, iface->port->bridge->name)) {
796         iface = NULL;
797     }
798     if (must_exist && !iface) {
799         vsctl_fatal("no interface named %s", name);
800     }
801     return iface;
802 }
803
804 static void
805 bridge_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     }
814     ports[br->n_ports] = port;
815     ovsrec_bridge_set_ports(br, ports, br->n_ports + 1);
816     free(ports);
817 }
818
819 static void
820 bridge_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
835 static void
836 ovs_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
851 static void
852 ovs_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
868 static void
869 cmd_init(struct vsctl_context *ctx OVS_UNUSED)
870 {
871 }
872
873 static void
874 cmd_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
951 static void
952 cmd_add_br(struct vsctl_context *ctx)
953 {
954     bool may_exist = shash_find(&ctx->options, "--may-exist") != 0;
955     const char *br_name, *parent_name;
956     struct vsctl_info info;
957     int vlan;
958
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
974     get_info(ctx->ovs, &info);
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     }
1005     check_conflicts(&info, br_name,
1006                     xasprintf("cannot create a bridge named %s", br_name));
1007
1008     if (!parent_name) {
1009         struct ovsrec_port *port;
1010         struct ovsrec_interface *iface;
1011         struct ovsrec_bridge *br;
1012
1013         iface = ovsrec_interface_insert(ctx->txn);
1014         ovsrec_interface_set_name(iface, br_name);
1015
1016         port = ovsrec_port_insert(ctx->txn);
1017         ovsrec_port_set_name(port, br_name);
1018         ovsrec_port_set_interfaces(port, &iface, 1);
1019
1020         br = ovsrec_bridge_insert(ctx->txn);
1021         ovsrec_bridge_set_name(br, br_name);
1022         ovsrec_bridge_set_ports(br, &port, 1);
1023
1024         ovs_insert_bridge(ctx->ovs, br);
1025     } else {
1026         struct vsctl_bridge *parent;
1027         struct ovsrec_port *port;
1028         struct ovsrec_interface *iface;
1029         struct ovsrec_bridge *br;
1030         int64_t tag = vlan;
1031
1032         parent = find_bridge(&info, parent_name, false);
1033         if (parent && parent->vlan) {
1034             vsctl_fatal("cannot create bridge with fake bridge as parent");
1035         }
1036         if (!parent) {
1037             vsctl_fatal("parent bridge %s does not exist", parent_name);
1038         }
1039         br = parent->br_cfg;
1040
1041         iface = ovsrec_interface_insert(ctx->txn);
1042         ovsrec_interface_set_name(iface, br_name);
1043         ovsrec_interface_set_type(iface, "internal");
1044
1045         port = ovsrec_port_insert(ctx->txn);
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);
1050
1051         bridge_insert_port(br, port);
1052     }
1053
1054     free_info(&info);
1055 }
1056
1057 static void
1058 del_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
1075 static void
1076 cmd_del_br(struct vsctl_context *ctx)
1077 {
1078     bool must_exist = !shash_find(&ctx->options, "--if-exists");
1079     struct vsctl_bridge *bridge;
1080     struct vsctl_info info;
1081
1082     get_info(ctx->ovs, &info);
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;
1089             if (port->bridge == bridge || port->bridge->parent == bridge
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);
1097         }
1098     }
1099     free_info(&info);
1100 }
1101
1102 static void
1103 output_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
1114 static void
1115 cmd_list_br(struct vsctl_context *ctx)
1116 {
1117     struct shash_node *node;
1118     struct vsctl_info info;
1119     struct svec bridges;
1120
1121     get_info(ctx->ovs, &info);
1122
1123     svec_init(&bridges);
1124     SHASH_FOR_EACH (node, &info.bridges) {
1125         struct vsctl_bridge *br = node->data;
1126         svec_add(&bridges, br->name);
1127     }
1128     output_sorted(&bridges, &ctx->output);
1129     svec_destroy(&bridges);
1130
1131     free_info(&info);
1132 }
1133
1134 static void
1135 cmd_br_exists(struct vsctl_context *ctx)
1136 {
1137     struct vsctl_info info;
1138
1139     get_info(ctx->ovs, &info);
1140     if (!find_bridge(&info, ctx->argv[1], false)) {
1141         vsctl_exit(2);
1142     }
1143     free_info(&info);
1144 }
1145
1146 /* Returns true if 'b_prefix' (of length 'b_prefix_len') concatenated with 'b'
1147  * equals 'a', false otherwise. */
1148 static bool
1149 key_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
1155 static void
1156 set_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
1185 static void
1186 cmd_br_set_external_id(struct vsctl_context *ctx)
1187 {
1188     struct vsctl_info info;
1189     struct vsctl_bridge *bridge;
1190     char **keys, **values;
1191     size_t n;
1192
1193     get_info(ctx->ovs, &info);
1194     bridge = find_bridge(&info, ctx->argv[1], true);
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,
1199                         ctx->argv[2], ctx->argc >= 4 ? ctx->argv[3] : NULL,
1200                         &keys, &values, &n);
1201         ovsrec_bridge_set_external_ids(bridge->br_cfg, keys, values, n);
1202     } else {
1203         char *key = xasprintf("fake-bridge-%s", ctx->argv[2]);
1204         struct vsctl_port *port = shash_find_data(&info.ports, ctx->argv[1]);
1205         set_external_id(port->port_cfg->key_external_ids,
1206                         port->port_cfg->value_external_ids,
1207                         port->port_cfg->n_external_ids,
1208                         key, ctx->argc >= 4 ? ctx->argv[3] : NULL,
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
1219 static void
1220 get_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
1242 static void
1243 cmd_br_get_external_id(struct vsctl_context *ctx)
1244 {
1245     struct vsctl_info info;
1246     struct vsctl_bridge *bridge;
1247
1248     get_info(ctx->ovs, &info);
1249     bridge = find_bridge(&info, ctx->argv[1], true);
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,
1254                         "", ctx->argc >= 3 ? ctx->argv[2] : NULL,
1255                         &ctx->output);
1256     } else {
1257         struct vsctl_port *port = shash_find_data(&info.ports, ctx->argv[1]);
1258         get_external_id(port->port_cfg->key_external_ids,
1259                         port->port_cfg->value_external_ids,
1260                         port->port_cfg->n_external_ids,
1261                         "fake-bridge-", ctx->argc >= 3 ? ctx->argv[2] : NULL, &ctx->output);
1262     }
1263     free_info(&info);
1264 }
1265
1266
1267 static void
1268 cmd_list_ports(struct vsctl_context *ctx)
1269 {
1270     struct vsctl_bridge *br;
1271     struct shash_node *node;
1272     struct vsctl_info info;
1273     struct svec ports;
1274
1275     get_info(ctx->ovs, &info);
1276     br = find_bridge(&info, ctx->argv[1], true);
1277
1278     svec_init(&ports);
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) {
1283             svec_add(&ports, port->port_cfg->name);
1284         }
1285     }
1286     output_sorted(&ports, &ctx->output);
1287     svec_destroy(&ports);
1288
1289     free_info(&info);
1290 }
1291
1292 static void
1293 add_port(struct vsctl_context *ctx,
1294          const char *br_name, const char *port_name,
1295          bool may_exist, bool fake_iface,
1296          char *iface_names[], int n_ifaces,
1297          char *settings[], int n_settings)
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
1305     get_info(ctx->ovs, &info);
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     }
1346     check_conflicts(&info, port_name,
1347                     xasprintf("cannot create a port named %s", port_name));
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     }
1353     bridge = find_bridge(&info, br_name, true);
1354
1355     ifaces = xmalloc(n_ifaces * sizeof *ifaces);
1356     for (i = 0; i < n_ifaces; i++) {
1357         ifaces[i] = ovsrec_interface_insert(ctx->txn);
1358         ovsrec_interface_set_name(ifaces[i], iface_names[i]);
1359     }
1360
1361     port = ovsrec_port_insert(ctx->txn);
1362     ovsrec_port_set_name(port, port_name);
1363     ovsrec_port_set_interfaces(port, ifaces, n_ifaces);
1364     ovsrec_port_set_bond_fake_iface(port, fake_iface);
1365     free(ifaces);
1366
1367     if (bridge->vlan) {
1368         int64_t tag = bridge->vlan;
1369         ovsrec_port_set_tag(port, &tag, 1);
1370     }
1371
1372     for (i = 0; i < n_settings; i++) {
1373         set_column(get_table("Port"), &port->header_, settings[i],
1374                    ctx->symtab);
1375     }
1376
1377     bridge_insert_port((bridge->parent ? bridge->parent->br_cfg
1378                         : bridge->br_cfg), port);
1379
1380     free_info(&info);
1381 }
1382
1383 static void
1384 cmd_add_port(struct vsctl_context *ctx)
1385 {
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,
1389              &ctx->argv[2], 1, &ctx->argv[3], ctx->argc - 3);
1390 }
1391
1392 static void
1393 cmd_add_bond(struct vsctl_context *ctx)
1394 {
1395     bool may_exist = shash_find(&ctx->options, "--may-exist") != 0;
1396     bool fake_iface = shash_find(&ctx->options, "--fake-iface");
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     }
1411
1412     add_port(ctx, ctx->argv[1], ctx->argv[2], may_exist, fake_iface,
1413              &ctx->argv[3], n_ifaces,
1414              &ctx->argv[n_ifaces + 3], ctx->argc - 3 - n_ifaces);
1415 }
1416
1417 static void
1418 cmd_del_port(struct vsctl_context *ctx)
1419 {
1420     bool must_exist = !shash_find(&ctx->options, "--if-exists");
1421     bool with_iface = shash_find(&ctx->options, "--with-iface") != NULL;
1422     struct vsctl_port *port;
1423     struct vsctl_info info;
1424
1425     get_info(ctx->ovs, &info);
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);
1441         }
1442     }
1443
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                 }
1459             }
1460         }
1461
1462         del_port(&info, port);
1463     }
1464
1465     free_info(&info);
1466 }
1467
1468 static void
1469 cmd_port_to_br(struct vsctl_context *ctx)
1470 {
1471     struct vsctl_port *port;
1472     struct vsctl_info info;
1473
1474     get_info(ctx->ovs, &info);
1475     port = find_port(&info, ctx->argv[1], true);
1476     ds_put_format(&ctx->output, "%s\n", port->bridge->name);
1477     free_info(&info);
1478 }
1479
1480 static void
1481 cmd_br_to_vlan(struct vsctl_context *ctx)
1482 {
1483     struct vsctl_bridge *bridge;
1484     struct vsctl_info info;
1485
1486     get_info(ctx->ovs, &info);
1487     bridge = find_bridge(&info, ctx->argv[1], true);
1488     ds_put_format(&ctx->output, "%d\n", bridge->vlan);
1489     free_info(&info);
1490 }
1491
1492 static void
1493 cmd_br_to_parent(struct vsctl_context *ctx)
1494 {
1495     struct vsctl_bridge *bridge;
1496     struct vsctl_info info;
1497
1498     get_info(ctx->ovs, &info);
1499     bridge = find_bridge(&info, ctx->argv[1], true);
1500     if (bridge->parent) {
1501         bridge = bridge->parent;
1502     }
1503     ds_put_format(&ctx->output, "%s\n", bridge->name);
1504     free_info(&info);
1505 }
1506
1507 static void
1508 cmd_list_ifaces(struct vsctl_context *ctx)
1509 {
1510     struct vsctl_bridge *br;
1511     struct shash_node *node;
1512     struct vsctl_info info;
1513     struct svec ifaces;
1514
1515     get_info(ctx->ovs, &info);
1516     br = find_bridge(&info, ctx->argv[1], true);
1517
1518     svec_init(&ifaces);
1519     SHASH_FOR_EACH (node, &info.ifaces) {
1520         struct vsctl_iface *iface = node->data;
1521
1522         if (strcmp(iface->iface_cfg->name, br->name)
1523             && br == iface->port->bridge) {
1524             svec_add(&ifaces, iface->iface_cfg->name);
1525         }
1526     }
1527     output_sorted(&ifaces, &ctx->output);
1528     svec_destroy(&ifaces);
1529
1530     free_info(&info);
1531 }
1532
1533 static void
1534 cmd_iface_to_br(struct vsctl_context *ctx)
1535 {
1536     struct vsctl_iface *iface;
1537     struct vsctl_info info;
1538
1539     get_info(ctx->ovs, &info);
1540     iface = find_iface(&info, ctx->argv[1], true);
1541     ds_put_format(&ctx->output, "%s\n", iface->port->bridge->name);
1542     free_info(&info);
1543 }
1544
1545 /* Print targets of the 'n_controllers' in 'controllers' on the output for
1546  * 'ctx'. */
1547 static void
1548 print_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
1568 static void
1569 cmd_get_controller(struct vsctl_context *ctx)
1570 {
1571     struct vsctl_info info;
1572
1573     get_info(ctx->ovs, &info);
1574
1575     if (ctx->argc == 1 || !strcmp(ctx->argv[1], "default")) {
1576         print_controllers(ctx, info.ctrl, info.n_ctrl);
1577     } else {
1578         struct vsctl_bridge *br = find_bridge(&info, ctx->argv[1], true);
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);
1583         }
1584     }
1585
1586     free_info(&info);
1587 }
1588
1589 static void
1590 delete_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
1600 static void
1601 cmd_del_controller(struct vsctl_context *ctx)
1602 {
1603     struct vsctl_info info;
1604
1605     get_info(ctx->ovs, &info);
1606
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);
1611         }
1612     } else {
1613         struct vsctl_bridge *br = find_real_bridge(&info, ctx->argv[1], true);
1614         if (br->ctrl) {
1615             delete_controllers(br->ctrl, br->n_ctrl);
1616             ovsrec_bridge_set_controller(br->br_cfg, NULL, 0);
1617         }
1618     }
1619
1620     free_info(&info);
1621 }
1622
1623 static struct ovsrec_controller **
1624 insert_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
1638 static void
1639 set_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
1650 static void
1651 cmd_set_controller(struct vsctl_context *ctx)
1652 {
1653     struct vsctl_info info;
1654
1655     get_info(ctx->ovs, &info);
1656
1657     if (ctx->argc == 2) {
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);
1663     } else {
1664         /* Set one or more controllers for a particular bridge. */
1665         struct vsctl_bridge *br = find_real_bridge(&info, ctx->argv[1], true);
1666         struct ovsrec_controller **controllers;
1667         size_t n;
1668
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);
1675     }
1676
1677     free_info(&info);
1678 }
1679
1680 static const char *
1681 get_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
1701 static void
1702 cmd_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
1709     if (ctx->argc == 1 || !strcmp(ctx->argv[1], "default")) {
1710         /* Return the fail-mode from the "Open_vSwitch" table */
1711         fail_mode = get_fail_mode(info.ctrl, info.n_ctrl);
1712     } else {
1713         /* Return the fail-mode for a particular bridge. */
1714         struct vsctl_bridge *br = find_bridge(&info, ctx->argv[1], true);
1715
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));
1721     }
1722
1723     if (fail_mode && strlen(fail_mode)) {
1724         ds_put_format(&ctx->output, "%s\n", fail_mode);
1725     }
1726
1727     free_info(&info);
1728 }
1729
1730 static void
1731 set_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
1741 static void
1742 cmd_del_fail_mode(struct vsctl_context *ctx)
1743 {
1744     struct vsctl_info info;
1745
1746     get_info(ctx->ovs, &info);
1747
1748     if (ctx->argc == 1 || !strcmp(ctx->argv[1], "default")) {
1749         set_fail_mode(info.ctrl, info.n_ctrl, NULL);
1750     } else {
1751         struct vsctl_bridge *br = find_real_bridge(&info, ctx->argv[1], true);
1752
1753         set_fail_mode(br->ctrl, br->n_ctrl, NULL);
1754     }
1755
1756     free_info(&info);
1757 }
1758
1759 static void
1760 cmd_set_fail_mode(struct vsctl_context *ctx)
1761 {
1762     struct vsctl_info info;
1763     const char *bridge;
1764     const char *fail_mode;
1765
1766     get_info(ctx->ovs, &info);
1767
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     }
1775
1776     if (strcmp(fail_mode, "standalone") && strcmp(fail_mode, "secure")) {
1777         vsctl_fatal("fail-mode must be \"standalone\" or \"secure\"");
1778     }
1779
1780     if (!strcmp(bridge, "default")) {
1781         /* Set the fail-mode in the "Open_vSwitch" table. */
1782         if (!info.ctrl) {
1783             vsctl_fatal("no controller declared");
1784         }
1785         set_fail_mode(info.ctrl, info.n_ctrl, fail_mode);
1786     } else {
1787         struct vsctl_bridge *br = find_real_bridge(&info, bridge, true);
1788
1789         if (!br->ctrl) {
1790             vsctl_fatal("no controller declared for %s", br->name);
1791         }
1792         set_fail_mode(br->ctrl, br->n_ctrl, fail_mode);
1793     }
1794
1795     free_info(&info);
1796 }
1797
1798 static void
1799 cmd_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
1812 static void
1813 cmd_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
1823 static void
1824 cmd_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     }
1832     ssl = ovsrec_ssl_insert(ctx->txn);
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 }
1842 \f
1843 /* Parameter commands. */
1844
1845 struct 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
1851 struct vsctl_table_class {
1852     struct ovsdb_idl_table_class *class;
1853     struct vsctl_row_id row_ids[2];
1854 };
1855
1856 static const struct vsctl_table_class tables[] = {
1857     {&ovsrec_table_bridge,
1858      {{&ovsrec_table_bridge, &ovsrec_bridge_col_name, NULL},
1859       {NULL, NULL, NULL}}},
1860
1861     {&ovsrec_table_controller,
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
1869     {&ovsrec_table_interface,
1870      {{&ovsrec_table_interface, &ovsrec_interface_col_name, NULL},
1871       {NULL, NULL, NULL}}},
1872
1873     {&ovsrec_table_mirror,
1874      {{&ovsrec_table_mirror, &ovsrec_mirror_col_name, NULL},
1875       {NULL, NULL, NULL}}},
1876
1877     {&ovsrec_table_netflow,
1878      {{&ovsrec_table_bridge,
1879        &ovsrec_bridge_col_name,
1880        &ovsrec_bridge_col_netflow},
1881       {NULL, NULL, NULL}}},
1882
1883     {&ovsrec_table_open_vswitch,
1884      {{&ovsrec_table_open_vswitch, NULL, NULL},
1885       {NULL, NULL, NULL}}},
1886
1887     {&ovsrec_table_port,
1888      {{&ovsrec_table_port, &ovsrec_port_col_name, NULL},
1889       {NULL, NULL, NULL}}},
1890
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
1899     {&ovsrec_table_ssl,
1900      {{&ovsrec_table_open_vswitch, NULL, &ovsrec_open_vswitch_col_ssl}}},
1901
1902     {&ovsrec_table_sflow,
1903      {{&ovsrec_table_bridge,
1904        &ovsrec_bridge_col_name,
1905        &ovsrec_bridge_col_sflow},
1906       {NULL, NULL, NULL}}},
1907
1908     {NULL, {{NULL, NULL, NULL}, {NULL, NULL, NULL}}}
1909 };
1910
1911 static void
1912 die_if_error(char *error)
1913 {
1914     if (error) {
1915         vsctl_fatal("%s", error);
1916     }
1917 }
1918
1919 static int
1920 to_lower_and_underscores(unsigned c)
1921 {
1922     return c == '-' ? '_' : tolower(c);
1923 }
1924
1925 static unsigned int
1926 score_partial_match(const char *name, const char *s)
1927 {
1928     int score;
1929
1930     if (!strcmp(name, s)) {
1931         return UINT_MAX;
1932     }
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') {
1937             return UINT_MAX - 1;
1938         }
1939     }
1940     return *s == '\0' ? score : 0;
1941 }
1942
1943 static const struct vsctl_table_class *
1944 get_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) {
1963         vsctl_fatal("multiple table names match \"%s\"", table_name);
1964     } else {
1965         vsctl_fatal("unknown table \"%s\"", table_name);
1966     }
1967 }
1968
1969 static const struct ovsdb_idl_row *
1970 get_row_by_id(struct vsctl_context *ctx, const struct vsctl_table_class *table,
1971               const struct vsctl_row_id *id, const char *record_id)
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;
1989
1990         referrer = NULL;
1991         for (row = ovsdb_idl_first_row(ctx->idl, id->table);
1992              row != NULL;
1993              row = ovsdb_idl_next_row(row))
1994         {
1995             const struct ovsdb_datum *name;
1996
1997             name = ovsdb_idl_get(row, id->name_column,
1998                                  OVSDB_TYPE_STRING, OVSDB_TYPE_VOID);
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);
2003                 }
2004                 referrer = row;
2005             }
2006         }
2007     }
2008     if (!referrer) {
2009         return NULL;
2010     }
2011
2012     final = NULL;
2013     if (id->uuid_column) {
2014         const struct ovsdb_datum *uuid;
2015
2016         uuid = ovsdb_idl_get(referrer, id->uuid_column,
2017                              OVSDB_TYPE_UUID, OVSDB_TYPE_VOID);
2018         if (uuid->n == 1) {
2019             final = ovsdb_idl_get_row_for_uuid(ctx->idl, table->class,
2020                                                &uuid->keys[0].uuid);
2021         }
2022     } else {
2023         final = referrer;
2024     }
2025
2026     return final;
2027 }
2028
2029 static const struct ovsdb_idl_row *
2030 get_row (struct vsctl_context *ctx,
2031          const struct vsctl_table_class *table, const char *record_id)
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++) {
2042             row = get_row_by_id(ctx, table, &table->row_ids[i], record_id);
2043             if (row) {
2044                 break;
2045             }
2046         }
2047     }
2048     return row;
2049 }
2050
2051 static const struct ovsdb_idl_row *
2052 must_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);
2056     if (!row) {
2057         vsctl_fatal("no row \"%s\" in table %s",
2058                     record_id, table->class->name);
2059     }
2060     return row;
2061 }
2062
2063 static char *
2064 get_column(const struct vsctl_table_class *table, const char *column_name,
2065            const struct ovsdb_idl_column **columnp)
2066 {
2067     const struct ovsdb_idl_column *best_match = NULL;
2068     unsigned int best_score = 0;
2069     size_t i;
2070
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;
2079         }
2080     }
2081
2082     *columnp = best_match;
2083     if (best_match) {
2084         return NULL;
2085     } else if (best_score) {
2086         return xasprintf("%s contains more than one column whose name "
2087                          "matches \"%s\"", table->class->name, column_name);
2088     } else {
2089         return xasprintf("%s does not contain a column whose name matches "
2090                          "\"%s\"", table->class->name, column_name);
2091     }
2092 }
2093
2094 static char *
2095 missing_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. */
2140 static char * WARN_UNUSED_RESULT
2141 parse_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)
2147 {
2148     const char *p = arg;
2149     char *error;
2150
2151     assert(columnp || keyp);
2152     assert(!(operatorp && !valuep));
2153     if (keyp) {
2154         *keyp = NULL;
2155     }
2156     if (valuep) {
2157         *valuep = NULL;
2158     }
2159
2160     /* Parse column name. */
2161     if (columnp) {
2162         char *column_name;
2163
2164         error = ovsdb_token_parse(&p, &column_name);
2165         if (error) {
2166             goto error;
2167         }
2168         if (column_name[0] == '\0') {
2169             free(column_name);
2170             error = xasprintf("%s: missing column name", arg);
2171             goto error;
2172         }
2173         error = get_column(table, column_name, columnp);
2174         free(column_name);
2175         if (error) {
2176             goto error;
2177         }
2178     }
2179
2180     /* Parse key string. */
2181     if (*p == ':' || !columnp) {
2182         if (columnp) {
2183             p++;
2184         } else if (!keyp) {
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;
2191         }
2192     } else if (keyp) {
2193         *keyp = NULL;
2194     }
2195
2196     /* Parse value string. */
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
2214             if (op_len > best_len && !strncmp(op, p, op_len) && p[op_len]) {
2215                 best_len = op_len;
2216                 best = op;
2217             }
2218         }
2219         if (!best) {
2220             error = missing_operator_error(arg, allowed_operators, n_allowed);
2221             goto error;
2222         }
2223
2224         if (operatorp) {
2225             *operatorp = best;
2226         }
2227         *valuep = xstrdup(p + best_len);
2228     } else {
2229         if (valuep) {
2230             *valuep = NULL;
2231         }
2232         if (*p != '\0') {
2233             error = xasprintf("%s: trailing garbage \"%s\" in argument",
2234                               arg, p);
2235             goto error;
2236         }
2237     }
2238     return NULL;
2239
2240 error:
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;
2251         if (operatorp) {
2252             *operatorp = NULL;
2253         }
2254     }
2255     return error;
2256 }
2257
2258 static void
2259 cmd_get(struct vsctl_context *ctx)
2260 {
2261     bool if_exists = shash_find(&ctx->options, "--if-exists");
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);
2270     row = must_get_row(ctx, table, record_id);
2271     for (i = 3; i < ctx->argc; i++) {
2272         const struct ovsdb_idl_column *column;
2273         const struct ovsdb_datum *datum;
2274         char *key_string;
2275
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
2285         die_if_error(parse_column_key_value(ctx->argv[i], table,
2286                                             &column, &key_string,
2287                                             NULL, NULL, 0, NULL));
2288
2289         datum = ovsdb_idl_read(row, column);
2290         if (key_string) {
2291             union ovsdb_atom key;
2292             unsigned int idx;
2293
2294             if (column->type.value.type == OVSDB_TYPE_VOID) {
2295                 vsctl_fatal("cannot specify key to get for non-map column %s",
2296                             column->name);
2297             }
2298
2299             die_if_error(ovsdb_atom_from_string(&key,
2300                                                 &column->type.key,
2301                                                 key_string, ctx->symtab));
2302
2303             idx = ovsdb_datum_find_key(datum, &key,
2304                                        column->type.key.type);
2305             if (idx == UINT_MAX) {
2306                 if (!if_exists) {
2307                     vsctl_fatal("no key \"%s\" in %s record \"%s\" column %s",
2308                                 key_string, table->class->name, record_id,
2309                                 column->name);
2310                 }
2311             } else {
2312                 ovsdb_atom_to_string(&datum->values[idx],
2313                                      column->type.value.type, out);
2314             }
2315             ovsdb_atom_destroy(&key, column->type.key.type);
2316         } else {
2317             ovsdb_datum_to_string(datum, &column->type, out);
2318         }
2319         ds_put_char(out, '\n');
2320
2321         free(key_string);
2322     }
2323 }
2324
2325 static void
2326 list_record(const struct vsctl_table_class *table,
2327             const struct ovsdb_idl_row *row, struct ds *out)
2328 {
2329     size_t i;
2330
2331     ds_put_format(out, "%-20s: "UUID_FMT"\n", "_uuid",
2332                   UUID_ARGS(&row->uuid));
2333     for (i = 0; i < table->class->n_columns; i++) {
2334         const struct ovsdb_idl_column *column = &table->class->columns[i];
2335         const struct ovsdb_datum *datum;
2336
2337         datum = ovsdb_idl_read(row, column);
2338
2339         ds_put_format(out, "%-20s: ", column->name);
2340         ovsdb_datum_to_string(datum, &column->type, out);
2341         ds_put_char(out, '\n');
2342     }
2343 }
2344
2345 static void
2346 cmd_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             }
2359             list_record(table, must_get_row(ctx, table, ctx->argv[i]), out);
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
2376 static void
2377 set_column(const struct vsctl_table_class *table,
2378            const struct ovsdb_idl_row *row, const char *arg,
2379            struct ovsdb_symbol_table *symtab)
2380 {
2381     const struct ovsdb_idl_column *column;
2382     char *key_string, *value_string;
2383     char *error;
2384
2385     error = parse_column_key_value(arg, table, &column, &key_string,
2386                                    NULL, NULL, 0, &value_string);
2387     die_if_error(error);
2388     if (!value_string) {
2389         vsctl_fatal("%s: missing value", arg);
2390     }
2391
2392     if (key_string) {
2393         union ovsdb_atom key, value;
2394         struct ovsdb_datum datum;
2395
2396         if (column->type.value.type == OVSDB_TYPE_VOID) {
2397             vsctl_fatal("cannot specify key to set for non-map column %s",
2398                         column->name);
2399         }
2400
2401         die_if_error(ovsdb_atom_from_string(&key, &column->type.key,
2402                                             key_string, symtab));
2403         die_if_error(ovsdb_atom_from_string(&value, &column->type.value,
2404                                             value_string, symtab));
2405
2406         ovsdb_datum_init_empty(&datum);
2407         ovsdb_datum_add_unsafe(&datum, &key, &value, &column->type);
2408
2409         ovsdb_atom_destroy(&key, column->type.key.type);
2410         ovsdb_atom_destroy(&value, column->type.value.type);
2411
2412         ovsdb_datum_union(&datum, ovsdb_idl_read(row, column),
2413                           &column->type, false);
2414         ovsdb_idl_txn_write(row, column, &datum);
2415     } else {
2416         struct ovsdb_datum datum;
2417
2418         die_if_error(ovsdb_datum_from_string(&datum, &column->type,
2419                                              value_string, symtab));
2420         ovsdb_idl_txn_write(row, column, &datum);
2421     }
2422
2423     free(key_string);
2424     free(value_string);
2425 }
2426
2427 static void
2428 cmd_set(struct vsctl_context *ctx)
2429 {
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;
2435
2436     table = get_table(table_name);
2437     row = must_get_row(ctx, table, record_id);
2438     for (i = 3; i < ctx->argc; i++) {
2439         set_column(table, row, ctx->argv[i], ctx->symtab);
2440     }
2441 }
2442
2443 static void
2444 cmd_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;
2450     const struct ovsdb_idl_column *column;
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);
2457     row = must_get_row(ctx, table, record_id);
2458     die_if_error(get_column(table, column_name, &column));
2459
2460     type = &column->type;
2461     ovsdb_datum_clone(&old, ovsdb_idl_read(row, column), &column->type);
2462     for (i = 4; i < ctx->argc; i++) {
2463         struct ovsdb_type add_type;
2464         struct ovsdb_datum add;
2465
2466         add_type = *type;
2467         add_type.n_min = 1;
2468         add_type.n_max = UINT_MAX;
2469         die_if_error(ovsdb_datum_from_string(&add, &add_type, ctx->argv[i],
2470                                              ctx->symtab));
2471         ovsdb_datum_union(&old, &add, type, false);
2472         ovsdb_datum_destroy(&add, type);
2473     }
2474     if (old.n > type->n_max) {
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,
2478                     type->value.type == OVSDB_TYPE_VOID ? "values" : "pairs",
2479                     column->name, table->class->name, type->n_max);
2480     }
2481     ovsdb_idl_txn_write(row, column, &old);
2482 }
2483
2484 static void
2485 cmd_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;
2491     const struct ovsdb_idl_column *column;
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);
2498     row = must_get_row(ctx, table, record_id);
2499     die_if_error(get_column(table, column_name, &column));
2500
2501     type = &column->type;
2502     ovsdb_datum_clone(&old, ovsdb_idl_read(row, column), &column->type);
2503     for (i = 4; i < ctx->argc; i++) {
2504         struct ovsdb_type rm_type;
2505         struct ovsdb_datum rm;
2506         char *error;
2507
2508         rm_type = *type;
2509         rm_type.n_min = 1;
2510         rm_type.n_max = UINT_MAX;
2511         error = ovsdb_datum_from_string(&rm, &rm_type,
2512                                         ctx->argv[i], ctx->symtab);
2513         if (error && ovsdb_type_is_map(&rm_type)) {
2514             free(error);
2515             rm_type.value.type = OVSDB_TYPE_VOID;
2516             die_if_error(ovsdb_datum_from_string(&rm, &rm_type,
2517                                                  ctx->argv[i], ctx->symtab));
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) {
2523         vsctl_fatal("\"remove\" operation would put %u %s in column %s of "
2524                     "table %s but the minimum number is %u",
2525                     old.n,
2526                     type->value.type == OVSDB_TYPE_VOID ? "values" : "pairs",
2527                     column->name, table->class->name, type->n_min);
2528     }
2529     ovsdb_idl_txn_write(row, column, &old);
2530 }
2531
2532 static void
2533 cmd_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);
2542     row = must_get_row(ctx, table, record_id);
2543     for (i = 3; i < ctx->argc; i++) {
2544         const struct ovsdb_idl_column *column;
2545         const struct ovsdb_type *type;
2546         struct ovsdb_datum datum;
2547
2548         die_if_error(get_column(table, ctx->argv[i], &column));
2549
2550         type = &column->type;
2551         if (type->n_min > 0) {
2552             vsctl_fatal("\"clear\" operation cannot be applied to column %s "
2553                         "of table %s, which is not allowed to be empty",
2554                         column->name, table->class->name);
2555         }
2556
2557         ovsdb_datum_init_empty(&datum);
2558         ovsdb_idl_txn_write(row, column, &datum);
2559     }
2560 }
2561
2562 static void
2563 cmd_create(struct vsctl_context *ctx)
2564 {
2565     const char *id = shash_find_data(&ctx->options, "--id");
2566     const char *table_name = ctx->argv[1];
2567     const struct vsctl_table_class *table;
2568     const struct ovsdb_idl_row *row;
2569     const struct uuid *uuid;
2570     int i;
2571
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
2591     table = get_table(table_name);
2592     row = ovsdb_idl_txn_insert(ctx->txn, table->class, uuid);
2593     for (i = 2; i < ctx->argc; i++) {
2594         set_column(table, row, ctx->argv[i], ctx->symtab);
2595     }
2596     ds_put_format(&ctx->output, UUID_FMT, UUID_ARGS(&row->uuid));
2597 }
2598
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. */
2608 static void
2609 post_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
2623 static void
2624 cmd_destroy(struct vsctl_context *ctx)
2625 {
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
2631     table = get_table(table_name);
2632     for (i = 2; i < ctx->argc; i++) {
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 }
2641
2642 static bool
2643 is_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;
2652     const struct ovsdb_datum *have_datum;
2653     char *key_string, *value_string;
2654     const char *operator;
2655     unsigned int idx;
2656     char *error;
2657     int cmp = 0;
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
2667     have_datum = ovsdb_idl_read(row, column);
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
2681         idx = ovsdb_datum_find_key(have_datum,
2682                                    &want_key, column->type.key.type);
2683         if (idx != UINT_MAX) {
2684             cmp = ovsdb_atom_compare_3way(&have_datum->values[idx],
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;
2697         cmp = ovsdb_datum_compare_3way(have_datum, &want_datum,
2698                                        &column->type);
2699         ovsdb_datum_destroy(&want_datum, &column->type);
2700     }
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
2715 static void
2716 cmd_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
2726     row = get_row(ctx, table, record_id);
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 }
2739 \f
2740 static struct json *
2741 where_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
2754 static void
2755 vsctl_context_init(struct vsctl_context *ctx, struct vsctl_command *command,
2756                    struct ovsdb_idl *idl, struct ovsdb_idl_txn *txn,
2757                    const struct ovsrec_open_vswitch *ovs,
2758     struct ovsdb_symbol_table *symtab)
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;
2768     ctx->symtab = symtab;
2769
2770     ctx->try_again = false;
2771 }
2772
2773 static void
2774 vsctl_context_done(struct vsctl_context *ctx, struct vsctl_command *command)
2775 {
2776     ds_swap(&ctx->output, &command->output);
2777 }
2778
2779 static void
2780 do_vsctl(const char *args, struct vsctl_command *commands, size_t n_commands,
2781          struct ovsdb_idl *idl)
2782 {
2783     struct ovsdb_idl_txn *txn;
2784     const struct ovsrec_open_vswitch *ovs;
2785     enum ovsdb_idl_txn_status status;
2786     struct ovsdb_symbol_table *symtab;
2787     const char *unused;
2788     struct vsctl_command *c;
2789     int64_t next_cfg = 0;
2790     char *error = NULL;
2791
2792     txn = the_idl_txn = ovsdb_idl_txn_create(idl);
2793     if (dry_run) {
2794         ovsdb_idl_txn_set_dry_run(txn);
2795     }
2796
2797     ovsdb_idl_txn_add_comment(txn, "ovs-vsctl: %s", args);
2798
2799     ovs = ovsrec_open_vswitch_first(idl);
2800     if (!ovs) {
2801         /* XXX add verification that table is empty */
2802         ovs = ovsrec_open_vswitch_insert(txn);
2803     }
2804
2805     if (wait_for_reload) {
2806         struct json *where = where_uuid_equals(&ovs->header_.uuid);
2807         ovsdb_idl_txn_increment(txn, "Open_vSwitch", "next_cfg", where);
2808         json_destroy(where);
2809     }
2810
2811     symtab = ovsdb_symbol_table_create();
2812     for (c = commands; c < &commands[n_commands]; c++) {
2813         ds_init(&c->output);
2814     }
2815     for (c = commands; c < &commands[n_commands]; c++) {
2816         struct vsctl_context ctx;
2817
2818         vsctl_context_init(&ctx, c, idl, txn, ovs, symtab);
2819         (c->syntax->run)(&ctx);
2820         vsctl_context_done(&ctx, c);
2821
2822         if (ctx.try_again) {
2823             goto try_again;
2824         }
2825     }
2826
2827     status = ovsdb_idl_txn_commit_block(txn);
2828     if (wait_for_reload && status == TXN_SUCCESS) {
2829         next_cfg = ovsdb_idl_txn_get_increment_new_value(txn);
2830     }
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
2836                 vsctl_context_init(&ctx, c, idl, txn, ovs, symtab);
2837                 (c->syntax->postprocess)(&ctx);
2838                 vsctl_context_done(&ctx, c);
2839             }
2840         }
2841     }
2842     error = xstrdup(ovsdb_idl_txn_get_error(txn));
2843     ovsdb_idl_txn_destroy(txn);
2844     the_idl_txn = NULL;
2845
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     }
2851
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(). */
2858         vsctl_fatal("transaction aborted");
2859
2860     case TXN_UNCHANGED:
2861     case TXN_SUCCESS:
2862         break;
2863
2864     case TXN_TRY_AGAIN:
2865         goto try_again;
2866
2867     case TXN_ERROR:
2868         vsctl_fatal("transaction error: %s", error);
2869
2870     default:
2871         NOT_REACHED();
2872     }
2873     free(error);
2874
2875     ovsdb_symbol_table_destroy(symtab);
2876
2877     for (c = commands; c < &commands[n_commands]; c++) {
2878         struct ds *ds = &c->output;
2879         struct shash_node *node;
2880
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         }
2904         ds_destroy(&c->output);
2905
2906         SHASH_FOR_EACH (node, &c->options) {
2907             free(node->data);
2908         }
2909         shash_destroy(&c->options);
2910     }
2911     free(commands);
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     }
2928     ovsdb_idl_destroy(idl);
2929
2930     exit(EXIT_SUCCESS);
2931
2932 try_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);
2942 }
2943
2944 static const struct vsctl_command_syntax all_commands[] = {
2945     /* Open vSwitch commands. */
2946     {"init", 0, 0, cmd_init, NULL, ""},
2947
2948     /* Bridge commands. */
2949     {"add-br", 1, 3, cmd_add_br, NULL, "--may-exist"},
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, ""},
2957
2958     /* Port commands. */
2959     {"list-ports", 1, 1, cmd_list_ports, NULL, ""},
2960     {"add-port", 2, INT_MAX, cmd_add_port, NULL, "--may-exist"},
2961     {"add-bond", 4, INT_MAX, cmd_add_bond, NULL, "--may-exist,--fake-iface"},
2962     {"del-port", 1, 2, cmd_del_port, NULL, "--if-exists,--with-iface"},
2963     {"port-to-br", 1, 1, cmd_port_to_br, NULL, ""},
2964
2965     /* Interface commands. */
2966     {"list-ifaces", 1, 1, cmd_list_ifaces, NULL, ""},
2967     {"iface-to-br", 1, 1, cmd_iface_to_br, NULL, ""},
2968
2969     /* Controller commands. */
2970     {"get-controller", 0, 1, cmd_get_controller, NULL, ""},
2971     {"del-controller", 0, 1, cmd_del_controller, NULL, ""},
2972     {"set-controller", 1, INT_MAX, cmd_set_controller, NULL, ""},
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, ""},
2976
2977     /* SSL commands. */
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"},
2981
2982     /* Switch commands. */
2983     {"emer-reset", 0, 0, cmd_emer_reset, NULL, ""},
2984
2985     /* Parameter commands. */
2986     {"get", 3, INT_MAX, cmd_get, NULL, "--if-exists"},
2987     {"list", 1, INT_MAX, cmd_list, NULL, ""},
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, ""},
2992     {"create", 2, INT_MAX, cmd_create, post_create, "--id="},
2993     {"destroy", 1, INT_MAX, cmd_destroy, NULL, "--if-exists"},
2994     {"wait-until", 2, INT_MAX, cmd_wait_until, NULL, ""},
2995
2996     {NULL, 0, 0, NULL, NULL, NULL},
2997 };
2998