OLD | NEW |
1 /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 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 | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 * | 4 * |
5 * Mock rollback index library for testing. | 5 * Mock rollback index library for testing. |
6 */ | 6 */ |
7 | 7 |
8 #include "rollback_index.h" | 8 #include "rollback_index.h" |
9 | 9 |
10 #include <stdint.h> | 10 #include <stdint.h> |
11 #include <stdio.h> | 11 #include <stdio.h> |
12 | 12 |
13 uint16_t g_firmware_key_version = 0; | 13 uint16_t g_firmware_key_version = 0; |
14 uint16_t g_firmware_version = 0; | 14 uint16_t g_firmware_version = 0; |
15 uint16_t g_kernel_key_version = 0; | 15 uint16_t g_kernel_key_version = 0; |
16 uint16_t g_kernel_version = 0; | 16 uint16_t g_kernel_version = 0; |
17 | 17 |
18 void SetupTPM(void) { | 18 void SetupTPM(void) { |
19 #ifndef NDEBUG | 19 #ifndef NDEBUG |
20 fprintf(stderr, "Rollback Index Library Mock: TPM initialized.\n"); | 20 debug("Rollback Index Library Mock: TPM initialized.\n"); |
21 #endif | 21 #endif |
22 } | 22 } |
23 | 23 |
24 uint16_t GetStoredVersion(int type) { | 24 uint16_t GetStoredVersion(int type) { |
25 switch (type) { | 25 switch (type) { |
26 case FIRMWARE_KEY_VERSION: | 26 case FIRMWARE_KEY_VERSION: |
27 return g_firmware_key_version; | 27 return g_firmware_key_version; |
28 break; | 28 break; |
29 case FIRMWARE_VERSION: | 29 case FIRMWARE_VERSION: |
30 return g_firmware_version; | 30 return g_firmware_version; |
(...skipping 17 matching lines...) Expand all Loading... |
48 g_firmware_version = version; | 48 g_firmware_version = version; |
49 break; | 49 break; |
50 case KERNEL_KEY_VERSION: | 50 case KERNEL_KEY_VERSION: |
51 g_kernel_key_version = version; | 51 g_kernel_key_version = version; |
52 break; | 52 break; |
53 case KERNEL_VERSION: | 53 case KERNEL_VERSION: |
54 g_kernel_version = version; | 54 g_kernel_version = version; |
55 break; | 55 break; |
56 } | 56 } |
57 #ifndef NDEBUG | 57 #ifndef NDEBUG |
58 fprintf(stderr, "Rollback Index Library Mock: Stored Version written.\n"); | 58 debug("Rollback Index Library Mock: Stored Version written.\n"); |
59 #endif | 59 #endif |
60 return 1; | 60 return 1; |
61 } | 61 } |
62 | 62 |
63 void LockStoredVersion(int type) { | 63 void LockStoredVersion(int type) { |
64 #ifndef NDEBUG | 64 #ifndef NDEBUG |
65 fprintf(stderr, "Rollback Index Library Mock: Version Locked.\n"); | 65 debug("Rollback Index Library Mock: Version Locked.\n"); |
66 #endif | 66 #endif |
67 } | 67 } |
OLD | NEW |