blob: 8c8722dc84f326421eddfb4aa0bf2400415bfa77 [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
8#include <stdio.h>
Karthik Rajagopalan5220c9b2024-08-08 00:24:44 -07009#include <string.h>
Lawrence Tang5202bbb2022-08-12 14:54:36 +010010#include <json.h>
Ed Tanousa7d2cdd2024-07-15 11:07:27 -070011#include "base64.h"
Lawrence Tang1b0b00e2022-07-05 10:33:10 +010012#include "edk/Cper.h"
13#include "cper-parse.h"
Karthik Rajagopalan5220c9b2024-08-08 00:24:44 -070014#include "cper-parse-str.h"
Lawrence Tang1b0b00e2022-07-05 10:33:10 +010015#include "cper-utils.h"
Lawrence Tang580423f2022-08-24 09:37:53 +010016#include "sections/cper-section.h"
Lawrence Tang1b0b00e2022-07-05 10:33:10 +010017
18//Private pre-definitions.
Lawrence Tange407b4c2022-07-21 13:54:01 +010019json_object *cper_header_to_ir(EFI_COMMON_ERROR_RECORD_HEADER *header);
20json_object *
21cper_section_descriptor_to_ir(EFI_ERROR_SECTION_DESCRIPTOR *section_descriptor);
Lawrence Tang94153492022-09-05 13:07:54 +010022json_object *cper_section_to_ir(FILE *handle, long base_pos,
Lawrence Tange407b4c2022-07-21 13:54:01 +010023 EFI_ERROR_SECTION_DESCRIPTOR *descriptor);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +010024
25//Reads a CPER log file at the given file location, and returns an intermediate
26//JSON representation of this CPER record.
Lawrence Tange407b4c2022-07-21 13:54:01 +010027json_object *cper_to_ir(FILE *cper_file)
Lawrence Tang1b0b00e2022-07-05 10:33:10 +010028{
Lawrence Tang94153492022-09-05 13:07:54 +010029 //Read the current file pointer location as the base of the record.
30 long base_pos = ftell(cper_file);
31
Lawrence Tange407b4c2022-07-21 13:54:01 +010032 //Ensure this is really a CPER log.
33 EFI_COMMON_ERROR_RECORD_HEADER header;
Lawrence Tange407b4c2022-07-21 13:54:01 +010034 if (fread(&header, sizeof(EFI_COMMON_ERROR_RECORD_HEADER), 1,
35 cper_file) != 1) {
36 printf("Invalid CPER file: Invalid length (log too short).\n");
37 return NULL;
38 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +010039
Lawrence Tange407b4c2022-07-21 13:54:01 +010040 //Check if the header contains the magic bytes ("CPER").
41 if (header.SignatureStart != EFI_ERROR_RECORD_SIGNATURE_START) {
42 printf("Invalid CPER file: Invalid header (incorrect signature).\n");
43 return NULL;
44 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +010045
Lawrence Tange407b4c2022-07-21 13:54:01 +010046 //Create the header JSON object from the read bytes.
47 json_object *header_ir = cper_header_to_ir(&header);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +010048
Lawrence Tange407b4c2022-07-21 13:54:01 +010049 //Read the appropriate number of section descriptors & sections, and convert them into IR format.
50 json_object *section_descriptors_ir = json_object_new_array();
51 json_object *sections_ir = json_object_new_array();
52 for (int i = 0; i < header.SectionCount; i++) {
53 //Create the section descriptor.
54 EFI_ERROR_SECTION_DESCRIPTOR section_descriptor;
55 if (fread(&section_descriptor,
56 sizeof(EFI_ERROR_SECTION_DESCRIPTOR), 1,
57 cper_file) != 1) {
58 printf("Invalid number of section headers: Header states %d sections, could not read section %d.\n",
59 header.SectionCount, i + 1);
Karthik Rajagopalanbf6ccc82024-08-05 15:39:51 -070060 // Free json objects
61 json_object_put(sections_ir);
62 json_object_put(section_descriptors_ir);
63 json_object_put(header_ir);
Lawrence Tange407b4c2022-07-21 13:54:01 +010064 return NULL;
65 }
66 json_object_array_add(
67 section_descriptors_ir,
68 cper_section_descriptor_to_ir(&section_descriptor));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +010069
Lawrence Tange407b4c2022-07-21 13:54:01 +010070 //Read the section itself.
71 json_object_array_add(sections_ir,
Lawrence Tang94153492022-09-05 13:07:54 +010072 cper_section_to_ir(cper_file, base_pos,
Lawrence Tange407b4c2022-07-21 13:54:01 +010073 &section_descriptor));
74 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +010075
Lawrence Tange407b4c2022-07-21 13:54:01 +010076 //Add the header, section descriptors, and sections to a parent object.
77 json_object *parent = json_object_new_object();
78 json_object_object_add(parent, "header", header_ir);
79 json_object_object_add(parent, "sectionDescriptors",
80 section_descriptors_ir);
81 json_object_object_add(parent, "sections", sections_ir);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +010082
Lawrence Tange407b4c2022-07-21 13:54:01 +010083 return parent;
Lawrence Tang1b0b00e2022-07-05 10:33:10 +010084}
85
Karthik Rajagopalan5220c9b2024-08-08 00:24:44 -070086char *cper_to_str_ir(FILE *cper_file)
87{
88 json_object *jobj = cper_to_ir(cper_file);
89 char *str = jobj ? strdup(json_object_to_json_string(jobj)) : NULL;
90
91 json_object_put(jobj);
92 return str;
93}
94
95char *cperbuf_to_str_ir(const unsigned char *cper, size_t size)
96{
97 FILE *cper_file = fmemopen((void *)cper, size, "r");
98
99 return cper_file ? cper_to_str_ir(cper_file) : NULL;
100}
101
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100102//Converts a parsed CPER record header into intermediate JSON object format.
Lawrence Tange407b4c2022-07-21 13:54:01 +0100103json_object *cper_header_to_ir(EFI_COMMON_ERROR_RECORD_HEADER *header)
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100104{
Lawrence Tange407b4c2022-07-21 13:54:01 +0100105 json_object *header_ir = json_object_new_object();
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100106
Lawrence Tange407b4c2022-07-21 13:54:01 +0100107 //Revision/version information.
108 json_object_object_add(header_ir, "revision",
109 revision_to_ir(header->Revision));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100110
Lawrence Tange407b4c2022-07-21 13:54:01 +0100111 //Section count.
112 json_object_object_add(header_ir, "sectionCount",
113 json_object_new_int(header->SectionCount));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100114
Lawrence Tange407b4c2022-07-21 13:54:01 +0100115 //Error severity (with interpreted string version).
116 json_object *error_severity = json_object_new_object();
117 json_object_object_add(error_severity, "code",
118 json_object_new_uint64(header->ErrorSeverity));
119 json_object_object_add(error_severity, "name",
120 json_object_new_string(severity_to_string(
121 header->ErrorSeverity)));
122 json_object_object_add(header_ir, "severity", error_severity);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100123
Lawrence Tange407b4c2022-07-21 13:54:01 +0100124 //The validation bits for each section.
125 json_object *validation_bits = bitfield_to_ir(
126 header->ValidationBits, 3, CPER_HEADER_VALID_BITFIELD_NAMES);
127 json_object_object_add(header_ir, "validationBits", validation_bits);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100128
Lawrence Tange407b4c2022-07-21 13:54:01 +0100129 //Total length of the record (including headers) in bytes.
130 json_object_object_add(header_ir, "recordLength",
131 json_object_new_uint64(header->RecordLength));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100132
Lawrence Tange407b4c2022-07-21 13:54:01 +0100133 //If a timestamp exists according to validation bits, then add it.
John Chungf8fc7052024-05-03 20:05:29 +0800134 if (header->ValidationBits & 0x2) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100135 char timestamp_string[TIMESTAMP_LENGTH];
136 timestamp_to_string(timestamp_string, &header->TimeStamp);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100137
Lawrence Tange407b4c2022-07-21 13:54:01 +0100138 json_object_object_add(
139 header_ir, "timestamp",
140 json_object_new_string(timestamp_string));
141 json_object_object_add(
142 header_ir, "timestampIsPrecise",
143 json_object_new_boolean(header->TimeStamp.Flag));
144 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100145
Lawrence Tange407b4c2022-07-21 13:54:01 +0100146 //If a platform ID exists according to the validation bits, then add it.
John Chungf8fc7052024-05-03 20:05:29 +0800147 if (header->ValidationBits & 0x1) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100148 char platform_string[GUID_STRING_LENGTH];
149 guid_to_string(platform_string, &header->PlatformID);
150 json_object_object_add(header_ir, "platformID",
151 json_object_new_string(platform_string));
152 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100153
Lawrence Tange407b4c2022-07-21 13:54:01 +0100154 //If a partition ID exists according to the validation bits, then add it.
John Chungf8fc7052024-05-03 20:05:29 +0800155 if (header->ValidationBits & 0x4) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100156 char partition_string[GUID_STRING_LENGTH];
157 guid_to_string(partition_string, &header->PartitionID);
158 json_object_object_add(
159 header_ir, "partitionID",
160 json_object_new_string(partition_string));
161 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100162
Lawrence Tange407b4c2022-07-21 13:54:01 +0100163 //Creator ID of the header.
164 char creator_string[GUID_STRING_LENGTH];
165 guid_to_string(creator_string, &header->CreatorID);
166 json_object_object_add(header_ir, "creatorID",
167 json_object_new_string(creator_string));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100168
Lawrence Tange407b4c2022-07-21 13:54:01 +0100169 //Notification type for the header. Some defined types are available.
170 json_object *notification_type = json_object_new_object();
171 char notification_type_string[GUID_STRING_LENGTH];
172 guid_to_string(notification_type_string, &header->NotificationType);
173 json_object_object_add(
174 notification_type, "guid",
175 json_object_new_string(notification_type_string));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100176
Lawrence Tange407b4c2022-07-21 13:54:01 +0100177 //Add the human readable notification type if possible.
178 char *notification_type_readable = "Unknown";
179 if (guid_equal(&header->NotificationType,
John Chungf8fc7052024-05-03 20:05:29 +0800180 &gEfiEventNotificationTypeCmcGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100181 notification_type_readable = "CMC";
John Chungf8fc7052024-05-03 20:05:29 +0800182 } else if (guid_equal(&header->NotificationType,
183 &gEfiEventNotificationTypeCpeGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100184 notification_type_readable = "CPE";
John Chungf8fc7052024-05-03 20:05:29 +0800185 } else if (guid_equal(&header->NotificationType,
186 &gEfiEventNotificationTypeMceGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100187 notification_type_readable = "MCE";
John Chungf8fc7052024-05-03 20:05:29 +0800188 } else if (guid_equal(&header->NotificationType,
189 &gEfiEventNotificationTypePcieGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100190 notification_type_readable = "PCIe";
John Chungf8fc7052024-05-03 20:05:29 +0800191 } else if (guid_equal(&header->NotificationType,
192 &gEfiEventNotificationTypeInitGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100193 notification_type_readable = "INIT";
John Chungf8fc7052024-05-03 20:05:29 +0800194 } else if (guid_equal(&header->NotificationType,
195 &gEfiEventNotificationTypeNmiGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100196 notification_type_readable = "NMI";
John Chungf8fc7052024-05-03 20:05:29 +0800197 } else if (guid_equal(&header->NotificationType,
198 &gEfiEventNotificationTypeBootGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100199 notification_type_readable = "Boot";
John Chungf8fc7052024-05-03 20:05:29 +0800200 } else if (guid_equal(&header->NotificationType,
201 &gEfiEventNotificationTypeDmarGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100202 notification_type_readable = "DMAr";
John Chungf8fc7052024-05-03 20:05:29 +0800203 } else if (guid_equal(&header->NotificationType,
204 &gEfiEventNotificationTypeSeaGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100205 notification_type_readable = "SEA";
John Chungf8fc7052024-05-03 20:05:29 +0800206 } else if (guid_equal(&header->NotificationType,
207 &gEfiEventNotificationTypeSeiGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100208 notification_type_readable = "SEI";
John Chungf8fc7052024-05-03 20:05:29 +0800209 } else if (guid_equal(&header->NotificationType,
210 &gEfiEventNotificationTypePeiGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100211 notification_type_readable = "PEI";
John Chungf8fc7052024-05-03 20:05:29 +0800212 } else if (guid_equal(&header->NotificationType,
213 &gEfiEventNotificationTypeCxlGuid)) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100214 notification_type_readable = "CXL Component";
John Chungf8fc7052024-05-03 20:05:29 +0800215 }
Lawrence Tange407b4c2022-07-21 13:54:01 +0100216 json_object_object_add(
217 notification_type, "type",
218 json_object_new_string(notification_type_readable));
219 json_object_object_add(header_ir, "notificationType",
220 notification_type);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100221
Lawrence Tange407b4c2022-07-21 13:54:01 +0100222 //The record ID for this record, unique on a given system.
223 json_object_object_add(header_ir, "recordID",
224 json_object_new_uint64(header->RecordID));
225
226 //Flag for the record, and a human readable form.
227 json_object *flags = integer_to_readable_pair(
228 header->Flags,
229 sizeof(CPER_HEADER_FLAG_TYPES_KEYS) / sizeof(int),
230 CPER_HEADER_FLAG_TYPES_KEYS, CPER_HEADER_FLAG_TYPES_VALUES,
231 "Unknown");
232 json_object_object_add(header_ir, "flags", flags);
233
234 //Persistence information. Outside the scope of specification, so just a uint32 here.
235 json_object_object_add(header_ir, "persistenceInfo",
236 json_object_new_uint64(header->PersistenceInfo));
237 return header_ir;
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100238}
239
240//Converts the given EFI section descriptor into JSON IR format.
Lawrence Tange407b4c2022-07-21 13:54:01 +0100241json_object *
242cper_section_descriptor_to_ir(EFI_ERROR_SECTION_DESCRIPTOR *section_descriptor)
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100243{
Lawrence Tange407b4c2022-07-21 13:54:01 +0100244 json_object *section_descriptor_ir = json_object_new_object();
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100245
Lawrence Tange407b4c2022-07-21 13:54:01 +0100246 //The offset of the section from the base of the record header, length.
247 json_object_object_add(
248 section_descriptor_ir, "sectionOffset",
249 json_object_new_uint64(section_descriptor->SectionOffset));
250 json_object_object_add(
251 section_descriptor_ir, "sectionLength",
252 json_object_new_uint64(section_descriptor->SectionLength));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100253
Lawrence Tange407b4c2022-07-21 13:54:01 +0100254 //Revision.
255 json_object_object_add(section_descriptor_ir, "revision",
256 revision_to_ir(section_descriptor->Revision));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100257
Lawrence Tange407b4c2022-07-21 13:54:01 +0100258 //Validation bits.
259 json_object *validation_bits =
260 bitfield_to_ir(section_descriptor->SecValidMask, 2,
261 CPER_SECTION_DESCRIPTOR_VALID_BITFIELD_NAMES);
262 json_object_object_add(section_descriptor_ir, "validationBits",
263 validation_bits);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100264
Lawrence Tange407b4c2022-07-21 13:54:01 +0100265 //Flag bits.
266 json_object *flags =
267 bitfield_to_ir(section_descriptor->SectionFlags, 8,
268 CPER_SECTION_DESCRIPTOR_FLAGS_BITFIELD_NAMES);
269 json_object_object_add(section_descriptor_ir, "flags", flags);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100270
Lawrence Tange407b4c2022-07-21 13:54:01 +0100271 //Section type (GUID).
272 json_object *section_type = json_object_new_object();
273 char section_type_string[GUID_STRING_LENGTH];
274 guid_to_string(section_type_string, &section_descriptor->SectionType);
275 json_object_object_add(section_type, "data",
276 json_object_new_string(section_type_string));
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100277
Lawrence Tange407b4c2022-07-21 13:54:01 +0100278 //Readable section type, if possible.
Lawrence Tang580423f2022-08-24 09:37:53 +0100279 const char *section_type_readable = "Unknown";
John Chungf8fc7052024-05-03 20:05:29 +0800280 for (size_t i = 0; i < section_definitions_len; i++) {
Lawrence Tangf1f3b832022-08-24 09:42:39 +0100281 if (guid_equal(section_definitions[i].Guid,
282 &section_descriptor->SectionType)) {
283 section_type_readable =
284 section_definitions[i].ReadableName;
Lawrence Tang580423f2022-08-24 09:37:53 +0100285 break;
286 }
287 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100288
Lawrence Tange407b4c2022-07-21 13:54:01 +0100289 json_object_object_add(section_type, "type",
290 json_object_new_string(section_type_readable));
291 json_object_object_add(section_descriptor_ir, "sectionType",
292 section_type);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100293
Lawrence Tange407b4c2022-07-21 13:54:01 +0100294 //If validation bits indicate it exists, add FRU ID.
John Chungf8fc7052024-05-03 20:05:29 +0800295 if (section_descriptor->SecValidMask & 0x1) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100296 char fru_id_string[GUID_STRING_LENGTH];
297 guid_to_string(fru_id_string, &section_descriptor->FruId);
298 json_object_object_add(section_descriptor_ir, "fruID",
299 json_object_new_string(fru_id_string));
300 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100301
Lawrence Tange407b4c2022-07-21 13:54:01 +0100302 //If validation bits indicate it exists, add FRU text.
John Chungf8fc7052024-05-03 20:05:29 +0800303 if ((section_descriptor->SecValidMask & 0x2) >> 1) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100304 json_object_object_add(
305 section_descriptor_ir, "fruText",
306 json_object_new_string(section_descriptor->FruString));
John Chungf8fc7052024-05-03 20:05:29 +0800307 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100308
Lawrence Tange407b4c2022-07-21 13:54:01 +0100309 //Section severity.
310 json_object *section_severity = json_object_new_object();
311 json_object_object_add(
312 section_severity, "code",
313 json_object_new_uint64(section_descriptor->Severity));
314 json_object_object_add(section_severity, "name",
315 json_object_new_string(severity_to_string(
316 section_descriptor->Severity)));
317 json_object_object_add(section_descriptor_ir, "severity",
318 section_severity);
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100319
Lawrence Tange407b4c2022-07-21 13:54:01 +0100320 return section_descriptor_ir;
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100321}
322
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100323//Converts the section described by a single given section descriptor.
Lawrence Tang94153492022-09-05 13:07:54 +0100324json_object *cper_section_to_ir(FILE *handle, long base_pos,
Lawrence Tange407b4c2022-07-21 13:54:01 +0100325 EFI_ERROR_SECTION_DESCRIPTOR *descriptor)
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100326{
Lawrence Tange407b4c2022-07-21 13:54:01 +0100327 //Save our current position in the stream.
328 long position = ftell(handle);
Lawrence Tangde9707f2022-07-19 10:54:31 +0100329
Lawrence Tange407b4c2022-07-21 13:54:01 +0100330 //Read section as described by the section descriptor.
Lawrence Tang94153492022-09-05 13:07:54 +0100331 fseek(handle, base_pos + descriptor->SectionOffset, SEEK_SET);
Lawrence Tange407b4c2022-07-21 13:54:01 +0100332 void *section = malloc(descriptor->SectionLength);
333 if (fread(section, descriptor->SectionLength, 1, handle) != 1) {
John Chungf8fc7052024-05-03 20:05:29 +0800334 printf("Section read failed: Could not read %u bytes from global offset %d.\n",
Lawrence Tange407b4c2022-07-21 13:54:01 +0100335 descriptor->SectionLength, descriptor->SectionOffset);
336 free(section);
337 return NULL;
338 }
Lawrence Tang1b0b00e2022-07-05 10:33:10 +0100339
Lawrence Tange407b4c2022-07-21 13:54:01 +0100340 //Seek back to our original position.
341 fseek(handle, position, SEEK_SET);
Lawrence Tangde9707f2022-07-19 10:54:31 +0100342
Lawrence Tange407b4c2022-07-21 13:54:01 +0100343 //Parse section to IR based on GUID.
344 json_object *result = NULL;
Lawrence Tang580423f2022-08-24 09:37:53 +0100345 int section_converted = 0;
John Chungf8fc7052024-05-03 20:05:29 +0800346 for (size_t i = 0; i < section_definitions_len; i++) {
Lawrence Tangf1f3b832022-08-24 09:42:39 +0100347 if (guid_equal(section_definitions[i].Guid,
348 &descriptor->SectionType) &&
349 section_definitions[i].ToIR != NULL) {
John Chungf8fc7052024-05-03 20:05:29 +0800350 result = section_definitions[i].ToIR(section);
Lawrence Tang580423f2022-08-24 09:37:53 +0100351 section_converted = 1;
352 break;
353 }
354 }
355
356 //Was it an unknown GUID/failed read?
357 if (!section_converted) {
Lawrence Tange407b4c2022-07-21 13:54:01 +0100358 //Output the data as formatted base64.
359 result = json_object_new_object();
Ed Tanousa7d2cdd2024-07-15 11:07:27 -0700360
361 int32_t encoded_len = 0;
362 char *encoded = base64_encode(
363 section, descriptor->SectionLength, &encoded_len);
364 if (encoded == NULL) {
John Chungf8fc7052024-05-03 20:05:29 +0800365 printf("Failed to allocate encode output buffer. \n");
366 } else {
John Chungf8fc7052024-05-03 20:05:29 +0800367 json_object_object_add(result, "data",
368 json_object_new_string_len(
369 encoded, encoded_len));
370 free(encoded);
371 }
Lawrence Tange407b4c2022-07-21 13:54:01 +0100372 }
Lawrence Tange407b4c2022-07-21 13:54:01 +0100373 //Free section memory, return result.
374 free(section);
375 return result;
Lawrence Tang617949e2022-08-08 14:21:42 +0100376}
377
378//Converts a single CPER section, without a header but with a section descriptor, to JSON.
379json_object *cper_single_section_to_ir(FILE *cper_section_file)
380{
381 json_object *ir = json_object_new_object();
382
Lawrence Tang94153492022-09-05 13:07:54 +0100383 //Read the current file pointer location as base record position.
384 long base_pos = ftell(cper_section_file);
385
Lawrence Tang617949e2022-08-08 14:21:42 +0100386 //Read the section descriptor out.
387 EFI_ERROR_SECTION_DESCRIPTOR section_descriptor;
388 if (fread(&section_descriptor, sizeof(EFI_ERROR_SECTION_DESCRIPTOR), 1,
389 cper_section_file) != 1) {
390 printf("Failed to read section descriptor for CPER single section (fread() returned an unexpected value).\n");
391 return NULL;
392 }
393
394 //Convert the section descriptor to IR.
395 json_object *section_descriptor_ir =
396 cper_section_descriptor_to_ir(&section_descriptor);
397 json_object_object_add(ir, "sectionDescriptor", section_descriptor_ir);
398
399 //Parse the single section.
John Chungf8fc7052024-05-03 20:05:29 +0800400 json_object *section_ir = cper_section_to_ir(
401 cper_section_file, base_pos, &section_descriptor);
Lawrence Tang617949e2022-08-08 14:21:42 +0100402 json_object_object_add(ir, "section", section_ir);
403
404 return ir;
John Chungf8fc7052024-05-03 20:05:29 +0800405}
Karthik Rajagopalan5220c9b2024-08-08 00:24:44 -0700406
407char *cper_single_section_to_str_ir(FILE *cper_section_file)
408{
409 json_object *jobj = cper_single_section_to_ir(cper_section_file);
410 char *str = jobj ? strdup(json_object_to_json_string(jobj)) : NULL;
411
412 json_object_put(jobj);
413 return str;
414}
415
416char *cperbuf_single_section_to_str_ir(const unsigned char *cper_section,
417 size_t size)
418{
419 FILE *cper_section_file = fmemopen((void *)cper_section, size, "r");
420
421 return cper_section_file ?
422 cper_single_section_to_str_ir(cper_section_file) :
423 NULL;
424}