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