]> git.proxmox.com Git - mirror_ovs.git/blame - lib/rconn.h
Don't go beyond buffer length when printing descriptions
[mirror_ovs.git] / lib / rconn.h
CommitLineData
064af421
BP
1/*
2 * Copyright (c) 2008, 2009 Nicira Networks.
3 *
a14bc59f
BP
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:
064af421 7 *
a14bc59f
BP
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.
064af421
BP
15 */
16
17#ifndef RCONN_H
18#define RCONN_H 1
19
20#include "queue.h"
21#include <stdbool.h>
22#include <stdint.h>
23#include <time.h>
24
25/* A wrapper around vconn that provides queuing and optionally reliability.
26 *
27 * An rconn maintains a message transmission queue of bounded length specified
28 * by the caller. The rconn does not guarantee reliable delivery of
29 * queued messages: all queued messages are dropped when reconnection becomes
30 * necessary.
31 *
32 * An rconn optionally provides reliable communication, in this sense: the
33 * rconn will re-connect, with exponential backoff, when the underlying vconn
34 * disconnects.
35 */
36
37struct vconn;
38struct rconn_packet_counter;
39
40struct rconn *rconn_new(const char *name,
41 int inactivity_probe_interval, int max_backoff);
42struct rconn *rconn_new_from_vconn(const char *name, struct vconn *);
43struct rconn *rconn_create(int inactivity_probe_interval, int max_backoff);
44
45void rconn_set_max_backoff(struct rconn *, int max_backoff);
46int rconn_get_max_backoff(const struct rconn *);
47void rconn_set_probe_interval(struct rconn *, int inactivity_probe_interval);
48int rconn_get_probe_interval(const struct rconn *);
49
50int rconn_connect(struct rconn *, const char *name);
51void rconn_connect_unreliably(struct rconn *,
52 const char *name, struct vconn *vconn);
53void rconn_reconnect(struct rconn *);
54void rconn_disconnect(struct rconn *);
55void rconn_destroy(struct rconn *);
56
57void rconn_run(struct rconn *);
58void rconn_run_wait(struct rconn *);
59struct ofpbuf *rconn_recv(struct rconn *);
60void rconn_recv_wait(struct rconn *);
61int rconn_send(struct rconn *, struct ofpbuf *, struct rconn_packet_counter *);
62int rconn_send_with_limit(struct rconn *, struct ofpbuf *,
63 struct rconn_packet_counter *, int queue_limit);
64unsigned int rconn_packets_sent(const struct rconn *);
65unsigned int rconn_packets_received(const struct rconn *);
66
67void rconn_add_monitor(struct rconn *, struct vconn *);
68
69const char *rconn_get_name(const struct rconn *);
70bool rconn_is_alive(const struct rconn *);
71bool rconn_is_connected(const struct rconn *);
7778bd15 72bool rconn_is_admitted(const struct rconn *);
064af421
BP
73int rconn_failure_duration(const struct rconn *);
74bool rconn_is_connectivity_questionable(struct rconn *);
75
193456d5
JP
76uint32_t rconn_get_remote_ip(const struct rconn *);
77uint16_t rconn_get_remote_port(const struct rconn *);
78uint32_t rconn_get_local_ip(const struct rconn *);
79uint16_t rconn_get_local_port(const struct rconn *);
064af421
BP
80
81const char *rconn_get_state(const struct rconn *);
82unsigned int rconn_get_attempted_connections(const struct rconn *);
83unsigned int rconn_get_successful_connections(const struct rconn *);
84time_t rconn_get_last_connection(const struct rconn *);
7df824b7 85time_t rconn_get_last_received(const struct rconn *);
064af421
BP
86time_t rconn_get_creation_time(const struct rconn *);
87unsigned long int rconn_get_total_time_connected(const struct rconn *);
88int rconn_get_backoff(const struct rconn *);
89unsigned int rconn_get_state_elapsed(const struct rconn *);
90unsigned int rconn_get_connection_seqno(const struct rconn *);
91
92/* Counts the number of packets queued into an rconn by a given source. */
93struct rconn_packet_counter {
94 int n; /* Number of packets queued. */
95 int ref_cnt; /* Number of owners. */
96};
97
98struct rconn_packet_counter *rconn_packet_counter_create(void);
99void rconn_packet_counter_destroy(struct rconn_packet_counter *);
100void rconn_packet_counter_inc(struct rconn_packet_counter *);
101void rconn_packet_counter_dec(struct rconn_packet_counter *);
102
103static inline int
104rconn_packet_counter_read(const struct rconn_packet_counter *counter)
105{
106 return counter->n;
107}
108
109#endif /* rconn.h */