vconn: Remove unnecessary forward declarations and #includes from header.
[sliver-openvswitch.git] / vswitchd / ovs-vswitchd.c
1 /* Copyright (c) 2008, 2009, 2010, 2011 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 "dirs.h"
34 #include "dummy.h"
35 #include "leak-checker.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 "stream-ssl.h"
43 #include "stream.h"
44 #include "stress.h"
45 #include "svec.h"
46 #include "timeval.h"
47 #include "unixctl.h"
48 #include "util.h"
49 #include "vconn.h"
50 #include "vlog.h"
51 #include "vswitchd/vswitch-idl.h"
52
53 VLOG_DEFINE_THIS_MODULE(vswitchd);
54
55 static unixctl_cb_func ovs_vswitchd_exit;
56
57 static char *parse_options(int argc, char *argv[]);
58 static void usage(void) NO_RETURN;
59
60 int
61 main(int argc, char *argv[])
62 {
63     struct unixctl_server *unixctl;
64     struct signal *sighup;
65     char *remote;
66     bool exiting;
67     int retval;
68
69     proctitle_init(argc, argv);
70     set_program_name(argv[0]);
71     stress_init_command();
72     remote = parse_options(argc, argv);
73     signal(SIGPIPE, SIG_IGN);
74     sighup = signal_register(SIGHUP);
75     process_init();
76     ovsrec_init();
77
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     bridge_init(remote);
87     free(remote);
88
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         netdev_run();
97
98         signal_wait(sighup);
99         bridge_wait();
100         unixctl_server_wait(unixctl);
101         netdev_wait();
102         if (exiting) {
103             poll_immediate_wake();
104         }
105         poll_block();
106     }
107     bridge_exit();
108     unixctl_server_destroy(unixctl);
109     signal_unregister(sighup);
110
111     return 0;
112 }
113
114 static char *
115 parse_options(int argc, char *argv[])
116 {
117     enum {
118         OPT_PEER_CA_CERT = UCHAR_MAX + 1,
119         OPT_MLOCKALL,
120         VLOG_OPTION_ENUMS,
121         LEAK_CHECKER_OPTION_ENUMS,
122         OPT_BOOTSTRAP_CA_CERT,
123         OPT_ENABLE_DUMMY,
124         DAEMON_OPTION_ENUMS
125     };
126     static struct option long_options[] = {
127         {"help",        no_argument, NULL, 'h'},
128         {"version",     no_argument, NULL, 'V'},
129         {"mlockall",    no_argument, NULL, OPT_MLOCKALL},
130         DAEMON_LONG_OPTIONS,
131         VLOG_LONG_OPTIONS,
132         LEAK_CHECKER_LONG_OPTIONS,
133         STREAM_SSL_LONG_OPTIONS,
134         {"peer-ca-cert", required_argument, NULL, OPT_PEER_CA_CERT},
135         {"bootstrap-ca-cert", required_argument, NULL, OPT_BOOTSTRAP_CA_CERT},
136         {"enable-dummy", no_argument, NULL, OPT_ENABLE_DUMMY},
137         {NULL, 0, NULL, 0},
138     };
139     char *short_options = long_options_to_short_options(long_options);
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             usage();
152
153         case 'V':
154             ovs_print_version(OFP_VERSION, OFP_VERSION);
155             exit(EXIT_SUCCESS);
156
157         case OPT_MLOCKALL:
158 #ifdef HAVE_MLOCKALL
159             if (mlockall(MCL_CURRENT | MCL_FUTURE)) {
160                 VLOG_ERR("mlockall failed: %s", strerror(errno));
161             }
162 #else
163             VLOG_ERR("mlockall not supported on this system");
164 #endif
165             break;
166
167         VLOG_OPTION_HANDLERS
168         DAEMON_OPTION_HANDLERS
169         LEAK_CHECKER_OPTION_HANDLERS
170         STREAM_SSL_OPTION_HANDLERS
171
172         case OPT_PEER_CA_CERT:
173             stream_ssl_set_peer_ca_cert_file(optarg);
174             break;
175
176         case OPT_BOOTSTRAP_CA_CERT:
177             stream_ssl_set_ca_cert_file(optarg, true);
178             break;
179
180         case OPT_ENABLE_DUMMY:
181             dummy_enable();
182             break;
183
184         case '?':
185             exit(EXIT_FAILURE);
186
187         default:
188             abort();
189         }
190     }
191     free(short_options);
192
193     argc -= optind;
194     argv += optind;
195
196     switch (argc) {
197     case 0:
198         return xasprintf("unix:%s/db.sock", ovs_rundir());
199
200     case 1:
201         return xstrdup(argv[0]);
202
203     default:
204         VLOG_FATAL("at most one non-option argument accepted; "
205                    "use --help for usage");
206     }
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            "      (default: \"unix:%s/db.sock\").\n",
216            program_name, program_name, ovs_rundir());
217     stream_usage("DATABASE", true, false, true);
218     daemon_usage();
219     vlog_usage();
220     printf("\nOther options:\n"
221            "  -h, --help              display this help message\n"
222            "  -V, --version           display version information\n");
223     leak_checker_usage();
224     exit(EXIT_SUCCESS);
225 }
226
227 static void
228 ovs_vswitchd_exit(struct unixctl_conn *conn, const char *args OVS_UNUSED,
229                   void *exiting_)
230 {
231     bool *exiting = exiting_;
232     *exiting = true;
233     unixctl_command_reply(conn, 200, NULL);
234 }