6 static memcached_return_t
set_hostinfo(memcached_server_st
*server
)
11 char str_port
[NI_MAXSERV
];
13 snprintf(str_port
, NI_MAXSERV
, "%u", (uint32_t)server
->port
);
15 memset(&hints
, 0, sizeof(hints
));
17 // hints.ai_family= AF_INET;
18 if (server
->type
== MEMCACHED_CONNECTION_UDP
)
20 hints
.ai_protocol
= IPPROTO_UDP
;
21 hints
.ai_socktype
= SOCK_DGRAM
;
25 hints
.ai_socktype
= SOCK_STREAM
;
26 hints
.ai_protocol
= IPPROTO_TCP
;
29 e
= getaddrinfo(server
->hostname
, str_port
, &hints
, &ai
);
32 WATCHPOINT_STRING(server
->hostname
);
33 WATCHPOINT_STRING(gai_strerror(e
));
34 return MEMCACHED_HOST_LOOKUP_FAILURE
;
37 if (server
->address_info
)
39 freeaddrinfo(server
->address_info
);
40 server
->address_info
= NULL
;
42 server
->address_info
= ai
;
44 return MEMCACHED_SUCCESS
;
47 static memcached_return_t
set_socket_options(memcached_server_st
*ptr
)
49 WATCHPOINT_ASSERT(ptr
->fd
!= -1);
51 if (ptr
->type
== MEMCACHED_CONNECTION_UDP
)
52 return MEMCACHED_SUCCESS
;
55 if (ptr
->root
->snd_timeout
)
58 struct timeval waittime
;
61 waittime
.tv_usec
= ptr
->root
->snd_timeout
;
63 error
= setsockopt(ptr
->fd
, SOL_SOCKET
, SO_SNDTIMEO
,
64 &waittime
, (socklen_t
)sizeof(struct timeval
));
65 WATCHPOINT_ASSERT(error
== 0);
67 return MEMCACHED_FAILURE
;
72 if (ptr
->root
->rcv_timeout
)
75 struct timeval waittime
;
78 waittime
.tv_usec
= ptr
->root
->rcv_timeout
;
80 error
= setsockopt(ptr
->fd
, SOL_SOCKET
, SO_RCVTIMEO
,
81 &waittime
, (socklen_t
)sizeof(struct timeval
));
82 WATCHPOINT_ASSERT(error
== 0);
84 return MEMCACHED_FAILURE
;
88 if (ptr
->root
->flags
.no_block
)
94 linger
.l_linger
= 0; /* By default on close() just drop the socket */
95 error
= setsockopt(ptr
->fd
, SOL_SOCKET
, SO_LINGER
,
96 &linger
, (socklen_t
)sizeof(struct linger
));
97 WATCHPOINT_ASSERT(error
== 0);
99 return MEMCACHED_FAILURE
;
102 if (ptr
->root
->flags
.tcp_nodelay
)
107 error
= setsockopt(ptr
->fd
, IPPROTO_TCP
, TCP_NODELAY
,
108 &flag
, (socklen_t
)sizeof(int));
109 WATCHPOINT_ASSERT(error
== 0);
111 return MEMCACHED_FAILURE
;
114 if (ptr
->root
->send_size
)
118 error
= setsockopt(ptr
->fd
, SOL_SOCKET
, SO_SNDBUF
,
119 &ptr
->root
->send_size
, (socklen_t
)sizeof(int));
120 WATCHPOINT_ASSERT(error
== 0);
122 return MEMCACHED_FAILURE
;
125 if (ptr
->root
->recv_size
)
129 error
= setsockopt(ptr
->fd
, SOL_SOCKET
, SO_RCVBUF
,
130 &ptr
->root
->recv_size
, (socklen_t
)sizeof(int));
131 WATCHPOINT_ASSERT(error
== 0);
133 return MEMCACHED_FAILURE
;
136 /* libmemcached will always use nonblocking IO to avoid write deadlocks */
140 flags
= fcntl(ptr
->fd
, F_GETFL
, 0);
141 while (flags
== -1 && (errno
== EINTR
|| errno
== EAGAIN
));
143 unlikely (flags
== -1)
145 return MEMCACHED_CONNECTION_FAILURE
;
147 else if ((flags
& O_NONBLOCK
) == 0)
152 rval
= fcntl(ptr
->fd
, F_SETFL
, flags
| O_NONBLOCK
);
153 while (rval
== -1 && (errno
== EINTR
|| errno
== EAGAIN
));
155 unlikely (rval
== -1)
157 return MEMCACHED_CONNECTION_FAILURE
;
161 return MEMCACHED_SUCCESS
;
164 static memcached_return_t
unix_socket_connect(memcached_server_st
*ptr
)
166 struct sockaddr_un servAddr
;
170 if ((ptr
->fd
= socket(AF_UNIX
, SOCK_STREAM
, 0)) < 0)
172 ptr
->cached_errno
= errno
;
173 return MEMCACHED_CONNECTION_SOCKET_CREATE_FAILURE
;
176 memset(&servAddr
, 0, sizeof (struct sockaddr_un
));
177 servAddr
.sun_family
= AF_UNIX
;
178 strcpy(servAddr
.sun_path
, ptr
->hostname
); /* Copy filename */
182 (struct sockaddr
*)&servAddr
,
183 sizeof(servAddr
)) < 0)
191 case EISCONN
: /* We were spinning waiting on connect */
194 WATCHPOINT_ERRNO(errno
);
195 ptr
->cached_errno
= errno
;
196 return MEMCACHED_ERRNO
;
201 WATCHPOINT_ASSERT(ptr
->fd
!= -1);
202 return MEMCACHED_SUCCESS
;
205 static memcached_return_t
network_connect(memcached_server_st
*ptr
)
209 struct addrinfo
*use
;
211 WATCHPOINT_ASSERT(ptr
->cursor_active
== 0);
213 if (! ptr
->options
.sockaddr_inited
||
214 (!(ptr
->root
->flags
.use_cache_lookups
)))
216 memcached_return_t rc
;
218 rc
= set_hostinfo(ptr
);
219 if (rc
!= MEMCACHED_SUCCESS
)
221 ptr
->options
.sockaddr_inited
= true;
224 use
= ptr
->address_info
;
225 /* Create the socket */
228 /* Memcache server does not support IPV6 in udp mode, so skip if not ipv4 */
229 if (ptr
->type
== MEMCACHED_CONNECTION_UDP
&& use
->ai_family
!= AF_INET
)
235 if ((ptr
->fd
= socket(use
->ai_family
,
237 use
->ai_protocol
)) < 0)
239 ptr
->cached_errno
= errno
;
240 WATCHPOINT_ERRNO(errno
);
241 return MEMCACHED_CONNECTION_SOCKET_CREATE_FAILURE
;
244 (void)set_socket_options(ptr
);
246 /* connect to server */
247 while (ptr
->fd
!= -1 &&
248 connect(ptr
->fd
, use
->ai_addr
, use
->ai_addrlen
) < 0)
250 ptr
->cached_errno
= errno
;
251 if (errno
== EINPROGRESS
|| /* nonblocking mode - first return, */
252 errno
== EALREADY
) /* nonblocking mode - subsequent returns */
254 struct pollfd fds
[1];
256 fds
[0].events
= POLLOUT
;
257 int error
= poll(fds
, 1, ptr
->root
->connect_timeout
);
259 if (error
!= 1 || fds
[0].revents
& POLLERR
)
261 if (fds
[0].revents
& POLLERR
)
264 socklen_t len
= sizeof (err
);
265 (void)getsockopt(ptr
->fd
, SOL_SOCKET
, SO_ERROR
, &err
, &len
);
266 ptr
->cached_errno
= (err
== 0) ? errno
: err
;
269 (void)close(ptr
->fd
);
273 else if (errno
== EISCONN
) /* we are connected :-) */
277 else if (errno
!= EINTR
)
279 (void)close(ptr
->fd
);
287 ptr
->server_failure_counter
= 0;
288 return MEMCACHED_SUCCESS
;
296 /* Failed to connect. schedule next retry */
297 if (ptr
->root
->retry_timeout
)
299 struct timeval next_time
;
301 if (gettimeofday(&next_time
, NULL
) == 0)
302 ptr
->next_retry
= next_time
.tv_sec
+ ptr
->root
->retry_timeout
;
304 ptr
->server_failure_counter
++;
305 if (ptr
->cached_errno
== 0)
306 return MEMCACHED_TIMEOUT
;
308 return MEMCACHED_ERRNO
; /* The last error should be from connect() */
311 ptr
->server_failure_counter
= 0;
312 return MEMCACHED_SUCCESS
; /* The last error should be from connect() */
316 memcached_return_t
memcached_connect(memcached_server_st
*ptr
)
318 memcached_return_t rc
= MEMCACHED_NO_SERVERS
;
319 LIBMEMCACHED_MEMCACHED_CONNECT_START();
321 /* both retry_timeout and server_failure_limit must be set in order to delay retrying a server on error. */
322 WATCHPOINT_ASSERT(ptr
->root
);
323 if (ptr
->root
->retry_timeout
&& ptr
->root
->server_failure_limit
)
325 struct timeval curr_time
;
327 gettimeofday(&curr_time
, NULL
);
329 /* if we've had too many consecutive errors on this server, mark it dead. */
330 if (ptr
->server_failure_counter
>= ptr
->root
->server_failure_limit
)
332 ptr
->next_retry
= curr_time
.tv_sec
+ ptr
->root
->retry_timeout
;
333 ptr
->server_failure_counter
= 0;
336 if (curr_time
.tv_sec
< ptr
->next_retry
)
338 if (memcached_behavior_get(ptr
->root
, MEMCACHED_BEHAVIOR_AUTO_EJECT_HOSTS
))
340 run_distribution(ptr
->root
);
343 ptr
->root
->last_disconnected_server
= ptr
;
344 return MEMCACHED_SERVER_MARKED_DEAD
;
348 /* We need to clean up the multi startup piece */
351 case MEMCACHED_CONNECTION_UNKNOWN
:
352 WATCHPOINT_ASSERT(0);
353 rc
= MEMCACHED_NOT_SUPPORTED
;
355 case MEMCACHED_CONNECTION_UDP
:
356 case MEMCACHED_CONNECTION_TCP
:
357 rc
= network_connect(ptr
);
359 case MEMCACHED_CONNECTION_UNIX_SOCKET
:
360 rc
= unix_socket_connect(ptr
);
362 case MEMCACHED_CONNECTION_MAX
:
364 WATCHPOINT_ASSERT(0);
367 unlikely ( rc
!= MEMCACHED_SUCCESS
) ptr
->root
->last_disconnected_server
= ptr
;
369 LIBMEMCACHED_MEMCACHED_CONNECT_END();