Merge branch 'mainstream'
[sliver-openvswitch.git] / ovsdb / ovsdb-server.c
1 /* Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #include <config.h>
17
18 #include <errno.h>
19 #include <getopt.h>
20 #include <inttypes.h>
21 #include <signal.h>
22 #include <unistd.h>
23
24 #include "column.h"
25 #include "command-line.h"
26 #include "daemon.h"
27 #include "dirs.h"
28 #include "dummy.h"
29 #include "dynamic-string.h"
30 #include "file.h"
31 #include "hash.h"
32 #include "json.h"
33 #include "jsonrpc.h"
34 #include "jsonrpc-server.h"
35 #include "list.h"
36 #include "memory.h"
37 #include "ovsdb.h"
38 #include "ovsdb-data.h"
39 #include "ovsdb-types.h"
40 #include "ovsdb-error.h"
41 #include "poll-loop.h"
42 #include "process.h"
43 #include "row.h"
44 #include "simap.h"
45 #include "shash.h"
46 #include "stream-ssl.h"
47 #include "stream.h"
48 #include "sset.h"
49 #include "table.h"
50 #include "timeval.h"
51 #include "transaction.h"
52 #include "trigger.h"
53 #include "util.h"
54 #include "unixctl.h"
55 #include "vlog.h"
56
57 VLOG_DEFINE_THIS_MODULE(ovsdb_server);
58
59 struct db {
60     /* Initialized in main(). */
61     char *filename;
62     struct ovsdb_file *file;
63     struct ovsdb *db;
64
65     /* Only used by update_remote_status(). */
66     struct ovsdb_txn *txn;
67 };
68
69 /* SSL configuration. */
70 static char *private_key_file;
71 static char *certificate_file;
72 static char *ca_cert_file;
73 static bool bootstrap_ca_cert;
74
75 static unixctl_cb_func ovsdb_server_exit;
76 static unixctl_cb_func ovsdb_server_compact;
77 static unixctl_cb_func ovsdb_server_reconnect;
78
79 struct server_config {
80     struct sset *remotes;
81     struct shash *all_dbs;
82     FILE *config_tmpfile;
83     struct ovsdb_jsonrpc_server *jsonrpc;
84 };
85 static unixctl_cb_func ovsdb_server_add_remote;
86 static unixctl_cb_func ovsdb_server_remove_remote;
87 static unixctl_cb_func ovsdb_server_list_remotes;
88
89 static unixctl_cb_func ovsdb_server_add_database;
90 static unixctl_cb_func ovsdb_server_remove_database;
91 static unixctl_cb_func ovsdb_server_list_databases;
92
93 static char *open_db(struct server_config *config, const char *filename);
94
95 static void parse_options(int *argc, char **argvp[],
96                           struct sset *remotes, char **unixctl_pathp,
97                           char **run_command);
98 static void usage(void) NO_RETURN;
99
100 static char *reconfigure_remotes(struct ovsdb_jsonrpc_server *,
101                                  const struct shash *all_dbs,
102                                  struct sset *remotes);
103 static char *reconfigure_ssl(const struct shash *all_dbs);
104 static void report_error_if_changed(char *error, char **last_errorp);
105
106 static void update_remote_status(const struct ovsdb_jsonrpc_server *jsonrpc,
107                                  const struct sset *remotes,
108                                  struct shash *all_dbs);
109
110 static void save_config__(FILE *config_file, const struct sset *remotes,
111                           const struct sset *db_filenames);
112 static void save_config(struct server_config *);
113 static void load_config(FILE *config_file, struct sset *remotes,
114                         struct sset *db_filenames);
115
116 int
117 main(int argc, char *argv[])
118 {
119     char *unixctl_path = NULL;
120     char *run_command = NULL;
121     struct unixctl_server *unixctl;
122     struct ovsdb_jsonrpc_server *jsonrpc;
123     struct sset remotes, db_filenames;
124     const char *db_filename;
125     struct process *run_process;
126     bool exiting;
127     int retval;
128     long long int status_timer = LLONG_MIN;
129     FILE *config_tmpfile;
130     struct server_config server_config;
131     struct shash all_dbs;
132     struct shash_node *node;
133     char *remotes_error, *ssl_error;
134     char *error;
135     int i;
136
137     proctitle_init(argc, argv);
138     set_program_name(argv[0]);
139     signal(SIGPIPE, SIG_IGN);
140     process_init();
141
142     parse_options(&argc, &argv, &remotes, &unixctl_path, &run_command);
143
144     /* Create and initialize 'config_tmpfile' as a temporary file to hold
145      * ovsdb-server's most basic configuration, and then save our initial
146      * configuration to it.  When --monitor is used, this preserves the effects
147      * of ovs-appctl commands such as ovsdb-server/add-remote (which saves the
148      * new configuration) across crashes. */
149     config_tmpfile = tmpfile();
150     if (!config_tmpfile) {
151         ovs_fatal(errno, "failed to create temporary file");
152     }
153
154     sset_init(&db_filenames);
155     if (argc > 0) {
156         for (i = 0; i < argc; i++) {
157             sset_add(&db_filenames, argv[i]);
158          }
159     } else {
160         char *default_db = xasprintf("%s/conf.db", ovs_dbdir());
161         sset_add(&db_filenames, default_db);
162         free(default_db);
163     }
164
165     server_config.remotes = &remotes;
166     server_config.config_tmpfile = config_tmpfile;
167
168     save_config__(config_tmpfile, &remotes, &db_filenames);
169
170     daemonize_start();
171
172     /* Load the saved config. */
173     load_config(config_tmpfile, &remotes, &db_filenames);
174     jsonrpc = ovsdb_jsonrpc_server_create();
175
176     shash_init(&all_dbs);
177     server_config.all_dbs = &all_dbs;
178     server_config.jsonrpc = jsonrpc;
179     SSET_FOR_EACH (db_filename, &db_filenames) {
180         error = open_db(&server_config, db_filename);
181         if (error) {
182             ovs_fatal(0, "%s", error);
183         }
184     }
185
186     error = reconfigure_remotes(jsonrpc, &all_dbs, &remotes);
187     if (!error) {
188         error = reconfigure_ssl(&all_dbs);
189     }
190     if (error) {
191         ovs_fatal(0, "%s", error);
192     }
193
194     retval = unixctl_server_create(unixctl_path, &unixctl);
195     if (retval) {
196         exit(EXIT_FAILURE);
197     }
198
199     if (run_command) {
200         char *run_argv[4];
201
202         run_argv[0] = "/bin/sh";
203         run_argv[1] = "-c";
204         run_argv[2] = run_command;
205         run_argv[3] = NULL;
206
207         retval = process_start(run_argv, &run_process);
208         if (retval) {
209             ovs_fatal(retval, "%s: process failed to start", run_command);
210         }
211     } else {
212         run_process = NULL;
213     }
214
215     daemonize_complete();
216
217     if (!run_command) {
218         /* ovsdb-server is usually a long-running process, in which case it
219          * makes plenty of sense to log the version, but --run makes
220          * ovsdb-server more like a command-line tool, so skip it.  */
221         VLOG_INFO("%s (Open vSwitch) %s", program_name, VERSION);
222     }
223
224     unixctl_command_register("exit", "", 0, 0, ovsdb_server_exit, &exiting);
225     unixctl_command_register("ovsdb-server/compact", "", 0, 1,
226                              ovsdb_server_compact, &all_dbs);
227     unixctl_command_register("ovsdb-server/reconnect", "", 0, 0,
228                              ovsdb_server_reconnect, jsonrpc);
229
230     unixctl_command_register("ovsdb-server/add-remote", "REMOTE", 1, 1,
231                              ovsdb_server_add_remote, &server_config);
232     unixctl_command_register("ovsdb-server/remove-remote", "REMOTE", 1, 1,
233                              ovsdb_server_remove_remote, &server_config);
234     unixctl_command_register("ovsdb-server/list-remotes", "", 0, 0,
235                              ovsdb_server_list_remotes, &remotes);
236
237     unixctl_command_register("ovsdb-server/add-db", "DB", 1, 1,
238                              ovsdb_server_add_database, &server_config);
239     unixctl_command_register("ovsdb-server/remove-db", "DB", 1, 1,
240                              ovsdb_server_remove_database, &server_config);
241     unixctl_command_register("ovsdb-server/list-dbs", "", 0, 0,
242                              ovsdb_server_list_databases, &all_dbs);
243
244     exiting = false;
245     ssl_error = NULL;
246     remotes_error = NULL;
247     while (!exiting) {
248         memory_run();
249         if (memory_should_report()) {
250             struct simap usage;
251
252             simap_init(&usage);
253             ovsdb_jsonrpc_server_get_memory_usage(jsonrpc, &usage);
254             SHASH_FOR_EACH(node, &all_dbs) {
255                 struct db *db = node->data;
256                 ovsdb_get_memory_usage(db->db, &usage);
257             }
258             memory_report(&usage);
259             simap_destroy(&usage);
260         }
261
262         /* Run unixctl_server_run() before reconfigure_remotes() because
263          * ovsdb-server/add-remote and ovsdb-server/remove-remote can change
264          * the set of remotes that reconfigure_remotes() uses. */
265         unixctl_server_run(unixctl);
266
267         report_error_if_changed(
268             reconfigure_remotes(jsonrpc, &all_dbs, &remotes),
269             &remotes_error);
270         report_error_if_changed(reconfigure_ssl(&all_dbs), &ssl_error);
271         ovsdb_jsonrpc_server_run(jsonrpc);
272
273         SHASH_FOR_EACH(node, &all_dbs) {
274             struct db *db = node->data;
275             ovsdb_trigger_run(db->db, time_msec());
276         }
277         if (run_process) {
278             process_run();
279             if (process_exited(run_process)) {
280                 exiting = true;
281             }
282         }
283
284         /* update Manager status(es) every 5 seconds */
285         if (time_msec() >= status_timer) {
286             status_timer = time_msec() + 5000;
287             update_remote_status(jsonrpc, &remotes, &all_dbs);
288         }
289
290         memory_wait();
291         ovsdb_jsonrpc_server_wait(jsonrpc);
292         unixctl_server_wait(unixctl);
293         SHASH_FOR_EACH(node, &all_dbs) {
294             struct db *db = node->data;
295             ovsdb_trigger_wait(db->db, time_msec());
296         }
297         if (run_process) {
298             process_wait(run_process);
299         }
300         if (exiting) {
301             poll_immediate_wake();
302         }
303         poll_timer_wait_until(status_timer);
304         poll_block();
305     }
306     ovsdb_jsonrpc_server_destroy(jsonrpc);
307     SHASH_FOR_EACH(node, &all_dbs) {
308         struct db *db = node->data;
309         ovsdb_destroy(db->db);
310     }
311     sset_destroy(&remotes);
312     unixctl_server_destroy(unixctl);
313
314     if (run_process && process_exited(run_process)) {
315         int status = process_status(run_process);
316         if (status) {
317             ovs_fatal(0, "%s: child exited, %s",
318                       run_command, process_status_msg(status));
319         }
320     }
321
322     return 0;
323 }
324
325 static char *
326 open_db(struct server_config *config, const char *filename)
327 {
328     struct ovsdb_error *db_error;
329     struct db *db;
330     char *error;
331
332     db = xzalloc(sizeof *db);
333     db->filename = xstrdup(filename);
334
335     db_error = ovsdb_file_open(db->filename, false, &db->db, &db->file);
336     if (db_error) {
337         error = ovsdb_error_to_string(db_error);
338     } else if (!ovsdb_jsonrpc_server_add_db(config->jsonrpc, db->db)) {
339         error = xasprintf("%s: duplicate database name", db->db->schema->name);
340     } else {
341         shash_add_assert(config->all_dbs, db->db->schema->name, db);
342         return NULL;
343     }
344
345     ovsdb_error_destroy(db_error);
346     ovsdb_destroy(db->db);
347     free(db->filename);
348     free(db);
349     return error;
350 }
351
352 static const struct db *
353 find_db(const struct shash *all_dbs, const char *db_name)
354 {
355     struct shash_node *node;
356
357     SHASH_FOR_EACH(node, all_dbs) {
358         struct db *db = node->data;
359         if (!strcmp(db->db->schema->name, db_name)) {
360             return db;
361         }
362     }
363
364     return NULL;
365 }
366
367 static char * WARN_UNUSED_RESULT
368 parse_db_column__(const struct shash *all_dbs,
369                   const char *name_, char *name,
370                   const struct db **dbp,
371                   const struct ovsdb_table **tablep,
372                   const struct ovsdb_column **columnp)
373 {
374     const char *db_name, *table_name, *column_name;
375     const struct ovsdb_column *column;
376     const struct ovsdb_table *table;
377     const char *tokens[3];
378     char *save_ptr = NULL;
379     const struct db *db;
380
381     *dbp = NULL;
382     *tablep = NULL;
383     *columnp = NULL;
384
385     strtok_r(name, ":", &save_ptr); /* "db:" */
386     tokens[0] = strtok_r(NULL, ",", &save_ptr);
387     tokens[1] = strtok_r(NULL, ",", &save_ptr);
388     tokens[2] = strtok_r(NULL, ",", &save_ptr);
389     if (!tokens[0] || !tokens[1] || !tokens[2]) {
390         return xasprintf("\"%s\": invalid syntax", name_);
391     }
392
393     db_name = tokens[0];
394     table_name = tokens[1];
395     column_name = tokens[2];
396
397     db = find_db(all_dbs, tokens[0]);
398     if (!db) {
399         return xasprintf("\"%s\": no database named %s", name_, db_name);
400     }
401
402     table = ovsdb_get_table(db->db, table_name);
403     if (!table) {
404         return xasprintf("\"%s\": no table named %s", name_, table_name);
405     }
406
407     column = ovsdb_table_schema_get_column(table->schema, column_name);
408     if (!column) {
409         return xasprintf("\"%s\": table \"%s\" has no column \"%s\"",
410                          name_, table_name, column_name);
411     }
412
413     *dbp = db;
414     *columnp = column;
415     *tablep = table;
416     return NULL;
417 }
418
419 /* Returns NULL if successful, otherwise a malloc()'d string describing the
420  * error. */
421 static char * WARN_UNUSED_RESULT
422 parse_db_column(const struct shash *all_dbs,
423                 const char *name_,
424                 const struct db **dbp,
425                 const struct ovsdb_table **tablep,
426                 const struct ovsdb_column **columnp)
427 {
428     char *name = xstrdup(name_);
429     char *retval = parse_db_column__(all_dbs, name_, name,
430                                      dbp, tablep, columnp);
431     free(name);
432     return retval;
433 }
434
435 /* Returns NULL if successful, otherwise a malloc()'d string describing the
436  * error. */
437 static char * WARN_UNUSED_RESULT
438 parse_db_string_column(const struct shash *all_dbs,
439                        const char *name,
440                        const struct db **dbp,
441                        const struct ovsdb_table **tablep,
442                        const struct ovsdb_column **columnp)
443 {
444     char *retval;
445
446     retval = parse_db_column(all_dbs, name, dbp, tablep, columnp);
447     if (retval) {
448         return retval;
449     }
450
451     if ((*columnp)->type.key.type != OVSDB_TYPE_STRING
452         || (*columnp)->type.value.type != OVSDB_TYPE_VOID) {
453         return xasprintf("\"%s\": table \"%s\" column \"%s\" is "
454                          "not string or set of strings",
455                          name, (*tablep)->schema->name, (*columnp)->name);
456     }
457
458     return NULL;
459 }
460
461 static const char *
462 query_db_string(const struct shash *all_dbs, const char *name,
463                 struct ds *errors)
464 {
465     if (!name || strncmp(name, "db:", 3)) {
466         return name;
467     } else {
468         const struct ovsdb_column *column;
469         const struct ovsdb_table *table;
470         const struct ovsdb_row *row;
471         const struct db *db;
472         char *retval;
473
474         retval = parse_db_string_column(all_dbs, name,
475                                         &db, &table, &column);
476         if (retval) {
477             ds_put_format(errors, "%s\n", retval);
478             return NULL;
479         }
480
481         HMAP_FOR_EACH (row, hmap_node, &table->rows) {
482             const struct ovsdb_datum *datum;
483             size_t i;
484
485             datum = &row->fields[column->index];
486             for (i = 0; i < datum->n; i++) {
487                 if (datum->keys[i].string[0]) {
488                     return datum->keys[i].string;
489                 }
490             }
491         }
492         return NULL;
493     }
494 }
495
496 static struct ovsdb_jsonrpc_options *
497 add_remote(struct shash *remotes, const char *target)
498 {
499     struct ovsdb_jsonrpc_options *options;
500
501     options = shash_find_data(remotes, target);
502     if (!options) {
503         options = ovsdb_jsonrpc_default_options(target);
504         shash_add(remotes, target, options);
505     }
506
507     return options;
508 }
509
510 static struct ovsdb_datum *
511 get_datum(struct ovsdb_row *row, const char *column_name,
512           const enum ovsdb_atomic_type key_type,
513           const enum ovsdb_atomic_type value_type,
514           const size_t n_max)
515 {
516     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
517     const struct ovsdb_table_schema *schema = row->table->schema;
518     const struct ovsdb_column *column;
519
520     column = ovsdb_table_schema_get_column(schema, column_name);
521     if (!column) {
522         VLOG_DBG_RL(&rl, "Table `%s' has no `%s' column",
523                     schema->name, column_name);
524         return NULL;
525     }
526
527     if (column->type.key.type != key_type
528         || column->type.value.type != value_type
529         || column->type.n_max != n_max) {
530         if (!VLOG_DROP_DBG(&rl)) {
531             char *type_name = ovsdb_type_to_english(&column->type);
532             VLOG_DBG("Table `%s' column `%s' has type %s, not expected "
533                      "key type %s, value type %s, max elements %zd.",
534                      schema->name, column_name, type_name,
535                      ovsdb_atomic_type_to_string(key_type),
536                      ovsdb_atomic_type_to_string(value_type),
537                      n_max);
538             free(type_name);
539         }
540         return NULL;
541     }
542
543     return &row->fields[column->index];
544 }
545
546 /* Read string-string key-values from a map.  Returns the value associated with
547  * 'key', if found, or NULL */
548 static const char *
549 read_map_string_column(const struct ovsdb_row *row, const char *column_name,
550                        const char *key)
551 {
552     const struct ovsdb_datum *datum;
553     union ovsdb_atom *atom_key = NULL, *atom_value = NULL;
554     size_t i;
555
556     datum = get_datum(CONST_CAST(struct ovsdb_row *, row), column_name,
557                       OVSDB_TYPE_STRING, OVSDB_TYPE_STRING, UINT_MAX);
558
559     if (!datum) {
560         return NULL;
561     }
562
563     for (i = 0; i < datum->n; i++) {
564         atom_key = &datum->keys[i];
565         if (!strcmp(atom_key->string, key)){
566             atom_value = &datum->values[i];
567             break;
568         }
569     }
570
571     return atom_value ? atom_value->string : NULL;
572 }
573
574 static const union ovsdb_atom *
575 read_column(const struct ovsdb_row *row, const char *column_name,
576             enum ovsdb_atomic_type type)
577 {
578     const struct ovsdb_datum *datum;
579
580     datum = get_datum(CONST_CAST(struct ovsdb_row *, row), column_name, type,
581                       OVSDB_TYPE_VOID, 1);
582     return datum && datum->n ? datum->keys : NULL;
583 }
584
585 static bool
586 read_integer_column(const struct ovsdb_row *row, const char *column_name,
587                     long long int *integerp)
588 {
589     const union ovsdb_atom *atom;
590
591     atom = read_column(row, column_name, OVSDB_TYPE_INTEGER);
592     *integerp = atom ? atom->integer : 0;
593     return atom != NULL;
594 }
595
596 static bool
597 read_string_column(const struct ovsdb_row *row, const char *column_name,
598                    const char **stringp)
599 {
600     const union ovsdb_atom *atom;
601
602     atom = read_column(row, column_name, OVSDB_TYPE_STRING);
603     *stringp = atom ? atom->string : NULL;
604     return atom != NULL;
605 }
606
607 static void
608 write_bool_column(struct ovsdb_row *row, const char *column_name, bool value)
609 {
610     const struct ovsdb_column *column;
611     struct ovsdb_datum *datum;
612
613     column = ovsdb_table_schema_get_column(row->table->schema, column_name);
614     datum = get_datum(row, column_name, OVSDB_TYPE_BOOLEAN,
615                       OVSDB_TYPE_VOID, 1);
616     if (!datum) {
617         return;
618     }
619
620     if (datum->n != 1) {
621         ovsdb_datum_destroy(datum, &column->type);
622
623         datum->n = 1;
624         datum->keys = xmalloc(sizeof *datum->keys);
625         datum->values = NULL;
626     }
627
628     datum->keys[0].boolean = value;
629 }
630
631 static void
632 write_string_string_column(struct ovsdb_row *row, const char *column_name,
633                            char **keys, char **values, size_t n)
634 {
635     const struct ovsdb_column *column;
636     struct ovsdb_datum *datum;
637     size_t i;
638
639     column = ovsdb_table_schema_get_column(row->table->schema, column_name);
640     datum = get_datum(row, column_name, OVSDB_TYPE_STRING, OVSDB_TYPE_STRING,
641                       UINT_MAX);
642     if (!datum) {
643         for (i = 0; i < n; i++) {
644             free(keys[i]);
645             free(values[i]);
646         }
647         return;
648     }
649
650     /* Free existing data. */
651     ovsdb_datum_destroy(datum, &column->type);
652
653     /* Allocate space for new values. */
654     datum->n = n;
655     datum->keys = xmalloc(n * sizeof *datum->keys);
656     datum->values = xmalloc(n * sizeof *datum->values);
657
658     for (i = 0; i < n; ++i) {
659         datum->keys[i].string = keys[i];
660         datum->values[i].string = values[i];
661     }
662
663     /* Sort and check constraints. */
664     ovsdb_datum_sort_assert(datum, column->type.key.type);
665 }
666
667 /* Adds a remote and options to 'remotes', based on the Manager table row in
668  * 'row'. */
669 static void
670 add_manager_options(struct shash *remotes, const struct ovsdb_row *row)
671 {
672     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
673     struct ovsdb_jsonrpc_options *options;
674     long long int max_backoff, probe_interval;
675     const char *target, *dscp_string;
676
677     if (!read_string_column(row, "target", &target) || !target) {
678         VLOG_INFO_RL(&rl, "Table `%s' has missing or invalid `target' column",
679                      row->table->schema->name);
680         return;
681     }
682
683     options = add_remote(remotes, target);
684     if (read_integer_column(row, "max_backoff", &max_backoff)) {
685         options->max_backoff = max_backoff;
686     }
687     if (read_integer_column(row, "inactivity_probe", &probe_interval)) {
688         options->probe_interval = probe_interval;
689     }
690
691     options->dscp = DSCP_DEFAULT;
692     dscp_string = read_map_string_column(row, "other_config", "dscp");
693     if (dscp_string) {
694         int dscp = atoi(dscp_string);
695         if (dscp >= 0 && dscp <= 63) {
696             options->dscp = dscp;
697         }
698     }
699 }
700
701 static void
702 query_db_remotes(const char *name, const struct shash *all_dbs,
703                  struct shash *remotes, struct ds *errors)
704 {
705     const struct ovsdb_column *column;
706     const struct ovsdb_table *table;
707     const struct ovsdb_row *row;
708     const struct db *db;
709     char *retval;
710
711     retval = parse_db_column(all_dbs, name, &db, &table, &column);
712     if (retval) {
713         ds_put_format(errors, "%s\n", retval);
714         free(retval);
715         return;
716     }
717
718     if (column->type.key.type == OVSDB_TYPE_STRING
719         && column->type.value.type == OVSDB_TYPE_VOID) {
720         HMAP_FOR_EACH (row, hmap_node, &table->rows) {
721             const struct ovsdb_datum *datum;
722             size_t i;
723
724             datum = &row->fields[column->index];
725             for (i = 0; i < datum->n; i++) {
726                 add_remote(remotes, datum->keys[i].string);
727             }
728         }
729     } else if (column->type.key.type == OVSDB_TYPE_UUID
730                && column->type.key.u.uuid.refTable
731                && column->type.value.type == OVSDB_TYPE_VOID) {
732         const struct ovsdb_table *ref_table = column->type.key.u.uuid.refTable;
733         HMAP_FOR_EACH (row, hmap_node, &table->rows) {
734             const struct ovsdb_datum *datum;
735             size_t i;
736
737             datum = &row->fields[column->index];
738             for (i = 0; i < datum->n; i++) {
739                 const struct ovsdb_row *ref_row;
740
741                 ref_row = ovsdb_table_get_row(ref_table, &datum->keys[i].uuid);
742                 if (ref_row) {
743                     add_manager_options(remotes, ref_row);
744                 }
745             }
746         }
747     }
748 }
749
750 static void
751 update_remote_row(const struct ovsdb_row *row, struct ovsdb_txn *txn,
752                   const struct ovsdb_jsonrpc_server *jsonrpc)
753 {
754     struct ovsdb_jsonrpc_remote_status status;
755     struct ovsdb_row *rw_row;
756     const char *target;
757     char *keys[9], *values[9];
758     size_t n = 0;
759
760     /* Get the "target" (protocol/host/port) spec. */
761     if (!read_string_column(row, "target", &target)) {
762         /* Bad remote spec or incorrect schema. */
763         return;
764     }
765     rw_row = ovsdb_txn_row_modify(txn, row);
766     ovsdb_jsonrpc_server_get_remote_status(jsonrpc, target, &status);
767
768     /* Update status information columns. */
769     write_bool_column(rw_row, "is_connected", status.is_connected);
770
771     if (status.state) {
772         keys[n] = xstrdup("state");
773         values[n++] = xstrdup(status.state);
774     }
775     if (status.sec_since_connect != UINT_MAX) {
776         keys[n] = xstrdup("sec_since_connect");
777         values[n++] = xasprintf("%u", status.sec_since_connect);
778     }
779     if (status.sec_since_disconnect != UINT_MAX) {
780         keys[n] = xstrdup("sec_since_disconnect");
781         values[n++] = xasprintf("%u", status.sec_since_disconnect);
782     }
783     if (status.last_error) {
784         keys[n] = xstrdup("last_error");
785         values[n++] =
786             xstrdup(ovs_retval_to_string(status.last_error));
787     }
788     if (status.locks_held && status.locks_held[0]) {
789         keys[n] = xstrdup("locks_held");
790         values[n++] = xstrdup(status.locks_held);
791     }
792     if (status.locks_waiting && status.locks_waiting[0]) {
793         keys[n] = xstrdup("locks_waiting");
794         values[n++] = xstrdup(status.locks_waiting);
795     }
796     if (status.locks_lost && status.locks_lost[0]) {
797         keys[n] = xstrdup("locks_lost");
798         values[n++] = xstrdup(status.locks_lost);
799     }
800     if (status.n_connections > 1) {
801         keys[n] = xstrdup("n_connections");
802         values[n++] = xasprintf("%d", status.n_connections);
803     }
804     if (status.bound_port != htons(0)) {
805         keys[n] = xstrdup("bound_port");
806         values[n++] = xasprintf("%"PRIu16, ntohs(status.bound_port));
807     }
808     write_string_string_column(rw_row, "status", keys, values, n);
809
810     ovsdb_jsonrpc_server_free_remote_status(&status);
811 }
812
813 static void
814 update_remote_rows(const struct shash *all_dbs,
815                    const char *remote_name,
816                    const struct ovsdb_jsonrpc_server *jsonrpc)
817 {
818     const struct ovsdb_table *table, *ref_table;
819     const struct ovsdb_column *column;
820     const struct ovsdb_row *row;
821     const struct db *db;
822     char *retval;
823
824     if (strncmp("db:", remote_name, 3)) {
825         return;
826     }
827
828     retval = parse_db_column(all_dbs, remote_name, &db, &table, &column);
829     if (retval) {
830         free(retval);
831         return;
832     }
833
834     if (column->type.key.type != OVSDB_TYPE_UUID
835         || !column->type.key.u.uuid.refTable
836         || column->type.value.type != OVSDB_TYPE_VOID) {
837         return;
838     }
839
840     ref_table = column->type.key.u.uuid.refTable;
841
842     HMAP_FOR_EACH (row, hmap_node, &table->rows) {
843         const struct ovsdb_datum *datum;
844         size_t i;
845
846         datum = &row->fields[column->index];
847         for (i = 0; i < datum->n; i++) {
848             const struct ovsdb_row *ref_row;
849
850             ref_row = ovsdb_table_get_row(ref_table, &datum->keys[i].uuid);
851             if (ref_row) {
852                 update_remote_row(ref_row, db->txn, jsonrpc);
853             }
854         }
855     }
856 }
857
858 static void
859 update_remote_status(const struct ovsdb_jsonrpc_server *jsonrpc,
860                      const struct sset *remotes,
861                      struct shash *all_dbs)
862 {
863     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
864     const char *remote;
865     struct db *db;
866     struct shash_node *node;
867
868     SHASH_FOR_EACH(node, all_dbs) {
869         db = node->data;
870         db->txn = ovsdb_txn_create(db->db);
871     }
872
873     /* Iterate over --remote arguments given on command line. */
874     SSET_FOR_EACH (remote, remotes) {
875         update_remote_rows(all_dbs, remote, jsonrpc);
876     }
877
878     SHASH_FOR_EACH(node, all_dbs) {
879         struct ovsdb_error *error;
880         db = node->data;
881         error = ovsdb_txn_commit(db->txn, false);
882         if (error) {
883             VLOG_ERR_RL(&rl, "Failed to update remote status: %s",
884                         ovsdb_error_to_string(error));
885             ovsdb_error_destroy(error);
886         }
887     }
888 }
889
890 /* Reconfigures ovsdb-server's remotes based on information in the database. */
891 static char *
892 reconfigure_remotes(struct ovsdb_jsonrpc_server *jsonrpc,
893                     const struct shash *all_dbs, struct sset *remotes)
894 {
895     struct ds errors = DS_EMPTY_INITIALIZER;
896     struct shash resolved_remotes;
897     const char *name;
898
899     /* Configure remotes. */
900     shash_init(&resolved_remotes);
901     SSET_FOR_EACH (name, remotes) {
902         if (!strncmp(name, "db:", 3)) {
903             query_db_remotes(name, all_dbs, &resolved_remotes, &errors);
904         } else {
905             add_remote(&resolved_remotes, name);
906         }
907     }
908     ovsdb_jsonrpc_server_set_remotes(jsonrpc, &resolved_remotes);
909     shash_destroy_free_data(&resolved_remotes);
910
911     return errors.string;
912 }
913
914 static char *
915 reconfigure_ssl(const struct shash *all_dbs)
916 {
917     struct ds errors = DS_EMPTY_INITIALIZER;
918     const char *resolved_private_key;
919     const char *resolved_certificate;
920     const char *resolved_ca_cert;
921
922     resolved_private_key = query_db_string(all_dbs, private_key_file, &errors);
923     resolved_certificate = query_db_string(all_dbs, certificate_file, &errors);
924     resolved_ca_cert = query_db_string(all_dbs, ca_cert_file, &errors);
925
926     stream_ssl_set_key_and_cert(resolved_private_key, resolved_certificate);
927     stream_ssl_set_ca_cert_file(resolved_ca_cert, bootstrap_ca_cert);
928
929     return errors.string;
930 }
931
932 static void
933 report_error_if_changed(char *error, char **last_errorp)
934 {
935     if (error) {
936         if (!*last_errorp || strcmp(error, *last_errorp)) {
937             VLOG_WARN("%s", error);
938             free(*last_errorp);
939             *last_errorp = error;
940             return;
941         }
942         free(error);
943     } else {
944         free(*last_errorp);
945         *last_errorp = NULL;
946     }
947 }
948
949 static void
950 ovsdb_server_exit(struct unixctl_conn *conn, int argc OVS_UNUSED,
951                   const char *argv[] OVS_UNUSED,
952                   void *exiting_)
953 {
954     bool *exiting = exiting_;
955     *exiting = true;
956     unixctl_command_reply(conn, NULL);
957 }
958
959 static void
960 ovsdb_server_compact(struct unixctl_conn *conn, int argc,
961                      const char *argv[], void *dbs_)
962 {
963     struct shash *all_dbs = dbs_;
964     struct ds reply;
965     struct db *db;
966     struct shash_node *node;
967     int n = 0;
968
969     ds_init(&reply);
970     SHASH_FOR_EACH(node, all_dbs) {
971         const char *name;
972
973         db = node->data;
974         name = db->db->schema->name;
975
976         if (argc < 2 || !strcmp(argv[1], name)) {
977             struct ovsdb_error *error;
978
979             VLOG_INFO("compacting %s database by user request", name);
980
981             error = ovsdb_file_compact(db->file);
982             if (error) {
983                 char *s = ovsdb_error_to_string(error);
984                 ds_put_format(&reply, "%s\n", s);
985                 free(s);
986             }
987
988             n++;
989         }
990     }
991
992     if (!n) {
993         unixctl_command_reply_error(conn, "no database by that name");
994     } else if (reply.length) {
995         unixctl_command_reply_error(conn, ds_cstr(&reply));
996     } else {
997         unixctl_command_reply(conn, NULL);
998     }
999     ds_destroy(&reply);
1000 }
1001
1002 /* "ovsdb-server/reconnect": makes ovsdb-server drop all of its JSON-RPC
1003  * connections and reconnect. */
1004 static void
1005 ovsdb_server_reconnect(struct unixctl_conn *conn, int argc OVS_UNUSED,
1006                        const char *argv[] OVS_UNUSED, void *jsonrpc_)
1007 {
1008     struct ovsdb_jsonrpc_server *jsonrpc = jsonrpc_;
1009
1010     ovsdb_jsonrpc_server_reconnect(jsonrpc);
1011     unixctl_command_reply(conn, NULL);
1012 }
1013
1014 /* "ovsdb-server/add-remote REMOTE": adds REMOTE to the set of remotes that
1015  * ovsdb-server services. */
1016 static void
1017 ovsdb_server_add_remote(struct unixctl_conn *conn, int argc OVS_UNUSED,
1018                         const char *argv[], void *config_)
1019 {
1020     struct server_config *config = config_;
1021     const char *remote = argv[1];
1022
1023     const struct ovsdb_column *column;
1024     const struct ovsdb_table *table;
1025     const struct db *db;
1026     char *retval;
1027
1028     retval = (strncmp("db:", remote, 3)
1029               ? NULL
1030               : parse_db_column(config->all_dbs, remote,
1031                                 &db, &table, &column));
1032     if (!retval) {
1033         if (sset_add(config->remotes, remote)) {
1034             save_config(config);
1035         }
1036         unixctl_command_reply(conn, NULL);
1037     } else {
1038         unixctl_command_reply_error(conn, retval);
1039         free(retval);
1040     }
1041 }
1042
1043 /* "ovsdb-server/remove-remote REMOTE": removes REMOTE frmo the set of remotes
1044  * that ovsdb-server services. */
1045 static void
1046 ovsdb_server_remove_remote(struct unixctl_conn *conn, int argc OVS_UNUSED,
1047                            const char *argv[], void *config_)
1048 {
1049     struct server_config *config = config_;
1050     struct sset_node *node;
1051
1052     node = sset_find(config->remotes, argv[1]);
1053     if (node) {
1054         sset_delete(config->remotes, node);
1055         save_config(config);
1056         unixctl_command_reply(conn, NULL);
1057     } else {
1058         unixctl_command_reply_error(conn, "no such remote");
1059     }
1060 }
1061
1062 /* "ovsdb-server/list-remotes": outputs a list of configured rmeotes. */
1063 static void
1064 ovsdb_server_list_remotes(struct unixctl_conn *conn, int argc OVS_UNUSED,
1065                           const char *argv[] OVS_UNUSED, void *remotes_)
1066 {
1067     struct sset *remotes = remotes_;
1068     const char **list, **p;
1069     struct ds s;
1070
1071     ds_init(&s);
1072
1073     list = sset_sort(remotes);
1074     for (p = list; *p; p++) {
1075         ds_put_format(&s, "%s\n", *p);
1076     }
1077     free(list);
1078
1079     unixctl_command_reply(conn, ds_cstr(&s));
1080     ds_destroy(&s);
1081 }
1082
1083
1084 /* "ovsdb-server/add-db DB": adds the DB to ovsdb-server. */
1085 static void
1086 ovsdb_server_add_database(struct unixctl_conn *conn, int argc OVS_UNUSED,
1087                           const char *argv[], void *config_)
1088 {
1089     struct server_config *config = config_;
1090     const char *filename = argv[1];
1091     char *error;
1092
1093     error = open_db(config, filename);
1094     if (!error) {
1095         save_config(config);
1096         unixctl_command_reply(conn, NULL);
1097     } else {
1098         unixctl_command_reply_error(conn, error);
1099         free(error);
1100     }
1101 }
1102
1103 static void
1104 ovsdb_server_remove_database(struct unixctl_conn *conn, int argc OVS_UNUSED,
1105                              const char *argv[], void *config_)
1106 {
1107     struct server_config *config = config_;
1108     struct shash_node *node;
1109     struct db *db;
1110     bool ok;
1111
1112     node = shash_find(config->all_dbs, argv[1]);
1113     if (!node)  {
1114         unixctl_command_reply_error(conn, "Failed to find the database.");
1115         return;
1116     }
1117     db = node->data;
1118
1119     ok = ovsdb_jsonrpc_server_remove_db(config->jsonrpc, db->db);
1120     ovs_assert(ok);
1121
1122     ovsdb_destroy(db->db);
1123     shash_delete(config->all_dbs, node);
1124     free(db->filename);
1125     free(db);
1126
1127     save_config(config);
1128     unixctl_command_reply(conn, NULL);
1129 }
1130
1131 static void
1132 ovsdb_server_list_databases(struct unixctl_conn *conn, int argc OVS_UNUSED,
1133                             const char *argv[] OVS_UNUSED, void *all_dbs_)
1134 {
1135     struct shash *all_dbs = all_dbs_;
1136     const struct shash_node **nodes;
1137     struct ds s;
1138     size_t i;
1139
1140     ds_init(&s);
1141
1142     nodes = shash_sort(all_dbs);
1143     for (i = 0; i < shash_count(all_dbs); i++) {
1144         struct db *db = nodes[i]->data;
1145         ds_put_format(&s, "%s\n", db->db->schema->name);
1146     }
1147     free(nodes);
1148
1149     unixctl_command_reply(conn, ds_cstr(&s));
1150     ds_destroy(&s);
1151 }
1152
1153 static void
1154 parse_options(int *argcp, char **argvp[],
1155               struct sset *remotes, char **unixctl_pathp, char **run_command)
1156 {
1157     enum {
1158         OPT_REMOTE = UCHAR_MAX + 1,
1159         OPT_UNIXCTL,
1160         OPT_RUN,
1161         OPT_BOOTSTRAP_CA_CERT,
1162         OPT_ENABLE_DUMMY,
1163         VLOG_OPTION_ENUMS,
1164         DAEMON_OPTION_ENUMS
1165     };
1166     static const struct option long_options[] = {
1167         {"remote",      required_argument, NULL, OPT_REMOTE},
1168         {"unixctl",     required_argument, NULL, OPT_UNIXCTL},
1169         {"run",         required_argument, NULL, OPT_RUN},
1170         {"help",        no_argument, NULL, 'h'},
1171         {"version",     no_argument, NULL, 'V'},
1172         DAEMON_LONG_OPTIONS,
1173         VLOG_LONG_OPTIONS,
1174         {"bootstrap-ca-cert", required_argument, NULL, OPT_BOOTSTRAP_CA_CERT},
1175         {"private-key", required_argument, NULL, 'p'},
1176         {"certificate", required_argument, NULL, 'c'},
1177         {"ca-cert",     required_argument, NULL, 'C'},
1178         {"enable-dummy", optional_argument, NULL, OPT_ENABLE_DUMMY},
1179         {NULL, 0, NULL, 0},
1180     };
1181     char *short_options = long_options_to_short_options(long_options);
1182     int argc = *argcp;
1183     char **argv = *argvp;
1184
1185     sset_init(remotes);
1186     for (;;) {
1187         int c;
1188
1189         c = getopt_long(argc, argv, short_options, long_options, NULL);
1190         if (c == -1) {
1191             break;
1192         }
1193
1194         switch (c) {
1195         case OPT_REMOTE:
1196             sset_add(remotes, optarg);
1197             break;
1198
1199         case OPT_UNIXCTL:
1200             *unixctl_pathp = optarg;
1201             break;
1202
1203         case OPT_RUN:
1204             *run_command = optarg;
1205             break;
1206
1207         case 'h':
1208             usage();
1209
1210         case 'V':
1211             ovs_print_version(0, 0);
1212             exit(EXIT_SUCCESS);
1213
1214         VLOG_OPTION_HANDLERS
1215         DAEMON_OPTION_HANDLERS
1216
1217         case 'p':
1218             private_key_file = optarg;
1219             break;
1220
1221         case 'c':
1222             certificate_file = optarg;
1223             break;
1224
1225         case 'C':
1226             ca_cert_file = optarg;
1227             bootstrap_ca_cert = false;
1228             break;
1229
1230         case OPT_BOOTSTRAP_CA_CERT:
1231             ca_cert_file = optarg;
1232             bootstrap_ca_cert = true;
1233             break;
1234
1235         case OPT_ENABLE_DUMMY:
1236             dummy_enable(optarg && !strcmp(optarg, "override"));
1237             break;
1238
1239         case '?':
1240             exit(EXIT_FAILURE);
1241
1242         default:
1243             abort();
1244         }
1245     }
1246     free(short_options);
1247
1248     *argcp -= optind;
1249     *argvp += optind;
1250 }
1251
1252 static void
1253 usage(void)
1254 {
1255     printf("%s: Open vSwitch database server\n"
1256            "usage: %s [OPTIONS] [DATABASE...]\n"
1257            "where each DATABASE is a database file in ovsdb format.\n"
1258            "The default DATABASE, if none is given, is\n%s/conf.db.\n",
1259            program_name, program_name, ovs_dbdir());
1260     printf("\nJSON-RPC options (may be specified any number of times):\n"
1261            "  --remote=REMOTE         connect or listen to REMOTE\n");
1262     stream_usage("JSON-RPC", true, true, true);
1263     daemon_usage();
1264     vlog_usage();
1265     printf("\nOther options:\n"
1266            "  --run COMMAND           run COMMAND as subprocess then exit\n"
1267            "  --unixctl=SOCKET        override default control socket name\n"
1268            "  -h, --help              display this help message\n"
1269            "  -V, --version           display version information\n");
1270     exit(EXIT_SUCCESS);
1271 }
1272 \f
1273 static struct json *
1274 sset_to_json(const struct sset *sset)
1275 {
1276     struct json *array;
1277     const char *s;
1278
1279     array = json_array_create_empty();
1280     SSET_FOR_EACH (s, sset) {
1281         json_array_add(array, json_string_create(s));
1282     }
1283     return array;
1284 }
1285
1286 /* Truncates and replaces the contents of 'config_file' by a representation of
1287  * 'remotes' and 'db_filenames'. */
1288 static void
1289 save_config__(FILE *config_file, const struct sset *remotes,
1290               const struct sset *db_filenames)
1291 {
1292     struct json *obj;
1293     char *s;
1294
1295     if (ftruncate(fileno(config_file), 0) == -1) {
1296         VLOG_FATAL("failed to truncate temporary file (%s)",
1297                    ovs_strerror(errno));
1298     }
1299
1300     obj = json_object_create();
1301     json_object_put(obj, "remotes", sset_to_json(remotes));
1302     json_object_put(obj, "db_filenames", sset_to_json(db_filenames));
1303     s = json_to_string(obj, 0);
1304     json_destroy(obj);
1305
1306     if (fseek(config_file, 0, SEEK_SET) != 0
1307         || fputs(s, config_file) == EOF
1308         || fflush(config_file) == EOF) {
1309         VLOG_FATAL("failed to write temporary file (%s)", ovs_strerror(errno));
1310     }
1311     free(s);
1312 }
1313
1314 /* Truncates and replaces the contents of 'config_file' by a representation of
1315  * 'config'. */
1316 static void
1317 save_config(struct server_config *config)
1318 {
1319     struct sset db_filenames;
1320     struct shash_node *node;
1321
1322     sset_init(&db_filenames);
1323     SHASH_FOR_EACH (node, config->all_dbs) {
1324         struct db *db = node->data;
1325         sset_add(&db_filenames, db->filename);
1326     }
1327
1328     save_config__(config->config_tmpfile, config->remotes, &db_filenames);
1329
1330     sset_destroy(&db_filenames);
1331 }
1332
1333 static void
1334 sset_from_json(struct sset *sset, const struct json *array)
1335 {
1336     size_t i;
1337
1338     sset_clear(sset);
1339
1340     ovs_assert(array->type == JSON_ARRAY);
1341     for (i = 0; i < array->u.array.n; i++) {
1342         const struct json *elem = array->u.array.elems[i];
1343         sset_add(sset, json_string(elem));
1344     }
1345 }
1346
1347 /* Clears and replaces 'remotes' and 'dbnames' by a configuration read from
1348  * 'config_file', which must have been previously written by save_config(). */
1349 static void
1350 load_config(FILE *config_file, struct sset *remotes, struct sset *db_filenames)
1351 {
1352     struct json *json;
1353
1354     if (fseek(config_file, 0, SEEK_SET) != 0) {
1355         VLOG_FATAL("seek failed in temporary file (%s)", ovs_strerror(errno));
1356     }
1357     json = json_from_stream(config_file);
1358     if (json->type == JSON_STRING) {
1359         VLOG_FATAL("reading json failed (%s)", json_string(json));
1360     }
1361     ovs_assert(json->type == JSON_OBJECT);
1362
1363     sset_from_json(remotes, shash_find_data(json_object(json), "remotes"));
1364     sset_from_json(db_filenames,
1365                    shash_find_data(json_object(json), "db_filenames"));
1366     json_destroy(json);
1367 }