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