X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached%2Fmemcached_connect.c;h=ca35420066582efcf7d62cc18e24845ca4921fa8;hb=29c13aacae8a79791e8912ff7520601aa8136d83;hp=ab4b84f0936d588cac7fe7671d25647742727809;hpb=8fce86636639afaeac4ca0e869e8bcd833324a62;p=awesomized%2Flibmemcached diff --git a/libmemcached/memcached_connect.c b/libmemcached/memcached_connect.c index ab4b84f0..ca354200 100644 --- a/libmemcached/memcached_connect.c +++ b/libmemcached/memcached_connect.c @@ -1,5 +1,7 @@ #include "common.h" +#include #include +#include static memcached_return set_hostinfo(memcached_server_st *server) { @@ -12,7 +14,7 @@ static memcached_return set_hostinfo(memcached_server_st *server) memset(&hints, 0, sizeof(hints)); - hints.ai_family= AF_INET; + // hints.ai_family= AF_INET; if (server->type == MEMCACHED_CONNECTION_UDP) { hints.ai_protocol= IPPROTO_UDP; @@ -33,7 +35,10 @@ static memcached_return set_hostinfo(memcached_server_st *server) } if (server->address_info) + { freeaddrinfo(server->address_info); + server->address_info= NULL; + } server->address_info= ai; return MEMCACHED_SUCCESS; @@ -41,32 +46,51 @@ static memcached_return set_hostinfo(memcached_server_st *server) static memcached_return set_socket_options(memcached_server_st *ptr) { + WATCHPOINT_ASSERT(ptr->fd != -1); + if (ptr->type == MEMCACHED_CONNECTION_UDP) return MEMCACHED_SUCCESS; - if (ptr->root->flags & MEM_NO_BLOCK) +#ifdef HAVE_SNDTIMEO + if (ptr->root->snd_timeout) { int error; - struct linger linger; struct timeval waittime; - waittime.tv_sec= 10; - waittime.tv_usec= 0; - - linger.l_onoff= 1; - linger.l_linger= MEMCACHED_DEFAULT_TIMEOUT; - error= setsockopt(ptr->fd, SOL_SOCKET, SO_LINGER, - &linger, (socklen_t)sizeof(struct linger)); - WATCHPOINT_ASSERT(error == 0); + waittime.tv_sec= 0; + waittime.tv_usec= ptr->root->snd_timeout; error= setsockopt(ptr->fd, SOL_SOCKET, SO_SNDTIMEO, &waittime, (socklen_t)sizeof(struct timeval)); WATCHPOINT_ASSERT(error == 0); + } +#endif + +#ifdef HAVE_RCVTIMEO + if (ptr->root->rcv_timeout) + { + int error; + struct timeval waittime; + + waittime.tv_sec= 0; + waittime.tv_usec= ptr->root->rcv_timeout; error= setsockopt(ptr->fd, SOL_SOCKET, SO_RCVTIMEO, &waittime, (socklen_t)sizeof(struct timeval)); WATCHPOINT_ASSERT(error == 0); } +#endif + + { + int error; + struct linger linger; + + linger.l_onoff= 1; + linger.l_linger= MEMCACHED_DEFAULT_TIMEOUT; + error= setsockopt(ptr->fd, SOL_SOCKET, SO_LINGER, + &linger, (socklen_t)sizeof(struct linger)); + WATCHPOINT_ASSERT(error == 0); + } if (ptr->root->flags & MEM_TCP_NODELAY) { @@ -149,6 +173,8 @@ test_connect: } } } + + WATCHPOINT_ASSERT(ptr->fd != -1); return MEMCACHED_SUCCESS; } @@ -158,10 +184,16 @@ static memcached_return network_connect(memcached_server_st *ptr) { struct addrinfo *use; - /* Old connection junk still is in the structure */ - WATCHPOINT_ASSERT(ptr->cursor_active == 0); + if (ptr->root->server_failure_limit != 0) + { + if (ptr->server_failure_counter >= ptr->root->server_failure_limit) + { + memcached_server_remove(ptr); + return MEMCACHED_FAILURE; + } + } - if (ptr->sockaddr_inited == MEMCACHED_NOT_ALLOCATED || + if (ptr->sockaddr_inited || (!(ptr->root->flags & MEM_USE_CACHE_LOOKUPS))) { memcached_return rc; @@ -169,7 +201,7 @@ static memcached_return network_connect(memcached_server_st *ptr) rc= set_hostinfo(ptr); if (rc != MEMCACHED_SUCCESS) return rc; - ptr->sockaddr_inited= MEMCACHED_ALLOCATED; + ptr->sockaddr_inited= true; } use= ptr->address_info; @@ -206,12 +238,26 @@ test_connect: fds[0].events= POLLOUT | POLLERR; error= poll(fds, 1, ptr->root->connect_timeout); - if (error != 1) + if (error == 0) + { + goto handle_retry; + } + else if (error != 1 && fds[0].revents & POLLERR) { ptr->cached_errno= errno; WATCHPOINT_ERRNO(ptr->cached_errno); - close(ptr->fd); - ptr->fd= -1; + WATCHPOINT_NUMBER(ptr->root->connect_timeout); + memcached_quit_server(ptr, 1); + + if (ptr->root->retry_timeout) + { + struct timeval next_time; + + gettimeofday(&next_time, NULL); + ptr->next_retry= next_time.tv_sec + ptr->root->retry_timeout; + } + ptr->server_failure_counter+= 1; + return MEMCACHED_ERRNO; } @@ -223,8 +269,8 @@ test_connect: case EISCONN: /* We were spinning waiting on connect */ break; default: +handle_retry: ptr->cached_errno= errno; - WATCHPOINT_ERRNO(ptr->cached_errno); close(ptr->fd); ptr->fd= -1; if (ptr->root->retry_timeout) @@ -239,15 +285,19 @@ test_connect: else { WATCHPOINT_ASSERT(ptr->cursor_active == 0); + ptr->server_failure_counter= 0; return MEMCACHED_SUCCESS; } use = use->ai_next; } } - if (ptr->fd == -1) + if (ptr->fd == -1) { + ptr->server_failure_counter+= 1; return MEMCACHED_ERRNO; /* The last error should be from connect() */ + } + ptr->server_failure_counter= 0; return MEMCACHED_SUCCESS; /* The last error should be from connect() */ } @@ -283,9 +333,6 @@ memcached_return memcached_connect(memcached_server_st *ptr) WATCHPOINT_ASSERT(0); } - if (rc != MEMCACHED_SUCCESS) - WATCHPOINT_ERROR(rc); - LIBMEMCACHED_MEMCACHED_CONNECT_END(); return rc;