从头开始编写ELF64时出现Exec错误

时间:2017-07-21 15:12:03

标签: assembly x86-64 elf

我正试图通过从头开始编写一个elf可执行文件来了解elf标准。使用以下代码,Elf32没有造成太大问题:

BITS 32

            org     0x08048000

ehdr:                                                 ; Elf32_Ehdr
            db      0x7F, "ELF", 1, 1, 1, 2         ;   e_ident
    times 8 db      0
            dw      2                               ;   e_type
            dw      3                               ;   e_machine
            dd      1                               ;   e_version
            dd      _start                          ;   e_entry
            dd      phdr - $$                       ;   e_phoff
            dd      0                               ;   e_shoff
            dd      0                               ;   e_flags
            dw      ehdrsize                        ;   e_ehsize
            dw      phdrsize                        ;   e_phentsize
            dw      1                               ;   e_phnum
            dw      0                               ;   e_shentsize
            dw      0                               ;   e_shnum
            dw      0                               ;   e_shstrndx

ehdrsize      equ     $ - ehdr

phdr:                                                 ; Elf32_Phdr
            dd      1                               ;   p_type
            dd      0                               ;   p_offset
            dd      $$                              ;   p_vaddr
            dd      $$                              ;   p_paddr
            dd      filesize                        ;   p_filesz
            dd      filesize                        ;   p_memsz
            dd      5                               ;   p_flags
            dd      0x1000                          ;   p_align

phdrsize      equ     $ - phdr

_start:
            mov     bl, 42
            xor     eax, eax
            inc     eax
            int     0x80

filesize      equ     $ - $$

来源:http://www.muppetlabs.com/~breadbox/software/tiny/teensy.html

我可以将它组装成一个带有nasm的可执行文件,它执行得很好:

$ nasm -f bin -o test32 template32.asm
$ chmod +x test32
$ ./test32 ; echo $?
42

接下来,我试着用64位做同样的事情。我已经阅读了我在这里找到的差异:https://www.uclibc.org/docs/elf-64-gen.pdf

以下是我实施的修改结果:

BITS 64

            org     0x08048000

ehdr:                                                 ; Elf64_Ehdr
            db      0x7F, "ELF", 2, 1, 1, 2         ;   e_ident
    times 7 db      0
            db      0x10                            ;   e_nindent
            dw      2                               ;   e_type
            dw      3                               ;   e_machine
            dd      1                               ;   e_version
            dq      _start                          ;   e_entry
            dq      phdr - $$                       ;   e_phoff
            dq      0                               ;   e_shoff
            dd      0                               ;   e_flags
            dw      ehdrsize                        ;   e_ehsize
            dw      phdrsize                        ;   e_phentsize
            dw      1                               ;   e_phnum
            dw      0                               ;   e_shentsize
            dw      0                               ;   e_shnum
            dw      0                               ;   e_shstrndx

ehdrsize      equ     $ - ehdr

phdr:                                                 ; Elf64_Phdr
            dd      1                               ;   p_type
            dd      5                               ;   p_flags
            dq      0                               ;   p_offset
            dq      $$                              ;   p_vaddr
            dq      $$                              ;   p_paddr
            dq      filesize                        ;   p_filesz
            dq      filesize                        ;   p_memsz
            dq      0x1000                          ;   p_align

phdrsize      equ     $ - phdr

_start:
        mov     bl, 42
        xor     eax, eax
        inc     eax
        int     0x80

filesize      equ     $ - $$

使用与上面相同的命令,我收到此错误:

./test64: cannot execute binary file: Exec format error

我注意到的事情:当在test32和test64上调用文件时,我收到一条消息,告诉我节标题大小已损坏。我发现这很奇怪,因为我没有任何章节标题...我也用010编辑器和ELF模板查看了每个文件,但一切看起来都很好。

编辑:

32位十六进制转储:

7f45 4c46 0101 0102 0000 0000 0000 0000
0200 0300 0100 0000 5480 0408 3400 0000
0000 0000 0000 0000 3400 2000 0100 0000
0000 0000 0100 0000 0000 0000 0080 0408
0080 0408 5b00 0000 5b00 0000 0500 0000
0010 0000 b32a 31c0 40cd 80

64位十六进制转储:

7f45 4c46 0201 0102 0000 0000 0000 0010
0200 0300 0100 0000 7880 0408 0000 0000
4000 0000 0000 0000 0000 0000 0000 0000
0000 0000 4000 3800 0100 0000 0000 0000
0100 0000 0500 0000 0000 0000 0000 0000
0080 0408 0000 0000 0080 0408 0000 0000
8000 0000 0000 0000 8000 0000 0000 0000
0010 0000 0000 0000 b32a 31c0 ffc0 cd80

1 个答案:

答案 0 :(得分:6)

dw 3 ; e_machine

根据 System V应用程序二进制接口AMD64架构处理器补充62的值应为Advanced Micro Devices X86-64。有了这个改变,它就适合我。