[#66678] [ruby-trunk - Feature #10481] Add "if" and "unless" clauses to rescue statements — alex@...
Issue #10481 has been updated by Alex Boyd.
3 messages
2014/12/04
[#66762] Re: [ruby-changes:36667] normal:r48748 (trunk): struct: avoid all O(n) behavior on access — Tanaka Akira <akr@...>
2014-12-10 0:44 GMT+09:00 normal <ko1@atdot.net>:
3 messages
2014/12/10
[#66851] [ruby-trunk - Feature #10585] struct: speedup struct.attr = v for first 10 attributes and struct[:attr] for big structs — funny.falcon@...
Issue #10585 has been updated by Yura Sokolov.
3 messages
2014/12/15
[#67126] Ruby 2.2.0 Released — "NARUSE, Yui" <naruse@...>
We are pleased to announce the release of Ruby 2.2.0.
8 messages
2014/12/25
[#67128] Re: Ruby 2.2.0 Released
— Rodrigo Rosenfeld Rosas <rr.rosas@...>
2014/12/25
I can't install it in any of our Ubuntu servers using rbenv:
[#67129] Re: Ruby 2.2.0 Released
— SHIBATA Hiroshi <shibata.hiroshi@...>
2014/12/25
> I can't install it in any of our Ubuntu servers using rbenv:
[ruby-core:66611] [ruby-trunk - Bug #9891] infinite fibers crash Ruby
From:
ko1@...
Date:
2014-12-01 09:01:46 UTC
List:
ruby-core #66611
Issue #9891 has been updated by Koichi Sasada.
The reason of this SEGV is, rb_longjmp without TAG.
```c
void
rb_fiber_start(void)
{
...
TH_PUSH_TAG(th);
... /* protected by TAG */
TH_POP_TAG();
...
rb_fiber_terminate(fib); // -> NoMemoryError, but not protected by TAG.
}
```
It is difficult for me.
Nobu, do you have any idea to solve it?
----------------------------------------
Bug #9891: infinite fibers crash Ruby
https://bugs.ruby-lang.org/issues/9891#change-50228
* Author: George Koehler
* Status: Assigned
* Priority: Normal
* Assignee: Koichi Sasada
* Category:
* Target version: current: 2.2.0
* ruby -v: ruby 2.2.0dev (2014-06-01 trunk 46287) [x86_64-openbsd5.5]
* Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN
----------------------------------------
When a program makes too many fibers, Ruby crashes. I found this bug while playing with an Enumerator that recursively enumerates itself.
Bug is easy to reproduce. This one-line fiber bomb will crash Ruby:
~~~
p = proc { Fiber.new(&p).resume }; p.call
~~~
I expect that Ruby should not crash, but should raise OutOfMemoryError or SystemStackError or something like that.
~~~
$ ruby -e 'p = proc { Fiber.new(&p).resume }; p.call'
[BUG] Segmentation fault at 0x00000000000018
ruby 2.2.0dev (2014-06-01 trunk 46287) [x86_64-openbsd5.5]
-- Control frame information -----------------------------------------------
c:0001 p:---- s:0001 e:000000 ------
-- Other runtime information -----------------------------------------------
* Loaded script: -e
* Loaded features:
0 enumerator.so
1 /home/kernigh/prefix/lib/ruby/2.2.0/x86_64-openbsd5.5/enc/encdb.so
2 /home/kernigh/prefix/lib/ruby/2.2.0/x86_64-openbsd5.5/enc/trans/transdb.so
3 /home/kernigh/prefix/lib/ruby/2.2.0/x86_64-openbsd5.5/rbconfig.rb
4 /home/kernigh/prefix/lib/ruby/2.2.0/rubygems/compatibility.rb
5 /home/kernigh/prefix/lib/ruby/2.2.0/rubygems/defaults.rb
6 /home/kernigh/prefix/lib/ruby/2.2.0/rubygems/deprecate.rb
7 /home/kernigh/prefix/lib/ruby/2.2.0/rubygems/errors.rb
8 /home/kernigh/prefix/lib/ruby/2.2.0/rubygems/version.rb
9 /home/kernigh/prefix/lib/ruby/2.2.0/rubygems/requirement.rb
10 /home/kernigh/prefix/lib/ruby/2.2.0/rubygems/platform.rb
11 /home/kernigh/prefix/lib/ruby/2.2.0/rubygems/basic_specification.rb
12 /home/kernigh/prefix/lib/ruby/2.2.0/rubygems/stub_specification.rb
13 /home/kernigh/prefix/lib/ruby/2.2.0/rubygems/util/stringio.rb
14 /home/kernigh/prefix/lib/ruby/2.2.0/rubygems/specification.rb
15 /home/kernigh/prefix/lib/ruby/2.2.0/rubygems/exceptions.rb
16 /home/kernigh/prefix/lib/ruby/2.2.0/rubygems/core_ext/kernel_gem.rb
17 thread.rb
18 /home/kernigh/prefix/lib/ruby/2.2.0/x86_64-openbsd5.5/thread.so
19 /home/kernigh/prefix/lib/ruby/2.2.0/monitor.rb
20 /home/kernigh/prefix/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb
21 /home/kernigh/prefix/lib/ruby/2.2.0/rubygems.rb
[NOTE]
You may have encountered a bug in the Ruby interpreter or extension libraries.
Bug reports are welcome.
For details: http://www.ruby-lang.org/bugreport.html
Abort trap (core dumped)
$ gdb ruby ruby.core
...
#0 0x00001366bcdf921a in kill () at <stdin>:2
2 <stdin>: No such file or directory.
in <stdin>
(gdb) bt
#0 0x00001366bcdf921a in kill () at <stdin>:2
#1 0x00001366bce5998a in abort () at /usr/src/lib/libc/stdlib/abort.c:70
#2 0x00001364babd4571 in rb_bug_context (ctx=0x1366c9748c90,
fmt=0x1364bad0351e "Segmentation fault at %p") at ../ruby/error.c:361
#3 0x00001364baaf611c in sigsegv (sig=Variable "sig" is not available.
) at ../ruby/signal.c:821
#4 <signal handler called>
#5 0x00001364baa21752 in rb_threadptr_tag_jump (th=0x1366c32adc00, st=6)
at eval_intern.h:162
#6 0x00001364baa25bf1 in rb_exc_raise (mesg=Variable "mesg" is not available.
) at ../ruby/eval.c:571
#7 0x00001364babd543f in rb_raise (exc=21332200143640, fmt=Variable "fmt" is not available.
)
at ../ruby/error.c:1915
#8 0x00001364babd547f in rb_error_frozen (what=Variable "what" is not available.
) at ../ruby/error.c:2129
#9 0x00001364bab3d117 in rb_ivar_set (obj=21331955219840, id=9617,
val=21332204288760) at ../ruby/variable.c:940
#10 0x00001364baa2528f in setup_exception (th=0x1366c32adc00, tag=6,
mesg=21331955219840, cause=21332204288760) at ../ruby/eval.c:458
#11 0x00001364baa25bdc in rb_exc_raise (mesg=21331955219840)
at ../ruby/eval.c:569
#12 0x00001364baa3bfde in ruby_memerror () at ../ruby/gc.c:6030
#13 0x00001364baa3eac6 in objspace_xmalloc (objspace=0x1366c32ad000,
size=192816) at ../ruby/gc.c:6229
#14 0x00001364bab8ce45 in fiber_store (next_fib=Variable "next_fib" is not available.
) at ../ruby/cont.c:403
#15 0x00001364bab8e1bf in rb_fiber_start () at ../ruby/cont.c:1461
---Type <return> to continue, or q <return> to quit---
#16 0x00001364baa22812 in ruby_exec_internal (n=Variable "n" is not available.
) at ../ruby/eval.c:252
#17 0x00001364baa246e6 in ruby_run_node (n=Variable "n" is not available.
) at ../ruby/eval.c:317
#18 0x00001364baa20ad2 in main (argc=3, argv=0x7f7ffffcd188)
at ../ruby/main.c:36
Current language: auto; currently asm
~~~
--
https://bugs.ruby-lang.org/