gpt4 book ai didi

linux - .got 和 .got.plt 部分有什么区别?

转载 作者:IT王子 更新时间:2023-10-28 23:54:36 27 4
gpt4 key购买 nike

ELF 格式的 .got 和 .got.plt 部分有什么区别?

最佳答案

我之前的评论是对的:

I think .got is for relocations regarding global 'variables' while .got.plt is a auxiliary section to act together with .plt when resolving procedures absolute addresses.

下面的例子让事情变得更清楚了。

这些是我的 32 位 i686-linux/lib/libm.so 的重定位

Relocation section '.rel.dyn' at offset 0x32b8 contains 8 entries:
Offset Info Type Sym.Value Sym. Name
00025030 00000008 R_386_RELATIVE
00024fd8 00005706 R_386_GLOB_DAT 00025034 _LIB_VERSION
00024fdc 00000406 R_386_GLOB_DAT 00000000 __gmon_start__
00024fe0 00000506 R_386_GLOB_DAT 00000000 _Jv_RegisterClasses
00024fe4 00000806 R_386_GLOB_DAT 00000000 _rtld_global_ro
00024fe8 00000906 R_386_GLOB_DAT 00000000 stderr
00024fec 00013006 R_386_GLOB_DAT 0002507c signgam
00024ff0 00000e06 R_386_GLOB_DAT 00000000 __cxa_finalize

Relocation section '.rel.plt' at offset 0x32f8 contains 12 entries:
Offset Info Type Sym.Value Sym. Name
00025000 00000107 R_386_JUMP_SLOT 00000000 fputs
00025004 00000207 R_386_JUMP_SLOT 00000000 __errno_location
00025008 00000307 R_386_JUMP_SLOT 00000000 sprintf
0002500c 00000407 R_386_JUMP_SLOT 00000000 __gmon_start__
00025010 00000607 R_386_JUMP_SLOT 00000000 strtod
00025014 00000707 R_386_JUMP_SLOT 00000000 __assert_fail
00025018 00000a07 R_386_JUMP_SLOT 00000000 strlen
0002501c 00000b07 R_386_JUMP_SLOT 00000000 strtof
00025020 00000c07 R_386_JUMP_SLOT 00000000 fwrite
00025024 00000d07 R_386_JUMP_SLOT 00000000 strtold
00025028 00005e07 R_386_JUMP_SLOT 00005970 matherr
0002502c 00000e07 R_386_JUMP_SLOT 00000000 __cxa_finalize

如您所见,有两个重定位部分,即 .rel.dyn 和 .rel.plt。您可以看到 .rel.plt 的所有重定位都是 R_386_JUMP_SLOT 类型,这意味着它们是分支重定位,另一方面,几乎所有 .rel.dyn 中的重定位都是 R_386_GLOB_DAT,这意味着全局变量的重定位。

.symtab 和 .dynsym 之间存在另一个细微差别。虽然第一个包含静态链接编辑期间使用的所有符号的引用,但后者仅包含动态链接所需的那些符号。因此,上述重定位仅指.dynsym 部分。

关于linux - .got 和 .got.plt 部分有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11676472/

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