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 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550
|
{
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 FpImgReaderElf;
{$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface
uses
Classes, SysUtils,
LazUTF8, {$ifdef FORCE_LAZLOGGER_DUMMY} LazLoggerDummy {$else} LazLoggerBase {$endif},
DbgIntfBaseTypes,
// FpDebug
FpImgReaderBase, fpDbgSymTable, FpImgReaderElfTypes, FpDbgCommon;
type
TElfSection = packed record
name : AnsiString;
FileOfs : QWord;
Address : QWord;
Size : QWord;
SectionType : QWord;
Flags : QWord;
end;
PElfSection = ^TElfSection;
{ TElfFile }
TElfFile = class(TObject)
private
FTargetInfo: TTargetDescriptor;
function FElfToMachineType(machinetype: word): TMachineType;
protected
function Load32BitFile(ALoader: TDbgFileLoader): Boolean;
function Load64BitFile(ALoader: TDbgFileLoader): Boolean;
procedure AddSection(const name: AnsiString; FileOffset, Address, Size, SectionType, Flags: Qword);
public
sections : array of TElfSection;
seccount : Integer;
function LoadFromFile(ALoader: TDbgFileLoader): Boolean;
function FindSection(const Name: String): Integer;
end;
{ TElfDbgSource }
TElfDbgSource = class(TDbgImageReader) // executable parser
private
FSections: TStringListUTF8Fast;
FFileLoader : TDbgFileLoader;
fOwnSource : Boolean;
fElfFile : TElfFile;
protected
function GetSection(const AName: String): PDbgImageSection; override;
function GetSection(const ID: integer): PDbgImageSection; override;
procedure LoadSections;
procedure ClearSections;
public
class function isValid(ASource: TDbgFileLoader): Boolean; override;
class function UserName: AnsiString; override;
constructor Create(ASource: TDbgFileLoader; ADebugMap: TObject; ALoadedTargetImageAddr: TDbgPtr; OwnSource: Boolean); override;
destructor Destroy; override;
procedure ParseSymbolTable(AFpSymbolInfo: TfpSymbolList); override;
//function GetSectionInfo(const SectionName: AnsiString; var Size: int64): Boolean; override;
//function GetSectionData(const SectionName: AnsiString; Offset, Size: Int64; var Buf: array of byte): Int64; override;
end;
implementation
var
DBG_WARNINGS: PLazLoggerLogGroup;
type
TElf32symbol=record
st_name : longword;
st_value : longword;
st_size : longword;
st_info : byte; { bit 0-3: type, 4-7: bind }
st_other : byte;
st_shndx : word;
end;
PElf32symbolArray = ^TElf32symbolArray;
TElf32symbolArray = array[0..maxSmallint] of TElf32symbol;
TElf64symbol=record
st_name : longword;
st_info : byte; { bit 0-3: type, 4-7: bind }
st_other : byte;
st_shndx : word;
st_value : qword;
st_size : qword;
end;
PElf64symbolArray = ^TElf64symbolArray;
TElf64symbolArray = array[0..maxSmallint] of TElf64symbol;
const
// Symbol-map section name
_symbol = '.symtab';
_symbolstrings = '.strtab';
_symboldyn = '.dynsym';
_symboldynstrings = '.dynstr';
{ TElfFile }
function TElfFile.FElfToMachineType(machinetype: word): TMachineType;
begin
case machinetype of
EM_386: result := mt386;
EM_68K: result := mt68K;
EM_PPC: result := mtPPC;
EM_PPC64: result := mtPPC64;
EM_ARM: result := mtARM;
EM_OLD_ALPHA: result := mtOLD_ALPHA;
EM_IA_64: result := mtIA_64;
EM_X86_64: result := mtX86_64;
EM_AVR: result := mtAVR8;
EM_ALPHA: result := mtALPHA;
else
result := mtNone;
end;
// If OS is not encoded in header, take some guess based on machine type
if FTargetInfo.OS = osNone then
begin
if result = mtAVR8 then
FTargetInfo.OS := osEmbedded
else
// Default to the same as host...
FTargetInfo.OS := {$if defined(Linux)}osLinux
{$elseif defined(Darwin)}osDarwin
{$else}osWindows{$endif};
end;
end;
function TElfFile.Load32BitFile(ALoader: TDbgFileLoader): Boolean;
var
hdr : Elf32_Ehdr;
sect : array of Elf32_shdr;
i, j : integer;
nm : string;
sz : LongWord;
strs : array of byte;
begin
Result := ALoader.Read(0, sizeof(hdr), @hdr) = sizeof(hdr);
if not Result then Exit;
FTargetInfo.machineType := FElfToMachineType(hdr.e_machine);
SetLength(sect, hdr.e_shnum);
//ALoader.Position := hdr.e_shoff;
sz := hdr.e_shetsize * hdr.e_shnum;
if sz > LongWord(length(sect)*sizeof(Elf32_shdr)) then begin
debugln(DBG_WARNINGS, ['TElfFile.Load32BitFile Size of SectHdrs is ', sz, ' expected ', LongWord(length(sect)*sizeof(Elf32_shdr))]);
sz := LongWord(length(sect)*sizeof(Elf32_shdr));
end;
//ALoader.Read(sect[0], sz);
ALoader.Read(hdr.e_shoff, sz, @sect[0]);
i := sect[hdr.e_shstrndx].sh_offset;
j := sect[hdr.e_shstrndx].sh_size;
SetLength(strs, j);
//ALoader.Position:=i;
//ALoader.Read(strs[0], j);
ALoader.Read(i, j, @strs[0]);
for i := 0 to hdr.e_shnum - 1 do
with sect[i] do begin
nm := PChar( @strs[sh_name] );
AddSection(nm, sh_offset, sh_addr, sh_size, sh_type, sh_flags);
end;
end;
function TElfFile.Load64BitFile(ALoader: TDbgFileLoader): Boolean;
var
hdr : Elf64_Ehdr;
sect : array of Elf64_shdr;
i, j : integer;
nm : string;
sz : LongWord;
strs : array of byte;
begin
Result := ALoader.Read(0, sizeof(hdr), @hdr) = sizeof(hdr);
if not Result then Exit;
FTargetInfo.machineType := FElfToMachineType(hdr.e_machine);
SetLength(sect, hdr.e_shnum);
//ALoader.Position := hdr.e_shoff;
sz := hdr.e_shentsize * hdr.e_shnum;
if sz > LongWord(length(sect)*sizeof(Elf64_shdr)) then begin
debugln(DBG_WARNINGS, ['TElfFile.Load64BitFile Size of SectHdrs is ', sz, ' expected ', LongWord(length(sect)*sizeof(Elf64_shdr))]);
sz := LongWord(length(sect)*sizeof(Elf64_shdr));
end;
//ALoader.Read(sect[0], sz);
ALoader.Read(hdr.e_shoff, sz, @sect[0]);
i := sect[hdr.e_shstrndx].sh_offset;
j := sect[hdr.e_shstrndx].sh_size;
SetLength(strs, j);
//ALoader.Position:=i;
//ALoader.Read(strs[0], j);
ALoader.Read(i, j, @strs[0]);
for i := 0 to hdr.e_shnum - 1 do
with sect[i] do begin
nm := PChar( @strs[sh_name] );
AddSection(nm, sh_offset, sh_address, sh_size, sh_type, sh_flags);
end;
end;
procedure TElfFile.AddSection(const name: AnsiString; FileOffset, Address,
Size, SectionType, Flags: Qword);
begin
if seccount=Length(sections) then begin
if seccount = 0 then SetLength(sections, 4)
else SetLength(sections, seccount*2);
end;
sections[seccount].Address:= Address;
sections[seccount].name:=name;
sections[seccount].FileOfs:=FileOffset;
sections[seccount].Size:=Size;
sections[seccount].SectionType:=SectionType;
sections[seccount].Flags:=Flags;
inc(seccount);
end;
function TElfFile.LoadFromFile(ALoader: TDbgFileLoader): Boolean;
var
ident : array [0..EINDENT-1] of byte;
begin
try
Result := ALoader.Read(0, sizeof(ident), @ident[0]) = sizeof(ident);
if not Result then Exit;
Result := (ident[EI_MAG0] = $7f) and
(ident[EI_MAG1] = byte('E')) and
(ident[EI_MAG2] = byte('L')) and
(ident[EI_MAG3] = byte('F'));
if not Result then Exit;
Result := False;
case ident[EI_DATA] of
ELFDATA2LSB: FTargetInfo.ByteOrder := boLSB;
ELFDATA2MSB: FTargetInfo.ByteOrder := boMSB;
else
FTargetInfo.byteOrder := boNone;
end;
case ident[EI_OSABI] of
ELFOSABI_LINUX: FTargetInfo.OS := osLinux;
ELFOSABI_STANDALONE: FTargetInfo.OS := osEmbedded;
else
FTargetInfo.OS := osNone; // Will take a guess after machine type is available
end;
if ident[EI_CLASS] = ELFCLASS32 then begin
FTargetInfo.bitness := b32;
Result := Load32BitFile(ALoader);
exit;
end;
if ident[EI_CLASS] = ELFCLASS64 then begin
FTargetInfo.bitness := b64;
Result := Load64BitFile(ALoader);
exit;
end;
except
Result := false;
end;
end;
function TElfFile.FindSection(const Name: String): Integer;
var
i : Integer;
begin
Result := -1;
for i := 0 to seccount - 1 do
if sections[i].name = Name then begin
Result := i;
Exit;
end;
end;
{ TElfDbgSource }
function TElfDbgSource.GetSection(const AName: String): PDbgImageSection;
var
i: Integer;
ex: PDbgImageSectionEx;
begin
Result := nil;
i := FSections.IndexOf(AName);
if i < 0 then
exit;
ex := PDbgImageSectionEx(FSections.Objects[i]);
Result := @ex^.Sect;
if ex^.Loaded then
exit;
ex^.Loaded := True;
FFileLoader.LoadMemory(ex^.Offs, Result^.Size, Result^.RawData);
end;
function TElfDbgSource.GetSection(const ID: integer): PDbgImageSection;
var
ex: PDbgImageSectionEx;
begin
if (ID >= 0) and (ID < FSections.Count) then
begin
ex := PDbgImageSectionEx(FSections.Objects[ID]);
Result := @ex^.Sect;
Result^.Name := FSections[ID];
if not ex^.Loaded then
begin
FFileLoader.LoadMemory(ex^.Offs, Result^.Size, Result^.RawData);
ex^.Loaded := True;
end;
end
else
Result := nil;
end;
procedure TElfDbgSource.LoadSections;
var
p: PDbgImageSectionEx;
idx: integer;
i: Integer;
fs: TElfSection;
begin
for i := 0 to fElfFile.seccount - 1 do begin
fs := fElfFile.sections[i];
idx := FSections.AddObject(fs.name, nil);
New(p);
P^.Offs := fs.FileOfs;
p^.Sect.Size := fs.Size;
p^.Sect.VirtualAddress := fs.Address; //0; // Todo? fs.Address - ImageBase
p^.Sect.IsLoadable := ((fs.SectionType and SHT_PROGBITS) > 0) and ((fs.Flags and SHF_ALLOC) > 0) and
((fs.SectionType and SHT_NOBITS) = 0);
p^.Loaded := False;
FSections.Objects[idx] := TObject(p);
end;
end;
procedure TElfDbgSource.ClearSections;
var
i: Integer;
begin
for i := 0 to FSections.Count-1 do
Freemem(FSections.Objects[i]);
FSections.Clear;
end;
class function TElfDbgSource.isValid(ASource: TDbgFileLoader): Boolean;
var
buf : array [0..3+sizeof(Elf32_EHdr)] of byte;
begin
try
Result := Assigned(ASource) and
(ASource.Read(0, sizeof(Elf32_EHdr), @buf[0]) = sizeof(Elf32_EHdr));
if not Result then Exit;
Result := (buf[EI_MAG0] = $7f) and (buf[EI_MAG1] = byte('E')) and
(buf[EI_MAG2] = byte('L')) and (buf[EI_MAG3] = byte('F'));
except
Result := false;
end;
end;
class function TElfDbgSource.UserName: AnsiString;
begin
Result := 'ELF executable';
end;
constructor TElfDbgSource.Create(ASource: TDbgFileLoader; ADebugMap: TObject; ALoadedTargetImageAddr: TDbgPtr; OwnSource: Boolean);
var
DbgFileName, SourceFileName: String;
crc: Cardinal;
NewFileLoader: TDbgFileLoader;
begin
inherited Create(ASource, ADebugMap, ALoadedTargetImageAddr, OwnSource);
FSections := TStringListUTF8Fast.Create;
FSections.Sorted := True;
//FSections.Duplicates := dupError;
FSections.CaseSensitive := False;
// Elf-binaries do not have an internal offset encoded into the binary (ImageBase)
// so their reloction-offset is just equal to the location at which the binary
// has been loaded into memory. (The LoadedTargetImageAddr)
SetRelocationOffset(ALoadedTargetImageAddr);
FFileLoader := ASource;
fOwnSource := OwnSource;
fElfFile := TElfFile.Create;
fElfFile.LoadFromFile(FFileLoader);
LoadSections;
// check external debug file
if ReadGnuDebugLinkSection(DbgFileName, crc) then
begin
SourceFileName := ASource.FileName;
if SourceFileName<>'' then
SourceFileName := ExtractFilePath(SourceFileName);
NewFileLoader := LoadGnuDebugLink(SourceFileName, DbgFileName, crc);
if NewFileLoader <> nil then begin
if fOwnSource then
FFileLoader.Free;
FFileLoader := NewFileLoader;
fOwnSource := True;
fElfFile.Free;
fElfFile := TElfFile.Create;
fElfFile.LoadFromFile(FFileLoader);
ClearSections;
LoadSections;
end;
end;
FTargetInfo := fElfFile.FTargetInfo;
end;
destructor TElfDbgSource.Destroy;
begin
if fOwnSource then FFileLoader.Free;
fElfFile.Free;
ClearSections;
FreeAndNil(FSections);
inherited Destroy;
end;
procedure TElfDbgSource.ParseSymbolTable(AFpSymbolInfo: TfpSymbolList);
var
p: PDbgImageSection;
ps: PDbgImageSection;
SymbolArr32: PElf32symbolArray;
SymbolArr64: PElf64symbolArray;
SymbolStr: pointer;
i: integer;
SymbolCount: integer;
SymbolName: AnsiString;
SectIdx: Word;
Sect: PElfSection;
begin
AfpSymbolInfo.SetAddressBounds(1, High(AFpSymbolInfo.HighAddr)); // always search / TODO: iterate all sections for bounds
p := Section[_symbol];
ps := Section[_symbolstrings];
if (p = nil) or (ps = nil) then begin
p := Section[_symboldyn];
ps := Section[_symboldynstrings];
end;
if assigned(p) and assigned(ps) then
begin
SymbolStr:=PDbgImageSectionEx(ps)^.Sect.RawData;
if FTargetInfo.Bitness = b64 then
begin
SymbolArr64:=PDbgImageSectionEx(p)^.Sect.RawData;
SymbolCount := PDbgImageSectionEx(p)^.Sect.Size div sizeof(TElf64symbol);
for i := 0 to SymbolCount-1 do
begin
begin
{$push}
{$R-}
if SymbolArr64^[i].st_name<>0 then
begin
SectIdx := SymbolArr64^[i].st_shndx;
if (SectIdx < 0) or (SectIdx >= fElfFile.seccount) then
continue;
Sect := @fElfFile.sections[SectIdx];
if Sect^.Address = 0 then
continue; // not loaded, symbol not in memory
SymbolName:=pchar(SymbolStr+SymbolArr64^[i].st_name);
{$Q-}
AfpSymbolInfo.Add(SymbolName, TDbgPtr(SymbolArr64^[i].st_value+RelocationOffset),
Sect^.Address + Sect^.Size + RelocationOffset);
end;
{$pop}
end
end;
end
else
begin
SymbolArr32:=PDbgImageSectionEx(p)^.Sect.RawData;
SymbolCount := PDbgImageSectionEx(p)^.Sect.Size div sizeof(TElf32symbol);
for i := 0 to SymbolCount-1 do
begin
begin
{$push}
{$R-}
if SymbolArr32^[i].st_name<>0 then
begin
SectIdx := SymbolArr32^[i].st_shndx;
if (SectIdx < 0) or (SectIdx >= fElfFile.seccount) then
continue;
Sect := @fElfFile.sections[SectIdx];
if Sect^.Address = 0 then
continue; // not loaded, symbol not in memory
SymbolName:=pchar(SymbolStr+SymbolArr32^[i].st_name);
{$Q-}{$R-}
AfpSymbolInfo.Add(SymbolName, DWord(SymbolArr32^[i].st_value+RelocationOffset),
DWORD(Sect^.Address + Sect^.Size+RelocationOffset));
end;
{$pop}
end
end;
end;
end;
end;
initialization
DBG_WARNINGS := DebugLogger.FindOrRegisterLogGroup('DBG_WARNINGS' {$IFDEF DBG_WARNINGS} , True {$ENDIF} );
RegisterImageReaderClass( TElfDbgSource );
end.
|