Rename struct buffer to struct ofpbuf.
[sliver-openvswitch.git] / secchan / secchan.c
1 /* Copyright (c) 2008 The Board of Trustees of The Leland Stanford
2  * Junior University
3  *
4  * We are making the OpenFlow specification and associated documentation
5  * (Software) available for public use and benefit with the expectation
6  * that others will use, modify and enhance the Software and contribute
7  * those enhancements back to the community. However, since we would
8  * like to make the Software available for broadest use, with as few
9  * restrictions as possible permission is hereby granted, free of
10  * charge, to any person obtaining a copy of this Software to deal in
11  * the Software under the copyrights without restriction, including
12  * without limitation the rights to use, copy, modify, merge, publish,
13  * distribute, sublicense, and/or sell copies of the Software, and to
14  * permit persons to whom the Software is furnished to do so, subject to
15  * the following conditions:
16  *
17  * The above copyright notice and this permission notice shall be
18  * included in all copies or substantial portions of the Software.
19  *
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
24  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
25  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
26  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27  * SOFTWARE.
28  *
29  * The name and trademarks of copyright holder(s) may NOT be used in
30  * advertising or publicity pertaining to the Software or any
31  * derivatives without specific, written prior permission.
32  */
33
34 #include <config.h>
35 #include <assert.h>
36 #include <errno.h>
37 #include <getopt.h>
38 #include <inttypes.h>
39 #include <netinet/in.h>
40 #include <poll.h>
41 #include <regex.h>
42 #include <stdlib.h>
43 #include <signal.h>
44 #include <string.h>
45 #include <time.h>
46 #include <unistd.h>
47
48 #include "command-line.h"
49 #include "compiler.h"
50 #include "daemon.h"
51 #include "dhcp-client.h"
52 #include "dhcp.h"
53 #include "dynamic-string.h"
54 #include "fault.h"
55 #include "flow.h"
56 #include "learning-switch.h"
57 #include "list.h"
58 #include "mac-learning.h"
59 #include "netdev.h"
60 #include "ofpbuf.h"
61 #include "openflow.h"
62 #include "packets.h"
63 #include "poll-loop.h"
64 #include "rconn.h"
65 #include "timeval.h"
66 #include "util.h"
67 #include "vconn-ssl.h"
68 #include "vconn.h"
69 #include "vlog-socket.h"
70
71 #include "vlog.h"
72 #define THIS_MODULE VLM_secchan
73
74 /* Behavior when the connection to the controller fails. */
75 enum fail_mode {
76     FAIL_OPEN,                  /* Act as learning switch. */
77     FAIL_CLOSED                 /* Drop all packets. */
78 };
79
80 /* Maximum number of management connection listeners. */
81 #define MAX_MGMT 8
82
83 /* Settings that may be configured by the user. */
84 struct settings {
85     /* Overall mode of operation. */
86     bool discovery;           /* Discover the controller automatically? */
87     bool in_band;             /* Connect to controller in-band? */
88
89     /* Related vconns and network devices. */
90     const char *nl_name;        /* Local datapath (must be "nl:" vconn). */
91     char *of_name;              /* ofX network device name. */
92     const char *controller_name; /* Controller (if not discovery mode). */
93     const char *listener_names[MAX_MGMT]; /* Listen for mgmt connections. */
94     size_t n_listeners;          /* Number of mgmt connection listeners. */
95
96     /* Failure behavior. */
97     enum fail_mode fail_mode; /* Act as learning switch if no controller? */
98     int max_idle;             /* Idle time for flows in fail-open mode. */
99     int probe_interval;       /* # seconds idle before sending echo request. */
100     int max_backoff;          /* Max # seconds between connection attempts. */
101
102     /* Packet-in rate-limiting. */
103     int rate_limit;           /* Tokens added to bucket per second. */
104     int burst_limit;          /* Maximum number token bucket size. */
105
106     /* Discovery behavior. */
107     regex_t accept_controller_regex;  /* Controller vconns to accept. */
108     const char *accept_controller_re; /* String version of regex. */
109     bool update_resolv_conf;          /* Update /etc/resolv.conf? */
110 };
111
112 struct half {
113     struct rconn *rconn;
114     struct ofpbuf *rxbuf;
115     int n_txq;                  /* No. of packets queued for tx on 'rconn'. */
116 };
117
118 struct relay {
119     struct list node;
120
121 #define HALF_LOCAL 0
122 #define HALF_REMOTE 1
123     struct half halves[2];
124
125     bool is_mgmt_conn;
126 };
127
128 struct hook {
129     bool (*packet_cb)(struct relay *, int half, void *aux);
130     void (*periodic_cb)(void *aux);
131     void (*wait_cb)(void *aux);
132     void *aux;
133 };
134
135 static struct vlog_rate_limit vrl = VLOG_RATE_LIMIT_INIT(60, 60);
136
137 static void parse_options(int argc, char *argv[], struct settings *);
138 static void usage(void) NO_RETURN;
139
140 static struct relay *relay_create(struct rconn *local, struct rconn *remote,
141                                   bool is_mgmt_conn);
142 static struct relay *relay_accept(const struct settings *, struct vconn *);
143 static void relay_run(struct relay *, const struct hook[], size_t n_hooks);
144 static void relay_wait(struct relay *);
145 static void relay_destroy(struct relay *);
146
147 static struct hook make_hook(bool (*packet_cb)(struct relay *, int, void *),
148                              void (*periodic_cb)(void *),
149                              void (*wait_cb)(void *),
150                              void *aux);
151
152 struct switch_status;
153 struct status_reply;
154 static struct hook switch_status_hook_create(const struct settings *,
155                                              struct switch_status **);
156 static void switch_status_register_category(struct switch_status *,
157                                             const char *category,
158                                             void (*cb)(struct status_reply *,
159                                                        void *aux),
160                                             void *aux);
161 static void status_reply_put(struct status_reply *, const char *, ...)
162     PRINTF_FORMAT(2, 3);
163
164 static void rconn_status_cb(struct status_reply *, void *rconn_);
165
166 static struct discovery *discovery_init(const struct settings *,
167                                         struct switch_status *);
168 static void discovery_question_connectivity(struct discovery *);
169 static bool discovery_run(struct discovery *, char **controller_name);
170 static void discovery_wait(struct discovery *);
171
172 static struct hook in_band_hook_create(const struct settings *,
173                                        struct switch_status *,
174                                        struct rconn *remote);
175 static struct hook fail_open_hook_create(const struct settings *,
176                                          struct switch_status *,
177                                          struct rconn *local,
178                                          struct rconn *remote);
179 static struct hook rate_limit_hook_create(const struct settings *,
180                                           struct switch_status *,
181                                           struct rconn *local,
182                                           struct rconn *remote);
183
184
185 static void modify_dhcp_request(struct dhcp_msg *, void *aux);
186 static bool validate_dhcp_offer(const struct dhcp_msg *, void *aux);
187
188 int
189 main(int argc, char *argv[])
190 {
191     struct settings s;
192
193     struct list relays = LIST_INITIALIZER(&relays);
194
195     struct hook hooks[8];
196     size_t n_hooks = 0;
197
198     struct vconn *listeners[MAX_MGMT];
199     size_t n_listeners;
200
201     struct rconn *local_rconn, *remote_rconn;
202     struct relay *controller_relay;
203     struct discovery *discovery;
204     struct switch_status *switch_status;
205     int i;
206     int retval;
207
208     set_program_name(argv[0]);
209     register_fault_handlers();
210     time_init();
211     vlog_init();
212     parse_options(argc, argv, &s);
213     signal(SIGPIPE, SIG_IGN);
214
215     /* Start listening for management connections. */
216     n_listeners = 0;
217     for (i = 0; i < s.n_listeners; i++) {
218         const char *name = s.listener_names[i];
219         struct vconn *listener;
220         retval = vconn_open(name, &listener);
221         if (retval && retval != EAGAIN) {
222             fatal(retval, "opening %s", name);
223         }
224         if (!vconn_is_passive(listener)) {
225             fatal(0, "%s is not a passive vconn", name);
226         }
227         listeners[n_listeners++] = listener;
228     }
229
230     /* Initialize switch status hook. */
231     hooks[n_hooks++] = switch_status_hook_create(&s, &switch_status);
232
233     /* Start controller discovery. */
234     discovery = s.discovery ? discovery_init(&s, switch_status) : NULL;
235
236     /* Start listening for vlogconf requests. */
237     retval = vlog_server_listen(NULL, NULL);
238     if (retval) {
239         fatal(retval, "Could not listen for vlog connections");
240     }
241
242     die_if_already_running();
243     daemonize();
244
245     VLOG_WARN("OpenFlow reference implementation version %s", VERSION);
246     VLOG_WARN("OpenFlow protocol version 0x%02x", OFP_VERSION);
247
248     /* Connect to datapath. */
249     local_rconn = rconn_create(0, s.max_backoff);
250     rconn_connect(local_rconn, s.nl_name);
251     switch_status_register_category(switch_status, "local",
252                                     rconn_status_cb, local_rconn);
253
254     /* Connect to controller. */
255     remote_rconn = rconn_create(s.probe_interval, s.max_backoff);
256     if (s.controller_name) {
257         retval = rconn_connect(remote_rconn, s.controller_name);
258         if (retval == EAFNOSUPPORT) {
259             fatal(0, "No support for %s vconn", s.controller_name);
260         }
261     }
262     switch_status_register_category(switch_status, "remote",
263                                     rconn_status_cb, remote_rconn);
264
265     /* Start relaying. */
266     controller_relay = relay_create(local_rconn, remote_rconn, false);
267     list_push_back(&relays, &controller_relay->node);
268
269     /* Set up hooks. */
270     if (s.in_band) {
271         hooks[n_hooks++] = in_band_hook_create(&s, switch_status,
272                                                remote_rconn);
273     }
274     if (s.fail_mode == FAIL_OPEN) {
275         hooks[n_hooks++] = fail_open_hook_create(&s, switch_status,
276                                                  local_rconn, remote_rconn);
277     }
278     if (s.rate_limit) {
279         hooks[n_hooks++] = rate_limit_hook_create(&s, switch_status,
280                                                   local_rconn, remote_rconn);
281     }
282     assert(n_hooks <= ARRAY_SIZE(hooks));
283
284     for (;;) {
285         struct relay *r, *n;
286         size_t i;
287
288         /* Do work. */
289         LIST_FOR_EACH_SAFE (r, n, struct relay, node, &relays) {
290             relay_run(r, hooks, n_hooks);
291         }
292         for (i = 0; i < n_listeners; i++) {
293             for (;;) {
294                 struct relay *r = relay_accept(&s, listeners[i]);
295                 if (!r) {
296                     break;
297                 }
298                 list_push_back(&relays, &r->node);
299             }
300         }
301         for (i = 0; i < n_hooks; i++) {
302             if (hooks[i].periodic_cb) {
303                 hooks[i].periodic_cb(hooks[i].aux);
304             }
305         }
306         if (s.discovery) {
307             char *controller_name;
308             if (rconn_is_connectivity_questionable(remote_rconn)) {
309                 discovery_question_connectivity(discovery);
310             }
311             if (discovery_run(discovery, &controller_name)) {
312                 if (controller_name) {
313                     rconn_connect(remote_rconn, controller_name);
314                 } else {
315                     rconn_disconnect(remote_rconn);
316                 }
317             }
318         }
319
320         /* Wait for something to happen. */
321         LIST_FOR_EACH (r, struct relay, node, &relays) {
322             relay_wait(r);
323         }
324         for (i = 0; i < n_listeners; i++) {
325             vconn_accept_wait(listeners[i]);
326         }
327         for (i = 0; i < n_hooks; i++) {
328             if (hooks[i].wait_cb) {
329                 hooks[i].wait_cb(hooks[i].aux);
330             }
331         }
332         if (discovery) {
333             discovery_wait(discovery);
334         }
335         poll_block();
336     }
337
338     return 0;
339 }
340
341 static struct hook
342 make_hook(bool (*packet_cb)(struct relay *, int half, void *aux),
343           void (*periodic_cb)(void *aux),
344           void (*wait_cb)(void *aux),
345           void *aux)
346 {
347     struct hook h;
348     h.packet_cb = packet_cb;
349     h.periodic_cb = periodic_cb;
350     h.wait_cb = wait_cb;
351     h.aux = aux;
352     return h;
353 }
354 \f
355 /* OpenFlow message relaying. */
356
357 static struct relay *
358 relay_accept(const struct settings *s, struct vconn *listen_vconn)
359 {
360     struct vconn *new_remote, *new_local;
361     char *nl_name_without_subscription;
362     struct rconn *r1, *r2;
363     int retval;
364
365     retval = vconn_accept(listen_vconn, &new_remote);
366     if (retval) {
367         if (retval != EAGAIN) {
368             VLOG_WARN_RL(&vrl, "accept failed (%s)", strerror(retval));
369         }
370         return NULL;
371     }
372
373     /* nl:123 or nl:123:1 opens a netlink connection to local datapath 123.  We
374      * only accept the former syntax in main().
375      *
376      * nl:123:0 opens a netlink connection to local datapath 123 without
377      * obtaining a subscription for ofp_packet_in or ofp_flow_expired
378      * messages.*/
379     nl_name_without_subscription = xasprintf("%s:0", s->nl_name);
380     retval = vconn_open(nl_name_without_subscription, &new_local);
381     if (retval) {
382         VLOG_ERR_RL(&vrl, "could not connect to %s (%s)",
383                     nl_name_without_subscription, strerror(retval));
384         vconn_close(new_remote);
385         free(nl_name_without_subscription);
386         return NULL;
387     }
388
389     /* Create and return relay. */
390     r1 = rconn_create(0, 0);
391     rconn_connect_unreliably(r1, nl_name_without_subscription, new_local);
392     free(nl_name_without_subscription);
393
394     r2 = rconn_create(0, 0);
395     rconn_connect_unreliably(r2, "passive", new_remote);
396
397     return relay_create(r1, r2, true);
398 }
399
400 static struct relay *
401 relay_create(struct rconn *local, struct rconn *remote, bool is_mgmt_conn)
402 {
403     struct relay *r = xcalloc(1, sizeof *r);
404     r->halves[HALF_LOCAL].rconn = local;
405     r->halves[HALF_REMOTE].rconn = remote;
406     r->is_mgmt_conn = is_mgmt_conn;
407     return r;
408 }
409
410 static void
411 relay_run(struct relay *r, const struct hook hooks[], size_t n_hooks)
412 {
413     int iteration;
414     int i;
415
416     for (i = 0; i < 2; i++) {
417         rconn_run(r->halves[i].rconn);
418     }
419
420     /* Limit the number of iterations to prevent other tasks from starving. */
421     for (iteration = 0; iteration < 50; iteration++) {
422         bool progress = false;
423         for (i = 0; i < 2; i++) {
424             struct half *this = &r->halves[i];
425             struct half *peer = &r->halves[!i];
426
427             if (!this->rxbuf) {
428                 this->rxbuf = rconn_recv(this->rconn);
429                 if (this->rxbuf) {
430                     const struct hook *h;
431                     for (h = hooks; h < &hooks[n_hooks]; h++) {
432                         if (h->packet_cb(r, i, h->aux)) {
433                             ofpbuf_delete(this->rxbuf);
434                             this->rxbuf = NULL;
435                             progress = true;
436                             break;
437                         }
438                     }
439                 }
440             }
441
442             if (this->rxbuf && !this->n_txq) {
443                 int retval = rconn_send(peer->rconn, this->rxbuf,
444                                         &this->n_txq);
445                 if (retval != EAGAIN) {
446                     if (!retval) {
447                         progress = true;
448                     } else {
449                         ofpbuf_delete(this->rxbuf);
450                     }
451                     this->rxbuf = NULL;
452                 }
453             }
454         }
455         if (!progress) {
456             break;
457         }
458     }
459
460     if (r->is_mgmt_conn) {
461         for (i = 0; i < 2; i++) {
462             struct half *this = &r->halves[i];
463             if (!rconn_is_alive(this->rconn)) {
464                 relay_destroy(r);
465                 return;
466             }
467         }
468     }
469 }
470
471 static void
472 relay_wait(struct relay *r)
473 {
474     int i;
475
476     for (i = 0; i < 2; i++) {
477         struct half *this = &r->halves[i];
478
479         rconn_run_wait(this->rconn);
480         if (!this->rxbuf) {
481             rconn_recv_wait(this->rconn);
482         }
483     }
484 }
485
486 static void
487 relay_destroy(struct relay *r)
488 {
489     int i;
490
491     list_remove(&r->node);
492     for (i = 0; i < 2; i++) {
493         struct half *this = &r->halves[i];
494         rconn_destroy(this->rconn);
495         ofpbuf_delete(this->rxbuf);
496     }
497     free(r);
498 }
499 \f
500 /* In-band control. */
501
502 struct in_band_data {
503     const struct settings *s;
504     struct mac_learning *ml;
505     struct netdev *of_device;
506     struct rconn *controller;
507     uint8_t mac[ETH_ADDR_LEN];
508     int n_queued;
509 };
510
511 static void
512 queue_tx(struct rconn *rc, struct in_band_data *in_band, struct ofpbuf *b)
513 {
514     rconn_send_with_limit(rc, b, &in_band->n_queued, 10);
515 }
516
517 static const uint8_t *
518 get_controller_mac(struct in_band_data *in_band)
519 {
520     static uint32_t ip, last_nonzero_ip;
521     static uint8_t mac[ETH_ADDR_LEN], last_nonzero_mac[ETH_ADDR_LEN];
522     static time_t next_refresh = 0;
523
524     uint32_t last_ip = ip;
525
526     time_t now = time_now();
527
528     ip = rconn_get_ip(in_band->controller);
529     if (last_ip != ip || !next_refresh || now >= next_refresh) {
530         bool have_mac;
531
532         /* Look up MAC address. */
533         memset(mac, 0, sizeof mac);
534         if (ip) {
535             int retval = netdev_arp_lookup(in_band->of_device, ip, mac);
536             if (retval) {
537                 VLOG_DBG("cannot look up controller hw address ("IP_FMT"): %s",
538                          IP_ARGS(&ip), strerror(retval));
539             }
540         }
541         have_mac = !eth_addr_is_zero(mac);
542
543         /* Log changes in IP, MAC addresses. */
544         if (ip && ip != last_nonzero_ip) {
545             VLOG_DBG("controller IP address changed from "IP_FMT
546                      " to "IP_FMT, IP_ARGS(&last_nonzero_ip), IP_ARGS(&ip));
547             last_nonzero_ip = ip;
548         }
549         if (have_mac && memcmp(last_nonzero_mac, mac, ETH_ADDR_LEN)) {
550             VLOG_DBG("controller MAC address changed from "ETH_ADDR_FMT" to "
551                      ETH_ADDR_FMT,
552                      ETH_ADDR_ARGS(last_nonzero_mac), ETH_ADDR_ARGS(mac));
553             memcpy(last_nonzero_mac, mac, ETH_ADDR_LEN);
554         }
555
556         /* Schedule next refresh.
557          *
558          * If we have an IP address but not a MAC address, then refresh
559          * quickly, since we probably will get a MAC address soon (via ARP).
560          * Otherwise, we can afford to wait a little while. */
561         next_refresh = now + (!ip || have_mac ? 10 : 1);
562     }
563     return !eth_addr_is_zero(mac) ? mac : NULL;
564 }
565
566 static bool
567 is_controller_mac(const uint8_t dl_addr[ETH_ADDR_LEN],
568                   struct in_band_data *in_band)
569 {
570     const uint8_t *mac = get_controller_mac(in_band);
571     return mac && eth_addr_equals(mac, dl_addr);
572 }
573
574 static bool
575 in_band_packet_cb(struct relay *r, int half, void *in_band_)
576 {
577     struct in_band_data *in_band = in_band_;
578     struct rconn *rc = r->halves[HALF_LOCAL].rconn;
579     struct ofpbuf *msg = r->halves[HALF_LOCAL].rxbuf;
580     struct ofp_packet_in *opi;
581     struct ofp_header *oh;
582     size_t pkt_ofs, pkt_len;
583     struct ofpbuf pkt;
584     struct flow flow;
585     uint16_t in_port, out_port;
586     const uint8_t *controller_mac;
587
588     if (half != HALF_LOCAL || r->is_mgmt_conn) {
589         return false;
590     }
591
592     oh = msg->data;
593     if (oh->type != OFPT_PACKET_IN) {
594         return false;
595     }
596     if (msg->size < offsetof(struct ofp_packet_in, data)) {
597         VLOG_WARN_RL(&vrl, "packet too short (%zu bytes) for packet_in",
598                      msg->size);
599         return false;
600     }
601
602     /* Extract flow data from 'opi' into 'flow'. */
603     opi = msg->data;
604     in_port = ntohs(opi->in_port);
605     pkt_ofs = offsetof(struct ofp_packet_in, data);
606     pkt_len = ntohs(opi->header.length) - pkt_ofs;
607     pkt.data = opi->data;
608     pkt.size = pkt_len;
609     flow_extract(&pkt, in_port, &flow);
610
611     /* Deal with local stuff. */
612     controller_mac = get_controller_mac(in_band);
613     if (in_port == OFPP_LOCAL) {
614         /* Sent by secure channel. */
615         out_port = mac_learning_lookup(in_band->ml, flow.dl_dst);
616     } else if (eth_addr_equals(flow.dl_dst, in_band->mac)) {
617         /* Sent to secure channel. */
618         out_port = OFPP_LOCAL;
619         if (mac_learning_learn(in_band->ml, flow.dl_src, in_port)) {
620             VLOG_DBG_RL(&vrl, "learned that "ETH_ADDR_FMT" is on port %"PRIu16,
621                         ETH_ADDR_ARGS(flow.dl_src), in_port);
622         }
623     } else if (flow.dl_type == htons(ETH_TYPE_ARP)
624                && eth_addr_is_broadcast(flow.dl_dst)
625                && is_controller_mac(flow.dl_src, in_band)) {
626         /* ARP sent by controller. */
627         out_port = OFPP_FLOOD;
628     } else if (is_controller_mac(flow.dl_dst, in_band)) {
629         if (mac_learning_learn(in_band->ml, flow.dl_src, in_port)) {
630             VLOG_DBG_RL(&vrl, "learned that "ETH_ADDR_FMT" is on port %"PRIu16,
631                         ETH_ADDR_ARGS(flow.dl_src), in_port);
632         }
633
634         out_port = mac_learning_lookup(in_band->ml, controller_mac);
635         if (in_port != out_port) {
636             return false;
637         }
638
639         /* This is controller traffic that arrived on the controller port.
640          * It will get dropped below. */
641     } else if (is_controller_mac(flow.dl_src, in_band)) {
642         out_port = mac_learning_lookup(in_band->ml, flow.dl_dst);
643     } else {
644         return false;
645     }
646
647     if (in_port == out_port) {
648         /* The input and output port match.  Set up a flow to drop packets. */
649         queue_tx(rc, in_band, make_add_flow(&flow, ntohl(opi->buffer_id),
650                                           in_band->s->max_idle, 0));
651     } else if (out_port != OFPP_FLOOD) {
652         /* The output port is known, so add a new flow. */
653         queue_tx(rc, in_band,
654                  make_add_simple_flow(&flow, ntohl(opi->buffer_id),
655                                       out_port, in_band->s->max_idle));
656
657         /* If the switch didn't buffer the packet, we need to send a copy. */
658         if (ntohl(opi->buffer_id) == UINT32_MAX) {
659             queue_tx(rc, in_band,
660                      make_unbuffered_packet_out(&pkt, in_port, out_port));
661         }
662     } else {
663         /* We don't know that MAC.  Send along the packet without setting up a
664          * flow. */
665         struct ofpbuf *b;
666         if (ntohl(opi->buffer_id) == UINT32_MAX) {
667             b = make_unbuffered_packet_out(&pkt, in_port, out_port);
668         } else {
669             b = make_buffered_packet_out(ntohl(opi->buffer_id),
670                                          in_port, out_port);
671         }
672         queue_tx(rc, in_band, b);
673     }
674     return true;
675 }
676
677 static void
678 in_band_status_cb(struct status_reply *sr, void *in_band_)
679 {
680     struct in_band_data *in_band = in_band_;
681     struct in_addr local_ip;
682     uint32_t controller_ip;
683     const uint8_t *controller_mac;
684
685     if (netdev_get_in4(in_band->of_device, &local_ip)) {
686         status_reply_put(sr, "local-ip="IP_FMT, IP_ARGS(&local_ip.s_addr));
687     }
688     status_reply_put(sr, "local-mac="ETH_ADDR_FMT,
689                      ETH_ADDR_ARGS(in_band->mac));
690
691     controller_ip = rconn_get_ip(in_band->controller);
692     if (controller_ip) {
693         status_reply_put(sr, "controller-ip="IP_FMT,
694                       IP_ARGS(&controller_ip));
695     }
696     controller_mac = get_controller_mac(in_band);
697     if (controller_mac) {
698         status_reply_put(sr, "controller-mac="ETH_ADDR_FMT,
699                       ETH_ADDR_ARGS(controller_mac));
700     }
701 }
702
703 static struct hook
704 in_band_hook_create(const struct settings *s, struct switch_status *ss,
705                     struct rconn *remote)
706 {
707     struct in_band_data *in_band;
708     int retval;
709
710     in_band = xcalloc(1, sizeof *in_band);
711     in_band->s = s;
712     in_band->ml = mac_learning_create();
713     retval = netdev_open(s->of_name, NETDEV_ETH_TYPE_NONE,
714                          &in_band->of_device);
715     if (retval) {
716         fatal(retval, "Could not open %s device", s->of_name);
717     }
718     memcpy(in_band->mac, netdev_get_etheraddr(in_band->of_device),
719            ETH_ADDR_LEN);
720     in_band->controller = remote;
721     switch_status_register_category(ss, "in-band", in_band_status_cb, in_band);
722     return make_hook(in_band_packet_cb, NULL, NULL, in_band);
723 }
724 \f
725 /* Fail open support. */
726
727 struct fail_open_data {
728     const struct settings *s;
729     struct rconn *local_rconn;
730     struct rconn *remote_rconn;
731     struct lswitch *lswitch;
732     int last_disconn_secs;
733 };
734
735 /* Causes 'r' to enter or leave fail-open mode, if appropriate. */
736 static void
737 fail_open_periodic_cb(void *fail_open_)
738 {
739     struct fail_open_data *fail_open = fail_open_;
740     int disconn_secs;
741     bool open;
742
743     disconn_secs = rconn_disconnected_duration(fail_open->remote_rconn);
744     open = disconn_secs >= fail_open->s->probe_interval * 3;
745     if (open != (fail_open->lswitch != NULL)) {
746         if (!open) {
747             VLOG_WARN("No longer in fail-open mode");
748             lswitch_destroy(fail_open->lswitch);
749             fail_open->lswitch = NULL;
750         } else {
751             VLOG_WARN("Could not connect to controller for %d seconds, "
752                       "failing open", disconn_secs);
753             fail_open->lswitch = lswitch_create(fail_open->local_rconn, true,
754                                                 fail_open->s->max_idle);
755             fail_open->last_disconn_secs = disconn_secs;
756         }
757     } else if (open && disconn_secs > fail_open->last_disconn_secs + 60) {
758         VLOG_WARN("Still in fail-open mode after %d seconds disconnected "
759                   "from controller", disconn_secs);
760         fail_open->last_disconn_secs = disconn_secs;
761     }
762 }
763
764 static bool
765 fail_open_packet_cb(struct relay *r, int half, void *fail_open_)
766 {
767     struct fail_open_data *fail_open = fail_open_;
768     if (half != HALF_LOCAL || r->is_mgmt_conn || !fail_open->lswitch) {
769         return false;
770     } else {
771         lswitch_process_packet(fail_open->lswitch, fail_open->local_rconn,
772                                r->halves[HALF_LOCAL].rxbuf);
773         rconn_run(fail_open->local_rconn);
774         return true;
775     }
776 }
777
778 static void
779 fail_open_status_cb(struct status_reply *sr, void *fail_open_)
780 {
781     struct fail_open_data *fail_open = fail_open_;
782     const struct settings *s = fail_open->s;
783     int trigger_duration = s->probe_interval * 3;
784     int cur_duration = rconn_disconnected_duration(fail_open->remote_rconn);
785
786     status_reply_put(sr, "trigger-duration=%d", trigger_duration);
787     status_reply_put(sr, "current-duration=%d", cur_duration);
788     status_reply_put(sr, "triggered=%s",
789                      cur_duration >= trigger_duration ? "true" : "false");
790     status_reply_put(sr, "max-idle=%d", s->max_idle);
791 }
792
793 static struct hook
794 fail_open_hook_create(const struct settings *s, struct switch_status *ss,
795                       struct rconn *local_rconn, struct rconn *remote_rconn)
796 {
797     struct fail_open_data *fail_open = xmalloc(sizeof *fail_open);
798     fail_open->s = s;
799     fail_open->local_rconn = local_rconn;
800     fail_open->remote_rconn = remote_rconn;
801     fail_open->lswitch = NULL;
802     switch_status_register_category(ss, "fail-open",
803                                     fail_open_status_cb, fail_open);
804     return make_hook(fail_open_packet_cb, fail_open_periodic_cb, NULL,
805                      fail_open);
806 }
807 \f
808 struct rate_limiter {
809     const struct settings *s;
810     struct rconn *remote_rconn;
811
812     /* One queue per physical port. */
813     struct queue queues[OFPP_MAX];
814     int n_queued;               /* Sum over queues[*].n. */
815     int next_tx_port;           /* Next port to check in round-robin. */
816
817     /* Token bucket.
818      *
819      * It costs 1000 tokens to send a single packet_in message.  A single token
820      * per message would be more straightforward, but this choice lets us avoid
821      * round-off error in refill_bucket()'s calculation of how many tokens to
822      * add to the bucket, since no division step is needed. */
823     long long int last_fill;    /* Time at which we last added tokens. */
824     int tokens;                 /* Current number of tokens. */
825
826     /* Transmission queue. */
827     int n_txq;                  /* No. of packets waiting in rconn for tx. */
828
829     /* Statistics reporting. */
830     unsigned long long n_normal;        /* # txed w/o rate limit queuing. */
831     unsigned long long n_limited;       /* # queued for rate limiting. */
832     unsigned long long n_queue_dropped; /* # dropped due to queue overflow. */
833     unsigned long long n_tx_dropped;    /* # dropped due to tx overflow. */
834 };
835
836 /* Drop a packet from the longest queue in 'rl'. */
837 static void
838 drop_packet(struct rate_limiter *rl)
839 {
840     struct queue *longest;      /* Queue currently selected as longest. */
841     int n_longest;              /* # of queues of same length as 'longest'. */
842     struct queue *q;
843
844     longest = &rl->queues[0];
845     n_longest = 1;
846     for (q = &rl->queues[0]; q < &rl->queues[OFPP_MAX]; q++) {
847         if (longest->n < q->n) {
848             longest = q;
849             n_longest = 1;
850         } else if (longest->n == q->n) {
851             n_longest++;
852
853             /* Randomly select one of the longest queues, with a uniform
854              * distribution (Knuth algorithm 3.4.2R). */
855             if (!random_range(n_longest)) {
856                 longest = q;
857             }
858         }
859     }
860
861     /* FIXME: do we want to pop the tail instead? */
862     ofpbuf_delete(queue_pop_head(longest));
863     rl->n_queued--;
864 }
865
866 /* Remove and return the next packet to transmit (in round-robin order). */
867 static struct ofpbuf *
868 dequeue_packet(struct rate_limiter *rl)
869 {
870     unsigned int i;
871
872     for (i = 0; i < OFPP_MAX; i++) {
873         unsigned int port = (rl->next_tx_port + i) % OFPP_MAX;
874         struct queue *q = &rl->queues[port];
875         if (q->n) {
876             rl->next_tx_port = (port + 1) % OFPP_MAX;
877             rl->n_queued--;
878             return queue_pop_head(q);
879         }
880     }
881     NOT_REACHED();
882 }
883
884 /* Add tokens to the bucket based on elapsed time. */
885 static void
886 refill_bucket(struct rate_limiter *rl)
887 {
888     const struct settings *s = rl->s;
889     long long int now = time_msec();
890     long long int tokens = (now - rl->last_fill) * s->rate_limit + rl->tokens;
891     if (tokens >= 1000) {
892         rl->last_fill = now;
893         rl->tokens = MIN(tokens, s->burst_limit * 1000);
894     }
895 }
896
897 /* Attempts to remove enough tokens from 'rl' to transmit a packet.  Returns
898  * true if successful, false otherwise.  (In the latter case no tokens are
899  * removed.) */
900 static bool
901 get_token(struct rate_limiter *rl)
902 {
903     if (rl->tokens >= 1000) {
904         rl->tokens -= 1000;
905         return true;
906     } else {
907         return false;
908     }
909 }
910
911 static bool
912 rate_limit_packet_cb(struct relay *r, int half, void *rl_)
913 {
914     struct rate_limiter *rl = rl_;
915     const struct settings *s = rl->s;
916     struct ofpbuf *msg = r->halves[HALF_LOCAL].rxbuf;
917     struct ofp_header *oh;
918
919     if (half == HALF_REMOTE) {
920         return false;
921     }
922
923     oh = msg->data;
924     if (oh->type != OFPT_PACKET_IN) {
925         return false;
926     }
927     if (msg->size < offsetof(struct ofp_packet_in, data)) {
928         VLOG_WARN_RL(&vrl, "packet too short (%zu bytes) for packet_in",
929                      msg->size);
930         return false;
931     }
932
933     if (!rl->n_queued && get_token(rl)) {
934         /* In the common case where we are not constrained by the rate limit,
935          * let the packet take the normal path. */
936         rl->n_normal++;
937         return false;
938     } else {
939         /* Otherwise queue it up for the periodic callback to drain out. */
940         struct ofp_packet_in *opi = msg->data;
941         int port = ntohs(opi->in_port) % OFPP_MAX;
942         if (rl->n_queued >= s->burst_limit) {
943             drop_packet(rl);
944         }
945         queue_push_tail(&rl->queues[port], ofpbuf_clone(msg));
946         rl->n_queued++;
947         rl->n_limited++;
948         return true;
949     }
950 }
951
952 static void
953 rate_limit_status_cb(struct status_reply *sr, void *rl_)
954 {
955     struct rate_limiter *rl = rl_;
956
957     status_reply_put(sr, "normal=%llu", rl->n_normal);
958     status_reply_put(sr, "limited=%llu", rl->n_limited);
959     status_reply_put(sr, "queue-dropped=%llu", rl->n_queue_dropped);
960     status_reply_put(sr, "tx-dropped=%llu", rl->n_tx_dropped);
961 }
962
963 static void
964 rate_limit_periodic_cb(void *rl_)
965 {
966     struct rate_limiter *rl = rl_;
967     int i;
968
969     /* Drain some packets out of the bucket if possible, but limit the number
970      * of iterations to allow other code to get work done too. */
971     refill_bucket(rl);
972     for (i = 0; rl->n_queued && get_token(rl) && i < 50; i++) {
973         /* Use a small, arbitrary limit for the amount of queuing to do here,
974          * because the TCP connection is responsible for buffering and there is
975          * no point in trying to transmit faster than the TCP connection can
976          * handle. */
977         struct ofpbuf *b = dequeue_packet(rl);
978         if (rconn_send_with_limit(rl->remote_rconn, b, &rl->n_txq, 10)) {
979             rl->n_tx_dropped++;
980         }
981     }
982 }
983
984 static void
985 rate_limit_wait_cb(void *rl_)
986 {
987     struct rate_limiter *rl = rl_;
988     if (rl->n_queued) {
989         if (rl->tokens >= 1000) {
990             /* We can transmit more packets as soon as we're called again. */
991             poll_immediate_wake();
992         } else {
993             /* We have to wait for the bucket to re-fill.  We could calculate
994              * the exact amount of time here for increased smoothness. */
995             poll_timer_wait(TIME_UPDATE_INTERVAL / 2);
996         }
997     }
998 }
999
1000 static struct hook
1001 rate_limit_hook_create(const struct settings *s, struct switch_status *ss,
1002                        struct rconn *local, struct rconn *remote)
1003 {
1004     struct rate_limiter *rl;
1005     size_t i;
1006
1007     rl = xcalloc(1, sizeof *rl);
1008     rl->s = s;
1009     rl->remote_rconn = remote;
1010     for (i = 0; i < ARRAY_SIZE(rl->queues); i++) {
1011         queue_init(&rl->queues[i]);
1012     }
1013     rl->last_fill = time_msec();
1014     rl->tokens = s->rate_limit * 100;
1015     switch_status_register_category(ss, "rate-limit",
1016                                     rate_limit_status_cb, rl);
1017     return make_hook(rate_limit_packet_cb, rate_limit_periodic_cb,
1018                      rate_limit_wait_cb, rl);
1019 }
1020 \f
1021 /* OFPST_SWITCH statistics. */
1022
1023 struct switch_status_category {
1024     char *name;
1025     void (*cb)(struct status_reply *, void *aux);
1026     void *aux;
1027 };
1028
1029 struct switch_status {
1030     const struct settings *s;
1031     time_t booted;
1032     struct switch_status_category categories[8];
1033     int n_categories;
1034 };
1035
1036 struct status_reply {
1037     struct switch_status_category *category;
1038     struct ds request;
1039     struct ds output;
1040 };
1041
1042 static bool
1043 switch_status_packet_cb(struct relay *r, int half, void *ss_)
1044 {
1045     struct switch_status *ss = ss_;
1046     struct rconn *rc = r->halves[HALF_REMOTE].rconn;
1047     struct ofpbuf *msg = r->halves[HALF_REMOTE].rxbuf;
1048     struct switch_status_category *c;
1049     struct ofp_stats_request *osr;
1050     struct ofp_stats_reply *reply;
1051     struct status_reply sr;
1052     struct ofp_header *oh;
1053     struct ofpbuf *b;
1054     int retval;
1055
1056     if (half == HALF_LOCAL) {
1057         return false;
1058     }
1059
1060     oh = msg->data;
1061     if (oh->type != OFPT_STATS_REQUEST) {
1062         return false;
1063     }
1064     if (msg->size < sizeof(struct ofp_stats_request)) {
1065         VLOG_WARN_RL(&vrl, "packet too short (%zu bytes) for stats_request",
1066                      msg->size);
1067         return false;
1068     }
1069
1070     osr = msg->data;
1071     if (osr->type != htons(OFPST_SWITCH)) {
1072         return false;
1073     }
1074
1075     sr.request.string = (void *) (osr + 1);
1076     sr.request.length = msg->size - sizeof *osr;
1077     ds_init(&sr.output);
1078     for (c = ss->categories; c < &ss->categories[ss->n_categories]; c++) {
1079         if (!memcmp(c->name, sr.request.string,
1080                     MIN(strlen(c->name), sr.request.length))) {
1081             sr.category = c;
1082             c->cb(&sr, c->aux);
1083         }
1084     }
1085     reply = make_openflow_xid((offsetof(struct ofp_stats_reply, body)
1086                                + sr.output.length),
1087                               OFPT_STATS_REPLY, osr->header.xid, &b);
1088     reply->type = htons(OFPST_SWITCH);
1089     reply->flags = 0;
1090     memcpy(reply->body, sr.output.string, sr.output.length);
1091     retval = rconn_send(rc, b, NULL);
1092     if (retval && retval != EAGAIN) {
1093         VLOG_WARN("send failed (%s)", strerror(retval));
1094     }
1095     ds_destroy(&sr.output);
1096     return true;
1097 }
1098
1099 static void
1100 rconn_status_cb(struct status_reply *sr, void *rconn_)
1101 {
1102     struct rconn *rconn = rconn_;
1103     time_t now = time_now();
1104
1105     status_reply_put(sr, "name=%s", rconn_get_name(rconn));
1106     status_reply_put(sr, "state=%s", rconn_get_state(rconn));
1107     status_reply_put(sr, "backoff=%d", rconn_get_backoff(rconn));
1108     status_reply_put(sr, "is-connected=%s",
1109                      rconn_is_connected(rconn) ? "true" : "false");
1110     status_reply_put(sr, "sent-msgs=%u", rconn_packets_sent(rconn));
1111     status_reply_put(sr, "received-msgs=%u", rconn_packets_received(rconn));
1112     status_reply_put(sr, "attempted-connections=%u",
1113                      rconn_get_attempted_connections(rconn));
1114     status_reply_put(sr, "successful-connections=%u",
1115                      rconn_get_successful_connections(rconn));
1116     status_reply_put(sr, "last-connection=%ld",
1117                      (long int) (now - rconn_get_last_connection(rconn)));
1118     status_reply_put(sr, "time-connected=%lu",
1119                      rconn_get_total_time_connected(rconn));
1120     status_reply_put(sr, "state-elapsed=%u", rconn_get_state_elapsed(rconn));
1121 }
1122
1123 static void
1124 config_status_cb(struct status_reply *sr, void *s_)
1125 {
1126     const struct settings *s = s_;
1127     size_t i;
1128
1129     for (i = 0; i < s->n_listeners; i++) {
1130         status_reply_put(sr, "management%zu=%s", i, s->listener_names[i]);
1131     }
1132     if (s->probe_interval) {
1133         status_reply_put(sr, "probe-interval=%d", s->probe_interval);
1134     }
1135     if (s->max_backoff) {
1136         status_reply_put(sr, "max-backoff=%d", s->max_backoff);
1137     }
1138 }
1139
1140 static void
1141 switch_status_cb(struct status_reply *sr, void *ss_)
1142 {
1143     struct switch_status *ss = ss_;
1144     time_t now = time_now();
1145
1146     status_reply_put(sr, "now=%ld", (long int) now);
1147     status_reply_put(sr, "uptime=%ld", (long int) (now - ss->booted));
1148     status_reply_put(sr, "pid=%ld", (long int) getpid());
1149 }
1150
1151 static struct hook
1152 switch_status_hook_create(const struct settings *s, struct switch_status **ssp)
1153 {
1154     struct switch_status *ss = xcalloc(1, sizeof *ss);
1155     ss->s = s;
1156     ss->booted = time_now();
1157     switch_status_register_category(ss, "config",
1158                                     config_status_cb, (void *) s);
1159     switch_status_register_category(ss, "switch", switch_status_cb, ss);
1160     *ssp = ss;
1161     return make_hook(switch_status_packet_cb, NULL, NULL, ss);
1162 }
1163
1164 static void
1165 switch_status_register_category(struct switch_status *ss,
1166                                 const char *category,
1167                                 void (*cb)(struct status_reply *,
1168                                            void *aux),
1169                                 void *aux)
1170 {
1171     struct switch_status_category *c;
1172     assert(ss->n_categories < ARRAY_SIZE(ss->categories));
1173     c = &ss->categories[ss->n_categories++];
1174     c->cb = cb;
1175     c->aux = aux;
1176     c->name = xstrdup(category);
1177 }
1178
1179 static void
1180 status_reply_put(struct status_reply *sr, const char *content, ...)
1181 {
1182     size_t old_length = sr->output.length;
1183     size_t added;
1184     va_list args;
1185
1186     /* Append the status reply to the output. */
1187     ds_put_format(&sr->output, "%s.", sr->category->name);
1188     va_start(args, content);
1189     ds_put_format_valist(&sr->output, content, args);
1190     va_end(args);
1191     if (ds_last(&sr->output) != '\n') {
1192         ds_put_char(&sr->output, '\n');
1193     }
1194
1195     /* Drop what we just added if it doesn't match the request. */
1196     added = sr->output.length - old_length;
1197     if (added < sr->request.length
1198         || memcmp(&sr->output.string[old_length],
1199                   sr->request.string, sr->request.length)) {
1200         ds_truncate(&sr->output, old_length);
1201     }
1202 }
1203
1204 \f
1205 /* Controller discovery. */
1206
1207 struct discovery
1208 {
1209     const struct settings *s;
1210     struct dhclient *dhcp;
1211     int n_changes;
1212 };
1213
1214 static void
1215 discovery_status_cb(struct status_reply *sr, void *d_)
1216 {
1217     struct discovery *d = d_;
1218
1219     status_reply_put(sr, "accept-remote=%s", d->s->accept_controller_re);
1220     status_reply_put(sr, "n-changes=%d", d->n_changes);
1221     status_reply_put(sr, "state=%s", dhclient_get_state(d->dhcp));
1222     status_reply_put(sr, "state-elapsed=%u",
1223                      dhclient_get_state_elapsed(d->dhcp));
1224     if (dhclient_is_bound(d->dhcp)) {
1225         uint32_t ip = dhclient_get_ip(d->dhcp);
1226         uint32_t netmask = dhclient_get_netmask(d->dhcp);
1227         uint32_t router = dhclient_get_router(d->dhcp);
1228
1229         const struct dhcp_msg *cfg = dhclient_get_config(d->dhcp);
1230         uint32_t dns_server;
1231         char *domain_name;
1232         int i;
1233
1234         status_reply_put(sr, "ip="IP_FMT, IP_ARGS(&ip));
1235         status_reply_put(sr, "netmask="IP_FMT, IP_ARGS(&netmask));
1236         if (router) {
1237             status_reply_put(sr, "router="IP_FMT, IP_ARGS(&router));
1238         }
1239
1240         for (i = 0; dhcp_msg_get_ip(cfg, DHCP_CODE_DNS_SERVER, i, &dns_server);
1241              i++) {
1242             status_reply_put(sr, "dns%d="IP_FMT, i, IP_ARGS(&dns_server));
1243         }
1244
1245         domain_name = dhcp_msg_get_string(cfg, DHCP_CODE_DOMAIN_NAME);
1246         if (domain_name) {
1247             status_reply_put(sr, "domain=%s", domain_name);
1248             free(domain_name);
1249         }
1250
1251         status_reply_put(sr, "lease-remaining=%u",
1252                          dhclient_get_lease_remaining(d->dhcp));
1253     }
1254 }
1255
1256 static struct discovery *
1257 discovery_init(const struct settings *s, struct switch_status *ss)
1258 {
1259     struct netdev *netdev;
1260     struct discovery *d;
1261     struct dhclient *dhcp;
1262     int retval;
1263
1264     /* Bring ofX network device up. */
1265     retval = netdev_open(s->of_name, NETDEV_ETH_TYPE_NONE, &netdev);
1266     if (retval) {
1267         fatal(retval, "Could not open %s device", s->of_name);
1268     }
1269     retval = netdev_turn_flags_on(netdev, NETDEV_UP, true);
1270     if (retval) {
1271         fatal(retval, "Could not bring %s device up", s->of_name);
1272     }
1273     netdev_close(netdev);
1274
1275     /* Initialize DHCP client. */
1276     retval = dhclient_create(s->of_name, modify_dhcp_request,
1277                              validate_dhcp_offer, (void *) s, &dhcp);
1278     if (retval) {
1279         fatal(retval, "Failed to initialize DHCP client");
1280     }
1281     dhclient_init(dhcp, 0);
1282
1283     d = xmalloc(sizeof *d);
1284     d->s = s;
1285     d->dhcp = dhcp;
1286     d->n_changes = 0;
1287
1288     switch_status_register_category(ss, "discovery", discovery_status_cb, d);
1289
1290     return d;
1291 }
1292
1293 static void
1294 discovery_question_connectivity(struct discovery *d)
1295 {
1296     dhclient_force_renew(d->dhcp, 15);
1297 }
1298
1299 static bool
1300 discovery_run(struct discovery *d, char **controller_name)
1301 {
1302     dhclient_run(d->dhcp);
1303     if (!dhclient_changed(d->dhcp)) {
1304         return false;
1305     }
1306
1307     dhclient_configure_netdev(d->dhcp);
1308     if (d->s->update_resolv_conf) {
1309         dhclient_update_resolv_conf(d->dhcp);
1310     }
1311
1312     if (dhclient_is_bound(d->dhcp)) {
1313         *controller_name = dhcp_msg_get_string(dhclient_get_config(d->dhcp),
1314                                                DHCP_CODE_OFP_CONTROLLER_VCONN);
1315         VLOG_WARN("%s: discovered controller", *controller_name);
1316         d->n_changes++;
1317     } else {
1318         *controller_name = NULL;
1319         if (d->n_changes) {
1320             VLOG_WARN("discovered controller no longer available");
1321             d->n_changes++;
1322         }
1323     }
1324     return true;
1325 }
1326
1327 static void
1328 discovery_wait(struct discovery *d)
1329 {
1330     dhclient_wait(d->dhcp);
1331 }
1332
1333 static void
1334 modify_dhcp_request(struct dhcp_msg *msg, void *aux)
1335 {
1336     dhcp_msg_put_string(msg, DHCP_CODE_VENDOR_CLASS, "OpenFlow");
1337 }
1338
1339 static bool
1340 validate_dhcp_offer(const struct dhcp_msg *msg, void *s_)
1341 {
1342     const struct settings *s = s_;
1343     char *vconn_name;
1344     bool accept;
1345
1346     vconn_name = dhcp_msg_get_string(msg, DHCP_CODE_OFP_CONTROLLER_VCONN);
1347     if (!vconn_name) {
1348         VLOG_WARN_RL(&vrl, "rejecting DHCP offer missing controller vconn");
1349         return false;
1350     }
1351     accept = !regexec(&s->accept_controller_regex, vconn_name, 0, NULL, 0);
1352     if (!accept) {
1353         VLOG_WARN_RL(&vrl, "rejecting controller vconn that fails to match %s",
1354                      s->accept_controller_re);
1355     }
1356     free(vconn_name);
1357     return accept;
1358 }
1359 \f
1360 /* User interface. */
1361
1362 static void
1363 parse_options(int argc, char *argv[], struct settings *s)
1364 {
1365     enum {
1366         OPT_ACCEPT_VCONN = UCHAR_MAX + 1,
1367         OPT_NO_RESOLV_CONF,
1368         OPT_INACTIVITY_PROBE,
1369         OPT_MAX_IDLE,
1370         OPT_MAX_BACKOFF,
1371         OPT_RATE_LIMIT,
1372         OPT_BURST_LIMIT
1373     };
1374     static struct option long_options[] = {
1375         {"accept-vconn", required_argument, 0, OPT_ACCEPT_VCONN},
1376         {"no-resolv-conf", no_argument, 0, OPT_NO_RESOLV_CONF},
1377         {"fail",        required_argument, 0, 'F'},
1378         {"inactivity-probe", required_argument, 0, OPT_INACTIVITY_PROBE},
1379         {"max-idle",    required_argument, 0, OPT_MAX_IDLE},
1380         {"max-backoff", required_argument, 0, OPT_MAX_BACKOFF},
1381         {"listen",      required_argument, 0, 'l'},
1382         {"rate-limit",  optional_argument, 0, OPT_RATE_LIMIT},
1383         {"burst-limit", required_argument, 0, OPT_BURST_LIMIT},
1384         {"detach",      no_argument, 0, 'D'},
1385         {"force",       no_argument, 0, 'f'},
1386         {"pidfile",     optional_argument, 0, 'P'},
1387         {"verbose",     optional_argument, 0, 'v'},
1388         {"help",        no_argument, 0, 'h'},
1389         {"version",     no_argument, 0, 'V'},
1390         VCONN_SSL_LONG_OPTIONS
1391         {0, 0, 0, 0},
1392     };
1393     char *short_options = long_options_to_short_options(long_options);
1394     char *accept_re = NULL;
1395     int retval;
1396
1397     /* Set defaults that we can figure out before parsing options. */
1398     s->n_listeners = 0;
1399     s->fail_mode = FAIL_OPEN;
1400     s->max_idle = 15;
1401     s->probe_interval = 15;
1402     s->max_backoff = 15;
1403     s->update_resolv_conf = true;
1404     s->rate_limit = 0;
1405     s->burst_limit = 0;
1406     for (;;) {
1407         int c;
1408
1409         c = getopt_long(argc, argv, short_options, long_options, NULL);
1410         if (c == -1) {
1411             break;
1412         }
1413
1414         switch (c) {
1415         case OPT_ACCEPT_VCONN:
1416             accept_re = optarg[0] == '^' ? optarg : xasprintf("^%s", optarg);
1417             break;
1418
1419         case OPT_NO_RESOLV_CONF:
1420             s->update_resolv_conf = false;
1421             break;
1422
1423         case 'F':
1424             if (!strcmp(optarg, "open")) {
1425                 s->fail_mode = FAIL_OPEN;
1426             } else if (!strcmp(optarg, "closed")) {
1427                 s->fail_mode = FAIL_CLOSED;
1428             } else {
1429                 fatal(0,
1430                       "-f or --fail argument must be \"open\" or \"closed\"");
1431             }
1432             break;
1433
1434         case OPT_INACTIVITY_PROBE:
1435             s->probe_interval = atoi(optarg);
1436             if (s->probe_interval < 5) {
1437                 fatal(0, "--inactivity-probe argument must be at least 5");
1438             }
1439             break;
1440
1441         case OPT_MAX_IDLE:
1442             if (!strcmp(optarg, "permanent")) {
1443                 s->max_idle = OFP_FLOW_PERMANENT;
1444             } else {
1445                 s->max_idle = atoi(optarg);
1446                 if (s->max_idle < 1 || s->max_idle > 65535) {
1447                     fatal(0, "--max-idle argument must be between 1 and "
1448                           "65535 or the word 'permanent'");
1449                 }
1450             }
1451             break;
1452
1453         case OPT_MAX_BACKOFF:
1454             s->max_backoff = atoi(optarg);
1455             if (s->max_backoff < 1) {
1456                 fatal(0, "--max-backoff argument must be at least 1");
1457             } else if (s->max_backoff > 3600) {
1458                 s->max_backoff = 3600;
1459             }
1460             break;
1461
1462         case OPT_RATE_LIMIT:
1463             if (optarg) {
1464                 s->rate_limit = atoi(optarg);
1465                 if (s->rate_limit < 1) {
1466                     fatal(0, "--rate-limit argument must be at least 1");
1467                 }
1468             } else {
1469                 s->rate_limit = 1000;
1470             }
1471             break;
1472
1473         case OPT_BURST_LIMIT:
1474             s->burst_limit = atoi(optarg);
1475             if (s->burst_limit < 1) {
1476                 fatal(0, "--burst-limit argument must be at least 1");
1477             }
1478             break;
1479
1480         case 'D':
1481             set_detach();
1482             break;
1483
1484         case 'P':
1485             set_pidfile(optarg);
1486             break;
1487
1488         case 'f':
1489             ignore_existing_pidfile();
1490             break;
1491
1492         case 'l':
1493             if (s->n_listeners >= MAX_MGMT) {
1494                 fatal(0, "-l or --listen may be specified at most %d times",
1495                       MAX_MGMT);
1496             }
1497             s->listener_names[s->n_listeners++] = optarg;
1498             break;
1499
1500         case 'h':
1501             usage();
1502
1503         case 'V':
1504             printf("%s "VERSION" compiled "__DATE__" "__TIME__"\n", argv[0]);
1505             exit(EXIT_SUCCESS);
1506
1507         case 'v':
1508             vlog_set_verbosity(optarg);
1509             break;
1510
1511         VCONN_SSL_OPTION_HANDLERS
1512
1513         case '?':
1514             exit(EXIT_FAILURE);
1515
1516         default:
1517             abort();
1518         }
1519     }
1520     free(short_options);
1521
1522     argc -= optind;
1523     argv += optind;
1524     if (argc < 1 || argc > 2) {
1525         fatal(0, "need one or two non-option arguments; use --help for usage");
1526     }
1527
1528     /* Local and remote vconns. */
1529     s->nl_name = argv[0];
1530     if (strncmp(s->nl_name, "nl:", 3)
1531         || strlen(s->nl_name) < 4
1532         || s->nl_name[strspn(s->nl_name + 3, "0123456789") + 3]) {
1533         fatal(0, "%s: argument is not of the form \"nl:DP_IDX\"", s->nl_name);
1534     }
1535     s->of_name = xasprintf("of%s", s->nl_name + 3);
1536     s->controller_name = argc > 1 ? xstrdup(argv[1]) : NULL;
1537
1538     /* Set accept_controller_regex. */
1539     if (!accept_re) {
1540         accept_re = vconn_ssl_is_configured() ? "^ssl:.*" : ".*";
1541     }
1542     retval = regcomp(&s->accept_controller_regex, accept_re,
1543                      REG_NOSUB | REG_EXTENDED);
1544     if (retval) {
1545         size_t length = regerror(retval, &s->accept_controller_regex, NULL, 0);
1546         char *buffer = xmalloc(length);
1547         regerror(retval, &s->accept_controller_regex, buffer, length);
1548         fatal(0, "%s: %s", accept_re, buffer);
1549     }
1550     s->accept_controller_re = accept_re;
1551
1552     /* Mode of operation. */
1553     s->discovery = s->controller_name == NULL;
1554     if (s->discovery) {
1555         s->in_band = true;
1556     } else {
1557         enum netdev_flags flags;
1558         struct netdev *netdev;
1559
1560         retval = netdev_open(s->of_name, NETDEV_ETH_TYPE_NONE, &netdev);
1561         if (retval) {
1562             fatal(retval, "Could not open %s device", s->of_name);
1563         }
1564
1565         retval = netdev_get_flags(netdev, &flags);
1566         if (retval) {
1567             fatal(retval, "Could not get flags for %s device", s->of_name);
1568         }
1569
1570         s->in_band = (flags & NETDEV_UP) != 0;
1571         if (s->in_band && netdev_get_in6(netdev, NULL)) {
1572             VLOG_WARN("Ignoring IPv6 address on %s device: IPv6 not supported",
1573                       s->of_name);
1574         }
1575
1576         netdev_close(netdev);
1577     }
1578
1579     /* Rate limiting. */
1580     if (s->rate_limit) {
1581         if (s->rate_limit < 100) {
1582             VLOG_WARN("Rate limit set to unusually low value %d",
1583                       s->rate_limit);
1584         }
1585         if (!s->burst_limit) {
1586             s->burst_limit = s->rate_limit / 4;
1587         }
1588         s->burst_limit = MAX(s->burst_limit, 1);
1589         s->burst_limit = MIN(s->burst_limit, INT_MAX / 1000);
1590     }
1591 }
1592
1593 static void
1594 usage(void)
1595 {
1596     printf("%s: secure channel, a relay for OpenFlow messages.\n"
1597            "usage: %s [OPTIONS] nl:DP_IDX [CONTROLLER]\n"
1598            "where nl:DP_IDX is a datapath that has been added with dpctl.\n"
1599            "CONTROLLER is an active OpenFlow connection method; if it is\n"
1600            "omitted, then secchan performs controller discovery.\n",
1601            program_name, program_name);
1602     vconn_usage(true, true);
1603     printf("\nController discovery options:\n"
1604            "  --accept-vconn=REGEX    accept matching discovered controllers\n"
1605            "  --no-resolv-conf        do not update /etc/resolv.conf\n"
1606            "\nNetworking options:\n"
1607            "  -F, --fail=open|closed  when controller connection fails:\n"
1608            "                            closed: drop all packets\n"
1609            "                            open (default): act as learning switch\n"
1610            "  --inactivity-probe=SECS time between inactivity probes\n"
1611            "  --max-idle=SECS         max idle for flows set up by secchan\n"
1612            "  --max-backoff=SECS      max time between controller connection\n"
1613            "                          attempts (default: 15 seconds)\n"
1614            "  -l, --listen=METHOD     allow management connections on METHOD\n"
1615            "                          (a passive OpenFlow connection method)\n"
1616            "\nRate-limiting of \"packet-in\" messages to the controller:\n"
1617            "  --rate-limit[=PACKETS]  max rate, in packets/s (default: 1000)\n"
1618            "  --burst-limit=BURST     limit on packet credit for idle time\n"
1619            "\nOther options:\n"
1620            "  -D, --detach            run in background as daemon\n"
1621            "  -P, --pidfile[=FILE]    create pidfile (default: %s/secchan.pid)\n"
1622            "  -f, --force             with -P, start even if already running\n"
1623            "  -v, --verbose=MODULE[:FACILITY[:LEVEL]]  set logging levels\n"
1624            "  -v, --verbose           set maximum verbosity level\n"
1625            "  -h, --help              display this help message\n"
1626            "  -V, --version           display version information\n",
1627            RUNDIR);
1628     exit(EXIT_SUCCESS);
1629 }