]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
Clean up DxeCore to use report status code macros in ReportStatusCode to retire CoreR...
[mirror_edk2.git] / MdeModulePkg / Core / Dxe / Dispatcher / Dispatcher.c
1 /** @file
2 DXE Dispatcher.
3
4 Step #1 - When a FV protocol is added to the system every driver in the FV
5 is added to the mDiscoveredList. The SOR, Before, and After Depex are
6 pre-processed as drivers are added to the mDiscoveredList. If an Apriori
7 file exists in the FV those drivers are addeded to the
8 mScheduledQueue. The mFvHandleList is used to make sure a
9 FV is only processed once.
10
11 Step #2 - Dispatch. Remove driver from the mScheduledQueue and load and
12 start it. After mScheduledQueue is drained check the
13 mDiscoveredList to see if any item has a Depex that is ready to
14 be placed on the mScheduledQueue.
15
16 Step #3 - Adding to the mScheduledQueue requires that you process Before
17 and After dependencies. This is done recursively as the call to add
18 to the mScheduledQueue checks for Before and recursively adds
19 all Befores. It then addes the item that was passed in and then
20 processess the After dependecies by recursively calling the routine.
21
22 Dispatcher Rules:
23 The rules for the dispatcher are in chapter 10 of the DXE CIS. Figure 10-3
24 is the state diagram for the DXE dispatcher
25
26 Depex - Dependency Expresion.
27 SOR - Schedule On Request - Don't schedule if this bit is set.
28
29 Copyright (c) 2006 - 2008, Intel Corporation. <BR>
30 All rights reserved. This program and the accompanying materials
31 are licensed and made available under the terms and conditions of the BSD License
32 which accompanies this distribution. The full text of the license may be found at
33 http://opensource.org/licenses/bsd-license.php
34
35 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
36 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
37
38 **/
39
40 #include "DxeMain.h"
41
42 //
43 // The Driver List contains one copy of every driver that has been discovered.
44 // Items are never removed from the driver list. List of EFI_CORE_DRIVER_ENTRY
45 //
46 LIST_ENTRY mDiscoveredList = INITIALIZE_LIST_HEAD_VARIABLE (mDiscoveredList);
47
48 //
49 // Queue of drivers that are ready to dispatch. This queue is a subset of the
50 // mDiscoveredList.list of EFI_CORE_DRIVER_ENTRY.
51 //
52 LIST_ENTRY mScheduledQueue = INITIALIZE_LIST_HEAD_VARIABLE (mScheduledQueue);
53
54 //
55 // List of handles who's Fv's have been parsed and added to the mFwDriverList.
56 //
57 LIST_ENTRY mFvHandleList = INITIALIZE_LIST_HEAD_VARIABLE (mFvHandleList); // list of KNOWN_HANDLE
58
59 //
60 // Lock for mDiscoveredList, mScheduledQueue, gDispatcherRunning.
61 //
62 EFI_LOCK mDispatcherLock = EFI_INITIALIZE_LOCK_VARIABLE (TPL_HIGH_LEVEL);
63
64
65 //
66 // Flag for the DXE Dispacher. TRUE if dispatcher is execuing.
67 //
68 BOOLEAN gDispatcherRunning = FALSE;
69
70 //
71 // Module globals to manage the FwVol registration notification event
72 //
73 EFI_EVENT mFwVolEvent;
74 VOID *mFwVolEventRegistration;
75
76 //
77 // List of file types supported by dispatcher
78 //
79 EFI_FV_FILETYPE mDxeFileTypes[] = {
80 EFI_FV_FILETYPE_DRIVER,
81 EFI_FV_FILETYPE_COMBINED_PEIM_DRIVER,
82 EFI_FV_FILETYPE_DXE_CORE,
83 EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE
84 };
85
86 typedef struct {
87 MEDIA_FW_VOL_FILEPATH_DEVICE_PATH File;
88 EFI_DEVICE_PATH_PROTOCOL End;
89 } FV_FILEPATH_DEVICE_PATH;
90
91 FV_FILEPATH_DEVICE_PATH mFvDevicePath;
92
93
94 //
95 // Function Prototypes
96 //
97 /**
98 Insert InsertedDriverEntry onto the mScheduledQueue. To do this you
99 must add any driver with a before dependency on InsertedDriverEntry first.
100 You do this by recursively calling this routine. After all the Befores are
101 processed you can add InsertedDriverEntry to the mScheduledQueue.
102 Then you can add any driver with an After dependency on InsertedDriverEntry
103 by recursively calling this routine.
104
105 @param InsertedDriverEntry The driver to insert on the ScheduledLink Queue
106
107 **/
108 VOID
109 CoreInsertOnScheduledQueueWhileProcessingBeforeAndAfter (
110 IN EFI_CORE_DRIVER_ENTRY *InsertedDriverEntry
111 );
112
113 /**
114 Event notification that is fired every time a FV dispatch protocol is added.
115 More than one protocol may have been added when this event is fired, so you
116 must loop on CoreLocateHandle () to see how many protocols were added and
117 do the following to each FV:
118 If the Fv has already been processed, skip it. If the Fv has not been
119 processed then mark it as being processed, as we are about to process it.
120 Read the Fv and add any driver in the Fv to the mDiscoveredList.The
121 mDiscoveredList is never free'ed and contains variables that define
122 the other states the DXE driver transitions to..
123 While you are at it read the A Priori file into memory.
124 Place drivers in the A Priori list onto the mScheduledQueue.
125
126 @param Event The Event that is being processed, not used.
127 @param Context Event Context, not used.
128
129 **/
130 VOID
131 EFIAPI
132 CoreFwVolEventProtocolNotify (
133 IN EFI_EVENT Event,
134 IN VOID *Context
135 );
136
137 /**
138 Convert FvHandle and DriverName into an EFI device path
139
140 @param Fv Fv protocol, needed to read Depex info out of
141 FLASH.
142 @param FvHandle Handle for Fv, needed in the
143 EFI_CORE_DRIVER_ENTRY so that the PE image can be
144 read out of the FV at a later time.
145 @param DriverName Name of driver to add to mDiscoveredList.
146
147 @return Pointer to device path constructed from FvHandle and DriverName
148
149 **/
150 EFI_DEVICE_PATH_PROTOCOL *
151 CoreFvToDevicePath (
152 IN EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv,
153 IN EFI_HANDLE FvHandle,
154 IN EFI_GUID *DriverName
155 );
156
157 /**
158 Add an entry to the mDiscoveredList. Allocate memory to store the DriverEntry,
159 and initilize any state variables. Read the Depex from the FV and store it
160 in DriverEntry. Pre-process the Depex to set the SOR, Before and After state.
161 The Discovered list is never free'ed and contains booleans that represent the
162 other possible DXE driver states.
163
164 @param Fv Fv protocol, needed to read Depex info out of
165 FLASH.
166 @param FvHandle Handle for Fv, needed in the
167 EFI_CORE_DRIVER_ENTRY so that the PE image can be
168 read out of the FV at a later time.
169 @param DriverName Name of driver to add to mDiscoveredList.
170
171 @retval EFI_SUCCESS If driver was added to the mDiscoveredList.
172 @retval EFI_ALREADY_STARTED The driver has already been started. Only one
173 DriverName may be active in the system at any one
174 time.
175
176 **/
177 EFI_STATUS
178 CoreAddToDriverList (
179 IN EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv,
180 IN EFI_HANDLE FvHandle,
181 IN EFI_GUID *DriverName
182 );
183
184 /**
185 Get the driver from the FV through driver name, and produce a FVB protocol on FvHandle.
186
187 @param Fv The FIRMWARE_VOLUME protocol installed on the FV.
188 @param FvHandle The handle which FVB protocol installed on.
189 @param DriverName The driver guid specified.
190
191 @retval EFI_OUT_OF_RESOURCES No enough memory or other resource.
192 @retval EFI_VOLUME_CORRUPTED Corrupted volume.
193 @retval EFI_SUCCESS Function successfully returned.
194
195 **/
196 EFI_STATUS
197 CoreProcessFvImageFile (
198 IN EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv,
199 IN EFI_HANDLE FvHandle,
200 IN EFI_GUID *DriverName
201 );
202
203
204 /**
205 Enter critical section by gaining lock on mDispatcherLock.
206
207 **/
208 VOID
209 CoreAcquireDispatcherLock (
210 VOID
211 )
212 {
213 CoreAcquireLock (&mDispatcherLock);
214 }
215
216
217 /**
218 Exit critical section by releasing lock on mDispatcherLock.
219
220 **/
221 VOID
222 CoreReleaseDispatcherLock (
223 VOID
224 )
225 {
226 CoreReleaseLock (&mDispatcherLock);
227 }
228
229
230 /**
231 Read Depex and pre-process the Depex for Before and After. If Section Extraction
232 protocol returns an error via ReadSection defer the reading of the Depex.
233
234 @param DriverEntry Driver to work on.
235
236 @retval EFI_SUCCESS Depex read and preprossesed
237 @retval EFI_PROTOCOL_ERROR The section extraction protocol returned an error
238 and Depex reading needs to be retried.
239 @retval Error DEPEX not found.
240
241 **/
242 EFI_STATUS
243 CoreGetDepexSectionAndPreProccess (
244 IN EFI_CORE_DRIVER_ENTRY *DriverEntry
245 )
246 {
247 EFI_STATUS Status;
248 EFI_SECTION_TYPE SectionType;
249 UINT32 AuthenticationStatus;
250 EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv;
251
252
253 Fv = DriverEntry->Fv;
254
255 //
256 // Grab Depex info, it will never be free'ed.
257 //
258 SectionType = EFI_SECTION_DXE_DEPEX;
259 Status = Fv->ReadSection (
260 DriverEntry->Fv,
261 &DriverEntry->FileName,
262 SectionType,
263 0,
264 &DriverEntry->Depex,
265 (UINTN *)&DriverEntry->DepexSize,
266 &AuthenticationStatus
267 );
268 if (EFI_ERROR (Status)) {
269 if (Status == EFI_PROTOCOL_ERROR) {
270 //
271 // The section extraction protocol failed so set protocol error flag
272 //
273 DriverEntry->DepexProtocolError = TRUE;
274 } else {
275 //
276 // If no Depex assume UEFI 2.0 driver model
277 //
278 DriverEntry->Depex = NULL;
279 DriverEntry->Dependent = TRUE;
280 DriverEntry->DepexProtocolError = FALSE;
281 }
282 } else {
283 //
284 // Set Before, After, and Unrequested state information based on Depex
285 // Driver will be put in Dependent or Unrequested state
286 //
287 CorePreProcessDepex (DriverEntry);
288 DriverEntry->DepexProtocolError = FALSE;
289 }
290
291 return Status;
292 }
293
294
295 /**
296 Check every driver and locate a matching one. If the driver is found, the Unrequested
297 state flag is cleared.
298
299 @param FirmwareVolumeHandle The handle of the Firmware Volume that contains
300 the firmware file specified by DriverName.
301 @param DriverName The Driver name to put in the Dependent state.
302
303 @retval EFI_SUCCESS The DriverName was found and it's SOR bit was
304 cleared
305 @retval EFI_NOT_FOUND The DriverName does not exist or it's SOR bit was
306 not set.
307
308 **/
309 EFI_STATUS
310 EFIAPI
311 CoreSchedule (
312 IN EFI_HANDLE FirmwareVolumeHandle,
313 IN EFI_GUID *DriverName
314 )
315 {
316 LIST_ENTRY *Link;
317 EFI_CORE_DRIVER_ENTRY *DriverEntry;
318
319 //
320 // Check every driver
321 //
322 for (Link = mDiscoveredList.ForwardLink; Link != &mDiscoveredList; Link = Link->ForwardLink) {
323 DriverEntry = CR(Link, EFI_CORE_DRIVER_ENTRY, Link, EFI_CORE_DRIVER_ENTRY_SIGNATURE);
324 if (DriverEntry->FvHandle == FirmwareVolumeHandle &&
325 DriverEntry->Unrequested &&
326 CompareGuid (DriverName, &DriverEntry->FileName)) {
327 //
328 // Move the driver from the Unrequested to the Dependent state
329 //
330 CoreAcquireDispatcherLock ();
331 DriverEntry->Unrequested = FALSE;
332 DriverEntry->Dependent = TRUE;
333 CoreReleaseDispatcherLock ();
334
335 return EFI_SUCCESS;
336 }
337 }
338 return EFI_NOT_FOUND;
339 }
340
341
342
343 /**
344 Convert a driver from the Untrused back to the Scheduled state.
345
346 @param FirmwareVolumeHandle The handle of the Firmware Volume that contains
347 the firmware file specified by DriverName.
348 @param DriverName The Driver name to put in the Scheduled state
349
350 @retval EFI_SUCCESS The file was found in the untrusted state, and it
351 was promoted to the trusted state.
352 @retval EFI_NOT_FOUND The file was not found in the untrusted state.
353
354 **/
355 EFI_STATUS
356 EFIAPI
357 CoreTrust (
358 IN EFI_HANDLE FirmwareVolumeHandle,
359 IN EFI_GUID *DriverName
360 )
361 {
362 LIST_ENTRY *Link;
363 EFI_CORE_DRIVER_ENTRY *DriverEntry;
364
365 //
366 // Check every driver
367 //
368 for (Link = mDiscoveredList.ForwardLink; Link != &mDiscoveredList; Link = Link->ForwardLink) {
369 DriverEntry = CR(Link, EFI_CORE_DRIVER_ENTRY, Link, EFI_CORE_DRIVER_ENTRY_SIGNATURE);
370 if (DriverEntry->FvHandle == FirmwareVolumeHandle &&
371 DriverEntry->Untrusted &&
372 CompareGuid (DriverName, &DriverEntry->FileName)) {
373 //
374 // Transition driver from Untrusted to Scheduled state.
375 //
376 CoreAcquireDispatcherLock ();
377 DriverEntry->Untrusted = FALSE;
378 DriverEntry->Scheduled = TRUE;
379 InsertTailList (&mScheduledQueue, &DriverEntry->ScheduledLink);
380 CoreReleaseDispatcherLock ();
381
382 return EFI_SUCCESS;
383 }
384 }
385 return EFI_NOT_FOUND;
386 }
387
388
389
390 /**
391 This is the main Dispatcher for DXE and it exits when there are no more
392 drivers to run. Drain the mScheduledQueue and load and start a PE
393 image for each driver. Search the mDiscoveredList to see if any driver can
394 be placed on the mScheduledQueue. If no drivers are placed on the
395 mScheduledQueue exit the function. On exit it is assumed the Bds()
396 will be called, and when the Bds() exits the Dispatcher will be called
397 again.
398
399 @retval EFI_ALREADY_STARTED The DXE Dispatcher is already running
400 @retval EFI_NOT_FOUND No DXE Drivers were dispatched
401 @retval EFI_SUCCESS One or more DXE Drivers were dispatched
402
403 **/
404 EFI_STATUS
405 EFIAPI
406 CoreDispatcher (
407 VOID
408 )
409 {
410 EFI_STATUS Status;
411 EFI_STATUS ReturnStatus;
412 LIST_ENTRY *Link;
413 EFI_CORE_DRIVER_ENTRY *DriverEntry;
414 BOOLEAN ReadyToRun;
415
416 if (gDispatcherRunning) {
417 //
418 // If the dispatcher is running don't let it be restarted.
419 //
420 return EFI_ALREADY_STARTED;
421 }
422
423 gDispatcherRunning = TRUE;
424
425
426 ReturnStatus = EFI_NOT_FOUND;
427 do {
428 //
429 // Drain the Scheduled Queue
430 //
431 while (!IsListEmpty (&mScheduledQueue)) {
432 DriverEntry = CR (
433 mScheduledQueue.ForwardLink,
434 EFI_CORE_DRIVER_ENTRY,
435 ScheduledLink,
436 EFI_CORE_DRIVER_ENTRY_SIGNATURE
437 );
438
439 //
440 // Load the DXE Driver image into memory. If the Driver was transitioned from
441 // Untrused to Scheduled it would have already been loaded so we may need to
442 // skip the LoadImage
443 //
444 if (DriverEntry->ImageHandle == NULL) {
445 Status = CoreLoadImage (
446 FALSE,
447 gDxeCoreImageHandle,
448 DriverEntry->FvFileDevicePath,
449 NULL,
450 0,
451 &DriverEntry->ImageHandle
452 );
453
454 //
455 // Update the driver state to reflect that it's been loaded
456 //
457 if (EFI_ERROR (Status)) {
458 CoreAcquireDispatcherLock ();
459
460 if (Status == EFI_SECURITY_VIOLATION) {
461 //
462 // Take driver from Scheduled to Untrused state
463 //
464 DriverEntry->Untrusted = TRUE;
465 } else {
466 //
467 // The DXE Driver could not be loaded, and do not attempt to load or start it again.
468 // Take driver from Scheduled to Initialized.
469 //
470 // This case include the Never Trusted state if EFI_ACCESS_DENIED is returned
471 //
472 DriverEntry->Initialized = TRUE;
473 }
474
475 DriverEntry->Scheduled = FALSE;
476 RemoveEntryList (&DriverEntry->ScheduledLink);
477
478 CoreReleaseDispatcherLock ();
479
480 //
481 // If it's an error don't try the StartImage
482 //
483 continue;
484 }
485 }
486
487 CoreAcquireDispatcherLock ();
488
489 DriverEntry->Scheduled = FALSE;
490 DriverEntry->Initialized = TRUE;
491 RemoveEntryList (&DriverEntry->ScheduledLink);
492
493 CoreReleaseDispatcherLock ();
494
495
496 REPORT_STATUS_CODE_WITH_EXTENDED_DATA (
497 EFI_PROGRESS_CODE,
498 FixedPcdGet32(PcdStatusCodeValueDxeDriverBegin),
499 &DriverEntry->ImageHandle,
500 sizeof (DriverEntry->ImageHandle)
501 );
502
503 Status = CoreStartImage (DriverEntry->ImageHandle, NULL, NULL);
504
505 REPORT_STATUS_CODE_WITH_EXTENDED_DATA (
506 EFI_PROGRESS_CODE,
507 FixedPcdGet32(PcdStatusCodeValueDxeDriverEnd),
508 &DriverEntry->ImageHandle,
509 sizeof (DriverEntry->ImageHandle)
510 );
511
512 ReturnStatus = EFI_SUCCESS;
513 }
514
515 //
516 // Search DriverList for items to place on Scheduled Queue
517 //
518 ReadyToRun = FALSE;
519 for (Link = mDiscoveredList.ForwardLink; Link != &mDiscoveredList; Link = Link->ForwardLink) {
520 DriverEntry = CR (Link, EFI_CORE_DRIVER_ENTRY, Link, EFI_CORE_DRIVER_ENTRY_SIGNATURE);
521
522 if (DriverEntry->DepexProtocolError){
523 //
524 // If Section Extraction Protocol did not let the Depex be read before retry the read
525 //
526 Status = CoreGetDepexSectionAndPreProccess (DriverEntry);
527 }
528
529 if (DriverEntry->Dependent) {
530 if (CoreIsSchedulable (DriverEntry)) {
531 CoreInsertOnScheduledQueueWhileProcessingBeforeAndAfter (DriverEntry);
532 ReadyToRun = TRUE;
533 }
534 }
535 }
536 } while (ReadyToRun);
537
538 gDispatcherRunning = FALSE;
539
540 return ReturnStatus;
541 }
542
543
544 /**
545 Insert InsertedDriverEntry onto the mScheduledQueue. To do this you
546 must add any driver with a before dependency on InsertedDriverEntry first.
547 You do this by recursively calling this routine. After all the Befores are
548 processed you can add InsertedDriverEntry to the mScheduledQueue.
549 Then you can add any driver with an After dependency on InsertedDriverEntry
550 by recursively calling this routine.
551
552 @param InsertedDriverEntry The driver to insert on the ScheduledLink Queue
553
554 **/
555 VOID
556 CoreInsertOnScheduledQueueWhileProcessingBeforeAndAfter (
557 IN EFI_CORE_DRIVER_ENTRY *InsertedDriverEntry
558 )
559 {
560 LIST_ENTRY *Link;
561 EFI_CORE_DRIVER_ENTRY *DriverEntry;
562
563 //
564 // Process Before Dependency
565 //
566 for (Link = mDiscoveredList.ForwardLink; Link != &mDiscoveredList; Link = Link->ForwardLink) {
567 DriverEntry = CR(Link, EFI_CORE_DRIVER_ENTRY, Link, EFI_CORE_DRIVER_ENTRY_SIGNATURE);
568 if (DriverEntry->Before && DriverEntry->Dependent) {
569 if (CompareGuid (&InsertedDriverEntry->FileName, &DriverEntry->BeforeAfterGuid)) {
570 //
571 // Recursively process BEFORE
572 //
573 CoreInsertOnScheduledQueueWhileProcessingBeforeAndAfter (DriverEntry);
574 }
575 }
576 }
577
578 //
579 // Convert driver from Dependent to Scheduled state
580 //
581 CoreAcquireDispatcherLock ();
582
583 InsertedDriverEntry->Dependent = FALSE;
584 InsertedDriverEntry->Scheduled = TRUE;
585 InsertTailList (&mScheduledQueue, &InsertedDriverEntry->ScheduledLink);
586
587 CoreReleaseDispatcherLock ();
588
589 //
590 // Process After Dependency
591 //
592 for (Link = mDiscoveredList.ForwardLink; Link != &mDiscoveredList; Link = Link->ForwardLink) {
593 DriverEntry = CR(Link, EFI_CORE_DRIVER_ENTRY, Link, EFI_CORE_DRIVER_ENTRY_SIGNATURE);
594 if (DriverEntry->After && DriverEntry->Dependent) {
595 if (CompareGuid (&InsertedDriverEntry->FileName, &DriverEntry->BeforeAfterGuid)) {
596 //
597 // Recursively process AFTER
598 //
599 CoreInsertOnScheduledQueueWhileProcessingBeforeAndAfter (DriverEntry);
600 }
601 }
602 }
603 }
604
605
606 /**
607 Return TRUE if the Fv has been processed, FALSE if not.
608
609 @param FvHandle The handle of a FV that's being tested
610
611 @retval TRUE Fv protocol on FvHandle has been processed
612 @retval FALSE Fv protocol on FvHandle has not yet been processed
613
614 **/
615 BOOLEAN
616 FvHasBeenProcessed (
617 IN EFI_HANDLE FvHandle
618 )
619 {
620 LIST_ENTRY *Link;
621 KNOWN_HANDLE *KnownHandle;
622
623 for (Link = mFvHandleList.ForwardLink; Link != &mFvHandleList; Link = Link->ForwardLink) {
624 KnownHandle = CR(Link, KNOWN_HANDLE, Link, KNOWN_HANDLE_SIGNATURE);
625 if (KnownHandle->Handle == FvHandle) {
626 return TRUE;
627 }
628 }
629 return FALSE;
630 }
631
632
633 /**
634 Remember that Fv protocol on FvHandle has had it's drivers placed on the
635 mDiscoveredList. This fucntion adds entries on the mFvHandleList. Items are
636 never removed/freed from the mFvHandleList.
637
638 @param FvHandle The handle of a FV that has been processed
639
640 **/
641 VOID
642 FvIsBeingProcesssed (
643 IN EFI_HANDLE FvHandle
644 )
645 {
646 KNOWN_HANDLE *KnownHandle;
647
648 KnownHandle = AllocatePool (sizeof (KNOWN_HANDLE));
649 ASSERT (KnownHandle != NULL);
650
651 KnownHandle->Signature = KNOWN_HANDLE_SIGNATURE;
652 KnownHandle->Handle = FvHandle;
653 InsertTailList (&mFvHandleList, &KnownHandle->Link);
654 }
655
656
657
658
659 /**
660 Convert FvHandle and DriverName into an EFI device path
661
662 @param Fv Fv protocol, needed to read Depex info out of
663 FLASH.
664 @param FvHandle Handle for Fv, needed in the
665 EFI_CORE_DRIVER_ENTRY so that the PE image can be
666 read out of the FV at a later time.
667 @param DriverName Name of driver to add to mDiscoveredList.
668
669 @return Pointer to device path constructed from FvHandle and DriverName
670
671 **/
672 EFI_DEVICE_PATH_PROTOCOL *
673 CoreFvToDevicePath (
674 IN EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv,
675 IN EFI_HANDLE FvHandle,
676 IN EFI_GUID *DriverName
677 )
678 {
679 EFI_STATUS Status;
680 EFI_DEVICE_PATH_PROTOCOL *FvDevicePath;
681 EFI_DEVICE_PATH_PROTOCOL *FileNameDevicePath;
682
683 //
684 // Remember the device path of the FV
685 //
686 Status = CoreHandleProtocol (FvHandle, &gEfiDevicePathProtocolGuid, (VOID **)&FvDevicePath);
687 if (EFI_ERROR (Status)) {
688 FileNameDevicePath = NULL;
689 } else {
690 //
691 // Build a device path to the file in the FV to pass into gBS->LoadImage
692 //
693 EfiInitializeFwVolDevicepathNode (&mFvDevicePath.File, DriverName);
694 mFvDevicePath.End.Type = EFI_END_ENTIRE_DEVICE_PATH;
695 mFvDevicePath.End.SubType = END_ENTIRE_DEVICE_PATH_SUBTYPE;
696 SetDevicePathNodeLength (&mFvDevicePath.End, sizeof (EFI_DEVICE_PATH_PROTOCOL));
697
698 FileNameDevicePath = AppendDevicePath (
699 FvDevicePath,
700 (EFI_DEVICE_PATH_PROTOCOL *)&mFvDevicePath
701 );
702 }
703
704 return FileNameDevicePath;
705 }
706
707
708
709 /**
710 Add an entry to the mDiscoveredList. Allocate memory to store the DriverEntry,
711 and initilize any state variables. Read the Depex from the FV and store it
712 in DriverEntry. Pre-process the Depex to set the SOR, Before and After state.
713 The Discovered list is never free'ed and contains booleans that represent the
714 other possible DXE driver states.
715
716 @param Fv Fv protocol, needed to read Depex info out of
717 FLASH.
718 @param FvHandle Handle for Fv, needed in the
719 EFI_CORE_DRIVER_ENTRY so that the PE image can be
720 read out of the FV at a later time.
721 @param DriverName Name of driver to add to mDiscoveredList.
722
723 @retval EFI_SUCCESS If driver was added to the mDiscoveredList.
724 @retval EFI_ALREADY_STARTED The driver has already been started. Only one
725 DriverName may be active in the system at any one
726 time.
727
728 **/
729 EFI_STATUS
730 CoreAddToDriverList (
731 IN EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv,
732 IN EFI_HANDLE FvHandle,
733 IN EFI_GUID *DriverName
734 )
735 {
736 EFI_CORE_DRIVER_ENTRY *DriverEntry;
737
738
739 //
740 // Create the Driver Entry for the list. ZeroPool initializes lots of variables to
741 // NULL or FALSE.
742 //
743 DriverEntry = AllocateZeroPool (sizeof (EFI_CORE_DRIVER_ENTRY));
744 ASSERT (DriverEntry != NULL);
745
746 DriverEntry->Signature = EFI_CORE_DRIVER_ENTRY_SIGNATURE;
747 CopyGuid (&DriverEntry->FileName, DriverName);
748 DriverEntry->FvHandle = FvHandle;
749 DriverEntry->Fv = Fv;
750 DriverEntry->FvFileDevicePath = CoreFvToDevicePath (Fv, FvHandle, DriverName);
751
752 CoreGetDepexSectionAndPreProccess (DriverEntry);
753
754 CoreAcquireDispatcherLock ();
755
756 InsertTailList (&mDiscoveredList, &DriverEntry->Link);
757
758 CoreReleaseDispatcherLock ();
759
760 return EFI_SUCCESS;
761 }
762
763
764 /**
765 Check if a FV Image type file (EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE) is
766 described by a EFI_HOB_FIRMWARE_VOLUME2 Hob.
767
768 @param FvHandle The handle which FVB protocol installed on.
769 @param DriverName The driver guid specified.
770
771 @retval TRUE This file is found in a EFI_HOB_FIRMWARE_VOLUME2
772 Hob.
773 @retval FALSE Not found.
774
775 **/
776 BOOLEAN
777 FvFoundInHobFv2 (
778 IN EFI_HANDLE FvHandle,
779 IN CONST EFI_GUID *DriverName
780 )
781 {
782 EFI_PEI_HOB_POINTERS HobFv2;
783
784 HobFv2.Raw = GetHobList ();
785
786 while ((HobFv2.Raw = GetNextHob (EFI_HOB_TYPE_FV2, HobFv2.Raw)) != NULL) {
787 if (CompareGuid (DriverName, &HobFv2.FirmwareVolume2->FileName)) {
788 return TRUE;
789 }
790 HobFv2.Raw = GET_NEXT_HOB (HobFv2);
791 }
792
793 return FALSE;
794 }
795
796
797
798 /**
799 Get the driver from the FV through driver name, and produce a FVB protocol on FvHandle.
800
801 @param Fv The FIRMWARE_VOLUME protocol installed on the FV.
802 @param FvHandle The handle which FVB protocol installed on.
803 @param DriverName The driver guid specified.
804
805 @retval EFI_OUT_OF_RESOURCES No enough memory or other resource.
806 @retval EFI_VOLUME_CORRUPTED Corrupted volume.
807 @retval EFI_SUCCESS Function successfully returned.
808
809 **/
810 EFI_STATUS
811 CoreProcessFvImageFile (
812 IN EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv,
813 IN EFI_HANDLE FvHandle,
814 IN EFI_GUID *DriverName
815 )
816 {
817 EFI_STATUS Status;
818 EFI_SECTION_TYPE SectionType;
819 UINT32 AuthenticationStatus;
820 VOID *Buffer;
821 VOID *AlignedBuffer;
822 UINTN BufferSize;
823 EFI_FIRMWARE_VOLUME_HEADER *FvHeader;
824 UINT32 FvAlignment;
825
826 //
827 // Read the first (and only the first) firmware volume section
828 //
829 SectionType = EFI_SECTION_FIRMWARE_VOLUME_IMAGE;
830 FvHeader = NULL;
831 FvAlignment = 0;
832 Buffer = NULL;
833 BufferSize = 0;
834 AlignedBuffer = NULL;
835 Status = Fv->ReadSection (
836 Fv,
837 DriverName,
838 SectionType,
839 0,
840 &Buffer,
841 &BufferSize,
842 &AuthenticationStatus
843 );
844 if (!EFI_ERROR (Status)) {
845 //
846 // FvImage should be at its required alignment.
847 //
848 FvHeader = (EFI_FIRMWARE_VOLUME_HEADER *) Buffer;
849 FvAlignment = 1 << ((FvHeader->Attributes & EFI_FVB2_ALIGNMENT) >> 16);
850 //
851 // FvAlignment must be more than 8 bytes required by FvHeader structure.
852 //
853 if (FvAlignment < 8) {
854 FvAlignment = 8;
855 }
856 //
857 // Allocate the aligned buffer for the FvImage.
858 //
859 AlignedBuffer = AllocateAlignedPages (EFI_SIZE_TO_PAGES (BufferSize), (UINTN) FvAlignment);
860 if (AlignedBuffer == NULL) {
861 Status = EFI_OUT_OF_RESOURCES;
862 } else {
863 //
864 // Move FvImage into the aligned buffer and release the original buffer.
865 //
866 CopyMem (AlignedBuffer, Buffer, BufferSize);
867 CoreFreePool (Buffer);
868 Buffer = NULL;
869 //
870 // Produce a FVB protocol for the file
871 //
872 Status = ProduceFVBProtocolOnBuffer (
873 (EFI_PHYSICAL_ADDRESS) (UINTN) AlignedBuffer,
874 (UINT64)BufferSize,
875 FvHandle,
876 NULL
877 );
878 }
879 }
880
881 if (EFI_ERROR (Status)) {
882 //
883 // ReadSection or Produce FVB failed, Free data buffer
884 //
885 if (Buffer != NULL) {
886 FreePool (Buffer);
887 }
888
889 if (AlignedBuffer != NULL) {
890 FreeAlignedPages (AlignedBuffer, EFI_SIZE_TO_PAGES (BufferSize));
891 }
892 }
893
894 return Status;
895 }
896
897
898 /**
899 Event notification that is fired every time a FV dispatch protocol is added.
900 More than one protocol may have been added when this event is fired, so you
901 must loop on CoreLocateHandle () to see how many protocols were added and
902 do the following to each FV:
903 If the Fv has already been processed, skip it. If the Fv has not been
904 processed then mark it as being processed, as we are about to process it.
905 Read the Fv and add any driver in the Fv to the mDiscoveredList.The
906 mDiscoveredList is never free'ed and contains variables that define
907 the other states the DXE driver transitions to..
908 While you are at it read the A Priori file into memory.
909 Place drivers in the A Priori list onto the mScheduledQueue.
910
911 @param Event The Event that is being processed, not used.
912 @param Context Event Context, not used.
913
914 **/
915 VOID
916 EFIAPI
917 CoreFwVolEventProtocolNotify (
918 IN EFI_EVENT Event,
919 IN VOID *Context
920 )
921 {
922 EFI_STATUS Status;
923 EFI_STATUS GetNextFileStatus;
924 EFI_STATUS SecurityStatus;
925 EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv;
926 EFI_DEVICE_PATH_PROTOCOL *FvDevicePath;
927 EFI_HANDLE FvHandle;
928 UINTN BufferSize;
929 EFI_GUID NameGuid;
930 UINTN Key;
931 EFI_FV_FILETYPE Type;
932 EFI_FV_FILE_ATTRIBUTES Attributes;
933 UINTN Size;
934 EFI_CORE_DRIVER_ENTRY *DriverEntry;
935 EFI_GUID *AprioriFile;
936 UINTN AprioriEntryCount;
937 UINTN Index;
938 LIST_ENTRY *Link;
939 UINT32 AuthenticationStatus;
940 UINTN SizeOfBuffer;
941
942
943 while (TRUE) {
944 BufferSize = sizeof (EFI_HANDLE);
945 Status = CoreLocateHandle (
946 ByRegisterNotify,
947 NULL,
948 mFwVolEventRegistration,
949 &BufferSize,
950 &FvHandle
951 );
952 if (EFI_ERROR (Status)) {
953 //
954 // If no more notification events exit
955 //
956 return;
957 }
958
959 if (FvHasBeenProcessed (FvHandle)) {
960 //
961 // This Fv has already been processed so lets skip it!
962 //
963 continue;
964 }
965
966 Status = CoreHandleProtocol (FvHandle, &gEfiFirmwareVolumeDispatchProtocolGuid, (VOID **)&Fv);
967 if (EFI_ERROR (Status)) {
968 //
969 // If no dispatch protocol then skip, but do not marked as being processed as it
970 // may show up later.
971 //
972 continue;
973 }
974
975 //
976 // Since we are about to process this Fv mark it as processed.
977 //
978 FvIsBeingProcesssed (FvHandle);
979
980 Status = CoreHandleProtocol (FvHandle, &gEfiFirmwareVolume2ProtocolGuid, (VOID **)&Fv);
981 if (EFI_ERROR (Status)) {
982 //
983 // The Handle has a FirmwareVolumeDispatch protocol and should also contiain
984 // a FirmwareVolume protocol thus we should never get here.
985 //
986 ASSERT (FALSE);
987 continue;
988 }
989
990 Status = CoreHandleProtocol (FvHandle, &gEfiDevicePathProtocolGuid, (VOID **)&FvDevicePath);
991 if (EFI_ERROR (Status)) {
992 //
993 // The Firmware volume doesn't have device path, can't be dispatched.
994 //
995 continue;
996 }
997
998 //
999 // Evaluate the authentication status of the Firmware Volume through
1000 // Security Architectural Protocol
1001 //
1002 if (gSecurity != NULL) {
1003 SecurityStatus = gSecurity->FileAuthenticationState (
1004 gSecurity,
1005 0,
1006 FvDevicePath
1007 );
1008 if (SecurityStatus != EFI_SUCCESS) {
1009 //
1010 // Security check failed. The firmware volume should not be used for any purpose.
1011 //
1012 continue;
1013 }
1014 }
1015
1016 //
1017 // Discover Drivers in FV and add them to the Discovered Driver List.
1018 // Process EFI_FV_FILETYPE_DRIVER type and then EFI_FV_FILETYPE_COMBINED_PEIM_DRIVER
1019 // EFI_FV_FILETYPE_DXE_CORE is processed to produce a Loaded Image protocol for the core
1020 // EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE is processed to create a Fvb
1021 //
1022 for (Index = 0; Index < sizeof (mDxeFileTypes) / sizeof (EFI_FV_FILETYPE); Index++) {
1023 //
1024 // Initialize the search key
1025 //
1026 Key = 0;
1027 do {
1028 Type = mDxeFileTypes[Index];
1029 GetNextFileStatus = Fv->GetNextFile (
1030 Fv,
1031 &Key,
1032 &Type,
1033 &NameGuid,
1034 &Attributes,
1035 &Size
1036 );
1037 if (!EFI_ERROR (GetNextFileStatus)) {
1038 if (Type == EFI_FV_FILETYPE_DXE_CORE) {
1039 //
1040 // If this is the DXE core fill in it's DevicePath & DeviceHandle
1041 //
1042 if (gDxeCoreLoadedImage->FilePath == NULL) {
1043 if (CompareGuid (&NameGuid, gDxeCoreFileName)) {
1044 //
1045 // Maybe One specail Fv cantains only one DXE_CORE module, so its device path must
1046 // be initialized completely.
1047 //
1048 EfiInitializeFwVolDevicepathNode (&mFvDevicePath.File, &NameGuid);
1049 mFvDevicePath.End.Type = EFI_END_ENTIRE_DEVICE_PATH;
1050 mFvDevicePath.End.SubType = END_ENTIRE_DEVICE_PATH_SUBTYPE;
1051 SetDevicePathNodeLength (&mFvDevicePath.End, sizeof (EFI_DEVICE_PATH_PROTOCOL));
1052
1053 gDxeCoreLoadedImage->FilePath = DuplicateDevicePath (
1054 (EFI_DEVICE_PATH_PROTOCOL *)&mFvDevicePath
1055 );
1056 gDxeCoreLoadedImage->DeviceHandle = FvHandle;
1057 }
1058 }
1059 } else if (Type == EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE) {
1060 //
1061 // Check if this EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE file has already
1062 // been extracted.
1063 //
1064 if (FvFoundInHobFv2 (FvHandle, &NameGuid)) {
1065 continue;
1066 }
1067 //
1068 // Found a firmware volume image. Produce a firmware volume block
1069 // protocol for it so it gets dispatched from. This is usually a
1070 // capsule.
1071 //
1072 CoreProcessFvImageFile (Fv, FvHandle, &NameGuid);
1073 } else {
1074 //
1075 // Transition driver from Undiscovered to Discovered state
1076 //
1077 CoreAddToDriverList (Fv, FvHandle, &NameGuid);
1078 }
1079 }
1080 } while (!EFI_ERROR (GetNextFileStatus));
1081 }
1082
1083 //
1084 // Read the array of GUIDs from the Apriori file if it is present in the firmware volume
1085 //
1086 AprioriFile = NULL;
1087 Status = Fv->ReadSection (
1088 Fv,
1089 &gAprioriGuid,
1090 EFI_SECTION_RAW,
1091 0,
1092 (VOID **)&AprioriFile,
1093 &SizeOfBuffer,
1094 &AuthenticationStatus
1095 );
1096 if (!EFI_ERROR (Status)) {
1097 AprioriEntryCount = SizeOfBuffer / sizeof (EFI_GUID);
1098 } else {
1099 AprioriEntryCount = 0;
1100 }
1101
1102 //
1103 // Put drivers on Apriori List on the Scheduled queue. The Discovered List includes
1104 // drivers not in the current FV and these must be skipped since the a priori list
1105 // is only valid for the FV that it resided in.
1106 //
1107 CoreAcquireDispatcherLock ();
1108
1109 for (Index = 0; Index < AprioriEntryCount; Index++) {
1110 for (Link = mDiscoveredList.ForwardLink; Link != &mDiscoveredList; Link = Link->ForwardLink) {
1111 DriverEntry = CR(Link, EFI_CORE_DRIVER_ENTRY, Link, EFI_CORE_DRIVER_ENTRY_SIGNATURE);
1112 if (CompareGuid (&DriverEntry->FileName, &AprioriFile[Index]) &&
1113 (FvHandle == DriverEntry->FvHandle)) {
1114 DriverEntry->Dependent = FALSE;
1115 DriverEntry->Scheduled = TRUE;
1116 InsertTailList (&mScheduledQueue, &DriverEntry->ScheduledLink);
1117 break;
1118 }
1119 }
1120 }
1121
1122 CoreReleaseDispatcherLock ();
1123
1124 //
1125 // Free data allocated by Fv->ReadSection ()
1126 //
1127 CoreFreePool (AprioriFile);
1128 }
1129 }
1130
1131
1132
1133 /**
1134 Initialize the dispatcher. Initialize the notification function that runs when
1135 an FV2 protocol is added to the system.
1136
1137 **/
1138 VOID
1139 CoreInitializeDispatcher (
1140 VOID
1141 )
1142 {
1143 mFwVolEvent = CoreCreateProtocolNotifyEvent (
1144 &gEfiFirmwareVolume2ProtocolGuid,
1145 TPL_CALLBACK,
1146 CoreFwVolEventProtocolNotify,
1147 NULL,
1148 &mFwVolEventRegistration,
1149 TRUE
1150 );
1151 }
1152
1153 //
1154 // Function only used in debug builds
1155 //
1156
1157 /**
1158 Traverse the discovered list for any drivers that were discovered but not loaded
1159 because the dependency experessions evaluated to false.
1160
1161 **/
1162 VOID
1163 CoreDisplayDiscoveredNotDispatched (
1164 VOID
1165 )
1166 {
1167 LIST_ENTRY *Link;
1168 EFI_CORE_DRIVER_ENTRY *DriverEntry;
1169
1170 for (Link = mDiscoveredList.ForwardLink;Link !=&mDiscoveredList; Link = Link->ForwardLink) {
1171 DriverEntry = CR(Link, EFI_CORE_DRIVER_ENTRY, Link, EFI_CORE_DRIVER_ENTRY_SIGNATURE);
1172 if (DriverEntry->Dependent) {
1173 DEBUG ((DEBUG_LOAD, "Driver %g was discovered but not loaded!!\n", &DriverEntry->FileName));
1174 }
1175 }
1176 }