]> git.proxmox.com Git - mirror_ovs.git/blame - ovsdb/ovsdb-server.c
trigger: Free leaked ovsdb_schema
[mirror_ovs.git] / ovsdb / ovsdb-server.c
CommitLineData
474339e2 1/* Copyright (c) 2009, 2010, 2011, 2012, 2013, 2014, 2016, 2017 Nicira, Inc.
f85f8ebb
BP
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
f85f8ebb
BP
18#include <errno.h>
19#include <getopt.h>
798e1352 20#include <inttypes.h>
f85f8ebb 21#include <signal.h>
ebed9f78 22#include <sys/stat.h>
eb077b26 23#include <unistd.h>
f85f8ebb 24
0b1fae1b 25#include "column.h"
f85f8ebb
BP
26#include "command-line.h"
27#include "daemon.h"
29701194 28#include "dirs.h"
3e8a2ad1 29#include "openvswitch/dynamic-string.h"
8a777cf6 30#include "fatal-signal.h"
bd06962a 31#include "file.h"
da897f41 32#include "hash.h"
ee89ea7b 33#include "openvswitch/json.h"
f85f8ebb
BP
34#include "jsonrpc.h"
35#include "jsonrpc-server.h"
b19bab5b 36#include "openvswitch/list.h"
0d085684 37#include "memory.h"
e0c73ed1 38#include "monitor.h"
da897f41 39#include "ovsdb.h"
0b1fae1b
BP
40#include "ovsdb-data.h"
41#include "ovsdb-types.h"
f85f8ebb 42#include "ovsdb-error.h"
fd016ae3 43#include "openvswitch/poll-loop.h"
f85f8ebb 44#include "process.h"
ae671c5f 45#include "replication.h"
0b1fae1b 46#include "row.h"
0d085684 47#include "simap.h"
ee89ea7b 48#include "openvswitch/shash.h"
9467fe62 49#include "stream-ssl.h"
f85f8ebb 50#include "stream.h"
b3c01ed3 51#include "sset.h"
1b1d2e6d 52#include "storage.h"
0b1fae1b 53#include "table.h"
f85f8ebb 54#include "timeval.h"
0b3e7a8b 55#include "transaction.h"
f85f8ebb
BP
56#include "trigger.h"
57#include "util.h"
58#include "unixctl.h"
97a3c435 59#include "perf-counter.h"
40e66ba7 60#include "ovsdb-util.h"
e6211adc 61#include "openvswitch/vlog.h"
5136ce49 62
d98e6007 63VLOG_DEFINE_THIS_MODULE(ovsdb_server);
f85f8ebb 64
6ab3dd96 65struct db {
6ab3dd96 66 char *filename;
6ab3dd96 67 struct ovsdb *db;
6bb9b060 68 struct uuid row_uuid;
6ab3dd96 69};
b4e8d170 70
78876719
BP
71/* SSL configuration. */
72static char *private_key_file;
73static char *certificate_file;
74static char *ca_cert_file;
e18a1d08
ER
75static char *ssl_protocols;
76static char *ssl_ciphers;
78876719
BP
77static bool bootstrap_ca_cert;
78
aa78de9d 79static unixctl_cb_func ovsdb_server_exit;
ada496b5 80static unixctl_cb_func ovsdb_server_compact;
31d0b6c9 81static unixctl_cb_func ovsdb_server_reconnect;
97a3c435
AZ
82static unixctl_cb_func ovsdb_server_perf_counters_clear;
83static unixctl_cb_func ovsdb_server_perf_counters_show;
c383f3bf 84static unixctl_cb_func ovsdb_server_disable_monitor_cond;
f53d7518
AZ
85static unixctl_cb_func ovsdb_server_set_active_ovsdb_server;
86static unixctl_cb_func ovsdb_server_get_active_ovsdb_server;
87static unixctl_cb_func ovsdb_server_connect_active_ovsdb_server;
88static unixctl_cb_func ovsdb_server_disconnect_active_ovsdb_server;
60e0cd04
AZ
89static unixctl_cb_func ovsdb_server_set_sync_exclude_tables;
90static unixctl_cb_func ovsdb_server_get_sync_exclude_tables;
91static unixctl_cb_func ovsdb_server_get_sync_status;
aa78de9d 92
0a3b723b 93struct server_config {
b421d2af 94 struct sset *remotes;
eeb36a52 95 struct shash *all_dbs;
5f36127e 96 FILE *config_tmpfile;
60e0cd04
AZ
97 char **sync_from;
98 char **sync_exclude;
99 bool *is_backup;
0a3b723b 100 struct ovsdb_jsonrpc_server *jsonrpc;
b421d2af
BP
101};
102static unixctl_cb_func ovsdb_server_add_remote;
103static unixctl_cb_func ovsdb_server_remove_remote;
104static unixctl_cb_func ovsdb_server_list_remotes;
105
0a3b723b
BP
106static unixctl_cb_func ovsdb_server_add_database;
107static unixctl_cb_func ovsdb_server_remove_database;
108static unixctl_cb_func ovsdb_server_list_databases;
109
1b1d2e6d
BP
110static void read_db(struct server_config *, struct db *);
111static struct ovsdb_error *open_db(struct server_config *,
112 const char *filename)
113 OVS_WARN_UNUSED_RESULT;
6bb9b060 114static void add_server_db(struct server_config *);
1b1d2e6d
BP
115static void remove_db(struct server_config *, struct shash_node *db, char *);
116static void close_db(struct server_config *, struct db *, char *);
eeb36a52 117
53178986
BP
118static void parse_options(int argc, char *argvp[],
119 struct sset *db_filenames, struct sset *remotes,
120 char **unixctl_pathp, char **run_command,
121 char **sync_from, char **sync_exclude,
122 bool *is_backup);
cab50449 123OVS_NO_RETURN static void usage(void);
f85f8ebb 124
0a3b723b
BP
125static char *reconfigure_remotes(struct ovsdb_jsonrpc_server *,
126 const struct shash *all_dbs,
127 struct sset *remotes);
128static char *reconfigure_ssl(const struct shash *all_dbs);
129static void report_error_if_changed(char *error, char **last_errorp);
0b1fae1b 130
0b3e7a8b 131static void update_remote_status(const struct ovsdb_jsonrpc_server *jsonrpc,
b3c01ed3 132 const struct sset *remotes,
eeb36a52 133 struct shash *all_dbs);
6bb9b060 134static void update_server_status(struct shash *all_dbs);
0b3e7a8b 135
0a3b723b 136static void save_config__(FILE *config_file, const struct sset *remotes,
60e0cd04
AZ
137 const struct sset *db_filenames,
138 const char *sync_from, const char *sync_exclude,
139 bool is_backup);
0a3b723b
BP
140static void save_config(struct server_config *);
141static void load_config(FILE *config_file, struct sset *remotes,
60e0cd04
AZ
142 struct sset *db_filenames, char **sync_from,
143 char **sync_exclude, bool *is_backup);
5f36127e 144
6ab3dd96 145static void
60e0cd04 146ovsdb_replication_init(const char *sync_from, const char *exclude,
05ac209a 147 struct shash *all_dbs, const struct uuid *server_uuid)
6ab3dd96 148{
05ac209a 149 replication_init(sync_from, exclude, server_uuid);
6ab3dd96
AZ
150 struct shash_node *node;
151 SHASH_FOR_EACH (node, all_dbs) {
152 struct db *db = node->data;
bc7bcc40
BP
153 if (node->name[0] != '_' && db->db) {
154 replication_add_local_db(node->name, db->db);
155 }
6ab3dd96
AZ
156 }
157}
158
513a3f64 159static void
1b1d2e6d
BP
160log_and_free_error(struct ovsdb_error *error)
161{
162 if (error) {
163 char *s = ovsdb_error_to_string_free(error);
164 VLOG_INFO("%s", s);
165 free(s);
166 }
167}
168
169static void
170main_loop(struct server_config *config,
171 struct ovsdb_jsonrpc_server *jsonrpc, struct shash *all_dbs,
513a3f64 172 struct unixctl_server *unixctl, struct sset *remotes,
60e0cd04 173 struct process *run_process, bool *exiting, bool *is_backup)
513a3f64
ES
174{
175 char *remotes_error, *ssl_error;
176 struct shash_node *node;
177 long long int status_timer = LLONG_MIN;
178
179 *exiting = false;
180 ssl_error = NULL;
181 remotes_error = NULL;
182 while (!*exiting) {
183 memory_run();
184 if (memory_should_report()) {
185 struct simap usage;
186
187 simap_init(&usage);
188 ovsdb_jsonrpc_server_get_memory_usage(jsonrpc, &usage);
e0c73ed1 189 ovsdb_monitor_get_memory_usage(&usage);
513a3f64
ES
190 SHASH_FOR_EACH(node, all_dbs) {
191 struct db *db = node->data;
192 ovsdb_get_memory_usage(db->db, &usage);
193 }
194 memory_report(&usage);
195 simap_destroy(&usage);
196 }
197
198 /* Run unixctl_server_run() before reconfigure_remotes() because
199 * ovsdb-server/add-remote and ovsdb-server/remove-remote can change
200 * the set of remotes that reconfigure_remotes() uses. */
201 unixctl_server_run(unixctl);
202
077f0302 203 ovsdb_jsonrpc_server_set_read_only(jsonrpc, *is_backup);
e51879e9 204
513a3f64
ES
205 report_error_if_changed(
206 reconfigure_remotes(jsonrpc, all_dbs, remotes),
207 &remotes_error);
208 report_error_if_changed(reconfigure_ssl(all_dbs), &ssl_error);
209 ovsdb_jsonrpc_server_run(jsonrpc);
210
60e0cd04 211 if (*is_backup) {
23c16b51
AZ
212 replication_run();
213 if (!replication_is_alive()) {
ac5d315c
AZ
214 disconnect_active_server();
215 *is_backup = false;
23c16b51 216 }
ae671c5f
MC
217 }
218
1b1d2e6d
BP
219 struct shash_node *next;
220 SHASH_FOR_EACH_SAFE (node, next, all_dbs) {
513a3f64 221 struct db *db = node->data;
695e8150 222 ovsdb_txn_history_run(db->db);
74352f87
HZ
223 ovsdb_storage_run(db->db->storage);
224 read_db(config, db);
225 /* Run triggers after storage_run and read_db to make sure new raft
226 * updates are utilized in current iteration. */
53178986 227 if (ovsdb_trigger_run(db->db, time_msec())) {
1b1d2e6d
BP
228 /* The message below is currently the only reason to disconnect
229 * all clients. */
230 ovsdb_jsonrpc_server_reconnect(
231 jsonrpc, false,
232 xasprintf("committed %s database schema conversion",
233 db->db->name));
234 }
1b1d2e6d
BP
235 if (ovsdb_storage_is_dead(db->db->storage)) {
236 VLOG_INFO("%s: removing database because storage disconnected "
237 "permanently", node->name);
238 remove_db(config, node,
239 xasprintf("removing database %s because storage "
240 "disconnected permanently", node->name));
241 } else if (ovsdb_storage_should_snapshot(db->db->storage)) {
242 log_and_free_error(ovsdb_snapshot(db->db));
53178986 243 }
513a3f64
ES
244 }
245 if (run_process) {
246 process_run();
247 if (process_exited(run_process)) {
248 *exiting = true;
249 }
250 }
251
ae671c5f 252 /* update Manager status(es) every 2.5 seconds */
513a3f64 253 if (time_msec() >= status_timer) {
ae671c5f 254 status_timer = time_msec() + 2500;
513a3f64
ES
255 update_remote_status(jsonrpc, remotes, all_dbs);
256 }
257
6bb9b060
BP
258 update_server_status(all_dbs);
259
513a3f64 260 memory_wait();
60e0cd04 261 if (*is_backup) {
8c945cec
AZ
262 replication_wait();
263 }
23c16b51 264
513a3f64
ES
265 ovsdb_jsonrpc_server_wait(jsonrpc);
266 unixctl_server_wait(unixctl);
267 SHASH_FOR_EACH(node, all_dbs) {
268 struct db *db = node->data;
269 ovsdb_trigger_wait(db->db, time_msec());
1b1d2e6d
BP
270 ovsdb_storage_wait(db->db->storage);
271 ovsdb_storage_read_wait(db->db->storage);
513a3f64
ES
272 }
273 if (run_process) {
274 process_wait(run_process);
275 }
276 if (*exiting) {
277 poll_immediate_wake();
278 }
279 poll_timer_wait_until(status_timer);
280 poll_block();
281 if (should_service_stop()) {
282 *exiting = true;
283 }
284 }
285
b396293a 286 free(remotes_error);
513a3f64
ES
287}
288
f85f8ebb
BP
289int
290main(int argc, char *argv[])
291{
aa78de9d 292 char *unixctl_path = NULL;
475afa1b 293 char *run_command = NULL;
f85f8ebb
BP
294 struct unixctl_server *unixctl;
295 struct ovsdb_jsonrpc_server *jsonrpc;
0a3b723b 296 struct sset remotes, db_filenames;
60e0cd04
AZ
297 char *sync_from, *sync_exclude;
298 bool is_backup;
0a3b723b 299 const char *db_filename;
475afa1b 300 struct process *run_process;
aa78de9d 301 bool exiting;
f85f8ebb 302 int retval;
5f36127e 303 FILE *config_tmpfile;
0a3b723b 304 struct server_config server_config;
eeb36a52 305 struct shash all_dbs;
03093a4f 306 struct shash_node *node, *next;
b4e8d170 307
5f383751 308 ovs_cmdl_proctitle_init(argc, argv);
f85f8ebb 309 set_program_name(argv[0]);
42dd41ef 310 service_start(&argc, &argv);
8a777cf6 311 fatal_ignore_sigpipe();
f85f8ebb
BP
312 process_init();
313
60e0cd04 314 bool active = false;
53178986
BP
315 parse_options(argc, argv, &db_filenames, &remotes, &unixctl_path,
316 &run_command, &sync_from, &sync_exclude, &active);
60e0cd04
AZ
317 is_backup = sync_from && !active;
318
e91b927d 319 daemon_become_new_user(false);
f85f8ebb 320
5f36127e
BP
321 /* Create and initialize 'config_tmpfile' as a temporary file to hold
322 * ovsdb-server's most basic configuration, and then save our initial
323 * configuration to it. When --monitor is used, this preserves the effects
324 * of ovs-appctl commands such as ovsdb-server/add-remote (which saves the
325 * new configuration) across crashes. */
326 config_tmpfile = tmpfile();
327 if (!config_tmpfile) {
328 ovs_fatal(errno, "failed to create temporary file");
329 }
0a3b723b 330
0a3b723b
BP
331 server_config.remotes = &remotes;
332 server_config.config_tmpfile = config_tmpfile;
333
60e0cd04
AZ
334 save_config__(config_tmpfile, &remotes, &db_filenames, sync_from,
335 sync_exclude, is_backup);
5f36127e 336
e91b927d 337 daemonize_start(false);
eb077b26 338
5f36127e 339 /* Load the saved config. */
60e0cd04
AZ
340 load_config(config_tmpfile, &remotes, &db_filenames, &sync_from,
341 &sync_exclude, &is_backup);
342
343 /* Start ovsdb jsonrpc server. When running as a backup server,
344 * jsonrpc connections are read only. Otherwise, both read
345 * and write transactions are allowed. */
346 jsonrpc = ovsdb_jsonrpc_server_create(is_backup);
eeb36a52 347
0a3b723b
BP
348 shash_init(&all_dbs);
349 server_config.all_dbs = &all_dbs;
350 server_config.jsonrpc = jsonrpc;
60e0cd04
AZ
351 server_config.sync_from = &sync_from;
352 server_config.sync_exclude = &sync_exclude;
353 server_config.is_backup = &is_backup;
7ef28119
WT
354
355 perf_counters_init();
356
0a3b723b 357 SSET_FOR_EACH (db_filename, &db_filenames) {
1b1d2e6d 358 struct ovsdb_error *error = open_db(&server_config, db_filename);
0a3b723b 359 if (error) {
1b1d2e6d
BP
360 char *s = ovsdb_error_to_string_free(error);
361 ovs_fatal(0, "%s", s);
0a3b723b 362 }
b4e8d170 363 }
6bb9b060 364 add_server_db(&server_config);
b4e8d170 365
1b1d2e6d 366 char *error = reconfigure_remotes(jsonrpc, &all_dbs, &remotes);
0a3b723b
BP
367 if (!error) {
368 error = reconfigure_ssl(&all_dbs);
369 }
370 if (error) {
371 ovs_fatal(0, "%s", error);
372 }
f85f8ebb 373
aa78de9d 374 retval = unixctl_server_create(unixctl_path, &unixctl);
f85f8ebb 375 if (retval) {
4d12270a 376 exit(EXIT_FAILURE);
f85f8ebb
BP
377 }
378
475afa1b
BP
379 if (run_command) {
380 char *run_argv[4];
381
382 run_argv[0] = "/bin/sh";
383 run_argv[1] = "-c";
384 run_argv[2] = run_command;
385 run_argv[3] = NULL;
386
e1208bc4 387 retval = process_start(run_argv, &run_process);
475afa1b
BP
388 if (retval) {
389 ovs_fatal(retval, "%s: process failed to start", run_command);
390 }
391 } else {
392 run_process = NULL;
393 }
394
95440284 395 daemonize_complete();
aa78de9d 396
08b9b190
EJ
397 if (!run_command) {
398 /* ovsdb-server is usually a long-running process, in which case it
399 * makes plenty of sense to log the version, but --run makes
400 * ovsdb-server more like a command-line tool, so skip it. */
401 VLOG_INFO("%s (Open vSwitch) %s", program_name, VERSION);
402 }
9dbc190c 403
0e15264f 404 unixctl_command_register("exit", "", 0, 0, ovsdb_server_exit, &exiting);
b4e8d170 405 unixctl_command_register("ovsdb-server/compact", "", 0, 1,
eeb36a52 406 ovsdb_server_compact, &all_dbs);
0e15264f 407 unixctl_command_register("ovsdb-server/reconnect", "", 0, 0,
7ff2009a 408 ovsdb_server_reconnect, jsonrpc);
aa78de9d 409
b421d2af 410 unixctl_command_register("ovsdb-server/add-remote", "REMOTE", 1, 1,
0a3b723b 411 ovsdb_server_add_remote, &server_config);
b421d2af 412 unixctl_command_register("ovsdb-server/remove-remote", "REMOTE", 1, 1,
0a3b723b 413 ovsdb_server_remove_remote, &server_config);
b421d2af
BP
414 unixctl_command_register("ovsdb-server/list-remotes", "", 0, 0,
415 ovsdb_server_list_remotes, &remotes);
416
0a3b723b
BP
417 unixctl_command_register("ovsdb-server/add-db", "DB", 1, 1,
418 ovsdb_server_add_database, &server_config);
419 unixctl_command_register("ovsdb-server/remove-db", "DB", 1, 1,
420 ovsdb_server_remove_database, &server_config);
421 unixctl_command_register("ovsdb-server/list-dbs", "", 0, 0,
422 ovsdb_server_list_databases, &all_dbs);
97a3c435
AZ
423 unixctl_command_register("ovsdb-server/perf-counters-show", "", 0, 0,
424 ovsdb_server_perf_counters_show, NULL);
425 unixctl_command_register("ovsdb-server/perf-counters-clear", "", 0, 0,
426 ovsdb_server_perf_counters_clear, NULL);
60e0cd04
AZ
427 unixctl_command_register("ovsdb-server/set-active-ovsdb-server", "", 1, 1,
428 ovsdb_server_set_active_ovsdb_server,
429 &server_config);
f53d7518 430 unixctl_command_register("ovsdb-server/get-active-ovsdb-server", "", 0, 0,
60e0cd04
AZ
431 ovsdb_server_get_active_ovsdb_server,
432 &server_config);
e51879e9
AZ
433 unixctl_command_register("ovsdb-server/connect-active-ovsdb-server", "",
434 0, 0, ovsdb_server_connect_active_ovsdb_server,
60e0cd04 435 &server_config);
e51879e9
AZ
436 unixctl_command_register("ovsdb-server/disconnect-active-ovsdb-server", "",
437 0, 0, ovsdb_server_disconnect_active_ovsdb_server,
60e0cd04
AZ
438 &server_config);
439 unixctl_command_register("ovsdb-server/set-sync-exclude-tables", "",
440 0, 1, ovsdb_server_set_sync_exclude_tables,
441 &server_config);
442 unixctl_command_register("ovsdb-server/get-sync-exclude-tables", "",
443 0, 0, ovsdb_server_get_sync_exclude_tables,
e51879e9 444 NULL);
60e0cd04
AZ
445 unixctl_command_register("ovsdb-server/sync-status", "",
446 0, 0, ovsdb_server_get_sync_status,
447 &server_config);
9dc05cdc 448
e47cb14c 449 /* Simulate the behavior of OVS release prior to version 2.5 that
c383f3bf
LS
450 * does not support the monitor_cond method. */
451 unixctl_command_register("ovsdb-server/disable-monitor-cond", "", 0, 0,
452 ovsdb_server_disable_monitor_cond, jsonrpc);
e47cb14c 453
60e0cd04 454 if (is_backup) {
05ac209a
AZ
455 const struct uuid *server_uuid;
456 server_uuid = ovsdb_jsonrpc_server_get_uuid(jsonrpc);
457 ovsdb_replication_init(sync_from, sync_exclude, &all_dbs, server_uuid);
6ab3dd96
AZ
458 }
459
1b1d2e6d
BP
460 main_loop(&server_config, jsonrpc, &all_dbs, unixctl, &remotes,
461 run_process, &exiting, &is_backup);
0d085684 462
03093a4f 463 SHASH_FOR_EACH_SAFE(node, next, &all_dbs) {
eeb36a52 464 struct db *db = node->data;
aa02ac64 465 close_db(&server_config, db, NULL);
03093a4f 466 shash_delete(&all_dbs, node);
b4e8d170 467 }
1b1d2e6d 468 ovsdb_jsonrpc_server_destroy(jsonrpc);
d557df96 469 shash_destroy(&all_dbs);
b3c01ed3 470 sset_destroy(&remotes);
03093a4f 471 sset_destroy(&db_filenames);
60e0cd04
AZ
472 free(sync_from);
473 free(sync_exclude);
23935e8b 474 unixctl_server_destroy(unixctl);
3109b4e1 475 replication_destroy();
f85f8ebb 476
475afa1b
BP
477 if (run_process && process_exited(run_process)) {
478 int status = process_status(run_process);
479 if (status) {
480 ovs_fatal(0, "%s: child exited, %s",
481 run_command, process_status_msg(status));
482 }
483 }
97a3c435 484 perf_counters_destroy();
42dd41ef 485 service_stop();
f85f8ebb
BP
486 return 0;
487}
488
ebed9f78
BP
489/* Returns true if 'filename' is known to be already open as a database,
490 * false if not.
491 *
492 * "False negatives" are possible. */
493static bool
494is_already_open(struct server_config *config OVS_UNUSED,
495 const char *filename OVS_UNUSED)
496{
497#ifndef _WIN32
498 struct stat s;
499
500 if (!stat(filename, &s)) {
501 struct shash_node *node;
502
503 SHASH_FOR_EACH (node, config->all_dbs) {
504 struct db *db = node->data;
505 struct stat s2;
506
507 if (!stat(db->filename, &s2)
508 && s.st_dev == s2.st_dev
509 && s.st_ino == s2.st_ino) {
510 return true;
511 }
512 }
513 }
514#endif /* !_WIN32 */
515
516 return false;
517}
518
03093a4f 519static void
1b1d2e6d
BP
520close_db(struct server_config *config, struct db *db, char *comment)
521{
522 if (db) {
523 ovsdb_jsonrpc_server_remove_db(config->jsonrpc, db->db, comment);
524 ovsdb_destroy(db->db);
525 free(db->filename);
526 free(db);
527 } else {
528 free(comment);
529 }
530}
531
532static struct ovsdb_error * OVS_WARN_UNUSED_RESULT
533parse_txn(struct server_config *config, struct db *db,
534 struct ovsdb_schema *schema, const struct json *txn_json,
535 const struct uuid *txnid)
536{
537 if (schema) {
538 /* We're replacing the schema (and the data). Destroy the database
539 * (first grabbing its storage), then replace it with the new schema.
540 * The transaction must also include the replacement data.
541 *
542 * Only clustered database schema changes go through this path. */
543 ovs_assert(txn_json);
544 ovs_assert(ovsdb_storage_is_clustered(db->db->storage));
545
546 struct ovsdb_error *error = ovsdb_schema_check_for_ephemeral_columns(
547 schema);
548 if (error) {
549 return error;
550 }
551
552 ovsdb_jsonrpc_server_reconnect(
553 config->jsonrpc, false,
554 (db->db->schema
555 ? xasprintf("database %s schema changed", db->db->name)
556 : xasprintf("database %s connected to storage", db->db->name)));
557
558 ovsdb_replace(db->db, ovsdb_create(schema, NULL));
559
560 /* Force update to schema in _Server database. */
561 db->row_uuid = UUID_ZERO;
562 }
563
564 if (txn_json) {
565 if (!db->db->schema) {
566 return ovsdb_error(NULL, "%s: data without schema", db->filename);
567 }
568
569 struct ovsdb_txn *txn;
570 struct ovsdb_error *error;
571
572 error = ovsdb_file_txn_from_json(db->db, txn_json, false, &txn);
573 if (!error) {
695e8150 574 ovsdb_txn_set_txnid(txnid, txn);
1b1d2e6d
BP
575 log_and_free_error(ovsdb_txn_replay_commit(txn));
576 }
577 if (!error && !uuid_is_zero(txnid)) {
578 db->db->prereq = *txnid;
579 }
580 if (error) {
581 ovsdb_storage_unread(db->db->storage);
582 return error;
583 }
584 }
585
586 return NULL;
587}
588
589static void
590read_db(struct server_config *config, struct db *db)
03093a4f 591{
1b1d2e6d
BP
592 struct ovsdb_error *error;
593 for (;;) {
594 struct ovsdb_schema *schema;
595 struct json *txn_json;
596 struct uuid txnid;
597 error = ovsdb_storage_read(db->db->storage, &schema, &txn_json,
598 &txnid);
599 if (error) {
600 break;
601 } else if (!schema && !txn_json) {
602 /* End of file. */
603 return;
604 } else {
605 error = parse_txn(config, db, schema, txn_json, &txnid);
606 json_destroy(txn_json);
607 if (error) {
608 break;
609 }
610 }
611 }
612
613 /* Log error but otherwise ignore it. Probably the database just
614 * got truncated due to power failure etc. and we should use its
615 * current contents. */
616 char *msg = ovsdb_error_to_string_free(error);
617 VLOG_ERR("%s", msg);
618 free(msg);
03093a4f
RW
619}
620
6bb9b060 621static void
1b1d2e6d 622add_db(struct server_config *config, struct db *db)
6bb9b060
BP
623{
624 db->row_uuid = UUID_ZERO;
1b1d2e6d 625 shash_add_assert(config->all_dbs, db->db->name, db);
6bb9b060
BP
626}
627
1b1d2e6d 628static struct ovsdb_error * OVS_WARN_UNUSED_RESULT
0a3b723b 629open_db(struct server_config *config, const char *filename)
eeb36a52 630{
0a3b723b 631 struct db *db;
eeb36a52 632
ebed9f78
BP
633 /* If we know that the file is already open, return a good error message.
634 * Otherwise, if the file is open, we'll fail later on with a harder to
635 * interpret file locking error. */
636 if (is_already_open(config, filename)) {
1b1d2e6d
BP
637 return ovsdb_error(NULL, "%s: already open", filename);
638 }
639
640 struct ovsdb_storage *storage;
641 struct ovsdb_error *error;
642 error = ovsdb_storage_open(filename, true, &storage);
643 if (error) {
644 return error;
ebed9f78
BP
645 }
646
0a3b723b
BP
647 db = xzalloc(sizeof *db);
648 db->filename = xstrdup(filename);
eeb36a52 649
1b1d2e6d
BP
650 struct ovsdb_schema *schema;
651 if (ovsdb_storage_is_clustered(storage)) {
652 schema = NULL;
0a3b723b 653 } else {
1b1d2e6d
BP
654 struct json *txn_json;
655 error = ovsdb_storage_read(storage, &schema, &txn_json, NULL);
656 if (error) {
657 ovsdb_storage_close(storage);
658 return error;
659 }
660 ovs_assert(schema && !txn_json);
eeb36a52 661 }
1b1d2e6d
BP
662 db->db = ovsdb_create(schema, storage);
663 ovsdb_jsonrpc_server_add_db(config->jsonrpc, db->db);
eeb36a52 664
695e8150
HZ
665 /* Enable txn history for clustered mode. It is not enabled for other mode
666 * for now, since txn id is available for clustered mode only. */
c194367c
HZ
667 ovsdb_txn_history_init(db->db, ovsdb_storage_is_clustered(storage));
668
1b1d2e6d
BP
669 read_db(config, db);
670
671 error = (db->db->name[0] == '_'
672 ? ovsdb_error(NULL, "%s: names beginning with \"_\" are reserved",
673 db->db->name)
674 : shash_find(config->all_dbs, db->db->name)
675 ? ovsdb_error(NULL, "%s: duplicate database name", db->db->name)
676 : NULL);
677 if (error) {
678 char *error_s = ovsdb_error_to_string(error);
679 close_db(config, db,
680 xasprintf("cannot complete opening %s database (%s)",
681 db->db->name, error_s));
682 free(error_s);
683 return error;
684 }
685
686 add_db(config, db);
687 return NULL;
eeb36a52
GS
688}
689
6bb9b060
BP
690/* Add the internal _Server database to the server configuration. */
691static void
692add_server_db(struct server_config *config)
693{
694 struct json *schema_json = json_from_string(
695#include "ovsdb/_server.ovsschema.inc"
696 );
697 ovs_assert(schema_json->type == JSON_OBJECT);
698
699 struct ovsdb_schema *schema;
700 struct ovsdb_error *error OVS_UNUSED = ovsdb_schema_from_json(schema_json,
701 &schema);
702 ovs_assert(!error);
703 json_destroy(schema_json);
704
705 struct db *db = xzalloc(sizeof *db);
695e8150
HZ
706 /* We don't need txn_history for server_db. */
707
6bb9b060 708 db->filename = xstrdup("<internal>");
1b1d2e6d
BP
709 db->db = ovsdb_create(schema, ovsdb_storage_create_unbacked());
710 bool ok OVS_UNUSED = ovsdb_jsonrpc_server_add_db(config->jsonrpc, db->db);
711 ovs_assert(ok);
712 add_db(config, db);
6bb9b060
BP
713}
714
cab50449 715static char * OVS_WARN_UNUSED_RESULT
eeb36a52 716parse_db_column__(const struct shash *all_dbs,
c02cf07b
BP
717 const char *name_, char *name,
718 const struct db **dbp,
719 const struct ovsdb_table **tablep,
720 const struct ovsdb_column **columnp)
0b1fae1b 721{
fb6de52c 722 const char *db_name, *table_name, *column_name;
b4e8d170 723 const char *tokens[3];
0b1fae1b
BP
724 char *save_ptr = NULL;
725
c02cf07b
BP
726 *dbp = NULL;
727 *tablep = NULL;
728 *columnp = NULL;
729
b0ef0551 730 strtok_r(name, ":", &save_ptr); /* "db:" */
b4e8d170
BP
731 tokens[0] = strtok_r(NULL, ",", &save_ptr);
732 tokens[1] = strtok_r(NULL, ",", &save_ptr);
733 tokens[2] = strtok_r(NULL, ",", &save_ptr);
fb6de52c 734 if (!tokens[0] || !tokens[1] || !tokens[2]) {
c02cf07b 735 return xasprintf("\"%s\": invalid syntax", name_);
0b1fae1b 736 }
b4e8d170 737
fb6de52c
GS
738 db_name = tokens[0];
739 table_name = tokens[1];
740 column_name = tokens[2];
741
1b1d2e6d
BP
742 *dbp = shash_find_data(all_dbs, tokens[0]);
743 if (!*dbp) {
fb6de52c 744 return xasprintf("\"%s\": no database named %s", name_, db_name);
b4e8d170 745 }
0b1fae1b 746
1b1d2e6d
BP
747 *tablep = ovsdb_get_table((*dbp)->db, table_name);
748 if (!*tablep) {
c02cf07b 749 return xasprintf("\"%s\": no table named %s", name_, table_name);
0b1fae1b
BP
750 }
751
1b1d2e6d
BP
752 *columnp = ovsdb_table_schema_get_column((*tablep)->schema, column_name);
753 if (!*columnp) {
c02cf07b
BP
754 return xasprintf("\"%s\": table \"%s\" has no column \"%s\"",
755 name_, table_name, column_name);
0b1fae1b
BP
756 }
757
c02cf07b 758 return NULL;
94db5407
BP
759}
760
c02cf07b
BP
761/* Returns NULL if successful, otherwise a malloc()'d string describing the
762 * error. */
cab50449 763static char * OVS_WARN_UNUSED_RESULT
eeb36a52 764parse_db_column(const struct shash *all_dbs,
c02cf07b
BP
765 const char *name_,
766 const struct db **dbp,
767 const struct ovsdb_table **tablep,
768 const struct ovsdb_column **columnp)
769{
770 char *name = xstrdup(name_);
eeb36a52 771 char *retval = parse_db_column__(all_dbs, name_, name,
c02cf07b
BP
772 dbp, tablep, columnp);
773 free(name);
774 return retval;
775}
776
777/* Returns NULL if successful, otherwise a malloc()'d string describing the
778 * error. */
cab50449 779static char * OVS_WARN_UNUSED_RESULT
eeb36a52 780parse_db_string_column(const struct shash *all_dbs,
94db5407 781 const char *name,
b4e8d170 782 const struct db **dbp,
94db5407
BP
783 const struct ovsdb_table **tablep,
784 const struct ovsdb_column **columnp)
785{
c02cf07b 786 char *retval;
94db5407 787
eeb36a52 788 retval = parse_db_column(all_dbs, name, dbp, tablep, columnp);
c02cf07b
BP
789 if (retval) {
790 return retval;
791 }
94db5407 792
c02cf07b
BP
793 if ((*columnp)->type.key.type != OVSDB_TYPE_STRING
794 || (*columnp)->type.value.type != OVSDB_TYPE_VOID) {
795 return xasprintf("\"%s\": table \"%s\" column \"%s\" is "
796 "not string or set of strings",
797 name, (*tablep)->schema->name, (*columnp)->name);
78876719
BP
798 }
799
c02cf07b 800 return NULL;
78876719
BP
801}
802
0a3b723b
BP
803static const char *
804query_db_string(const struct shash *all_dbs, const char *name,
805 struct ds *errors)
78876719
BP
806{
807 if (!name || strncmp(name, "db:", 3)) {
808 return name;
809 } else {
810 const struct ovsdb_column *column;
811 const struct ovsdb_table *table;
812 const struct ovsdb_row *row;
b4e8d170 813 const struct db *db;
c02cf07b 814 char *retval;
78876719 815
eeb36a52 816 retval = parse_db_string_column(all_dbs, name,
c02cf07b
BP
817 &db, &table, &column);
818 if (retval) {
1b1d2e6d
BP
819 if (db && !db->db->schema) {
820 /* 'db' is a clustered database but it hasn't connected to the
821 * cluster yet, so we can't get anything out of it, not even a
822 * schema. Not really an error. */
823 } else {
824 ds_put_format(errors, "%s\n", retval);
825 }
0ded15d4 826 free(retval);
0a3b723b 827 return NULL;
c02cf07b 828 }
78876719 829
4e8e4213 830 HMAP_FOR_EACH (row, hmap_node, &table->rows) {
78876719
BP
831 const struct ovsdb_datum *datum;
832 size_t i;
833
834 datum = &row->fields[column->index];
835 for (i = 0; i < datum->n; i++) {
836 if (datum->keys[i].string[0]) {
837 return datum->keys[i].string;
838 }
839 }
840 }
841 return NULL;
0b1fae1b 842 }
78876719
BP
843}
844
94db5407
BP
845static struct ovsdb_jsonrpc_options *
846add_remote(struct shash *remotes, const char *target)
847{
848 struct ovsdb_jsonrpc_options *options;
849
850 options = shash_find_data(remotes, target);
851 if (!options) {
f1936eb6 852 options = ovsdb_jsonrpc_default_options(target);
94db5407
BP
853 shash_add(remotes, target, options);
854 }
855
856 return options;
857}
858
ed9d4380
YS
859static void
860free_remotes(struct shash *remotes)
861{
862 if (remotes) {
863 struct shash_node *node;
864
865 SHASH_FOR_EACH (node, remotes) {
866 struct ovsdb_jsonrpc_options *options = node->data;
867 free(options->role);
868 }
869 shash_destroy_free_data(remotes);
870 }
871}
872
94db5407
BP
873/* Adds a remote and options to 'remotes', based on the Manager table row in
874 * 'row'. */
875static void
876add_manager_options(struct shash *remotes, const struct ovsdb_row *row)
877{
878 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
879 struct ovsdb_jsonrpc_options *options;
880 long long int max_backoff, probe_interval;
9c1a1182 881 bool read_only;
d6db7b3c 882 const char *target, *dscp_string, *role;
94db5407 883
40e66ba7 884 if (!ovsdb_util_read_string_column(row, "target", &target) || !target) {
94db5407
BP
885 VLOG_INFO_RL(&rl, "Table `%s' has missing or invalid `target' column",
886 row->table->schema->name);
887 return;
888 }
889
890 options = add_remote(remotes, target);
40e66ba7 891 if (ovsdb_util_read_integer_column(row, "max_backoff", &max_backoff)) {
94db5407
BP
892 options->max_backoff = max_backoff;
893 }
40e66ba7
LR
894 if (ovsdb_util_read_integer_column(row, "inactivity_probe",
895 &probe_interval)) {
94db5407
BP
896 options->probe_interval = probe_interval;
897 }
40e66ba7 898 if (ovsdb_util_read_bool_column(row, "read_only", &read_only)) {
9c1a1182
LR
899 options->read_only = read_only;
900 }
f125905c 901
d6db7b3c
LR
902 free(options->role);
903 options->role = NULL;
904 if (ovsdb_util_read_string_column(row, "role", &role) && role) {
905 options->role = xstrdup(role);
906 }
907
cea15768 908 options->dscp = DSCP_DEFAULT;
40e66ba7
LR
909 dscp_string = ovsdb_util_read_map_string_column(row, "other_config",
910 "dscp");
cea15768
EJ
911 if (dscp_string) {
912 int dscp = atoi(dscp_string);
913 if (dscp >= 0 && dscp <= 63) {
914 options->dscp = dscp;
915 }
916 }
94db5407
BP
917}
918
78876719 919static void
eeb36a52 920query_db_remotes(const char *name, const struct shash *all_dbs,
0a3b723b 921 struct shash *remotes, struct ds *errors)
78876719
BP
922{
923 const struct ovsdb_column *column;
924 const struct ovsdb_table *table;
925 const struct ovsdb_row *row;
b4e8d170 926 const struct db *db;
c02cf07b 927 char *retval;
78876719 928
eeb36a52 929 retval = parse_db_column(all_dbs, name, &db, &table, &column);
c02cf07b 930 if (retval) {
1b1d2e6d
BP
931 if (db && !db->db->schema) {
932 /* 'db' is a clustered database but it hasn't connected to the
933 * cluster yet, so we can't get anything out of it, not even a
934 * schema. Not really an error. */
935 } else {
936 ds_put_format(errors, "%s\n", retval);
937 }
0a3b723b
BP
938 free(retval);
939 return;
c02cf07b 940 }
0b1fae1b 941
94db5407
BP
942 if (column->type.key.type == OVSDB_TYPE_STRING
943 && column->type.value.type == OVSDB_TYPE_VOID) {
944 HMAP_FOR_EACH (row, hmap_node, &table->rows) {
945 const struct ovsdb_datum *datum;
946 size_t i;
947
948 datum = &row->fields[column->index];
949 for (i = 0; i < datum->n; i++) {
950 add_remote(remotes, datum->keys[i].string);
951 }
952 }
953 } else if (column->type.key.type == OVSDB_TYPE_UUID
fa37affa 954 && column->type.key.uuid.refTable
94db5407 955 && column->type.value.type == OVSDB_TYPE_VOID) {
fa37affa 956 const struct ovsdb_table *ref_table = column->type.key.uuid.refTable;
94db5407
BP
957 HMAP_FOR_EACH (row, hmap_node, &table->rows) {
958 const struct ovsdb_datum *datum;
959 size_t i;
960
961 datum = &row->fields[column->index];
962 for (i = 0; i < datum->n; i++) {
963 const struct ovsdb_row *ref_row;
0b1fae1b 964
94db5407
BP
965 ref_row = ovsdb_table_get_row(ref_table, &datum->keys[i].uuid);
966 if (ref_row) {
967 add_manager_options(remotes, ref_row);
968 }
969 }
0b1fae1b
BP
970 }
971 }
972}
973
0b3e7a8b
AE
974static void
975update_remote_row(const struct ovsdb_row *row, struct ovsdb_txn *txn,
87fcbc60 976 const struct ovsdb_jsonrpc_server *jsonrpc)
0b3e7a8b 977{
87fcbc60 978 struct ovsdb_jsonrpc_remote_status status;
0b3e7a8b
AE
979 struct ovsdb_row *rw_row;
980 const char *target;
798e1352 981 char *keys[9], *values[9];
0b3e7a8b
AE
982 size_t n = 0;
983
984 /* Get the "target" (protocol/host/port) spec. */
40e66ba7 985 if (!ovsdb_util_read_string_column(row, "target", &target)) {
0b3e7a8b
AE
986 /* Bad remote spec or incorrect schema. */
987 return;
988 }
0b3e7a8b 989 rw_row = ovsdb_txn_row_modify(txn, row);
87fcbc60 990 ovsdb_jsonrpc_server_get_remote_status(jsonrpc, target, &status);
0b3e7a8b
AE
991
992 /* Update status information columns. */
40e66ba7 993 ovsdb_util_write_bool_column(rw_row, "is_connected", status.is_connected);
0b3e7a8b 994
87fcbc60
BP
995 if (status.state) {
996 keys[n] = xstrdup("state");
997 values[n++] = xstrdup(status.state);
998 }
999 if (status.sec_since_connect != UINT_MAX) {
5eda645e 1000 keys[n] = xstrdup("sec_since_connect");
87fcbc60 1001 values[n++] = xasprintf("%u", status.sec_since_connect);
5eda645e 1002 }
87fcbc60 1003 if (status.sec_since_disconnect != UINT_MAX) {
5eda645e 1004 keys[n] = xstrdup("sec_since_disconnect");
87fcbc60 1005 values[n++] = xasprintf("%u", status.sec_since_disconnect);
5eda645e 1006 }
87fcbc60 1007 if (status.last_error) {
0b3e7a8b
AE
1008 keys[n] = xstrdup("last_error");
1009 values[n++] =
87fcbc60 1010 xstrdup(ovs_retval_to_string(status.last_error));
0b3e7a8b 1011 }
da897f41
BP
1012 if (status.locks_held && status.locks_held[0]) {
1013 keys[n] = xstrdup("locks_held");
1014 values[n++] = xstrdup(status.locks_held);
1015 }
1016 if (status.locks_waiting && status.locks_waiting[0]) {
1017 keys[n] = xstrdup("locks_waiting");
1018 values[n++] = xstrdup(status.locks_waiting);
1019 }
1020 if (status.locks_lost && status.locks_lost[0]) {
1021 keys[n] = xstrdup("locks_lost");
1022 values[n++] = xstrdup(status.locks_lost);
1023 }
a11f6164
BP
1024 if (status.n_connections > 1) {
1025 keys[n] = xstrdup("n_connections");
1026 values[n++] = xasprintf("%d", status.n_connections);
1027 }
798e1352
BP
1028 if (status.bound_port != htons(0)) {
1029 keys[n] = xstrdup("bound_port");
1030 values[n++] = xasprintf("%"PRIu16, ntohs(status.bound_port));
1031 }
40e66ba7 1032 ovsdb_util_write_string_string_column(rw_row, "status", keys, values, n);
da897f41
BP
1033
1034 ovsdb_jsonrpc_server_free_remote_status(&status);
0b3e7a8b
AE
1035}
1036
1037static void
99b09c63 1038update_remote_rows(const struct shash *all_dbs, const struct db *db_,
87fcbc60 1039 const char *remote_name,
99b09c63
BP
1040 const struct ovsdb_jsonrpc_server *jsonrpc,
1041 struct ovsdb_txn *txn)
0b3e7a8b
AE
1042{
1043 const struct ovsdb_table *table, *ref_table;
1044 const struct ovsdb_column *column;
1045 const struct ovsdb_row *row;
b4e8d170 1046 const struct db *db;
c02cf07b 1047 char *retval;
0b3e7a8b
AE
1048
1049 if (strncmp("db:", remote_name, 3)) {
1050 return;
1051 }
1052
eeb36a52 1053 retval = parse_db_column(all_dbs, remote_name, &db, &table, &column);
c02cf07b 1054 if (retval) {
0a3b723b
BP
1055 free(retval);
1056 return;
c02cf07b 1057 }
0b3e7a8b 1058
99b09c63
BP
1059 if (db != db_
1060 || column->type.key.type != OVSDB_TYPE_UUID
fa37affa 1061 || !column->type.key.uuid.refTable
0b3e7a8b
AE
1062 || column->type.value.type != OVSDB_TYPE_VOID) {
1063 return;
1064 }
1065
fa37affa 1066 ref_table = column->type.key.uuid.refTable;
0b3e7a8b
AE
1067
1068 HMAP_FOR_EACH (row, hmap_node, &table->rows) {
1069 const struct ovsdb_datum *datum;
1070 size_t i;
1071
1072 datum = &row->fields[column->index];
1073 for (i = 0; i < datum->n; i++) {
1074 const struct ovsdb_row *ref_row;
1075
1076 ref_row = ovsdb_table_get_row(ref_table, &datum->keys[i].uuid);
1077 if (ref_row) {
99b09c63 1078 update_remote_row(ref_row, txn, jsonrpc);
0b3e7a8b
AE
1079 }
1080 }
1081 }
1082}
1083
6bb9b060
BP
1084static void
1085commit_txn(struct ovsdb_txn *txn, const char *name)
1086{
1b1d2e6d 1087 struct ovsdb_error *error = ovsdb_txn_propose_commit_block(txn, false);
6bb9b060
BP
1088 if (error) {
1089 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
1090 char *msg = ovsdb_error_to_string_free(error);
1091 VLOG_ERR_RL(&rl, "Failed to update %s: %s", name, msg);
1092 free(msg);
1093 }
1094}
1095
0b3e7a8b
AE
1096static void
1097update_remote_status(const struct ovsdb_jsonrpc_server *jsonrpc,
b4e8d170 1098 const struct sset *remotes,
eeb36a52 1099 struct shash *all_dbs)
0b3e7a8b 1100{
eeb36a52 1101 struct shash_node *node;
99b09c63
BP
1102 SHASH_FOR_EACH (node, all_dbs) {
1103 struct db *db = node->data;
1b1d2e6d
BP
1104 if (!db->db || ovsdb_storage_is_clustered(db->db->storage)) {
1105 continue;
1106 }
0b3e7a8b 1107
1b1d2e6d 1108 struct ovsdb_txn *txn = ovsdb_txn_create(db->db);
99b09c63
BP
1109 const char *remote;
1110 SSET_FOR_EACH (remote, remotes) {
1111 update_remote_rows(all_dbs, db, remote, jsonrpc, txn);
1112 }
1b1d2e6d 1113 commit_txn(txn, "remote status");
6bb9b060
BP
1114 }
1115}
1116
1117/* Updates 'row', a row in the _Server database's Database table, to match
1118 * 'db'. */
1119static void
1120update_database_status(struct ovsdb_row *row, struct db *db)
1121{
1b1d2e6d
BP
1122 ovsdb_util_write_string_column(row, "name", db->db->name);
1123 ovsdb_util_write_string_column(row, "model",
1124 ovsdb_storage_get_model(db->db->storage));
1125 ovsdb_util_write_bool_column(row, "connected",
1126 ovsdb_storage_is_connected(db->db->storage));
1127 ovsdb_util_write_bool_column(row, "leader",
1128 ovsdb_storage_is_leader(db->db->storage));
1129 ovsdb_util_write_uuid_column(row, "cid",
1130 ovsdb_storage_get_cid(db->db->storage));
1131 ovsdb_util_write_uuid_column(row, "sid",
1132 ovsdb_storage_get_sid(db->db->storage));
1133
1134 uint64_t index = ovsdb_storage_get_applied_index(db->db->storage);
1135 if (index) {
1136 ovsdb_util_write_integer_column(row, "index", index);
1137 } else {
1138 ovsdb_util_clear_column(row, "index");
1139 }
6bb9b060
BP
1140
1141 const struct uuid *row_uuid = ovsdb_row_get_uuid(row);
1142 if (!uuid_equals(row_uuid, &db->row_uuid)) {
1143 db->row_uuid = *row_uuid;
1144
1145 /* The schema can only change if the row UUID changes, so only update
1146 * it in that case. Presumably, this is worth optimizing because
1147 * schemas are often kilobytes in size and nontrivial to serialize. */
1b1d2e6d
BP
1148 char *schema = NULL;
1149 if (db->db->schema) {
1150 struct json *json_schema = ovsdb_schema_to_json(db->db->schema);
1151 schema = json_to_string(json_schema, JSSF_SORT);
1152 json_destroy(json_schema);
1153 }
6bb9b060
BP
1154 ovsdb_util_write_string_column(row, "schema", schema);
1155 free(schema);
6bb9b060
BP
1156 }
1157}
1158
1159/* Updates the Database table in the _Server database. */
1160static void
1161update_server_status(struct shash *all_dbs)
1162{
1163 struct db *server_db = shash_find_data(all_dbs, "_Server");
1164 struct ovsdb_table *database_table = shash_find_data(
1165 &server_db->db->tables, "Database");
1166 struct ovsdb_txn *txn = ovsdb_txn_create(server_db->db);
1167
1168 /* Update rows for databases that still exist.
1169 * Delete rows for databases that no longer exist. */
1170 const struct ovsdb_row *row, *next_row;
1171 HMAP_FOR_EACH_SAFE (row, next_row, hmap_node, &database_table->rows) {
1172 const char *name;
1173 ovsdb_util_read_string_column(row, "name", &name);
1174 struct db *db = shash_find_data(all_dbs, name);
1175 if (!db || !db->db) {
1176 ovsdb_txn_row_delete(txn, row);
1177 } else {
1178 update_database_status(ovsdb_txn_row_modify(txn, row), db);
b4e8d170 1179 }
0b3e7a8b 1180 }
6bb9b060
BP
1181
1182 /* Add rows for new databases.
1183 *
1184 * This is O(n**2) but usually there are only 2 or 3 databases. */
1185 struct shash_node *node;
1186 SHASH_FOR_EACH (node, all_dbs) {
1187 struct db *db = node->data;
1188
1189 if (!db->db) {
1190 continue;
1191 }
1192
1193 HMAP_FOR_EACH (row, hmap_node, &database_table->rows) {
1194 const char *name;
1195 ovsdb_util_read_string_column(row, "name", &name);
1196 if (!strcmp(name, node->name)) {
1197 goto next;
1198 }
1199 }
1200
1201 /* Add row. */
1b1d2e6d
BP
1202 struct ovsdb_row *new_row = ovsdb_row_create(database_table);
1203 uuid_generate(ovsdb_row_get_uuid_rw(new_row));
1204 update_database_status(new_row, db);
1205 ovsdb_txn_row_insert(txn, new_row);
6bb9b060
BP
1206
1207 next:;
1208 }
1209
1210 commit_txn(txn, "_Server");
0b3e7a8b
AE
1211}
1212
0a3b723b
BP
1213/* Reconfigures ovsdb-server's remotes based on information in the database. */
1214static char *
1215reconfigure_remotes(struct ovsdb_jsonrpc_server *jsonrpc,
eeb36a52 1216 const struct shash *all_dbs, struct sset *remotes)
0b1fae1b 1217{
0a3b723b 1218 struct ds errors = DS_EMPTY_INITIALIZER;
0b1fae1b 1219 struct shash resolved_remotes;
b3c01ed3 1220 const char *name;
0b1fae1b 1221
78876719 1222 /* Configure remotes. */
0b1fae1b 1223 shash_init(&resolved_remotes);
b3c01ed3 1224 SSET_FOR_EACH (name, remotes) {
0b1fae1b 1225 if (!strncmp(name, "db:", 3)) {
0a3b723b 1226 query_db_remotes(name, all_dbs, &resolved_remotes, &errors);
0b1fae1b 1227 } else {
94db5407 1228 add_remote(&resolved_remotes, name);
0b1fae1b
BP
1229 }
1230 }
1231 ovsdb_jsonrpc_server_set_remotes(jsonrpc, &resolved_remotes);
ed9d4380 1232 free_remotes(&resolved_remotes);
0b1fae1b 1233
0a3b723b
BP
1234 return errors.string;
1235}
1236
1237static char *
1238reconfigure_ssl(const struct shash *all_dbs)
1239{
1240 struct ds errors = DS_EMPTY_INITIALIZER;
1241 const char *resolved_private_key;
1242 const char *resolved_certificate;
1243 const char *resolved_ca_cert;
e18a1d08
ER
1244 const char *resolved_ssl_protocols;
1245 const char *resolved_ssl_ciphers;
0a3b723b
BP
1246
1247 resolved_private_key = query_db_string(all_dbs, private_key_file, &errors);
1248 resolved_certificate = query_db_string(all_dbs, certificate_file, &errors);
1249 resolved_ca_cert = query_db_string(all_dbs, ca_cert_file, &errors);
e18a1d08
ER
1250 resolved_ssl_protocols = query_db_string(all_dbs, ssl_protocols, &errors);
1251 resolved_ssl_ciphers = query_db_string(all_dbs, ssl_ciphers, &errors);
0a3b723b
BP
1252
1253 stream_ssl_set_key_and_cert(resolved_private_key, resolved_certificate);
1254 stream_ssl_set_ca_cert_file(resolved_ca_cert, bootstrap_ca_cert);
e18a1d08
ER
1255 stream_ssl_set_protocols(resolved_ssl_protocols);
1256 stream_ssl_set_ciphers(resolved_ssl_ciphers);
0a3b723b
BP
1257
1258 return errors.string;
1259}
1260
1261static void
1262report_error_if_changed(char *error, char **last_errorp)
1263{
1264 if (error) {
1265 if (!*last_errorp || strcmp(error, *last_errorp)) {
1266 VLOG_WARN("%s", error);
1267 free(*last_errorp);
1268 *last_errorp = error;
1269 return;
1270 }
1271 free(error);
1272 } else {
1273 free(*last_errorp);
1274 *last_errorp = NULL;
1275 }
78876719 1276}
0b1fae1b 1277
9dc05cdc 1278static void
f53d7518 1279ovsdb_server_set_active_ovsdb_server(struct unixctl_conn *conn,
9dc05cdc 1280 int argc OVS_UNUSED, const char *argv[],
60e0cd04 1281 void *config_)
9dc05cdc 1282{
60e0cd04
AZ
1283 struct server_config *config = config_;
1284
1285 if (*config->sync_from) {
1286 free(*config->sync_from);
1287 }
1288 *config->sync_from = xstrdup(argv[1]);
1289 save_config(config);
1290
9dc05cdc
MC
1291 unixctl_command_reply(conn, NULL);
1292}
1293
1294static void
f53d7518 1295ovsdb_server_get_active_ovsdb_server(struct unixctl_conn *conn,
9dc05cdc
MC
1296 int argc OVS_UNUSED,
1297 const char *argv[] OVS_UNUSED,
60e0cd04 1298 void *config_ )
9dc05cdc 1299{
60e0cd04
AZ
1300 struct server_config *config = config_;
1301
1302 unixctl_command_reply(conn, *config->sync_from);
9dc05cdc
MC
1303}
1304
1305static void
f53d7518 1306ovsdb_server_connect_active_ovsdb_server(struct unixctl_conn *conn,
9dc05cdc
MC
1307 int argc OVS_UNUSED,
1308 const char *argv[] OVS_UNUSED,
60e0cd04 1309 void *config_)
9dc05cdc 1310{
60e0cd04
AZ
1311 struct server_config *config = config_;
1312 char *msg = NULL;
6ab3dd96 1313
60e0cd04
AZ
1314 if ( !*config->sync_from) {
1315 msg = "Unable to connect: active server is not specified.\n";
1316 } else {
05ac209a
AZ
1317 const struct uuid *server_uuid;
1318 server_uuid = ovsdb_jsonrpc_server_get_uuid(config->jsonrpc);
60e0cd04 1319 ovsdb_replication_init(*config->sync_from, *config->sync_exclude,
05ac209a 1320 config->all_dbs, server_uuid);
60e0cd04
AZ
1321 if (!*config->is_backup) {
1322 *config->is_backup = true;
1323 save_config(config);
1324 }
9dc05cdc 1325 }
60e0cd04 1326 unixctl_command_reply(conn, msg);
9dc05cdc
MC
1327}
1328
1329static void
f53d7518 1330ovsdb_server_disconnect_active_ovsdb_server(struct unixctl_conn *conn,
9dc05cdc
MC
1331 int argc OVS_UNUSED,
1332 const char *argv[] OVS_UNUSED,
60e0cd04 1333 void *config_)
9dc05cdc 1334{
60e0cd04
AZ
1335 struct server_config *config = config_;
1336
f53d7518 1337 disconnect_active_server();
60e0cd04
AZ
1338 *config->is_backup = false;
1339 save_config(config);
9dc05cdc
MC
1340 unixctl_command_reply(conn, NULL);
1341}
1342
1343static void
60e0cd04
AZ
1344ovsdb_server_set_sync_exclude_tables(struct unixctl_conn *conn,
1345 int argc OVS_UNUSED,
1346 const char *argv[],
1347 void *config_)
9dc05cdc 1348{
60e0cd04 1349 struct server_config *config = config_;
3109b4e1 1350
60e0cd04 1351 char *err = set_blacklist_tables(argv[1], true);
3109b4e1 1352 if (!err) {
60e0cd04
AZ
1353 free(*config->sync_exclude);
1354 *config->sync_exclude = xstrdup(argv[1]);
1355 save_config(config);
1356 if (*config->is_backup) {
05ac209a
AZ
1357 const struct uuid *server_uuid;
1358 server_uuid = ovsdb_jsonrpc_server_get_uuid(config->jsonrpc);
60e0cd04 1359 ovsdb_replication_init(*config->sync_from, *config->sync_exclude,
05ac209a 1360 config->all_dbs, server_uuid);
3109b4e1
AZ
1361 }
1362 err = set_blacklist_tables(argv[1], false);
1363 }
1364 unixctl_command_reply(conn, err);
1365 free(err);
9dc05cdc
MC
1366}
1367
1368static void
60e0cd04
AZ
1369ovsdb_server_get_sync_exclude_tables(struct unixctl_conn *conn,
1370 int argc OVS_UNUSED,
1371 const char *argv[] OVS_UNUSED,
1372 void *arg_ OVS_UNUSED)
9dc05cdc 1373{
5975d1fc
BP
1374 char *reply = get_blacklist_tables();
1375 unixctl_command_reply(conn, reply);
1376 free(reply);
9dc05cdc
MC
1377}
1378
aa78de9d 1379static void
0e15264f
BP
1380ovsdb_server_exit(struct unixctl_conn *conn, int argc OVS_UNUSED,
1381 const char *argv[] OVS_UNUSED,
aa78de9d
BP
1382 void *exiting_)
1383{
1384 bool *exiting = exiting_;
1385 *exiting = true;
bde9f75d 1386 unixctl_command_reply(conn, NULL);
97a3c435
AZ
1387}
1388
1389static void
1390ovsdb_server_perf_counters_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
1391 const char *argv[] OVS_UNUSED,
1392 void *arg_ OVS_UNUSED)
1393{
1394 char *s = perf_counters_to_string();
1395
1396 unixctl_command_reply(conn, s);
1397 free(s);
1398}
1399
1400static void
1401ovsdb_server_perf_counters_clear(struct unixctl_conn *conn, int argc OVS_UNUSED,
1402 const char *argv[] OVS_UNUSED,
1403 void *arg_ OVS_UNUSED)
1404{
1405 perf_counters_clear();
1406 unixctl_command_reply(conn, NULL);
aa78de9d
BP
1407}
1408
c383f3bf 1409/* "ovsdb-server/disable-monitor-cond": makes ovsdb-server drop all of its
e47cb14c 1410 * JSON-RPC connections and reconnect. New sessions will not recognize
c383f3bf 1411 * the 'monitor_cond' method. */
e47cb14c 1412static void
c383f3bf
LS
1413ovsdb_server_disable_monitor_cond(struct unixctl_conn *conn,
1414 int argc OVS_UNUSED,
1415 const char *argv[] OVS_UNUSED,
1416 void *jsonrpc_)
e47cb14c
AZ
1417{
1418 struct ovsdb_jsonrpc_server *jsonrpc = jsonrpc_;
1419
c383f3bf 1420 ovsdb_jsonrpc_disable_monitor_cond();
1b1d2e6d 1421 ovsdb_jsonrpc_server_reconnect(
ab662236 1422 jsonrpc, true, xstrdup("user ran ovsdb-server/disable-monitor-cond"));
e47cb14c
AZ
1423 unixctl_command_reply(conn, NULL);
1424}
1425
ada496b5 1426static void
b4e8d170
BP
1427ovsdb_server_compact(struct unixctl_conn *conn, int argc,
1428 const char *argv[], void *dbs_)
ada496b5 1429{
bc7bcc40 1430 const char *db_name = argc < 2 ? NULL : argv[1];
eeb36a52 1431 struct shash *all_dbs = dbs_;
b4e8d170 1432 struct ds reply;
eeb36a52 1433 struct shash_node *node;
b4e8d170 1434 int n = 0;
ada496b5 1435
bc7bcc40
BP
1436 if (db_name && db_name[0] == '_') {
1437 unixctl_command_reply_error(conn, "cannot compact built-in databases");
1438 return;
1439 }
1440
b4e8d170 1441 ds_init(&reply);
eeb36a52 1442 SHASH_FOR_EACH(node, all_dbs) {
1b1d2e6d 1443 struct db *db = node->data;
bc7bcc40
BP
1444 if (db_name
1445 ? !strcmp(node->name, db_name)
1446 : node->name[0] != '_') {
1b1d2e6d
BP
1447 if (db->db) {
1448 VLOG_INFO("compacting %s database by user request",
1449 node->name);
1450
1451 struct ovsdb_error *error = ovsdb_snapshot(db->db);
1452 if (error) {
1453 char *s = ovsdb_error_to_string(error);
1454 ds_put_format(&reply, "%s\n", s);
1455 free(s);
1456 ovsdb_error_destroy(error);
1457 }
b4e8d170 1458
1b1d2e6d 1459 n++;
b4e8d170 1460 }
b4e8d170
BP
1461 }
1462 }
1463
1464 if (!n) {
1465 unixctl_command_reply_error(conn, "no database by that name");
1466 } else if (reply.length) {
1467 unixctl_command_reply_error(conn, ds_cstr(&reply));
ada496b5 1468 } else {
b4e8d170 1469 unixctl_command_reply(conn, NULL);
ada496b5 1470 }
b4e8d170 1471 ds_destroy(&reply);
ada496b5
BP
1472}
1473
31d0b6c9
BP
1474/* "ovsdb-server/reconnect": makes ovsdb-server drop all of its JSON-RPC
1475 * connections and reconnect. */
1476static void
0e15264f
BP
1477ovsdb_server_reconnect(struct unixctl_conn *conn, int argc OVS_UNUSED,
1478 const char *argv[] OVS_UNUSED, void *jsonrpc_)
31d0b6c9
BP
1479{
1480 struct ovsdb_jsonrpc_server *jsonrpc = jsonrpc_;
1b1d2e6d
BP
1481 ovsdb_jsonrpc_server_reconnect(
1482 jsonrpc, true, xstrdup("user ran ovsdb-server/reconnect"));
bde9f75d 1483 unixctl_command_reply(conn, NULL);
31d0b6c9
BP
1484}
1485
b421d2af
BP
1486/* "ovsdb-server/add-remote REMOTE": adds REMOTE to the set of remotes that
1487 * ovsdb-server services. */
1488static void
1489ovsdb_server_add_remote(struct unixctl_conn *conn, int argc OVS_UNUSED,
0a3b723b 1490 const char *argv[], void *config_)
b421d2af 1491{
0a3b723b 1492 struct server_config *config = config_;
b421d2af
BP
1493 const char *remote = argv[1];
1494
1495 const struct ovsdb_column *column;
1496 const struct ovsdb_table *table;
1497 const struct db *db;
1498 char *retval;
1499
1500 retval = (strncmp("db:", remote, 3)
1501 ? NULL
0a3b723b 1502 : parse_db_column(config->all_dbs, remote,
b421d2af
BP
1503 &db, &table, &column));
1504 if (!retval) {
0a3b723b
BP
1505 if (sset_add(config->remotes, remote)) {
1506 save_config(config);
5f36127e 1507 }
b421d2af
BP
1508 unixctl_command_reply(conn, NULL);
1509 } else {
1510 unixctl_command_reply_error(conn, retval);
1511 free(retval);
1512 }
1513}
1514
1515/* "ovsdb-server/remove-remote REMOTE": removes REMOTE frmo the set of remotes
1516 * that ovsdb-server services. */
1517static void
1518ovsdb_server_remove_remote(struct unixctl_conn *conn, int argc OVS_UNUSED,
0a3b723b 1519 const char *argv[], void *config_)
b421d2af 1520{
0a3b723b 1521 struct server_config *config = config_;
b421d2af
BP
1522 struct sset_node *node;
1523
0a3b723b 1524 node = sset_find(config->remotes, argv[1]);
b421d2af 1525 if (node) {
0a3b723b
BP
1526 sset_delete(config->remotes, node);
1527 save_config(config);
b421d2af
BP
1528 unixctl_command_reply(conn, NULL);
1529 } else {
1530 unixctl_command_reply_error(conn, "no such remote");
1531 }
1532}
1533
1534/* "ovsdb-server/list-remotes": outputs a list of configured rmeotes. */
1535static void
1536ovsdb_server_list_remotes(struct unixctl_conn *conn, int argc OVS_UNUSED,
1537 const char *argv[] OVS_UNUSED, void *remotes_)
1538{
1539 struct sset *remotes = remotes_;
1540 const char **list, **p;
1541 struct ds s;
1542
1543 ds_init(&s);
1544
1545 list = sset_sort(remotes);
1546 for (p = list; *p; p++) {
1547 ds_put_format(&s, "%s\n", *p);
1548 }
1549 free(list);
1550
1551 unixctl_command_reply(conn, ds_cstr(&s));
1552 ds_destroy(&s);
1553}
1554
0a3b723b
BP
1555
1556/* "ovsdb-server/add-db DB": adds the DB to ovsdb-server. */
1557static void
1558ovsdb_server_add_database(struct unixctl_conn *conn, int argc OVS_UNUSED,
1559 const char *argv[], void *config_)
1560{
1561 struct server_config *config = config_;
1562 const char *filename = argv[1];
0a3b723b 1563
1b1d2e6d 1564 char *error = ovsdb_error_to_string_free(open_db(config, filename));
0a3b723b
BP
1565 if (!error) {
1566 save_config(config);
60e0cd04 1567 if (*config->is_backup) {
05ac209a
AZ
1568 const struct uuid *server_uuid;
1569 server_uuid = ovsdb_jsonrpc_server_get_uuid(config->jsonrpc);
60e0cd04 1570 ovsdb_replication_init(*config->sync_from, *config->sync_exclude,
05ac209a 1571 config->all_dbs, server_uuid);
23c16b51 1572 }
0a3b723b
BP
1573 unixctl_command_reply(conn, NULL);
1574 } else {
1575 unixctl_command_reply_error(conn, error);
1576 free(error);
1577 }
1578}
1579
1580static void
1b1d2e6d 1581remove_db(struct server_config *config, struct shash_node *node, char *comment)
0a3b723b 1582{
10621d79 1583 struct db *db = node->data;
0a3b723b 1584
1b1d2e6d 1585 close_db(config, db, comment);
0a3b723b 1586 shash_delete(config->all_dbs, node);
0a3b723b
BP
1587
1588 save_config(config);
60e0cd04 1589 if (*config->is_backup) {
05ac209a
AZ
1590 const struct uuid *server_uuid;
1591 server_uuid = ovsdb_jsonrpc_server_get_uuid(config->jsonrpc);
60e0cd04 1592 ovsdb_replication_init(*config->sync_from, *config->sync_exclude,
05ac209a 1593 config->all_dbs, server_uuid);
23c16b51 1594 }
bc7bcc40
BP
1595}
1596
1597static void
1598ovsdb_server_remove_database(struct unixctl_conn *conn, int argc OVS_UNUSED,
1599 const char *argv[], void *config_)
1600{
1601 struct server_config *config = config_;
1602 struct shash_node *node;
1603
1604 node = shash_find(config->all_dbs, argv[1]);
1605 if (!node) {
1606 unixctl_command_reply_error(conn, "Failed to find the database.");
1607 return;
1608 }
1609 if (node->name[0] == '_') {
1610 unixctl_command_reply_error(conn, "Cannot remove reserved database.");
1611 return;
1612 }
1613
1b1d2e6d
BP
1614 remove_db(config, node, xasprintf("removing %s database by user request",
1615 node->name));
0a3b723b
BP
1616 unixctl_command_reply(conn, NULL);
1617}
1618
1619static void
1620ovsdb_server_list_databases(struct unixctl_conn *conn, int argc OVS_UNUSED,
1621 const char *argv[] OVS_UNUSED, void *all_dbs_)
1622{
1623 struct shash *all_dbs = all_dbs_;
1624 const struct shash_node **nodes;
1625 struct ds s;
1626 size_t i;
1627
1628 ds_init(&s);
1629
1630 nodes = shash_sort(all_dbs);
1631 for (i = 0; i < shash_count(all_dbs); i++) {
1b1d2e6d
BP
1632 const struct shash_node *node = nodes[i];
1633 struct db *db = node->data;
1634 if (db->db) {
1635 ds_put_format(&s, "%s\n", node->name);
1636 }
0a3b723b
BP
1637 }
1638 free(nodes);
1639
1640 unixctl_command_reply(conn, ds_cstr(&s));
1641 ds_destroy(&s);
1642}
1643
60e0cd04
AZ
1644static void
1645ovsdb_server_get_sync_status(struct unixctl_conn *conn, int argc OVS_UNUSED,
1646 const char *argv[] OVS_UNUSED, void *config_)
1647{
1648 struct server_config *config = config_;
1649 bool is_backup = *config->is_backup;
1650 struct ds ds = DS_EMPTY_INITIALIZER;
1651
1652 ds_put_format(&ds, "state: %s\n", is_backup ? "backup" : "active");
1653
1654 if (is_backup) {
1655 ds_put_and_free_cstr(&ds, replication_status());
1656 }
1657
1658 unixctl_command_reply(conn, ds_cstr(&ds));
1659 ds_destroy(&ds);
1660}
1661
f85f8ebb 1662static void
53178986
BP
1663parse_options(int argc, char *argv[],
1664 struct sset *db_filenames, struct sset *remotes,
1665 char **unixctl_pathp, char **run_command,
60e0cd04 1666 char **sync_from, char **sync_exclude, bool *active)
f85f8ebb
BP
1667{
1668 enum {
06834871 1669 OPT_REMOTE = UCHAR_MAX + 1,
aa78de9d 1670 OPT_UNIXCTL,
475afa1b 1671 OPT_RUN,
9467fe62 1672 OPT_BOOTSTRAP_CA_CERT,
5bf6cbd6 1673 OPT_PEER_CA_CERT,
ae671c5f 1674 OPT_SYNC_FROM,
7a9d65d2 1675 OPT_SYNC_EXCLUDE,
60e0cd04 1676 OPT_ACTIVE,
53178986 1677 OPT_NO_DBS,
f85f8ebb 1678 VLOG_OPTION_ENUMS,
e18a1d08
ER
1679 DAEMON_OPTION_ENUMS,
1680 SSL_OPTION_ENUMS,
f85f8ebb 1681 };
53178986 1682
07fc4ed3 1683 static const struct option long_options[] = {
e3c17733
BP
1684 {"remote", required_argument, NULL, OPT_REMOTE},
1685 {"unixctl", required_argument, NULL, OPT_UNIXCTL},
41064650 1686#ifndef _WIN32
e3c17733 1687 {"run", required_argument, NULL, OPT_RUN},
41064650 1688#endif
e3c17733
BP
1689 {"help", no_argument, NULL, 'h'},
1690 {"version", no_argument, NULL, 'V'},
f85f8ebb
BP
1691 DAEMON_LONG_OPTIONS,
1692 VLOG_LONG_OPTIONS,
e3c17733 1693 {"bootstrap-ca-cert", required_argument, NULL, OPT_BOOTSTRAP_CA_CERT},
5bf6cbd6 1694 {"peer-ca-cert", required_argument, NULL, OPT_PEER_CA_CERT},
e18a1d08 1695 STREAM_SSL_LONG_OPTIONS,
ae671c5f 1696 {"sync-from", required_argument, NULL, OPT_SYNC_FROM},
7a9d65d2 1697 {"sync-exclude-tables", required_argument, NULL, OPT_SYNC_EXCLUDE},
60e0cd04 1698 {"active", no_argument, NULL, OPT_ACTIVE},
53178986 1699 {"no-dbs", no_argument, NULL, OPT_NO_DBS},
e3c17733 1700 {NULL, 0, NULL, 0},
f85f8ebb 1701 };
5f383751 1702 char *short_options = ovs_cmdl_long_options_to_short_options(long_options);
53178986 1703 bool add_default_db = true;
f85f8ebb 1704
60e0cd04
AZ
1705 *sync_from = NULL;
1706 *sync_exclude = NULL;
53178986 1707 sset_init(db_filenames);
b3c01ed3 1708 sset_init(remotes);
f85f8ebb
BP
1709 for (;;) {
1710 int c;
1711
1712 c = getopt_long(argc, argv, short_options, long_options, NULL);
1713 if (c == -1) {
1714 break;
1715 }
1716
1717 switch (c) {
0b1fae1b 1718 case OPT_REMOTE:
b3c01ed3 1719 sset_add(remotes, optarg);
f85f8ebb
BP
1720 break;
1721
aa78de9d
BP
1722 case OPT_UNIXCTL:
1723 *unixctl_pathp = optarg;
1724 break;
1725
475afa1b
BP
1726 case OPT_RUN:
1727 *run_command = optarg;
1728 break;
1729
f85f8ebb
BP
1730 case 'h':
1731 usage();
1732
1733 case 'V':
55d5bb44 1734 ovs_print_version(0, 0);
f85f8ebb
BP
1735 exit(EXIT_SUCCESS);
1736
1737 VLOG_OPTION_HANDLERS
1738 DAEMON_OPTION_HANDLERS
f85f8ebb 1739
78876719
BP
1740 case 'p':
1741 private_key_file = optarg;
1742 break;
1743
1744 case 'c':
1745 certificate_file = optarg;
1746 break;
1747
1748 case 'C':
1749 ca_cert_file = optarg;
1750 bootstrap_ca_cert = false;
1751 break;
9467fe62 1752
e18a1d08
ER
1753 case OPT_SSL_PROTOCOLS:
1754 ssl_protocols = optarg;
1755 break;
1756
1757 case OPT_SSL_CIPHERS:
1758 ssl_ciphers = optarg;
1759 break;
1760
9467fe62 1761 case OPT_BOOTSTRAP_CA_CERT:
78876719
BP
1762 ca_cert_file = optarg;
1763 bootstrap_ca_cert = true;
9467fe62 1764 break;
9467fe62 1765
5bf6cbd6
GS
1766 case OPT_PEER_CA_CERT:
1767 stream_ssl_set_peer_ca_cert_file(optarg);
1768 break;
1769
ae671c5f 1770 case OPT_SYNC_FROM:
60e0cd04 1771 *sync_from = xstrdup(optarg);
ae671c5f
MC
1772 break;
1773
3109b4e1
AZ
1774 case OPT_SYNC_EXCLUDE: {
1775 char *err = set_blacklist_tables(optarg, false);
1776 if (err) {
1777 ovs_fatal(0, "%s", err);
1778 }
60e0cd04 1779 *sync_exclude = xstrdup(optarg);
7a9d65d2 1780 break;
3109b4e1 1781 }
60e0cd04
AZ
1782 case OPT_ACTIVE:
1783 *active = true;
1784 break;
7a9d65d2 1785
53178986
BP
1786 case OPT_NO_DBS:
1787 add_default_db = false;
1788 break;
1789
f85f8ebb
BP
1790 case '?':
1791 exit(EXIT_FAILURE);
1792
1793 default:
1794 abort();
1795 }
1796 }
1797 free(short_options);
1798
53178986
BP
1799 argc -= optind;
1800 argv += optind;
1801 if (argc > 0) {
1802 for (int i = 0; i < argc; i++) {
1803 sset_add(db_filenames, argv[i]);
1804 }
1805 } else if (add_default_db) {
1806 sset_add_and_free(db_filenames, xasprintf("%s/conf.db", ovs_dbdir()));
1807 }
f85f8ebb
BP
1808}
1809
1810static void
1811usage(void)
1812{
1813 printf("%s: Open vSwitch database server\n"
b4e8d170
BP
1814 "usage: %s [OPTIONS] [DATABASE...]\n"
1815 "where each DATABASE is a database file in ovsdb format.\n"
1816 "The default DATABASE, if none is given, is\n%s/conf.db.\n",
1817 program_name, program_name, ovs_dbdir());
f85f8ebb 1818 printf("\nJSON-RPC options (may be specified any number of times):\n"
0b1fae1b 1819 " --remote=REMOTE connect or listen to REMOTE\n");
9467fe62 1820 stream_usage("JSON-RPC", true, true, true);
f85f8ebb
BP
1821 daemon_usage();
1822 vlog_usage();
ae671c5f 1823 replication_usage();
f85f8ebb 1824 printf("\nOther options:\n"
475afa1b 1825 " --run COMMAND run COMMAND as subprocess then exit\n"
7b38bdc8 1826 " --unixctl=SOCKET override default control socket name\n"
f85f8ebb
BP
1827 " -h, --help display this help message\n"
1828 " -V, --version display version information\n");
f85f8ebb
BP
1829 exit(EXIT_SUCCESS);
1830}
5f36127e 1831\f
0a3b723b
BP
1832static struct json *
1833sset_to_json(const struct sset *sset)
1834{
1835 struct json *array;
1836 const char *s;
1837
1838 array = json_array_create_empty();
1839 SSET_FOR_EACH (s, sset) {
1840 json_array_add(array, json_string_create(s));
1841 }
1842 return array;
1843}
1844
1845/* Truncates and replaces the contents of 'config_file' by a representation of
1846 * 'remotes' and 'db_filenames'. */
5f36127e 1847static void
0a3b723b 1848save_config__(FILE *config_file, const struct sset *remotes,
60e0cd04
AZ
1849 const struct sset *db_filenames, const char *sync_from,
1850 const char *sync_exclude, bool is_backup)
5f36127e 1851{
0a3b723b 1852 struct json *obj;
5f36127e
BP
1853 char *s;
1854
1855 if (ftruncate(fileno(config_file), 0) == -1) {
10a89ef0
BP
1856 VLOG_FATAL("failed to truncate temporary file (%s)",
1857 ovs_strerror(errno));
5f36127e
BP
1858 }
1859
0a3b723b
BP
1860 obj = json_object_create();
1861 json_object_put(obj, "remotes", sset_to_json(remotes));
1862 json_object_put(obj, "db_filenames", sset_to_json(db_filenames));
60e0cd04
AZ
1863 if (sync_from) {
1864 json_object_put(obj, "sync_from", json_string_create(sync_from));
1865 }
1866 if (sync_exclude) {
1867 json_object_put(obj, "sync_exclude",
1868 json_string_create(sync_exclude));
1869 }
1870 json_object_put(obj, "is_backup", json_boolean_create(is_backup));
1871
0a3b723b
BP
1872 s = json_to_string(obj, 0);
1873 json_destroy(obj);
5f36127e
BP
1874
1875 if (fseek(config_file, 0, SEEK_SET) != 0
1876 || fputs(s, config_file) == EOF
1877 || fflush(config_file) == EOF) {
10a89ef0 1878 VLOG_FATAL("failed to write temporary file (%s)", ovs_strerror(errno));
5f36127e
BP
1879 }
1880 free(s);
1881}
1882
0a3b723b
BP
1883/* Truncates and replaces the contents of 'config_file' by a representation of
1884 * 'config'. */
5f36127e 1885static void
0a3b723b
BP
1886save_config(struct server_config *config)
1887{
1888 struct sset db_filenames;
1889 struct shash_node *node;
1890
1891 sset_init(&db_filenames);
1892 SHASH_FOR_EACH (node, config->all_dbs) {
1893 struct db *db = node->data;
bc7bcc40
BP
1894 if (node->name[0] != '_') {
1895 sset_add(&db_filenames, db->filename);
1896 }
0a3b723b
BP
1897 }
1898
60e0cd04
AZ
1899 save_config__(config->config_tmpfile, config->remotes, &db_filenames,
1900 *config->sync_from, *config->sync_exclude,
1901 *config->is_backup);
0a3b723b
BP
1902
1903 sset_destroy(&db_filenames);
1904}
1905
1906static void
1907sset_from_json(struct sset *sset, const struct json *array)
5f36127e 1908{
5f36127e
BP
1909 size_t i;
1910
0a3b723b
BP
1911 sset_clear(sset);
1912
1913 ovs_assert(array->type == JSON_ARRAY);
fa37affa
BP
1914 for (i = 0; i < array->array.n; i++) {
1915 const struct json *elem = array->array.elems[i];
0a3b723b
BP
1916 sset_add(sset, json_string(elem));
1917 }
1918}
1919
1920/* Clears and replaces 'remotes' and 'dbnames' by a configuration read from
1921 * 'config_file', which must have been previously written by save_config(). */
1922static void
60e0cd04
AZ
1923load_config(FILE *config_file, struct sset *remotes, struct sset *db_filenames,
1924 char **sync_from, char **sync_exclude, bool *is_backup)
0a3b723b
BP
1925{
1926 struct json *json;
5f36127e
BP
1927
1928 if (fseek(config_file, 0, SEEK_SET) != 0) {
10a89ef0 1929 VLOG_FATAL("seek failed in temporary file (%s)", ovs_strerror(errno));
5f36127e
BP
1930 }
1931 json = json_from_stream(config_file);
1932 if (json->type == JSON_STRING) {
1933 VLOG_FATAL("reading json failed (%s)", json_string(json));
1934 }
0a3b723b
BP
1935 ovs_assert(json->type == JSON_OBJECT);
1936
1937 sset_from_json(remotes, shash_find_data(json_object(json), "remotes"));
1938 sset_from_json(db_filenames,
1939 shash_find_data(json_object(json), "db_filenames"));
60e0cd04
AZ
1940
1941 struct json *string;
1942 string = shash_find_data(json_object(json), "sync_from");
1943 free(*sync_from);
1944 *sync_from = string ? xstrdup(json_string(string)) : NULL;
1945
1946 string = shash_find_data(json_object(json), "sync_exclude");
1947 free(*sync_exclude);
1948 *sync_exclude = string ? xstrdup(json_string(string)) : NULL;
1949
1950 *is_backup = json_boolean(shash_find_data(json_object(json), "is_backup"));
1951
5f36127e
BP
1952 json_destroy(json);
1953}