ovs-vsctl: Make "ovs-vsctl get <table> <record> _uuid" work.
[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     int trials;
126
127     set_program_name(argv[0]);
128     signal(SIGPIPE, SIG_IGN);
129     time_init();
130     vlog_init();
131     vlog_set_levels(VLM_ANY_MODULE, VLF_CONSOLE, VLL_WARN);
132     vlog_set_levels(VLM_reconnect, VLF_ANY_FACILITY, VLL_WARN);
133     ovsrec_init();
134
135     /* Log our arguments.  This is often valuable for debugging systems. */
136     args = process_escape_args(argv);
137     VLOG_INFO("Called as %s", args);
138
139     /* Parse command line. */
140     parse_options(argc, argv);
141     commands = parse_commands(argc - optind, argv + optind, &n_commands);
142
143     if (timeout) {
144         time_alarm(timeout);
145     }
146
147     /* Now execute the commands. */
148     idl = the_idl = ovsdb_idl_create(db, &ovsrec_idl_class);
149     trials = 0;
150     for (;;) {
151         if (ovsdb_idl_run(idl)) {
152             if (++trials > 5) {
153                 vsctl_fatal("too many database inconsistency failures");
154             }
155             do_vsctl(args, commands, n_commands, idl);
156         }
157
158         ovsdb_idl_wait(idl);
159         poll_block();
160     }
161 }
162
163 static void
164 parse_options(int argc, char *argv[])
165 {
166     enum {
167         OPT_DB = UCHAR_MAX + 1,
168         OPT_ONELINE,
169         OPT_NO_SYSLOG,
170         OPT_NO_WAIT,
171         OPT_DRY_RUN,
172         OPT_PEER_CA_CERT,
173         VLOG_OPTION_ENUMS
174     };
175     static struct option long_options[] = {
176         {"db", required_argument, 0, OPT_DB},
177         {"no-syslog", no_argument, 0, OPT_NO_SYSLOG},
178         {"no-wait", no_argument, 0, OPT_NO_WAIT},
179         {"dry-run", no_argument, 0, OPT_DRY_RUN},
180         {"oneline", no_argument, 0, OPT_ONELINE},
181         {"timeout", required_argument, 0, 't'},
182         {"help", no_argument, 0, 'h'},
183         {"version", no_argument, 0, 'V'},
184         VLOG_LONG_OPTIONS,
185 #ifdef HAVE_OPENSSL
186         STREAM_SSL_LONG_OPTIONS
187         {"peer-ca-cert", required_argument, 0, OPT_PEER_CA_CERT},
188 #endif
189         {0, 0, 0, 0},
190     };
191
192
193     for (;;) {
194         int c;
195
196         c = getopt_long(argc, argv, "+v::hVt:", long_options, NULL);
197         if (c == -1) {
198             break;
199         }
200
201         switch (c) {
202         case OPT_DB:
203             db = optarg;
204             break;
205
206         case OPT_ONELINE:
207             oneline = true;
208             break;
209
210         case OPT_NO_SYSLOG:
211             vlog_set_levels(VLM_vsctl, VLF_SYSLOG, VLL_WARN);
212             break;
213
214         case OPT_NO_WAIT:
215             wait_for_reload = false;
216             break;
217
218         case OPT_DRY_RUN:
219             dry_run = true;
220             break;
221
222         case 'h':
223             usage();
224
225         case 'V':
226             OVS_PRINT_VERSION(0, 0);
227             exit(EXIT_SUCCESS);
228
229         case 't':
230             timeout = strtoul(optarg, NULL, 10);
231             if (timeout < 0) {
232                 vsctl_fatal("value %s on -t or --timeout is invalid",
233                             optarg);
234             }
235             break;
236
237         VLOG_OPTION_HANDLERS
238
239 #ifdef HAVE_OPENSSL
240         STREAM_SSL_OPTION_HANDLERS
241
242         case OPT_PEER_CA_CERT:
243             stream_ssl_set_peer_ca_cert_file(optarg);
244             break;
245 #endif
246
247         case '?':
248             exit(EXIT_FAILURE);
249
250         default:
251             abort();
252         }
253     }
254
255     if (!db) {
256         db = default_db();
257     }
258 }
259
260 static struct vsctl_command *
261 parse_commands(int argc, char *argv[], size_t *n_commandsp)
262 {
263     struct vsctl_command *commands;
264     size_t n_commands, allocated_commands;
265     int i, start;
266
267     commands = NULL;
268     n_commands = allocated_commands = 0;
269
270     for (start = i = 0; i <= argc; i++) {
271         if (i == argc || !strcmp(argv[i], "--")) {
272             if (i > start) {
273                 if (n_commands >= allocated_commands) {
274                     struct vsctl_command *c;
275
276                     commands = x2nrealloc(commands, &allocated_commands,
277                                           sizeof *commands);
278                     for (c = commands; c < &commands[n_commands]; c++) {
279                         shash_moved(&c->options);
280                     }
281                 }
282                 parse_command(i - start, &argv[start],
283                               &commands[n_commands++]);
284             }
285             start = i + 1;
286         }
287     }
288     if (!n_commands) {
289         vsctl_fatal("missing command name (use --help for help)");
290     }
291     *n_commandsp = n_commands;
292     return commands;
293 }
294
295 static void
296 parse_command(int argc, char *argv[], struct vsctl_command *command)
297 {
298     const struct vsctl_command_syntax *p;
299     int i;
300
301     shash_init(&command->options);
302     for (i = 0; i < argc; i++) {
303         const char *option = argv[i];
304         const char *equals;
305         char *key, *value;
306
307         if (option[0] != '-') {
308             break;
309         }
310
311         equals = strchr(option, '=');
312         if (equals) {
313             key = xmemdup0(option, equals - option);
314             value = xstrdup(equals + 1);
315         } else {
316             key = xstrdup(option);
317             value = NULL;
318         }
319
320         if (shash_find(&command->options, key)) {
321             vsctl_fatal("'%s' option specified multiple times", argv[i]);
322         }
323         shash_add_nocopy(&command->options, key, value);
324     }
325     if (i == argc) {
326         vsctl_fatal("missing command name");
327     }
328
329     for (p = all_commands; p->name; p++) {
330         if (!strcmp(p->name, argv[i])) {
331             struct shash_node *node;
332             int n_arg;
333
334             SHASH_FOR_EACH (node, &command->options) {
335                 const char *s = strstr(p->options, node->name);
336                 int end = s ? s[strlen(node->name)] : EOF;
337
338                 if (end != '=' && end != ',' && end != ' ' && end != '\0') {
339                     vsctl_fatal("'%s' command has no '%s' option",
340                                 argv[i], node->name);
341                 }
342                 if ((end == '=') != (node->data != NULL)) {
343                     if (end == '=') {
344                         vsctl_fatal("missing argument to '%s' option on '%s' "
345                                     "command", node->name, argv[i]);
346                     } else {
347                         vsctl_fatal("'%s' option on '%s' does not accept an "
348                                     "argument", node->name, argv[i]);
349                     }
350                 }
351             }
352
353             n_arg = argc - i - 1;
354             if (n_arg < p->min_args) {
355                 vsctl_fatal("'%s' command requires at least %d arguments",
356                             p->name, p->min_args);
357             } else if (n_arg > p->max_args) {
358                 int j;
359
360                 for (j = i + 1; j < argc; j++) {
361                     if (argv[j][0] == '-') {
362                         vsctl_fatal("'%s' command takes at most %d arguments "
363                                     "(note that options must precede command "
364                                     "names and follow a \"--\" argument)",
365                                     p->name, p->max_args);
366                     }
367                 }
368
369                 vsctl_fatal("'%s' command takes at most %d arguments",
370                             p->name, p->max_args);
371             } else {
372                 command->syntax = p;
373                 command->argc = n_arg + 1;
374                 command->argv = &argv[i];
375                 return;
376             }
377         }
378     }
379
380     vsctl_fatal("unknown command '%s'; use --help for help", argv[i]);
381 }
382
383 static void
384 vsctl_fatal(const char *format, ...)
385 {
386     char *message;
387     va_list args;
388
389     va_start(args, format);
390     message = xvasprintf(format, args);
391     va_end(args);
392
393     vlog_set_levels(VLM_vsctl, VLF_CONSOLE, VLL_EMER);
394     VLOG_ERR("%s", message);
395     ovs_error(0, "%s", message);
396     vsctl_exit(EXIT_FAILURE);
397 }
398
399 /* Frees the current transaction and the underlying IDL and then calls
400  * exit(status).
401  *
402  * Freeing the transaction and the IDL is not strictly necessary, but it makes
403  * for a clean memory leak report from valgrind in the normal case.  That makes
404  * it easier to notice real memory leaks. */
405 static void
406 vsctl_exit(int status)
407 {
408     if (the_idl_txn) {
409         ovsdb_idl_txn_abort(the_idl_txn);
410         ovsdb_idl_txn_destroy(the_idl_txn);
411     }
412     ovsdb_idl_destroy(the_idl);
413     exit(status);
414 }
415
416 static void
417 usage(void)
418 {
419     printf("\
420 %s: ovs-vswitchd management utility\n\
421 usage: %s [OPTIONS] COMMAND [ARG...]\n\
422 \n\
423 Bridge commands:\n\
424   add-br BRIDGE               create a new bridge named BRIDGE\n\
425   add-br BRIDGE PARENT VLAN   create new fake BRIDGE in PARENT on VLAN\n\
426   del-br BRIDGE               delete BRIDGE and all of its ports\n\
427   list-br                     print the names of all the bridges\n\
428   br-exists BRIDGE            test whether BRIDGE exists\n\
429   br-to-vlan BRIDGE           print the VLAN which BRIDGE is on\n\
430   br-to-parent BRIDGE         print the parent of BRIDGE\n\
431   br-set-external-id BRIDGE KEY VALUE  set KEY on BRIDGE to VALUE\n\
432   br-set-external-id BRIDGE KEY  unset KEY on BRIDGE\n\
433   br-get-external-id BRIDGE KEY  print value of KEY on BRIDGE\n\
434   br-get-external-id BRIDGE  list key-value pairs on BRIDGE\n\
435 \n\
436 Port commands:\n\
437   list-ports BRIDGE           print the names of all the ports on BRIDGE\n\
438   add-port BRIDGE PORT        add network device PORT to BRIDGE\n\
439   add-bond BRIDGE PORT IFACE...  add bonded port PORT in BRIDGE from IFACES\n\
440   del-port [BRIDGE] PORT      delete PORT (which may be bonded) from BRIDGE\n\
441   port-to-br PORT             print name of bridge that contains PORT\n\
442 A bond is considered to be a single port.\n\
443 \n\
444 Interface commands (a bond consists of multiple interfaces):\n\
445   list-ifaces BRIDGE          print the names of all interfaces on BRIDGE\n\
446   iface-to-br IFACE           print name of bridge that contains IFACE\n\
447 \n\
448 Controller commands:\n\
449   get-controller [BRIDGE]     print the controller for BRIDGE\n\
450   del-controller [BRIDGE]     delete the controller for BRIDGE\n\
451   set-controller [BRIDGE] TARGET  set the controller for BRIDGE to TARGET\n\
452   get-fail-mode [BRIDGE]      print the fail-mode for BRIDGE\n\
453   del-fail-mode [BRIDGE]      delete the fail-mode for BRIDGE\n\
454   set-fail-mode [BRIDGE] MODE set the fail-mode for BRIDGE to MODE\n\
455 \n\
456 SSL commands:\n\
457   get-ssl                     print the SSL configuration\n\
458   del-ssl                     delete the SSL configuration\n\
459   set-ssl PRIV-KEY CERT CA-CERT  set the SSL configuration\n\
460 \n\
461 Switch commands:\n\
462   emer-reset                  reset switch to known good state\n\
463 \n\
464 Database commands:\n\
465   list TBL [REC]              list RECord (or all records) in TBL\n\
466   get TBL REC COL[:KEY]       print values of COLumns in RECORD in TBL\n\
467   set TBL REC COL[:KEY]=VALUE set COLumn values in RECord in TBL\n\
468   add TBL REC COL [KEY=]VALUE add (KEY=)VALUE to COLumn in RECord in TBL\n\
469   remove TBL REC COL [KEY=]VALUE  remove (KEY=)VALUE from COLumn\n\
470   clear TBL REC COL           clear values from COLumn in RECord in TBL\n\
471   create TBL COL[:KEY]=VALUE  create and initialize new record\n\
472   destroy TBL REC             delete REC from TBL\n\
473 Potentially unsafe database commands require --force option.\n\
474 \n\
475 Options:\n\
476   --db=DATABASE               connect to DATABASE\n\
477                               (default: %s)\n\
478   --oneline                   print exactly one line of output per command\n",
479            program_name, program_name, default_db());
480     vlog_usage();
481     printf("\n\
482 Other options:\n\
483   -h, --help                  display this help message\n\
484   -V, --version               display version information\n");
485     exit(EXIT_SUCCESS);
486 }
487
488 static char *
489 default_db(void)
490 {
491     static char *def;
492     if (!def) {
493         def = xasprintf("unix:%s/db.sock", ovs_rundir);
494     }
495     return def;
496 }
497 \f
498 struct vsctl_context {
499     /* Read-only. */
500     int argc;
501     char **argv;
502     struct shash options;
503
504     /* Modifiable state. */
505     struct ds output;
506     struct ovsdb_idl *idl;
507     struct ovsdb_idl_txn *txn;
508     struct ovsdb_symbol_table *symtab;
509     const struct ovsrec_open_vswitch *ovs;
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         unsigned int best_score = 0;
1990
1991         /* It might make sense to relax this assertion. */
1992         assert(id->name_column->type.key.type == OVSDB_TYPE_STRING);
1993
1994         referrer = NULL;
1995         for (row = ovsdb_idl_first_row(ctx->idl, id->table);
1996              row != NULL && best_score != UINT_MAX;
1997              row = ovsdb_idl_next_row(row))
1998         {
1999             struct ovsdb_datum name;
2000
2001             ovsdb_idl_txn_read(row, id->name_column, &name);
2002             if (name.n == 1) {
2003                 unsigned int score = score_partial_match(name.keys[0].string,
2004                                                          record_id);
2005                 if (score > best_score) {
2006                     referrer = row;
2007                     best_score = score;
2008                 } else if (score == best_score) {
2009                     referrer = NULL;
2010                 }
2011             }
2012             ovsdb_datum_destroy(&name, &id->name_column->type);
2013         }
2014         if (best_score && !referrer) {
2015             vsctl_fatal("multiple rows in %s match \"%s\"",
2016                         table->class->name, record_id);
2017         }
2018     }
2019     if (!referrer) {
2020         return NULL;
2021     }
2022
2023     final = NULL;
2024     if (id->uuid_column) {
2025         struct ovsdb_datum uuid;
2026
2027         assert(id->uuid_column->type.key.type == OVSDB_TYPE_UUID);
2028         assert(id->uuid_column->type.value.type == OVSDB_TYPE_VOID);
2029
2030         ovsdb_idl_txn_read(referrer, id->uuid_column, &uuid);
2031         if (uuid.n == 1) {
2032             final = ovsdb_idl_get_row_for_uuid(ctx->idl, table->class,
2033                                                &uuid.keys[0].uuid);
2034         }
2035         ovsdb_datum_destroy(&uuid, &id->uuid_column->type);
2036     } else {
2037         final = referrer;
2038     }
2039
2040     return final;
2041 }
2042
2043 static const struct ovsdb_idl_row *
2044 get_row(struct vsctl_context *ctx,
2045         const struct vsctl_table_class *table, const char *record_id)
2046 {
2047     const struct ovsdb_idl_row *row;
2048     struct uuid uuid;
2049
2050     if (uuid_from_string(&uuid, record_id)) {
2051         row = ovsdb_idl_get_row_for_uuid(ctx->idl, table->class, &uuid);
2052     } else {
2053         int i;
2054
2055         for (i = 0; i < ARRAY_SIZE(table->row_ids); i++) {
2056             row = get_row_by_id(ctx, table, &table->row_ids[i], record_id);
2057             if (row) {
2058                 break;
2059             }
2060         }
2061     }
2062     return row;
2063 }
2064
2065 static const struct ovsdb_idl_row *
2066 must_get_row(struct vsctl_context *ctx,
2067              const struct vsctl_table_class *table, const char *record_id)
2068 {
2069     const struct ovsdb_idl_row *row = get_row(ctx, table, record_id);
2070     if (!row) {
2071         vsctl_fatal("no row \"%s\" in table %s",
2072                     record_id, table->class->name);
2073     }
2074     return row;
2075 }
2076
2077 static char *
2078 get_column(const struct vsctl_table_class *table, const char *column_name,
2079            const struct ovsdb_idl_column **columnp)
2080 {
2081     const struct ovsdb_idl_column *best_match = NULL;
2082     unsigned int best_score = 0;
2083     size_t i;
2084
2085     for (i = 0; i < table->class->n_columns; i++) {
2086         const struct ovsdb_idl_column *column = &table->class->columns[i];
2087         unsigned int score = score_partial_match(column->name, column_name);
2088         if (score > best_score) {
2089             best_match = column;
2090             best_score = score;
2091         } else if (score == best_score) {
2092             best_match = NULL;
2093         }
2094     }
2095
2096     *columnp = best_match;
2097     if (best_match) {
2098         return NULL;
2099     } else if (best_score) {
2100         return xasprintf("%s contains more than one column whose name "
2101                          "matches \"%s\"", table->class->name, column_name);
2102     } else {
2103         return xasprintf("%s does not contain a column whose name matches "
2104                          "\"%s\"", table->class->name, column_name);
2105     }
2106 }
2107
2108 static char * WARN_UNUSED_RESULT
2109 parse_column_key_value(const char *arg, const struct vsctl_table_class *table,
2110                        const struct ovsdb_idl_column **columnp,
2111                        char **keyp, char **valuep)
2112 {
2113     const char *p = arg;
2114     char *error;
2115
2116     assert(columnp || keyp);
2117     if (keyp) {
2118         *keyp = NULL;
2119     }
2120     if (valuep) {
2121         *valuep = NULL;
2122     }
2123
2124     /* Parse column name. */
2125     if (columnp) {
2126         char *column_name;
2127
2128         error = ovsdb_token_parse(&p, &column_name);
2129         if (error) {
2130             goto error;
2131         }
2132         if (column_name[0] == '\0') {
2133             free(column_name);
2134             error = xasprintf("%s: missing column name", arg);
2135             goto error;
2136         }
2137         error = get_column(table, column_name, columnp);
2138         free(column_name);
2139         if (error) {
2140             goto error;
2141         }
2142     }
2143
2144     /* Parse key string. */
2145     if (*p == ':' || !columnp) {
2146         if (columnp) {
2147             p++;
2148         } else if (!keyp) {
2149             error = xasprintf("%s: key not accepted here", arg);
2150             goto error;
2151         }
2152         error = ovsdb_token_parse(&p, keyp);
2153         if (error) {
2154             goto error;
2155         }
2156     } else if (keyp) {
2157         *keyp = NULL;
2158     }
2159
2160     /* Parse value string. */
2161     if (*p == '=') {
2162         if (!valuep) {
2163             error = xasprintf("%s: value not accepted here", arg);
2164             goto error;
2165         }
2166         *valuep = xstrdup(p + 1);
2167     } else {
2168         if (valuep) {
2169             *valuep = NULL;
2170         }
2171         if (*p != '\0') {
2172             error = xasprintf("%s: trailing garbage \"%s\" in argument",
2173                               arg, p);
2174             goto error;
2175         }
2176     }
2177     return NULL;
2178
2179 error:
2180     if (columnp) {
2181         *columnp = NULL;
2182     }
2183     if (keyp) {
2184         free(*keyp);
2185         *keyp = NULL;
2186     }
2187     if (valuep) {
2188         free(*valuep);
2189         *valuep = NULL;
2190     }
2191     return error;
2192 }
2193
2194 static void
2195 cmd_get(struct vsctl_context *ctx)
2196 {
2197     bool if_exists = shash_find(&ctx->options, "--if-exists");
2198     const char *table_name = ctx->argv[1];
2199     const char *record_id = ctx->argv[2];
2200     const struct vsctl_table_class *table;
2201     const struct ovsdb_idl_row *row;
2202     struct ds *out = &ctx->output;
2203     int i;
2204
2205     table = get_table(table_name);
2206     row = must_get_row(ctx, table, record_id);
2207     for (i = 3; i < ctx->argc; i++) {
2208         const struct ovsdb_idl_column *column;
2209         struct ovsdb_datum datum;
2210         char *key_string;
2211
2212         /* Special case for obtaining the UUID of a row.  We can't just do this
2213          * through parse_column_key_value() below since it returns a "struct
2214          * ovsdb_idl_column" and the UUID column doesn't have one. */
2215         if (!strcasecmp(ctx->argv[i], "_uuid")
2216             || !strcasecmp(ctx->argv[i], "-uuid")) {
2217             ds_put_format(out, UUID_FMT"\n", UUID_ARGS(&row->uuid));
2218             continue;
2219         }
2220
2221         die_if_error(parse_column_key_value(ctx->argv[i], table,
2222                                             &column, &key_string, NULL));
2223
2224         ovsdb_idl_txn_read(row, column, &datum);
2225         if (key_string) {
2226             union ovsdb_atom key;
2227             unsigned int idx;
2228
2229             if (column->type.value.type == OVSDB_TYPE_VOID) {
2230                 vsctl_fatal("cannot specify key to get for non-map column %s",
2231                             column->name);
2232             }
2233
2234             die_if_error(ovsdb_atom_from_string(&key,
2235                                                 &column->type.key,
2236                                                 key_string, ctx->symtab));
2237
2238             idx = ovsdb_datum_find_key(&datum, &key,
2239                                        column->type.key.type);
2240             if (idx == UINT_MAX) {
2241                 if (!if_exists) {
2242                     vsctl_fatal("no key \"%s\" in %s record \"%s\" column %s",
2243                                 key_string, table->class->name, record_id,
2244                                 column->name);
2245                 }
2246             } else {
2247                 ovsdb_atom_to_string(&datum.values[idx],
2248                                      column->type.value.type, out);
2249             }
2250             ovsdb_atom_destroy(&key, column->type.key.type);
2251         } else {
2252             ovsdb_datum_to_string(&datum, &column->type, out);
2253         }
2254         ds_put_char(out, '\n');
2255         ovsdb_datum_destroy(&datum, &column->type);
2256
2257         free(key_string);
2258     }
2259 }
2260
2261 static void
2262 list_record(const struct vsctl_table_class *table,
2263             const struct ovsdb_idl_row *row, struct ds *out)
2264 {
2265     size_t i;
2266
2267     ds_put_format(out, "%-20s: "UUID_FMT"\n", "_uuid",
2268                   UUID_ARGS(&row->uuid));
2269     for (i = 0; i < table->class->n_columns; i++) {
2270         const struct ovsdb_idl_column *column = &table->class->columns[i];
2271         struct ovsdb_datum datum;
2272
2273         ovsdb_idl_txn_read(row, column, &datum);
2274
2275         ds_put_format(out, "%-20s: ", column->name);
2276         ovsdb_datum_to_string(&datum, &column->type, out);
2277         ds_put_char(out, '\n');
2278
2279         ovsdb_datum_destroy(&datum, &column->type);
2280     }
2281 }
2282
2283 static void
2284 cmd_list(struct vsctl_context *ctx)
2285 {
2286     const char *table_name = ctx->argv[1];
2287     const struct vsctl_table_class *table;
2288     struct ds *out = &ctx->output;
2289     int i;
2290
2291     table = get_table(table_name);
2292     if (ctx->argc > 2) {
2293         for (i = 2; i < ctx->argc; i++) {
2294             if (i > 2) {
2295                 ds_put_char(out, '\n');
2296             }
2297             list_record(table, must_get_row(ctx, table, ctx->argv[i]), out);
2298         }
2299     } else {
2300         const struct ovsdb_idl_row *row;
2301         bool first;
2302
2303         for (row = ovsdb_idl_first_row(ctx->idl, table->class), first = true;
2304              row != NULL;
2305              row = ovsdb_idl_next_row(row), first = false) {
2306             if (!first) {
2307                 ds_put_char(out, '\n');
2308             }
2309             list_record(table, row, out);
2310         }
2311     }
2312 }
2313
2314 static void
2315 set_column(const struct vsctl_table_class *table,
2316            const struct ovsdb_idl_row *row, const char *arg,
2317            struct ovsdb_symbol_table *symtab)
2318 {
2319     const struct ovsdb_idl_column *column;
2320     char *key_string, *value_string;
2321     char *error;
2322
2323     error = parse_column_key_value(arg, table, &column, &key_string,
2324                                    &value_string);
2325     die_if_error(error);
2326     if (!value_string) {
2327         vsctl_fatal("%s: missing value", arg);
2328     }
2329
2330     if (key_string) {
2331         union ovsdb_atom key, value;
2332         struct ovsdb_datum old, new;
2333
2334         if (column->type.value.type == OVSDB_TYPE_VOID) {
2335             vsctl_fatal("cannot specify key to set for non-map column %s",
2336                         column->name);
2337         }
2338
2339         die_if_error(ovsdb_atom_from_string(&key, &column->type.key,
2340                                             key_string, symtab));
2341         die_if_error(ovsdb_atom_from_string(&value, &column->type.value,
2342                                             value_string, symtab));
2343
2344         ovsdb_datum_init_empty(&new);
2345         ovsdb_datum_add_unsafe(&new, &key, &value, &column->type);
2346
2347         ovsdb_atom_destroy(&key, column->type.key.type);
2348         ovsdb_atom_destroy(&value, column->type.value.type);
2349
2350         ovsdb_idl_txn_read(row, column, &old);
2351         ovsdb_datum_union(&old, &new, &column->type, true);
2352         ovsdb_idl_txn_write(row, column, &old);
2353
2354         ovsdb_datum_destroy(&new, &column->type);
2355     } else {
2356         struct ovsdb_datum datum;
2357
2358         die_if_error(ovsdb_datum_from_string(&datum, &column->type,
2359                                              value_string, symtab));
2360         ovsdb_idl_txn_write(row, column, &datum);
2361     }
2362
2363     free(key_string);
2364     free(value_string);
2365 }
2366
2367 static void
2368 cmd_set(struct vsctl_context *ctx)
2369 {
2370     const char *table_name = ctx->argv[1];
2371     const char *record_id = ctx->argv[2];
2372     const struct vsctl_table_class *table;
2373     const struct ovsdb_idl_row *row;
2374     int i;
2375
2376     table = get_table(table_name);
2377     row = must_get_row(ctx, table, record_id);
2378     for (i = 3; i < ctx->argc; i++) {
2379         set_column(table, row, ctx->argv[i], ctx->symtab);
2380     }
2381 }
2382
2383 static void
2384 cmd_add(struct vsctl_context *ctx)
2385 {
2386     const char *table_name = ctx->argv[1];
2387     const char *record_id = ctx->argv[2];
2388     const char *column_name = ctx->argv[3];
2389     const struct vsctl_table_class *table;
2390     const struct ovsdb_idl_column *column;
2391     const struct ovsdb_idl_row *row;
2392     const struct ovsdb_type *type;
2393     struct ovsdb_datum old;
2394     int i;
2395
2396     table = get_table(table_name);
2397     row = must_get_row(ctx, table, record_id);
2398     die_if_error(get_column(table, column_name, &column));
2399
2400     type = &column->type;
2401     ovsdb_idl_txn_read(row, column, &old);
2402     for (i = 4; i < ctx->argc; i++) {
2403         struct ovsdb_type add_type;
2404         struct ovsdb_datum add;
2405
2406         add_type = *type;
2407         add_type.n_min = 1;
2408         add_type.n_max = UINT_MAX;
2409         die_if_error(ovsdb_datum_from_string(&add, &add_type, ctx->argv[i],
2410                                              ctx->symtab));
2411         ovsdb_datum_union(&old, &add, type, false);
2412         ovsdb_datum_destroy(&add, type);
2413     }
2414     if (old.n > type->n_max) {
2415         vsctl_fatal("\"add\" operation would put %u %s in column %s of "
2416                     "table %s but the maximum number is %u",
2417                     old.n,
2418                     type->value.type == OVSDB_TYPE_VOID ? "values" : "pairs",
2419                     column->name, table->class->name, type->n_max);
2420     }
2421     ovsdb_idl_txn_write(row, column, &old);
2422 }
2423
2424 static void
2425 cmd_remove(struct vsctl_context *ctx)
2426 {
2427     const char *table_name = ctx->argv[1];
2428     const char *record_id = ctx->argv[2];
2429     const char *column_name = ctx->argv[3];
2430     const struct vsctl_table_class *table;
2431     const struct ovsdb_idl_column *column;
2432     const struct ovsdb_idl_row *row;
2433     const struct ovsdb_type *type;
2434     struct ovsdb_datum old;
2435     int i;
2436
2437     table = get_table(table_name);
2438     row = must_get_row(ctx, table, record_id);
2439     die_if_error(get_column(table, column_name, &column));
2440
2441     type = &column->type;
2442     ovsdb_idl_txn_read(row, column, &old);
2443     for (i = 4; i < ctx->argc; i++) {
2444         struct ovsdb_type rm_type;
2445         struct ovsdb_datum rm;
2446         char *error;
2447
2448         rm_type = *type;
2449         rm_type.n_min = 1;
2450         rm_type.n_max = UINT_MAX;
2451         error = ovsdb_datum_from_string(&rm, &rm_type,
2452                                         ctx->argv[i], ctx->symtab);
2453         if (error && ovsdb_type_is_map(&rm_type)) {
2454             free(error);
2455             rm_type.value.type = OVSDB_TYPE_VOID;
2456             die_if_error(ovsdb_datum_from_string(&rm, &rm_type,
2457                                                  ctx->argv[i], ctx->symtab));
2458         }
2459         ovsdb_datum_subtract(&old, type, &rm, &rm_type);
2460         ovsdb_datum_destroy(&rm, &rm_type);
2461     }
2462     if (old.n < type->n_min) {
2463         vsctl_fatal("\"remove\" operation would put %u %s in column %s of "
2464                     "table %s but the minimum number is %u",
2465                     old.n,
2466                     type->value.type == OVSDB_TYPE_VOID ? "values" : "pairs",
2467                     column->name, table->class->name, type->n_min);
2468     }
2469     ovsdb_idl_txn_write(row, column, &old);
2470 }
2471
2472 static void
2473 cmd_clear(struct vsctl_context *ctx)
2474 {
2475     const char *table_name = ctx->argv[1];
2476     const char *record_id = ctx->argv[2];
2477     const struct vsctl_table_class *table;
2478     const struct ovsdb_idl_row *row;
2479     int i;
2480
2481     table = get_table(table_name);
2482     row = must_get_row(ctx, table, record_id);
2483     for (i = 3; i < ctx->argc; i++) {
2484         const struct ovsdb_idl_column *column;
2485         const struct ovsdb_type *type;
2486         struct ovsdb_datum datum;
2487
2488         die_if_error(get_column(table, ctx->argv[i], &column));
2489
2490         type = &column->type;
2491         if (type->n_min > 0) {
2492             vsctl_fatal("\"clear\" operation cannot be applied to column %s "
2493                         "of table %s, which is not allowed to be empty",
2494                         column->name, table->class->name);
2495         }
2496
2497         ovsdb_datum_init_empty(&datum);
2498         ovsdb_idl_txn_write(row, column, &datum);
2499     }
2500 }
2501
2502 static void
2503 cmd_create(struct vsctl_context *ctx)
2504 {
2505     const char *id = shash_find_data(&ctx->options, "--id");
2506     const char *table_name = ctx->argv[1];
2507     const struct vsctl_table_class *table;
2508     const struct ovsdb_idl_row *row;
2509     const struct uuid *uuid;
2510     int i;
2511
2512     if (id) {
2513         struct ovsdb_symbol *symbol;
2514
2515         if (id[0] != '@') {
2516             vsctl_fatal("row id \"%s\" does not begin with \"@\"", id);
2517         }
2518
2519         symbol = ovsdb_symbol_table_insert(ctx->symtab, id);
2520         if (symbol->used) {
2521             vsctl_fatal("row id \"%s\" may only be used to insert a single "
2522                         "row", id);
2523         }
2524         symbol->used = true;
2525
2526         uuid = &symbol->uuid;
2527     } else {
2528         uuid = NULL;
2529     }
2530
2531     table = get_table(table_name);
2532     row = ovsdb_idl_txn_insert(ctx->txn, table->class, uuid);
2533     for (i = 2; i < ctx->argc; i++) {
2534         set_column(table, row, ctx->argv[i], ctx->symtab);
2535     }
2536     ds_put_format(&ctx->output, UUID_FMT, UUID_ARGS(&row->uuid));
2537 }
2538
2539 /* This function may be used as the 'postprocess' function for commands that
2540  * insert new rows into the database.  It expects that the command's 'run'
2541  * function prints the UUID reported by ovsdb_idl_txn_insert() as the command's
2542  * sole output.  It replaces that output by the row's permanent UUID assigned
2543  * by the database server and appends a new-line.
2544  *
2545  * Currently we use this only for "create", because the higher-level commands
2546  * are supposed to be independent of the actual structure of the vswitch
2547  * configuration. */
2548 static void
2549 post_create(struct vsctl_context *ctx)
2550 {
2551     const struct uuid *real;
2552     struct uuid dummy;
2553
2554     uuid_from_string(&dummy, ds_cstr(&ctx->output));
2555     real = ovsdb_idl_txn_get_insert_uuid(ctx->txn, &dummy);
2556     if (real) {
2557         ds_clear(&ctx->output);
2558         ds_put_format(&ctx->output, UUID_FMT, UUID_ARGS(real));
2559     }
2560     ds_put_char(&ctx->output, '\n');
2561 }
2562
2563 static void
2564 cmd_destroy(struct vsctl_context *ctx)
2565 {
2566     bool must_exist = !shash_find(&ctx->options, "--if-exists");
2567     const char *table_name = ctx->argv[1];
2568     const struct vsctl_table_class *table;
2569     int i;
2570
2571     table = get_table(table_name);
2572     for (i = 2; i < ctx->argc; i++) {
2573         const struct ovsdb_idl_row *row;
2574
2575         row = (must_exist ? must_get_row : get_row)(ctx, table, ctx->argv[i]);
2576         if (row) {
2577             ovsdb_idl_txn_delete(row);
2578         }
2579     }
2580 }
2581 \f
2582 static struct json *
2583 where_uuid_equals(const struct uuid *uuid)
2584 {
2585     return
2586         json_array_create_1(
2587             json_array_create_3(
2588                 json_string_create("_uuid"),
2589                 json_string_create("=="),
2590                 json_array_create_2(
2591                     json_string_create("uuid"),
2592                     json_string_create_nocopy(
2593                         xasprintf(UUID_FMT, UUID_ARGS(uuid))))));
2594 }
2595
2596 static void
2597 vsctl_context_init(struct vsctl_context *ctx, struct vsctl_command *command,
2598                    struct ovsdb_idl *idl, struct ovsdb_idl_txn *txn,
2599                    const struct ovsrec_open_vswitch *ovs,
2600     struct ovsdb_symbol_table *symtab)
2601 {
2602     ctx->argc = command->argc;
2603     ctx->argv = command->argv;
2604     ctx->options = command->options;
2605
2606     ds_swap(&ctx->output, &command->output);
2607     ctx->idl = idl;
2608     ctx->txn = txn;
2609     ctx->ovs = ovs;
2610     ctx->symtab = symtab;
2611 }
2612
2613 static void
2614 vsctl_context_done(struct vsctl_context *ctx, struct vsctl_command *command)
2615 {
2616     ds_swap(&ctx->output, &command->output);
2617 }
2618
2619 static void
2620 do_vsctl(const char *args, struct vsctl_command *commands, size_t n_commands,
2621          struct ovsdb_idl *idl)
2622 {
2623     struct ovsdb_idl_txn *txn;
2624     const struct ovsrec_open_vswitch *ovs;
2625     enum ovsdb_idl_txn_status status;
2626     struct ovsdb_symbol_table *symtab;
2627     const char *unused;
2628     struct vsctl_command *c;
2629     int64_t next_cfg = 0;
2630     char *error;
2631
2632     txn = the_idl_txn = ovsdb_idl_txn_create(idl);
2633     if (dry_run) {
2634         ovsdb_idl_txn_set_dry_run(txn);
2635     }
2636
2637     ovsdb_idl_txn_add_comment(txn, "ovs-vsctl: %s", args);
2638
2639     ovs = ovsrec_open_vswitch_first(idl);
2640     if (!ovs) {
2641         /* XXX add verification that table is empty */
2642         ovs = ovsrec_open_vswitch_insert(txn);
2643     }
2644
2645     if (wait_for_reload) {
2646         struct json *where = where_uuid_equals(&ovs->header_.uuid);
2647         ovsdb_idl_txn_increment(txn, "Open_vSwitch", "next_cfg", where);
2648         json_destroy(where);
2649     }
2650
2651     symtab = ovsdb_symbol_table_create();
2652     for (c = commands; c < &commands[n_commands]; c++) {
2653         struct vsctl_context ctx;
2654
2655         ds_init(&c->output);
2656         vsctl_context_init(&ctx, c, idl, txn, ovs, symtab);
2657         (c->syntax->run)(&ctx);
2658         vsctl_context_done(&ctx, c);
2659     }
2660
2661     status = ovsdb_idl_txn_commit_block(txn);
2662     if (wait_for_reload && status == TXN_SUCCESS) {
2663         next_cfg = ovsdb_idl_txn_get_increment_new_value(txn);
2664     }
2665     if (status == TXN_UNCHANGED || status == TXN_SUCCESS) {
2666         for (c = commands; c < &commands[n_commands]; c++) {
2667             if (c->syntax->postprocess) {
2668                 struct vsctl_context ctx;
2669
2670                 vsctl_context_init(&ctx, c, idl, txn, ovs, symtab);
2671                 (c->syntax->postprocess)(&ctx);
2672                 vsctl_context_done(&ctx, c);
2673             }
2674         }
2675     }
2676     error = xstrdup(ovsdb_idl_txn_get_error(txn));
2677     ovsdb_idl_txn_destroy(txn);
2678     the_idl_txn = NULL;
2679
2680     unused = ovsdb_symbol_table_find_unused(symtab);
2681     if (unused) {
2682         vsctl_fatal("row id \"%s\" is referenced but never created (e.g. "
2683                     "with \"-- --id=%s create ...\")", unused, unused);
2684     }
2685     ovsdb_symbol_table_destroy(symtab);
2686
2687     switch (status) {
2688     case TXN_INCOMPLETE:
2689         NOT_REACHED();
2690
2691     case TXN_ABORTED:
2692         /* Should not happen--we never call ovsdb_idl_txn_abort(). */
2693         vsctl_fatal("transaction aborted");
2694
2695     case TXN_UNCHANGED:
2696     case TXN_SUCCESS:
2697         break;
2698
2699     case TXN_TRY_AGAIN:
2700         for (c = commands; c < &commands[n_commands]; c++) {
2701             ds_destroy(&c->output);
2702         }
2703         free(error);
2704         return;
2705
2706     case TXN_ERROR:
2707         vsctl_fatal("transaction error: %s", error);
2708
2709     default:
2710         NOT_REACHED();
2711     }
2712     free(error);
2713
2714     for (c = commands; c < &commands[n_commands]; c++) {
2715         struct ds *ds = &c->output;
2716         struct shash_node *node;
2717
2718         if (oneline) {
2719             size_t j;
2720
2721             ds_chomp(ds, '\n');
2722             for (j = 0; j < ds->length; j++) {
2723                 int c = ds->string[j];
2724                 switch (c) {
2725                 case '\n':
2726                     fputs("\\n", stdout);
2727                     break;
2728
2729                 case '\\':
2730                     fputs("\\\\", stdout);
2731                     break;
2732
2733                 default:
2734                     putchar(c);
2735                 }
2736             }
2737             putchar('\n');
2738         } else {
2739             fputs(ds_cstr(ds), stdout);
2740         }
2741         ds_destroy(&c->output);
2742
2743         SHASH_FOR_EACH (node, &c->options) {
2744             free(node->data);
2745         }
2746         shash_destroy(&c->options);
2747     }
2748     free(commands);
2749
2750     if (wait_for_reload && status != TXN_UNCHANGED) {
2751         for (;;) {
2752             const struct ovsrec_open_vswitch *ovs;
2753
2754             ovsdb_idl_run(idl);
2755             OVSREC_OPEN_VSWITCH_FOR_EACH (ovs, idl) {
2756                 if (ovs->cur_cfg >= next_cfg) {
2757                     goto done;
2758                 }
2759             }
2760             ovsdb_idl_wait(idl);
2761             poll_block();
2762         }
2763     done: ;
2764     }
2765     ovsdb_idl_destroy(idl);
2766
2767     exit(EXIT_SUCCESS);
2768 }
2769
2770 static const struct vsctl_command_syntax all_commands[] = {
2771     /* Open vSwitch commands. */
2772     {"init", 0, 0, cmd_init, NULL, ""},
2773
2774     /* Bridge commands. */
2775     {"add-br", 1, 3, cmd_add_br, NULL, "--may-exist"},
2776     {"del-br", 1, 1, cmd_del_br, NULL, "--if-exists"},
2777     {"list-br", 0, 0, cmd_list_br, NULL, ""},
2778     {"br-exists", 1, 1, cmd_br_exists, NULL, ""},
2779     {"br-to-vlan", 1, 1, cmd_br_to_vlan, NULL, ""},
2780     {"br-to-parent", 1, 1, cmd_br_to_parent, NULL, ""},
2781     {"br-set-external-id", 2, 3, cmd_br_set_external_id, NULL, ""},
2782     {"br-get-external-id", 1, 2, cmd_br_get_external_id, NULL, ""},
2783
2784     /* Port commands. */
2785     {"list-ports", 1, 1, cmd_list_ports, NULL, ""},
2786     {"add-port", 2, INT_MAX, cmd_add_port, NULL, "--may-exist"},
2787     {"add-bond", 4, INT_MAX, cmd_add_bond, NULL, "--may-exist,--fake-iface"},
2788     {"del-port", 1, 2, cmd_del_port, NULL, "--if-exists,--with-iface"},
2789     {"port-to-br", 1, 1, cmd_port_to_br, NULL, ""},
2790
2791     /* Interface commands. */
2792     {"list-ifaces", 1, 1, cmd_list_ifaces, NULL, ""},
2793     {"iface-to-br", 1, 1, cmd_iface_to_br, NULL, ""},
2794
2795     /* Controller commands. */
2796     {"get-controller", 0, 1, cmd_get_controller, NULL, ""},
2797     {"del-controller", 0, 1, cmd_del_controller, NULL, ""},
2798     {"set-controller", 1, INT_MAX, cmd_set_controller, NULL, ""},
2799     {"get-fail-mode", 0, 1, cmd_get_fail_mode, NULL, ""},
2800     {"del-fail-mode", 0, 1, cmd_del_fail_mode, NULL, ""},
2801     {"set-fail-mode", 1, 2, cmd_set_fail_mode, NULL, ""},
2802
2803     /* SSL commands. */
2804     {"get-ssl", 0, 0, cmd_get_ssl, NULL, ""},
2805     {"del-ssl", 0, 0, cmd_del_ssl, NULL, ""},
2806     {"set-ssl", 3, 3, cmd_set_ssl, NULL, "--bootstrap"},
2807
2808     /* Switch commands. */
2809     {"emer-reset", 0, 0, cmd_emer_reset, NULL, ""},
2810
2811     /* Parameter commands. */
2812     {"get", 3, INT_MAX, cmd_get, NULL, "--if-exists"},
2813     {"list", 1, INT_MAX, cmd_list, NULL, ""},
2814     {"set", 3, INT_MAX, cmd_set, NULL, ""},
2815     {"add", 4, INT_MAX, cmd_add, NULL, ""},
2816     {"remove", 4, INT_MAX, cmd_remove, NULL, ""},
2817     {"clear", 3, INT_MAX, cmd_clear, NULL, ""},
2818     {"create", 2, INT_MAX, cmd_create, post_create, "--id="},
2819     {"destroy", 1, INT_MAX, cmd_destroy, NULL, "--if-exists"},
2820
2821     {NULL, 0, 0, NULL, NULL, NULL},
2822 };
2823