forked from Xilinx/bootgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelftools.cpp
executable file
·784 lines (658 loc) · 28.7 KB
/
elftools.cpp
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
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
/******************************************************************************
* Copyright 2015-2020 Xilinx, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/
/*
-------------------------------------------------------------------------------
*********************************************** H E A D E R F I L E S ***
-------------------------------------------------------------------------------
*/
#include <stdexcept>
#include <string.h>
#include "elftools.h"
#include "imageheadertable.h"
#include "bootgenexception.h"
#include "logger.h"
#include "fileutils.h"
static bool gEndianessInitialized = false;
/*
-------------------------------------------------------------------------------
***************************************************** F U N C T I O N S ***
-------------------------------------------------------------------------------
*/
/******************************************************************************/
Endianness::Type EndianMachine( void )
{
static Endianness::Type gEndianMachine = Endianness::NotEndian;
if(!gEndianessInitialized)
{
gEndianessInitialized = true;
union
{
uint8_t bytes[4];
uint32_t value;
} data;
// pack 0xDEADBEEF as big endian
data.bytes[ 0 ] = 0xDE;
data.bytes[ 1 ] = 0xAD;
data.bytes[ 2 ] = 0xBE;
data.bytes[ 3 ] = 0xEF;
if( data.value == 0xDEADBEEF )
{
gEndianMachine = Endianness::BigEndian;
}
else if (data.value == 0xEFBEADDE)
{
gEndianMachine = Endianness::LittleEndian;
}
else
{
LOG_ERROR("Cannot determine endianess of the ELF file");
}
}
return gEndianMachine;
}
/******************************************************************************/
uint16_t DeendianUInt16(Endianness::Type endian, uint16_t data16)
{
if(endian != EndianMachine())
{
data16 = SwapUInt16Bytes(data16);
}
return data16;
}
/******************************************************************************/
uint32_t DeendianUInt32(Endianness::Type endian, uint32_t data32)
{
if(endian != EndianMachine())
{
data32 = SwapUInt32Bytes(data32);
}
return data32;
}
/******************************************************************************/
uint64_t DeendianUInt64(Endianness::Type endian, uint64_t data64)
{
if(endian != EndianMachine())
{
data64 = SwapUInt64Bytes(data64);
}
return data64;
}
/******************************************************************************/
ElfFormat32::ElfFormat32(uint8_t* start)
: sectionHdrTbl(NULL)
{
endian = (Endianness::Type) ((Elf32_Ehdr*)start)->e_ident[EI_DATA];
DeendianELFHdr(start);
/* Get the header's size. For completeness, tell upper layers that
we only have one record. */
elfHdrEntryCount = 1;
/* Basic ELF checks */
if(ELFHdrEntrySize() != sizeof(Elf32_Ehdr))
{
LOG_DEBUG(DEBUG_STAMP, "ELF Header size wrong - %d, actual size - %d", ELFHdrEntrySize(), sizeof(Elf64_Ehdr));
LOG_ERROR("ELF Parsing Error !!!\n Wrong Header Size");
}
if (memcmp(header.e_ident, ELFMAG, 4) != 0)
{
LOG_DEBUG(DEBUG_STAMP, "ELF magic identification word wrong");
LOG_ERROR("ELF Parsing Error !!!\n ELF magic identification word wrong");
}
/* If a Section header is defined, get its pointer and its record size
count. Otherwise, default it to NULL. */
if(header.e_shoff == 0)
{
sectionHdrTbl = NULL;
sectionHdrEntrySize = 0;
sectionHdrEntryCount = 0;
}
else
{
sectionHdrTbl = (Elf32SectionHdr_t *)(start + header.e_shoff);
sectionHdrEntrySize = header.e_shentsize;
sectionHdrEntryCount = header.e_shnum;
/* Now loop through all of the Sections headers and replace indexes with
properly endianized values. */
for(unsigned int index=0; index<sectionHdrEntryCount; ++index)
{
/* Convert the header's endian type into the native endian type of the
machine we're running on. */
sectionHdrTbl[index].Deendian(endian);
}
/* Replace the in-file Sections headers, with a out-of-file copy */
Elf32SectionHdr_t *tempsectionHdrTbl = (Elf32SectionHdr_t*) malloc(sectionHdrEntrySize * sectionHdrEntryCount);
memmove(tempsectionHdrTbl, sectionHdrTbl, sectionHdrEntrySize * sectionHdrEntryCount);
sectionHdrTbl = tempsectionHdrTbl;
/* If we have a String Table Section, save a pointer to the String Table
Section data. */
if(header.e_shstrndx == 0)
{
stringTableSection = NULL;
stringTableSectionSize = 0;
}
else
{
/* Index from the beginning of the ELF file with the offset index
in the String Table Section. */
stringTableSection = (StringTableSectionTbl *)(start+ sectionHdrTbl[header.e_shstrndx].sh_offset);
stringTableSectionSize = sectionHdrTbl[header.e_shstrndx].sh_size;
}
}
/* If a Program header is defined, get its pointer and its record size
count. Otherwise, default it to NULL. */
if(header.e_phoff == 0)
{
programHdrEntrySize = 0;
programHdrEntryCount = 0;
}
else
{
programHdrEntrySize = header.e_phentsize;
programHdrEntryCount = header.e_phnum;
/* Now loop through all of the Program headers and replace indexes with
properly endianized values. */
Elf32_Addr currentProgramPhysicalAddresses = 0;
uint32_t countProgramPhysicalAddresses = 0;
uint8_t* ptr = (start + header.e_phoff);
for(unsigned int index = 0; index < programHdrEntryCount; ++index, ptr += header.e_phentsize )
{
Elf32ProgramHeader& prgHdr(* new Elf32ProgramHeader(endian, ptr));
programHeaders.push_back(&prgHdr);
/* Now, put the Program section's data in a separate buffer to keep
separate from the in-memory ELF data. */
prgHdr.data = new uint8_t[prgHdr.p_filesz];
memcpy(prgHdr.data, (start + prgHdr.p_offset), prgHdr.p_filesz);
/* Now for a silly little hack.
Each program section in a ELF file really has two address values, a
physical and logical addresses. Before the embedded world came along,
these two address were used for dynamic linking of ELF code to any
memory mapped address location. The physical address was a relative
offset from the beginning of the code module, and the logical address
was calculated at load time.
Along came the embedded world which has traditional ran code only in
real mode; i.e., not memory mapped. That means most of the time the
physical load address and logical execution address of a program section
are the same. Sometimes the physical address is at a different address
because the code is loaded into memory at one address, and later copied
to the logical for execution. Since Data2MEM is effectively a loader, we
(now) use the physical address for the load address.
Linkers are suppose to set both the physical and logical address even if
they are the same. That way, you are guaranteed to always get the correct
address for loading. However, some linkers set just the logical address,
leaving the physical address value zero (so far, Metaware and Greenhills).
This made Data2MEM try to always load everything to zero by mistake.
Prior to 9.2i, Data2MEM was loading from the logical address. This meant
that 90% of the time, loading code produced by all linkers would work
correctly. However, it was breaking those designs that wanted to load code
at a different address than it was to execute. 9.2i fixed this, but
inadvertently broke code produced by these other linkers (again, Metaware
and Greenhills).
The following hack counts the number program sections that have same physical
address. This is a non-sense arrangement since that would mean that every
program section would be loaded on top of each other. This is used as a
signal that the physical address is erroneous and to use the logical address
instead. This will work as long as nobody tries to create such a silly ELF
file; at which time a better hack may be needed. */
if(index == 0)
{
// Capture the first physical address.
currentProgramPhysicalAddresses = prgHdr.p_paddr;
countProgramPhysicalAddresses = 1;
}
else
{
// Count the remaining physical address that are the same as the first one.
if(currentProgramPhysicalAddresses == prgHdr.p_paddr)
{
countProgramPhysicalAddresses += 1;
}
}
}
#if 1
if(countProgramPhysicalAddresses == programHdrEntryCount)
{
useLogicalLoadAddress = true;
// replace the physical address values with the virtual addresses.
for( unsigned int index = 0; index < programHdrEntryCount; ++index )
{
programHeaders[index]->p_paddr = programHeaders[index]->p_vaddr;
}
}
#else
/* If the number of physical addresses of all the program section the same, signal
that the physical addresses should be ignored, and logical address should be
used instead. However, if we're doing an extended dump, don't "fix" the addresses
so that we can see what they were actually set to. */
if(((dumpMode & DATA_DUMP_EXTENDED ) == false) &&
( countProgramPhysicalAddresses == programHdrEntryCount ) )
{
useLogicalLoadAddress = true;
// Loop through all of the Program headers and replace the physical address
// values with the virtual addresses.
for( index = 0; index < programHdrEntryCount; ++index )
INDEXED_PROGRAM_STRUCT_ADDRESS( index )->p_paddr = INDEXED_PROGRAM_STRUCT_ADDRESS( index )->p_vaddr;
}
#endif
for(unsigned int index = 0; index < programHdrEntryCount; ++index)
{
Elf32ProgramHeader& prgHdr(*programHeaders[index]);
/* The GNU linkers sometimes put an extraneous ELF header into the
beginning the of some Program segments. This messes up what is
put in memory, so get rid of those headers by changing the Program
header info. */
TrimUnwantedELFHeaders(prgHdr, start);
/* Record the lowest and highest program section address for this
ELF file. */
if(prgHdr.p_filesz > 0)
{
if(prgHdr.p_paddr < lowestProgramAddress)
{
lowestProgramAddress = prgHdr.p_paddr;
}
if( ((prgHdr.p_paddr + prgHdr.p_filesz) - 1) > highestProgramAddress )
{
highestProgramAddress = (prgHdr.p_paddr + prgHdr.p_filesz - 1);
}
}
}
}
}
/******************************************************************************/
ElfFormat32::~ElfFormat32()
{
uint32_t index;
if(sectionHdrTbl)
{
free (sectionHdrTbl);
sectionHdrTbl = 0;
}
for(index = 0; index < programHdrEntryCount; ++index)
{
if (programHeaders[index]->data)
{
delete[] programHeaders[index]->data;
}
}
}
/******************************************************************************/
void ElfFormat32::DeendianELFHdr( uint8_t* start)
{
Elf32_Ehdr* src = (Elf32_Ehdr*) start;
memcpy(header.e_ident, src->e_ident, 16);
header.e_type = DeendianUInt16(endian, src->e_type);
header.e_machine = DeendianUInt16(endian, src->e_machine);
header.e_version = DeendianUInt32(endian, src->e_version);
header.e_entry = DeendianUInt32(endian, src->e_entry);
header.e_phoff = DeendianUInt32(endian, src->e_phoff);
header.e_shoff = DeendianUInt32(endian, src->e_shoff);
header.e_flags = DeendianUInt32(endian, src->e_flags);
header.e_ehsize = DeendianUInt16(endian, src->e_ehsize);
header.e_phentsize = DeendianUInt16(endian, src->e_phentsize);
header.e_phnum = DeendianUInt16(endian, src->e_phnum);
header.e_shentsize = DeendianUInt16(endian, src->e_shentsize);
header.e_shnum = DeendianUInt16(endian, src->e_shnum);
header.e_shstrndx = DeendianUInt16(endian, src->e_shstrndx);
}
/******************************************************************************/
void ElfFormat32::TrimUnwantedELFHeaders( Elf32ProgramHeader& prgHeader, uint8_t* elfStart)
{
/* The GNU linkers sometimes put an extraneous ELF header into the beginning the
of some Program segments.This messes up what is put in memory, so get rid of
those headers by changing the Program header info. */
// Ignore any zero length program sections.
if( prgHeader.p_filesz == 0 ) return;
// Ignore if program section does not have a redundant copy if the ELF file header
if( memcmp( prgHeader.data, ELFMAG, 4 ) ) return;
Elf32SectionHdr_t foundSection;
bool isFoundSection = false;
/* Now loop through all of the Sections headers looking for the lowest
addressed one the fits within the program section. */
for(uint32_t index = 0; index < sectionHdrEntryCount; ++index )
{
Elf32SectionHdr_t sectionHdr(sectionHdrTbl[index]);
/* Does this section have bits defined by the program (i.e., the
GNU tools), and the bit will actually occupy space in the target
memory? */
if( ( sectionHdr.sh_type == xSHT_PROGBITS ) && ( sectionHdr.sh_flags & xSHF_ALLOC ) )
{
// If this section is mapped to within this program section, then keep it
if( ( sectionHdr.sh_addr >= prgHeader.p_vaddr ) &&
( sectionHdr.sh_addr + sectionHdr.sh_size <= prgHeader.p_paddr + prgHeader.p_filesz ) )
{
// Save section if this is the first, or it is lowest in memory order.
if( isFoundSection == false || sectionHdr.sh_addr < foundSection.sh_addr)
{
foundSection = sectionHdr;
isFoundSection = true;
}
}
}
}
// Did we NOT find any sections that fit with this program section?
if( isFoundSection == false )
{
/* This is a completely superfluous program section that the
idiot compiler tools decided to add! Trim this program
section down to nothing. */
prgHeader.p_filesz = 0;
prgHeader.p_memsz = 0;
}
else
{
/* The superfluous ELF header may overlap part of the saved
section. So, copy the contents of the saved section back
into the program section. */
uint32_t skipByteCount = foundSection.sh_addr - prgHeader.p_vaddr;
//memmove( prgHeader.data, elfStart + foundSection.sh_offset, foundSection.sh_size );
/* Trim off the beginning of the program section, up to the
first real data byte from the saved section. */
prgHeader.p_offset += skipByteCount;
prgHeader.p_paddr += skipByteCount;
prgHeader.p_vaddr += skipByteCount;
prgHeader.p_filesz -= skipByteCount;
prgHeader.p_memsz -= skipByteCount;
memmove( prgHeader.data, elfStart + prgHeader.p_offset, prgHeader.p_filesz );
}
}
/******************************************************************************/
ElfFormat64::ElfFormat64(uint8_t* start)
: sectionHdrTbl(NULL)
{
endian = (Endianness::Type) ((Elf64_Ehdr*)start)->e_ident[EI_DATA];
DeendianELFHdr(start);
/* Get the header's size. For completeness, tell upper layers that
we only have one record. */
elfHdrEntryCount = 1;
if( ELFHdrEntrySize() != sizeof( Elf64_Ehdr ) )
{
LOG_DEBUG(DEBUG_STAMP, "ELF Header size wrong - %d, actual size - %d", ELFHdrEntrySize(), sizeof(Elf64_Ehdr));
LOG_ERROR("ELF Parsing Error !!!\n Wrong Header Size");
}
if ( memcmp( header.e_ident, ELFMAG, 4 ) != 0 )
{
LOG_DEBUG(DEBUG_STAMP, "ELF magic identification word wrong");
LOG_ERROR("ELF Parsing Error !!!\n ELF magic identification word wrong");
}
/* If a Section header is defined, get its pointer and its record size
count. Otherwise, default it to NULL. */
if( header.e_shoff == 0 )
{
sectionHdrTbl = NULL;
sectionHdrEntrySize = 0;
sectionHdrEntryCount = 0;
}
else
{
sectionHdrTbl = (Elf64SectionHdr_t *)(start + header.e_shoff );
sectionHdrEntrySize = header.e_shentsize;
sectionHdrEntryCount = header.e_shnum;
/* Now loop through all of the Sections headers and replace indexes with
properly endianized values. */
for( unsigned int index = 0; index < sectionHdrEntryCount; ++index )
{
/* Convert the header's endian type into the native endian type of the
machine we're running on. */
sectionHdrTbl[index].Deendian(endian);
}
// Replace the in-file Sections headers, with a out-of-file copy.
Elf64SectionHdr_t *tempsectionHdrTbl = (Elf64SectionHdr_t*) malloc( sectionHdrEntrySize *sectionHdrEntryCount );
memmove( tempsectionHdrTbl, sectionHdrTbl, sectionHdrEntrySize * sectionHdrEntryCount );
sectionHdrTbl = tempsectionHdrTbl;
// If we have a String Table Section, save a pointer to the String Table Section data.
if( header.e_shstrndx == 0 )
{
stringTableSection = NULL;
stringTableSectionSize = 0;
}
else
{
/* Index from the beginning of the ELF file with the offset index
in the String Table Section. */
stringTableSection = (StringTableSectionTbl *)(start+ sectionHdrTbl[header.e_shstrndx].sh_offset );
stringTableSectionSize = sectionHdrTbl[header.e_shstrndx].sh_size;
}
}
/* If a Program header is defined, get its pointer and its record size
count. Otherwise, default it to NULL. */
if( header.e_phoff == 0 )
{
programHdrEntrySize = 0;
programHdrEntryCount = 0;
}
else
{
programHdrEntrySize = header.e_phentsize;
programHdrEntryCount = header.e_phnum;
/* Now loop through all of the Program headers and replace indexes with
properly endianized values. */
Elf64_Addr currentProgramPhysicalAddresses = 0;
uint64_t countProgramPhysicalAddresses = 0;
uint8_t* ptr = (start + header.e_phoff );
for(unsigned int index = 0; index < programHdrEntryCount; ++index, ptr += header.e_phentsize )
{
Elf64ProgramHeader& prgHdr(* new Elf64ProgramHeader(endian, ptr));
programHeaders.push_back(&prgHdr);
/* Now, put the Program section's data in a separate buffer to keep
separate from the in-memory ELF data. */
prgHdr.data = new uint8_t[prgHdr.p_filesz];
memcpy( prgHdr.data,( start + prgHdr.p_offset ),prgHdr.p_filesz);
if( index == 0 )
{
// Capture the first physical address.
currentProgramPhysicalAddresses = prgHdr.p_paddr;
countProgramPhysicalAddresses = 1;
}
else
{
// Count the remaining physical address that are the same as the first one.
if( currentProgramPhysicalAddresses == prgHdr.p_paddr )
{
countProgramPhysicalAddresses += 1;
}
}
}
if( countProgramPhysicalAddresses == programHdrEntryCount )
{
useLogicalLoadAddress = true;
// replace the physical address values with the virtual addresses.
for( unsigned int index = 0; index < programHdrEntryCount; ++index )
{
programHeaders[index]->p_paddr = programHeaders[index]->p_vaddr;
}
}
for(unsigned int index = 0; index < programHdrEntryCount; ++index )
{
Elf64ProgramHeader& prgHdr(*programHeaders[index]);
TrimUnwantedELFHeaders( prgHdr, start );
if( prgHdr.p_filesz > 0 )
{
if( prgHdr.p_paddr < lowestProgramAddress )
lowestProgramAddress = prgHdr.p_paddr;
if( ( ( prgHdr.p_paddr + prgHdr.p_filesz ) - 1 ) > highestProgramAddress )
highestProgramAddress = ( prgHdr.p_paddr + prgHdr.p_filesz - 1 );
}
}
}
}
/******************************************************************************/
ElfFormat64::~ElfFormat64()
{
uint32_t index;
if(sectionHdrTbl)
{
free (sectionHdrTbl);
sectionHdrTbl = 0;
}
for( index = 0; index < programHdrEntryCount; ++index )
{
if (programHeaders[index]->data)
{
delete[] programHeaders[index]->data;
}
}
}
/******************************************************************************/
void ElfFormat64::DeendianELFHdr( uint8_t* start)
{
Elf64_Ehdr* src = (Elf64_Ehdr*) start;
memcpy(header.e_ident, src->e_ident, 16);
header.e_type = DeendianUInt16(endian, src->e_type);
header.e_machine = DeendianUInt16(endian, src->e_machine);
header.e_version = DeendianUInt32(endian, src->e_version);
header.e_entry = DeendianUInt64(endian, src->e_entry);
header.e_phoff = DeendianUInt64(endian, src->e_phoff);
header.e_shoff = DeendianUInt64(endian, src->e_shoff);
header.e_flags = DeendianUInt32(endian, src->e_flags);
header.e_ehsize = DeendianUInt16(endian, src->e_ehsize);
header.e_phentsize = DeendianUInt16(endian, src->e_phentsize);
header.e_phnum = DeendianUInt16(endian, src->e_phnum);
header.e_shentsize = DeendianUInt16(endian, src->e_shentsize);
header.e_shnum = DeendianUInt16(endian, src->e_shnum);
header.e_shstrndx = DeendianUInt16(endian, src->e_shstrndx);
}
/******************************************************************************/
void ElfFormat64::TrimUnwantedELFHeaders(Elf64ProgramHeader& prgHeader, uint8_t* elfStart)
{
/* The GNU linkers sometimes put an extraneous ELF header into the beginning the
of some Program segments. This messes up what is put in memory, so get rid of
those headers by changing the Program header info. */
// Ignore any zero length program sections.
if( prgHeader.p_filesz == 0 ) return;
// Ignore if program section does not have a redundant copy if the ELF file header
if( memcmp( prgHeader.data, ELFMAG, 4 ) ) return;
Elf64SectionHdr_t foundSection;
bool isFoundSection = false;
/* Now loop through all of the Sections headers looking for the lowest
addressed one the fits within the program section. */
for(uint32_t index = 0; index < sectionHdrEntryCount; ++index )
{
Elf64SectionHdr_t sectionHdr(sectionHdrTbl[index]);
/* Does this section have bits defined by the program (i.e., the
GNU tools), and the bit will actually occupy space in the target
memory? */
if( ( sectionHdr.sh_type == xSHT_PROGBITS ) && ( sectionHdr.sh_flags & xSHF_ALLOC ) )
{
// If this section is mapped to within this program section, then keep it
if( ( sectionHdr.sh_addr >= prgHeader.p_vaddr ) &&
( sectionHdr.sh_addr + sectionHdr.sh_size <= prgHeader.p_paddr + prgHeader.p_filesz ) )
{
// Save section if this is the first, or it is lowest in memory order.
if( isFoundSection == false || sectionHdr.sh_addr < foundSection.sh_addr)
{
foundSection = sectionHdr;
isFoundSection = true;
}
}
}
}
// Did we NOT find any sections that fit with this program section?
if( isFoundSection == false )
{
/* This is a completely superfluous program section that the
idiot compiler tools decided to add! Trim this program
section down to nothing. */
prgHeader.p_filesz = 0;
prgHeader.p_memsz = 0;
}
else
{
/* The superfluous ELF header may overlap part of the saved
section. So, copy the contents of the saved section back
into the program section. */
uint64_t skipByteCount = foundSection.sh_addr - prgHeader.p_vaddr;
/* Trim off the beginning of the program section, up to the
first real data byte from the saved section. */
prgHeader.p_offset += skipByteCount;
prgHeader.p_paddr += skipByteCount;
prgHeader.p_vaddr += skipByteCount;
prgHeader.p_filesz -= skipByteCount;
prgHeader.p_memsz -= skipByteCount;
memmove( prgHeader.data, elfStart + prgHeader.p_offset, prgHeader.p_filesz );
}
}
/******************************************************************************/
ElfFormat* ElfFormat::GetElfFormat(ElfClass::Type elfClass, uint8_t* start, uint8_t* state)
{
if(elfClass == ElfClass::ELFCLASS64)
{
*state = (A53ExecState::Type)A53ExecState::AARCH64;
return new ElfFormat64(start);
}
else
{
*state = (A53ExecState::Type)A53ExecState::AARCH32;
return new ElfFormat32(start);
}
}
/******************************************************************************/
Program_p_flags ElfFormat32::GetProgramHeaderFlags(uint8_t index)
{
return programHeaders[index]->Flags();
}
/******************************************************************************/
Program_p_type ElfFormat32::GetProgramHeaderType(uint8_t index)
{
return programHeaders[index]->Type();
}
/******************************************************************************/
Binary::Length_t ElfFormat32::GetProgramHeaderFileSize(uint8_t index)
{
return (uint32_t)programHeaders[index]->p_filesz;
}
/******************************************************************************/
Binary::Address_t ElfFormat32::GetStartUpAddress(void)
{
return (Binary::Address_t)header.e_entry;
}
/******************************************************************************/
Binary::Address_t ElfFormat32::GetPhysicalAddress(uint8_t index)
{
return (Binary::Address_t)programHeaders[index]->p_paddr;
}
/******************************************************************************/
uint8_t* ElfFormat32::GetProgramHeaderData(uint8_t index)
{
return programHeaders[index]->data;
}
/******************************************************************************/
Program_p_flags ElfFormat64::GetProgramHeaderFlags(uint8_t index)
{
return programHeaders[index]->Flags();
}
/******************************************************************************/
Program_p_type ElfFormat64::GetProgramHeaderType(uint8_t index)
{
return programHeaders[index]->Type();
}
/******************************************************************************/
Binary::Length_t ElfFormat64::GetProgramHeaderFileSize(uint8_t index)
{
return (uint32_t)programHeaders[index]->p_filesz;
}
/******************************************************************************/
Binary::Address_t ElfFormat64::GetStartUpAddress(void)
{
return (Binary::Address_t)header.e_entry;
}
/******************************************************************************/
Binary::Address_t ElfFormat64::GetPhysicalAddress(uint8_t index)
{
return (Binary::Address_t)programHeaders[index]->p_paddr;
}
/******************************************************************************/
uint8_t* ElfFormat64::GetProgramHeaderData(uint8_t index)
{
return programHeaders[index]->data;
}