Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 1 | /** |
Ed Tanous | fedd457 | 2024-07-12 13:56:00 -0700 | [diff] [blame] | 2 | * Describes high level functions for converting an entire CPER log, and functions for parsing |
Lawrence Tang | 2800cd8 | 2022-07-05 16:08:20 +0100 | [diff] [blame] | 3 | * CPER headers and section descriptions into an intermediate JSON format. |
Ed Tanous | fedd457 | 2024-07-12 13:56:00 -0700 | [diff] [blame] | 4 | * |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 5 | * Author: Lawrence.Tang@arm.com |
| 6 | **/ |
| 7 | |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 8 | #include <limits.h> |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 9 | #include <stdio.h> |
Karthik Rajagopalan | 5220c9b | 2024-08-08 00:24:44 -0700 | [diff] [blame] | 10 | #include <string.h> |
Lawrence Tang | 5202bbb | 2022-08-12 14:54:36 +0100 | [diff] [blame] | 11 | #include <json.h> |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 12 | |
Thu Nguyen | e42fb48 | 2024-10-15 14:43:11 +0000 | [diff] [blame] | 13 | #include <libcper/base64.h> |
| 14 | #include <libcper/Cper.h> |
| 15 | #include <libcper/cper-parse.h> |
| 16 | #include <libcper/cper-parse-str.h> |
| 17 | #include <libcper/cper-utils.h> |
| 18 | #include <libcper/sections/cper-section.h> |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 19 | |
| 20 | //Private pre-definitions. |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 21 | json_object *cper_header_to_ir(EFI_COMMON_ERROR_RECORD_HEADER *header); |
| 22 | json_object * |
| 23 | cper_section_descriptor_to_ir(EFI_ERROR_SECTION_DESCRIPTOR *section_descriptor); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 24 | |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 25 | json_object *cper_buf_section_to_ir(const void *cper_section_buf, size_t size, |
| 26 | EFI_ERROR_SECTION_DESCRIPTOR *descriptor); |
| 27 | |
| 28 | json_object *cper_buf_to_ir(const unsigned char *cper_buf, size_t size) |
Ed Tanous | 8d47a37 | 2025-03-05 15:55:36 -0800 | [diff] [blame] | 29 | { |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 30 | json_object *parent = NULL; |
| 31 | json_object *header_ir = NULL; |
| 32 | json_object *section_descriptors_ir = NULL; |
| 33 | json_object *sections_ir = NULL; |
| 34 | |
| 35 | const unsigned char *pos = cper_buf; |
| 36 | unsigned int remaining = size; |
| 37 | |
| 38 | if (remaining < sizeof(EFI_COMMON_ERROR_RECORD_HEADER)) { |
| 39 | printf("Invalid CPER file: Invalid header (incorrect signature).\n"); |
| 40 | goto fail; |
Ed Tanous | 8d47a37 | 2025-03-05 15:55:36 -0800 | [diff] [blame] | 41 | } |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 42 | |
| 43 | EFI_COMMON_ERROR_RECORD_HEADER *header = NULL; |
| 44 | header = (EFI_COMMON_ERROR_RECORD_HEADER *)cper_buf; |
| 45 | pos += sizeof(EFI_COMMON_ERROR_RECORD_HEADER); |
| 46 | remaining -= sizeof(EFI_COMMON_ERROR_RECORD_HEADER); |
| 47 | if (header->SignatureStart != EFI_ERROR_RECORD_SIGNATURE_START) { |
| 48 | printf("Invalid CPER file: Invalid header (incorrect signature).\n"); |
| 49 | goto fail; |
| 50 | } |
| 51 | if (header->SectionCount == 0) { |
| 52 | printf("Invalid CPER file: Invalid section count (0).\n"); |
| 53 | goto fail; |
| 54 | } |
| 55 | if (remaining < sizeof(EFI_ERROR_SECTION_DESCRIPTOR)) { |
| 56 | printf("Invalid CPER file: Invalid section descriptor (section offset + length > size).\n"); |
| 57 | goto fail; |
| 58 | } |
| 59 | |
| 60 | //Create the header JSON object from the read bytes. |
| 61 | parent = json_object_new_object(); |
| 62 | header_ir = cper_header_to_ir(header); |
| 63 | |
| 64 | json_object_object_add(parent, "header", header_ir); |
| 65 | |
| 66 | //Read the appropriate number of section descriptors & sections, and convert them into IR format. |
| 67 | section_descriptors_ir = json_object_new_array(); |
| 68 | sections_ir = json_object_new_array(); |
| 69 | for (int i = 0; i < header->SectionCount; i++) { |
| 70 | //Create the section descriptor. |
| 71 | if (remaining < sizeof(EFI_ERROR_SECTION_DESCRIPTOR)) { |
| 72 | printf("Invalid number of section headers: Header states %d sections, could not read section %d.\n", |
| 73 | header->SectionCount, i + 1); |
| 74 | goto fail; |
| 75 | } |
| 76 | |
| 77 | EFI_ERROR_SECTION_DESCRIPTOR *section_descriptor; |
| 78 | section_descriptor = (EFI_ERROR_SECTION_DESCRIPTOR *)(pos); |
| 79 | pos += sizeof(EFI_ERROR_SECTION_DESCRIPTOR); |
| 80 | remaining -= sizeof(EFI_ERROR_SECTION_DESCRIPTOR); |
| 81 | |
| 82 | if (section_descriptor->SectionOffset > size) { |
| 83 | printf("Invalid section descriptor: Section offset > size.\n"); |
| 84 | goto fail; |
| 85 | } |
| 86 | |
| 87 | if (section_descriptor->SectionLength <= 0) { |
| 88 | printf("Invalid section descriptor: Section length <= 0.\n"); |
| 89 | goto fail; |
| 90 | } |
| 91 | |
| 92 | if (section_descriptor->SectionOffset > |
| 93 | UINT_MAX - section_descriptor->SectionLength) { |
| 94 | printf("Invalid section descriptor: Section offset + length would overflow.\n"); |
| 95 | goto fail; |
| 96 | } |
| 97 | |
| 98 | if (section_descriptor->SectionOffset + |
| 99 | section_descriptor->SectionLength > |
| 100 | size) { |
| 101 | printf("Invalid section descriptor: Section offset + length > size.\n"); |
| 102 | goto fail; |
| 103 | } |
| 104 | |
| 105 | const unsigned char *section_begin = |
| 106 | cper_buf + section_descriptor->SectionOffset; |
| 107 | |
| 108 | json_object_array_add( |
| 109 | section_descriptors_ir, |
| 110 | cper_section_descriptor_to_ir(section_descriptor)); |
| 111 | |
| 112 | //Read the section itself. |
| 113 | json_object *section_ir = cper_buf_section_to_ir( |
| 114 | section_begin, section_descriptor->SectionLength, |
| 115 | section_descriptor); |
| 116 | json_object_array_add(sections_ir, section_ir); |
| 117 | } |
| 118 | |
| 119 | //Add the header, section descriptors, and sections to a parent object. |
| 120 | json_object_object_add(parent, "sectionDescriptors", |
| 121 | section_descriptors_ir); |
| 122 | json_object_object_add(parent, "sections", sections_ir); |
| 123 | |
| 124 | return parent; |
| 125 | |
| 126 | fail: |
| 127 | json_object_put(sections_ir); |
| 128 | json_object_put(section_descriptors_ir); |
| 129 | json_object_put(parent); |
| 130 | printf("Failed to parse CPER file.\n"); |
| 131 | return NULL; |
Ed Tanous | 8d47a37 | 2025-03-05 15:55:36 -0800 | [diff] [blame] | 132 | } |
| 133 | |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 134 | //Reads a CPER log file at the given file location, and returns an intermediate |
| 135 | //JSON representation of this CPER record. |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 136 | json_object *cper_to_ir(FILE *cper_file) |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 137 | { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 138 | //Ensure this is really a CPER log. |
| 139 | EFI_COMMON_ERROR_RECORD_HEADER header; |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 140 | if (fread(&header, sizeof(EFI_COMMON_ERROR_RECORD_HEADER), 1, |
| 141 | cper_file) != 1) { |
| 142 | printf("Invalid CPER file: Invalid length (log too short).\n"); |
| 143 | return NULL; |
| 144 | } |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 145 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 146 | //Check if the header contains the magic bytes ("CPER"). |
| 147 | if (header.SignatureStart != EFI_ERROR_RECORD_SIGNATURE_START) { |
| 148 | printf("Invalid CPER file: Invalid header (incorrect signature).\n"); |
| 149 | return NULL; |
| 150 | } |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 151 | fseek(cper_file, -sizeof(EFI_COMMON_ERROR_RECORD_HEADER), SEEK_CUR); |
| 152 | unsigned char *cper_buf = malloc(header.RecordLength); |
| 153 | if (fread(cper_buf, header.RecordLength, 1, cper_file) != 1) { |
| 154 | printf("File read failed\n"); |
| 155 | free(cper_buf); |
| 156 | return NULL; |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 157 | } |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 158 | |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 159 | json_object *ir = cper_buf_to_ir(cper_buf, header.RecordLength); |
| 160 | free(cper_buf); |
| 161 | return ir; |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 162 | } |
| 163 | |
Karthik Rajagopalan | 5220c9b | 2024-08-08 00:24:44 -0700 | [diff] [blame] | 164 | char *cper_to_str_ir(FILE *cper_file) |
| 165 | { |
| 166 | json_object *jobj = cper_to_ir(cper_file); |
| 167 | char *str = jobj ? strdup(json_object_to_json_string(jobj)) : NULL; |
| 168 | |
| 169 | json_object_put(jobj); |
| 170 | return str; |
| 171 | } |
| 172 | |
| 173 | char *cperbuf_to_str_ir(const unsigned char *cper, size_t size) |
| 174 | { |
| 175 | FILE *cper_file = fmemopen((void *)cper, size, "r"); |
| 176 | |
| 177 | return cper_file ? cper_to_str_ir(cper_file) : NULL; |
| 178 | } |
| 179 | |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 180 | //Converts a parsed CPER record header into intermediate JSON object format. |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 181 | json_object *cper_header_to_ir(EFI_COMMON_ERROR_RECORD_HEADER *header) |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 182 | { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 183 | json_object *header_ir = json_object_new_object(); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 184 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 185 | //Revision/version information. |
| 186 | json_object_object_add(header_ir, "revision", |
| 187 | revision_to_ir(header->Revision)); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 188 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 189 | //Section count. |
| 190 | json_object_object_add(header_ir, "sectionCount", |
| 191 | json_object_new_int(header->SectionCount)); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 192 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 193 | //Error severity (with interpreted string version). |
| 194 | json_object *error_severity = json_object_new_object(); |
| 195 | json_object_object_add(error_severity, "code", |
| 196 | json_object_new_uint64(header->ErrorSeverity)); |
| 197 | json_object_object_add(error_severity, "name", |
| 198 | json_object_new_string(severity_to_string( |
| 199 | header->ErrorSeverity))); |
| 200 | json_object_object_add(header_ir, "severity", error_severity); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 201 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 202 | //Total length of the record (including headers) in bytes. |
| 203 | json_object_object_add(header_ir, "recordLength", |
| 204 | json_object_new_uint64(header->RecordLength)); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 205 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 206 | //If a timestamp exists according to validation bits, then add it. |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 207 | if (header->ValidationBits & 0x2) { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 208 | char timestamp_string[TIMESTAMP_LENGTH]; |
Ed Tanous | 596c59e | 2025-03-10 13:15:58 -0700 | [diff] [blame] | 209 | if (timestamp_to_string(timestamp_string, TIMESTAMP_LENGTH, |
| 210 | &header->TimeStamp) < 0) { |
| 211 | goto fail; |
| 212 | } |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 213 | json_object_object_add( |
| 214 | header_ir, "timestamp", |
| 215 | json_object_new_string(timestamp_string)); |
Ed Tanous | 596c59e | 2025-03-10 13:15:58 -0700 | [diff] [blame] | 216 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 217 | json_object_object_add( |
| 218 | header_ir, "timestampIsPrecise", |
| 219 | json_object_new_boolean(header->TimeStamp.Flag)); |
| 220 | } |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 221 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 222 | //If a platform ID exists according to the validation bits, then add it. |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 223 | if (header->ValidationBits & 0x1) { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 224 | char platform_string[GUID_STRING_LENGTH]; |
| 225 | guid_to_string(platform_string, &header->PlatformID); |
| 226 | json_object_object_add(header_ir, "platformID", |
| 227 | json_object_new_string(platform_string)); |
| 228 | } |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 229 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 230 | //If a partition ID exists according to the validation bits, then add it. |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 231 | if (header->ValidationBits & 0x4) { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 232 | char partition_string[GUID_STRING_LENGTH]; |
| 233 | guid_to_string(partition_string, &header->PartitionID); |
| 234 | json_object_object_add( |
| 235 | header_ir, "partitionID", |
| 236 | json_object_new_string(partition_string)); |
| 237 | } |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 238 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 239 | //Creator ID of the header. |
| 240 | char creator_string[GUID_STRING_LENGTH]; |
| 241 | guid_to_string(creator_string, &header->CreatorID); |
| 242 | json_object_object_add(header_ir, "creatorID", |
| 243 | json_object_new_string(creator_string)); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 244 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 245 | //Notification type for the header. Some defined types are available. |
| 246 | json_object *notification_type = json_object_new_object(); |
| 247 | char notification_type_string[GUID_STRING_LENGTH]; |
| 248 | guid_to_string(notification_type_string, &header->NotificationType); |
| 249 | json_object_object_add( |
| 250 | notification_type, "guid", |
| 251 | json_object_new_string(notification_type_string)); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 252 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 253 | //Add the human readable notification type if possible. |
| 254 | char *notification_type_readable = "Unknown"; |
| 255 | if (guid_equal(&header->NotificationType, |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 256 | &gEfiEventNotificationTypeCmcGuid)) { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 257 | notification_type_readable = "CMC"; |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 258 | } else if (guid_equal(&header->NotificationType, |
| 259 | &gEfiEventNotificationTypeCpeGuid)) { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 260 | notification_type_readable = "CPE"; |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 261 | } else if (guid_equal(&header->NotificationType, |
| 262 | &gEfiEventNotificationTypeMceGuid)) { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 263 | notification_type_readable = "MCE"; |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 264 | } else if (guid_equal(&header->NotificationType, |
| 265 | &gEfiEventNotificationTypePcieGuid)) { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 266 | notification_type_readable = "PCIe"; |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 267 | } else if (guid_equal(&header->NotificationType, |
| 268 | &gEfiEventNotificationTypeInitGuid)) { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 269 | notification_type_readable = "INIT"; |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 270 | } else if (guid_equal(&header->NotificationType, |
| 271 | &gEfiEventNotificationTypeNmiGuid)) { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 272 | notification_type_readable = "NMI"; |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 273 | } else if (guid_equal(&header->NotificationType, |
| 274 | &gEfiEventNotificationTypeBootGuid)) { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 275 | notification_type_readable = "Boot"; |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 276 | } else if (guid_equal(&header->NotificationType, |
| 277 | &gEfiEventNotificationTypeDmarGuid)) { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 278 | notification_type_readable = "DMAr"; |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 279 | } else if (guid_equal(&header->NotificationType, |
| 280 | &gEfiEventNotificationTypeSeaGuid)) { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 281 | notification_type_readable = "SEA"; |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 282 | } else if (guid_equal(&header->NotificationType, |
| 283 | &gEfiEventNotificationTypeSeiGuid)) { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 284 | notification_type_readable = "SEI"; |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 285 | } else if (guid_equal(&header->NotificationType, |
| 286 | &gEfiEventNotificationTypePeiGuid)) { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 287 | notification_type_readable = "PEI"; |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 288 | } else if (guid_equal(&header->NotificationType, |
| 289 | &gEfiEventNotificationTypeCxlGuid)) { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 290 | notification_type_readable = "CXL Component"; |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 291 | } |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 292 | json_object_object_add( |
| 293 | notification_type, "type", |
| 294 | json_object_new_string(notification_type_readable)); |
| 295 | json_object_object_add(header_ir, "notificationType", |
| 296 | notification_type); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 297 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 298 | //The record ID for this record, unique on a given system. |
| 299 | json_object_object_add(header_ir, "recordID", |
| 300 | json_object_new_uint64(header->RecordID)); |
| 301 | |
| 302 | //Flag for the record, and a human readable form. |
| 303 | json_object *flags = integer_to_readable_pair( |
| 304 | header->Flags, |
| 305 | sizeof(CPER_HEADER_FLAG_TYPES_KEYS) / sizeof(int), |
| 306 | CPER_HEADER_FLAG_TYPES_KEYS, CPER_HEADER_FLAG_TYPES_VALUES, |
| 307 | "Unknown"); |
| 308 | json_object_object_add(header_ir, "flags", flags); |
| 309 | |
| 310 | //Persistence information. Outside the scope of specification, so just a uint32 here. |
| 311 | json_object_object_add(header_ir, "persistenceInfo", |
| 312 | json_object_new_uint64(header->PersistenceInfo)); |
| 313 | return header_ir; |
Ed Tanous | 596c59e | 2025-03-10 13:15:58 -0700 | [diff] [blame] | 314 | |
| 315 | fail: |
| 316 | json_object_put(header_ir); |
| 317 | return NULL; |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | //Converts the given EFI section descriptor into JSON IR format. |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 321 | json_object * |
| 322 | cper_section_descriptor_to_ir(EFI_ERROR_SECTION_DESCRIPTOR *section_descriptor) |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 323 | { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 324 | json_object *section_descriptor_ir = json_object_new_object(); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 325 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 326 | //The offset of the section from the base of the record header, length. |
| 327 | json_object_object_add( |
| 328 | section_descriptor_ir, "sectionOffset", |
| 329 | json_object_new_uint64(section_descriptor->SectionOffset)); |
| 330 | json_object_object_add( |
| 331 | section_descriptor_ir, "sectionLength", |
| 332 | json_object_new_uint64(section_descriptor->SectionLength)); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 333 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 334 | //Revision. |
| 335 | json_object_object_add(section_descriptor_ir, "revision", |
| 336 | revision_to_ir(section_descriptor->Revision)); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 337 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 338 | //Flag bits. |
| 339 | json_object *flags = |
| 340 | bitfield_to_ir(section_descriptor->SectionFlags, 8, |
| 341 | CPER_SECTION_DESCRIPTOR_FLAGS_BITFIELD_NAMES); |
| 342 | json_object_object_add(section_descriptor_ir, "flags", flags); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 343 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 344 | //Section type (GUID). |
| 345 | json_object *section_type = json_object_new_object(); |
| 346 | char section_type_string[GUID_STRING_LENGTH]; |
| 347 | guid_to_string(section_type_string, §ion_descriptor->SectionType); |
| 348 | json_object_object_add(section_type, "data", |
| 349 | json_object_new_string(section_type_string)); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 350 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 351 | //Readable section type, if possible. |
Lawrence Tang | 580423f | 2022-08-24 09:37:53 +0100 | [diff] [blame] | 352 | const char *section_type_readable = "Unknown"; |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 353 | for (size_t i = 0; i < section_definitions_len; i++) { |
Lawrence Tang | f1f3b83 | 2022-08-24 09:42:39 +0100 | [diff] [blame] | 354 | if (guid_equal(section_definitions[i].Guid, |
| 355 | §ion_descriptor->SectionType)) { |
| 356 | section_type_readable = |
| 357 | section_definitions[i].ReadableName; |
Lawrence Tang | 580423f | 2022-08-24 09:37:53 +0100 | [diff] [blame] | 358 | break; |
| 359 | } |
| 360 | } |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 361 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 362 | json_object_object_add(section_type, "type", |
| 363 | json_object_new_string(section_type_readable)); |
| 364 | json_object_object_add(section_descriptor_ir, "sectionType", |
| 365 | section_type); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 366 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 367 | //If validation bits indicate it exists, add FRU ID. |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 368 | if (section_descriptor->SecValidMask & 0x1) { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 369 | char fru_id_string[GUID_STRING_LENGTH]; |
| 370 | guid_to_string(fru_id_string, §ion_descriptor->FruId); |
| 371 | json_object_object_add(section_descriptor_ir, "fruID", |
| 372 | json_object_new_string(fru_id_string)); |
| 373 | } |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 374 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 375 | //If validation bits indicate it exists, add FRU text. |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 376 | if ((section_descriptor->SecValidMask & 0x2) >> 1) { |
Ed Tanous | 8121f7e | 2025-03-06 14:39:07 -0800 | [diff] [blame] | 377 | int fru_text_len = 0; |
| 378 | for (; |
| 379 | fru_text_len < (int)sizeof(section_descriptor->FruString); |
| 380 | fru_text_len++) { |
| 381 | char c = section_descriptor->FruString[fru_text_len]; |
| 382 | if (c < 0) { |
| 383 | //printf("Fru text contains non-ASCII character\n"); |
| 384 | fru_text_len = -1; |
| 385 | break; |
| 386 | } |
| 387 | if (c == '\0') { |
| 388 | break; |
| 389 | } |
| 390 | } |
| 391 | if (fru_text_len >= 0) { |
| 392 | json_object_object_add( |
| 393 | section_descriptor_ir, "fruText", |
| 394 | json_object_new_string_len( |
| 395 | section_descriptor->FruString, |
| 396 | fru_text_len)); |
| 397 | } |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 398 | } |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 399 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 400 | //Section severity. |
| 401 | json_object *section_severity = json_object_new_object(); |
| 402 | json_object_object_add( |
| 403 | section_severity, "code", |
| 404 | json_object_new_uint64(section_descriptor->Severity)); |
| 405 | json_object_object_add(section_severity, "name", |
| 406 | json_object_new_string(severity_to_string( |
| 407 | section_descriptor->Severity))); |
| 408 | json_object_object_add(section_descriptor_ir, "severity", |
| 409 | section_severity); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 410 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 411 | return section_descriptor_ir; |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 412 | } |
| 413 | |
Ed Tanous | 12dbd4f | 2025-03-08 19:05:01 -0800 | [diff] [blame^] | 414 | json_object *read_section(const unsigned char *cper_section_buf, size_t size, |
| 415 | CPER_SECTION_DEFINITION *definition) |
Ed Tanous | d759a18 | 2025-03-07 15:51:45 -0800 | [diff] [blame] | 416 | { |
Ed Tanous | 12dbd4f | 2025-03-08 19:05:01 -0800 | [diff] [blame^] | 417 | if (definition->ToIR == NULL) { |
| 418 | return NULL; |
| 419 | } |
| 420 | json_object *section_ir = definition->ToIR(cper_section_buf, size); |
Ed Tanous | d759a18 | 2025-03-07 15:51:45 -0800 | [diff] [blame] | 421 | json_object *result = json_object_new_object(); |
Ed Tanous | 12dbd4f | 2025-03-08 19:05:01 -0800 | [diff] [blame^] | 422 | json_object_object_add(result, definition->ShortName, section_ir); |
Ed Tanous | d759a18 | 2025-03-07 15:51:45 -0800 | [diff] [blame] | 423 | return result; |
| 424 | } |
| 425 | |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 426 | //Converts the section described by a single given section descriptor. |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 427 | json_object *cper_buf_section_to_ir(const void *cper_section_buf, size_t size, |
| 428 | EFI_ERROR_SECTION_DESCRIPTOR *descriptor) |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 429 | { |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 430 | if (descriptor->SectionLength > size) { |
| 431 | printf("Invalid CPER file: Invalid header (incorrect signature).\n"); |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 432 | return NULL; |
| 433 | } |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 434 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 435 | //Parse section to IR based on GUID. |
| 436 | json_object *result = NULL; |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 437 | |
| 438 | json_object *section_ir = NULL; |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 439 | for (size_t i = 0; i < section_definitions_len; i++) { |
Ed Tanous | d759a18 | 2025-03-07 15:51:45 -0800 | [diff] [blame] | 440 | if (!guid_equal(section_definitions[i].Guid, |
| 441 | &descriptor->SectionType)) { |
| 442 | continue; |
| 443 | } |
Ed Tanous | 12dbd4f | 2025-03-08 19:05:01 -0800 | [diff] [blame^] | 444 | result = read_section(cper_section_buf, size, |
| 445 | §ion_definitions[i]); |
| 446 | |
Ed Tanous | d759a18 | 2025-03-07 15:51:45 -0800 | [diff] [blame] | 447 | break; |
| 448 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 449 | |
Ed Tanous | d759a18 | 2025-03-07 15:51:45 -0800 | [diff] [blame] | 450 | #ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION |
| 451 | // It's unlikely fuzzing can reliably come up with a correct guid, given how |
| 452 | // much entropy there is. If we're in fuzzing mode, and if we haven't found |
| 453 | // a match, try to force a match so we get some coverage. Note, we still |
| 454 | // want coverage of the section failed to convert code, so treat index == |
| 455 | // size as section failed to convert. |
Ed Tanous | 12dbd4f | 2025-03-08 19:05:01 -0800 | [diff] [blame^] | 456 | if (result == NULL) { |
Ed Tanous | d759a18 | 2025-03-07 15:51:45 -0800 | [diff] [blame] | 457 | unsigned char index = 0; |
| 458 | if (index > 0) { |
| 459 | index = descriptor->SectionType.Data1 % |
| 460 | section_definitions_len; |
| 461 | } |
| 462 | if (index < section_definitions_len) { |
Ed Tanous | 12dbd4f | 2025-03-08 19:05:01 -0800 | [diff] [blame^] | 463 | result = read_section(cper_section_buf, size, |
| 464 | §ion_definitions[index]); |
Lawrence Tang | 580423f | 2022-08-24 09:37:53 +0100 | [diff] [blame] | 465 | } |
| 466 | } |
Ed Tanous | d759a18 | 2025-03-07 15:51:45 -0800 | [diff] [blame] | 467 | #endif |
Lawrence Tang | 580423f | 2022-08-24 09:37:53 +0100 | [diff] [blame] | 468 | |
| 469 | //Was it an unknown GUID/failed read? |
Ed Tanous | 12dbd4f | 2025-03-08 19:05:01 -0800 | [diff] [blame^] | 470 | if (result == NULL) { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 471 | //Output the data as formatted base64. |
Ed Tanous | a7d2cdd | 2024-07-15 11:07:27 -0700 | [diff] [blame] | 472 | int32_t encoded_len = 0; |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 473 | char *encoded = base64_encode(cper_section_buf, |
| 474 | descriptor->SectionLength, |
| 475 | &encoded_len); |
Ed Tanous | a7d2cdd | 2024-07-15 11:07:27 -0700 | [diff] [blame] | 476 | if (encoded == NULL) { |
Ed Tanous | 8121f7e | 2025-03-06 14:39:07 -0800 | [diff] [blame] | 477 | //printf("Failed to allocate encode output buffer. \n"); |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 478 | } else { |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 479 | section_ir = json_object_new_object(); |
| 480 | json_object_object_add(section_ir, "data", |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 481 | json_object_new_string_len( |
| 482 | encoded, encoded_len)); |
| 483 | free(encoded); |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 484 | |
| 485 | result = json_object_new_object(); |
| 486 | json_object_object_add(result, "Unknown", section_ir); |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 487 | } |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 488 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 489 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 490 | return result; |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 491 | } |
| 492 | |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 493 | json_object *cper_buf_single_section_to_ir(const unsigned char *cper_buf, |
| 494 | size_t size) |
Ed Tanous | 8d47a37 | 2025-03-05 15:55:36 -0800 | [diff] [blame] | 495 | { |
Ed Tanous | 8121f7e | 2025-03-06 14:39:07 -0800 | [diff] [blame] | 496 | const unsigned char *cper_end; |
| 497 | const unsigned char *section_begin; |
| 498 | json_object *ir; |
| 499 | |
| 500 | cper_end = cper_buf + size; |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 501 | |
| 502 | //Read the section descriptor out. |
| 503 | EFI_ERROR_SECTION_DESCRIPTOR *section_descriptor; |
| 504 | if (sizeof(EFI_ERROR_SECTION_DESCRIPTOR) > size) { |
Ed Tanous | d759a18 | 2025-03-07 15:51:45 -0800 | [diff] [blame] | 505 | printf("Size of cper buffer was too small to read section descriptor %zu\n", |
| 506 | size); |
Ed Tanous | 8d47a37 | 2025-03-05 15:55:36 -0800 | [diff] [blame] | 507 | return NULL; |
| 508 | } |
Ed Tanous | 8121f7e | 2025-03-06 14:39:07 -0800 | [diff] [blame] | 509 | |
| 510 | ir = json_object_new_object(); |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 511 | section_descriptor = (EFI_ERROR_SECTION_DESCRIPTOR *)cper_buf; |
| 512 | //Convert the section descriptor to IR. |
| 513 | json_object *section_descriptor_ir = |
| 514 | cper_section_descriptor_to_ir(section_descriptor); |
| 515 | json_object_object_add(ir, "sectionDescriptor", section_descriptor_ir); |
Ed Tanous | 8121f7e | 2025-03-06 14:39:07 -0800 | [diff] [blame] | 516 | section_begin = cper_buf + section_descriptor->SectionOffset; |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 517 | |
Ed Tanous | 8121f7e | 2025-03-06 14:39:07 -0800 | [diff] [blame] | 518 | if (section_begin + section_descriptor->SectionLength >= cper_end) { |
| 519 | json_object_put(ir); |
| 520 | //printf("Invalid CPER file: Invalid section descriptor (section offset + length > size).\n"); |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 521 | return NULL; |
| 522 | } |
| 523 | |
| 524 | const unsigned char *section = |
| 525 | cper_buf + section_descriptor->SectionOffset; |
| 526 | |
| 527 | //Parse the single section. |
| 528 | json_object *section_ir = cper_buf_section_to_ir( |
| 529 | section, section_descriptor->SectionLength, section_descriptor); |
| 530 | json_object_object_add(ir, "section", section_ir); |
Ed Tanous | 8d47a37 | 2025-03-05 15:55:36 -0800 | [diff] [blame] | 531 | return ir; |
| 532 | } |
| 533 | |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 534 | //Converts a single CPER section, without a header but with a section descriptor, to JSON. |
| 535 | json_object *cper_single_section_to_ir(FILE *cper_section_file) |
| 536 | { |
| 537 | json_object *ir = json_object_new_object(); |
| 538 | |
Lawrence Tang | 9415349 | 2022-09-05 13:07:54 +0100 | [diff] [blame] | 539 | //Read the current file pointer location as base record position. |
| 540 | long base_pos = ftell(cper_section_file); |
| 541 | |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 542 | //Read the section descriptor out. |
| 543 | EFI_ERROR_SECTION_DESCRIPTOR section_descriptor; |
| 544 | if (fread(§ion_descriptor, sizeof(EFI_ERROR_SECTION_DESCRIPTOR), 1, |
| 545 | cper_section_file) != 1) { |
| 546 | printf("Failed to read section descriptor for CPER single section (fread() returned an unexpected value).\n"); |
Ed Tanous | 8121f7e | 2025-03-06 14:39:07 -0800 | [diff] [blame] | 547 | json_object_put(ir); |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 548 | return NULL; |
| 549 | } |
| 550 | |
| 551 | //Convert the section descriptor to IR. |
| 552 | json_object *section_descriptor_ir = |
| 553 | cper_section_descriptor_to_ir(§ion_descriptor); |
| 554 | json_object_object_add(ir, "sectionDescriptor", section_descriptor_ir); |
| 555 | |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 556 | //Save our current position in the stream. |
| 557 | long position = ftell(cper_section_file); |
| 558 | |
| 559 | //Read section as described by the section descriptor. |
| 560 | fseek(cper_section_file, base_pos + section_descriptor.SectionOffset, |
| 561 | SEEK_SET); |
| 562 | void *section = malloc(section_descriptor.SectionLength); |
| 563 | if (fread(section, section_descriptor.SectionLength, 1, |
| 564 | cper_section_file) != 1) { |
| 565 | printf("Section read failed: Could not read %u bytes from global offset %d.\n", |
| 566 | section_descriptor.SectionLength, |
| 567 | section_descriptor.SectionOffset); |
Ed Tanous | 8121f7e | 2025-03-06 14:39:07 -0800 | [diff] [blame] | 568 | json_object_put(ir); |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 569 | free(section); |
| 570 | return NULL; |
| 571 | } |
| 572 | |
| 573 | //Seek back to our original position. |
| 574 | fseek(cper_section_file, position, SEEK_SET); |
| 575 | |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 576 | //Parse the single section. |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 577 | json_object *section_ir = cper_buf_section_to_ir( |
| 578 | section, section_descriptor.SectionLength, §ion_descriptor); |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 579 | json_object_object_add(ir, "section", section_ir); |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 580 | free(section); |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 581 | return ir; |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 582 | } |
Karthik Rajagopalan | 5220c9b | 2024-08-08 00:24:44 -0700 | [diff] [blame] | 583 | |
Karthik Rajagopalan | 5220c9b | 2024-08-08 00:24:44 -0700 | [diff] [blame] | 584 | char *cperbuf_single_section_to_str_ir(const unsigned char *cper_section, |
| 585 | size_t size) |
| 586 | { |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 587 | json_object *jobj = cper_buf_single_section_to_ir(cper_section, size); |
| 588 | char *str = jobj ? strdup(json_object_to_json_string(jobj)) : NULL; |
Karthik Rajagopalan | 5220c9b | 2024-08-08 00:24:44 -0700 | [diff] [blame] | 589 | |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 590 | json_object_put(jobj); |
| 591 | return str; |
Karthik Rajagopalan | 5220c9b | 2024-08-08 00:24:44 -0700 | [diff] [blame] | 592 | } |