Setting tag sliver-openvswitch-2.2.90-1
[sliver-openvswitch.git] / vswitchd / ovs-vswitchd.c
1 /* Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc.
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 <errno.h>
19 #include <getopt.h>
20 #include <limits.h>
21 #include <signal.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #ifdef HAVE_MLOCKALL
25 #include <sys/mman.h>
26 #endif
27
28 #include "bridge.h"
29 #include "command-line.h"
30 #include "compiler.h"
31 #include "daemon.h"
32 #include "dirs.h"
33 #include "dpif.h"
34 #include "dummy.h"
35 #include "fatal-signal.h"
36 #include "memory.h"
37 #include "netdev.h"
38 #include "openflow/openflow.h"
39 #include "ovsdb-idl.h"
40 #include "poll-loop.h"
41 #include "simap.h"
42 #include "stream-ssl.h"
43 #include "stream.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 "lib/vswitch-idl.h"
51 #include "lib/netdev-dpdk.h"
52
53 VLOG_DEFINE_THIS_MODULE(vswitchd);
54
55 /* --mlockall: If set, locks all process memory into physical RAM, preventing
56  * the kernel from paging any of its memory to disk. */
57 static bool want_mlockall;
58
59 static unixctl_cb_func ovs_vswitchd_exit;
60
61 static char *parse_options(int argc, char *argv[], char **unixctl_path);
62 static void usage(void) NO_RETURN;
63
64 int
65 main(int argc, char *argv[])
66 {
67     char *unixctl_path = NULL;
68     struct unixctl_server *unixctl;
69     char *remote;
70     bool exiting;
71     int retval;
72
73     set_program_name(argv[0]);
74     retval = dpdk_init(argc,argv);
75     argc -= retval;
76     argv += retval;
77
78     proctitle_init(argc, argv);
79     service_start(&argc, &argv);
80     remote = parse_options(argc, argv, &unixctl_path);
81     fatal_ignore_sigpipe();
82     ovsrec_init();
83
84     daemonize_start();
85
86     if (want_mlockall) {
87 #ifdef HAVE_MLOCKALL
88         if (mlockall(MCL_CURRENT | MCL_FUTURE)) {
89             VLOG_ERR("mlockall failed: %s", ovs_strerror(errno));
90         }
91 #else
92         VLOG_ERR("mlockall not supported on this system");
93 #endif
94     }
95
96     retval = unixctl_server_create(unixctl_path, &unixctl);
97     if (retval) {
98         exit(EXIT_FAILURE);
99     }
100     unixctl_command_register("exit", "", 0, 0, ovs_vswitchd_exit, &exiting);
101
102     bridge_init(remote);
103     free(remote);
104
105     exiting = false;
106     while (!exiting) {
107         memory_run();
108         if (memory_should_report()) {
109             struct simap usage;
110
111             simap_init(&usage);
112             bridge_get_memory_usage(&usage);
113             memory_report(&usage);
114             simap_destroy(&usage);
115         }
116         bridge_run();
117         unixctl_server_run(unixctl);
118         netdev_run();
119
120         memory_wait();
121         bridge_wait();
122         unixctl_server_wait(unixctl);
123         netdev_wait();
124         if (exiting) {
125             poll_immediate_wake();
126         }
127         poll_block();
128         if (should_service_stop()) {
129             exiting = true;
130         }
131     }
132     bridge_exit();
133     unixctl_server_destroy(unixctl);
134     service_stop();
135
136     return 0;
137 }
138
139 static char *
140 parse_options(int argc, char *argv[], char **unixctl_pathp)
141 {
142     enum {
143         OPT_PEER_CA_CERT = UCHAR_MAX + 1,
144         OPT_MLOCKALL,
145         OPT_UNIXCTL,
146         VLOG_OPTION_ENUMS,
147         OPT_BOOTSTRAP_CA_CERT,
148         OPT_ENABLE_DUMMY,
149         OPT_DISABLE_SYSTEM,
150         OPT_ENABLE_OF14,
151         DAEMON_OPTION_ENUMS,
152         OPT_DPDK,
153     };
154     static const struct option long_options[] = {
155         {"help",        no_argument, NULL, 'h'},
156         {"version",     no_argument, NULL, 'V'},
157         {"mlockall",    no_argument, NULL, OPT_MLOCKALL},
158         {"unixctl",     required_argument, NULL, OPT_UNIXCTL},
159         DAEMON_LONG_OPTIONS,
160         VLOG_LONG_OPTIONS,
161         STREAM_SSL_LONG_OPTIONS,
162         {"peer-ca-cert", required_argument, NULL, OPT_PEER_CA_CERT},
163         {"bootstrap-ca-cert", required_argument, NULL, OPT_BOOTSTRAP_CA_CERT},
164         {"enable-dummy", optional_argument, NULL, OPT_ENABLE_DUMMY},
165         {"disable-system", no_argument, NULL, OPT_DISABLE_SYSTEM},
166         {"enable-of14", no_argument, NULL, OPT_ENABLE_OF14},
167         {"dpdk", required_argument, NULL, OPT_DPDK},
168         {NULL, 0, NULL, 0},
169     };
170     char *short_options = long_options_to_short_options(long_options);
171
172     for (;;) {
173         int c;
174
175         c = getopt_long(argc, argv, short_options, long_options, NULL);
176         if (c == -1) {
177             break;
178         }
179
180         switch (c) {
181         case 'h':
182             usage();
183
184         case 'V':
185             ovs_print_version(OFP10_VERSION, OFP10_VERSION);
186             exit(EXIT_SUCCESS);
187
188         case OPT_MLOCKALL:
189             want_mlockall = true;
190             break;
191
192         case OPT_UNIXCTL:
193             *unixctl_pathp = optarg;
194             break;
195
196         VLOG_OPTION_HANDLERS
197         DAEMON_OPTION_HANDLERS
198         STREAM_SSL_OPTION_HANDLERS
199
200         case OPT_PEER_CA_CERT:
201             stream_ssl_set_peer_ca_cert_file(optarg);
202             break;
203
204         case OPT_BOOTSTRAP_CA_CERT:
205             stream_ssl_set_ca_cert_file(optarg, true);
206             break;
207
208         case OPT_ENABLE_DUMMY:
209             dummy_enable(optarg && !strcmp(optarg, "override"));
210             break;
211
212         case OPT_DISABLE_SYSTEM:
213             dp_blacklist_provider("system");
214             break;
215
216         case OPT_ENABLE_OF14:
217             bridge_enable_of14();
218             break;
219
220         case '?':
221             exit(EXIT_FAILURE);
222
223         case OPT_DPDK:
224             break;
225
226         default:
227             abort();
228         }
229     }
230     free(short_options);
231
232     argc -= optind;
233     argv += optind;
234
235     switch (argc) {
236     case 0:
237         return xasprintf("unix:%s/db.sock", ovs_rundir());
238
239     case 1:
240         return xstrdup(argv[0]);
241
242     default:
243         VLOG_FATAL("at most one non-option argument accepted; "
244                    "use --help for usage");
245     }
246 }
247
248 static void
249 usage(void)
250 {
251     printf("%s: Open vSwitch daemon\n"
252            "usage: %s [OPTIONS] [DATABASE]\n"
253            "where DATABASE is a socket on which ovsdb-server is listening\n"
254            "      (default: \"unix:%s/db.sock\").\n",
255            program_name, program_name, ovs_rundir());
256     stream_usage("DATABASE", true, false, true);
257     daemon_usage();
258     vlog_usage();
259     printf("\nOther options:\n"
260            "  --unixctl=SOCKET        override default control socket name\n"
261            "  --enable-of14           allow enabling OF1.4 (unsafely!)\n"
262            "  -h, --help              display this help message\n"
263            "  -V, --version           display version information\n");
264     exit(EXIT_SUCCESS);
265 }
266
267 static void
268 ovs_vswitchd_exit(struct unixctl_conn *conn, int argc OVS_UNUSED,
269                   const char *argv[] OVS_UNUSED, void *exiting_)
270 {
271     bool *exiting = exiting_;
272     *exiting = true;
273     unixctl_command_reply(conn, NULL);
274 }