[#28561] Ruby::DL vs Ruby::FFI — Aston <blackapache512-ticket@...>

Ruby.DL and FFI libraries are great for programmers like me who are not internet programmers, but are more interested in scientific and number processing etc.

11 messages 2010/03/08

[#28686] trunk (26947) build fail with msys/mingw/vista — Jon <jon.forums@...>

I get the following build failure when msysgit's "c:\git\cmd" dir is on PATH.

8 messages 2010/03/16

[#28687] [Bug #2973] rb_bug - Segmentation fault - error.c:213 — rudolf gavlas <redmine@...>

Bug #2973: rb_bug - Segmentation fault - error.c:213

10 messages 2010/03/16

[#28735] [Bug #2982] Ruby tries to link with both openssl and readline — Lucas Nussbaum <redmine@...>

Bug #2982: Ruby tries to link with both openssl and readline

16 messages 2010/03/18

[#28736] [Bug #2983] Ruby (GPLv2 only) tries to link to with readline (now GPLv3) — Lucas Nussbaum <redmine@...>

Bug #2983: Ruby (GPLv2 only) tries to link to with readline (now GPLv3)

10 messages 2010/03/18

[#28907] [Bug #3000] Open SSL Segfaults — Christian Höltje <redmine@...>

Bug #3000: Open SSL Segfaults

19 messages 2010/03/23

[#28924] [Bug #3005] Ruby core dump - [BUG] rb_sys_fail() - errno == 0 — Sebastian YEPES <redmine@...>

Bug #3005: Ruby core dump - [BUG] rb_sys_fail() - errno == 0

10 messages 2010/03/24

[#28954] [Feature #3010] slow require gems in ruby 1.9.1 — Miao Jiang <redmine@...>

Feature #3010: slow require gems in ruby 1.9.1

15 messages 2010/03/24

[#29179] [Bug #3071] Convert rubygems and rdoc to use psych — Aaron Patterson <redmine@...>

Bug #3071: Convert rubygems and rdoc to use psych

10 messages 2010/03/31

[ruby-core:28742] Re: When a trace hook raises an exception, should it terminate the program?

From: Rocky Bernstein <rockyb@...>
Date: 2010-03-18 10:52:41 UTC
List: ruby-core #28742
Let me clarify a bit because I think some of the facts (some by me) may have
been misrepresented.

I came across this in implementing a debugger command called "raise". The
purpose of this is to force an exception to occur outside of the debugger or
in the debugged program. And in fact this does work. Sort of..

$ rbdbgr xyz.rb
-- (xyz.rb:1)
begin
(rbdbgr): list
  1  ->   begin
  2          x = 1
  3        rescue => e
  4          puts "rescued #{e.inspect}"
  5        end
(rbdbgr): step
-- (xyz.rb:2)
x = 1
(rbdbgr): list
  1        begin
  2  ->     x = 1
  3        rescue => e
  4          puts "rescued #{e.inspect}"
  5        end
(rbdbgr): raise RuntimeError
rescued #<RuntimeError: RuntimeError>
$

The "sort of" part is  that in Ruby 1.9 the implementation of tracing sets a
bit in the thread structure which turns off tracing into the tracer (or
debugging into the debugger). When an exception that passes from hook to
non-hook occurs, this bit doesn't get cleared.

Changing the program that was originally posted will show this better:

s = Proc.new {
  |event, file, lineno, mid, binding, klass|
  puts "#{event} #{mid} #{lineno}"
  unless $x
    $x = true
    raise RuntimeError
  end
}
begin
  set_trace_func(s)
  puts "after trace func"
rescue
  puts "Rescued"
end
puts "After begin"

Run this in Ruby 1.9 and perhaps it is more apparent that the program
continues to the end. In the original posting if you look carefully you'll
see that the rescue did run *after* the trace hook issued a raise inside the
begin block. It is the *second* raise issued in the hook function that
terminates the program because the debugged program is no longer in a
rescue'd block.

From what you describe from JRuby, it sounds like it has a similar behavior
possibly because it is implemented underneath in a similar way. So
rationalizing this as "this makes sense because this happened in between
statements and not in the program" I don't think is accurately capturing
what's going inside either interpreter.

One of the uses of a trace hook is in a debugger where it is normal to have
code run in between the debugged program's statements which have lasting
effect. For example that's how variables can get changed.

So again, how is raising an exception from a trace hook defined? Or how
should it be defined?

Trace hooks in general could be undefined so anything you want to do is okay
including not implement them. That would cover the current behavior.

Similarly it could be that if if a hook raises is a exception that it
doesn't catch you get undefined behavior. That too would cover the current
behavior.

But declaring that an uncaught exception in a trace hook terminates a
program does not accurately describe how Ruby 1.9 (and probably JRuby)
currently behave.


On Thu, Mar 18, 2010 at 1:59 AM, Charles Oliver Nutter
<headius@headius.com>wrote:

> On Wed, Mar 17, 2010 at 5:42 AM, Rocky Bernstein <rockyb@rubyforge.org>
> wrote:
> > In Ruby 1.8 and the Ruby 1.9 trunk when running a trace hook that raises
> an
> > exception not caught by the hook, the program terminates -- whether or
> not
> > there is a rescue further up the call stack, i.e. in the non-hook body.
> >
> > Ruby 1.9 also gives a stack trace, while Ruby 1.8 doesn't.
>
> This is a pretty peculiar situation. What *should* happen? With the
> hook set, if it starts raising exceptions, you start getting errors
> happening not in particular methods but in the "inbetween" space
> between method calls and lines and pretty much everything. In your
> example, even if it rescues, it would hit a c-call event (for the
> puts) and raise again before printing anything out.
>
> Perhaps the specification could say that a ruby-land set_trace_func is
> wrapped with an implicit rescue and disabled if an error is raised? Or
> something?
>
> > How do JRuby, IronRuby and Rubinius and other Rubies handle this? And
> what
> > do the specifications say?
>
> JRuby also terminates. Note that the trace output is slightly
> different, since we have different call sequences for some things:
>
> ~/projects/jruby ➔ jruby --debug hook_thing.rb
> line  :8 (the first event that fires after the hook is set)
> c-call === :8 (this is the rescue calling ===)
> c-call backtrace :1 (this is the toplevel of JRuby trying to get the
> backtrace)
> c-call first :1 (fallback code because backtrace errored too?)
> Exception in thread "main" c-call first :1 (finally, we give up)
>
> There's so many calls and line events happening here, it's pretty much
> impossible for anything good to come out of it. Catastrophic failure.
>
> As for other Rubies...I don't know if IronRuby supports
> set_trace_func, but Rubinius and MacRuby do not.
>
> > If it is the case that raising an exception in a trace hook
> unconditionally
> > terminates the hooked program, programmers that want to write a trace
> hook
> > that plays nice with programs it hooks against should wrap the hook in a
> > begin/rescue block. Or make sure your code never raises an uncaught
> > exception.
>
> That seems wise.
>
> - Charlie
>
>

In This Thread