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); |
Ed Tanous | 559780e | 2025-03-13 15:25:53 -0700 | [diff] [blame^] | 166 | int bytes_read = fread(cper_buf, 1, header.RecordLength, cper_file); |
| 167 | if (bytes_read < 0) { |
| 168 | cper_print_log("File read failed with code %u\n", bytes_read); |
| 169 | free(cper_buf); |
| 170 | return NULL; |
| 171 | } |
| 172 | if ((UINT32)bytes_read != header.RecordLength) { |
| 173 | int position = ftell(cper_file); |
| 174 | cper_print_log( |
| 175 | "File read failed file was %u bytes, expecting %u bytes from header.\n", |
| 176 | position, header.RecordLength); |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 177 | free(cper_buf); |
| 178 | return NULL; |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 179 | } |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 180 | |
Ed Tanous | 559780e | 2025-03-13 15:25:53 -0700 | [diff] [blame^] | 181 | json_object *ir = cper_buf_to_ir(cper_buf, bytes_read); |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 182 | free(cper_buf); |
| 183 | return ir; |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 184 | } |
| 185 | |
Karthik Rajagopalan | 5220c9b | 2024-08-08 00:24:44 -0700 | [diff] [blame] | 186 | char *cper_to_str_ir(FILE *cper_file) |
| 187 | { |
| 188 | json_object *jobj = cper_to_ir(cper_file); |
| 189 | char *str = jobj ? strdup(json_object_to_json_string(jobj)) : NULL; |
| 190 | |
| 191 | json_object_put(jobj); |
| 192 | return str; |
| 193 | } |
| 194 | |
| 195 | char *cperbuf_to_str_ir(const unsigned char *cper, size_t size) |
| 196 | { |
| 197 | FILE *cper_file = fmemopen((void *)cper, size, "r"); |
| 198 | |
| 199 | return cper_file ? cper_to_str_ir(cper_file) : NULL; |
| 200 | } |
| 201 | |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 202 | //Converts a parsed CPER record header into intermediate JSON object format. |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 203 | json_object *cper_header_to_ir(EFI_COMMON_ERROR_RECORD_HEADER *header) |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 204 | { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 205 | json_object *header_ir = json_object_new_object(); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 206 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 207 | //Revision/version information. |
| 208 | json_object_object_add(header_ir, "revision", |
| 209 | revision_to_ir(header->Revision)); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 210 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 211 | //Section count. |
| 212 | json_object_object_add(header_ir, "sectionCount", |
| 213 | json_object_new_int(header->SectionCount)); |
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 | //Error severity (with interpreted string version). |
| 216 | json_object *error_severity = json_object_new_object(); |
| 217 | json_object_object_add(error_severity, "code", |
| 218 | json_object_new_uint64(header->ErrorSeverity)); |
| 219 | json_object_object_add(error_severity, "name", |
| 220 | json_object_new_string(severity_to_string( |
| 221 | header->ErrorSeverity))); |
| 222 | json_object_object_add(header_ir, "severity", error_severity); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 223 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 224 | //Total length of the record (including headers) in bytes. |
| 225 | json_object_object_add(header_ir, "recordLength", |
| 226 | json_object_new_uint64(header->RecordLength)); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 227 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 228 | //If a timestamp exists according to validation bits, then add it. |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 229 | if (header->ValidationBits & 0x2) { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 230 | char timestamp_string[TIMESTAMP_LENGTH]; |
Ed Tanous | 596c59e | 2025-03-10 13:15:58 -0700 | [diff] [blame] | 231 | if (timestamp_to_string(timestamp_string, TIMESTAMP_LENGTH, |
Ed Tanous | d6b6263 | 2025-03-14 15:30:07 -0700 | [diff] [blame] | 232 | &header->TimeStamp) >= 0) { |
| 233 | json_object_object_add( |
| 234 | header_ir, "timestamp", |
| 235 | json_object_new_string(timestamp_string)); |
Ed Tanous | 596c59e | 2025-03-10 13:15:58 -0700 | [diff] [blame] | 236 | |
Ed Tanous | d6b6263 | 2025-03-14 15:30:07 -0700 | [diff] [blame] | 237 | json_object_object_add(header_ir, "timestampIsPrecise", |
| 238 | json_object_new_boolean( |
| 239 | header->TimeStamp.Flag)); |
| 240 | } |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 241 | } |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 242 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 243 | //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] | 244 | if (header->ValidationBits & 0x1) { |
Ed Tanous | c2ebddd | 2025-03-09 10:07:01 -0700 | [diff] [blame] | 245 | add_guid(header_ir, "platformID", &header->PlatformID); |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 246 | } |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 247 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 248 | //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] | 249 | if (header->ValidationBits & 0x4) { |
Ed Tanous | c2ebddd | 2025-03-09 10:07:01 -0700 | [diff] [blame] | 250 | add_guid(header_ir, "partitionID", &header->PartitionID); |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 251 | } |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 252 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 253 | //Creator ID of the header. |
Ed Tanous | c2ebddd | 2025-03-09 10:07:01 -0700 | [diff] [blame] | 254 | add_guid(header_ir, "creatorID", &header->CreatorID); |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 255 | //Notification type for the header. Some defined types are available. |
| 256 | json_object *notification_type = json_object_new_object(); |
Ed Tanous | c2ebddd | 2025-03-09 10:07:01 -0700 | [diff] [blame] | 257 | add_guid(notification_type, "guid", &header->NotificationType); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 258 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 259 | //Add the human readable notification type if possible. |
Ed Tanous | c2ebddd | 2025-03-09 10:07:01 -0700 | [diff] [blame] | 260 | const char *notification_type_readable = "Unknown"; |
Ed Tanous | 1a64856 | 2025-03-10 15:23:38 -0700 | [diff] [blame] | 261 | |
| 262 | EFI_GUID *guids[] = { |
| 263 | &gEfiEventNotificationTypeCmcGuid, |
| 264 | &gEfiEventNotificationTypeCpeGuid, |
| 265 | &gEfiEventNotificationTypeMceGuid, |
| 266 | &gEfiEventNotificationTypePcieGuid, |
| 267 | &gEfiEventNotificationTypeInitGuid, |
| 268 | &gEfiEventNotificationTypeNmiGuid, |
| 269 | &gEfiEventNotificationTypeBootGuid, |
| 270 | &gEfiEventNotificationTypeDmarGuid, |
| 271 | &gEfiEventNotificationTypeSeaGuid, |
| 272 | &gEfiEventNotificationTypeSeiGuid, |
| 273 | &gEfiEventNotificationTypePeiGuid, |
| 274 | &gEfiEventNotificationTypeCxlGuid, |
| 275 | }; |
| 276 | |
| 277 | const char *readable_names[] = { |
| 278 | "CMC", "CPE", "MCE", "PCIe", "INIT", "NMI", |
| 279 | "Boot", "DMAr", "SEA", "SEI", "PEI", "CXL Component" |
| 280 | }; |
| 281 | |
| 282 | int index = select_guid_from_list(&header->NotificationType, guids, |
| 283 | sizeof(guids) / sizeof(EFI_GUID *)); |
| 284 | if (index < (int)(sizeof(readable_names) / sizeof(char *))) { |
| 285 | notification_type_readable = readable_names[index]; |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 286 | } |
Ed Tanous | 1a64856 | 2025-03-10 15:23:38 -0700 | [diff] [blame] | 287 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 288 | json_object_object_add( |
| 289 | notification_type, "type", |
| 290 | json_object_new_string(notification_type_readable)); |
| 291 | json_object_object_add(header_ir, "notificationType", |
| 292 | notification_type); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 293 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 294 | //The record ID for this record, unique on a given system. |
| 295 | json_object_object_add(header_ir, "recordID", |
| 296 | json_object_new_uint64(header->RecordID)); |
| 297 | |
| 298 | //Flag for the record, and a human readable form. |
| 299 | json_object *flags = integer_to_readable_pair( |
| 300 | header->Flags, |
| 301 | sizeof(CPER_HEADER_FLAG_TYPES_KEYS) / sizeof(int), |
| 302 | CPER_HEADER_FLAG_TYPES_KEYS, CPER_HEADER_FLAG_TYPES_VALUES, |
| 303 | "Unknown"); |
| 304 | json_object_object_add(header_ir, "flags", flags); |
| 305 | |
| 306 | //Persistence information. Outside the scope of specification, so just a uint32 here. |
| 307 | json_object_object_add(header_ir, "persistenceInfo", |
| 308 | json_object_new_uint64(header->PersistenceInfo)); |
| 309 | return header_ir; |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | //Converts the given EFI section descriptor into JSON IR format. |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 313 | json_object * |
| 314 | cper_section_descriptor_to_ir(EFI_ERROR_SECTION_DESCRIPTOR *section_descriptor) |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 315 | { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 316 | json_object *section_descriptor_ir = json_object_new_object(); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 317 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 318 | //The offset of the section from the base of the record header, length. |
| 319 | json_object_object_add( |
| 320 | section_descriptor_ir, "sectionOffset", |
| 321 | json_object_new_uint64(section_descriptor->SectionOffset)); |
| 322 | json_object_object_add( |
| 323 | section_descriptor_ir, "sectionLength", |
| 324 | json_object_new_uint64(section_descriptor->SectionLength)); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 325 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 326 | //Revision. |
| 327 | json_object_object_add(section_descriptor_ir, "revision", |
| 328 | revision_to_ir(section_descriptor->Revision)); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 329 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 330 | //Flag bits. |
| 331 | json_object *flags = |
| 332 | bitfield_to_ir(section_descriptor->SectionFlags, 8, |
| 333 | CPER_SECTION_DESCRIPTOR_FLAGS_BITFIELD_NAMES); |
| 334 | json_object_object_add(section_descriptor_ir, "flags", flags); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 335 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 336 | //Section type (GUID). |
| 337 | json_object *section_type = json_object_new_object(); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 338 | |
Ed Tanous | c2ebddd | 2025-03-09 10:07:01 -0700 | [diff] [blame] | 339 | add_guid(section_type, "data", §ion_descriptor->SectionType); |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 340 | //Readable section type, if possible. |
Lawrence Tang | 580423f | 2022-08-24 09:37:53 +0100 | [diff] [blame] | 341 | const char *section_type_readable = "Unknown"; |
Ed Tanous | 1a64856 | 2025-03-10 15:23:38 -0700 | [diff] [blame] | 342 | |
| 343 | CPER_SECTION_DEFINITION *section = |
| 344 | select_section_by_guid(§ion_descriptor->SectionType); |
| 345 | if (section != NULL) { |
| 346 | section_type_readable = section->ReadableName; |
Lawrence Tang | 580423f | 2022-08-24 09:37:53 +0100 | [diff] [blame] | 347 | } |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 348 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 349 | json_object_object_add(section_type, "type", |
| 350 | json_object_new_string(section_type_readable)); |
| 351 | json_object_object_add(section_descriptor_ir, "sectionType", |
| 352 | section_type); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 353 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 354 | //If validation bits indicate it exists, add FRU ID. |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 355 | if (section_descriptor->SecValidMask & 0x1) { |
Ed Tanous | c2ebddd | 2025-03-09 10:07:01 -0700 | [diff] [blame] | 356 | add_guid(section_descriptor_ir, "fruID", |
| 357 | §ion_descriptor->FruId); |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 358 | } |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 359 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 360 | //If validation bits indicate it exists, add FRU text. |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 361 | if ((section_descriptor->SecValidMask & 0x2) >> 1) { |
Ed Tanous | 8121f7e | 2025-03-06 14:39:07 -0800 | [diff] [blame] | 362 | int fru_text_len = 0; |
| 363 | for (; |
| 364 | fru_text_len < (int)sizeof(section_descriptor->FruString); |
| 365 | fru_text_len++) { |
| 366 | char c = section_descriptor->FruString[fru_text_len]; |
| 367 | if (c < 0) { |
Ed Tanous | 50b966f | 2025-03-11 09:06:19 -0700 | [diff] [blame] | 368 | //cper_print_log("Fru text contains non-ASCII character\n"); |
Ed Tanous | 8121f7e | 2025-03-06 14:39:07 -0800 | [diff] [blame] | 369 | fru_text_len = -1; |
| 370 | break; |
| 371 | } |
| 372 | if (c == '\0') { |
| 373 | break; |
| 374 | } |
| 375 | } |
| 376 | if (fru_text_len >= 0) { |
| 377 | json_object_object_add( |
| 378 | section_descriptor_ir, "fruText", |
| 379 | json_object_new_string_len( |
| 380 | section_descriptor->FruString, |
| 381 | fru_text_len)); |
| 382 | } |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 383 | } |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 384 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 385 | //Section severity. |
| 386 | json_object *section_severity = json_object_new_object(); |
| 387 | json_object_object_add( |
| 388 | section_severity, "code", |
| 389 | json_object_new_uint64(section_descriptor->Severity)); |
| 390 | json_object_object_add(section_severity, "name", |
| 391 | json_object_new_string(severity_to_string( |
| 392 | section_descriptor->Severity))); |
| 393 | json_object_object_add(section_descriptor_ir, "severity", |
| 394 | section_severity); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 395 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 396 | return section_descriptor_ir; |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 397 | } |
| 398 | |
Ed Tanous | 12dbd4f | 2025-03-08 19:05:01 -0800 | [diff] [blame] | 399 | json_object *read_section(const unsigned char *cper_section_buf, size_t size, |
| 400 | CPER_SECTION_DEFINITION *definition) |
Ed Tanous | d759a18 | 2025-03-07 15:51:45 -0800 | [diff] [blame] | 401 | { |
Ed Tanous | 12dbd4f | 2025-03-08 19:05:01 -0800 | [diff] [blame] | 402 | if (definition->ToIR == NULL) { |
| 403 | return NULL; |
| 404 | } |
| 405 | json_object *section_ir = definition->ToIR(cper_section_buf, size); |
Ed Tanous | d6b6263 | 2025-03-14 15:30:07 -0700 | [diff] [blame] | 406 | if (section_ir == NULL) { |
| 407 | return NULL; |
| 408 | } |
Ed Tanous | d759a18 | 2025-03-07 15:51:45 -0800 | [diff] [blame] | 409 | json_object *result = json_object_new_object(); |
Ed Tanous | 12dbd4f | 2025-03-08 19:05:01 -0800 | [diff] [blame] | 410 | json_object_object_add(result, definition->ShortName, section_ir); |
Ed Tanous | d759a18 | 2025-03-07 15:51:45 -0800 | [diff] [blame] | 411 | return result; |
| 412 | } |
| 413 | |
Ed Tanous | 1a64856 | 2025-03-10 15:23:38 -0700 | [diff] [blame] | 414 | CPER_SECTION_DEFINITION *select_section_by_guid(EFI_GUID *guid) |
| 415 | { |
| 416 | size_t i = 0; |
| 417 | for (; i < section_definitions_len; i++) { |
| 418 | if (guid_equal(guid, section_definitions[i].Guid)) { |
| 419 | break; |
| 420 | } |
| 421 | } |
| 422 | // It's unlikely fuzzing can reliably come up with a correct guid, given how |
| 423 | // much entropy there is. If we're in fuzzing mode, and if we haven't found |
| 424 | // a match, try to force a match so we get some coverage. Note, we still |
| 425 | // want coverage of the section failed to convert code, so treat index == |
| 426 | // size as section failed to convert. |
| 427 | #ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION |
| 428 | if (i == section_definitions_len) { |
| 429 | i = guid->Data1 % (section_definitions_len + 1); |
| 430 | } |
| 431 | #endif |
| 432 | if (i < section_definitions_len) { |
| 433 | return §ion_definitions[i]; |
| 434 | } |
| 435 | |
| 436 | return NULL; |
| 437 | } |
| 438 | |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 439 | //Converts the section described by a single given section descriptor. |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 440 | json_object *cper_buf_section_to_ir(const void *cper_section_buf, size_t size, |
| 441 | EFI_ERROR_SECTION_DESCRIPTOR *descriptor) |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 442 | { |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 443 | if (descriptor->SectionLength > size) { |
Ed Tanous | 50b966f | 2025-03-11 09:06:19 -0700 | [diff] [blame] | 444 | cper_print_log( |
| 445 | "Invalid CPER file: Invalid header (incorrect signature).\n"); |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 446 | return NULL; |
| 447 | } |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 448 | |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 449 | //Parse section to IR based on GUID. |
| 450 | json_object *result = NULL; |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 451 | json_object *section_ir = NULL; |
Ed Tanous | 12dbd4f | 2025-03-08 19:05:01 -0800 | [diff] [blame] | 452 | |
Ed Tanous | 1a64856 | 2025-03-10 15:23:38 -0700 | [diff] [blame] | 453 | CPER_SECTION_DEFINITION *section = |
| 454 | select_section_by_guid(&descriptor->SectionType); |
Ed Tanous | d6b6263 | 2025-03-14 15:30:07 -0700 | [diff] [blame] | 455 | if (section == NULL) { |
| 456 | cper_print_log("Unknown section type guid\n"); |
| 457 | } else { |
Ed Tanous | 1a64856 | 2025-03-10 15:23:38 -0700 | [diff] [blame] | 458 | result = read_section(cper_section_buf, size, section); |
Ed Tanous | d759a18 | 2025-03-07 15:51:45 -0800 | [diff] [blame] | 459 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 460 | |
Lawrence Tang | 580423f | 2022-08-24 09:37:53 +0100 | [diff] [blame] | 461 | //Was it an unknown GUID/failed read? |
Ed Tanous | 12dbd4f | 2025-03-08 19:05:01 -0800 | [diff] [blame] | 462 | if (result == NULL) { |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 463 | //Output the data as formatted base64. |
Ed Tanous | a7d2cdd | 2024-07-15 11:07:27 -0700 | [diff] [blame] | 464 | int32_t encoded_len = 0; |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 465 | char *encoded = base64_encode(cper_section_buf, |
| 466 | descriptor->SectionLength, |
| 467 | &encoded_len); |
Ed Tanous | a7d2cdd | 2024-07-15 11:07:27 -0700 | [diff] [blame] | 468 | if (encoded == NULL) { |
Ed Tanous | d6b6263 | 2025-03-14 15:30:07 -0700 | [diff] [blame] | 469 | cper_print_log( |
| 470 | "Failed to allocate encode output buffer. \n"); |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 471 | } else { |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 472 | section_ir = json_object_new_object(); |
| 473 | json_object_object_add(section_ir, "data", |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 474 | json_object_new_string_len( |
| 475 | encoded, encoded_len)); |
| 476 | free(encoded); |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 477 | |
| 478 | result = json_object_new_object(); |
| 479 | json_object_object_add(result, "Unknown", section_ir); |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 480 | } |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 481 | } |
Ed Tanous | d6b6263 | 2025-03-14 15:30:07 -0700 | [diff] [blame] | 482 | if (result == NULL) { |
| 483 | cper_print_log("RETURNING NULL!! !!\n"); |
| 484 | } |
Lawrence Tang | e407b4c | 2022-07-21 13:54:01 +0100 | [diff] [blame] | 485 | return result; |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 486 | } |
| 487 | |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 488 | json_object *cper_buf_single_section_to_ir(const unsigned char *cper_buf, |
| 489 | size_t size) |
Ed Tanous | 8d47a37 | 2025-03-05 15:55:36 -0800 | [diff] [blame] | 490 | { |
Ed Tanous | 8121f7e | 2025-03-06 14:39:07 -0800 | [diff] [blame] | 491 | const unsigned char *cper_end; |
| 492 | const unsigned char *section_begin; |
| 493 | json_object *ir; |
| 494 | |
| 495 | cper_end = cper_buf + size; |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 496 | |
| 497 | //Read the section descriptor out. |
| 498 | EFI_ERROR_SECTION_DESCRIPTOR *section_descriptor; |
| 499 | if (sizeof(EFI_ERROR_SECTION_DESCRIPTOR) > size) { |
Ed Tanous | 50b966f | 2025-03-11 09:06:19 -0700 | [diff] [blame] | 500 | cper_print_log( |
| 501 | "Size of cper buffer was too small to read section descriptor %zu\n", |
| 502 | size); |
Ed Tanous | 8d47a37 | 2025-03-05 15:55:36 -0800 | [diff] [blame] | 503 | return NULL; |
| 504 | } |
Ed Tanous | 8121f7e | 2025-03-06 14:39:07 -0800 | [diff] [blame] | 505 | |
| 506 | ir = json_object_new_object(); |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 507 | section_descriptor = (EFI_ERROR_SECTION_DESCRIPTOR *)cper_buf; |
| 508 | //Convert the section descriptor to IR. |
| 509 | json_object *section_descriptor_ir = |
| 510 | cper_section_descriptor_to_ir(section_descriptor); |
| 511 | json_object_object_add(ir, "sectionDescriptor", section_descriptor_ir); |
Ed Tanous | 8121f7e | 2025-03-06 14:39:07 -0800 | [diff] [blame] | 512 | section_begin = cper_buf + section_descriptor->SectionOffset; |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 513 | |
Ed Tanous | 8121f7e | 2025-03-06 14:39:07 -0800 | [diff] [blame] | 514 | if (section_begin + section_descriptor->SectionLength >= cper_end) { |
| 515 | json_object_put(ir); |
Ed Tanous | 50b966f | 2025-03-11 09:06:19 -0700 | [diff] [blame] | 516 | //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] | 517 | return NULL; |
| 518 | } |
| 519 | |
| 520 | const unsigned char *section = |
| 521 | cper_buf + section_descriptor->SectionOffset; |
| 522 | |
| 523 | //Parse the single section. |
| 524 | json_object *section_ir = cper_buf_section_to_ir( |
| 525 | section, section_descriptor->SectionLength, section_descriptor); |
Ed Tanous | d6b6263 | 2025-03-14 15:30:07 -0700 | [diff] [blame] | 526 | if (section_ir == NULL) { |
| 527 | cper_print_log("RETURNING NULL2!! !!\n"); |
| 528 | } |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 529 | json_object_object_add(ir, "section", section_ir); |
Ed Tanous | 8d47a37 | 2025-03-05 15:55:36 -0800 | [diff] [blame] | 530 | return ir; |
| 531 | } |
| 532 | |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 533 | //Converts a single CPER section, without a header but with a section descriptor, to JSON. |
| 534 | json_object *cper_single_section_to_ir(FILE *cper_section_file) |
| 535 | { |
| 536 | json_object *ir = json_object_new_object(); |
| 537 | |
Lawrence Tang | 9415349 | 2022-09-05 13:07:54 +0100 | [diff] [blame] | 538 | //Read the current file pointer location as base record position. |
| 539 | long base_pos = ftell(cper_section_file); |
| 540 | |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 541 | //Read the section descriptor out. |
| 542 | EFI_ERROR_SECTION_DESCRIPTOR section_descriptor; |
| 543 | if (fread(§ion_descriptor, sizeof(EFI_ERROR_SECTION_DESCRIPTOR), 1, |
| 544 | cper_section_file) != 1) { |
Ed Tanous | 50b966f | 2025-03-11 09:06:19 -0700 | [diff] [blame] | 545 | cper_print_log( |
| 546 | "Failed to read section descriptor for CPER single section (fread() returned an unexpected value).\n"); |
Ed Tanous | 8121f7e | 2025-03-06 14:39:07 -0800 | [diff] [blame] | 547 | json_object_put(ir); |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 548 | return NULL; |
| 549 | } |
| 550 | |
| 551 | //Convert the section descriptor to IR. |
| 552 | json_object *section_descriptor_ir = |
| 553 | cper_section_descriptor_to_ir(§ion_descriptor); |
| 554 | json_object_object_add(ir, "sectionDescriptor", section_descriptor_ir); |
| 555 | |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 556 | //Save our current position in the stream. |
| 557 | long position = ftell(cper_section_file); |
| 558 | |
| 559 | //Read section as described by the section descriptor. |
| 560 | fseek(cper_section_file, base_pos + section_descriptor.SectionOffset, |
| 561 | SEEK_SET); |
| 562 | void *section = malloc(section_descriptor.SectionLength); |
| 563 | if (fread(section, section_descriptor.SectionLength, 1, |
| 564 | cper_section_file) != 1) { |
Ed Tanous | 50b966f | 2025-03-11 09:06:19 -0700 | [diff] [blame] | 565 | cper_print_log( |
| 566 | "Section read failed: Could not read %u bytes from global offset %d.\n", |
| 567 | section_descriptor.SectionLength, |
| 568 | section_descriptor.SectionOffset); |
Ed Tanous | 8121f7e | 2025-03-06 14:39:07 -0800 | [diff] [blame] | 569 | json_object_put(ir); |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 570 | free(section); |
| 571 | return NULL; |
| 572 | } |
| 573 | |
| 574 | //Seek back to our original position. |
| 575 | fseek(cper_section_file, position, SEEK_SET); |
| 576 | |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 577 | //Parse the single section. |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 578 | json_object *section_ir = cper_buf_section_to_ir( |
| 579 | section, section_descriptor.SectionLength, §ion_descriptor); |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 580 | json_object_object_add(ir, "section", section_ir); |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 581 | free(section); |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 582 | return ir; |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 583 | } |
Karthik Rajagopalan | 5220c9b | 2024-08-08 00:24:44 -0700 | [diff] [blame] | 584 | |
Karthik Rajagopalan | 5220c9b | 2024-08-08 00:24:44 -0700 | [diff] [blame] | 585 | char *cperbuf_single_section_to_str_ir(const unsigned char *cper_section, |
| 586 | size_t size) |
| 587 | { |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 588 | json_object *jobj = cper_buf_single_section_to_ir(cper_section, size); |
| 589 | char *str = jobj ? strdup(json_object_to_json_string(jobj)) : NULL; |
Karthik Rajagopalan | 5220c9b | 2024-08-08 00:24:44 -0700 | [diff] [blame] | 590 | |
Ed Tanous | 73498f6 | 2025-03-05 18:03:36 -0800 | [diff] [blame] | 591 | json_object_put(jobj); |
| 592 | return str; |
Karthik Rajagopalan | 5220c9b | 2024-08-08 00:24:44 -0700 | [diff] [blame] | 593 | } |