作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我用 readelf -h 得到入口点:
Entry point address: 0x8048400
(gdb) x/13i 0x8048400
0x8048400 <_start>: xor ebp,ebp
0x8048402 <_start+2>: pop esi
0x8048403 <_start+3>: mov ecx,esp
0x8048405 <_start+5>: and esp,0xfffffff0
0x8048408 <_start+8>: push eax
0x8048409 <_start+9>: push esp
0x804840a <_start+10>: push edx
0x804840b <_start+11>: push 0x8048590
0x8048410 <_start+16>: push 0x8048520
0x8048415 <_start+21>: push ecx
0x8048416 <_start+22>: push esi
0x8048417 <_start+23>: push 0x80484b4
0x804841c <_start+28>: call 0x80483e0 <__libc_start_main@plt>
(gdb) x/1i 0x80483e0
0x80483e0 <__libc_start_main@plt>: jmp DWORD PTR ds:0x8049800
(gdb) x/9i 0x8049800
0x8049800 <__libc_start_main@got.plt>: out 0x83,al
0x8049802 <__libc_start_main@got.plt+2>: add al,0x8
0x8049804 <sub@got.plt>: test BYTE PTR [ebx+0x804],0x0
0x804980b <data_start+3>: add BYTE PTR [eax],al
0x804980d: add BYTE PTR [eax],al
0x804980f: add BYTE PTR [eax],al
0x8049811 <dtor_idx.5525+1>: add BYTE PTR [eax],al
0x8049813 <dtor_idx.5525+3>: .byte 0x0
0x8049814: Cannot access memory at address 0x8049814
最佳答案
我找到了一篇关于该主题的不错的博客文章:https://web.archive.org/web/20130325140610/http://bharathi.posterous.com/bash-prompt-to-main-call
简短的回答: __libc_start_main() 是一个 libc 函数,它调用 main 函数(并做很多其他的事情)。该地址将在启动时链接(参见 BlackBears link),这就是无法通过静态调试从程序入口到主函数的步骤。
但是在调用__libc_start_main之前可以通过push来算出main函数的地址。
0x8048417 <_start+23>: push 0x80484b4
关于assembly - 由 gcc : What happens from entry point to main? 编译的 ELF 二进制文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8668913/
我是一名优秀的程序员,十分优秀!