dpif-linux: Add thread-safety annotations.
[sliver-openvswitch.git] / lib / stream-tcp.c
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2012, 2013, 2014 Nicira, Inc.
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 "stream.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 <netdb.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <sys/socket.h>
28 #include <unistd.h>
29 #include "dynamic-string.h"
30 #include "packets.h"
31 #include "socket-util.h"
32 #include "util.h"
33 #include "stream-provider.h"
34 #include "stream-fd.h"
35 #include "vlog.h"
36
37 VLOG_DEFINE_THIS_MODULE(stream_tcp);
38
39 /* Active TCP. */
40
41 static int
42 new_tcp_stream(const char *name, int fd, int connect_status,
43                struct stream **streamp)
44 {
45     struct sockaddr_storage local;
46     socklen_t local_len = sizeof local;
47     int on = 1;
48     int retval;
49
50     /* Get the local IP and port information */
51     retval = getsockname(fd, (struct sockaddr *) &local, &local_len);
52     if (retval) {
53         memset(&local, 0, sizeof local);
54     }
55
56     retval = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof on);
57     if (retval) {
58         int error = sock_errno();
59         VLOG_ERR("%s: setsockopt(TCP_NODELAY): %s",
60                  name, sock_strerror(error));
61         closesocket(fd);
62         return error;
63     }
64
65     return new_fd_stream(name, fd, connect_status, streamp);
66 }
67
68 static int
69 tcp_open(const char *name, char *suffix, struct stream **streamp, uint8_t dscp)
70 {
71     int fd, error;
72
73     error = inet_open_active(SOCK_STREAM, suffix, 0, NULL, &fd, dscp);
74     if (fd >= 0) {
75         return new_tcp_stream(name, fd, error, streamp);
76     } else {
77         VLOG_ERR("%s: connect: %s", name, ovs_strerror(error));
78         return error;
79     }
80 }
81
82 const struct stream_class tcp_stream_class = {
83     "tcp",                      /* name */
84     true,                       /* needs_probes */
85     tcp_open,                   /* open */
86     NULL,                       /* close */
87     NULL,                       /* connect */
88     NULL,                       /* recv */
89     NULL,                       /* send */
90     NULL,                       /* run */
91     NULL,                       /* run_wait */
92     NULL,                       /* wait */
93 };
94 \f
95 /* Passive TCP. */
96
97 static int ptcp_accept(int fd, const struct sockaddr_storage *,
98                        size_t, struct stream **streamp);
99
100 static int
101 ptcp_open(const char *name OVS_UNUSED, char *suffix, struct pstream **pstreamp,
102           uint8_t dscp)
103 {
104     char bound_name[SS_NTOP_BUFSIZE + 16];
105     char addrbuf[SS_NTOP_BUFSIZE];
106     struct sockaddr_storage ss;
107     uint16_t port;
108     int error;
109     int fd;
110
111     fd = inet_open_passive(SOCK_STREAM, suffix, -1, &ss, dscp);
112     if (fd < 0) {
113         return -fd;
114     }
115
116     port = ss_get_port(&ss);
117     snprintf(bound_name, sizeof bound_name, "ptcp:%"PRIu16":%s",
118              port, ss_format_address(&ss, addrbuf, sizeof addrbuf));
119
120     error = new_fd_pstream(bound_name, fd, ptcp_accept, set_dscp, NULL,
121                            pstreamp);
122     if (!error) {
123         pstream_set_bound_port(*pstreamp, htons(port));
124     }
125     return error;
126 }
127
128 static int
129 ptcp_accept(int fd, const struct sockaddr_storage *ss,
130             size_t ss_len OVS_UNUSED, struct stream **streamp)
131 {
132     char name[SS_NTOP_BUFSIZE + 16];
133     char addrbuf[SS_NTOP_BUFSIZE];
134
135     snprintf(name, sizeof name, "tcp:%s:%"PRIu16,
136              ss_format_address(ss, addrbuf, sizeof addrbuf),
137              ss_get_port(ss));
138     return new_tcp_stream(name, fd, 0, streamp);
139 }
140
141 const struct pstream_class ptcp_pstream_class = {
142     "ptcp",
143     true,
144     ptcp_open,
145     NULL,
146     NULL,
147     NULL,
148     NULL,
149 };
150