-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathimageheadertable.cpp
executable file
·695 lines (632 loc) · 20 KB
/
imageheadertable.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
/******************************************************************************
* Copyright 2015-2022 Xilinx, Inc.
* Copyright 2022-2023 Advanced Micro Devices, 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 "bootimage.h"
#include "elftools.h"
#include "stringutils.h"
#include "fileutils.h"
#include "options.h"
#include "bifoptions.h"
#include "bitutils.h"
/*
-------------------------------------------------------------------------------
***************************************************** F U N C T I O N S ***
-------------------------------------------------------------------------------
*/
/******************************************************************************/
void ImageHeaderTable::Build(BootImage& bi, Binary& cache)
{
if(section != NULL)
{
cache.Sections.push_back(section);
}
SetImageHeaderTableVersion(VERSION_ZYNQ_ZYNQMP);
for(std::list<ImageHeader*>::iterator image = bi.imageList.begin();
image != bi.imageList.end(); image++)
{
(*image)->Build(bi,cache);
/* Validate the security combinations, like checksum is not supported
with encryption & authentication in ZynqMP */
ValidateSecurityCombinations((*image)->GetAuthenticationType(),
(*image)->GetEncryptContext()->Type(),
(*image)->GetChecksumContext()->Type());
imageHeaderList.push_back(*image);
}
if (bi.options.DoPadHeaderTable())
{
if ( bi.imageList.size() == 0)
{
std::list<std::string> outFileNames = bi.options.GetOutputFileNames();
if (outFileNames.size() > 0)
{
std::cerr << "WARNING: -padimageheader was requested, but no images were specified." << std::endl;
}
}
else
{
int paddingsize = GetMaxNumOfPartitions() - bi.imageList.size();
if (paddingsize > 0)
{
bi.imageList.back()->section->Reserve = (1 + paddingsize) * 64;
}
}
}
}
/******************************************************************************/
void ImageHeaderTable::Link(BootImage &bi)
{
/* Realigning the data ptr is necessary because Section->Data ptr gets
changed in the RSAAuthenticationContext::ResizeIfNecessary() function
call */
RealignSectionDataPtr();
slaveBootSplitMode = (bi.bifOptions->GetSplitMode() == SplitMode::SlaveMode) ? true : false;
fullBhSize = bi.options.bootheaderSize;
allHdrSize = bi.options.allHeaderSize;
if(bi.partitionHeaderTable->firstSection != NULL)
{
SetFirstPartitionHeaderOffset((uint32_t)bi.partitionHeaderTable->firstSection->WordAddress());
}
if(bi.imageList.size() != 0)
{
if(bi.imageList.front()->section != NULL)
{
uint32_t size = (bi.imageList.size() > 0) ? (uint32_t) bi.imageList.front()->section->WordAddress() : 0;
SetFirstImageHeaderOffset(size);
}
}
SetPartitionCount((uint32_t)bi.partitionHeaderList.size());
uint32_t acOffset = (bi.headerAC != 0) ? (bi.headerAC->section->WordAddress()) : 0;
SetHeaderAuthCertificateOffset(acOffset);
for( std::list<ImageHeader*>::iterator currentImage = imageHeaderList.begin(); currentImage != imageHeaderList.end(); )
{
std::list<ImageHeader*>::iterator prevImage = currentImage;
currentImage++;
if (currentImage == imageHeaderList.end())
{
(*prevImage)->Link(bi, (*prevImage)->GetPartitionHeaderList().front(), 0);
}
else
{
(*prevImage)->Link(bi, (*prevImage)->GetPartitionHeaderList().front(), (*currentImage));
}
}
SetBootDevice(bi.bifOptions->GetBootDevice());
SetReservedFields();
SetChecksum();
}
/******************************************************************************/
bool IsBootloaderx(ImageHeader* x)
{
return x->IsBootloader();
}
/******************************************************************************/
ImageHeader* ImageHeaderTable::GetFSBLImageHeader()
{
std::list<ImageHeader*>::iterator x = std::find_if(imageHeaderList.begin(),imageHeaderList.end(),IsBootloaderx);
if (x == imageHeaderList.end())
{
return NULL;
}
else
{
return (*x);
}
}
/******************************************************************************/
ImageHeader::ImageHeader(std::string& filename)
: Filename(filename)
, domain(Domain::PS)
, Auth(0)
, Encrypt(0)
, Checksum(0)
, Bootloader(false)
, Boot(false)
, Multiboot(false)
, Noautostart(false)
, Protected(false)
, Static(false)
, User(false)
, PartOwner(PartitionOwner::FSBL)
, pmuFwSize(0)
, fsblFwSize(0)
, totalPmuFwSize(0)
, totalFsblFwSize(0)
, sourceAddr(0)
, trustzone(TrustZone::NonSecure)
, exceptionLevel(ExceptionLevel::EL3)
, early_handoff(false)
, hivec(false)
, xipMode(false)
, destCpu(DestinationCPU::NONE)
, destDevice(DestinationDevice::DEST_DEV_PS)
, elfClass(ElfClass::ELFCLASS32)
, slaveBootSplitMode(false)
, fullBhSize(0)
, allHdrSize(0)
, defEncrBlockSize(0)
, authBlock(0)
, isUserPartitionNum(false)
, userPartitionNum(0)
, spkId(0x000000000)
, spkSelect(1)
, ppkSelect(0)
, generateAesKeyFile(false)
, partitionUid(0)
, pmcdataSize(0)
, bufferSize(0)
, buffer(NULL)
, totalpmcdataSize(0)
, ihMemCpyAddr(0xFFFFFFFFFFFFFFFF)
, ihDelayLoad(false)
, ihDelayHandoff(false)
, authType(Authentication::None)
, bigEndian(false)
, a32Mode(false)
, updateReserveInPh(false)
, keySrc(KeySource::None)
, partitionType(PartitionType::RESERVED)
, partitionRevokeId(0)
, dpacm(DpaCM::DpaCMDisable)
, isSlrPartition(false)
, pufHdLoc(PufHdLoc::PUFinEFuse)
, imageId(0)
, uniqueId(0)
, parentUniqueId(0)
, functionId(0)
, uidInfoFoundInCdo(false)
, isIhFullPowerDomain(false)
, isIhLowPowerDomain(false)
, isIhPLPowerDomain(false)
, isIhSystemPowerDomain(false)
, lockstep(false)
, cluster(0)
, delayAuth(false)
, tcmBoot(false)
{ }
/******************************************************************************/
ImageHeader::ImageHeader(std::ifstream& ifs)
: Filename("")
, domain(Domain::PS)
, Auth(0)
, Encrypt(0)
, Checksum(0)
, Bootloader(false)
, Boot(false)
, Multiboot(false)
, Noautostart(false)
, Protected(false)
, Static(false)
, User(false)
, PartOwner(PartitionOwner::FSBL)
, pmuFwSize(0)
, fsblFwSize(0)
, totalPmuFwSize(0)
, totalFsblFwSize(0)
, sourceAddr(0)
, trustzone(TrustZone::NonSecure)
, exceptionLevel(ExceptionLevel::EL3)
, early_handoff(false)
, hivec(false)
, xipMode(false)
, destCpu(DestinationCPU::NONE)
, destDevice(DestinationDevice::DEST_DEV_PS)
, elfClass(ElfClass::ELFCLASS32)
, slaveBootSplitMode(false)
, fullBhSize(0)
, allHdrSize(0)
, defEncrBlockSize(0)
, authBlock(0)
, isUserPartitionNum(false)
, userPartitionNum(0)
, spkId(0x000000000)
, spkSelect(1)
, ppkSelect(0)
, generateAesKeyFile(false)
, partitionUid(0)
, pmcdataSize(0)
, bufferSize(0)
, buffer(NULL)
, totalpmcdataSize(0)
, ihMemCpyAddr(0xFFFFFFFFFFFFFFFF)
, ihDelayLoad(false)
, ihDelayHandoff(false)
, authType(Authentication::None)
, bigEndian(false)
, a32Mode(false)
, updateReserveInPh(false)
, keySrc(KeySource::None)
, partitionType(PartitionType::RESERVED)
, partitionRevokeId(0)
, dpacm(DpaCM::DpaCMDisable)
, isSlrPartition(false)
, pufHdLoc(PufHdLoc::PUFinEFuse)
, imageId(0)
, uniqueId(0)
, parentUniqueId(0)
, functionId(0)
, uidInfoFoundInCdo(false)
, isIhFullPowerDomain(false)
, isIhLowPowerDomain(false)
, isIhPLPowerDomain(false)
, isIhSystemPowerDomain(false)
, lockstep(false)
, cluster(0)
, delayAuth(false)
, tcmBoot(false)
{ }
/******************************************************************************/
ImageHeader::ImageHeader(uint8_t* data, uint64_t len)
: Filename("")
, domain(Domain::PS)
, Auth(0)
, Encrypt(0)
, Checksum(0)
, Bootloader(false)
, Boot(false)
, Multiboot(false)
, Noautostart(false)
, Protected(false)
, Static(false)
, User(false)
, PartOwner(PartitionOwner::FSBL)
, pmuFwSize(0)
, fsblFwSize(0)
, totalPmuFwSize(0)
, totalFsblFwSize(0)
, sourceAddr(0)
, trustzone(TrustZone::NonSecure)
, exceptionLevel(ExceptionLevel::EL3)
, early_handoff(false)
, hivec(false)
, xipMode(false)
, destCpu(DestinationCPU::NONE)
, destDevice(DestinationDevice::DEST_DEV_PS)
, partitionUid(0)
, elfClass(ElfClass::ELFCLASS32)
, slaveBootSplitMode(false)
, fullBhSize(0)
, allHdrSize(0)
, authBlock(0)
, pmcdataSize(0)
, totalpmcdataSize(0)
, buffer(data)
, bufferSize(len)
, generateAesKeyFile(false)
, ihMemCpyAddr(0xFFFFFFFFFFFFFFFF)
, ihDelayLoad(false)
, ihDelayHandoff(false)
, authType(Authentication::None)
, isUserPartitionNum(false)
, userPartitionNum(0)
, spkId(0x000000000)
, spkSelect(1)
, ppkSelect(0)
, defEncrBlockSize(0)
, bigEndian(false)
, a32Mode(false)
, updateReserveInPh(false)
, keySrc(KeySource::None)
, partitionType(PartitionType::RESERVED)
, partitionRevokeId(0)
, dpacm(DpaCM::DpaCMDisable)
, isSlrPartition(false)
, pufHdLoc(PufHdLoc::PUFinEFuse)
, imageId(0)
, uniqueId(0)
, parentUniqueId(0)
, functionId(0)
, uidInfoFoundInCdo(false)
, isIhFullPowerDomain(false)
, isIhLowPowerDomain(false)
, isIhPLPowerDomain(false)
, isIhSystemPowerDomain(false)
, lockstep(false)
, cluster(0)
, delayAuth(false)
, tcmBoot(false)
{
}
/******************************************************************************/
void ImageHeader::Relink()
{
for(std::list<PartitionHeader*>::iterator i = partitionHeaderList.begin(); i!=partitionHeaderList.end();i++)
{
(*i)->imageHeader = this;
}
}
/******************************************************************************/
void ImageHeader::ImportElf(BootImage& bi)
{
uint8_t proc_state = 0;
ByteFile data(Filename);
/* Get the ELF Class format - 32-bit elf vs 64-bit elf */
elfClass = GetElfClass(data.bytes);
ElfFormat* elf = ElfFormat::GetElfFormat(elfClass, data.bytes, &proc_state);
/* Check for no. of executable sections & non-zero size LOAD sections */
uint8_t exec_count = 0;
non_zero_elf_sec_count = 0;
for (uint8_t iprog = 0; iprog < elf->programHdrEntryCount; iprog++)
{
if (elf->GetProgramHeaderFlags(iprog) & PF_X)
{
exec_count++;
}
if ((elf->GetProgramHeaderFileSize(iprog) > 0) && (elf->GetProgramHeaderType(iprog) == xPT_LOAD))
{
non_zero_elf_sec_count++;
}
}
if (non_zero_elf_sec_count == 0)
{
LOG_ERROR("No non-empty program sections in %s", Filename.c_str());
}
CreateElfPartitions(bi, elf, proc_state);
}
/******************************************************************************/
uint8_t* ImageHeader::CombineElfSections(ElfFormat* elf, Binary::Length_t* p_size, Binary::Address_t* p_addr)
{
// Variables for combining sections
uint32_t num_hdrs = 0;
Binary::Length_t size = 0;
Binary::Length_t prev_end = 0;
Binary::Length_t total_size = 0;
Binary::Address_t addr = 0;
Binary::Address_t offset = 0;
uint8_t* p_data = NULL;
/* Loop through all the program headers and populate the fields exec, load address etc. */
for (uint8_t iprog = 0; iprog < elf->programHdrEntryCount; iprog++)
{
size = elf->GetProgramHeaderFileSize(iprog);
addr = elf->GetPhysicalAddress(iprog);
/* Only loadable sections with non-zero size are considered */
if ((elf->GetProgramHeaderType(iprog) == xPT_LOAD) && (size > 0))
{
num_hdrs++;
/* Consider load address of first section */
if (num_hdrs == 1)
{
*p_addr = addr;
}
else
{
/* Calculate filler bytes and pad to combine different sections */
Binary::Length_t filler_bytes = addr - prev_end;
if (filler_bytes != 0)
{
total_size += filler_bytes;
p_data = (uint8_t*)realloc(p_data, total_size);
memset(p_data + offset, 0, filler_bytes);
offset = total_size;
}
}
total_size += size;
p_data = (uint8_t*)realloc(p_data, total_size);
memcpy(p_data + offset, elf->GetProgramHeaderData(iprog), size);
prev_end = addr + size;
*p_size = offset = total_size;
/* Loop through till last entry */
if (iprog < elf->programHdrEntryCount - 1)
{
continue;
}
}
}
return p_data;
}
/******************************************************************************/
uint8_t* ImageHeader::GetElfSections(ElfFormat* elf, Binary::Length_t* tsize, Binary::Address_t* addr, uint32_t iprog)
{
/* Only loadable sections with non-size are considered */
if ((elf->GetProgramHeaderType(iprog) == xPT_LOAD) && (elf->GetProgramHeaderFileSize(iprog) > 0))
{
*tsize = elf->GetProgramHeaderFileSize(iprog);
*addr = elf->GetPhysicalAddress(iprog);
return elf->GetProgramHeaderData(iprog);
}
return NULL;
}
/******************************************************************************/
void ImageHeader::SetPmuFwSizeIh(uint32_t size)
{
pmuFwSize = size;
}
/******************************************************************************/
void ImageHeader::SetFsblFwSizeIh(uint32_t size)
{
fsblFwSize = size;
}
/******************************************************************************/
void ImageHeader::SetTotalPmuFwSizeIh(uint32_t size)
{
totalPmuFwSize = size;
}
/******************************************************************************/
void ImageHeader::SetTotalPmcDataSizeIh(uint32_t size)
{
totalpmcdataSize = size;
}
/******************************************************************************/
void ImageHeader::SetPmcDataSizeIh(uint32_t size)
{
pmcdataSize = size;
}
/******************************************************************************/
void ImageHeader::SetTotalFsblFwSizeIh(uint32_t size)
{
if(IsBootloader())
{
totalFsblFwSize = size;
}
}
/******************************************************************************/
void ImageHeader::SetTotalPmcFwSizeIh(uint32_t size)
{
totalpmcdataSize = size;
}
/******************************************************************************/
void ImageHeader::SetFsblSourceAddrIh(Binary::Address_t addr)
{
if(IsBootloader())
{
sourceAddr = addr;
}
}
/******************************************************************************/
uint32_t ImageHeader::GetPmuFwSizeIh(void)
{
return pmuFwSize;
}
/******************************************************************************/
uint32_t ImageHeader::GetFsblFwSizeIh(void)
{
if(IsBootloader())
{
return fsblFwSize;
}
return 0;
}
/******************************************************************************/
uint32_t ImageHeader::GetTotalPmuFwSizeIh(void)
{
if(IsBootloader())
{
return totalPmuFwSize;
}
return 0;
}
/******************************************************************************/
uint32_t ImageHeader::GetTotalFsblFwSizeIh(void)
{
return totalFsblFwSize;
}
/******************************************************************************/
Binary::Address_t ImageHeader::GetFsblSourceAddrIh(void)
{
return sourceAddr;
}
/******************************************************************************/
std::vector<uint32_t>& ImageHeader::GetEncrBlocksList(void)
{
return encrBlocks;
}
/******************************************************************************/
uint32_t ImageHeader::GetDefaultEncrBlockSize(void)
{
return defEncrBlockSize;
}
/******************************************************************************/
void ImageHeader::InsertEncrBlocksList(uint32_t blk)
{
encrBlocks.push_back(blk);
}
/******************************************************************************/
void ImageHeader::SetDefaultEncrBlockSize(uint32_t blk)
{
defEncrBlockSize = blk;
}
/******************************************************************************/
ElfClass::Type ImageHeader::GetElfClass(uint8_t* elfdata)
{
return (ElfClass::Type)elfdata[EI_CLASS];
}
/******************************************************************************/
void ImageHeader::SetDestDevice(DestinationDevice::Type type)
{
destDevice = type;
}
/******************************************************************************/
void ImageHeader::SetDestCpu(DestinationCPU::Type type)
{
static bool destCpuPmuExists = false;
/* Destination Device will be deprecated in future, so set it to
dest_cpu = pmu */
destCpu = type;
if (destCpu == DestinationCPU::PMU)
{
destDevice = DestinationDevice::DEST_DEV_PMU;
}
else if (destDevice == DestinationDevice::DEST_DEV_PMU)
{
destCpu = DestinationCPU::PMU;
}
if (destCpu == DestinationCPU::PMU && destCpuPmuExists)
{
//LOG_ERROR("Bif attribute Error!!!'core=psm/pmu' cannot be specified on multiple partitions.");
}
else if (destCpu == DestinationCPU::PMU)
{
destCpuPmuExists = true;
}
}
/******************************************************************************/
size_t ImageHeader::GetAuthBlock(void)
{
return (authBlock);
}
/******************************************************************************/
uint32_t ImageHeader::GetTotalPmcFwSizeIh(void)
{
if (IsBootloader())
{
return totalpmcdataSize;
}
return 0;
}
/******************************************************************************/
uint32_t ImageHeader::GetPmcFwSizeIh(void)
{
return pmcdataSize;
}
/******************************************************************************/
uint32_t ImageHeader::GetImageId(void)
{
return imageId;
}
/******************************************************************************/
uint32_t ImageHeader::GetParentUniqueId(void)
{
return parentUniqueId;
}
/******************************************************************************/
uint32_t ImageHeader::GetUniqueId(void)
{
return uniqueId;
}
/******************************************************************************/
uint32_t ImageHeader::GetFunctionId(void)
{
return functionId;
}
/******************************************************************************/
bool ImageHeader::IsUidInfoFoundInCdo(void)
{
return uidInfoFoundInCdo;
}
/******************************************************************************/
bool ImageHeader::IsElf(std::string line)
{
bool status = false;
if ((line.at(0) == 0x7f) && (line.at(1) == 0x45) && (line.at(2) == 0x4C) && (line.at(3) == 0x46))
{
status = true;
}
return status;
}