X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached%2Fmemcached_connect.c;h=8e0e4208e864f11556ed8aaa9927aa8b15400c11;hb=ea717ffe5f03f7241038553e475addb9926d62fe;hp=ca35420066582efcf7d62cc18e24845ca4921fa8;hpb=ceab093459cec94d6d40f48ade93efa3a74c06a1;p=awesomized%2Flibmemcached diff --git a/libmemcached/memcached_connect.c b/libmemcached/memcached_connect.c index ca354200..8e0e4208 100644 --- a/libmemcached/memcached_connect.c +++ b/libmemcached/memcached_connect.c @@ -115,7 +115,7 @@ static memcached_return set_socket_options(memcached_server_st *ptr) { int error; - error= setsockopt(ptr->fd, SOL_SOCKET, SO_SNDBUF, + error= setsockopt(ptr->fd, SOL_SOCKET, SO_RCVBUF, &ptr->root->recv_size, (socklen_t)sizeof(int)); WATCHPOINT_ASSERT(error == 0); } @@ -159,7 +159,8 @@ test_connect: (struct sockaddr *)&servAddr, sizeof(servAddr)) < 0) { - switch (errno) { + switch (errno) + { case EINPROGRESS: case EALREADY: case EINTR: @@ -193,7 +194,7 @@ static memcached_return network_connect(memcached_server_st *ptr) } } - if (ptr->sockaddr_inited || + if (!ptr->sockaddr_inited || (!(ptr->root->flags & MEM_USE_CACHE_LOOKUPS))) { memcached_return rc; @@ -208,6 +209,13 @@ static memcached_return network_connect(memcached_server_st *ptr) /* Create the socket */ while (use != NULL) { + /* Memcache server does not support IPV6 in udp mode, so skip if not ipv4 */ + if (ptr->type == MEMCACHED_CONNECTION_UDP && use->ai_family != AF_INET) + { + use= use->ai_next; + continue; + } + if ((ptr->fd= socket(use->ai_family, use->ai_socktype, use->ai_protocol)) < 0) @@ -219,71 +227,57 @@ static memcached_return network_connect(memcached_server_st *ptr) (void)set_socket_options(ptr); - /* connect to server */ -test_connect: - if (connect(ptr->fd, - use->ai_addr, - use->ai_addrlen) < 0) + int flags; + if (ptr->root->connect_timeout) { - switch (errno) { - /* We are spinning waiting on connect */ - case EALREADY: - case EINPROGRESS: - { - struct pollfd fds[1]; - int error; + flags= fcntl(ptr->fd, F_GETFL, 0); + if (flags != -1 && !(flags & O_NONBLOCK)) + (void)fcntl(ptr->fd, F_SETFL, flags | O_NONBLOCK); + } - memset(&fds, 0, sizeof(struct pollfd)); - fds[0].fd= ptr->fd; - fds[0].events= POLLOUT | POLLERR; - error= poll(fds, 1, ptr->root->connect_timeout); + /* connect to server */ + while (ptr->fd != -1 && + connect(ptr->fd, use->ai_addr, use->ai_addrlen) < 0) + { + ptr->cached_errno= errno; + if (errno == EINPROGRESS || /* nonblocking mode - first return, */ + errno == EALREADY) /* nonblocking mode - subsequent returns */ + { + struct pollfd fds[1] = { [0].fd = ptr->fd, [0].events = POLLOUT }; + int error= poll(fds, 1, ptr->root->connect_timeout); - if (error == 0) - { - goto handle_retry; - } - else if (error != 1 && fds[0].revents & POLLERR) + if (error != 1 || fds[0].revents & POLLERR) + { + if (fds[0].revents & POLLERR) { + int err; + int len = sizeof (err); + (void)getsockopt(ptr->fd, SOL_SOCKET, SO_ERROR, &err, &len); ptr->cached_errno= errno; - WATCHPOINT_ERRNO(ptr->cached_errno); - 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; } - break; + (void)close(ptr->fd); + ptr->fd= -1; } - /* We are spinning waiting on connect */ - case EINTR: - goto test_connect; - case EISCONN: /* We were spinning waiting on connect */ + } + else if (errno == EISCONN) /* we are connected :-) */ + { break; - default: -handle_retry: - ptr->cached_errno= errno; - close(ptr->fd); + } + else if (errno != EINTR) + { + (void)close(ptr->fd); ptr->fd= -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; - } - } + break; + } } - else + + if (ptr->fd != -1) { + /* restore flags */ + if (ptr->root->connect_timeout && (flags & O_NONBLOCK) == 0) + (void)fcntl(ptr->fd, F_SETFL, flags & ~O_NONBLOCK); + WATCHPOINT_ASSERT(ptr->cursor_active == 0); ptr->server_failure_counter= 0; return MEMCACHED_SUCCESS; @@ -292,7 +286,16 @@ handle_retry: } } - if (ptr->fd == -1) { + if (ptr->fd == -1) + { + /* Failed to connect. schedule next retry */ + if (ptr->root->retry_timeout) + { + struct timeval next_time; + + if (gettimeofday(&next_time, NULL) == 0) + ptr->next_retry= next_time.tv_sec + ptr->root->retry_timeout; + } ptr->server_failure_counter+= 1; return MEMCACHED_ERRNO; /* The last error should be from connect() */ }