共享对象中的文本重定位?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基本上是的。
如果您想完全理解它,您应该阅读 了解 elf。
Basically yes.
If you want to fully understand it you should read understanding elf.