gpt4 book ai didi

linux - 如何在 linux 的标准共享库(C)中添加自己的自定义函数?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:17:34 26 4
gpt4 key购买 nike

我已经下载了 libgcrypt 库源代码,我想通过在一个特定的函数中添加我的函数来自定义这个标准共享库源代码文件。

虽然自定义共享库的编译/构建过程成功,但在链接时显示错误。

这是我所做的。

在/src/visibility.c 文件中,我添加了我的自定义函数,

void MyFunction(void)
{
printf("This is added just for testing purpose");
}

我还在/src/gcrypt.h 中包含了函数原型(prototype)

void MyFunction(void);


#build process

./configure --prefix=/usr
sudo make install

nm command find this custom function.

nm /usr/lib/libgcrypt.so | grep MyFunction
000000000000dd70 t MyFunction

这是我访问自定义函数的示例代码。

//aes_gcrypt_example.c
#include <stdio.h>
#include <gcrypt.h>
#include <assert.h>

int main()
{
MyFunction();
return 0;
}


gcc aes_gcrypt_example.c -o aes -lgcrypt

/tmp/ccA0qgAB.o: In function `main':
aes_gcrypt_example.c:(.text+0x3a2): undefined reference to `MyFunction'
collect2: error: ld returned 1 exit status

我也尝试在 gcrypt.h 中将 MyFunction 设置为 extern,但在那种情况下我也会遇到同样的错误。

为什么会这样?

是不是不允许自定义标准库?

如果是,那么是否有任何 FLAG 可以禁用以允许自定义?

如果不是,我犯了什么错误?

如果有人为上述问题提供一些有用的链接/解决方案,那将会很有帮助。我正在使用 Ubuntu16.04,gcc 4.9。

最佳答案

符号类型的小写 t

nm /usr/lib/libgcrypt.so | grep MyFunction
000000000000dd70 t MyFunction

你确定这是一个可见函数吗?在我的 Ubuntu 16.04 VM 上,目标文件中定义的可链接函数将 T(不是 t)作为符号类型。是否有杂散的 static 踢来踢去造成困惑?检查 libgcrypt.so 中定义的几个其他函数(并记录在 gcrypt.h 中)并查看它们是否有 tT。他们将有一个 T 而不是 t。您需要弄清楚为什么您的函数会得到一个 t — 从您显示的代码中并不清楚。

nm 的 (Ubuntu) 手册页包括:

The symbol type. At least the following types are used; others are, as well, depending on the object file format. If lowercase, the symbol is usually local; if uppercase, the symbol is global (external).

您显示的行表明 MyFunction 在其源文件之外不可见,并且链接器同意,因为它没有找到它。

您现在的问题是检查包含 MyFunction 的目标文件是否具有符号类型 T — 如果不是,则问题出在源代码中。

假设目标文件显示符号类型T,但共享对象显示符号类型t,您必须找出在共享对象创建阶段发生了什么,才能使符号在共享对象之外不可见。这可能是因为“链接器脚本”控制哪些符号在库外可见(或者可能只是编译选项)。您可以在 Google 上搜索“链接描述文件”和各种额外的词(“教程”、“提供”、“示例”等),然后找到相关文档的链接。

您可能需要研究 LibTool 的文档,或链接器 BinUtils . LibTool 提供了操作共享库的方法。在 comment 中显示的编译命令行中,有选项 -fvisibility=hidden。我在 visibility 上找到了(主要是偶然的意外)GCC Wiki。 .另见 visibility attributecode generation options .

关于linux - 如何在 linux 的标准共享库(C)中添加自己的自定义函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48708185/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com