[#79914] [Ruby trunk Bug#13282] opt_str_freeze does not always dedupe — normalperson@...
Issue #13282 has been reported by Eric Wong.
4 messages
2017/03/05
[#80140] [Ruby trunk Feature#13295] [PATCH] compile.c: apply opt_str_freeze to String#-@ (uminus) — shyouhei@...
Issue #13295 has been updated by shyouhei (Shyouhei Urabe).
5 messages
2017/03/13
[#80362] Re: [Ruby trunk Feature#13295] [PATCH] compile.c: apply opt_str_freeze to String#-@ (uminus)
— Eric Wong <normalperson@...>
2017/03/26
shyouhei@ruby-lang.org wrote:
[#80368] Re: [Ruby trunk Feature#13295] [PATCH] compile.c: apply opt_str_freeze to String#-@ (uminus)
— SASADA Koichi <ko1@...>
2017/03/27
On 2017/03/26 15:16, Eric Wong wrote:
[#80205] Re: [ruby-cvs:65166] duerst:r58000 (trunk): clarifiy 'codepoint' in documentation of String#each_codepoint — Eric Wong <normalperson@...>
duerst@ruby-lang.org wrote:
4 messages
2017/03/17
[#80213] Re: [ruby-cvs:65166] duerst:r58000 (trunk): clarifiy 'codepoint' in documentation of String#each_codepoint
— Martin J. Dürst <duerst@...>
2017/03/17
Hello Eric,
[#80290] [Ruby trunk Feature#13355] [PATCH] compile.c: optimize literal String range in case/when dispatch — normalperson@...
Issue #13355 has been reported by normalperson (Eric Wong).
4 messages
2017/03/23
[#80410] Re: [Ruby trunk Feature#13355] [PATCH] compile.c: optimize literal String range in case/when dispatch
— Eric Wong <normalperson@...>
2017/03/27
normalperson@yhbt.net wrote:
[#80415] [Ruby trunk Feature#12589] VM performance improvement proposal — vmakarov@...
Issue #12589 has been updated by vmakarov (Vladimir Makarov).
5 messages
2017/03/28
[#80488] [Ruby trunk Feature#12589] VM performance improvement proposal — vmakarov@...
Issue #12589 has been updated by vmakarov (Vladimir Makarov).
4 messages
2017/03/29
[ruby-core:80366] should IO#close across threads cause IOError (instead of EBADF)?
From:
Eric Wong <normalperson@...>
Date:
2017-03-26 22:59:32 UTC
List:
ruby-core #80366
I started working on the patch at the bottom of this message,
but can't reproduce what I think is expected behavior:
IOError should be raised on cross thread close, and Errno::EBADF
should be avoided from leaking to Ruby code.
Initially, it seems r57422 / 61701ae1675f790ee3f59207283642dbe64c2d37
("io.c: close before wait") was causing this, but reverting
that did not seem to help my new test, below.
Regardless of whether the test I wrote passes, I think the
changes made to ext/socket below to reload fptr->fd in between
blocking states are definitely preferable.
Patch below also at:
https://80x24.org/spew/20170326224201.26531-1-e@80x24.org/raw
----8<----
Subject: [PATCH] socket: reload fptr->fd after blocking operations
IO objects may be closed by other threads while inside an I/O
blocking region, setting fptr->fd to -1. So we must reload it
to avoid waiting on an invalid FD.
---
ext/socket/basicsocket.c | 3 ++-
ext/socket/unixsocket.c | 6 ++++--
test/socket/test_unix.rb | 16 ++++++++++++++++
3 files changed, 22 insertions(+), 3 deletions(-)
diff --git a/ext/socket/basicsocket.c b/ext/socket/basicsocket.c
index 3b6f22f36a..f79ab2d7cf 100644
--- a/ext/socket/basicsocket.c
+++ b/ext/socket/basicsocket.c
@@ -551,7 +551,8 @@ rsock_bsock_send(int argc, VALUE *argv, VALUE sock)
arg.flags = NUM2INT(flags);
while (rsock_maybe_fd_writable(arg.fd),
(n = (ssize_t)BLOCKING_REGION_FD(func, &arg)) < 0) {
- if (rb_io_wait_writable(arg.fd)) {
+ if (rb_io_wait_writable(fptr->fd)) {
+ arg.fd = fptr->fd;
continue;
}
rb_sys_fail("send(2)");
diff --git a/ext/socket/unixsocket.c b/ext/socket/unixsocket.c
index 5a44b552f8..669b33428b 100644
--- a/ext/socket/unixsocket.c
+++ b/ext/socket/unixsocket.c
@@ -264,8 +264,9 @@ unix_send_io(VALUE sock, VALUE val)
arg.fd = fptr->fd;
while ((int)BLOCKING_REGION_FD(sendmsg_blocking, &arg) == -1) {
- if (!rb_io_wait_writable(arg.fd))
+ if (!rb_io_wait_writable(fptr->fd))
rsock_sys_fail_path("sendmsg(2)", fptr->pathv);
+ arg.fd = fptr->fd;
}
return Qnil;
@@ -359,8 +360,9 @@ unix_recv_io(int argc, VALUE *argv, VALUE sock)
arg.fd = fptr->fd;
while ((int)BLOCKING_REGION_FD(recvmsg_blocking, &arg) == -1) {
- if (!rb_io_wait_readable(arg.fd))
+ if (!rb_io_wait_readable(fptr->fd))
rsock_sys_fail_path("recvmsg(2)", fptr->pathv);
+ arg.fd = fptr->fd;
}
#if FD_PASSING_BY_MSG_CONTROL
diff --git a/test/socket/test_unix.rb b/test/socket/test_unix.rb
index 7edb5e5d4f..ff72a6990f 100644
--- a/test/socket/test_unix.rb
+++ b/test/socket/test_unix.rb
@@ -699,4 +699,20 @@ def test_accept_nonblock
assert_equal :wait_readable, serv.accept_nonblock(exception: false)
}
end
+
+ def test_fd_passing_blocked
+ s1, s2 = UNIXSocket.pair
+ s1.nonblock = true
+ th = Thread.new do
+ begin
+ s1.recv_io
+ rescue => e
+ e
+ end
+ end
+ Thread.pass until th.stop?
+ s1.close
+ s2.close
+ assert_instance_of IOError, th.value
+ end
end if defined?(UNIXSocket) && /cygwin/ !~ RUBY_PLATFORM
--
EW
Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>