2 * Copyright (c) 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc.
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"
28 #include "ofp-actions.h"
32 #include "ofproto-provider.h"
34 #include "poll-loop.h"
44 VLOG_DEFINE_THIS_MODULE(connmgr);
45 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
47 /* An OpenFlow connection.
53 * 'ofproto_mutex' must be held whenever an ofconn is created or destroyed or,
54 * more or less equivalently, whenever an ofconn is added to or removed from a
55 * connmgr. 'ofproto_mutex' doesn't protect the data inside the ofconn, except
56 * as specifically noted below. */
58 /* Configuration that persists from one connection to the next. */
60 struct list node; /* In struct connmgr's "all_conns" list. */
61 struct hmap_node hmap_node; /* In struct connmgr's "controllers" map. */
63 struct connmgr *connmgr; /* Connection's manager. */
64 struct rconn *rconn; /* OpenFlow connection. */
65 enum ofconn_type type; /* Type. */
66 enum ofproto_band band; /* In-band or out-of-band? */
67 bool enable_async_msgs; /* Initially enable async messages? */
69 /* State that should be cleared from one connection to the next. */
72 enum ofp12_controller_role role; /* Role. */
73 enum ofputil_protocol protocol; /* Current protocol variant. */
74 enum nx_packet_in_format packet_in_format; /* OFPT_PACKET_IN format. */
76 /* Asynchronous flow table operation support. */
77 struct list opgroups; /* Contains pending "ofopgroups", if any. */
78 struct ofpbuf *blocked; /* Postponed OpenFlow message, if any. */
79 bool retry; /* True if 'blocked' is ready to try again. */
81 /* OFPT_PACKET_IN related data. */
82 struct rconn_packet_counter *packet_in_counter; /* # queued on 'rconn'. */
83 #define N_SCHEDULERS 2
84 struct pinsched *schedulers[N_SCHEDULERS];
85 struct pktbuf *pktbuf; /* OpenFlow packet buffers. */
86 int miss_send_len; /* Bytes to send of buffered packets. */
87 uint16_t controller_id; /* Connection controller ID. */
89 /* Number of OpenFlow messages queued on 'rconn' as replies to OpenFlow
90 * requests, and the maximum number before we stop reading OpenFlow
92 #define OFCONN_REPLY_MAX 100
93 struct rconn_packet_counter *reply_counter;
95 /* Asynchronous message configuration in each possible roles.
97 * A 1-bit enables sending an asynchronous message for one possible reason
98 * that the message might be generated, a 0-bit disables it. */
99 uint32_t master_async_config[OAM_N_TYPES]; /* master, other */
100 uint32_t slave_async_config[OAM_N_TYPES]; /* slave */
102 /* Flow monitors (e.g. NXST_FLOW_MONITOR). */
104 /* Configuration. Contains "struct ofmonitor"s. */
105 struct hmap monitors OVS_GUARDED_BY(ofproto_mutex);
109 * When too many flow monitor notifications back up in the transmit buffer,
110 * we pause the transmission of further notifications. These members track
111 * the flow control state.
113 * When notifications are flowing, 'monitor_paused' is 0. When
114 * notifications are paused, 'monitor_paused' is the value of
115 * 'monitor_seqno' at the point we paused.
117 * 'monitor_counter' counts the OpenFlow messages and bytes currently in
118 * flight. This value growing too large triggers pausing. */
119 uint64_t monitor_paused OVS_GUARDED_BY(ofproto_mutex);
120 struct rconn_packet_counter *monitor_counter OVS_GUARDED_BY(ofproto_mutex);
122 /* State of monitors for a single ongoing flow_mod.
124 * 'updates' is a list of "struct ofpbuf"s that contain
125 * NXST_FLOW_MONITOR_REPLY messages representing the changes made by the
128 * When 'updates' is nonempty, 'sent_abbrev_update' is true if 'updates'
129 * contains an update event of type NXFME_ABBREV and false otherwise.. */
130 struct list updates OVS_GUARDED_BY(ofproto_mutex);
131 bool sent_abbrev_update OVS_GUARDED_BY(ofproto_mutex);
134 static struct ofconn *ofconn_create(struct connmgr *, struct rconn *,
135 enum ofconn_type, bool enable_async_msgs)
136 OVS_REQUIRES(ofproto_mutex);
137 static void ofconn_destroy(struct ofconn *) OVS_REQUIRES(ofproto_mutex);
138 static void ofconn_flush(struct ofconn *) OVS_REQUIRES(ofproto_mutex);
140 static void ofconn_reconfigure(struct ofconn *,
141 const struct ofproto_controller *);
143 static void ofconn_run(struct ofconn *,
144 bool (*handle_openflow)(struct ofconn *,
145 const struct ofpbuf *ofp_msg));
146 static void ofconn_wait(struct ofconn *, bool handling_openflow);
148 static const char *ofconn_get_target(const struct ofconn *);
149 static char *ofconn_make_name(const struct connmgr *, const char *target);
151 static void ofconn_set_rate_limit(struct ofconn *, int rate, int burst);
153 static void ofconn_send(const struct ofconn *, struct ofpbuf *,
154 struct rconn_packet_counter *);
156 static void do_send_packet_ins(struct ofconn *, struct list *txq);
158 /* A listener for incoming OpenFlow "service" connections. */
160 struct hmap_node node; /* In struct connmgr's "services" hmap. */
161 struct pvconn *pvconn; /* OpenFlow connection listener. */
163 /* These are not used by ofservice directly. They are settings for
164 * accepted "struct ofconn"s from the pvconn. */
165 int probe_interval; /* Max idle time before probing, in seconds. */
166 int rate_limit; /* Max packet-in rate in packets per second. */
167 int burst_limit; /* Limit on accumulating packet credits. */
168 bool enable_async_msgs; /* Initially enable async messages? */
169 uint8_t dscp; /* DSCP Value for controller connection */
170 uint32_t allowed_versions; /* OpenFlow protocol versions that may
171 * be negotiated for a session. */
174 static void ofservice_reconfigure(struct ofservice *,
175 const struct ofproto_controller *);
176 static int ofservice_create(struct connmgr *mgr, const char *target,
177 uint32_t allowed_versions, uint8_t dscp);
178 static void ofservice_destroy(struct connmgr *, struct ofservice *);
179 static struct ofservice *ofservice_lookup(struct connmgr *,
182 /* Connection manager for an OpenFlow switch. */
184 struct ofproto *ofproto;
186 char *local_port_name;
188 /* OpenFlow connections. */
189 struct hmap controllers; /* Controller "struct ofconn"s. */
190 struct list all_conns; /* Contains "struct ofconn"s. */
191 uint64_t master_election_id; /* monotonically increasing sequence number
192 * for master election */
193 bool master_election_id_defined;
195 /* OpenFlow listeners. */
196 struct hmap services; /* Contains "struct ofservice"s. */
197 struct pvconn **snoops;
201 struct fail_open *fail_open;
202 enum ofproto_fail_mode fail_mode;
204 /* In-band control. */
205 struct in_band *in_band;
206 struct sockaddr_in *extra_in_band_remotes;
207 size_t n_extra_remotes;
211 static void update_in_band_remotes(struct connmgr *);
212 static void add_snooper(struct connmgr *, struct vconn *);
213 static void ofmonitor_run(struct connmgr *);
214 static void ofmonitor_wait(struct connmgr *);
216 /* Creates and returns a new connection manager owned by 'ofproto'. 'name' is
217 * a name for the ofproto suitable for using in log messages.
218 * 'local_port_name' is the name of the local port (OFPP_LOCAL) within
221 connmgr_create(struct ofproto *ofproto,
222 const char *name, const char *local_port_name)
226 mgr = xmalloc(sizeof *mgr);
227 mgr->ofproto = ofproto;
228 mgr->name = xstrdup(name);
229 mgr->local_port_name = xstrdup(local_port_name);
231 hmap_init(&mgr->controllers);
232 list_init(&mgr->all_conns);
233 mgr->master_election_id = 0;
234 mgr->master_election_id_defined = false;
236 hmap_init(&mgr->services);
240 mgr->fail_open = NULL;
241 mgr->fail_mode = OFPROTO_FAIL_SECURE;
244 mgr->extra_in_band_remotes = NULL;
245 mgr->n_extra_remotes = 0;
246 mgr->in_band_queue = -1;
251 /* Frees 'mgr' and all of its resources. */
253 connmgr_destroy(struct connmgr *mgr)
255 struct ofservice *ofservice, *next_ofservice;
256 struct ofconn *ofconn, *next_ofconn;
263 ovs_mutex_lock(&ofproto_mutex);
264 LIST_FOR_EACH_SAFE (ofconn, next_ofconn, node, &mgr->all_conns) {
265 ofconn_destroy(ofconn);
267 ovs_mutex_unlock(&ofproto_mutex);
269 hmap_destroy(&mgr->controllers);
271 HMAP_FOR_EACH_SAFE (ofservice, next_ofservice, node, &mgr->services) {
272 ofservice_destroy(mgr, ofservice);
274 hmap_destroy(&mgr->services);
276 for (i = 0; i < mgr->n_snoops; i++) {
277 pvconn_close(mgr->snoops[i]);
281 fail_open_destroy(mgr->fail_open);
282 mgr->fail_open = NULL;
284 in_band_destroy(mgr->in_band);
286 free(mgr->extra_in_band_remotes);
288 free(mgr->local_port_name);
293 /* Does all of the periodic maintenance required by 'mgr'.
295 * If 'handle_openflow' is nonnull, calls 'handle_openflow' for each message
296 * received on an OpenFlow connection, passing along the OpenFlow connection
297 * itself and the message that was sent. If 'handle_openflow' returns true,
298 * the message is considered to be fully processed. If 'handle_openflow'
299 * returns false, the message is considered not to have been processed at all;
300 * it will be stored and re-presented to 'handle_openflow' following the next
301 * call to connmgr_retry(). 'handle_openflow' must not modify or free the
304 * If 'handle_openflow' is NULL, no OpenFlow messages will be processed and
305 * other activities that could affect the flow table (in-band processing,
306 * fail-open processing) are suppressed too. */
308 connmgr_run(struct connmgr *mgr,
309 bool (*handle_openflow)(struct ofconn *,
310 const struct ofpbuf *ofp_msg))
311 OVS_EXCLUDED(ofproto_mutex)
313 struct ofconn *ofconn, *next_ofconn;
314 struct ofservice *ofservice;
317 if (handle_openflow && mgr->in_band) {
318 if (!in_band_run(mgr->in_band)) {
319 in_band_destroy(mgr->in_band);
324 LIST_FOR_EACH_SAFE (ofconn, next_ofconn, node, &mgr->all_conns) {
325 ofconn_run(ofconn, handle_openflow);
329 /* Fail-open maintenance. Do this after processing the ofconns since
330 * fail-open checks the status of the controller rconn. */
331 if (handle_openflow && mgr->fail_open) {
332 fail_open_run(mgr->fail_open);
335 HMAP_FOR_EACH (ofservice, node, &mgr->services) {
339 retval = pvconn_accept(ofservice->pvconn, &vconn);
344 /* Passing default value for creation of the rconn */
345 rconn = rconn_create(ofservice->probe_interval, 0, ofservice->dscp,
346 vconn_get_allowed_versions(vconn));
347 name = ofconn_make_name(mgr, vconn_get_name(vconn));
348 rconn_connect_unreliably(rconn, vconn, name);
351 ovs_mutex_lock(&ofproto_mutex);
352 ofconn = ofconn_create(mgr, rconn, OFCONN_SERVICE,
353 ofservice->enable_async_msgs);
354 ovs_mutex_unlock(&ofproto_mutex);
356 ofconn_set_rate_limit(ofconn, ofservice->rate_limit,
357 ofservice->burst_limit);
358 } else if (retval != EAGAIN) {
359 VLOG_WARN_RL(&rl, "accept failed (%s)", ovs_strerror(retval));
363 for (i = 0; i < mgr->n_snoops; i++) {
367 retval = pvconn_accept(mgr->snoops[i], &vconn);
369 add_snooper(mgr, vconn);
370 } else if (retval != EAGAIN) {
371 VLOG_WARN_RL(&rl, "accept failed (%s)", ovs_strerror(retval));
376 /* Causes the poll loop to wake up when connmgr_run() needs to run.
378 * If 'handling_openflow' is true, arriving OpenFlow messages and other
379 * activities that affect the flow table will wake up the poll loop. If
380 * 'handling_openflow' is false, they will not. */
382 connmgr_wait(struct connmgr *mgr, bool handling_openflow)
384 struct ofservice *ofservice;
385 struct ofconn *ofconn;
388 LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
389 ofconn_wait(ofconn, handling_openflow);
392 if (handling_openflow && mgr->in_band) {
393 in_band_wait(mgr->in_band);
395 if (handling_openflow && mgr->fail_open) {
396 fail_open_wait(mgr->fail_open);
398 HMAP_FOR_EACH (ofservice, node, &mgr->services) {
399 pvconn_wait(ofservice->pvconn);
401 for (i = 0; i < mgr->n_snoops; i++) {
402 pvconn_wait(mgr->snoops[i]);
406 /* Adds some memory usage statistics for 'mgr' into 'usage', for use with
407 * memory_report(). */
409 connmgr_get_memory_usage(const struct connmgr *mgr, struct simap *usage)
411 const struct ofconn *ofconn;
412 unsigned int packets = 0;
413 unsigned int ofconns = 0;
415 LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
420 packets += rconn_count_txqlen(ofconn->rconn);
421 for (i = 0; i < N_SCHEDULERS; i++) {
422 packets += pinsched_count_txqlen(ofconn->schedulers[i]);
424 packets += pktbuf_count_packets(ofconn->pktbuf);
426 simap_increase(usage, "ofconns", ofconns);
427 simap_increase(usage, "packets", packets);
430 /* Returns the ofproto that owns 'ofconn''s connmgr. */
432 ofconn_get_ofproto(const struct ofconn *ofconn)
434 return ofconn->connmgr->ofproto;
437 /* If processing of OpenFlow messages was blocked on any 'mgr' ofconns by
438 * returning false to the 'handle_openflow' callback to connmgr_run(), this
439 * re-enables them. */
441 connmgr_retry(struct connmgr *mgr)
443 struct ofconn *ofconn;
445 LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
446 ofconn->retry = true;
450 /* OpenFlow configuration. */
452 static void add_controller(struct connmgr *, const char *target, uint8_t dscp,
453 uint32_t allowed_versions)
454 OVS_REQUIRES(ofproto_mutex);
455 static struct ofconn *find_controller_by_target(struct connmgr *,
457 static void update_fail_open(struct connmgr *) OVS_EXCLUDED(ofproto_mutex);
458 static int set_pvconns(struct pvconn ***pvconnsp, size_t *n_pvconnsp,
459 const struct sset *);
461 /* Returns true if 'mgr' has any configured primary controllers.
463 * Service controllers do not count, but configured primary controllers do
464 * count whether or not they are currently connected. */
466 connmgr_has_controllers(const struct connmgr *mgr)
468 return !hmap_is_empty(&mgr->controllers);
471 /* Initializes 'info' and populates it with information about each configured
472 * primary controller. The keys in 'info' are the controllers' targets; the
473 * data values are corresponding "struct ofproto_controller_info".
475 * The caller owns 'info' and everything in it and should free it when it is no
478 connmgr_get_controller_info(struct connmgr *mgr, struct shash *info)
480 const struct ofconn *ofconn;
482 HMAP_FOR_EACH (ofconn, hmap_node, &mgr->controllers) {
483 const struct rconn *rconn = ofconn->rconn;
484 const char *target = rconn_get_target(rconn);
486 if (!shash_find(info, target)) {
487 struct ofproto_controller_info *cinfo = xmalloc(sizeof *cinfo);
488 time_t now = time_now();
489 time_t last_connection = rconn_get_last_connection(rconn);
490 time_t last_disconnect = rconn_get_last_disconnect(rconn);
491 int last_error = rconn_get_last_error(rconn);
493 shash_add(info, target, cinfo);
495 cinfo->is_connected = rconn_is_connected(rconn);
496 cinfo->role = ofconn->role;
501 cinfo->pairs.keys[cinfo->pairs.n] = "last_error";
502 cinfo->pairs.values[cinfo->pairs.n++]
503 = xstrdup(ovs_retval_to_string(last_error));
506 cinfo->pairs.keys[cinfo->pairs.n] = "state";
507 cinfo->pairs.values[cinfo->pairs.n++]
508 = xstrdup(rconn_get_state(rconn));
510 if (last_connection != TIME_MIN) {
511 cinfo->pairs.keys[cinfo->pairs.n] = "sec_since_connect";
512 cinfo->pairs.values[cinfo->pairs.n++]
513 = xasprintf("%ld", (long int) (now - last_connection));
516 if (last_disconnect != TIME_MIN) {
517 cinfo->pairs.keys[cinfo->pairs.n] = "sec_since_disconnect";
518 cinfo->pairs.values[cinfo->pairs.n++]
519 = xasprintf("%ld", (long int) (now - last_disconnect));
526 connmgr_free_controller_info(struct shash *info)
528 struct shash_node *node;
530 SHASH_FOR_EACH (node, info) {
531 struct ofproto_controller_info *cinfo = node->data;
532 while (cinfo->pairs.n) {
533 free(CONST_CAST(char *, cinfo->pairs.values[--cinfo->pairs.n]));
540 /* Changes 'mgr''s set of controllers to the 'n_controllers' controllers in
543 connmgr_set_controllers(struct connmgr *mgr,
544 const struct ofproto_controller *controllers,
545 size_t n_controllers, uint32_t allowed_versions)
546 OVS_EXCLUDED(ofproto_mutex)
548 bool had_controllers = connmgr_has_controllers(mgr);
549 struct shash new_controllers;
550 struct ofconn *ofconn, *next_ofconn;
551 struct ofservice *ofservice, *next_ofservice;
554 /* Required to add and remove ofconns. This could probably be narrowed to
555 * cover a smaller amount of code, if that yielded some benefit. */
556 ovs_mutex_lock(&ofproto_mutex);
558 /* Create newly configured controllers and services.
559 * Create a name to ofproto_controller mapping in 'new_controllers'. */
560 shash_init(&new_controllers);
561 for (i = 0; i < n_controllers; i++) {
562 const struct ofproto_controller *c = &controllers[i];
564 if (!vconn_verify_name(c->target)) {
566 ofconn = find_controller_by_target(mgr, c->target);
568 VLOG_INFO("%s: added primary controller \"%s\"",
569 mgr->name, c->target);
571 } else if (rconn_get_allowed_versions(ofconn->rconn) !=
573 VLOG_INFO("%s: re-added primary controller \"%s\"",
574 mgr->name, c->target);
576 ofconn_destroy(ofconn);
579 add_controller(mgr, c->target, c->dscp, allowed_versions);
581 } else if (!pvconn_verify_name(c->target)) {
583 ofservice = ofservice_lookup(mgr, c->target);
585 VLOG_INFO("%s: added service controller \"%s\"",
586 mgr->name, c->target);
588 } else if (ofservice->allowed_versions != allowed_versions) {
589 VLOG_INFO("%s: re-added service controller \"%s\"",
590 mgr->name, c->target);
591 ofservice_destroy(mgr, ofservice);
595 ofservice_create(mgr, c->target, allowed_versions, c->dscp);
598 VLOG_WARN_RL(&rl, "%s: unsupported controller \"%s\"",
599 mgr->name, c->target);
603 shash_add_once(&new_controllers, c->target, &controllers[i]);
606 /* Delete controllers that are no longer configured.
607 * Update configuration of all now-existing controllers. */
608 HMAP_FOR_EACH_SAFE (ofconn, next_ofconn, hmap_node, &mgr->controllers) {
609 const char *target = ofconn_get_target(ofconn);
610 struct ofproto_controller *c;
612 c = shash_find_data(&new_controllers, target);
614 VLOG_INFO("%s: removed primary controller \"%s\"",
616 ofconn_destroy(ofconn);
618 ofconn_reconfigure(ofconn, c);
622 /* Delete services that are no longer configured.
623 * Update configuration of all now-existing services. */
624 HMAP_FOR_EACH_SAFE (ofservice, next_ofservice, node, &mgr->services) {
625 const char *target = pvconn_get_name(ofservice->pvconn);
626 struct ofproto_controller *c;
628 c = shash_find_data(&new_controllers, target);
630 VLOG_INFO("%s: removed service controller \"%s\"",
632 ofservice_destroy(mgr, ofservice);
634 ofservice_reconfigure(ofservice, c);
638 shash_destroy(&new_controllers);
640 ovs_mutex_unlock(&ofproto_mutex);
642 update_in_band_remotes(mgr);
643 update_fail_open(mgr);
644 if (had_controllers != connmgr_has_controllers(mgr)) {
645 ofproto_flush_flows(mgr->ofproto);
649 /* Drops the connections between 'mgr' and all of its primary and secondary
650 * controllers, forcing them to reconnect. */
652 connmgr_reconnect(const struct connmgr *mgr)
654 struct ofconn *ofconn;
656 LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
657 rconn_reconnect(ofconn->rconn);
661 /* Sets the "snoops" for 'mgr' to the pvconn targets listed in 'snoops'.
663 * A "snoop" is a pvconn to which every OpenFlow message to or from the most
664 * important controller on 'mgr' is mirrored. */
666 connmgr_set_snoops(struct connmgr *mgr, const struct sset *snoops)
668 return set_pvconns(&mgr->snoops, &mgr->n_snoops, snoops);
671 /* Adds each of the snoops currently configured on 'mgr' to 'snoops'. */
673 connmgr_get_snoops(const struct connmgr *mgr, struct sset *snoops)
677 for (i = 0; i < mgr->n_snoops; i++) {
678 sset_add(snoops, pvconn_get_name(mgr->snoops[i]));
682 /* Returns true if 'mgr' has at least one snoop, false if it has none. */
684 connmgr_has_snoops(const struct connmgr *mgr)
686 return mgr->n_snoops > 0;
689 /* Creates a new controller for 'target' in 'mgr'. update_controller() needs
690 * to be called later to finish the new ofconn's configuration. */
692 add_controller(struct connmgr *mgr, const char *target, uint8_t dscp,
693 uint32_t allowed_versions)
694 OVS_REQUIRES(ofproto_mutex)
696 char *name = ofconn_make_name(mgr, target);
697 struct ofconn *ofconn;
699 ofconn = ofconn_create(mgr, rconn_create(5, 8, dscp, allowed_versions),
700 OFCONN_PRIMARY, true);
701 ofconn->pktbuf = pktbuf_create();
702 rconn_connect(ofconn->rconn, target, name);
703 hmap_insert(&mgr->controllers, &ofconn->hmap_node, hash_string(target, 0));
708 static struct ofconn *
709 find_controller_by_target(struct connmgr *mgr, const char *target)
711 struct ofconn *ofconn;
713 HMAP_FOR_EACH_WITH_HASH (ofconn, hmap_node,
714 hash_string(target, 0), &mgr->controllers) {
715 if (!strcmp(ofconn_get_target(ofconn), target)) {
723 update_in_band_remotes(struct connmgr *mgr)
725 struct sockaddr_in *addrs;
726 size_t max_addrs, n_addrs;
727 struct ofconn *ofconn;
730 /* Allocate enough memory for as many remotes as we could possibly have. */
731 max_addrs = mgr->n_extra_remotes + hmap_count(&mgr->controllers);
732 addrs = xmalloc(max_addrs * sizeof *addrs);
735 /* Add all the remotes. */
736 HMAP_FOR_EACH (ofconn, hmap_node, &mgr->controllers) {
737 const char *target = rconn_get_target(ofconn->rconn);
738 struct sockaddr_storage ss;
740 if (ofconn->band == OFPROTO_IN_BAND
741 && stream_parse_target_with_default_port(target, OFP_OLD_PORT, &ss)
742 && ss.ss_family == AF_INET) {
743 addrs[n_addrs++] = *(struct sockaddr_in *) &ss;
746 for (i = 0; i < mgr->n_extra_remotes; i++) {
747 addrs[n_addrs++] = mgr->extra_in_band_remotes[i];
750 /* Create or update or destroy in-band. */
753 in_band_create(mgr->ofproto, mgr->local_port_name, &mgr->in_band);
755 in_band_set_queue(mgr->in_band, mgr->in_band_queue);
757 /* in_band_run() needs a chance to delete any existing in-band flows.
758 * We will destroy mgr->in_band after it's done with that. */
761 in_band_set_remotes(mgr->in_band, addrs, n_addrs);
769 update_fail_open(struct connmgr *mgr)
770 OVS_EXCLUDED(ofproto_mutex)
772 if (connmgr_has_controllers(mgr)
773 && mgr->fail_mode == OFPROTO_FAIL_STANDALONE) {
774 if (!mgr->fail_open) {
775 mgr->fail_open = fail_open_create(mgr->ofproto, mgr);
778 fail_open_destroy(mgr->fail_open);
779 mgr->fail_open = NULL;
784 set_pvconns(struct pvconn ***pvconnsp, size_t *n_pvconnsp,
785 const struct sset *sset)
787 struct pvconn **pvconns = *pvconnsp;
788 size_t n_pvconns = *n_pvconnsp;
793 for (i = 0; i < n_pvconns; i++) {
794 pvconn_close(pvconns[i]);
798 pvconns = xmalloc(sset_count(sset) * sizeof *pvconns);
800 SSET_FOR_EACH (name, sset) {
801 struct pvconn *pvconn;
803 error = pvconn_open(name, 0, 0, &pvconn);
805 pvconns[n_pvconns++] = pvconn;
807 VLOG_ERR("failed to listen on %s: %s", name, ovs_strerror(error));
815 *n_pvconnsp = n_pvconns;
820 /* Returns a "preference level" for snooping 'ofconn'. A higher return value
821 * means that 'ofconn' is more interesting for monitoring than a lower return
824 snoop_preference(const struct ofconn *ofconn)
826 switch (ofconn->role) {
827 case OFPCR12_ROLE_MASTER:
829 case OFPCR12_ROLE_EQUAL:
831 case OFPCR12_ROLE_SLAVE:
833 case OFPCR12_ROLE_NOCHANGE:
835 /* Shouldn't happen. */
840 /* One of 'mgr''s "snoop" pvconns has accepted a new connection on 'vconn'.
841 * Connects this vconn to a controller. */
843 add_snooper(struct connmgr *mgr, struct vconn *vconn)
845 struct ofconn *ofconn, *best;
847 /* Pick a controller for monitoring. */
849 LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
850 if (ofconn->type == OFCONN_PRIMARY
851 && (!best || snoop_preference(ofconn) > snoop_preference(best))) {
857 rconn_add_monitor(best->rconn, vconn);
859 VLOG_INFO_RL(&rl, "no controller connection to snoop");
864 /* Public ofconn functions. */
866 /* Returns the connection type, either OFCONN_PRIMARY or OFCONN_SERVICE. */
868 ofconn_get_type(const struct ofconn *ofconn)
873 /* If a master election id is defined, stores it into '*idp' and returns
874 * true. Otherwise, stores UINT64_MAX into '*idp' and returns false. */
876 ofconn_get_master_election_id(const struct ofconn *ofconn, uint64_t *idp)
878 *idp = (ofconn->connmgr->master_election_id_defined
879 ? ofconn->connmgr->master_election_id
881 return ofconn->connmgr->master_election_id_defined;
884 /* Sets the master election id.
886 * Returns true if successful, false if the id is stale
889 ofconn_set_master_election_id(struct ofconn *ofconn, uint64_t id)
891 if (ofconn->connmgr->master_election_id_defined
893 /* Unsigned difference interpreted as a two's complement signed
895 (int64_t)(id - ofconn->connmgr->master_election_id) < 0) {
898 ofconn->connmgr->master_election_id = id;
899 ofconn->connmgr->master_election_id_defined = true;
904 /* Returns the role configured for 'ofconn'.
906 * The default role, if no other role has been set, is OFPCR12_ROLE_EQUAL. */
907 enum ofp12_controller_role
908 ofconn_get_role(const struct ofconn *ofconn)
914 ofconn_send_role_status(struct ofconn *ofconn, uint32_t role, uint8_t reason)
916 struct ofputil_role_status status;
919 status.reason = reason;
921 ofconn_get_master_election_id(ofconn, &status.generation_id);
923 buf = ofputil_encode_role_status(&status, ofconn_get_protocol(ofconn));
925 ofconn_send(ofconn, buf, NULL);
928 /* Changes 'ofconn''s role to 'role'. If 'role' is OFPCR12_ROLE_MASTER then
929 * any existing master is demoted to a slave. */
931 ofconn_set_role(struct ofconn *ofconn, enum ofp12_controller_role role)
933 if (role != ofconn->role && role == OFPCR12_ROLE_MASTER) {
934 struct ofconn *other;
936 HMAP_FOR_EACH (other, hmap_node, &ofconn->connmgr->controllers) {
937 if (other->role == OFPCR12_ROLE_MASTER) {
938 other->role = OFPCR12_ROLE_SLAVE;
939 ofconn_send_role_status(other, OFPCR12_ROLE_SLAVE, OFPCRR_MASTER_REQUEST);
947 ofconn_set_invalid_ttl_to_controller(struct ofconn *ofconn, bool enable)
949 uint32_t bit = 1u << OFPR_INVALID_TTL;
951 ofconn->master_async_config[OAM_PACKET_IN] |= bit;
953 ofconn->master_async_config[OAM_PACKET_IN] &= ~bit;
958 ofconn_get_invalid_ttl_to_controller(struct ofconn *ofconn)
960 uint32_t bit = 1u << OFPR_INVALID_TTL;
961 return (ofconn->master_async_config[OAM_PACKET_IN] & bit) != 0;
964 /* Returns the currently configured protocol for 'ofconn', one of OFPUTIL_P_*.
966 * Returns OFPUTIL_P_NONE, which is not a valid protocol, if 'ofconn' hasn't
967 * completed version negotiation. This can't happen if at least one OpenFlow
968 * message, other than OFPT_HELLO, has been received on the connection (such as
969 * in ofproto.c's message handling code), since version negotiation is a
970 * prerequisite for starting to receive messages. This means that
971 * OFPUTIL_P_NONE is a special case that most callers need not worry about. */
972 enum ofputil_protocol
973 ofconn_get_protocol(const struct ofconn *ofconn)
975 if (ofconn->protocol == OFPUTIL_P_NONE &&
976 rconn_is_connected(ofconn->rconn)) {
977 int version = rconn_get_version(ofconn->rconn);
979 ofconn_set_protocol(CONST_CAST(struct ofconn *, ofconn),
980 ofputil_protocol_from_ofp_version(version));
984 return ofconn->protocol;
987 /* Sets the protocol for 'ofconn' to 'protocol' (one of OFPUTIL_P_*).
989 * (This doesn't actually send anything to accomplish this. Presumably the
990 * caller already did that.) */
992 ofconn_set_protocol(struct ofconn *ofconn, enum ofputil_protocol protocol)
994 ofconn->protocol = protocol;
997 /* Returns the currently configured packet in format for 'ofconn', one of
1000 * The default, if no other format has been set, is NXPIF_OPENFLOW10. */
1001 enum nx_packet_in_format
1002 ofconn_get_packet_in_format(struct ofconn *ofconn)
1004 return ofconn->packet_in_format;
1007 /* Sets the packet in format for 'ofconn' to 'packet_in_format' (one of
1010 ofconn_set_packet_in_format(struct ofconn *ofconn,
1011 enum nx_packet_in_format packet_in_format)
1013 ofconn->packet_in_format = packet_in_format;
1016 /* Sets the controller connection ID for 'ofconn' to 'controller_id'.
1018 * The connection controller ID is used for OFPP_CONTROLLER and
1019 * NXAST_CONTROLLER actions. See "struct nx_action_controller" for details. */
1021 ofconn_set_controller_id(struct ofconn *ofconn, uint16_t controller_id)
1023 ofconn->controller_id = controller_id;
1026 /* Returns the default miss send length for 'ofconn'. */
1028 ofconn_get_miss_send_len(const struct ofconn *ofconn)
1030 return ofconn->miss_send_len;
1033 /* Sets the default miss send length for 'ofconn' to 'miss_send_len'. */
1035 ofconn_set_miss_send_len(struct ofconn *ofconn, int miss_send_len)
1037 ofconn->miss_send_len = miss_send_len;
1041 ofconn_set_async_config(struct ofconn *ofconn,
1042 const uint32_t master_masks[OAM_N_TYPES],
1043 const uint32_t slave_masks[OAM_N_TYPES])
1045 size_t size = sizeof ofconn->master_async_config;
1046 memcpy(ofconn->master_async_config, master_masks, size);
1047 memcpy(ofconn->slave_async_config, slave_masks, size);
1051 ofconn_get_async_config(struct ofconn *ofconn,
1052 uint32_t *master_masks, uint32_t *slave_masks)
1054 size_t size = sizeof ofconn->master_async_config;
1055 memcpy(master_masks, ofconn->master_async_config, size);
1056 memcpy(slave_masks, ofconn->slave_async_config, size);
1059 /* Sends 'msg' on 'ofconn', accounting it as a reply. (If there is a
1060 * sufficient number of OpenFlow replies in-flight on a single ofconn, then the
1061 * connmgr will stop accepting new OpenFlow requests on that ofconn until the
1062 * controller has accepted some of the replies.) */
1064 ofconn_send_reply(const struct ofconn *ofconn, struct ofpbuf *msg)
1066 ofconn_send(ofconn, msg, ofconn->reply_counter);
1069 /* Sends each of the messages in list 'replies' on 'ofconn' in order,
1070 * accounting them as replies. */
1072 ofconn_send_replies(const struct ofconn *ofconn, struct list *replies)
1074 struct ofpbuf *reply, *next;
1076 LIST_FOR_EACH_SAFE (reply, next, list_node, replies) {
1077 list_remove(&reply->list_node);
1078 ofconn_send_reply(ofconn, reply);
1082 /* Sends 'error' on 'ofconn', as a reply to 'request'. Only at most the
1083 * first 64 bytes of 'request' are used. */
1085 ofconn_send_error(const struct ofconn *ofconn,
1086 const struct ofp_header *request, enum ofperr error)
1088 static struct vlog_rate_limit err_rl = VLOG_RATE_LIMIT_INIT(10, 10);
1089 struct ofpbuf *reply;
1091 reply = ofperr_encode_reply(error, request);
1092 if (!VLOG_DROP_INFO(&err_rl)) {
1093 const char *type_name;
1097 request_len = ntohs(request->length);
1098 type_name = (!ofpraw_decode_partial(&raw, request,
1099 MIN(64, request_len))
1100 ? ofpraw_get_name(raw)
1103 VLOG_INFO("%s: sending %s error reply to %s message",
1104 rconn_get_name(ofconn->rconn), ofperr_to_string(error),
1107 ofconn_send_reply(ofconn, reply);
1110 /* Same as pktbuf_retrieve(), using the pktbuf owned by 'ofconn'. */
1112 ofconn_pktbuf_retrieve(struct ofconn *ofconn, uint32_t id,
1113 struct ofpbuf **bufferp, ofp_port_t *in_port)
1115 return pktbuf_retrieve(ofconn->pktbuf, id, bufferp, in_port);
1118 /* Returns true if 'ofconn' has any pending opgroups. */
1120 ofconn_has_pending_opgroups(const struct ofconn *ofconn)
1122 return !list_is_empty(&ofconn->opgroups);
1125 /* Adds 'ofconn_node' to 'ofconn''s list of pending opgroups.
1127 * If 'ofconn' is destroyed or its connection drops, then 'ofconn' will remove
1128 * 'ofconn_node' from the list and re-initialize it with list_init(). The
1129 * client may, therefore, use list_is_empty(ofconn_node) to determine whether
1130 * 'ofconn_node' is still associated with an active ofconn.
1132 * The client may also remove ofconn_node from the list itself, with
1135 ofconn_add_opgroup(struct ofconn *ofconn, struct list *ofconn_node)
1137 list_push_back(&ofconn->opgroups, ofconn_node);
1140 /* Private ofconn functions. */
1143 ofconn_get_target(const struct ofconn *ofconn)
1145 return rconn_get_target(ofconn->rconn);
1148 static struct ofconn *
1149 ofconn_create(struct connmgr *mgr, struct rconn *rconn, enum ofconn_type type,
1150 bool enable_async_msgs)
1152 struct ofconn *ofconn;
1154 ofconn = xzalloc(sizeof *ofconn);
1155 ofconn->connmgr = mgr;
1156 list_push_back(&mgr->all_conns, &ofconn->node);
1157 ofconn->rconn = rconn;
1158 ofconn->type = type;
1159 ofconn->enable_async_msgs = enable_async_msgs;
1161 list_init(&ofconn->opgroups);
1163 hmap_init(&ofconn->monitors);
1164 list_init(&ofconn->updates);
1166 ofconn_flush(ofconn);
1171 /* Clears all of the state in 'ofconn' that should not persist from one
1172 * connection to the next. */
1174 ofconn_flush(struct ofconn *ofconn)
1175 OVS_REQUIRES(ofproto_mutex)
1177 struct ofmonitor *monitor, *next_monitor;
1180 ofconn->role = OFPCR12_ROLE_EQUAL;
1181 ofconn_set_protocol(ofconn, OFPUTIL_P_NONE);
1182 ofconn->packet_in_format = NXPIF_OPENFLOW10;
1184 /* Disassociate 'ofconn' from all of the ofopgroups that it initiated that
1185 * have not yet completed. (Those ofopgroups will still run to completion
1186 * in the usual way, but any errors that they run into will not be reported
1187 * on any OpenFlow channel.)
1189 * Also discard any blocked operation on 'ofconn'. */
1190 while (!list_is_empty(&ofconn->opgroups)) {
1191 list_init(list_pop_front(&ofconn->opgroups));
1193 ofpbuf_delete(ofconn->blocked);
1194 ofconn->blocked = NULL;
1196 rconn_packet_counter_destroy(ofconn->packet_in_counter);
1197 ofconn->packet_in_counter = rconn_packet_counter_create();
1198 for (i = 0; i < N_SCHEDULERS; i++) {
1199 if (ofconn->schedulers[i]) {
1202 pinsched_get_limits(ofconn->schedulers[i], &rate, &burst);
1203 pinsched_destroy(ofconn->schedulers[i]);
1204 ofconn->schedulers[i] = pinsched_create(rate, burst);
1207 if (ofconn->pktbuf) {
1208 pktbuf_destroy(ofconn->pktbuf);
1209 ofconn->pktbuf = pktbuf_create();
1211 ofconn->miss_send_len = (ofconn->type == OFCONN_PRIMARY
1212 ? OFP_DEFAULT_MISS_SEND_LEN
1214 ofconn->controller_id = 0;
1216 rconn_packet_counter_destroy(ofconn->reply_counter);
1217 ofconn->reply_counter = rconn_packet_counter_create();
1219 if (ofconn->enable_async_msgs) {
1220 uint32_t *master = ofconn->master_async_config;
1221 uint32_t *slave = ofconn->slave_async_config;
1223 /* "master" and "other" roles get all asynchronous messages by default,
1224 * except that the controller needs to enable nonstandard "packet-in"
1225 * reasons itself. */
1226 master[OAM_PACKET_IN] = (1u << OFPR_NO_MATCH) | (1u << OFPR_ACTION);
1227 master[OAM_PORT_STATUS] = ((1u << OFPPR_ADD)
1228 | (1u << OFPPR_DELETE)
1229 | (1u << OFPPR_MODIFY));
1230 master[OAM_FLOW_REMOVED] = ((1u << OFPRR_IDLE_TIMEOUT)
1231 | (1u << OFPRR_HARD_TIMEOUT)
1232 | (1u << OFPRR_DELETE));
1234 /* "slave" role gets port status updates by default. */
1235 slave[OAM_PACKET_IN] = 0;
1236 slave[OAM_PORT_STATUS] = ((1u << OFPPR_ADD)
1237 | (1u << OFPPR_DELETE)
1238 | (1u << OFPPR_MODIFY));
1239 slave[OAM_FLOW_REMOVED] = 0;
1241 memset(ofconn->master_async_config, 0,
1242 sizeof ofconn->master_async_config);
1243 memset(ofconn->slave_async_config, 0,
1244 sizeof ofconn->slave_async_config);
1247 HMAP_FOR_EACH_SAFE (monitor, next_monitor, ofconn_node,
1248 &ofconn->monitors) {
1249 ofmonitor_destroy(monitor);
1251 rconn_packet_counter_destroy(ofconn->monitor_counter);
1252 ofconn->monitor_counter = rconn_packet_counter_create();
1253 ofpbuf_list_delete(&ofconn->updates); /* ...but it should be empty. */
1257 ofconn_destroy(struct ofconn *ofconn)
1258 OVS_REQUIRES(ofproto_mutex)
1260 ofconn_flush(ofconn);
1262 if (ofconn->type == OFCONN_PRIMARY) {
1263 hmap_remove(&ofconn->connmgr->controllers, &ofconn->hmap_node);
1266 hmap_destroy(&ofconn->monitors);
1267 list_remove(&ofconn->node);
1268 rconn_destroy(ofconn->rconn);
1269 rconn_packet_counter_destroy(ofconn->packet_in_counter);
1270 rconn_packet_counter_destroy(ofconn->reply_counter);
1271 pktbuf_destroy(ofconn->pktbuf);
1272 rconn_packet_counter_destroy(ofconn->monitor_counter);
1276 /* Reconfigures 'ofconn' to match 'c'. 'ofconn' and 'c' must have the same
1279 ofconn_reconfigure(struct ofconn *ofconn, const struct ofproto_controller *c)
1283 ofconn->band = c->band;
1284 ofconn->enable_async_msgs = c->enable_async_msgs;
1286 rconn_set_max_backoff(ofconn->rconn, c->max_backoff);
1288 probe_interval = c->probe_interval ? MAX(c->probe_interval, 5) : 0;
1289 rconn_set_probe_interval(ofconn->rconn, probe_interval);
1291 ofconn_set_rate_limit(ofconn, c->rate_limit, c->burst_limit);
1293 /* If dscp value changed reconnect. */
1294 if (c->dscp != rconn_get_dscp(ofconn->rconn)) {
1295 rconn_set_dscp(ofconn->rconn, c->dscp);
1296 rconn_reconnect(ofconn->rconn);
1300 /* Returns true if it makes sense for 'ofconn' to receive and process OpenFlow
1303 ofconn_may_recv(const struct ofconn *ofconn)
1305 int count = rconn_packet_counter_n_packets(ofconn->reply_counter);
1306 return (!ofconn->blocked || ofconn->retry) && count < OFCONN_REPLY_MAX;
1310 ofconn_run(struct ofconn *ofconn,
1311 bool (*handle_openflow)(struct ofconn *,
1312 const struct ofpbuf *ofp_msg))
1314 struct connmgr *mgr = ofconn->connmgr;
1317 for (i = 0; i < N_SCHEDULERS; i++) {
1320 pinsched_run(ofconn->schedulers[i], &txq);
1321 do_send_packet_ins(ofconn, &txq);
1324 rconn_run(ofconn->rconn);
1326 if (handle_openflow) {
1327 /* Limit the number of iterations to avoid starving other tasks. */
1328 for (i = 0; i < 50 && ofconn_may_recv(ofconn); i++) {
1329 struct ofpbuf *of_msg;
1331 of_msg = (ofconn->blocked
1333 : rconn_recv(ofconn->rconn));
1337 if (mgr->fail_open) {
1338 fail_open_maybe_recover(mgr->fail_open);
1341 if (handle_openflow(ofconn, of_msg)) {
1342 ofpbuf_delete(of_msg);
1343 ofconn->blocked = NULL;
1345 ofconn->blocked = of_msg;
1346 ofconn->retry = false;
1351 ovs_mutex_lock(&ofproto_mutex);
1352 if (!rconn_is_alive(ofconn->rconn)) {
1353 ofconn_destroy(ofconn);
1354 } else if (!rconn_is_connected(ofconn->rconn)) {
1355 ofconn_flush(ofconn);
1357 ovs_mutex_unlock(&ofproto_mutex);
1361 ofconn_wait(struct ofconn *ofconn, bool handling_openflow)
1365 for (i = 0; i < N_SCHEDULERS; i++) {
1366 pinsched_wait(ofconn->schedulers[i]);
1368 rconn_run_wait(ofconn->rconn);
1369 if (handling_openflow && ofconn_may_recv(ofconn)) {
1370 rconn_recv_wait(ofconn->rconn);
1374 /* Returns true if 'ofconn' should receive asynchronous messages of the given
1375 * OAM_* 'type' and 'reason', which should be a OFPR_* value for OAM_PACKET_IN,
1376 * a OFPPR_* value for OAM_PORT_STATUS, or an OFPRR_* value for
1377 * OAM_FLOW_REMOVED. Returns false if the message should not be sent on
1380 ofconn_receives_async_msg(const struct ofconn *ofconn,
1381 enum ofconn_async_msg_type type,
1382 unsigned int reason)
1384 const uint32_t *async_config;
1386 ovs_assert(reason < 32);
1387 ovs_assert((unsigned int) type < OAM_N_TYPES);
1389 if (ofconn_get_protocol(ofconn) == OFPUTIL_P_NONE
1390 || !rconn_is_connected(ofconn->rconn)) {
1394 /* Keep the following code in sync with the documentation in the
1395 * "Asynchronous Messages" section in DESIGN. */
1397 if (ofconn->type == OFCONN_SERVICE && !ofconn->miss_send_len) {
1398 /* Service connections don't get asynchronous messages unless they have
1399 * explicitly asked for them by setting a nonzero miss send length. */
1403 async_config = (ofconn->role == OFPCR12_ROLE_SLAVE
1404 ? ofconn->slave_async_config
1405 : ofconn->master_async_config);
1406 if (!(async_config[type] & (1u << reason))) {
1413 /* Returns a human-readable name for an OpenFlow connection between 'mgr' and
1414 * 'target', suitable for use in log messages for identifying the connection.
1416 * The name is dynamically allocated. The caller should free it (with free())
1417 * when it is no longer needed. */
1419 ofconn_make_name(const struct connmgr *mgr, const char *target)
1421 return xasprintf("%s<->%s", mgr->name, target);
1425 ofconn_set_rate_limit(struct ofconn *ofconn, int rate, int burst)
1429 for (i = 0; i < N_SCHEDULERS; i++) {
1430 struct pinsched **s = &ofconn->schedulers[i];
1434 *s = pinsched_create(rate, burst);
1436 pinsched_set_limits(*s, rate, burst);
1439 pinsched_destroy(*s);
1446 ofconn_send(const struct ofconn *ofconn, struct ofpbuf *msg,
1447 struct rconn_packet_counter *counter)
1449 ofpmsg_update_length(msg);
1450 rconn_send(ofconn->rconn, msg, counter);
1453 /* Sending asynchronous messages. */
1455 static void schedule_packet_in(struct ofconn *, struct ofproto_packet_in,
1456 enum ofp_packet_in_reason wire_reason);
1458 /* Sends an OFPT_PORT_STATUS message with 'opp' and 'reason' to appropriate
1459 * controllers managed by 'mgr'. For messages caused by a controller
1460 * OFPT_PORT_MOD, specify 'source' as the controller connection that sent the
1461 * request; otherwise, specify 'source' as NULL. */
1463 connmgr_send_port_status(struct connmgr *mgr, struct ofconn *source,
1464 const struct ofputil_phy_port *pp, uint8_t reason)
1466 /* XXX Should limit the number of queued port status change messages. */
1467 struct ofputil_port_status ps;
1468 struct ofconn *ofconn;
1472 LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
1473 if (ofconn_receives_async_msg(ofconn, OAM_PORT_STATUS, reason)) {
1476 /* Before 1.5, OpenFlow specified that OFPT_PORT_MOD should not
1477 * generate OFPT_PORT_STATUS messages. That requirement was a
1478 * relic of how OpenFlow originally supported a single controller,
1479 * so that one could expect the controller to already know the
1480 * changes it had made.
1482 * EXT-338 changes OpenFlow 1.5 OFPT_PORT_MOD to send
1483 * OFPT_PORT_STATUS messages to every controller. This is
1484 * obviously more useful in the multi-controller case. We could
1485 * always implement it that way in OVS, but that would risk
1486 * confusing controllers that are intended for single-controller
1487 * use only. (Imagine a controller that generates an OFPT_PORT_MOD
1488 * in response to any OFPT_PORT_STATUS!)
1490 * So this compromises: for OpenFlow 1.4 and earlier, it generates
1491 * OFPT_PORT_STATUS for OFPT_PORT_MOD, but not back to the
1492 * originating controller. In a single-controller environment, in
1493 * particular, this means that it will never generate
1494 * OFPT_PORT_STATUS for OFPT_PORT_MOD at all. */
1495 if (ofconn == source
1496 && rconn_get_version(ofconn->rconn) < OFP15_VERSION) {
1500 msg = ofputil_encode_port_status(&ps, ofconn_get_protocol(ofconn));
1501 ofconn_send(ofconn, msg, NULL);
1506 /* Sends an OFPT_FLOW_REMOVED or NXT_FLOW_REMOVED message based on 'fr' to
1507 * appropriate controllers managed by 'mgr'. */
1509 connmgr_send_flow_removed(struct connmgr *mgr,
1510 const struct ofputil_flow_removed *fr)
1512 struct ofconn *ofconn;
1514 LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
1515 if (ofconn_receives_async_msg(ofconn, OAM_FLOW_REMOVED, fr->reason)) {
1518 /* Account flow expirations as replies to OpenFlow requests. That
1519 * works because preventing OpenFlow requests from being processed
1520 * also prevents new flows from being added (and expiring). (It
1521 * also prevents processing OpenFlow requests that would not add
1522 * new flows, so it is imperfect.) */
1523 msg = ofputil_encode_flow_removed(fr, ofconn_get_protocol(ofconn));
1524 ofconn_send_reply(ofconn, msg);
1529 /* Normally a send-to-controller action uses reason OFPR_ACTION. However, in
1530 * OpenFlow 1.3 and later, packet_ins generated by a send-to-controller action
1531 * in a "table-miss" flow (one with priority 0 and completely wildcarded) are
1532 * sent as OFPR_NO_MATCH. This function returns the reason that should
1533 * actually be sent on 'ofconn' for 'pin'. */
1534 static enum ofp_packet_in_reason
1535 wire_reason(struct ofconn *ofconn, const struct ofproto_packet_in *pin)
1537 if (pin->generated_by_table_miss && pin->up.reason == OFPR_ACTION) {
1538 enum ofputil_protocol protocol = ofconn_get_protocol(ofconn);
1540 if (protocol != OFPUTIL_P_NONE
1541 && ofputil_protocol_to_ofp_version(protocol) >= OFP13_VERSION) {
1542 return OFPR_NO_MATCH;
1545 return pin->up.reason;
1548 /* Given 'pin', sends an OFPT_PACKET_IN message to each OpenFlow controller as
1549 * necessary according to their individual configurations.
1551 * The caller doesn't need to fill in pin->buffer_id or pin->total_len. */
1553 connmgr_send_packet_in(struct connmgr *mgr,
1554 const struct ofproto_packet_in *pin)
1556 struct ofconn *ofconn;
1558 LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
1559 enum ofp_packet_in_reason reason = wire_reason(ofconn, pin);
1561 if (ofconn_receives_async_msg(ofconn, OAM_PACKET_IN, reason)
1562 && ofconn->controller_id == pin->controller_id) {
1563 schedule_packet_in(ofconn, *pin, reason);
1569 do_send_packet_ins(struct ofconn *ofconn, struct list *txq)
1571 struct ofpbuf *pin, *next_pin;
1573 LIST_FOR_EACH_SAFE (pin, next_pin, list_node, txq) {
1574 list_remove(&pin->list_node);
1576 if (rconn_send_with_limit(ofconn->rconn, pin,
1577 ofconn->packet_in_counter, 100) == EAGAIN) {
1578 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 5);
1580 VLOG_INFO_RL(&rl, "%s: dropping packet-in due to queue overflow",
1581 rconn_get_name(ofconn->rconn));
1586 /* Takes 'pin', composes an OpenFlow packet-in message from it, and passes it
1587 * to 'ofconn''s packet scheduler for sending. */
1589 schedule_packet_in(struct ofconn *ofconn, struct ofproto_packet_in pin,
1590 enum ofp_packet_in_reason wire_reason)
1592 struct connmgr *mgr = ofconn->connmgr;
1593 uint16_t controller_max_len;
1596 pin.up.total_len = pin.up.packet_len;
1598 pin.up.reason = wire_reason;
1599 if (pin.up.reason == OFPR_ACTION) {
1600 controller_max_len = pin.send_len; /* max_len */
1602 controller_max_len = ofconn->miss_send_len;
1605 /* Get OpenFlow buffer_id.
1606 * For OpenFlow 1.2+, OFPCML_NO_BUFFER (== UINT16_MAX) specifies
1607 * unbuffered. This behaviour doesn't violate prior versions, too. */
1608 if (controller_max_len == UINT16_MAX) {
1609 pin.up.buffer_id = UINT32_MAX;
1610 } else if (mgr->fail_open && fail_open_is_active(mgr->fail_open)) {
1611 pin.up.buffer_id = pktbuf_get_null();
1612 } else if (!ofconn->pktbuf) {
1613 pin.up.buffer_id = UINT32_MAX;
1615 pin.up.buffer_id = pktbuf_save(ofconn->pktbuf,
1616 pin.up.packet, pin.up.packet_len,
1617 pin.up.fmd.in_port);
1620 /* Figure out how much of the packet to send.
1621 * If not buffered, send the entire packet. Otherwise, depending on
1622 * the reason of packet-in, send what requested by the controller. */
1623 if (pin.up.buffer_id != UINT32_MAX
1624 && controller_max_len < pin.up.packet_len) {
1625 pin.up.packet_len = controller_max_len;
1628 /* Make OFPT_PACKET_IN and hand over to packet scheduler. */
1629 pinsched_send(ofconn->schedulers[pin.up.reason == OFPR_NO_MATCH ? 0 : 1],
1631 ofputil_encode_packet_in(&pin.up,
1632 ofconn_get_protocol(ofconn),
1633 ofconn->packet_in_format),
1635 do_send_packet_ins(ofconn, &txq);
1638 /* Fail-open settings. */
1640 /* Returns the failure handling mode (OFPROTO_FAIL_SECURE or
1641 * OFPROTO_FAIL_STANDALONE) for 'mgr'. */
1642 enum ofproto_fail_mode
1643 connmgr_get_fail_mode(const struct connmgr *mgr)
1645 return mgr->fail_mode;
1648 /* Sets the failure handling mode for 'mgr' to 'fail_mode' (either
1649 * OFPROTO_FAIL_SECURE or OFPROTO_FAIL_STANDALONE). */
1651 connmgr_set_fail_mode(struct connmgr *mgr, enum ofproto_fail_mode fail_mode)
1653 if (mgr->fail_mode != fail_mode) {
1654 mgr->fail_mode = fail_mode;
1655 update_fail_open(mgr);
1656 if (!connmgr_has_controllers(mgr)) {
1657 ofproto_flush_flows(mgr->ofproto);
1662 /* Fail-open implementation. */
1664 /* Returns the longest probe interval among the primary controllers configured
1665 * on 'mgr'. Returns 0 if there are no primary controllers. */
1667 connmgr_get_max_probe_interval(const struct connmgr *mgr)
1669 const struct ofconn *ofconn;
1670 int max_probe_interval;
1672 max_probe_interval = 0;
1673 HMAP_FOR_EACH (ofconn, hmap_node, &mgr->controllers) {
1674 int probe_interval = rconn_get_probe_interval(ofconn->rconn);
1675 max_probe_interval = MAX(max_probe_interval, probe_interval);
1677 return max_probe_interval;
1680 /* Returns the number of seconds for which all of 'mgr's primary controllers
1681 * have been disconnected. Returns 0 if 'mgr' has no primary controllers. */
1683 connmgr_failure_duration(const struct connmgr *mgr)
1685 const struct ofconn *ofconn;
1686 int min_failure_duration;
1688 if (!connmgr_has_controllers(mgr)) {
1692 min_failure_duration = INT_MAX;
1693 HMAP_FOR_EACH (ofconn, hmap_node, &mgr->controllers) {
1694 int failure_duration = rconn_failure_duration(ofconn->rconn);
1695 min_failure_duration = MIN(min_failure_duration, failure_duration);
1697 return min_failure_duration;
1700 /* Returns true if at least one primary controller is connected (regardless of
1701 * whether those controllers are believed to have authenticated and accepted
1702 * this switch), false if none of them are connected. */
1704 connmgr_is_any_controller_connected(const struct connmgr *mgr)
1706 const struct ofconn *ofconn;
1708 HMAP_FOR_EACH (ofconn, hmap_node, &mgr->controllers) {
1709 if (rconn_is_connected(ofconn->rconn)) {
1716 /* Returns true if at least one primary controller is believed to have
1717 * authenticated and accepted this switch, false otherwise. */
1719 connmgr_is_any_controller_admitted(const struct connmgr *mgr)
1721 const struct ofconn *ofconn;
1723 HMAP_FOR_EACH (ofconn, hmap_node, &mgr->controllers) {
1724 if (rconn_is_admitted(ofconn->rconn)) {
1731 /* In-band configuration. */
1733 static bool any_extras_changed(const struct connmgr *,
1734 const struct sockaddr_in *extras, size_t n);
1736 /* Sets the 'n' TCP port addresses in 'extras' as ones to which 'mgr''s
1737 * in-band control should guarantee access, in the same way that in-band
1738 * control guarantees access to OpenFlow controllers. */
1740 connmgr_set_extra_in_band_remotes(struct connmgr *mgr,
1741 const struct sockaddr_in *extras, size_t n)
1743 if (!any_extras_changed(mgr, extras, n)) {
1747 free(mgr->extra_in_band_remotes);
1748 mgr->n_extra_remotes = n;
1749 mgr->extra_in_band_remotes = xmemdup(extras, n * sizeof *extras);
1751 update_in_band_remotes(mgr);
1754 /* Sets the OpenFlow queue used by flows set up by in-band control on
1755 * 'mgr' to 'queue_id'. If 'queue_id' is negative, then in-band control
1756 * flows will use the default queue. */
1758 connmgr_set_in_band_queue(struct connmgr *mgr, int queue_id)
1760 if (queue_id != mgr->in_band_queue) {
1761 mgr->in_band_queue = queue_id;
1762 update_in_band_remotes(mgr);
1767 any_extras_changed(const struct connmgr *mgr,
1768 const struct sockaddr_in *extras, size_t n)
1772 if (n != mgr->n_extra_remotes) {
1776 for (i = 0; i < n; i++) {
1777 const struct sockaddr_in *old = &mgr->extra_in_band_remotes[i];
1778 const struct sockaddr_in *new = &extras[i];
1780 if (old->sin_addr.s_addr != new->sin_addr.s_addr ||
1781 old->sin_port != new->sin_port) {
1789 /* In-band implementation. */
1792 connmgr_has_in_band(struct connmgr *mgr)
1794 return mgr->in_band != NULL;
1797 /* Fail-open and in-band implementation. */
1799 /* Called by 'ofproto' after all flows have been flushed, to allow fail-open
1800 * and standalone mode to re-create their flows.
1802 * In-band control has more sophisticated code that manages flows itself. */
1804 connmgr_flushed(struct connmgr *mgr)
1805 OVS_EXCLUDED(ofproto_mutex)
1807 if (mgr->fail_open) {
1808 fail_open_flushed(mgr->fail_open);
1811 /* If there are no controllers and we're in standalone mode, set up a flow
1812 * that matches every packet and directs them to OFPP_NORMAL (which goes to
1813 * us). Otherwise, the switch is in secure mode and we won't pass any
1814 * traffic until a controller has been defined and it tells us to do so. */
1815 if (!connmgr_has_controllers(mgr)
1816 && mgr->fail_mode == OFPROTO_FAIL_STANDALONE) {
1817 struct ofpbuf ofpacts;
1820 ofpbuf_init(&ofpacts, OFPACT_OUTPUT_SIZE);
1821 ofpact_put_OUTPUT(&ofpacts)->port = OFPP_NORMAL;
1822 ofpact_pad(&ofpacts);
1824 match_init_catchall(&match);
1825 ofproto_add_flow(mgr->ofproto, &match, 0, ofpacts.data, ofpacts.size);
1827 ofpbuf_uninit(&ofpacts);
1831 /* Creates a new ofservice for 'target' in 'mgr'. Returns 0 if successful,
1832 * otherwise a positive errno value.
1834 * ofservice_reconfigure() must be called to fully configure the new
1837 ofservice_create(struct connmgr *mgr, const char *target,
1838 uint32_t allowed_versions, uint8_t dscp)
1840 struct ofservice *ofservice;
1841 struct pvconn *pvconn;
1844 error = pvconn_open(target, allowed_versions, dscp, &pvconn);
1849 ofservice = xzalloc(sizeof *ofservice);
1850 hmap_insert(&mgr->services, &ofservice->node, hash_string(target, 0));
1851 ofservice->pvconn = pvconn;
1852 ofservice->allowed_versions = allowed_versions;
1858 ofservice_destroy(struct connmgr *mgr, struct ofservice *ofservice)
1860 hmap_remove(&mgr->services, &ofservice->node);
1861 pvconn_close(ofservice->pvconn);
1866 ofservice_reconfigure(struct ofservice *ofservice,
1867 const struct ofproto_controller *c)
1869 ofservice->probe_interval = c->probe_interval;
1870 ofservice->rate_limit = c->rate_limit;
1871 ofservice->burst_limit = c->burst_limit;
1872 ofservice->enable_async_msgs = c->enable_async_msgs;
1873 ofservice->dscp = c->dscp;
1876 /* Finds and returns the ofservice within 'mgr' that has the given
1877 * 'target', or a null pointer if none exists. */
1878 static struct ofservice *
1879 ofservice_lookup(struct connmgr *mgr, const char *target)
1881 struct ofservice *ofservice;
1883 HMAP_FOR_EACH_WITH_HASH (ofservice, node, hash_string(target, 0),
1885 if (!strcmp(pvconn_get_name(ofservice->pvconn), target)) {
1892 /* Flow monitors (NXST_FLOW_MONITOR). */
1894 /* A counter incremented when something significant happens to an OpenFlow
1897 * - When a rule is added, its 'add_seqno' and 'modify_seqno' are set to
1898 * the current value (which is then incremented).
1900 * - When a rule is modified, its 'modify_seqno' is set to the current
1901 * value (which is then incremented).
1903 * Thus, by comparing an old value of monitor_seqno against a rule's
1904 * 'add_seqno', one can tell whether the rule was added before or after the old
1905 * value was read, and similarly for 'modify_seqno'.
1907 * 32 bits should normally be sufficient (and would be nice, to save space in
1908 * each rule) but then we'd have to have some special cases for wraparound.
1910 * We initialize monitor_seqno to 1 to allow 0 to be used as an invalid
1912 static uint64_t monitor_seqno = 1;
1914 COVERAGE_DEFINE(ofmonitor_pause);
1915 COVERAGE_DEFINE(ofmonitor_resume);
1918 ofmonitor_create(const struct ofputil_flow_monitor_request *request,
1919 struct ofconn *ofconn, struct ofmonitor **monitorp)
1920 OVS_REQUIRES(ofproto_mutex)
1922 struct ofmonitor *m;
1926 m = ofmonitor_lookup(ofconn, request->id);
1928 return OFPERR_NXBRC_FM_DUPLICATE_ID;
1931 m = xmalloc(sizeof *m);
1933 hmap_insert(&ofconn->monitors, &m->ofconn_node, hash_int(request->id, 0));
1934 m->id = request->id;
1935 m->flags = request->flags;
1936 m->out_port = request->out_port;
1937 m->table_id = request->table_id;
1938 minimatch_init(&m->match, &request->match);
1945 ofmonitor_lookup(struct ofconn *ofconn, uint32_t id)
1946 OVS_REQUIRES(ofproto_mutex)
1948 struct ofmonitor *m;
1950 HMAP_FOR_EACH_IN_BUCKET (m, ofconn_node, hash_int(id, 0),
1951 &ofconn->monitors) {
1960 ofmonitor_destroy(struct ofmonitor *m)
1961 OVS_REQUIRES(ofproto_mutex)
1964 minimatch_destroy(&m->match);
1965 hmap_remove(&m->ofconn->monitors, &m->ofconn_node);
1971 ofmonitor_report(struct connmgr *mgr, struct rule *rule,
1972 enum nx_flow_update_event event,
1973 enum ofp_flow_removed_reason reason,
1974 const struct ofconn *abbrev_ofconn, ovs_be32 abbrev_xid)
1975 OVS_REQUIRES(ofproto_mutex)
1977 enum nx_flow_monitor_flags update;
1978 struct ofconn *ofconn;
1983 rule->add_seqno = rule->modify_seqno = monitor_seqno++;
1987 update = NXFMF_DELETE;
1990 case NXFME_MODIFIED:
1991 update = NXFMF_MODIFY;
1992 rule->modify_seqno = monitor_seqno++;
2000 LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
2001 enum nx_flow_monitor_flags flags = 0;
2002 struct ofmonitor *m;
2004 if (ofconn->monitor_paused) {
2005 /* Only send NXFME_DELETED notifications for flows that were added
2006 * before we paused. */
2007 if (event != NXFME_DELETED
2008 || rule->add_seqno > ofconn->monitor_paused) {
2013 HMAP_FOR_EACH (m, ofconn_node, &ofconn->monitors) {
2014 if (m->flags & update
2015 && (m->table_id == 0xff || m->table_id == rule->table_id)
2016 && ofoperation_has_out_port(rule->pending, m->out_port)
2017 && cls_rule_is_loose_match(&rule->cr, &m->match)) {
2023 if (list_is_empty(&ofconn->updates)) {
2024 ofputil_start_flow_update(&ofconn->updates);
2025 ofconn->sent_abbrev_update = false;
2028 if (ofconn != abbrev_ofconn || ofconn->monitor_paused) {
2029 struct ofputil_flow_update fu;
2033 fu.reason = event == NXFME_DELETED ? reason : 0;
2034 fu.table_id = rule->table_id;
2035 fu.cookie = rule->flow_cookie;
2036 minimatch_expand(&rule->cr.match, &match);
2038 fu.priority = rule->cr.priority;
2040 ovs_mutex_lock(&rule->mutex);
2041 fu.idle_timeout = rule->idle_timeout;
2042 fu.hard_timeout = rule->hard_timeout;
2043 ovs_mutex_unlock(&rule->mutex);
2045 if (flags & NXFMF_ACTIONS) {
2046 struct rule_actions *actions = rule_get_actions(rule);
2047 fu.ofpacts = actions->ofpacts;
2048 fu.ofpacts_len = actions->ofpacts_len;
2053 ofputil_append_flow_update(&fu, &ofconn->updates);
2054 } else if (!ofconn->sent_abbrev_update) {
2055 struct ofputil_flow_update fu;
2057 fu.event = NXFME_ABBREV;
2058 fu.xid = abbrev_xid;
2059 ofputil_append_flow_update(&fu, &ofconn->updates);
2061 ofconn->sent_abbrev_update = true;
2068 ofmonitor_flush(struct connmgr *mgr)
2069 OVS_REQUIRES(ofproto_mutex)
2071 struct ofconn *ofconn;
2073 LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
2074 struct ofpbuf *msg, *next;
2076 LIST_FOR_EACH_SAFE (msg, next, list_node, &ofconn->updates) {
2077 unsigned int n_bytes;
2079 list_remove(&msg->list_node);
2080 ofconn_send(ofconn, msg, ofconn->monitor_counter);
2081 n_bytes = rconn_packet_counter_n_bytes(ofconn->monitor_counter);
2082 if (!ofconn->monitor_paused && n_bytes > 128 * 1024) {
2083 struct ofpbuf *pause;
2085 COVERAGE_INC(ofmonitor_pause);
2086 ofconn->monitor_paused = monitor_seqno++;
2087 pause = ofpraw_alloc_xid(OFPRAW_NXT_FLOW_MONITOR_PAUSED,
2088 OFP10_VERSION, htonl(0), 0);
2089 ofconn_send(ofconn, pause, ofconn->monitor_counter);
2096 ofmonitor_resume(struct ofconn *ofconn)
2097 OVS_REQUIRES(ofproto_mutex)
2099 struct rule_collection rules;
2100 struct ofpbuf *resumed;
2101 struct ofmonitor *m;
2104 rule_collection_init(&rules);
2105 HMAP_FOR_EACH (m, ofconn_node, &ofconn->monitors) {
2106 ofmonitor_collect_resume_rules(m, ofconn->monitor_paused, &rules);
2110 ofmonitor_compose_refresh_updates(&rules, &msgs);
2112 resumed = ofpraw_alloc_xid(OFPRAW_NXT_FLOW_MONITOR_RESUMED, OFP10_VERSION,
2114 list_push_back(&msgs, &resumed->list_node);
2115 ofconn_send_replies(ofconn, &msgs);
2117 ofconn->monitor_paused = 0;
2121 ofmonitor_may_resume(const struct ofconn *ofconn)
2122 OVS_REQUIRES(ofproto_mutex)
2124 return (ofconn->monitor_paused != 0
2125 && !rconn_packet_counter_n_packets(ofconn->monitor_counter));
2129 ofmonitor_run(struct connmgr *mgr)
2131 struct ofconn *ofconn;
2133 ovs_mutex_lock(&ofproto_mutex);
2134 LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
2135 if (ofmonitor_may_resume(ofconn)) {
2136 COVERAGE_INC(ofmonitor_resume);
2137 ofmonitor_resume(ofconn);
2140 ovs_mutex_unlock(&ofproto_mutex);
2144 ofmonitor_wait(struct connmgr *mgr)
2146 struct ofconn *ofconn;
2148 ovs_mutex_lock(&ofproto_mutex);
2149 LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
2150 if (ofmonitor_may_resume(ofconn)) {
2151 poll_immediate_wake();
2154 ovs_mutex_unlock(&ofproto_mutex);