Gaurav Shah | ce0cc30 | 2010-03-24 13:48:55 -0700 | [diff] [blame] | 1 | /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 2 | * Use of this source code is governed by a BSD-style license that can be |
| 3 | * found in the LICENSE file. |
| 4 | * |
| 5 | */ |
| 6 | |
| 7 | #ifndef VBOOT_REFERENCE_TEST_COMMON_H_ |
| 8 | #define VBOOT_REFERENCE_TEST_COMMON_H_ |
| 9 | |
Gaurav Shah | 3199eed | 2010-03-25 13:04:45 -0700 | [diff] [blame] | 10 | #include <stdint.h> |
| 11 | |
| 12 | #include "firmware_image.h" |
| 13 | #include "kernel_image.h" |
| 14 | |
Gaurav Shah | ce0cc30 | 2010-03-24 13:48:55 -0700 | [diff] [blame] | 15 | extern int gTestSuccess; |
Gaurav Shah | 3199eed | 2010-03-25 13:04:45 -0700 | [diff] [blame] | 16 | /* Return 1 if result is equal to expected_result, else return 0. |
| 17 | * Also update the global gTestSuccess flag if test fails. */ |
| 18 | int TEST_EQ(int result, int expected_result, char* testname); |
| 19 | |
| 20 | /* Test firmware image generation functions. */ |
| 21 | FirmwareImage* GenerateTestFirmwareImage(int algorithm, |
| 22 | const uint8_t* firmware_sign_key, |
| 23 | int firmware_key_version, |
| 24 | int firmware_version, |
Gaurav Shah | e450be4 | 2010-03-29 21:27:08 -0700 | [diff] [blame^] | 25 | uint64_t firmware_len, |
Gaurav Shah | 3199eed | 2010-03-25 13:04:45 -0700 | [diff] [blame] | 26 | const char* root_key_file, |
Gaurav Shah | 463be3f | 2010-03-29 16:13:45 -0700 | [diff] [blame] | 27 | const char* firmware_key_file, |
| 28 | uint8_t firmware_data_fill_char); |
Gaurav Shah | 3199eed | 2010-03-25 13:04:45 -0700 | [diff] [blame] | 29 | uint8_t* GenerateTestFirmwareBlob(int algorithm, |
| 30 | const uint8_t* firmware_sign_key, |
| 31 | int firmware_key_version, |
| 32 | int firmware_version, |
Gaurav Shah | e450be4 | 2010-03-29 21:27:08 -0700 | [diff] [blame^] | 33 | uint64_t firmware_len, |
Gaurav Shah | 3199eed | 2010-03-25 13:04:45 -0700 | [diff] [blame] | 34 | const char* root_key_file, |
| 35 | const char* firmware_key_file); |
| 36 | |
| 37 | /* Test kernel image generation functions. */ |
| 38 | KernelImage* GenerateTestKernelImage(int firmware_sign_algorithm, |
| 39 | int kernel_sign_algorithm, |
| 40 | const uint8_t* kernel_sign_key, |
| 41 | int kernel_key_version, |
| 42 | int kernel_version, |
Gaurav Shah | e450be4 | 2010-03-29 21:27:08 -0700 | [diff] [blame^] | 43 | uint64_t kernel_len, |
Gaurav Shah | 3199eed | 2010-03-25 13:04:45 -0700 | [diff] [blame] | 44 | const char* firmware_key_file, |
Gaurav Shah | 463be3f | 2010-03-29 16:13:45 -0700 | [diff] [blame] | 45 | const char* kernel_key_file, |
| 46 | uint8_t kernel_data_fill_char); |
| 47 | ; |
Gaurav Shah | 3199eed | 2010-03-25 13:04:45 -0700 | [diff] [blame] | 48 | uint8_t* GenerateTestKernelBlob(int firmware_sign_algorithm, |
| 49 | int kernel_sign_algorithm, |
| 50 | const uint8_t* kernel_sign_key, |
| 51 | int kernel_key_version, |
| 52 | int kernel_version, |
Gaurav Shah | e450be4 | 2010-03-29 21:27:08 -0700 | [diff] [blame^] | 53 | uint64_t kernel_len, |
Gaurav Shah | 3199eed | 2010-03-25 13:04:45 -0700 | [diff] [blame] | 54 | const char* firmware_key_file, |
| 55 | const char* kernel_key_file); |
Gaurav Shah | a82bf26 | 2010-03-26 10:38:08 -0700 | [diff] [blame] | 56 | |
Gaurav Shah | 3199eed | 2010-03-25 13:04:45 -0700 | [diff] [blame] | 57 | /* Generates a test firmware image for rollback tests with a given |
| 58 | * [firmware_key_version] and [firmware_version]. If [is_corrupt] is 1, |
| 59 | * then the image has invalid signatures and will fail verification. */ |
Gaurav Shah | a82bf26 | 2010-03-26 10:38:08 -0700 | [diff] [blame] | 60 | uint8_t* GenerateRollbackTestFirmwareBlob(int firmware_key_version, |
| 61 | int firmware_version, |
| 62 | int is_corrupt); |
Gaurav Shah | ce0cc30 | 2010-03-24 13:48:55 -0700 | [diff] [blame] | 63 | |
Gaurav Shah | a82bf26 | 2010-03-26 10:38:08 -0700 | [diff] [blame] | 64 | /* Generates a test kernel iamge for rollback tests with a given |
| 65 | * [kernel_key_version} and [kernel_version]. If [is_corrupt] is 1, |
| 66 | * then the image has invalid signatures and will fail verification. */ |
| 67 | uint8_t* GenerateRollbackTestKernelBlob(int kernel_key_version, |
| 68 | int kernel_version, |
| 69 | int is_corrupt); |
Gaurav Shah | ce0cc30 | 2010-03-24 13:48:55 -0700 | [diff] [blame] | 70 | #endif /* VBOOT_REFERENCE_TEST_COMMON_H_ */ |