2 * Copyright (c) 2009, 2010, 2011 Nicira Networks.
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:
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
25 #include "fail-open.h"
31 #include "poll-loop.h"
40 VLOG_DEFINE_THIS_MODULE(connmgr);
41 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
43 COVERAGE_DEFINE(ofconn_stuck);
45 /* An OpenFlow connection. */
47 struct connmgr *connmgr; /* Connection's manager. */
48 struct list node; /* In struct connmgr's "all_conns" list. */
49 struct rconn *rconn; /* OpenFlow connection. */
50 enum ofconn_type type; /* Type. */
51 enum nx_flow_format flow_format; /* Currently selected flow format. */
52 bool flow_mod_table_id; /* NXT_FLOW_MOD_TABLE_ID enabled? */
54 /* OFPT_PACKET_IN related data. */
55 struct rconn_packet_counter *packet_in_counter; /* # queued on 'rconn'. */
56 #define N_SCHEDULERS 2
57 struct pinsched *schedulers[N_SCHEDULERS];
58 struct pktbuf *pktbuf; /* OpenFlow packet buffers. */
59 int miss_send_len; /* Bytes to send of buffered packets. */
61 /* Number of OpenFlow messages queued on 'rconn' as replies to OpenFlow
62 * requests, and the maximum number before we stop reading OpenFlow
64 #define OFCONN_REPLY_MAX 100
65 struct rconn_packet_counter *reply_counter;
67 /* type == OFCONN_PRIMARY only. */
68 enum nx_role role; /* Role. */
69 struct hmap_node hmap_node; /* In struct connmgr's "controllers" map. */
70 enum ofproto_band band; /* In-band or out-of-band? */
73 static struct ofconn *ofconn_create(struct connmgr *, struct rconn *,
75 static void ofconn_destroy(struct ofconn *);
77 static void ofconn_reconfigure(struct ofconn *,
78 const struct ofproto_controller *);
80 static void ofconn_run(struct ofconn *,
81 void (*handle_openflow)(struct ofconn *,
82 struct ofpbuf *ofp_msg));
83 static void ofconn_wait(struct ofconn *);
85 static const char *ofconn_get_target(const struct ofconn *);
86 static char *ofconn_make_name(const struct connmgr *, const char *target);
88 static void ofconn_set_rate_limit(struct ofconn *, int rate, int burst);
90 static bool ofconn_receives_async_msgs(const struct ofconn *);
92 static void ofconn_send(const struct ofconn *, struct ofpbuf *,
93 struct rconn_packet_counter *);
95 static void do_send_packet_in(struct ofpbuf *, void *ofconn_);
97 /* A listener for incoming OpenFlow "service" connections. */
99 struct hmap_node node; /* In struct connmgr's "services" hmap. */
100 struct pvconn *pvconn; /* OpenFlow connection listener. */
102 /* These are not used by ofservice directly. They are settings for
103 * accepted "struct ofconn"s from the pvconn. */
104 int probe_interval; /* Max idle time before probing, in seconds. */
105 int rate_limit; /* Max packet-in rate in packets per second. */
106 int burst_limit; /* Limit on accumulating packet credits. */
109 static void ofservice_reconfigure(struct ofservice *,
110 const struct ofproto_controller *);
111 static int ofservice_create(struct connmgr *, const char *target);
112 static void ofservice_destroy(struct connmgr *, struct ofservice *);
113 static struct ofservice *ofservice_lookup(struct connmgr *,
116 /* Connection manager for an OpenFlow switch. */
118 struct ofproto *ofproto;
120 char *local_port_name;
122 /* OpenFlow connections. */
123 struct hmap controllers; /* Controller "struct ofconn"s. */
124 struct list all_conns; /* Contains "struct ofconn"s. */
126 /* OpenFlow listeners. */
127 struct hmap services; /* Contains "struct ofservice"s. */
128 struct pvconn **snoops;
132 struct fail_open *fail_open;
133 enum ofproto_fail_mode fail_mode;
135 /* In-band control. */
136 struct in_band *in_band;
137 long long int next_in_band_update;
138 struct sockaddr_in *extra_in_band_remotes;
139 size_t n_extra_remotes;
143 static void update_in_band_remotes(struct connmgr *);
144 static void add_snooper(struct connmgr *, struct vconn *);
146 /* Creates and returns a new connection manager owned by 'ofproto'. 'name' is
147 * a name for the ofproto suitable for using in log messages.
148 * 'local_port_name' is the name of the local port (OFPP_LOCAL) within
151 connmgr_create(struct ofproto *ofproto,
152 const char *name, const char *local_port_name)
156 mgr = xmalloc(sizeof *mgr);
157 mgr->ofproto = ofproto;
158 mgr->name = xstrdup(name);
159 mgr->local_port_name = xstrdup(local_port_name);
161 hmap_init(&mgr->controllers);
162 list_init(&mgr->all_conns);
164 hmap_init(&mgr->services);
168 mgr->fail_open = NULL;
169 mgr->fail_mode = OFPROTO_FAIL_SECURE;
172 mgr->next_in_band_update = LLONG_MAX;
173 mgr->extra_in_band_remotes = NULL;
174 mgr->n_extra_remotes = 0;
175 mgr->in_band_queue = -1;
180 /* Frees 'mgr' and all of its resources. */
182 connmgr_destroy(struct connmgr *mgr)
184 struct ofservice *ofservice, *next_ofservice;
185 struct ofconn *ofconn, *next_ofconn;
192 LIST_FOR_EACH_SAFE (ofconn, next_ofconn, node, &mgr->all_conns) {
193 ofconn_destroy(ofconn);
195 hmap_destroy(&mgr->controllers);
197 HMAP_FOR_EACH_SAFE (ofservice, next_ofservice, node, &mgr->services) {
198 ofservice_destroy(mgr, ofservice);
200 hmap_destroy(&mgr->services);
202 for (i = 0; i < mgr->n_snoops; i++) {
203 pvconn_close(mgr->snoops[i]);
207 fail_open_destroy(mgr->fail_open);
208 mgr->fail_open = NULL;
210 in_band_destroy(mgr->in_band);
212 free(mgr->extra_in_band_remotes);
214 free(mgr->local_port_name);
219 /* Does all of the periodic maintenance required by 'mgr'. Calls
220 * 'handle_openflow' for each message received on an OpenFlow connection,
221 * passing along the OpenFlow connection itself and the message that was sent.
222 * The 'handle_openflow' callback must not free the message. */
224 connmgr_run(struct connmgr *mgr,
225 void (*handle_openflow)(struct ofconn *, struct ofpbuf *ofp_msg))
227 struct ofconn *ofconn, *next_ofconn;
228 struct ofservice *ofservice;
232 if (time_msec() >= mgr->next_in_band_update) {
233 update_in_band_remotes(mgr);
235 in_band_run(mgr->in_band);
238 LIST_FOR_EACH_SAFE (ofconn, next_ofconn, node, &mgr->all_conns) {
239 ofconn_run(ofconn, handle_openflow);
242 /* Fail-open maintenance. Do this after processing the ofconns since
243 * fail-open checks the status of the controller rconn. */
244 if (mgr->fail_open) {
245 fail_open_run(mgr->fail_open);
248 HMAP_FOR_EACH (ofservice, node, &mgr->services) {
252 retval = pvconn_accept(ofservice->pvconn, OFP_VERSION, &vconn);
257 rconn = rconn_create(ofservice->probe_interval, 0);
258 name = ofconn_make_name(mgr, vconn_get_name(vconn));
259 rconn_connect_unreliably(rconn, vconn, name);
262 ofconn = ofconn_create(mgr, rconn, OFCONN_SERVICE);
263 ofconn_set_rate_limit(ofconn, ofservice->rate_limit,
264 ofservice->burst_limit);
265 } else if (retval != EAGAIN) {
266 VLOG_WARN_RL(&rl, "accept failed (%s)", strerror(retval));
270 for (i = 0; i < mgr->n_snoops; i++) {
274 retval = pvconn_accept(mgr->snoops[i], OFP_VERSION, &vconn);
276 add_snooper(mgr, vconn);
277 } else if (retval != EAGAIN) {
278 VLOG_WARN_RL(&rl, "accept failed (%s)", strerror(retval));
283 /* Causes the poll loop to wake up when connmgr_run() needs to run. */
285 connmgr_wait(struct connmgr *mgr)
287 struct ofservice *ofservice;
288 struct ofconn *ofconn;
291 LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
295 poll_timer_wait_until(mgr->next_in_band_update);
296 in_band_wait(mgr->in_band);
298 if (mgr->fail_open) {
299 fail_open_wait(mgr->fail_open);
301 HMAP_FOR_EACH (ofservice, node, &mgr->services) {
302 pvconn_wait(ofservice->pvconn);
304 for (i = 0; i < mgr->n_snoops; i++) {
305 pvconn_wait(mgr->snoops[i]);
309 /* Returns the ofproto that owns 'ofconn''s connmgr. */
311 ofconn_get_ofproto(const struct ofconn *ofconn)
313 return ofconn->connmgr->ofproto;
316 /* OpenFlow configuration. */
318 static void add_controller(struct connmgr *, const char *target);
319 static struct ofconn *find_controller_by_target(struct connmgr *,
321 static void update_fail_open(struct connmgr *);
322 static int set_pvconns(struct pvconn ***pvconnsp, size_t *n_pvconnsp,
323 const struct sset *);
325 /* Returns true if 'mgr' has any configured primary controllers.
327 * Service controllers do not count, but configured primary controllers do
328 * count whether or not they are currently connected. */
330 connmgr_has_controllers(const struct connmgr *mgr)
332 return !hmap_is_empty(&mgr->controllers);
335 /* Initializes 'info' and populates it with information about each configured
336 * primary controller. The keys in 'info' are the controllers' targets; the
337 * data values are corresponding "struct ofproto_controller_info".
339 * The caller owns 'info' and everything in it and should free it when it is no
342 connmgr_get_controller_info(struct connmgr *mgr, struct shash *info)
344 const struct ofconn *ofconn;
348 HMAP_FOR_EACH (ofconn, hmap_node, &mgr->controllers) {
349 const struct rconn *rconn = ofconn->rconn;
350 time_t now = time_now();
351 time_t last_connection = rconn_get_last_connection(rconn);
352 time_t last_disconnect = rconn_get_last_disconnect(rconn);
353 int last_error = rconn_get_last_error(rconn);
354 struct ofproto_controller_info *cinfo = xmalloc(sizeof *cinfo);
356 shash_add(info, rconn_get_target(rconn), cinfo);
358 cinfo->is_connected = rconn_is_connected(rconn);
359 cinfo->role = ofconn->role;
364 cinfo->pairs.keys[cinfo->pairs.n] = "last_error";
365 cinfo->pairs.values[cinfo->pairs.n++] =
366 xstrdup(ovs_retval_to_string(last_error));
369 cinfo->pairs.keys[cinfo->pairs.n] = "state";
370 cinfo->pairs.values[cinfo->pairs.n++] =
371 xstrdup(rconn_get_state(rconn));
373 if (last_connection != TIME_MIN) {
374 cinfo->pairs.keys[cinfo->pairs.n] = "sec_since_connect";
375 cinfo->pairs.values[cinfo->pairs.n++]
376 = xasprintf("%ld", (long int) (now - last_connection));
379 if (last_disconnect != TIME_MIN) {
380 cinfo->pairs.keys[cinfo->pairs.n] = "sec_since_disconnect";
381 cinfo->pairs.values[cinfo->pairs.n++]
382 = xasprintf("%ld", (long int) (now - last_disconnect));
387 /* Changes 'mgr''s set of controllers to the 'n_controllers' controllers in
390 connmgr_set_controllers(struct connmgr *mgr,
391 const struct ofproto_controller *controllers,
392 size_t n_controllers)
394 bool had_controllers = connmgr_has_controllers(mgr);
395 struct shash new_controllers;
396 struct ofconn *ofconn, *next_ofconn;
397 struct ofservice *ofservice, *next_ofservice;
400 /* Create newly configured controllers and services.
401 * Create a name to ofproto_controller mapping in 'new_controllers'. */
402 shash_init(&new_controllers);
403 for (i = 0; i < n_controllers; i++) {
404 const struct ofproto_controller *c = &controllers[i];
406 if (!vconn_verify_name(c->target)) {
407 if (!find_controller_by_target(mgr, c->target)) {
408 add_controller(mgr, c->target);
410 } else if (!pvconn_verify_name(c->target)) {
411 if (!ofservice_lookup(mgr, c->target)) {
412 ofservice_create(mgr, c->target);
415 VLOG_WARN_RL(&rl, "%s: unsupported controller \"%s\"",
416 mgr->name, c->target);
420 shash_add_once(&new_controllers, c->target, &controllers[i]);
423 /* Delete controllers that are no longer configured.
424 * Update configuration of all now-existing controllers. */
425 HMAP_FOR_EACH_SAFE (ofconn, next_ofconn, hmap_node, &mgr->controllers) {
426 struct ofproto_controller *c;
428 c = shash_find_data(&new_controllers, ofconn_get_target(ofconn));
430 ofconn_destroy(ofconn);
432 ofconn_reconfigure(ofconn, c);
436 /* Delete services that are no longer configured.
437 * Update configuration of all now-existing services. */
438 HMAP_FOR_EACH_SAFE (ofservice, next_ofservice, node, &mgr->services) {
439 struct ofproto_controller *c;
441 c = shash_find_data(&new_controllers,
442 pvconn_get_name(ofservice->pvconn));
444 ofservice_destroy(mgr, ofservice);
446 ofservice_reconfigure(ofservice, c);
450 shash_destroy(&new_controllers);
452 update_in_band_remotes(mgr);
453 update_fail_open(mgr);
454 if (had_controllers != connmgr_has_controllers(mgr)) {
455 ofproto_flush_flows(mgr->ofproto);
459 /* Drops the connections between 'mgr' and all of its primary and secondary
460 * controllers, forcing them to reconnect. */
462 connmgr_reconnect(const struct connmgr *mgr)
464 struct ofconn *ofconn;
466 LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
467 rconn_reconnect(ofconn->rconn);
471 /* Sets the "snoops" for 'mgr' to the pvconn targets listed in 'snoops'.
473 * A "snoop" is a pvconn to which every OpenFlow message to or from the most
474 * important controller on 'mgr' is mirrored. */
476 connmgr_set_snoops(struct connmgr *mgr, const struct sset *snoops)
478 return set_pvconns(&mgr->snoops, &mgr->n_snoops, snoops);
481 /* Adds each of the snoops currently configured on 'mgr' to 'snoops'. */
483 connmgr_get_snoops(const struct connmgr *mgr, struct sset *snoops)
487 for (i = 0; i < mgr->n_snoops; i++) {
488 sset_add(snoops, pvconn_get_name(mgr->snoops[i]));
492 /* Returns true if 'mgr' has at least one snoop, false if it has none. */
494 connmgr_has_snoops(const struct connmgr *mgr)
496 return mgr->n_snoops > 0;
499 /* Creates a new controller for 'target' in 'mgr'. update_controller() needs
500 * to be called later to finish the new ofconn's configuration. */
502 add_controller(struct connmgr *mgr, const char *target)
504 char *name = ofconn_make_name(mgr, target);
505 struct ofconn *ofconn;
507 ofconn = ofconn_create(mgr, rconn_create(5, 8), OFCONN_PRIMARY);
508 ofconn->pktbuf = pktbuf_create();
509 ofconn->miss_send_len = OFP_DEFAULT_MISS_SEND_LEN;
510 rconn_connect(ofconn->rconn, target, name);
511 hmap_insert(&mgr->controllers, &ofconn->hmap_node, hash_string(target, 0));
516 static struct ofconn *
517 find_controller_by_target(struct connmgr *mgr, const char *target)
519 struct ofconn *ofconn;
521 HMAP_FOR_EACH_WITH_HASH (ofconn, hmap_node,
522 hash_string(target, 0), &mgr->controllers) {
523 if (!strcmp(ofconn_get_target(ofconn), target)) {
531 update_in_band_remotes(struct connmgr *mgr)
533 struct sockaddr_in *addrs;
534 size_t max_addrs, n_addrs;
535 struct ofconn *ofconn;
538 /* Allocate enough memory for as many remotes as we could possibly have. */
539 max_addrs = mgr->n_extra_remotes + hmap_count(&mgr->controllers);
540 addrs = xmalloc(max_addrs * sizeof *addrs);
543 /* Add all the remotes. */
544 HMAP_FOR_EACH (ofconn, hmap_node, &mgr->controllers) {
545 struct sockaddr_in *sin = &addrs[n_addrs];
547 if (ofconn->band == OFPROTO_OUT_OF_BAND) {
551 sin->sin_addr.s_addr = rconn_get_remote_ip(ofconn->rconn);
552 if (sin->sin_addr.s_addr) {
553 sin->sin_port = rconn_get_remote_port(ofconn->rconn);
557 for (i = 0; i < mgr->n_extra_remotes; i++) {
558 addrs[n_addrs++] = mgr->extra_in_band_remotes[i];
561 /* Create or update or destroy in-band. */
564 in_band_create(mgr->ofproto, mgr->local_port_name, &mgr->in_band);
567 in_band_set_remotes(mgr->in_band, addrs, n_addrs);
569 in_band_set_queue(mgr->in_band, mgr->in_band_queue);
570 mgr->next_in_band_update = time_msec() + 1000;
572 in_band_destroy(mgr->in_band);
581 update_fail_open(struct connmgr *mgr)
583 if (connmgr_has_controllers(mgr)
584 && mgr->fail_mode == OFPROTO_FAIL_STANDALONE) {
585 if (!mgr->fail_open) {
586 mgr->fail_open = fail_open_create(mgr->ofproto, mgr);
589 fail_open_destroy(mgr->fail_open);
590 mgr->fail_open = NULL;
595 set_pvconns(struct pvconn ***pvconnsp, size_t *n_pvconnsp,
596 const struct sset *sset)
598 struct pvconn **pvconns = *pvconnsp;
599 size_t n_pvconns = *n_pvconnsp;
604 for (i = 0; i < n_pvconns; i++) {
605 pvconn_close(pvconns[i]);
609 pvconns = xmalloc(sset_count(sset) * sizeof *pvconns);
611 SSET_FOR_EACH (name, sset) {
612 struct pvconn *pvconn;
615 error = pvconn_open(name, &pvconn);
617 pvconns[n_pvconns++] = pvconn;
619 VLOG_ERR("failed to listen on %s: %s", name, strerror(error));
627 *n_pvconnsp = n_pvconns;
632 /* Returns a "preference level" for snooping 'ofconn'. A higher return value
633 * means that 'ofconn' is more interesting for monitoring than a lower return
636 snoop_preference(const struct ofconn *ofconn)
638 switch (ofconn->role) {
646 /* Shouldn't happen. */
651 /* One of 'mgr''s "snoop" pvconns has accepted a new connection on 'vconn'.
652 * Connects this vconn to a controller. */
654 add_snooper(struct connmgr *mgr, struct vconn *vconn)
656 struct ofconn *ofconn, *best;
658 /* Pick a controller for monitoring. */
660 LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
661 if (ofconn->type == OFCONN_PRIMARY
662 && (!best || snoop_preference(ofconn) > snoop_preference(best))) {
668 rconn_add_monitor(best->rconn, vconn);
670 VLOG_INFO_RL(&rl, "no controller connection to snoop");
675 /* Public ofconn functions. */
677 /* Returns the connection type, either OFCONN_PRIMARY or OFCONN_SERVICE. */
679 ofconn_get_type(const struct ofconn *ofconn)
684 /* Returns the role configured for 'ofconn'.
686 * The default role, if no other role has been set, is NX_ROLE_OTHER. */
688 ofconn_get_role(const struct ofconn *ofconn)
693 /* Changes 'ofconn''s role to 'role'. If 'role' is NX_ROLE_MASTER then any
694 * existing master is demoted to a slave. */
696 ofconn_set_role(struct ofconn *ofconn, enum nx_role role)
698 if (role == NX_ROLE_MASTER) {
699 struct ofconn *other;
701 HMAP_FOR_EACH (other, hmap_node, &ofconn->connmgr->controllers) {
702 if (other->role == NX_ROLE_MASTER) {
703 other->role = NX_ROLE_SLAVE;
710 /* Returns the currently configured flow format for 'ofconn', one of NXFF_*.
712 * The default, if no other format has been set, is NXFF_OPENFLOW10. */
714 ofconn_get_flow_format(struct ofconn *ofconn)
716 return ofconn->flow_format;
719 /* Sets the flow format for 'ofconn' to 'flow_format' (one of NXFF_*). */
721 ofconn_set_flow_format(struct ofconn *ofconn, enum nx_flow_format flow_format)
723 ofconn->flow_format = flow_format;
726 /* Returns true if the NXT_FLOW_MOD_TABLE_ID extension is enabled, false
729 * By default the extension is not enabled. */
731 ofconn_get_flow_mod_table_id(const struct ofconn *ofconn)
733 return ofconn->flow_mod_table_id;
736 /* Enables or disables (according to 'enable') the NXT_FLOW_MOD_TABLE_ID
737 * extension on 'ofconn'. */
739 ofconn_set_flow_mod_table_id(struct ofconn *ofconn, bool enable)
741 ofconn->flow_mod_table_id = enable;
744 /* Returns the default miss send length for 'ofconn'. */
746 ofconn_get_miss_send_len(const struct ofconn *ofconn)
748 return ofconn->miss_send_len;
751 /* Sets the default miss send length for 'ofconn' to 'miss_send_len'. */
753 ofconn_set_miss_send_len(struct ofconn *ofconn, int miss_send_len)
755 ofconn->miss_send_len = miss_send_len;
758 /* Sends 'msg' on 'ofconn', accounting it as a reply. (If there is a
759 * sufficient number of OpenFlow replies in-flight on a single ofconn, then the
760 * connmgr will stop accepting new OpenFlow requests on that ofconn until the
761 * controller has accepted some of the replies.) */
763 ofconn_send_reply(const struct ofconn *ofconn, struct ofpbuf *msg)
765 ofconn_send(ofconn, msg, ofconn->reply_counter);
768 /* Same as pktbuf_retrieve(), using the pktbuf owned by 'ofconn'. */
770 ofconn_pktbuf_retrieve(struct ofconn *ofconn, uint32_t id,
771 struct ofpbuf **bufferp, uint16_t *in_port)
773 return pktbuf_retrieve(ofconn->pktbuf, id, bufferp, in_port);
776 /* Private ofconn functions. */
779 ofconn_get_target(const struct ofconn *ofconn)
781 return rconn_get_target(ofconn->rconn);
784 static struct ofconn *
785 ofconn_create(struct connmgr *mgr, struct rconn *rconn, enum ofconn_type type)
787 struct ofconn *ofconn = xzalloc(sizeof *ofconn);
788 ofconn->connmgr = mgr;
789 list_push_back(&mgr->all_conns, &ofconn->node);
790 ofconn->rconn = rconn;
792 ofconn->flow_format = NXFF_OPENFLOW10;
793 ofconn->flow_mod_table_id = false;
794 ofconn->role = NX_ROLE_OTHER;
795 ofconn->packet_in_counter = rconn_packet_counter_create ();
796 ofconn->pktbuf = NULL;
797 ofconn->miss_send_len = 0;
798 ofconn->reply_counter = rconn_packet_counter_create ();
803 ofconn_destroy(struct ofconn *ofconn)
805 if (ofconn->type == OFCONN_PRIMARY) {
806 hmap_remove(&ofconn->connmgr->controllers, &ofconn->hmap_node);
809 list_remove(&ofconn->node);
810 rconn_destroy(ofconn->rconn);
811 rconn_packet_counter_destroy(ofconn->packet_in_counter);
812 rconn_packet_counter_destroy(ofconn->reply_counter);
813 pktbuf_destroy(ofconn->pktbuf);
817 /* Reconfigures 'ofconn' to match 'c'. 'ofconn' and 'c' must have the same
820 ofconn_reconfigure(struct ofconn *ofconn, const struct ofproto_controller *c)
824 ofconn->band = c->band;
826 rconn_set_max_backoff(ofconn->rconn, c->max_backoff);
828 probe_interval = c->probe_interval ? MAX(c->probe_interval, 5) : 0;
829 rconn_set_probe_interval(ofconn->rconn, probe_interval);
831 ofconn_set_rate_limit(ofconn, c->rate_limit, c->burst_limit);
835 ofconn_run(struct ofconn *ofconn,
836 void (*handle_openflow)(struct ofconn *, struct ofpbuf *ofp_msg))
838 struct connmgr *mgr = ofconn->connmgr;
842 for (i = 0; i < N_SCHEDULERS; i++) {
843 pinsched_run(ofconn->schedulers[i], do_send_packet_in, ofconn);
846 rconn_run(ofconn->rconn);
848 if (rconn_packet_counter_read (ofconn->reply_counter) < OFCONN_REPLY_MAX) {
849 /* Limit the number of iterations to prevent other tasks from
851 for (iteration = 0; iteration < 50; iteration++) {
852 struct ofpbuf *of_msg = rconn_recv(ofconn->rconn);
856 if (mgr->fail_open) {
857 fail_open_maybe_recover(mgr->fail_open);
859 handle_openflow(ofconn, of_msg);
860 ofpbuf_delete(of_msg);
864 if (!rconn_is_alive(ofconn->rconn)) {
865 ofconn_destroy(ofconn);
870 ofconn_wait(struct ofconn *ofconn)
874 for (i = 0; i < N_SCHEDULERS; i++) {
875 pinsched_wait(ofconn->schedulers[i]);
877 rconn_run_wait(ofconn->rconn);
878 if (rconn_packet_counter_read (ofconn->reply_counter) < OFCONN_REPLY_MAX) {
879 rconn_recv_wait(ofconn->rconn);
881 COVERAGE_INC(ofconn_stuck);
885 /* Returns true if 'ofconn' should receive asynchronous messages. */
887 ofconn_receives_async_msgs(const struct ofconn *ofconn)
889 if (!rconn_is_connected(ofconn->rconn)) {
891 } else if (ofconn->type == OFCONN_PRIMARY) {
892 /* Primary controllers always get asynchronous messages unless they
893 * have configured themselves as "slaves". */
894 return ofconn->role != NX_ROLE_SLAVE;
896 /* Service connections don't get asynchronous messages unless they have
897 * explicitly asked for them by setting a nonzero miss send length. */
898 return ofconn->miss_send_len > 0;
902 /* Returns a human-readable name for an OpenFlow connection between 'mgr' and
903 * 'target', suitable for use in log messages for identifying the connection.
905 * The name is dynamically allocated. The caller should free it (with free())
906 * when it is no longer needed. */
908 ofconn_make_name(const struct connmgr *mgr, const char *target)
910 return xasprintf("%s<->%s", mgr->name, target);
914 ofconn_set_rate_limit(struct ofconn *ofconn, int rate, int burst)
918 for (i = 0; i < N_SCHEDULERS; i++) {
919 struct pinsched **s = &ofconn->schedulers[i];
923 *s = pinsched_create(rate, burst);
925 pinsched_set_limits(*s, rate, burst);
928 pinsched_destroy(*s);
935 ofconn_send(const struct ofconn *ofconn, struct ofpbuf *msg,
936 struct rconn_packet_counter *counter)
938 update_openflow_length(msg);
939 if (rconn_send(ofconn->rconn, msg, counter)) {
944 /* Sending asynchronous messages. */
946 static void schedule_packet_in(struct ofconn *, struct ofputil_packet_in,
947 const struct flow *, struct ofpbuf *rw_packet);
949 /* Sends an OFPT_PORT_STATUS message with 'opp' and 'reason' to appropriate
950 * controllers managed by 'mgr'. */
952 connmgr_send_port_status(struct connmgr *mgr, const struct ofp_phy_port *opp,
955 /* XXX Should limit the number of queued port status change messages. */
956 struct ofconn *ofconn;
958 LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
959 struct ofp_port_status *ops;
962 /* Primary controllers, even slaves, should always get port status
963 updates. Otherwise obey ofconn_receives_async_msgs(). */
964 if (ofconn->type != OFCONN_PRIMARY
965 && !ofconn_receives_async_msgs(ofconn)) {
969 ops = make_openflow_xid(sizeof *ops, OFPT_PORT_STATUS, 0, &b);
970 ops->reason = reason;
972 ofconn_send(ofconn, b, NULL);
976 /* Sends an OFPT_FLOW_REMOVED or NXT_FLOW_REMOVED message based on 'fr' to
977 * appropriate controllers managed by 'mgr'. */
979 connmgr_send_flow_removed(struct connmgr *mgr,
980 const struct ofputil_flow_removed *fr)
982 struct ofconn *ofconn;
984 LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
987 if (!ofconn_receives_async_msgs(ofconn)) {
991 /* Account flow expirations as replies to OpenFlow requests. That
992 * works because preventing OpenFlow requests from being processed also
993 * prevents new flows from being added (and expiring). (It also
994 * prevents processing OpenFlow requests that would not add new flows,
995 * so it is imperfect.) */
996 msg = ofputil_encode_flow_removed(fr, ofconn->flow_format);
997 ofconn_send_reply(ofconn, msg);
1001 /* Given 'pin', sends an OFPT_PACKET_IN message to each OpenFlow controller as
1002 * necessary according to their individual configurations.
1004 * 'rw_packet' may be NULL. Otherwise, 'rw_packet' must contain the same data
1005 * as pin->packet. (rw_packet == pin->packet is also valid.) Ownership of
1006 * 'rw_packet' is transferred to this function. */
1008 connmgr_send_packet_in(struct connmgr *mgr,
1009 const struct ofputil_packet_in *pin,
1010 const struct flow *flow, struct ofpbuf *rw_packet)
1012 struct ofconn *ofconn, *prev;
1015 LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
1016 if (ofconn_receives_async_msgs(ofconn)) {
1018 schedule_packet_in(prev, *pin, flow, NULL);
1024 schedule_packet_in(prev, *pin, flow, rw_packet);
1026 ofpbuf_delete(rw_packet);
1030 /* pinsched callback for sending 'ofp_packet_in' on 'ofconn'. */
1032 do_send_packet_in(struct ofpbuf *ofp_packet_in, void *ofconn_)
1034 struct ofconn *ofconn = ofconn_;
1036 rconn_send_with_limit(ofconn->rconn, ofp_packet_in,
1037 ofconn->packet_in_counter, 100);
1040 /* Takes 'pin', whose packet has the flow specified by 'flow', composes an
1041 * OpenFlow packet-in message from it, and passes it to 'ofconn''s packet
1042 * scheduler for sending.
1044 * 'rw_packet' may be NULL. Otherwise, 'rw_packet' must contain the same data
1045 * as pin->packet. (rw_packet == pin->packet is also valid.) Ownership of
1046 * 'rw_packet' is transferred to this function. */
1048 schedule_packet_in(struct ofconn *ofconn, struct ofputil_packet_in pin,
1049 const struct flow *flow, struct ofpbuf *rw_packet)
1051 struct connmgr *mgr = ofconn->connmgr;
1053 /* Get OpenFlow buffer_id. */
1054 if (pin.reason == OFPR_ACTION) {
1055 pin.buffer_id = UINT32_MAX;
1056 } else if (mgr->fail_open && fail_open_is_active(mgr->fail_open)) {
1057 pin.buffer_id = pktbuf_get_null();
1058 } else if (!ofconn->pktbuf) {
1059 pin.buffer_id = UINT32_MAX;
1061 pin.buffer_id = pktbuf_save(ofconn->pktbuf, pin.packet, flow->in_port);
1064 /* Figure out how much of the packet to send. */
1065 if (pin.reason == OFPR_NO_MATCH) {
1066 pin.send_len = pin.packet->size;
1068 /* Caller should have initialized 'send_len' to 'max_len' specified in
1069 * struct ofp_action_output. */
1071 if (pin.buffer_id != UINT32_MAX) {
1072 pin.send_len = MIN(pin.send_len, ofconn->miss_send_len);
1075 /* Make OFPT_PACKET_IN and hand over to packet scheduler. It might
1076 * immediately call into do_send_packet_in() or it might buffer it for a
1077 * while (until a later call to pinsched_run()). */
1078 pinsched_send(ofconn->schedulers[pin.reason == OFPR_NO_MATCH ? 0 : 1],
1079 flow->in_port, ofputil_encode_packet_in(&pin, rw_packet),
1080 do_send_packet_in, ofconn);
1083 /* Fail-open settings. */
1085 /* Returns the failure handling mode (OFPROTO_FAIL_SECURE or
1086 * OFPROTO_FAIL_STANDALONE) for 'mgr'. */
1087 enum ofproto_fail_mode
1088 connmgr_get_fail_mode(const struct connmgr *mgr)
1090 return mgr->fail_mode;
1093 /* Sets the failure handling mode for 'mgr' to 'fail_mode' (either
1094 * OFPROTO_FAIL_SECURE or OFPROTO_FAIL_STANDALONE). */
1096 connmgr_set_fail_mode(struct connmgr *mgr, enum ofproto_fail_mode fail_mode)
1098 if (mgr->fail_mode != fail_mode) {
1099 mgr->fail_mode = fail_mode;
1100 update_fail_open(mgr);
1101 if (!connmgr_has_controllers(mgr)) {
1102 ofproto_flush_flows(mgr->ofproto);
1107 /* Fail-open implementation. */
1109 /* Returns the longest probe interval among the primary controllers configured
1110 * on 'mgr'. Returns 0 if there are no primary controllers. */
1112 connmgr_get_max_probe_interval(const struct connmgr *mgr)
1114 const struct ofconn *ofconn;
1115 int max_probe_interval;
1117 max_probe_interval = 0;
1118 HMAP_FOR_EACH (ofconn, hmap_node, &mgr->controllers) {
1119 int probe_interval = rconn_get_probe_interval(ofconn->rconn);
1120 max_probe_interval = MAX(max_probe_interval, probe_interval);
1122 return max_probe_interval;
1125 /* Returns the number of seconds for which all of 'mgr's primary controllers
1126 * have been disconnected. Returns 0 if 'mgr' has no primary controllers. */
1128 connmgr_failure_duration(const struct connmgr *mgr)
1130 const struct ofconn *ofconn;
1131 int min_failure_duration;
1133 if (!connmgr_has_controllers(mgr)) {
1137 min_failure_duration = INT_MAX;
1138 HMAP_FOR_EACH (ofconn, hmap_node, &mgr->controllers) {
1139 int failure_duration = rconn_failure_duration(ofconn->rconn);
1140 min_failure_duration = MIN(min_failure_duration, failure_duration);
1142 return min_failure_duration;
1145 /* Returns true if at least one primary controller is connected (regardless of
1146 * whether those controllers are believed to have authenticated and accepted
1147 * this switch), false if none of them are connected. */
1149 connmgr_is_any_controller_connected(const struct connmgr *mgr)
1151 const struct ofconn *ofconn;
1153 HMAP_FOR_EACH (ofconn, hmap_node, &mgr->controllers) {
1154 if (rconn_is_connected(ofconn->rconn)) {
1161 /* Returns true if at least one primary controller is believed to have
1162 * authenticated and accepted this switch, false otherwise. */
1164 connmgr_is_any_controller_admitted(const struct connmgr *mgr)
1166 const struct ofconn *ofconn;
1168 HMAP_FOR_EACH (ofconn, hmap_node, &mgr->controllers) {
1169 if (rconn_is_admitted(ofconn->rconn)) {
1176 /* Sends 'packet' to each controller connected to 'mgr'. Takes ownership of
1179 connmgr_broadcast(struct connmgr *mgr, struct ofpbuf *packet)
1181 struct ofconn *ofconn, *prev;
1184 LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
1186 ofconn_send_reply(ofconn, ofpbuf_clone(packet));
1188 if (rconn_is_connected(ofconn->rconn)) {
1193 ofconn_send_reply(prev, packet);
1195 ofpbuf_delete(packet);
1199 /* In-band configuration. */
1201 static bool any_extras_changed(const struct connmgr *,
1202 const struct sockaddr_in *extras, size_t n);
1204 /* Sets the 'n' TCP port addresses in 'extras' as ones to which 'mgr''s
1205 * in-band control should guarantee access, in the same way that in-band
1206 * control guarantees access to OpenFlow controllers. */
1208 connmgr_set_extra_in_band_remotes(struct connmgr *mgr,
1209 const struct sockaddr_in *extras, size_t n)
1211 if (!any_extras_changed(mgr, extras, n)) {
1215 free(mgr->extra_in_band_remotes);
1216 mgr->n_extra_remotes = n;
1217 mgr->extra_in_band_remotes = xmemdup(extras, n * sizeof *extras);
1219 update_in_band_remotes(mgr);
1222 /* Sets the OpenFlow queue used by flows set up by in-band control on
1223 * 'mgr' to 'queue_id'. If 'queue_id' is negative, then in-band control
1224 * flows will use the default queue. */
1226 connmgr_set_in_band_queue(struct connmgr *mgr, int queue_id)
1228 if (queue_id != mgr->in_band_queue) {
1229 mgr->in_band_queue = queue_id;
1230 update_in_band_remotes(mgr);
1235 any_extras_changed(const struct connmgr *mgr,
1236 const struct sockaddr_in *extras, size_t n)
1240 if (n != mgr->n_extra_remotes) {
1244 for (i = 0; i < n; i++) {
1245 const struct sockaddr_in *old = &mgr->extra_in_band_remotes[i];
1246 const struct sockaddr_in *new = &extras[i];
1248 if (old->sin_addr.s_addr != new->sin_addr.s_addr ||
1249 old->sin_port != new->sin_port) {
1257 /* In-band implementation. */
1260 connmgr_msg_in_hook(struct connmgr *mgr, const struct flow *flow,
1261 const struct ofpbuf *packet)
1263 return mgr->in_band && in_band_msg_in_hook(mgr->in_band, flow, packet);
1267 connmgr_may_set_up_flow(struct connmgr *mgr, const struct flow *flow,
1268 const struct nlattr *odp_actions,
1271 return !mgr->in_band || in_band_rule_check(flow, odp_actions, actions_len);
1274 /* Fail-open and in-band implementation. */
1276 /* Called by 'ofproto' after all flows have been flushed, to allow fail-open
1277 * and in-band control to re-create their flows. */
1279 connmgr_flushed(struct connmgr *mgr)
1282 in_band_flushed(mgr->in_band);
1284 if (mgr->fail_open) {
1285 fail_open_flushed(mgr->fail_open);
1288 /* If there are no controllers and we're in standalone mode, set up a flow
1289 * that matches every packet and directs them to OFPP_NORMAL (which goes to
1290 * us). Otherwise, the switch is in secure mode and we won't pass any
1291 * traffic until a controller has been defined and it tells us to do so. */
1292 if (!connmgr_has_controllers(mgr)
1293 && mgr->fail_mode == OFPROTO_FAIL_STANDALONE) {
1294 union ofp_action action;
1295 struct cls_rule rule;
1297 memset(&action, 0, sizeof action);
1298 action.type = htons(OFPAT_OUTPUT);
1299 action.output.len = htons(sizeof action);
1300 action.output.port = htons(OFPP_NORMAL);
1301 cls_rule_init_catchall(&rule, 0);
1302 ofproto_add_flow(mgr->ofproto, &rule, &action, 1);
1306 /* Creates a new ofservice for 'target' in 'mgr'. Returns 0 if successful,
1307 * otherwise a positive errno value.
1309 * ofservice_reconfigure() must be called to fully configure the new
1312 ofservice_create(struct connmgr *mgr, const char *target)
1314 struct ofservice *ofservice;
1315 struct pvconn *pvconn;
1318 error = pvconn_open(target, &pvconn);
1323 ofservice = xzalloc(sizeof *ofservice);
1324 hmap_insert(&mgr->services, &ofservice->node, hash_string(target, 0));
1325 ofservice->pvconn = pvconn;
1331 ofservice_destroy(struct connmgr *mgr, struct ofservice *ofservice)
1333 hmap_remove(&mgr->services, &ofservice->node);
1334 pvconn_close(ofservice->pvconn);
1339 ofservice_reconfigure(struct ofservice *ofservice,
1340 const struct ofproto_controller *c)
1342 ofservice->probe_interval = c->probe_interval;
1343 ofservice->rate_limit = c->rate_limit;
1344 ofservice->burst_limit = c->burst_limit;
1347 /* Finds and returns the ofservice within 'mgr' that has the given
1348 * 'target', or a null pointer if none exists. */
1349 static struct ofservice *
1350 ofservice_lookup(struct connmgr *mgr, const char *target)
1352 struct ofservice *ofservice;
1354 HMAP_FOR_EACH_WITH_HASH (ofservice, node, hash_string(target, 0),
1356 if (!strcmp(pvconn_get_name(ofservice->pvconn), target)) {