Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Defines APIs that allow an OS to interact with UEFI firmware to query |
| 4 | * information about the device. |
| 5 | * https://trustedcomputinggroup.org/resource/tcg-efi-protocol-specification/ |
| 6 | * |
| 7 | * Copyright (c) 2020, Linaro Limited |
| 8 | */ |
| 9 | |
| 10 | #define LOG_CATEGORY LOGC_EFI |
| 11 | #include <common.h> |
| 12 | #include <dm.h> |
| 13 | #include <efi_loader.h> |
Heinrich Schuchardt | a45dac1 | 2021-09-09 08:50:01 +0200 | [diff] [blame] | 14 | #include <efi_variable.h> |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 15 | #include <efi_tcg2.h> |
| 16 | #include <log.h> |
Masahisa Kojima | 163a0d7 | 2021-05-26 12:09:58 +0900 | [diff] [blame] | 17 | #include <malloc.h> |
Masahisa Kojima | 3d49ee8 | 2021-10-26 17:27:24 +0900 | [diff] [blame] | 18 | #include <smbios.h> |
Pali Rohár | bdfb6d7 | 2021-08-02 15:18:31 +0200 | [diff] [blame] | 19 | #include <version_string.h> |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 20 | #include <tpm-v2.h> |
Ilias Apalodimas | d6b55a4 | 2021-11-18 10:13:42 +0200 | [diff] [blame] | 21 | #include <tpm_api.h> |
Masahisa Kojima | 163a0d7 | 2021-05-26 12:09:58 +0900 | [diff] [blame] | 22 | #include <u-boot/hash-checksum.h> |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 23 | #include <u-boot/sha1.h> |
| 24 | #include <u-boot/sha256.h> |
| 25 | #include <u-boot/sha512.h> |
Masahisa Kojima | 14cbb33 | 2021-11-03 11:04:09 +0900 | [diff] [blame] | 26 | #include <linux/unaligned/be_byteshift.h> |
| 27 | #include <linux/unaligned/le_byteshift.h> |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 28 | #include <linux/unaligned/generic.h> |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 29 | #include <hexdump.h> |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 30 | |
Ilias Apalodimas | 5ba0397 | 2021-11-18 09:03:39 +0200 | [diff] [blame] | 31 | /** |
| 32 | * struct event_log_buffer - internal eventlog management structure |
| 33 | * |
| 34 | * @buffer: eventlog buffer |
| 35 | * @final_buffer: finalevent config table buffer |
| 36 | * @pos: current position of 'buffer' |
| 37 | * @final_pos: current position of 'final_buffer' |
| 38 | * @get_event_called: true if GetEventLog has been invoked at least once |
| 39 | * @ebs_called: true if ExitBootServices has been invoked |
| 40 | * @truncated: true if the 'buffer' is truncated |
| 41 | */ |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 42 | struct event_log_buffer { |
| 43 | void *buffer; |
| 44 | void *final_buffer; |
| 45 | size_t pos; /* eventlog position */ |
| 46 | size_t final_pos; /* final events config table position */ |
| 47 | size_t last_event_size; |
| 48 | bool get_event_called; |
Ilias Apalodimas | 5ba0397 | 2021-11-18 09:03:39 +0200 | [diff] [blame] | 49 | bool ebs_called; |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 50 | bool truncated; |
| 51 | }; |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 52 | |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 53 | static struct event_log_buffer event_log; |
Masahisa Kojima | 8fc4e0b | 2021-08-13 16:12:40 +0900 | [diff] [blame] | 54 | static bool tcg2_efi_app_invoked; |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 55 | /* |
| 56 | * When requesting TPM2_CAP_TPM_PROPERTIES the value is on a standard offset. |
| 57 | * Since the current tpm2_get_capability() response buffers starts at |
| 58 | * 'union tpmu_capabilities data' of 'struct tpms_capability_data', calculate |
| 59 | * the response size and offset once for all consumers |
| 60 | */ |
| 61 | #define TPM2_RESPONSE_BUFFER_SIZE (sizeof(struct tpms_capability_data) - \ |
| 62 | offsetof(struct tpms_capability_data, data)) |
| 63 | #define properties_offset (offsetof(struct tpml_tagged_tpm_property, tpm_property) + \ |
| 64 | offsetof(struct tpms_tagged_property, value)) |
| 65 | |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 66 | static const efi_guid_t efi_guid_tcg2_protocol = EFI_TCG2_PROTOCOL_GUID; |
| 67 | static const efi_guid_t efi_guid_final_events = EFI_TCG2_FINAL_EVENTS_TABLE_GUID; |
| 68 | |
| 69 | struct digest_info { |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 70 | u16 hash_alg; |
| 71 | u32 hash_mask; |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 72 | u16 hash_len; |
| 73 | }; |
| 74 | |
Ilias Apalodimas | 1f6871d | 2021-05-25 14:35:31 +0300 | [diff] [blame] | 75 | static const struct digest_info hash_algo_list[] = { |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 76 | { |
| 77 | TPM2_ALG_SHA1, |
| 78 | EFI_TCG2_BOOT_HASH_ALG_SHA1, |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 79 | TPM2_SHA1_DIGEST_SIZE, |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 80 | }, |
| 81 | { |
| 82 | TPM2_ALG_SHA256, |
| 83 | EFI_TCG2_BOOT_HASH_ALG_SHA256, |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 84 | TPM2_SHA256_DIGEST_SIZE, |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 85 | }, |
| 86 | { |
| 87 | TPM2_ALG_SHA384, |
| 88 | EFI_TCG2_BOOT_HASH_ALG_SHA384, |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 89 | TPM2_SHA384_DIGEST_SIZE, |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 90 | }, |
| 91 | { |
| 92 | TPM2_ALG_SHA512, |
| 93 | EFI_TCG2_BOOT_HASH_ALG_SHA512, |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 94 | TPM2_SHA512_DIGEST_SIZE, |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 95 | }, |
| 96 | }; |
| 97 | |
Masahisa Kojima | 96485d2 | 2021-10-26 17:27:26 +0900 | [diff] [blame] | 98 | struct variable_info { |
| 99 | const u16 *name; |
| 100 | bool accept_empty; |
Masahisa Kojima | 65aa259 | 2021-10-26 17:27:27 +0900 | [diff] [blame] | 101 | u32 pcr_index; |
Masahisa Kojima | 96485d2 | 2021-10-26 17:27:26 +0900 | [diff] [blame] | 102 | }; |
| 103 | |
| 104 | static struct variable_info secure_variables[] = { |
Masahisa Kojima | 65aa259 | 2021-10-26 17:27:27 +0900 | [diff] [blame] | 105 | {u"SecureBoot", true, 7}, |
| 106 | {u"PK", true, 7}, |
| 107 | {u"KEK", true, 7}, |
| 108 | {u"db", true, 7}, |
| 109 | {u"dbx", true, 7}, |
| 110 | {u"dbt", false, 7}, |
| 111 | {u"dbr", false, 7}, |
| 112 | {u"DeployedMode", false, 1}, |
| 113 | {u"AuditMode", false, 1}, |
Masahisa Kojima | cfbcf05 | 2021-08-13 16:12:39 +0900 | [diff] [blame] | 114 | }; |
| 115 | |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 116 | #define MAX_HASH_COUNT ARRAY_SIZE(hash_algo_list) |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 117 | |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 118 | /** |
| 119 | * alg_to_mask - Get a TCG hash mask for algorithms |
| 120 | * |
| 121 | * @hash_alg: TCG defined algorithm |
| 122 | * |
| 123 | * @Return: TCG hashing algorithm bitmaps, 0 if the algorithm is not supported |
| 124 | */ |
| 125 | static u32 alg_to_mask(u16 hash_alg) |
| 126 | { |
Ilias Apalodimas | 1f6871d | 2021-05-25 14:35:31 +0300 | [diff] [blame] | 127 | size_t i; |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 128 | |
| 129 | for (i = 0; i < MAX_HASH_COUNT; i++) { |
| 130 | if (hash_algo_list[i].hash_alg == hash_alg) |
| 131 | return hash_algo_list[i].hash_mask; |
| 132 | } |
| 133 | |
| 134 | return 0; |
| 135 | } |
| 136 | |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 137 | /** |
| 138 | * alg_to_len - Get a TCG hash len for algorithms |
| 139 | * |
| 140 | * @hash_alg: TCG defined algorithm |
| 141 | * |
| 142 | * @Return: len of chosen algorithm, 0 if the algorithm is not supported |
| 143 | */ |
| 144 | static u16 alg_to_len(u16 hash_alg) |
| 145 | { |
Ilias Apalodimas | 1f6871d | 2021-05-25 14:35:31 +0300 | [diff] [blame] | 146 | size_t i; |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 147 | |
| 148 | for (i = 0; i < MAX_HASH_COUNT; i++) { |
| 149 | if (hash_algo_list[i].hash_alg == hash_alg) |
| 150 | return hash_algo_list[i].hash_len; |
| 151 | } |
| 152 | |
| 153 | return 0; |
| 154 | } |
| 155 | |
Masahisa Kojima | 54bec17 | 2021-12-07 14:15:31 +0900 | [diff] [blame] | 156 | static bool is_tcg2_protocol_installed(void) |
| 157 | { |
| 158 | struct efi_handler *handler; |
| 159 | efi_status_t ret; |
| 160 | |
| 161 | ret = efi_search_protocol(efi_root, &efi_guid_tcg2_protocol, &handler); |
| 162 | return ret == EFI_SUCCESS; |
| 163 | } |
| 164 | |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 165 | static u32 tcg_event_final_size(struct tpml_digest_values *digest_list) |
| 166 | { |
| 167 | u32 len; |
Ilias Apalodimas | 1f6871d | 2021-05-25 14:35:31 +0300 | [diff] [blame] | 168 | size_t i; |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 169 | |
| 170 | len = offsetof(struct tcg_pcr_event2, digests); |
| 171 | len += offsetof(struct tpml_digest_values, digests); |
| 172 | for (i = 0; i < digest_list->count; i++) { |
| 173 | u16 hash_alg = digest_list->digests[i].hash_alg; |
| 174 | |
| 175 | len += offsetof(struct tpmt_ha, digest); |
| 176 | len += alg_to_len(hash_alg); |
| 177 | } |
| 178 | len += sizeof(u32); /* tcg_pcr_event2 event_size*/ |
| 179 | |
| 180 | return len; |
| 181 | } |
| 182 | |
| 183 | /* tcg2_pcr_extend - Extend PCRs for a TPM2 device for a given tpml_digest_values |
| 184 | * |
| 185 | * @dev: device |
| 186 | * @digest_list: list of digest algorithms to extend |
| 187 | * |
| 188 | * @Return: status code |
| 189 | */ |
| 190 | static efi_status_t tcg2_pcr_extend(struct udevice *dev, u32 pcr_index, |
| 191 | struct tpml_digest_values *digest_list) |
| 192 | { |
| 193 | u32 rc; |
Ilias Apalodimas | 1f6871d | 2021-05-25 14:35:31 +0300 | [diff] [blame] | 194 | size_t i; |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 195 | |
| 196 | for (i = 0; i < digest_list->count; i++) { |
| 197 | u32 alg = digest_list->digests[i].hash_alg; |
| 198 | |
| 199 | rc = tpm2_pcr_extend(dev, pcr_index, alg, |
| 200 | (u8 *)&digest_list->digests[i].digest, |
| 201 | alg_to_len(alg)); |
| 202 | if (rc) { |
| 203 | EFI_PRINT("Failed to extend PCR\n"); |
| 204 | return EFI_DEVICE_ERROR; |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | return EFI_SUCCESS; |
| 209 | } |
| 210 | |
Ruchika Gupta | c0d9bb0 | 2021-11-29 13:09:46 +0530 | [diff] [blame] | 211 | /* tcg2_pcr_read - Read PCRs for a TPM2 device for a given tpml_digest_values |
| 212 | * |
| 213 | * @dev: device |
| 214 | * @pcr_index: PCR index |
| 215 | * @digest_list: list of digest algorithms to extend |
| 216 | * |
| 217 | * @Return: status code |
| 218 | */ |
| 219 | static efi_status_t tcg2_pcr_read(struct udevice *dev, u32 pcr_index, |
| 220 | struct tpml_digest_values *digest_list) |
| 221 | { |
| 222 | struct tpm_chip_priv *priv; |
| 223 | unsigned int updates, pcr_select_min; |
| 224 | u32 rc; |
| 225 | size_t i; |
| 226 | |
| 227 | priv = dev_get_uclass_priv(dev); |
| 228 | if (!priv) |
| 229 | return EFI_DEVICE_ERROR; |
| 230 | |
| 231 | pcr_select_min = priv->pcr_select_min; |
| 232 | |
| 233 | for (i = 0; i < digest_list->count; i++) { |
| 234 | u16 hash_alg = digest_list->digests[i].hash_alg; |
| 235 | u8 *digest = (u8 *)&digest_list->digests[i].digest; |
| 236 | |
| 237 | rc = tpm2_pcr_read(dev, pcr_index, pcr_select_min, |
| 238 | hash_alg, digest, alg_to_len(hash_alg), |
| 239 | &updates); |
| 240 | if (rc) { |
| 241 | EFI_PRINT("Failed to read PCR\n"); |
| 242 | return EFI_DEVICE_ERROR; |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | return EFI_SUCCESS; |
| 247 | } |
| 248 | |
Ilias Apalodimas | 5ba0397 | 2021-11-18 09:03:39 +0200 | [diff] [blame] | 249 | /* put_event - Append an agile event to an eventlog |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 250 | * |
| 251 | * @pcr_index: PCR index |
| 252 | * @event_type: type of event added |
| 253 | * @digest_list: list of digest algorithms to add |
| 254 | * @size: size of event |
| 255 | * @event: event to add |
Ilias Apalodimas | 5ba0397 | 2021-11-18 09:03:39 +0200 | [diff] [blame] | 256 | * @log: log buffer to append the event |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 257 | * |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 258 | */ |
Ilias Apalodimas | 5ba0397 | 2021-11-18 09:03:39 +0200 | [diff] [blame] | 259 | static void put_event(u32 pcr_index, u32 event_type, |
| 260 | struct tpml_digest_values *digest_list, u32 size, |
| 261 | u8 event[], void *log) |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 262 | { |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 263 | size_t pos; |
Ilias Apalodimas | 1f6871d | 2021-05-25 14:35:31 +0300 | [diff] [blame] | 264 | size_t i; |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 265 | u32 event_size; |
| 266 | |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 267 | /* |
| 268 | * size refers to the length of event[] only, we need to check against |
| 269 | * the final tcg_pcr_event2 size |
| 270 | */ |
| 271 | event_size = size + tcg_event_final_size(digest_list); |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 272 | |
| 273 | put_unaligned_le32(pcr_index, log); |
| 274 | pos = offsetof(struct tcg_pcr_event2, event_type); |
Ilias Apalodimas | f8cd72d | 2021-03-30 00:42:36 +0300 | [diff] [blame] | 275 | put_unaligned_le32(event_type, (void *)((uintptr_t)log + pos)); |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 276 | pos = offsetof(struct tcg_pcr_event2, digests); /* count */ |
Ilias Apalodimas | f8cd72d | 2021-03-30 00:42:36 +0300 | [diff] [blame] | 277 | put_unaligned_le32(digest_list->count, (void *)((uintptr_t)log + pos)); |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 278 | |
| 279 | pos += offsetof(struct tpml_digest_values, digests); |
| 280 | for (i = 0; i < digest_list->count; i++) { |
| 281 | u16 hash_alg = digest_list->digests[i].hash_alg; |
| 282 | u8 *digest = (u8 *)&digest_list->digests[i].digest; |
| 283 | |
Ilias Apalodimas | f8cd72d | 2021-03-30 00:42:36 +0300 | [diff] [blame] | 284 | put_unaligned_le16(hash_alg, (void *)((uintptr_t)log + pos)); |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 285 | pos += offsetof(struct tpmt_ha, digest); |
Ilias Apalodimas | f8cd72d | 2021-03-30 00:42:36 +0300 | [diff] [blame] | 286 | memcpy((void *)((uintptr_t)log + pos), digest, alg_to_len(hash_alg)); |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 287 | pos += alg_to_len(hash_alg); |
| 288 | } |
| 289 | |
Ilias Apalodimas | f8cd72d | 2021-03-30 00:42:36 +0300 | [diff] [blame] | 290 | put_unaligned_le32(size, (void *)((uintptr_t)log + pos)); |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 291 | pos += sizeof(u32); /* tcg_pcr_event2 event_size*/ |
Ilias Apalodimas | f8cd72d | 2021-03-30 00:42:36 +0300 | [diff] [blame] | 292 | memcpy((void *)((uintptr_t)log + pos), event, size); |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 293 | pos += size; |
| 294 | |
Ilias Apalodimas | 5ba0397 | 2021-11-18 09:03:39 +0200 | [diff] [blame] | 295 | /* |
| 296 | * make sure the calculated buffer is what we checked against |
| 297 | * This check should never fail. It checks the code above is |
| 298 | * calculating the right length for the event we are adding |
| 299 | */ |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 300 | if (pos != event_size) |
Ilias Apalodimas | 5ba0397 | 2021-11-18 09:03:39 +0200 | [diff] [blame] | 301 | log_err("Appending to the EventLog failed\n"); |
| 302 | } |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 303 | |
Ilias Apalodimas | 5ba0397 | 2021-11-18 09:03:39 +0200 | [diff] [blame] | 304 | /* tcg2_agile_log_append - Append an agile event to an eventlog |
| 305 | * |
| 306 | * @pcr_index: PCR index |
| 307 | * @event_type: type of event added |
| 308 | * @digest_list: list of digest algorithms to add |
| 309 | * @size: size of event |
| 310 | * @event: event to add |
| 311 | * @log: log buffer to append the event |
| 312 | * |
| 313 | * @Return: status code |
| 314 | */ |
| 315 | static efi_status_t tcg2_agile_log_append(u32 pcr_index, u32 event_type, |
| 316 | struct tpml_digest_values *digest_list, |
| 317 | u32 size, u8 event[]) |
| 318 | { |
| 319 | void *log = (void *)((uintptr_t)event_log.buffer + event_log.pos); |
| 320 | u32 event_size = size + tcg_event_final_size(digest_list); |
| 321 | struct efi_tcg2_final_events_table *final_event; |
| 322 | efi_status_t ret = EFI_SUCCESS; |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 323 | |
Ilias Apalodimas | 5ba0397 | 2021-11-18 09:03:39 +0200 | [diff] [blame] | 324 | /* if ExitBootServices hasn't been called update the normal log */ |
| 325 | if (!event_log.ebs_called) { |
| 326 | if (event_log.truncated || |
| 327 | event_log.pos + event_size > TPM2_EVENT_LOG_SIZE) { |
| 328 | event_log.truncated = true; |
| 329 | return EFI_VOLUME_FULL; |
| 330 | } |
| 331 | put_event(pcr_index, event_type, digest_list, size, event, log); |
| 332 | event_log.pos += event_size; |
| 333 | event_log.last_event_size = event_size; |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 334 | } |
| 335 | |
Ilias Apalodimas | 5ba0397 | 2021-11-18 09:03:39 +0200 | [diff] [blame] | 336 | if (!event_log.get_event_called) |
| 337 | return ret; |
| 338 | |
| 339 | /* if GetEventLog has been called update FinalEventLog as well */ |
| 340 | if (event_log.final_pos + event_size > TPM2_EVENT_LOG_SIZE) |
| 341 | return EFI_VOLUME_FULL; |
| 342 | |
| 343 | log = (void *)((uintptr_t)event_log.final_buffer + event_log.final_pos); |
| 344 | put_event(pcr_index, event_type, digest_list, size, event, log); |
| 345 | |
| 346 | final_event = event_log.final_buffer; |
| 347 | final_event->number_of_events++; |
| 348 | event_log.final_pos += event_size; |
| 349 | |
| 350 | return ret; |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 351 | } |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 352 | |
| 353 | /** |
| 354 | * platform_get_tpm_device() - retrieve TPM device |
| 355 | * |
| 356 | * This function retrieves the udevice implementing a TPM |
| 357 | * |
| 358 | * This function may be overridden if special initialization is needed. |
| 359 | * |
| 360 | * @dev: udevice |
| 361 | * Return: status code |
| 362 | */ |
| 363 | __weak efi_status_t platform_get_tpm2_device(struct udevice **dev) |
| 364 | { |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 365 | for_each_tpm_device(*dev) { |
| 366 | /* Only support TPMv2 devices */ |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 367 | if (tpm_get_version(*dev) == TPM_V2) |
| 368 | return EFI_SUCCESS; |
| 369 | } |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 370 | |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 371 | return EFI_NOT_FOUND; |
| 372 | } |
| 373 | |
| 374 | /** |
Ruchika Gupta | 34287ef | 2021-11-29 13:09:44 +0530 | [diff] [blame] | 375 | * platform_get_eventlog() - retrieve the eventlog address and size |
| 376 | * |
| 377 | * This function retrieves the eventlog address and size if the underlying |
| 378 | * firmware has done some measurements and passed them. |
| 379 | * |
| 380 | * This function may be overridden based on platform specific method of |
| 381 | * passing the eventlog address and size. |
| 382 | * |
| 383 | * @dev: udevice |
| 384 | * @addr: eventlog address |
| 385 | * @sz: eventlog size |
| 386 | * Return: status code |
| 387 | */ |
| 388 | __weak efi_status_t platform_get_eventlog(struct udevice *dev, u64 *addr, |
| 389 | u32 *sz) |
| 390 | { |
| 391 | const u64 *basep; |
| 392 | const u32 *sizep; |
| 393 | |
| 394 | basep = dev_read_prop(dev, "tpm_event_log_addr", NULL); |
| 395 | if (!basep) |
| 396 | return EFI_NOT_FOUND; |
| 397 | |
| 398 | *addr = be64_to_cpup((__force __be64 *)basep); |
| 399 | |
| 400 | sizep = dev_read_prop(dev, "tpm_event_log_size", NULL); |
| 401 | if (!sizep) |
| 402 | return EFI_NOT_FOUND; |
| 403 | |
| 404 | *sz = be32_to_cpup((__force __be32 *)sizep); |
| 405 | if (*sz == 0) { |
| 406 | log_debug("event log empty\n"); |
| 407 | return EFI_NOT_FOUND; |
| 408 | } |
| 409 | |
| 410 | return EFI_SUCCESS; |
| 411 | } |
| 412 | |
| 413 | /** |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 414 | * tpm2_get_max_command_size() - get the supported max command size |
| 415 | * |
| 416 | * @dev: TPM device |
| 417 | * @max_command_size: output buffer for the size |
| 418 | * |
| 419 | * Return: 0 on success, -1 on error |
| 420 | */ |
| 421 | static int tpm2_get_max_command_size(struct udevice *dev, u16 *max_command_size) |
| 422 | { |
| 423 | u8 response[TPM2_RESPONSE_BUFFER_SIZE]; |
| 424 | u32 ret; |
| 425 | |
| 426 | memset(response, 0, sizeof(response)); |
| 427 | ret = tpm2_get_capability(dev, TPM2_CAP_TPM_PROPERTIES, |
| 428 | TPM2_PT_MAX_COMMAND_SIZE, response, 1); |
| 429 | if (ret) |
| 430 | return -1; |
| 431 | |
| 432 | *max_command_size = (uint16_t)get_unaligned_be32(response + |
| 433 | properties_offset); |
| 434 | |
| 435 | return 0; |
| 436 | } |
| 437 | |
| 438 | /** |
| 439 | * tpm2_get_max_response_size() - get the supported max response size |
| 440 | * |
| 441 | * @dev: TPM device |
| 442 | * @max_response_size: output buffer for the size |
| 443 | * |
| 444 | * Return: 0 on success, -1 on error |
| 445 | */ |
| 446 | static int tpm2_get_max_response_size(struct udevice *dev, |
| 447 | u16 *max_response_size) |
| 448 | { |
| 449 | u8 response[TPM2_RESPONSE_BUFFER_SIZE]; |
| 450 | u32 ret; |
| 451 | |
| 452 | memset(response, 0, sizeof(response)); |
| 453 | ret = tpm2_get_capability(dev, TPM2_CAP_TPM_PROPERTIES, |
| 454 | TPM2_PT_MAX_RESPONSE_SIZE, response, 1); |
| 455 | if (ret) |
| 456 | return -1; |
| 457 | |
| 458 | *max_response_size = (uint16_t)get_unaligned_be32(response + |
| 459 | properties_offset); |
| 460 | |
| 461 | return 0; |
| 462 | } |
| 463 | |
| 464 | /** |
| 465 | * tpm2_get_manufacturer_id() - get the manufacturer ID |
| 466 | * |
| 467 | * @dev: TPM device |
| 468 | * @manufacturer_id: output buffer for the id |
| 469 | * |
| 470 | * Return: 0 on success, -1 on error |
| 471 | */ |
| 472 | static int tpm2_get_manufacturer_id(struct udevice *dev, u32 *manufacturer_id) |
| 473 | { |
| 474 | u8 response[TPM2_RESPONSE_BUFFER_SIZE]; |
| 475 | u32 ret; |
| 476 | |
| 477 | memset(response, 0, sizeof(response)); |
| 478 | ret = tpm2_get_capability(dev, TPM2_CAP_TPM_PROPERTIES, |
| 479 | TPM2_PT_MANUFACTURER, response, 1); |
| 480 | if (ret) |
| 481 | return -1; |
| 482 | |
| 483 | *manufacturer_id = get_unaligned_be32(response + properties_offset); |
| 484 | |
| 485 | return 0; |
| 486 | } |
| 487 | |
| 488 | /** |
| 489 | * tpm2_get_num_pcr() - get the number of PCRs |
| 490 | * |
| 491 | * @dev: TPM device |
| 492 | * @manufacturer_id: output buffer for the number |
| 493 | * |
| 494 | * Return: 0 on success, -1 on error |
| 495 | */ |
| 496 | static int tpm2_get_num_pcr(struct udevice *dev, u32 *num_pcr) |
| 497 | { |
| 498 | u8 response[TPM2_RESPONSE_BUFFER_SIZE]; |
| 499 | u32 ret; |
| 500 | |
| 501 | memset(response, 0, sizeof(response)); |
| 502 | ret = tpm2_get_capability(dev, TPM2_CAP_TPM_PROPERTIES, |
| 503 | TPM2_PT_PCR_COUNT, response, 1); |
| 504 | if (ret) |
| 505 | return -1; |
| 506 | |
| 507 | *num_pcr = get_unaligned_be32(response + properties_offset); |
| 508 | if (*num_pcr > TPM2_MAX_PCRS) |
| 509 | return -1; |
| 510 | |
| 511 | return 0; |
| 512 | } |
| 513 | |
| 514 | /** |
| 515 | * is_active_pcr() - Check if a supported algorithm is active |
| 516 | * |
| 517 | * @dev: TPM device |
| 518 | * @selection: struct of PCR information |
| 519 | * |
| 520 | * Return: true if PCR is active |
| 521 | */ |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 522 | static bool is_active_pcr(struct tpms_pcr_selection *selection) |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 523 | { |
| 524 | int i; |
| 525 | /* |
| 526 | * check the pcr_select. If at least one of the PCRs supports the |
| 527 | * algorithm add it on the active ones |
| 528 | */ |
| 529 | for (i = 0; i < selection->size_of_select; i++) { |
| 530 | if (selection->pcr_select[i]) |
| 531 | return true; |
| 532 | } |
| 533 | |
| 534 | return false; |
| 535 | } |
| 536 | |
| 537 | /** |
| 538 | * tpm2_get_pcr_info() - get the supported, active PCRs and number of banks |
| 539 | * |
| 540 | * @dev: TPM device |
| 541 | * @supported_pcr: bitmask with the algorithms supported |
| 542 | * @active_pcr: bitmask with the active algorithms |
| 543 | * @pcr_banks: number of PCR banks |
| 544 | * |
| 545 | * Return: 0 on success, -1 on error |
| 546 | */ |
| 547 | static int tpm2_get_pcr_info(struct udevice *dev, u32 *supported_pcr, |
| 548 | u32 *active_pcr, u32 *pcr_banks) |
| 549 | { |
| 550 | u8 response[TPM2_RESPONSE_BUFFER_SIZE]; |
| 551 | struct tpml_pcr_selection pcrs; |
| 552 | u32 ret, num_pcr; |
Ilias Apalodimas | 1f6871d | 2021-05-25 14:35:31 +0300 | [diff] [blame] | 553 | size_t i; |
| 554 | int tpm_ret; |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 555 | |
Ilias Apalodimas | 38de680 | 2021-05-26 21:01:00 +0300 | [diff] [blame] | 556 | *supported_pcr = 0; |
| 557 | *active_pcr = 0; |
| 558 | *pcr_banks = 0; |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 559 | memset(response, 0, sizeof(response)); |
| 560 | ret = tpm2_get_capability(dev, TPM2_CAP_PCRS, 0, response, 1); |
| 561 | if (ret) |
| 562 | goto out; |
| 563 | |
| 564 | pcrs.count = get_unaligned_be32(response); |
| 565 | /* |
| 566 | * We only support 5 algorithms for now so check against that |
| 567 | * instead of TPM2_NUM_PCR_BANKS |
| 568 | */ |
| 569 | if (pcrs.count > MAX_HASH_COUNT || pcrs.count < 1) |
| 570 | goto out; |
| 571 | |
| 572 | tpm_ret = tpm2_get_num_pcr(dev, &num_pcr); |
| 573 | if (tpm_ret) |
| 574 | goto out; |
| 575 | |
| 576 | for (i = 0; i < pcrs.count; i++) { |
| 577 | /* |
| 578 | * Definition of TPMS_PCR_SELECTION Structure |
| 579 | * hash: u16 |
| 580 | * size_of_select: u8 |
| 581 | * pcr_select: u8 array |
| 582 | * |
| 583 | * The offsets depend on the number of the device PCRs |
| 584 | * so we have to calculate them based on that |
| 585 | */ |
| 586 | u32 hash_offset = offsetof(struct tpml_pcr_selection, selection) + |
| 587 | i * offsetof(struct tpms_pcr_selection, pcr_select) + |
| 588 | i * ((num_pcr + 7) / 8); |
| 589 | u32 size_select_offset = |
| 590 | hash_offset + offsetof(struct tpms_pcr_selection, |
| 591 | size_of_select); |
| 592 | u32 pcr_select_offset = |
| 593 | hash_offset + offsetof(struct tpms_pcr_selection, |
| 594 | pcr_select); |
| 595 | |
| 596 | pcrs.selection[i].hash = |
| 597 | get_unaligned_be16(response + hash_offset); |
| 598 | pcrs.selection[i].size_of_select = |
| 599 | __get_unaligned_be(response + size_select_offset); |
| 600 | if (pcrs.selection[i].size_of_select > TPM2_PCR_SELECT_MAX) |
| 601 | goto out; |
| 602 | /* copy the array of pcr_select */ |
| 603 | memcpy(pcrs.selection[i].pcr_select, response + pcr_select_offset, |
| 604 | pcrs.selection[i].size_of_select); |
| 605 | } |
| 606 | |
| 607 | for (i = 0; i < pcrs.count; i++) { |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 608 | u32 hash_mask = alg_to_mask(pcrs.selection[i].hash); |
| 609 | |
| 610 | if (hash_mask) { |
| 611 | *supported_pcr |= hash_mask; |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 612 | if (is_active_pcr(&pcrs.selection[i])) |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 613 | *active_pcr |= hash_mask; |
| 614 | } else { |
| 615 | EFI_PRINT("Unknown algorithm %x\n", pcrs.selection[i].hash); |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 616 | } |
| 617 | } |
| 618 | |
| 619 | *pcr_banks = pcrs.count; |
| 620 | |
| 621 | return 0; |
| 622 | out: |
| 623 | return -1; |
| 624 | } |
| 625 | |
| 626 | /** |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 627 | * __get_active_pcr_banks() - returns the currently active PCR banks |
| 628 | * |
| 629 | * @active_pcr_banks: pointer for receiving the bitmap of currently |
| 630 | * active PCR banks |
| 631 | * |
| 632 | * Return: status code |
| 633 | */ |
| 634 | static efi_status_t __get_active_pcr_banks(u32 *active_pcr_banks) |
| 635 | { |
| 636 | struct udevice *dev; |
Ilias Apalodimas | 38de680 | 2021-05-26 21:01:00 +0300 | [diff] [blame] | 637 | u32 active = 0, supported = 0, pcr_banks = 0; |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 638 | efi_status_t ret; |
| 639 | int err; |
| 640 | |
| 641 | ret = platform_get_tpm2_device(&dev); |
| 642 | if (ret != EFI_SUCCESS) |
| 643 | goto out; |
| 644 | |
| 645 | err = tpm2_get_pcr_info(dev, &supported, &active, &pcr_banks); |
| 646 | if (err) { |
| 647 | ret = EFI_DEVICE_ERROR; |
| 648 | goto out; |
| 649 | } |
| 650 | |
| 651 | *active_pcr_banks = active; |
| 652 | |
| 653 | out: |
| 654 | return ret; |
| 655 | } |
| 656 | |
| 657 | /* tcg2_create_digest - create a list of digests of the supported PCR banks |
| 658 | * for a given memory range |
| 659 | * |
| 660 | * @input: input memory |
| 661 | * @length: length of buffer to calculate the digest |
| 662 | * @digest_list: list of digests to fill in |
| 663 | * |
| 664 | * Return: status code |
| 665 | */ |
| 666 | static efi_status_t tcg2_create_digest(const u8 *input, u32 length, |
| 667 | struct tpml_digest_values *digest_list) |
| 668 | { |
| 669 | sha1_context ctx; |
| 670 | sha256_context ctx_256; |
| 671 | sha512_context ctx_512; |
Masahisa Kojima | b1a7a5e | 2021-04-14 11:55:49 +0900 | [diff] [blame] | 672 | u8 final[TPM2_SHA512_DIGEST_SIZE]; |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 673 | efi_status_t ret; |
| 674 | u32 active; |
Ilias Apalodimas | 1f6871d | 2021-05-25 14:35:31 +0300 | [diff] [blame] | 675 | size_t i; |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 676 | |
| 677 | ret = __get_active_pcr_banks(&active); |
| 678 | if (ret != EFI_SUCCESS) |
| 679 | return ret; |
| 680 | |
| 681 | digest_list->count = 0; |
| 682 | for (i = 0; i < MAX_HASH_COUNT; i++) { |
| 683 | u16 hash_alg = hash_algo_list[i].hash_alg; |
| 684 | |
| 685 | if (!(active & alg_to_mask(hash_alg))) |
| 686 | continue; |
| 687 | switch (hash_alg) { |
| 688 | case TPM2_ALG_SHA1: |
| 689 | sha1_starts(&ctx); |
| 690 | sha1_update(&ctx, input, length); |
| 691 | sha1_finish(&ctx, final); |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 692 | break; |
| 693 | case TPM2_ALG_SHA256: |
| 694 | sha256_starts(&ctx_256); |
| 695 | sha256_update(&ctx_256, input, length); |
| 696 | sha256_finish(&ctx_256, final); |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 697 | break; |
| 698 | case TPM2_ALG_SHA384: |
| 699 | sha384_starts(&ctx_512); |
| 700 | sha384_update(&ctx_512, input, length); |
| 701 | sha384_finish(&ctx_512, final); |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 702 | break; |
| 703 | case TPM2_ALG_SHA512: |
| 704 | sha512_starts(&ctx_512); |
| 705 | sha512_update(&ctx_512, input, length); |
| 706 | sha512_finish(&ctx_512, final); |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 707 | break; |
| 708 | default: |
| 709 | EFI_PRINT("Unsupported algorithm %x\n", hash_alg); |
| 710 | return EFI_INVALID_PARAMETER; |
| 711 | } |
Ruchika Gupta | 346cee3 | 2021-09-14 12:14:31 +0530 | [diff] [blame] | 712 | digest_list->digests[digest_list->count].hash_alg = hash_alg; |
| 713 | memcpy(&digest_list->digests[digest_list->count].digest, final, |
| 714 | (u32)alg_to_len(hash_alg)); |
Ilias Apalodimas | 6fe8b4a | 2021-04-22 14:32:14 +0300 | [diff] [blame] | 715 | digest_list->count++; |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 716 | } |
| 717 | |
| 718 | return EFI_SUCCESS; |
| 719 | } |
| 720 | |
| 721 | /** |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 722 | * efi_tcg2_get_capability() - protocol capability information and state information |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 723 | * |
| 724 | * @this: TCG2 protocol instance |
| 725 | * @capability: caller allocated memory with size field to the size of |
| 726 | * the structure allocated |
| 727 | |
| 728 | * Return: status code |
| 729 | */ |
| 730 | static efi_status_t EFIAPI |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 731 | efi_tcg2_get_capability(struct efi_tcg2_protocol *this, |
| 732 | struct efi_tcg2_boot_service_capability *capability) |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 733 | { |
| 734 | struct udevice *dev; |
| 735 | efi_status_t efi_ret; |
| 736 | int ret; |
| 737 | |
| 738 | EFI_ENTRY("%p, %p", this, capability); |
| 739 | |
| 740 | if (!this || !capability) { |
| 741 | efi_ret = EFI_INVALID_PARAMETER; |
| 742 | goto out; |
| 743 | } |
| 744 | |
Masahisa Kojima | bad49da | 2021-09-06 12:04:12 +0900 | [diff] [blame] | 745 | if (capability->size < BOOT_SERVICE_CAPABILITY_MIN) { |
| 746 | capability->size = BOOT_SERVICE_CAPABILITY_MIN; |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 747 | efi_ret = EFI_BUFFER_TOO_SMALL; |
| 748 | goto out; |
| 749 | } |
| 750 | |
| 751 | if (capability->size < sizeof(*capability)) { |
| 752 | capability->size = sizeof(*capability); |
| 753 | efi_ret = EFI_BUFFER_TOO_SMALL; |
| 754 | goto out; |
| 755 | } |
| 756 | |
| 757 | capability->structure_version.major = 1; |
| 758 | capability->structure_version.minor = 1; |
| 759 | capability->protocol_version.major = 1; |
| 760 | capability->protocol_version.minor = 1; |
| 761 | |
| 762 | efi_ret = platform_get_tpm2_device(&dev); |
| 763 | if (efi_ret != EFI_SUCCESS) { |
| 764 | capability->supported_event_logs = 0; |
| 765 | capability->hash_algorithm_bitmap = 0; |
| 766 | capability->tpm_present_flag = false; |
| 767 | capability->max_command_size = 0; |
| 768 | capability->max_response_size = 0; |
| 769 | capability->manufacturer_id = 0; |
| 770 | capability->number_of_pcr_banks = 0; |
| 771 | capability->active_pcr_banks = 0; |
| 772 | |
| 773 | efi_ret = EFI_SUCCESS; |
| 774 | goto out; |
| 775 | } |
| 776 | |
| 777 | /* We only allow a TPMv2 device to register the EFI protocol */ |
| 778 | capability->supported_event_logs = TCG2_EVENT_LOG_FORMAT_TCG_2; |
| 779 | |
| 780 | capability->tpm_present_flag = true; |
| 781 | |
| 782 | /* Supported and active PCRs */ |
| 783 | capability->hash_algorithm_bitmap = 0; |
| 784 | capability->active_pcr_banks = 0; |
| 785 | ret = tpm2_get_pcr_info(dev, &capability->hash_algorithm_bitmap, |
| 786 | &capability->active_pcr_banks, |
| 787 | &capability->number_of_pcr_banks); |
| 788 | if (ret) { |
| 789 | efi_ret = EFI_DEVICE_ERROR; |
| 790 | goto out; |
| 791 | } |
| 792 | |
| 793 | /* Max command size */ |
| 794 | ret = tpm2_get_max_command_size(dev, &capability->max_command_size); |
| 795 | if (ret) { |
| 796 | efi_ret = EFI_DEVICE_ERROR; |
| 797 | goto out; |
| 798 | } |
| 799 | |
| 800 | /* Max response size */ |
| 801 | ret = tpm2_get_max_response_size(dev, &capability->max_response_size); |
| 802 | if (ret) { |
| 803 | efi_ret = EFI_DEVICE_ERROR; |
| 804 | goto out; |
| 805 | } |
| 806 | |
| 807 | /* Manufacturer ID */ |
| 808 | ret = tpm2_get_manufacturer_id(dev, &capability->manufacturer_id); |
| 809 | if (ret) { |
| 810 | efi_ret = EFI_DEVICE_ERROR; |
| 811 | goto out; |
| 812 | } |
| 813 | |
| 814 | return EFI_EXIT(EFI_SUCCESS); |
| 815 | out: |
| 816 | return EFI_EXIT(efi_ret); |
| 817 | } |
| 818 | |
| 819 | /** |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 820 | * efi_tcg2_get_eventlog() - retrieve the the address of an event log and its |
| 821 | * last entry |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 822 | * |
| 823 | * @this: TCG2 protocol instance |
| 824 | * @log_format: type of event log format |
| 825 | * @event_log_location: pointer to the memory address of the event log |
| 826 | * @event_log_last_entry: pointer to the address of the start of the last |
| 827 | * entry in the event log in memory, if log contains |
| 828 | * more than 1 entry |
| 829 | * @event_log_truncated: set to true, if the Event Log is missing at i |
| 830 | * least one entry |
| 831 | * |
| 832 | * Return: status code |
| 833 | */ |
| 834 | static efi_status_t EFIAPI |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 835 | efi_tcg2_get_eventlog(struct efi_tcg2_protocol *this, |
| 836 | efi_tcg_event_log_format log_format, |
| 837 | u64 *event_log_location, u64 *event_log_last_entry, |
| 838 | bool *event_log_truncated) |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 839 | { |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 840 | efi_status_t ret = EFI_SUCCESS; |
| 841 | struct udevice *dev; |
| 842 | |
| 843 | EFI_ENTRY("%p, %u, %p, %p, %p", this, log_format, event_log_location, |
| 844 | event_log_last_entry, event_log_truncated); |
| 845 | |
Masahisa Kojima | 580d724 | 2021-09-03 10:55:50 +0900 | [diff] [blame] | 846 | if (!this || !event_log_location || !event_log_last_entry || |
| 847 | !event_log_truncated) { |
| 848 | ret = EFI_INVALID_PARAMETER; |
| 849 | goto out; |
| 850 | } |
| 851 | |
| 852 | /* Only support TPMV2 */ |
| 853 | if (log_format != TCG2_EVENT_LOG_FORMAT_TCG_2) { |
| 854 | ret = EFI_INVALID_PARAMETER; |
| 855 | goto out; |
| 856 | } |
| 857 | |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 858 | ret = platform_get_tpm2_device(&dev); |
| 859 | if (ret != EFI_SUCCESS) { |
| 860 | event_log_location = NULL; |
| 861 | event_log_last_entry = NULL; |
| 862 | *event_log_truncated = false; |
| 863 | ret = EFI_SUCCESS; |
| 864 | goto out; |
| 865 | } |
| 866 | *event_log_location = (uintptr_t)event_log.buffer; |
| 867 | *event_log_last_entry = (uintptr_t)(event_log.buffer + event_log.pos - |
| 868 | event_log.last_event_size); |
| 869 | *event_log_truncated = event_log.truncated; |
| 870 | event_log.get_event_called = true; |
| 871 | |
| 872 | out: |
| 873 | return EFI_EXIT(ret); |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 874 | } |
| 875 | |
| 876 | /** |
Masahisa Kojima | 163a0d7 | 2021-05-26 12:09:58 +0900 | [diff] [blame] | 877 | * tcg2_hash_pe_image() - calculate PE/COFF image hash |
| 878 | * |
| 879 | * @efi: pointer to the EFI binary |
| 880 | * @efi_size: size of @efi binary |
| 881 | * @digest_list: list of digest algorithms to extend |
| 882 | * |
| 883 | * Return: status code |
| 884 | */ |
| 885 | static efi_status_t tcg2_hash_pe_image(void *efi, u64 efi_size, |
| 886 | struct tpml_digest_values *digest_list) |
| 887 | { |
| 888 | WIN_CERTIFICATE *wincerts = NULL; |
| 889 | size_t wincerts_len; |
| 890 | struct efi_image_regions *regs = NULL; |
| 891 | void *new_efi = NULL; |
| 892 | u8 hash[TPM2_SHA512_DIGEST_SIZE]; |
| 893 | efi_status_t ret; |
| 894 | u32 active; |
| 895 | int i; |
| 896 | |
| 897 | new_efi = efi_prepare_aligned_image(efi, &efi_size); |
| 898 | if (!new_efi) |
| 899 | return EFI_OUT_OF_RESOURCES; |
| 900 | |
| 901 | if (!efi_image_parse(new_efi, efi_size, ®s, &wincerts, |
| 902 | &wincerts_len)) { |
| 903 | log_err("Parsing PE executable image failed\n"); |
| 904 | ret = EFI_UNSUPPORTED; |
| 905 | goto out; |
| 906 | } |
| 907 | |
| 908 | ret = __get_active_pcr_banks(&active); |
| 909 | if (ret != EFI_SUCCESS) { |
| 910 | goto out; |
| 911 | } |
| 912 | |
| 913 | digest_list->count = 0; |
| 914 | for (i = 0; i < MAX_HASH_COUNT; i++) { |
| 915 | u16 hash_alg = hash_algo_list[i].hash_alg; |
| 916 | |
| 917 | if (!(active & alg_to_mask(hash_alg))) |
| 918 | continue; |
| 919 | switch (hash_alg) { |
| 920 | case TPM2_ALG_SHA1: |
| 921 | hash_calculate("sha1", regs->reg, regs->num, hash); |
| 922 | break; |
| 923 | case TPM2_ALG_SHA256: |
| 924 | hash_calculate("sha256", regs->reg, regs->num, hash); |
| 925 | break; |
| 926 | case TPM2_ALG_SHA384: |
| 927 | hash_calculate("sha384", regs->reg, regs->num, hash); |
| 928 | break; |
| 929 | case TPM2_ALG_SHA512: |
| 930 | hash_calculate("sha512", regs->reg, regs->num, hash); |
| 931 | break; |
| 932 | default: |
| 933 | EFI_PRINT("Unsupported algorithm %x\n", hash_alg); |
| 934 | return EFI_INVALID_PARAMETER; |
| 935 | } |
Ruchika Gupta | 346cee3 | 2021-09-14 12:14:31 +0530 | [diff] [blame] | 936 | digest_list->digests[digest_list->count].hash_alg = hash_alg; |
| 937 | memcpy(&digest_list->digests[digest_list->count].digest, hash, |
| 938 | (u32)alg_to_len(hash_alg)); |
Masahisa Kojima | 163a0d7 | 2021-05-26 12:09:58 +0900 | [diff] [blame] | 939 | digest_list->count++; |
| 940 | } |
| 941 | |
| 942 | out: |
| 943 | if (new_efi != efi) |
| 944 | free(new_efi); |
| 945 | free(regs); |
| 946 | |
| 947 | return ret; |
| 948 | } |
| 949 | |
| 950 | /** |
| 951 | * tcg2_measure_pe_image() - measure PE/COFF image |
| 952 | * |
| 953 | * @efi: pointer to the EFI binary |
| 954 | * @efi_size: size of @efi binary |
| 955 | * @handle: loaded image handle |
| 956 | * @loaded_image: loaded image protocol |
| 957 | * |
| 958 | * Return: status code |
| 959 | */ |
| 960 | efi_status_t tcg2_measure_pe_image(void *efi, u64 efi_size, |
| 961 | struct efi_loaded_image_obj *handle, |
| 962 | struct efi_loaded_image *loaded_image) |
| 963 | { |
| 964 | struct tpml_digest_values digest_list; |
| 965 | efi_status_t ret; |
| 966 | struct udevice *dev; |
| 967 | u32 pcr_index, event_type, event_size; |
| 968 | struct uefi_image_load_event *image_load_event; |
| 969 | struct efi_device_path *device_path; |
| 970 | u32 device_path_length; |
| 971 | IMAGE_DOS_HEADER *dos; |
| 972 | IMAGE_NT_HEADERS32 *nt; |
| 973 | struct efi_handler *handler; |
| 974 | |
Masahisa Kojima | 9e32bf9 | 2021-12-07 14:15:32 +0900 | [diff] [blame] | 975 | if (!is_tcg2_protocol_installed()) |
| 976 | return EFI_SUCCESS; |
| 977 | |
Masahisa Kojima | 163a0d7 | 2021-05-26 12:09:58 +0900 | [diff] [blame] | 978 | ret = platform_get_tpm2_device(&dev); |
| 979 | if (ret != EFI_SUCCESS) |
Masahisa Kojima | f9b51dc | 2021-12-07 14:15:33 +0900 | [diff] [blame] | 980 | return EFI_SECURITY_VIOLATION; |
Masahisa Kojima | 163a0d7 | 2021-05-26 12:09:58 +0900 | [diff] [blame] | 981 | |
| 982 | switch (handle->image_type) { |
| 983 | case IMAGE_SUBSYSTEM_EFI_APPLICATION: |
| 984 | pcr_index = 4; |
| 985 | event_type = EV_EFI_BOOT_SERVICES_APPLICATION; |
| 986 | break; |
| 987 | case IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER: |
| 988 | pcr_index = 2; |
| 989 | event_type = EV_EFI_BOOT_SERVICES_DRIVER; |
| 990 | break; |
| 991 | case IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER: |
| 992 | pcr_index = 2; |
| 993 | event_type = EV_EFI_RUNTIME_SERVICES_DRIVER; |
| 994 | break; |
| 995 | default: |
| 996 | return EFI_UNSUPPORTED; |
| 997 | } |
| 998 | |
| 999 | ret = tcg2_hash_pe_image(efi, efi_size, &digest_list); |
| 1000 | if (ret != EFI_SUCCESS) |
| 1001 | return ret; |
| 1002 | |
| 1003 | ret = tcg2_pcr_extend(dev, pcr_index, &digest_list); |
| 1004 | if (ret != EFI_SUCCESS) |
| 1005 | return ret; |
| 1006 | |
Ilias Apalodimas | 0bf538c | 2021-09-09 00:30:49 +0300 | [diff] [blame] | 1007 | ret = efi_search_protocol(&handle->header, |
| 1008 | &efi_guid_loaded_image_device_path, &handler); |
Masahisa Kojima | 163a0d7 | 2021-05-26 12:09:58 +0900 | [diff] [blame] | 1009 | if (ret != EFI_SUCCESS) |
| 1010 | return ret; |
| 1011 | |
Ilias Apalodimas | 0bf538c | 2021-09-09 00:30:49 +0300 | [diff] [blame] | 1012 | device_path = handler->protocol_interface; |
Masahisa Kojima | 163a0d7 | 2021-05-26 12:09:58 +0900 | [diff] [blame] | 1013 | device_path_length = efi_dp_size(device_path); |
| 1014 | if (device_path_length > 0) { |
| 1015 | /* add end node size */ |
| 1016 | device_path_length += sizeof(struct efi_device_path); |
| 1017 | } |
| 1018 | event_size = sizeof(struct uefi_image_load_event) + device_path_length; |
Ilias Apalodimas | 0bf538c | 2021-09-09 00:30:49 +0300 | [diff] [blame] | 1019 | image_load_event = calloc(1, event_size); |
Masahisa Kojima | 163a0d7 | 2021-05-26 12:09:58 +0900 | [diff] [blame] | 1020 | if (!image_load_event) |
| 1021 | return EFI_OUT_OF_RESOURCES; |
| 1022 | |
| 1023 | image_load_event->image_location_in_memory = (uintptr_t)efi; |
| 1024 | image_load_event->image_length_in_memory = efi_size; |
| 1025 | image_load_event->length_of_device_path = device_path_length; |
| 1026 | |
| 1027 | dos = (IMAGE_DOS_HEADER *)efi; |
| 1028 | nt = (IMAGE_NT_HEADERS32 *)(efi + dos->e_lfanew); |
| 1029 | if (nt->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR64_MAGIC) { |
| 1030 | IMAGE_NT_HEADERS64 *nt64 = (IMAGE_NT_HEADERS64 *)nt; |
| 1031 | |
| 1032 | image_load_event->image_link_time_address = |
| 1033 | nt64->OptionalHeader.ImageBase; |
| 1034 | } else if (nt->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR32_MAGIC) { |
| 1035 | image_load_event->image_link_time_address = |
| 1036 | nt->OptionalHeader.ImageBase; |
| 1037 | } else { |
| 1038 | ret = EFI_INVALID_PARAMETER; |
| 1039 | goto out; |
| 1040 | } |
| 1041 | |
Ilias Apalodimas | 0bf538c | 2021-09-09 00:30:49 +0300 | [diff] [blame] | 1042 | /* device_path_length might be zero */ |
| 1043 | memcpy(image_load_event->device_path, device_path, device_path_length); |
Masahisa Kojima | 163a0d7 | 2021-05-26 12:09:58 +0900 | [diff] [blame] | 1044 | |
| 1045 | ret = tcg2_agile_log_append(pcr_index, event_type, &digest_list, |
| 1046 | event_size, (u8 *)image_load_event); |
| 1047 | |
| 1048 | out: |
| 1049 | free(image_load_event); |
| 1050 | |
| 1051 | return ret; |
| 1052 | } |
| 1053 | |
| 1054 | /** |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 1055 | * efi_tcg2_hash_log_extend_event() - extend and optionally log events |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 1056 | * |
| 1057 | * @this: TCG2 protocol instance |
| 1058 | * @flags: bitmap providing additional information on the |
| 1059 | * operation |
| 1060 | * @data_to_hash: physical address of the start of the data buffer |
| 1061 | * to be hashed |
| 1062 | * @data_to_hash_len: the length in bytes of the buffer referenced by |
| 1063 | * data_to_hash |
| 1064 | * @efi_tcg_event: pointer to data buffer containing information |
| 1065 | * about the event |
| 1066 | * |
| 1067 | * Return: status code |
| 1068 | */ |
| 1069 | static efi_status_t EFIAPI |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 1070 | efi_tcg2_hash_log_extend_event(struct efi_tcg2_protocol *this, u64 flags, |
| 1071 | u64 data_to_hash, u64 data_to_hash_len, |
| 1072 | struct efi_tcg2_event *efi_tcg_event) |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 1073 | { |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1074 | struct udevice *dev; |
| 1075 | efi_status_t ret; |
| 1076 | u32 event_type, pcr_index, event_size; |
| 1077 | struct tpml_digest_values digest_list; |
| 1078 | |
| 1079 | EFI_ENTRY("%p, %llu, %llu, %llu, %p", this, flags, data_to_hash, |
| 1080 | data_to_hash_len, efi_tcg_event); |
| 1081 | |
| 1082 | if (!this || !data_to_hash || !efi_tcg_event) { |
| 1083 | ret = EFI_INVALID_PARAMETER; |
| 1084 | goto out; |
| 1085 | } |
| 1086 | |
| 1087 | ret = platform_get_tpm2_device(&dev); |
| 1088 | if (ret != EFI_SUCCESS) |
| 1089 | goto out; |
| 1090 | |
| 1091 | if (efi_tcg_event->size < efi_tcg_event->header.header_size + |
| 1092 | sizeof(u32)) { |
| 1093 | ret = EFI_INVALID_PARAMETER; |
| 1094 | goto out; |
| 1095 | } |
| 1096 | |
Masahisa Kojima | 538c0f2 | 2021-09-03 10:55:52 +0900 | [diff] [blame] | 1097 | if (efi_tcg_event->header.pcr_index > EFI_TCG2_MAX_PCR_INDEX) { |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1098 | ret = EFI_INVALID_PARAMETER; |
| 1099 | goto out; |
| 1100 | } |
| 1101 | |
| 1102 | /* |
| 1103 | * if PE_COFF_IMAGE is set we need to make sure the image is not |
| 1104 | * corrupted, verify it and hash the PE/COFF image in accordance with |
Masahisa Kojima | 163a0d7 | 2021-05-26 12:09:58 +0900 | [diff] [blame] | 1105 | * the procedure specified in "Calculating the PE Image Hash" |
| 1106 | * section of the "Windows Authenticode Portable Executable Signature |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1107 | * Format" |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1108 | */ |
| 1109 | if (flags & PE_COFF_IMAGE) { |
Masahisa Kojima | 163a0d7 | 2021-05-26 12:09:58 +0900 | [diff] [blame] | 1110 | IMAGE_NT_HEADERS32 *nt; |
| 1111 | |
| 1112 | ret = efi_check_pe((void *)(uintptr_t)data_to_hash, |
| 1113 | data_to_hash_len, (void **)&nt); |
| 1114 | if (ret != EFI_SUCCESS) { |
| 1115 | log_err("Not a valid PE-COFF file\n"); |
Masahisa Kojima | 580d724 | 2021-09-03 10:55:50 +0900 | [diff] [blame] | 1116 | ret = EFI_UNSUPPORTED; |
Masahisa Kojima | 163a0d7 | 2021-05-26 12:09:58 +0900 | [diff] [blame] | 1117 | goto out; |
| 1118 | } |
| 1119 | ret = tcg2_hash_pe_image((void *)(uintptr_t)data_to_hash, |
| 1120 | data_to_hash_len, &digest_list); |
| 1121 | } else { |
| 1122 | ret = tcg2_create_digest((u8 *)(uintptr_t)data_to_hash, |
| 1123 | data_to_hash_len, &digest_list); |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1124 | } |
| 1125 | |
Masahisa Kojima | 163a0d7 | 2021-05-26 12:09:58 +0900 | [diff] [blame] | 1126 | if (ret != EFI_SUCCESS) |
| 1127 | goto out; |
| 1128 | |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1129 | pcr_index = efi_tcg_event->header.pcr_index; |
| 1130 | event_type = efi_tcg_event->header.event_type; |
| 1131 | |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1132 | ret = tcg2_pcr_extend(dev, pcr_index, &digest_list); |
| 1133 | if (ret != EFI_SUCCESS) |
| 1134 | goto out; |
| 1135 | |
| 1136 | if (flags & EFI_TCG2_EXTEND_ONLY) { |
| 1137 | if (event_log.truncated) |
| 1138 | ret = EFI_VOLUME_FULL; |
| 1139 | goto out; |
| 1140 | } |
| 1141 | |
| 1142 | /* |
| 1143 | * The efi_tcg_event size includes the size component and the |
| 1144 | * headersize |
| 1145 | */ |
| 1146 | event_size = efi_tcg_event->size - sizeof(efi_tcg_event->size) - |
| 1147 | efi_tcg_event->header.header_size; |
| 1148 | ret = tcg2_agile_log_append(pcr_index, event_type, &digest_list, |
| 1149 | event_size, efi_tcg_event->event); |
| 1150 | out: |
| 1151 | return EFI_EXIT(ret); |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 1152 | } |
| 1153 | |
| 1154 | /** |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 1155 | * efi_tcg2_submit_command() - Send command to the TPM |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 1156 | * |
| 1157 | * @this: TCG2 protocol instance |
| 1158 | * @input_param_block_size: size of the TPM input parameter block |
| 1159 | * @input_param_block: pointer to the TPM input parameter block |
| 1160 | * @output_param_block_size: size of the TPM output parameter block |
| 1161 | * @output_param_block: pointer to the TPM output parameter block |
| 1162 | * |
| 1163 | * Return: status code |
| 1164 | */ |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1165 | static efi_status_t EFIAPI |
Masahisa Kojima | 7fc93ca | 2021-11-04 22:59:16 +0900 | [diff] [blame] | 1166 | efi_tcg2_submit_command(struct efi_tcg2_protocol *this, |
| 1167 | u32 input_param_block_size, |
| 1168 | u8 *input_param_block, |
| 1169 | u32 output_param_block_size, |
| 1170 | u8 *output_param_block) |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 1171 | { |
Masahisa Kojima | 7fc93ca | 2021-11-04 22:59:16 +0900 | [diff] [blame] | 1172 | struct udevice *dev; |
| 1173 | efi_status_t ret; |
| 1174 | u32 rc; |
| 1175 | size_t resp_buf_size = output_param_block_size; |
| 1176 | |
| 1177 | EFI_ENTRY("%p, %u, %p, %u, %p", this, input_param_block_size, |
| 1178 | input_param_block, output_param_block_size, output_param_block); |
| 1179 | |
| 1180 | if (!this || !input_param_block || !input_param_block_size) { |
| 1181 | ret = EFI_INVALID_PARAMETER; |
| 1182 | goto out; |
| 1183 | } |
| 1184 | |
| 1185 | ret = platform_get_tpm2_device(&dev); |
| 1186 | if (ret != EFI_SUCCESS) |
| 1187 | goto out; |
| 1188 | |
| 1189 | rc = tpm2_submit_command(dev, input_param_block, |
| 1190 | output_param_block, &resp_buf_size); |
| 1191 | if (rc) { |
| 1192 | ret = (rc == -ENOSPC) ? EFI_OUT_OF_RESOURCES : EFI_DEVICE_ERROR; |
| 1193 | |
| 1194 | goto out; |
| 1195 | } |
| 1196 | |
| 1197 | out: |
| 1198 | return EFI_EXIT(ret); |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 1199 | } |
| 1200 | |
| 1201 | /** |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 1202 | * efi_tcg2_get_active_pcr_banks() - returns the currently active PCR banks |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 1203 | * |
| 1204 | * @this: TCG2 protocol instance |
| 1205 | * @active_pcr_banks: pointer for receiving the bitmap of currently |
| 1206 | * active PCR banks |
| 1207 | * |
| 1208 | * Return: status code |
| 1209 | */ |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1210 | static efi_status_t EFIAPI |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 1211 | efi_tcg2_get_active_pcr_banks(struct efi_tcg2_protocol *this, |
| 1212 | u32 *active_pcr_banks) |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 1213 | { |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1214 | efi_status_t ret; |
| 1215 | |
Masahisa Kojima | 580d724 | 2021-09-03 10:55:50 +0900 | [diff] [blame] | 1216 | if (!this || !active_pcr_banks) { |
| 1217 | ret = EFI_INVALID_PARAMETER; |
| 1218 | goto out; |
| 1219 | } |
| 1220 | |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1221 | EFI_ENTRY("%p, %p", this, active_pcr_banks); |
| 1222 | ret = __get_active_pcr_banks(active_pcr_banks); |
| 1223 | |
Masahisa Kojima | 580d724 | 2021-09-03 10:55:50 +0900 | [diff] [blame] | 1224 | out: |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1225 | return EFI_EXIT(ret); |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 1226 | } |
| 1227 | |
| 1228 | /** |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 1229 | * efi_tcg2_set_active_pcr_banks() - sets the currently active PCR banks |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 1230 | * |
| 1231 | * @this: TCG2 protocol instance |
| 1232 | * @active_pcr_banks: bitmap of the requested active PCR banks |
| 1233 | * |
| 1234 | * Return: status code |
| 1235 | */ |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1236 | static efi_status_t EFIAPI |
Ilias Apalodimas | 1f6871d | 2021-05-25 14:35:31 +0300 | [diff] [blame] | 1237 | efi_tcg2_set_active_pcr_banks(__maybe_unused struct efi_tcg2_protocol *this, |
| 1238 | u32 __maybe_unused active_pcr_banks) |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 1239 | { |
| 1240 | return EFI_UNSUPPORTED; |
| 1241 | } |
| 1242 | |
| 1243 | /** |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 1244 | * efi_tcg2_get_result_of_set_active_pcr_banks() - retrieve result for previous |
| 1245 | * set_active_pcr_banks() |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 1246 | * |
| 1247 | * @this: TCG2 protocol instance |
| 1248 | * @operation_present: non-zero value to indicate a |
| 1249 | * set_active_pcr_banks operation was |
| 1250 | * invoked during last boot |
| 1251 | * @response: result value could be returned |
| 1252 | * |
| 1253 | * Return: status code |
| 1254 | */ |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1255 | static efi_status_t EFIAPI |
Ilias Apalodimas | 1f6871d | 2021-05-25 14:35:31 +0300 | [diff] [blame] | 1256 | efi_tcg2_get_result_of_set_active_pcr_banks(__maybe_unused struct efi_tcg2_protocol *this, |
| 1257 | u32 __maybe_unused *operation_present, |
| 1258 | u32 __maybe_unused *response) |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 1259 | { |
| 1260 | return EFI_UNSUPPORTED; |
| 1261 | } |
| 1262 | |
| 1263 | static const struct efi_tcg2_protocol efi_tcg2_protocol = { |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 1264 | .get_capability = efi_tcg2_get_capability, |
| 1265 | .get_eventlog = efi_tcg2_get_eventlog, |
| 1266 | .hash_log_extend_event = efi_tcg2_hash_log_extend_event, |
| 1267 | .submit_command = efi_tcg2_submit_command, |
| 1268 | .get_active_pcr_banks = efi_tcg2_get_active_pcr_banks, |
| 1269 | .set_active_pcr_banks = efi_tcg2_set_active_pcr_banks, |
| 1270 | .get_result_of_set_active_pcr_banks = efi_tcg2_get_result_of_set_active_pcr_banks, |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 1271 | }; |
| 1272 | |
| 1273 | /** |
Ruchika Gupta | 34287ef | 2021-11-29 13:09:44 +0530 | [diff] [blame] | 1274 | * parse_event_log_header() - Parse and verify the event log header fields |
| 1275 | * |
| 1276 | * @buffer: Pointer to the start of the eventlog |
| 1277 | * @size: Size of the eventlog |
| 1278 | * @pos: Return offset of the next event in buffer right |
| 1279 | * after the event header i.e specID |
| 1280 | * |
| 1281 | * Return: status code |
| 1282 | */ |
| 1283 | static efi_status_t parse_event_log_header(void *buffer, u32 size, u32 *pos) |
| 1284 | { |
| 1285 | struct tcg_pcr_event *event_header = (struct tcg_pcr_event *)buffer; |
| 1286 | int i = 0; |
| 1287 | |
| 1288 | if (size < sizeof(*event_header)) |
| 1289 | return EFI_COMPROMISED_DATA; |
| 1290 | |
| 1291 | if (get_unaligned_le32(&event_header->pcr_index) != 0 || |
| 1292 | get_unaligned_le32(&event_header->event_type) != EV_NO_ACTION) |
| 1293 | return EFI_COMPROMISED_DATA; |
| 1294 | |
| 1295 | for (i = 0; i < sizeof(event_header->digest); i++) { |
| 1296 | if (event_header->digest[i]) |
| 1297 | return EFI_COMPROMISED_DATA; |
| 1298 | } |
| 1299 | |
| 1300 | *pos += sizeof(*event_header); |
| 1301 | |
| 1302 | return EFI_SUCCESS; |
| 1303 | } |
| 1304 | |
| 1305 | /** |
| 1306 | * parse_specid_event() - Parse and verify the specID Event in the eventlog |
| 1307 | * |
| 1308 | * @dev: udevice |
| 1309 | * @buffer: Pointer to the start of the eventlog |
| 1310 | * @log_size: Size of the eventlog |
| 1311 | * @pos: [in] Offset of specID event in the eventlog buffer |
| 1312 | * [out] Return offset of the next event in the buffer |
| 1313 | * after the specID |
| 1314 | * @digest_list: list of digests in the event |
| 1315 | * |
| 1316 | * Return: status code |
| 1317 | * @pos Offset in the eventlog where the specID event ends |
| 1318 | * @digest_list: list of digests in the event |
| 1319 | */ |
| 1320 | static efi_status_t parse_specid_event(struct udevice *dev, void *buffer, |
| 1321 | u32 log_size, u32 *pos, |
| 1322 | struct tpml_digest_values *digest_list) |
| 1323 | { |
| 1324 | struct tcg_efi_spec_id_event *spec_event; |
| 1325 | struct tcg_pcr_event *event_header = (struct tcg_pcr_event *)buffer; |
| 1326 | size_t spec_event_size; |
| 1327 | u32 active = 0, supported = 0, pcr_count = 0, alg_count = 0; |
| 1328 | u32 spec_active = 0; |
| 1329 | u16 hash_alg; |
| 1330 | u8 vendor_sz; |
| 1331 | int err, i; |
| 1332 | |
| 1333 | if (*pos >= log_size || (*pos + sizeof(*spec_event)) > log_size) |
| 1334 | return EFI_COMPROMISED_DATA; |
| 1335 | |
| 1336 | /* Check specID event data */ |
| 1337 | spec_event = (struct tcg_efi_spec_id_event *)((uintptr_t)buffer + *pos); |
| 1338 | /* Check for signature */ |
| 1339 | if (memcmp(spec_event->signature, TCG_EFI_SPEC_ID_EVENT_SIGNATURE_03, |
| 1340 | sizeof(TCG_EFI_SPEC_ID_EVENT_SIGNATURE_03))) { |
| 1341 | log_err("specID Event: Signature mismatch\n"); |
| 1342 | return EFI_COMPROMISED_DATA; |
| 1343 | } |
| 1344 | |
| 1345 | if (spec_event->spec_version_minor != |
| 1346 | TCG_EFI_SPEC_ID_EVENT_SPEC_VERSION_MINOR_TPM2 || |
| 1347 | spec_event->spec_version_major != |
| 1348 | TCG_EFI_SPEC_ID_EVENT_SPEC_VERSION_MAJOR_TPM2) |
| 1349 | return EFI_COMPROMISED_DATA; |
| 1350 | |
| 1351 | if (spec_event->number_of_algorithms > MAX_HASH_COUNT || |
| 1352 | spec_event->number_of_algorithms < 1) { |
| 1353 | log_err("specID Event: Number of algorithms incorrect\n"); |
| 1354 | return EFI_COMPROMISED_DATA; |
| 1355 | } |
| 1356 | |
| 1357 | alg_count = spec_event->number_of_algorithms; |
| 1358 | |
| 1359 | err = tpm2_get_pcr_info(dev, &supported, &active, &pcr_count); |
| 1360 | if (err) |
| 1361 | return EFI_DEVICE_ERROR; |
| 1362 | |
| 1363 | digest_list->count = 0; |
| 1364 | /* |
| 1365 | * We have to take care that the sequence of algorithms that we record |
| 1366 | * in digest_list matches the sequence in eventlog. |
| 1367 | */ |
| 1368 | for (i = 0; i < alg_count; i++) { |
| 1369 | hash_alg = |
| 1370 | get_unaligned_le16(&spec_event->digest_sizes[i].algorithm_id); |
| 1371 | |
| 1372 | if (!(supported & alg_to_mask(hash_alg))) { |
| 1373 | log_err("specID Event: Unsupported algorithm\n"); |
| 1374 | return EFI_COMPROMISED_DATA; |
| 1375 | } |
| 1376 | digest_list->digests[digest_list->count++].hash_alg = hash_alg; |
| 1377 | |
| 1378 | spec_active |= alg_to_mask(hash_alg); |
| 1379 | } |
| 1380 | |
| 1381 | /* |
| 1382 | * TCG specification expects the event log to have hashes for all |
| 1383 | * active PCR's |
| 1384 | */ |
| 1385 | if (spec_active != active) { |
| 1386 | /* |
| 1387 | * Previous stage bootloader should know all the active PCR's |
| 1388 | * and use them in the Eventlog. |
| 1389 | */ |
| 1390 | log_err("specID Event: All active hash alg not present\n"); |
| 1391 | return EFI_COMPROMISED_DATA; |
| 1392 | } |
| 1393 | |
| 1394 | /* |
| 1395 | * the size of the spec event and placement of vendor_info_size |
| 1396 | * depends on supported algoriths |
| 1397 | */ |
| 1398 | spec_event_size = |
| 1399 | offsetof(struct tcg_efi_spec_id_event, digest_sizes) + |
| 1400 | alg_count * sizeof(spec_event->digest_sizes[0]); |
| 1401 | |
| 1402 | if (*pos + spec_event_size >= log_size) |
| 1403 | return EFI_COMPROMISED_DATA; |
| 1404 | |
| 1405 | vendor_sz = *(uint8_t *)((uintptr_t)buffer + *pos + spec_event_size); |
| 1406 | |
| 1407 | spec_event_size += sizeof(vendor_sz) + vendor_sz; |
| 1408 | *pos += spec_event_size; |
| 1409 | |
| 1410 | if (get_unaligned_le32(&event_header->event_size) != spec_event_size) { |
| 1411 | log_err("specID event: header event size mismatch\n"); |
| 1412 | /* Right way to handle this can be to call SetActive PCR's */ |
| 1413 | return EFI_COMPROMISED_DATA; |
| 1414 | } |
| 1415 | |
| 1416 | return EFI_SUCCESS; |
| 1417 | } |
| 1418 | |
| 1419 | /** |
| 1420 | * tcg2_parse_event() - Parse the event in the eventlog |
| 1421 | * |
| 1422 | * @dev: udevice |
| 1423 | * @buffer: Pointer to the start of the eventlog |
| 1424 | * @log_size: Size of the eventlog |
| 1425 | * @offset: [in] Offset of the event in the eventlog buffer |
| 1426 | * [out] Return offset of the next event in the buffer |
| 1427 | * @digest_list: list of digests in the event |
| 1428 | * @pcr Index of the PCR in the event |
| 1429 | * |
| 1430 | * Return: status code |
| 1431 | */ |
| 1432 | static efi_status_t tcg2_parse_event(struct udevice *dev, void *buffer, |
| 1433 | u32 log_size, u32 *offset, |
| 1434 | struct tpml_digest_values *digest_list, |
| 1435 | u32 *pcr) |
| 1436 | { |
| 1437 | struct tcg_pcr_event2 *event = NULL; |
| 1438 | u32 count, size, event_size; |
| 1439 | size_t pos; |
| 1440 | |
| 1441 | event_size = tcg_event_final_size(digest_list); |
| 1442 | if (*offset >= log_size || *offset + event_size > log_size) { |
| 1443 | log_err("Event exceeds log size\n"); |
| 1444 | return EFI_COMPROMISED_DATA; |
| 1445 | } |
| 1446 | |
| 1447 | event = (struct tcg_pcr_event2 *)((uintptr_t)buffer + *offset); |
| 1448 | *pcr = get_unaligned_le32(&event->pcr_index); |
| 1449 | |
| 1450 | /* get the count */ |
| 1451 | count = get_unaligned_le32(&event->digests.count); |
| 1452 | if (count != digest_list->count) |
| 1453 | return EFI_COMPROMISED_DATA; |
| 1454 | |
| 1455 | pos = offsetof(struct tcg_pcr_event2, digests); |
| 1456 | pos += offsetof(struct tpml_digest_values, digests); |
| 1457 | |
| 1458 | for (int i = 0; i < digest_list->count; i++) { |
| 1459 | u16 alg; |
| 1460 | u16 hash_alg = digest_list->digests[i].hash_alg; |
| 1461 | u8 *digest = (u8 *)&digest_list->digests[i].digest; |
| 1462 | |
| 1463 | alg = get_unaligned_le16((void *)((uintptr_t)event + pos)); |
| 1464 | |
| 1465 | if (alg != hash_alg) |
| 1466 | return EFI_COMPROMISED_DATA; |
| 1467 | |
| 1468 | pos += offsetof(struct tpmt_ha, digest); |
| 1469 | memcpy(digest, (void *)((uintptr_t)event + pos), alg_to_len(hash_alg)); |
| 1470 | pos += alg_to_len(hash_alg); |
| 1471 | } |
| 1472 | |
| 1473 | size = get_unaligned_le32((void *)((uintptr_t)event + pos)); |
| 1474 | event_size += size; |
| 1475 | pos += sizeof(u32); /* tcg_pcr_event2 event_size*/ |
| 1476 | pos += size; |
| 1477 | |
| 1478 | /* make sure the calculated buffer is what we checked against */ |
| 1479 | if (pos != event_size) |
| 1480 | return EFI_COMPROMISED_DATA; |
| 1481 | |
| 1482 | if (pos > log_size) |
| 1483 | return EFI_COMPROMISED_DATA; |
| 1484 | |
| 1485 | *offset += pos; |
| 1486 | |
| 1487 | return EFI_SUCCESS; |
| 1488 | } |
| 1489 | |
| 1490 | /** |
| 1491 | * tcg2_get_fw_eventlog() - Get the eventlog address and size |
| 1492 | * |
| 1493 | * If the previous firmware has passed some eventlog, this function get it's |
| 1494 | * location and check for it's validity. |
| 1495 | * |
| 1496 | * @dev: udevice |
| 1497 | * @log_buffer: eventlog address |
| 1498 | * @log_sz: eventlog size |
| 1499 | * |
| 1500 | * Return: status code |
| 1501 | */ |
| 1502 | static efi_status_t tcg2_get_fw_eventlog(struct udevice *dev, void *log_buffer, |
| 1503 | size_t *log_sz) |
| 1504 | { |
| 1505 | struct tpml_digest_values digest_list; |
| 1506 | void *buffer; |
| 1507 | efi_status_t ret; |
| 1508 | u32 pcr, pos; |
| 1509 | u64 base; |
| 1510 | u32 sz; |
Ruchika Gupta | c0d9bb0 | 2021-11-29 13:09:46 +0530 | [diff] [blame] | 1511 | bool extend_pcr = false; |
| 1512 | int i; |
Ruchika Gupta | 34287ef | 2021-11-29 13:09:44 +0530 | [diff] [blame] | 1513 | |
| 1514 | ret = platform_get_eventlog(dev, &base, &sz); |
| 1515 | if (ret != EFI_SUCCESS) |
| 1516 | return ret; |
| 1517 | |
| 1518 | if (sz > TPM2_EVENT_LOG_SIZE) |
| 1519 | return EFI_VOLUME_FULL; |
| 1520 | |
| 1521 | buffer = (void *)(uintptr_t)base; |
| 1522 | pos = 0; |
| 1523 | /* Parse the eventlog to check for its validity */ |
| 1524 | ret = parse_event_log_header(buffer, sz, &pos); |
| 1525 | if (ret) |
| 1526 | return ret; |
| 1527 | |
| 1528 | ret = parse_specid_event(dev, buffer, sz, &pos, &digest_list); |
| 1529 | if (ret) { |
| 1530 | log_err("Error parsing SPEC ID Event\n"); |
| 1531 | return ret; |
| 1532 | } |
| 1533 | |
Ruchika Gupta | c0d9bb0 | 2021-11-29 13:09:46 +0530 | [diff] [blame] | 1534 | ret = tcg2_pcr_read(dev, 0, &digest_list); |
| 1535 | if (ret) { |
| 1536 | log_err("Error reading PCR 0\n"); |
| 1537 | return ret; |
| 1538 | } |
| 1539 | |
| 1540 | /* |
| 1541 | * If PCR0 is 0, previous firmware didn't have the capability |
| 1542 | * to extend the PCR. In this scenario, extend the PCR as |
| 1543 | * the eventlog is parsed. |
| 1544 | */ |
| 1545 | for (i = 0; i < digest_list.count; i++) { |
| 1546 | u8 hash_buf[TPM2_SHA512_DIGEST_SIZE] = { 0 }; |
| 1547 | u16 hash_alg = digest_list.digests[i].hash_alg; |
| 1548 | |
| 1549 | if (!memcmp((u8 *)&digest_list.digests[i].digest, hash_buf, |
| 1550 | alg_to_len(hash_alg))) |
| 1551 | extend_pcr = true; |
| 1552 | } |
| 1553 | |
Ruchika Gupta | 34287ef | 2021-11-29 13:09:44 +0530 | [diff] [blame] | 1554 | while (pos < sz) { |
| 1555 | ret = tcg2_parse_event(dev, buffer, sz, &pos, &digest_list, |
| 1556 | &pcr); |
| 1557 | if (ret) { |
| 1558 | log_err("Error parsing event\n"); |
| 1559 | return ret; |
| 1560 | } |
Ruchika Gupta | c0d9bb0 | 2021-11-29 13:09:46 +0530 | [diff] [blame] | 1561 | if (extend_pcr) { |
| 1562 | ret = tcg2_pcr_extend(dev, pcr, &digest_list); |
| 1563 | if (ret != EFI_SUCCESS) { |
| 1564 | log_err("Error in extending PCR\n"); |
| 1565 | return ret; |
| 1566 | } |
| 1567 | |
| 1568 | /* Clear the digest for next event */ |
| 1569 | for (i = 0; i < digest_list.count; i++) { |
| 1570 | u16 hash_alg = digest_list.digests[i].hash_alg; |
| 1571 | u8 *digest = |
| 1572 | (u8 *)&digest_list.digests[i].digest; |
| 1573 | |
| 1574 | memset(digest, 0, alg_to_len(hash_alg)); |
| 1575 | } |
| 1576 | } |
Ruchika Gupta | 34287ef | 2021-11-29 13:09:44 +0530 | [diff] [blame] | 1577 | } |
| 1578 | |
| 1579 | memcpy(log_buffer, buffer, sz); |
| 1580 | *log_sz = sz; |
| 1581 | |
| 1582 | return ret; |
| 1583 | } |
| 1584 | |
| 1585 | /** |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1586 | * create_specid_event() - Create the first event in the eventlog |
| 1587 | * |
| 1588 | * @dev: tpm device |
| 1589 | * @event_header: Pointer to the final event header |
| 1590 | * @event_size: final spec event size |
| 1591 | * |
| 1592 | * Return: status code |
| 1593 | */ |
| 1594 | static efi_status_t create_specid_event(struct udevice *dev, void *buffer, |
| 1595 | size_t *event_size) |
| 1596 | { |
| 1597 | struct tcg_efi_spec_id_event *spec_event; |
| 1598 | size_t spec_event_size; |
| 1599 | efi_status_t ret = EFI_DEVICE_ERROR; |
Ruchika Gupta | 346cee3 | 2021-09-14 12:14:31 +0530 | [diff] [blame] | 1600 | u32 active = 0, supported = 0, pcr_count = 0, alg_count = 0; |
Ilias Apalodimas | 1f6871d | 2021-05-25 14:35:31 +0300 | [diff] [blame] | 1601 | int err; |
| 1602 | size_t i; |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1603 | |
| 1604 | /* |
| 1605 | * Create Spec event. This needs to be the first event in the log |
| 1606 | * according to the TCG EFI protocol spec |
| 1607 | */ |
| 1608 | |
| 1609 | /* Setup specID event data */ |
| 1610 | spec_event = (struct tcg_efi_spec_id_event *)buffer; |
| 1611 | memcpy(spec_event->signature, TCG_EFI_SPEC_ID_EVENT_SIGNATURE_03, |
| 1612 | sizeof(spec_event->signature)); |
| 1613 | put_unaligned_le32(0, &spec_event->platform_class); /* type client */ |
| 1614 | spec_event->spec_version_minor = |
| 1615 | TCG_EFI_SPEC_ID_EVENT_SPEC_VERSION_MINOR_TPM2; |
| 1616 | spec_event->spec_version_major = |
| 1617 | TCG_EFI_SPEC_ID_EVENT_SPEC_VERSION_MAJOR_TPM2; |
| 1618 | spec_event->spec_errata = |
| 1619 | TCG_EFI_SPEC_ID_EVENT_SPEC_VERSION_ERRATA_TPM2; |
| 1620 | spec_event->uintn_size = sizeof(efi_uintn_t) / sizeof(u32); |
| 1621 | |
Ruchika Gupta | 346cee3 | 2021-09-14 12:14:31 +0530 | [diff] [blame] | 1622 | err = tpm2_get_pcr_info(dev, &supported, &active, &pcr_count); |
| 1623 | |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1624 | if (err) |
| 1625 | goto out; |
Ruchika Gupta | 346cee3 | 2021-09-14 12:14:31 +0530 | [diff] [blame] | 1626 | |
| 1627 | for (i = 0; i < pcr_count; i++) { |
| 1628 | u16 hash_alg = hash_algo_list[i].hash_alg; |
| 1629 | u16 hash_len = hash_algo_list[i].hash_len; |
| 1630 | |
| 1631 | if (active & alg_to_mask(hash_alg)) { |
| 1632 | put_unaligned_le16(hash_alg, |
| 1633 | &spec_event->digest_sizes[alg_count].algorithm_id); |
| 1634 | put_unaligned_le16(hash_len, |
| 1635 | &spec_event->digest_sizes[alg_count].digest_size); |
| 1636 | alg_count++; |
| 1637 | } |
| 1638 | } |
| 1639 | |
| 1640 | spec_event->number_of_algorithms = alg_count; |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1641 | if (spec_event->number_of_algorithms > MAX_HASH_COUNT || |
| 1642 | spec_event->number_of_algorithms < 1) |
| 1643 | goto out; |
| 1644 | |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1645 | /* |
| 1646 | * the size of the spec event and placement of vendor_info_size |
| 1647 | * depends on supported algoriths |
| 1648 | */ |
| 1649 | spec_event_size = |
| 1650 | offsetof(struct tcg_efi_spec_id_event, digest_sizes) + |
| 1651 | spec_event->number_of_algorithms * sizeof(spec_event->digest_sizes[0]); |
| 1652 | /* no vendor info for us */ |
Ruchika Gupta | 346cee3 | 2021-09-14 12:14:31 +0530 | [diff] [blame] | 1653 | memset(buffer + spec_event_size, 0, 1); |
| 1654 | /* add a byte for vendor_info_size in the spec event */ |
| 1655 | spec_event_size += 1; |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1656 | *event_size = spec_event_size; |
| 1657 | |
| 1658 | return EFI_SUCCESS; |
| 1659 | |
| 1660 | out: |
| 1661 | return ret; |
| 1662 | } |
| 1663 | |
| 1664 | /** |
Ilias Apalodimas | d8cf113 | 2021-03-25 13:31:45 +0200 | [diff] [blame] | 1665 | * tcg2_uninit - remove the final event table and free efi memory on failures |
| 1666 | */ |
| 1667 | void tcg2_uninit(void) |
| 1668 | { |
| 1669 | efi_status_t ret; |
| 1670 | |
| 1671 | ret = efi_install_configuration_table(&efi_guid_final_events, NULL); |
| 1672 | if (ret != EFI_SUCCESS) |
| 1673 | log_err("Failed to delete final events config table\n"); |
| 1674 | |
| 1675 | efi_free_pool(event_log.buffer); |
| 1676 | event_log.buffer = NULL; |
| 1677 | efi_free_pool(event_log.final_buffer); |
| 1678 | event_log.final_buffer = NULL; |
Masahisa Kojima | 54bec17 | 2021-12-07 14:15:31 +0900 | [diff] [blame] | 1679 | |
| 1680 | if (!is_tcg2_protocol_installed()) |
| 1681 | return; |
| 1682 | |
| 1683 | ret = efi_remove_protocol(efi_root, &efi_guid_tcg2_protocol, |
| 1684 | (void *)&efi_tcg2_protocol); |
| 1685 | if (ret != EFI_SUCCESS) |
| 1686 | log_err("Failed to remove EFI TCG2 protocol\n"); |
Ilias Apalodimas | d8cf113 | 2021-03-25 13:31:45 +0200 | [diff] [blame] | 1687 | } |
| 1688 | |
| 1689 | /** |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1690 | * create_final_event() - Create the final event and install the config |
| 1691 | * defined by the TCG EFI spec |
| 1692 | */ |
| 1693 | static efi_status_t create_final_event(void) |
| 1694 | { |
| 1695 | struct efi_tcg2_final_events_table *final_event; |
| 1696 | efi_status_t ret; |
| 1697 | |
| 1698 | /* |
| 1699 | * All events generated after the invocation of |
| 1700 | * EFI_TCG2_GET_EVENT_LOGS need to be stored in an instance of an |
| 1701 | * EFI_CONFIGURATION_TABLE |
| 1702 | */ |
| 1703 | ret = efi_allocate_pool(EFI_ACPI_MEMORY_NVS, TPM2_EVENT_LOG_SIZE, |
| 1704 | &event_log.final_buffer); |
| 1705 | if (ret != EFI_SUCCESS) |
| 1706 | goto out; |
| 1707 | |
| 1708 | memset(event_log.final_buffer, 0xff, TPM2_EVENT_LOG_SIZE); |
| 1709 | final_event = event_log.final_buffer; |
| 1710 | final_event->number_of_events = 0; |
| 1711 | final_event->version = EFI_TCG2_FINAL_EVENTS_TABLE_VERSION; |
| 1712 | event_log.final_pos = sizeof(*final_event); |
| 1713 | ret = efi_install_configuration_table(&efi_guid_final_events, |
| 1714 | final_event); |
Ilias Apalodimas | 2052759 | 2021-05-12 00:03:41 +0300 | [diff] [blame] | 1715 | if (ret != EFI_SUCCESS) { |
| 1716 | efi_free_pool(event_log.final_buffer); |
| 1717 | event_log.final_buffer = NULL; |
| 1718 | } |
| 1719 | |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 1720 | out: |
| 1721 | return ret; |
| 1722 | } |
| 1723 | |
| 1724 | /** |
Masahisa Kojima | cfbcf05 | 2021-08-13 16:12:39 +0900 | [diff] [blame] | 1725 | * tcg2_measure_event() - common function to add event log and extend PCR |
| 1726 | * |
| 1727 | * @dev: TPM device |
| 1728 | * @pcr_index: PCR index |
| 1729 | * @event_type: type of event added |
| 1730 | * @size: event size |
| 1731 | * @event: event data |
| 1732 | * |
| 1733 | * Return: status code |
| 1734 | */ |
| 1735 | static efi_status_t |
| 1736 | tcg2_measure_event(struct udevice *dev, u32 pcr_index, u32 event_type, |
| 1737 | u32 size, u8 event[]) |
| 1738 | { |
| 1739 | struct tpml_digest_values digest_list; |
| 1740 | efi_status_t ret; |
| 1741 | |
| 1742 | ret = tcg2_create_digest(event, size, &digest_list); |
| 1743 | if (ret != EFI_SUCCESS) |
| 1744 | goto out; |
| 1745 | |
| 1746 | ret = tcg2_pcr_extend(dev, pcr_index, &digest_list); |
| 1747 | if (ret != EFI_SUCCESS) |
| 1748 | goto out; |
| 1749 | |
| 1750 | ret = tcg2_agile_log_append(pcr_index, event_type, &digest_list, |
| 1751 | size, event); |
| 1752 | |
| 1753 | out: |
| 1754 | return ret; |
| 1755 | } |
| 1756 | |
| 1757 | /** |
Ilias Apalodimas | f69a201 | 2021-03-24 16:50:46 +0200 | [diff] [blame] | 1758 | * efi_append_scrtm_version - Append an S-CRTM EV_S_CRTM_VERSION event on the |
| 1759 | * eventlog and extend the PCRs |
| 1760 | * |
| 1761 | * @dev: TPM device |
| 1762 | * |
| 1763 | * @Return: status code |
| 1764 | */ |
| 1765 | static efi_status_t efi_append_scrtm_version(struct udevice *dev) |
| 1766 | { |
Ilias Apalodimas | f69a201 | 2021-03-24 16:50:46 +0200 | [diff] [blame] | 1767 | efi_status_t ret; |
| 1768 | |
Pali Rohár | fa9c5da | 2021-08-02 15:18:30 +0200 | [diff] [blame] | 1769 | ret = tcg2_measure_event(dev, 0, EV_S_CRTM_VERSION, |
| 1770 | strlen(version_string) + 1, |
| 1771 | (u8 *)version_string); |
Ilias Apalodimas | f69a201 | 2021-03-24 16:50:46 +0200 | [diff] [blame] | 1772 | |
Ilias Apalodimas | f69a201 | 2021-03-24 16:50:46 +0200 | [diff] [blame] | 1773 | return ret; |
| 1774 | } |
| 1775 | |
| 1776 | /** |
Ruchika Gupta | 34287ef | 2021-11-29 13:09:44 +0530 | [diff] [blame] | 1777 | * efi_init_event_log() - initialize an eventlog |
| 1778 | * |
| 1779 | * Return: status code |
| 1780 | */ |
| 1781 | static efi_status_t efi_init_event_log(void) |
| 1782 | { |
| 1783 | /* |
| 1784 | * vendor_info_size is currently set to 0, we need to change the length |
| 1785 | * and allocate the flexible array member if this changes |
| 1786 | */ |
| 1787 | struct tcg_pcr_event *event_header = NULL; |
| 1788 | struct udevice *dev; |
| 1789 | size_t spec_event_size; |
| 1790 | efi_status_t ret; |
| 1791 | |
| 1792 | ret = platform_get_tpm2_device(&dev); |
| 1793 | if (ret != EFI_SUCCESS) |
| 1794 | return ret; |
| 1795 | |
| 1796 | ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, TPM2_EVENT_LOG_SIZE, |
| 1797 | (void **)&event_log.buffer); |
| 1798 | if (ret != EFI_SUCCESS) |
| 1799 | return ret; |
| 1800 | |
| 1801 | /* |
| 1802 | * initialize log area as 0xff so the OS can easily figure out the |
| 1803 | * last log entry |
| 1804 | */ |
| 1805 | memset(event_log.buffer, 0xff, TPM2_EVENT_LOG_SIZE); |
| 1806 | |
| 1807 | /* |
| 1808 | * The log header is defined to be in SHA1 event log entry format. |
| 1809 | * Setup event header |
| 1810 | */ |
| 1811 | event_header = (struct tcg_pcr_event *)event_log.buffer; |
| 1812 | event_log.pos = 0; |
| 1813 | event_log.last_event_size = 0; |
| 1814 | event_log.get_event_called = false; |
| 1815 | event_log.ebs_called = false; |
| 1816 | event_log.truncated = false; |
| 1817 | |
| 1818 | /* |
| 1819 | * Check if earlier firmware have passed any eventlog. Different |
| 1820 | * platforms can use different ways to do so. |
| 1821 | */ |
| 1822 | ret = tcg2_get_fw_eventlog(dev, event_log.buffer, &event_log.pos); |
| 1823 | /* |
| 1824 | * If earlier firmware hasn't passed any eventlog, go ahead and |
| 1825 | * create the eventlog header. |
| 1826 | */ |
| 1827 | if (ret == EFI_NOT_FOUND) { |
| 1828 | put_unaligned_le32(0, &event_header->pcr_index); |
| 1829 | put_unaligned_le32(EV_NO_ACTION, &event_header->event_type); |
| 1830 | memset(&event_header->digest, 0, sizeof(event_header->digest)); |
| 1831 | ret = create_specid_event(dev, |
| 1832 | (void *)((uintptr_t)event_log.buffer + |
| 1833 | sizeof(*event_header)), |
| 1834 | &spec_event_size); |
| 1835 | if (ret != EFI_SUCCESS) |
| 1836 | goto free_pool; |
| 1837 | put_unaligned_le32(spec_event_size, &event_header->event_size); |
| 1838 | event_log.pos = spec_event_size + sizeof(*event_header); |
| 1839 | event_log.last_event_size = event_log.pos; |
| 1840 | |
| 1841 | /* |
| 1842 | * Add SCRTM version to the log if previous firmmware |
| 1843 | * doesn't pass an eventlog. |
| 1844 | */ |
| 1845 | ret = efi_append_scrtm_version(dev); |
| 1846 | } |
| 1847 | |
| 1848 | if (ret != EFI_SUCCESS) |
| 1849 | goto free_pool; |
| 1850 | |
| 1851 | ret = create_final_event(); |
| 1852 | if (ret != EFI_SUCCESS) |
| 1853 | goto free_pool; |
| 1854 | |
| 1855 | return ret; |
| 1856 | |
| 1857 | free_pool: |
| 1858 | efi_free_pool(event_log.buffer); |
| 1859 | event_log.buffer = NULL; |
| 1860 | return ret; |
| 1861 | } |
| 1862 | |
| 1863 | /** |
Masahisa Kojima | cfbcf05 | 2021-08-13 16:12:39 +0900 | [diff] [blame] | 1864 | * tcg2_measure_variable() - add variable event log and extend PCR |
| 1865 | * |
| 1866 | * @dev: TPM device |
| 1867 | * @pcr_index: PCR index |
| 1868 | * @event_type: type of event added |
| 1869 | * @var_name: variable name |
| 1870 | * @guid: guid |
| 1871 | * @data_size: variable data size |
| 1872 | * @data: variable data |
| 1873 | * |
| 1874 | * Return: status code |
| 1875 | */ |
| 1876 | static efi_status_t tcg2_measure_variable(struct udevice *dev, u32 pcr_index, |
Heinrich Schuchardt | d47671c | 2021-09-09 07:12:14 +0200 | [diff] [blame] | 1877 | u32 event_type, const u16 *var_name, |
Masahisa Kojima | cfbcf05 | 2021-08-13 16:12:39 +0900 | [diff] [blame] | 1878 | const efi_guid_t *guid, |
| 1879 | efi_uintn_t data_size, u8 *data) |
| 1880 | { |
| 1881 | u32 event_size; |
| 1882 | efi_status_t ret; |
| 1883 | struct efi_tcg2_uefi_variable_data *event; |
| 1884 | |
| 1885 | event_size = sizeof(event->variable_name) + |
| 1886 | sizeof(event->unicode_name_length) + |
| 1887 | sizeof(event->variable_data_length) + |
| 1888 | (u16_strlen(var_name) * sizeof(u16)) + data_size; |
| 1889 | event = malloc(event_size); |
| 1890 | if (!event) |
| 1891 | return EFI_OUT_OF_RESOURCES; |
| 1892 | |
| 1893 | guidcpy(&event->variable_name, guid); |
| 1894 | event->unicode_name_length = u16_strlen(var_name); |
| 1895 | event->variable_data_length = data_size; |
| 1896 | memcpy(event->unicode_name, var_name, |
| 1897 | (event->unicode_name_length * sizeof(u16))); |
| 1898 | if (data) { |
| 1899 | memcpy((u16 *)event->unicode_name + event->unicode_name_length, |
| 1900 | data, data_size); |
| 1901 | } |
| 1902 | ret = tcg2_measure_event(dev, pcr_index, event_type, event_size, |
| 1903 | (u8 *)event); |
| 1904 | free(event); |
| 1905 | return ret; |
| 1906 | } |
| 1907 | |
| 1908 | /** |
Masahisa Kojima | 8fc4e0b | 2021-08-13 16:12:40 +0900 | [diff] [blame] | 1909 | * tcg2_measure_boot_variable() - measure boot variables |
| 1910 | * |
| 1911 | * @dev: TPM device |
| 1912 | * |
| 1913 | * Return: status code |
| 1914 | */ |
| 1915 | static efi_status_t tcg2_measure_boot_variable(struct udevice *dev) |
| 1916 | { |
| 1917 | u16 *boot_order; |
| 1918 | u16 *boot_index; |
Simon Glass | 156ccbc | 2022-01-23 12:55:12 -0700 | [diff] [blame] | 1919 | u16 var_name[] = u"BootOrder"; |
| 1920 | u16 boot_name[] = u"Boot####"; |
Masahisa Kojima | 8fc4e0b | 2021-08-13 16:12:40 +0900 | [diff] [blame] | 1921 | u8 *bootvar; |
| 1922 | efi_uintn_t var_data_size; |
| 1923 | u32 count, i; |
| 1924 | efi_status_t ret; |
| 1925 | |
| 1926 | boot_order = efi_get_var(var_name, &efi_global_variable_guid, |
| 1927 | &var_data_size); |
| 1928 | if (!boot_order) { |
Masahisa Kojima | c9c1cdb | 2021-11-09 18:44:54 +0900 | [diff] [blame] | 1929 | /* If "BootOrder" is not defined, skip the boot variable measurement */ |
| 1930 | return EFI_SUCCESS; |
Masahisa Kojima | 8fc4e0b | 2021-08-13 16:12:40 +0900 | [diff] [blame] | 1931 | } |
| 1932 | |
| 1933 | ret = tcg2_measure_variable(dev, 1, EV_EFI_VARIABLE_BOOT2, var_name, |
| 1934 | &efi_global_variable_guid, var_data_size, |
| 1935 | (u8 *)boot_order); |
| 1936 | if (ret != EFI_SUCCESS) |
| 1937 | goto error; |
| 1938 | |
| 1939 | count = var_data_size / sizeof(*boot_order); |
| 1940 | boot_index = boot_order; |
| 1941 | for (i = 0; i < count; i++) { |
| 1942 | efi_create_indexed_name(boot_name, sizeof(boot_name), |
| 1943 | "Boot", *boot_index++); |
| 1944 | |
| 1945 | bootvar = efi_get_var(boot_name, &efi_global_variable_guid, |
| 1946 | &var_data_size); |
| 1947 | |
| 1948 | if (!bootvar) { |
Masahisa Kojima | 3961bd9 | 2021-11-09 20:35:53 +0900 | [diff] [blame] | 1949 | log_debug("%ls not found\n", boot_name); |
Masahisa Kojima | 8fc4e0b | 2021-08-13 16:12:40 +0900 | [diff] [blame] | 1950 | continue; |
| 1951 | } |
| 1952 | |
| 1953 | ret = tcg2_measure_variable(dev, 1, EV_EFI_VARIABLE_BOOT2, |
| 1954 | boot_name, |
| 1955 | &efi_global_variable_guid, |
| 1956 | var_data_size, bootvar); |
| 1957 | free(bootvar); |
| 1958 | if (ret != EFI_SUCCESS) |
| 1959 | goto error; |
| 1960 | } |
| 1961 | |
| 1962 | error: |
| 1963 | free(boot_order); |
| 1964 | return ret; |
| 1965 | } |
| 1966 | |
| 1967 | /** |
Masahisa Kojima | 3d49ee8 | 2021-10-26 17:27:24 +0900 | [diff] [blame] | 1968 | * tcg2_measure_smbios() - measure smbios table |
| 1969 | * |
| 1970 | * @dev: TPM device |
| 1971 | * @entry: pointer to the smbios_entry structure |
| 1972 | * |
| 1973 | * Return: status code |
| 1974 | */ |
| 1975 | static efi_status_t |
| 1976 | tcg2_measure_smbios(struct udevice *dev, |
| 1977 | const struct smbios_entry *entry) |
| 1978 | { |
| 1979 | efi_status_t ret; |
| 1980 | struct smbios_header *smbios_copy; |
| 1981 | struct smbios_handoff_table_pointers2 *event = NULL; |
| 1982 | u32 event_size; |
| 1983 | |
| 1984 | /* |
| 1985 | * TCG PC Client PFP Spec says |
| 1986 | * "SMBIOS structures that contain static configuration information |
| 1987 | * (e.g. Platform Manufacturer Enterprise Number assigned by IANA, |
| 1988 | * platform model number, Vendor and Device IDs for each SMBIOS table) |
| 1989 | * that is relevant to the security of the platform MUST be measured". |
| 1990 | * Device dependent parameters such as serial number are cleared to |
| 1991 | * zero or spaces for the measurement. |
| 1992 | */ |
| 1993 | event_size = sizeof(struct smbios_handoff_table_pointers2) + |
| 1994 | FIELD_SIZEOF(struct efi_configuration_table, guid) + |
| 1995 | entry->struct_table_length; |
| 1996 | event = calloc(1, event_size); |
| 1997 | if (!event) { |
| 1998 | ret = EFI_OUT_OF_RESOURCES; |
| 1999 | goto out; |
| 2000 | } |
| 2001 | |
| 2002 | event->table_description_size = sizeof(SMBIOS_HANDOFF_TABLE_DESC); |
| 2003 | memcpy(event->table_description, SMBIOS_HANDOFF_TABLE_DESC, |
| 2004 | sizeof(SMBIOS_HANDOFF_TABLE_DESC)); |
| 2005 | put_unaligned_le64(1, &event->number_of_tables); |
| 2006 | guidcpy(&event->table_entry[0].guid, &smbios_guid); |
| 2007 | smbios_copy = (struct smbios_header *)((uintptr_t)&event->table_entry[0].table); |
| 2008 | memcpy(&event->table_entry[0].table, |
| 2009 | (void *)((uintptr_t)entry->struct_table_address), |
| 2010 | entry->struct_table_length); |
| 2011 | |
| 2012 | smbios_prepare_measurement(entry, smbios_copy); |
| 2013 | |
| 2014 | ret = tcg2_measure_event(dev, 1, EV_EFI_HANDOFF_TABLES2, event_size, |
| 2015 | (u8 *)event); |
| 2016 | if (ret != EFI_SUCCESS) |
| 2017 | goto out; |
| 2018 | |
| 2019 | out: |
| 2020 | free(event); |
| 2021 | |
| 2022 | return ret; |
| 2023 | } |
| 2024 | |
| 2025 | /** |
| 2026 | * find_smbios_table() - find smbios table |
| 2027 | * |
| 2028 | * Return: pointer to the smbios table |
| 2029 | */ |
| 2030 | static void *find_smbios_table(void) |
| 2031 | { |
| 2032 | u32 i; |
| 2033 | |
| 2034 | for (i = 0; i < systab.nr_tables; i++) { |
| 2035 | if (!guidcmp(&smbios_guid, &systab.tables[i].guid)) |
| 2036 | return systab.tables[i].table; |
| 2037 | } |
| 2038 | |
| 2039 | return NULL; |
| 2040 | } |
| 2041 | |
| 2042 | /** |
Masahisa Kojima | ce3dbc5 | 2021-10-26 17:27:25 +0900 | [diff] [blame] | 2043 | * tcg2_measure_gpt_table() - measure gpt table |
| 2044 | * |
| 2045 | * @dev: TPM device |
| 2046 | * @loaded_image: handle to the loaded image |
| 2047 | * |
| 2048 | * Return: status code |
| 2049 | */ |
| 2050 | static efi_status_t |
| 2051 | tcg2_measure_gpt_data(struct udevice *dev, |
| 2052 | struct efi_loaded_image_obj *loaded_image) |
| 2053 | { |
| 2054 | efi_status_t ret; |
| 2055 | efi_handle_t handle; |
| 2056 | struct efi_handler *dp_handler; |
| 2057 | struct efi_device_path *orig_device_path; |
| 2058 | struct efi_device_path *device_path; |
| 2059 | struct efi_device_path *dp; |
| 2060 | struct efi_block_io *block_io; |
| 2061 | struct efi_gpt_data *event = NULL; |
| 2062 | efi_guid_t null_guid = NULL_GUID; |
| 2063 | gpt_header *gpt_h; |
| 2064 | gpt_entry *entry = NULL; |
| 2065 | gpt_entry *gpt_e; |
| 2066 | u32 num_of_valid_entry = 0; |
| 2067 | u32 event_size; |
| 2068 | u32 i; |
| 2069 | u32 total_gpt_entry_size; |
| 2070 | |
| 2071 | ret = efi_search_protocol(&loaded_image->header, |
| 2072 | &efi_guid_loaded_image_device_path, |
| 2073 | &dp_handler); |
| 2074 | if (ret != EFI_SUCCESS) |
| 2075 | return ret; |
| 2076 | |
| 2077 | orig_device_path = dp_handler->protocol_interface; |
| 2078 | if (!orig_device_path) /* no device path, skip GPT measurement */ |
| 2079 | return EFI_SUCCESS; |
| 2080 | |
| 2081 | device_path = efi_dp_dup(orig_device_path); |
| 2082 | if (!device_path) |
| 2083 | return EFI_OUT_OF_RESOURCES; |
| 2084 | |
| 2085 | dp = search_gpt_dp_node(device_path); |
| 2086 | if (!dp) { |
| 2087 | /* no GPT device path node found, skip GPT measurement */ |
| 2088 | ret = EFI_SUCCESS; |
| 2089 | goto out1; |
| 2090 | } |
| 2091 | |
| 2092 | /* read GPT header */ |
| 2093 | dp->type = DEVICE_PATH_TYPE_END; |
| 2094 | dp->sub_type = DEVICE_PATH_SUB_TYPE_END; |
| 2095 | dp = device_path; |
| 2096 | ret = EFI_CALL(systab.boottime->locate_device_path(&efi_block_io_guid, |
| 2097 | &dp, &handle)); |
| 2098 | if (ret != EFI_SUCCESS) |
| 2099 | goto out1; |
| 2100 | |
| 2101 | ret = EFI_CALL(efi_handle_protocol(handle, |
| 2102 | &efi_block_io_guid, (void **)&block_io)); |
| 2103 | if (ret != EFI_SUCCESS) |
| 2104 | goto out1; |
| 2105 | |
| 2106 | gpt_h = memalign(block_io->media->io_align, block_io->media->block_size); |
| 2107 | if (!gpt_h) { |
| 2108 | ret = EFI_OUT_OF_RESOURCES; |
| 2109 | goto out2; |
| 2110 | } |
| 2111 | |
| 2112 | ret = block_io->read_blocks(block_io, block_io->media->media_id, 1, |
| 2113 | block_io->media->block_size, gpt_h); |
| 2114 | if (ret != EFI_SUCCESS) |
| 2115 | goto out2; |
| 2116 | |
| 2117 | /* read GPT entry */ |
| 2118 | total_gpt_entry_size = gpt_h->num_partition_entries * |
| 2119 | gpt_h->sizeof_partition_entry; |
| 2120 | entry = memalign(block_io->media->io_align, total_gpt_entry_size); |
| 2121 | if (!entry) { |
| 2122 | ret = EFI_OUT_OF_RESOURCES; |
| 2123 | goto out2; |
| 2124 | } |
| 2125 | |
| 2126 | ret = block_io->read_blocks(block_io, block_io->media->media_id, |
| 2127 | gpt_h->partition_entry_lba, |
| 2128 | total_gpt_entry_size, entry); |
| 2129 | if (ret != EFI_SUCCESS) |
| 2130 | goto out2; |
| 2131 | |
| 2132 | /* count valid GPT entry */ |
| 2133 | gpt_e = entry; |
| 2134 | for (i = 0; i < gpt_h->num_partition_entries; i++) { |
| 2135 | if (guidcmp(&null_guid, &gpt_e->partition_type_guid)) |
| 2136 | num_of_valid_entry++; |
| 2137 | |
| 2138 | gpt_e = (gpt_entry *)((u8 *)gpt_e + gpt_h->sizeof_partition_entry); |
| 2139 | } |
| 2140 | |
| 2141 | /* prepare event data for measurement */ |
| 2142 | event_size = sizeof(struct efi_gpt_data) + |
| 2143 | (num_of_valid_entry * gpt_h->sizeof_partition_entry); |
| 2144 | event = calloc(1, event_size); |
| 2145 | if (!event) { |
| 2146 | ret = EFI_OUT_OF_RESOURCES; |
| 2147 | goto out2; |
| 2148 | } |
| 2149 | memcpy(event, gpt_h, sizeof(gpt_header)); |
| 2150 | put_unaligned_le64(num_of_valid_entry, &event->number_of_partitions); |
| 2151 | |
| 2152 | /* copy valid GPT entry */ |
| 2153 | gpt_e = entry; |
| 2154 | num_of_valid_entry = 0; |
| 2155 | for (i = 0; i < gpt_h->num_partition_entries; i++) { |
| 2156 | if (guidcmp(&null_guid, &gpt_e->partition_type_guid)) { |
| 2157 | memcpy((u8 *)event->partitions + |
| 2158 | (num_of_valid_entry * gpt_h->sizeof_partition_entry), |
| 2159 | gpt_e, gpt_h->sizeof_partition_entry); |
| 2160 | num_of_valid_entry++; |
| 2161 | } |
| 2162 | |
| 2163 | gpt_e = (gpt_entry *)((u8 *)gpt_e + gpt_h->sizeof_partition_entry); |
| 2164 | } |
| 2165 | |
| 2166 | ret = tcg2_measure_event(dev, 5, EV_EFI_GPT_EVENT, event_size, (u8 *)event); |
| 2167 | if (ret != EFI_SUCCESS) |
| 2168 | goto out2; |
| 2169 | |
| 2170 | out2: |
| 2171 | EFI_CALL(efi_close_protocol((efi_handle_t)block_io, &efi_block_io_guid, |
| 2172 | NULL, NULL)); |
| 2173 | free(gpt_h); |
| 2174 | free(entry); |
| 2175 | free(event); |
| 2176 | out1: |
| 2177 | efi_free_pool(device_path); |
| 2178 | |
| 2179 | return ret; |
| 2180 | } |
| 2181 | |
| 2182 | /** |
Masahisa Kojima | 8fc4e0b | 2021-08-13 16:12:40 +0900 | [diff] [blame] | 2183 | * efi_tcg2_measure_efi_app_invocation() - measure efi app invocation |
| 2184 | * |
| 2185 | * Return: status code |
| 2186 | */ |
Masahisa Kojima | ce3dbc5 | 2021-10-26 17:27:25 +0900 | [diff] [blame] | 2187 | efi_status_t efi_tcg2_measure_efi_app_invocation(struct efi_loaded_image_obj *handle) |
Masahisa Kojima | 8fc4e0b | 2021-08-13 16:12:40 +0900 | [diff] [blame] | 2188 | { |
| 2189 | efi_status_t ret; |
| 2190 | u32 pcr_index; |
| 2191 | struct udevice *dev; |
| 2192 | u32 event = 0; |
Masahisa Kojima | 3d49ee8 | 2021-10-26 17:27:24 +0900 | [diff] [blame] | 2193 | struct smbios_entry *entry; |
Masahisa Kojima | 8fc4e0b | 2021-08-13 16:12:40 +0900 | [diff] [blame] | 2194 | |
Masahisa Kojima | 9e32bf9 | 2021-12-07 14:15:32 +0900 | [diff] [blame] | 2195 | if (!is_tcg2_protocol_installed()) |
| 2196 | return EFI_SUCCESS; |
| 2197 | |
Masahisa Kojima | 8fc4e0b | 2021-08-13 16:12:40 +0900 | [diff] [blame] | 2198 | if (tcg2_efi_app_invoked) |
| 2199 | return EFI_SUCCESS; |
| 2200 | |
| 2201 | ret = platform_get_tpm2_device(&dev); |
| 2202 | if (ret != EFI_SUCCESS) |
Masahisa Kojima | f9b51dc | 2021-12-07 14:15:33 +0900 | [diff] [blame] | 2203 | return EFI_SECURITY_VIOLATION; |
Masahisa Kojima | 8fc4e0b | 2021-08-13 16:12:40 +0900 | [diff] [blame] | 2204 | |
| 2205 | ret = tcg2_measure_boot_variable(dev); |
| 2206 | if (ret != EFI_SUCCESS) |
| 2207 | goto out; |
| 2208 | |
| 2209 | ret = tcg2_measure_event(dev, 4, EV_EFI_ACTION, |
| 2210 | strlen(EFI_CALLING_EFI_APPLICATION), |
| 2211 | (u8 *)EFI_CALLING_EFI_APPLICATION); |
| 2212 | if (ret != EFI_SUCCESS) |
| 2213 | goto out; |
| 2214 | |
Masahisa Kojima | 3d49ee8 | 2021-10-26 17:27:24 +0900 | [diff] [blame] | 2215 | entry = (struct smbios_entry *)find_smbios_table(); |
| 2216 | if (entry) { |
| 2217 | ret = tcg2_measure_smbios(dev, entry); |
| 2218 | if (ret != EFI_SUCCESS) |
| 2219 | goto out; |
| 2220 | } |
| 2221 | |
Masahisa Kojima | ce3dbc5 | 2021-10-26 17:27:25 +0900 | [diff] [blame] | 2222 | ret = tcg2_measure_gpt_data(dev, handle); |
| 2223 | if (ret != EFI_SUCCESS) |
| 2224 | goto out; |
| 2225 | |
Masahisa Kojima | 8fc4e0b | 2021-08-13 16:12:40 +0900 | [diff] [blame] | 2226 | for (pcr_index = 0; pcr_index <= 7; pcr_index++) { |
| 2227 | ret = tcg2_measure_event(dev, pcr_index, EV_SEPARATOR, |
| 2228 | sizeof(event), (u8 *)&event); |
| 2229 | if (ret != EFI_SUCCESS) |
| 2230 | goto out; |
| 2231 | } |
| 2232 | |
| 2233 | tcg2_efi_app_invoked = true; |
| 2234 | out: |
| 2235 | return ret; |
| 2236 | } |
| 2237 | |
| 2238 | /** |
| 2239 | * efi_tcg2_measure_efi_app_exit() - measure efi app exit |
| 2240 | * |
| 2241 | * Return: status code |
| 2242 | */ |
| 2243 | efi_status_t efi_tcg2_measure_efi_app_exit(void) |
| 2244 | { |
| 2245 | efi_status_t ret; |
| 2246 | struct udevice *dev; |
| 2247 | |
Masahisa Kojima | 9e32bf9 | 2021-12-07 14:15:32 +0900 | [diff] [blame] | 2248 | if (!is_tcg2_protocol_installed()) |
| 2249 | return EFI_SUCCESS; |
| 2250 | |
Masahisa Kojima | 8fc4e0b | 2021-08-13 16:12:40 +0900 | [diff] [blame] | 2251 | ret = platform_get_tpm2_device(&dev); |
| 2252 | if (ret != EFI_SUCCESS) |
| 2253 | return ret; |
| 2254 | |
| 2255 | ret = tcg2_measure_event(dev, 4, EV_EFI_ACTION, |
| 2256 | strlen(EFI_RETURNING_FROM_EFI_APPLICATION), |
| 2257 | (u8 *)EFI_RETURNING_FROM_EFI_APPLICATION); |
| 2258 | return ret; |
| 2259 | } |
| 2260 | |
| 2261 | /** |
Masahisa Kojima | fdff03e | 2021-08-13 16:12:41 +0900 | [diff] [blame] | 2262 | * efi_tcg2_notify_exit_boot_services() - ExitBootService callback |
| 2263 | * |
| 2264 | * @event: callback event |
| 2265 | * @context: callback context |
| 2266 | */ |
| 2267 | static void EFIAPI |
| 2268 | efi_tcg2_notify_exit_boot_services(struct efi_event *event, void *context) |
| 2269 | { |
| 2270 | efi_status_t ret; |
| 2271 | struct udevice *dev; |
| 2272 | |
| 2273 | EFI_ENTRY("%p, %p", event, context); |
| 2274 | |
Ilias Apalodimas | 5ba0397 | 2021-11-18 09:03:39 +0200 | [diff] [blame] | 2275 | event_log.ebs_called = true; |
Masahisa Kojima | 9e32bf9 | 2021-12-07 14:15:32 +0900 | [diff] [blame] | 2276 | |
| 2277 | if (!is_tcg2_protocol_installed()) { |
| 2278 | ret = EFI_SUCCESS; |
| 2279 | goto out; |
| 2280 | } |
| 2281 | |
Masahisa Kojima | fdff03e | 2021-08-13 16:12:41 +0900 | [diff] [blame] | 2282 | ret = platform_get_tpm2_device(&dev); |
| 2283 | if (ret != EFI_SUCCESS) |
| 2284 | goto out; |
| 2285 | |
| 2286 | ret = tcg2_measure_event(dev, 5, EV_EFI_ACTION, |
| 2287 | strlen(EFI_EXIT_BOOT_SERVICES_INVOCATION), |
| 2288 | (u8 *)EFI_EXIT_BOOT_SERVICES_INVOCATION); |
| 2289 | if (ret != EFI_SUCCESS) |
| 2290 | goto out; |
| 2291 | |
| 2292 | ret = tcg2_measure_event(dev, 5, EV_EFI_ACTION, |
| 2293 | strlen(EFI_EXIT_BOOT_SERVICES_SUCCEEDED), |
| 2294 | (u8 *)EFI_EXIT_BOOT_SERVICES_SUCCEEDED); |
| 2295 | |
| 2296 | out: |
| 2297 | EFI_EXIT(ret); |
| 2298 | } |
| 2299 | |
| 2300 | /** |
| 2301 | * efi_tcg2_notify_exit_boot_services_failed() |
| 2302 | * - notify ExitBootServices() is failed |
| 2303 | * |
| 2304 | * Return: status code |
| 2305 | */ |
| 2306 | efi_status_t efi_tcg2_notify_exit_boot_services_failed(void) |
| 2307 | { |
| 2308 | struct udevice *dev; |
| 2309 | efi_status_t ret; |
| 2310 | |
Masahisa Kojima | 9e32bf9 | 2021-12-07 14:15:32 +0900 | [diff] [blame] | 2311 | if (!is_tcg2_protocol_installed()) |
| 2312 | return EFI_SUCCESS; |
| 2313 | |
Masahisa Kojima | fdff03e | 2021-08-13 16:12:41 +0900 | [diff] [blame] | 2314 | ret = platform_get_tpm2_device(&dev); |
| 2315 | if (ret != EFI_SUCCESS) |
| 2316 | goto out; |
| 2317 | |
| 2318 | ret = tcg2_measure_event(dev, 5, EV_EFI_ACTION, |
| 2319 | strlen(EFI_EXIT_BOOT_SERVICES_INVOCATION), |
| 2320 | (u8 *)EFI_EXIT_BOOT_SERVICES_INVOCATION); |
| 2321 | if (ret != EFI_SUCCESS) |
| 2322 | goto out; |
| 2323 | |
| 2324 | ret = tcg2_measure_event(dev, 5, EV_EFI_ACTION, |
| 2325 | strlen(EFI_EXIT_BOOT_SERVICES_FAILED), |
| 2326 | (u8 *)EFI_EXIT_BOOT_SERVICES_FAILED); |
| 2327 | |
| 2328 | out: |
| 2329 | return ret; |
| 2330 | } |
| 2331 | |
| 2332 | /** |
Masahisa Kojima | cfbcf05 | 2021-08-13 16:12:39 +0900 | [diff] [blame] | 2333 | * tcg2_measure_secure_boot_variable() - measure secure boot variables |
| 2334 | * |
| 2335 | * @dev: TPM device |
| 2336 | * |
| 2337 | * Return: status code |
| 2338 | */ |
| 2339 | static efi_status_t tcg2_measure_secure_boot_variable(struct udevice *dev) |
| 2340 | { |
| 2341 | u8 *data; |
| 2342 | efi_uintn_t data_size; |
| 2343 | u32 count, i; |
| 2344 | efi_status_t ret; |
Masahisa Kojima | 65aa259 | 2021-10-26 17:27:27 +0900 | [diff] [blame] | 2345 | u8 deployed_mode; |
| 2346 | efi_uintn_t size; |
| 2347 | u32 deployed_audit_pcr_index = 1; |
| 2348 | |
| 2349 | size = sizeof(deployed_mode); |
| 2350 | ret = efi_get_variable_int(u"DeployedMode", &efi_global_variable_guid, |
| 2351 | NULL, &size, &deployed_mode, NULL); |
| 2352 | if (ret != EFI_SUCCESS || !deployed_mode) |
| 2353 | deployed_audit_pcr_index = 7; |
Masahisa Kojima | cfbcf05 | 2021-08-13 16:12:39 +0900 | [diff] [blame] | 2354 | |
| 2355 | count = ARRAY_SIZE(secure_variables); |
| 2356 | for (i = 0; i < count; i++) { |
Heinrich Schuchardt | a45dac1 | 2021-09-09 08:50:01 +0200 | [diff] [blame] | 2357 | const efi_guid_t *guid; |
| 2358 | |
Masahisa Kojima | 96485d2 | 2021-10-26 17:27:26 +0900 | [diff] [blame] | 2359 | guid = efi_auth_var_get_guid(secure_variables[i].name); |
Heinrich Schuchardt | a45dac1 | 2021-09-09 08:50:01 +0200 | [diff] [blame] | 2360 | |
Masahisa Kojima | 96485d2 | 2021-10-26 17:27:26 +0900 | [diff] [blame] | 2361 | data = efi_get_var(secure_variables[i].name, guid, &data_size); |
| 2362 | if (!data && !secure_variables[i].accept_empty) |
| 2363 | continue; |
Masahisa Kojima | cfbcf05 | 2021-08-13 16:12:39 +0900 | [diff] [blame] | 2364 | |
Masahisa Kojima | 65aa259 | 2021-10-26 17:27:27 +0900 | [diff] [blame] | 2365 | if (u16_strcmp(u"DeployedMode", secure_variables[i].name)) |
| 2366 | secure_variables[i].pcr_index = deployed_audit_pcr_index; |
| 2367 | if (u16_strcmp(u"AuditMode", secure_variables[i].name)) |
| 2368 | secure_variables[i].pcr_index = deployed_audit_pcr_index; |
| 2369 | |
| 2370 | ret = tcg2_measure_variable(dev, secure_variables[i].pcr_index, |
Masahisa Kojima | cfbcf05 | 2021-08-13 16:12:39 +0900 | [diff] [blame] | 2371 | EV_EFI_VARIABLE_DRIVER_CONFIG, |
Masahisa Kojima | 96485d2 | 2021-10-26 17:27:26 +0900 | [diff] [blame] | 2372 | secure_variables[i].name, guid, |
Masahisa Kojima | cfbcf05 | 2021-08-13 16:12:39 +0900 | [diff] [blame] | 2373 | data_size, data); |
| 2374 | free(data); |
| 2375 | if (ret != EFI_SUCCESS) |
| 2376 | goto error; |
| 2377 | } |
| 2378 | |
Masahisa Kojima | cfbcf05 | 2021-08-13 16:12:39 +0900 | [diff] [blame] | 2379 | error: |
| 2380 | return ret; |
| 2381 | } |
| 2382 | |
| 2383 | /** |
Masahisa Kojima | 54bec17 | 2021-12-07 14:15:31 +0900 | [diff] [blame] | 2384 | * efi_tcg2_do_initial_measurement() - do initial measurement |
| 2385 | * |
| 2386 | * Return: status code |
| 2387 | */ |
| 2388 | efi_status_t efi_tcg2_do_initial_measurement(void) |
| 2389 | { |
| 2390 | efi_status_t ret; |
| 2391 | struct udevice *dev; |
| 2392 | |
| 2393 | if (!is_tcg2_protocol_installed()) |
| 2394 | return EFI_SUCCESS; |
| 2395 | |
| 2396 | ret = platform_get_tpm2_device(&dev); |
| 2397 | if (ret != EFI_SUCCESS) |
| 2398 | return EFI_SECURITY_VIOLATION; |
| 2399 | |
| 2400 | ret = tcg2_measure_secure_boot_variable(dev); |
| 2401 | if (ret != EFI_SUCCESS) |
| 2402 | goto out; |
| 2403 | |
| 2404 | out: |
| 2405 | return ret; |
| 2406 | } |
| 2407 | |
| 2408 | /** |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 2409 | * efi_tcg2_register() - register EFI_TCG2_PROTOCOL |
| 2410 | * |
| 2411 | * If a TPM2 device is available, the TPM TCG2 Protocol is registered |
| 2412 | * |
Masahisa Kojima | 54bec17 | 2021-12-07 14:15:31 +0900 | [diff] [blame] | 2413 | * Return: status code |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 2414 | */ |
| 2415 | efi_status_t efi_tcg2_register(void) |
| 2416 | { |
Ilias Apalodimas | d8cf113 | 2021-03-25 13:31:45 +0200 | [diff] [blame] | 2417 | efi_status_t ret = EFI_SUCCESS; |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 2418 | struct udevice *dev; |
Masahisa Kojima | fdff03e | 2021-08-13 16:12:41 +0900 | [diff] [blame] | 2419 | struct efi_event *event; |
Ilias Apalodimas | d6b55a4 | 2021-11-18 10:13:42 +0200 | [diff] [blame] | 2420 | u32 err; |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 2421 | |
| 2422 | ret = platform_get_tpm2_device(&dev); |
Ilias Apalodimas | 9aeb380 | 2020-11-16 08:52:41 +0200 | [diff] [blame] | 2423 | if (ret != EFI_SUCCESS) { |
| 2424 | log_warning("Unable to find TPMv2 device\n"); |
Ilias Apalodimas | 97f446a | 2021-05-10 21:19:14 +0300 | [diff] [blame] | 2425 | return EFI_SUCCESS; |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 2426 | } |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 2427 | |
Ilias Apalodimas | d6b55a4 | 2021-11-18 10:13:42 +0200 | [diff] [blame] | 2428 | /* initialize the TPM as early as possible. */ |
| 2429 | err = tpm_startup(dev, TPM_ST_CLEAR); |
| 2430 | if (err) { |
| 2431 | log_err("TPM startup failed\n"); |
| 2432 | goto fail; |
| 2433 | } |
| 2434 | |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 2435 | ret = efi_init_event_log(); |
Masahisa Kojima | 54bec17 | 2021-12-07 14:15:31 +0900 | [diff] [blame] | 2436 | if (ret != EFI_SUCCESS) { |
| 2437 | tcg2_uninit(); |
Ilias Apalodimas | d8cf113 | 2021-03-25 13:31:45 +0200 | [diff] [blame] | 2438 | goto fail; |
Masahisa Kojima | 54bec17 | 2021-12-07 14:15:31 +0900 | [diff] [blame] | 2439 | } |
Ilias Apalodimas | c8d0fd5 | 2020-11-30 11:47:40 +0200 | [diff] [blame] | 2440 | |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 2441 | ret = efi_add_protocol(efi_root, &efi_guid_tcg2_protocol, |
| 2442 | (void *)&efi_tcg2_protocol); |
Ilias Apalodimas | d8cf113 | 2021-03-25 13:31:45 +0200 | [diff] [blame] | 2443 | if (ret != EFI_SUCCESS) { |
Ilias Apalodimas | 2052759 | 2021-05-12 00:03:41 +0300 | [diff] [blame] | 2444 | tcg2_uninit(); |
Ilias Apalodimas | d8cf113 | 2021-03-25 13:31:45 +0200 | [diff] [blame] | 2445 | goto fail; |
| 2446 | } |
Masahisa Kojima | cfbcf05 | 2021-08-13 16:12:39 +0900 | [diff] [blame] | 2447 | |
Masahisa Kojima | fdff03e | 2021-08-13 16:12:41 +0900 | [diff] [blame] | 2448 | ret = efi_create_event(EVT_SIGNAL_EXIT_BOOT_SERVICES, TPL_CALLBACK, |
| 2449 | efi_tcg2_notify_exit_boot_services, NULL, |
| 2450 | NULL, &event); |
| 2451 | if (ret != EFI_SUCCESS) { |
| 2452 | tcg2_uninit(); |
| 2453 | goto fail; |
| 2454 | } |
| 2455 | |
Ilias Apalodimas | d8cf113 | 2021-03-25 13:31:45 +0200 | [diff] [blame] | 2456 | return ret; |
Ilias Apalodimas | 97f446a | 2021-05-10 21:19:14 +0300 | [diff] [blame] | 2457 | |
Ilias Apalodimas | d8cf113 | 2021-03-25 13:31:45 +0200 | [diff] [blame] | 2458 | fail: |
Ilias Apalodimas | 2052759 | 2021-05-12 00:03:41 +0300 | [diff] [blame] | 2459 | log_err("Cannot install EFI_TCG2_PROTOCOL\n"); |
Masahisa Kojima | 54bec17 | 2021-12-07 14:15:31 +0900 | [diff] [blame] | 2460 | return ret; |
Ilias Apalodimas | c1c0210 | 2020-11-11 11:18:11 +0200 | [diff] [blame] | 2461 | } |