e37ca7a0e42fcf13f39228d89672f8c4228951c4
[cascardo/ovs.git] / ofproto / connmgr.c
1 /*
2  * Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18
19 #include "connmgr.h"
20
21 #include <errno.h>
22 #include <stdlib.h>
23
24 #include "coverage.h"
25 #include "fail-open.h"
26 #include "in-band.h"
27 #include "odp-util.h"
28 #include "ofp-actions.h"
29 #include "ofp-msgs.h"
30 #include "ofp-util.h"
31 #include "ofpbuf.h"
32 #include "ofproto-provider.h"
33 #include "pinsched.h"
34 #include "poll-loop.h"
35 #include "pktbuf.h"
36 #include "rconn.h"
37 #include "shash.h"
38 #include "simap.h"
39 #include "stream.h"
40 #include "timeval.h"
41 #include "vconn.h"
42 #include "vlog.h"
43
44 VLOG_DEFINE_THIS_MODULE(connmgr);
45 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
46
47 /* An OpenFlow connection. */
48 struct ofconn {
49 /* Configuration that persists from one connection to the next. */
50
51     struct list node;           /* In struct connmgr's "all_conns" list. */
52     struct hmap_node hmap_node; /* In struct connmgr's "controllers" map. */
53
54     struct connmgr *connmgr;    /* Connection's manager. */
55     struct rconn *rconn;        /* OpenFlow connection. */
56     enum ofconn_type type;      /* Type. */
57     enum ofproto_band band;     /* In-band or out-of-band? */
58     bool enable_async_msgs;     /* Initially enable async messages? */
59
60 /* State that should be cleared from one connection to the next. */
61
62     /* OpenFlow state. */
63     enum ofp12_controller_role role;           /* Role. */
64     enum ofputil_protocol protocol; /* Current protocol variant. */
65     enum nx_packet_in_format packet_in_format; /* OFPT_PACKET_IN format. */
66
67     /* Asynchronous flow table operation support. */
68     struct list opgroups;       /* Contains pending "ofopgroups", if any. */
69     struct ofpbuf *blocked;     /* Postponed OpenFlow message, if any. */
70     bool retry;                 /* True if 'blocked' is ready to try again. */
71
72     /* OFPT_PACKET_IN related data. */
73     struct rconn_packet_counter *packet_in_counter; /* # queued on 'rconn'. */
74 #define N_SCHEDULERS 2
75     struct pinsched *schedulers[N_SCHEDULERS];
76     struct pktbuf *pktbuf;         /* OpenFlow packet buffers. */
77     int miss_send_len;             /* Bytes to send of buffered packets. */
78     uint16_t controller_id;     /* Connection controller ID. */
79
80     /* Number of OpenFlow messages queued on 'rconn' as replies to OpenFlow
81      * requests, and the maximum number before we stop reading OpenFlow
82      * requests.  */
83 #define OFCONN_REPLY_MAX 100
84     struct rconn_packet_counter *reply_counter;
85
86     /* Asynchronous message configuration in each possible roles.
87      *
88      * A 1-bit enables sending an asynchronous message for one possible reason
89      * that the message might be generated, a 0-bit disables it. */
90     uint32_t master_async_config[OAM_N_TYPES]; /* master, other */
91     uint32_t slave_async_config[OAM_N_TYPES];  /* slave */
92
93     /* Flow monitors. */
94     struct hmap monitors;       /* Contains "struct ofmonitor"s. */
95     struct list updates;        /* List of "struct ofpbuf"s. */
96     bool sent_abbrev_update;    /* Does 'updates' contain NXFME_ABBREV? */
97     struct rconn_packet_counter *monitor_counter;
98     uint64_t monitor_paused;
99 };
100
101 static struct ofconn *ofconn_create(struct connmgr *, struct rconn *,
102                                     enum ofconn_type, bool enable_async_msgs);
103 static void ofconn_destroy(struct ofconn *);
104 static void ofconn_flush(struct ofconn *);
105
106 static void ofconn_reconfigure(struct ofconn *,
107                                const struct ofproto_controller *);
108
109 static void ofconn_run(struct ofconn *,
110                        bool (*handle_openflow)(struct ofconn *,
111                                                const struct ofpbuf *ofp_msg));
112 static void ofconn_wait(struct ofconn *, bool handling_openflow);
113
114 static const char *ofconn_get_target(const struct ofconn *);
115 static char *ofconn_make_name(const struct connmgr *, const char *target);
116
117 static void ofconn_set_rate_limit(struct ofconn *, int rate, int burst);
118
119 static void ofconn_send(const struct ofconn *, struct ofpbuf *,
120                         struct rconn_packet_counter *);
121
122 static void do_send_packet_in(struct ofpbuf *, void *ofconn_);
123
124 /* A listener for incoming OpenFlow "service" connections. */
125 struct ofservice {
126     struct hmap_node node;      /* In struct connmgr's "services" hmap. */
127     struct pvconn *pvconn;      /* OpenFlow connection listener. */
128
129     /* These are not used by ofservice directly.  They are settings for
130      * accepted "struct ofconn"s from the pvconn. */
131     int probe_interval;         /* Max idle time before probing, in seconds. */
132     int rate_limit;             /* Max packet-in rate in packets per second. */
133     int burst_limit;            /* Limit on accumulating packet credits. */
134     bool enable_async_msgs;     /* Initially enable async messages? */
135     uint8_t dscp;               /* DSCP Value for controller connection */
136     uint32_t allowed_versions;  /* OpenFlow protocol versions that may
137                                  * be negotiated for a session. */
138 };
139
140 static void ofservice_reconfigure(struct ofservice *,
141                                   const struct ofproto_controller *);
142 static int ofservice_create(struct connmgr *mgr, const char *target,
143                             uint32_t allowed_versions, uint8_t dscp);
144 static void ofservice_destroy(struct connmgr *, struct ofservice *);
145 static struct ofservice *ofservice_lookup(struct connmgr *,
146                                           const char *target);
147
148 /* Connection manager for an OpenFlow switch. */
149 struct connmgr {
150     struct ofproto *ofproto;
151     char *name;
152     char *local_port_name;
153
154     /* OpenFlow connections. */
155     struct hmap controllers;   /* Controller "struct ofconn"s. */
156     struct list all_conns;     /* Contains "struct ofconn"s. */
157     uint64_t master_election_id; /* monotonically increasing sequence number
158                                   * for master election */
159     bool master_election_id_defined;
160
161     /* OpenFlow listeners. */
162     struct hmap services;       /* Contains "struct ofservice"s. */
163     struct pvconn **snoops;
164     size_t n_snoops;
165
166     /* Fail open. */
167     struct fail_open *fail_open;
168     enum ofproto_fail_mode fail_mode;
169
170     /* In-band control. */
171     struct in_band *in_band;
172     struct sockaddr_in *extra_in_band_remotes;
173     size_t n_extra_remotes;
174     int in_band_queue;
175 };
176
177 static void update_in_band_remotes(struct connmgr *);
178 static void add_snooper(struct connmgr *, struct vconn *);
179 static void ofmonitor_run(struct connmgr *);
180 static void ofmonitor_wait(struct connmgr *);
181
182 /* Creates and returns a new connection manager owned by 'ofproto'.  'name' is
183  * a name for the ofproto suitable for using in log messages.
184  * 'local_port_name' is the name of the local port (OFPP_LOCAL) within
185  * 'ofproto'. */
186 struct connmgr *
187 connmgr_create(struct ofproto *ofproto,
188                const char *name, const char *local_port_name)
189 {
190     struct connmgr *mgr;
191
192     mgr = xmalloc(sizeof *mgr);
193     mgr->ofproto = ofproto;
194     mgr->name = xstrdup(name);
195     mgr->local_port_name = xstrdup(local_port_name);
196
197     hmap_init(&mgr->controllers);
198     list_init(&mgr->all_conns);
199     mgr->master_election_id = 0;
200     mgr->master_election_id_defined = false;
201
202     hmap_init(&mgr->services);
203     mgr->snoops = NULL;
204     mgr->n_snoops = 0;
205
206     mgr->fail_open = NULL;
207     mgr->fail_mode = OFPROTO_FAIL_SECURE;
208
209     mgr->in_band = NULL;
210     mgr->extra_in_band_remotes = NULL;
211     mgr->n_extra_remotes = 0;
212     mgr->in_band_queue = -1;
213
214     return mgr;
215 }
216
217 /* Frees 'mgr' and all of its resources. */
218 void
219 connmgr_destroy(struct connmgr *mgr)
220 {
221     struct ofservice *ofservice, *next_ofservice;
222     struct ofconn *ofconn, *next_ofconn;
223     size_t i;
224
225     if (!mgr) {
226         return;
227     }
228
229     LIST_FOR_EACH_SAFE (ofconn, next_ofconn, node, &mgr->all_conns) {
230         ofconn_destroy(ofconn);
231     }
232     hmap_destroy(&mgr->controllers);
233
234     HMAP_FOR_EACH_SAFE (ofservice, next_ofservice, node, &mgr->services) {
235         ofservice_destroy(mgr, ofservice);
236     }
237     hmap_destroy(&mgr->services);
238
239     for (i = 0; i < mgr->n_snoops; i++) {
240         pvconn_close(mgr->snoops[i]);
241     }
242     free(mgr->snoops);
243
244     fail_open_destroy(mgr->fail_open);
245     mgr->fail_open = NULL;
246
247     in_band_destroy(mgr->in_band);
248     mgr->in_band = NULL;
249     free(mgr->extra_in_band_remotes);
250     free(mgr->name);
251     free(mgr->local_port_name);
252
253     free(mgr);
254 }
255
256 /* Does all of the periodic maintenance required by 'mgr'.
257  *
258  * If 'handle_openflow' is nonnull, calls 'handle_openflow' for each message
259  * received on an OpenFlow connection, passing along the OpenFlow connection
260  * itself and the message that was sent.  If 'handle_openflow' returns true,
261  * the message is considered to be fully processed.  If 'handle_openflow'
262  * returns false, the message is considered not to have been processed at all;
263  * it will be stored and re-presented to 'handle_openflow' following the next
264  * call to connmgr_retry().  'handle_openflow' must not modify or free the
265  * message.
266  *
267  * If 'handle_openflow' is NULL, no OpenFlow messages will be processed and
268  * other activities that could affect the flow table (in-band processing,
269  * fail-open processing) are suppressed too. */
270 void
271 connmgr_run(struct connmgr *mgr,
272             bool (*handle_openflow)(struct ofconn *,
273                                     const struct ofpbuf *ofp_msg))
274     OVS_EXCLUDED(ofproto_mutex)
275 {
276     struct ofconn *ofconn, *next_ofconn;
277     struct ofservice *ofservice;
278     size_t i;
279
280     if (handle_openflow && mgr->in_band) {
281         if (!in_band_run(mgr->in_band)) {
282             in_band_destroy(mgr->in_band);
283             mgr->in_band = NULL;
284         }
285     }
286
287     LIST_FOR_EACH_SAFE (ofconn, next_ofconn, node, &mgr->all_conns) {
288         ofconn_run(ofconn, handle_openflow);
289     }
290     ofmonitor_run(mgr);
291
292     /* Fail-open maintenance.  Do this after processing the ofconns since
293      * fail-open checks the status of the controller rconn. */
294     if (handle_openflow && mgr->fail_open) {
295         fail_open_run(mgr->fail_open);
296     }
297
298     HMAP_FOR_EACH (ofservice, node, &mgr->services) {
299         struct vconn *vconn;
300         int retval;
301
302         retval = pvconn_accept(ofservice->pvconn, &vconn);
303         if (!retval) {
304             struct rconn *rconn;
305             char *name;
306
307             /* Passing default value for creation of the rconn */
308             rconn = rconn_create(ofservice->probe_interval, 0, ofservice->dscp,
309                                  vconn_get_allowed_versions(vconn));
310             name = ofconn_make_name(mgr, vconn_get_name(vconn));
311             rconn_connect_unreliably(rconn, vconn, name);
312             free(name);
313
314             ofconn = ofconn_create(mgr, rconn, OFCONN_SERVICE,
315                                    ofservice->enable_async_msgs);
316             ofconn_set_rate_limit(ofconn, ofservice->rate_limit,
317                                   ofservice->burst_limit);
318         } else if (retval != EAGAIN) {
319             VLOG_WARN_RL(&rl, "accept failed (%s)", ovs_strerror(retval));
320         }
321     }
322
323     for (i = 0; i < mgr->n_snoops; i++) {
324         struct vconn *vconn;
325         int retval;
326
327         retval = pvconn_accept(mgr->snoops[i], &vconn);
328         if (!retval) {
329             add_snooper(mgr, vconn);
330         } else if (retval != EAGAIN) {
331             VLOG_WARN_RL(&rl, "accept failed (%s)", ovs_strerror(retval));
332         }
333     }
334 }
335
336 /* Causes the poll loop to wake up when connmgr_run() needs to run.
337  *
338  * If 'handling_openflow' is true, arriving OpenFlow messages and other
339  * activities that affect the flow table will wake up the poll loop.  If
340  * 'handling_openflow' is false, they will not. */
341 void
342 connmgr_wait(struct connmgr *mgr, bool handling_openflow)
343 {
344     struct ofservice *ofservice;
345     struct ofconn *ofconn;
346     size_t i;
347
348     LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
349         ofconn_wait(ofconn, handling_openflow);
350     }
351     ofmonitor_wait(mgr);
352     if (handling_openflow && mgr->in_band) {
353         in_band_wait(mgr->in_band);
354     }
355     if (handling_openflow && mgr->fail_open) {
356         fail_open_wait(mgr->fail_open);
357     }
358     HMAP_FOR_EACH (ofservice, node, &mgr->services) {
359         pvconn_wait(ofservice->pvconn);
360     }
361     for (i = 0; i < mgr->n_snoops; i++) {
362         pvconn_wait(mgr->snoops[i]);
363     }
364 }
365
366 /* Adds some memory usage statistics for 'mgr' into 'usage', for use with
367  * memory_report(). */
368 void
369 connmgr_get_memory_usage(const struct connmgr *mgr, struct simap *usage)
370 {
371     const struct ofconn *ofconn;
372     unsigned int packets = 0;
373     unsigned int ofconns = 0;
374
375     LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
376         int i;
377
378         ofconns++;
379
380         packets += rconn_count_txqlen(ofconn->rconn);
381         for (i = 0; i < N_SCHEDULERS; i++) {
382             packets += pinsched_count_txqlen(ofconn->schedulers[i]);
383         }
384         packets += pktbuf_count_packets(ofconn->pktbuf);
385     }
386     simap_increase(usage, "ofconns", ofconns);
387     simap_increase(usage, "packets", packets);
388 }
389
390 /* Returns the ofproto that owns 'ofconn''s connmgr. */
391 struct ofproto *
392 ofconn_get_ofproto(const struct ofconn *ofconn)
393 {
394     return ofconn->connmgr->ofproto;
395 }
396
397 /* If processing of OpenFlow messages was blocked on any 'mgr' ofconns by
398  * returning false to the 'handle_openflow' callback to connmgr_run(), this
399  * re-enables them. */
400 void
401 connmgr_retry(struct connmgr *mgr)
402 {
403     struct ofconn *ofconn;
404
405     LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
406         ofconn->retry = true;
407     }
408 }
409 \f
410 /* OpenFlow configuration. */
411
412 static void add_controller(struct connmgr *, const char *target, uint8_t dscp,
413                            uint32_t allowed_versions);
414 static struct ofconn *find_controller_by_target(struct connmgr *,
415                                                 const char *target);
416 static void update_fail_open(struct connmgr *);
417 static int set_pvconns(struct pvconn ***pvconnsp, size_t *n_pvconnsp,
418                        const struct sset *);
419
420 /* Returns true if 'mgr' has any configured primary controllers.
421  *
422  * Service controllers do not count, but configured primary controllers do
423  * count whether or not they are currently connected. */
424 bool
425 connmgr_has_controllers(const struct connmgr *mgr)
426 {
427     return !hmap_is_empty(&mgr->controllers);
428 }
429
430 /* Initializes 'info' and populates it with information about each configured
431  * primary controller.  The keys in 'info' are the controllers' targets; the
432  * data values are corresponding "struct ofproto_controller_info".
433  *
434  * The caller owns 'info' and everything in it and should free it when it is no
435  * longer needed. */
436 void
437 connmgr_get_controller_info(struct connmgr *mgr, struct shash *info)
438 {
439     const struct ofconn *ofconn;
440
441     HMAP_FOR_EACH (ofconn, hmap_node, &mgr->controllers) {
442         const struct rconn *rconn = ofconn->rconn;
443         const char *target = rconn_get_target(rconn);
444
445         if (!shash_find(info, target)) {
446             struct ofproto_controller_info *cinfo = xmalloc(sizeof *cinfo);
447             time_t now = time_now();
448             time_t last_connection = rconn_get_last_connection(rconn);
449             time_t last_disconnect = rconn_get_last_disconnect(rconn);
450             int last_error = rconn_get_last_error(rconn);
451
452             shash_add(info, target, cinfo);
453
454             cinfo->is_connected = rconn_is_connected(rconn);
455             cinfo->role = ofconn->role;
456
457             cinfo->pairs.n = 0;
458
459             if (last_error) {
460                 cinfo->pairs.keys[cinfo->pairs.n] = "last_error";
461                 cinfo->pairs.values[cinfo->pairs.n++]
462                     = xstrdup(ovs_retval_to_string(last_error));
463             }
464
465             cinfo->pairs.keys[cinfo->pairs.n] = "state";
466             cinfo->pairs.values[cinfo->pairs.n++]
467                 = xstrdup(rconn_get_state(rconn));
468
469             if (last_connection != TIME_MIN) {
470                 cinfo->pairs.keys[cinfo->pairs.n] = "sec_since_connect";
471                 cinfo->pairs.values[cinfo->pairs.n++]
472                     = xasprintf("%ld", (long int) (now - last_connection));
473             }
474
475             if (last_disconnect != TIME_MIN) {
476                 cinfo->pairs.keys[cinfo->pairs.n] = "sec_since_disconnect";
477                 cinfo->pairs.values[cinfo->pairs.n++]
478                     = xasprintf("%ld", (long int) (now - last_disconnect));
479             }
480         }
481     }
482 }
483
484 void
485 connmgr_free_controller_info(struct shash *info)
486 {
487     struct shash_node *node;
488
489     SHASH_FOR_EACH (node, info) {
490         struct ofproto_controller_info *cinfo = node->data;
491         while (cinfo->pairs.n) {
492             free(CONST_CAST(char *, cinfo->pairs.values[--cinfo->pairs.n]));
493         }
494         free(cinfo);
495     }
496     shash_destroy(info);
497 }
498
499 /* Changes 'mgr''s set of controllers to the 'n_controllers' controllers in
500  * 'controllers'. */
501 void
502 connmgr_set_controllers(struct connmgr *mgr,
503                         const struct ofproto_controller *controllers,
504                         size_t n_controllers, uint32_t allowed_versions)
505 {
506     bool had_controllers = connmgr_has_controllers(mgr);
507     struct shash new_controllers;
508     struct ofconn *ofconn, *next_ofconn;
509     struct ofservice *ofservice, *next_ofservice;
510     size_t i;
511
512     /* Create newly configured controllers and services.
513      * Create a name to ofproto_controller mapping in 'new_controllers'. */
514     shash_init(&new_controllers);
515     for (i = 0; i < n_controllers; i++) {
516         const struct ofproto_controller *c = &controllers[i];
517
518         if (!vconn_verify_name(c->target)) {
519             bool add = false;
520             ofconn = find_controller_by_target(mgr, c->target);
521             if (!ofconn) {
522                 VLOG_INFO("%s: added primary controller \"%s\"",
523                           mgr->name, c->target);
524                 add = true;
525             } else if (rconn_get_allowed_versions(ofconn->rconn) !=
526                        allowed_versions) {
527                 VLOG_INFO("%s: re-added primary controller \"%s\"",
528                           mgr->name, c->target);
529                 add = true;
530                 ofconn_destroy(ofconn);
531             }
532             if (add) {
533                 add_controller(mgr, c->target, c->dscp, allowed_versions);
534             }
535         } else if (!pvconn_verify_name(c->target)) {
536             bool add = false;
537             ofservice = ofservice_lookup(mgr, c->target);
538             if (!ofservice) {
539                 VLOG_INFO("%s: added service controller \"%s\"",
540                           mgr->name, c->target);
541                 add = true;
542             } else if (ofservice->allowed_versions != allowed_versions) {
543                 VLOG_INFO("%s: re-added service controller \"%s\"",
544                           mgr->name, c->target);
545                 ofservice_destroy(mgr, ofservice);
546                 add = true;
547             }
548             if (add) {
549                 ofservice_create(mgr, c->target, allowed_versions, c->dscp);
550             }
551         } else {
552             VLOG_WARN_RL(&rl, "%s: unsupported controller \"%s\"",
553                          mgr->name, c->target);
554             continue;
555         }
556
557         shash_add_once(&new_controllers, c->target, &controllers[i]);
558     }
559
560     /* Delete controllers that are no longer configured.
561      * Update configuration of all now-existing controllers. */
562     HMAP_FOR_EACH_SAFE (ofconn, next_ofconn, hmap_node, &mgr->controllers) {
563         const char *target = ofconn_get_target(ofconn);
564         struct ofproto_controller *c;
565
566         c = shash_find_data(&new_controllers, target);
567         if (!c) {
568             VLOG_INFO("%s: removed primary controller \"%s\"",
569                       mgr->name, target);
570             ofconn_destroy(ofconn);
571         } else {
572             ofconn_reconfigure(ofconn, c);
573         }
574     }
575
576     /* Delete services that are no longer configured.
577      * Update configuration of all now-existing services. */
578     HMAP_FOR_EACH_SAFE (ofservice, next_ofservice, node, &mgr->services) {
579         const char *target = pvconn_get_name(ofservice->pvconn);
580         struct ofproto_controller *c;
581
582         c = shash_find_data(&new_controllers, target);
583         if (!c) {
584             VLOG_INFO("%s: removed service controller \"%s\"",
585                       mgr->name, target);
586             ofservice_destroy(mgr, ofservice);
587         } else {
588             ofservice_reconfigure(ofservice, c);
589         }
590     }
591
592     shash_destroy(&new_controllers);
593
594     update_in_band_remotes(mgr);
595     update_fail_open(mgr);
596     if (had_controllers != connmgr_has_controllers(mgr)) {
597         ofproto_flush_flows(mgr->ofproto);
598     }
599 }
600
601 /* Drops the connections between 'mgr' and all of its primary and secondary
602  * controllers, forcing them to reconnect. */
603 void
604 connmgr_reconnect(const struct connmgr *mgr)
605 {
606     struct ofconn *ofconn;
607
608     LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
609         rconn_reconnect(ofconn->rconn);
610     }
611 }
612
613 /* Sets the "snoops" for 'mgr' to the pvconn targets listed in 'snoops'.
614  *
615  * A "snoop" is a pvconn to which every OpenFlow message to or from the most
616  * important controller on 'mgr' is mirrored. */
617 int
618 connmgr_set_snoops(struct connmgr *mgr, const struct sset *snoops)
619 {
620     return set_pvconns(&mgr->snoops, &mgr->n_snoops, snoops);
621 }
622
623 /* Adds each of the snoops currently configured on 'mgr' to 'snoops'. */
624 void
625 connmgr_get_snoops(const struct connmgr *mgr, struct sset *snoops)
626 {
627     size_t i;
628
629     for (i = 0; i < mgr->n_snoops; i++) {
630         sset_add(snoops, pvconn_get_name(mgr->snoops[i]));
631     }
632 }
633
634 /* Returns true if 'mgr' has at least one snoop, false if it has none. */
635 bool
636 connmgr_has_snoops(const struct connmgr *mgr)
637 {
638     return mgr->n_snoops > 0;
639 }
640
641 /* Creates a new controller for 'target' in 'mgr'.  update_controller() needs
642  * to be called later to finish the new ofconn's configuration. */
643 static void
644 add_controller(struct connmgr *mgr, const char *target, uint8_t dscp,
645                uint32_t allowed_versions)
646 {
647     char *name = ofconn_make_name(mgr, target);
648     struct ofconn *ofconn;
649
650     ofconn = ofconn_create(mgr, rconn_create(5, 8, dscp, allowed_versions),
651                            OFCONN_PRIMARY, true);
652     ofconn->pktbuf = pktbuf_create();
653     rconn_connect(ofconn->rconn, target, name);
654     hmap_insert(&mgr->controllers, &ofconn->hmap_node, hash_string(target, 0));
655
656     free(name);
657 }
658
659 static struct ofconn *
660 find_controller_by_target(struct connmgr *mgr, const char *target)
661 {
662     struct ofconn *ofconn;
663
664     HMAP_FOR_EACH_WITH_HASH (ofconn, hmap_node,
665                              hash_string(target, 0), &mgr->controllers) {
666         if (!strcmp(ofconn_get_target(ofconn), target)) {
667             return ofconn;
668         }
669     }
670     return NULL;
671 }
672
673 static void
674 update_in_band_remotes(struct connmgr *mgr)
675 {
676     struct sockaddr_in *addrs;
677     size_t max_addrs, n_addrs;
678     struct ofconn *ofconn;
679     size_t i;
680
681     /* Allocate enough memory for as many remotes as we could possibly have. */
682     max_addrs = mgr->n_extra_remotes + hmap_count(&mgr->controllers);
683     addrs = xmalloc(max_addrs * sizeof *addrs);
684     n_addrs = 0;
685
686     /* Add all the remotes. */
687     HMAP_FOR_EACH (ofconn, hmap_node, &mgr->controllers) {
688         struct sockaddr_in *sin = &addrs[n_addrs];
689         const char *target = rconn_get_target(ofconn->rconn);
690
691         if (ofconn->band == OFPROTO_OUT_OF_BAND) {
692             continue;
693         }
694
695         if (stream_parse_target_with_default_ports(target,
696                                                    OFP_TCP_PORT,
697                                                    OFP_SSL_PORT,
698                                                    sin)) {
699             n_addrs++;
700         }
701     }
702     for (i = 0; i < mgr->n_extra_remotes; i++) {
703         addrs[n_addrs++] = mgr->extra_in_band_remotes[i];
704     }
705
706     /* Create or update or destroy in-band. */
707     if (n_addrs) {
708         if (!mgr->in_band) {
709             in_band_create(mgr->ofproto, mgr->local_port_name, &mgr->in_band);
710         }
711         in_band_set_queue(mgr->in_band, mgr->in_band_queue);
712     } else {
713         /* in_band_run() needs a chance to delete any existing in-band flows.
714          * We will destroy mgr->in_band after it's done with that. */
715     }
716     if (mgr->in_band) {
717         in_band_set_remotes(mgr->in_band, addrs, n_addrs);
718     }
719
720     /* Clean up. */
721     free(addrs);
722 }
723
724 static void
725 update_fail_open(struct connmgr *mgr)
726 {
727     if (connmgr_has_controllers(mgr)
728         && mgr->fail_mode == OFPROTO_FAIL_STANDALONE) {
729         if (!mgr->fail_open) {
730             mgr->fail_open = fail_open_create(mgr->ofproto, mgr);
731         }
732     } else {
733         fail_open_destroy(mgr->fail_open);
734         mgr->fail_open = NULL;
735     }
736 }
737
738 static int
739 set_pvconns(struct pvconn ***pvconnsp, size_t *n_pvconnsp,
740             const struct sset *sset)
741 {
742     struct pvconn **pvconns = *pvconnsp;
743     size_t n_pvconns = *n_pvconnsp;
744     const char *name;
745     int retval = 0;
746     size_t i;
747
748     for (i = 0; i < n_pvconns; i++) {
749         pvconn_close(pvconns[i]);
750     }
751     free(pvconns);
752
753     pvconns = xmalloc(sset_count(sset) * sizeof *pvconns);
754     n_pvconns = 0;
755     SSET_FOR_EACH (name, sset) {
756         struct pvconn *pvconn;
757         int error;
758         error = pvconn_open(name, 0, 0, &pvconn);
759         if (!error) {
760             pvconns[n_pvconns++] = pvconn;
761         } else {
762             VLOG_ERR("failed to listen on %s: %s", name, ovs_strerror(error));
763             if (!retval) {
764                 retval = error;
765             }
766         }
767     }
768
769     *pvconnsp = pvconns;
770     *n_pvconnsp = n_pvconns;
771
772     return retval;
773 }
774
775 /* Returns a "preference level" for snooping 'ofconn'.  A higher return value
776  * means that 'ofconn' is more interesting for monitoring than a lower return
777  * value. */
778 static int
779 snoop_preference(const struct ofconn *ofconn)
780 {
781     switch (ofconn->role) {
782     case OFPCR12_ROLE_MASTER:
783         return 3;
784     case OFPCR12_ROLE_EQUAL:
785         return 2;
786     case OFPCR12_ROLE_SLAVE:
787         return 1;
788     case OFPCR12_ROLE_NOCHANGE:
789     default:
790         /* Shouldn't happen. */
791         return 0;
792     }
793 }
794
795 /* One of 'mgr''s "snoop" pvconns has accepted a new connection on 'vconn'.
796  * Connects this vconn to a controller. */
797 static void
798 add_snooper(struct connmgr *mgr, struct vconn *vconn)
799 {
800     struct ofconn *ofconn, *best;
801
802     /* Pick a controller for monitoring. */
803     best = NULL;
804     LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
805         if (ofconn->type == OFCONN_PRIMARY
806             && (!best || snoop_preference(ofconn) > snoop_preference(best))) {
807             best = ofconn;
808         }
809     }
810
811     if (best) {
812         rconn_add_monitor(best->rconn, vconn);
813     } else {
814         VLOG_INFO_RL(&rl, "no controller connection to snoop");
815         vconn_close(vconn);
816     }
817 }
818 \f
819 /* Public ofconn functions. */
820
821 /* Returns the connection type, either OFCONN_PRIMARY or OFCONN_SERVICE. */
822 enum ofconn_type
823 ofconn_get_type(const struct ofconn *ofconn)
824 {
825     return ofconn->type;
826 }
827
828 /* If a master election id is defined, stores it into '*idp' and returns
829  * true.  Otherwise, stores UINT64_MAX into '*idp' and returns false. */
830 bool
831 ofconn_get_master_election_id(const struct ofconn *ofconn, uint64_t *idp)
832 {
833     *idp = (ofconn->connmgr->master_election_id_defined
834             ? ofconn->connmgr->master_election_id
835             : UINT64_MAX);
836     return ofconn->connmgr->master_election_id_defined;
837 }
838
839 /* Sets the master election id.
840  *
841  * Returns true if successful, false if the id is stale
842  */
843 bool
844 ofconn_set_master_election_id(struct ofconn *ofconn, uint64_t id)
845 {
846     if (ofconn->connmgr->master_election_id_defined
847         &&
848         /* Unsigned difference interpreted as a two's complement signed
849          * value */
850         (int64_t)(id - ofconn->connmgr->master_election_id) < 0) {
851         return false;
852     }
853     ofconn->connmgr->master_election_id = id;
854     ofconn->connmgr->master_election_id_defined = true;
855
856     return true;
857 }
858
859 /* Returns the role configured for 'ofconn'.
860  *
861  * The default role, if no other role has been set, is OFPCR12_ROLE_EQUAL. */
862 enum ofp12_controller_role
863 ofconn_get_role(const struct ofconn *ofconn)
864 {
865     return ofconn->role;
866 }
867
868 /* Changes 'ofconn''s role to 'role'.  If 'role' is OFPCR12_ROLE_MASTER then
869  * any existing master is demoted to a slave. */
870 void
871 ofconn_set_role(struct ofconn *ofconn, enum ofp12_controller_role role)
872 {
873     if (role == OFPCR12_ROLE_MASTER) {
874         struct ofconn *other;
875
876         HMAP_FOR_EACH (other, hmap_node, &ofconn->connmgr->controllers) {
877             if (other->role == OFPCR12_ROLE_MASTER) {
878                 other->role = OFPCR12_ROLE_SLAVE;
879             }
880         }
881     }
882     ofconn->role = role;
883 }
884
885 void
886 ofconn_set_invalid_ttl_to_controller(struct ofconn *ofconn, bool enable)
887 {
888     uint32_t bit = 1u << OFPR_INVALID_TTL;
889     if (enable) {
890         ofconn->master_async_config[OAM_PACKET_IN] |= bit;
891     } else {
892         ofconn->master_async_config[OAM_PACKET_IN] &= ~bit;
893     }
894 }
895
896 bool
897 ofconn_get_invalid_ttl_to_controller(struct ofconn *ofconn)
898 {
899     uint32_t bit = 1u << OFPR_INVALID_TTL;
900     return (ofconn->master_async_config[OAM_PACKET_IN] & bit) != 0;
901 }
902
903 /* Returns the currently configured protocol for 'ofconn', one of OFPUTIL_P_*.
904  *
905  * Returns OFPUTIL_P_NONE, which is not a valid protocol, if 'ofconn' hasn't
906  * completed version negotiation.  This can't happen if at least one OpenFlow
907  * message, other than OFPT_HELLO, has been received on the connection (such as
908  * in ofproto.c's message handling code), since version negotiation is a
909  * prerequisite for starting to receive messages.  This means that
910  * OFPUTIL_P_NONE is a special case that most callers need not worry about. */
911 enum ofputil_protocol
912 ofconn_get_protocol(const struct ofconn *ofconn)
913 {
914     if (ofconn->protocol == OFPUTIL_P_NONE &&
915         rconn_is_connected(ofconn->rconn)) {
916         int version = rconn_get_version(ofconn->rconn);
917         if (version > 0) {
918             ofconn_set_protocol(CONST_CAST(struct ofconn *, ofconn),
919                                 ofputil_protocol_from_ofp_version(version));
920         }
921     }
922
923     return ofconn->protocol;
924 }
925
926 /* Sets the protocol for 'ofconn' to 'protocol' (one of OFPUTIL_P_*).
927  *
928  * (This doesn't actually send anything to accomplish this.  Presumably the
929  * caller already did that.) */
930 void
931 ofconn_set_protocol(struct ofconn *ofconn, enum ofputil_protocol protocol)
932 {
933     ofconn->protocol = protocol;
934 }
935
936 /* Returns the currently configured packet in format for 'ofconn', one of
937  * NXPIF_*.
938  *
939  * The default, if no other format has been set, is NXPIF_OPENFLOW10. */
940 enum nx_packet_in_format
941 ofconn_get_packet_in_format(struct ofconn *ofconn)
942 {
943     return ofconn->packet_in_format;
944 }
945
946 /* Sets the packet in format for 'ofconn' to 'packet_in_format' (one of
947  * NXPIF_*). */
948 void
949 ofconn_set_packet_in_format(struct ofconn *ofconn,
950                             enum nx_packet_in_format packet_in_format)
951 {
952     ofconn->packet_in_format = packet_in_format;
953 }
954
955 /* Sets the controller connection ID for 'ofconn' to 'controller_id'.
956  *
957  * The connection controller ID is used for OFPP_CONTROLLER and
958  * NXAST_CONTROLLER actions.  See "struct nx_action_controller" for details. */
959 void
960 ofconn_set_controller_id(struct ofconn *ofconn, uint16_t controller_id)
961 {
962     ofconn->controller_id = controller_id;
963 }
964
965 /* Returns the default miss send length for 'ofconn'. */
966 int
967 ofconn_get_miss_send_len(const struct ofconn *ofconn)
968 {
969     return ofconn->miss_send_len;
970 }
971
972 /* Sets the default miss send length for 'ofconn' to 'miss_send_len'. */
973 void
974 ofconn_set_miss_send_len(struct ofconn *ofconn, int miss_send_len)
975 {
976     ofconn->miss_send_len = miss_send_len;
977 }
978
979 void
980 ofconn_set_async_config(struct ofconn *ofconn,
981                         const uint32_t master_masks[OAM_N_TYPES],
982                         const uint32_t slave_masks[OAM_N_TYPES])
983 {
984     size_t size = sizeof ofconn->master_async_config;
985     memcpy(ofconn->master_async_config, master_masks, size);
986     memcpy(ofconn->slave_async_config, slave_masks, size);
987 }
988
989 /* Sends 'msg' on 'ofconn', accounting it as a reply.  (If there is a
990  * sufficient number of OpenFlow replies in-flight on a single ofconn, then the
991  * connmgr will stop accepting new OpenFlow requests on that ofconn until the
992  * controller has accepted some of the replies.) */
993 void
994 ofconn_send_reply(const struct ofconn *ofconn, struct ofpbuf *msg)
995 {
996     ofconn_send(ofconn, msg, ofconn->reply_counter);
997 }
998
999 /* Sends each of the messages in list 'replies' on 'ofconn' in order,
1000  * accounting them as replies. */
1001 void
1002 ofconn_send_replies(const struct ofconn *ofconn, struct list *replies)
1003 {
1004     struct ofpbuf *reply, *next;
1005
1006     LIST_FOR_EACH_SAFE (reply, next, list_node, replies) {
1007         list_remove(&reply->list_node);
1008         ofconn_send_reply(ofconn, reply);
1009     }
1010 }
1011
1012 /* Sends 'error' on 'ofconn', as a reply to 'request'.  Only at most the
1013  * first 64 bytes of 'request' are used. */
1014 void
1015 ofconn_send_error(const struct ofconn *ofconn,
1016                   const struct ofp_header *request, enum ofperr error)
1017 {
1018     static struct vlog_rate_limit err_rl = VLOG_RATE_LIMIT_INIT(10, 10);
1019     struct ofpbuf *reply;
1020
1021     reply = ofperr_encode_reply(error, request);
1022     if (!VLOG_DROP_INFO(&err_rl)) {
1023         const char *type_name;
1024         size_t request_len;
1025         enum ofpraw raw;
1026
1027         request_len = ntohs(request->length);
1028         type_name = (!ofpraw_decode_partial(&raw, request,
1029                                             MIN(64, request_len))
1030                      ? ofpraw_get_name(raw)
1031                      : "invalid");
1032
1033         VLOG_INFO("%s: sending %s error reply to %s message",
1034                   rconn_get_name(ofconn->rconn), ofperr_to_string(error),
1035                   type_name);
1036     }
1037     ofconn_send_reply(ofconn, reply);
1038 }
1039
1040 /* Same as pktbuf_retrieve(), using the pktbuf owned by 'ofconn'. */
1041 enum ofperr
1042 ofconn_pktbuf_retrieve(struct ofconn *ofconn, uint32_t id,
1043                        struct ofpbuf **bufferp, ofp_port_t *in_port)
1044 {
1045     return pktbuf_retrieve(ofconn->pktbuf, id, bufferp, in_port);
1046 }
1047
1048 /* Returns true if 'ofconn' has any pending opgroups. */
1049 bool
1050 ofconn_has_pending_opgroups(const struct ofconn *ofconn)
1051 {
1052     return !list_is_empty(&ofconn->opgroups);
1053 }
1054
1055 /* Adds 'ofconn_node' to 'ofconn''s list of pending opgroups.
1056  *
1057  * If 'ofconn' is destroyed or its connection drops, then 'ofconn' will remove
1058  * 'ofconn_node' from the list and re-initialize it with list_init().  The
1059  * client may, therefore, use list_is_empty(ofconn_node) to determine whether
1060  * 'ofconn_node' is still associated with an active ofconn.
1061  *
1062  * The client may also remove ofconn_node from the list itself, with
1063  * list_remove(). */
1064 void
1065 ofconn_add_opgroup(struct ofconn *ofconn, struct list *ofconn_node)
1066 {
1067     list_push_back(&ofconn->opgroups, ofconn_node);
1068 }
1069 \f
1070 /* Private ofconn functions. */
1071
1072 static const char *
1073 ofconn_get_target(const struct ofconn *ofconn)
1074 {
1075     return rconn_get_target(ofconn->rconn);
1076 }
1077
1078 static struct ofconn *
1079 ofconn_create(struct connmgr *mgr, struct rconn *rconn, enum ofconn_type type,
1080               bool enable_async_msgs)
1081 {
1082     struct ofconn *ofconn;
1083
1084     ofconn = xzalloc(sizeof *ofconn);
1085     ofconn->connmgr = mgr;
1086     list_push_back(&mgr->all_conns, &ofconn->node);
1087     ofconn->rconn = rconn;
1088     ofconn->type = type;
1089     ofconn->enable_async_msgs = enable_async_msgs;
1090
1091     list_init(&ofconn->opgroups);
1092
1093     hmap_init(&ofconn->monitors);
1094     list_init(&ofconn->updates);
1095
1096     ofconn_flush(ofconn);
1097
1098     return ofconn;
1099 }
1100
1101 /* Clears all of the state in 'ofconn' that should not persist from one
1102  * connection to the next. */
1103 static void
1104 ofconn_flush(struct ofconn *ofconn)
1105 {
1106     struct ofmonitor *monitor, *next_monitor;
1107     int i;
1108
1109     ofconn->role = OFPCR12_ROLE_EQUAL;
1110     ofconn_set_protocol(ofconn, OFPUTIL_P_NONE);
1111     ofconn->packet_in_format = NXPIF_OPENFLOW10;
1112
1113     /* Disassociate 'ofconn' from all of the ofopgroups that it initiated that
1114      * have not yet completed.  (Those ofopgroups will still run to completion
1115      * in the usual way, but any errors that they run into will not be reported
1116      * on any OpenFlow channel.)
1117      *
1118      * Also discard any blocked operation on 'ofconn'. */
1119     while (!list_is_empty(&ofconn->opgroups)) {
1120         list_init(list_pop_front(&ofconn->opgroups));
1121     }
1122     ofpbuf_delete(ofconn->blocked);
1123     ofconn->blocked = NULL;
1124
1125     rconn_packet_counter_destroy(ofconn->packet_in_counter);
1126     ofconn->packet_in_counter = rconn_packet_counter_create();
1127     for (i = 0; i < N_SCHEDULERS; i++) {
1128         if (ofconn->schedulers[i]) {
1129             int rate, burst;
1130
1131             pinsched_get_limits(ofconn->schedulers[i], &rate, &burst);
1132             pinsched_destroy(ofconn->schedulers[i]);
1133             ofconn->schedulers[i] = pinsched_create(rate, burst);
1134         }
1135     }
1136     if (ofconn->pktbuf) {
1137         pktbuf_destroy(ofconn->pktbuf);
1138         ofconn->pktbuf = pktbuf_create();
1139     }
1140     ofconn->miss_send_len = (ofconn->type == OFCONN_PRIMARY
1141                              ? OFP_DEFAULT_MISS_SEND_LEN
1142                              : 0);
1143     ofconn->controller_id = 0;
1144
1145     rconn_packet_counter_destroy(ofconn->reply_counter);
1146     ofconn->reply_counter = rconn_packet_counter_create();
1147
1148     if (ofconn->enable_async_msgs) {
1149         uint32_t *master = ofconn->master_async_config;
1150         uint32_t *slave = ofconn->slave_async_config;
1151
1152         /* "master" and "other" roles get all asynchronous messages by default,
1153          * except that the controller needs to enable nonstandard "packet-in"
1154          * reasons itself. */
1155         master[OAM_PACKET_IN] = (1u << OFPR_NO_MATCH) | (1u << OFPR_ACTION);
1156         master[OAM_PORT_STATUS] = ((1u << OFPPR_ADD)
1157                                    | (1u << OFPPR_DELETE)
1158                                    | (1u << OFPPR_MODIFY));
1159         master[OAM_FLOW_REMOVED] = ((1u << OFPRR_IDLE_TIMEOUT)
1160                                     | (1u << OFPRR_HARD_TIMEOUT)
1161                                     | (1u << OFPRR_DELETE));
1162
1163         /* "slave" role gets port status updates by default. */
1164         slave[OAM_PACKET_IN] = 0;
1165         slave[OAM_PORT_STATUS] = ((1u << OFPPR_ADD)
1166                                   | (1u << OFPPR_DELETE)
1167                                   | (1u << OFPPR_MODIFY));
1168         slave[OAM_FLOW_REMOVED] = 0;
1169     } else {
1170         memset(ofconn->master_async_config, 0,
1171                sizeof ofconn->master_async_config);
1172         memset(ofconn->slave_async_config, 0,
1173                sizeof ofconn->slave_async_config);
1174     }
1175
1176     HMAP_FOR_EACH_SAFE (monitor, next_monitor, ofconn_node,
1177                         &ofconn->monitors) {
1178         ofmonitor_destroy(monitor);
1179     }
1180     rconn_packet_counter_destroy(ofconn->monitor_counter);
1181     ofconn->monitor_counter = rconn_packet_counter_create();
1182     ofpbuf_list_delete(&ofconn->updates); /* ...but it should be empty. */
1183 }
1184
1185 static void
1186 ofconn_destroy(struct ofconn *ofconn)
1187 {
1188     ofconn_flush(ofconn);
1189
1190     if (ofconn->type == OFCONN_PRIMARY) {
1191         hmap_remove(&ofconn->connmgr->controllers, &ofconn->hmap_node);
1192     }
1193
1194     hmap_destroy(&ofconn->monitors);
1195     list_remove(&ofconn->node);
1196     rconn_destroy(ofconn->rconn);
1197     rconn_packet_counter_destroy(ofconn->packet_in_counter);
1198     rconn_packet_counter_destroy(ofconn->reply_counter);
1199     pktbuf_destroy(ofconn->pktbuf);
1200     rconn_packet_counter_destroy(ofconn->monitor_counter);
1201     free(ofconn);
1202 }
1203
1204 /* Reconfigures 'ofconn' to match 'c'.  'ofconn' and 'c' must have the same
1205  * target. */
1206 static void
1207 ofconn_reconfigure(struct ofconn *ofconn, const struct ofproto_controller *c)
1208 {
1209     int probe_interval;
1210
1211     ofconn->band = c->band;
1212     ofconn->enable_async_msgs = c->enable_async_msgs;
1213
1214     rconn_set_max_backoff(ofconn->rconn, c->max_backoff);
1215
1216     probe_interval = c->probe_interval ? MAX(c->probe_interval, 5) : 0;
1217     rconn_set_probe_interval(ofconn->rconn, probe_interval);
1218
1219     ofconn_set_rate_limit(ofconn, c->rate_limit, c->burst_limit);
1220
1221     /* If dscp value changed reconnect. */
1222     if (c->dscp != rconn_get_dscp(ofconn->rconn)) {
1223         rconn_set_dscp(ofconn->rconn, c->dscp);
1224         rconn_reconnect(ofconn->rconn);
1225     }
1226 }
1227
1228 /* Returns true if it makes sense for 'ofconn' to receive and process OpenFlow
1229  * messages. */
1230 static bool
1231 ofconn_may_recv(const struct ofconn *ofconn)
1232 {
1233     int count = rconn_packet_counter_n_packets(ofconn->reply_counter);
1234     return (!ofconn->blocked || ofconn->retry) && count < OFCONN_REPLY_MAX;
1235 }
1236
1237 static void
1238 ofconn_run(struct ofconn *ofconn,
1239            bool (*handle_openflow)(struct ofconn *,
1240                                    const struct ofpbuf *ofp_msg))
1241 {
1242     struct connmgr *mgr = ofconn->connmgr;
1243     size_t i;
1244
1245     for (i = 0; i < N_SCHEDULERS; i++) {
1246         pinsched_run(ofconn->schedulers[i], do_send_packet_in, ofconn);
1247     }
1248
1249     rconn_run(ofconn->rconn);
1250
1251     if (handle_openflow) {
1252         /* Limit the number of iterations to avoid starving other tasks. */
1253         for (i = 0; i < 50 && ofconn_may_recv(ofconn); i++) {
1254             struct ofpbuf *of_msg;
1255
1256             of_msg = (ofconn->blocked
1257                       ? ofconn->blocked
1258                       : rconn_recv(ofconn->rconn));
1259             if (!of_msg) {
1260                 break;
1261             }
1262             if (mgr->fail_open) {
1263                 fail_open_maybe_recover(mgr->fail_open);
1264             }
1265
1266             if (handle_openflow(ofconn, of_msg)) {
1267                 ofpbuf_delete(of_msg);
1268                 ofconn->blocked = NULL;
1269             } else {
1270                 ofconn->blocked = of_msg;
1271                 ofconn->retry = false;
1272             }
1273         }
1274     }
1275
1276     if (!rconn_is_alive(ofconn->rconn)) {
1277         ofconn_destroy(ofconn);
1278     } else if (!rconn_is_connected(ofconn->rconn)) {
1279         ofconn_flush(ofconn);
1280     }
1281 }
1282
1283 static void
1284 ofconn_wait(struct ofconn *ofconn, bool handling_openflow)
1285 {
1286     int i;
1287
1288     for (i = 0; i < N_SCHEDULERS; i++) {
1289         pinsched_wait(ofconn->schedulers[i]);
1290     }
1291     rconn_run_wait(ofconn->rconn);
1292     if (handling_openflow && ofconn_may_recv(ofconn)) {
1293         rconn_recv_wait(ofconn->rconn);
1294     }
1295 }
1296
1297 /* Returns true if 'ofconn' should receive asynchronous messages of the given
1298  * OAM_* 'type' and 'reason', which should be a OFPR_* value for OAM_PACKET_IN,
1299  * a OFPPR_* value for OAM_PORT_STATUS, or an OFPRR_* value for
1300  * OAM_FLOW_REMOVED.  Returns false if the message should not be sent on
1301  * 'ofconn'. */
1302 static bool
1303 ofconn_receives_async_msg(const struct ofconn *ofconn,
1304                           enum ofconn_async_msg_type type,
1305                           unsigned int reason)
1306 {
1307     const uint32_t *async_config;
1308
1309     ovs_assert(reason < 32);
1310     ovs_assert((unsigned int) type < OAM_N_TYPES);
1311
1312     if (ofconn_get_protocol(ofconn) == OFPUTIL_P_NONE
1313         || !rconn_is_connected(ofconn->rconn)) {
1314         return false;
1315     }
1316
1317     /* Keep the following code in sync with the documentation in the
1318      * "Asynchronous Messages" section in DESIGN. */
1319
1320     if (ofconn->type == OFCONN_SERVICE && !ofconn->miss_send_len) {
1321         /* Service connections don't get asynchronous messages unless they have
1322          * explicitly asked for them by setting a nonzero miss send length. */
1323         return false;
1324     }
1325
1326     async_config = (ofconn->role == OFPCR12_ROLE_SLAVE
1327                     ? ofconn->slave_async_config
1328                     : ofconn->master_async_config);
1329     if (!(async_config[type] & (1u << reason))) {
1330         return false;
1331     }
1332
1333     return true;
1334 }
1335
1336 /* Returns a human-readable name for an OpenFlow connection between 'mgr' and
1337  * 'target', suitable for use in log messages for identifying the connection.
1338  *
1339  * The name is dynamically allocated.  The caller should free it (with free())
1340  * when it is no longer needed. */
1341 static char *
1342 ofconn_make_name(const struct connmgr *mgr, const char *target)
1343 {
1344     return xasprintf("%s<->%s", mgr->name, target);
1345 }
1346
1347 static void
1348 ofconn_set_rate_limit(struct ofconn *ofconn, int rate, int burst)
1349 {
1350     int i;
1351
1352     for (i = 0; i < N_SCHEDULERS; i++) {
1353         struct pinsched **s = &ofconn->schedulers[i];
1354
1355         if (rate > 0) {
1356             if (!*s) {
1357                 *s = pinsched_create(rate, burst);
1358             } else {
1359                 pinsched_set_limits(*s, rate, burst);
1360             }
1361         } else {
1362             pinsched_destroy(*s);
1363             *s = NULL;
1364         }
1365     }
1366 }
1367
1368 static void
1369 ofconn_send(const struct ofconn *ofconn, struct ofpbuf *msg,
1370             struct rconn_packet_counter *counter)
1371 {
1372     ofpmsg_update_length(msg);
1373     rconn_send(ofconn->rconn, msg, counter);
1374 }
1375 \f
1376 /* Sending asynchronous messages. */
1377
1378 static void schedule_packet_in(struct ofconn *, struct ofputil_packet_in);
1379
1380 /* Sends an OFPT_PORT_STATUS message with 'opp' and 'reason' to appropriate
1381  * controllers managed by 'mgr'. */
1382 void
1383 connmgr_send_port_status(struct connmgr *mgr,
1384                          const struct ofputil_phy_port *pp, uint8_t reason)
1385 {
1386     /* XXX Should limit the number of queued port status change messages. */
1387     struct ofputil_port_status ps;
1388     struct ofconn *ofconn;
1389
1390     ps.reason = reason;
1391     ps.desc = *pp;
1392     LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
1393         if (ofconn_receives_async_msg(ofconn, OAM_PORT_STATUS, reason)) {
1394             struct ofpbuf *msg;
1395
1396             msg = ofputil_encode_port_status(&ps, ofconn_get_protocol(ofconn));
1397             ofconn_send(ofconn, msg, NULL);
1398         }
1399     }
1400 }
1401
1402 /* Sends an OFPT_FLOW_REMOVED or NXT_FLOW_REMOVED message based on 'fr' to
1403  * appropriate controllers managed by 'mgr'. */
1404 void
1405 connmgr_send_flow_removed(struct connmgr *mgr,
1406                           const struct ofputil_flow_removed *fr)
1407 {
1408     struct ofconn *ofconn;
1409
1410     LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
1411         if (ofconn_receives_async_msg(ofconn, OAM_FLOW_REMOVED, fr->reason)) {
1412             struct ofpbuf *msg;
1413
1414             /* Account flow expirations as replies to OpenFlow requests.  That
1415              * works because preventing OpenFlow requests from being processed
1416              * also prevents new flows from being added (and expiring).  (It
1417              * also prevents processing OpenFlow requests that would not add
1418              * new flows, so it is imperfect.) */
1419             msg = ofputil_encode_flow_removed(fr, ofconn_get_protocol(ofconn));
1420             ofconn_send_reply(ofconn, msg);
1421         }
1422     }
1423 }
1424
1425 /* Given 'pin', sends an OFPT_PACKET_IN message to each OpenFlow controller as
1426  * necessary according to their individual configurations.
1427  *
1428  * The caller doesn't need to fill in pin->buffer_id or pin->total_len. */
1429 void
1430 connmgr_send_packet_in(struct connmgr *mgr,
1431                        const struct ofputil_packet_in *pin)
1432 {
1433     struct ofconn *ofconn;
1434
1435     LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
1436         if (ofconn_receives_async_msg(ofconn, OAM_PACKET_IN, pin->reason)
1437             && ofconn->controller_id == pin->controller_id) {
1438             schedule_packet_in(ofconn, *pin);
1439         }
1440     }
1441 }
1442
1443 /* pinsched callback for sending 'ofp_packet_in' on 'ofconn'. */
1444 static void
1445 do_send_packet_in(struct ofpbuf *ofp_packet_in, void *ofconn_)
1446 {
1447     struct ofconn *ofconn = ofconn_;
1448
1449     rconn_send_with_limit(ofconn->rconn, ofp_packet_in,
1450                           ofconn->packet_in_counter, 100);
1451 }
1452
1453 /* Takes 'pin', composes an OpenFlow packet-in message from it, and passes it
1454  * to 'ofconn''s packet scheduler for sending. */
1455 static void
1456 schedule_packet_in(struct ofconn *ofconn, struct ofputil_packet_in pin)
1457 {
1458     struct connmgr *mgr = ofconn->connmgr;
1459
1460     pin.total_len = pin.packet_len;
1461
1462     /* Get OpenFlow buffer_id. */
1463     if (pin.reason == OFPR_ACTION) {
1464         pin.buffer_id = UINT32_MAX;
1465     } else if (mgr->fail_open && fail_open_is_active(mgr->fail_open)) {
1466         pin.buffer_id = pktbuf_get_null();
1467     } else if (!ofconn->pktbuf) {
1468         pin.buffer_id = UINT32_MAX;
1469     } else {
1470         pin.buffer_id = pktbuf_save(ofconn->pktbuf, pin.packet, pin.packet_len,
1471                                     pin.fmd.in_port);
1472     }
1473
1474     /* Figure out how much of the packet to send. */
1475     if (pin.reason == OFPR_NO_MATCH) {
1476         pin.send_len = pin.packet_len;
1477     } else {
1478         /* Caller should have initialized 'send_len' to 'max_len' specified in
1479          * output action. */
1480     }
1481     if (pin.buffer_id != UINT32_MAX) {
1482         pin.send_len = MIN(pin.send_len, ofconn->miss_send_len);
1483     }
1484
1485     /* Make OFPT_PACKET_IN and hand over to packet scheduler.  It might
1486      * immediately call into do_send_packet_in() or it might buffer it for a
1487      * while (until a later call to pinsched_run()). */
1488     pinsched_send(ofconn->schedulers[pin.reason == OFPR_NO_MATCH ? 0 : 1],
1489                   pin.fmd.in_port,
1490                   ofputil_encode_packet_in(&pin, ofconn_get_protocol(ofconn),
1491                                            ofconn->packet_in_format),
1492                   do_send_packet_in, ofconn);
1493 }
1494 \f
1495 /* Fail-open settings. */
1496
1497 /* Returns the failure handling mode (OFPROTO_FAIL_SECURE or
1498  * OFPROTO_FAIL_STANDALONE) for 'mgr'. */
1499 enum ofproto_fail_mode
1500 connmgr_get_fail_mode(const struct connmgr *mgr)
1501 {
1502     return mgr->fail_mode;
1503 }
1504
1505 /* Sets the failure handling mode for 'mgr' to 'fail_mode' (either
1506  * OFPROTO_FAIL_SECURE or OFPROTO_FAIL_STANDALONE). */
1507 void
1508 connmgr_set_fail_mode(struct connmgr *mgr, enum ofproto_fail_mode fail_mode)
1509 {
1510     if (mgr->fail_mode != fail_mode) {
1511         mgr->fail_mode = fail_mode;
1512         update_fail_open(mgr);
1513         if (!connmgr_has_controllers(mgr)) {
1514             ofproto_flush_flows(mgr->ofproto);
1515         }
1516     }
1517 }
1518 \f
1519 /* Fail-open implementation. */
1520
1521 /* Returns the longest probe interval among the primary controllers configured
1522  * on 'mgr'.  Returns 0 if there are no primary controllers. */
1523 int
1524 connmgr_get_max_probe_interval(const struct connmgr *mgr)
1525 {
1526     const struct ofconn *ofconn;
1527     int max_probe_interval;
1528
1529     max_probe_interval = 0;
1530     HMAP_FOR_EACH (ofconn, hmap_node, &mgr->controllers) {
1531         int probe_interval = rconn_get_probe_interval(ofconn->rconn);
1532         max_probe_interval = MAX(max_probe_interval, probe_interval);
1533     }
1534     return max_probe_interval;
1535 }
1536
1537 /* Returns the number of seconds for which all of 'mgr's primary controllers
1538  * have been disconnected.  Returns 0 if 'mgr' has no primary controllers. */
1539 int
1540 connmgr_failure_duration(const struct connmgr *mgr)
1541 {
1542     const struct ofconn *ofconn;
1543     int min_failure_duration;
1544
1545     if (!connmgr_has_controllers(mgr)) {
1546         return 0;
1547     }
1548
1549     min_failure_duration = INT_MAX;
1550     HMAP_FOR_EACH (ofconn, hmap_node, &mgr->controllers) {
1551         int failure_duration = rconn_failure_duration(ofconn->rconn);
1552         min_failure_duration = MIN(min_failure_duration, failure_duration);
1553     }
1554     return min_failure_duration;
1555 }
1556
1557 /* Returns true if at least one primary controller is connected (regardless of
1558  * whether those controllers are believed to have authenticated and accepted
1559  * this switch), false if none of them are connected. */
1560 bool
1561 connmgr_is_any_controller_connected(const struct connmgr *mgr)
1562 {
1563     const struct ofconn *ofconn;
1564
1565     HMAP_FOR_EACH (ofconn, hmap_node, &mgr->controllers) {
1566         if (rconn_is_connected(ofconn->rconn)) {
1567             return true;
1568         }
1569     }
1570     return false;
1571 }
1572
1573 /* Returns true if at least one primary controller is believed to have
1574  * authenticated and accepted this switch, false otherwise. */
1575 bool
1576 connmgr_is_any_controller_admitted(const struct connmgr *mgr)
1577 {
1578     const struct ofconn *ofconn;
1579
1580     HMAP_FOR_EACH (ofconn, hmap_node, &mgr->controllers) {
1581         if (rconn_is_admitted(ofconn->rconn)) {
1582             return true;
1583         }
1584     }
1585     return false;
1586 }
1587 \f
1588 /* In-band configuration. */
1589
1590 static bool any_extras_changed(const struct connmgr *,
1591                                const struct sockaddr_in *extras, size_t n);
1592
1593 /* Sets the 'n' TCP port addresses in 'extras' as ones to which 'mgr''s
1594  * in-band control should guarantee access, in the same way that in-band
1595  * control guarantees access to OpenFlow controllers. */
1596 void
1597 connmgr_set_extra_in_band_remotes(struct connmgr *mgr,
1598                                   const struct sockaddr_in *extras, size_t n)
1599 {
1600     if (!any_extras_changed(mgr, extras, n)) {
1601         return;
1602     }
1603
1604     free(mgr->extra_in_band_remotes);
1605     mgr->n_extra_remotes = n;
1606     mgr->extra_in_band_remotes = xmemdup(extras, n * sizeof *extras);
1607
1608     update_in_band_remotes(mgr);
1609 }
1610
1611 /* Sets the OpenFlow queue used by flows set up by in-band control on
1612  * 'mgr' to 'queue_id'.  If 'queue_id' is negative, then in-band control
1613  * flows will use the default queue. */
1614 void
1615 connmgr_set_in_band_queue(struct connmgr *mgr, int queue_id)
1616 {
1617     if (queue_id != mgr->in_band_queue) {
1618         mgr->in_band_queue = queue_id;
1619         update_in_band_remotes(mgr);
1620     }
1621 }
1622
1623 static bool
1624 any_extras_changed(const struct connmgr *mgr,
1625                    const struct sockaddr_in *extras, size_t n)
1626 {
1627     size_t i;
1628
1629     if (n != mgr->n_extra_remotes) {
1630         return true;
1631     }
1632
1633     for (i = 0; i < n; i++) {
1634         const struct sockaddr_in *old = &mgr->extra_in_band_remotes[i];
1635         const struct sockaddr_in *new = &extras[i];
1636
1637         if (old->sin_addr.s_addr != new->sin_addr.s_addr ||
1638             old->sin_port != new->sin_port) {
1639             return true;
1640         }
1641     }
1642
1643     return false;
1644 }
1645 \f
1646 /* In-band implementation. */
1647
1648 bool
1649 connmgr_has_in_band(struct connmgr *mgr)
1650 {
1651     return mgr->in_band != NULL;
1652 }
1653 \f
1654 /* Fail-open and in-band implementation. */
1655
1656 /* Called by 'ofproto' after all flows have been flushed, to allow fail-open
1657  * and standalone mode to re-create their flows.
1658  *
1659  * In-band control has more sophisticated code that manages flows itself. */
1660 void
1661 connmgr_flushed(struct connmgr *mgr)
1662     OVS_EXCLUDED(ofproto_mutex)
1663 {
1664     if (mgr->fail_open) {
1665         fail_open_flushed(mgr->fail_open);
1666     }
1667
1668     /* If there are no controllers and we're in standalone mode, set up a flow
1669      * that matches every packet and directs them to OFPP_NORMAL (which goes to
1670      * us).  Otherwise, the switch is in secure mode and we won't pass any
1671      * traffic until a controller has been defined and it tells us to do so. */
1672     if (!connmgr_has_controllers(mgr)
1673         && mgr->fail_mode == OFPROTO_FAIL_STANDALONE) {
1674         struct ofpbuf ofpacts;
1675         struct match match;
1676
1677         ofpbuf_init(&ofpacts, OFPACT_OUTPUT_SIZE);
1678         ofpact_put_OUTPUT(&ofpacts)->port = OFPP_NORMAL;
1679         ofpact_pad(&ofpacts);
1680
1681         match_init_catchall(&match);
1682         ofproto_add_flow(mgr->ofproto, &match, 0, ofpacts.data, ofpacts.size);
1683
1684         ofpbuf_uninit(&ofpacts);
1685     }
1686 }
1687 \f
1688 /* Creates a new ofservice for 'target' in 'mgr'.  Returns 0 if successful,
1689  * otherwise a positive errno value.
1690  *
1691  * ofservice_reconfigure() must be called to fully configure the new
1692  * ofservice. */
1693 static int
1694 ofservice_create(struct connmgr *mgr, const char *target,
1695                  uint32_t allowed_versions, uint8_t dscp)
1696 {
1697     struct ofservice *ofservice;
1698     struct pvconn *pvconn;
1699     int error;
1700
1701     error = pvconn_open(target, allowed_versions, dscp, &pvconn);
1702     if (error) {
1703         return error;
1704     }
1705
1706     ofservice = xzalloc(sizeof *ofservice);
1707     hmap_insert(&mgr->services, &ofservice->node, hash_string(target, 0));
1708     ofservice->pvconn = pvconn;
1709     ofservice->allowed_versions = allowed_versions;
1710
1711     return 0;
1712 }
1713
1714 static void
1715 ofservice_destroy(struct connmgr *mgr, struct ofservice *ofservice)
1716 {
1717     hmap_remove(&mgr->services, &ofservice->node);
1718     pvconn_close(ofservice->pvconn);
1719     free(ofservice);
1720 }
1721
1722 static void
1723 ofservice_reconfigure(struct ofservice *ofservice,
1724                       const struct ofproto_controller *c)
1725 {
1726     ofservice->probe_interval = c->probe_interval;
1727     ofservice->rate_limit = c->rate_limit;
1728     ofservice->burst_limit = c->burst_limit;
1729     ofservice->enable_async_msgs = c->enable_async_msgs;
1730     ofservice->dscp = c->dscp;
1731 }
1732
1733 /* Finds and returns the ofservice within 'mgr' that has the given
1734  * 'target', or a null pointer if none exists. */
1735 static struct ofservice *
1736 ofservice_lookup(struct connmgr *mgr, const char *target)
1737 {
1738     struct ofservice *ofservice;
1739
1740     HMAP_FOR_EACH_WITH_HASH (ofservice, node, hash_string(target, 0),
1741                              &mgr->services) {
1742         if (!strcmp(pvconn_get_name(ofservice->pvconn), target)) {
1743             return ofservice;
1744         }
1745     }
1746     return NULL;
1747 }
1748 \f
1749 /* Flow monitors (NXST_FLOW_MONITOR). */
1750
1751 /* A counter incremented when something significant happens to an OpenFlow
1752  * rule.
1753  *
1754  *     - When a rule is added, its 'add_seqno' and 'modify_seqno' are set to
1755  *       the current value (which is then incremented).
1756  *
1757  *     - When a rule is modified, its 'modify_seqno' is set to the current
1758  *       value (which is then incremented).
1759  *
1760  * Thus, by comparing an old value of monitor_seqno against a rule's
1761  * 'add_seqno', one can tell whether the rule was added before or after the old
1762  * value was read, and similarly for 'modify_seqno'.
1763  *
1764  * 32 bits should normally be sufficient (and would be nice, to save space in
1765  * each rule) but then we'd have to have some special cases for wraparound.
1766  *
1767  * We initialize monitor_seqno to 1 to allow 0 to be used as an invalid
1768  * value. */
1769 static uint64_t monitor_seqno = 1;
1770
1771 COVERAGE_DEFINE(ofmonitor_pause);
1772 COVERAGE_DEFINE(ofmonitor_resume);
1773
1774 enum ofperr
1775 ofmonitor_create(const struct ofputil_flow_monitor_request *request,
1776                  struct ofconn *ofconn, struct ofmonitor **monitorp)
1777 {
1778     struct ofmonitor *m;
1779
1780     *monitorp = NULL;
1781
1782     m = ofmonitor_lookup(ofconn, request->id);
1783     if (m) {
1784         return OFPERR_NXBRC_FM_DUPLICATE_ID;
1785     }
1786
1787     m = xmalloc(sizeof *m);
1788     m->ofconn = ofconn;
1789     hmap_insert(&ofconn->monitors, &m->ofconn_node, hash_int(request->id, 0));
1790     m->id = request->id;
1791     m->flags = request->flags;
1792     m->out_port = request->out_port;
1793     m->table_id = request->table_id;
1794     minimatch_init(&m->match, &request->match);
1795
1796     *monitorp = m;
1797     return 0;
1798 }
1799
1800 struct ofmonitor *
1801 ofmonitor_lookup(struct ofconn *ofconn, uint32_t id)
1802 {
1803     struct ofmonitor *m;
1804
1805     HMAP_FOR_EACH_IN_BUCKET (m, ofconn_node, hash_int(id, 0),
1806                              &ofconn->monitors) {
1807         if (m->id == id) {
1808             return m;
1809         }
1810     }
1811     return NULL;
1812 }
1813
1814 void
1815 ofmonitor_destroy(struct ofmonitor *m)
1816 {
1817     if (m) {
1818         minimatch_destroy(&m->match);
1819         hmap_remove(&m->ofconn->monitors, &m->ofconn_node);
1820         free(m);
1821     }
1822 }
1823
1824 void
1825 ofmonitor_report(struct connmgr *mgr, struct rule *rule,
1826                  enum nx_flow_update_event event,
1827                  enum ofp_flow_removed_reason reason,
1828                  const struct ofconn *abbrev_ofconn, ovs_be32 abbrev_xid)
1829     OVS_REQUIRES(ofproto_mutex)
1830 {
1831     enum nx_flow_monitor_flags update;
1832     struct ofconn *ofconn;
1833
1834     switch (event) {
1835     case NXFME_ADDED:
1836         update = NXFMF_ADD;
1837         rule->add_seqno = rule->modify_seqno = monitor_seqno++;
1838         break;
1839
1840     case NXFME_DELETED:
1841         update = NXFMF_DELETE;
1842         break;
1843
1844     case NXFME_MODIFIED:
1845         update = NXFMF_MODIFY;
1846         rule->modify_seqno = monitor_seqno++;
1847         break;
1848
1849     default:
1850     case NXFME_ABBREV:
1851         NOT_REACHED();
1852     }
1853
1854     LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
1855         enum nx_flow_monitor_flags flags = 0;
1856         struct ofmonitor *m;
1857
1858         if (ofconn->monitor_paused) {
1859             /* Only send NXFME_DELETED notifications for flows that were added
1860              * before we paused. */
1861             if (event != NXFME_DELETED
1862                 || rule->add_seqno > ofconn->monitor_paused) {
1863                 continue;
1864             }
1865         }
1866
1867         HMAP_FOR_EACH (m, ofconn_node, &ofconn->monitors) {
1868             if (m->flags & update
1869                 && (m->table_id == 0xff || m->table_id == rule->table_id)
1870                 && ofoperation_has_out_port(rule->pending, m->out_port)
1871                 && cls_rule_is_loose_match(&rule->cr, &m->match)) {
1872                 flags |= m->flags;
1873             }
1874         }
1875
1876         if (flags) {
1877             if (list_is_empty(&ofconn->updates)) {
1878                 ofputil_start_flow_update(&ofconn->updates);
1879                 ofconn->sent_abbrev_update = false;
1880             }
1881
1882             if (ofconn != abbrev_ofconn || ofconn->monitor_paused) {
1883                 struct ofputil_flow_update fu;
1884                 struct match match;
1885
1886                 fu.event = event;
1887                 fu.reason = event == NXFME_DELETED ? reason : 0;
1888                 fu.table_id = rule->table_id;
1889                 fu.cookie = rule->flow_cookie;
1890                 minimatch_expand(&rule->cr.match, &match);
1891                 fu.match = &match;
1892                 fu.priority = rule->cr.priority;
1893
1894                 ovs_mutex_lock(&rule->mutex);
1895                 fu.idle_timeout = rule->idle_timeout;
1896                 fu.hard_timeout = rule->hard_timeout;
1897                 ovs_mutex_unlock(&rule->mutex);
1898
1899                 if (flags & NXFMF_ACTIONS) {
1900                     fu.ofpacts = rule->actions->ofpacts;
1901                     fu.ofpacts_len = rule->actions->ofpacts_len;
1902                 } else {
1903                     fu.ofpacts = NULL;
1904                     fu.ofpacts_len = 0;
1905                 }
1906                 ofputil_append_flow_update(&fu, &ofconn->updates);
1907             } else if (!ofconn->sent_abbrev_update) {
1908                 struct ofputil_flow_update fu;
1909
1910                 fu.event = NXFME_ABBREV;
1911                 fu.xid = abbrev_xid;
1912                 ofputil_append_flow_update(&fu, &ofconn->updates);
1913
1914                 ofconn->sent_abbrev_update = true;
1915             }
1916         }
1917     }
1918 }
1919
1920 void
1921 ofmonitor_flush(struct connmgr *mgr)
1922 {
1923     struct ofconn *ofconn;
1924
1925     LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
1926         struct ofpbuf *msg, *next;
1927
1928         LIST_FOR_EACH_SAFE (msg, next, list_node, &ofconn->updates) {
1929             unsigned int n_bytes;
1930
1931             list_remove(&msg->list_node);
1932             ofconn_send(ofconn, msg, ofconn->monitor_counter);
1933             n_bytes = rconn_packet_counter_n_bytes(ofconn->monitor_counter);
1934             if (!ofconn->monitor_paused && n_bytes > 128 * 1024) {
1935                 struct ofpbuf *pause;
1936
1937                 COVERAGE_INC(ofmonitor_pause);
1938                 ofconn->monitor_paused = monitor_seqno++;
1939                 pause = ofpraw_alloc_xid(OFPRAW_NXT_FLOW_MONITOR_PAUSED,
1940                                          OFP10_VERSION, htonl(0), 0);
1941                 ofconn_send(ofconn, pause, ofconn->monitor_counter);
1942             }
1943         }
1944     }
1945 }
1946
1947 static void
1948 ofmonitor_resume(struct ofconn *ofconn)
1949 {
1950     struct rule_collection rules;
1951     struct ofpbuf *resumed;
1952     struct ofmonitor *m;
1953     struct list msgs;
1954
1955     rule_collection_init(&rules);
1956     HMAP_FOR_EACH (m, ofconn_node, &ofconn->monitors) {
1957         ofmonitor_collect_resume_rules(m, ofconn->monitor_paused, &rules);
1958     }
1959
1960     list_init(&msgs);
1961     ofmonitor_compose_refresh_updates(&rules, &msgs);
1962
1963     resumed = ofpraw_alloc_xid(OFPRAW_NXT_FLOW_MONITOR_RESUMED, OFP10_VERSION,
1964                                htonl(0), 0);
1965     list_push_back(&msgs, &resumed->list_node);
1966     ofconn_send_replies(ofconn, &msgs);
1967
1968     ofconn->monitor_paused = 0;
1969 }
1970
1971 static void
1972 ofmonitor_run(struct connmgr *mgr)
1973 {
1974     struct ofconn *ofconn;
1975
1976     LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
1977         if (ofconn->monitor_paused
1978             && !rconn_packet_counter_n_packets(ofconn->monitor_counter)) {
1979             COVERAGE_INC(ofmonitor_resume);
1980             ofmonitor_resume(ofconn);
1981         }
1982     }
1983 }
1984
1985 static void
1986 ofmonitor_wait(struct connmgr *mgr)
1987 {
1988     struct ofconn *ofconn;
1989
1990     LIST_FOR_EACH (ofconn, node, &mgr->all_conns) {
1991         if (ofconn->monitor_paused
1992             && !rconn_packet_counter_n_packets(ofconn->monitor_counter)) {
1993             poll_immediate_wake();
1994         }
1995     }
1996 }