e2473dcfe958c2cdcf39fed18e48e85556fac4af
[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     time_init();
70     vlog_init();
71     remote = parse_options(argc, argv);
72     signal(SIGPIPE, SIG_IGN);
73     sighup = signal_register(SIGHUP);
74     process_init();
75     ovsrec_init();
76
77     die_if_already_running();
78     daemonize_start();
79
80     retval = unixctl_server_create(NULL, &unixctl);
81     if (retval) {
82         exit(EXIT_FAILURE);
83     }
84     unixctl_command_register("exit", ovs_vswitchd_exit, &exiting);
85
86     daemonize_complete();
87
88     bridge_init(remote);
89     exiting = false;
90     while (!exiting) {
91         if (signal_poll(sighup)) {
92             vlog_reopen_log_file();
93         }
94         bridge_run();
95         unixctl_server_run(unixctl);
96         dp_run();
97         netdev_run();
98
99         signal_wait(sighup);
100         bridge_wait();
101         unixctl_server_wait(unixctl);
102         dp_wait();
103         netdev_wait();
104         poll_block();
105     }
106
107     return 0;
108 }
109
110 static const char *
111 parse_options(int argc, char *argv[])
112 {
113     enum {
114         OPT_PEER_CA_CERT = UCHAR_MAX + 1,
115         OPT_MLOCKALL,
116         OPT_FAKE_PROC_NET,
117         VLOG_OPTION_ENUMS,
118         LEAK_CHECKER_OPTION_ENUMS,
119         OPT_BOOTSTRAP_CA_CERT
120     };
121     static struct option long_options[] = {
122         {"help",        no_argument, 0, 'h'},
123         {"version",     no_argument, 0, 'V'},
124         {"mlockall",    no_argument, 0, OPT_MLOCKALL},
125         {"fake-proc-net", no_argument, 0, OPT_FAKE_PROC_NET},
126         DAEMON_LONG_OPTIONS,
127         VLOG_LONG_OPTIONS,
128         LEAK_CHECKER_LONG_OPTIONS,
129 #ifdef HAVE_OPENSSL
130         STREAM_SSL_LONG_OPTIONS
131         {"peer-ca-cert", required_argument, 0, OPT_PEER_CA_CERT},
132         {"bootstrap-ca-cert", required_argument, 0, OPT_BOOTSTRAP_CA_CERT},
133 #endif
134         {0, 0, 0, 0},
135     };
136     char *short_options = long_options_to_short_options(long_options);
137     int error;
138
139     for (;;) {
140         int c;
141
142         c = getopt_long(argc, argv, short_options, long_options, NULL);
143         if (c == -1) {
144             break;
145         }
146
147         switch (c) {
148         case 'H':
149         case 'h':
150             usage();
151
152         case 'V':
153             OVS_PRINT_VERSION(OFP_VERSION, OFP_VERSION);
154             exit(EXIT_SUCCESS);
155
156         case OPT_MLOCKALL:
157 #ifdef HAVE_MLOCKALL
158             if (mlockall(MCL_CURRENT | MCL_FUTURE)) {
159                 VLOG_ERR("mlockall failed: %s", strerror(errno));
160             }
161 #else
162             VLOG_ERR("mlockall not supported on this system");
163 #endif
164             break;
165
166         case OPT_FAKE_PROC_NET:
167             error = proc_net_compat_init();
168             if (error) {
169                 ovs_fatal(error, "failed to initialize /proc/net "
170                           "compatibility");
171             }
172             break;
173
174         VLOG_OPTION_HANDLERS
175         DAEMON_OPTION_HANDLERS
176         LEAK_CHECKER_OPTION_HANDLERS
177
178 #ifdef HAVE_OPENSSL
179         STREAM_SSL_OPTION_HANDLERS
180
181         case OPT_PEER_CA_CERT:
182             stream_ssl_set_peer_ca_cert_file(optarg);
183             break;
184
185         case OPT_BOOTSTRAP_CA_CERT:
186             stream_ssl_set_ca_cert_file(optarg, true);
187             break;
188 #endif
189
190         case '?':
191             exit(EXIT_FAILURE);
192
193         default:
194             abort();
195         }
196     }
197     free(short_options);
198
199     argc -= optind;
200     argv += optind;
201
202     if (argc != 1) {
203         ovs_fatal(0, "database socket is only non-option argument; "
204                 "use --help for usage");
205     }
206
207     return argv[0];
208 }
209
210 static void
211 usage(void)
212 {
213     printf("%s: Open vSwitch daemon\n"
214            "usage: %s [OPTIONS] DATABASE\n"
215            "where DATABASE is a socket on which ovsdb-server is listening.\n",
216            program_name, program_name);
217     stream_usage("DATABASE", true, false, true);
218     daemon_usage();
219     vlog_usage();
220     printf("\nLegacy compatibility options:\n"
221            " --fake-proc-net          simulate some files in /proc/net\n"
222            "\nOther options:\n"
223            "  -h, --help              display this help message\n"
224            "  -V, --version           display version information\n");
225     leak_checker_usage();
226     exit(EXIT_SUCCESS);
227 }
228
229 static void
230 ovs_vswitchd_exit(struct unixctl_conn *conn, const char *args OVS_UNUSED,
231                   void *exiting_)
232 {
233     bool *exiting = exiting_;
234     *exiting = true;
235     unixctl_command_reply(conn, 200, NULL);
236 }