- 论坛徽章:
- 0
|
本帖最后由 landker 于 2013-09-21 13:58 编辑
1)- 代码1(start.asm):
- [BITS 32]
- extern L0
- [section .text]
- global _start
- _start:
- jmp $
- .......
复制代码 编译后为: start.o
2)其他的目标文件集合假设为 others.o
3)我自己写了一个简单的链接器,将1)和2)一起链接,
test_ld -o test start.o others.o
4)加载运行出错(ubuntu系统提示:已杀死)!
按照正常情况,系统在加载 test 后,整个代码段都被复制至起始地址为 0x8048000 的地方,而且第一条执行的代码应该是 0x80480bf(即:_start:的第一条语句:jmp $),即执行一个死循环(要手工ctrl+c 退出),但却提示出错.....
请教一下各位,到底哪里出错了?
5)相关信息如下:- ELF header(readelf -h test):
- ELF Header:
- Magic: 7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00
- Class: ELF32
- Data: 2's complement, little endian
- Version: 1 (current)
- OS/ABI: UNIX - System V
- ABI Version: 0
- Type: EXEC (Executable file)
- Machine: Intel 80386
- Version: 0x1
- Entry point address: 0x80480bf
- Start of program headers: 52 (bytes into file)
- Start of section headers: 148 (bytes into file)
- Flags: 0x0
- Size of this header: 52 (bytes)
- Size of program headers: 32 (bytes)
- Number of program headers: 3
- Size of section headers: 40 (bytes)
- Number of section headers: 13
- Section header string table index: 6
复制代码- 程序头(readelf -l test):
- Elf file type is EXEC (Executable file)
- Entry point 0x80480bf
- There are 3 program headers, starting at offset 52
- Program Headers:
- Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align
- LOAD 0x00029c 0x08048000 0x08048000 0x008e5 0x008e5 R E 0x1000
- LOAD 0x000b81 0x08049000 0x08049000 0x00013 0x00013 RW 0x1000
- GNU_STACK 0x000000 0x00000000 0x00000000 0x00000 0x00000 RWE 0x1000
- Section to Segment mapping:
- Segment Sections...
- 00 .text
- 01 .data
- 02
复制代码- section 列表(readelf -S test)
- There are 13 section headers, starting at offset 0x94:
- Section Headers:
- [Nr] Name Type Addr Off Size ES Flg Lk Inf Al
- [ 0] NULL 00000000 000000 000000 00 0 0 0
- [ 1] .text PROGBITS 08048000 00029c 0008e5 00 AX 0 0 16
- [ 2] .data PROGBITS 08049000 000b81 000013 00 WA 0 0 4
- [ 3] .bss NOBITS 080488f8 000b94 000000 00 WA 0 0 4
- [ 4] .rodata PROGBITS 080488f8 000b94 0000dc 00 A 0 0 1
- [ 5] .rel.text REL 080489d4 000c70 000180 08 7 1 4
- [ 6] .shstrtab STRTAB 08048b54 000df0 00006e 00 0 0 1
- [ 7] .symtab SYMTAB 08048bc2 000e5e 000510 10 8 8 4
- [ 8] .strtab STRTAB 080490d2 00136e 0001c5 00 0 1 1
- [ 9] .comment PROGBITS 08049297 001533 000056 01 MS 0 0 1
- [10] .eh_frame PROGBITS 080492ed 001589 000294 01 A 0 0 4
- [11] .rel.eh_frame REL 08049581 00181d 000098 08 7 1 4
- [12] .note.GNU-stack NOBITS 08049619 0018b5 000000 01 WA 0 0 4
复制代码- 代码反编译(objdump -s -d --start-address=0x8048000 --stop-address=0x8048100 test):
- 080480bf <_start>:
- 80480bf: eb fe jmp 80480bf <_start>
- .......
复制代码 |
|