Remove stream, vconn, and rconn functions to get local/remote IPs/ports.
[cascardo/ovs.git] / lib / rconn.c
1 /*
2  * Copyright (c) 2008, 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 #include "rconn.h"
19 #include <errno.h>
20 #include <limits.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include "coverage.h"
24 #include "ofp-msgs.h"
25 #include "ofp-util.h"
26 #include "ofpbuf.h"
27 #include "openflow/openflow.h"
28 #include "poll-loop.h"
29 #include "sat-math.h"
30 #include "timeval.h"
31 #include "util.h"
32 #include "vconn.h"
33 #include "vlog.h"
34
35 VLOG_DEFINE_THIS_MODULE(rconn);
36
37 COVERAGE_DEFINE(rconn_discarded);
38 COVERAGE_DEFINE(rconn_overflow);
39 COVERAGE_DEFINE(rconn_queued);
40 COVERAGE_DEFINE(rconn_sent);
41
42 #define STATES                                  \
43     STATE(VOID, 1 << 0)                         \
44     STATE(BACKOFF, 1 << 1)                      \
45     STATE(CONNECTING, 1 << 2)                   \
46     STATE(ACTIVE, 1 << 3)                       \
47     STATE(IDLE, 1 << 4)
48 enum state {
49 #define STATE(NAME, VALUE) S_##NAME = VALUE,
50     STATES
51 #undef STATE
52 };
53
54 static const char *
55 state_name(enum state state)
56 {
57     switch (state) {
58 #define STATE(NAME, VALUE) case S_##NAME: return #NAME;
59         STATES
60 #undef STATE
61     }
62     return "***ERROR***";
63 }
64
65 /* A reliable connection to an OpenFlow switch or controller.
66  *
67  * See the large comment in rconn.h for more information. */
68 struct rconn {
69     struct ovs_mutex mutex;
70
71     enum state state;
72     time_t state_entered;
73
74     struct vconn *vconn;
75     char *name;                 /* Human-readable descriptive name. */
76     char *target;               /* vconn name, passed to vconn_open(). */
77     bool reliable;
78
79     struct list txq;            /* Contains "struct ofpbuf"s. */
80
81     int backoff;
82     int max_backoff;
83     time_t backoff_deadline;
84     time_t last_connected;
85     time_t last_disconnected;
86     unsigned int packets_sent;
87     unsigned int seqno;
88     int last_error;
89
90     /* In S_ACTIVE and S_IDLE, probably_admitted reports whether we believe
91      * that the peer has made a (positive) admission control decision on our
92      * connection.  If we have not yet been (probably) admitted, then the
93      * connection does not reset the timer used for deciding whether the switch
94      * should go into fail-open mode.
95      *
96      * last_admitted reports the last time we believe such a positive admission
97      * control decision was made. */
98     bool probably_admitted;
99     time_t last_admitted;
100
101     /* These values are simply for statistics reporting, not used directly by
102      * anything internal to the rconn (or ofproto for that matter). */
103     unsigned int packets_received;
104     unsigned int n_attempted_connections, n_successful_connections;
105     time_t creation_time;
106     unsigned long int total_time_connected;
107
108     /* Throughout this file, "probe" is shorthand for "inactivity probe".  When
109      * no activity has been observed from the peer for a while, we send out an
110      * echo request as an inactivity probe packet.  We should receive back a
111      * response.
112      *
113      * "Activity" is defined as either receiving an OpenFlow message from the
114      * peer or successfully sending a message that had been in 'txq'. */
115     int probe_interval;         /* Secs of inactivity before sending probe. */
116     time_t last_activity;       /* Last time we saw some activity. */
117
118     uint8_t dscp;
119
120     /* Messages sent or received are copied to the monitor connections. */
121 #define MAX_MONITORS 8
122     struct vconn *monitors[8];
123     size_t n_monitors;
124
125     uint32_t allowed_versions;
126 };
127
128 uint32_t rconn_get_allowed_versions(const struct rconn *rconn)
129 {
130     return rconn->allowed_versions;
131 }
132
133 static unsigned int elapsed_in_this_state(const struct rconn *rc)
134     OVS_REQUIRES(rc->mutex);
135 static unsigned int timeout(const struct rconn *rc) OVS_REQUIRES(rc->mutex);
136 static bool timed_out(const struct rconn *rc) OVS_REQUIRES(rc->mutex);
137 static void state_transition(struct rconn *rc, enum state)
138     OVS_REQUIRES(rc->mutex);
139 static void rconn_set_target__(struct rconn *rc,
140                                const char *target, const char *name)
141     OVS_REQUIRES(rc->mutex);
142 static int rconn_send__(struct rconn *rc, struct ofpbuf *,
143                         struct rconn_packet_counter *)
144     OVS_REQUIRES(rc->mutex);
145 static int try_send(struct rconn *rc) OVS_REQUIRES(rc->mutex);
146 static void reconnect(struct rconn *rc) OVS_REQUIRES(rc->mutex);
147 static void report_error(struct rconn *rc, int error) OVS_REQUIRES(rc->mutex);
148 static void rconn_disconnect__(struct rconn *rc) OVS_REQUIRES(rc->mutex);
149 static void disconnect(struct rconn *rc, int error) OVS_REQUIRES(rc->mutex);
150 static void flush_queue(struct rconn *rc) OVS_REQUIRES(rc->mutex);
151 static void close_monitor(struct rconn *rc, size_t idx, int retval)
152     OVS_REQUIRES(rc->mutex);
153 static void copy_to_monitor(struct rconn *, const struct ofpbuf *);
154 static bool is_connected_state(enum state);
155 static bool is_admitted_msg(const struct ofpbuf *);
156 static bool rconn_logging_connection_attempts__(const struct rconn *rc)
157     OVS_REQUIRES(rc->mutex);
158 static int rconn_get_version__(const struct rconn *rconn)
159     OVS_REQUIRES(rconn->mutex);
160
161 /* The following prototypes duplicate those in rconn.h, but there we weren't
162  * able to add the OVS_EXCLUDED annotations because the definition of struct
163  * rconn was not visible. */
164
165 void rconn_set_max_backoff(struct rconn *rc, int max_backoff)
166     OVS_EXCLUDED(rc->mutex);
167 void rconn_connect(struct rconn *rc, const char *target, const char *name)
168     OVS_EXCLUDED(rc->mutex);
169 void rconn_connect_unreliably(struct rconn *rc,
170                               struct vconn *vconn, const char *name)
171     OVS_EXCLUDED(rc->mutex);
172 void rconn_reconnect(struct rconn *rc) OVS_EXCLUDED(rc->mutex);
173 void rconn_disconnect(struct rconn *rc) OVS_EXCLUDED(rc->mutex);
174 void rconn_run(struct rconn *rc) OVS_EXCLUDED(rc->mutex);
175 void rconn_run_wait(struct rconn *rc) OVS_EXCLUDED(rc->mutex);
176 struct ofpbuf *rconn_recv(struct rconn *rc) OVS_EXCLUDED(rc->mutex);
177 void rconn_recv_wait(struct rconn *rc) OVS_EXCLUDED(rc->mutex);
178 int rconn_send(struct rconn *rc, struct ofpbuf *b,
179                struct rconn_packet_counter *counter)
180     OVS_EXCLUDED(rc->mutex);
181 int rconn_send_with_limit(struct rconn *rc, struct ofpbuf *b,
182                           struct rconn_packet_counter *counter,
183                           int queue_limit)
184     OVS_EXCLUDED(rc->mutex);
185 void rconn_add_monitor(struct rconn *rc, struct vconn *vconn)
186     OVS_EXCLUDED(rc->mutex);
187 void rconn_set_name(struct rconn *rc, const char *new_name)
188     OVS_EXCLUDED(rc->mutex);
189 bool rconn_is_admitted(const struct rconn *rconn) OVS_EXCLUDED(rconn->mutex);
190 int rconn_failure_duration(const struct rconn *rconn)
191     OVS_EXCLUDED(rconn->mutex);
192 ovs_be16 rconn_get_local_port(const struct rconn *rconn)
193     OVS_EXCLUDED(rconn->mutex);
194 int rconn_get_version(const struct rconn *rconn) OVS_EXCLUDED(rconn->mutex);
195 unsigned int rconn_count_txqlen(const struct rconn *rc)
196     OVS_EXCLUDED(rc->mutex);
197
198
199 /* Creates and returns a new rconn.
200  *
201  * 'probe_interval' is a number of seconds.  If the interval passes once
202  * without an OpenFlow message being received from the peer, the rconn sends
203  * out an "echo request" message.  If the interval passes again without a
204  * message being received, the rconn disconnects and re-connects to the peer.
205  * Setting 'probe_interval' to 0 disables this behavior.
206  *
207  * 'max_backoff' is the maximum number of seconds between attempts to connect
208  * to the peer.  The actual interval starts at 1 second and doubles on each
209  * failure until it reaches 'max_backoff'.  If 0 is specified, the default of
210  * 8 seconds is used.
211  *
212  * The new rconn is initially unconnected.  Use rconn_connect() or
213  * rconn_connect_unreliably() to connect it.
214  *
215  * Connections made by the rconn will automatically negotiate an OpenFlow
216  * protocol version acceptable to both peers on the connection.  The version
217  * negotiated will be one of those in the 'allowed_versions' bitmap: version
218  * 'x' is allowed if allowed_versions & (1 << x) is nonzero.  (The underlying
219  * vconn will treat an 'allowed_versions' of 0 as OFPUTIL_DEFAULT_VERSIONS.)
220  */
221 struct rconn *
222 rconn_create(int probe_interval, int max_backoff, uint8_t dscp,
223              uint32_t allowed_versions)
224 {
225     struct rconn *rc = xzalloc(sizeof *rc);
226
227     ovs_mutex_init(&rc->mutex);
228
229     rc->state = S_VOID;
230     rc->state_entered = time_now();
231
232     rc->vconn = NULL;
233     rc->name = xstrdup("void");
234     rc->target = xstrdup("void");
235     rc->reliable = false;
236
237     list_init(&rc->txq);
238
239     rc->backoff = 0;
240     rc->max_backoff = max_backoff ? max_backoff : 8;
241     rc->backoff_deadline = TIME_MIN;
242     rc->last_connected = TIME_MIN;
243     rc->last_disconnected = TIME_MIN;
244     rc->seqno = 0;
245
246     rc->packets_sent = 0;
247
248     rc->probably_admitted = false;
249     rc->last_admitted = time_now();
250
251     rc->packets_received = 0;
252     rc->n_attempted_connections = 0;
253     rc->n_successful_connections = 0;
254     rc->creation_time = time_now();
255     rc->total_time_connected = 0;
256
257     rc->last_activity = time_now();
258
259     rconn_set_probe_interval(rc, probe_interval);
260     rconn_set_dscp(rc, dscp);
261
262     rc->n_monitors = 0;
263     rc->allowed_versions = allowed_versions;
264
265     return rc;
266 }
267
268 void
269 rconn_set_max_backoff(struct rconn *rc, int max_backoff)
270     OVS_EXCLUDED(rc->mutex)
271 {
272     ovs_mutex_lock(&rc->mutex);
273     rc->max_backoff = MAX(1, max_backoff);
274     if (rc->state == S_BACKOFF && rc->backoff > max_backoff) {
275         rc->backoff = max_backoff;
276         if (rc->backoff_deadline > time_now() + max_backoff) {
277             rc->backoff_deadline = time_now() + max_backoff;
278         }
279     }
280     ovs_mutex_unlock(&rc->mutex);
281 }
282
283 int
284 rconn_get_max_backoff(const struct rconn *rc)
285 {
286     return rc->max_backoff;
287 }
288
289 void
290 rconn_set_dscp(struct rconn *rc, uint8_t dscp)
291 {
292     rc->dscp = dscp;
293 }
294
295 uint8_t
296 rconn_get_dscp(const struct rconn *rc)
297 {
298     return rc->dscp;
299 }
300
301 void
302 rconn_set_probe_interval(struct rconn *rc, int probe_interval)
303 {
304     rc->probe_interval = probe_interval ? MAX(5, probe_interval) : 0;
305 }
306
307 int
308 rconn_get_probe_interval(const struct rconn *rc)
309 {
310     return rc->probe_interval;
311 }
312
313 /* Drops any existing connection on 'rc', then sets up 'rc' to connect to
314  * 'target' and reconnect as needed.  'target' should be a remote OpenFlow
315  * target in a form acceptable to vconn_open().
316  *
317  * If 'name' is nonnull, then it is used in log messages in place of 'target'.
318  * It should presumably give more information to a human reader than 'target',
319  * but it need not be acceptable to vconn_open(). */
320 void
321 rconn_connect(struct rconn *rc, const char *target, const char *name)
322     OVS_EXCLUDED(rc->mutex)
323 {
324     ovs_mutex_lock(&rc->mutex);
325     rconn_disconnect__(rc);
326     rconn_set_target__(rc, target, name);
327     rc->reliable = true;
328     reconnect(rc);
329     ovs_mutex_unlock(&rc->mutex);
330 }
331
332 /* Drops any existing connection on 'rc', then configures 'rc' to use
333  * 'vconn'.  If the connection on 'vconn' drops, 'rc' will not reconnect on it
334  * own.
335  *
336  * By default, the target obtained from vconn_get_name(vconn) is used in log
337  * messages.  If 'name' is nonnull, then it is used instead.  It should
338  * presumably give more information to a human reader than the target, but it
339  * need not be acceptable to vconn_open(). */
340 void
341 rconn_connect_unreliably(struct rconn *rc,
342                          struct vconn *vconn, const char *name)
343     OVS_EXCLUDED(rc->mutex)
344 {
345     ovs_assert(vconn != NULL);
346
347     ovs_mutex_lock(&rc->mutex);
348     rconn_disconnect__(rc);
349     rconn_set_target__(rc, vconn_get_name(vconn), name);
350     rc->reliable = false;
351     rc->vconn = vconn;
352     rc->last_connected = time_now();
353     state_transition(rc, S_ACTIVE);
354     ovs_mutex_unlock(&rc->mutex);
355 }
356
357 /* If 'rc' is connected, forces it to drop the connection and reconnect. */
358 void
359 rconn_reconnect(struct rconn *rc)
360     OVS_EXCLUDED(rc->mutex)
361 {
362     ovs_mutex_lock(&rc->mutex);
363     if (rc->state & (S_ACTIVE | S_IDLE)) {
364         VLOG_INFO("%s: disconnecting", rc->name);
365         disconnect(rc, 0);
366     }
367     ovs_mutex_unlock(&rc->mutex);
368 }
369
370 static void
371 rconn_disconnect__(struct rconn *rc)
372     OVS_REQUIRES(rc->mutex)
373 {
374     if (rc->state != S_VOID) {
375         if (rc->vconn) {
376             vconn_close(rc->vconn);
377             rc->vconn = NULL;
378         }
379         rconn_set_target__(rc, "void", NULL);
380         rc->reliable = false;
381
382         rc->backoff = 0;
383         rc->backoff_deadline = TIME_MIN;
384
385         state_transition(rc, S_VOID);
386     }
387 }
388
389 void
390 rconn_disconnect(struct rconn *rc)
391     OVS_EXCLUDED(rc->mutex)
392 {
393     ovs_mutex_lock(&rc->mutex);
394     rconn_disconnect__(rc);
395     ovs_mutex_unlock(&rc->mutex);
396 }
397
398 /* Disconnects 'rc' and frees the underlying storage. */
399 void
400 rconn_destroy(struct rconn *rc)
401 {
402     if (rc) {
403         size_t i;
404
405         ovs_mutex_lock(&rc->mutex);
406         free(rc->name);
407         free(rc->target);
408         vconn_close(rc->vconn);
409         flush_queue(rc);
410         ofpbuf_list_delete(&rc->txq);
411         for (i = 0; i < rc->n_monitors; i++) {
412             vconn_close(rc->monitors[i]);
413         }
414         ovs_mutex_unlock(&rc->mutex);
415         ovs_mutex_destroy(&rc->mutex);
416
417         free(rc);
418     }
419 }
420
421 static unsigned int
422 timeout_VOID(const struct rconn *rc OVS_UNUSED)
423     OVS_REQUIRES(rc->mutex)
424 {
425     return UINT_MAX;
426 }
427
428 static void
429 run_VOID(struct rconn *rc OVS_UNUSED)
430     OVS_REQUIRES(rc->mutex)
431 {
432     /* Nothing to do. */
433 }
434
435 static void
436 reconnect(struct rconn *rc)
437     OVS_REQUIRES(rc->mutex)
438 {
439     int retval;
440
441     if (rconn_logging_connection_attempts__(rc)) {
442         VLOG_INFO("%s: connecting...", rc->name);
443     }
444     rc->n_attempted_connections++;
445     retval = vconn_open(rc->target, rc->allowed_versions, rc->dscp,
446                         &rc->vconn);
447     if (!retval) {
448         rc->backoff_deadline = time_now() + rc->backoff;
449         state_transition(rc, S_CONNECTING);
450     } else {
451         VLOG_WARN("%s: connection failed (%s)",
452                   rc->name, ovs_strerror(retval));
453         rc->backoff_deadline = TIME_MAX; /* Prevent resetting backoff. */
454         disconnect(rc, retval);
455     }
456 }
457
458 static unsigned int
459 timeout_BACKOFF(const struct rconn *rc)
460     OVS_REQUIRES(rc->mutex)
461 {
462     return rc->backoff;
463 }
464
465 static void
466 run_BACKOFF(struct rconn *rc)
467     OVS_REQUIRES(rc->mutex)
468 {
469     if (timed_out(rc)) {
470         reconnect(rc);
471     }
472 }
473
474 static unsigned int
475 timeout_CONNECTING(const struct rconn *rc)
476     OVS_REQUIRES(rc->mutex)
477 {
478     return MAX(1, rc->backoff);
479 }
480
481 static void
482 run_CONNECTING(struct rconn *rc)
483     OVS_REQUIRES(rc->mutex)
484 {
485     int retval = vconn_connect(rc->vconn);
486     if (!retval) {
487         VLOG_INFO("%s: connected", rc->name);
488         rc->n_successful_connections++;
489         state_transition(rc, S_ACTIVE);
490         rc->last_connected = rc->state_entered;
491     } else if (retval != EAGAIN) {
492         if (rconn_logging_connection_attempts__(rc)) {
493             VLOG_INFO("%s: connection failed (%s)",
494                       rc->name, ovs_strerror(retval));
495         }
496         disconnect(rc, retval);
497     } else if (timed_out(rc)) {
498         if (rconn_logging_connection_attempts__(rc)) {
499             VLOG_INFO("%s: connection timed out", rc->name);
500         }
501         rc->backoff_deadline = TIME_MAX; /* Prevent resetting backoff. */
502         disconnect(rc, ETIMEDOUT);
503     }
504 }
505
506 static void
507 do_tx_work(struct rconn *rc)
508     OVS_REQUIRES(rc->mutex)
509 {
510     if (list_is_empty(&rc->txq)) {
511         return;
512     }
513     while (!list_is_empty(&rc->txq)) {
514         int error = try_send(rc);
515         if (error) {
516             break;
517         }
518         rc->last_activity = time_now();
519     }
520     if (list_is_empty(&rc->txq)) {
521         poll_immediate_wake();
522     }
523 }
524
525 static unsigned int
526 timeout_ACTIVE(const struct rconn *rc)
527     OVS_REQUIRES(rc->mutex)
528 {
529     if (rc->probe_interval) {
530         unsigned int base = MAX(rc->last_activity, rc->state_entered);
531         unsigned int arg = base + rc->probe_interval - rc->state_entered;
532         return arg;
533     }
534     return UINT_MAX;
535 }
536
537 static void
538 run_ACTIVE(struct rconn *rc)
539     OVS_REQUIRES(rc->mutex)
540 {
541     if (timed_out(rc)) {
542         unsigned int base = MAX(rc->last_activity, rc->state_entered);
543         int version;
544
545         VLOG_DBG("%s: idle %u seconds, sending inactivity probe",
546                  rc->name, (unsigned int) (time_now() - base));
547
548         version = rconn_get_version__(rc);
549         ovs_assert(version >= 0 && version <= 0xff);
550
551         /* Ordering is important here: rconn_send() can transition to BACKOFF,
552          * and we don't want to transition back to IDLE if so, because then we
553          * can end up queuing a packet with vconn == NULL and then *boom*. */
554         state_transition(rc, S_IDLE);
555         rconn_send__(rc, make_echo_request(version), NULL);
556         return;
557     }
558
559     do_tx_work(rc);
560 }
561
562 static unsigned int
563 timeout_IDLE(const struct rconn *rc)
564     OVS_REQUIRES(rc->mutex)
565 {
566     return rc->probe_interval;
567 }
568
569 static void
570 run_IDLE(struct rconn *rc)
571     OVS_REQUIRES(rc->mutex)
572 {
573     if (timed_out(rc)) {
574         VLOG_ERR("%s: no response to inactivity probe after %u "
575                  "seconds, disconnecting",
576                  rc->name, elapsed_in_this_state(rc));
577         disconnect(rc, ETIMEDOUT);
578     } else {
579         do_tx_work(rc);
580     }
581 }
582
583 /* Performs whatever activities are necessary to maintain 'rc': if 'rc' is
584  * disconnected, attempts to (re)connect, backing off as necessary; if 'rc' is
585  * connected, attempts to send packets in the send queue, if any. */
586 void
587 rconn_run(struct rconn *rc)
588     OVS_EXCLUDED(rc->mutex)
589 {
590     int old_state;
591     size_t i;
592
593     ovs_mutex_lock(&rc->mutex);
594     if (rc->vconn) {
595         vconn_run(rc->vconn);
596     }
597     for (i = 0; i < rc->n_monitors; ) {
598         struct ofpbuf *msg;
599         int retval;
600
601         vconn_run(rc->monitors[i]);
602
603         /* Drain any stray message that came in on the monitor connection. */
604         retval = vconn_recv(rc->monitors[i], &msg);
605         if (!retval) {
606             ofpbuf_delete(msg);
607         } else if (retval != EAGAIN) {
608             close_monitor(rc, i, retval);
609             continue;
610         }
611         i++;
612     }
613
614     do {
615         old_state = rc->state;
616         switch (rc->state) {
617 #define STATE(NAME, VALUE) case S_##NAME: run_##NAME(rc); break;
618             STATES
619 #undef STATE
620         default:
621             OVS_NOT_REACHED();
622         }
623     } while (rc->state != old_state);
624     ovs_mutex_unlock(&rc->mutex);
625 }
626
627 /* Causes the next call to poll_block() to wake up when rconn_run() should be
628  * called on 'rc'. */
629 void
630 rconn_run_wait(struct rconn *rc)
631     OVS_EXCLUDED(rc->mutex)
632 {
633     unsigned int timeo;
634     size_t i;
635
636     ovs_mutex_lock(&rc->mutex);
637     if (rc->vconn) {
638         vconn_run_wait(rc->vconn);
639         if ((rc->state & (S_ACTIVE | S_IDLE)) && !list_is_empty(&rc->txq)) {
640             vconn_wait(rc->vconn, WAIT_SEND);
641         }
642     }
643     for (i = 0; i < rc->n_monitors; i++) {
644         vconn_run_wait(rc->monitors[i]);
645         vconn_recv_wait(rc->monitors[i]);
646     }
647
648     timeo = timeout(rc);
649     if (timeo != UINT_MAX) {
650         long long int expires = sat_add(rc->state_entered, timeo);
651         poll_timer_wait_until(expires * 1000);
652     }
653     ovs_mutex_unlock(&rc->mutex);
654 }
655
656 /* Attempts to receive a packet from 'rc'.  If successful, returns the packet;
657  * otherwise, returns a null pointer.  The caller is responsible for freeing
658  * the packet (with ofpbuf_delete()). */
659 struct ofpbuf *
660 rconn_recv(struct rconn *rc)
661     OVS_EXCLUDED(rc->mutex)
662 {
663     struct ofpbuf *buffer = NULL;
664
665     ovs_mutex_lock(&rc->mutex);
666     if (rc->state & (S_ACTIVE | S_IDLE)) {
667         int error = vconn_recv(rc->vconn, &buffer);
668         if (!error) {
669             copy_to_monitor(rc, buffer);
670             if (rc->probably_admitted || is_admitted_msg(buffer)
671                 || time_now() - rc->last_connected >= 30) {
672                 rc->probably_admitted = true;
673                 rc->last_admitted = time_now();
674             }
675             rc->last_activity = time_now();
676             rc->packets_received++;
677             if (rc->state == S_IDLE) {
678                 state_transition(rc, S_ACTIVE);
679             }
680         } else if (error != EAGAIN) {
681             report_error(rc, error);
682             disconnect(rc, error);
683         }
684     }
685     ovs_mutex_unlock(&rc->mutex);
686
687     return buffer;
688 }
689
690 /* Causes the next call to poll_block() to wake up when a packet may be ready
691  * to be received by vconn_recv() on 'rc'.  */
692 void
693 rconn_recv_wait(struct rconn *rc)
694     OVS_EXCLUDED(rc->mutex)
695 {
696     ovs_mutex_lock(&rc->mutex);
697     if (rc->vconn) {
698         vconn_wait(rc->vconn, WAIT_RECV);
699     }
700     ovs_mutex_unlock(&rc->mutex);
701 }
702
703 static int
704 rconn_send__(struct rconn *rc, struct ofpbuf *b,
705            struct rconn_packet_counter *counter)
706     OVS_REQUIRES(rc->mutex)
707 {
708     if (rconn_is_connected(rc)) {
709         COVERAGE_INC(rconn_queued);
710         copy_to_monitor(rc, b);
711         b->private_p = counter;
712         if (counter) {
713             rconn_packet_counter_inc(counter, b->size);
714         }
715         list_push_back(&rc->txq, &b->list_node);
716
717         /* If the queue was empty before we added 'b', try to send some
718          * packets.  (But if the queue had packets in it, it's because the
719          * vconn is backlogged and there's no point in stuffing more into it
720          * now.  We'll get back to that in rconn_run().) */
721         if (rc->txq.next == &b->list_node) {
722             try_send(rc);
723         }
724         return 0;
725     } else {
726         ofpbuf_delete(b);
727         return ENOTCONN;
728     }
729 }
730
731 /* Sends 'b' on 'rc'.  Returns 0 if successful, or ENOTCONN if 'rc' is not
732  * currently connected.  Takes ownership of 'b'.
733  *
734  * If 'counter' is non-null, then 'counter' will be incremented while the
735  * packet is in flight, then decremented when it has been sent (or discarded
736  * due to disconnection).  Because 'b' may be sent (or discarded) before this
737  * function returns, the caller may not be able to observe any change in
738  * 'counter'.
739  *
740  * There is no rconn_send_wait() function: an rconn has a send queue that it
741  * takes care of sending if you call rconn_run(), which will have the side
742  * effect of waking up poll_block(). */
743 int
744 rconn_send(struct rconn *rc, struct ofpbuf *b,
745            struct rconn_packet_counter *counter)
746     OVS_EXCLUDED(rc->mutex)
747 {
748     int error;
749
750     ovs_mutex_lock(&rc->mutex);
751     error = rconn_send__(rc, b, counter);
752     ovs_mutex_unlock(&rc->mutex);
753
754     return error;
755 }
756
757 /* Sends 'b' on 'rc'.  Increments 'counter' while the packet is in flight; it
758  * will be decremented when it has been sent (or discarded due to
759  * disconnection).  Returns 0 if successful, EAGAIN if 'counter->n' is already
760  * at least as large as 'queue_limit', or ENOTCONN if 'rc' is not currently
761  * connected.  Regardless of return value, 'b' is destroyed.
762  *
763  * Because 'b' may be sent (or discarded) before this function returns, the
764  * caller may not be able to observe any change in 'counter'.
765  *
766  * There is no rconn_send_wait() function: an rconn has a send queue that it
767  * takes care of sending if you call rconn_run(), which will have the side
768  * effect of waking up poll_block(). */
769 int
770 rconn_send_with_limit(struct rconn *rc, struct ofpbuf *b,
771                       struct rconn_packet_counter *counter, int queue_limit)
772     OVS_EXCLUDED(rc->mutex)
773 {
774     int error;
775
776     ovs_mutex_lock(&rc->mutex);
777     if (rconn_packet_counter_n_packets(counter) < queue_limit) {
778         error = rconn_send__(rc, b, counter);
779     } else {
780         COVERAGE_INC(rconn_overflow);
781         ofpbuf_delete(b);
782         error = EAGAIN;
783     }
784     ovs_mutex_unlock(&rc->mutex);
785
786     return error;
787 }
788
789 /* Returns the total number of packets successfully sent on the underlying
790  * vconn.  A packet is not counted as sent while it is still queued in the
791  * rconn, only when it has been successfuly passed to the vconn.  */
792 unsigned int
793 rconn_packets_sent(const struct rconn *rc)
794 {
795     return rc->packets_sent;
796 }
797
798 /* Adds 'vconn' to 'rc' as a monitoring connection, to which all messages sent
799  * and received on 'rconn' will be copied.  'rc' takes ownership of 'vconn'. */
800 void
801 rconn_add_monitor(struct rconn *rc, struct vconn *vconn)
802     OVS_EXCLUDED(rc->mutex)
803 {
804     ovs_mutex_lock(&rc->mutex);
805     if (rc->n_monitors < ARRAY_SIZE(rc->monitors)) {
806         VLOG_INFO("new monitor connection from %s", vconn_get_name(vconn));
807         rc->monitors[rc->n_monitors++] = vconn;
808     } else {
809         VLOG_DBG("too many monitor connections, discarding %s",
810                  vconn_get_name(vconn));
811         vconn_close(vconn);
812     }
813     ovs_mutex_unlock(&rc->mutex);
814 }
815
816 /* Returns 'rc''s name.  This is a name for human consumption, appropriate for
817  * use in log messages.  It is not necessarily a name that may be passed
818  * directly to, e.g., vconn_open(). */
819 const char *
820 rconn_get_name(const struct rconn *rc)
821 {
822     return rc->name;
823 }
824
825 /* Sets 'rc''s name to 'new_name'. */
826 void
827 rconn_set_name(struct rconn *rc, const char *new_name)
828     OVS_EXCLUDED(rc->mutex)
829 {
830     ovs_mutex_lock(&rc->mutex);
831     free(rc->name);
832     rc->name = xstrdup(new_name);
833     ovs_mutex_unlock(&rc->mutex);
834 }
835
836 /* Returns 'rc''s target.  This is intended to be a string that may be passed
837  * directly to, e.g., vconn_open(). */
838 const char *
839 rconn_get_target(const struct rconn *rc)
840 {
841     return rc->target;
842 }
843
844 /* Returns true if 'rconn' is connected or in the process of reconnecting,
845  * false if 'rconn' is disconnected and will not reconnect on its own. */
846 bool
847 rconn_is_alive(const struct rconn *rconn)
848 {
849     return rconn->state != S_VOID;
850 }
851
852 /* Returns true if 'rconn' is connected, false otherwise. */
853 bool
854 rconn_is_connected(const struct rconn *rconn)
855 {
856     return is_connected_state(rconn->state);
857 }
858
859 static bool
860 rconn_is_admitted__(const struct rconn *rconn)
861     OVS_REQUIRES(rconn->mutex)
862 {
863     return (rconn_is_connected(rconn)
864             && rconn->last_admitted >= rconn->last_connected);
865 }
866
867 /* Returns true if 'rconn' is connected and thought to have been accepted by
868  * the peer's admission-control policy. */
869 bool
870 rconn_is_admitted(const struct rconn *rconn)
871     OVS_EXCLUDED(rconn->mutex)
872 {
873     bool admitted;
874
875     ovs_mutex_lock(&rconn->mutex);
876     admitted = rconn_is_admitted__(rconn);
877     ovs_mutex_unlock(&rconn->mutex);
878
879     return admitted;
880 }
881
882 /* Returns 0 if 'rconn' is currently connected and considered to have been
883  * accepted by the peer's admission-control policy, otherwise the number of
884  * seconds since 'rconn' was last in such a state. */
885 int
886 rconn_failure_duration(const struct rconn *rconn)
887     OVS_EXCLUDED(rconn->mutex)
888 {
889     int duration;
890
891     ovs_mutex_lock(&rconn->mutex);
892     duration = (rconn_is_admitted__(rconn)
893                 ? 0
894                 : time_now() - rconn->last_admitted);
895     ovs_mutex_unlock(&rconn->mutex);
896
897     return duration;
898 }
899
900 static int
901 rconn_get_version__(const struct rconn *rconn)
902     OVS_REQUIRES(rconn->mutex)
903 {
904     return rconn->vconn ? vconn_get_version(rconn->vconn) : -1;
905 }
906
907 /* Returns the OpenFlow version negotiated with the peer, or -1 if there is
908  * currently no connection or if version negotiation is not yet complete. */
909 int
910 rconn_get_version(const struct rconn *rconn)
911     OVS_EXCLUDED(rconn->mutex)
912 {
913     int version;
914
915     ovs_mutex_lock(&rconn->mutex);
916     version = rconn_get_version__(rconn);
917     ovs_mutex_unlock(&rconn->mutex);
918
919     return version;
920 }
921
922 /* Returns the total number of packets successfully received by the underlying
923  * vconn.  */
924 unsigned int
925 rconn_packets_received(const struct rconn *rc)
926 {
927     return rc->packets_received;
928 }
929
930 /* Returns a string representing the internal state of 'rc'.  The caller must
931  * not modify or free the string. */
932 const char *
933 rconn_get_state(const struct rconn *rc)
934 {
935     return state_name(rc->state);
936 }
937
938 /* Returns the time at which the last successful connection was made by
939  * 'rc'. Returns TIME_MIN if never connected. */
940 time_t
941 rconn_get_last_connection(const struct rconn *rc)
942 {
943     return rc->last_connected;
944 }
945
946 /* Returns the time at which 'rc' was last disconnected. Returns TIME_MIN
947  * if never disconnected. */
948 time_t
949 rconn_get_last_disconnect(const struct rconn *rc)
950 {
951     return rc->last_disconnected;
952 }
953
954 /* Returns 'rc''s current connection sequence number, a number that changes
955  * every time that 'rconn' connects or disconnects. */
956 unsigned int
957 rconn_get_connection_seqno(const struct rconn *rc)
958 {
959     return rc->seqno;
960 }
961
962 /* Returns a value that explains why 'rc' last disconnected:
963  *
964  *   - 0 means that the last disconnection was caused by a call to
965  *     rconn_disconnect(), or that 'rc' is new and has not yet completed its
966  *     initial connection or connection attempt.
967  *
968  *   - EOF means that the connection was closed in the normal way by the peer.
969  *
970  *   - A positive integer is an errno value that represents the error.
971  */
972 int
973 rconn_get_last_error(const struct rconn *rc)
974 {
975     return rc->last_error;
976 }
977
978 /* Returns the number of messages queued for transmission on 'rc'. */
979 unsigned int
980 rconn_count_txqlen(const struct rconn *rc)
981     OVS_EXCLUDED(rc->mutex)
982 {
983     unsigned int len;
984
985     ovs_mutex_lock(&rc->mutex);
986     len = list_size(&rc->txq);
987     ovs_mutex_unlock(&rc->mutex);
988
989     return len;
990 }
991 \f
992 struct rconn_packet_counter *
993 rconn_packet_counter_create(void)
994 {
995     struct rconn_packet_counter *c = xzalloc(sizeof *c);
996     ovs_mutex_init(&c->mutex);
997     ovs_mutex_lock(&c->mutex);
998     c->ref_cnt = 1;
999     ovs_mutex_unlock(&c->mutex);
1000     return c;
1001 }
1002
1003 void
1004 rconn_packet_counter_destroy(struct rconn_packet_counter *c)
1005 {
1006     if (c) {
1007         bool dead;
1008
1009         ovs_mutex_lock(&c->mutex);
1010         ovs_assert(c->ref_cnt > 0);
1011         dead = !--c->ref_cnt && !c->n_packets;
1012         ovs_mutex_unlock(&c->mutex);
1013
1014         if (dead) {
1015             ovs_mutex_destroy(&c->mutex);
1016             free(c);
1017         }
1018     }
1019 }
1020
1021 void
1022 rconn_packet_counter_inc(struct rconn_packet_counter *c, unsigned int n_bytes)
1023 {
1024     ovs_mutex_lock(&c->mutex);
1025     c->n_packets++;
1026     c->n_bytes += n_bytes;
1027     ovs_mutex_unlock(&c->mutex);
1028 }
1029
1030 void
1031 rconn_packet_counter_dec(struct rconn_packet_counter *c, unsigned int n_bytes)
1032 {
1033     bool dead = false;
1034
1035     ovs_mutex_lock(&c->mutex);
1036     ovs_assert(c->n_packets > 0);
1037     ovs_assert(c->n_packets == 1
1038                ? c->n_bytes == n_bytes
1039                : c->n_bytes > n_bytes);
1040     c->n_packets--;
1041     c->n_bytes -= n_bytes;
1042     dead = !c->n_packets && !c->ref_cnt;
1043     ovs_mutex_unlock(&c->mutex);
1044
1045     if (dead) {
1046         ovs_mutex_destroy(&c->mutex);
1047         free(c);
1048     }
1049 }
1050
1051 unsigned int
1052 rconn_packet_counter_n_packets(const struct rconn_packet_counter *c)
1053 {
1054     unsigned int n;
1055
1056     ovs_mutex_lock(&c->mutex);
1057     n = c->n_packets;
1058     ovs_mutex_unlock(&c->mutex);
1059
1060     return n;
1061 }
1062
1063 unsigned int
1064 rconn_packet_counter_n_bytes(const struct rconn_packet_counter *c)
1065 {
1066     unsigned int n;
1067
1068     ovs_mutex_lock(&c->mutex);
1069     n = c->n_bytes;
1070     ovs_mutex_unlock(&c->mutex);
1071
1072     return n;
1073 }
1074 \f
1075 /* Set rc->target and rc->name to 'target' and 'name', respectively.  If 'name'
1076  * is null, 'target' is used.
1077  *
1078  * Also, clear out the cached IP address and port information, since changing
1079  * the target also likely changes these values. */
1080 static void
1081 rconn_set_target__(struct rconn *rc, const char *target, const char *name)
1082     OVS_REQUIRES(rc->mutex)
1083 {
1084     free(rc->name);
1085     rc->name = xstrdup(name ? name : target);
1086     free(rc->target);
1087     rc->target = xstrdup(target);
1088 }
1089
1090 /* Tries to send a packet from 'rc''s send buffer.  Returns 0 if successful,
1091  * otherwise a positive errno value. */
1092 static int
1093 try_send(struct rconn *rc)
1094     OVS_REQUIRES(rc->mutex)
1095 {
1096     struct ofpbuf *msg = ofpbuf_from_list(rc->txq.next);
1097     unsigned int n_bytes = msg->size;
1098     struct rconn_packet_counter *counter = msg->private_p;
1099     int retval;
1100
1101     /* Eagerly remove 'msg' from the txq.  We can't remove it from the list
1102      * after sending, if sending is successful, because it is then owned by the
1103      * vconn, which might have freed it already. */
1104     list_remove(&msg->list_node);
1105
1106     retval = vconn_send(rc->vconn, msg);
1107     if (retval) {
1108         list_push_front(&rc->txq, &msg->list_node);
1109         if (retval != EAGAIN) {
1110             report_error(rc, retval);
1111             disconnect(rc, retval);
1112         }
1113         return retval;
1114     }
1115     COVERAGE_INC(rconn_sent);
1116     rc->packets_sent++;
1117     if (counter) {
1118         rconn_packet_counter_dec(counter, n_bytes);
1119     }
1120     return 0;
1121 }
1122
1123 /* Reports that 'error' caused 'rc' to disconnect.  'error' may be a positive
1124  * errno value, or it may be EOF to indicate that the connection was closed
1125  * normally. */
1126 static void
1127 report_error(struct rconn *rc, int error)
1128     OVS_REQUIRES(rc->mutex)
1129 {
1130     if (error == EOF) {
1131         /* If 'rc' isn't reliable, then we don't really expect this connection
1132          * to last forever anyway (probably it's a connection that we received
1133          * via accept()), so use DBG level to avoid cluttering the logs. */
1134         enum vlog_level level = rc->reliable ? VLL_INFO : VLL_DBG;
1135         VLOG(level, "%s: connection closed by peer", rc->name);
1136     } else {
1137         VLOG_WARN("%s: connection dropped (%s)",
1138                   rc->name, ovs_strerror(error));
1139     }
1140 }
1141
1142 /* Disconnects 'rc' and records 'error' as the error that caused 'rc''s last
1143  * disconnection:
1144  *
1145  *   - 0 means that this disconnection is due to a request by 'rc''s client,
1146  *     not due to any kind of network error.
1147  *
1148  *   - EOF means that the connection was closed in the normal way by the peer.
1149  *
1150  *   - A positive integer is an errno value that represents the error.
1151  */
1152 static void
1153 disconnect(struct rconn *rc, int error)
1154     OVS_REQUIRES(rc->mutex)
1155 {
1156     rc->last_error = error;
1157     if (rc->reliable) {
1158         time_t now = time_now();
1159
1160         if (rc->state & (S_CONNECTING | S_ACTIVE | S_IDLE)) {
1161             rc->last_disconnected = now;
1162             vconn_close(rc->vconn);
1163             rc->vconn = NULL;
1164             flush_queue(rc);
1165         }
1166
1167         if (now >= rc->backoff_deadline) {
1168             rc->backoff = 1;
1169         } else if (rc->backoff < rc->max_backoff / 2) {
1170             rc->backoff = MAX(1, 2 * rc->backoff);
1171             VLOG_INFO("%s: waiting %d seconds before reconnect",
1172                       rc->name, rc->backoff);
1173         } else {
1174             if (rconn_logging_connection_attempts__(rc)) {
1175                 VLOG_INFO("%s: continuing to retry connections in the "
1176                           "background but suppressing further logging",
1177                           rc->name);
1178             }
1179             rc->backoff = rc->max_backoff;
1180         }
1181         rc->backoff_deadline = now + rc->backoff;
1182         state_transition(rc, S_BACKOFF);
1183     } else {
1184         rc->last_disconnected = time_now();
1185         rconn_disconnect__(rc);
1186     }
1187 }
1188
1189 /* Drops all the packets from 'rc''s send queue and decrements their queue
1190  * counts. */
1191 static void
1192 flush_queue(struct rconn *rc)
1193     OVS_REQUIRES(rc->mutex)
1194 {
1195     if (list_is_empty(&rc->txq)) {
1196         return;
1197     }
1198     while (!list_is_empty(&rc->txq)) {
1199         struct ofpbuf *b = ofpbuf_from_list(list_pop_front(&rc->txq));
1200         struct rconn_packet_counter *counter = b->private_p;
1201         if (counter) {
1202             rconn_packet_counter_dec(counter, b->size);
1203         }
1204         COVERAGE_INC(rconn_discarded);
1205         ofpbuf_delete(b);
1206     }
1207     poll_immediate_wake();
1208 }
1209
1210 static unsigned int
1211 elapsed_in_this_state(const struct rconn *rc)
1212     OVS_REQUIRES(rc->mutex)
1213 {
1214     return time_now() - rc->state_entered;
1215 }
1216
1217 static unsigned int
1218 timeout(const struct rconn *rc)
1219     OVS_REQUIRES(rc->mutex)
1220 {
1221     switch (rc->state) {
1222 #define STATE(NAME, VALUE) case S_##NAME: return timeout_##NAME(rc);
1223         STATES
1224 #undef STATE
1225     default:
1226         OVS_NOT_REACHED();
1227     }
1228 }
1229
1230 static bool
1231 timed_out(const struct rconn *rc)
1232     OVS_REQUIRES(rc->mutex)
1233 {
1234     return time_now() >= sat_add(rc->state_entered, timeout(rc));
1235 }
1236
1237 static void
1238 state_transition(struct rconn *rc, enum state state)
1239     OVS_REQUIRES(rc->mutex)
1240 {
1241     rc->seqno += (rc->state == S_ACTIVE) != (state == S_ACTIVE);
1242     if (is_connected_state(state) && !is_connected_state(rc->state)) {
1243         rc->probably_admitted = false;
1244     }
1245     if (rconn_is_connected(rc)) {
1246         rc->total_time_connected += elapsed_in_this_state(rc);
1247     }
1248     VLOG_DBG("%s: entering %s", rc->name, state_name(state));
1249     rc->state = state;
1250     rc->state_entered = time_now();
1251 }
1252
1253 static void
1254 close_monitor(struct rconn *rc, size_t idx, int retval)
1255     OVS_REQUIRES(rc->mutex)
1256 {
1257     VLOG_DBG("%s: closing monitor connection to %s: %s",
1258              rconn_get_name(rc), vconn_get_name(rc->monitors[idx]),
1259              ovs_retval_to_string(retval));
1260     rc->monitors[idx] = rc->monitors[--rc->n_monitors];
1261 }
1262
1263 static void
1264 copy_to_monitor(struct rconn *rc, const struct ofpbuf *b)
1265     OVS_REQUIRES(rc->mutex)
1266 {
1267     struct ofpbuf *clone = NULL;
1268     int retval;
1269     size_t i;
1270
1271     for (i = 0; i < rc->n_monitors; ) {
1272         struct vconn *vconn = rc->monitors[i];
1273
1274         if (!clone) {
1275             clone = ofpbuf_clone(b);
1276         }
1277         retval = vconn_send(vconn, clone);
1278         if (!retval) {
1279             clone = NULL;
1280         } else if (retval != EAGAIN) {
1281             close_monitor(rc, i, retval);
1282             continue;
1283         }
1284         i++;
1285     }
1286     ofpbuf_delete(clone);
1287 }
1288
1289 static bool
1290 is_connected_state(enum state state)
1291 {
1292     return (state & (S_ACTIVE | S_IDLE)) != 0;
1293 }
1294
1295 /* When a switch initially connects to a controller, the controller may spend a
1296  * little time examining the switch, looking at, for example, its datapath ID,
1297  * before it decides whether it is willing to control that switch.  At that
1298  * point, it either disconnects or starts controlling the switch.
1299  *
1300  * This function returns a guess to its caller about whether 'b' is OpenFlow
1301  * message that indicates that the controller has decided to control the
1302  * switch.  It returns false if the message is one that a controller typically
1303  * uses to determine whether a switch is admissible, true if the message is one
1304  * that would typically be used only after the controller has admitted the
1305  * switch. */
1306 static bool
1307 is_admitted_msg(const struct ofpbuf *b)
1308 {
1309     enum ofptype type;
1310     enum ofperr error;
1311
1312     error = ofptype_decode(&type, b->data);
1313     if (error) {
1314         return false;
1315     }
1316
1317     switch (type) {
1318     case OFPTYPE_HELLO:
1319     case OFPTYPE_ERROR:
1320     case OFPTYPE_ECHO_REQUEST:
1321     case OFPTYPE_ECHO_REPLY:
1322     case OFPTYPE_FEATURES_REQUEST:
1323     case OFPTYPE_FEATURES_REPLY:
1324     case OFPTYPE_GET_CONFIG_REQUEST:
1325     case OFPTYPE_GET_CONFIG_REPLY:
1326     case OFPTYPE_SET_CONFIG:
1327     case OFPTYPE_QUEUE_GET_CONFIG_REQUEST:
1328     case OFPTYPE_QUEUE_GET_CONFIG_REPLY:
1329     case OFPTYPE_GET_ASYNC_REQUEST:
1330     case OFPTYPE_GET_ASYNC_REPLY:
1331     case OFPTYPE_GROUP_STATS_REQUEST:
1332     case OFPTYPE_GROUP_STATS_REPLY:
1333     case OFPTYPE_GROUP_DESC_STATS_REQUEST:
1334     case OFPTYPE_GROUP_DESC_STATS_REPLY:
1335     case OFPTYPE_GROUP_FEATURES_STATS_REQUEST:
1336     case OFPTYPE_GROUP_FEATURES_STATS_REPLY:
1337     case OFPTYPE_TABLE_FEATURES_STATS_REQUEST:
1338     case OFPTYPE_TABLE_FEATURES_STATS_REPLY:
1339         return false;
1340
1341     case OFPTYPE_PACKET_IN:
1342     case OFPTYPE_FLOW_REMOVED:
1343     case OFPTYPE_PORT_STATUS:
1344     case OFPTYPE_PACKET_OUT:
1345     case OFPTYPE_FLOW_MOD:
1346     case OFPTYPE_GROUP_MOD:
1347     case OFPTYPE_PORT_MOD:
1348     case OFPTYPE_TABLE_MOD:
1349     case OFPTYPE_METER_MOD:
1350     case OFPTYPE_BARRIER_REQUEST:
1351     case OFPTYPE_BARRIER_REPLY:
1352     case OFPTYPE_DESC_STATS_REQUEST:
1353     case OFPTYPE_DESC_STATS_REPLY:
1354     case OFPTYPE_FLOW_STATS_REQUEST:
1355     case OFPTYPE_FLOW_STATS_REPLY:
1356     case OFPTYPE_AGGREGATE_STATS_REQUEST:
1357     case OFPTYPE_AGGREGATE_STATS_REPLY:
1358     case OFPTYPE_TABLE_STATS_REQUEST:
1359     case OFPTYPE_TABLE_STATS_REPLY:
1360     case OFPTYPE_PORT_STATS_REQUEST:
1361     case OFPTYPE_PORT_STATS_REPLY:
1362     case OFPTYPE_QUEUE_STATS_REQUEST:
1363     case OFPTYPE_QUEUE_STATS_REPLY:
1364     case OFPTYPE_PORT_DESC_STATS_REQUEST:
1365     case OFPTYPE_PORT_DESC_STATS_REPLY:
1366     case OFPTYPE_METER_STATS_REQUEST:
1367     case OFPTYPE_METER_STATS_REPLY:
1368     case OFPTYPE_METER_CONFIG_STATS_REQUEST:
1369     case OFPTYPE_METER_CONFIG_STATS_REPLY:
1370     case OFPTYPE_METER_FEATURES_STATS_REQUEST:
1371     case OFPTYPE_METER_FEATURES_STATS_REPLY:
1372     case OFPTYPE_ROLE_REQUEST:
1373     case OFPTYPE_ROLE_REPLY:
1374     case OFPTYPE_ROLE_STATUS:
1375     case OFPTYPE_SET_FLOW_FORMAT:
1376     case OFPTYPE_FLOW_MOD_TABLE_ID:
1377     case OFPTYPE_SET_PACKET_IN_FORMAT:
1378     case OFPTYPE_FLOW_AGE:
1379     case OFPTYPE_SET_ASYNC_CONFIG:
1380     case OFPTYPE_SET_CONTROLLER_ID:
1381     case OFPTYPE_FLOW_MONITOR_STATS_REQUEST:
1382     case OFPTYPE_FLOW_MONITOR_STATS_REPLY:
1383     case OFPTYPE_FLOW_MONITOR_CANCEL:
1384     case OFPTYPE_FLOW_MONITOR_PAUSED:
1385     case OFPTYPE_FLOW_MONITOR_RESUMED:
1386     default:
1387         return true;
1388     }
1389 }
1390
1391 /* Returns true if 'rc' is currently logging information about connection
1392  * attempts, false if logging should be suppressed because 'rc' hasn't
1393  * successuflly connected in too long. */
1394 static bool
1395 rconn_logging_connection_attempts__(const struct rconn *rc)
1396     OVS_REQUIRES(rc->mutex)
1397 {
1398     return rc->backoff < rc->max_backoff;
1399 }