Bug #11352
closedSample code Garbage collection dies with an address is T_NONE
Files
Updated by fgifford (Frank Gifford) over 9 years ago
- File crash.rb crash.rb added
- File crash_out crash_out added
- Subject changed from Sample code Garbage collection dies with a to Sample code Garbage collection dies with an address is T_NONE
- ruby -v set to 2.2.2p95
./crash.rb
./crash.rb:5: [BUG] rb_gc_mark(): 0x85e344c is T_NONE
ruby 2.2.2p95 (2015-04-13 revision 50295) [i686-linux]
I was able to create a crash.rb file (attached) that would generate a crash. Essentially, we create a large hash of 131 entries in a method and then discard it. Having 130 entries did not seem to make the crash happen. The crash happens right away.
This was first noticed for sure in 2.1.3, it probably exists in 2.1.6 and I verified it here with 2.2.2p95
I believe this may be related to other bugs such as 10803, 10827, and 10163.
Updated by wanabe (_ wanabe) over 9 years ago
ruby -e 'puts "GC.stress = true; {", *(1..128).map {|i| "#{i} => 0," }, "129 => [],", "130 => [],", "131 => [],", "}"' | ruby
It causes similer [BUG] on ruby 2.2.2p95 (2015-04-13 revision 50295) [x86_64-darwin14]
and ruby 2.3.0dev (2015-07-15 trunk 51015) [x86_64-darwin14]
.
I guess hash.length should be >= 131, and 129th (and also 130th and 131st ?) item of hash should be a target of GC.
Updated by nobu (Nobuyoshi Nakada) over 9 years ago
- Related to Bug #7466: Hashの大きさによってHash#keysでvalueが返ることがある added
Updated by nobu (Nobuyoshi Nakada) over 9 years ago
- Backport changed from 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN to 2.0.0: WONTFIX, 2.1: REQUIRED, 2.2: REQUIRED
Updated by nobu (Nobuyoshi Nakada) over 9 years ago
- Status changed from Open to Closed
Applied in changeset r51263.
vm.c: fix mark with rewinding cfp
- vm.c (m_core_hash_merge_ptr): copy the arguments to the machine
stack before rewinding the control frame pointer and leaving the
arguments outside valid region of the value stack.
[ruby-core:69969] [Bug #11352]
Updated by wanabe (_ wanabe) over 9 years ago
- Related to Bug #11411: Crash in rb_gc_mark() during Rails app boot with GC.stress=1 added
Updated by nagachika (Tomoyuki Chikanaga) about 9 years ago
- Backport changed from 2.0.0: WONTFIX, 2.1: REQUIRED, 2.2: REQUIRED to 2.0.0: WONTFIX, 2.1: REQUIRED, 2.2: DONE
Backported into ruby_2_2
branch at r51521.
Updated by usa (Usaku NAKAMURA) about 9 years ago
- Backport changed from 2.0.0: WONTFIX, 2.1: REQUIRED, 2.2: DONE to 2.0.0: WONTFIX, 2.1: DONE, 2.2: DONE
ruby_2_1 r51601 merged revision(s) 51263,51264.