a.out replaced by ELF file format?

喜你入骨 提交于 2019-12-31 21:24:10

问题


I have a few questions:

  • Why was a.out replaced by ELF?
  • What were the major flaws in the a.out format that led to the raise of ELF file format?
  • Earlier core dumps were based on a.out, but now they are based on ELF. What are the various advantages provided by ELF?

回答1:


The a.out format forced shared libraries to occupy a fixed place in memory. If you wanted to distribute an a.out shared library, you had to register its address space. This was good for performance but it didn't scale at all. See for yourself how tricky it was (linuxjournal).

By contrast, in ELF, shared libraries can be loaded anywhere in memory, and can even appear to be at different addresses to different applications running on the same computer (with the code still effectively loaded in only one place in physical memory)! In order to achieve this, in the IA-32 architecture, a register (%ebx) has to be sacrificed. A more comprehensive reference showing that shared libraries got more complicated in ELF, but that was compiler-side complexity, as opposed to programmer-side.




回答2:


As I recall, one of the original problems with a.out format is that it only supported three sections: text, data, and bss. ELF allows any number (or at least many more). The a.out header format was very simple, something like:

word <magic>
word <text size>
word <data size>
word <bss size>

The ELF format, in contrast, has section headers, with names, sizes, etc.

Having more sections allows for the standard sections, but also gives us const sections, constructor sections, and even one section per function, if we want it.



来源:https://stackoverflow.com/questions/2352378/a-out-replaced-by-elf-file-format

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!