Add --max-idle option to secchan and controller.
[sliver-openvswitch.git] / include / vconn.h
1 /* Copyright (c) 2008 The Board of Trustees of The Leland Stanford
2  * Junior University
3  * 
4  * We are making the OpenFlow specification and associated documentation
5  * (Software) available for public use and benefit with the expectation
6  * that others will use, modify and enhance the Software and contribute
7  * those enhancements back to the community. However, since we would
8  * like to make the Software available for broadest use, with as few
9  * restrictions as possible permission is hereby granted, free of
10  * charge, to any person obtaining a copy of this Software to deal in
11  * the Software under the copyrights without restriction, including
12  * without limitation the rights to use, copy, modify, merge, publish,
13  * distribute, sublicense, and/or sell copies of the Software, and to
14  * permit persons to whom the Software is furnished to do so, subject to
15  * the following conditions:
16  * 
17  * The above copyright notice and this permission notice shall be
18  * included in all copies or substantial portions of the Software.
19  * 
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
24  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
25  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
26  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27  * SOFTWARE.
28  * 
29  * The name and trademarks of copyright holder(s) may NOT be used in
30  * advertising or publicity pertaining to the Software or any
31  * derivatives without specific, written prior permission.
32  */
33
34 #ifndef VCONN_H
35 #define VCONN_H 1
36
37 #include <stdbool.h>
38 #include <stdint.h>
39
40 struct buffer;
41 struct flow;
42 struct pollfd;
43
44 /* Client interface. */
45
46 /* Virtual connection to an OpenFlow device. */
47 struct vconn {
48     struct vconn_class *class;
49     int connect_status;
50 };
51
52 void vconn_usage(bool active, bool passive);
53 int vconn_open(const char *name, struct vconn **);
54 void vconn_close(struct vconn *);
55 bool vconn_is_passive(const struct vconn *);
56 int vconn_connect(struct vconn *);
57 int vconn_accept(struct vconn *, struct vconn **);
58 int vconn_recv(struct vconn *, struct buffer **);
59 int vconn_send(struct vconn *, struct buffer *);
60
61 int vconn_open_block(const char *name, struct vconn **);
62 int vconn_send_block(struct vconn *, struct buffer *);
63 int vconn_recv_block(struct vconn *, struct buffer **);
64
65 enum vconn_wait_type {
66     WAIT_CONNECT,
67     WAIT_ACCEPT,
68     WAIT_RECV,
69     WAIT_SEND
70 };
71 void vconn_wait(struct vconn *, enum vconn_wait_type);
72 void vconn_connect_wait(struct vconn *);
73 void vconn_accept_wait(struct vconn *);
74 void vconn_recv_wait(struct vconn *);
75 void vconn_send_wait(struct vconn *);
76
77 struct buffer *make_add_simple_flow(const struct flow *,
78                                     uint32_t buffer_id, uint16_t out_port,
79                                     uint16_t max_idle);
80 struct buffer *make_buffered_packet_out(uint32_t buffer_id,
81                                         uint16_t in_port, uint16_t out_port);
82 struct buffer *make_unbuffered_packet_out(const struct buffer *packet,
83                                           uint16_t in_port, uint16_t out_port);
84 \f
85 /* Provider interface. */
86
87 struct vconn_class {
88     /* Prefix for connection names, e.g. "nl", "tcp". */
89     const char *name;
90
91     /* Attempts to connect to an OpenFlow device.  'name' is the full
92      * connection name provided by the user, e.g. "nl:0", "tcp:1.2.3.4".  This
93      * name is useful for error messages but must not be modified.
94      *
95      * 'suffix' is a copy of 'name' following the colon and may be modified.
96      *
97      * Returns 0 if successful, otherwise a positive errno value.  If
98      * successful, stores a pointer to the new connection in '*vconnp'.
99      *
100      * The open function must not block waiting for a connection to complete.
101      * If the connection cannot be completed immediately, it should return
102      * EAGAIN (not EINPROGRESS, as returned by the connect system call) and
103      * continue the connection in the background. */
104     int (*open)(const char *name, char *suffix, struct vconn **vconnp);
105
106     /* Closes 'vconn' and frees associated memory. */
107     void (*close)(struct vconn *vconn);
108
109     /* Tries to complete the connection on 'vconn', which must be an active
110      * vconn.  If 'vconn''s connection is complete, returns 0 if the connection
111      * was successful or a positive errno value if it failed.  If the
112      * connection is still in progress, returns EAGAIN.
113      *
114      * The connect function must not block waiting for the connection to
115      * complete; instead, it should return EAGAIN immediately. */
116     int (*connect)(struct vconn *vconn);
117
118     /* Tries to accept a new connection on 'vconn', which must be a passive
119      * vconn.  If successful, stores the new connection in '*new_vconnp' and
120      * returns 0.  Otherwise, returns a positive errno value.
121      *
122      * The accept function must not block waiting for a connection.  If no
123      * connection is ready to be accepted, it should return EAGAIN.
124      *
125      * Nonnull iff this is a passive vconn (one that accepts connections and
126      * does not transfer data). */
127     int (*accept)(struct vconn *vconn, struct vconn **new_vconnp);
128
129     /* Tries to receive an OpenFlow message from 'vconn', which must be an
130      * active vconn.  If successful, stores the received message into '*msgp'
131      * and returns 0.  The caller is responsible for destroying the message
132      * with buffer_delete().  On failure, returns a positive errno value and
133      * stores a null pointer into '*msgp'.
134      *
135      * If the connection has been closed in the normal fashion, returns EOF.
136      *
137      * The recv function must not block waiting for a packet to arrive.  If no
138      * packets have been received, it should return EAGAIN.
139      *
140      * Nonnull iff this is an active vconn (one that transfers data and does
141      * not accept connections). */
142     int (*recv)(struct vconn *vconn, struct buffer **msgp);
143
144     /* Tries to queue 'msg' for transmission on 'vconn', which must be an
145      * active vconn.  If successful, returns 0, in which case ownership of
146      * 'msg' is transferred to the vconn.  Success does not guarantee that
147      * 'msg' has been or ever will be delivered to the peer, only that it has
148      * been queued for transmission.
149      *
150      * Returns a positive errno value on failure, in which case the caller
151      * retains ownership of 'msg'.
152      *
153      * The send function must not block.  If 'msg' cannot be immediately
154      * accepted for transmission, it should return EAGAIN.
155      *
156      * Nonnull iff this is an active vconn (one that transfers data and does
157      * not accept connections). */
158     int (*send)(struct vconn *vconn, struct buffer *msg);
159
160     void (*wait)(struct vconn *vconn, enum vconn_wait_type);
161 };
162
163 extern struct vconn_class tcp_vconn_class;
164 extern struct vconn_class ptcp_vconn_class;
165 #ifdef HAVE_OPENSSL
166 extern struct vconn_class ssl_vconn_class;
167 extern struct vconn_class pssl_vconn_class;
168 #endif
169 #ifdef HAVE_NETLINK
170 extern struct vconn_class netlink_vconn_class;
171 #endif
172
173 #endif /* vconn.h */