Redef undef'ed methods?

R

Robert Feldt

How "final" is a call to undef_method? Is there any way to get the
method back, ie. hook it up to the class again?

From my understanding of the C code it seems impossible since the
function/method pointer is set to 0 and there is no way from Ruby to
access the original value for that pointer again (unless you have
extracted "it" earlier with one of the "*method" methods). Is this
analysis correct?

If so code like

module Kernel
[:eval, :system, :exec, :callcc, :`, # `
:set_trace_func, :sleep, :syscall].each do |m|
undef_method m
end
end

class Module
[:module_eval, :class_eval,
:define_method, :method, :instance_method,
:private_class_method].each do |m|
undef_method m
end
end

class Object
[:instance_eval].each {|m| undef_method m}
end

etc would give a possibility for a kind of simple, fine-grained
"sandboxing"? (I'm not implying you should do this instead of
tainting/SAFE-levels etc, just exploring possibilities)

Thanks,

Robert Feldt
 
F

Florian Groß

Robert said:
How "final" is a call to undef_method? Is there any way to get the
method back, ie. hook it up to the class again?

[...]
etc would give a possibility for a kind of simple, fine-grained
"sandboxing"? (I'm not implying you should do this instead of
tainting/SAFE-levels etc, just exploring possibilities)

_why is using this already with great success for his TryRuby sandbox.
I'm not sure if there is ways around it, but it seems quite unlikely.

But you will definitely have to make sure that there is no way of
loading C extensions. It would be possible to get back the original
functions that way and do even worse.
 
R

Robert Dober

------=_Part_19839_11665102.1143815571113
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline

alias_method :b, :a
undef_method :a
end

...

class A
alias_method :a, :b
end

Obviously I missed something ;)!

Cheers
Robert

--
Deux choses sont infinies : l'univers et la b=EAtise humaine ; en ce qui
concerne l'univers, je n'en ai pas acquis la certitude absolue.

- Albert Einstein

------=_Part_19839_11665102.1143815571113--
 
R

Robert Feldt

alias_method :b, :a
undef_method :a
end

...

class A
alias_method :a, :b
end

Obviously I missed something ;)!
Yes, that will work around. Also you can do it with define_method if
you have a handle to the undef'ed method. However, these "holes" can
be covered by undef'ing more methods (ie alias_method etc) so it might
still be a useful technique for some situations.

Thanks,

Robert Feldt
 
F

Florian Groß

Robert said:
Yes, that will work around. Also you can do it with define_method if
you have a handle to the undef'ed method. However, these "holes" can
be covered by undef'ing more methods (ie alias_method etc) so it might
still be a useful technique for some situations.

Or by undefing the methods before anyone has a chance of creating
aliases or using .instance_method()? :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,581
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top