2008-03-19 10:01:03 +01:00
|
|
|
/** @file
|
2008-07-16 11:40:06 +02:00
|
|
|
Pei Core Load Image Support
|
|
|
|
|
2007-07-04 09:51:48 +02:00
|
|
|
Copyright (c) 2006 - 2007, Intel Corporation
|
|
|
|
All rights reserved. This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
2008-03-19 10:01:03 +01:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
#include <PeiMain.h>
|
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
|
|
|
Routine for loading file image.
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@param PeiServices The PEI core services table.
|
|
|
|
@param FileHandle Pointer to the FFS file header of the image.
|
|
|
|
@param ImageAddressArg Pointer to PE/TE image.
|
|
|
|
@param ImageSizeArg Size of PE/TE image.
|
|
|
|
@param EntryPoint Pointer to entry point of specified image file for output.
|
|
|
|
@param AuthenticationState - Pointer to attestation authentication state of image.
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@retval EFI_SUCCESS - Image is successfully loaded.
|
|
|
|
@retval EFI_NOT_FOUND - Fail to locate necessary PPI
|
|
|
|
@retval Others - Fail to load file.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
2007-09-24 13:38:43 +02:00
|
|
|
PeiLoadImageLoadImage (
|
|
|
|
IN EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN EFI_PEI_FILE_HANDLE FileHandle,
|
|
|
|
OUT EFI_PHYSICAL_ADDRESS *ImageAddressArg, OPTIONAL
|
|
|
|
OUT UINT64 *ImageSizeArg, OPTIONAL
|
|
|
|
OUT EFI_PHYSICAL_ADDRESS *EntryPoint,
|
|
|
|
OUT UINT32 *AuthenticationState
|
2007-07-04 09:51:48 +02:00
|
|
|
)
|
2008-07-16 11:40:06 +02:00
|
|
|
;
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
|
|
|
The wrapper function of PeiLoadImageLoadImage().
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@param This - Pointer to EFI_PEI_LOAD_FILE_PPI.
|
|
|
|
@param FileHandle - Pointer to the FFS file header of the image.
|
|
|
|
@param ImageAddressArg - Pointer to PE/TE image.
|
|
|
|
@param ImageSizeArg - Size of PE/TE image.
|
|
|
|
@param EntryPoint - Pointer to entry point of specified image file for output.
|
|
|
|
@param AuthenticationState - Pointer to attestation authentication state of image.
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@return Status of PeiLoadImageLoadImage().
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-09-24 13:38:43 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiLoadImageLoadImageWrapper (
|
|
|
|
IN CONST EFI_PEI_LOAD_FILE_PPI *This,
|
|
|
|
IN EFI_PEI_FILE_HANDLE FileHandle,
|
|
|
|
OUT EFI_PHYSICAL_ADDRESS *ImageAddressArg, OPTIONAL
|
|
|
|
OUT UINT64 *ImageSizeArg, OPTIONAL
|
|
|
|
OUT EFI_PHYSICAL_ADDRESS *EntryPoint,
|
|
|
|
OUT UINT32 *AuthenticationState
|
|
|
|
)
|
|
|
|
;
|
|
|
|
|
|
|
|
STATIC EFI_PEI_LOAD_FILE_PPI mPeiLoadImagePpi = {
|
|
|
|
PeiLoadImageLoadImageWrapper
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
STATIC EFI_PEI_PPI_DESCRIPTOR gPpiLoadFilePpiList = {
|
|
|
|
(EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST),
|
|
|
|
&gEfiPeiLoadFilePpiGuid,
|
|
|
|
&mPeiLoadImagePpi
|
|
|
|
};
|
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
|
|
|
|
|
|
|
Support routine for the PE/COFF Loader that reads a buffer from a PE/COFF file
|
|
|
|
|
|
|
|
|
|
|
|
@param FileHandle - The handle to the PE/COFF file
|
|
|
|
@param FileOffset - The offset, in bytes, into the file to read
|
|
|
|
@param ReadSize - The number of bytes to read from the file starting at FileOffset
|
|
|
|
@param Buffer - A pointer to the buffer to read the data into.
|
|
|
|
|
|
|
|
@return EFI_SUCCESS - ReadSize bytes of data were read into Buffer from the PE/COFF file starting at FileOffset
|
|
|
|
|
|
|
|
**/
|
2007-09-24 13:38:43 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiImageRead (
|
|
|
|
IN VOID *FileHandle,
|
|
|
|
IN UINTN FileOffset,
|
|
|
|
IN OUT UINTN *ReadSize,
|
|
|
|
OUT VOID *Buffer
|
|
|
|
)
|
|
|
|
{
|
|
|
|
CHAR8 *Destination8;
|
|
|
|
CHAR8 *Source8;
|
|
|
|
UINTN Length;
|
|
|
|
|
|
|
|
Destination8 = Buffer;
|
|
|
|
Source8 = (CHAR8 *) ((UINTN) FileHandle + FileOffset);
|
|
|
|
Length = *ReadSize;
|
|
|
|
while (Length--) {
|
|
|
|
*(Destination8++) = *(Source8++);
|
|
|
|
}
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
Support routine to return the Image Read.
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@param ImageContext - The context of the image being loaded
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@retval EFI_SUCCESS - If Image function location is found
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
GetImageReadFunction (
|
|
|
|
IN PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext
|
|
|
|
)
|
2007-09-24 13:38:43 +02:00
|
|
|
{
|
|
|
|
VOID* MemoryBuffer;
|
|
|
|
|
|
|
|
MemoryBuffer = AllocatePages (0x400 / EFI_PAGE_SIZE + 1);
|
|
|
|
ASSERT (MemoryBuffer != NULL);
|
|
|
|
|
|
|
|
CopyMem (MemoryBuffer, (CONST VOID *) (UINTN) PeiImageRead, 0x400);
|
|
|
|
|
|
|
|
ImageContext->ImageRead = (PE_COFF_LOADER_READ_FILE) (UINTN) MemoryBuffer;
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
|
|
|
|
|
|
|
Loads and relocates a PE/COFF image into memory.
|
|
|
|
|
|
|
|
|
|
|
|
@param Pe32Data - The base address of the PE/COFF file that is to be loaded and relocated
|
|
|
|
@param ImageAddress - The base address of the relocated PE/COFF image
|
|
|
|
@param ImageSize - The size of the relocated PE/COFF image
|
|
|
|
@param EntryPoint - The entry point of the relocated PE/COFF image
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The file was loaded and relocated
|
|
|
|
@retval EFI_OUT_OF_RESOURCES There was not enough memory to load and relocate the PE/COFF file
|
|
|
|
|
|
|
|
**/
|
2007-09-24 13:38:43 +02:00
|
|
|
EFI_STATUS
|
|
|
|
LoadAndRelocatePeCoffImage (
|
|
|
|
IN VOID *Pe32Data,
|
|
|
|
OUT EFI_PHYSICAL_ADDRESS *ImageAddress,
|
|
|
|
OUT UINT64 *ImageSize,
|
|
|
|
OUT EFI_PHYSICAL_ADDRESS *EntryPoint
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
PE_COFF_LOADER_IMAGE_CONTEXT ImageContext;
|
|
|
|
|
|
|
|
ZeroMem (&ImageContext, sizeof (ImageContext));
|
|
|
|
ImageContext.Handle = Pe32Data;
|
|
|
|
Status = GetImageReadFunction (&ImageContext);
|
|
|
|
|
|
|
|
ASSERT_EFI_ERROR (Status);
|
|
|
|
|
2007-09-28 10:14:30 +02:00
|
|
|
Status = PeCoffLoaderGetImageInfo (&ImageContext);
|
2007-09-24 13:38:43 +02:00
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
//
|
2007-10-26 11:28:29 +02:00
|
|
|
// When Image has no reloc section, it can't be relocated into memory.
|
|
|
|
//
|
|
|
|
if (ImageContext.RelocationsStripped) {
|
2007-12-06 10:52:27 +01:00
|
|
|
DEBUG ((EFI_D_ERROR, "The image at 0x%08x without reloc section can't be loaded into memory\n", (UINTN) Pe32Data));
|
2007-10-26 11:28:29 +02:00
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
//
|
2007-09-24 13:38:43 +02:00
|
|
|
// Allocate Memory for the image
|
|
|
|
//
|
|
|
|
ImageContext.ImageAddress = (EFI_PHYSICAL_ADDRESS)(UINTN) AllocatePages (EFI_SIZE_TO_PAGES ((UINT32) ImageContext.ImageSize));
|
|
|
|
ASSERT (ImageContext.ImageAddress != 0);
|
2007-10-22 12:41:03 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Skip the reserved space for the stripped PeHeader when load TeImage into memory.
|
|
|
|
//
|
|
|
|
if (ImageContext.IsTeImage) {
|
|
|
|
ImageContext.ImageAddress = ImageContext.ImageAddress +
|
|
|
|
((EFI_TE_IMAGE_HEADER *) Pe32Data)->StrippedSize -
|
|
|
|
sizeof (EFI_TE_IMAGE_HEADER);
|
|
|
|
}
|
2007-09-24 13:38:43 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Load the image to our new buffer
|
|
|
|
//
|
2007-09-28 10:14:30 +02:00
|
|
|
Status = PeCoffLoaderLoadImage (&ImageContext);
|
2007-09-24 13:38:43 +02:00
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Relocate the image in our new buffer
|
|
|
|
//
|
2007-09-28 10:14:30 +02:00
|
|
|
Status = PeCoffLoaderRelocateImage (&ImageContext);
|
2007-09-24 13:38:43 +02:00
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Flush the instruction cache so the image data is written before we execute it
|
|
|
|
//
|
|
|
|
InvalidateInstructionCacheRange ((VOID *)(UINTN)ImageContext.ImageAddress, (UINTN)ImageContext.ImageSize);
|
|
|
|
|
|
|
|
*ImageAddress = ImageContext.ImageAddress;
|
|
|
|
*ImageSize = ImageContext.ImageSize;
|
|
|
|
*EntryPoint = ImageContext.EntryPoint;
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
|
|
|
Routine for loading file image.
|
|
|
|
|
|
|
|
@param PeiServices The PEI core services table.
|
|
|
|
@param FileHandle Pointer to the FFS file header of the image.
|
|
|
|
@param ImageAddressArg Pointer to PE/TE image.
|
|
|
|
@param ImageSizeArg Size of PE/TE image.
|
|
|
|
@param EntryPoint Pointer to entry point of specified image file for output.
|
|
|
|
@param AuthenticationState - Pointer to attestation authentication state of image.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS - Image is successfully loaded.
|
|
|
|
@retval EFI_NOT_FOUND - Fail to locate necessary PPI
|
|
|
|
@retval Others - Fail to load file.
|
|
|
|
|
|
|
|
**/
|
2007-09-24 13:38:43 +02:00
|
|
|
EFI_STATUS
|
|
|
|
PeiLoadImageLoadImage (
|
|
|
|
IN EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN EFI_PEI_FILE_HANDLE FileHandle,
|
|
|
|
OUT EFI_PHYSICAL_ADDRESS *ImageAddressArg, OPTIONAL
|
|
|
|
OUT UINT64 *ImageSizeArg, OPTIONAL
|
|
|
|
OUT EFI_PHYSICAL_ADDRESS *EntryPoint,
|
|
|
|
OUT UINT32 *AuthenticationState
|
|
|
|
)
|
2007-07-04 09:51:48 +02:00
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
VOID *Pe32Data;
|
|
|
|
EFI_PHYSICAL_ADDRESS ImageAddress;
|
|
|
|
UINT64 ImageSize;
|
|
|
|
EFI_PHYSICAL_ADDRESS ImageEntryPoint;
|
|
|
|
UINT16 Machine;
|
2007-09-24 13:38:43 +02:00
|
|
|
PEI_CORE_INSTANCE *Private;
|
|
|
|
VOID *EntryPointArg;
|
2007-11-15 10:00:14 +01:00
|
|
|
EFI_SECTION_TYPE SearchType1;
|
|
|
|
EFI_SECTION_TYPE SearchType2;
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2007-09-28 10:14:30 +02:00
|
|
|
*EntryPoint = 0;
|
|
|
|
ImageSize = 0;
|
2007-09-24 13:38:43 +02:00
|
|
|
*AuthenticationState = 0;
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2007-11-15 10:00:14 +01:00
|
|
|
if (FeaturePcdGet (PcdPeiCoreImageLoaderSearchTeSectionFirst)) {
|
|
|
|
SearchType1 = EFI_SECTION_TE;
|
|
|
|
SearchType2 = EFI_SECTION_PE32;
|
|
|
|
} else {
|
|
|
|
SearchType1 = EFI_SECTION_PE32;
|
|
|
|
SearchType2 = EFI_SECTION_TE;
|
|
|
|
}
|
2007-07-04 09:51:48 +02:00
|
|
|
//
|
2007-11-15 10:00:14 +01:00
|
|
|
// Try to find a first exe section (if PcdPeiCoreImageLoaderSearchTeSectionFirst
|
|
|
|
// is true, TE will be searched first).
|
2007-07-04 09:51:48 +02:00
|
|
|
//
|
|
|
|
Status = PeiServicesFfsFindSectionData (
|
2007-11-15 10:00:14 +01:00
|
|
|
SearchType1,
|
2007-09-24 13:38:43 +02:00
|
|
|
FileHandle,
|
2007-07-04 09:51:48 +02:00
|
|
|
&Pe32Data
|
|
|
|
);
|
|
|
|
//
|
2007-11-15 10:00:14 +01:00
|
|
|
// If we didn't find a first exe section, try to find the second exe section.
|
2007-07-04 09:51:48 +02:00
|
|
|
//
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
Status = PeiServicesFfsFindSectionData (
|
2007-11-15 10:00:14 +01:00
|
|
|
SearchType2,
|
2007-09-24 13:38:43 +02:00
|
|
|
FileHandle,
|
|
|
|
&Pe32Data
|
2007-07-04 09:51:48 +02:00
|
|
|
);
|
2007-09-24 13:38:43 +02:00
|
|
|
if (EFI_ERROR (Status)) {
|
2007-07-04 09:51:48 +02:00
|
|
|
//
|
2007-09-24 13:38:43 +02:00
|
|
|
// PEI core only carry the loader function fro TE and PE32 executables
|
|
|
|
// If this two section does not exist, just return.
|
2007-07-04 09:51:48 +02:00
|
|
|
//
|
2007-09-24 13:38:43 +02:00
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Private = PEI_CORE_INSTANCE_FROM_PS_THIS (PeiServices);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2007-09-24 13:38:43 +02:00
|
|
|
if (Private->PeiMemoryInstalled &&
|
|
|
|
(Private->HobList.HandoffInformationTable->BootMode != BOOT_ON_S3_RESUME)) {
|
2007-09-28 10:14:30 +02:00
|
|
|
//
|
|
|
|
// If memory is installed, perform the shadow operations
|
|
|
|
//
|
|
|
|
Status = LoadAndRelocatePeCoffImage (
|
|
|
|
Pe32Data,
|
|
|
|
&ImageAddress,
|
|
|
|
&ImageSize,
|
|
|
|
&ImageEntryPoint
|
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2007-09-28 10:14:30 +02:00
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return Status;
|
2007-09-24 13:38:43 +02:00
|
|
|
}
|
2007-09-28 10:14:30 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Got the entry point from the loaded Pe32Data
|
|
|
|
//
|
|
|
|
Pe32Data = (VOID *) ((UINTN) ImageAddress);
|
|
|
|
*EntryPoint = ImageEntryPoint;
|
2007-09-24 13:38:43 +02:00
|
|
|
} else {
|
2007-09-28 10:14:30 +02:00
|
|
|
//
|
|
|
|
// Retrieve the entry point from the PE/COFF or TE image header
|
|
|
|
//
|
|
|
|
ImageAddress = (EFI_PHYSICAL_ADDRESS) (UINTN) Pe32Data;
|
|
|
|
Status = PeCoffLoaderGetEntryPoint (Pe32Data, &EntryPointArg);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return Status;
|
2007-07-04 09:51:48 +02:00
|
|
|
}
|
2007-09-28 10:14:30 +02:00
|
|
|
*EntryPoint = (EFI_PHYSICAL_ADDRESS) (UINTN) EntryPointArg;
|
2007-07-04 09:51:48 +02:00
|
|
|
}
|
2007-09-28 10:14:30 +02:00
|
|
|
|
|
|
|
Machine = PeCoffLoaderGetMachineType (Pe32Data);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
if (!EFI_IMAGE_MACHINE_TYPE_SUPPORTED (Machine)) {
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
2007-09-24 13:38:43 +02:00
|
|
|
if (ImageAddressArg != NULL) {
|
|
|
|
*ImageAddressArg = ImageAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ImageSizeArg != NULL) {
|
|
|
|
*ImageSizeArg = ImageSize;
|
|
|
|
}
|
|
|
|
|
2007-07-04 09:51:48 +02:00
|
|
|
DEBUG_CODE_BEGIN ();
|
2007-09-28 10:14:30 +02:00
|
|
|
CHAR8 *AsciiString;
|
|
|
|
CHAR8 AsciiBuffer[512];
|
|
|
|
INT32 Index;
|
|
|
|
INT32 Index1;
|
2007-10-31 12:46:42 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// Print debug message: Loading PEIM at 0x12345678 EntryPoint=0x12345688 Driver.efi
|
|
|
|
//
|
|
|
|
if (Machine != IMAGE_FILE_MACHINE_IA64) {
|
2008-08-02 00:41:20 +02:00
|
|
|
DEBUG ((EFI_D_INFO | EFI_D_LOAD, "Loading PEIM at 0x%11p EntryPoint=0x%11p ", (VOID *)(UINTN)ImageAddress, (VOID *)(UINTN)*EntryPoint));
|
2007-10-31 12:46:42 +01:00
|
|
|
} else {
|
|
|
|
//
|
|
|
|
// For IPF Image, the real entry point should be print.
|
|
|
|
//
|
2008-08-02 00:41:20 +02:00
|
|
|
DEBUG ((EFI_D_INFO | EFI_D_LOAD, "Loading PEIM at 0x%11p EntryPoint=0x%11p ", (VOID *)(UINTN)ImageAddress, (VOID *)(UINTN)(*(UINT64 *)(UINTN)*EntryPoint)));
|
2007-10-31 12:46:42 +01:00
|
|
|
}
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2007-10-31 12:46:42 +01:00
|
|
|
//
|
|
|
|
// Print Module Name by PeImage PDB file name.
|
|
|
|
//
|
2007-09-28 10:14:30 +02:00
|
|
|
AsciiString = PeCoffLoaderGetPdbPointer (Pe32Data);
|
|
|
|
|
|
|
|
if (AsciiString != NULL) {
|
2007-09-28 12:11:36 +02:00
|
|
|
for (Index = (INT32) AsciiStrLen (AsciiString) - 1; Index >= 0; Index --) {
|
2007-09-28 10:14:30 +02:00
|
|
|
if (AsciiString[Index] == '\\') {
|
|
|
|
break;
|
|
|
|
}
|
2007-07-04 09:51:48 +02:00
|
|
|
}
|
|
|
|
|
2007-09-28 10:14:30 +02:00
|
|
|
if (Index != 0) {
|
|
|
|
for (Index1 = 0; AsciiString[Index + 1 + Index1] != '.'; Index1 ++) {
|
|
|
|
AsciiBuffer [Index1] = AsciiString[Index + 1 + Index1];
|
2007-07-04 09:51:48 +02:00
|
|
|
}
|
2007-09-28 10:14:30 +02:00
|
|
|
AsciiBuffer [Index1] = '\0';
|
|
|
|
DEBUG ((EFI_D_INFO | EFI_D_LOAD, "%a.efi", AsciiBuffer));
|
2007-07-04 09:51:48 +02:00
|
|
|
}
|
|
|
|
}
|
2007-09-28 10:14:30 +02:00
|
|
|
|
2007-07-04 09:51:48 +02:00
|
|
|
DEBUG_CODE_END ();
|
|
|
|
|
|
|
|
DEBUG ((EFI_D_INFO | EFI_D_LOAD, "\n"));
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
2007-09-24 13:38:43 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
|
|
|
The wrapper function of PeiLoadImageLoadImage().
|
|
|
|
|
|
|
|
@param This - Pointer to EFI_PEI_LOAD_FILE_PPI.
|
|
|
|
@param FileHandle - Pointer to the FFS file header of the image.
|
|
|
|
@param ImageAddressArg - Pointer to PE/TE image.
|
|
|
|
@param ImageSizeArg - Size of PE/TE image.
|
|
|
|
@param EntryPoint - Pointer to entry point of specified image file for output.
|
|
|
|
@param AuthenticationState - Pointer to attestation authentication state of image.
|
|
|
|
|
|
|
|
@return Status of PeiLoadImageLoadImage().
|
|
|
|
|
|
|
|
**/
|
2007-09-24 13:38:43 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiLoadImageLoadImageWrapper (
|
|
|
|
IN CONST EFI_PEI_LOAD_FILE_PPI *This,
|
|
|
|
IN EFI_PEI_FILE_HANDLE FileHandle,
|
|
|
|
OUT EFI_PHYSICAL_ADDRESS *ImageAddressArg, OPTIONAL
|
|
|
|
OUT UINT64 *ImageSizeArg, OPTIONAL
|
|
|
|
OUT EFI_PHYSICAL_ADDRESS *EntryPoint,
|
|
|
|
OUT UINT32 *AuthenticationState
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return PeiLoadImageLoadImage (
|
|
|
|
GetPeiServicesTablePointer (),
|
|
|
|
FileHandle,
|
|
|
|
ImageAddressArg,
|
|
|
|
ImageSizeArg,
|
|
|
|
EntryPoint,
|
|
|
|
AuthenticationState
|
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
}
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
|
|
|
|
|
|
|
Routine for load image file.
|
|
|
|
|
|
|
|
|
|
|
|
@param PeiServices - The PEI core services table.
|
|
|
|
@param FileHandle - Pointer to the FFS file header of the image.
|
|
|
|
@param EntryPoint - Pointer to entry point of specified image file for output.
|
|
|
|
@param AuthenticationState - Pointer to attestation authentication state of image.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS - Image is successfully loaded.
|
|
|
|
@retval EFI_NOT_FOUND - Fail to locate necessary PPI
|
|
|
|
@retval Others - Fail to load file.
|
|
|
|
|
|
|
|
**/
|
2007-09-24 13:38:43 +02:00
|
|
|
EFI_STATUS
|
|
|
|
PeiLoadImage (
|
|
|
|
IN EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN EFI_PEI_FILE_HANDLE FileHandle,
|
|
|
|
OUT EFI_PHYSICAL_ADDRESS *EntryPoint,
|
|
|
|
OUT UINT32 *AuthenticationState
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS PpiStatus;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
UINTN Index;
|
|
|
|
EFI_PEI_LOAD_FILE_PPI *LoadFile;
|
|
|
|
EFI_PHYSICAL_ADDRESS ImageAddress;
|
|
|
|
UINT64 ImageSize;
|
|
|
|
|
|
|
|
//
|
|
|
|
// If any instances of PEI_LOAD_FILE_PPI are installed, they are called.
|
|
|
|
// one at a time, until one reports EFI_SUCCESS.
|
|
|
|
//
|
|
|
|
Index = 0;
|
|
|
|
do {
|
|
|
|
PpiStatus = PeiServicesLocatePpi (
|
|
|
|
&gEfiPeiLoadFilePpiGuid,
|
|
|
|
Index,
|
|
|
|
NULL,
|
|
|
|
(VOID **)&LoadFile
|
|
|
|
);
|
|
|
|
if (!EFI_ERROR (PpiStatus)) {
|
|
|
|
Status = LoadFile->LoadFile (
|
|
|
|
LoadFile,
|
|
|
|
FileHandle,
|
|
|
|
&ImageAddress,
|
|
|
|
&ImageSize,
|
|
|
|
EntryPoint,
|
|
|
|
AuthenticationState
|
|
|
|
);
|
|
|
|
if (!EFI_ERROR (Status)) {
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Index++;
|
|
|
|
} while (!EFI_ERROR (PpiStatus));
|
|
|
|
|
|
|
|
//
|
|
|
|
// If no instances reports EFI_SUCCESS, then build-in support for
|
|
|
|
// the PE32+/TE XIP image format is used.
|
|
|
|
//
|
|
|
|
Status = PeiLoadImageLoadImage (
|
|
|
|
PeiServices,
|
|
|
|
FileHandle,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
EntryPoint,
|
|
|
|
AuthenticationState
|
|
|
|
);
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2007-09-28 10:48:41 +02:00
|
|
|
Install Pei Load File PPI.
|
2007-09-24 13:38:43 +02:00
|
|
|
|
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@param PrivateData - Pointer to PEI_CORE_INSTANCE.
|
|
|
|
@param OldCoreData - Pointer to PEI_CORE_INSTANCE.
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
InitializeImageServices (
|
|
|
|
IN PEI_CORE_INSTANCE *PrivateData,
|
|
|
|
IN PEI_CORE_INSTANCE *OldCoreData
|
|
|
|
)
|
2007-09-24 13:38:43 +02:00
|
|
|
{
|
|
|
|
if (OldCoreData == NULL) {
|
|
|
|
//
|
|
|
|
// The first time we are XIP (running from FLASH). We need to remember the
|
|
|
|
// FLASH address so we can reinstall the memory version that runs faster
|
|
|
|
//
|
|
|
|
PrivateData->XipLoadFile = &gPpiLoadFilePpiList;
|
|
|
|
PeiServicesInstallPpi (PrivateData->XipLoadFile);
|
|
|
|
} else {
|
|
|
|
//
|
|
|
|
// 2nd time we are running from memory so replace the XIP version with the
|
|
|
|
// new memory version.
|
|
|
|
//
|
|
|
|
PeiServicesReInstallPpi (PrivateData->XipLoadFile, &gPpiLoadFilePpiList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|