bridge: Set ofport column in every database transaction.
[sliver-openvswitch.git] / vswitchd / ovs-vswitchd.c
1 /* Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
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 <errno.h>
19 #include <getopt.h>
20 #include <limits.h>
21 #include <signal.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #ifdef HAVE_MLOCKALL
25 #include <sys/mman.h>
26 #endif
27
28 #include "bridge.h"
29 #include "command-line.h"
30 #include "compiler.h"
31 #include "daemon.h"
32 #include "dirs.h"
33 #include "dpif.h"
34 #include "dummy.h"
35 #include "memory.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 "simap.h"
43 #include "stream-ssl.h"
44 #include "stream.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 "lib/vswitch-idl.h"
52
53 VLOG_DEFINE_THIS_MODULE(vswitchd);
54
55 /* --mlockall: If set, locks all process memory into physical RAM, preventing
56  * the kernel from paging any of its memory to disk. */
57 static bool want_mlockall;
58
59 static unixctl_cb_func ovs_vswitchd_exit;
60
61 static char *parse_options(int argc, char *argv[], char **unixctl_path);
62 static void usage(void) NO_RETURN;
63
64 int
65 main(int argc, char *argv[])
66 {
67     char *unixctl_path = NULL;
68     struct unixctl_server *unixctl;
69     struct signal *sighup;
70     char *remote;
71     bool exiting;
72     int retval;
73
74     proctitle_init(argc, argv);
75     set_program_name(argv[0]);
76     remote = parse_options(argc, argv, &unixctl_path);
77     signal(SIGPIPE, SIG_IGN);
78     sighup = signal_register(SIGHUP);
79     process_init();
80     ovsrec_init();
81
82     daemonize_start();
83
84     if (want_mlockall) {
85 #ifdef HAVE_MLOCKALL
86         if (mlockall(MCL_CURRENT | MCL_FUTURE)) {
87             VLOG_ERR("mlockall failed: %s", ovs_strerror(errno));
88         }
89 #else
90         VLOG_ERR("mlockall not supported on this system");
91 #endif
92     }
93
94     retval = unixctl_server_create(unixctl_path, &unixctl);
95     if (retval) {
96         exit(EXIT_FAILURE);
97     }
98     unixctl_command_register("exit", "", 0, 0, ovs_vswitchd_exit, &exiting);
99
100     bridge_init(remote);
101     free(remote);
102
103     exiting = false;
104     while (!exiting) {
105         if (signal_poll(sighup)) {
106             vlog_reopen_log_file();
107         }
108         memory_run();
109         if (memory_should_report()) {
110             struct simap usage;
111
112             simap_init(&usage);
113             bridge_get_memory_usage(&usage);
114             memory_report(&usage);
115             simap_destroy(&usage);
116         }
117         bridge_run();
118         unixctl_server_run(unixctl);
119         netdev_run();
120
121         signal_wait(sighup);
122         memory_wait();
123         bridge_wait();
124         unixctl_server_wait(unixctl);
125         netdev_wait();
126         if (exiting) {
127             poll_immediate_wake();
128         }
129         poll_block();
130     }
131     bridge_exit();
132     unixctl_server_destroy(unixctl);
133
134     return 0;
135 }
136
137 static char *
138 parse_options(int argc, char *argv[], char **unixctl_pathp)
139 {
140     enum {
141         OPT_PEER_CA_CERT = UCHAR_MAX + 1,
142         OPT_MLOCKALL,
143         OPT_UNIXCTL,
144         VLOG_OPTION_ENUMS,
145         OPT_BOOTSTRAP_CA_CERT,
146         OPT_ENABLE_DUMMY,
147         OPT_DISABLE_SYSTEM,
148         DAEMON_OPTION_ENUMS
149     };
150     static const struct option long_options[] = {
151         {"help",        no_argument, NULL, 'h'},
152         {"version",     no_argument, NULL, 'V'},
153         {"mlockall",    no_argument, NULL, OPT_MLOCKALL},
154         {"unixctl",     required_argument, NULL, OPT_UNIXCTL},
155         DAEMON_LONG_OPTIONS,
156         VLOG_LONG_OPTIONS,
157         STREAM_SSL_LONG_OPTIONS,
158         {"peer-ca-cert", required_argument, NULL, OPT_PEER_CA_CERT},
159         {"bootstrap-ca-cert", required_argument, NULL, OPT_BOOTSTRAP_CA_CERT},
160         {"enable-dummy", optional_argument, NULL, OPT_ENABLE_DUMMY},
161         {"disable-system", no_argument, NULL, OPT_DISABLE_SYSTEM},
162         {NULL, 0, NULL, 0},
163     };
164     char *short_options = long_options_to_short_options(long_options);
165
166     for (;;) {
167         int c;
168
169         c = getopt_long(argc, argv, short_options, long_options, NULL);
170         if (c == -1) {
171             break;
172         }
173
174         switch (c) {
175         case 'h':
176             usage();
177
178         case 'V':
179             ovs_print_version(OFP10_VERSION, OFP10_VERSION);
180             exit(EXIT_SUCCESS);
181
182         case OPT_MLOCKALL:
183             want_mlockall = true;
184             break;
185
186         case OPT_UNIXCTL:
187             *unixctl_pathp = optarg;
188             break;
189
190         VLOG_OPTION_HANDLERS
191         DAEMON_OPTION_HANDLERS
192         STREAM_SSL_OPTION_HANDLERS
193
194         case OPT_PEER_CA_CERT:
195             stream_ssl_set_peer_ca_cert_file(optarg);
196             break;
197
198         case OPT_BOOTSTRAP_CA_CERT:
199             stream_ssl_set_ca_cert_file(optarg, true);
200             break;
201
202         case OPT_ENABLE_DUMMY:
203             dummy_enable(optarg && !strcmp(optarg, "override"));
204             break;
205
206         case OPT_DISABLE_SYSTEM:
207             dp_blacklist_provider("system");
208             break;
209
210         case '?':
211             exit(EXIT_FAILURE);
212
213         default:
214             abort();
215         }
216     }
217     free(short_options);
218
219     argc -= optind;
220     argv += optind;
221
222     switch (argc) {
223     case 0:
224         return xasprintf("unix:%s/db.sock", ovs_rundir());
225
226     case 1:
227         return xstrdup(argv[0]);
228
229     default:
230         VLOG_FATAL("at most one non-option argument accepted; "
231                    "use --help for usage");
232     }
233 }
234
235 static void
236 usage(void)
237 {
238     printf("%s: Open vSwitch daemon\n"
239            "usage: %s [OPTIONS] [DATABASE]\n"
240            "where DATABASE is a socket on which ovsdb-server is listening\n"
241            "      (default: \"unix:%s/db.sock\").\n",
242            program_name, program_name, ovs_rundir());
243     stream_usage("DATABASE", true, false, true);
244     daemon_usage();
245     vlog_usage();
246     printf("\nOther options:\n"
247            "  --unixctl=SOCKET        override default control socket name\n"
248            "  -h, --help              display this help message\n"
249            "  -V, --version           display version information\n");
250     exit(EXIT_SUCCESS);
251 }
252
253 static void
254 ovs_vswitchd_exit(struct unixctl_conn *conn, int argc OVS_UNUSED,
255                   const char *argv[] OVS_UNUSED, void *exiting_)
256 {
257     bool *exiting = exiting_;
258     *exiting = true;
259     unixctl_command_reply(conn, NULL);
260 }