]>
git.saurik.com Git - redis.git/blob - anet.c
1 /* anet.c -- Basic TCP socket stuff made a bit less boring
3 * Copyright (c) 2006-2009, Salvatore Sanfilippo <antirez at gmail dot com>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
9 * * Redistributions of source code must retain the above copyright notice,
10 * this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * * Neither the name of Redis nor the names of its contributors may be used
15 * to endorse or promote products derived from this software without
16 * specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
31 #include <sys/types.h>
32 #include <sys/socket.h>
33 #include <netinet/in.h>
34 #include <netinet/tcp.h>
35 #include <arpa/inet.h>
46 static void anetSetError(char *err
, const char *fmt
, ...)
52 vsnprintf(err
, ANET_ERR_LEN
, fmt
, ap
);
56 int anetNonBlock(char *err
, int fd
)
60 /* Set the socket nonblocking.
61 * Note that fcntl(2) for F_GETFL and F_SETFL can't be
62 * interrupted by a signal. */
63 if ((flags
= fcntl(fd
, F_GETFL
)) == -1) {
64 anetSetError(err
, "fcntl(F_GETFL): %s\n", strerror(errno
));
67 if (fcntl(fd
, F_SETFL
, flags
| O_NONBLOCK
) == -1) {
68 anetSetError(err
, "fcntl(F_SETFL,O_NONBLOCK): %s\n", strerror(errno
));
74 int anetTcpNoDelay(char *err
, int fd
)
77 if (setsockopt(fd
, IPPROTO_TCP
, TCP_NODELAY
, &yes
, sizeof(yes
)) == -1)
79 anetSetError(err
, "setsockopt TCP_NODELAY: %s\n", strerror(errno
));
85 int anetSetSendBuffer(char *err
, int fd
, int buffsize
)
87 if (setsockopt(fd
, SOL_SOCKET
, SO_SNDBUF
, &buffsize
, sizeof(buffsize
)) == -1)
89 anetSetError(err
, "setsockopt SO_SNDBUF: %s\n", strerror(errno
));
95 int anetTcpKeepAlive(char *err
, int fd
)
98 if (setsockopt(fd
, SOL_SOCKET
, SO_KEEPALIVE
, &yes
, sizeof(yes
)) == -1) {
99 anetSetError(err
, "setsockopt SO_KEEPALIVE: %s\n", strerror(errno
));
105 int anetResolve(char *err
, char *host
, char *ipbuf
)
107 struct sockaddr_in sa
;
109 sa
.sin_family
= AF_INET
;
110 if (inet_aton(host
, &sa
.sin_addr
) == 0) {
113 he
= gethostbyname(host
);
115 anetSetError(err
, "can't resolve: %s\n", host
);
118 memcpy(&sa
.sin_addr
, he
->h_addr
, sizeof(struct in_addr
));
120 strcpy(ipbuf
,inet_ntoa(sa
.sin_addr
));
124 #define ANET_CONNECT_NONE 0
125 #define ANET_CONNECT_NONBLOCK 1
126 static int anetTcpGenericConnect(char *err
, char *addr
, int port
, int flags
)
129 struct sockaddr_in sa
;
131 if ((s
= socket(AF_INET
, SOCK_STREAM
, 0)) == -1) {
132 anetSetError(err
, "creating socket: %s\n", strerror(errno
));
135 /* Make sure connection-intensive things like the redis benckmark
136 * will be able to close/open sockets a zillion of times */
137 setsockopt(s
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
139 sa
.sin_family
= AF_INET
;
140 sa
.sin_port
= htons(port
);
141 if (inet_aton(addr
, &sa
.sin_addr
) == 0) {
144 he
= gethostbyname(addr
);
146 anetSetError(err
, "can't resolve: %s\n", addr
);
150 memcpy(&sa
.sin_addr
, he
->h_addr
, sizeof(struct in_addr
));
152 if (flags
& ANET_CONNECT_NONBLOCK
) {
153 if (anetNonBlock(err
,s
) != ANET_OK
)
156 if (connect(s
, (struct sockaddr
*)&sa
, sizeof(sa
)) == -1) {
157 if (errno
== EINPROGRESS
&&
158 flags
& ANET_CONNECT_NONBLOCK
)
161 anetSetError(err
, "connect: %s\n", strerror(errno
));
168 int anetTcpConnect(char *err
, char *addr
, int port
)
170 return anetTcpGenericConnect(err
,addr
,port
,ANET_CONNECT_NONE
);
173 int anetTcpNonBlockConnect(char *err
, char *addr
, int port
)
175 return anetTcpGenericConnect(err
,addr
,port
,ANET_CONNECT_NONBLOCK
);
178 /* Like read(2) but make sure 'count' is read before to return
179 * (unless error or EOF condition is encountered) */
180 int anetRead(int fd
, void *buf
, int count
)
182 int nread
, totlen
= 0;
183 while(totlen
!= count
) {
184 nread
= read(fd
,buf
,count
-totlen
);
185 if (nread
== 0) return totlen
;
186 if (nread
== -1) return -1;
193 /* Like write(2) but make sure 'count' is read before to return
194 * (unless error is encountered) */
195 int anetWrite(int fd
, void *buf
, int count
)
197 int nwritten
, totlen
= 0;
198 while(totlen
!= count
) {
199 nwritten
= write(fd
,buf
,count
-totlen
);
200 if (nwritten
== 0) return totlen
;
201 if (nwritten
== -1) return -1;
208 int anetTcpServer(char *err
, int port
, char *bindaddr
)
211 struct sockaddr_in sa
;
213 if ((s
= socket(AF_INET
, SOCK_STREAM
, 0)) == -1) {
214 anetSetError(err
, "socket: %s\n", strerror(errno
));
217 if (setsockopt(s
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
)) == -1) {
218 anetSetError(err
, "setsockopt SO_REUSEADDR: %s\n", strerror(errno
));
222 memset(&sa
,0,sizeof(sa
));
223 sa
.sin_family
= AF_INET
;
224 sa
.sin_port
= htons(port
);
225 sa
.sin_addr
.s_addr
= htonl(INADDR_ANY
);
227 if (inet_aton(bindaddr
, &sa
.sin_addr
) == 0) {
228 anetSetError(err
, "Invalid bind address\n");
233 if (bind(s
, (struct sockaddr
*)&sa
, sizeof(sa
)) == -1) {
234 anetSetError(err
, "bind: %s\n", strerror(errno
));
238 if (listen(s
, 32) == -1) {
239 anetSetError(err
, "listen: %s\n", strerror(errno
));
246 int anetAccept(char *err
, int serversock
, char *ip
, int *port
)
249 struct sockaddr_in sa
;
254 fd
= accept(serversock
, (struct sockaddr
*)&sa
, &saLen
);
259 anetSetError(err
, "accept: %s\n", strerror(errno
));
265 if (ip
) strcpy(ip
,inet_ntoa(sa
.sin_addr
));
266 if (port
) *port
= ntohs(sa
.sin_port
);