blob: 2a68fabf26c78ab830d42672e913c1b8fa126454 [file] [log] [blame]
Lawrence Tang1b0b00e2022-07-05 10:33:10 +01001/**
Ed Tanousfedd4572024-07-12 13:56:00 -07002 * Describes high level functions for converting an entire CPER log, and functions for parsing
Lawrence Tang2800cd82022-07-05 16:08:20 +01003 * CPER headers and section descriptions into an intermediate JSON format.
Ed Tanousfedd4572024-07-12 13:56:00 -07004 *
Lawrence Tang1b0b00e2022-07-05 10:33:10 +01005 * Author: Lawrence.Tang@arm.com
6 **/
7
Ed Tanous73498f62025-03-05 18:03:36 -08008#include <limits.h>
Lawrence Tang1b0b00e2022-07-05 10:33:10 +01009#include <stdio.h>
Karthik Rajagopalan5220c9b2024-08-08 00:24:44 -070010#include <string.h>
Lawrence Tang5202bbb2022-08-12 14:54:36 +010011#include <json.h>
Ed Tanous73498f62025-03-05 18:03:36 -080012
Thu Nguyene42fb482024-10-15 14:43:11 +000013#include <libcper/base64.h>
14#include <libcper/Cper.h>
Ed Tanous50b966f2025-03-11 09:06:19 -070015#include <libcper/log.h>
Thu Nguyene42fb482024-10-15 14:43:11 +000016#include <libcper/cper-parse.h>
17#include <libcper/cper-parse-str.h>
18#include <libcper/cper-utils.h>
19#include <libcper/sections/cper-section.h>
Lawrence Tang1b0b00e2022-07-05 10:33:10 +010020
21//Private pre-definitions.
Lawrence Tange407b4c2022-07-21 13:54:01 +010022json_object *cper_header_to_ir(EFI_COMMON_ERROR_RECORD_HEADER *header);
23json_object *
24cper_section_descriptor_to_ir(EFI_ERROR_SECTION_DESCRIPTOR *section_descriptor);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +010025
Ed Tanous73498f62025-03-05 18:03:36 -080026json_object *cper_buf_section_to_ir(const void *cper_section_buf, size_t size,
27 EFI_ERROR_SECTION_DESCRIPTOR *descriptor);
28
29json_object *cper_buf_to_ir(const unsigned char *cper_buf, size_t size)
Ed Tanous8d47a372025-03-05 15:55:36 -080030{
Ed Tanous73498f62025-03-05 18:03:36 -080031 json_object *parent = NULL;
32 json_object *header_ir = NULL;
33 json_object *section_descriptors_ir = NULL;
34 json_object *sections_ir = NULL;
35
36 const unsigned char *pos = cper_buf;
37 unsigned int remaining = size;
38
39 if (remaining < sizeof(EFI_COMMON_ERROR_RECORD_HEADER)) {
Ed Tanous50b966f2025-03-11 09:06:19 -070040 cper_print_log(
41 "Invalid CPER file: Invalid header (incorrect signature).\n");
Ed Tanous73498f62025-03-05 18:03:36 -080042 goto fail;
Ed Tanous8d47a372025-03-05 15:55:36 -080043 }
Ed Tanous73498f62025-03-05 18:03:36 -080044
45 EFI_COMMON_ERROR_RECORD_HEADER *header = NULL;
46 header = (EFI_COMMON_ERROR_RECORD_HEADER *)cper_buf;
47 pos += sizeof(EFI_COMMON_ERROR_RECORD_HEADER);
48 remaining -= sizeof(EFI_COMMON_ERROR_RECORD_HEADER);
49 if (header->SignatureStart != EFI_ERROR_RECORD_SIGNATURE_START) {
Ed Tanous50b966f2025-03-11 09:06:19 -070050 cper_print_log(
51 "Invalid CPER file: Invalid header (incorrect signature).\n");
Ed Tanous73498f62025-03-05 18:03:36 -080052 goto fail;
53 }
54 if (header->SectionCount == 0) {
Ed Tanous50b966f2025-03-11 09:06:19 -070055 cper_print_log(
56 "Invalid CPER file: Invalid section count (0).\n");
Ed Tanous73498f62025-03-05 18:03:36 -080057 goto fail;
58 }
59 if (remaining < sizeof(EFI_ERROR_SECTION_DESCRIPTOR)) {
Ed Tanous50b966f2025-03-11 09:06:19 -070060 cper_print_log(
61 "Invalid CPER file: Invalid section descriptor (section offset + length > size).\n");
Ed Tanous73498f62025-03-05 18:03:36 -080062 goto fail;
63 }
64
65 //Create the header JSON object from the read bytes.
66 parent = json_object_new_object();
67 header_ir = cper_header_to_ir(header);
68
69 json_object_object_add(parent, "header", header_ir);
70
71 //Read the appropriate number of section descriptors & sections, and convert them into IR format.
72 section_descriptors_ir = json_object_new_array();
73 sections_ir = json_object_new_array();
74 for (int i = 0; i < header->SectionCount; i++) {
75 //Create the section descriptor.
76 if (remaining < sizeof(EFI_ERROR_SECTION_DESCRIPTOR)) {
Ed Tanous50b966f2025-03-11 09:06:19 -070077 cper_print_log(
78 "Invalid number of section headers: Header states %d sections, could not read section %d.\n",
79 header->SectionCount, i + 1);
Ed Tanous73498f62025-03-05 18:03:36 -080080 goto fail;
81 }
82
83 EFI_ERROR_SECTION_DESCRIPTOR *section_descriptor;
84 section_descriptor = (EFI_ERROR_SECTION_DESCRIPTOR *)(pos);
85 pos += sizeof(EFI_ERROR_SECTION_DESCRIPTOR);
86 remaining -= sizeof(EFI_ERROR_SECTION_DESCRIPTOR);
87
88 if (section_descriptor->SectionOffset > size) {
Ed Tanous50b966f2025-03-11 09:06:19 -070089 cper_print_log(
90 "Invalid section descriptor: Section offset > size.\n");
Ed Tanous73498f62025-03-05 18:03:36 -080091 goto fail;
92 }
93
94 if (section_descriptor->SectionLength <= 0) {
Ed Tanous50b966f2025-03-11 09:06:19 -070095 cper_print_log(
96 "Invalid section descriptor: Section length <= 0.\n");
Ed Tanous73498f62025-03-05 18:03:36 -080097 goto fail;
98 }
99
100 if (section_descriptor->SectionOffset >
101 UINT_MAX - section_descriptor->SectionLength) {
Ed Tanous50b966f2025-03-11 09:06:19 -0700102 cper_print_log(
103 "Invalid section descriptor: Section offset + length would overflow.\n");
Ed Tanous73498f62025-03-05 18:03:36 -0800104 goto fail;
105 }
106
107 if (section_descriptor->SectionOffset +
108 section_descriptor->SectionLength >
109 size) {
Ed Tanous50b966f2025-03-11 09:06:19 -0700110 cper_print_log(
111 "Invalid section descriptor: Section offset + length > size.\n");
Ed Tanous73498f62025-03-05 18:03:36 -0800112 goto fail;
113 }
114
115 const unsigned char *section_begin =
116 cper_buf + section_descriptor->SectionOffset;
117
118 json_object_array_add(
119 section_descriptors_ir,
120 cper_section_descriptor_to_ir(section_descriptor));
121
122 //Read the section itself.
123 json_object *section_ir = cper_buf_section_to_ir(
124 section_begin, section_descriptor->SectionLength,
125 section_descriptor);
126 json_object_array_add(sections_ir, section_ir);
127 }
128
129 //Add the header, section descriptors, and sections to a parent object.
130 json_object_object_add(parent, "sectionDescriptors",
131 section_descriptors_ir);
132 json_object_object_add(parent, "sections", sections_ir);
133
134 return parent;
135
136fail:
137 json_object_put(sections_ir);
138 json_object_put(section_descriptors_ir);
139 json_object_put(parent);
Ed Tanous50b966f2025-03-11 09:06:19 -0700140 cper_print_log("Failed to parse CPER file.\n");
Ed Tanous73498f62025-03-05 18:03:36 -0800141 return NULL;
Ed Tanous8d47a372025-03-05 15:55:36 -0800142}
143
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100144//Reads a CPER log file at the given file location, and returns an intermediate
145//JSON representation of this CPER record.
Lawrence Tange407b4c2022-07-21 13:54:01 +0100146json_object *cper_to_ir(FILE *cper_file)
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100147{
Lawrence Tange407b4c2022-07-21 13:54:01 +0100148 //Ensure this is really a CPER log.
149 EFI_COMMON_ERROR_RECORD_HEADER header;
Lawrence Tange407b4c2022-07-21 13:54:01 +0100150 if (fread(&header, sizeof(EFI_COMMON_ERROR_RECORD_HEADER), 1,
151 cper_file) != 1) {
Ed Tanous50b966f2025-03-11 09:06:19 -0700152 cper_print_log(
153 "Invalid CPER file: Invalid length (log too short).\n");
Lawrence Tange407b4c2022-07-21 13:54:01 +0100154 return NULL;
155 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100156
Lawrence Tange407b4c2022-07-21 13:54:01 +0100157 //Check if the header contains the magic bytes ("CPER").
158 if (header.SignatureStart != EFI_ERROR_RECORD_SIGNATURE_START) {
Ed Tanous50b966f2025-03-11 09:06:19 -0700159 cper_print_log(
160 "Invalid CPER file: Invalid header (incorrect signature).\n");
Lawrence Tange407b4c2022-07-21 13:54:01 +0100161 return NULL;
162 }
Ed Tanous73498f62025-03-05 18:03:36 -0800163 fseek(cper_file, -sizeof(EFI_COMMON_ERROR_RECORD_HEADER), SEEK_CUR);
164 unsigned char *cper_buf = malloc(header.RecordLength);
165 if (fread(cper_buf, header.RecordLength, 1, cper_file) != 1) {
Ed Tanous50b966f2025-03-11 09:06:19 -0700166 cper_print_log("File read failed\n");
Ed Tanous73498f62025-03-05 18:03:36 -0800167 free(cper_buf);
168 return NULL;
Lawrence Tange407b4c2022-07-21 13:54:01 +0100169 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100170
Ed Tanous73498f62025-03-05 18:03:36 -0800171 json_object *ir = cper_buf_to_ir(cper_buf, header.RecordLength);
172 free(cper_buf);
173 return ir;
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100174}
175
Karthik Rajagopalan5220c9b2024-08-08 00:24:44 -0700176char *cper_to_str_ir(FILE *cper_file)
177{
178 json_object *jobj = cper_to_ir(cper_file);
179 char *str = jobj ? strdup(json_object_to_json_string(jobj)) : NULL;
180
181 json_object_put(jobj);
182 return str;
183}
184
185char *cperbuf_to_str_ir(const unsigned char *cper, size_t size)
186{
187 FILE *cper_file = fmemopen((void *)cper, size, "r");
188
189 return cper_file ? cper_to_str_ir(cper_file) : NULL;
190}
191
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100192//Converts a parsed CPER record header into intermediate JSON object format.
Lawrence Tange407b4c2022-07-21 13:54:01 +0100193json_object *cper_header_to_ir(EFI_COMMON_ERROR_RECORD_HEADER *header)
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100194{
Lawrence Tange407b4c2022-07-21 13:54:01 +0100195 json_object *header_ir = json_object_new_object();
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100196
Lawrence Tange407b4c2022-07-21 13:54:01 +0100197 //Revision/version information.
198 json_object_object_add(header_ir, "revision",
199 revision_to_ir(header->Revision));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100200
Lawrence Tange407b4c2022-07-21 13:54:01 +0100201 //Section count.
202 json_object_object_add(header_ir, "sectionCount",
203 json_object_new_int(header->SectionCount));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100204
Lawrence Tange407b4c2022-07-21 13:54:01 +0100205 //Error severity (with interpreted string version).
206 json_object *error_severity = json_object_new_object();
207 json_object_object_add(error_severity, "code",
208 json_object_new_uint64(header->ErrorSeverity));
209 json_object_object_add(error_severity, "name",
210 json_object_new_string(severity_to_string(
211 header->ErrorSeverity)));
212 json_object_object_add(header_ir, "severity", error_severity);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100213
Lawrence Tange407b4c2022-07-21 13:54:01 +0100214 //Total length of the record (including headers) in bytes.
215 json_object_object_add(header_ir, "recordLength",
216 json_object_new_uint64(header->RecordLength));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100217
Lawrence Tange407b4c2022-07-21 13:54:01 +0100218 //If a timestamp exists according to validation bits, then add it.
John Chungf8fc7052024-05-03 20:05:29 +0800219 if (header->ValidationBits & 0x2) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100220 char timestamp_string[TIMESTAMP_LENGTH];
Ed Tanous596c59e2025-03-10 13:15:58 -0700221 if (timestamp_to_string(timestamp_string, TIMESTAMP_LENGTH,
222 &header->TimeStamp) < 0) {
223 goto fail;
224 }
Lawrence Tange407b4c2022-07-21 13:54:01 +0100225 json_object_object_add(
226 header_ir, "timestamp",
227 json_object_new_string(timestamp_string));
Ed Tanous596c59e2025-03-10 13:15:58 -0700228
Lawrence Tange407b4c2022-07-21 13:54:01 +0100229 json_object_object_add(
230 header_ir, "timestampIsPrecise",
231 json_object_new_boolean(header->TimeStamp.Flag));
232 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100233
Lawrence Tange407b4c2022-07-21 13:54:01 +0100234 //If a platform ID exists according to the validation bits, then add it.
John Chungf8fc7052024-05-03 20:05:29 +0800235 if (header->ValidationBits & 0x1) {
Ed Tanousc2ebddd2025-03-09 10:07:01 -0700236 add_guid(header_ir, "platformID", &header->PlatformID);
Lawrence Tange407b4c2022-07-21 13:54:01 +0100237 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100238
Lawrence Tange407b4c2022-07-21 13:54:01 +0100239 //If a partition ID exists according to the validation bits, then add it.
John Chungf8fc7052024-05-03 20:05:29 +0800240 if (header->ValidationBits & 0x4) {
Ed Tanousc2ebddd2025-03-09 10:07:01 -0700241 add_guid(header_ir, "partitionID", &header->PartitionID);
Lawrence Tange407b4c2022-07-21 13:54:01 +0100242 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100243
Lawrence Tange407b4c2022-07-21 13:54:01 +0100244 //Creator ID of the header.
Ed Tanousc2ebddd2025-03-09 10:07:01 -0700245 add_guid(header_ir, "creatorID", &header->CreatorID);
Lawrence Tange407b4c2022-07-21 13:54:01 +0100246 //Notification type for the header. Some defined types are available.
247 json_object *notification_type = json_object_new_object();
Ed Tanousc2ebddd2025-03-09 10:07:01 -0700248 add_guid(notification_type, "guid", &header->NotificationType);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100249
Lawrence Tange407b4c2022-07-21 13:54:01 +0100250 //Add the human readable notification type if possible.
Ed Tanousc2ebddd2025-03-09 10:07:01 -0700251 const char *notification_type_readable = "Unknown";
Ed Tanous1a648562025-03-10 15:23:38 -0700252
253 EFI_GUID *guids[] = {
254 &gEfiEventNotificationTypeCmcGuid,
255 &gEfiEventNotificationTypeCpeGuid,
256 &gEfiEventNotificationTypeMceGuid,
257 &gEfiEventNotificationTypePcieGuid,
258 &gEfiEventNotificationTypeInitGuid,
259 &gEfiEventNotificationTypeNmiGuid,
260 &gEfiEventNotificationTypeBootGuid,
261 &gEfiEventNotificationTypeDmarGuid,
262 &gEfiEventNotificationTypeSeaGuid,
263 &gEfiEventNotificationTypeSeiGuid,
264 &gEfiEventNotificationTypePeiGuid,
265 &gEfiEventNotificationTypeCxlGuid,
266 };
267
268 const char *readable_names[] = {
269 "CMC", "CPE", "MCE", "PCIe", "INIT", "NMI",
270 "Boot", "DMAr", "SEA", "SEI", "PEI", "CXL Component"
271 };
272
273 int index = select_guid_from_list(&header->NotificationType, guids,
274 sizeof(guids) / sizeof(EFI_GUID *));
275 if (index < (int)(sizeof(readable_names) / sizeof(char *))) {
276 notification_type_readable = readable_names[index];
John Chungf8fc7052024-05-03 20:05:29 +0800277 }
Ed Tanous1a648562025-03-10 15:23:38 -0700278
Lawrence Tange407b4c2022-07-21 13:54:01 +0100279 json_object_object_add(
280 notification_type, "type",
281 json_object_new_string(notification_type_readable));
282 json_object_object_add(header_ir, "notificationType",
283 notification_type);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100284
Lawrence Tange407b4c2022-07-21 13:54:01 +0100285 //The record ID for this record, unique on a given system.
286 json_object_object_add(header_ir, "recordID",
287 json_object_new_uint64(header->RecordID));
288
289 //Flag for the record, and a human readable form.
290 json_object *flags = integer_to_readable_pair(
291 header->Flags,
292 sizeof(CPER_HEADER_FLAG_TYPES_KEYS) / sizeof(int),
293 CPER_HEADER_FLAG_TYPES_KEYS, CPER_HEADER_FLAG_TYPES_VALUES,
294 "Unknown");
295 json_object_object_add(header_ir, "flags", flags);
296
297 //Persistence information. Outside the scope of specification, so just a uint32 here.
298 json_object_object_add(header_ir, "persistenceInfo",
299 json_object_new_uint64(header->PersistenceInfo));
300 return header_ir;
Ed Tanous596c59e2025-03-10 13:15:58 -0700301
302fail:
303 json_object_put(header_ir);
304 return NULL;
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100305}
306
307//Converts the given EFI section descriptor into JSON IR format.
Lawrence Tange407b4c2022-07-21 13:54:01 +0100308json_object *
309cper_section_descriptor_to_ir(EFI_ERROR_SECTION_DESCRIPTOR *section_descriptor)
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100310{
Lawrence Tange407b4c2022-07-21 13:54:01 +0100311 json_object *section_descriptor_ir = json_object_new_object();
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100312
Lawrence Tange407b4c2022-07-21 13:54:01 +0100313 //The offset of the section from the base of the record header, length.
314 json_object_object_add(
315 section_descriptor_ir, "sectionOffset",
316 json_object_new_uint64(section_descriptor->SectionOffset));
317 json_object_object_add(
318 section_descriptor_ir, "sectionLength",
319 json_object_new_uint64(section_descriptor->SectionLength));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100320
Lawrence Tange407b4c2022-07-21 13:54:01 +0100321 //Revision.
322 json_object_object_add(section_descriptor_ir, "revision",
323 revision_to_ir(section_descriptor->Revision));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100324
Lawrence Tange407b4c2022-07-21 13:54:01 +0100325 //Flag bits.
326 json_object *flags =
327 bitfield_to_ir(section_descriptor->SectionFlags, 8,
328 CPER_SECTION_DESCRIPTOR_FLAGS_BITFIELD_NAMES);
329 json_object_object_add(section_descriptor_ir, "flags", flags);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100330
Lawrence Tange407b4c2022-07-21 13:54:01 +0100331 //Section type (GUID).
332 json_object *section_type = json_object_new_object();
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100333
Ed Tanousc2ebddd2025-03-09 10:07:01 -0700334 add_guid(section_type, "data", &section_descriptor->SectionType);
Lawrence Tange407b4c2022-07-21 13:54:01 +0100335 //Readable section type, if possible.
Lawrence Tang580423f2022-08-24 09:37:53 +0100336 const char *section_type_readable = "Unknown";
Ed Tanous1a648562025-03-10 15:23:38 -0700337
338 CPER_SECTION_DEFINITION *section =
339 select_section_by_guid(&section_descriptor->SectionType);
340 if (section != NULL) {
341 section_type_readable = section->ReadableName;
Lawrence Tang580423f2022-08-24 09:37:53 +0100342 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100343
Lawrence Tange407b4c2022-07-21 13:54:01 +0100344 json_object_object_add(section_type, "type",
345 json_object_new_string(section_type_readable));
346 json_object_object_add(section_descriptor_ir, "sectionType",
347 section_type);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100348
Lawrence Tange407b4c2022-07-21 13:54:01 +0100349 //If validation bits indicate it exists, add FRU ID.
John Chungf8fc7052024-05-03 20:05:29 +0800350 if (section_descriptor->SecValidMask & 0x1) {
Ed Tanousc2ebddd2025-03-09 10:07:01 -0700351 add_guid(section_descriptor_ir, "fruID",
352 &section_descriptor->FruId);
Lawrence Tange407b4c2022-07-21 13:54:01 +0100353 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100354
Lawrence Tange407b4c2022-07-21 13:54:01 +0100355 //If validation bits indicate it exists, add FRU text.
John Chungf8fc7052024-05-03 20:05:29 +0800356 if ((section_descriptor->SecValidMask & 0x2) >> 1) {
Ed Tanous8121f7e2025-03-06 14:39:07 -0800357 int fru_text_len = 0;
358 for (;
359 fru_text_len < (int)sizeof(section_descriptor->FruString);
360 fru_text_len++) {
361 char c = section_descriptor->FruString[fru_text_len];
362 if (c < 0) {
Ed Tanous50b966f2025-03-11 09:06:19 -0700363 //cper_print_log("Fru text contains non-ASCII character\n");
Ed Tanous8121f7e2025-03-06 14:39:07 -0800364 fru_text_len = -1;
365 break;
366 }
367 if (c == '\0') {
368 break;
369 }
370 }
371 if (fru_text_len >= 0) {
372 json_object_object_add(
373 section_descriptor_ir, "fruText",
374 json_object_new_string_len(
375 section_descriptor->FruString,
376 fru_text_len));
377 }
John Chungf8fc7052024-05-03 20:05:29 +0800378 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100379
Lawrence Tange407b4c2022-07-21 13:54:01 +0100380 //Section severity.
381 json_object *section_severity = json_object_new_object();
382 json_object_object_add(
383 section_severity, "code",
384 json_object_new_uint64(section_descriptor->Severity));
385 json_object_object_add(section_severity, "name",
386 json_object_new_string(severity_to_string(
387 section_descriptor->Severity)));
388 json_object_object_add(section_descriptor_ir, "severity",
389 section_severity);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100390
Lawrence Tange407b4c2022-07-21 13:54:01 +0100391 return section_descriptor_ir;
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100392}
393
Ed Tanous12dbd4f2025-03-08 19:05:01 -0800394json_object *read_section(const unsigned char *cper_section_buf, size_t size,
395 CPER_SECTION_DEFINITION *definition)
Ed Tanousd759a182025-03-07 15:51:45 -0800396{
Ed Tanous12dbd4f2025-03-08 19:05:01 -0800397 if (definition->ToIR == NULL) {
398 return NULL;
399 }
400 json_object *section_ir = definition->ToIR(cper_section_buf, size);
Ed Tanousd759a182025-03-07 15:51:45 -0800401 json_object *result = json_object_new_object();
Ed Tanous12dbd4f2025-03-08 19:05:01 -0800402 json_object_object_add(result, definition->ShortName, section_ir);
Ed Tanousd759a182025-03-07 15:51:45 -0800403 return result;
404}
405
Ed Tanous1a648562025-03-10 15:23:38 -0700406CPER_SECTION_DEFINITION *select_section_by_guid(EFI_GUID *guid)
407{
408 size_t i = 0;
409 for (; i < section_definitions_len; i++) {
410 if (guid_equal(guid, section_definitions[i].Guid)) {
411 break;
412 }
413 }
414 // It's unlikely fuzzing can reliably come up with a correct guid, given how
415 // much entropy there is. If we're in fuzzing mode, and if we haven't found
416 // a match, try to force a match so we get some coverage. Note, we still
417 // want coverage of the section failed to convert code, so treat index ==
418 // size as section failed to convert.
419#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
420 if (i == section_definitions_len) {
421 i = guid->Data1 % (section_definitions_len + 1);
422 }
423#endif
424 if (i < section_definitions_len) {
425 return &section_definitions[i];
426 }
427
428 return NULL;
429}
430
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100431//Converts the section described by a single given section descriptor.
Ed Tanous73498f62025-03-05 18:03:36 -0800432json_object *cper_buf_section_to_ir(const void *cper_section_buf, size_t size,
433 EFI_ERROR_SECTION_DESCRIPTOR *descriptor)
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100434{
Ed Tanous73498f62025-03-05 18:03:36 -0800435 if (descriptor->SectionLength > size) {
Ed Tanous50b966f2025-03-11 09:06:19 -0700436 cper_print_log(
437 "Invalid CPER file: Invalid header (incorrect signature).\n");
Lawrence Tange407b4c2022-07-21 13:54:01 +0100438 return NULL;
439 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100440
Lawrence Tange407b4c2022-07-21 13:54:01 +0100441 //Parse section to IR based on GUID.
442 json_object *result = NULL;
Ed Tanousb07061a2024-09-22 10:33:29 -0700443
444 json_object *section_ir = NULL;
Ed Tanous12dbd4f2025-03-08 19:05:01 -0800445
Ed Tanous1a648562025-03-10 15:23:38 -0700446 CPER_SECTION_DEFINITION *section =
447 select_section_by_guid(&descriptor->SectionType);
448 if (section != NULL) {
449 result = read_section(cper_section_buf, size, section);
Ed Tanousd759a182025-03-07 15:51:45 -0800450 }
Ed Tanousb07061a2024-09-22 10:33:29 -0700451
Lawrence Tang580423f2022-08-24 09:37:53 +0100452 //Was it an unknown GUID/failed read?
Ed Tanous12dbd4f2025-03-08 19:05:01 -0800453 if (result == NULL) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100454 //Output the data as formatted base64.
Ed Tanousa7d2cdd2024-07-15 11:07:27 -0700455 int32_t encoded_len = 0;
Ed Tanous73498f62025-03-05 18:03:36 -0800456 char *encoded = base64_encode(cper_section_buf,
457 descriptor->SectionLength,
458 &encoded_len);
Ed Tanousa7d2cdd2024-07-15 11:07:27 -0700459 if (encoded == NULL) {
Ed Tanous50b966f2025-03-11 09:06:19 -0700460 //cper_print_log("Failed to allocate encode output buffer. \n");
John Chungf8fc7052024-05-03 20:05:29 +0800461 } else {
Ed Tanousb07061a2024-09-22 10:33:29 -0700462 section_ir = json_object_new_object();
463 json_object_object_add(section_ir, "data",
John Chungf8fc7052024-05-03 20:05:29 +0800464 json_object_new_string_len(
465 encoded, encoded_len));
466 free(encoded);
Ed Tanousb07061a2024-09-22 10:33:29 -0700467
468 result = json_object_new_object();
469 json_object_object_add(result, "Unknown", section_ir);
John Chungf8fc7052024-05-03 20:05:29 +0800470 }
Lawrence Tange407b4c2022-07-21 13:54:01 +0100471 }
Ed Tanousb07061a2024-09-22 10:33:29 -0700472
Lawrence Tange407b4c2022-07-21 13:54:01 +0100473 return result;
Lawrence Tang617949e2022-08-08 14:21:42 +0100474}
475
Ed Tanous73498f62025-03-05 18:03:36 -0800476json_object *cper_buf_single_section_to_ir(const unsigned char *cper_buf,
477 size_t size)
Ed Tanous8d47a372025-03-05 15:55:36 -0800478{
Ed Tanous8121f7e2025-03-06 14:39:07 -0800479 const unsigned char *cper_end;
480 const unsigned char *section_begin;
481 json_object *ir;
482
483 cper_end = cper_buf + size;
Ed Tanous73498f62025-03-05 18:03:36 -0800484
485 //Read the section descriptor out.
486 EFI_ERROR_SECTION_DESCRIPTOR *section_descriptor;
487 if (sizeof(EFI_ERROR_SECTION_DESCRIPTOR) > size) {
Ed Tanous50b966f2025-03-11 09:06:19 -0700488 cper_print_log(
489 "Size of cper buffer was too small to read section descriptor %zu\n",
490 size);
Ed Tanous8d47a372025-03-05 15:55:36 -0800491 return NULL;
492 }
Ed Tanous8121f7e2025-03-06 14:39:07 -0800493
494 ir = json_object_new_object();
Ed Tanous73498f62025-03-05 18:03:36 -0800495 section_descriptor = (EFI_ERROR_SECTION_DESCRIPTOR *)cper_buf;
496 //Convert the section descriptor to IR.
497 json_object *section_descriptor_ir =
498 cper_section_descriptor_to_ir(section_descriptor);
499 json_object_object_add(ir, "sectionDescriptor", section_descriptor_ir);
Ed Tanous8121f7e2025-03-06 14:39:07 -0800500 section_begin = cper_buf + section_descriptor->SectionOffset;
Ed Tanous73498f62025-03-05 18:03:36 -0800501
Ed Tanous8121f7e2025-03-06 14:39:07 -0800502 if (section_begin + section_descriptor->SectionLength >= cper_end) {
503 json_object_put(ir);
Ed Tanous50b966f2025-03-11 09:06:19 -0700504 //cper_print_log("Invalid CPER file: Invalid section descriptor (section offset + length > size).\n");
Ed Tanous73498f62025-03-05 18:03:36 -0800505 return NULL;
506 }
507
508 const unsigned char *section =
509 cper_buf + section_descriptor->SectionOffset;
510
511 //Parse the single section.
512 json_object *section_ir = cper_buf_section_to_ir(
513 section, section_descriptor->SectionLength, section_descriptor);
514 json_object_object_add(ir, "section", section_ir);
Ed Tanous8d47a372025-03-05 15:55:36 -0800515 return ir;
516}
517
Lawrence Tang617949e2022-08-08 14:21:42 +0100518//Converts a single CPER section, without a header but with a section descriptor, to JSON.
519json_object *cper_single_section_to_ir(FILE *cper_section_file)
520{
521 json_object *ir = json_object_new_object();
522
Lawrence Tang94153492022-09-05 13:07:54 +0100523 //Read the current file pointer location as base record position.
524 long base_pos = ftell(cper_section_file);
525
Lawrence Tang617949e2022-08-08 14:21:42 +0100526 //Read the section descriptor out.
527 EFI_ERROR_SECTION_DESCRIPTOR section_descriptor;
528 if (fread(&section_descriptor, sizeof(EFI_ERROR_SECTION_DESCRIPTOR), 1,
529 cper_section_file) != 1) {
Ed Tanous50b966f2025-03-11 09:06:19 -0700530 cper_print_log(
531 "Failed to read section descriptor for CPER single section (fread() returned an unexpected value).\n");
Ed Tanous8121f7e2025-03-06 14:39:07 -0800532 json_object_put(ir);
Lawrence Tang617949e2022-08-08 14:21:42 +0100533 return NULL;
534 }
535
536 //Convert the section descriptor to IR.
537 json_object *section_descriptor_ir =
538 cper_section_descriptor_to_ir(&section_descriptor);
539 json_object_object_add(ir, "sectionDescriptor", section_descriptor_ir);
540
Ed Tanous73498f62025-03-05 18:03:36 -0800541 //Save our current position in the stream.
542 long position = ftell(cper_section_file);
543
544 //Read section as described by the section descriptor.
545 fseek(cper_section_file, base_pos + section_descriptor.SectionOffset,
546 SEEK_SET);
547 void *section = malloc(section_descriptor.SectionLength);
548 if (fread(section, section_descriptor.SectionLength, 1,
549 cper_section_file) != 1) {
Ed Tanous50b966f2025-03-11 09:06:19 -0700550 cper_print_log(
551 "Section read failed: Could not read %u bytes from global offset %d.\n",
552 section_descriptor.SectionLength,
553 section_descriptor.SectionOffset);
Ed Tanous8121f7e2025-03-06 14:39:07 -0800554 json_object_put(ir);
Ed Tanous73498f62025-03-05 18:03:36 -0800555 free(section);
556 return NULL;
557 }
558
559 //Seek back to our original position.
560 fseek(cper_section_file, position, SEEK_SET);
561
Lawrence Tang617949e2022-08-08 14:21:42 +0100562 //Parse the single section.
Ed Tanous73498f62025-03-05 18:03:36 -0800563 json_object *section_ir = cper_buf_section_to_ir(
564 section, section_descriptor.SectionLength, &section_descriptor);
Lawrence Tang617949e2022-08-08 14:21:42 +0100565 json_object_object_add(ir, "section", section_ir);
Ed Tanous73498f62025-03-05 18:03:36 -0800566 free(section);
Lawrence Tang617949e2022-08-08 14:21:42 +0100567 return ir;
John Chungf8fc7052024-05-03 20:05:29 +0800568}
Karthik Rajagopalan5220c9b2024-08-08 00:24:44 -0700569
Karthik Rajagopalan5220c9b2024-08-08 00:24:44 -0700570char *cperbuf_single_section_to_str_ir(const unsigned char *cper_section,
571 size_t size)
572{
Ed Tanous73498f62025-03-05 18:03:36 -0800573 json_object *jobj = cper_buf_single_section_to_ir(cper_section, size);
574 char *str = jobj ? strdup(json_object_to_json_string(jobj)) : NULL;
Karthik Rajagopalan5220c9b2024-08-08 00:24:44 -0700575
Ed Tanous73498f62025-03-05 18:03:36 -0800576 json_object_put(jobj);
577 return str;
Karthik Rajagopalan5220c9b2024-08-08 00:24:44 -0700578}