1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
|
{
This unit contains the types needed for reading Elf images.
This file was ported from DUBY. See svn log for details
---------------------------------------------------------------------------
***************************************************************************
* *
* This source is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This code is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* General Public License for more details. *
* *
* A copy of the GNU General Public License is available on the World *
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
* obtain it by writing to the Free Software Foundation, *
* Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1335, USA. *
* *
***************************************************************************
}
unit FpImgReaderElfTypes;
{$mode objfpc}{$H+}
interface
type
Elf32_Addr = LongWord; // Unsigned program address
Elf32_Half = Word; // Unsigned medium integer
Elf32_Off = LongWord; // Usigned file offset
Elf32_Sword = Integer; // Signed large integer
Elf32_Word = LongWord; // Usigned large integer
Elf64_Addr = Qword; // Unsigned program address
Elf64_Off = QWord; // Unsigned file offset
Elf64_Half = Word; // Unsigned medium integer
Elf64_Word = LongWord; // Unsigned integer
Elf64_Sword = Integer; // Signed integer
Elf64_Xword = QWord; // Unsigned long integer
Elf64_Sxword = Int64; // Signed long integer
const
EINDENT = 16;
type
elf_ident = packed record
case byte of
0: (e_ident: array [0..EINDENT-1] of byte);
1: (id_mag : array[0..3] of Char;
id_class : Byte;
id_data : Byte;
id_version : Byte;
id_OSABI : Byte;
id_AbiVersion : Byte;
);
end;
const
EI_MAG0 = 0; // $7F
EI_MAG1 = 1; // E
EI_MAG2 = 2; // L
EI_MAG3 = 3; // F
EI_CLASS = 4;
EI_DATA = 1;
EI_VERSION = 1;
EI_OSABI = 1;
EI_ABIVERSION = 1;
ELFMAGIC = chr($7f)+'ELF';
//elf class
ELFCLASSNONE = 0;
ELFCLASS32 = 1;
ELFCLASS64 = 2;
//byte order
ELFDATANONE = 0;
ELFDATA2LSB = 1;
ELFDATA2MSB = 2;
// Operating System and ABI Identifiers, e_ident[EI_OSABI]
ELFOSABI_SYSV = 0; // System V ABI
ELFOSABI_HPUX = 1; // HP-UX operating system
ELFOSABI_STANDALONE = 255; // Standalone (embedded) application
type
//note: it doesn't include Ident block
Elf32_EHdr = packed record
e_ident : elf_ident; { ELF identification }
e_type : Elf32_Half; { Object file type }
e_machine : Elf32_Half; { Machine type }
e_version : Elf32_Word; { Object file version }
e_entry : Elf32_addr; { Entry point address }
e_phoff : Elf32_Off; { Program header offset }
e_shoff : Elf32_Off; { Section header offset }
e_flags : Elf32_Word; { Processor-specific flags }
e_ehsize : Elf32_Half; { ELF header size }
e_phentsize : Elf32_Half; { Size of program header entry }
e_phnum : Elf32_Half; { Number of program header entries }
e_shetsize : Elf32_Half; { Size of section header entry }
e_shnum : Elf32_Half; { Number of section header entries }
e_shstrndx : Elf32_Half; { Section name string table index }
end;
PElf32_EHdr = ^Elf32_EHdr;
Elf64_EHdr = packed record
e_ident : elf_ident; { ELF identification }
e_type : Elf64_Half; { Object file type }
e_machine : Elf64_Half; { Machine type }
e_version : Elf64_Word; { Object file version }
e_entry : Elf64_Addr; { Entry point address }
e_phoff : Elf64_Off; { Program header offset }
e_shoff : Elf64_Off; { Section header offset }
e_flags : Elf64_Word; { Processor-specific flags }
e_ehsize : Elf64_Half; { ELF header size }
e_phentsize : Elf64_Half; { Size of program header entry }
e_phun : Elf64_Half; { Number of program header entries }
e_shentsize : Elf64_Half; { Size of section header entry }
e_shnum : Elf64_Half; { Number of section header entries }
e_shstrndx : Elf64_Half; { Section name string table index }
end;
PElf64_EHdr = ^Elf64_EHdr;
const
// object file type {Elf32_Hdr.e_type}
ET_NONE = 0; // No file type
ET_REL = 1; // Relocatable object file .o
ET_EXEC = 2; // Executable file
ET_DYN = 3; // Shared object file .so
ET_CORE = 4; // Core file
ET_LOOS = $fe00; // os-specific
ET_HIOS = $feff;
ET_LOPROC = $ff00; // processor-specific
ET_HIPROC = $ffff;
// machine type {Elf32_Hdr.e_machine}
EM_NONE = 0;
EM_SPARC = 2;
EM_386 = 3;
EM_68K = 4;
EM_PPC = 20;
EM_PPC64 = 21;
EM_ARM = 40;
EM_OLD_ALPHA = 41;
EM_IA_64 = 50;
EM_X86_64 = 62;
EM_ALPHA = $9026; //unofficial, but used by gnu toolchain
//elf version {Elf32_Hdr.e_version}
EV_NONE = 0;
EV_CURRENT = 1;
SHN_UNDEF = $0; // Used to mark an undefined or meaningless section reference
SHN_LORESERVE = $ff00; {This value specifies the lower bound of the range of reserved indexes.}
SHN_LOPROC = $ff00;
SHN_HIPROC = $ff1f;
SHN_ABS = $fff1; // Indicates that the corresponding reference is an absolute value
SHN_COMMON = $fff2; // Indicates a symbol that has been declared as a common block (Fortran COMMON or C tentative declaration)
SHN_HIRESERVE = $ffff;
type
Elf32_shdr = packed record
sh_name : Elf32_Word;
sh_type : Elf32_Word;
sh_flags : Elf32_Word;
sh_addr : Elf32_Addr;
sh_offset : Elf32_Off;
sh_size : Elf32_Word;
sh_link : Elf32_Word;
sh_info : Elf32_Word;
sh_addralign : Elf32_Word;
sh_entsize : Elf32_Word;
end;
PElf32_shdr = ^Elf32_shdr;
Elf64_Shdr = packed record
sh_name : Elf64_Word; // Section name
sh_type : Elf64_Word; // Section type
sh_flags : Elf64_Xword; // Section attributes
sh_address : Elf64_Addr; // Virtual address in memory
sh_offset : Elf64_Off; // Offset in file
sh_size : Elf64_Xword; // Size of section
sh_link : Elf64_Word; // Link to other section
sh_info : Elf64_Word; // Miscellaneous information
sh_addralign : Elf64_Xword; // Address alignment boundary
sh_entsize : Elf64_Xword; // Size of entries, if section has table
end;
PElf64_Shdr = ^Elf64_Shdr;
const
//section type
SHT_NULL = 0; // Marks an unused section header
SHT_PROGBITS = 1; // Contains information defined by the program
SHT_SYMTAB = 2; // Contains a linker symbol table
SHT_STRTAB = 3; // Contains a string table
SHT_RELA = 4; // Contains “Rela” type relocation entries
SHT_HASH = 5; // Contains a symbol hash table
SHT_DYNAMIC = 6; // Contains dynamic linking tables
SHT_NOTE = 7; // Contains note information
SHT_NOBITS = 8; // Contains uninitialized space; does not occupy any space in the file
SHT_REL = 9; // Contains “Rel” type relocation entries
SHT_SHLIB = 10; // Reserved
SHT_DYNSYM = 11; // Contains a dynamic loader symbol table
SHT_LOOS = $60000000; // Environment-specific use
SHT_HIOS = $6fffffff;
SHT_LOPROC = $70000000; // Processor-specific use
SHT_HIPROC = $7fffffff;
//section attribute flags
SHF_WRITE = 1; // Section contains writable data
SHF_ALLOC = 2; // Section is allocated in memory image of program
SHF_EXECINSTR = 4; // Section contains executable instructions
SHF_MASKOS = $0f000000; // Environment-specific use
SHF_MASKPROC = $f0000000; // Processor-specific use
type
Elf32_Sym = packed record
st_name : Elf32_Word;
st_value : Elf32_Addr;
st_size : Elf32_Word;
st_info : byte;
st_other : byte;
st_shndx : Elf32_Half;
end;
PElf32_Sym = ^Elf32_Sym;
Elf64_Sym = packed record
st_name : Elf64_Word; // Symbol name
st_info : Byte; // Type and Binding attributes
st_other : Byte; // Reserved
st_shndx : Elf64_Half; // Section table index
st_value : Elf64_Addr; // Symbol value
st_Size : Elf64_Xword // Size of object (e.g., common)
end;
PElf64_Sym = ^Elf64_Sym;
const
//symbol bindings
STB_LOCAL = 0; // Not visible outside the object file
STB_GLOBAL = 1; // Global symbol, visible to all object files
STB_WEAK = 2; // Global scope, but with lower precedence than global symbols
STB_LOOS = 10; // Environment-specific use
STB_HIOS = 12;
STB_LOPROC = 13; // Processor-specific use
STB_HIPROC = 15;
//symbol types
STT_NOTYPE = 0; // No type specified (e.g., an absolute symbol)
STT_OBJECT = 1; // Data object
STT_FUNC = 2; // Function entry point
STT_SECTION = 3; // Symbol is associated with a section
STT_FILE = 4; // Source file associated with the object file
STT_COMMON = 5;
STT_TLS = 6;
STT_LOOS = 10; // Environment-specific use
STT_HIOS = 12;
STT_LOPROC = 13; // Processor-specific use
STT_SPARC_REGISTER = 13;
STT_HIPROC = 15;
{
Relocation
Relocation is the process of connecting symbolic references with symbolic
definitions. For example, when a program calls a function, the associated call
instruction must transfer control to the proper destination address at execution.
In other words, relocatable files must have information that describes how
to modify their section contents, thus allowing executable and shared object
files to hold the right information for a process’s program image.
Relocation entriesare these data.
}
type
Elf32_Rel = packed record
r_offset : Elf32_Addr;
r_info : Elf32_Word;
end;
Elf32_rela = packed record
r_offset : Elf32_Addr;
r_info : Elf32_Word;
r_addend : Elf32_Sword;
end;
{ r_offset This member gives the location at which to apply the relocation action. For a relocatable
file, the value is the byte offset from the beginning of the section to the storage unit affected
by the relocation. For an executable file or a shared object, the value is the virtual address of
the storage unit affected by the relocation.
r_info This member gives both the symbol table index with respect to which the relocation must be
made, and the type of relocation to apply. For example, a call instruction’s relocation entry
would hold the symbol table index of the function being called. If the index isSTN_UNDEF,
the undefined symbol index, the relocation uses 0 as the ‘‘symbol value.’’ Relocation types
are processor-specific. When the text refers to a relocation entry’s relocation type or symbol
table index, it means the result of applyingELF32_R_TYPEorELF32_R_SYM, respectively,
to the entry’sr_infomember }
Elf64_Rel = packed record
r_offset : Elf64_Addr; // Address of reference
r_info : Elf64_Xword; // Symbol index and type of relocation
end;
PElf64_Rel = ^Elf64_Rel;
Elf64_Rela = packed record
r_offset : Elf64_Addr; // Address of reference
r_info : Elf64_Xword; // Symbol index and type of relocation
r_addend : Elf64_Sxword; // Constant part of expression
end;
PElf64_Rela = ^Elf64_Rela;
const
R_386_NONE = 0;
R_386_32 = 1;
R_386_PC32 = 2;
R_386_GOT32 = 3;
R_386_PLT32 = 4;
R_386_COPY = 5;
R_386_GLOB_DAT = 6;
R_386_JMP_SLOT = 7;
R_386_RELATIVE = 8;
R_386_GOTOFF = 9;
R_386_GOTPC = 10;
function Elf32_R_Sym(i: LongWord): LongWord; inline;
function Elf32_R_Type(i: LongWord): LongWord; inline;
function Elf32_R_Info(s, t: LongWord): LongWord; inline;
function Elf64_R_Sym(i: QWord): QWord; inline;
function Elf64_R_Type(i: QWord): QWord; inline;
function Elf64_R_Info(s, t: QWord): QWord; inline;
implementation
function Elf32_R_Sym(i: LongWord): LongWord; inline;
begin
Result := i shr 8;
end;
function Elf32_R_Type(i: LongWord): LongWord; inline;
begin
Result := i and $FF;
end;
function Elf32_R_Info(s, t: LongWord): LongWord; inline;
begin
Result := (s shl 8) + (t and $FF);
end;
function Elf64_R_Info(s, t: QWord): QWord; inline;
begin
Result := (s shl 32) + (t and $FFFFFFFF);
end;
function Elf64_R_Type(i: QWord): QWord; inline;
begin
Result := i and $ffffffff;
end;
function Elf64_R_Sym(i: QWord): QWord; inline;
begin
Result := i shr 32;
end;
end.
|