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;
}