e5d659ccb9710faa646c960453881ca4b82562b6
[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 <stddef.h>
39 #include <stdint.h>
40
41 struct buffer;
42 struct flow;
43 struct pollfd;
44 struct ofp_header;
45
46 /* Client interface. */
47
48 /* Virtual connection to an OpenFlow device. */
49 struct vconn {
50     struct vconn_class *class;
51     int connect_status;
52     uint32_t ip;
53     char *name;
54 };
55
56 void vconn_usage(bool active, bool passive);
57 int vconn_open(const char *name, struct vconn **);
58 void vconn_close(struct vconn *);
59 bool vconn_is_passive(const struct vconn *);
60 uint32_t vconn_get_ip(const struct vconn *);
61 int vconn_connect(struct vconn *);
62 int vconn_accept(struct vconn *, struct vconn **);
63 int vconn_recv(struct vconn *, struct buffer **);
64 int vconn_send(struct vconn *, struct buffer *);
65 int vconn_transact(struct vconn *, struct buffer *, struct buffer **);
66
67 int vconn_open_block(const char *name, struct vconn **);
68 int vconn_send_block(struct vconn *, struct buffer *);
69 int vconn_recv_block(struct vconn *, struct buffer **);
70
71 enum vconn_wait_type {
72     WAIT_CONNECT,
73     WAIT_ACCEPT,
74     WAIT_RECV,
75     WAIT_SEND
76 };
77 void vconn_wait(struct vconn *, enum vconn_wait_type);
78 void vconn_connect_wait(struct vconn *);
79 void vconn_accept_wait(struct vconn *);
80 void vconn_recv_wait(struct vconn *);
81 void vconn_send_wait(struct vconn *);
82
83 void *make_openflow(size_t openflow_len, uint8_t type, struct buffer **);
84 void *make_openflow_xid(size_t openflow_len, uint8_t type,
85                         uint32_t xid, struct buffer **);
86 void update_openflow_length(struct buffer *);
87 struct buffer *make_add_flow(const struct flow *, uint32_t buffer_id,
88                              uint16_t max_idle, size_t n_actions);
89 struct buffer *make_add_simple_flow(const struct flow *,
90                                     uint32_t buffer_id, uint16_t out_port,
91                                     uint16_t max_idle);
92 struct buffer *make_buffered_packet_out(uint32_t buffer_id,
93                                         uint16_t in_port, uint16_t out_port);
94 struct buffer *make_unbuffered_packet_out(const struct buffer *packet,
95                                           uint16_t in_port, uint16_t out_port);
96 struct buffer *make_echo_request(void);
97 struct buffer *make_echo_reply(const struct ofp_header *rq);
98 \f
99 /* Provider interface. */
100
101 struct vconn_class {
102     /* Prefix for connection names, e.g. "nl", "tcp". */
103     const char *name;
104
105     /* Attempts to connect to an OpenFlow device.  'name' is the full
106      * connection name provided by the user, e.g. "nl:0", "tcp:1.2.3.4".  This
107      * name is useful for error messages but must not be modified.
108      *
109      * 'suffix' is a copy of 'name' following the colon and may be modified.
110      *
111      * Returns 0 if successful, otherwise a positive errno value.  If
112      * successful, stores a pointer to the new connection in '*vconnp'.
113      *
114      * The open function must not block waiting for a connection to complete.
115      * If the connection cannot be completed immediately, it should return
116      * EAGAIN (not EINPROGRESS, as returned by the connect system call) and
117      * continue the connection in the background. */
118     int (*open)(const char *name, char *suffix, struct vconn **vconnp);
119
120     /* Closes 'vconn' and frees associated memory. */
121     void (*close)(struct vconn *vconn);
122
123     /* Tries to complete the connection on 'vconn', which must be an active
124      * vconn.  If 'vconn''s connection is complete, returns 0 if the connection
125      * was successful or a positive errno value if it failed.  If the
126      * connection is still in progress, returns EAGAIN.
127      *
128      * The connect function must not block waiting for the connection to
129      * complete; instead, it should return EAGAIN immediately. */
130     int (*connect)(struct vconn *vconn);
131
132     /* Tries to accept a new connection on 'vconn', which must be a passive
133      * vconn.  If successful, stores the new connection in '*new_vconnp' and
134      * returns 0.  Otherwise, returns a positive errno value.
135      *
136      * The accept function must not block waiting for a connection.  If no
137      * connection is ready to be accepted, it should return EAGAIN.
138      *
139      * Nonnull iff this is a passive vconn (one that accepts connections and
140      * does not transfer data). */
141     int (*accept)(struct vconn *vconn, struct vconn **new_vconnp);
142
143     /* Tries to receive an OpenFlow message from 'vconn', which must be an
144      * active vconn.  If successful, stores the received message into '*msgp'
145      * and returns 0.  The caller is responsible for destroying the message
146      * with buffer_delete().  On failure, returns a positive errno value and
147      * stores a null pointer into '*msgp'.
148      *
149      * If the connection has been closed in the normal fashion, returns EOF.
150      *
151      * The recv function must not block waiting for a packet to arrive.  If no
152      * packets have been received, it should return EAGAIN.
153      *
154      * Nonnull iff this is an active vconn (one that transfers data and does
155      * not accept connections). */
156     int (*recv)(struct vconn *vconn, struct buffer **msgp);
157
158     /* Tries to queue 'msg' for transmission on 'vconn', which must be an
159      * active vconn.  If successful, returns 0, in which case ownership of
160      * 'msg' is transferred to the vconn.  Success does not guarantee that
161      * 'msg' has been or ever will be delivered to the peer, only that it has
162      * been queued for transmission.
163      *
164      * Returns a positive errno value on failure, in which case the caller
165      * retains ownership of 'msg'.
166      *
167      * The send function must not block.  If 'msg' cannot be immediately
168      * accepted for transmission, it should return EAGAIN.
169      *
170      * Nonnull iff this is an active vconn (one that transfers data and does
171      * not accept connections). */
172     int (*send)(struct vconn *vconn, struct buffer *msg);
173
174     void (*wait)(struct vconn *vconn, enum vconn_wait_type);
175 };
176
177 extern struct vconn_class tcp_vconn_class;
178 extern struct vconn_class ptcp_vconn_class;
179 extern struct vconn_class unix_vconn_class;
180 extern struct vconn_class punix_vconn_class;
181 #ifdef HAVE_OPENSSL
182 extern struct vconn_class ssl_vconn_class;
183 extern struct vconn_class pssl_vconn_class;
184 #endif
185 #ifdef HAVE_NETLINK
186 extern struct vconn_class netlink_vconn_class;
187 #endif
188
189 #endif /* vconn.h */