Update copyright on all non-GPL files
[sliver-openvswitch.git] / lib / vconn-tcp.c
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 #include "vconn.h"
35 #include <assert.h>
36 #include <errno.h>
37 #include <netdb.h>
38 #include <poll.h>
39 #include <sys/types.h>
40 #include <netinet/in.h>
41 #include <netinet/tcp.h>
42 #include <stdlib.h>
43 #include <string.h>
44 #include <unistd.h>
45 #include "buffer.h"
46 #include "socket-util.h"
47 #include "util.h"
48 #include "openflow.h"
49 #include "ofp-print.h"
50 #include "poll-loop.h"
51
52 #include "vlog.h"
53 #define THIS_MODULE VLM_vconn_tcp
54
55 /* Active TCP. */
56
57 struct tcp_vconn
58 {
59     struct vconn vconn;
60     int fd;
61     struct buffer *rxbuf;
62     struct buffer *txbuf;
63     struct poll_waiter *tx_waiter;
64 };
65
66 static int
67 new_tcp_vconn(const char *name, int fd, int connect_status,
68               struct vconn **vconnp)
69 {
70     struct tcp_vconn *tcp;
71     int on = 1;
72     int retval;
73
74     retval = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof on);
75     if (retval) {
76         VLOG_ERR("%s: setsockopt(TCP_NODELAY): %s", name, strerror(errno));
77         close(fd);
78         return errno;
79     }
80
81     tcp = xmalloc(sizeof *tcp);
82     tcp->vconn.class = &tcp_vconn_class;
83     tcp->vconn.connect_status = connect_status;
84     tcp->fd = fd;
85     tcp->txbuf = NULL;
86     tcp->tx_waiter = NULL;
87     tcp->rxbuf = NULL;
88     *vconnp = &tcp->vconn;
89     return 0;
90 }
91
92 static struct tcp_vconn *
93 tcp_vconn_cast(struct vconn *vconn)
94 {
95     assert(vconn->class == &tcp_vconn_class);
96     return CONTAINER_OF(vconn, struct tcp_vconn, vconn);
97 }
98
99
100 static int
101 tcp_open(const char *name, char *suffix, struct vconn **vconnp)
102 {
103     char *save_ptr;
104     const char *host_name;
105     const char *port_string;
106     struct sockaddr_in sin;
107     int retval;
108     int fd;
109
110     /* Glibc 2.7 has a bug in strtok_r when compiling with optimization that
111      * can cause segfaults here:
112      * http://sources.redhat.com/bugzilla/show_bug.cgi?id=5614.
113      * Using "::" instead of the obvious ":" works around it. */
114     host_name = strtok_r(suffix, "::", &save_ptr);
115     port_string = strtok_r(NULL, "::", &save_ptr);
116     if (!host_name) {
117         fatal(0, "%s: bad peer name format", name);
118     }
119
120     memset(&sin, 0, sizeof sin);
121     sin.sin_family = AF_INET;
122     if (lookup_ip(host_name, &sin.sin_addr)) {
123         return ENOENT;
124     }
125     sin.sin_port = htons(port_string ? atoi(port_string) : OFP_TCP_PORT);
126
127     fd = socket(AF_INET, SOCK_STREAM, 0);
128     if (fd < 0) {
129         VLOG_ERR("%s: socket: %s", name, strerror(errno));
130         return errno;
131     }
132
133     retval = set_nonblocking(fd);
134     if (retval) {
135         close(fd);
136         return retval;
137     }
138
139     retval = connect(fd, (struct sockaddr *) &sin, sizeof sin);
140     if (retval < 0) {
141         if (errno == EINPROGRESS) {
142             return new_tcp_vconn(name, fd, EAGAIN, vconnp);
143         } else {
144             int error = errno;
145             VLOG_ERR("%s: connect: %s", name, strerror(error));
146             close(fd);
147             return error;
148         }
149     } else {
150         return new_tcp_vconn(name, fd, 0, vconnp);
151     }
152 }
153
154 static void
155 tcp_close(struct vconn *vconn)
156 {
157     struct tcp_vconn *tcp = tcp_vconn_cast(vconn);
158     poll_cancel(tcp->tx_waiter);
159     close(tcp->fd);
160     free(tcp);
161 }
162
163 static int
164 tcp_connect(struct vconn *vconn)
165 {
166     struct tcp_vconn *tcp = tcp_vconn_cast(vconn);
167     return check_connection_completion(tcp->fd);
168 }
169
170 static int
171 tcp_recv(struct vconn *vconn, struct buffer **bufferp)
172 {
173     struct tcp_vconn *tcp = tcp_vconn_cast(vconn);
174     struct buffer *rx;
175     size_t want_bytes;
176     ssize_t retval;
177
178     if (tcp->rxbuf == NULL) {
179         tcp->rxbuf = buffer_new(1564);
180     }
181     rx = tcp->rxbuf;
182
183 again:
184     if (sizeof(struct ofp_header) > rx->size) {
185         want_bytes = sizeof(struct ofp_header) - rx->size;
186     } else {
187         struct ofp_header *oh = rx->data;
188         size_t length = ntohs(oh->length);
189         if (length < sizeof(struct ofp_header)) {
190             VLOG_ERR("received too-short ofp_header (%zu bytes)", length);
191             return EPROTO;
192         }
193         want_bytes = length - rx->size;
194     }
195     buffer_reserve_tailroom(rx, want_bytes);
196
197     retval = read(tcp->fd, buffer_tail(rx), want_bytes);
198     if (retval > 0) {
199         rx->size += retval;
200         if (retval == want_bytes) {
201             if (rx->size > sizeof(struct ofp_header)) {
202                 *bufferp = rx;
203                 tcp->rxbuf = NULL;
204                 return 0;
205             } else {
206                 goto again;
207             }
208         }
209         return EAGAIN;
210     } else if (retval == 0) {
211         return rx->size ? EPROTO : EOF;
212     } else {
213         return retval ? errno : EAGAIN;
214     }
215 }
216
217 static void
218 tcp_clear_txbuf(struct tcp_vconn *tcp)
219 {
220     buffer_delete(tcp->txbuf);
221     tcp->txbuf = NULL;
222     tcp->tx_waiter = NULL;
223 }
224
225 static void
226 tcp_do_tx(int fd UNUSED, short int revents UNUSED, void *vconn_)
227 {
228     struct vconn *vconn = vconn_;
229     struct tcp_vconn *tcp = tcp_vconn_cast(vconn);
230     ssize_t n = write(tcp->fd, tcp->txbuf->data, tcp->txbuf->size);
231     if (n < 0) {
232         if (errno != EAGAIN) {
233             VLOG_ERR("send: %s", strerror(errno));
234             tcp_clear_txbuf(tcp);
235             return;
236         }
237     } else if (n > 0) {
238         buffer_pull(tcp->txbuf, n);
239         if (!tcp->txbuf->size) {
240             tcp_clear_txbuf(tcp);
241             return;
242         }
243     }
244     tcp->tx_waiter = poll_fd_callback(tcp->fd, POLLOUT, tcp_do_tx, vconn);
245 }
246
247 static int
248 tcp_send(struct vconn *vconn, struct buffer *buffer)
249 {
250     struct tcp_vconn *tcp = tcp_vconn_cast(vconn);
251     ssize_t retval;
252
253     if (tcp->txbuf) {
254         return EAGAIN;
255     }
256
257     retval = write(tcp->fd, buffer->data, buffer->size);
258     if (retval == buffer->size) {
259         buffer_delete(buffer);
260         return 0;
261     } else if (retval >= 0 || errno == EAGAIN) {
262         tcp->txbuf = buffer;
263         if (retval > 0) {
264             buffer_pull(buffer, retval);
265         }
266         tcp->tx_waiter = poll_fd_callback(tcp->fd, POLLOUT, tcp_do_tx, vconn);
267         return 0;
268     } else {
269         return errno;
270     }
271 }
272
273 static void
274 tcp_wait(struct vconn *vconn, enum vconn_wait_type wait)
275 {
276     struct tcp_vconn *tcp = tcp_vconn_cast(vconn);
277     switch (wait) {
278     case WAIT_CONNECT:
279         poll_fd_wait(tcp->fd, POLLOUT, NULL);
280         break;
281
282     case WAIT_SEND:
283         if (!tcp->txbuf) {
284             poll_fd_wait(tcp->fd, POLLOUT, NULL);
285         } else {
286             /* Nothing to do: need to drain txbuf first. */
287         }
288         break;
289
290     case WAIT_RECV:
291         poll_fd_wait(tcp->fd, POLLIN, NULL);
292         break;
293
294     default:
295         NOT_REACHED();
296     }
297 }
298
299 struct vconn_class tcp_vconn_class = {
300     .name = "tcp",
301     .open = tcp_open,
302     .close = tcp_close,
303     .connect = tcp_connect,
304     .recv = tcp_recv,
305     .send = tcp_send,
306     .wait = tcp_wait,
307 };
308 \f
309 /* Passive TCP. */
310
311 struct ptcp_vconn
312 {
313     struct vconn vconn;
314     int fd;
315 };
316
317 static struct ptcp_vconn *
318 ptcp_vconn_cast(struct vconn *vconn)
319 {
320     assert(vconn->class == &ptcp_vconn_class);
321     return CONTAINER_OF(vconn, struct ptcp_vconn, vconn);
322 }
323
324 static int
325 ptcp_open(const char *name, char *suffix, struct vconn **vconnp)
326 {
327     struct sockaddr_in sin;
328     struct ptcp_vconn *ptcp;
329     int retval;
330     int fd;
331     unsigned int yes  = 1;
332
333     fd = socket(AF_INET, SOCK_STREAM, 0);
334     if (fd < 0) {
335         VLOG_ERR("%s: socket: %s", name, strerror(errno));
336         return errno;
337     }
338
339     if ( setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,&yes,sizeof(yes)) < 0) {
340         VLOG_ERR("%s: setsockopt::SO_REUSEADDR: %s", name, strerror(errno));
341         return errno;
342     }
343
344
345     memset(&sin, 0, sizeof sin);
346     sin.sin_family = AF_INET;
347     sin.sin_addr.s_addr = htonl(INADDR_ANY);
348     sin.sin_port = htons(atoi(suffix) ? atoi(suffix) : OFP_TCP_PORT);
349     retval = bind(fd, (struct sockaddr *) &sin, sizeof sin);
350     if (retval < 0) {
351         int error = errno;
352         VLOG_ERR("%s: bind: %s", name, strerror(error));
353         close(fd);
354         return error;
355     }
356
357     retval = listen(fd, 10);
358     if (retval < 0) {
359         int error = errno;
360         VLOG_ERR("%s: listen: %s", name, strerror(error));
361         close(fd);
362         return error;
363     }
364
365     retval = set_nonblocking(fd);
366     if (retval) {
367         close(fd);
368         return retval;
369     }
370
371     ptcp = xmalloc(sizeof *ptcp);
372     ptcp->vconn.class = &ptcp_vconn_class;
373     ptcp->vconn.connect_status = 0;
374     ptcp->fd = fd;
375     *vconnp = &ptcp->vconn;
376     return 0;
377 }
378
379 static void
380 ptcp_close(struct vconn *vconn)
381 {
382     struct ptcp_vconn *ptcp = ptcp_vconn_cast(vconn);
383     close(ptcp->fd);
384     free(ptcp);
385 }
386
387 static int
388 ptcp_accept(struct vconn *vconn, struct vconn **new_vconnp)
389 {
390     struct ptcp_vconn *ptcp = ptcp_vconn_cast(vconn);
391     int new_fd;
392     int error;
393
394     new_fd = accept(ptcp->fd, NULL, NULL);
395     if (new_fd < 0) {
396         int error = errno;
397         if (error != EAGAIN) {
398             VLOG_DBG("accept: %s", strerror(error));
399         }
400         return error;
401     }
402
403     error = set_nonblocking(new_fd);
404     if (error) {
405         close(new_fd);
406         return error;
407     }
408
409     return new_tcp_vconn("tcp" /* FIXME */, new_fd, 0, new_vconnp);
410 }
411
412 static void
413 ptcp_wait(struct vconn *vconn, enum vconn_wait_type wait)
414 {
415     struct ptcp_vconn *ptcp = ptcp_vconn_cast(vconn);
416     assert(wait == WAIT_ACCEPT);
417     poll_fd_wait(ptcp->fd, POLLIN, NULL);
418 }
419
420 struct vconn_class ptcp_vconn_class = {
421     .name = "ptcp",
422     .open = ptcp_open,
423     .close = ptcp_close,
424     .accept = ptcp_accept,
425     .wait = ptcp_wait
426 };
427