共享对象中的文本重定位?

发布于 2024-11-08 03:19:07 字数 438 浏览 3 评论 0原文

gcc 编译以下代码(名为 dc 的文件)

int var=10;

void fun( void ) {
  var++;
  int a=var;
}

当我使用

gcc -c -o d.o -fPIC d.c 

.text 部分有一个名为 .rela.text 的重新定位部分

将文件链接到共享对象(reloctest.so),则

gcc  -shared d.o -o reloctest.so 

并调用 readelf -S 时,如果我使用以下命令 重定位部分消失

是否保证共享对象中的 .text 段不会发生重定位?我认为是的(由于 PLT 和 DYN 添加了重新定位),但我不确定

感谢您的任何答案

when I compile the following code (file named d.c) using gcc

int var=10;

void fun( void ) {
  var++;
  int a=var;
}

with

gcc -c -o d.o -fPIC d.c 

and call readelf -S there is a reloction section called .rela.text for the .text section

if I link the file to a shared object (reloctest.so) with

gcc  -shared d.o -o reloctest.so 

the relocation section vanishes

Is it guaranteed that there are no relocation for the .text segment in shared objects? I think yes (due to relocations were added for PLT and DYN) but I'm not sure

Thanks for any answers

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

强辩 2024-11-15 03:19:07

基本上是的。

如果您想完全理解它,您应该阅读 了解 elf

Basically yes.

If you want to fully understand it you should read understanding elf.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文