blob: f9a7e0e9566706199927237f6aab2647393a17af [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>
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 Tang1b0b00e2022-07-05 10:33:10 +010019
20//Private pre-definitions.
Lawrence Tange407b4c2022-07-21 13:54:01 +010021json_object *cper_header_to_ir(EFI_COMMON_ERROR_RECORD_HEADER *header);
22json_object *
23cper_section_descriptor_to_ir(EFI_ERROR_SECTION_DESCRIPTOR *section_descriptor);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +010024
Ed Tanous73498f62025-03-05 18:03:36 -080025json_object *cper_buf_section_to_ir(const void *cper_section_buf, size_t size,
26 EFI_ERROR_SECTION_DESCRIPTOR *descriptor);
27
28json_object *cper_buf_to_ir(const unsigned char *cper_buf, size_t size)
Ed Tanous8d47a372025-03-05 15:55:36 -080029{
Ed Tanous73498f62025-03-05 18:03:36 -080030 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 Tanous8d47a372025-03-05 15:55:36 -080041 }
Ed Tanous73498f62025-03-05 18:03:36 -080042
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
126fail:
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 Tanous8d47a372025-03-05 15:55:36 -0800132}
133
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100134//Reads a CPER log file at the given file location, and returns an intermediate
135//JSON representation of this CPER record.
Lawrence Tange407b4c2022-07-21 13:54:01 +0100136json_object *cper_to_ir(FILE *cper_file)
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100137{
Lawrence Tange407b4c2022-07-21 13:54:01 +0100138 //Ensure this is really a CPER log.
139 EFI_COMMON_ERROR_RECORD_HEADER header;
Lawrence Tange407b4c2022-07-21 13:54:01 +0100140 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 Tang1b0b00e2022-07-05 10:33:10 +0100145
Lawrence Tange407b4c2022-07-21 13:54:01 +0100146 //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 Tanous73498f62025-03-05 18:03:36 -0800151 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 Tange407b4c2022-07-21 13:54:01 +0100157 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100158
Ed Tanous73498f62025-03-05 18:03:36 -0800159 json_object *ir = cper_buf_to_ir(cper_buf, header.RecordLength);
160 free(cper_buf);
161 return ir;
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100162}
163
Karthik Rajagopalan5220c9b2024-08-08 00:24:44 -0700164char *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
173char *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 Tang1b0b00e2022-07-05 10:33:10 +0100180//Converts a parsed CPER record header into intermediate JSON object format.
Lawrence Tange407b4c2022-07-21 13:54:01 +0100181json_object *cper_header_to_ir(EFI_COMMON_ERROR_RECORD_HEADER *header)
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100182{
Lawrence Tange407b4c2022-07-21 13:54:01 +0100183 json_object *header_ir = json_object_new_object();
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100184
Lawrence Tange407b4c2022-07-21 13:54:01 +0100185 //Revision/version information.
186 json_object_object_add(header_ir, "revision",
187 revision_to_ir(header->Revision));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100188
Lawrence Tange407b4c2022-07-21 13:54:01 +0100189 //Section count.
190 json_object_object_add(header_ir, "sectionCount",
191 json_object_new_int(header->SectionCount));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100192
Lawrence Tange407b4c2022-07-21 13:54:01 +0100193 //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 Tang1b0b00e2022-07-05 10:33:10 +0100201
Lawrence Tange407b4c2022-07-21 13:54:01 +0100202 //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 Tang1b0b00e2022-07-05 10:33:10 +0100205
Lawrence Tange407b4c2022-07-21 13:54:01 +0100206 //If a timestamp exists according to validation bits, then add it.
John Chungf8fc7052024-05-03 20:05:29 +0800207 if (header->ValidationBits & 0x2) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100208 char timestamp_string[TIMESTAMP_LENGTH];
Ed Tanous13f099f2024-11-20 11:10:30 -0800209 timestamp_to_string(timestamp_string, TIMESTAMP_LENGTH,
210 &header->TimeStamp);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100211
Lawrence Tange407b4c2022-07-21 13:54:01 +0100212 json_object_object_add(
213 header_ir, "timestamp",
214 json_object_new_string(timestamp_string));
215 json_object_object_add(
216 header_ir, "timestampIsPrecise",
217 json_object_new_boolean(header->TimeStamp.Flag));
218 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100219
Lawrence Tange407b4c2022-07-21 13:54:01 +0100220 //If a platform ID exists according to the validation bits, then add it.
John Chungf8fc7052024-05-03 20:05:29 +0800221 if (header->ValidationBits & 0x1) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100222 char platform_string[GUID_STRING_LENGTH];
223 guid_to_string(platform_string, &header->PlatformID);
224 json_object_object_add(header_ir, "platformID",
225 json_object_new_string(platform_string));
226 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100227
Lawrence Tange407b4c2022-07-21 13:54:01 +0100228 //If a partition ID exists according to the validation bits, then add it.
John Chungf8fc7052024-05-03 20:05:29 +0800229 if (header->ValidationBits & 0x4) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100230 char partition_string[GUID_STRING_LENGTH];
231 guid_to_string(partition_string, &header->PartitionID);
232 json_object_object_add(
233 header_ir, "partitionID",
234 json_object_new_string(partition_string));
235 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100236
Lawrence Tange407b4c2022-07-21 13:54:01 +0100237 //Creator ID of the header.
238 char creator_string[GUID_STRING_LENGTH];
239 guid_to_string(creator_string, &header->CreatorID);
240 json_object_object_add(header_ir, "creatorID",
241 json_object_new_string(creator_string));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100242
Lawrence Tange407b4c2022-07-21 13:54:01 +0100243 //Notification type for the header. Some defined types are available.
244 json_object *notification_type = json_object_new_object();
245 char notification_type_string[GUID_STRING_LENGTH];
246 guid_to_string(notification_type_string, &header->NotificationType);
247 json_object_object_add(
248 notification_type, "guid",
249 json_object_new_string(notification_type_string));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100250
Lawrence Tange407b4c2022-07-21 13:54:01 +0100251 //Add the human readable notification type if possible.
252 char *notification_type_readable = "Unknown";
253 if (guid_equal(&header->NotificationType,
John Chungf8fc7052024-05-03 20:05:29 +0800254 &gEfiEventNotificationTypeCmcGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100255 notification_type_readable = "CMC";
John Chungf8fc7052024-05-03 20:05:29 +0800256 } else if (guid_equal(&header->NotificationType,
257 &gEfiEventNotificationTypeCpeGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100258 notification_type_readable = "CPE";
John Chungf8fc7052024-05-03 20:05:29 +0800259 } else if (guid_equal(&header->NotificationType,
260 &gEfiEventNotificationTypeMceGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100261 notification_type_readable = "MCE";
John Chungf8fc7052024-05-03 20:05:29 +0800262 } else if (guid_equal(&header->NotificationType,
263 &gEfiEventNotificationTypePcieGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100264 notification_type_readable = "PCIe";
John Chungf8fc7052024-05-03 20:05:29 +0800265 } else if (guid_equal(&header->NotificationType,
266 &gEfiEventNotificationTypeInitGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100267 notification_type_readable = "INIT";
John Chungf8fc7052024-05-03 20:05:29 +0800268 } else if (guid_equal(&header->NotificationType,
269 &gEfiEventNotificationTypeNmiGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100270 notification_type_readable = "NMI";
John Chungf8fc7052024-05-03 20:05:29 +0800271 } else if (guid_equal(&header->NotificationType,
272 &gEfiEventNotificationTypeBootGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100273 notification_type_readable = "Boot";
John Chungf8fc7052024-05-03 20:05:29 +0800274 } else if (guid_equal(&header->NotificationType,
275 &gEfiEventNotificationTypeDmarGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100276 notification_type_readable = "DMAr";
John Chungf8fc7052024-05-03 20:05:29 +0800277 } else if (guid_equal(&header->NotificationType,
278 &gEfiEventNotificationTypeSeaGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100279 notification_type_readable = "SEA";
John Chungf8fc7052024-05-03 20:05:29 +0800280 } else if (guid_equal(&header->NotificationType,
281 &gEfiEventNotificationTypeSeiGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100282 notification_type_readable = "SEI";
John Chungf8fc7052024-05-03 20:05:29 +0800283 } else if (guid_equal(&header->NotificationType,
284 &gEfiEventNotificationTypePeiGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100285 notification_type_readable = "PEI";
John Chungf8fc7052024-05-03 20:05:29 +0800286 } else if (guid_equal(&header->NotificationType,
287 &gEfiEventNotificationTypeCxlGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100288 notification_type_readable = "CXL Component";
John Chungf8fc7052024-05-03 20:05:29 +0800289 }
Lawrence Tange407b4c2022-07-21 13:54:01 +0100290 json_object_object_add(
291 notification_type, "type",
292 json_object_new_string(notification_type_readable));
293 json_object_object_add(header_ir, "notificationType",
294 notification_type);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100295
Lawrence Tange407b4c2022-07-21 13:54:01 +0100296 //The record ID for this record, unique on a given system.
297 json_object_object_add(header_ir, "recordID",
298 json_object_new_uint64(header->RecordID));
299
300 //Flag for the record, and a human readable form.
301 json_object *flags = integer_to_readable_pair(
302 header->Flags,
303 sizeof(CPER_HEADER_FLAG_TYPES_KEYS) / sizeof(int),
304 CPER_HEADER_FLAG_TYPES_KEYS, CPER_HEADER_FLAG_TYPES_VALUES,
305 "Unknown");
306 json_object_object_add(header_ir, "flags", flags);
307
308 //Persistence information. Outside the scope of specification, so just a uint32 here.
309 json_object_object_add(header_ir, "persistenceInfo",
310 json_object_new_uint64(header->PersistenceInfo));
311 return header_ir;
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100312}
313
314//Converts the given EFI section descriptor into JSON IR format.
Lawrence Tange407b4c2022-07-21 13:54:01 +0100315json_object *
316cper_section_descriptor_to_ir(EFI_ERROR_SECTION_DESCRIPTOR *section_descriptor)
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100317{
Lawrence Tange407b4c2022-07-21 13:54:01 +0100318 json_object *section_descriptor_ir = json_object_new_object();
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100319
Lawrence Tange407b4c2022-07-21 13:54:01 +0100320 //The offset of the section from the base of the record header, length.
321 json_object_object_add(
322 section_descriptor_ir, "sectionOffset",
323 json_object_new_uint64(section_descriptor->SectionOffset));
324 json_object_object_add(
325 section_descriptor_ir, "sectionLength",
326 json_object_new_uint64(section_descriptor->SectionLength));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100327
Lawrence Tange407b4c2022-07-21 13:54:01 +0100328 //Revision.
329 json_object_object_add(section_descriptor_ir, "revision",
330 revision_to_ir(section_descriptor->Revision));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100331
Lawrence Tange407b4c2022-07-21 13:54:01 +0100332 //Flag bits.
333 json_object *flags =
334 bitfield_to_ir(section_descriptor->SectionFlags, 8,
335 CPER_SECTION_DESCRIPTOR_FLAGS_BITFIELD_NAMES);
336 json_object_object_add(section_descriptor_ir, "flags", flags);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100337
Lawrence Tange407b4c2022-07-21 13:54:01 +0100338 //Section type (GUID).
339 json_object *section_type = json_object_new_object();
340 char section_type_string[GUID_STRING_LENGTH];
341 guid_to_string(section_type_string, &section_descriptor->SectionType);
342 json_object_object_add(section_type, "data",
343 json_object_new_string(section_type_string));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100344
Lawrence Tange407b4c2022-07-21 13:54:01 +0100345 //Readable section type, if possible.
Lawrence Tang580423f2022-08-24 09:37:53 +0100346 const char *section_type_readable = "Unknown";
John Chungf8fc7052024-05-03 20:05:29 +0800347 for (size_t i = 0; i < section_definitions_len; i++) {
Lawrence Tangf1f3b832022-08-24 09:42:39 +0100348 if (guid_equal(section_definitions[i].Guid,
349 &section_descriptor->SectionType)) {
350 section_type_readable =
351 section_definitions[i].ReadableName;
Lawrence Tang580423f2022-08-24 09:37:53 +0100352 break;
353 }
354 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100355
Lawrence Tange407b4c2022-07-21 13:54:01 +0100356 json_object_object_add(section_type, "type",
357 json_object_new_string(section_type_readable));
358 json_object_object_add(section_descriptor_ir, "sectionType",
359 section_type);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100360
Lawrence Tange407b4c2022-07-21 13:54:01 +0100361 //If validation bits indicate it exists, add FRU ID.
John Chungf8fc7052024-05-03 20:05:29 +0800362 if (section_descriptor->SecValidMask & 0x1) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100363 char fru_id_string[GUID_STRING_LENGTH];
364 guid_to_string(fru_id_string, &section_descriptor->FruId);
365 json_object_object_add(section_descriptor_ir, "fruID",
366 json_object_new_string(fru_id_string));
367 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100368
Lawrence Tange407b4c2022-07-21 13:54:01 +0100369 //If validation bits indicate it exists, add FRU text.
John Chungf8fc7052024-05-03 20:05:29 +0800370 if ((section_descriptor->SecValidMask & 0x2) >> 1) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100371 json_object_object_add(
372 section_descriptor_ir, "fruText",
373 json_object_new_string(section_descriptor->FruString));
John Chungf8fc7052024-05-03 20:05:29 +0800374 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100375
Lawrence Tange407b4c2022-07-21 13:54:01 +0100376 //Section severity.
377 json_object *section_severity = json_object_new_object();
378 json_object_object_add(
379 section_severity, "code",
380 json_object_new_uint64(section_descriptor->Severity));
381 json_object_object_add(section_severity, "name",
382 json_object_new_string(severity_to_string(
383 section_descriptor->Severity)));
384 json_object_object_add(section_descriptor_ir, "severity",
385 section_severity);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100386
Lawrence Tange407b4c2022-07-21 13:54:01 +0100387 return section_descriptor_ir;
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100388}
389
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100390//Converts the section described by a single given section descriptor.
Ed Tanous73498f62025-03-05 18:03:36 -0800391json_object *cper_buf_section_to_ir(const void *cper_section_buf, size_t size,
392 EFI_ERROR_SECTION_DESCRIPTOR *descriptor)
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100393{
Ed Tanous73498f62025-03-05 18:03:36 -0800394 if (descriptor->SectionLength > size) {
395 printf("Invalid CPER file: Invalid header (incorrect signature).\n");
Lawrence Tange407b4c2022-07-21 13:54:01 +0100396 return NULL;
397 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100398
Lawrence Tange407b4c2022-07-21 13:54:01 +0100399 //Parse section to IR based on GUID.
400 json_object *result = NULL;
Ed Tanousb07061a2024-09-22 10:33:29 -0700401
402 json_object *section_ir = NULL;
Lawrence Tang580423f2022-08-24 09:37:53 +0100403 int section_converted = 0;
John Chungf8fc7052024-05-03 20:05:29 +0800404 for (size_t i = 0; i < section_definitions_len; i++) {
Lawrence Tangf1f3b832022-08-24 09:42:39 +0100405 if (guid_equal(section_definitions[i].Guid,
406 &descriptor->SectionType) &&
407 section_definitions[i].ToIR != NULL) {
Ed Tanous73498f62025-03-05 18:03:36 -0800408 section_ir =
409 section_definitions[i].ToIR(cper_section_buf);
Ed Tanousb07061a2024-09-22 10:33:29 -0700410
411 result = json_object_new_object();
412 json_object_object_add(result,
413 section_definitions[i].ShortName,
414 section_ir);
415
Lawrence Tang580423f2022-08-24 09:37:53 +0100416 section_converted = 1;
417 break;
418 }
419 }
420
421 //Was it an unknown GUID/failed read?
422 if (!section_converted) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100423 //Output the data as formatted base64.
Ed Tanousa7d2cdd2024-07-15 11:07:27 -0700424 int32_t encoded_len = 0;
Ed Tanous73498f62025-03-05 18:03:36 -0800425 char *encoded = base64_encode(cper_section_buf,
426 descriptor->SectionLength,
427 &encoded_len);
Ed Tanousa7d2cdd2024-07-15 11:07:27 -0700428 if (encoded == NULL) {
John Chungf8fc7052024-05-03 20:05:29 +0800429 printf("Failed to allocate encode output buffer. \n");
430 } else {
Ed Tanousb07061a2024-09-22 10:33:29 -0700431 section_ir = json_object_new_object();
432 json_object_object_add(section_ir, "data",
John Chungf8fc7052024-05-03 20:05:29 +0800433 json_object_new_string_len(
434 encoded, encoded_len));
435 free(encoded);
Ed Tanousb07061a2024-09-22 10:33:29 -0700436
437 result = json_object_new_object();
438 json_object_object_add(result, "Unknown", section_ir);
John Chungf8fc7052024-05-03 20:05:29 +0800439 }
Lawrence Tange407b4c2022-07-21 13:54:01 +0100440 }
Ed Tanousb07061a2024-09-22 10:33:29 -0700441
Lawrence Tange407b4c2022-07-21 13:54:01 +0100442 return result;
Lawrence Tang617949e2022-08-08 14:21:42 +0100443}
444
Ed Tanous73498f62025-03-05 18:03:36 -0800445json_object *cper_buf_single_section_to_ir(const unsigned char *cper_buf,
446 size_t size)
Ed Tanous8d47a372025-03-05 15:55:36 -0800447{
Ed Tanous73498f62025-03-05 18:03:36 -0800448 json_object *ir = json_object_new_object();
449
450 //Read the section descriptor out.
451 EFI_ERROR_SECTION_DESCRIPTOR *section_descriptor;
452 if (sizeof(EFI_ERROR_SECTION_DESCRIPTOR) > size) {
453 printf("Failed to read section descriptor for CPER single section\n");
Ed Tanous8d47a372025-03-05 15:55:36 -0800454 return NULL;
455 }
Ed Tanous73498f62025-03-05 18:03:36 -0800456 section_descriptor = (EFI_ERROR_SECTION_DESCRIPTOR *)cper_buf;
457 //Convert the section descriptor to IR.
458 json_object *section_descriptor_ir =
459 cper_section_descriptor_to_ir(section_descriptor);
460 json_object_object_add(ir, "sectionDescriptor", section_descriptor_ir);
461
462 if (section_descriptor->SectionOffset +
463 section_descriptor->SectionLength >
464 size) {
465 printf("Invalid CPER file: Invalid section descriptor (section offset + length > size).\n");
466 return NULL;
467 }
468
469 const unsigned char *section =
470 cper_buf + section_descriptor->SectionOffset;
471
472 //Parse the single section.
473 json_object *section_ir = cper_buf_section_to_ir(
474 section, section_descriptor->SectionLength, section_descriptor);
475 json_object_object_add(ir, "section", section_ir);
Ed Tanous8d47a372025-03-05 15:55:36 -0800476 return ir;
477}
478
Lawrence Tang617949e2022-08-08 14:21:42 +0100479//Converts a single CPER section, without a header but with a section descriptor, to JSON.
480json_object *cper_single_section_to_ir(FILE *cper_section_file)
481{
482 json_object *ir = json_object_new_object();
483
Lawrence Tang94153492022-09-05 13:07:54 +0100484 //Read the current file pointer location as base record position.
485 long base_pos = ftell(cper_section_file);
486
Lawrence Tang617949e2022-08-08 14:21:42 +0100487 //Read the section descriptor out.
488 EFI_ERROR_SECTION_DESCRIPTOR section_descriptor;
489 if (fread(&section_descriptor, sizeof(EFI_ERROR_SECTION_DESCRIPTOR), 1,
490 cper_section_file) != 1) {
491 printf("Failed to read section descriptor for CPER single section (fread() returned an unexpected value).\n");
492 return NULL;
493 }
494
495 //Convert the section descriptor to IR.
496 json_object *section_descriptor_ir =
497 cper_section_descriptor_to_ir(&section_descriptor);
498 json_object_object_add(ir, "sectionDescriptor", section_descriptor_ir);
499
Ed Tanous73498f62025-03-05 18:03:36 -0800500 //Save our current position in the stream.
501 long position = ftell(cper_section_file);
502
503 //Read section as described by the section descriptor.
504 fseek(cper_section_file, base_pos + section_descriptor.SectionOffset,
505 SEEK_SET);
506 void *section = malloc(section_descriptor.SectionLength);
507 if (fread(section, section_descriptor.SectionLength, 1,
508 cper_section_file) != 1) {
509 printf("Section read failed: Could not read %u bytes from global offset %d.\n",
510 section_descriptor.SectionLength,
511 section_descriptor.SectionOffset);
512 free(section);
513 return NULL;
514 }
515
516 //Seek back to our original position.
517 fseek(cper_section_file, position, SEEK_SET);
518
Lawrence Tang617949e2022-08-08 14:21:42 +0100519 //Parse the single section.
Ed Tanous73498f62025-03-05 18:03:36 -0800520 json_object *section_ir = cper_buf_section_to_ir(
521 section, section_descriptor.SectionLength, &section_descriptor);
Lawrence Tang617949e2022-08-08 14:21:42 +0100522 json_object_object_add(ir, "section", section_ir);
Ed Tanous73498f62025-03-05 18:03:36 -0800523 free(section);
Lawrence Tang617949e2022-08-08 14:21:42 +0100524 return ir;
John Chungf8fc7052024-05-03 20:05:29 +0800525}
Karthik Rajagopalan5220c9b2024-08-08 00:24:44 -0700526
Karthik Rajagopalan5220c9b2024-08-08 00:24:44 -0700527char *cperbuf_single_section_to_str_ir(const unsigned char *cper_section,
528 size_t size)
529{
Ed Tanous73498f62025-03-05 18:03:36 -0800530 json_object *jobj = cper_buf_single_section_to_ir(cper_section, size);
531 char *str = jobj ? strdup(json_object_to_json_string(jobj)) : NULL;
Karthik Rajagopalan5220c9b2024-08-08 00:24:44 -0700532
Ed Tanous73498f62025-03-05 18:03:36 -0800533 json_object_put(jobj);
534 return str;
Karthik Rajagopalan5220c9b2024-08-08 00:24:44 -0700535}