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
|
/******************************************************************************
* 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 <limits>
#include <iomanip>
#include <iostream>
#include "string.h"
#include "authentication-zynqmp.h"
#include "bootgenexception.h"
#include "stringutils.h"
#include "binary.h"
#include "bootimage.h"
#include "options.h"
/*------------------------------------------------------------------------------
* BH Hash is always Keccak
- Irrespective of SPK-eFuse/User-eFuse
- Since BH Sign used by BootRoM
- BH Hash is same for any partition as its always calculated on same data
* SPK can vary from Partition to Partition
- Keccak/NIST is based of SPK-eFuse/User-eFuse selected for that partition.
* For Bootloader Partition - always authenticated by BootRoM
- Always SPK-eFuse is used for Bootloader, so SPK Hash is always Keccak.
* Partition signatures are always authenticated by only FSBL/XilSecure/XilFPGA
- Partition hashes - always NIST
-----------------------------------------------------------------------------*/
/*
-------------------------------------------------------------------------------
***************************************************** F U N C T I O N S ***
-------------------------------------------------------------------------------
*/
/******************************************************************************/
void ZynqMpAuthenticationContext::CopyPartitionSignature(BootImage& bi,
std::list<Section*> sections,
uint8_t* signatureBlock,
Section* acSection)
{
/* Calculate the length of the partiton that is to be hashed,Since bs is authenticated in chunks.
This can be changed with authblock[default is 8].*/
LOG_TRACE("Copying the partition signature into Authentication Certificate");
uint8_t* shaHash = new uint8_t[hashLength];
std::list<Section*>::iterator section = sections.begin();
size_t hashSecLen = (*section)->Length;
size_t authblocksize = authBlocks * 1024 * 1024;
if (authblocksize != 0)
{
hashSecLen = authblocksize;
}
if (((*section)->Length) - (authblocksize * acIndex) < authblocksize && (authBlocks != 0))
{
hashSecLen = ((*section)->Length) - (authblocksize * acIndex);
}
/* Update with Partition and then AC */
uint8_t *partitionAc = new uint8_t[hashSecLen + (acSection->Length - signatureLength)];
/* Update with Partition */
memcpy(partitionAc, (*section)->Data + (authblocksize * acIndex), hashSecLen);
/* Update with authentication certificate except the last 256 bytes, which is the partition signature,
that we are calculating now. Once calculated, the partition signature will sit there */
memcpy(partitionAc + hashSecLen, acSection->Data, acSection->Length - signatureLength);
uint32_t start = (*section)->Address;
uint32_t end = (acSection->Address + acSection->Length) - signatureLength;
LOG_TRACE("Hashing %s from 0x%x to 0x%x", acSection->Name.c_str(), start, end);
LOG_DUMP_BYTES((*section)->Data + (authblocksize * acIndex), 32);
LOG_OUT(" ... ");
LOG_DUMP_BYTES((*section)->Data + (authblocksize * acIndex) + hashSecLen - hashLength, hashLength);
LOG_OUT(" ... \n");
/* Calculate the hash */
/* Partition signatures are used by FSBL/XilSecure/XilFPGA except BL Sign-So partition hashes always NIST except for bootloader
Bootloader Sign is used by ROM - so Bootloader hash - always Keccak */
hash->CalculateHash(!(*section)->isBootloader, partitionAc, hashSecLen + (acSection->Length - signatureLength), shaHash);
LOG_TRACE("Hash of %s (LE):", acSection->Name.c_str());
LOG_DUMP_BYTES(shaHash, hashLength);
/* Create the PKCS padding for the hash */
uint8_t* shaHashPadded = new uint8_t[signatureLength];
CreatePadding(shaHashPadded, shaHash);
if (bi.options.DoGenerateHashes())
{
std::string hashfilename = acSection->Name;
WritePaddedSHAFile(shaHashPadded, hashfilename);
}
RearrangeEndianess(shaHashPadded, signatureLength);
/*Sign the hash */
authAlgorithm->CreateSignature(shaHashPadded, (uint8_t*)secondaryKey, signatureBlock);
RearrangeEndianess(signatureBlock, signatureLength);
LOG_TRACE("The partition signature is copied into Authentication Certificate");
/* Delete the temporarily created arrays */
delete[] shaHash;
delete[] shaHashPadded;
delete[] partitionAc;
acIndex++;
}
/******************************************************************************/
ZynqMpAuthenticationContext::ZynqMpAuthenticationContext()
{
signatureLength = RSA_SIGN_LENGTH_ZYNQMP;
SetAuthenticationKeyLength(RSA_4096_KEY_LENGTH);
hashType = AuthHash::Sha3;
spksignature = new uint8_t[signatureLength];
spkSignLoaded = false;
primaryKey = new Key4096("Primary Key");
secondaryKey = new Key4096("Secondary Key");
memset(spksignature, 0, signatureLength);
memset(udf_data, 0, UDF_DATA_SIZE);
bHsignature = new uint8_t[signatureLength];
memset(bHsignature, 0, signatureLength);
bhSignLoaded = false;
authAlgorithm = new RSAAuthenticationAlgorithm();
authCertificate = new RSA4096AuthenticationCertificate();
certSize = sizeof(AuthCertificate4096Structure);
}
/******************************************************************************/
ZynqMpAuthenticationContext::ZynqMpAuthenticationContext(const AuthenticationContext* refAuthContext)
{
signatureLength = RSA_SIGN_LENGTH_ZYNQMP;
SetAuthenticationKeyLength(RSA_4096_KEY_LENGTH);
hashType = AuthHash::Sha3;
spksignature = new uint8_t[signatureLength];
bHsignature = new uint8_t[signatureLength];
ppkFile = refAuthContext->ppkFile;
pskFile = refAuthContext->pskFile;
spkFile = refAuthContext->spkFile;
sskFile = refAuthContext->sskFile;
spkSignFile = refAuthContext->spkSignFile;
bhSignFile = refAuthContext->bhSignFile;
ppkSelect = refAuthContext->ppkSelect;
spkSelect = refAuthContext->spkSelect;
spkIdentification = refAuthContext->spkIdentification;
primaryKey = new Key4096("Primary Key");
secondaryKey = new Key4096("Secondary Key");
primaryKey = refAuthContext->primaryKey;
if (spkFile != "" || sskFile != "")
{
if (sskFile != "")
{
secondaryKey->ParseSecret(sskFile);
}
if (spkFile != "")
{
secondaryKey->ParsePublic(spkFile);
}
}
else
{
secondaryKey = refAuthContext->secondaryKey;
}
if (spkSignFile != "")
{
SetSPKSignatureFile(spkSignFile);
}
else
{
memcpy(spksignature, refAuthContext->spksignature, signatureLength);
}
if (bhSignFile != "")
{
SetBHSignatureFile(bhSignFile);
}
else
{
memcpy(bHsignature, refAuthContext->bHsignature, signatureLength);
}
memcpy(udf_data, refAuthContext->udf_data, sizeof(udf_data));
bhSignLoaded = refAuthContext->bhSignLoaded;
spkSignLoaded = refAuthContext->spkSignLoaded;
spkSignRequested = refAuthContext->spkSignRequested;
certSize = sizeof(AuthCertificate4096Structure);
preSigned = refAuthContext->preSigned;
authAlgorithm = refAuthContext->authAlgorithm;
authCertificate = refAuthContext->authCertificate;
}
/******************************************************************************/
ZynqMpAuthenticationContext::ZynqMpAuthenticationContext(const AuthCertificate4096Structure* existingCert)
{
signatureLength = RSA_SIGN_LENGTH_ZYNQMP;
SetAuthenticationKeyLength(RSA_4096_KEY_LENGTH);
hashType = AuthHash::Sha3;
spksignature = new uint8_t[signatureLength];
spkSignLoaded = true;
bHsignature = new uint8_t[signatureLength];
bhSignLoaded = true;
primaryKey = new Key4096("Primary Key");
secondaryKey = new Key4096("Secondary Key");
primaryKey->Import(&existingCert->acPpk, "Primary Key");
secondaryKey->Import(&existingCert->acSpk, "Secondary Key");
RearrangeEndianess(primaryKey->N, sizeof(existingCert->acPpk.N));
RearrangeEndianess(primaryKey->N_ext, sizeof(existingCert->acPpk.N_extension));
RearrangeEndianess(primaryKey->E, sizeof(existingCert->acPpk.E));
RearrangeEndianess(secondaryKey->N, sizeof(existingCert->acSpk.N));
RearrangeEndianess(secondaryKey->N_ext, sizeof(existingCert->acSpk.N_extension));
RearrangeEndianess(secondaryKey->E, sizeof(existingCert->acSpk.E));
memcpy(spksignature, existingCert->acSpkSignature.Signature, signatureLength);
memcpy(bHsignature, existingCert->acBhSignature.Signature, signatureLength);
memcpy(udf_data, existingCert->acUdf, UDF_DATA_SIZE);
uint32_t acHdr = existingCert->acHeader;
ppkSelect = 3 & (acHdr >> AC_HDR_PPK_SELECT_BIT_SHIFT);
spkSelect = acHdr >> AC_HDR_SPK_SELECT_BIT_SHIFT;
spkIdentification = existingCert->spkId;
certSize = sizeof(AuthCertificate4096Structure);
authAlgorithm = new RSAAuthenticationAlgorithm();
}
/******************************************************************************/
ZynqMpAuthenticationContext::~ZynqMpAuthenticationContext()
{
if (spksignature != NULL)
{
delete[] spksignature;
}
if (bHsignature != NULL)
{
delete[] bHsignature;
}
if (primaryKey != NULL)
{
delete primaryKey;
}
if (secondaryKey != NULL)
{
delete secondaryKey;
}
}
/******************************************************************************/
void ZynqMpAuthenticationContext::CreatePadding(uint8_t * signature, const uint8_t * hash)
{
/* SHA2 PKCS#1v1.5 Padding
LSB------------------------------------------------------MSB
0x0 || 0x1 || 0xFF(for 202 bytes) || 0x0 || tPad || SHA Hash
SHA3 PKCS#1v1.5 Padding
LSB------------------------------------------------------MSB
0x0 || 0x1 || 0xFF(for 384 bytes) || 0x0 || tPad || SHA Hash
*/
uint8_t tPadSha2[T_PAD_LENGTH] = { 0x30, 0x31, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01,
0x65, 0x03, 0x04, 0x02, 0x01, 0x05, 0x00, 0x04, 0x20 };
/* Older SHA3 ID used before 2016.1 */
uint8_t tPadSha3[T_PAD_LENGTH] = { 0x30, 0x41, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01,
0x65, 0x03, 0x04, 0x02, 0x02, 0x05, 0x00, 0x04, 0x30 };
/* New SHA3 ID as per NIST */
uint8_t tPadSha3new[T_PAD_LENGTH] = { 0x30, 0x41, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01,
0x65, 0x03, 0x04, 0x02, 0x09, 0x05, 0x00, 0x04, 0x30 };
uint8_t* sigPtr;
uint8_t* tempSigPtr;
uint32_t index;
uint8_t* tPad;
tempSigPtr = signature;
if (hashType == AuthHash::Sha2)
{
tPad = tPadSha2;
}
else
{
/* If -zynqmpes1 is used, then old sha3 id is used, otherwise new id will be used */
tPad = tPadSha3new;
static bool warningGiven = false;
if (AuthenticationContext::GetZynpMpVerEs1Flag())
{
tPad = tPadSha3;
if (!warningGiven)
{
LOG_TRACE("ZynqMp silicon set to (1.0)ES1 using -zynqmpes1");
LOG_WARNING("Authentication padding scheme is as per silicon (1.0)ES1. The image generated will NOT work for 2.0(ES2) and above.");
warningGiven = true;
}
}
else
{
if (!warningGiven)
{
LOG_WARNING("Authentication padding scheme will be as per silicon 2.0(ES2) and above. The image generated will NOT work for 1.0(ES1). \n Use '-zynqmpes1' to generate image for 1.0(ES1)");
warningGiven = true;
}
}
}
sigPtr = signature;
*sigPtr++ = 0x00;
*sigPtr++ = 0x01;
uint32_t totalFfs = signatureLength - T_PAD_LENGTH - hashLength - 1 - 1 - 1;
for (index = 0; index < totalFfs; ++index)
{
*sigPtr++ = 0xFF;
}
*sigPtr++ = 0x00;
for (index = 0; index < T_PAD_LENGTH; ++index)
{
*sigPtr++ = tPad[index];
}
for (index = 0; index < hashLength; ++index)
{
*sigPtr++ = hash[index];
}
signature = tempSigPtr;
}
/******************************************************************************/
Section* ZynqMpAuthenticationContext::CreateCertificate(BootImage& bi, Binary& cache, Section* dataSection)
{
LOG_INFO("Creating Authentication Certificate for section - %s", dataSection->Name.c_str());
hashType = bi.GetAuthHashAlgo();
hash = bi.hash;
hashLength = hash->GetHashLength();
std::string hashExtension = hash->GetHashFileExtension();
/* Partition size must be 64-byte aligned */
if ((dataSection->Length & 0x3F) != 0)
{
LOG_ERROR("Authentication Error !!!\n Partition %s's length %d bytes - is not 64-byte aligned - %s", dataSection->Name.c_str(), dataSection->Length);
}
/* Secondary key is must for authenticating */
if (!secondaryKey->Loaded)
{
LOG_ERROR("Authentication Error !!!\n Secondary key must be specified in BIF file for %s", dataSection->Name.c_str());
}
if (!secondaryKey->isSecret)
{
if (presignFile != "")
{
// ok
}
else if (bi.options.GetNonBootingFlag() && (dataSection->Name.find("ImageHeaderTable") != std::string::npos))
{
// ok
}
else if (bi.options.DoGenerateHashes() || bi.options.GetNonBootingFlag())
{
static bool warningGiven = false;
std::list<std::string> outFilename = bi.options.GetOutputFileNames();
if (outFilename.size() > 0)
{
if (!warningGiven)
{
LOG_WARNING("SSK is needed to authenticate a boot image. Because the key provided is not secret, the bootimage will not be usable. However, the sha hash files will be generated for offline signing");
warningGiven = true;
}
}
}
else if (bi.currentAuthCtx->spkSignRequested != "")
{
LOG_WARNING("SSK is needed to authenticate a boot image. Because the key provided is not secret, the bootimage will not be usable. However, SPK signature will be generated as requested.");
}
else
{
LOG_ERROR("Authentication Error !!!\n SSK or partition must have [presign=xxx] attribute in BIF file for section %s", dataSection->Name.c_str());
}
}
if (!(primaryKey->Loaded && primaryKey->isSecret) && !spkSignLoaded)
{
if (bi.options.DoGenerateHashes())
{
LOG_WARNING("Either PSK or spksignature is needed to authenticate bootimage or generate partition hashes. Because they are not provided, the bootimage and partition hashes will not be usable. However SPK hash and bootheader hash files generated can be used for offline signing.");
}
else
{
LOG_ERROR("Authentication Error !!!\n Either PSK or SPK signature file must be specified in BIF file.");
}
}
std::string name = dataSection->Name;
if (dataSection->index == 0)
{
name = GetCertificateName(name);
}
Section* acSection = new Section(name + hashExtension, certSize);
acSection->isCertificate = true;
acSection->index = dataSection->index;
cache.Sections.push_back(acSection);
AuthCertificate4096Structure* authCert = (AuthCertificate4096Structure*)acSection->Data;
LOG_TRACE("Creating new section for certificate - %s", acSection->Name.c_str());
uint32_t x = sizeof(AuthCertificate4096Structure);
if (x != certSize)
{
LOG_DEBUG(DEBUG_STAMP, "Bad Authentication Certificate Size");
LOG_ERROR("Authentication Error !!!");
}
memset(authCert, 0, certSize);
uint32_t acHdr = AUTH_HDR_ZYNQMP;
acHdr |= ppkSelect << AC_HDR_PPK_SELECT_BIT_SHIFT;
acHdr |= spkSelect << AC_HDR_SPK_SELECT_BIT_SHIFT;
acHdr |= ((bi.GetAuthHashAlgo()) ? 0 : 1) << AC_HDR_SHA_2_3_BIT_SHIFT;
WriteLittleEndian32(&authCert->acHeader, acHdr);
WriteLittleEndian32(&authCert->spkId, spkIdentification);
if (udfFile != "")
{
LoadUdfData(udfFile, udf_data);
RearrangeEndianess(udf_data, sizeof(udf_data));
memcpy(authCert->acUdf, udf_data, UDF_DATA_SIZE);
}
primaryKey->Export(&authCert->acPpk);
RearrangeEndianess(authCert->acPpk.N, sizeof(authCert->acPpk.N));
RearrangeEndianess(authCert->acPpk.N_extension, sizeof(authCert->acPpk.N_extension));
RearrangeEndianess(authCert->acPpk.E, sizeof(authCert->acPpk.E));
secondaryKey->Export(&authCert->acSpk);
RearrangeEndianess(authCert->acSpk.N, sizeof(authCert->acSpk.N));
RearrangeEndianess(authCert->acSpk.N_extension, sizeof(authCert->acSpk.N_extension));
RearrangeEndianess(authCert->acSpk.E, sizeof(authCert->acSpk.E));
CopySPKSignature(&authCert->acSpkSignature);
certIndex++;
return acSection;
}
/******************************************************************************/
void ZynqMpAuthenticationContext::Link(BootImage& bi, std::list<Section*> sections, AuthenticationCertificate* cert)
{
::AuthCertificate4096Structure* authCert = (AuthCertificate4096Structure*)cert->section->Data;
uint8_t* signatureBlock = (uint8_t*)&authCert->acPartitionSignature;
CopyBHSignature(bi, &authCert->acBhSignature);
if (presignFile == "")
{
/* If the parition is not presigned / presign file not present */
std::list<Section*>::iterator section = sections.begin();
(*section)->isBootloader = cert->fsbl;
CopyPartitionSignature(bi, sections, signatureBlock, cert->section);
}
else
{
/* If the parition is presigned / presign file present */
int index = acIndex;
if (cert->section->index != 0)
{
index = cert->section->index;
}
GetPresign(presignFile, signatureBlock, index);
acIndex++;
}
}
/******************************************************************************/
void ZynqMpAuthenticationContext::CopyBHSignature(BootImage& bi, ACSignature4096* ptr)
{
uint8_t* sha_hash_padded = new uint8_t[signatureLength];
uint8_t* bHsignaturetmp = new uint8_t[signatureLength];
GenerateBHHash(bi, sha_hash_padded);
if (bi.options.DoGenerateHashes())
{
std::string hashfilename = "bootheader" + hash->GetHashFileExtension();
WritePaddedSHAFile(sha_hash_padded, hashfilename);
}
if (secondaryKey->Loaded && secondaryKey->isSecret)
{
LOG_TRACE("Creating Boot Header Signature");
RearrangeEndianess(sha_hash_padded, signatureLength);
authAlgorithm->CreateSignature(sha_hash_padded, (uint8_t*)secondaryKey, bHsignaturetmp);
RearrangeEndianess(bHsignaturetmp, signatureLength);
if (bhSignLoaded)
{
if (memcmp(bHsignature, bHsignaturetmp, signatureLength) != 0)
{
LOG_ERROR("Authentication Error !!!\n Loaded BH Signature does not match calculated BH Signature");
}
}
memcpy(ptr, bHsignaturetmp, signatureLength);
}
else if (bhSignLoaded)
{
memcpy(ptr, bHsignature, signatureLength);
}
else if (bi.options.DoGenerateHashes() && !bhSignLoaded)
{
static bool warningGiven = false;
if (!warningGiven)
{
LOG_WARNING("Either SSK or (bhsignature and presign) is needed to authenticate a boot image or generate partition hashes. Because they are not provided, the bootimage and partition hashes will not be usable. However, the boot header hash file generated can be used for offline signing");
warningGiven = true;
}
}
else
{
LOG_ERROR("Authentication Error !!!\n Either SSK or BH signature file must be specified in the BIF file.");
}
if (sha_hash_padded)
{
delete[] sha_hash_padded;
}
if (bHsignaturetmp)
{
delete[] bHsignaturetmp;
}
LOG_TRACE("Boot Header Signature copied into Authentication Certificate");
}
/******************************************************************************/
void ZynqMpAuthenticationContext::GenerateBHHash(BootImage& bi, uint8_t* sha_hash_padded)
{
LOG_TRACE("Calculating the Boot Header Hash");
uint8_t* tmpBh = bi.bootHeader->section->Data;
uint8_t* sha_hash = new uint8_t[hashLength];
hash->CalculateHash(false, tmpBh, bi.bootHeader->section->Length, sha_hash);
CreatePadding(sha_hash_padded, sha_hash);
delete[] sha_hash;
}
/******************************************************************************/
void ZynqMpAuthenticationContext::GenerateSPKHash(uint8_t* shaHashPadded)
{
LOG_TRACE("Calculating the SPK Hash");
ACKey4096 spkFull;
if (!secondaryKey->Loaded)
{
ParseSPKeyFile(spkFile);
}
secondaryKey->Export(&spkFull);
hashLength = hash->GetHashLength();
uint8_t* shaHash = new uint8_t[hashLength];
uint32_t acHdr = AUTH_HDR_ZYNQMP;
acHdr |= ppkSelect << AC_HDR_PPK_SELECT_BIT_SHIFT;
acHdr |= spkSelect << AC_HDR_SPK_SELECT_BIT_SHIFT;
acHdr |= ((hashType == AuthHash::Sha2) ? 0 : 1) << AC_HDR_SHA_2_3_BIT_SHIFT;
uint8_t* tempBuffer = new uint8_t[sizeof(spkFull) + sizeof(acHdr) + sizeof(spkIdentification)];
WriteLittleEndian32(tempBuffer, acHdr);
WriteLittleEndian32(tempBuffer + sizeof(acHdr), spkIdentification);
RearrangeEndianess(spkFull.N, sizeof(spkFull.N));
RearrangeEndianess(spkFull.N_extension, sizeof(spkFull.N_extension));
RearrangeEndianess(spkFull.E, sizeof(spkFull.E));
memcpy(tempBuffer + sizeof(acHdr) + sizeof(spkIdentification), (uint8_t*)&spkFull, sizeof(spkFull));
bool nist = false;
if (spkSelect == 1)
{
nist = false;
}
else if (spkSelect == 2)
{
nist = true;
}
hash->CalculateHash(nist, (uint8_t*)tempBuffer, sizeof(spkFull) + sizeof(acHdr) + sizeof(spkIdentification), shaHash);
CreatePadding(shaHashPadded, shaHash);
delete[] shaHash;
delete[] tempBuffer;
}
/******************************************************************************/
void ZynqMpAuthenticationContext::CopySPKSignature(ACSignature4096* ptr)
{
CreateSPKSignature();
LOG_TRACE("Copying the SPK signature into the Authentication Certificate");
memcpy(ptr, spksignature, signatureLength);
}
/******************************************************************************/
std::string ZynqMpAuthenticationContext::GetCertificateName(std::string name)
{
if (certIndex != 0)
{
size_t x = name.find(".0");
if (std::string::npos != name.find(".0"))
{
name[x + 1] = (char)(name[x + 1] + certIndex);
}
}
return name;
}
/******************************************************************************/
void ZynqMpAuthenticationContext::GeneratePPKHash(const std::string& filename)
{
ACKey4096 ppkTemp;
primaryKey->Export(&ppkTemp);
RearrangeEndianess(ppkTemp.N, sizeof(ppkTemp.N));
RearrangeEndianess(ppkTemp.N_extension, sizeof(ppkTemp.N_extension));
RearrangeEndianess(ppkTemp.E, sizeof(ppkTemp.E));
hashLength = hash->GetHashLength();
uint8_t* rsa_signature = new uint8_t[hashLength];
hash->CalculateHash(false, (uint8_t*)&ppkTemp, sizeof(ACKey4096), rsa_signature);
FILE* filePtr;
if ((filePtr = fopen(filename.c_str(), "w")) == NULL)
{
LOG_ERROR("-efuseppkbits error !!! Failure writing to hash file %s", StringUtils::BaseName(filename).c_str());
}
for (int index = 0; index < hashLength; index++)
{
fprintf(filePtr, "%02X", rsa_signature[index]);
}
fprintf(filePtr, "\r\n");
fclose(filePtr);
LOG_INFO("PPK Hash is written to file %s successfully", filename.c_str());
}
/******************************************************************************/
void ZynqMpAuthenticationContext::RearrangeEndianess(uint8_t *array, uint32_t size)
{
uint32_t lastIndex = size - 1;
char tempInt = 0;
if (!array)
{
return;
}
for (uint32_t loop = 0; loop <= (lastIndex / 2); loop++)
{
tempInt = array[loop];
array[loop] = array[lastIndex - loop];
array[lastIndex - loop] = tempInt;
}
}
/******************************************************************************/
void ZynqMpAuthenticationContext::AddAuthCertSizeToTotalFSBLSize(PartitionHeader* header)
{
for (std::list<AuthenticationCertificate*>::iterator acs = header->ac.begin(); acs != header->ac.end(); acs++)
{
if (*acs && (*acs)->section)
{
if (header->imageHeader->IsBootloader() == true)
{
header->imageHeader->SetTotalFsblFwSizeIh(header->imageHeader->GetTotalFsblFwSizeIh() + (*acs)->section->Length);
}
}
}
}
/******************************************************************************/
void ZynqMpAuthenticationContext::SetKeyLength(Authentication::Type type)
{
if (type == Authentication::RSA)
{
AuthenticationContext::authKeyLength = RSA_4096_KEY_LENGTH;
}
}
|