ofproto-dpif: Zero-out subfacet counters when installation fails.
[cascardo/ovs.git] / vswitchd / ovs-vswitchd.c
1 /* Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 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 "memory.h"
36 #include "netdev.h"
37 #include "openflow/openflow.h"
38 #include "ovsdb-idl.h"
39 #include "poll-loop.h"
40 #include "process.h"
41 #include "signals.h"
42 #include "simap.h"
43 #include "stream-ssl.h"
44 #include "stream.h"
45 #include "stress.h"
46 #include "svec.h"
47 #include "timeval.h"
48 #include "unixctl.h"
49 #include "util.h"
50 #include "vconn.h"
51 #include "vlog.h"
52 #include "lib/vswitch-idl.h"
53
54 VLOG_DEFINE_THIS_MODULE(vswitchd);
55
56 /* --mlockall: If set, locks all process memory into physical RAM, preventing
57  * the kernel from paging any of its memory to disk. */
58 static bool want_mlockall;
59
60 static unixctl_cb_func ovs_vswitchd_exit;
61
62 static char *parse_options(int argc, char *argv[], char **unixctl_path);
63 static void usage(void) NO_RETURN;
64
65 int
66 main(int argc, char *argv[])
67 {
68     char *unixctl_path = NULL;
69     struct unixctl_server *unixctl;
70     struct signal *sighup;
71     char *remote;
72     bool exiting;
73     int retval;
74
75     proctitle_init(argc, argv);
76     set_program_name(argv[0]);
77     stress_init_command();
78     remote = parse_options(argc, argv, &unixctl_path);
79     signal(SIGPIPE, SIG_IGN);
80     sighup = signal_register(SIGHUP);
81     process_init();
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         if (signal_poll(sighup)) {
108             vlog_reopen_log_file();
109         }
110         memory_run();
111         if (memory_should_report()) {
112             struct simap usage;
113
114             simap_init(&usage);
115             bridge_get_memory_usage(&usage);
116             memory_report(&usage);
117             simap_destroy(&usage);
118         }
119         bridge_run_fast();
120         bridge_run();
121         bridge_run_fast();
122         unixctl_server_run(unixctl);
123         netdev_run();
124
125         signal_wait(sighup);
126         memory_wait();
127         bridge_wait();
128         unixctl_server_wait(unixctl);
129         netdev_wait();
130         if (exiting) {
131             poll_immediate_wake();
132         }
133         poll_block();
134     }
135     bridge_exit();
136     unixctl_server_destroy(unixctl);
137
138     return 0;
139 }
140
141 static char *
142 parse_options(int argc, char *argv[], char **unixctl_pathp)
143 {
144     enum {
145         OPT_PEER_CA_CERT = UCHAR_MAX + 1,
146         OPT_MLOCKALL,
147         OPT_UNIXCTL,
148         VLOG_OPTION_ENUMS,
149         OPT_BOOTSTRAP_CA_CERT,
150         OPT_ENABLE_DUMMY,
151         OPT_DISABLE_SYSTEM,
152         DAEMON_OPTION_ENUMS
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         {NULL, 0, NULL, 0},
167     };
168     char *short_options = long_options_to_short_options(long_options);
169
170     for (;;) {
171         int c;
172
173         c = getopt_long(argc, argv, short_options, long_options, NULL);
174         if (c == -1) {
175             break;
176         }
177
178         switch (c) {
179         case 'h':
180             usage();
181
182         case 'V':
183             ovs_print_version(OFP10_VERSION, OFP10_VERSION);
184             exit(EXIT_SUCCESS);
185
186         case OPT_MLOCKALL:
187             want_mlockall = true;
188             break;
189
190         case OPT_UNIXCTL:
191             *unixctl_pathp = optarg;
192             break;
193
194         VLOG_OPTION_HANDLERS
195         DAEMON_OPTION_HANDLERS
196         STREAM_SSL_OPTION_HANDLERS
197
198         case OPT_PEER_CA_CERT:
199             stream_ssl_set_peer_ca_cert_file(optarg);
200             break;
201
202         case OPT_BOOTSTRAP_CA_CERT:
203             stream_ssl_set_ca_cert_file(optarg, true);
204             break;
205
206         case OPT_ENABLE_DUMMY:
207             dummy_enable(optarg && !strcmp(optarg, "override"));
208             break;
209
210         case OPT_DISABLE_SYSTEM:
211             dp_blacklist_provider("system");
212             break;
213
214         case '?':
215             exit(EXIT_FAILURE);
216
217         default:
218             abort();
219         }
220     }
221     free(short_options);
222
223     argc -= optind;
224     argv += optind;
225
226     switch (argc) {
227     case 0:
228         return xasprintf("unix:%s/db.sock", ovs_rundir());
229
230     case 1:
231         return xstrdup(argv[0]);
232
233     default:
234         VLOG_FATAL("at most one non-option argument accepted; "
235                    "use --help for usage");
236     }
237 }
238
239 static void
240 usage(void)
241 {
242     printf("%s: Open vSwitch daemon\n"
243            "usage: %s [OPTIONS] [DATABASE]\n"
244            "where DATABASE is a socket on which ovsdb-server is listening\n"
245            "      (default: \"unix:%s/db.sock\").\n",
246            program_name, program_name, ovs_rundir());
247     stream_usage("DATABASE", true, false, true);
248     daemon_usage();
249     vlog_usage();
250     printf("\nOther options:\n"
251            "  --unixctl=SOCKET        override default control socket name\n"
252            "  -h, --help              display this help message\n"
253            "  -V, --version           display version information\n");
254     exit(EXIT_SUCCESS);
255 }
256
257 static void
258 ovs_vswitchd_exit(struct unixctl_conn *conn, int argc OVS_UNUSED,
259                   const char *argv[] OVS_UNUSED, void *exiting_)
260 {
261     bool *exiting = exiting_;
262     *exiting = true;
263     unixctl_command_reply(conn, NULL);
264 }