What is the difference between text and data segments vs .text and .data sections in ELF file?

1

I understand an ELF file contains segments and sections, and headers that provide info about their contents. Additionally ELF sections are what organize data within the segments.

In the below example you can clearly see the .text and .data sections listed in the readelf output, but the program headers don't list "text" or "data" segments.

What is the difference between text and data segments vs .text and .data sections in ELF file?

example hello world program:

#include <stdio.h>
int main()
{
    puts("hello world");
    return 0;
}

Display ELF segment headers:

$ readelf -l hello

Elf file type is EXEC (Executable file)
Entry point 0x8049050
There are 11 program headers, starting at offset 52

Program Headers:
  Type           Offset   VirtAddr   PhysAddr   FileSiz MemSiz  Flg Align
  PHDR           0x000034 0x08048034 0x08048034 0x00160 0x00160 R   0x4
  INTERP         0x000194 0x08048194 0x08048194 0x00013 0x00013 R   0x1
      [Requesting program interpreter: /lib/ld-linux.so.2]
  LOAD           0x000000 0x08048000 0x08048000 0x002e8 0x002e8 R   0x1000
  LOAD           0x001000 0x08049000 0x08049000 0x0022c 0x0022c R E 0x1000
  LOAD           0x002000 0x0804a000 0x0804a000 0x0019c 0x0019c R   0x1000
  LOAD           0x002f0c 0x0804bf0c 0x0804bf0c 0x00110 0x00114 RW  0x1000
  DYNAMIC        0x002f14 0x0804bf14 0x0804bf14 0x000e8 0x000e8 RW  0x4
  NOTE           0x0001a8 0x080481a8 0x080481a8 0x00044 0x00044 R   0x4
  GNU_EH_FRAME   0x002014 0x0804a014 0x0804a014 0x0004c 0x0004c R   0x4
  GNU_STACK      0x000000 0x00000000 0x00000000 0x00000 0x00000 RW  0x10
  GNU_RELRO      0x002f0c 0x0804bf0c 0x0804bf0c 0x000f4 0x000f4 R   0x1

  Section to Segment mapping:
  Segment Sections...
  00     
  01     .interp 
  02     .interp .note.gnu.build-id .note.ABI-tag .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt 
  03     .init .plt .text .fini 
  04     .rodata .eh_frame_hdr .eh_frame 
  05     .init_array .fini_array .dynamic .got .got.plt .data .bss 
  06     .dynamic 
  07     .note.gnu.build-id .note.ABI-tag 
  08     .eh_frame_hdr 
  09     
  10     .init_array .fini_array .dynamic .got
linux
memory
elf
asked on Stack Overflow Dec 28, 2019 by sf_admin • edited Dec 29, 2019 by sf_admin

1 Answer

-1

Segments are for execution of the file, when they run. Sections are data files for linking and relocation. Dot(.) is shortcut to directory(on Unix) Those comes out, when you are finding PATHs. On Linux, shell don't by defaoult, find from directory, if its not in PATH. But if you like, you can chance that with Vim, Nano etc. from your /Home/.profile

answered on Stack Overflow Dec 28, 2019 by Lapasorsa

User contributions licensed under CC BY-SA 3.0