]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Include/Library/PeCoffLib.h
synchronize the files with the MDE_Library_Spec
[mirror_edk2.git] / MdePkg / Include / Library / PeCoffLib.h
index 8e899e616dd451423d3b6dbc1de2e3c52151b8e5..edbdc2fc323a14f7638eeb6e1de08ccdb0043c48 100644 (file)
@@ -1,6 +1,10 @@
 /** @file\r
   Provides services to load and relocate a PE/COFF image.\r
 \r
+  The PE/COFF Loader Library abstracts the implementation of a PE/COFF loader for\r
+  IA-32, x86, IPF, and EBC processor types. The library functions are memory based \r
+  and can be ported easily to any environment.\r
+  \r
 Copyright (c) 2006 - 2007, Intel Corporation                                                         \r
 All rights reserved. This program and the accompanying materials                          \r
 are licensed and made available under the terms and conditions of the BSD License         \r
@@ -31,9 +35,35 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 #define IMAGE_ERROR_FAILED_RELOCATION            9\r
 #define IMAGE_ERROR_FAILED_ICACHE_FLUSH          10\r
 \r
-//\r
-// PE/COFF Loader Read Function passed in by caller\r
-//\r
+/**\r
+  Reads contents of a PE/COFF image.\r
+\r
+  A function of this type reads contents of the PE/COFF image specified by FileHandle. The read \r
+  operation copies ReadSize bytes from the PE/COFF image starting at byte offset FileOffset into \r
+  the buffer specified by Buffer. The size of the buffer actually read is returned in ReadSize.  \r
+  If FileOffset specifies an offset past the end of the PE/COFF image, a ReadSize of 0 is returned.\r
+  A function of this type must be registered in the ImageRead field of a PE_COFF_LOADER_IMAGE_CONTEXT \r
+  structure for the PE/COFF Loader Library service to function correctly.  This function abstracts access \r
+  to a PE/COFF image so it can be implemented in an environment specific manner.  For example, SEC and PEI \r
+  environments may access memory directly to read the contents of a PE/COFF image, and DXE or UEFI \r
+  environments may require protocol services to read the contents of PE/COFF image \r
+  stored on FLASH, disk, or network devices.\r
+  \r
+  If FileHandle is not a valid handle, then ASSERT().\r
+  If ReadSize is NULL, then ASSERT().\r
+  If Buffer is NULL, then ASSERT().\r
+\r
+  @param  FileHandle      Pointer to the file handle to read the PE/COFF image.\r
+  @param  FileOffset      Offset into the PE/COFF image to begin the read operation.\r
+  @param  ReadSize        On input, the size in bytes of the requested read operation.  \r
+                          On output, the number of bytes actually read.\r
+  @param  Buffer          Output buffer that contains the data read from the PE/COFF image.\r
+  \r
+  @retval RETURN_SUCCESS            The specified portion of the PE/COFF image was read and the size \r
+  @retval RETURN_DEVICE_ERROR       The specified portion of the PE/COFF image could not be read due \r
+                                    to a device error.\r
+\r
+**/\r
 typedef\r
 RETURN_STATUS\r
 (EFIAPI *PE_COFF_LOADER_READ_FILE) (\r
@@ -169,6 +199,8 @@ typedef struct {
   If any errors occur while computing the fields of ImageContext, \r
   then the error status is returned in the ImageError field of ImageContext.  \r
   If the image is a TE image, then SectionAlignment is set to 0.\r
+  The ImageRead and Handle fields of ImageContext structure must be valid prior \r
+  to invoking this service.\r
 \r
   @param  ImageContext              Pointer to the image context structure that describes the PE/COFF\r
                                     image that needs to be examined by this function.\r
@@ -190,7 +222,13 @@ PeCoffLoaderGetImageInfo (
   If the DestinationAddress field of ImageContext is 0, then use the ImageAddress field of\r
   ImageContext as the relocation base address.  Otherwise, use the DestinationAddress field\r
   of ImageContext as the relocation base address.  The caller must allocate the relocation\r
-  fixup log buffer and fill in the FixupData field of ImageContext prior to calling this function.  \r
+  fixup log buffer and fill in the FixupData field of ImageContext prior to calling this function.\r
+  \r
+  The ImageRead, Handle, PeCoffHeaderOffset,  IsTeImage, Machine, ImageType, ImageAddress, \r
+  ImageSize, DestinationAddress, RelocationsStripped, SectionAlignment, SizeOfHeaders, \r
+  DebugDirectoryEntryRva, EntryPoint, FixupDataSize, CodeView, PdbPointer, and FixupData of \r
+  the ImageContext structure must be valid prior to invoking this service.\r
+    \r
   If ImageContext is NULL, then ASSERT().\r
 \r
   @param  ImageContext        Pointer to the image context structure that describes the PE/COFF\r
@@ -217,6 +255,10 @@ PeCoffLoaderRelocateImage (
   specified by the ImageAddress and ImageSize fields of ImageContext.  The caller must allocate\r
   the load buffer and fill in the ImageAddress and ImageSize fields prior to calling this function.\r
   The EntryPoint, FixupDataSize, CodeView, and PdbPointer fields of ImageContext are computed.\r
+  The ImageRead, Handle, PeCoffHeaderOffset,  IsTeImage,  Machine, ImageType, ImageAddress, ImageSize, \r
+  DestinationAddress, RelocationsStripped, SectionAlignment, SizeOfHeaders, and DebugDirectoryEntryRva \r
+  fields of the ImageContext structure must be valid prior to invoking this service.\r
+  \r
   If ImageContext is NULL, then ASSERT().\r
 \r
   @param  ImageContext              Pointer to the image context structure that describes the PE/COFF\r
@@ -241,13 +283,24 @@ PeCoffLoaderLoadImage (
 \r
 \r
 /**\r
-  ImageRead function that operates on a memory buffer whos base is passed into\r
-  FileHandle. \r
+  Reads contents of a PE/COFF image from a buffer in system memory.\r
+   \r
+  This is the default implementation of a PE_COFF_LOADER_READ_FILE function \r
+  that assumes FileHandle pointer to the beginning of a PE/COFF image.   \r
+  This function reads contents of the PE/COFF image that starts at the system memory \r
+  address specified by FileHandle.  The read operation copies ReadSize bytes from the \r
+  PE/COFF image starting at byte offset FileOffset into the buffer specified by Buffer.  \r
+  The size of the buffer actually read is returned in ReadSize.\r
+  \r
+  If FileHandle is NULL, then ASSERT().\r
+  If ReadSize is NULL, then ASSERT().\r
+  If Buffer is NULL, then ASSERT().\r
 \r
-  @param  FileHandle        Ponter to baes of the input stream\r
-  @param  FileOffset        Offset to the start of the buffer\r
-  @param  ReadSize          Number of bytes to copy into the buffer\r
-  @param  Buffer            Location to place results of read\r
+  @param  FileHandle        Pointer to base of the input stream\r
+  @param  FileOffset        Offset into the PE/COFF image to begin the read operation.\r
+  @param  ReadSize          On input, the size in bytes of the requested read operation.  \r
+                            On output, the number of bytes actually read.\r
+  @param  Buffer            Output buffer that contains the data read from the PE/COFF image.\r
 \r
   @retval RETURN_SUCCESS    Data is read from FileOffset from the Handle into \r
                             the buffer.\r
@@ -270,10 +323,13 @@ PeCoffLoaderImageReadFromMemory (
   the fixups with a virtual mapping.\r
 \r
 \r
-  @param  ImageBase          Base address of relocated image\r
-  @param  VirtImageBase      Virtual mapping for ImageBase\r
-  @param  ImageSize          Size of the image to relocate\r
-  @param  RelocationData     Location to place results of read\r
+  @param  ImageBase          Base address of a PE/COFF image that has been loaded \r
+                             and relocated into system memory.\r
+  @param  VirtImageBase      The request virtual address that the PE/COFF image is to\r
+                             be fixed up for.\r
+  @param  ImageSize          The size, in bytes, of the PE/COFF image.\r
+  @param  RelocationData     A pointer to the relocation data that was collected when the PE/COFF \r
+                             image was relocated using PeCoffLoaderRelocateImage().\r
   \r
 **/\r
 VOID\r
@@ -287,11 +343,15 @@ PeCoffLoaderRelocateImageForRuntime (
 \r
 /**\r
   Unloads a loaded PE/COFF image from memory and releases its taken resource.\r
-   \r
+  Releases any environment specific resources that were allocated when the image \r
+  specified by ImageContext was loaded using PeCoffLoaderLoadImage(). \r
\r
   For NT32 emulator, the PE/COFF image loaded by system needs to release.\r
   For real platform, the PE/COFF image loaded by Core doesn't needs to be unloaded, \r
   this function can simply return RETURN_SUCCESS.\r
-\r
+  \r
+  If ImageContext is NULL, then ASSERT().\r
+  \r
   @param  ImageContext              Pointer to the image context structure that describes the PE/COFF\r
                                     image to be unloaded.\r
 \r