Even more integration fixes.

Review URL: http://codereview.chromium.org/2849021
This commit is contained in:
Randall Spangler
2010-06-23 12:43:01 -07:00
parent 249677d0ad
commit b9d60a52b7
5 changed files with 54 additions and 22 deletions

View File

@@ -30,11 +30,6 @@
#define UINT64_RSHIFT(v, shiftby) (((uint64_t)(v)) >> (shiftby)) #define UINT64_RSHIFT(v, shiftby) (((uint64_t)(v)) >> (shiftby))
#define UINT64_MULT32(v, multby) (((uint64_t)(v)) * ((uint32_t)(multby))) #define UINT64_MULT32(v, multby) (((uint64_t)(v)) * ((uint32_t)(multby)))
/* Packing macros to support compilers such as MSVC that lack
* __attribute__((packed)) */
#define PACK_START
#define PACK_STOP
#else #else
#include "biosincludes.h" #include "biosincludes.h"
#endif #endif

View File

@@ -12,7 +12,9 @@
#include "sysincludes.h" #include "sysincludes.h"
PACK_START /* Support packing for MSVC */ #ifdef _MSC_VER
#pragma pack(push,1) /* Support packing for MSVC. */
#endif
#define GPT_HEADER_SIGNATURE "EFI PART" #define GPT_HEADER_SIGNATURE "EFI PART"
#define GPT_HEADER_SIGNATURE_SIZE sizeof(GPT_HEADER_SIGNATURE) #define GPT_HEADER_SIGNATURE_SIZE sizeof(GPT_HEADER_SIGNATURE)
@@ -115,6 +117,8 @@ typedef struct {
#define GPTENTRY_EXPECTED_SIZE 128 #define GPTENTRY_EXPECTED_SIZE 128
PACK_STOP /* Support packing for MSVC */ #ifdef _MSC_VER
#pragma pack(pop) /* Support packing for MSVC. */
#endif
#endif /* VBOOT_REFERENCE_CGPTLIB_GPT_H_ */ #endif /* VBOOT_REFERENCE_CGPTLIB_GPT_H_ */

View File

@@ -11,7 +11,9 @@
#include "sysincludes.h" #include "sysincludes.h"
PACK_START /* Support packing for MSVC */ #ifdef _MSC_VER
#pragma pack(push, 1) /* Support packing for MSVC. */
#endif
/* Public key data */ /* Public key data */
typedef struct VbPublicKey { typedef struct VbPublicKey {
@@ -131,7 +133,8 @@ typedef struct VbKernelPreambleHeader {
#define EXPECTED_VBKERNELPREAMBLEHEADER_SIZE 96 #define EXPECTED_VBKERNELPREAMBLEHEADER_SIZE 96
#ifdef _MSC_VER
PACK_STOP /* Support packing for MSVC */ #pragma pack(pop) /* Support packing for MSVC. */
#endif
#endif /* VBOOT_REFERENCE_VBOOT_STRUCT_H_ */ #endif /* VBOOT_REFERENCE_VBOOT_STRUCT_H_ */

View File

@@ -51,16 +51,22 @@ int LoadFirmware(LoadFirmwareParams* params) {
debug("LoadFirmware started...\n"); debug("LoadFirmware started...\n");
/* Must have a root key */ /* Must have a root key */
if (!root_key) if (!root_key) {
debug("No root key\n");
return LOAD_FIRMWARE_RECOVERY; return LOAD_FIRMWARE_RECOVERY;
}
/* Initialize the TPM and read rollback indices. */ /* Initialize the TPM and read rollback indices. */
/* TODO: fix SetupTPM parameter for developer mode */ /* TODO: fix SetupTPM parameter for developer mode */
if (0 != SetupTPM(RO_NORMAL_MODE, 0) ) if (0 != SetupTPM(RO_NORMAL_MODE, 0)) {
debug("SetupTPM failed\n");
return LOAD_FIRMWARE_RECOVERY; return LOAD_FIRMWARE_RECOVERY;
}
if (0 != GetStoredVersions(FIRMWARE_VERSIONS, if (0 != GetStoredVersions(FIRMWARE_VERSIONS,
&tpm_key_version, &tpm_fw_version)) &tpm_key_version, &tpm_fw_version)) {
debug("Unable to get stored versions.\n");
return LOAD_FIRMWARE_RECOVERY; return LOAD_FIRMWARE_RECOVERY;
}
/* Allocate our internal data */ /* Allocate our internal data */
lfi = (VbLoadFirmwareInternal*)Malloc(sizeof(VbLoadFirmwareInternal)); lfi = (VbLoadFirmwareInternal*)Malloc(sizeof(VbLoadFirmwareInternal));
@@ -85,18 +91,24 @@ int LoadFirmware(LoadFirmwareParams* params) {
key_block = (VbKeyBlockHeader*)params->verification_block_1; key_block = (VbKeyBlockHeader*)params->verification_block_1;
vblock_size = params->verification_size_1; vblock_size = params->verification_size_1;
} }
if ((0 != KeyBlockVerify(key_block, vblock_size, root_key))) if ((0 != KeyBlockVerify(key_block, vblock_size, root_key))) {
debug("Key block verification failed.\n");
continue; continue;
}
/* Check for rollback of key version. */ /* Check for rollback of key version. */
key_version = key_block->data_key.key_version; key_version = key_block->data_key.key_version;
if (key_version < tpm_key_version) if (key_version < tpm_key_version) {
debug("Key rollback detected.\n");
continue; continue;
}
/* Get the key for preamble/data verification from the key block. */ /* Get the key for preamble/data verification from the key block. */
data_key = PublicKeyToRSA(&key_block->data_key); data_key = PublicKeyToRSA(&key_block->data_key);
if (!data_key) if (!data_key) {
debug("Unable to parse data key.\n");
continue; continue;
}
/* Verify the preamble, which follows the key block. */ /* Verify the preamble, which follows the key block. */
preamble = (VbFirmwarePreambleHeader*)((uint8_t*)key_block + preamble = (VbFirmwarePreambleHeader*)((uint8_t*)key_block +
@@ -104,6 +116,7 @@ int LoadFirmware(LoadFirmwareParams* params) {
if ((0 != VerifyFirmwarePreamble2(preamble, if ((0 != VerifyFirmwarePreamble2(preamble,
vblock_size - key_block->key_block_size, vblock_size - key_block->key_block_size,
data_key))) { data_key))) {
debug("Preamble verfication failed.\n");
RSAPublicKeyFree(data_key); RSAPublicKeyFree(data_key);
continue; continue;
} }
@@ -111,6 +124,7 @@ int LoadFirmware(LoadFirmwareParams* params) {
/* Check for rollback of firmware version. */ /* Check for rollback of firmware version. */
if (key_version == tpm_key_version && if (key_version == tpm_key_version &&
preamble->firmware_version < tpm_fw_version) { preamble->firmware_version < tpm_fw_version) {
debug("Firmware version rollback detected.\n");
RSAPublicKeyFree(data_key); RSAPublicKeyFree(data_key);
continue; continue;
} }
@@ -134,8 +148,14 @@ int LoadFirmware(LoadFirmwareParams* params) {
/* Read the firmware data */ /* Read the firmware data */
DigestInit(&lfi->body_digest_context, data_key->algorithm); DigestInit(&lfi->body_digest_context, data_key->algorithm);
lfi->body_size_accum = 0; lfi->body_size_accum = 0;
if ((0 != GetFirmwareBody(params, index)) || if (0 != GetFirmwareBody(params, index)) {
(lfi->body_size_accum != preamble->body_signature.data_size)) { debug("GetFirmwareBody() failed for index %d\n", index);
RSAPublicKeyFree(data_key);
continue;
}
if (lfi->body_size_accum != preamble->body_signature.data_size) {
debug("Hash updated %d bytes but expected %d\n",
(int)lfi->body_size_accum, (int)preamble->body_signature.data_size);
RSAPublicKeyFree(data_key); RSAPublicKeyFree(data_key);
continue; continue;
} }
@@ -143,6 +163,7 @@ int LoadFirmware(LoadFirmwareParams* params) {
/* Verify firmware data */ /* Verify firmware data */
body_digest = DigestFinal(&lfi->body_digest_context); body_digest = DigestFinal(&lfi->body_digest_context);
if (0 != VerifyDigest(body_digest, &preamble->body_signature, data_key)) { if (0 != VerifyDigest(body_digest, &preamble->body_signature, data_key)) {
debug("Firmware body verification failed.\n");
RSAPublicKeyFree(data_key); RSAPublicKeyFree(data_key);
Free(body_digest); Free(body_digest);
continue; continue;
@@ -153,6 +174,7 @@ int LoadFirmware(LoadFirmwareParams* params) {
Free(body_digest); Free(body_digest);
/* If we're still here, the firmware is valid. */ /* If we're still here, the firmware is valid. */
debug("Firmware %d is valid.\n", index);
if (-1 == good_index) { if (-1 == good_index) {
VbPublicKey *kdest = (VbPublicKey*)params->kernel_sign_key_blob; VbPublicKey *kdest = (VbPublicKey*)params->kernel_sign_key_blob;
@@ -160,9 +182,11 @@ int LoadFirmware(LoadFirmwareParams* params) {
PublicKeyInit(kdest, (uint8_t*)(kdest + 1), PublicKeyInit(kdest, (uint8_t*)(kdest + 1),
(params->kernel_sign_key_size - sizeof(VbPublicKey))); (params->kernel_sign_key_size - sizeof(VbPublicKey)));
if (0 != PublicKeyCopy(kdest, &preamble->kernel_subkey)) if (0 != PublicKeyCopy(kdest, &preamble->kernel_subkey)) {
debug("Kernel subkey too big for buffer.\n");
continue; /* The firmware signature was good, but the public continue; /* The firmware signature was good, but the public
* key was bigger that the caller can handle. */ * key was bigger that the caller can handle. */
}
/* Save the key size we actually used */ /* Save the key size we actually used */
params->kernel_sign_key_size = kdest->key_offset + kdest->key_size; params->kernel_sign_key_size = kdest->key_offset + kdest->key_size;
@@ -195,20 +219,26 @@ int LoadFirmware(LoadFirmwareParams* params) {
lowest_fw_version > tpm_fw_version)) { lowest_fw_version > tpm_fw_version)) {
if (0 != WriteStoredVersions(FIRMWARE_VERSIONS, if (0 != WriteStoredVersions(FIRMWARE_VERSIONS,
(uint16_t)lowest_key_version, (uint16_t)lowest_key_version,
(uint16_t)lowest_fw_version)) (uint16_t)lowest_fw_version)) {
debug("Unable to write stored versions.\n");
return LOAD_FIRMWARE_RECOVERY; return LOAD_FIRMWARE_RECOVERY;
}
} }
/* Lock Firmware TPM rollback indices from further writes. In /* Lock Firmware TPM rollback indices from further writes. In
* this design, this is done by setting the globalLock bit, which * this design, this is done by setting the globalLock bit, which
* is cleared only by TPM_Init at reboot. */ * is cleared only by TPM_Init at reboot. */
if (0 != LockFirmwareVersions()) if (0 != LockFirmwareVersions()) {
debug("Unable to lock firmware versions.\n");
return LOAD_FIRMWARE_RECOVERY; return LOAD_FIRMWARE_RECOVERY;
}
/* Success */ /* Success */
debug("Will boot firmware index %d\n", (int)params->firmware_index);
return LOAD_FIRMWARE_SUCCESS; return LOAD_FIRMWARE_SUCCESS;
} }
/* If we're still here, no good firmware, so go to recovery mode. */ /* If we're still here, no good firmware, so go to recovery mode. */
debug("Alas, no good firmware.\n");
return LOAD_FIRMWARE_RECOVERY; return LOAD_FIRMWARE_RECOVERY;
} }

View File

@@ -322,7 +322,7 @@ int LoadKernel(LoadKernelParams* params) {
/* TODO: GPT partitions start at 1, but cgptlib starts them at 0. /* TODO: GPT partitions start at 1, but cgptlib starts them at 0.
* Adjust here, until cgptlib is fixed. */ * Adjust here, until cgptlib is fixed. */
good_partition = gpt.current_kernel + 1; good_partition = gpt.current_kernel + 1;
params->partition_number = gpt.current_kernel; params->partition_number = gpt.current_kernel + 1;
params->bootloader_address = preamble->bootloader_address; params->bootloader_address = preamble->bootloader_address;
params->bootloader_size = preamble->bootloader_size; params->bootloader_size = preamble->bootloader_size;
/* If we're in developer or recovery mode, there's no rollback /* If we're in developer or recovery mode, there's no rollback