共享库(.so)如何调用在其加载程序中实现的函数?

时间:2013-06-13 07:05:31

标签: c linux gcc shared-libraries

我有一个我实现的共享库,并希望.so调用一个在加载库的主程序中实现的函数。

假设我有main.c(可执行文件),其中包含:

void inmain_function(void*);
dlopen("libmy.so");

在my.c(libmy.so的代码)中我想调用inmain_function

inmain_function(NULL);

无论事件inmain_function在主程序中定义,共享库如何调用inmain_function

注意:我想从my.c中调用main.c中的符号,反之亦然,这是常见的用法。

4 个答案:

答案 0 :(得分:29)

您有两种选择,您可以从中选择:

选项1:从可执行文件中导出所有符号。 这是一个简单的选项,只需在构建可执行文件时添加标记-Wl,--export-dynamic。这将使所有函数可用于库调用。

选项2:创建包含函数列表的导出符号文件,并使用-Wl,--dynamic-list=exported.txt。这需要一些维护,但更准确。

演示:简单的可执行文件和动态加载的库。

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

void exported_callback() /*< Function we want to export */
{
    printf("Hello from callback!\n");
}

viud unexported_callback() /*< Function we don't want to export */
{
    printf("Hello from unexported callback!\n");
}

typedef void (*lib_func)();

int call_library()
{
   void     *handle  = NULL;
   lib_func  func    = NULL;
   handle = dlopen("./libprog.so", RTLD_NOW | RTLD_GLOBAL);
   if (handle == NULL)
   {
       fprintf(stderr, "Unable to open lib: %s\n", dlerror());
       return -1;
   }
   func = dlsym(handle, "library_function");

   if (func == NULL) {
       fprintf(stderr, "Unable to get symbol\n");
      return -1;
   }

   func();
   return 0;
}

int main(int argc, const char *argv[])
{
    printf("Hello from main!\n");
    call_library();
    return 0;
}

库代码(lib.c):

#include <stdio.h>
int exported_callback();

int library_function()
{
    printf("Hello from library!\n");
    exported_callback();
    /* unexported_callback(); */ /*< This one will not be exported in the second case */
    return 0;
}

所以,首先构建库(这一步没有区别):

 gcc -shared -fPIC lib.c -o libprog.so

现在构建可执行文件并导出所有符号:

 gcc -Wl,--export-dynamic main.c -o prog.exe -ldl

运行示例:

 $ ./prog.exe
 Hello from main!
 Hello from library!
 Hello from callback!

导出的符号:

 $ objdump -e prog.exe -T | grep callback
 00000000004009f4 g    DF .text  0000000000000015  Base        exported_callback
 0000000000400a09 g    DF .text  0000000000000015  Base        unexported_callback

现在使用导出的列表(exported.txt):

{
    extern "C"
    {
       exported_callback;
    };
};

Build&amp;检查可见符号:

$ gcc -Wl,--dynamic-list=./exported.txt main.c -o prog.exe -ldl
$ objdump -e prog.exe -T | grep callback
0000000000400774 g    DF .text  0000000000000015  Base        exported_callback

答案 1 :(得分:14)

你需要在你的.so中创建一个寄存器函数,这样可执行文件就可以给你的.so提供一个函数指针,供以后使用。

像这样:

void in_main_func () {
// this is the function that need to be called from a .so
}

void (*register_function)(void(*)());
void *handle = dlopen("libmylib.so");

register_function = dlsym(handle, "register_function");

register_function(in_main_func);

register_function需要将函数指针存储在.so中的变量中.so中的其他函数可以找到它。

你的mylib.c需要看起来像这样:

void (*callback)() = NULL;

void register_function( void (*in_main_func)())
{
    callback = in_main_func();
}

void function_needing_callback() 
{
     callback();
}

答案 2 :(得分:5)

  1. 将主函数的原型放在.h文件中,并将其包含在主库和动态库代码中。

  2. 使用GCC,只需使用-rdynamic标记编译主程序。

  3. 加载后,您的图书馆就可以从主程序中调用该功能。

  4. 进一步的解释是,一旦编译,您的动态库将在其中具有主代码中的函数的未定义符号。让主应用程序加载库后,符号将由主程序的符号表解析。我已经多次使用上述模式,它就像一个魅力。

答案 3 :(得分:-1)

以下内容可用于在代码中加载动态库(如果有人在查看了如何执行此操作后来到这里):

void* func_handle = dlopen ("my.so", RTLD_LAZY); /* open a handle to your library */

void (*ptr)() = dlsym (func_handle, "my_function"); /* get the address of the function you want to call */

ptr(); /* call it */

dlclose (func_handle); /* close the handle */

不要忘记放置#include <dlfcn.h>并与–ldl选项相关联。

您可能还想添加一些逻辑来检查是否返回NULL。如果是这种情况,您可以致电dlerror,它应该会给您一些有意义的消息来描述问题。

然而,其他海报为您的问题提供了更合适的答案。