当前位置: 技术问答>linux和unix
一个ELF文件解释器的实现~~~
来源: 互联网 发布时间:2016-12-29
本文导语: 各位,小弟想做一个ELF文件解释器,对于ELF文件格式我已经粗略做了一下了解,不过对于解释器的实现还是没有多大的头绪……各位对于它的大概实现有什么看法,谢谢…… | ELF Header: Magi...
各位,小弟想做一个ELF文件解释器,对于ELF文件格式我已经粗略做了一下了解,不过对于解释器的实现还是没有多大的头绪……各位对于它的大概实现有什么看法,谢谢……
|
ELF Header:
Magic: 7f 45 4c 46 02 01 01 00 00 00 00 00 00 00 00 00
Class: ELF64
Data: 2's complement, little endian
Version: 1 (current)
OS/ABI: UNIX - System V
ABI Version: 0
Type: EXEC (Executable file)
Machine: Advanced Micro Devices X86-64
Version: 0x1
Entry point address: 0x408a40
Start of program headers: 64 (bytes into file)
Start of section headers: 398032 (bytes into file)
Flags: 0x0
Size of this header: 64 (bytes)
Size of program headers: 56 (bytes)
Number of program headers: 9
Size of section headers: 64 (bytes)
Number of section headers: 28
Section header string table index: 27
Magic: 7f 45 4c 46 02 01 01 00 00 00 00 00 00 00 00 00
Class: ELF64
Data: 2's complement, little endian
Version: 1 (current)
OS/ABI: UNIX - System V
ABI Version: 0
Type: EXEC (Executable file)
Machine: Advanced Micro Devices X86-64
Version: 0x1
Entry point address: 0x408a40
Start of program headers: 64 (bytes into file)
Start of section headers: 398032 (bytes into file)
Flags: 0x0
Size of this header: 64 (bytes)
Size of program headers: 56 (bytes)
Number of program headers: 9
Size of section headers: 64 (bytes)
Number of section headers: 28
Section header string table index: 27
|
可以使用 readelf -h
会有很多可以参考的命令选项
另外看看elf文件操作的对应结构体就很好理解了 像elf32_ehdr elf32_shdr etc...
会有很多可以参考的命令选项
另外看看elf文件操作的对应结构体就很好理解了 像elf32_ehdr elf32_shdr etc...
|
是让elf文件变成可执行文件? 这个看链接器实现了.
还是说输出elf信息? 这个objdump可以看看.
还是说输出elf信息? 这个objdump可以看看.
|
search libelf in google
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。