Merge changes from citrix branch into master.
[cascardo/ovs.git] / lib / vconn-tcp.c
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 #include <config.h>
18 #include "vconn.h"
19 #include <errno.h>
20 #include <inttypes.h>
21 #include <sys/types.h>
22 #include <netinet/in.h>
23 #include <netinet/tcp.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <unistd.h>
27 #include "packets.h"
28 #include "socket-util.h"
29 #include "util.h"
30 #include "openflow/openflow.h"
31 #include "vconn-provider.h"
32 #include "vconn-stream.h"
33
34 #include "vlog.h"
35 #define THIS_MODULE VLM_vconn_tcp
36
37 /* Active TCP. */
38
39 static int
40 new_tcp_vconn(const char *name, int fd, int connect_status,
41               const struct sockaddr_in *sin, struct vconn **vconnp)
42 {
43     int on = 1;
44     int retval;
45
46     retval = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof on);
47     if (retval) {
48         VLOG_ERR("%s: setsockopt(TCP_NODELAY): %s", name, strerror(errno));
49         close(fd);
50         return errno;
51     }
52
53     return new_stream_vconn(name, fd, connect_status, sin->sin_addr.s_addr,
54                             true, vconnp);
55 }
56
57 static int
58 tcp_open(const char *name, char *suffix, struct vconn **vconnp)
59 {
60     struct sockaddr_in sin;
61     int fd, error;
62
63     error = tcp_open_active(suffix, OFP_TCP_PORT, NULL, &fd);
64     if (fd >= 0) {
65         return new_tcp_vconn(name, fd, error, &sin, vconnp);
66     } else {
67         VLOG_ERR("%s: connect: %s", name, strerror(error));
68         return error;
69     }
70 }
71
72 struct vconn_class tcp_vconn_class = {
73     "tcp",                      /* name */
74     tcp_open,                   /* open */
75     NULL,                       /* close */
76     NULL,                       /* connect */
77     NULL,                       /* recv */
78     NULL,                       /* send */
79     NULL,                       /* wait */
80 };
81 \f
82 /* Passive TCP. */
83
84 static int ptcp_accept(int fd, const struct sockaddr *sa, size_t sa_len,
85                        struct vconn **vconnp);
86
87 static int
88 ptcp_open(const char *name UNUSED, char *suffix, struct pvconn **pvconnp)
89 {
90     int fd;
91
92     fd = tcp_open_passive(suffix, OFP_TCP_PORT);
93     if (fd < 0) {
94         return -fd;
95     } else {
96         return new_pstream_pvconn("ptcp", fd, ptcp_accept, pvconnp);
97     }
98 }
99
100 static int
101 ptcp_accept(int fd, const struct sockaddr *sa, size_t sa_len,
102             struct vconn **vconnp)
103 {
104     const struct sockaddr_in *sin = (const struct sockaddr_in *) sa;
105     char name[128];
106
107     if (sa_len == sizeof(struct sockaddr_in) && sin->sin_family == AF_INET) {
108         sprintf(name, "tcp:"IP_FMT, IP_ARGS(&sin->sin_addr));
109         if (sin->sin_port != htons(OFP_TCP_PORT)) {
110             sprintf(strchr(name, '\0'), ":%"PRIu16, ntohs(sin->sin_port));
111         }
112     } else {
113         strcpy(name, "tcp");
114     }
115     return new_tcp_vconn(name, fd, 0, sin, vconnp);
116 }
117
118 struct pvconn_class ptcp_pvconn_class = {
119     "ptcp",
120     ptcp_open,
121     NULL,
122     NULL,
123     NULL
124 };
125