]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Library/PeCoffLib.h
Fix file headers and a few comments
[mirror_edk2.git] / MdePkg / Include / Library / PeCoffLib.h
CommitLineData
fb3df220 1/** @file\r
50a64e5b 2 Provides services to load and relocate a PE/COFF image.\r
fb3df220 3\r
badcbfb2 4 The PE/COFF Loader Library abstracts the implementation of a PE/COFF loader for\r
1a2f870c 5 IA-32, x86, IPF, and EBC processor types. The library functions are memory-based \r
badcbfb2 6 and can be ported easily to any environment.\r
7 \r
ef05ac5f 8Copyright (c) 2006 - 2008, Intel Corporation<BR> \r
8992ce06 9Portions copyright (c) 2008-2009 Apple Inc. All rights reserved.<BR>\r
50a64e5b 10All rights reserved. This program and the accompanying materials \r
11are licensed and made available under the terms and conditions of the BSD License \r
12which accompanies this distribution. The full text of the license may be found at \r
13http://opensource.org/licenses/bsd-license.php \r
fb3df220 14\r
50a64e5b 15THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
16WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
fb3df220 17\r
fb3df220 18**/\r
19\r
20#ifndef __BASE_PE_COFF_LIB_H__\r
21#define __BASE_PE_COFF_LIB_H__\r
22\r
d8dcb666 23#include <IndustryStandard/PeImage.h>\r
fb3df220 24//\r
25// Return status codes from the PE/COFF Loader services\r
fb3df220 26//\r
27#define IMAGE_ERROR_SUCCESS 0\r
28#define IMAGE_ERROR_IMAGE_READ 1 \r
29#define IMAGE_ERROR_INVALID_PE_HEADER_SIGNATURE 2\r
30#define IMAGE_ERROR_INVALID_MACHINE_TYPE 3\r
31#define IMAGE_ERROR_INVALID_SUBSYSTEM 4\r
32#define IMAGE_ERROR_INVALID_IMAGE_ADDRESS 5\r
33#define IMAGE_ERROR_INVALID_IMAGE_SIZE 6\r
34#define IMAGE_ERROR_INVALID_SECTION_ALIGNMENT 7\r
35#define IMAGE_ERROR_SECTION_NOT_LOADED 8\r
36#define IMAGE_ERROR_FAILED_RELOCATION 9\r
37#define IMAGE_ERROR_FAILED_ICACHE_FLUSH 10\r
38\r
badcbfb2 39/**\r
40 Reads contents of a PE/COFF image.\r
41\r
42 A function of this type reads contents of the PE/COFF image specified by FileHandle. The read \r
43 operation copies ReadSize bytes from the PE/COFF image starting at byte offset FileOffset into \r
44 the buffer specified by Buffer. The size of the buffer actually read is returned in ReadSize. \r
45 If FileOffset specifies an offset past the end of the PE/COFF image, a ReadSize of 0 is returned.\r
46 A function of this type must be registered in the ImageRead field of a PE_COFF_LOADER_IMAGE_CONTEXT \r
47 structure for the PE/COFF Loader Library service to function correctly. This function abstracts access \r
48 to a PE/COFF image so it can be implemented in an environment specific manner. For example, SEC and PEI \r
49 environments may access memory directly to read the contents of a PE/COFF image, and DXE or UEFI \r
50 environments may require protocol services to read the contents of PE/COFF image \r
51 stored on FLASH, disk, or network devices.\r
52 \r
53 If FileHandle is not a valid handle, then ASSERT().\r
54 If ReadSize is NULL, then ASSERT().\r
55 If Buffer is NULL, then ASSERT().\r
56\r
57 @param FileHandle Pointer to the file handle to read the PE/COFF image.\r
58 @param FileOffset Offset into the PE/COFF image to begin the read operation.\r
59 @param ReadSize On input, the size in bytes of the requested read operation. \r
60 On output, the number of bytes actually read.\r
61 @param Buffer Output buffer that contains the data read from the PE/COFF image.\r
62 \r
63 @retval RETURN_SUCCESS The specified portion of the PE/COFF image was read and the size \r
64 @retval RETURN_DEVICE_ERROR The specified portion of the PE/COFF image could not be read due \r
65 to a device error.\r
66\r
67**/\r
146332ae 68typedef\r
69RETURN_STATUS\r
a5c1c592 70(EFIAPI *PE_COFF_LOADER_READ_FILE)(\r
146332ae 71 IN VOID *FileHandle,\r
72 IN UINTN FileOffset,\r
73 IN OUT UINTN *ReadSize,\r
74 OUT VOID *Buffer\r
75 );\r
76\r
f6d7003d 77///\r
78/// Context structure used while PE/COFF image is being loaded and relocated\r
79///\r
146332ae 80typedef struct {\r
f6d7003d 81 ///\r
82 /// Is set by PeCoffLoaderGetImageInfo() to the ImageBase in the PE/COFF header\r
83 ///\r
146332ae 84 PHYSICAL_ADDRESS ImageAddress;\r
f6d7003d 85 ///\r
86 /// Is set by PeCoffLoaderGetImageInfo() to the SizeOfImage in the PE/COFF header.\r
87 /// Image size includes the size of Debug Entry if it is present.\r
88 ///\r
146332ae 89 UINT64 ImageSize;\r
f6d7003d 90 ///\r
91 /// Is set to zero by PeCoffLoaderGetImageInfo(). If DestinationAddress is non zero,\r
92 /// PeCoffLoaderRelocateImage() will relocate the image using this base address.\r
93 /// If the DestinationAddress is zero, the ImageAddress will be used as the base\r
94 /// address of relocation.\r
95 ///\r
146332ae 96 PHYSICAL_ADDRESS DestinationAddress;\r
f6d7003d 97 ///\r
98 /// PeCoffLoaderLoadImage() sets EntryPoint to to the entry point of the PE/COFF image.\r
99 ///\r
146332ae 100 PHYSICAL_ADDRESS EntryPoint;\r
f6d7003d 101 ///\r
102 /// Passed in by the caller to PeCoffLoaderGetImageInfo() and PeCoffLoaderLoadImage()\r
103 /// to abstract accessing the image from the library.\r
104 ///\r
146332ae 105 PE_COFF_LOADER_READ_FILE ImageRead;\r
f6d7003d 106 ///\r
107 /// Used as the FileHandle passed into the ImageRead function when it's called.\r
108 ///\r
146332ae 109 VOID *Handle;\r
f6d7003d 110 ///\r
111 /// Caller allocated buffer of size FixupDataSize that can be optionally allocated\r
112 /// prior to calling PeCoffLoaderRelocateImage(). \r
113 /// This buffer is filled with the information used to fix up the image. \r
114 /// The fixups have been applied to the image and this entry is just for information.\r
115 ///\r
146332ae 116 VOID *FixupData;\r
f6d7003d 117 ///\r
118 /// Is set by PeCoffLoaderGetImageInfo() to the Section Alignment in the PE/COFF header\r
3ecdcd11 119 /// If the image is a TE image, then this field is set to 0.\r
f6d7003d 120 ///\r
146332ae 121 UINT32 SectionAlignment;\r
f6d7003d 122 ///\r
123 /// Set by PeCoffLoaderGetImageInfo() to offset to the PE/COFF header.\r
124 /// If the PE/COFF image does not start with a DOS header, this value is zero; \r
125 /// otherwise, it's the offset to the PE/COFF header.\r
126 ///\r
146332ae 127 UINT32 PeCoffHeaderOffset;\r
f6d7003d 128 ///\r
129 /// Set by PeCoffLoaderGetImageInfo() to the Relative Virtual Address of the debug directory\r
130 /// if it exists in the image\r
131 ///\r
146332ae 132 UINT32 DebugDirectoryEntryRva;\r
f6d7003d 133 ///\r
134 /// Set by PeCoffLoaderLoadImage() to CodeView area of the PE/COFF Debug directory.\r
135 ///\r
146332ae 136 VOID *CodeView;\r
f6d7003d 137 ///\r
138 /// Set by PeCoffLoaderLoadImage() to point to the PDB entry contained in the CodeView area.\r
139 /// The PdbPointer points to the filename of the PDB file used for source-level debug of \r
140 /// the image by a debugger.\r
141 ///\r
146332ae 142 CHAR8 *PdbPointer;\r
f6d7003d 143 ///\r
144 /// Is set by PeCoffLoaderGetImageInfo() to the Section Alignment in the PE/COFF header.\r
145 ///\r
146332ae 146 UINTN SizeOfHeaders;\r
f6d7003d 147 ///\r
148 /// Not used by this library class. Other library classes that layer on top of this library\r
149 /// class fill in this value as part of their GetImageInfo call. \r
150 /// This allows the caller of the library to know what type of memory needs to be allocated\r
151 /// to load and relocate the image.\r
152 ///\r
146332ae 153 UINT32 ImageCodeMemoryType;\r
f6d7003d 154 ///\r
155 /// Not used by this library class. Other library classes that layer on top of this library \r
156 /// class fill in this value as part of their GetImageInfo call.\r
157 /// This allows the caller of the library to know what type of memory needs to be allocated\r
158 /// to load and relocate the image\r
159 ///\r
146332ae 160 UINT32 ImageDataMemoryType;\r
f6d7003d 161 ///\r
162 /// Set by any of the library functions if they encounter an error. \r
163 ///\r
146332ae 164 UINT32 ImageError;\r
f6d7003d 165 ///\r
166 /// Set by PeCoffLoaderLoadImage() to indicate the size of FixupData that the caller must\r
167 /// allocate before calling PeCoffLoaderRelocateImage()\r
168 ///\r
146332ae 169 UINTN FixupDataSize;\r
f6d7003d 170 ///\r
171 /// Set by PeCoffLoaderGetImageInfo() to the machine type stored in the PE/COFF header\r
172 ///\r
146332ae 173 UINT16 Machine;\r
f6d7003d 174 ///\r
175 /// Set by PeCoffLoaderGetImageInfo() to the subsystem type stored in the PE/COFF header.\r
176 ///\r
146332ae 177 UINT16 ImageType;\r
f6d7003d 178 ///\r
179 /// Set by PeCoffLoaderGetImageInfo() to TRUE if the PE/COFF image does not contain\r
180 /// relocation information.\r
181 ///\r
146332ae 182 BOOLEAN RelocationsStripped;\r
f6d7003d 183 ///\r
184 /// Set by PeCoffLoaderGetImageInfo() to TRUE if the image is a TE image. \r
185 /// For a definition of the TE Image format, see the Platform Initialization Pre-EFI\r
186 /// Initialization Core Interface Specification.\r
187 ///\r
146332ae 188 BOOLEAN IsTeImage;\r
b4500f6e 189 ///\r
190 /// Set by PeCoffLoaderLoadImage() to the HII resource offset\r
191 /// if the image contains a custom PE/COFF resource with the type 'HII';\r
192 /// otherwise, the entry remains to be 0.\r
193 ///\r
194 PHYSICAL_ADDRESS HiiResourceData;\r
ebd04fc2 195 ///\r
196 /// Private storage for implementation specific data. \r
197 ///\r
198 UINT64 Context; \r
146332ae 199} PE_COFF_LOADER_IMAGE_CONTEXT;\r
fb3df220 200\r
201/**\r
202 Retrieves information about a PE/COFF image.\r
203\r
3ecdcd11
LG
204 Computes the PeCoffHeaderOffset, IsTeImage, ImageType, ImageAddress, ImageSize, \r
205 DestinationAddress, RelocationsStripped, SectionAlignment, SizeOfHeaders, and \r
206 DebugDirectoryEntryRva fields of the ImageContext structure. \r
207 If ImageContext is NULL, then return RETURN_INVALID_PARAMETER. \r
208 If the PE/COFF image accessed through the ImageRead service in the ImageContext \r
209 structure is not a supported PE/COFF image type, then return RETURN_UNSUPPORTED. \r
210 If any errors occur while computing the fields of ImageContext, \r
211 then the error status is returned in the ImageError field of ImageContext. \r
212 If the image is a TE image, then SectionAlignment is set to 0.\r
badcbfb2 213 The ImageRead and Handle fields of ImageContext structure must be valid prior \r
214 to invoking this service.\r
fb3df220 215\r
216 @param ImageContext Pointer to the image context structure that describes the PE/COFF\r
217 image that needs to be examined by this function.\r
218\r
219 @retval RETURN_SUCCESS The information on the PE/COFF image was collected.\r
220 @retval RETURN_INVALID_PARAMETER ImageContext is NULL.\r
221 @retval RETURN_UNSUPPORTED The PE/COFF image is not supported.\r
222\r
223**/\r
224RETURN_STATUS\r
225EFIAPI\r
226PeCoffLoaderGetImageInfo (\r
227 IN OUT PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext\r
ed66e1bc 228 );\r
fb3df220 229\r
230/**\r
231 Applies relocation fixups to a PE/COFF image that was loaded with PeCoffLoaderLoadImage().\r
232\r
233 If the DestinationAddress field of ImageContext is 0, then use the ImageAddress field of\r
234 ImageContext as the relocation base address. Otherwise, use the DestinationAddress field\r
235 of ImageContext as the relocation base address. The caller must allocate the relocation\r
badcbfb2 236 fixup log buffer and fill in the FixupData field of ImageContext prior to calling this function.\r
237 \r
1a2f870c 238 The ImageRead, Handle, PeCoffHeaderOffset, IsTeImage, Machine, ImageType, ImageAddress, \r
badcbfb2 239 ImageSize, DestinationAddress, RelocationsStripped, SectionAlignment, SizeOfHeaders, \r
240 DebugDirectoryEntryRva, EntryPoint, FixupDataSize, CodeView, PdbPointer, and FixupData of \r
241 the ImageContext structure must be valid prior to invoking this service.\r
242 \r
fb3df220 243 If ImageContext is NULL, then ASSERT().\r
244\r
8d579453 245 Note that if the platform does not maintain coherency between the instruction cache(s) and the data\r
246 cache(s) in hardware, then the caller is responsible for performing cache maintenance operations\r
247 prior to transferring control to a PE/COFF image that is loaded using this library.\r
248\r
fb3df220 249 @param ImageContext Pointer to the image context structure that describes the PE/COFF\r
250 image that is being relocated.\r
251\r
252 @retval RETURN_SUCCESS The PE/COFF image was relocated.\r
253 Extended status information is in the ImageError field of ImageContext.\r
254 @retval RETURN_LOAD_ERROR The image in not a valid PE/COFF image.\r
255 Extended status information is in the ImageError field of ImageContext.\r
256 @retval RETURN_UNSUPPORTED A relocation record type is not supported.\r
257 Extended status information is in the ImageError field of ImageContext.\r
258\r
259**/\r
260RETURN_STATUS\r
261EFIAPI\r
262PeCoffLoaderRelocateImage (\r
263 IN OUT PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext\r
ed66e1bc 264 );\r
fb3df220 265\r
266/**\r
267 Loads a PE/COFF image into memory.\r
268\r
269 Loads the PE/COFF image accessed through the ImageRead service of ImageContext into the buffer\r
270 specified by the ImageAddress and ImageSize fields of ImageContext. The caller must allocate\r
271 the load buffer and fill in the ImageAddress and ImageSize fields prior to calling this function.\r
b4500f6e 272 The EntryPoint, FixupDataSize, CodeView, PdbPointer and HiiResourceData fields of ImageContext are computed.\r
1a2f870c 273 The ImageRead, Handle, PeCoffHeaderOffset, IsTeImage, Machine, ImageType, ImageAddress, ImageSize, \r
badcbfb2 274 DestinationAddress, RelocationsStripped, SectionAlignment, SizeOfHeaders, and DebugDirectoryEntryRva \r
275 fields of the ImageContext structure must be valid prior to invoking this service.\r
276 \r
fb3df220 277 If ImageContext is NULL, then ASSERT().\r
278\r
8d579453 279 Note that if the platform does not maintain coherency between the instruction cache(s) and the data\r
280 cache(s) in hardware, then the caller is responsible for performing cache maintenance operations\r
281 prior to transferring control to a PE/COFF image that is loaded using this library.\r
282\r
fb3df220 283 @param ImageContext Pointer to the image context structure that describes the PE/COFF\r
284 image that is being loaded.\r
285\r
286 @retval RETURN_SUCCESS The PE/COFF image was loaded into the buffer specified by\r
287 the ImageAddress and ImageSize fields of ImageContext.\r
288 Extended status information is in the ImageError field of ImageContext.\r
289 @retval RETURN_BUFFER_TOO_SMALL The caller did not provide a large enough buffer.\r
290 Extended status information is in the ImageError field of ImageContext.\r
291 @retval RETURN_LOAD_ERROR The PE/COFF image is an EFI Runtime image with no relocations.\r
292 Extended status information is in the ImageError field of ImageContext.\r
293 @retval RETURN_INVALID_PARAMETER The image address is invalid.\r
294 Extended status information is in the ImageError field of ImageContext.\r
295\r
296**/\r
297RETURN_STATUS\r
298EFIAPI\r
299PeCoffLoaderLoadImage (\r
300 IN OUT PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext\r
ed66e1bc 301 );\r
fb3df220 302\r
303\r
304/**\r
badcbfb2 305 Reads contents of a PE/COFF image from a buffer in system memory.\r
306 \r
307 This is the default implementation of a PE_COFF_LOADER_READ_FILE function \r
308 that assumes FileHandle pointer to the beginning of a PE/COFF image. \r
309 This function reads contents of the PE/COFF image that starts at the system memory \r
1a2f870c 310 address specified by FileHandle. The read operation copies ReadSize bytes from the \r
badcbfb2 311 PE/COFF image starting at byte offset FileOffset into the buffer specified by Buffer. \r
312 The size of the buffer actually read is returned in ReadSize.\r
313 \r
314 If FileHandle is NULL, then ASSERT().\r
315 If ReadSize is NULL, then ASSERT().\r
316 If Buffer is NULL, then ASSERT().\r
fb3df220 317\r
badcbfb2 318 @param FileHandle Pointer to base of the input stream\r
319 @param FileOffset Offset into the PE/COFF image to begin the read operation.\r
320 @param ReadSize On input, the size in bytes of the requested read operation. \r
321 On output, the number of bytes actually read.\r
322 @param Buffer Output buffer that contains the data read from the PE/COFF image.\r
fb3df220 323\r
324 @retval RETURN_SUCCESS Data is read from FileOffset from the Handle into \r
325 the buffer.\r
326**/\r
327RETURN_STATUS\r
328EFIAPI\r
329PeCoffLoaderImageReadFromMemory (\r
330 IN VOID *FileHandle,\r
331 IN UINTN FileOffset,\r
332 IN OUT UINTN *ReadSize,\r
333 OUT VOID *Buffer\r
ed66e1bc 334 );\r
fb3df220 335\r
336\r
337/**\r
338 Reapply fixups on a fixed up PE32/PE32+ image to allow virutal calling at EFI\r
339 runtime. \r
340 \r
9833a9bb
LG
341 This function reapplies relocation fixups to the PE/COFF image specified by ImageBase \r
342 and ImageSize so the image will execute correctly when the PE/COFF image is mapped \r
1a2f870c 343 to the address specified by VirtualImageBase. RelocationData must be identical \r
9833a9bb
LG
344 to the FiuxupData buffer from the PE_COFF_LOADER_IMAGE_CONTEXT structure \r
345 after this PE/COFF image was relocated with PeCoffLoaderRelocateImage().\r
fb3df220 346\r
8d579453 347 Note that if the platform does not maintain coherency between the instruction cache(s) and the data\r
348 cache(s) in hardware, then the caller is responsible for performing cache maintenance operations\r
349 prior to transferring control to a PE/COFF image that is loaded using this library.\r
350\r
badcbfb2 351 @param ImageBase Base address of a PE/COFF image that has been loaded \r
352 and relocated into system memory.\r
353 @param VirtImageBase The request virtual address that the PE/COFF image is to\r
354 be fixed up for.\r
355 @param ImageSize The size, in bytes, of the PE/COFF image.\r
356 @param RelocationData A pointer to the relocation data that was collected when the PE/COFF \r
357 image was relocated using PeCoffLoaderRelocateImage().\r
fb3df220 358 \r
359**/\r
360VOID\r
361EFIAPI\r
362PeCoffLoaderRelocateImageForRuntime (\r
363 IN PHYSICAL_ADDRESS ImageBase,\r
364 IN PHYSICAL_ADDRESS VirtImageBase,\r
365 IN UINTN ImageSize,\r
366 IN VOID *RelocationData\r
ed66e1bc 367 );\r
fb3df220 368\r
3d7b0992
LG
369/**\r
370 Unloads a loaded PE/COFF image from memory and releases its taken resource.\r
badcbfb2 371 Releases any environment specific resources that were allocated when the image \r
372 specified by ImageContext was loaded using PeCoffLoaderLoadImage(). \r
373 \r
3d7b0992
LG
374 For NT32 emulator, the PE/COFF image loaded by system needs to release.\r
375 For real platform, the PE/COFF image loaded by Core doesn't needs to be unloaded, \r
376 this function can simply return RETURN_SUCCESS.\r
badcbfb2 377 \r
378 If ImageContext is NULL, then ASSERT().\r
379 \r
3d7b0992
LG
380 @param ImageContext Pointer to the image context structure that describes the PE/COFF\r
381 image to be unloaded.\r
fb3df220 382\r
3d7b0992
LG
383 @retval RETURN_SUCCESS The PE/COFF image was unloaded successfully.\r
384**/\r
385RETURN_STATUS\r
386EFIAPI\r
387PeCoffLoaderUnloadImage (\r
0465a73e 388 IN OUT PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext\r
ed66e1bc 389 );\r
fb3df220 390#endif\r