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