timeval: Make time_init() static and remove calls to it.
[sliver-openvswitch.git] / vswitchd / ovs-vswitchd.c
1 /* Copyright (c) 2008, 2009, 2010 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 "leak-checker.h"
35 #include "netdev.h"
36 #include "ovsdb-idl.h"
37 #include "poll-loop.h"
38 #include "proc-net-compat.h"
39 #include "process.h"
40 #include "signals.h"
41 #include "stream-ssl.h"
42 #include "stream.h"
43 #include "svec.h"
44 #include "timeval.h"
45 #include "unixctl.h"
46 #include "util.h"
47 #include "vconn.h"
48 #include "vswitchd/vswitch-idl.h"
49
50 #include "vlog.h"
51 #define THIS_MODULE VLM_vswitchd
52
53 static unixctl_cb_func ovs_vswitchd_exit;
54
55 static const char *parse_options(int argc, char *argv[]);
56 static void usage(void) NO_RETURN;
57
58 int
59 main(int argc, char *argv[])
60 {
61     struct unixctl_server *unixctl;
62     struct signal *sighup;
63     const char *remote;
64     bool exiting;
65     int retval;
66
67     proctitle_init(argc, argv);
68     set_program_name(argv[0]);
69     vlog_init();
70     remote = parse_options(argc, argv);
71     signal(SIGPIPE, SIG_IGN);
72     sighup = signal_register(SIGHUP);
73     process_init();
74     ovsrec_init();
75
76     die_if_already_running();
77     daemonize_start();
78
79     retval = unixctl_server_create(NULL, &unixctl);
80     if (retval) {
81         exit(EXIT_FAILURE);
82     }
83     unixctl_command_register("exit", ovs_vswitchd_exit, &exiting);
84
85     daemonize_complete();
86
87     bridge_init(remote);
88     exiting = false;
89     while (!exiting) {
90         if (signal_poll(sighup)) {
91             vlog_reopen_log_file();
92         }
93         bridge_run();
94         unixctl_server_run(unixctl);
95         dp_run();
96         netdev_run();
97
98         signal_wait(sighup);
99         bridge_wait();
100         unixctl_server_wait(unixctl);
101         dp_wait();
102         netdev_wait();
103         poll_block();
104     }
105
106     return 0;
107 }
108
109 static const char *
110 parse_options(int argc, char *argv[])
111 {
112     enum {
113         OPT_PEER_CA_CERT = UCHAR_MAX + 1,
114         OPT_MLOCKALL,
115         OPT_FAKE_PROC_NET,
116         VLOG_OPTION_ENUMS,
117         LEAK_CHECKER_OPTION_ENUMS,
118         OPT_BOOTSTRAP_CA_CERT
119     };
120     static struct option long_options[] = {
121         {"help",        no_argument, 0, 'h'},
122         {"version",     no_argument, 0, 'V'},
123         {"mlockall",    no_argument, 0, OPT_MLOCKALL},
124         {"fake-proc-net", no_argument, 0, OPT_FAKE_PROC_NET},
125         DAEMON_LONG_OPTIONS,
126         VLOG_LONG_OPTIONS,
127         LEAK_CHECKER_LONG_OPTIONS,
128 #ifdef HAVE_OPENSSL
129         STREAM_SSL_LONG_OPTIONS
130         {"peer-ca-cert", required_argument, 0, OPT_PEER_CA_CERT},
131         {"bootstrap-ca-cert", required_argument, 0, OPT_BOOTSTRAP_CA_CERT},
132 #endif
133         {0, 0, 0, 0},
134     };
135     char *short_options = long_options_to_short_options(long_options);
136     int error;
137
138     for (;;) {
139         int c;
140
141         c = getopt_long(argc, argv, short_options, long_options, NULL);
142         if (c == -1) {
143             break;
144         }
145
146         switch (c) {
147         case 'H':
148         case 'h':
149             usage();
150
151         case 'V':
152             OVS_PRINT_VERSION(OFP_VERSION, OFP_VERSION);
153             exit(EXIT_SUCCESS);
154
155         case OPT_MLOCKALL:
156 #ifdef HAVE_MLOCKALL
157             if (mlockall(MCL_CURRENT | MCL_FUTURE)) {
158                 VLOG_ERR("mlockall failed: %s", strerror(errno));
159             }
160 #else
161             VLOG_ERR("mlockall not supported on this system");
162 #endif
163             break;
164
165         case OPT_FAKE_PROC_NET:
166             error = proc_net_compat_init();
167             if (error) {
168                 ovs_fatal(error, "failed to initialize /proc/net "
169                           "compatibility");
170             }
171             break;
172
173         VLOG_OPTION_HANDLERS
174         DAEMON_OPTION_HANDLERS
175         LEAK_CHECKER_OPTION_HANDLERS
176
177 #ifdef HAVE_OPENSSL
178         STREAM_SSL_OPTION_HANDLERS
179
180         case OPT_PEER_CA_CERT:
181             stream_ssl_set_peer_ca_cert_file(optarg);
182             break;
183
184         case OPT_BOOTSTRAP_CA_CERT:
185             stream_ssl_set_ca_cert_file(optarg, true);
186             break;
187 #endif
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("\nLegacy compatibility options:\n"
220            " --fake-proc-net          simulate some files in /proc/net\n"
221            "\nOther options:\n"
222            "  -h, --help              display this help message\n"
223            "  -V, --version           display version information\n");
224     leak_checker_usage();
225     exit(EXIT_SUCCESS);
226 }
227
228 static void
229 ovs_vswitchd_exit(struct unixctl_conn *conn, const char *args OVS_UNUSED,
230                   void *exiting_)
231 {
232     bool *exiting = exiting_;
233     *exiting = true;
234     unixctl_command_reply(conn, 200, NULL);
235 }