mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Make Socket.getaddrinfo interruptible (#2827)
Before, Socket.getaddrinfo was using a blocking getaddrinfo(3) call. That didn't allow to wrap it into Timeout.timeout or interrupt the thread in any way. Combined with the default 10 sec resolv timeout on many Unix systems, this can have a very noticeable effect on production Ruby apps being not resilient to DNS outages and timing out name resolution, and being unable to fail fast even with Timeout.timeout. Since we already have support for getaddrinfo_a(3), the async version of getaddrinfo, we should be able to make Socket.getaddrinfo leverage that when getaddrinfo_a version is available in the system (hence #ifdef HAVE_GETADDRINFO_A). Related tickets: https://bugs.ruby-lang.org/issues/16476 https://bugs.ruby-lang.org/issues/16381 https://bugs.ruby-lang.org/issues/14997
This commit is contained in:
parent
1035a3b202
commit
2038cc6cab
Notes:
git
2020-08-27 16:39:40 +09:00
Merged-By: mmasaki <glass.saga@gmail.com>
4 changed files with 24 additions and 18 deletions
|
@ -369,15 +369,16 @@ rb_getaddrinfo_a(const char *node, const char *service,
|
|||
arg.timeout = timeout;
|
||||
|
||||
ret = (int)(VALUE)rb_thread_call_without_gvl(nogvl_gai_suspend, &arg, RUBY_UBF_IO, 0);
|
||||
if (ret && ret != EAI_ALLDONE) {
|
||||
/* EAI_ALLDONE indicates that the request already completed and gai_suspend was redundant */
|
||||
/* on Ubuntu 18.04 (or other systems), gai_suspend(3) returns EAI_SYSTEM/ENOENT on timeout */
|
||||
if (ret == EAI_SYSTEM && errno == ENOENT) {
|
||||
return EAI_AGAIN;
|
||||
} else {
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
if (ret) {
|
||||
/* on Ubuntu 18.04 (or other systems), gai_suspend(3) returns EAI_SYSTEM/ENOENT on timeout */
|
||||
if (ret == EAI_SYSTEM && errno == ENOENT) {
|
||||
return EAI_AGAIN;
|
||||
} else {
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
ret = gai_error(reqs[0]);
|
||||
ai = reqs[0]->ar_result;
|
||||
|
@ -601,7 +602,7 @@ rsock_getaddrinfo(VALUE host, VALUE port, struct addrinfo *hints, int socktype_h
|
|||
}
|
||||
|
||||
#ifdef HAVE_GETADDRINFO_A
|
||||
static struct rb_addrinfo*
|
||||
struct rb_addrinfo*
|
||||
rsock_getaddrinfo_a(VALUE host, VALUE port, struct addrinfo *hints, int socktype_hack, VALUE timeout)
|
||||
{
|
||||
struct rb_addrinfo* res = NULL;
|
||||
|
@ -619,10 +620,10 @@ rsock_getaddrinfo_a(VALUE host, VALUE port, struct addrinfo *hints, int socktype
|
|||
hints->ai_flags |= additional_flags;
|
||||
|
||||
if (NIL_P(timeout)) {
|
||||
error = rb_getaddrinfo(hostp, portp, hints, &res);
|
||||
error = rb_getaddrinfo_a(hostp, portp, hints, &res, (struct timespec *)NULL);
|
||||
} else {
|
||||
struct timespec _timeout = rb_time_timespec_interval(timeout);
|
||||
error = rb_getaddrinfo_a(hostp, portp, hints, &res, &_timeout);
|
||||
struct timespec _timeout = rb_time_timespec_interval(timeout);
|
||||
error = rb_getaddrinfo_a(hostp, portp, hints, &res, &_timeout);
|
||||
}
|
||||
|
||||
if (error) {
|
||||
|
@ -942,11 +943,7 @@ call_getaddrinfo(VALUE node, VALUE service,
|
|||
}
|
||||
|
||||
#ifdef HAVE_GETADDRINFO_A
|
||||
if (NIL_P(timeout)) {
|
||||
res = rsock_getaddrinfo(node, service, &hints, socktype_hack);
|
||||
} else {
|
||||
res = rsock_getaddrinfo_a(node, service, &hints, socktype_hack, timeout);
|
||||
}
|
||||
#else
|
||||
res = rsock_getaddrinfo(node, service, &hints, socktype_hack);
|
||||
#endif
|
||||
|
|
|
@ -320,6 +320,10 @@ int rb_getnameinfo(const struct sockaddr *sa, socklen_t salen, char *host, size_
|
|||
int rsock_fd_family(int fd);
|
||||
struct rb_addrinfo *rsock_addrinfo(VALUE host, VALUE port, int family, int socktype, int flags);
|
||||
struct rb_addrinfo *rsock_getaddrinfo(VALUE host, VALUE port, struct addrinfo *hints, int socktype_hack);
|
||||
#ifdef HAVE_GETADDRINFO_A
|
||||
struct rb_addrinfo *rsock_getaddrinfo_a(VALUE host, VALUE port, struct addrinfo *hints, int socktype_hack, VALUE timeout);
|
||||
#endif
|
||||
|
||||
VALUE rsock_fd_socket_addrinfo(int fd, struct sockaddr *addr, socklen_t len);
|
||||
VALUE rsock_io_socket_addrinfo(VALUE io, struct sockaddr *addr, socklen_t len);
|
||||
|
||||
|
|
|
@ -1181,7 +1181,12 @@ sock_s_getaddrinfo(int argc, VALUE *argv, VALUE _)
|
|||
if (NIL_P(revlookup) || !rsock_revlookup_flag(revlookup, &norevlookup)) {
|
||||
norevlookup = rsock_do_not_reverse_lookup;
|
||||
}
|
||||
res = rsock_getaddrinfo(host, port, &hints, 0);
|
||||
|
||||
#ifdef HAVE_GETADDRINFO_A
|
||||
res = rsock_getaddrinfo_a(host, port, &hints, 0, Qnil);
|
||||
#else
|
||||
res = rsock_getaddrinfo(host, port, &hints, 0);
|
||||
#endif
|
||||
|
||||
ret = make_addrinfo(res, norevlookup);
|
||||
rb_freeaddrinfo(res);
|
||||
|
|
|
@ -103,7 +103,7 @@ class TestSocketAddrinfo < Test::Unit::TestCase
|
|||
end
|
||||
|
||||
def test_error_message
|
||||
e = assert_raise_with_message(SocketError, /getaddrinfo:/) do
|
||||
e = assert_raise_with_message(SocketError, /getaddrinfo/) do
|
||||
Addrinfo.ip("...")
|
||||
end
|
||||
m = e.message
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue