зеркало из https://github.com/github/ruby.git
thread.c (rb_wait_for_single_fd): do not leak EINTR on timeout
We must not leak EINTR to users in case a signal hits a
ppoll/select caller right when (or just before) the timeout
expires. In other words, the timeout should take precedence
over the -1 result from ppoll or select.
We also try one more time in case of EINTR with a zero timeout,
since technically the syscall finished before timing out if
it returns EINTR.
Regression appeared in r62457
("thread.c (update_timespec): use timespec_update_expire",
commit e6bf0128ad
)
and is not in any stable release of Ruby.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63462 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
c6da9cadb3
Коммит
74724107e9
51
thread.c
51
thread.c
|
@ -3783,28 +3783,38 @@ rb_fd_set(int fd, rb_fdset_t *set)
|
||||||
#define rb_fd_no_init(fds) (void)(fds)
|
#define rb_fd_no_init(fds) (void)(fds)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static inline int
|
static int
|
||||||
retryable(int e)
|
wait_retryable(int *result, int errnum, struct timespec *timeout,
|
||||||
|
const struct timespec *end)
|
||||||
{
|
{
|
||||||
if (e == EINTR) return TRUE;
|
if (*result < 0) {
|
||||||
|
switch (errnum) {
|
||||||
|
case EINTR:
|
||||||
#ifdef ERESTART
|
#ifdef ERESTART
|
||||||
if (e == ERESTART) return TRUE;
|
case ERESTART:
|
||||||
#endif
|
#endif
|
||||||
|
*result = 0;
|
||||||
|
if (timeout && timespec_update_expire(timeout, end)) {
|
||||||
|
timeout->tv_sec = 0;
|
||||||
|
timeout->tv_nsec = 0;
|
||||||
|
}
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
else if (*result == 0) {
|
||||||
|
/* check for spurious wakeup */
|
||||||
|
if (timeout) {
|
||||||
|
return !timespec_update_expire(timeout, end);
|
||||||
|
}
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define restore_fdset(fds1, fds2) \
|
#define restore_fdset(fds1, fds2) \
|
||||||
((fds1) ? rb_fd_dup(fds1, fds2) : (void)0)
|
((fds1) ? rb_fd_dup(fds1, fds2) : (void)0)
|
||||||
|
|
||||||
static inline int
|
|
||||||
update_timespec(struct timespec *timeout, const struct timespec *end)
|
|
||||||
{
|
|
||||||
if (timeout) {
|
|
||||||
return !timespec_update_expire(timeout, end);
|
|
||||||
}
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
do_select(int n, rb_fdset_t *const readfds, rb_fdset_t *const writefds,
|
do_select(int n, rb_fdset_t *const readfds, rb_fdset_t *const writefds,
|
||||||
rb_fdset_t *const exceptfds, struct timeval *timeout)
|
rb_fdset_t *const exceptfds, struct timeval *timeout)
|
||||||
|
@ -3827,7 +3837,7 @@ do_select(int n, rb_fdset_t *const readfds, rb_fdset_t *const writefds,
|
||||||
(restore_fdset(readfds, &orig_read), \
|
(restore_fdset(readfds, &orig_read), \
|
||||||
restore_fdset(writefds, &orig_write), \
|
restore_fdset(writefds, &orig_write), \
|
||||||
restore_fdset(exceptfds, &orig_except), \
|
restore_fdset(exceptfds, &orig_except), \
|
||||||
update_timespec(tsp, &end))
|
TRUE)
|
||||||
|
|
||||||
if (timeout) {
|
if (timeout) {
|
||||||
getclockofday(&end);
|
getclockofday(&end);
|
||||||
|
@ -3852,13 +3862,16 @@ do_select(int n, rb_fdset_t *const readfds, rb_fdset_t *const writefds,
|
||||||
}, ubf_select, th, FALSE);
|
}, ubf_select, th, FALSE);
|
||||||
|
|
||||||
RUBY_VM_CHECK_INTS_BLOCKING(th->ec);
|
RUBY_VM_CHECK_INTS_BLOCKING(th->ec);
|
||||||
} while (result < 0 && retryable(errno = lerrno) && do_select_update());
|
} while (wait_retryable(&result, lerrno, tsp, &end) && do_select_update());
|
||||||
|
|
||||||
#define fd_term(f) if (f##fds) rb_fd_term(&orig_##f)
|
#define fd_term(f) if (f##fds) rb_fd_term(&orig_##f)
|
||||||
fd_term(read);
|
fd_term(read);
|
||||||
fd_term(write);
|
fd_term(write);
|
||||||
fd_term(except);
|
fd_term(except);
|
||||||
#undef fd_term
|
#undef fd_term
|
||||||
|
if (result < 0) {
|
||||||
|
errno = lerrno;
|
||||||
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
@ -3992,9 +4005,11 @@ rb_wait_for_single_fd(int fd, int events, struct timeval *timeout)
|
||||||
}, ubf_select, th, FALSE);
|
}, ubf_select, th, FALSE);
|
||||||
|
|
||||||
RUBY_VM_CHECK_INTS_BLOCKING(th->ec);
|
RUBY_VM_CHECK_INTS_BLOCKING(th->ec);
|
||||||
} while (result < 0 && retryable(errno = lerrno) &&
|
} while (wait_retryable(&result, lerrno, tsp, &end));
|
||||||
update_timespec(tsp, &end));
|
if (result < 0) {
|
||||||
if (result < 0) return -1;
|
errno = lerrno;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
if (fds.revents & POLLNVAL) {
|
if (fds.revents & POLLNVAL) {
|
||||||
errno = EBADF;
|
errno = EBADF;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче