2010-02-02 08:58:56 -05:00
|
|
|
require_relative 'test_base'
|
2009-10-23 12:44:41 -04:00
|
|
|
|
|
|
|
module DL
|
|
|
|
class TestHandle < TestBase
|
2009-10-24 20:11:29 -04:00
|
|
|
def test_to_i
|
|
|
|
handle = DL::Handle.new(LIBC_SO)
|
2010-02-16 05:03:02 -05:00
|
|
|
assert_kind_of Integer, handle.to_i
|
2009-10-24 20:11:29 -04:00
|
|
|
end
|
|
|
|
|
2009-10-24 20:11:15 -04:00
|
|
|
def test_static_sym_secure
|
|
|
|
assert_raises(SecurityError) do
|
|
|
|
Thread.new do
|
|
|
|
$SAFE = 2
|
|
|
|
DL::Handle.sym('calloc')
|
|
|
|
end.join
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_static_sym_unknown
|
|
|
|
assert_raises(DL::DLError) { DL::Handle.sym('fooo') }
|
|
|
|
assert_raises(DL::DLError) { DL::Handle['fooo'] }
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_static_sym
|
2010-03-20 05:47:07 -04:00
|
|
|
skip "DL::Handle.sym is not supported" if /mswin|mingw/ =~ RUBY_PLATFORM
|
2010-05-19 06:15:38 -04:00
|
|
|
begin
|
|
|
|
# Linux / Darwin / FreeBSD
|
|
|
|
assert_not_nil DL::Handle.sym('dlopen')
|
|
|
|
assert_equal DL::Handle.sym('dlopen'), DL::Handle['dlopen']
|
|
|
|
rescue
|
|
|
|
# NetBSD
|
|
|
|
require 'objspace'
|
|
|
|
assert_not_nil DL::Handle.sym('Init_objspace')
|
|
|
|
assert_equal DL::Handle.sym('Init_objspace'), DL::Handle['Init_objspace']
|
|
|
|
end
|
2009-10-24 20:11:15 -04:00
|
|
|
end
|
|
|
|
|
2009-10-24 20:11:02 -04:00
|
|
|
def test_sym_closed_handle
|
|
|
|
handle = DL::Handle.new(LIBC_SO)
|
|
|
|
handle.close
|
|
|
|
assert_raises(DL::DLError) { handle.sym("calloc") }
|
|
|
|
assert_raises(DL::DLError) { handle["calloc"] }
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_sym_unknown
|
|
|
|
handle = DL::Handle.new(LIBC_SO)
|
|
|
|
assert_raises(DL::DLError) { handle.sym('fooo') }
|
|
|
|
assert_raises(DL::DLError) { handle['fooo'] }
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_sym_with_bad_args
|
|
|
|
handle = DL::Handle.new(LIBC_SO)
|
|
|
|
assert_raises(TypeError) { handle.sym(nil) }
|
|
|
|
assert_raises(TypeError) { handle[nil] }
|
|
|
|
end
|
|
|
|
|
2009-10-24 20:11:15 -04:00
|
|
|
def test_sym_secure
|
|
|
|
assert_raises(SecurityError) do
|
|
|
|
Thread.new do
|
|
|
|
$SAFE = 2
|
|
|
|
handle = DL::Handle.new(LIBC_SO)
|
|
|
|
handle.sym('calloc')
|
|
|
|
end.join
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-10-24 20:11:02 -04:00
|
|
|
def test_sym
|
|
|
|
handle = DL::Handle.new(LIBC_SO)
|
2010-02-16 05:03:02 -05:00
|
|
|
assert_not_nil handle.sym('calloc')
|
|
|
|
assert_not_nil handle['calloc']
|
2009-10-24 20:11:02 -04:00
|
|
|
end
|
|
|
|
|
2009-10-24 17:56:50 -04:00
|
|
|
def test_handle_close
|
|
|
|
handle = DL::Handle.new(LIBC_SO)
|
|
|
|
assert_equal 0, handle.close
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_handle_close_twice
|
|
|
|
handle = DL::Handle.new(LIBC_SO)
|
|
|
|
handle.close
|
|
|
|
assert_raises(DL::DLError) do
|
|
|
|
handle.close
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-10-23 12:44:41 -04:00
|
|
|
def test_dlopen_returns_handle
|
|
|
|
assert_instance_of DL::Handle, dlopen(LIBC_SO)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_dlopen_safe
|
|
|
|
assert_raises(SecurityError) do
|
|
|
|
Thread.new do
|
|
|
|
$SAFE = 2
|
|
|
|
dlopen(LIBC_SO)
|
|
|
|
end.join
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_initialize_safe
|
|
|
|
assert_raises(SecurityError) do
|
|
|
|
Thread.new do
|
|
|
|
$SAFE = 2
|
|
|
|
DL::Handle.new(LIBC_SO)
|
|
|
|
end.join
|
|
|
|
end
|
|
|
|
end
|
2009-10-24 20:11:29 -04:00
|
|
|
|
|
|
|
def test_initialize_noargs
|
|
|
|
handle = DL::Handle.new
|
2010-02-16 05:03:02 -05:00
|
|
|
assert_not_nil handle['rb_str_new']
|
2009-10-24 20:11:29 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_initialize_flags
|
|
|
|
handle = DL::Handle.new(LIBC_SO, DL::RTLD_LAZY | DL::RTLD_GLOBAL)
|
2010-02-16 05:03:02 -05:00
|
|
|
assert_not_nil handle['calloc']
|
2009-10-24 20:11:29 -04:00
|
|
|
end
|
2009-10-24 20:11:41 -04:00
|
|
|
|
|
|
|
def test_enable_close
|
|
|
|
handle = DL::Handle.new(LIBC_SO)
|
|
|
|
assert !handle.close_enabled?, 'close is enabled'
|
|
|
|
|
|
|
|
handle.enable_close
|
|
|
|
assert handle.close_enabled?, 'close is not enabled'
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_disable_close
|
|
|
|
handle = DL::Handle.new(LIBC_SO)
|
|
|
|
|
|
|
|
handle.enable_close
|
|
|
|
assert handle.close_enabled?, 'close is enabled'
|
|
|
|
handle.disable_close
|
|
|
|
assert !handle.close_enabled?, 'close is enabled'
|
|
|
|
end
|
2009-10-24 20:11:56 -04:00
|
|
|
|
|
|
|
def test_NEXT
|
2010-03-20 05:47:07 -04:00
|
|
|
skip "DL::Handle::NEXT is not supported" if /mswin|mingw/ =~ RUBY_PLATFORM
|
2010-02-07 05:29:39 -05:00
|
|
|
begin
|
|
|
|
# Linux / Darwin
|
|
|
|
#
|
|
|
|
# There are two special pseudo-handles, RTLD_DEFAULT and RTLD_NEXT. The former will find
|
|
|
|
# the first occurrence of the desired symbol using the default library search order. The
|
|
|
|
# latter will find the next occurrence of a function in the search order after the current
|
|
|
|
# library. This allows one to provide a wrapper around a function in another shared
|
|
|
|
# library.
|
|
|
|
# --- Ubuntu Linux 8.04 dlsym(3)
|
|
|
|
handle = DL::Handle::NEXT
|
2010-02-16 05:03:02 -05:00
|
|
|
assert_not_nil handle['malloc']
|
2010-02-07 05:29:39 -05:00
|
|
|
rescue
|
|
|
|
# BSD
|
|
|
|
#
|
|
|
|
# If dlsym() is called with the special handle RTLD_NEXT, then the search
|
|
|
|
# for the symbol is limited to the shared objects which were loaded after
|
|
|
|
# the one issuing the call to dlsym(). Thus, if the function is called
|
|
|
|
# from the main program, all the shared libraries are searched. If it is
|
|
|
|
# called from a shared library, all subsequent shared libraries are
|
|
|
|
# searched. RTLD_NEXT is useful for implementing wrappers around library
|
|
|
|
# functions. For example, a wrapper function getpid() could access the
|
2010-02-16 05:03:02 -05:00
|
|
|
# "real" getpid() with dlsym(RTLD_NEXT, "getpid"). (Actually, the dlfunc()
|
2010-02-07 05:29:39 -05:00
|
|
|
# interface, below, should be used, since getpid() is a function and not a
|
|
|
|
# data object.)
|
|
|
|
# --- FreeBSD 8.0 dlsym(3)
|
|
|
|
require 'objspace'
|
|
|
|
handle = DL::Handle::NEXT
|
2010-02-16 05:03:02 -05:00
|
|
|
assert_not_nil handle['Init_objspace']
|
2010-02-07 05:29:39 -05:00
|
|
|
end
|
2009-10-24 20:11:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_DEFAULT
|
2010-03-20 05:47:07 -04:00
|
|
|
skip "DL::Handle::DEFAULT is not supported" if /mswin|mingw/ =~ RUBY_PLATFORM
|
2009-10-24 20:11:56 -04:00
|
|
|
handle = DL::Handle::DEFAULT
|
2010-02-16 05:03:02 -05:00
|
|
|
assert_not_nil handle['malloc']
|
2009-10-24 20:11:56 -04:00
|
|
|
end
|
2009-10-23 12:44:41 -04:00
|
|
|
end
|
|
|
|
end
|