]> git.proxmox.com Git - mirror_ovs.git/blob - vswitchd/ovs-vswitchd.c
1303e0893d9ffaa1cf73bcad9672fc083464e060
[mirror_ovs.git] / vswitchd / ovs-vswitchd.c
1 /* Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks
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 <assert.h>
19 #include <errno.h>
20 #include <getopt.h>
21 #include <limits.h>
22 #include <signal.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #ifdef HAVE_MLOCKALL
26 #include <sys/mman.h>
27 #endif
28
29 #include "bridge.h"
30 #include "command-line.h"
31 #include "compiler.h"
32 #include "daemon.h"
33 #include "dpif.h"
34 #include "dummy.h"
35 #include "leak-checker.h"
36 #include "netdev.h"
37 #include "ovsdb-idl.h"
38 #include "poll-loop.h"
39 #include "process.h"
40 #include "signals.h"
41 #include "stream-ssl.h"
42 #include "stream.h"
43 #include "stress.h"
44 #include "svec.h"
45 #include "timeval.h"
46 #include "unixctl.h"
47 #include "util.h"
48 #include "vconn.h"
49 #include "vlog.h"
50 #include "vswitchd/vswitch-idl.h"
51
52 VLOG_DEFINE_THIS_MODULE(vswitchd);
53
54 static unixctl_cb_func ovs_vswitchd_exit;
55
56 static const char *parse_options(int argc, char *argv[]);
57 static void usage(void) NO_RETURN;
58
59 int
60 main(int argc, char *argv[])
61 {
62 struct unixctl_server *unixctl;
63 struct signal *sighup;
64 const char *remote;
65 bool exiting;
66 int retval;
67
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);
74 process_init();
75 ovsrec_init();
76
77 die_if_already_running();
78 daemonize_start();
79
80 retval = unixctl_server_create(NULL, &unixctl);
81 if (retval) {
82 exit(EXIT_FAILURE);
83 }
84 unixctl_command_register("exit", ovs_vswitchd_exit, &exiting);
85
86 bridge_init(remote);
87 exiting = false;
88 while (!exiting) {
89 if (signal_poll(sighup)) {
90 vlog_reopen_log_file();
91 }
92 bridge_run();
93 unixctl_server_run(unixctl);
94 dp_run();
95 netdev_run();
96
97 signal_wait(sighup);
98 bridge_wait();
99 unixctl_server_wait(unixctl);
100 dp_wait();
101 netdev_wait();
102 if (exiting) {
103 poll_immediate_wake();
104 }
105 poll_block();
106 }
107 bridge_exit();
108 unixctl_server_destroy(unixctl);
109
110 return 0;
111 }
112
113 static const char *
114 parse_options(int argc, char *argv[])
115 {
116 enum {
117 OPT_PEER_CA_CERT = UCHAR_MAX + 1,
118 OPT_MLOCKALL,
119 VLOG_OPTION_ENUMS,
120 LEAK_CHECKER_OPTION_ENUMS,
121 OPT_BOOTSTRAP_CA_CERT,
122 OPT_ENABLE_DUMMY,
123 DAEMON_OPTION_ENUMS
124 };
125 static struct option long_options[] = {
126 {"help", no_argument, 0, 'h'},
127 {"version", no_argument, 0, 'V'},
128 {"mlockall", no_argument, 0, OPT_MLOCKALL},
129 DAEMON_LONG_OPTIONS,
130 VLOG_LONG_OPTIONS,
131 LEAK_CHECKER_LONG_OPTIONS,
132 #ifdef HAVE_OPENSSL
133 STREAM_SSL_LONG_OPTIONS
134 {"peer-ca-cert", required_argument, 0, OPT_PEER_CA_CERT},
135 {"bootstrap-ca-cert", required_argument, 0, OPT_BOOTSTRAP_CA_CERT},
136 #endif
137 {"enable-dummy", no_argument, 0, OPT_ENABLE_DUMMY},
138 {0, 0, 0, 0},
139 };
140 char *short_options = long_options_to_short_options(long_options);
141
142 for (;;) {
143 int c;
144
145 c = getopt_long(argc, argv, short_options, long_options, NULL);
146 if (c == -1) {
147 break;
148 }
149
150 switch (c) {
151 case 'H':
152 case 'h':
153 usage();
154
155 case 'V':
156 OVS_PRINT_VERSION(OFP_VERSION, OFP_VERSION);
157 exit(EXIT_SUCCESS);
158
159 case OPT_MLOCKALL:
160 #ifdef HAVE_MLOCKALL
161 if (mlockall(MCL_CURRENT | MCL_FUTURE)) {
162 VLOG_ERR("mlockall failed: %s", strerror(errno));
163 }
164 #else
165 VLOG_ERR("mlockall not supported on this system");
166 #endif
167 break;
168
169 VLOG_OPTION_HANDLERS
170 DAEMON_OPTION_HANDLERS
171 LEAK_CHECKER_OPTION_HANDLERS
172
173 #ifdef HAVE_OPENSSL
174 STREAM_SSL_OPTION_HANDLERS
175
176 case OPT_PEER_CA_CERT:
177 stream_ssl_set_peer_ca_cert_file(optarg);
178 break;
179
180 case OPT_BOOTSTRAP_CA_CERT:
181 stream_ssl_set_ca_cert_file(optarg, true);
182 break;
183 #endif
184
185 case OPT_ENABLE_DUMMY:
186 dummy_enable();
187 break;
188
189 case '?':
190 exit(EXIT_FAILURE);
191
192 default:
193 abort();
194 }
195 }
196 free(short_options);
197
198 argc -= optind;
199 argv += optind;
200
201 if (argc != 1) {
202 ovs_fatal(0, "database socket is only non-option argument; "
203 "use --help for usage");
204 }
205
206 return argv[0];
207 }
208
209 static void
210 usage(void)
211 {
212 printf("%s: Open vSwitch daemon\n"
213 "usage: %s [OPTIONS] DATABASE\n"
214 "where DATABASE is a socket on which ovsdb-server is listening.\n",
215 program_name, program_name);
216 stream_usage("DATABASE", true, false, true);
217 daemon_usage();
218 vlog_usage();
219 printf("\nOther options:\n"
220 " -h, --help display this help message\n"
221 " -V, --version display version information\n");
222 leak_checker_usage();
223 exit(EXIT_SUCCESS);
224 }
225
226 static void
227 ovs_vswitchd_exit(struct unixctl_conn *conn, const char *args OVS_UNUSED,
228 void *exiting_)
229 {
230 bool *exiting = exiting_;
231 *exiting = true;
232 unixctl_command_reply(conn, 200, NULL);
233 }