How to determine which glibc function is called from binary?
问题 Is there any way we could say which glibc function is called from ARM elf binary? For example, consider the following diassembly: 8300 <printf@plt-0x40>: .... 8320: e28fc600 add ip, pc, #0, 12 8324: e28cca08 add ip, ip, #8, 20 ; 0x8000 8328: e5bcf344 ldr pc, [ip, #836]! ; 0x344 .... 83fc <main>: ... 8424:ebffffbd bl 8320 <_init+0x2c> Here, how we can say that bl 8320 is a call to printf? Is this information stored in ELF binary somewhere? 回答1: Is there any way we could say which glibc