1 /* Copyright (c) 2008, 2009, 2010, 2011 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"
35 #include "leak-checker.h"
37 #include "ovsdb-idl.h"
38 #include "poll-loop.h"
41 #include "stream-ssl.h"
50 #include "vswitchd/vswitch-idl.h"
52 VLOG_DEFINE_THIS_MODULE(vswitchd);
54 static unixctl_cb_func ovs_vswitchd_exit;
56 static char *parse_options(int argc, char *argv[]);
57 static void usage(void) NO_RETURN;
60 main(int argc, char *argv[])
62 struct unixctl_server *unixctl;
63 struct signal *sighup;
68 proctitle_init(argc, argv);
69 set_program_name(argv[0]);
70 stress_init_command();
71 remote = parse_options(argc, argv);
72 signal(SIGPIPE, SIG_IGN);
73 sighup = signal_register(SIGHUP);
79 retval = unixctl_server_create(NULL, &unixctl);
83 unixctl_command_register("exit", ovs_vswitchd_exit, &exiting);
90 if (signal_poll(sighup)) {
91 vlog_reopen_log_file();
94 unixctl_server_run(unixctl);
99 unixctl_server_wait(unixctl);
102 poll_immediate_wake();
107 unixctl_server_destroy(unixctl);
108 signal_unregister(sighup);
114 parse_options(int argc, char *argv[])
117 OPT_PEER_CA_CERT = UCHAR_MAX + 1,
120 LEAK_CHECKER_OPTION_ENUMS,
121 OPT_BOOTSTRAP_CA_CERT,
125 static struct option long_options[] = {
126 {"help", no_argument, NULL, 'h'},
127 {"version", no_argument, NULL, 'V'},
128 {"mlockall", no_argument, NULL, OPT_MLOCKALL},
131 LEAK_CHECKER_LONG_OPTIONS,
132 STREAM_SSL_LONG_OPTIONS,
133 {"peer-ca-cert", required_argument, NULL, OPT_PEER_CA_CERT},
134 {"bootstrap-ca-cert", required_argument, NULL, OPT_BOOTSTRAP_CA_CERT},
135 {"enable-dummy", no_argument, NULL, OPT_ENABLE_DUMMY},
138 char *short_options = long_options_to_short_options(long_options);
143 c = getopt_long(argc, argv, short_options, long_options, NULL);
153 ovs_print_version(OFP_VERSION, OFP_VERSION);
158 if (mlockall(MCL_CURRENT | MCL_FUTURE)) {
159 VLOG_ERR("mlockall failed: %s", strerror(errno));
162 VLOG_ERR("mlockall not supported on this system");
167 DAEMON_OPTION_HANDLERS
168 LEAK_CHECKER_OPTION_HANDLERS
169 STREAM_SSL_OPTION_HANDLERS
171 case OPT_PEER_CA_CERT:
172 stream_ssl_set_peer_ca_cert_file(optarg);
175 case OPT_BOOTSTRAP_CA_CERT:
176 stream_ssl_set_ca_cert_file(optarg, true);
179 case OPT_ENABLE_DUMMY:
197 return xasprintf("unix:%s/db.sock", ovs_rundir());
200 return xstrdup(argv[0]);
203 VLOG_FATAL("at most one non-option argument accepted; "
204 "use --help for usage");
211 printf("%s: Open vSwitch daemon\n"
212 "usage: %s [OPTIONS] [DATABASE]\n"
213 "where DATABASE is a socket on which ovsdb-server is listening\n"
214 " (default: \"unix:%s/db.sock\").\n",
215 program_name, program_name, ovs_rundir());
216 stream_usage("DATABASE", true, false, true);
219 printf("\nOther options:\n"
220 " -h, --help display this help message\n"
221 " -V, --version display version information\n");
222 leak_checker_usage();
227 ovs_vswitchd_exit(struct unixctl_conn *conn, const char *args OVS_UNUSED,
230 bool *exiting = exiting_;
232 unixctl_command_reply(conn, 200, NULL);