ovs-vswitchd: Complete daemonization only after initial configuration.
[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 "dpif.h"
34 #include "dummy.h"
35 #include "leak-checker.h"
36 #include "netdev.h"
37 #include "ovsdb-idl.h"
38 #include "poll-loop.h"
39 #include "proc-net-compat.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 const 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     const 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     die_if_already_running();
79     daemonize_start();
80
81     retval = unixctl_server_create(NULL, &unixctl);
82     if (retval) {
83         exit(EXIT_FAILURE);
84     }
85     unixctl_command_register("exit", ovs_vswitchd_exit, &exiting);
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         if (exiting) {
104             poll_immediate_wake();
105         }
106         poll_block();
107     }
108     bridge_exit();
109     unixctl_server_destroy(unixctl);
110
111     return 0;
112 }
113
114 static const char *
115 parse_options(int argc, char *argv[])
116 {
117     enum {
118         OPT_PEER_CA_CERT = UCHAR_MAX + 1,
119         OPT_MLOCKALL,
120         OPT_FAKE_PROC_NET,
121         VLOG_OPTION_ENUMS,
122         LEAK_CHECKER_OPTION_ENUMS,
123         OPT_BOOTSTRAP_CA_CERT,
124         OPT_ENABLE_DUMMY,
125         DAEMON_OPTION_ENUMS
126     };
127     static struct option long_options[] = {
128         {"help",        no_argument, 0, 'h'},
129         {"version",     no_argument, 0, 'V'},
130         {"mlockall",    no_argument, 0, OPT_MLOCKALL},
131         {"fake-proc-net", no_argument, 0, OPT_FAKE_PROC_NET},
132         DAEMON_LONG_OPTIONS,
133         VLOG_LONG_OPTIONS,
134         LEAK_CHECKER_LONG_OPTIONS,
135 #ifdef HAVE_OPENSSL
136         STREAM_SSL_LONG_OPTIONS
137         {"peer-ca-cert", required_argument, 0, OPT_PEER_CA_CERT},
138         {"bootstrap-ca-cert", required_argument, 0, OPT_BOOTSTRAP_CA_CERT},
139 #endif
140         {"enable-dummy", no_argument, 0, OPT_ENABLE_DUMMY},
141         {0, 0, 0, 0},
142     };
143     char *short_options = long_options_to_short_options(long_options);
144     int error;
145
146     for (;;) {
147         int c;
148
149         c = getopt_long(argc, argv, short_options, long_options, NULL);
150         if (c == -1) {
151             break;
152         }
153
154         switch (c) {
155         case 'H':
156         case 'h':
157             usage();
158
159         case 'V':
160             OVS_PRINT_VERSION(OFP_VERSION, OFP_VERSION);
161             exit(EXIT_SUCCESS);
162
163         case OPT_MLOCKALL:
164 #ifdef HAVE_MLOCKALL
165             if (mlockall(MCL_CURRENT | MCL_FUTURE)) {
166                 VLOG_ERR("mlockall failed: %s", strerror(errno));
167             }
168 #else
169             VLOG_ERR("mlockall not supported on this system");
170 #endif
171             break;
172
173         case OPT_FAKE_PROC_NET:
174             error = proc_net_compat_init();
175             if (error) {
176                 ovs_fatal(error, "failed to initialize /proc/net "
177                           "compatibility");
178             }
179             break;
180
181         VLOG_OPTION_HANDLERS
182         DAEMON_OPTION_HANDLERS
183         LEAK_CHECKER_OPTION_HANDLERS
184
185 #ifdef HAVE_OPENSSL
186         STREAM_SSL_OPTION_HANDLERS
187
188         case OPT_PEER_CA_CERT:
189             stream_ssl_set_peer_ca_cert_file(optarg);
190             break;
191
192         case OPT_BOOTSTRAP_CA_CERT:
193             stream_ssl_set_ca_cert_file(optarg, true);
194             break;
195 #endif
196
197         case OPT_ENABLE_DUMMY:
198             dummy_enable();
199             break;
200
201         case '?':
202             exit(EXIT_FAILURE);
203
204         default:
205             abort();
206         }
207     }
208     free(short_options);
209
210     argc -= optind;
211     argv += optind;
212
213     if (argc != 1) {
214         ovs_fatal(0, "database socket is only non-option argument; "
215                 "use --help for usage");
216     }
217
218     return argv[0];
219 }
220
221 static void
222 usage(void)
223 {
224     printf("%s: Open vSwitch daemon\n"
225            "usage: %s [OPTIONS] DATABASE\n"
226            "where DATABASE is a socket on which ovsdb-server is listening.\n",
227            program_name, program_name);
228     stream_usage("DATABASE", true, false, true);
229     daemon_usage();
230     vlog_usage();
231     printf("\nLegacy compatibility options:\n"
232            " --fake-proc-net          simulate some files in /proc/net\n"
233            "\nOther options:\n"
234            "  -h, --help              display this help message\n"
235            "  -V, --version           display version information\n");
236     leak_checker_usage();
237     exit(EXIT_SUCCESS);
238 }
239
240 static void
241 ovs_vswitchd_exit(struct unixctl_conn *conn, const char *args OVS_UNUSED,
242                   void *exiting_)
243 {
244     bool *exiting = exiting_;
245     *exiting = true;
246     unixctl_command_reply(conn, 200, NULL);
247 }