Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 1 | /* |
Sandrine Bailleux | 4e9af17 | 2021-07-01 14:13:09 +0200 | [diff] [blame] | 2 | * Copyright (c) 2020-2021, Arm Limited. All rights reserved. |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #include <assert.h> |
| 8 | #include <errno.h> |
| 9 | #include <string.h> |
| 10 | #include <arch_helpers.h> |
| 11 | |
| 12 | #include <common/bl_common.h> |
| 13 | #include <common/debug.h> |
| 14 | #include <drivers/auth/crypto_mod.h> |
Sandrine Bailleux | 3c2db6f | 2021-07-07 14:47:08 +0200 | [diff] [blame] | 15 | #include <drivers/measured_boot/event_log/event_log.h> |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 16 | |
| 17 | #include <plat/common/platform.h> |
| 18 | |
Manish V Badarkhe | e112a5a | 2021-10-06 23:41:50 +0100 | [diff] [blame] | 19 | #if TPM_ALG_ID == TPM_ALG_SHA512 |
| 20 | #define CRYPTO_MD_ID CRYPTO_MD_SHA512 |
| 21 | #elif TPM_ALG_ID == TPM_ALG_SHA384 |
| 22 | #define CRYPTO_MD_ID CRYPTO_MD_SHA384 |
| 23 | #elif TPM_ALG_ID == TPM_ALG_SHA256 |
| 24 | #define CRYPTO_MD_ID CRYPTO_MD_SHA256 |
| 25 | #else |
| 26 | # error Invalid TPM algorithm. |
| 27 | #endif /* TPM_ALG_ID */ |
| 28 | |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 29 | /* Running Event Log Pointer */ |
| 30 | static uint8_t *log_ptr; |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 31 | |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 32 | /* Pointer to the first byte past end of the Event Log buffer */ |
| 33 | static uintptr_t log_end; |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 34 | |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 35 | /* Pointer to event_log_metadata_t */ |
| 36 | static const event_log_metadata_t *plat_metadata_ptr; |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 37 | |
| 38 | /* TCG_EfiSpecIdEvent */ |
| 39 | static const id_event_headers_t id_event_header = { |
| 40 | .header = { |
| 41 | .pcr_index = PCR_0, |
| 42 | .event_type = EV_NO_ACTION, |
| 43 | .digest = {0}, |
| 44 | .event_size = (uint32_t)(sizeof(id_event_struct_t) + |
| 45 | (sizeof(id_event_algorithm_size_t) * |
| 46 | HASH_ALG_COUNT)) |
| 47 | }, |
| 48 | |
| 49 | .struct_header = { |
| 50 | .signature = TCG_ID_EVENT_SIGNATURE_03, |
| 51 | .platform_class = PLATFORM_CLASS_CLIENT, |
| 52 | .spec_version_minor = TCG_SPEC_VERSION_MINOR_TPM2, |
| 53 | .spec_version_major = TCG_SPEC_VERSION_MAJOR_TPM2, |
| 54 | .spec_errata = TCG_SPEC_ERRATA_TPM2, |
| 55 | .uintn_size = (uint8_t)(sizeof(unsigned int) / |
| 56 | sizeof(uint32_t)), |
| 57 | .number_of_algorithms = HASH_ALG_COUNT |
| 58 | } |
| 59 | }; |
| 60 | |
| 61 | static const event2_header_t locality_event_header = { |
Sandrine Bailleux | be76143 | 2021-06-23 10:40:08 +0200 | [diff] [blame] | 62 | /* |
| 63 | * All EV_NO_ACTION events SHALL set |
| 64 | * TCG_PCR_EVENT2.pcrIndex = 0, unless otherwise specified |
| 65 | */ |
| 66 | .pcr_index = PCR_0, |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 67 | |
Sandrine Bailleux | be76143 | 2021-06-23 10:40:08 +0200 | [diff] [blame] | 68 | /* |
| 69 | * All EV_NO_ACTION events SHALL set |
| 70 | * TCG_PCR_EVENT2.eventType = 03h |
| 71 | */ |
| 72 | .event_type = EV_NO_ACTION, |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 73 | |
Sandrine Bailleux | be76143 | 2021-06-23 10:40:08 +0200 | [diff] [blame] | 74 | /* |
| 75 | * All EV_NO_ACTION events SHALL set TCG_PCR_EVENT2.digests to all |
| 76 | * 0x00's for each allocated Hash algorithm |
| 77 | */ |
| 78 | .digests = { |
| 79 | .count = HASH_ALG_COUNT |
| 80 | } |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 81 | }; |
| 82 | |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 83 | /* |
Sandrine Bailleux | 36af1c8 | 2021-06-17 15:44:40 +0200 | [diff] [blame] | 84 | * Record a measurement as a TCG_PCR_EVENT2 event |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 85 | * |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 86 | * @param[in] hash Pointer to hash data of TCG_DIGEST_SIZE bytes |
| 87 | * @param[in] metadata_ptr Pointer to event_log_metadata_t structure |
Sandrine Bailleux | 9ebe81e | 2021-06-23 15:43:02 +0200 | [diff] [blame] | 88 | * |
| 89 | * There must be room for storing this new event into the event log buffer. |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 90 | */ |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 91 | static void event_log_record(const uint8_t *hash, |
| 92 | const event_log_metadata_t *metadata_ptr) |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 93 | { |
| 94 | void *ptr = log_ptr; |
| 95 | uint32_t name_len; |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 96 | |
Sandrine Bailleux | 898c099 | 2021-06-17 16:10:40 +0200 | [diff] [blame] | 97 | assert(hash != NULL); |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 98 | assert(metadata_ptr != NULL); |
| 99 | assert(metadata_ptr->name != NULL); |
| 100 | /* event_log_init() must have been called prior to this. */ |
| 101 | assert(log_ptr != NULL); |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 102 | |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 103 | name_len = (uint32_t)strlen(metadata_ptr->name) + 1U; |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 104 | |
| 105 | /* Check for space in Event Log buffer */ |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 106 | assert(((uintptr_t)ptr + (uint32_t)EVENT2_HDR_SIZE + name_len) < |
| 107 | log_end); |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 108 | |
| 109 | /* |
| 110 | * As per TCG specifications, firmware components that are measured |
| 111 | * into PCR[0] must be logged in the event log using the event type |
| 112 | * EV_POST_CODE. |
| 113 | */ |
| 114 | /* TCG_PCR_EVENT2.PCRIndex */ |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 115 | ((event2_header_t *)ptr)->pcr_index = metadata_ptr->pcr; |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 116 | |
| 117 | /* TCG_PCR_EVENT2.EventType */ |
| 118 | ((event2_header_t *)ptr)->event_type = EV_POST_CODE; |
| 119 | |
| 120 | /* TCG_PCR_EVENT2.Digests.Count */ |
| 121 | ptr = (uint8_t *)ptr + offsetof(event2_header_t, digests); |
| 122 | ((tpml_digest_values *)ptr)->count = HASH_ALG_COUNT; |
| 123 | |
| 124 | /* TCG_PCR_EVENT2.Digests[] */ |
Alexei Fedorov | f52e6a1 | 2020-09-28 14:47:54 +0100 | [diff] [blame] | 125 | ptr = (uint8_t *)((uintptr_t)ptr + |
| 126 | offsetof(tpml_digest_values, digests)); |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 127 | |
| 128 | /* TCG_PCR_EVENT2.Digests[].AlgorithmId */ |
| 129 | ((tpmt_ha *)ptr)->algorithm_id = TPM_ALG_ID; |
| 130 | |
| 131 | /* TCG_PCR_EVENT2.Digests[].Digest[] */ |
Alexei Fedorov | f52e6a1 | 2020-09-28 14:47:54 +0100 | [diff] [blame] | 132 | ptr = (uint8_t *)((uintptr_t)ptr + offsetof(tpmt_ha, digest)); |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 133 | |
Sandrine Bailleux | 898c099 | 2021-06-17 16:10:40 +0200 | [diff] [blame] | 134 | /* Copy digest */ |
| 135 | (void)memcpy(ptr, (const void *)hash, TCG_DIGEST_SIZE); |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 136 | |
| 137 | /* TCG_PCR_EVENT2.EventSize */ |
Alexei Fedorov | f52e6a1 | 2020-09-28 14:47:54 +0100 | [diff] [blame] | 138 | ptr = (uint8_t *)((uintptr_t)ptr + TCG_DIGEST_SIZE); |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 139 | ((event2_data_t *)ptr)->event_size = name_len; |
| 140 | |
| 141 | /* Copy event data to TCG_PCR_EVENT2.Event */ |
| 142 | (void)memcpy((void *)(((event2_data_t *)ptr)->event), |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 143 | (const void *)metadata_ptr->name, name_len); |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 144 | |
| 145 | /* End of event data */ |
Alexei Fedorov | f52e6a1 | 2020-09-28 14:47:54 +0100 | [diff] [blame] | 146 | log_ptr = (uint8_t *)((uintptr_t)ptr + |
| 147 | offsetof(event2_data_t, event) + name_len); |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 148 | } |
| 149 | |
| 150 | /* |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 151 | * Initialise Event Log global variables, used during the recording |
| 152 | * of various payload measurements into the Event Log buffer |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 153 | * |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 154 | * @param[in] event_log_start Base address of Event Log buffer |
| 155 | * @param[in] event_log_finish End address of Event Log buffer, |
| 156 | * it is a first byte past end of the |
| 157 | * buffer |
| 158 | */ |
| 159 | void event_log_init(uint8_t *event_log_start, uint8_t *event_log_finish) |
| 160 | { |
| 161 | assert(event_log_start != NULL); |
| 162 | assert(event_log_finish > event_log_start); |
| 163 | |
| 164 | log_ptr = event_log_start; |
| 165 | log_end = (uintptr_t)event_log_finish; |
| 166 | |
| 167 | /* Get pointer to platform's event_log_metadata_t structure */ |
| 168 | plat_metadata_ptr = plat_event_log_get_metadata(); |
| 169 | assert(plat_metadata_ptr != NULL); |
| 170 | } |
| 171 | |
| 172 | /* |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 173 | * Initialises Event Log by writing Specification ID and |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 174 | * Startup Locality events |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 175 | */ |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 176 | void event_log_write_header(void) |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 177 | { |
| 178 | const char locality_signature[] = TCG_STARTUP_LOCALITY_SIGNATURE; |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 179 | void *ptr = log_ptr; |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 180 | |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 181 | /* event_log_init() must have been called prior to this. */ |
| 182 | assert(log_ptr != NULL); |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 183 | |
| 184 | /* |
| 185 | * Add Specification ID Event first |
| 186 | * |
| 187 | * Copy TCG_EfiSpecIDEventStruct structure header |
| 188 | */ |
| 189 | (void)memcpy(ptr, (const void *)&id_event_header, |
| 190 | sizeof(id_event_header)); |
Alexei Fedorov | f52e6a1 | 2020-09-28 14:47:54 +0100 | [diff] [blame] | 191 | ptr = (uint8_t *)((uintptr_t)ptr + sizeof(id_event_header)); |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 192 | |
| 193 | /* TCG_EfiSpecIdEventAlgorithmSize structure */ |
| 194 | ((id_event_algorithm_size_t *)ptr)->algorithm_id = TPM_ALG_ID; |
| 195 | ((id_event_algorithm_size_t *)ptr)->digest_size = TCG_DIGEST_SIZE; |
Alexei Fedorov | f52e6a1 | 2020-09-28 14:47:54 +0100 | [diff] [blame] | 196 | ptr = (uint8_t *)((uintptr_t)ptr + sizeof(id_event_algorithm_size_t)); |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 197 | |
| 198 | /* |
| 199 | * TCG_EfiSpecIDEventStruct.vendorInfoSize |
| 200 | * No vendor data |
| 201 | */ |
| 202 | ((id_event_struct_data_t *)ptr)->vendor_info_size = 0; |
Alexei Fedorov | f52e6a1 | 2020-09-28 14:47:54 +0100 | [diff] [blame] | 203 | ptr = (uint8_t *)((uintptr_t)ptr + |
| 204 | offsetof(id_event_struct_data_t, vendor_info)); |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 205 | |
| 206 | /* |
| 207 | * The Startup Locality event should be placed in the log before |
| 208 | * any event which extends PCR[0]. |
| 209 | * |
| 210 | * Ref. TCG PC Client Platform Firmware Profile 9.4.5.3 |
| 211 | */ |
| 212 | |
| 213 | /* Copy Startup Locality Event Header */ |
| 214 | (void)memcpy(ptr, (const void *)&locality_event_header, |
| 215 | sizeof(locality_event_header)); |
Alexei Fedorov | f52e6a1 | 2020-09-28 14:47:54 +0100 | [diff] [blame] | 216 | ptr = (uint8_t *)((uintptr_t)ptr + sizeof(locality_event_header)); |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 217 | |
| 218 | /* TCG_PCR_EVENT2.Digests[].AlgorithmId */ |
| 219 | ((tpmt_ha *)ptr)->algorithm_id = TPM_ALG_ID; |
| 220 | |
| 221 | /* TCG_PCR_EVENT2.Digests[].Digest[] */ |
| 222 | (void)memset(&((tpmt_ha *)ptr)->digest, 0, TPM_ALG_ID); |
Alexei Fedorov | f52e6a1 | 2020-09-28 14:47:54 +0100 | [diff] [blame] | 223 | ptr = (uint8_t *)((uintptr_t)ptr + |
| 224 | offsetof(tpmt_ha, digest) + TCG_DIGEST_SIZE); |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 225 | |
| 226 | /* TCG_PCR_EVENT2.EventSize */ |
| 227 | ((event2_data_t *)ptr)->event_size = |
| 228 | (uint32_t)sizeof(startup_locality_event_t); |
Alexei Fedorov | f52e6a1 | 2020-09-28 14:47:54 +0100 | [diff] [blame] | 229 | ptr = (uint8_t *)((uintptr_t)ptr + offsetof(event2_data_t, event)); |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 230 | |
| 231 | /* TCG_EfiStartupLocalityEvent.Signature */ |
| 232 | (void)memcpy(ptr, (const void *)locality_signature, |
| 233 | sizeof(TCG_STARTUP_LOCALITY_SIGNATURE)); |
| 234 | |
| 235 | /* |
| 236 | * TCG_EfiStartupLocalityEvent.StartupLocality = 0: |
| 237 | * the platform's boot firmware |
| 238 | */ |
| 239 | ((startup_locality_event_t *)ptr)->startup_locality = 0U; |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 240 | log_ptr = (uint8_t *)((uintptr_t)ptr + sizeof(startup_locality_event_t)); |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | /* |
| 244 | * Calculate and write hash of image, configuration data, etc. |
| 245 | * to Event Log. |
| 246 | * |
| 247 | * @param[in] data_base Address of data |
| 248 | * @param[in] data_size Size of data |
| 249 | * @param[in] data_id Data ID |
| 250 | * @return: |
| 251 | * 0 = success |
| 252 | * < 0 = error |
| 253 | */ |
Sandrine Bailleux | 4e9af17 | 2021-07-01 14:13:09 +0200 | [diff] [blame] | 254 | int event_log_measure_and_record(uintptr_t data_base, uint32_t data_size, |
| 255 | uint32_t data_id) |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 256 | { |
Manish V Badarkhe | e112a5a | 2021-10-06 23:41:50 +0100 | [diff] [blame] | 257 | unsigned char hash_data[CRYPTO_MD_MAX_SIZE]; |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 258 | int rc; |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 259 | const event_log_metadata_t *metadata_ptr = plat_metadata_ptr; |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 260 | |
Sandrine Bailleux | 74b8e17 | 2021-06-23 15:44:18 +0200 | [diff] [blame] | 261 | /* Get the metadata associated with this image. */ |
Manish V Badarkhe | 67009c3 | 2021-10-31 14:47:49 +0000 | [diff] [blame] | 262 | while ((metadata_ptr->id != EVLOG_INVALID_ID) && |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 263 | (metadata_ptr->id != data_id)) { |
| 264 | metadata_ptr++; |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 265 | } |
Manish V Badarkhe | 67009c3 | 2021-10-31 14:47:49 +0000 | [diff] [blame] | 266 | assert(metadata_ptr->id != EVLOG_INVALID_ID); |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 267 | |
| 268 | /* Calculate hash */ |
Manish V Badarkhe | e112a5a | 2021-10-06 23:41:50 +0100 | [diff] [blame] | 269 | rc = crypto_mod_calc_hash(CRYPTO_MD_ID, |
| 270 | (void *)data_base, data_size, hash_data); |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 271 | if (rc != 0) { |
| 272 | return rc; |
| 273 | } |
| 274 | |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 275 | event_log_record(hash_data, metadata_ptr); |
Sandrine Bailleux | 36af1c8 | 2021-06-17 15:44:40 +0200 | [diff] [blame] | 276 | |
Sandrine Bailleux | 9ebe81e | 2021-06-23 15:43:02 +0200 | [diff] [blame] | 277 | return 0; |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 278 | } |
| 279 | |
| 280 | /* |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 281 | * Get current Event Log buffer size i.e. used space of Event Log buffer |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 282 | * |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 283 | * @param[in] event_log_start Base Pointer to Event Log buffer |
| 284 | * |
| 285 | * @return: current Size of Event Log buffer |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 286 | */ |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 287 | size_t event_log_get_cur_size(uint8_t *event_log_start) |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 288 | { |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 289 | assert(event_log_start != NULL); |
| 290 | assert(log_ptr >= event_log_start); |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 291 | |
Manish V Badarkhe | 7ca9d65 | 2021-09-14 22:41:46 +0100 | [diff] [blame] | 292 | return (size_t)((uintptr_t)log_ptr - (uintptr_t)event_log_start); |
Alexei Fedorov | 71d81dc | 2020-07-13 13:58:06 +0100 | [diff] [blame] | 293 | } |