22

Q1 What is the difference between Program header and Section Header in ELF?

Q1.1 What is the difference between segment and a section?

I believe pheaders point to sections only.

Q2. What is the difference between File Header and Program Header?

As per GNU ld linker script, Using Id: The GNU Linker:

PHDRS
{
name type [ FILEHDR ] [ PHDRS ] [ AT ( address ) ]
[ FLAGS ( flags ) ] ;
}

You may use the FILEHDR and PHDRS keywords appear after the program header type to further describe the contents of the segment. The FILEHDR keyword means that the segment should include the ELF file header. The PHDRS keyword means that the segment should include the ELF program headers themselves.

This is a bit confusing.

Jens
  • 61,963
  • 14
  • 104
  • 160

1 Answers1

26

The Executable & Linkable Format wikipage has a nice picture explaining ELF, and the difference between its program header & sections header. See also elf(5)

The [initial] program header is defining segments (in the address space of a process running that ELF executable) projected in virtual memory (the executable point of view) at execve(2) time. The [final] sections header is defining sections (the linkable point of view, for ld(1) etc...). Each section belongs to a segment (and may, or not, be visible -i.e. mapped into memory- at execution time). The ELF file header tells where program header table & section header table are.

Use also objdump(1) and readelf(1) to explore several ELF files (executables, shared objects, linkable objects) existing on your Linux system.

Levine's Linkers & Loaders book has a chapter explaining that in details.

And Drepper's paper How to Write Shared Libraries also has some good explanation.

Xiao Jia
  • 3,899
  • 1
  • 25
  • 47
Basile Starynkevitch
  • 1
  • 16
  • 251
  • 479
  • But my answer still fits. Read & follow carefully the links. – Basile Starynkevitch Apr 30 '14 at 04:56
  • Dear Basile, It doesnt say much about Program header. I am looking for detail on usage of PHDRS { name type [ FILEHDR ] [ PHDRS ] [ AT ( address ) ] [ FLAGS ( flags ) ] ; } –  Apr 30 '14 at 05:03
  • 2
    Summary: *run time* and *load time*. Non-allocated sections (debug info), BSS sections not in the ELF, but allocated at run-time (NOLOAD). Similar concepts/keywords are *VMA* and *LMA*. – artless noise Apr 30 '14 at 14:55