/** * Describes functions for generating psuedo-random specification compliant CPER records. * * Author: Lawrence.Tang@arm.com **/ #include #include #include #include "../edk/Cper.h" #include "gen-utils.h" #include "sections/gen-sections.h" #include "cper-generate.h" EFI_ERROR_SECTION_DESCRIPTOR* generate_section_descriptor(char* type, size_t* lengths, int index, int num_sections); size_t generate_section(void** location, char* type); //Generates a CPER record with the given section types, outputting to the given stream. void generate_cper_record(char** types, UINT16 num_sections, FILE* out) { //Initialise randomiser. init_random(); //Generate the sections. void* sections[num_sections]; size_t section_lengths[num_sections]; for (int i=0; iSignatureStart = 0x52455043; //CPER header->SectionCount = num_sections; header->SignatureEnd = 0xFFFFFFFF; header->Flags = 4; //HW_ERROR_FLAGS_SIMULATED header->RecordID = (UINT64)rand(); header->ErrorSeverity = rand() % 4; *((UINT64*)&header->TimeStamp) = (UINT64)rand(); header->ValidationBits = rand() % 0b1000; //Generate the section descriptors given the number of sections. EFI_ERROR_SECTION_DESCRIPTOR* section_descriptors[num_sections]; for (int i=0; iRecordLength = (UINT32)total_len; //Write to stream in order, free all resources. fwrite(header, sizeof(EFI_COMMON_ERROR_RECORD_HEADER), 1, out); fflush(out); free(header); for (int i=0; iSecValidMask &= 0b11; descriptor->Resv1 = 0; descriptor->SectionFlags &= 0xFF; //Set severity. descriptor->Severity = rand() % 4; //Set length, offset from base record. descriptor->SectionLength = (UINT32)lengths[index]; descriptor->SectionOffset = sizeof(EFI_COMMON_ERROR_RECORD_HEADER) + (num_sections * sizeof(EFI_ERROR_SECTION_DESCRIPTOR)); for (int i=0; iSectionOffset += lengths[i]; //Set section type GUID based on type name. if (strcmp(type, "generic") == 0) memcpy(&descriptor->SectionType, &gEfiProcessorGenericErrorSectionGuid, sizeof(EFI_GUID)); else if (strcmp(type, "ia32x64") == 0) memcpy(&descriptor->SectionType, &gEfiIa32X64ProcessorErrorSectionGuid, sizeof(EFI_GUID)); else if (strcmp(type, "ipf") == 0) memcpy(&descriptor->SectionType, &gEfiIpfProcessorErrorSectionGuid, sizeof(EFI_GUID)); else if (strcmp(type, "arm") == 0) memcpy(&descriptor->SectionType, &gEfiArmProcessorErrorSectionGuid, sizeof(EFI_GUID)); else if (strcmp(type, "memory") == 0) memcpy(&descriptor->SectionType, &gEfiPlatformMemoryErrorSectionGuid, sizeof(EFI_GUID)); else if (strcmp(type, "memory2") == 0) memcpy(&descriptor->SectionType, &gEfiPlatformMemoryError2SectionGuid, sizeof(EFI_GUID)); else if (strcmp(type, "pcie") == 0) memcpy(&descriptor->SectionType, &gEfiPcieErrorSectionGuid, sizeof(EFI_GUID)); else if (strcmp(type, "firmware") == 0) memcpy(&descriptor->SectionType, &gEfiFirmwareErrorSectionGuid, sizeof(EFI_GUID)); else if (strcmp(type, "pcibus") == 0) memcpy(&descriptor->SectionType, &gEfiPciBusErrorSectionGuid, sizeof(EFI_GUID)); else if (strcmp(type, "pcidev") == 0) memcpy(&descriptor->SectionType, &gEfiPciDevErrorSectionGuid, sizeof(EFI_GUID)); else if (strcmp(type, "dmargeneric") == 0) memcpy(&descriptor->SectionType, &gEfiDMArGenericErrorSectionGuid, sizeof(EFI_GUID)); else if (strcmp(type, "dmarvtd") == 0) memcpy(&descriptor->SectionType, &gEfiDirectedIoDMArErrorSectionGuid, sizeof(EFI_GUID)); else if (strcmp(type, "dmariommu") == 0) memcpy(&descriptor->SectionType, &gEfiIommuDMArErrorSectionGuid, sizeof(EFI_GUID)); else if (strcmp(type, "ccixper") == 0) memcpy(&descriptor->SectionType, &gEfiCcixPerLogErrorSectionGuid, sizeof(EFI_GUID)); else if (strcmp(type, "cxlprotocol") == 0) memcpy(&descriptor->SectionType, &gEfiCxlProtocolErrorSectionGuid, sizeof(EFI_GUID)); else if (strcmp(type, "cxlcomponent") == 0) { //Choose between the different CXL component type GUIDs. int componentType = rand() % 5; switch (componentType) { case 0: memcpy(&descriptor->SectionType, &gEfiCxlGeneralMediaErrorSectionGuid, sizeof(EFI_GUID)); break; case 1: memcpy(&descriptor->SectionType, &gEfiCxlDramEventErrorSectionGuid, sizeof(EFI_GUID)); break; case 2: memcpy(&descriptor->SectionType, &gEfiCxlPhysicalSwitchErrorSectionGuid, sizeof(EFI_GUID)); break; case 3: memcpy(&descriptor->SectionType, &gEfiCxlVirtualSwitchErrorSectionGuid, sizeof(EFI_GUID)); break; default: memcpy(&descriptor->SectionType, &gEfiCxlMldPortErrorSectionGuid, sizeof(EFI_GUID)); break; } } else if (strcmp(type, "unknown") != 0) { //Undefined section, show error. printf("Undefined section type '%s' provided. See 'cper-generate --help' for command information.\n", type); return 0; } return descriptor; } //Generates a single CPER section given the string type. size_t generate_section(void** location, char* type) { //The length of the section. size_t length = 0; //Switch on the type, generate accordingly. if (strcmp(type, "generic") == 0) length = generate_section_generic(location); else if (strcmp(type, "ia32x64") == 0) length = generate_section_ia32x64(location); // else if (strcmp(type, "ipf") == 0) // length = generate_section_ipf(location); else if (strcmp(type, "arm") == 0) length = generate_section_arm(location); else if (strcmp(type, "memory") == 0) length = generate_section_memory(location); else if (strcmp(type, "memory2") == 0) length = generate_section_memory2(location); else if (strcmp(type, "pcie") == 0) length = generate_section_pcie(location); else if (strcmp(type, "firmware") == 0) length = generate_section_firmware(location); else if (strcmp(type, "pcibus") == 0) length = generate_section_pci_bus(location); else if (strcmp(type, "pcidev") == 0) length = generate_section_pci_dev(location); else if (strcmp(type, "dmargeneric") == 0) length = generate_section_dmar_generic(location); else if (strcmp(type, "dmarvtd") == 0) length = generate_section_dmar_vtd(location); else if (strcmp(type, "dmariommu") == 0) length = generate_section_dmar_iommu(location); else if (strcmp(type, "ccixper") == 0) length = generate_section_ccix_per(location); else if (strcmp(type, "cxlprotocol") == 0) length = generate_section_cxl_protocol(location); else if (strcmp(type, "cxlcomponent") == 0) length = generate_section_cxl_component(location); else if (strcmp(type, "unknown") == 0) length = generate_random_section(location, rand() % 256); else { //Undefined section, show error. printf("Undefined section type '%s' given to generate. See 'cper-generate --help' for command information.\n", type); return 0; } return length; }