Chinaunix

标题: dlopen,dlsym的问题,实在搞不明白了。 [打印本页]

作者: sharevon    时间: 2006-09-11 14:51
标题: dlopen,dlsym的问题,实在搞不明白了。
学习使用dlopen等函数动态加载函数,测试程序如下:
#include <stdio.h>
#include <stdlib.h>
#include <dlfcn.h>

int usage()
{
return 1;
}

int main()
{
void* handle,*p;
char * error;
handle = dlopen(NULL,RTLD_NOW);
if (!handle) {
    fputs (dlerror(), stderr);
    exit(1);
}
p = dlsym(handle, "usage");
if ((error = dlerror()) != NULL)  {
     fputs(error, stderr);
     exit(1);
}
   
}
运行后,dlsym的返回值是0,会打印出undefined symbol usage,是什么原因阿?是我的代码写的有问题吗?
作者: sunlan    时间: 2006-09-11 14:59
dlsym返回的是NULL,表示调用不成功。
dlxxx系列函数不是这样用的,一般都是打开一个动态库,然后映射动态库的函数
作者: JohnBull    时间: 2006-09-11 23:14
原帖由 sunlan 于 2006-9-11 14:59 发表
dlsym返回的是NULL,表示调用不成功。


非也非也
man dlsym
作者: sunlan    时间: 2006-09-11 23:35
原帖由 JohnBull 于 2006-9-11 23:14 发表


非也非也
man dlsym


If handle does not refer to a valid object opened by dlopen(), or if the named symbol cannot be found within any of the objects associated with handle, dlsym() shall return NULL. More detailed diagnostic information shall be available through dlerror().

楼主说dlsym返回的是0,也就是return NULL
作者: flw    时间: 2006-09-12 16:03
sunlan 摘录的是哪儿的 man 手册?
Linux 的确不是这样的。
下面是我的 Debian 上的 man page:
  1.    dlsym
  2.        The  function dlsym() takes a "handle" of a dynamic library returned by
  3.        dlopen() and the null-terminated symbol  name,  returning  the  address
  4.        where  that  symbol is loaded into memory.  If the symbol is not found,
  5.        in the specified library or any of the libraries  that  were  automati-
  6.        cally  loaded by dlopen() when that library was loaded, dlsym() returns
  7.        NULL.  (The search performed by dlsym() is breadth  first  through  the
  8.        dependency  tree  of  these  libraries.)  Since the value of the symbol
  9.        could actually be NULL (so that a NULL return  from  dlsym()  need  not
  10.        indicate  an  error),  the  correct way to test for an error is to call
  11.        dlerror() to clear any old error conditions,  then  call  dlsym(),  and
  12.        then call dlerror() again, saving its return value into a variable, and
  13.        check whether this saved value is not NULL.
复制代码

作者: flw    时间: 2006-09-12 16:06
                                                 Since the value of the symbol
       could actually be NULL (so that a NULL return  from  dlsym()  need  not
       indicate  an  error),  the  correct way to test for an error is to call
       dlerror() to clear any old error conditions,  then  call  dlsym(),  and
       then call dlerror() again, saving its return value into a variable, and
       check whether this saved value is not NULL.

作者: midli    时间: 2007-01-03 11:53
把你的useage.so加入到LD_LIBRARY_PATH中, 而且同时要把它链接入你的main中
作者: langue    时间: 2007-01-03 12:08
NetBSD

man dlsym

     dlsym() looks for a definition of symbol in the shared object designated
     by handle. The symbols address is returned. If the symbol cannot be re-
     solved, NULL is returned.

作者: wolf0403    时间: 2007-01-03 12:45
关键这里 usage 的位置不可能是 NULL(不需要动态连接的符号),所以应该还是存在问题的。

楼主用的 g++ 编译的?
作者: longshort    时间: 2007-01-03 12:57
dlsym()是将库中的一个函数绑定到预定义的函数地址,所以不能定义p是void *的。看关于uage()的定义,可定义函数指针为:
...
int (*usg)(void);
...
*(void **) (&usg)=dlsym(handle,"usage");
...
作者: jack1582    时间: 2007-01-17 14:58
楼主试试这样声明一下或者调整下代码为C风格的,使用GCC编译

  1. extern "C" {
  2. int usage() ;
  3. }
复制代码

[ 本帖最后由 jack1582 于 2007-1-17 15:01 编辑 ]
作者: nmzqzw    时间: 2007-01-17 16:01
handle = dlopen(NULL,RTLD_NOW);

天哪,这样调返回的handle 要不是NULL才怪呢?,你要指明open哪个动态库呀,楼主
作者: comepu    时间: 2007-04-29 16:40
楼上的去看下man page吧
作者: rel23a7    时间: 2011-05-25 23:46
OpenGL 中很有用吧




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2