1 /* Copyright (c) 2008, 2009, 2010 Nicira Networks
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:
7 * http://www.apache.org/licenses/LICENSE-2.0
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.
30 #include "command-line.h"
34 #include "leak-checker.h"
36 #include "ovsdb-idl.h"
37 #include "poll-loop.h"
38 #include "proc-net-compat.h"
41 #include "stream-ssl.h"
48 #include "vswitchd/vswitch-idl.h"
51 #define THIS_MODULE VLM_vswitchd
53 static const char *parse_options(int argc, char *argv[]);
54 static void usage(void) NO_RETURN;
57 main(int argc, char *argv[])
59 struct unixctl_server *unixctl;
60 struct signal *sighup;
61 struct ovsdb_idl *idl;
63 bool need_reconfigure;
65 unsigned int idl_seqno;
68 proctitle_init(argc, argv);
69 set_program_name(argv[0]);
72 remote = parse_options(argc, argv);
73 signal(SIGPIPE, SIG_IGN);
74 sighup = signal_register(SIGHUP);
78 die_if_already_running();
81 retval = unixctl_server_create(NULL, &unixctl);
88 idl = ovsdb_idl_create(remote, &ovsrec_idl_class);
89 idl_seqno = ovsdb_idl_get_seqno(idl);
91 need_reconfigure = false;
94 if (signal_poll(sighup)) {
95 vlog_reopen_log_file();
97 if (inited && bridge_run()) {
98 need_reconfigure = true;
101 if (idl_seqno != ovsdb_idl_get_seqno(idl)) {
102 idl_seqno = ovsdb_idl_get_seqno(idl);
103 need_reconfigure = true;
105 if (need_reconfigure) {
106 const struct ovsrec_open_vswitch *cfg;
108 need_reconfigure = false;
109 cfg = ovsrec_open_vswitch_first(idl);
112 bridge_reconfigure(cfg);
119 unixctl_server_run(unixctl);
128 unixctl_server_wait(unixctl);
138 parse_options(int argc, char *argv[])
141 OPT_PEER_CA_CERT = UCHAR_MAX + 1,
145 LEAK_CHECKER_OPTION_ENUMS,
146 OPT_BOOTSTRAP_CA_CERT
148 static struct option long_options[] = {
149 {"help", no_argument, 0, 'h'},
150 {"version", no_argument, 0, 'V'},
151 {"mlockall", no_argument, 0, OPT_MLOCKALL},
152 {"fake-proc-net", no_argument, 0, OPT_FAKE_PROC_NET},
155 LEAK_CHECKER_LONG_OPTIONS,
157 STREAM_SSL_LONG_OPTIONS
158 {"peer-ca-cert", required_argument, 0, OPT_PEER_CA_CERT},
159 {"bootstrap-ca-cert", required_argument, 0, OPT_BOOTSTRAP_CA_CERT},
163 char *short_options = long_options_to_short_options(long_options);
169 c = getopt_long(argc, argv, short_options, long_options, NULL);
180 OVS_PRINT_VERSION(OFP_VERSION, OFP_VERSION);
185 if (mlockall(MCL_CURRENT | MCL_FUTURE)) {
186 VLOG_ERR("mlockall failed: %s", strerror(errno));
189 VLOG_ERR("mlockall not supported on this system");
193 case OPT_FAKE_PROC_NET:
194 error = proc_net_compat_init();
196 ovs_fatal(error, "failed to initialize /proc/net "
202 DAEMON_OPTION_HANDLERS
203 LEAK_CHECKER_OPTION_HANDLERS
206 STREAM_SSL_OPTION_HANDLERS
208 case OPT_PEER_CA_CERT:
209 stream_ssl_set_peer_ca_cert_file(optarg);
212 case OPT_BOOTSTRAP_CA_CERT:
213 stream_ssl_set_ca_cert_file(optarg, true);
230 ovs_fatal(0, "database socket is only non-option argument; "
231 "use --help for usage");
240 printf("%s: Open vSwitch daemon\n"
241 "usage: %s [OPTIONS] DATABASE\n"
242 "where DATABASE is a socket on which ovsdb-server is listening.\n",
243 program_name, program_name);
244 stream_usage("DATABASE", true, false, true);
247 printf("\nLegacy compatibility options:\n"
248 " --fake-proc-net simulate some files in /proc/net\n"
250 " -h, --help display this help message\n"
251 " -V, --version display version information\n");
252 leak_checker_usage();