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
;
89 if (ptr
->root
->tcp_keepidle
)
94 error
= setsockopt(ptr
->fd
, IPPROTO_TCP
, TCP_KEEPIDLE
,
95 &flag
, (socklen_t
)sizeof(int));
96 WATCHPOINT_ASSERT(error
== 0);
98 return MEMCACHED_FAILURE
;
102 if (ptr
->root
->flags
.no_block
)
105 struct linger linger
;
108 linger
.l_linger
= 0; /* By default on close() just drop the socket */
109 error
= setsockopt(ptr
->fd
, SOL_SOCKET
, SO_LINGER
,
110 &linger
, (socklen_t
)sizeof(struct linger
));
111 WATCHPOINT_ASSERT(error
== 0);
113 return MEMCACHED_FAILURE
;
116 if (ptr
->root
->flags
.tcp_nodelay
)
121 error
= setsockopt(ptr
->fd
, IPPROTO_TCP
, TCP_NODELAY
,
122 &flag
, (socklen_t
)sizeof(int));
123 WATCHPOINT_ASSERT(error
== 0);
125 return MEMCACHED_FAILURE
;
128 if (ptr
->root
->flags
.tcp_keepalive
)
133 error
= setsockopt(ptr
->fd
, SOL_SOCKET
, SO_KEEPALIVE
,
134 &flag
, (socklen_t
)sizeof(int));
135 WATCHPOINT_ASSERT(error
== 0);
137 return MEMCACHED_FAILURE
;
140 if (ptr
->root
->send_size
> 0)
144 error
= setsockopt(ptr
->fd
, SOL_SOCKET
, SO_SNDBUF
,
145 &ptr
->root
->send_size
, (socklen_t
)sizeof(int));
146 WATCHPOINT_ASSERT(error
== 0);
148 return MEMCACHED_FAILURE
;
151 if (ptr
->root
->recv_size
> 0)
155 error
= setsockopt(ptr
->fd
, SOL_SOCKET
, SO_RCVBUF
,
156 &ptr
->root
->recv_size
, (socklen_t
)sizeof(int));
157 WATCHPOINT_ASSERT(error
== 0);
159 return MEMCACHED_FAILURE
;
162 /* libmemcached will always use nonblocking IO to avoid write deadlocks */
166 flags
= fcntl(ptr
->fd
, F_GETFL
, 0);
167 while (flags
== -1 && (errno
== EINTR
|| errno
== EAGAIN
));
169 unlikely (flags
== -1)
171 return MEMCACHED_CONNECTION_FAILURE
;
173 else if ((flags
& O_NONBLOCK
) == 0)
178 rval
= fcntl(ptr
->fd
, F_SETFL
, flags
| O_NONBLOCK
);
179 while (rval
== -1 && (errno
== EINTR
|| errno
== EAGAIN
));
181 unlikely (rval
== -1)
183 return MEMCACHED_CONNECTION_FAILURE
;
187 return MEMCACHED_SUCCESS
;
190 static memcached_return_t
unix_socket_connect(memcached_server_st
*ptr
)
192 struct sockaddr_un servAddr
;
196 if ((ptr
->fd
= socket(AF_UNIX
, SOCK_STREAM
, 0)) < 0)
198 ptr
->cached_errno
= errno
;
199 return MEMCACHED_CONNECTION_SOCKET_CREATE_FAILURE
;
202 memset(&servAddr
, 0, sizeof (struct sockaddr_un
));
203 servAddr
.sun_family
= AF_UNIX
;
204 strcpy(servAddr
.sun_path
, ptr
->hostname
); /* Copy filename */
208 (struct sockaddr
*)&servAddr
,
209 sizeof(servAddr
)) < 0)
217 case EISCONN
: /* We were spinning waiting on connect */
220 WATCHPOINT_ERRNO(errno
);
221 ptr
->cached_errno
= errno
;
222 return MEMCACHED_ERRNO
;
227 WATCHPOINT_ASSERT(ptr
->fd
!= -1);
228 return MEMCACHED_SUCCESS
;
231 static memcached_return_t
network_connect(memcached_server_st
*ptr
)
235 struct addrinfo
*use
;
237 WATCHPOINT_ASSERT(ptr
->cursor_active
== 0);
239 if (! ptr
->options
.sockaddr_inited
||
240 (!(ptr
->root
->flags
.use_cache_lookups
)))
242 memcached_return_t rc
;
244 rc
= set_hostinfo(ptr
);
245 if (rc
!= MEMCACHED_SUCCESS
)
247 ptr
->options
.sockaddr_inited
= true;
250 use
= ptr
->address_info
;
251 /* Create the socket */
254 /* Memcache server does not support IPV6 in udp mode, so skip if not ipv4 */
255 if (ptr
->type
== MEMCACHED_CONNECTION_UDP
&& use
->ai_family
!= AF_INET
)
261 if ((ptr
->fd
= socket(use
->ai_family
,
263 use
->ai_protocol
)) < 0)
265 ptr
->cached_errno
= errno
;
266 WATCHPOINT_ERRNO(errno
);
267 return MEMCACHED_CONNECTION_SOCKET_CREATE_FAILURE
;
270 (void)set_socket_options(ptr
);
272 /* connect to server */
273 while (ptr
->fd
!= -1 &&
274 connect(ptr
->fd
, use
->ai_addr
, use
->ai_addrlen
) < 0)
276 ptr
->cached_errno
= errno
;
277 if (errno
== EINPROGRESS
|| /* nonblocking mode - first return, */
278 errno
== EALREADY
) /* nonblocking mode - subsequent returns */
280 struct pollfd fds
[1];
282 fds
[0].events
= POLLOUT
;
283 int error
= poll(fds
, 1, ptr
->root
->connect_timeout
);
285 if (error
!= 1 || fds
[0].revents
& POLLERR
)
287 if (fds
[0].revents
& POLLERR
)
290 socklen_t len
= sizeof (err
);
291 (void)getsockopt(ptr
->fd
, SOL_SOCKET
, SO_ERROR
, &err
, &len
);
292 ptr
->cached_errno
= (err
== 0) ? errno
: err
;
295 (void)close(ptr
->fd
);
299 else if (errno
== EISCONN
) /* we are connected :-) */
303 else if (errno
!= EINTR
)
305 (void)close(ptr
->fd
);
313 ptr
->server_failure_counter
= 0;
314 return MEMCACHED_SUCCESS
;
322 /* Failed to connect. schedule next retry */
323 if (ptr
->root
->retry_timeout
)
325 struct timeval next_time
;
327 if (gettimeofday(&next_time
, NULL
) == 0)
328 ptr
->next_retry
= next_time
.tv_sec
+ ptr
->root
->retry_timeout
;
330 ptr
->server_failure_counter
++;
331 if (ptr
->cached_errno
== 0)
332 return MEMCACHED_TIMEOUT
;
334 return MEMCACHED_ERRNO
; /* The last error should be from connect() */
337 ptr
->server_failure_counter
= 0;
338 return MEMCACHED_SUCCESS
; /* The last error should be from connect() */
342 memcached_return_t
memcached_connect(memcached_server_write_instance_st ptr
)
344 memcached_return_t rc
= MEMCACHED_NO_SERVERS
;
345 LIBMEMCACHED_MEMCACHED_CONNECT_START();
347 /* both retry_timeout and server_failure_limit must be set in order to delay retrying a server on error. */
348 WATCHPOINT_ASSERT(ptr
->root
);
349 if (ptr
->root
->retry_timeout
&& ptr
->root
->server_failure_limit
)
351 struct timeval curr_time
;
353 gettimeofday(&curr_time
, NULL
);
355 /* if we've had too many consecutive errors on this server, mark it dead. */
356 if (ptr
->server_failure_counter
>= ptr
->root
->server_failure_limit
)
358 ptr
->next_retry
= curr_time
.tv_sec
+ ptr
->root
->retry_timeout
;
359 ptr
->server_failure_counter
= 0;
362 if (curr_time
.tv_sec
< ptr
->next_retry
)
364 memcached_st
*root
= (memcached_st
*)ptr
->root
;
365 // @todo fix this by fixing behavior to no longer make use of
367 if (memcached_behavior_get(root
, MEMCACHED_BEHAVIOR_AUTO_EJECT_HOSTS
))
369 run_distribution(root
);
372 root
->last_disconnected_server
= ptr
;
374 return MEMCACHED_SERVER_MARKED_DEAD
;
378 /* We need to clean up the multi startup piece */
381 case MEMCACHED_CONNECTION_UNKNOWN
:
382 WATCHPOINT_ASSERT(0);
383 rc
= MEMCACHED_NOT_SUPPORTED
;
385 case MEMCACHED_CONNECTION_UDP
:
386 case MEMCACHED_CONNECTION_TCP
:
387 rc
= network_connect(ptr
);
389 case MEMCACHED_CONNECTION_UNIX_SOCKET
:
390 rc
= unix_socket_connect(ptr
);
392 case MEMCACHED_CONNECTION_MAX
:
394 WATCHPOINT_ASSERT(0);
397 unlikely ( rc
!= MEMCACHED_SUCCESS
)
399 //@todo create interface around last_discontected_server
400 memcached_st
*root
= (memcached_st
*)ptr
->root
;
401 root
->last_disconnected_server
= ptr
;
404 LIBMEMCACHED_MEMCACHED_CONNECT_END();