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