Merge citrix branch into master.
[cascardo/ovs.git] / lib / vconn-provider.h
1 /*
2  * Copyright (c) 2008, 2009 Nicira Networks.
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 #ifndef VCONN_PROVIDER_H
18 #define VCONN_PROVIDER_H 1
19
20 /* Provider interface to vconns, which provide a virtual connection to an
21  * OpenFlow device. */
22
23 #include <assert.h>
24 #include "vconn.h"
25 \f
26 /* Active virtual connection to an OpenFlow device. */
27
28 /* Active virtual connection to an OpenFlow device.
29  *
30  * This structure should be treated as opaque by vconn implementations. */
31 struct vconn {
32     struct vconn_class *class;
33     int state;
34     int error;
35     int min_version;
36     int version;
37     uint32_t remote_ip;
38     uint16_t remote_port;
39     uint32_t local_ip;
40     uint16_t local_port;
41     char *name;
42     bool reconnectable;
43 };
44
45 void vconn_init(struct vconn *, struct vconn_class *, int connect_status,
46                 const char *name, bool reconnectable);
47 void vconn_set_remote_ip(struct vconn *, uint32_t remote_ip);
48 void vconn_set_remote_port(struct vconn *, uint16_t remote_port);
49 void vconn_set_local_ip(struct vconn *, uint32_t local_ip);
50 void vconn_set_local_port(struct vconn *, uint16_t local_port);
51 static inline void vconn_assert_class(const struct vconn *vconn,
52                                       const struct vconn_class *class)
53 {
54     assert(vconn->class == class);
55 }
56
57 struct vconn_class {
58     /* Prefix for connection names, e.g. "nl", "tcp". */
59     const char *name;
60
61     /* Attempts to connect to an OpenFlow device.  'name' is the full
62      * connection name provided by the user, e.g. "tcp:1.2.3.4".  This name is
63      * useful for error messages but must not be modified.
64      *
65      * 'suffix' is a copy of 'name' following the colon and may be modified.
66      *
67      * Returns 0 if successful, otherwise a positive errno value.  If
68      * successful, stores a pointer to the new connection in '*vconnp'.
69      *
70      * The open function must not block waiting for a connection to complete.
71      * If the connection cannot be completed immediately, it should return
72      * EAGAIN (not EINPROGRESS, as returned by the connect system call) and
73      * continue the connection in the background. */
74     int (*open)(const char *name, char *suffix, struct vconn **vconnp);
75
76     /* Closes 'vconn' and frees associated memory. */
77     void (*close)(struct vconn *vconn);
78
79     /* Tries to complete the connection on 'vconn'.  If 'vconn''s connection is
80      * complete, returns 0 if the connection was successful or a positive errno
81      * value if it failed.  If the connection is still in progress, returns
82      * EAGAIN.
83      *
84      * The connect function must not block waiting for the connection to
85      * complete; instead, it should return EAGAIN immediately. */
86     int (*connect)(struct vconn *vconn);
87
88     /* Tries to receive an OpenFlow message from 'vconn'.  If successful,
89      * stores the received message into '*msgp' and returns 0.  The caller is
90      * responsible for destroying the message with ofpbuf_delete().  On
91      * failure, returns a positive errno value and stores a null pointer into
92      * '*msgp'.
93      *
94      * If the connection has been closed in the normal fashion, returns EOF.
95      *
96      * The recv function must not block waiting for a packet to arrive.  If no
97      * packets have been received, it should return EAGAIN. */
98     int (*recv)(struct vconn *vconn, struct ofpbuf **msgp);
99
100     /* Tries to queue 'msg' for transmission on 'vconn'.  If successful,
101      * returns 0, in which case ownership of 'msg' is transferred to the vconn.
102      * Success does not guarantee that 'msg' has been or ever will be delivered
103      * to the peer, only that it has been queued for transmission.
104      *
105      * Returns a positive errno value on failure, in which case the caller
106      * retains ownership of 'msg'.
107      *
108      * The send function must not block.  If 'msg' cannot be immediately
109      * accepted for transmission, it should return EAGAIN. */
110     int (*send)(struct vconn *vconn, struct ofpbuf *msg);
111
112     /* Arranges for the poll loop to wake up when 'vconn' is ready to take an
113      * action of the given 'type'. */
114     void (*wait)(struct vconn *vconn, enum vconn_wait_type type);
115 };
116 \f
117 /* Passive virtual connection to an OpenFlow device.
118  *
119  * This structure should be treated as opaque by vconn implementations. */
120 struct pvconn {
121     struct pvconn_class *class;
122     char *name;
123 };
124
125 void pvconn_init(struct pvconn *, struct pvconn_class *, const char *name);
126 static inline void pvconn_assert_class(const struct pvconn *pvconn,
127                                        const struct pvconn_class *class)
128 {
129     assert(pvconn->class == class);
130 }
131
132 struct pvconn_class {
133     /* Prefix for connection names, e.g. "ptcp", "pssl". */
134     const char *name;
135
136     /* Attempts to start listening for OpenFlow connections.  'name' is the
137      * full connection name provided by the user, e.g. "ptcp:1234".  This name
138      * is useful for error messages but must not be modified.
139      *
140      * 'suffix' is a copy of 'name' following the colon and may be modified.
141      *
142      * Returns 0 if successful, otherwise a positive errno value.  If
143      * successful, stores a pointer to the new connection in '*pvconnp'.
144      *
145      * The listen function must not block.  If the connection cannot be
146      * completed immediately, it should return EAGAIN (not EINPROGRESS, as
147      * returned by the connect system call) and continue the connection in the
148      * background. */
149     int (*listen)(const char *name, char *suffix, struct pvconn **pvconnp);
150
151     /* Closes 'pvconn' and frees associated memory. */
152     void (*close)(struct pvconn *pvconn);
153
154     /* Tries to accept a new connection on 'pvconn'.  If successful, stores the
155      * new connection in '*new_vconnp' and returns 0.  Otherwise, returns a
156      * positive errno value.
157      *
158      * The accept function must not block waiting for a connection.  If no
159      * connection is ready to be accepted, it should return EAGAIN. */
160     int (*accept)(struct pvconn *pvconn, struct vconn **new_vconnp);
161
162     /* Arranges for the poll loop to wake up when a connection is ready to be
163      * accepted on 'pvconn'. */
164     void (*wait)(struct pvconn *pvconn);
165 };
166
167 /* Active and passive vconn classes. */
168 extern struct vconn_class tcp_vconn_class;
169 extern struct pvconn_class ptcp_pvconn_class;
170 extern struct vconn_class unix_vconn_class;
171 extern struct pvconn_class punix_pvconn_class;
172 #ifdef HAVE_OPENSSL
173 extern struct vconn_class ssl_vconn_class;
174 extern struct pvconn_class pssl_pvconn_class;
175 #endif
176
177 #endif /* vconn-provider.h */