]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/DxeHobLib/HobLib.c
Update HobLib and Hob Service to avoid data over flow.
[mirror_edk2.git] / MdePkg / Library / DxeHobLib / HobLib.c
1 /** @file
2 HOB Library implemenation for Dxe Phase.
3
4 Copyright (c) 2006 - 2012, 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 <PiDxe.h>
16
17 #include <Guid/HobList.h>
18
19 #include <Library/HobLib.h>
20 #include <Library/UefiLib.h>
21 #include <Library/DebugLib.h>
22 #include <Library/BaseMemoryLib.h>
23
24 VOID *mHobList = NULL;
25
26 /**
27 The constructor function caches the pointer to HOB list.
28
29 The constructor function gets the start address of HOB list from system configuration table.
30 It will ASSERT() if that operation fails and it will always return EFI_SUCCESS.
31
32 @param ImageHandle The firmware allocated handle for the EFI image.
33 @param SystemTable A pointer to the EFI System Table.
34
35 @retval EFI_SUCCESS The constructor successfully gets HobList.
36 @retval Other value The constructor can't get HobList.
37
38 **/
39 EFI_STATUS
40 EFIAPI
41 HobLibConstructor (
42 IN EFI_HANDLE ImageHandle,
43 IN EFI_SYSTEM_TABLE *SystemTable
44 )
45 {
46 EFI_STATUS Status;
47
48 Status = EfiGetSystemConfigurationTable (&gEfiHobListGuid, &mHobList);
49 ASSERT_EFI_ERROR (Status);
50 ASSERT (mHobList != NULL);
51
52 return Status;
53 }
54
55 /**
56 Returns the pointer to the HOB list.
57
58 This function returns the pointer to first HOB in the list.
59 For PEI phase, the PEI service GetHobList() can be used to retrieve the pointer
60 to the HOB list. For the DXE phase, the HOB list pointer can be retrieved through
61 the EFI System Table by looking up theHOB list GUID in the System Configuration Table.
62 Since the System Configuration Table does not exist that the time the DXE Core is
63 launched, the DXE Core uses a global variable from the DXE Core Entry Point Library
64 to manage the pointer to the HOB list.
65
66 If the pointer to the HOB list is NULL, then ASSERT().
67
68 @return The pointer to the HOB list.
69
70 **/
71 VOID *
72 EFIAPI
73 GetHobList (
74 VOID
75 )
76 {
77 ASSERT (mHobList != NULL);
78 return mHobList;
79 }
80
81 /**
82 Returns the next instance of a HOB type from the starting HOB.
83
84 This function searches the first instance of a HOB type from the starting HOB pointer.
85 If there does not exist such HOB type from the starting HOB pointer, it will return NULL.
86 In contrast with macro GET_NEXT_HOB(), this function does not skip the starting HOB pointer
87 unconditionally: it returns HobStart back if HobStart itself meets the requirement;
88 caller is required to use GET_NEXT_HOB() if it wishes to skip current HobStart.
89
90 If HobStart is NULL, then ASSERT().
91
92 @param Type The HOB type to return.
93 @param HobStart The starting HOB pointer to search from.
94
95 @return The next instance of a HOB type from the starting HOB.
96
97 **/
98 VOID *
99 EFIAPI
100 GetNextHob (
101 IN UINT16 Type,
102 IN CONST VOID *HobStart
103 )
104 {
105 EFI_PEI_HOB_POINTERS Hob;
106
107 ASSERT (HobStart != NULL);
108
109 Hob.Raw = (UINT8 *) HobStart;
110 //
111 // Parse the HOB list until end of list or matching type is found.
112 //
113 while (!END_OF_HOB_LIST (Hob)) {
114 if (Hob.Header->HobType == Type) {
115 return Hob.Raw;
116 }
117 Hob.Raw = GET_NEXT_HOB (Hob);
118 }
119 return NULL;
120 }
121
122 /**
123 Returns the first instance of a HOB type among the whole HOB list.
124
125 This function searches the first instance of a HOB type among the whole HOB list.
126 If there does not exist such HOB type in the HOB list, it will return NULL.
127
128 If the pointer to the HOB list is NULL, then ASSERT().
129
130 @param Type The HOB type to return.
131
132 @return The next instance of a HOB type from the starting HOB.
133
134 **/
135 VOID *
136 EFIAPI
137 GetFirstHob (
138 IN UINT16 Type
139 )
140 {
141 VOID *HobList;
142
143 HobList = GetHobList ();
144 return GetNextHob (Type, HobList);
145 }
146
147 /**
148 Returns the next instance of the matched GUID HOB from the starting HOB.
149
150 This function searches the first instance of a HOB from the starting HOB pointer.
151 Such HOB should satisfy two conditions:
152 its HOB type is EFI_HOB_TYPE_GUID_EXTENSION and its GUID Name equals to the input Guid.
153 If there does not exist such HOB from the starting HOB pointer, it will return NULL.
154 Caller is required to apply GET_GUID_HOB_DATA () and GET_GUID_HOB_DATA_SIZE ()
155 to extract the data section and its size information, respectively.
156 In contrast with macro GET_NEXT_HOB(), this function does not skip the starting HOB pointer
157 unconditionally: it returns HobStart back if HobStart itself meets the requirement;
158 caller is required to use GET_NEXT_HOB() if it wishes to skip current HobStart.
159
160 If Guid is NULL, then ASSERT().
161 If HobStart is NULL, then ASSERT().
162
163 @param Guid The GUID to match with in the HOB list.
164 @param HobStart A pointer to a Guid.
165
166 @return The next instance of the matched GUID HOB from the starting HOB.
167
168 **/
169 VOID *
170 EFIAPI
171 GetNextGuidHob (
172 IN CONST EFI_GUID *Guid,
173 IN CONST VOID *HobStart
174 )
175 {
176 EFI_PEI_HOB_POINTERS GuidHob;
177
178 GuidHob.Raw = (UINT8 *) HobStart;
179 while ((GuidHob.Raw = GetNextHob (EFI_HOB_TYPE_GUID_EXTENSION, GuidHob.Raw)) != NULL) {
180 if (CompareGuid (Guid, &GuidHob.Guid->Name)) {
181 break;
182 }
183 GuidHob.Raw = GET_NEXT_HOB (GuidHob);
184 }
185 return GuidHob.Raw;
186 }
187
188 /**
189 Returns the first instance of the matched GUID HOB among the whole HOB list.
190
191 This function searches the first instance of a HOB among the whole HOB list.
192 Such HOB should satisfy two conditions:
193 its HOB type is EFI_HOB_TYPE_GUID_EXTENSION and its GUID Name equals to the input Guid.
194 If there does not exist such HOB from the starting HOB pointer, it will return NULL.
195 Caller is required to apply GET_GUID_HOB_DATA () and GET_GUID_HOB_DATA_SIZE ()
196 to extract the data section and its size information, respectively.
197
198 If the pointer to the HOB list is NULL, then ASSERT().
199 If Guid is NULL, then ASSERT().
200
201 @param Guid The GUID to match with in the HOB list.
202
203 @return The first instance of the matched GUID HOB among the whole HOB list.
204
205 **/
206 VOID *
207 EFIAPI
208 GetFirstGuidHob (
209 IN CONST EFI_GUID *Guid
210 )
211 {
212 VOID *HobList;
213
214 HobList = GetHobList ();
215 return GetNextGuidHob (Guid, HobList);
216 }
217
218 /**
219 Get the system boot mode from the HOB list.
220
221 This function returns the system boot mode information from the
222 PHIT HOB in HOB list.
223
224 If the pointer to the HOB list is NULL, then ASSERT().
225
226 @param VOID
227
228 @return The Boot Mode.
229
230 **/
231 EFI_BOOT_MODE
232 EFIAPI
233 GetBootModeHob (
234 VOID
235 )
236 {
237 EFI_HOB_HANDOFF_INFO_TABLE *HandOffHob;
238
239 HandOffHob = (EFI_HOB_HANDOFF_INFO_TABLE *) GetHobList ();
240
241 return HandOffHob->BootMode;
242 }
243
244 /**
245 Builds a HOB for a loaded PE32 module.
246
247 This function builds a HOB for a loaded PE32 module.
248 It can only be invoked during PEI phase;
249 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
250
251 If ModuleName is NULL, then ASSERT().
252 If there is no additional space for HOB creation, then ASSERT().
253
254 @param ModuleName The GUID File Name of the module.
255 @param MemoryAllocationModule The 64 bit physical address of the module.
256 @param ModuleLength The length of the module in bytes.
257 @param EntryPoint The 64 bit physical address of the module entry point.
258
259 **/
260 VOID
261 EFIAPI
262 BuildModuleHob (
263 IN CONST EFI_GUID *ModuleName,
264 IN EFI_PHYSICAL_ADDRESS MemoryAllocationModule,
265 IN UINT64 ModuleLength,
266 IN EFI_PHYSICAL_ADDRESS EntryPoint
267 )
268 {
269 //
270 // PEI HOB is read only for DXE phase
271 //
272 ASSERT (FALSE);
273 }
274
275 /**
276 Builds a HOB that describes a chunk of system memory.
277
278 This function builds a HOB that describes a chunk of system memory.
279 It can only be invoked during PEI phase;
280 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
281
282 If there is no additional space for HOB creation, then ASSERT().
283
284 @param ResourceType The type of resource described by this HOB.
285 @param ResourceAttribute The resource attributes of the memory described by this HOB.
286 @param PhysicalStart The 64 bit physical address of memory described by this HOB.
287 @param NumberOfBytes The length of the memory described by this HOB in bytes.
288
289 **/
290 VOID
291 EFIAPI
292 BuildResourceDescriptorHob (
293 IN EFI_RESOURCE_TYPE ResourceType,
294 IN EFI_RESOURCE_ATTRIBUTE_TYPE ResourceAttribute,
295 IN EFI_PHYSICAL_ADDRESS PhysicalStart,
296 IN UINT64 NumberOfBytes
297 )
298 {
299 //
300 // PEI HOB is read only for DXE phase
301 //
302 ASSERT (FALSE);
303 }
304
305 /**
306 Builds a customized HOB tagged with a GUID for identification and returns
307 the start address of GUID HOB data.
308
309 This function builds a customized HOB tagged with a GUID for identification
310 and returns the start address of GUID HOB data so that caller can fill the customized data.
311 The HOB Header and Name field is already stripped.
312 It can only be invoked during PEI phase;
313 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
314
315 If Guid is NULL, then ASSERT().
316 If there is no additional space for HOB creation, then ASSERT().
317 If DataLength > (0xFFF8 - sizeof (EFI_HOB_GUID_TYPE)), then ASSERT().
318 HobLength is UINT16 and multiples of 8 bytes, so the max HobLength is 0xFFF8.
319
320 @param Guid The GUID to tag the customized HOB.
321 @param DataLength The size of the data payload for the GUID HOB.
322
323 @retval NULL The GUID HOB could not be allocated.
324 @retval others The start address of GUID HOB data.
325
326 **/
327 VOID *
328 EFIAPI
329 BuildGuidHob (
330 IN CONST EFI_GUID *Guid,
331 IN UINTN DataLength
332 )
333 {
334 //
335 // PEI HOB is read only for DXE phase
336 //
337 ASSERT (FALSE);
338 return NULL;
339 }
340
341 /**
342 Builds a customized HOB tagged with a GUID for identification, copies the input data to the HOB
343 data field, and returns the start address of the GUID HOB data.
344
345 This function builds a customized HOB tagged with a GUID for identification and copies the input
346 data to the HOB data field and returns the start address of the GUID HOB data. It can only be
347 invoked during PEI phase; for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
348 The HOB Header and Name field is already stripped.
349 It can only be invoked during PEI phase;
350 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
351
352 If Guid is NULL, then ASSERT().
353 If Data is NULL and DataLength > 0, then ASSERT().
354 If there is no additional space for HOB creation, then ASSERT().
355 If DataLength > (0xFFF8 - sizeof (EFI_HOB_GUID_TYPE)), then ASSERT().
356 HobLength is UINT16 and multiples of 8 bytes, so the max HobLength is 0xFFF8.
357
358 @param Guid The GUID to tag the customized HOB.
359 @param Data The data to be copied into the data field of the GUID HOB.
360 @param DataLength The size of the data payload for the GUID HOB.
361
362 @retval NULL The GUID HOB could not be allocated.
363 @retval others The start address of GUID HOB data.
364
365 **/
366 VOID *
367 EFIAPI
368 BuildGuidDataHob (
369 IN CONST EFI_GUID *Guid,
370 IN VOID *Data,
371 IN UINTN DataLength
372 )
373 {
374 //
375 // PEI HOB is read only for DXE phase
376 //
377 ASSERT (FALSE);
378 return NULL;
379 }
380
381 /**
382 Builds a Firmware Volume HOB.
383
384 This function builds a Firmware Volume HOB.
385 It can only be invoked during PEI phase;
386 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
387
388 If there is no additional space for HOB creation, then ASSERT().
389
390 @param BaseAddress The base address of the Firmware Volume.
391 @param Length The size of the Firmware Volume in bytes.
392
393 **/
394 VOID
395 EFIAPI
396 BuildFvHob (
397 IN EFI_PHYSICAL_ADDRESS BaseAddress,
398 IN UINT64 Length
399 )
400 {
401 //
402 // PEI HOB is read only for DXE phase
403 //
404 ASSERT (FALSE);
405 }
406
407 /**
408 Builds a EFI_HOB_TYPE_FV2 HOB.
409
410 This function builds a EFI_HOB_TYPE_FV2 HOB.
411 It can only be invoked during PEI phase;
412 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
413
414 If there is no additional space for HOB creation, then ASSERT().
415
416 @param BaseAddress The base address of the Firmware Volume.
417 @param Length The size of the Firmware Volume in bytes.
418 @param FvName The name of the Firmware Volume.
419 @param FileName The name of the file.
420
421 **/
422 VOID
423 EFIAPI
424 BuildFv2Hob (
425 IN EFI_PHYSICAL_ADDRESS BaseAddress,
426 IN UINT64 Length,
427 IN CONST EFI_GUID *FvName,
428 IN CONST EFI_GUID *FileName
429 )
430 {
431 ASSERT (FALSE);
432 }
433
434
435 /**
436 Builds a Capsule Volume HOB.
437
438 This function builds a Capsule Volume HOB.
439 It can only be invoked during PEI phase;
440 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
441
442 If the platform does not support Capsule Volume HOBs, then ASSERT().
443 If there is no additional space for HOB creation, then ASSERT().
444
445 @param BaseAddress The base address of the Capsule Volume.
446 @param Length The size of the Capsule Volume in bytes.
447
448 **/
449 VOID
450 EFIAPI
451 BuildCvHob (
452 IN EFI_PHYSICAL_ADDRESS BaseAddress,
453 IN UINT64 Length
454 )
455 {
456 //
457 // PEI HOB is read only for DXE phase
458 //
459 ASSERT (FALSE);
460 }
461
462 /**
463 Builds a HOB for the CPU.
464
465 This function builds a HOB for the CPU.
466 It can only be invoked during PEI phase;
467 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
468
469 If there is no additional space for HOB creation, then ASSERT().
470
471 @param SizeOfMemorySpace The maximum physical memory addressability of the processor.
472 @param SizeOfIoSpace The maximum physical I/O addressability of the processor.
473
474 **/
475 VOID
476 EFIAPI
477 BuildCpuHob (
478 IN UINT8 SizeOfMemorySpace,
479 IN UINT8 SizeOfIoSpace
480 )
481 {
482 //
483 // PEI HOB is read only for DXE phase
484 //
485 ASSERT (FALSE);
486 }
487
488 /**
489 Builds a HOB for the Stack.
490
491 This function builds a HOB for the stack.
492 It can only be invoked during PEI phase;
493 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
494
495 If there is no additional space for HOB creation, then ASSERT().
496
497 @param BaseAddress The 64 bit physical address of the Stack.
498 @param Length The length of the stack in bytes.
499
500 **/
501 VOID
502 EFIAPI
503 BuildStackHob (
504 IN EFI_PHYSICAL_ADDRESS BaseAddress,
505 IN UINT64 Length
506 )
507 {
508 //
509 // PEI HOB is read only for DXE phase
510 //
511 ASSERT (FALSE);
512 }
513
514 /**
515 Builds a HOB for the BSP store.
516
517 This function builds a HOB for BSP store.
518 It can only be invoked during PEI phase;
519 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
520
521 If there is no additional space for HOB creation, then ASSERT().
522
523 @param BaseAddress The 64 bit physical address of the BSP.
524 @param Length The length of the BSP store in bytes.
525 @param MemoryType Type of memory allocated by this HOB.
526
527 **/
528 VOID
529 EFIAPI
530 BuildBspStoreHob (
531 IN EFI_PHYSICAL_ADDRESS BaseAddress,
532 IN UINT64 Length,
533 IN EFI_MEMORY_TYPE MemoryType
534 )
535 {
536 //
537 // PEI HOB is read only for DXE phase
538 //
539 ASSERT (FALSE);
540 }
541
542 /**
543 Builds a HOB for the memory allocation.
544
545 This function builds a HOB for the memory allocation.
546 It can only be invoked during PEI phase;
547 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
548
549 If there is no additional space for HOB creation, then ASSERT().
550
551 @param BaseAddress The 64 bit physical address of the memory.
552 @param Length The length of the memory allocation in bytes.
553 @param MemoryType Type of memory allocated by this HOB.
554
555 **/
556 VOID
557 EFIAPI
558 BuildMemoryAllocationHob (
559 IN EFI_PHYSICAL_ADDRESS BaseAddress,
560 IN UINT64 Length,
561 IN EFI_MEMORY_TYPE MemoryType
562 )
563 {
564 //
565 // PEI HOB is read only for DXE phase
566 //
567 ASSERT (FALSE);
568 }