Merge "master" branch into "db".
[sliver-openvswitch.git] / utilities / ovs-openflowd.c
1 /*
2  * Copyright (c) 2008, 2009 Nicira Networks.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18 #include <assert.h>
19 #include <errno.h>
20 #include <getopt.h>
21 #include <inttypes.h>
22 #include <netinet/in.h>
23 #include <stdlib.h>
24 #include <signal.h>
25 #include <string.h>
26
27 #include "command-line.h"
28 #include "compiler.h"
29 #include "daemon.h"
30 #include "dirs.h"
31 #include "dpif.h"
32 #include "fault.h"
33 #include "leak-checker.h"
34 #include "list.h"
35 #include "netdev.h"
36 #include "ofpbuf.h"
37 #include "ofproto/ofproto.h"
38 #include "openflow/openflow.h"
39 #include "packets.h"
40 #include "poll-loop.h"
41 #include "rconn.h"
42 #include "svec.h"
43 #include "timeval.h"
44 #include "unixctl.h"
45 #include "util.h"
46 #include "vconn-ssl.h"
47 #include "vconn.h"
48
49 #include "vlog.h"
50 #define THIS_MODULE VLM_openflowd
51
52 /* Behavior when the connection to the controller fails. */
53 enum fail_mode {
54     FAIL_OPEN,                  /* Act as learning switch. */
55     FAIL_CLOSED                 /* Drop all packets. */
56 };
57
58 /* Settings that may be configured by the user. */
59 struct ofsettings {
60     /* Overall mode of operation. */
61     bool discovery;           /* Discover the controller automatically? */
62     bool in_band;             /* Connect to controller in-band? */
63
64     /* Datapath. */
65     uint64_t datapath_id;       /* Datapath ID. */
66     const char *dp_name;        /* Name of local datapath. */
67     struct svec ports;          /* Set of ports to add to datapath (if any). */
68
69     /* Description strings. */
70     const char *mfr_desc;       /* Manufacturer. */
71     const char *hw_desc;        /* Hardware. */
72     const char *sw_desc;        /* Software version. */
73     const char *serial_desc;    /* Serial number. */
74
75     /* Related vconns and network devices. */
76     const char *controller_name; /* Controller (if not discovery mode). */
77     struct svec listeners;       /* Listen for management connections. */
78     struct svec snoops;          /* Listen for controller snooping conns. */
79
80     /* Failure behavior. */
81     enum fail_mode fail_mode; /* Act as learning switch if no controller? */
82     int max_idle;             /* Idle time for flows in fail-open mode. */
83     int probe_interval;       /* # seconds idle before sending echo request. */
84     int max_backoff;          /* Max # seconds between connection attempts. */
85
86     /* Packet-in rate-limiting. */
87     int rate_limit;           /* Tokens added to bucket per second. */
88     int burst_limit;          /* Maximum number token bucket size. */
89
90     /* Discovery behavior. */
91     const char *accept_controller_re; /* Controller vconns to accept. */
92     bool update_resolv_conf;          /* Update /etc/resolv.conf? */
93
94     /* Spanning tree protocol. */
95     bool enable_stp;
96
97     /* Remote command execution. */
98     char *command_acl;          /* Command white/blacklist, as shell globs. */
99     char *command_dir;          /* Directory that contains commands. */
100
101     /* Management. */
102     uint64_t mgmt_id;           /* Management ID. */
103
104     /* NetFlow. */
105     struct svec netflow;        /* NetFlow targets. */
106 };
107
108 static void parse_options(int argc, char *argv[], struct ofsettings *);
109 static void usage(void) NO_RETURN;
110
111 int
112 main(int argc, char *argv[])
113 {
114     struct unixctl_server *unixctl;
115     struct ofproto *ofproto;
116     struct ofsettings s;
117     int error;
118     struct netflow_options nf_options;
119
120     set_program_name(argv[0]);
121     register_fault_handlers();
122     time_init();
123     vlog_init();
124     parse_options(argc, argv, &s);
125     signal(SIGPIPE, SIG_IGN);
126
127     die_if_already_running();
128     daemonize();
129
130     /* Start listening for ovs-appctl requests. */
131     error = unixctl_server_create(NULL, &unixctl);
132     if (error) {
133         ovs_fatal(error, "Could not listen for unixctl connections");
134     }
135
136     VLOG_INFO("Open vSwitch version %s", VERSION BUILDNR);
137     VLOG_INFO("OpenFlow protocol version 0x%02x", OFP_VERSION);
138
139     /* Create the datapath and add ports to it, if requested by the user. */
140     if (s.ports.n) {
141         struct dpif *dpif;
142         const char *port;
143         size_t i;
144
145         error = dpif_create_and_open(s.dp_name, &dpif);
146         if (error) {
147             ovs_fatal(error, "could not create datapath");
148         }
149
150         SVEC_FOR_EACH (i, port, &s.ports) {
151             error = dpif_port_add(dpif, port, 0, NULL);
152             if (error) {
153                 ovs_fatal(error, "failed to add %s as a port", port);
154             }
155         }
156         dpif_close(dpif);
157     }
158
159     /* Start OpenFlow processing. */
160     error = ofproto_create(s.dp_name, NULL, NULL, &ofproto);
161     if (error) {
162         ovs_fatal(error, "could not initialize openflow switch");
163     }
164     error = ofproto_set_in_band(ofproto, s.in_band);
165     if (error) {
166         ovs_fatal(error, "failed to configure in-band control");
167     }
168     error = ofproto_set_discovery(ofproto, s.discovery, s.accept_controller_re,
169                                   s.update_resolv_conf);
170     if (error) {
171         ovs_fatal(error, "failed to configure controller discovery");
172     }
173     if (s.datapath_id) {
174         ofproto_set_datapath_id(ofproto, s.datapath_id);
175     }
176     if (s.mgmt_id) {
177         ofproto_set_mgmt_id(ofproto, s.mgmt_id);
178     }
179     ofproto_set_desc(ofproto, s.mfr_desc, s.hw_desc, s.sw_desc, s.serial_desc);
180     if (!s.listeners.n) {
181         svec_add_nocopy(&s.listeners, xasprintf("punix:%s/%s.mgmt",
182                                               ovs_rundir, s.dp_name));
183     } else if (s.listeners.n == 1 && !strcmp(s.listeners.names[0], "none")) {
184         svec_clear(&s.listeners);
185     }
186     error = ofproto_set_listeners(ofproto, &s.listeners);
187     if (error) {
188         ovs_fatal(error, "failed to configure management connections");
189     }
190     error = ofproto_set_snoops(ofproto, &s.snoops);
191     if (error) {
192         ovs_fatal(error,
193                   "failed to configure controller snooping connections");
194     }
195     memset(&nf_options, 0, sizeof nf_options);
196     nf_options.collectors = s.netflow;
197     error = ofproto_set_netflow(ofproto, &nf_options);
198     if (error) {
199         ovs_fatal(error, "failed to configure NetFlow collectors");
200     }
201     ofproto_set_failure(ofproto, s.fail_mode == FAIL_OPEN);
202     ofproto_set_probe_interval(ofproto, s.probe_interval);
203     ofproto_set_max_backoff(ofproto, s.max_backoff);
204     ofproto_set_rate_limit(ofproto, s.rate_limit, s.burst_limit);
205     error = ofproto_set_stp(ofproto, s.enable_stp);
206     if (error) {
207         ovs_fatal(error, "failed to configure STP");
208     }
209     error = ofproto_set_remote_execution(ofproto, s.command_acl,
210                                          s.command_dir);
211     if (error) {
212         ovs_fatal(error, "failed to configure remote command execution");
213     }
214     if (!s.discovery) {
215         error = ofproto_set_controller(ofproto, s.controller_name);
216         if (error) {
217             ovs_fatal(error, "failed to configure controller");
218         }
219     }
220
221     while (ofproto_is_alive(ofproto)) {
222         error = ofproto_run(ofproto);
223         if (error) {
224             ovs_fatal(error, "unrecoverable datapath error");
225         }
226         unixctl_server_run(unixctl);
227         dp_run();
228         netdev_run();
229
230         ofproto_wait(ofproto);
231         unixctl_server_wait(unixctl);
232         dp_wait();
233         netdev_wait();
234         poll_block();
235     }
236
237     return 0;
238 }
239 \f
240 /* User interface. */
241
242 static void
243 parse_options(int argc, char *argv[], struct ofsettings *s)
244 {
245     enum {
246         OPT_DATAPATH_ID = UCHAR_MAX + 1,
247         OPT_MANUFACTURER,
248         OPT_HARDWARE,
249         OPT_SOFTWARE,
250         OPT_SERIAL,
251         OPT_ACCEPT_VCONN,
252         OPT_NO_RESOLV_CONF,
253         OPT_BR_NAME,
254         OPT_FAIL_MODE,
255         OPT_INACTIVITY_PROBE,
256         OPT_MAX_IDLE,
257         OPT_MAX_BACKOFF,
258         OPT_SNOOP,
259         OPT_RATE_LIMIT,
260         OPT_BURST_LIMIT,
261         OPT_BOOTSTRAP_CA_CERT,
262         OPT_STP,
263         OPT_NO_STP,
264         OPT_OUT_OF_BAND,
265         OPT_IN_BAND,
266         OPT_COMMAND_ACL,
267         OPT_COMMAND_DIR,
268         OPT_NETFLOW,
269         OPT_MGMT_ID,
270         OPT_PORTS,
271         VLOG_OPTION_ENUMS,
272         LEAK_CHECKER_OPTION_ENUMS
273     };
274     static struct option long_options[] = {
275         {"datapath-id", required_argument, 0, OPT_DATAPATH_ID},
276         {"manufacturer", required_argument, 0, OPT_MANUFACTURER},
277         {"hardware", required_argument, 0, OPT_HARDWARE},
278         {"software", required_argument, 0, OPT_SOFTWARE},
279         {"serial", required_argument, 0, OPT_SERIAL},
280         {"accept-vconn", required_argument, 0, OPT_ACCEPT_VCONN},
281         {"no-resolv-conf", no_argument, 0, OPT_NO_RESOLV_CONF},
282         {"config",      required_argument, 0, 'F'},
283         {"br-name",     required_argument, 0, OPT_BR_NAME},
284         {"fail",        required_argument, 0, OPT_FAIL_MODE},
285         {"inactivity-probe", required_argument, 0, OPT_INACTIVITY_PROBE},
286         {"max-idle",    required_argument, 0, OPT_MAX_IDLE},
287         {"max-backoff", required_argument, 0, OPT_MAX_BACKOFF},
288         {"listen",      required_argument, 0, 'l'},
289         {"snoop",      required_argument, 0, OPT_SNOOP},
290         {"rate-limit",  optional_argument, 0, OPT_RATE_LIMIT},
291         {"burst-limit", required_argument, 0, OPT_BURST_LIMIT},
292         {"stp",         no_argument, 0, OPT_STP},
293         {"no-stp",      no_argument, 0, OPT_NO_STP},
294         {"out-of-band", no_argument, 0, OPT_OUT_OF_BAND},
295         {"in-band",     no_argument, 0, OPT_IN_BAND},
296         {"command-acl", required_argument, 0, OPT_COMMAND_ACL},
297         {"command-dir", required_argument, 0, OPT_COMMAND_DIR},
298         {"netflow",     required_argument, 0, OPT_NETFLOW},
299         {"mgmt-id",     required_argument, 0, OPT_MGMT_ID},
300         {"ports",       required_argument, 0, OPT_PORTS},
301         {"verbose",     optional_argument, 0, 'v'},
302         {"help",        no_argument, 0, 'h'},
303         {"version",     no_argument, 0, 'V'},
304         DAEMON_LONG_OPTIONS,
305         VLOG_LONG_OPTIONS,
306         LEAK_CHECKER_LONG_OPTIONS,
307 #ifdef HAVE_OPENSSL
308         VCONN_SSL_LONG_OPTIONS
309         {"bootstrap-ca-cert", required_argument, 0, OPT_BOOTSTRAP_CA_CERT},
310 #endif
311         {0, 0, 0, 0},
312     };
313     char *short_options = long_options_to_short_options(long_options);
314
315     /* Set defaults that we can figure out before parsing options. */
316     s->datapath_id = 0;
317     s->mfr_desc = NULL;
318     s->hw_desc = NULL;
319     s->sw_desc = NULL;
320     s->serial_desc = NULL;
321     svec_init(&s->listeners);
322     svec_init(&s->snoops);
323     s->fail_mode = FAIL_OPEN;
324     s->max_idle = 0;
325     s->probe_interval = 0;
326     s->max_backoff = 8;
327     s->update_resolv_conf = true;
328     s->rate_limit = 0;
329     s->burst_limit = 0;
330     s->accept_controller_re = NULL;
331     s->enable_stp = false;
332     s->in_band = true;
333     s->command_acl = "";
334     s->command_dir = NULL;
335     svec_init(&s->netflow);
336     s->mgmt_id = 0;
337     svec_init(&s->ports);
338     for (;;) {
339         int c;
340
341         c = getopt_long(argc, argv, short_options, long_options, NULL);
342         if (c == -1) {
343             break;
344         }
345
346         switch (c) {
347         case OPT_DATAPATH_ID:
348             if (strlen(optarg) != 12
349                 || strspn(optarg, "0123456789abcdefABCDEF") != 12) {
350                 ovs_fatal(0, "argument to --datapath-id must be "
351                           "exactly 12 hex digits");
352             }
353             s->datapath_id = strtoll(optarg, NULL, 16);
354             if (!s->datapath_id) {
355                 ovs_fatal(0, "argument to --datapath-id must be nonzero");
356             }
357             break;
358
359         case OPT_MANUFACTURER:
360             s->mfr_desc = optarg;
361             break;
362
363         case OPT_HARDWARE:
364             s->hw_desc = optarg;
365             break;
366
367         case OPT_SOFTWARE:
368             s->sw_desc = optarg;
369             break;
370
371         case OPT_SERIAL:
372             s->serial_desc = optarg;
373             break;
374
375         case OPT_ACCEPT_VCONN:
376             s->accept_controller_re = optarg;
377             break;
378
379         case OPT_NO_RESOLV_CONF:
380             s->update_resolv_conf = false;
381             break;
382
383         case OPT_FAIL_MODE:
384             if (!strcmp(optarg, "open")) {
385                 s->fail_mode = FAIL_OPEN;
386             } else if (!strcmp(optarg, "closed")) {
387                 s->fail_mode = FAIL_CLOSED;
388             } else {
389                 ovs_fatal(0, "--fail argument must be \"open\" or \"closed\"");
390             }
391             break;
392
393         case OPT_INACTIVITY_PROBE:
394             s->probe_interval = atoi(optarg);
395             if (s->probe_interval < 5) {
396                 ovs_fatal(0, "--inactivity-probe argument must be at least 5");
397             }
398             break;
399
400         case OPT_MAX_IDLE:
401             if (!strcmp(optarg, "permanent")) {
402                 s->max_idle = OFP_FLOW_PERMANENT;
403             } else {
404                 s->max_idle = atoi(optarg);
405                 if (s->max_idle < 1 || s->max_idle > 65535) {
406                     ovs_fatal(0, "--max-idle argument must be between 1 and "
407                               "65535 or the word 'permanent'");
408                 }
409             }
410             break;
411
412         case OPT_MAX_BACKOFF:
413             s->max_backoff = atoi(optarg);
414             if (s->max_backoff < 1) {
415                 ovs_fatal(0, "--max-backoff argument must be at least 1");
416             } else if (s->max_backoff > 3600) {
417                 s->max_backoff = 3600;
418             }
419             break;
420
421         case OPT_RATE_LIMIT:
422             if (optarg) {
423                 s->rate_limit = atoi(optarg);
424                 if (s->rate_limit < 1) {
425                     ovs_fatal(0, "--rate-limit argument must be at least 1");
426                 }
427             } else {
428                 s->rate_limit = 1000;
429             }
430             break;
431
432         case OPT_BURST_LIMIT:
433             s->burst_limit = atoi(optarg);
434             if (s->burst_limit < 1) {
435                 ovs_fatal(0, "--burst-limit argument must be at least 1");
436             }
437             break;
438
439         case OPT_STP:
440             s->enable_stp = true;
441             break;
442
443         case OPT_NO_STP:
444             s->enable_stp = false;
445             break;
446
447         case OPT_OUT_OF_BAND:
448             s->in_band = false;
449             break;
450
451         case OPT_IN_BAND:
452             s->in_band = true;
453             break;
454
455         case OPT_COMMAND_ACL:
456             s->command_acl = (s->command_acl[0]
457                               ? xasprintf("%s,%s", s->command_acl, optarg)
458                               : optarg);
459             break;
460
461         case OPT_COMMAND_DIR:
462             s->command_dir = optarg;
463             break;
464
465         case OPT_NETFLOW:
466             svec_add(&s->netflow, optarg);
467             break;
468
469         case OPT_MGMT_ID:
470             if (strlen(optarg) != 12
471                 || strspn(optarg, "0123456789abcdefABCDEF") != 12) {
472                 ovs_fatal(0, "argument to --mgmt-id must be "
473                           "exactly 12 hex digits");
474             }
475             s->mgmt_id = strtoll(optarg, NULL, 16);
476             if (!s->mgmt_id) {
477                 ovs_fatal(0, "argument to --mgmt-id must be nonzero");
478             }
479             break;
480
481         case 'l':
482             svec_add(&s->listeners, optarg);
483             break;
484
485         case OPT_SNOOP:
486             svec_add(&s->snoops, optarg);
487             break;
488
489         case OPT_PORTS:
490             svec_split(&s->ports, optarg, ",");
491             break;
492
493         case 'h':
494             usage();
495
496         case 'V':
497             OVS_PRINT_VERSION(OFP_VERSION, OFP_VERSION);
498             exit(EXIT_SUCCESS);
499
500         DAEMON_OPTION_HANDLERS
501
502         VLOG_OPTION_HANDLERS
503
504         LEAK_CHECKER_OPTION_HANDLERS
505
506 #ifdef HAVE_OPENSSL
507         VCONN_SSL_OPTION_HANDLERS
508
509         case OPT_BOOTSTRAP_CA_CERT:
510             vconn_ssl_set_ca_cert_file(optarg, true);
511             break;
512 #endif
513
514         case '?':
515             exit(EXIT_FAILURE);
516
517         default:
518             abort();
519         }
520     }
521     free(short_options);
522
523     argc -= optind;
524     argv += optind;
525     if (argc < 1 || argc > 2) {
526         ovs_fatal(0, "need one or two non-option arguments; "
527                   "use --help for usage");
528     }
529
530     /* Local and remote vconns. */
531     s->dp_name = argv[0];
532     s->controller_name = argc > 1 ? xstrdup(argv[1]) : NULL;
533
534     /* Set accept_controller_regex. */
535     if (!s->accept_controller_re) {
536         s->accept_controller_re
537             = vconn_ssl_is_configured() ? "^ssl:.*" : "^tcp:.*";
538     }
539
540     /* Mode of operation. */
541     s->discovery = s->controller_name == NULL;
542     if (s->discovery && !s->in_band) {
543         ovs_fatal(0, "Cannot perform discovery with out-of-band control");
544     }
545
546     /* Rate limiting. */
547     if (s->rate_limit && s->rate_limit < 100) {
548         VLOG_WARN("Rate limit set to unusually low value %d", s->rate_limit);
549     }
550 }
551
552 static void
553 usage(void)
554 {
555     printf("%s: an OpenFlow switch implementation.\n"
556            "usage: %s [OPTIONS] DATAPATH [CONTROLLER]\n"
557            "DATAPATH is a local datapath (e.g. \"dp0\").\n"
558            "CONTROLLER is an active OpenFlow connection method; if it is\n"
559            "omitted, then ovs-openflowd performs controller discovery.\n",
560            program_name, program_name);
561     vconn_usage(true, true, true);
562     printf("\nOpenFlow options:\n"
563            "  -d, --datapath-id=ID    Use ID as the OpenFlow switch ID\n"
564            "                          (ID must consist of 12 hex digits)\n"
565            "  --mgmt-id=ID            Use ID as the management ID\n"
566            "                          (ID must consist of 12 hex digits)\n"
567            "  --manufacturer=MFR      Identify manufacturer as MFR\n"
568            "  --hardware=HW           Identify hardware as HW\n"
569            "  --software=SW           Identify software as SW\n"
570            "  --serial=SERIAL         Identify serial number as SERIAL\n"
571            "\nController discovery options:\n"
572            "  --accept-vconn=REGEX    accept matching discovered controllers\n"
573            "  --no-resolv-conf        do not update /etc/resolv.conf\n"
574            "\nNetworking options:\n"
575            "  --fail=open|closed      when controller connection fails:\n"
576            "                            closed: drop all packets\n"
577            "                            open (default): act as learning switch\n"
578            "  --inactivity-probe=SECS time between inactivity probes\n"
579            "  --max-idle=SECS         max idle for flows set up by switch\n"
580            "  --max-backoff=SECS      max time between controller connection\n"
581            "                          attempts (default: 8 seconds)\n"
582            "  -l, --listen=METHOD     allow management connections on METHOD\n"
583            "                          (a passive OpenFlow connection method)\n"
584            "  --snoop=METHOD          allow controller snooping on METHOD\n"
585            "                          (a passive OpenFlow connection method)\n"
586            "  --out-of-band           controller connection is out-of-band\n"
587            "  --netflow=HOST:PORT     configure NetFlow output target\n"
588            "\nRate-limiting of \"packet-in\" messages to the controller:\n"
589            "  --rate-limit[=PACKETS]  max rate, in packets/s (default: 1000)\n"
590            "  --burst-limit=BURST     limit on packet credit for idle time\n"
591            "\nRemote command execution options:\n"
592            "  --command-acl=[!]GLOB[,[!]GLOB...] set allowed/denied commands\n"
593            "  --command-dir=DIR       set command dir (default: %s/commands)\n",
594            ovs_pkgdatadir);
595     daemon_usage();
596     vlog_usage();
597     printf("\nOther options:\n"
598            "  -h, --help              display this help message\n"
599            "  -V, --version           display version information\n");
600     leak_checker_usage();
601     exit(EXIT_SUCCESS);
602 }