2005-02-04 16:35:37 +03:00
|
|
|
/* -*- C -*-
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <ruby.h>
|
|
|
|
#include "dl.h"
|
|
|
|
|
|
|
|
VALUE rb_cDLHandle;
|
|
|
|
|
2011-01-05 06:13:18 +03:00
|
|
|
#ifdef _WIN32
|
2009-03-17 07:48:03 +03:00
|
|
|
# ifndef _WIN32_WCE
|
|
|
|
static void *
|
|
|
|
w32_coredll(void)
|
|
|
|
{
|
|
|
|
MEMORY_BASIC_INFORMATION m;
|
|
|
|
memset(&m, 0, sizeof(m));
|
|
|
|
if( !VirtualQuery(_errno, &m, sizeof(m)) ) return NULL;
|
|
|
|
return m.AllocationBase;
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
|
|
|
static int
|
|
|
|
w32_dlclose(void *ptr)
|
|
|
|
{
|
|
|
|
# ifndef _WIN32_WCE
|
|
|
|
if( ptr == w32_coredll() ) return 0;
|
|
|
|
# endif
|
|
|
|
if( FreeLibrary((HMODULE)ptr) ) return 0;
|
|
|
|
return errno = rb_w32_map_errno(GetLastError());
|
|
|
|
}
|
|
|
|
#define dlclose(ptr) w32_dlclose(ptr)
|
|
|
|
#endif
|
|
|
|
|
2009-09-09 16:19:28 +04:00
|
|
|
static void
|
|
|
|
dlhandle_free(void *ptr)
|
2005-02-04 16:35:37 +03:00
|
|
|
{
|
2009-09-09 16:19:28 +04:00
|
|
|
struct dl_handle *dlhandle = ptr;
|
2009-03-17 04:15:35 +03:00
|
|
|
if( dlhandle->ptr && dlhandle->open && dlhandle->enable_close ){
|
|
|
|
dlclose(dlhandle->ptr);
|
|
|
|
}
|
2005-02-04 16:35:37 +03:00
|
|
|
}
|
|
|
|
|
2009-09-09 16:19:28 +04:00
|
|
|
static size_t
|
|
|
|
dlhandle_memsize(const void *ptr)
|
|
|
|
{
|
|
|
|
return ptr ? sizeof(struct dl_handle) : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const rb_data_type_t dlhandle_data_type = {
|
|
|
|
"dl/handle",
|
2010-07-18 11:31:54 +04:00
|
|
|
{0, dlhandle_free, dlhandle_memsize,},
|
2009-09-09 16:19:28 +04:00
|
|
|
};
|
|
|
|
|
2009-10-25 03:11:56 +03:00
|
|
|
/*
|
|
|
|
* call-seq: close
|
|
|
|
*
|
|
|
|
* Close this DL::Handle. Calling close more than once will raise a
|
|
|
|
* DL::DLError exception.
|
|
|
|
*/
|
2005-02-04 16:35:37 +03:00
|
|
|
VALUE
|
|
|
|
rb_dlhandle_close(VALUE self)
|
|
|
|
{
|
2009-03-17 04:15:35 +03:00
|
|
|
struct dl_handle *dlhandle;
|
2005-02-04 16:35:37 +03:00
|
|
|
|
2009-09-09 16:19:28 +04:00
|
|
|
TypedData_Get_Struct(self, struct dl_handle, &dlhandle_data_type, dlhandle);
|
2009-10-25 01:56:50 +04:00
|
|
|
if(dlhandle->open) {
|
|
|
|
int ret = dlclose(dlhandle->ptr);
|
2009-10-25 04:19:11 +03:00
|
|
|
dlhandle->open = 0;
|
2009-10-25 01:56:50 +04:00
|
|
|
|
|
|
|
/* Check dlclose for successful return value */
|
|
|
|
if(ret) {
|
|
|
|
#if defined(HAVE_DLERROR)
|
2010-07-13 15:46:01 +04:00
|
|
|
rb_raise(rb_eDLError, "%s", dlerror());
|
2009-10-25 01:56:50 +04:00
|
|
|
#else
|
|
|
|
rb_raise(rb_eDLError, "could not close handle");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
return INT2NUM(ret);
|
|
|
|
}
|
|
|
|
rb_raise(rb_eDLError, "dlclose() called too many times");
|
2012-04-14 03:45:37 +04:00
|
|
|
|
|
|
|
UNREACHABLE;
|
2005-02-04 16:35:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_dlhandle_s_allocate(VALUE klass)
|
|
|
|
{
|
2009-03-17 04:15:35 +03:00
|
|
|
VALUE obj;
|
|
|
|
struct dl_handle *dlhandle;
|
2005-02-04 16:35:37 +03:00
|
|
|
|
2009-09-09 16:19:28 +04:00
|
|
|
obj = TypedData_Make_Struct(rb_cDLHandle, struct dl_handle, &dlhandle_data_type, dlhandle);
|
2009-03-17 04:15:35 +03:00
|
|
|
dlhandle->ptr = 0;
|
|
|
|
dlhandle->open = 0;
|
|
|
|
dlhandle->enable_close = 0;
|
2005-02-04 16:35:37 +03:00
|
|
|
|
2009-03-17 04:15:35 +03:00
|
|
|
return obj;
|
2005-02-04 16:35:37 +03:00
|
|
|
}
|
|
|
|
|
2009-05-23 16:49:00 +04:00
|
|
|
static VALUE
|
|
|
|
predefined_dlhandle(void *handle)
|
|
|
|
{
|
|
|
|
VALUE obj = rb_dlhandle_s_allocate(rb_cDLHandle);
|
|
|
|
struct dl_handle *dlhandle = DATA_PTR(obj);
|
|
|
|
|
|
|
|
dlhandle->ptr = handle;
|
|
|
|
dlhandle->open = 1;
|
|
|
|
OBJ_FREEZE(obj);
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2009-10-25 03:11:29 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* initialize(lib = nil, flags = DL::RTLD_LAZY | DL::RTLD_GLOBAL)
|
|
|
|
*
|
|
|
|
* Create a new handler that opens library named +lib+ with +flags+. If no
|
|
|
|
* library is specified, RTLD_DEFAULT is used.
|
|
|
|
*/
|
2005-02-04 16:35:37 +03:00
|
|
|
VALUE
|
|
|
|
rb_dlhandle_initialize(int argc, VALUE argv[], VALUE self)
|
|
|
|
{
|
2009-03-17 04:15:35 +03:00
|
|
|
void *ptr;
|
|
|
|
struct dl_handle *dlhandle;
|
|
|
|
VALUE lib, flag;
|
|
|
|
char *clib;
|
|
|
|
int cflag;
|
|
|
|
const char *err;
|
|
|
|
|
|
|
|
switch( rb_scan_args(argc, argv, "02", &lib, &flag) ){
|
|
|
|
case 0:
|
|
|
|
clib = NULL;
|
|
|
|
cflag = RTLD_LAZY | RTLD_GLOBAL;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
clib = NIL_P(lib) ? NULL : StringValuePtr(lib);
|
|
|
|
cflag = RTLD_LAZY | RTLD_GLOBAL;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
clib = NIL_P(lib) ? NULL : StringValuePtr(lib);
|
|
|
|
cflag = NUM2INT(flag);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
rb_bug("rb_dlhandle_new");
|
|
|
|
}
|
2005-02-04 16:35:37 +03:00
|
|
|
|
2009-10-23 20:44:41 +04:00
|
|
|
rb_secure(2);
|
|
|
|
|
2011-01-05 06:13:18 +03:00
|
|
|
#if defined(_WIN32)
|
2009-03-17 04:15:35 +03:00
|
|
|
if( !clib ){
|
|
|
|
HANDLE rb_libruby_handle(void);
|
|
|
|
ptr = rb_libruby_handle();
|
|
|
|
}
|
2009-03-17 07:48:03 +03:00
|
|
|
else if( STRCASECMP(clib, "libc") == 0
|
|
|
|
# ifdef RUBY_COREDLL
|
|
|
|
|| STRCASECMP(clib, RUBY_COREDLL) == 0
|
|
|
|
|| STRCASECMP(clib, RUBY_COREDLL".dll") == 0
|
|
|
|
# endif
|
|
|
|
){
|
|
|
|
# ifdef _WIN32_WCE
|
|
|
|
ptr = dlopen("coredll.dll", cflag);
|
|
|
|
# else
|
|
|
|
ptr = w32_coredll();
|
|
|
|
# endif
|
|
|
|
}
|
2009-03-17 04:15:35 +03:00
|
|
|
else
|
2009-03-02 05:01:48 +03:00
|
|
|
#endif
|
2009-03-17 04:15:35 +03:00
|
|
|
ptr = dlopen(clib, cflag);
|
2005-02-04 16:35:37 +03:00
|
|
|
#if defined(HAVE_DLERROR)
|
2009-03-17 04:15:35 +03:00
|
|
|
if( !ptr && (err = dlerror()) ){
|
|
|
|
rb_raise(rb_eDLError, "%s", err);
|
|
|
|
}
|
2005-02-04 16:35:37 +03:00
|
|
|
#else
|
2009-03-17 04:15:35 +03:00
|
|
|
if( !ptr ){
|
|
|
|
err = dlerror();
|
|
|
|
rb_raise(rb_eDLError, "%s", err);
|
|
|
|
}
|
2005-02-04 16:35:37 +03:00
|
|
|
#endif
|
2009-09-09 16:19:28 +04:00
|
|
|
TypedData_Get_Struct(self, struct dl_handle, &dlhandle_data_type, dlhandle);
|
2009-03-17 04:15:35 +03:00
|
|
|
if( dlhandle->ptr && dlhandle->open && dlhandle->enable_close ){
|
|
|
|
dlclose(dlhandle->ptr);
|
|
|
|
}
|
|
|
|
dlhandle->ptr = ptr;
|
|
|
|
dlhandle->open = 1;
|
|
|
|
dlhandle->enable_close = 0;
|
|
|
|
|
|
|
|
if( rb_block_given_p() ){
|
|
|
|
rb_ensure(rb_yield, self, rb_dlhandle_close, self);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Qnil;
|
2005-02-04 16:35:37 +03:00
|
|
|
}
|
|
|
|
|
2009-10-25 03:11:41 +03:00
|
|
|
/*
|
|
|
|
* call-seq: enable_close
|
|
|
|
*
|
|
|
|
* Enable a call to dlclose() when this DL::Handle is garbage collected.
|
|
|
|
*/
|
2005-02-04 16:35:37 +03:00
|
|
|
VALUE
|
|
|
|
rb_dlhandle_enable_close(VALUE self)
|
|
|
|
{
|
2009-03-17 04:15:35 +03:00
|
|
|
struct dl_handle *dlhandle;
|
2005-02-04 16:35:37 +03:00
|
|
|
|
2009-09-09 16:19:28 +04:00
|
|
|
TypedData_Get_Struct(self, struct dl_handle, &dlhandle_data_type, dlhandle);
|
2009-03-17 04:15:35 +03:00
|
|
|
dlhandle->enable_close = 1;
|
|
|
|
return Qnil;
|
2005-02-04 16:35:37 +03:00
|
|
|
}
|
|
|
|
|
2009-10-25 03:11:41 +03:00
|
|
|
/*
|
|
|
|
* call-seq: disable_close
|
|
|
|
*
|
|
|
|
* Disable a call to dlclose() when this DL::Handle is garbage collected.
|
|
|
|
*/
|
2005-02-04 16:35:37 +03:00
|
|
|
VALUE
|
|
|
|
rb_dlhandle_disable_close(VALUE self)
|
|
|
|
{
|
2009-03-17 04:15:35 +03:00
|
|
|
struct dl_handle *dlhandle;
|
2005-02-04 16:35:37 +03:00
|
|
|
|
2009-09-09 16:19:28 +04:00
|
|
|
TypedData_Get_Struct(self, struct dl_handle, &dlhandle_data_type, dlhandle);
|
2009-03-17 04:15:35 +03:00
|
|
|
dlhandle->enable_close = 0;
|
|
|
|
return Qnil;
|
2005-02-04 16:35:37 +03:00
|
|
|
}
|
|
|
|
|
2009-10-25 03:11:41 +03:00
|
|
|
/*
|
|
|
|
* call-seq: close_enabled?
|
|
|
|
*
|
|
|
|
* Returns +true+ if dlclose() will be called when this DL::Handle is
|
|
|
|
* garbage collected.
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
rb_dlhandle_close_enabled_p(VALUE self)
|
|
|
|
{
|
|
|
|
struct dl_handle *dlhandle;
|
|
|
|
|
|
|
|
TypedData_Get_Struct(self, struct dl_handle, &dlhandle_data_type, dlhandle);
|
|
|
|
|
|
|
|
if(dlhandle->enable_close) return Qtrue;
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2009-10-25 03:11:29 +03:00
|
|
|
/*
|
|
|
|
* call-seq: to_i
|
|
|
|
*
|
|
|
|
* Returns the memory address for this handle.
|
|
|
|
*/
|
2005-02-04 16:35:37 +03:00
|
|
|
VALUE
|
|
|
|
rb_dlhandle_to_i(VALUE self)
|
|
|
|
{
|
2009-03-17 04:15:35 +03:00
|
|
|
struct dl_handle *dlhandle;
|
2005-02-04 16:35:37 +03:00
|
|
|
|
2009-09-09 16:19:28 +04:00
|
|
|
TypedData_Get_Struct(self, struct dl_handle, &dlhandle_data_type, dlhandle);
|
2009-03-17 04:15:35 +03:00
|
|
|
return PTR2NUM(dlhandle);
|
2005-02-04 16:35:37 +03:00
|
|
|
}
|
|
|
|
|
2009-05-23 16:49:00 +04:00
|
|
|
static VALUE dlhandle_sym(void *handle, const char *symbol);
|
|
|
|
|
2009-10-25 03:11:02 +03:00
|
|
|
/*
|
|
|
|
* Document-method: sym
|
|
|
|
* Document-method: []
|
|
|
|
*
|
|
|
|
* call-seq: sym(name)
|
|
|
|
*
|
|
|
|
* Get the address as an Integer for the function named +name+.
|
|
|
|
*/
|
2005-02-04 16:35:37 +03:00
|
|
|
VALUE
|
|
|
|
rb_dlhandle_sym(VALUE self, VALUE sym)
|
|
|
|
{
|
2005-02-07 12:45:02 +03:00
|
|
|
struct dl_handle *dlhandle;
|
2005-02-08 12:18:16 +03:00
|
|
|
|
2009-09-09 16:19:28 +04:00
|
|
|
TypedData_Get_Struct(self, struct dl_handle, &dlhandle_data_type, dlhandle);
|
2005-02-07 12:45:02 +03:00
|
|
|
if( ! dlhandle->open ){
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 09:47:45 +03:00
|
|
|
rb_raise(rb_eDLError, "closed handle");
|
2005-02-07 12:45:02 +03:00
|
|
|
}
|
2005-02-04 16:35:37 +03:00
|
|
|
|
2009-05-23 16:49:00 +04:00
|
|
|
return dlhandle_sym(dlhandle->ptr, StringValueCStr(sym));
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef RTLD_NEXT
|
|
|
|
#define RTLD_NEXT NULL
|
|
|
|
#endif
|
|
|
|
#ifndef RTLD_DEFAULT
|
|
|
|
#define RTLD_DEFAULT NULL
|
|
|
|
#endif
|
|
|
|
|
2009-10-25 03:11:15 +03:00
|
|
|
/*
|
|
|
|
* Document-method: sym
|
|
|
|
* Document-method: []
|
|
|
|
*
|
|
|
|
* call-seq: sym(name)
|
|
|
|
*
|
|
|
|
* Get the address as an Integer for the function named +name+. The function
|
|
|
|
* is searched via dlsym on RTLD_NEXT. See man(3) dlsym() for more info.
|
|
|
|
*/
|
2009-05-23 16:49:00 +04:00
|
|
|
VALUE
|
|
|
|
rb_dlhandle_s_sym(VALUE self, VALUE sym)
|
|
|
|
{
|
|
|
|
return dlhandle_sym(RTLD_NEXT, StringValueCStr(sym));
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
dlhandle_sym(void *handle, const char *name)
|
|
|
|
{
|
|
|
|
#if defined(HAVE_DLERROR)
|
|
|
|
const char *err;
|
|
|
|
# define CHECK_DLERROR if( err = dlerror() ){ func = 0; }
|
|
|
|
#else
|
|
|
|
# define CHECK_DLERROR
|
|
|
|
#endif
|
2009-10-25 09:44:26 +03:00
|
|
|
void (*func)();
|
2009-05-23 16:49:00 +04:00
|
|
|
|
2009-10-25 09:44:26 +03:00
|
|
|
rb_secure(2);
|
2011-07-20 10:50:54 +04:00
|
|
|
#ifdef HAVE_DLERROR
|
|
|
|
dlerror();
|
|
|
|
#endif
|
2010-05-21 13:10:23 +04:00
|
|
|
func = (void (*)())(VALUE)dlsym(handle, name);
|
2005-02-08 12:18:16 +03:00
|
|
|
CHECK_DLERROR;
|
2009-03-11 07:03:14 +03:00
|
|
|
#if defined(FUNC_STDCALL)
|
2005-02-08 12:18:16 +03:00
|
|
|
if( !func ){
|
2009-03-11 07:06:57 +03:00
|
|
|
int i;
|
2011-03-25 09:46:57 +03:00
|
|
|
int len = (int)strlen(name);
|
2009-03-02 04:50:56 +03:00
|
|
|
char *name_n;
|
|
|
|
#if defined(__CYGWIN__) || defined(_WIN32) || defined(__MINGW32__)
|
2005-02-07 12:45:02 +03:00
|
|
|
{
|
|
|
|
char *name_a = (char*)xmalloc(len+2);
|
|
|
|
strcpy(name_a, name);
|
2009-03-11 07:03:14 +03:00
|
|
|
name_n = name_a;
|
2005-02-07 12:45:02 +03:00
|
|
|
name_a[len] = 'A';
|
|
|
|
name_a[len+1] = '\0';
|
|
|
|
func = dlsym(handle, name_a);
|
2005-02-08 12:18:16 +03:00
|
|
|
CHECK_DLERROR;
|
2009-03-11 07:03:14 +03:00
|
|
|
if( func ) goto found;
|
2009-03-02 04:50:56 +03:00
|
|
|
name_n = xrealloc(name_a, len+6);
|
2005-02-07 12:45:02 +03:00
|
|
|
}
|
|
|
|
#else
|
2009-03-02 04:50:56 +03:00
|
|
|
name_n = (char*)xmalloc(len+6);
|
|
|
|
#endif
|
|
|
|
memcpy(name_n, name, len);
|
|
|
|
name_n[len++] = '@';
|
2005-02-07 12:45:02 +03:00
|
|
|
for( i = 0; i < 256; i += 4 ){
|
2009-03-02 04:50:56 +03:00
|
|
|
sprintf(name_n + len, "%d", i);
|
2005-02-07 12:45:02 +03:00
|
|
|
func = dlsym(handle, name_n);
|
2005-02-08 12:18:16 +03:00
|
|
|
CHECK_DLERROR;
|
2009-03-02 04:50:56 +03:00
|
|
|
if( func ) break;
|
2005-02-07 12:45:02 +03:00
|
|
|
}
|
2009-03-02 04:50:56 +03:00
|
|
|
if( func ) goto found;
|
|
|
|
name_n[len-1] = 'A';
|
|
|
|
name_n[len++] = '@';
|
|
|
|
for( i = 0; i < 256; i += 4 ){
|
|
|
|
sprintf(name_n + len, "%d", i);
|
|
|
|
func = dlsym(handle, name_n);
|
|
|
|
CHECK_DLERROR;
|
|
|
|
if( func ) break;
|
|
|
|
}
|
2009-03-11 07:03:14 +03:00
|
|
|
found:
|
|
|
|
xfree(name_n);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if( !func ){
|
|
|
|
rb_raise(rb_eDLError, "unknown symbol \"%s\"", name);
|
2005-02-07 12:45:02 +03:00
|
|
|
}
|
2005-02-04 16:35:37 +03:00
|
|
|
|
2005-02-07 12:45:02 +03:00
|
|
|
return PTR2NUM(func);
|
2005-02-04 16:35:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-03-09 09:25:14 +03:00
|
|
|
Init_dlhandle(void)
|
2005-02-04 16:35:37 +03:00
|
|
|
{
|
2011-08-16 04:34:51 +04:00
|
|
|
/*
|
|
|
|
* Document-class: DL::Handle
|
|
|
|
*
|
|
|
|
* The DL::Handle is the manner to access the dynamic library
|
|
|
|
*
|
|
|
|
* == Example
|
|
|
|
*
|
|
|
|
* === Setup
|
|
|
|
*
|
|
|
|
* libc_so = "/lib64/libc.so.6"
|
|
|
|
* => "/lib64/libc.so.6"
|
|
|
|
* @handle = DL::Handle.new(libc_so)
|
|
|
|
* => #<DL::Handle:0x00000000d69ef8>
|
|
|
|
*
|
|
|
|
* === Setup, with flags
|
|
|
|
*
|
|
|
|
* libc_so = "/lib64/libc.so.6"
|
|
|
|
* => "/lib64/libc.so.6"
|
|
|
|
* @handle = DL::Handle.new(libc_so, DL::RTLD_LAZY | DL::RTLD_GLOBAL)
|
|
|
|
* => #<DL::Handle:0x00000000d69ef8>
|
|
|
|
*
|
|
|
|
* === Addresses to symbols
|
|
|
|
*
|
|
|
|
* strcpy_addr = @handle['strcpy']
|
|
|
|
* => 140062278451968
|
|
|
|
*
|
|
|
|
* or
|
|
|
|
*
|
|
|
|
* strcpy_addr = @handle.sym('strcpy')
|
|
|
|
* => 140062278451968
|
|
|
|
*
|
|
|
|
*/
|
2005-02-04 16:35:37 +03:00
|
|
|
rb_cDLHandle = rb_define_class_under(rb_mDL, "Handle", rb_cObject);
|
|
|
|
rb_define_alloc_func(rb_cDLHandle, rb_dlhandle_s_allocate);
|
2009-05-23 16:49:00 +04:00
|
|
|
rb_define_singleton_method(rb_cDLHandle, "sym", rb_dlhandle_s_sym, 1);
|
|
|
|
rb_define_singleton_method(rb_cDLHandle, "[]", rb_dlhandle_s_sym, 1);
|
2011-08-16 04:34:51 +04:00
|
|
|
|
|
|
|
/* Document-const: NEXT
|
|
|
|
*
|
|
|
|
* A predefined pseudo-handle of RTLD_NEXT
|
|
|
|
*
|
|
|
|
* Which will find the next occurrence of a function in the search order
|
|
|
|
* after the current library.
|
|
|
|
*/
|
2009-05-23 16:49:00 +04:00
|
|
|
rb_define_const(rb_cDLHandle, "NEXT", predefined_dlhandle(RTLD_NEXT));
|
2011-08-16 04:34:51 +04:00
|
|
|
|
|
|
|
/* Document-const: DEFAULT
|
|
|
|
*
|
|
|
|
* A predefined pseudo-handle of RTLD_DEFAULT
|
|
|
|
*
|
|
|
|
* Which will find the first occurrence of the desired symbol using the
|
|
|
|
* default library search order
|
|
|
|
*/
|
2009-05-23 16:49:00 +04:00
|
|
|
rb_define_const(rb_cDLHandle, "DEFAULT", predefined_dlhandle(RTLD_DEFAULT));
|
2005-02-04 16:35:37 +03:00
|
|
|
rb_define_method(rb_cDLHandle, "initialize", rb_dlhandle_initialize, -1);
|
|
|
|
rb_define_method(rb_cDLHandle, "to_i", rb_dlhandle_to_i, 0);
|
|
|
|
rb_define_method(rb_cDLHandle, "close", rb_dlhandle_close, 0);
|
|
|
|
rb_define_method(rb_cDLHandle, "sym", rb_dlhandle_sym, 1);
|
|
|
|
rb_define_method(rb_cDLHandle, "[]", rb_dlhandle_sym, 1);
|
|
|
|
rb_define_method(rb_cDLHandle, "disable_close", rb_dlhandle_disable_close, 0);
|
|
|
|
rb_define_method(rb_cDLHandle, "enable_close", rb_dlhandle_enable_close, 0);
|
2009-10-25 03:11:41 +03:00
|
|
|
rb_define_method(rb_cDLHandle, "close_enabled?", rb_dlhandle_close_enabled_p, 0);
|
2005-02-04 16:35:37 +03:00
|
|
|
}
|
2009-10-25 01:56:50 +04:00
|
|
|
|
2009-10-25 09:44:26 +03:00
|
|
|
/* mode: c; tab-with=8; sw=4; ts=8; noexpandtab: */
|