为什么使用 GOT 引用共享对象中定义的非静态全局变量?
我的意思是在模块中定义的非静态全局变量,而不是在外部。
为什么一定要通过GOT引用呢?为什么不使用相对地址?(因为.data部分中的全局变量和.text部分中的引用之间的距离是一个常量,它也是与位置无关的)
I mean nonstatic global variables that are defined in the module, not externally.
Why does it have to be referenced through GOT? Why no use relative address?(since the distance between the global variable in the .data section and the reference in the .text section is a constant, it's also position-independent)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于您的变量不是
静态
,因此在 ELF 上可以插入它(想想 LD_PRELOAD)。Since your variable isn't
static
, on ELF it can be interposed (think of LD_PRELOAD).我也有同样的困惑。
如果两个 DSO 中都定义了一个同名的全局变量,并且它们动态链接到一个可执行文件中,那么两个库是否会访问该变量的同一副本?
变量定位到哪个库(库的数据部分)取决于库加载的顺序?
I also have the same confusion.
If there is one global variable with same name defined in both two DSOs and they are dynamically linked into one executable, will both libraries access the same copy of the variable?
And which library(library's data section) the variable locates depends on the order of libraries loading?