Issue #13412 has been updated by wanabe (_ wanabe). It seems to be fixed at trunk. Thank you. But I guess that it is not due to r59606, but rather to r59630 and r59676. ``` $ git checkout $(git log --grep "trunk@59606" origin/trunk --format="%h") && git checkout -B work && make miniruby && for i in `seq 1 1 10`; do ./miniruby -ve 'define_method(:foo) { foo }; 1.times { 1.times { 1.times { begin; foo; rescue Exception; nil; end } } } ' || break done Note: checking out '0afc8db914'. (snip) linking miniruby ruby 2.5.0dev (2017-08-16 work 59606) [x86_64-linux] -e:1: [BUG] vm_call_cfunc: cfp consistency error (0x00007f622207bf50, 0x00007f622207bef0) ruby 2.5.0dev (2017-08-16 work 59606) [x86_64-linux] (snip) ``` ``` $ git checkout $(git log --grep "trunk@59606" origin/trunk --format="%h")~ && git checkout -B work && for r in 59630 59676; do git cherry-pick $(git log --grep "trunk@$r" origin/trunk --format="%h"); done && make miniruby && for i in `seq 1 1 10`; do ./miniruby -ve 'define_method(:foo) { foo }; 1.times { 1.times { 1.times { begin; foo; rescue Exception; nil; end } } } ' || break done Note: checking out '0afc8db914~'. (snip) linking miniruby ruby 2.5.0dev (2017-08-16 work 59606) [x86_64-linux] ruby 2.5.0dev (2017-08-16 work 59606) [x86_64-linux] ruby 2.5.0dev (2017-08-16 work 59606) [x86_64-linux] ruby 2.5.0dev (2017-08-16 work 59606) [x86_64-linux] ruby 2.5.0dev (2017-08-16 work 59606) [x86_64-linux] ruby 2.5.0dev (2017-08-16 work 59606) [x86_64-linux] ruby 2.5.0dev (2017-08-16 work 59606) [x86_64-linux] ruby 2.5.0dev (2017-08-16 work 59606) [x86_64-linux] ruby 2.5.0dev (2017-08-16 work 59606) [x86_64-linux] ruby 2.5.0dev (2017-08-16 work 59606) [x86_64-linux] ``` ---------------------------------------- Bug #13412: Infinite recursion with define_method may cause silent SEGV or cfp consistency error https://bugs.ruby-lang.org/issues/13412#change-66348 * Author: wanabe (_ wanabe) * Status: Closed * Priority: Normal * Assignee: * Target version: * ruby -v: ruby 2.5.0dev (2017-04-09 trunk 58286) [x86_64-linux] * Backport: 2.2: REQUIRED, 2.3: REQUIRED, 2.4: REQUIRED ---------------------------------------- The script causes silent (no output [BUG]) SEGV or "cfp consistency error" on my environment. ```ruby define_method(:foo) { foo } loop do 1.times do 1.times do begin foo rescue Exception nil end end end end ``` I think this is related to #11430 (maybe same). ---Files-------------------------------- stderr.log (6.96 KB) bug.rb (123 Bytes) bug.sh (775 Bytes) bug13412.r58331.patch (689 Bytes) bug13412.r58367.patch (711 Bytes) bug_stat.sh (296 Bytes) bug.sh (786 Bytes) bug_stat.sh (468 Bytes) bug13412.r58367.patch (1 KB) cfp_before_setjmp.patch (2.09 KB) ensure_stack.patch (850 Bytes) get_tagged_next_cfp.patch (3.33 KB) -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:ruby-core-request / ruby-lang.org?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>