1 /* Copyright (c) 2008, 2009 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.
28 #include "command-line.h"
33 #include "leak-checker.h"
36 #include "ovs-vswitchd.h"
37 #include "poll-loop.h"
38 #include "proc-net-compat.h"
45 #include "vconn-ssl.h"
49 #define THIS_MODULE VLM_vswitchd
51 static void parse_options(int argc, char *argv[]);
52 static void usage(void) NO_RETURN;
53 static void reload(struct unixctl_conn *, const char *args);
55 static bool need_reconfigure;
56 static struct unixctl_conn **conns;
57 static size_t n_conns;
60 main(int argc, char *argv[])
62 struct unixctl_server *unixctl;
63 struct signal *sighup;
66 set_program_name(argv[0]);
67 register_fault_handlers();
70 parse_options(argc, argv);
71 signal(SIGPIPE, SIG_IGN);
72 sighup = signal_register(SIGHUP);
75 die_if_already_running();
78 retval = unixctl_server_create(NULL, &unixctl);
80 ovs_fatal(retval, "could not listen for control connections");
82 unixctl_command_register("vswitchd/reload", reload);
86 ovs_fatal(retval, "could not read config file");
92 need_reconfigure = false;
94 if (need_reconfigure || signal_poll(sighup)) {
95 need_reconfigure = false;
96 vlog_reopen_log_file();
100 need_reconfigure = true;
103 need_reconfigure = true;
105 unixctl_server_run(unixctl);
109 if (need_reconfigure) {
110 poll_immediate_wake();
115 unixctl_server_wait(unixctl);
125 reload(struct unixctl_conn *conn, const char *args UNUSED)
127 need_reconfigure = true;
128 conns = xrealloc(conns, sizeof *conns * (n_conns + 1));
129 conns[n_conns++] = conn;
138 bridge_reconfigure();
141 for (i = 0; i < n_conns; i++) {
142 unixctl_command_reply(conns[i], 202, NULL);
150 parse_options(int argc, char *argv[])
153 OPT_PEER_CA_CERT = UCHAR_MAX + 1,
156 LEAK_CHECKER_OPTION_ENUMS
158 static struct option long_options[] = {
159 {"help", no_argument, 0, 'h'},
160 {"version", no_argument, 0, 'V'},
161 {"fake-proc-net", no_argument, 0, OPT_FAKE_PROC_NET},
164 LEAK_CHECKER_LONG_OPTIONS,
166 VCONN_SSL_LONG_OPTIONS
167 {"peer-ca-cert", required_argument, 0, OPT_PEER_CA_CERT},
171 char *short_options = long_options_to_short_options(long_options);
172 const char *config_file;
178 c = getopt_long(argc, argv, short_options, long_options, NULL);
189 OVS_PRINT_VERSION(OFP_VERSION, OFP_VERSION);
192 case OPT_FAKE_PROC_NET:
193 error = proc_net_compat_init();
195 ovs_fatal(error, "failed to initialize /proc/net "
201 DAEMON_OPTION_HANDLERS
202 VCONN_SSL_OPTION_HANDLERS
203 LEAK_CHECKER_OPTION_HANDLERS
206 case OPT_PEER_CA_CERT:
207 vconn_ssl_set_peer_ca_cert_file(optarg);
224 ovs_fatal(0, "config file is only non-option argument; "
225 "use --help for usage");
229 config_file = argv[0];
230 error = cfg_set_file(config_file);
232 ovs_fatal(error, "failed to add configuration file \"%s\"",
240 printf("%s: Open vSwitch daemon\n"
241 "usage: %s [OPTIONS] CONFIG\n"
242 "CONFIG is a configuration file in ovs-vswitchd.conf(5) format.\n",
243 program_name, program_name);
246 printf("\nLegacy compatibility options:\n"
247 " --fake-proc-net simulate some files in /proc/net\n"
249 " -h, --help display this help message\n"
250 " -V, --version display version information\n");
251 leak_checker_usage();