]> git.proxmox.com Git - mirror_ovs.git/blame - vswitchd/ovs-vswitchd.c
vswitchd: Track status of memory locking.
[mirror_ovs.git] / vswitchd / ovs-vswitchd.c
CommitLineData
74e98efd 1/* Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 Nicira, Inc.
064af421 2 *
a14bc59f
BP
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:
064af421 6 *
a14bc59f 7 * http://www.apache.org/licenses/LICENSE-2.0
064af421 8 *
a14bc59f
BP
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.
064af421
BP
14 */
15
16#include <config.h>
17
064af421
BP
18#include <errno.h>
19#include <getopt.h>
20#include <limits.h>
21#include <signal.h>
22#include <stdlib.h>
23#include <string.h>
86a06318
BP
24#ifdef HAVE_MLOCKALL
25#include <sys/mman.h>
26#endif
064af421
BP
27
28#include "bridge.h"
064af421
BP
29#include "command-line.h"
30#include "compiler.h"
31#include "daemon.h"
80df177a 32#include "dirs.h"
579a77e0 33#include "dpif.h"
614c4892 34#include "dummy.h"
8a777cf6 35#include "fatal-signal.h"
0d085684 36#include "memory.h"
8b61709d 37#include "netdev.h"
3021ea60 38#include "openflow/openflow.h"
76343538 39#include "ovsdb-idl.h"
9a3cf0ac 40#include "ovs-rcu.h"
898d7b05 41#include "ovs-router.h"
91b8ec6c 42#include "ovs-thread.h"
fd016ae3 43#include "openvswitch/poll-loop.h"
0d085684 44#include "simap.h"
fe55ad15 45#include "stream-ssl.h"
76343538 46#include "stream.h"
064af421
BP
47#include "svec.h"
48#include "timeval.h"
49#include "unixctl.h"
50#include "util.h"
4a1f523f 51#include "openvswitch/vconn.h"
e6211adc 52#include "openvswitch/vlog.h"
eaa67ba8 53#include "lib/vswitch-idl.h"
771680d9 54#include "lib/dns-resolve.h"
064af421 55
d98e6007 56VLOG_DEFINE_THIS_MODULE(vswitchd);
064af421 57
908ff19a
BP
58/* --mlockall: If set, locks all process memory into physical RAM, preventing
59 * the kernel from paging any of its memory to disk. */
60static bool want_mlockall;
61
9e15c889
BP
62static unixctl_cb_func ovs_vswitchd_exit;
63
3542148e 64static char *parse_options(int argc, char *argv[], char **unixctl_path);
cab50449 65OVS_NO_RETURN static void usage(void);
064af421 66
fe13ccdc
AZ
67struct ovs_vswitchd_exit_args {
68 bool *exiting;
69 bool *cleanup;
70};
71
064af421
BP
72int
73main(int argc, char *argv[])
74{
3542148e 75 char *unixctl_path = NULL;
064af421 76 struct unixctl_server *unixctl;
80df177a 77 char *remote;
fe13ccdc
AZ
78 bool exiting, cleanup;
79 struct ovs_vswitchd_exit_args exit_args = {&exiting, &cleanup};
064af421
BP
80 int retval;
81
82 set_program_name(argv[0]);
91b8ec6c 83 ovsthread_id_init();
8a9562d2 84
771680d9 85 dns_resolve_init(true);
5f383751 86 ovs_cmdl_proctitle_init(argc, argv);
42dd41ef 87 service_start(&argc, &argv);
3542148e 88 remote = parse_options(argc, argv, &unixctl_path);
8a777cf6 89 fatal_ignore_sigpipe();
064af421 90
e91b927d 91 daemonize_start(true);
064af421 92
908ff19a
BP
93 if (want_mlockall) {
94#ifdef HAVE_MLOCKALL
95 if (mlockall(MCL_CURRENT | MCL_FUTURE)) {
10a89ef0 96 VLOG_ERR("mlockall failed: %s", ovs_strerror(errno));
da05d1c8
IM
97 } else {
98 set_memory_locked();
908ff19a
BP
99 }
100#else
101 VLOG_ERR("mlockall not supported on this system");
102#endif
103 }
104
3542148e 105 retval = unixctl_server_create(unixctl_path, &unixctl);
064af421 106 if (retval) {
4d12270a 107 exit(EXIT_FAILURE);
064af421 108 }
fe13ccdc
AZ
109 unixctl_command_register("exit", "[--cleanup]", 0, 1,
110 ovs_vswitchd_exit, &exit_args);
064af421 111
c5187f17 112 bridge_init(remote);
80df177a
BP
113 free(remote);
114
9e15c889 115 exiting = false;
fe13ccdc 116 cleanup = false;
9e15c889 117 while (!exiting) {
0d085684
BP
118 memory_run();
119 if (memory_should_report()) {
120 struct simap usage;
121
122 simap_init(&usage);
123 bridge_get_memory_usage(&usage);
124 memory_report(&usage);
125 simap_destroy(&usage);
126 }
c5187f17 127 bridge_run();
064af421 128 unixctl_server_run(unixctl);
8b61709d 129 netdev_run();
064af421 130
0d085684 131 memory_wait();
c5187f17 132 bridge_wait();
064af421 133 unixctl_server_wait(unixctl);
8b61709d 134 netdev_wait();
6d37aaf1
BP
135 if (exiting) {
136 poll_immediate_wake();
137 }
064af421 138 poll_block();
42dd41ef
GS
139 if (should_service_stop()) {
140 exiting = true;
141 }
064af421 142 }
fe13ccdc 143 bridge_exit(cleanup);
ee45ad81 144 unixctl_server_destroy(unixctl);
42dd41ef 145 service_stop();
93f55842 146 vlog_disable_async();
9a3cf0ac 147 ovsrcu_exit();
771680d9 148 dns_resolve_destroy();
064af421
BP
149
150 return 0;
151}
152
80df177a 153static char *
3542148e 154parse_options(int argc, char *argv[], char **unixctl_pathp)
064af421
BP
155{
156 enum {
157 OPT_PEER_CA_CERT = UCHAR_MAX + 1,
86a06318 158 OPT_MLOCKALL,
3542148e 159 OPT_UNIXCTL,
064af421 160 VLOG_OPTION_ENUMS,
614c4892 161 OPT_BOOTSTRAP_CA_CERT,
8274ae95 162 OPT_ENABLE_DUMMY,
579a77e0 163 OPT_DISABLE_SYSTEM,
8a9562d2
PS
164 DAEMON_OPTION_ENUMS,
165 OPT_DPDK,
e18a1d08 166 SSL_OPTION_ENUMS,
b4e28b7f 167 OPT_DUMMY_NUMA,
064af421 168 };
07fc4ed3 169 static const struct option long_options[] = {
e3c17733
BP
170 {"help", no_argument, NULL, 'h'},
171 {"version", no_argument, NULL, 'V'},
172 {"mlockall", no_argument, NULL, OPT_MLOCKALL},
3542148e 173 {"unixctl", required_argument, NULL, OPT_UNIXCTL},
064af421
BP
174 DAEMON_LONG_OPTIONS,
175 VLOG_LONG_OPTIONS,
bf8f2167 176 STREAM_SSL_LONG_OPTIONS,
e3c17733
BP
177 {"peer-ca-cert", required_argument, NULL, OPT_PEER_CA_CERT},
178 {"bootstrap-ca-cert", required_argument, NULL, OPT_BOOTSTRAP_CA_CERT},
0cbfe35d 179 {"enable-dummy", optional_argument, NULL, OPT_ENABLE_DUMMY},
579a77e0 180 {"disable-system", no_argument, NULL, OPT_DISABLE_SYSTEM},
bab69409 181 {"dpdk", optional_argument, NULL, OPT_DPDK},
b4e28b7f 182 {"dummy-numa", required_argument, NULL, OPT_DUMMY_NUMA},
e3c17733 183 {NULL, 0, NULL, 0},
064af421 184 };
5f383751 185 char *short_options = ovs_cmdl_long_options_to_short_options(long_options);
064af421
BP
186
187 for (;;) {
188 int c;
189
190 c = getopt_long(argc, argv, short_options, long_options, NULL);
191 if (c == -1) {
192 break;
193 }
194
195 switch (c) {
064af421
BP
196 case 'h':
197 usage();
198
199 case 'V':
11b06842 200 ovs_print_version(0, 0);
40c23a57 201 print_dpdk_version();
064af421
BP
202 exit(EXIT_SUCCESS);
203
86a06318 204 case OPT_MLOCKALL:
908ff19a 205 want_mlockall = true;
86a06318
BP
206 break;
207
3542148e
AL
208 case OPT_UNIXCTL:
209 *unixctl_pathp = optarg;
210 break;
211
064af421
BP
212 VLOG_OPTION_HANDLERS
213 DAEMON_OPTION_HANDLERS
fe55ad15
BP
214 STREAM_SSL_OPTION_HANDLERS
215
064af421 216 case OPT_PEER_CA_CERT:
fe55ad15 217 stream_ssl_set_peer_ca_cert_file(optarg);
064af421 218 break;
6f61c75b
BP
219
220 case OPT_BOOTSTRAP_CA_CERT:
221 stream_ssl_set_ca_cert_file(optarg, true);
222 break;
064af421 223
614c4892 224 case OPT_ENABLE_DUMMY:
8420c7ad 225 dummy_enable(optarg);
614c4892
BP
226 break;
227
579a77e0
EJ
228 case OPT_DISABLE_SYSTEM:
229 dp_blacklist_provider("system");
898d7b05 230 ovs_router_disable_system_routing_table();
579a77e0
EJ
231 break;
232
064af421
BP
233 case '?':
234 exit(EXIT_FAILURE);
235
8a9562d2 236 case OPT_DPDK:
bab69409 237 ovs_fatal(0, "Using --dpdk to configure DPDK is not supported.");
8a9562d2
PS
238 break;
239
b4e28b7f
DDP
240 case OPT_DUMMY_NUMA:
241 ovs_numa_set_dummy(optarg);
242 break;
243
064af421
BP
244 default:
245 abort();
246 }
247 }
248 free(short_options);
249
250 argc -= optind;
251 argv += optind;
252
80df177a
BP
253 switch (argc) {
254 case 0:
255 return xasprintf("unix:%s/db.sock", ovs_rundir());
256
257 case 1:
258 return xstrdup(argv[0]);
259
260 default:
261 VLOG_FATAL("at most one non-option argument accepted; "
279c9e03 262 "use --help for usage");
064af421 263 }
064af421
BP
264}
265
266static void
267usage(void)
268{
f30f26be 269 printf("%s: Open vSwitch daemon\n"
80df177a
BP
270 "usage: %s [OPTIONS] [DATABASE]\n"
271 "where DATABASE is a socket on which ovsdb-server is listening\n"
272 " (default: \"unix:%s/db.sock\").\n",
273 program_name, program_name, ovs_rundir());
9467fe62 274 stream_usage("DATABASE", true, false, true);
064af421
BP
275 daemon_usage();
276 vlog_usage();
d1279464 277 printf("\nDPDK options:\n"
bab69409
AC
278 "Configuration of DPDK via command-line is removed from this\n"
279 "version of Open vSwitch. DPDK is configured through ovsdb.\n"
280 );
0b8b6f71 281 printf("\nOther options:\n"
58397e6c
KT
282 " --unixctl=SOCKET override default control socket name\n"
283 " -h, --help display this help message\n"
284 " -V, --version display version information\n");
064af421
BP
285 exit(EXIT_SUCCESS);
286}
9e15c889
BP
287
288static void
fe13ccdc
AZ
289ovs_vswitchd_exit(struct unixctl_conn *conn, int argc,
290 const char *argv[], void *exit_args_)
9e15c889 291{
fe13ccdc
AZ
292 struct ovs_vswitchd_exit_args *exit_args = exit_args_;
293 *exit_args->exiting = true;
294 *exit_args->cleanup = argc == 2 && !strcmp(argv[1], "--cleanup");
bde9f75d 295 unixctl_command_reply(conn, NULL);
9e15c889 296}