Make "struct vconn" opaque.
[sliver-openvswitch.git] / include / vconn-provider.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_PROVIDER_H
35 #define VCONN_PROVIDER_H 1
36
37 /* Provider interface, which provide a virtual connection to an OpenFlow
38  * device. */
39
40 #include <assert.h>
41 #include "vconn.h"
42
43 /* Virtual connection to an OpenFlow device.
44  *
45  * This structure should be treated as opaque by vconn implementations. */
46 struct vconn {
47     struct vconn_class *class;
48     int connect_status;
49     uint32_t ip;
50     char *name;
51 };
52
53 void vconn_init(struct vconn *, struct vconn_class *, int connect_status,
54                 uint32_t ip, const char *name);
55 static inline void vconn_assert_class(const struct vconn *vconn,
56                                       const struct vconn_class *class)
57 {
58     assert(vconn->class == class);
59 }
60
61 struct vconn_class {
62     /* Prefix for connection names, e.g. "nl", "tcp". */
63     const char *name;
64
65     /* Attempts to connect to an OpenFlow device.  'name' is the full
66      * connection name provided by the user, e.g. "nl:0", "tcp:1.2.3.4".  This
67      * name is useful for error messages but must not be modified.
68      *
69      * 'suffix' is a copy of 'name' following the colon and may be modified.
70      *
71      * Returns 0 if successful, otherwise a positive errno value.  If
72      * successful, stores a pointer to the new connection in '*vconnp'.
73      *
74      * The open function must not block waiting for a connection to complete.
75      * If the connection cannot be completed immediately, it should return
76      * EAGAIN (not EINPROGRESS, as returned by the connect system call) and
77      * continue the connection in the background. */
78     int (*open)(const char *name, char *suffix, struct vconn **vconnp);
79
80     /* Closes 'vconn' and frees associated memory. */
81     void (*close)(struct vconn *vconn);
82
83     /* Tries to complete the connection on 'vconn', which must be an active
84      * vconn.  If 'vconn''s connection is complete, returns 0 if the connection
85      * was successful or a positive errno value if it failed.  If the
86      * connection is still in progress, returns EAGAIN.
87      *
88      * The connect function must not block waiting for the connection to
89      * complete; instead, it should return EAGAIN immediately. */
90     int (*connect)(struct vconn *vconn);
91
92     /* Tries to accept a new connection on 'vconn', which must be a passive
93      * vconn.  If successful, stores the new connection in '*new_vconnp' and
94      * returns 0.  Otherwise, returns a positive errno value.
95      *
96      * The accept function must not block waiting for a connection.  If no
97      * connection is ready to be accepted, it should return EAGAIN.
98      *
99      * Nonnull iff this is a passive vconn (one that accepts connections and
100      * does not transfer data). */
101     int (*accept)(struct vconn *vconn, struct vconn **new_vconnp);
102
103     /* Tries to receive an OpenFlow message from 'vconn', which must be an
104      * active vconn.  If successful, stores the received message into '*msgp'
105      * and returns 0.  The caller is responsible for destroying the message
106      * with buffer_delete().  On failure, returns a positive errno value and
107      * stores a null pointer into '*msgp'.
108      *
109      * If the connection has been closed in the normal fashion, returns EOF.
110      *
111      * The recv function must not block waiting for a packet to arrive.  If no
112      * packets have been received, it should return EAGAIN.
113      *
114      * Nonnull iff this is an active vconn (one that transfers data and does
115      * not accept connections). */
116     int (*recv)(struct vconn *vconn, struct buffer **msgp);
117
118     /* Tries to queue 'msg' for transmission on 'vconn', which must be an
119      * active vconn.  If successful, returns 0, in which case ownership of
120      * 'msg' is transferred to the vconn.  Success does not guarantee that
121      * 'msg' has been or ever will be delivered to the peer, only that it has
122      * been queued for transmission.
123      *
124      * Returns a positive errno value on failure, in which case the caller
125      * retains ownership of 'msg'.
126      *
127      * The send function must not block.  If 'msg' cannot be immediately
128      * accepted for transmission, it should return EAGAIN.
129      *
130      * Nonnull iff this is an active vconn (one that transfers data and does
131      * not accept connections). */
132     int (*send)(struct vconn *vconn, struct buffer *msg);
133
134     void (*wait)(struct vconn *vconn, enum vconn_wait_type);
135 };
136
137 #endif /* vconn-provider.h */