-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpartition-versal.cpp
executable file
·797 lines (727 loc) · 32.3 KB
/
partition-versal.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
785
786
787
788
789
790
791
792
793
794
795
796
/******************************************************************************
* 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 <string.h>
#include "bootimage.h"
#include "binary.h"
#include "stringutils.h"
#include "elftools.h"
#include "partitionheadertable-versal.h"
#include "partitionheadertable.h"
#include "checksum-versal.h"
#include "authentication-versal.h"
#include "Keccak-compact-versal.h"
extern "C" {
#include "cdo-npi.h"
#include "cdo-source.h"
#include "cdo-command.h"
#include "cdo-binary.h"
#include "cdo-load.h"
#include "cdo-overlay.h"
};
/*
-------------------------------------------------------------------------------
***************************************************** F U N C T I O N S ***
-------------------------------------------------------------------------------
*/
/******************************************************************************/
VersalPartition::VersalPartition(PartitionHeader* header0, Section* section0)
: Partition(header0, section0)
, header(header0)
, firstChunkSize(0)
, versalNetSeries(false)
, secureChunkSize(SECURE_32K_CHUNK)
{
section = section0;
// Populate bootloader flag here in the section object - needed in StackAndAlign stage
section->isBootloader = header->imageHeader->IsBootloader();
// header->PartitionDataSize = section0->Length;
}
/******************************************************************************/
VersalPartition::VersalPartition(PartitionHeader* header0, const uint8_t* data, Binary::Length_t length)
: Partition(header0, data, length)
, header(header0)
, firstChunkSize(0)
, versalNetSeries(false)
, secureChunkSize(SECURE_32K_CHUNK)
{
std::string partition_name = "";
for (size_t i = 0; i < header->imageHeader->GetFileList().size(); i++)
{
partition_name += StringUtils::BaseName(header->imageHeader->GetFileList().at(i));
if (i != (header->imageHeader->GetFileList().size() - 1))
{
partition_name += "_";
}
}
std::string partName = partition_name + StringUtils::Format(".%d", header->index);
/* Pad binary data with 0s, to get 32-bit word size.
This is because bootgen stores partition sizes in terms of words, so partition data *MUST* be a multiple of 32-bits */
/* for everest - Pad the partition with 0's to make it 16 byte alligned */
int padding = (16 - (length & 15)) & 15;
Binary::Length_t totallength = length + padding;
section = new Section(partName, totallength);
section->index = header->index;
section->isPartitionData = true;
section->isBitStream = (header->imageHeader->GetDomain() == Domain::PL) ? true : false;
section->isFirstElfSection = (header->firstValidIndex);
section->isBootloader = header->imageHeader->IsBootloader();
memcpy(section->Data, data, length);
memset(section->Data + length, 0, padding);
}
/******************************************************************************/
size_t VersalPartition::GetTotalDataChunks(Binary::Length_t partitionSize, std::vector<uint32_t>& dataChunks, bool encryptionFlag)
{
size_t newSectionLength = partitionSize;
size_t chunkOnlength = 0;
Binary::Length_t dataChunksCount = 0;
chunkOnlength = partitionSize;
if (encryptionFlag)
{
chunkOnlength -= (SECURE_HDR_SZ + AES_GCM_TAG_SZ);
}
dataChunksCount = (chunkOnlength / secureChunkSize) + (((chunkOnlength % secureChunkSize) == 0 ? 0 : 1));
if (chunkOnlength % secureChunkSize != 0)
{
dataChunks.push_back(((chunkOnlength)-((dataChunksCount - 1) * secureChunkSize)));
}
else
{
dataChunks.push_back(secureChunkSize);
}
for (uint32_t itr = 0; itr < dataChunksCount - 1; itr++)
{
dataChunks.push_back(SHA3_LENGTH_BYTES);
newSectionLength += SHA3_LENGTH_BYTES;
if (itr == dataChunksCount - 2)
{
if (encryptionFlag)
{
dataChunks.push_back(secureChunkSize + SECURE_HDR_SZ + AES_GCM_TAG_SZ);
firstChunkSize = secureChunkSize + SECURE_HDR_SZ + AES_GCM_TAG_SZ;
}
else
{
dataChunks.push_back(secureChunkSize);
firstChunkSize = secureChunkSize;
}
}
else
{
dataChunks.push_back(secureChunkSize);
}
}
return newSectionLength;
}
/******************************************************************************/
size_t VersalPartition::GetBootloaderTotalDataChunks(Binary::Length_t partitionSize, std::vector<uint32_t>& dataChunks, bool encryptionFlag)
{
size_t newSectionLength = partitionSize;
size_t chunkOnlength = 0;
Binary::Length_t dataChunksCount = 0;
//PMC DATA
if (header->imageHeader->GetTotalPmcFwSizeIh() != 0)
{
chunkOnlength = header->imageHeader->GetTotalPmcFwSizeIh();
if (encryptionFlag)
{
chunkOnlength -= (SECURE_HDR_SZ + AES_GCM_TAG_SZ);
}
dataChunksCount = (chunkOnlength / secureChunkSize) + (((chunkOnlength % secureChunkSize) == 0 ? 0 : 1));
if (dataChunksCount == 1)
{
if (chunkOnlength % secureChunkSize != 0)
{
size_t singleChunklength = (chunkOnlength)-((dataChunksCount - 1) * secureChunkSize);
if (encryptionFlag)
{
dataChunks.push_back(singleChunklength + SECURE_HDR_SZ + AES_GCM_TAG_SZ);
firstChunkSize = singleChunklength + SECURE_HDR_SZ + AES_GCM_TAG_SZ;
LOG_TRACE("length of pmc data remaining length 0x%X:", singleChunklength + SECURE_HDR_SZ + AES_GCM_TAG_SZ);
}
else
{
dataChunks.push_back(singleChunklength);
firstChunkSize = singleChunklength;
LOG_TRACE("length of pmc data remaining length 0x%X:", singleChunklength);
}
}
else
{
if (encryptionFlag)
{
dataChunks.push_back(secureChunkSize + SECURE_HDR_SZ + AES_GCM_TAG_SZ);
firstChunkSize = secureChunkSize + SECURE_HDR_SZ + AES_GCM_TAG_SZ;
}
else
{
dataChunks.push_back(secureChunkSize);
firstChunkSize = secureChunkSize;
}
}
}
else
{
if (chunkOnlength % secureChunkSize != 0)
{
dataChunks.push_back(((chunkOnlength)-((dataChunksCount - 1) * secureChunkSize)));
}
else
{
dataChunks.push_back(secureChunkSize);
}
for (uint32_t itr = 0; itr < dataChunksCount - 1; itr++)
{
dataChunks.push_back(SHA3_LENGTH_BYTES);
newSectionLength += SHA3_LENGTH_BYTES;
header->imageHeader->SetTotalPmcFwSizeIh(header->imageHeader->GetTotalPmcFwSizeIh() + SHA3_LENGTH_BYTES);
if (itr == dataChunksCount - 2)
{
if (encryptionFlag)
{
dataChunks.push_back(secureChunkSize + SECURE_HDR_SZ + AES_GCM_TAG_SZ);
firstChunkSize = secureChunkSize + SECURE_HDR_SZ + AES_GCM_TAG_SZ;
}
else
{
dataChunks.push_back(secureChunkSize);
firstChunkSize = secureChunkSize;
}
}
else
{
dataChunks.push_back(secureChunkSize);
}
}
}
}
//PLM
chunkOnlength = header->imageHeader->GetTotalFsblFwSizeIh();
if (encryptionFlag)
{
chunkOnlength -= (SECURE_HDR_SZ + AES_GCM_TAG_SZ);
}
dataChunksCount = (chunkOnlength / secureChunkSize) + (((chunkOnlength % secureChunkSize) == 0 ? 0 : 1));
if (dataChunksCount == 1)
{
// If PMC CDO present, need to calculate the hash, so include hash
if (header->imageHeader->GetTotalPmcFwSizeIh())
{
dataChunks.push_back(SHA3_LENGTH_BYTES);
newSectionLength += SHA3_LENGTH_BYTES;
header->imageHeader->SetTotalFsblFwSizeIh(header->imageHeader->GetTotalFsblFwSizeIh() + SHA3_LENGTH_BYTES);
}
if (chunkOnlength % secureChunkSize != 0)
{
size_t singleChunklength = (chunkOnlength) - ((dataChunksCount - 1) * secureChunkSize);
if (encryptionFlag)
{
dataChunks.push_back(singleChunklength + SECURE_HDR_SZ + AES_GCM_TAG_SZ);
firstChunkSize = singleChunklength + SECURE_HDR_SZ + AES_GCM_TAG_SZ;
LOG_TRACE("length of plm data remaining length 0x%X:", singleChunklength + SECURE_HDR_SZ + AES_GCM_TAG_SZ);
}
else
{
dataChunks.push_back(singleChunklength);
firstChunkSize = singleChunklength;
LOG_TRACE("length of plm data remaining length 0x%X:", singleChunklength);
}
}
else
{
if (encryptionFlag)
{
dataChunks.push_back(secureChunkSize + SECURE_HDR_SZ + AES_GCM_TAG_SZ);
firstChunkSize = secureChunkSize + SECURE_HDR_SZ + AES_GCM_TAG_SZ;
LOG_TRACE("length of plm data remaining length 0x%X:", secureChunkSize + SECURE_HDR_SZ + AES_GCM_TAG_SZ);
}
else
{
dataChunks.push_back(secureChunkSize);
firstChunkSize = secureChunkSize;
LOG_TRACE("length of plm data remaining length 0x%X:", secureChunkSize);
}
}
}
else
{
// If PMC CDO present, need to calculate the hash, so include hash
if (header->imageHeader->GetTotalPmcFwSizeIh())
{
dataChunks.push_back(SHA3_LENGTH_BYTES);
newSectionLength += SHA3_LENGTH_BYTES;
header->imageHeader->SetTotalFsblFwSizeIh(header->imageHeader->GetTotalFsblFwSizeIh() + SHA3_LENGTH_BYTES);
}
if (chunkOnlength % secureChunkSize != 0)
{
dataChunks.push_back(((chunkOnlength)-((dataChunksCount - 1) * secureChunkSize)));
LOG_TRACE("length of plm data remaining length 0x%X:", ((chunkOnlength)-((dataChunksCount - 1) * secureChunkSize)));
}
else
{
dataChunks.push_back(secureChunkSize);
LOG_TRACE("length of plm data remaining length 0x%X:", secureChunkSize);
}
for (uint32_t itr = 0; itr < dataChunksCount - 1; itr++)
{
dataChunks.push_back(SHA3_LENGTH_BYTES);
newSectionLength += SHA3_LENGTH_BYTES;
header->imageHeader->SetTotalFsblFwSizeIh(header->imageHeader->GetTotalFsblFwSizeIh() + SHA3_LENGTH_BYTES);
if (itr == dataChunksCount - 2)
{
if (encryptionFlag)
{
dataChunks.push_back(secureChunkSize + SECURE_HDR_SZ + AES_GCM_TAG_SZ);
firstChunkSize = secureChunkSize + SECURE_HDR_SZ + AES_GCM_TAG_SZ;
}
else
{
dataChunks.push_back(secureChunkSize);
firstChunkSize = secureChunkSize;
}
}
else
{
dataChunks.push_back(secureChunkSize);
}
}
}
if ((header->imageHeader->GetChecksumContext()->Type() != Checksum::None))
{
newSectionLength += SHA3_LENGTH_BYTES;
header->imageHeader->SetTotalFsblFwSizeIh(header->imageHeader->GetTotalFsblFwSizeIh() + SHA3_LENGTH_BYTES);
}
return newSectionLength;
}
/******************************************************************************/
void VersalPartition::ChunkifyAndHash(Section* section, bool encryptionFlag)
{
std::vector<uint32_t> dataChunks;
std::vector<uint8_t*> data;
uint8_t* tempBuffer;
int tempBufferSize = 0;
/* Get the number/size data chunks and claculate the new section length*/
size_t length = section->Length;
size_t newLength = 0;
bool checksum_bootloader = false;
if (section->isBootloader && versalNetSeries)
{
if (header->imageHeader->GetChecksumContext()->Type() != Checksum::None)
{
/* If checksum is enabled for VersalNet bootloader, then add the final checksum here only.
VersalChecksumTable::Build & VersalChecksumTable::Link will not process anything for bootloader checksum */
checksum_bootloader = true;
}
newLength = GetBootloaderTotalDataChunks(length, dataChunks, encryptionFlag);
}
else
{
newLength = GetTotalDataChunks(length, dataChunks, encryptionFlag);
}
int itr = (dataChunks.size() - 3);
/* Form a new section - Divide into data chunks of 64K and add sha pad - calculate hash to each chunk - prepend hash to chunk+shapad to form a complete partition. */
if (newLength <length)
{
LOG_DEBUG(DEBUG_STAMP, "Resize length is less than original length");
LOG_ERROR("Section resize issue for authentication..");
}
uint8_t* dataPtr = new uint8_t[length];
memset(dataPtr, 0, length);
memcpy(dataPtr, section->Data, length);
dataPtr += length;
uint8_t* newDataPtr = new uint8_t[newLength];
memset(newDataPtr, 0, newLength);
newDataPtr += newLength;
/*-------------------------------CHUNK N------------------------------------*/
/* Insert Data */
tempBufferSize = dataChunks[0];
tempBuffer = new uint8_t[tempBufferSize];
memset(tempBuffer, 0, tempBufferSize);
dataPtr -= tempBufferSize;
memcpy(tempBuffer, dataPtr, tempBufferSize);
newDataPtr -= tempBufferSize;
memcpy(newDataPtr, tempBuffer, tempBufferSize);
delete[] tempBuffer;
/* Calculate hash */
uint8_t* shaHash;
shaHash = new uint8_t[SHA3_LENGTH_BYTES];
Versalcrypto_hash(shaHash, newDataPtr, dataChunks[0], true);
/*-------------------------------CHUNK N------------------------------------*/
for (int i = 2; i <= itr; i += 2)
{
/* Insert previous hash */
newDataPtr -= SHA3_LENGTH_BYTES;
memcpy(newDataPtr, shaHash, SHA3_LENGTH_BYTES);
delete[] shaHash;
/* Insert Data */
tempBufferSize = dataChunks[i];
tempBuffer = new uint8_t[tempBufferSize];
memset(tempBuffer, 0, tempBufferSize);
dataPtr -= tempBufferSize;
memcpy(tempBuffer, dataPtr, tempBufferSize);
newDataPtr -= tempBufferSize;
memcpy(newDataPtr, tempBuffer, tempBufferSize);
delete[] tempBuffer;
/* Calculate hash */
shaHash = new uint8_t[SHA3_LENGTH_BYTES];
Versalcrypto_hash(shaHash, newDataPtr, dataChunks[i] + dataChunks[i - 1], true);
}
/*-------------------------------CHUNK 1------------------------------------*/
itr += 2;
/* Insert previous hash */
newDataPtr -= SHA3_LENGTH_BYTES;
memcpy(newDataPtr, shaHash, SHA3_LENGTH_BYTES);
delete[] shaHash;
/* Insert Data */
tempBufferSize = dataChunks[itr];
tempBuffer = new uint8_t[tempBufferSize];
memset(tempBuffer, 0, tempBufferSize);
dataPtr -= tempBufferSize;
memcpy(tempBuffer, dataPtr, tempBufferSize);
newDataPtr -= tempBufferSize;
memcpy(newDataPtr, tempBuffer, tempBufferSize);
delete[] tempBuffer;
/*-------------------------------CHUNK 1------------------------------------*/
if (checksum_bootloader)
{
/* Calculate hash of top chunk and previous hash */
shaHash = new uint8_t[SHA3_LENGTH_BYTES];
Versalcrypto_hash(shaHash, newDataPtr, tempBufferSize + SHA3_LENGTH_BYTES, true);
/* Place the final hash at the start of PLM partition */
newDataPtr -= SHA3_LENGTH_BYTES;
memcpy(newDataPtr, shaHash, SHA3_LENGTH_BYTES);
delete[] shaHash;
}
delete[] dataPtr;
delete[] section->Data;
section->Data = newDataPtr;
section->Length = newLength;
LOG_TRACE("First Authentication Data Chunk Size 0x%X", firstChunkSize);
}
/******************************************************************************/
void VersalPartition::Build(BootImage& bi, Binary& cache)
{
versalNetSeries = bi.options.IsVersalNetSeries();
secureChunkSize = bi.GetSecureChunkSize(this->header->imageHeader->IsBootloader());
/* Get the image header from this partition header */
ImageHeader& imageHeader(*this->header->imageHeader);
/* Get the contexts for Authentication & Encryption */
AuthenticationContext* currentAuthCtx = imageHeader.GetAuthContext();
EncryptionContext* encryptCtx = imageHeader.GetEncryptContext();
/* Set default values
Set the address for relative placement for subsequence partitions in image
Don't reserve anything for partition sections */
if (!bi.XipMode)
{
section->Address = 0;
section->Reserve = 0;
}
/* If the partition is a bootloader & XIP mode is enabled, then address is directly
populated based on the QSPI execution address. */
if (!(imageHeader.IsBootloader() && bi.XipMode))
{
/* The offset and reserve attributes only apply to first partition in image
subsequent partitions in the same image are packed right after another */
if (header->IsFirstPartitionInImage())
{
section->Address = imageHeader.GetOffset().ValueOrDefault(0);
section->Reserve = imageHeader.GetReserve().ValueOrDefault(0);
}
else
{
section->continuation = true;
}
}
section->Alignment = imageHeader.GetAlignment().ValueOrDefault(0);
/* If the head and tail of the partition destination are not on a word boundary
we will prepad the data so that DMA can more easily copy the bulk of the data
a whole word at a time. The head and tail bytes are treated seperately */
if (!header->prealigned)
{
/* Use the starting load address to get the number mis-align word boundry unused bytes at the beginning
of a Partition data.
Byte Addr Word Bytes headAlignment
0 00 00 00 00 0
1 XX 00 00 00 1
2 XX XX 00 00 2
3 XX XX XX 00 3 */
if ((header->imageHeader->GetDomain() != Domain::PL) && (header->imageHeader->GetPartitionType() != PartitionType::CONFIG_DATA_OBJ) &&
(header->imageHeader->GetPartitionType() != PartitionType::CFI))
{
header->headAlignment = header->loadAddress % sizeof(uint32_t);
/* Use the ending load address to get the number mis-align word boundry unused bytes at the end
of a Partition data.
Byte Addr Word Bytes tailAlignment
0 (1) 00 XX XX XX 3
1 (2) 00 00 XX XX 2
2 (3) 00 00 00 XX 1
3 (0) 00 00 00 00 0 */
uint32_t remainder = (header->loadAddress + section->Length) % sizeof(uint32_t);
header->tailAlignment = (remainder == 0) ? 0 : (4 - remainder);
}
section->PadToWordAlignment(header->headAlignment, header->tailAlignment);
}
/* Encryption process on the partition */
if (header->preencrypted && encryptCtx->Type() != Encryption::None)
{
LOG_ERROR("Cannot reencrypt a partition that is already encrypted for %s", section->Name.c_str());
}
/*******************************************************************************/
if ((imageHeader.GetPartitionType() == PartitionType::CONFIG_DATA_OBJ) && (encryptCtx->Type() != Encryption::None))
{
size_t buffer_size = 0;
uint32_t* syncpt_offsets = NULL;
uint8_t num_of_sync_points = 0;
CdoSequence * cdo_seq;
cdo_seq = decode_cdo_binary(header->partition->section->Data, header->partition->section->Length);
/* Enable the search for sync points - only needs to be done for SSIT devices */
search_for_sync_points();
uint8_t* buffer = (uint8_t*)cdoseq_to_binary(cdo_seq, &buffer_size, 0);
/* Get no. of sync points and sync points offsets */
num_of_sync_points = get_num_of_sync_points();
syncpt_offsets = get_slr_sync_point_offsets();
for (int i = 0; i < num_of_sync_points; i++)
{
size_t offset = (*(syncpt_offsets + i) * 4);
bi.sync_offsets.push_back(offset);
}
delete syncpt_offsets;
delete buffer;
}
/*******************************************************************************/
if (versalNetSeries)
{
encryptCtx->ChunkifyAndProcess(bi, header);
}
else
{
encryptCtx->Process(bi, header);
}
uint32_t padLength = 0;
/* Authentication process on the partition */
if (header->presigned)
{
// do nothing
for (std::list<AuthenticationCertificate*>::iterator acs = header->ac.begin(); acs != header->ac.end(); acs++)
{
*acs = 0;
}
}
else
{
header->transferSize = section->Length;
if ((imageHeader.GetChecksumContext()->Type() == Checksum::SHA3) || (currentAuthCtx->authAlgorithm->Type() != Authentication::None))
{
/* No chunking on bootloader for versal - Data should be alligned to 104 bytes before calculating the hash */
if (imageHeader.IsBootloader() && !(versalNetSeries))
{
Binary::Length_t shaPadOnLength = header->partition->section->Length;
if (currentAuthCtx->authAlgorithm->Type() != Authentication::None)
{
/* Include AC but substract the Partition Signature Size, since it is not included in hash calculation */
shaPadOnLength += (currentAuthCtx->GetCertificateSize() - SIGN_LENGTH_VERSAL);
}
else if (imageHeader.GetChecksumContext()->Type() != Checksum::None)
{
/* Checksum length is added to the partition length, in case of bootloader.
Substract the checksum length, since it should not be included in hash calculation */
shaPadOnLength -= imageHeader.GetChecksumContext()->Size();
}
uint8_t shaPadLength = SHA3_PAD_LENGTH - (shaPadOnLength % SHA3_PAD_LENGTH);
/* Create the SHA3 Padded partition */
section->IncreaseLengthAndPadSHA3(header->partition->section->Length + shaPadLength);
if (bi.bifOptions->GetPmcdataFile() == "")
{
imageHeader.SetTotalFsblFwSizeIh(imageHeader.GetTotalFsblFwSizeIh() + shaPadLength);
}
else
{
imageHeader.SetTotalPmcFwSizeIh(imageHeader.GetTotalPmcFwSizeIh() + shaPadLength);
}
header->transferSize = section->Length - imageHeader.GetChecksumContext()->Size();
/* Checksum length is added to the partition length, in case of bootloader.
Partiton length should not include checksum length, so substarct*/
}
else if (imageHeader.IsBootloader() && versalNetSeries)
{
if (header->imageHeader->GetTotalPmcFwSizeIh() != 0)
{
ChunkifyAndHash(section, (encryptCtx->Type() != Encryption::None || header->preencrypted));
currentAuthCtx->SetFirstChunkSize(firstChunkSize);
header->firstChunkSize = currentAuthCtx->GetFirstChunkSize();
header->partition->section->firstChunkSize = header->firstChunkSize;
}
else
{
Binary::Length_t chunkOnLength = header->partition->section->Length;
if (encryptCtx->Type() != Encryption::None || header->preencrypted)
{
chunkOnLength -= (SECURE_HDR_SZ + AES_GCM_TAG_SZ);
}
else if (imageHeader.GetChecksumContext()->Type() != Checksum::None)
{
/* Checksum length is not added to the partition length, in case of bootloader for VersalNet.
Hence don't substract the checksum length, since it should not be included in hash calculation */
//chunkOnLength -= imageHeader.GetChecksumContext()->Size();
}
Binary::Length_t dataChunksCount = (chunkOnLength / secureChunkSize) + ((((chunkOnLength) % secureChunkSize) == 0 ? 0 : 1));
if (dataChunksCount != 1)
{
ChunkifyAndHash(section, (encryptCtx->Type() != Encryption::None || header->preencrypted));
currentAuthCtx->SetFirstChunkSize(firstChunkSize);
header->firstChunkSize = currentAuthCtx->GetFirstChunkSize();
header->partition->section->firstChunkSize = header->firstChunkSize;
}
else if (dataChunksCount == 1 && imageHeader.GetChecksumContext()->Type() != Checksum::None)
{
size_t newLength = section->Length + SHA3_LENGTH_BYTES;
uint8_t* newDataPtr = new uint8_t[newLength];
memset(newDataPtr, 0, newLength);
newDataPtr += SHA3_LENGTH_BYTES;
memcpy(newDataPtr, section->Data, section->Length);
/* Calculate hash */
uint8_t* shaHash;
shaHash = new uint8_t[SHA3_LENGTH_BYTES];
Versalcrypto_hash(shaHash, newDataPtr, section->Length, true);
/* Place the final hash at the start of PLM partition */
newDataPtr -= SHA3_LENGTH_BYTES;
memcpy(newDataPtr, shaHash, SHA3_LENGTH_BYTES);
header->imageHeader->SetTotalFsblFwSizeIh(header->imageHeader->GetTotalFsblFwSizeIh() + SHA3_LENGTH_BYTES);
delete[] shaHash;
delete[] section->Data;
section->Data = newDataPtr;
section->Length = newLength;
}
}
if (bi.bifOptions->GetPmcdataFile() == "")
{
//imageHeader.SetTotalFsblFwSizeIh(section->Length);
}
else
{
//imageHeader.SetTotalPmcFwSizeIh(imageHeader.GetTotalPmcFwSizeIh() + shaPadLength);
}
header->transferSize = section->Length - imageHeader.GetChecksumContext()->Size();
/* Checksum length is added to the partition length, in case of bootloader.
Partiton length should not include checksum length, so substarct*/
}
/* Chunk the data into fixed 64KB/32KB */
else
{
Binary::Length_t chunkOnLength = header->partition->section->Length;
if (encryptCtx->Type() != Encryption::None || header->preencrypted)
{
chunkOnLength -= (SECURE_HDR_SZ + AES_GCM_TAG_SZ);
}
Binary::Length_t dataChunksCount = (chunkOnLength / secureChunkSize) + ((((chunkOnLength) % secureChunkSize) == 0 ? 0 : 1));
if (dataChunksCount != 1)
{
ChunkifyAndHash(section, (encryptCtx->Type() != Encryption::None || header->preencrypted));
currentAuthCtx->SetFirstChunkSize(firstChunkSize);
header->firstChunkSize = currentAuthCtx->GetFirstChunkSize();
header->partition->section->firstChunkSize = header->firstChunkSize;
}
}
}
if((imageHeader.IsBootloader() && imageHeader.GetChecksumContext()->Type() != Checksum::None))
{
if (!versalNetSeries)
{
padLength = imageHeader.GetChecksumContext()->Size();
}
/* Don't add checksum length here, as the checksum calculation and insertion happen in ChunkifyAndHash() for VersalNet */
}
else
{
// create AC/checksum section and add it to the end of the list.
if (header->checksumSection != NULL)
{
cache.Sections.push_back(header->checksumSection);
}
AuthenticationCertificate* tempacs;
tempacs = new VersalAuthenticationCertificate(currentAuthCtx);
tempacs->Build(bi, cache, header->partition->section, imageHeader.IsBootloader(), false);
header->ac.push_back(tempacs);
currentAuthCtx->AddAuthCertSizeToTotalFSBLSize(header);
}
}
if (imageHeader.IsBootloader() == true)
{
if (bi.bifOptions->GetPmcdataFile() == "")
{
bi.SetTotalFsblFwSize(imageHeader.GetTotalFsblFwSizeIh() + padLength);
//below for everest
//bi.SetTotalFsblFwSize(imageHeader.getTotalFsblFwSizeIh());
bi.bifOptions->SetTotalPmcFwSize(imageHeader.GetTotalPmcFwSizeIh());
}
else
{
bi.SetTotalFsblFwSize(imageHeader.GetTotalFsblFwSizeIh());
bi.bifOptions->SetTotalPmcFwSize(imageHeader.GetTotalPmcFwSizeIh() + padLength);
//below for everest
//bi.SetTotalPmcFwSize(imageHeader.getTotalPmcFwSizeIh());
}
//bi.SetTotalFsblFwSize(imageHeader.getTotalFsblFwSizeIh() + padLength);
bi.SetTotalPmuFwSize(imageHeader.GetTotalPmuFwSizeIh());
//bi.SetTotalPmcFwSize(imageHeader.getTotalPmcFwSizeIh());
bi.SetPmuFwSize(imageHeader.GetPmuFwSizeIh());
bi.bifOptions->SetPmcFwSize(imageHeader.GetPmcFwSizeIh());
bi.SetFsblFwSize(imageHeader.GetFsblFwSizeIh());
if (bi.XipMode)
{
// Just to make sure, not to get a negative no. as address
if (imageHeader.GetTotalPmuFwSizeIh() != 0)
{
if (imageHeader.GetFsblSourceAddrIh() > imageHeader.GetTotalPmuFwSizeIh())
{
section->Address = imageHeader.GetFsblSourceAddrIh() - imageHeader.GetTotalPmuFwSizeIh();
bi.SetFsblSourceAddr(section->Address);
}
}
// Just to make sure, not to get a negative no. as address
if (imageHeader.GetTotalPmcFwSizeIh() != 0)
{
if (imageHeader.GetFsblSourceAddrIh() > imageHeader.GetTotalPmcFwSizeIh())
{
section->Address = imageHeader.GetFsblSourceAddrIh() - imageHeader.GetTotalPmcFwSizeIh();
bi.SetFsblSourceAddr(section->Address);
}
}
}
}
/* Push the section alloted into the Main section */
if (section != NULL)
{
cache.Sections.push_back(section);
}
}
/******************************************************************************/
void VersalPartition::Link(BootImage &bi)
{
for (std::list<AuthenticationCertificate*>::iterator acs = header->ac.begin(); acs != header->ac.end(); acs++)
{
if ((*acs))
{
header->partition->section->partitionNum = header->partitionNum;
(*acs)->Link(bi, header->partition->section);
}
}
}