7

是否有希望dlopen(NULL, ...)为静态编译的二进制文件运行和获取符号?

例如,如果程序是动态编译的并且我使用-rdynamic.

$ gcc -o foo foo.c -ldl -rdynamic
$ ./foo bar
In bar!

但是-static我收到一条神秘的错误消息:

$ gcc -static -o foo foo.c -ldl -rdynamic
/tmp/cc5LSrI5.o: In function `main':
foo.c:(.text+0x3a): warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
$ ./foo bar
/lib/x86_64-linux-gnu/: cannot read file data: Is a directory

来源foo.c如下:

#include <dlfcn.h>
#include <stdio.h>

int foo() { printf("In foo!\n"); }
int bar() { printf("In bar!\n"); }

int main(int argc, char**argv)
{
  void *handle;
  handle = dlopen(NULL, RTLD_NOW|RTLD_GLOBAL);
  if (handle == NULL) {
    fprintf(stderr, "%s\n", dlerror());
    return 1;
  }

  typedef void (*function)();
  function f = (function) dlsym(handle, argv[1]);
  if (f == NULL) {
    fprintf(stderr, "%s\n", dlerror());
    return 2;
  }
  f();

  return 0;
}
4

1 回答 1

7

有没有希望运行 dlopen(NULL, ...) 并为静态编译的二进制文件获取符号?

不。

在大多数 UNIX 上,您甚至无法同时链接-static-ldl。可以使用 glibc,但这样做的效用非常有限。基本上,此功能仅用于支持 /etc/nsswitch.conf,仅此而已。

进行您所做的动态查找也没有任何意义。

如果您试图允许其中一个foobar或者baz根据命令行参数被调用,只需放入一个表,例如

struct { const char *fname, void (*fn)(void) } table[] =
  { {"foo", &foo}, {"bar", &bar}, ...};

for (int i = 0; i < ...; ++i)
  if (strcmp(argv[1], table[i].fname) == 0)
    // found the entry, call it
    (*table[i].fn)();

如果您尝试“可能”调用foo(如果已链接),并且不执行任何其他操作,请使用弱引用:

extern void foo(void) __attribute((weak));

if (&foo != 0) {
  // foo was linked in, call it
  foo();
}
于 2013-03-18T06:33:53.123 回答