]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPkg/Library/BasePeCoffLib/Ipf/PeCoffLoaderEx.c
Add a temp BasePeCoffLib that deals with MOVT instruction. At this point we don't...
[mirror_edk2.git] / ArmPkg / Library / BasePeCoffLib / Ipf / PeCoffLoaderEx.c
1 /** @file
2 Fixes Intel Itanium(TM) specific relocation types.
3
4 Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php.
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #include "BasePeCoffLibInternals.h"
16
17
18
19 #define EXT_IMM64(Value, Address, Size, InstPos, ValPos) \
20 Value |= (((UINT64)((*(Address) >> InstPos) & (((UINT64)1 << Size) - 1))) << ValPos)
21
22 #define INS_IMM64(Value, Address, Size, InstPos, ValPos) \
23 *(UINT32*)Address = (*(UINT32*)Address & ~(((1 << Size) - 1) << InstPos)) | \
24 ((UINT32)((((UINT64)Value >> ValPos) & (((UINT64)1 << Size) - 1))) << InstPos)
25
26 #define IMM64_IMM7B_INST_WORD_X 3
27 #define IMM64_IMM7B_SIZE_X 7
28 #define IMM64_IMM7B_INST_WORD_POS_X 4
29 #define IMM64_IMM7B_VAL_POS_X 0
30
31 #define IMM64_IMM9D_INST_WORD_X 3
32 #define IMM64_IMM9D_SIZE_X 9
33 #define IMM64_IMM9D_INST_WORD_POS_X 18
34 #define IMM64_IMM9D_VAL_POS_X 7
35
36 #define IMM64_IMM5C_INST_WORD_X 3
37 #define IMM64_IMM5C_SIZE_X 5
38 #define IMM64_IMM5C_INST_WORD_POS_X 13
39 #define IMM64_IMM5C_VAL_POS_X 16
40
41 #define IMM64_IC_INST_WORD_X 3
42 #define IMM64_IC_SIZE_X 1
43 #define IMM64_IC_INST_WORD_POS_X 12
44 #define IMM64_IC_VAL_POS_X 21
45
46 #define IMM64_IMM41A_INST_WORD_X 1
47 #define IMM64_IMM41A_SIZE_X 10
48 #define IMM64_IMM41A_INST_WORD_POS_X 14
49 #define IMM64_IMM41A_VAL_POS_X 22
50
51 #define IMM64_IMM41B_INST_WORD_X 1
52 #define IMM64_IMM41B_SIZE_X 8
53 #define IMM64_IMM41B_INST_WORD_POS_X 24
54 #define IMM64_IMM41B_VAL_POS_X 32
55
56 #define IMM64_IMM41C_INST_WORD_X 2
57 #define IMM64_IMM41C_SIZE_X 23
58 #define IMM64_IMM41C_INST_WORD_POS_X 0
59 #define IMM64_IMM41C_VAL_POS_X 40
60
61 #define IMM64_SIGN_INST_WORD_X 3
62 #define IMM64_SIGN_SIZE_X 1
63 #define IMM64_SIGN_INST_WORD_POS_X 27
64 #define IMM64_SIGN_VAL_POS_X 63
65
66 /**
67 Performs an Itanium-based specific relocation fixup.
68
69 @param Reloc The pointer to the relocation record.
70 @param Fixup The pointer to the address to fix up.
71 @param FixupData The pointer to a buffer to log the fixups.
72 @param Adjust The offset to adjust the fixup.
73
74 @retval RETURN_SUCCESS Succeed to fix the relocation entry.
75 @retval RETURN_UNSUPPOTED Unrecoganized relocation entry.
76
77 **/
78 RETURN_STATUS
79 PeCoffLoaderRelocateImageEx (
80 IN UINT16 **Reloc,
81 IN OUT CHAR8 *Fixup,
82 IN OUT CHAR8 **FixupData,
83 IN UINT64 Adjust
84 )
85 {
86 UINT64 *Fixup64;
87 UINT64 FixupVal;
88
89 switch ((**Reloc) >> 12) {
90 case EFI_IMAGE_REL_BASED_IA64_IMM64:
91
92 //
93 // Align it to bundle address before fixing up the
94 // 64-bit immediate value of the movl instruction.
95 //
96
97 Fixup = (CHAR8 *)((UINTN) Fixup & (UINTN) ~(15));
98 FixupVal = (UINT64)0;
99
100 //
101 // Extract the lower 32 bits of IMM64 from bundle
102 //
103 EXT_IMM64(FixupVal,
104 (UINT32 *)Fixup + IMM64_IMM7B_INST_WORD_X,
105 IMM64_IMM7B_SIZE_X,
106 IMM64_IMM7B_INST_WORD_POS_X,
107 IMM64_IMM7B_VAL_POS_X
108 );
109
110 EXT_IMM64(FixupVal,
111 (UINT32 *)Fixup + IMM64_IMM9D_INST_WORD_X,
112 IMM64_IMM9D_SIZE_X,
113 IMM64_IMM9D_INST_WORD_POS_X,
114 IMM64_IMM9D_VAL_POS_X
115 );
116
117 EXT_IMM64(FixupVal,
118 (UINT32 *)Fixup + IMM64_IMM5C_INST_WORD_X,
119 IMM64_IMM5C_SIZE_X,
120 IMM64_IMM5C_INST_WORD_POS_X,
121 IMM64_IMM5C_VAL_POS_X
122 );
123
124 EXT_IMM64(FixupVal,
125 (UINT32 *)Fixup + IMM64_IC_INST_WORD_X,
126 IMM64_IC_SIZE_X,
127 IMM64_IC_INST_WORD_POS_X,
128 IMM64_IC_VAL_POS_X
129 );
130
131 EXT_IMM64(FixupVal,
132 (UINT32 *)Fixup + IMM64_IMM41A_INST_WORD_X,
133 IMM64_IMM41A_SIZE_X,
134 IMM64_IMM41A_INST_WORD_POS_X,
135 IMM64_IMM41A_VAL_POS_X
136 );
137
138 //
139 // Update 64-bit address
140 //
141 FixupVal += Adjust;
142
143 //
144 // Insert IMM64 into bundle
145 //
146 INS_IMM64(FixupVal,
147 ((UINT32 *)Fixup + IMM64_IMM7B_INST_WORD_X),
148 IMM64_IMM7B_SIZE_X,
149 IMM64_IMM7B_INST_WORD_POS_X,
150 IMM64_IMM7B_VAL_POS_X
151 );
152
153 INS_IMM64(FixupVal,
154 ((UINT32 *)Fixup + IMM64_IMM9D_INST_WORD_X),
155 IMM64_IMM9D_SIZE_X,
156 IMM64_IMM9D_INST_WORD_POS_X,
157 IMM64_IMM9D_VAL_POS_X
158 );
159
160 INS_IMM64(FixupVal,
161 ((UINT32 *)Fixup + IMM64_IMM5C_INST_WORD_X),
162 IMM64_IMM5C_SIZE_X,
163 IMM64_IMM5C_INST_WORD_POS_X,
164 IMM64_IMM5C_VAL_POS_X
165 );
166
167 INS_IMM64(FixupVal,
168 ((UINT32 *)Fixup + IMM64_IC_INST_WORD_X),
169 IMM64_IC_SIZE_X,
170 IMM64_IC_INST_WORD_POS_X,
171 IMM64_IC_VAL_POS_X
172 );
173
174 INS_IMM64(FixupVal,
175 ((UINT32 *)Fixup + IMM64_IMM41A_INST_WORD_X),
176 IMM64_IMM41A_SIZE_X,
177 IMM64_IMM41A_INST_WORD_POS_X,
178 IMM64_IMM41A_VAL_POS_X
179 );
180
181 INS_IMM64(FixupVal,
182 ((UINT32 *)Fixup + IMM64_IMM41B_INST_WORD_X),
183 IMM64_IMM41B_SIZE_X,
184 IMM64_IMM41B_INST_WORD_POS_X,
185 IMM64_IMM41B_VAL_POS_X
186 );
187
188 INS_IMM64(FixupVal,
189 ((UINT32 *)Fixup + IMM64_IMM41C_INST_WORD_X),
190 IMM64_IMM41C_SIZE_X,
191 IMM64_IMM41C_INST_WORD_POS_X,
192 IMM64_IMM41C_VAL_POS_X
193 );
194
195 INS_IMM64(FixupVal,
196 ((UINT32 *)Fixup + IMM64_SIGN_INST_WORD_X),
197 IMM64_SIGN_SIZE_X,
198 IMM64_SIGN_INST_WORD_POS_X,
199 IMM64_SIGN_VAL_POS_X
200 );
201
202 Fixup64 = (UINT64 *) Fixup;
203 if (*FixupData != NULL) {
204 *FixupData = ALIGN_POINTER(*FixupData, sizeof(UINT64));
205 *(UINT64 *)(*FixupData) = *Fixup64;
206 *FixupData = *FixupData + sizeof(UINT64);
207 }
208 break;
209
210 default:
211 return RETURN_UNSUPPORTED;
212 }
213
214 return RETURN_SUCCESS;
215 }
216
217 /**
218 Returns TRUE if the machine type of PE/COFF image is supported. Supported
219 does not mean the image can be executed it means the PE/COFF loader supports
220 loading and relocating of the image type. It's up to the caller to support
221 the entry point.
222
223 The itanium version PE/COFF loader/relocater supports itanium and EBC image.
224
225 @param Machine Machine type from the PE Header.
226
227 @return TRUE if this PE/COFF loader can load the image
228 @return FALSE unrecoganized machine type of image.
229
230 **/
231 BOOLEAN
232 PeCoffLoaderImageFormatSupported (
233 IN UINT16 Machine
234 )
235 {
236 if ((Machine == IMAGE_FILE_MACHINE_IA64) || (Machine == IMAGE_FILE_MACHINE_EBC)) {
237 return TRUE;
238 }
239
240 return FALSE;
241 }
242
243
244 /**
245 Performs an Itanium-based specific relocation fixup and is a no-op on other
246 instruction sets.
247
248 @param Reloc Pointer to Pointer to the relocation record.
249 @param Fixup Pointer to the address to fix up.
250 @param FixupData Pointer to a buffer to log the fixups.
251 @param Adjust The offset to adjust the fixup.
252
253 @return Status code.
254
255 **/
256 RETURN_STATUS
257 PeHotRelocateImageEx (
258 IN UINT16 **Reloc,
259 IN OUT CHAR8 *Fixup,
260 IN OUT CHAR8 **FixupData,
261 IN UINT64 Adjust
262 )
263 {
264 UINT64 *Fixup64;
265 UINT64 FixupVal;
266
267 switch ((**Reloc) >> 12) {
268 case EFI_IMAGE_REL_BASED_DIR64:
269 Fixup64 = (UINT64 *) Fixup;
270 *FixupData = ALIGN_POINTER (*FixupData, sizeof (UINT64));
271 if (*(UINT64 *) (*FixupData) == *Fixup64) {
272 *Fixup64 = *Fixup64 + (UINT64) Adjust;
273 }
274
275 *FixupData = *FixupData + sizeof (UINT64);
276 break;
277
278 case EFI_IMAGE_REL_BASED_IA64_IMM64:
279 Fixup64 = (UINT64 *) Fixup;
280 *FixupData = ALIGN_POINTER (*FixupData, sizeof (UINT64));
281 if (*(UINT64 *) (*FixupData) == *Fixup64) {
282 //
283 // Align it to bundle address before fixing up the
284 // 64-bit immediate value of the movl instruction.
285 //
286 //
287 Fixup = (CHAR8 *) ((UINT64) Fixup & (UINT64)~(15));
288 FixupVal = (UINT64) 0;
289
290 //
291 // Extract the lower 32 bits of IMM64 from bundle
292 //
293 EXT_IMM64 (
294 FixupVal,
295 (UINT32 *) Fixup + IMM64_IMM7B_INST_WORD_X,
296 IMM64_IMM7B_SIZE_X,
297 IMM64_IMM7B_INST_WORD_POS_X,
298 IMM64_IMM7B_VAL_POS_X
299 );
300
301 EXT_IMM64 (
302 FixupVal,
303 (UINT32 *) Fixup + IMM64_IMM9D_INST_WORD_X,
304 IMM64_IMM9D_SIZE_X,
305 IMM64_IMM9D_INST_WORD_POS_X,
306 IMM64_IMM9D_VAL_POS_X
307 );
308
309 EXT_IMM64 (
310 FixupVal,
311 (UINT32 *) Fixup + IMM64_IMM5C_INST_WORD_X,
312 IMM64_IMM5C_SIZE_X,
313 IMM64_IMM5C_INST_WORD_POS_X,
314 IMM64_IMM5C_VAL_POS_X
315 );
316
317 EXT_IMM64 (
318 FixupVal,
319 (UINT32 *) Fixup + IMM64_IC_INST_WORD_X,
320 IMM64_IC_SIZE_X,
321 IMM64_IC_INST_WORD_POS_X,
322 IMM64_IC_VAL_POS_X
323 );
324
325 EXT_IMM64 (
326 FixupVal,
327 (UINT32 *) Fixup + IMM64_IMM41A_INST_WORD_X,
328 IMM64_IMM41A_SIZE_X,
329 IMM64_IMM41A_INST_WORD_POS_X,
330 IMM64_IMM41A_VAL_POS_X
331 );
332
333 //
334 // Update 64-bit address
335 //
336 FixupVal += Adjust;
337
338 //
339 // Insert IMM64 into bundle
340 //
341 INS_IMM64 (
342 FixupVal,
343 ((UINT32 *) Fixup + IMM64_IMM7B_INST_WORD_X),
344 IMM64_IMM7B_SIZE_X,
345 IMM64_IMM7B_INST_WORD_POS_X,
346 IMM64_IMM7B_VAL_POS_X
347 );
348
349 INS_IMM64 (
350 FixupVal,
351 ((UINT32 *) Fixup + IMM64_IMM9D_INST_WORD_X),
352 IMM64_IMM9D_SIZE_X,
353 IMM64_IMM9D_INST_WORD_POS_X,
354 IMM64_IMM9D_VAL_POS_X
355 );
356
357 INS_IMM64 (
358 FixupVal,
359 ((UINT32 *) Fixup + IMM64_IMM5C_INST_WORD_X),
360 IMM64_IMM5C_SIZE_X,
361 IMM64_IMM5C_INST_WORD_POS_X,
362 IMM64_IMM5C_VAL_POS_X
363 );
364
365 INS_IMM64 (
366 FixupVal,
367 ((UINT32 *) Fixup + IMM64_IC_INST_WORD_X),
368 IMM64_IC_SIZE_X,
369 IMM64_IC_INST_WORD_POS_X,
370 IMM64_IC_VAL_POS_X
371 );
372
373 INS_IMM64 (
374 FixupVal,
375 ((UINT32 *) Fixup + IMM64_IMM41A_INST_WORD_X),
376 IMM64_IMM41A_SIZE_X,
377 IMM64_IMM41A_INST_WORD_POS_X,
378 IMM64_IMM41A_VAL_POS_X
379 );
380
381 INS_IMM64 (
382 FixupVal,
383 ((UINT32 *) Fixup + IMM64_IMM41B_INST_WORD_X),
384 IMM64_IMM41B_SIZE_X,
385 IMM64_IMM41B_INST_WORD_POS_X,
386 IMM64_IMM41B_VAL_POS_X
387 );
388
389 INS_IMM64 (
390 FixupVal,
391 ((UINT32 *) Fixup + IMM64_IMM41C_INST_WORD_X),
392 IMM64_IMM41C_SIZE_X,
393 IMM64_IMM41C_INST_WORD_POS_X,
394 IMM64_IMM41C_VAL_POS_X
395 );
396
397 INS_IMM64 (
398 FixupVal,
399 ((UINT32 *) Fixup + IMM64_SIGN_INST_WORD_X),
400 IMM64_SIGN_SIZE_X,
401 IMM64_SIGN_INST_WORD_POS_X,
402 IMM64_SIGN_VAL_POS_X
403 );
404
405 *(UINT64 *) (*FixupData) = *Fixup64;
406 }
407
408 *FixupData = *FixupData + sizeof (UINT64);
409 break;
410
411 default:
412 DEBUG ((EFI_D_ERROR, "PeHotRelocateEx:unknown fixed type\n"));
413 return RETURN_UNSUPPORTED;
414 }
415
416 return RETURN_SUCCESS;
417 }
418
419
420