]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
Add more check to make sure the valid pointer be used.
[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 - 2011, Intel Corporation. All rights reserved.<BR>
30 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_SMM_DXE,
82 EFI_FV_FILETYPE_COMBINED_PEIM_DRIVER,
83 EFI_FV_FILETYPE_DXE_CORE,
84 EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE
85 };
86
87 typedef struct {
88 MEDIA_FW_VOL_FILEPATH_DEVICE_PATH File;
89 EFI_DEVICE_PATH_PROTOCOL End;
90 } FV_FILEPATH_DEVICE_PATH;
91
92 FV_FILEPATH_DEVICE_PATH mFvDevicePath;
93
94
95 //
96 // Function Prototypes
97 //
98 /**
99 Insert InsertedDriverEntry onto the mScheduledQueue. To do this you
100 must add any driver with a before dependency on InsertedDriverEntry first.
101 You do this by recursively calling this routine. After all the Befores are
102 processed you can add InsertedDriverEntry to the mScheduledQueue.
103 Then you can add any driver with an After dependency on InsertedDriverEntry
104 by recursively calling this routine.
105
106 @param InsertedDriverEntry The driver to insert on the ScheduledLink Queue
107
108 **/
109 VOID
110 CoreInsertOnScheduledQueueWhileProcessingBeforeAndAfter (
111 IN EFI_CORE_DRIVER_ENTRY *InsertedDriverEntry
112 );
113
114 /**
115 Event notification that is fired every time a FV dispatch protocol is added.
116 More than one protocol may have been added when this event is fired, so you
117 must loop on CoreLocateHandle () to see how many protocols were added and
118 do the following to each FV:
119 If the Fv has already been processed, skip it. If the Fv has not been
120 processed then mark it as being processed, as we are about to process it.
121 Read the Fv and add any driver in the Fv to the mDiscoveredList.The
122 mDiscoveredList is never free'ed and contains variables that define
123 the other states the DXE driver transitions to..
124 While you are at it read the A Priori file into memory.
125 Place drivers in the A Priori list onto the mScheduledQueue.
126
127 @param Event The Event that is being processed, not used.
128 @param Context Event Context, not used.
129
130 **/
131 VOID
132 EFIAPI
133 CoreFwVolEventProtocolNotify (
134 IN EFI_EVENT Event,
135 IN VOID *Context
136 );
137
138 /**
139 Convert FvHandle and DriverName into an EFI device path
140
141 @param Fv Fv protocol, needed to read Depex info out of
142 FLASH.
143 @param FvHandle Handle for Fv, needed in the
144 EFI_CORE_DRIVER_ENTRY so that the PE image can be
145 read out of the FV at a later time.
146 @param DriverName Name of driver to add to mDiscoveredList.
147
148 @return Pointer to device path constructed from FvHandle and DriverName
149
150 **/
151 EFI_DEVICE_PATH_PROTOCOL *
152 CoreFvToDevicePath (
153 IN EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv,
154 IN EFI_HANDLE FvHandle,
155 IN EFI_GUID *DriverName
156 );
157
158 /**
159 Add an entry to the mDiscoveredList. Allocate memory to store the DriverEntry,
160 and initilize any state variables. Read the Depex from the FV and store it
161 in DriverEntry. Pre-process the Depex to set the SOR, Before and After state.
162 The Discovered list is never free'ed and contains booleans that represent the
163 other possible DXE driver states.
164
165 @param Fv Fv protocol, needed to read Depex info out of
166 FLASH.
167 @param FvHandle Handle for Fv, needed in the
168 EFI_CORE_DRIVER_ENTRY so that the PE image can be
169 read out of the FV at a later time.
170 @param DriverName Name of driver to add to mDiscoveredList.
171 @param Type Fv File Type of file to add to mDiscoveredList.
172
173 @retval EFI_SUCCESS If driver was added to the mDiscoveredList.
174 @retval EFI_ALREADY_STARTED The driver has already been started. Only one
175 DriverName may be active in the system at any one
176 time.
177
178 **/
179 EFI_STATUS
180 CoreAddToDriverList (
181 IN EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv,
182 IN EFI_HANDLE FvHandle,
183 IN EFI_GUID *DriverName,
184 IN EFI_FV_FILETYPE Type
185 );
186
187 /**
188 Get the driver from the FV through driver name, and produce a FVB protocol on FvHandle.
189
190 @param Fv The FIRMWARE_VOLUME protocol installed on the FV.
191 @param FvHandle The handle which FVB protocol installed on.
192 @param DriverName The driver guid specified.
193
194 @retval EFI_OUT_OF_RESOURCES No enough memory or other resource.
195 @retval EFI_VOLUME_CORRUPTED Corrupted volume.
196 @retval EFI_SUCCESS Function successfully returned.
197
198 **/
199 EFI_STATUS
200 CoreProcessFvImageFile (
201 IN EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv,
202 IN EFI_HANDLE FvHandle,
203 IN EFI_GUID *DriverName
204 );
205
206
207 /**
208 Enter critical section by gaining lock on mDispatcherLock.
209
210 **/
211 VOID
212 CoreAcquireDispatcherLock (
213 VOID
214 )
215 {
216 CoreAcquireLock (&mDispatcherLock);
217 }
218
219
220 /**
221 Exit critical section by releasing lock on mDispatcherLock.
222
223 **/
224 VOID
225 CoreReleaseDispatcherLock (
226 VOID
227 )
228 {
229 CoreReleaseLock (&mDispatcherLock);
230 }
231
232
233 /**
234 Read Depex and pre-process the Depex for Before and After. If Section Extraction
235 protocol returns an error via ReadSection defer the reading of the Depex.
236
237 @param DriverEntry Driver to work on.
238
239 @retval EFI_SUCCESS Depex read and preprossesed
240 @retval EFI_PROTOCOL_ERROR The section extraction protocol returned an error
241 and Depex reading needs to be retried.
242 @retval Error DEPEX not found.
243
244 **/
245 EFI_STATUS
246 CoreGetDepexSectionAndPreProccess (
247 IN EFI_CORE_DRIVER_ENTRY *DriverEntry
248 )
249 {
250 EFI_STATUS Status;
251 EFI_SECTION_TYPE SectionType;
252 UINT32 AuthenticationStatus;
253 EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv;
254
255
256 Fv = DriverEntry->Fv;
257
258 //
259 // Grab Depex info, it will never be free'ed.
260 //
261 SectionType = EFI_SECTION_DXE_DEPEX;
262 Status = Fv->ReadSection (
263 DriverEntry->Fv,
264 &DriverEntry->FileName,
265 SectionType,
266 0,
267 &DriverEntry->Depex,
268 (UINTN *)&DriverEntry->DepexSize,
269 &AuthenticationStatus
270 );
271 if (EFI_ERROR (Status)) {
272 if (Status == EFI_PROTOCOL_ERROR) {
273 //
274 // The section extraction protocol failed so set protocol error flag
275 //
276 DriverEntry->DepexProtocolError = TRUE;
277 } else {
278 //
279 // If no Depex assume UEFI 2.0 driver model
280 //
281 DriverEntry->Depex = NULL;
282 DriverEntry->Dependent = TRUE;
283 DriverEntry->DepexProtocolError = FALSE;
284 }
285 } else {
286 //
287 // Set Before, After, and Unrequested state information based on Depex
288 // Driver will be put in Dependent or Unrequested state
289 //
290 CorePreProcessDepex (DriverEntry);
291 DriverEntry->DepexProtocolError = FALSE;
292 }
293
294 return Status;
295 }
296
297
298 /**
299 Check every driver and locate a matching one. If the driver is found, the Unrequested
300 state flag is cleared.
301
302 @param FirmwareVolumeHandle The handle of the Firmware Volume that contains
303 the firmware file specified by DriverName.
304 @param DriverName The Driver name to put in the Dependent state.
305
306 @retval EFI_SUCCESS The DriverName was found and it's SOR bit was
307 cleared
308 @retval EFI_NOT_FOUND The DriverName does not exist or it's SOR bit was
309 not set.
310
311 **/
312 EFI_STATUS
313 EFIAPI
314 CoreSchedule (
315 IN EFI_HANDLE FirmwareVolumeHandle,
316 IN EFI_GUID *DriverName
317 )
318 {
319 LIST_ENTRY *Link;
320 EFI_CORE_DRIVER_ENTRY *DriverEntry;
321
322 //
323 // Check every driver
324 //
325 for (Link = mDiscoveredList.ForwardLink; Link != &mDiscoveredList; Link = Link->ForwardLink) {
326 DriverEntry = CR(Link, EFI_CORE_DRIVER_ENTRY, Link, EFI_CORE_DRIVER_ENTRY_SIGNATURE);
327 if (DriverEntry->FvHandle == FirmwareVolumeHandle &&
328 DriverEntry->Unrequested &&
329 CompareGuid (DriverName, &DriverEntry->FileName)) {
330 //
331 // Move the driver from the Unrequested to the Dependent state
332 //
333 CoreAcquireDispatcherLock ();
334 DriverEntry->Unrequested = FALSE;
335 DriverEntry->Dependent = TRUE;
336 CoreReleaseDispatcherLock ();
337
338 DEBUG ((DEBUG_DISPATCH, "Schedule FFS(%g) - EFI_SUCCESS\n", DriverName));
339
340 return EFI_SUCCESS;
341 }
342 }
343
344 DEBUG ((DEBUG_DISPATCH, "Schedule FFS(%g) - EFI_NOT_FOUND\n", DriverName));
345
346 return EFI_NOT_FOUND;
347 }
348
349
350
351 /**
352 Convert a driver from the Untrused back to the Scheduled state.
353
354 @param FirmwareVolumeHandle The handle of the Firmware Volume that contains
355 the firmware file specified by DriverName.
356 @param DriverName The Driver name to put in the Scheduled state
357
358 @retval EFI_SUCCESS The file was found in the untrusted state, and it
359 was promoted to the trusted state.
360 @retval EFI_NOT_FOUND The file was not found in the untrusted state.
361
362 **/
363 EFI_STATUS
364 EFIAPI
365 CoreTrust (
366 IN EFI_HANDLE FirmwareVolumeHandle,
367 IN EFI_GUID *DriverName
368 )
369 {
370 LIST_ENTRY *Link;
371 EFI_CORE_DRIVER_ENTRY *DriverEntry;
372
373 //
374 // Check every driver
375 //
376 for (Link = mDiscoveredList.ForwardLink; Link != &mDiscoveredList; Link = Link->ForwardLink) {
377 DriverEntry = CR(Link, EFI_CORE_DRIVER_ENTRY, Link, EFI_CORE_DRIVER_ENTRY_SIGNATURE);
378 if (DriverEntry->FvHandle == FirmwareVolumeHandle &&
379 DriverEntry->Untrusted &&
380 CompareGuid (DriverName, &DriverEntry->FileName)) {
381 //
382 // Transition driver from Untrusted to Scheduled state.
383 //
384 CoreAcquireDispatcherLock ();
385 DriverEntry->Untrusted = FALSE;
386 DriverEntry->Scheduled = TRUE;
387 InsertTailList (&mScheduledQueue, &DriverEntry->ScheduledLink);
388 CoreReleaseDispatcherLock ();
389
390 return EFI_SUCCESS;
391 }
392 }
393 return EFI_NOT_FOUND;
394 }
395
396
397 /**
398 An empty function to pass error checking of CreateEventEx ().
399
400 @param Event Event whose notification function is being invoked.
401 @param Context Pointer to the notification function's context,
402 which is implementation-dependent.
403
404 **/
405 VOID
406 EFIAPI
407 CoreEmptyCallbackFunction (
408 IN EFI_EVENT Event,
409 IN VOID *Context
410 )
411 {
412 return;
413 }
414
415 /**
416 This is the main Dispatcher for DXE and it exits when there are no more
417 drivers to run. Drain the mScheduledQueue and load and start a PE
418 image for each driver. Search the mDiscoveredList to see if any driver can
419 be placed on the mScheduledQueue. If no drivers are placed on the
420 mScheduledQueue exit the function. On exit it is assumed the Bds()
421 will be called, and when the Bds() exits the Dispatcher will be called
422 again.
423
424 @retval EFI_ALREADY_STARTED The DXE Dispatcher is already running
425 @retval EFI_NOT_FOUND No DXE Drivers were dispatched
426 @retval EFI_SUCCESS One or more DXE Drivers were dispatched
427
428 **/
429 EFI_STATUS
430 EFIAPI
431 CoreDispatcher (
432 VOID
433 )
434 {
435 EFI_STATUS Status;
436 EFI_STATUS ReturnStatus;
437 LIST_ENTRY *Link;
438 EFI_CORE_DRIVER_ENTRY *DriverEntry;
439 BOOLEAN ReadyToRun;
440 EFI_EVENT DxeDispatchEvent;
441
442
443 if (gDispatcherRunning) {
444 //
445 // If the dispatcher is running don't let it be restarted.
446 //
447 return EFI_ALREADY_STARTED;
448 }
449
450 gDispatcherRunning = TRUE;
451
452 Status = CoreCreateEventEx (
453 EVT_NOTIFY_SIGNAL,
454 TPL_NOTIFY,
455 CoreEmptyCallbackFunction,
456 NULL,
457 &gEfiEventDxeDispatchGuid,
458 &DxeDispatchEvent
459 );
460 if (EFI_ERROR (Status)) {
461 return Status;
462 }
463
464 ReturnStatus = EFI_NOT_FOUND;
465 do {
466 //
467 // Drain the Scheduled Queue
468 //
469 while (!IsListEmpty (&mScheduledQueue)) {
470 DriverEntry = CR (
471 mScheduledQueue.ForwardLink,
472 EFI_CORE_DRIVER_ENTRY,
473 ScheduledLink,
474 EFI_CORE_DRIVER_ENTRY_SIGNATURE
475 );
476
477 //
478 // Load the DXE Driver image into memory. If the Driver was transitioned from
479 // Untrused to Scheduled it would have already been loaded so we may need to
480 // skip the LoadImage
481 //
482 if (DriverEntry->ImageHandle == NULL && !DriverEntry->IsFvImage) {
483 DEBUG ((DEBUG_INFO, "Loading driver %g\n", &DriverEntry->FileName));
484 Status = CoreLoadImage (
485 FALSE,
486 gDxeCoreImageHandle,
487 DriverEntry->FvFileDevicePath,
488 NULL,
489 0,
490 &DriverEntry->ImageHandle
491 );
492
493 //
494 // Update the driver state to reflect that it's been loaded
495 //
496 if (EFI_ERROR (Status)) {
497 CoreAcquireDispatcherLock ();
498
499 if (Status == EFI_SECURITY_VIOLATION) {
500 //
501 // Take driver from Scheduled to Untrused state
502 //
503 DriverEntry->Untrusted = TRUE;
504 } else {
505 //
506 // The DXE Driver could not be loaded, and do not attempt to load or start it again.
507 // Take driver from Scheduled to Initialized.
508 //
509 // This case include the Never Trusted state if EFI_ACCESS_DENIED is returned
510 //
511 DriverEntry->Initialized = TRUE;
512 }
513
514 DriverEntry->Scheduled = FALSE;
515 RemoveEntryList (&DriverEntry->ScheduledLink);
516
517 CoreReleaseDispatcherLock ();
518
519 //
520 // If it's an error don't try the StartImage
521 //
522 continue;
523 }
524 }
525
526 CoreAcquireDispatcherLock ();
527
528 DriverEntry->Scheduled = FALSE;
529 DriverEntry->Initialized = TRUE;
530 RemoveEntryList (&DriverEntry->ScheduledLink);
531
532 CoreReleaseDispatcherLock ();
533
534
535 if (DriverEntry->IsFvImage) {
536 //
537 // Produce a firmware volume block protocol for FvImage so it gets dispatched from.
538 //
539 Status = CoreProcessFvImageFile (DriverEntry->Fv, DriverEntry->FvHandle, &DriverEntry->FileName);
540 } else {
541 REPORT_STATUS_CODE_WITH_EXTENDED_DATA (
542 EFI_PROGRESS_CODE,
543 (EFI_SOFTWARE_DXE_CORE | EFI_SW_PC_INIT_BEGIN),
544 &DriverEntry->ImageHandle,
545 sizeof (DriverEntry->ImageHandle)
546 );
547
548 Status = CoreStartImage (DriverEntry->ImageHandle, NULL, NULL);
549
550 REPORT_STATUS_CODE_WITH_EXTENDED_DATA (
551 EFI_PROGRESS_CODE,
552 (EFI_SOFTWARE_DXE_CORE | EFI_SW_PC_INIT_END),
553 &DriverEntry->ImageHandle,
554 sizeof (DriverEntry->ImageHandle)
555 );
556 }
557
558 ReturnStatus = EFI_SUCCESS;
559 }
560
561 //
562 // Now DXE Dispatcher finished one round of dispatch, signal an event group
563 // so that SMM Dispatcher get chance to dispatch SMM Drivers which depend
564 // on UEFI protocols
565 //
566 if (!EFI_ERROR (ReturnStatus)) {
567 CoreSignalEvent (DxeDispatchEvent);
568 }
569
570 //
571 // Search DriverList for items to place on Scheduled Queue
572 //
573 ReadyToRun = FALSE;
574 for (Link = mDiscoveredList.ForwardLink; Link != &mDiscoveredList; Link = Link->ForwardLink) {
575 DriverEntry = CR (Link, EFI_CORE_DRIVER_ENTRY, Link, EFI_CORE_DRIVER_ENTRY_SIGNATURE);
576
577 if (DriverEntry->DepexProtocolError){
578 //
579 // If Section Extraction Protocol did not let the Depex be read before retry the read
580 //
581 Status = CoreGetDepexSectionAndPreProccess (DriverEntry);
582 }
583
584 if (DriverEntry->Dependent) {
585 if (CoreIsSchedulable (DriverEntry)) {
586 CoreInsertOnScheduledQueueWhileProcessingBeforeAndAfter (DriverEntry);
587 ReadyToRun = TRUE;
588 }
589 } else {
590 if (DriverEntry->Unrequested) {
591 DEBUG ((DEBUG_DISPATCH, "Evaluate DXE DEPEX for FFS(%g)\n", &DriverEntry->FileName));
592 DEBUG ((DEBUG_DISPATCH, " SOR = Not Requested\n"));
593 DEBUG ((DEBUG_DISPATCH, " RESULT = FALSE\n"));
594 }
595 }
596 }
597 } while (ReadyToRun);
598
599 //
600 // Close DXE dispatch Event
601 //
602 CoreCloseEvent (DxeDispatchEvent);
603
604 gDispatcherRunning = FALSE;
605
606 return ReturnStatus;
607 }
608
609
610 /**
611 Insert InsertedDriverEntry onto the mScheduledQueue. To do this you
612 must add any driver with a before dependency on InsertedDriverEntry first.
613 You do this by recursively calling this routine. After all the Befores are
614 processed you can add InsertedDriverEntry to the mScheduledQueue.
615 Then you can add any driver with an After dependency on InsertedDriverEntry
616 by recursively calling this routine.
617
618 @param InsertedDriverEntry The driver to insert on the ScheduledLink Queue
619
620 **/
621 VOID
622 CoreInsertOnScheduledQueueWhileProcessingBeforeAndAfter (
623 IN EFI_CORE_DRIVER_ENTRY *InsertedDriverEntry
624 )
625 {
626 LIST_ENTRY *Link;
627 EFI_CORE_DRIVER_ENTRY *DriverEntry;
628
629 //
630 // Process Before Dependency
631 //
632 for (Link = mDiscoveredList.ForwardLink; Link != &mDiscoveredList; Link = Link->ForwardLink) {
633 DriverEntry = CR(Link, EFI_CORE_DRIVER_ENTRY, Link, EFI_CORE_DRIVER_ENTRY_SIGNATURE);
634 if (DriverEntry->Before && DriverEntry->Dependent && DriverEntry != InsertedDriverEntry) {
635 DEBUG ((DEBUG_DISPATCH, "Evaluate DXE DEPEX for FFS(%g)\n", &DriverEntry->FileName));
636 DEBUG ((DEBUG_DISPATCH, " BEFORE FFS(%g) = ", &DriverEntry->BeforeAfterGuid));
637 if (CompareGuid (&InsertedDriverEntry->FileName, &DriverEntry->BeforeAfterGuid)) {
638 //
639 // Recursively process BEFORE
640 //
641 DEBUG ((DEBUG_DISPATCH, "TRUE\n END\n RESULT = TRUE\n"));
642 CoreInsertOnScheduledQueueWhileProcessingBeforeAndAfter (DriverEntry);
643 } else {
644 DEBUG ((DEBUG_DISPATCH, "FALSE\n END\n RESULT = FALSE\n"));
645 }
646 }
647 }
648
649 //
650 // Convert driver from Dependent to Scheduled state
651 //
652 CoreAcquireDispatcherLock ();
653
654 InsertedDriverEntry->Dependent = FALSE;
655 InsertedDriverEntry->Scheduled = TRUE;
656 InsertTailList (&mScheduledQueue, &InsertedDriverEntry->ScheduledLink);
657
658 CoreReleaseDispatcherLock ();
659
660 //
661 // Process After Dependency
662 //
663 for (Link = mDiscoveredList.ForwardLink; Link != &mDiscoveredList; Link = Link->ForwardLink) {
664 DriverEntry = CR(Link, EFI_CORE_DRIVER_ENTRY, Link, EFI_CORE_DRIVER_ENTRY_SIGNATURE);
665 if (DriverEntry->After && DriverEntry->Dependent && DriverEntry != InsertedDriverEntry) {
666 DEBUG ((DEBUG_DISPATCH, "Evaluate DXE DEPEX for FFS(%g)\n", &DriverEntry->FileName));
667 DEBUG ((DEBUG_DISPATCH, " AFTER FFS(%g) = ", &DriverEntry->BeforeAfterGuid));
668 if (CompareGuid (&InsertedDriverEntry->FileName, &DriverEntry->BeforeAfterGuid)) {
669 //
670 // Recursively process AFTER
671 //
672 DEBUG ((DEBUG_DISPATCH, "TRUE\n END\n RESULT = TRUE\n"));
673 CoreInsertOnScheduledQueueWhileProcessingBeforeAndAfter (DriverEntry);
674 } else {
675 DEBUG ((DEBUG_DISPATCH, "FALSE\n END\n RESULT = FALSE\n"));
676 }
677 }
678 }
679 }
680
681
682 /**
683 Return TRUE if the Fv has been processed, FALSE if not.
684
685 @param FvHandle The handle of a FV that's being tested
686
687 @retval TRUE Fv protocol on FvHandle has been processed
688 @retval FALSE Fv protocol on FvHandle has not yet been processed
689
690 **/
691 BOOLEAN
692 FvHasBeenProcessed (
693 IN EFI_HANDLE FvHandle
694 )
695 {
696 LIST_ENTRY *Link;
697 KNOWN_HANDLE *KnownHandle;
698
699 for (Link = mFvHandleList.ForwardLink; Link != &mFvHandleList; Link = Link->ForwardLink) {
700 KnownHandle = CR(Link, KNOWN_HANDLE, Link, KNOWN_HANDLE_SIGNATURE);
701 if (KnownHandle->Handle == FvHandle) {
702 return TRUE;
703 }
704 }
705 return FALSE;
706 }
707
708
709 /**
710 Remember that Fv protocol on FvHandle has had it's drivers placed on the
711 mDiscoveredList. This fucntion adds entries on the mFvHandleList if new
712 entry is different from one in mFvHandleList by checking FvImage Guid.
713 Items are never removed/freed from the mFvHandleList.
714
715 @param FvHandle The handle of a FV that has been processed
716
717 @return A point to new added FvHandle entry. If FvHandle with the same FvImage guid
718 has been added, NULL will return.
719
720 **/
721 KNOWN_HANDLE *
722 FvIsBeingProcesssed (
723 IN EFI_HANDLE FvHandle
724 )
725 {
726 EFI_STATUS Status;
727 EFI_GUID FvNameGuid;
728 BOOLEAN FvNameGuidIsFound;
729 UINT32 ExtHeaderOffset;
730 EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *Fvb;
731 EFI_FIRMWARE_VOLUME_HEADER *FwVolHeader;
732 EFI_FV_BLOCK_MAP_ENTRY *BlockMap;
733 UINTN LbaOffset;
734 UINTN Index;
735 EFI_LBA LbaIndex;
736 LIST_ENTRY *Link;
737 KNOWN_HANDLE *KnownHandle;
738
739 //
740 // Get the FirmwareVolumeBlock protocol on that handle
741 //
742 FvNameGuidIsFound = FALSE;
743 Status = CoreHandleProtocol (FvHandle, &gEfiFirmwareVolumeBlockProtocolGuid, (VOID **)&Fvb);
744 if (!EFI_ERROR (Status)) {
745 //
746 // Get the full FV header based on FVB protocol.
747 //
748 ASSERT (Fvb != NULL);
749 Status = GetFwVolHeader (Fvb, &FwVolHeader);
750 if (!EFI_ERROR (Status)) {
751 ASSERT (FwVolHeader != NULL);
752 if (VerifyFvHeaderChecksum (FwVolHeader) && FwVolHeader->ExtHeaderOffset != 0) {
753 ExtHeaderOffset = (UINT32) FwVolHeader->ExtHeaderOffset;
754 BlockMap = FwVolHeader->BlockMap;
755 LbaIndex = 0;
756 LbaOffset = 0;
757 //
758 // Find LbaIndex and LbaOffset for FV extension header based on BlockMap.
759 //
760 while ((BlockMap->NumBlocks != 0) || (BlockMap->Length != 0)) {
761 for (Index = 0; Index < BlockMap->NumBlocks && ExtHeaderOffset >= BlockMap->Length; Index ++) {
762 ExtHeaderOffset -= BlockMap->Length;
763 LbaIndex ++;
764 }
765 //
766 // Check whether FvExtHeader is crossing the multi block range.
767 //
768 if (Index < BlockMap->NumBlocks) {
769 LbaOffset = ExtHeaderOffset;
770 break;
771 }
772 BlockMap++;
773 }
774 //
775 // Read FvNameGuid from FV extension header.
776 //
777 Status = ReadFvbData (Fvb, &LbaIndex, &LbaOffset, sizeof (FvNameGuid), (UINT8 *) &FvNameGuid);
778 if (!EFI_ERROR (Status)) {
779 FvNameGuidIsFound = TRUE;
780 }
781 }
782 CoreFreePool (FwVolHeader);
783 }
784 }
785
786 if (FvNameGuidIsFound) {
787 //
788 // Check whether the FV image with the found FvNameGuid has been processed.
789 //
790 for (Link = mFvHandleList.ForwardLink; Link != &mFvHandleList; Link = Link->ForwardLink) {
791 KnownHandle = CR(Link, KNOWN_HANDLE, Link, KNOWN_HANDLE_SIGNATURE);
792 if (CompareGuid (&FvNameGuid, &KnownHandle->FvNameGuid)) {
793 DEBUG ((EFI_D_ERROR, "FvImage on FvHandle %p and %p has the same FvNameGuid %g.\n", FvHandle, KnownHandle->Handle, FvNameGuid));
794 return NULL;
795 }
796 }
797 }
798
799 KnownHandle = AllocateZeroPool (sizeof (KNOWN_HANDLE));
800 ASSERT (KnownHandle != NULL);
801
802 KnownHandle->Signature = KNOWN_HANDLE_SIGNATURE;
803 KnownHandle->Handle = FvHandle;
804 if (FvNameGuidIsFound) {
805 CopyGuid (&KnownHandle->FvNameGuid, &FvNameGuid);
806 }
807 InsertTailList (&mFvHandleList, &KnownHandle->Link);
808 return KnownHandle;
809 }
810
811
812
813
814 /**
815 Convert FvHandle and DriverName into an EFI device path
816
817 @param Fv Fv protocol, needed to read Depex info out of
818 FLASH.
819 @param FvHandle Handle for Fv, needed in the
820 EFI_CORE_DRIVER_ENTRY so that the PE image can be
821 read out of the FV at a later time.
822 @param DriverName Name of driver to add to mDiscoveredList.
823
824 @return Pointer to device path constructed from FvHandle and DriverName
825
826 **/
827 EFI_DEVICE_PATH_PROTOCOL *
828 CoreFvToDevicePath (
829 IN EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv,
830 IN EFI_HANDLE FvHandle,
831 IN EFI_GUID *DriverName
832 )
833 {
834 EFI_STATUS Status;
835 EFI_DEVICE_PATH_PROTOCOL *FvDevicePath;
836 EFI_DEVICE_PATH_PROTOCOL *FileNameDevicePath;
837
838 //
839 // Remember the device path of the FV
840 //
841 Status = CoreHandleProtocol (FvHandle, &gEfiDevicePathProtocolGuid, (VOID **)&FvDevicePath);
842 if (EFI_ERROR (Status)) {
843 FileNameDevicePath = NULL;
844 } else {
845 //
846 // Build a device path to the file in the FV to pass into gBS->LoadImage
847 //
848 EfiInitializeFwVolDevicepathNode (&mFvDevicePath.File, DriverName);
849 SetDevicePathEndNode (&mFvDevicePath.End);
850
851 FileNameDevicePath = AppendDevicePath (
852 FvDevicePath,
853 (EFI_DEVICE_PATH_PROTOCOL *)&mFvDevicePath
854 );
855 }
856
857 return FileNameDevicePath;
858 }
859
860
861
862 /**
863 Add an entry to the mDiscoveredList. Allocate memory to store the DriverEntry,
864 and initilize any state variables. Read the Depex from the FV and store it
865 in DriverEntry. Pre-process the Depex to set the SOR, Before and After state.
866 The Discovered list is never free'ed and contains booleans that represent the
867 other possible DXE driver states.
868
869 @param Fv Fv protocol, needed to read Depex info out of
870 FLASH.
871 @param FvHandle Handle for Fv, needed in the
872 EFI_CORE_DRIVER_ENTRY so that the PE image can be
873 read out of the FV at a later time.
874 @param DriverName Name of driver to add to mDiscoveredList.
875 @param Type Fv File Type of file to add to mDiscoveredList.
876
877 @retval EFI_SUCCESS If driver was added to the mDiscoveredList.
878 @retval EFI_ALREADY_STARTED The driver has already been started. Only one
879 DriverName may be active in the system at any one
880 time.
881
882 **/
883 EFI_STATUS
884 CoreAddToDriverList (
885 IN EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv,
886 IN EFI_HANDLE FvHandle,
887 IN EFI_GUID *DriverName,
888 IN EFI_FV_FILETYPE Type
889 )
890 {
891 EFI_CORE_DRIVER_ENTRY *DriverEntry;
892
893
894 //
895 // Create the Driver Entry for the list. ZeroPool initializes lots of variables to
896 // NULL or FALSE.
897 //
898 DriverEntry = AllocateZeroPool (sizeof (EFI_CORE_DRIVER_ENTRY));
899 ASSERT (DriverEntry != NULL);
900 if (Type == EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE) {
901 DriverEntry->IsFvImage = TRUE;
902 }
903
904 DriverEntry->Signature = EFI_CORE_DRIVER_ENTRY_SIGNATURE;
905 CopyGuid (&DriverEntry->FileName, DriverName);
906 DriverEntry->FvHandle = FvHandle;
907 DriverEntry->Fv = Fv;
908 DriverEntry->FvFileDevicePath = CoreFvToDevicePath (Fv, FvHandle, DriverName);
909
910 CoreGetDepexSectionAndPreProccess (DriverEntry);
911
912 CoreAcquireDispatcherLock ();
913
914 InsertTailList (&mDiscoveredList, &DriverEntry->Link);
915
916 CoreReleaseDispatcherLock ();
917
918 return EFI_SUCCESS;
919 }
920
921
922 /**
923 Check if a FV Image type file (EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE) is
924 described by a EFI_HOB_FIRMWARE_VOLUME2 Hob.
925
926 @param FvNameGuid The FV image guid specified.
927 @param DriverName The driver guid specified.
928
929 @retval TRUE This file is found in a EFI_HOB_FIRMWARE_VOLUME2
930 Hob.
931 @retval FALSE Not found.
932
933 **/
934 BOOLEAN
935 FvFoundInHobFv2 (
936 IN CONST EFI_GUID *FvNameGuid,
937 IN CONST EFI_GUID *DriverName
938 )
939 {
940 EFI_PEI_HOB_POINTERS HobFv2;
941
942 HobFv2.Raw = GetHobList ();
943
944 while ((HobFv2.Raw = GetNextHob (EFI_HOB_TYPE_FV2, HobFv2.Raw)) != NULL) {
945 //
946 // Compare parent FvNameGuid and FileGuid both.
947 //
948 if (CompareGuid (DriverName, &HobFv2.FirmwareVolume2->FileName) &&
949 CompareGuid (FvNameGuid, &HobFv2.FirmwareVolume2->FvName)) {
950 return TRUE;
951 }
952 HobFv2.Raw = GET_NEXT_HOB (HobFv2);
953 }
954
955 return FALSE;
956 }
957
958
959
960 /**
961 Get the driver from the FV through driver name, and produce a FVB protocol on FvHandle.
962
963 @param Fv The FIRMWARE_VOLUME protocol installed on the FV.
964 @param FvHandle The handle which FVB protocol installed on.
965 @param DriverName The driver guid specified.
966
967 @retval EFI_OUT_OF_RESOURCES No enough memory or other resource.
968 @retval EFI_VOLUME_CORRUPTED Corrupted volume.
969 @retval EFI_SUCCESS Function successfully returned.
970
971 **/
972 EFI_STATUS
973 CoreProcessFvImageFile (
974 IN EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv,
975 IN EFI_HANDLE FvHandle,
976 IN EFI_GUID *DriverName
977 )
978 {
979 EFI_STATUS Status;
980 EFI_SECTION_TYPE SectionType;
981 UINT32 AuthenticationStatus;
982 VOID *Buffer;
983 VOID *AlignedBuffer;
984 UINTN BufferSize;
985 EFI_FIRMWARE_VOLUME_HEADER *FvHeader;
986 UINT32 FvAlignment;
987
988 //
989 // Read the first (and only the first) firmware volume section
990 //
991 SectionType = EFI_SECTION_FIRMWARE_VOLUME_IMAGE;
992 FvHeader = NULL;
993 FvAlignment = 0;
994 Buffer = NULL;
995 BufferSize = 0;
996 AlignedBuffer = NULL;
997 Status = Fv->ReadSection (
998 Fv,
999 DriverName,
1000 SectionType,
1001 0,
1002 &Buffer,
1003 &BufferSize,
1004 &AuthenticationStatus
1005 );
1006 if (!EFI_ERROR (Status)) {
1007 //
1008 // FvImage should be at its required alignment.
1009 //
1010 FvHeader = (EFI_FIRMWARE_VOLUME_HEADER *) Buffer;
1011 //
1012 // Get FvHeader alignment
1013 //
1014 FvAlignment = 1 << ((FvHeader->Attributes & EFI_FVB2_ALIGNMENT) >> 16);
1015 //
1016 // FvAlignment must be greater than or equal to 8 bytes of the minimum FFS alignment value.
1017 //
1018 if (FvAlignment < 8) {
1019 FvAlignment = 8;
1020 }
1021 //
1022 // Allocate the aligned buffer for the FvImage.
1023 //
1024 AlignedBuffer = AllocateAlignedPages (EFI_SIZE_TO_PAGES (BufferSize), (UINTN) FvAlignment);
1025 if (AlignedBuffer == NULL) {
1026 Status = EFI_OUT_OF_RESOURCES;
1027 } else {
1028 //
1029 // Move FvImage into the aligned buffer and release the original buffer.
1030 //
1031 CopyMem (AlignedBuffer, Buffer, BufferSize);
1032 CoreFreePool (Buffer);
1033 Buffer = NULL;
1034 //
1035 // Produce a FVB protocol for the file
1036 //
1037 Status = ProduceFVBProtocolOnBuffer (
1038 (EFI_PHYSICAL_ADDRESS) (UINTN) AlignedBuffer,
1039 (UINT64)BufferSize,
1040 FvHandle,
1041 NULL
1042 );
1043 }
1044 }
1045
1046 if (EFI_ERROR (Status)) {
1047 //
1048 // ReadSection or Produce FVB failed, Free data buffer
1049 //
1050 if (Buffer != NULL) {
1051 FreePool (Buffer);
1052 }
1053
1054 if (AlignedBuffer != NULL) {
1055 FreeAlignedPages (AlignedBuffer, EFI_SIZE_TO_PAGES (BufferSize));
1056 }
1057 }
1058
1059 return Status;
1060 }
1061
1062
1063 /**
1064 Event notification that is fired every time a FV dispatch protocol is added.
1065 More than one protocol may have been added when this event is fired, so you
1066 must loop on CoreLocateHandle () to see how many protocols were added and
1067 do the following to each FV:
1068 If the Fv has already been processed, skip it. If the Fv has not been
1069 processed then mark it as being processed, as we are about to process it.
1070 Read the Fv and add any driver in the Fv to the mDiscoveredList.The
1071 mDiscoveredList is never free'ed and contains variables that define
1072 the other states the DXE driver transitions to..
1073 While you are at it read the A Priori file into memory.
1074 Place drivers in the A Priori list onto the mScheduledQueue.
1075
1076 @param Event The Event that is being processed, not used.
1077 @param Context Event Context, not used.
1078
1079 **/
1080 VOID
1081 EFIAPI
1082 CoreFwVolEventProtocolNotify (
1083 IN EFI_EVENT Event,
1084 IN VOID *Context
1085 )
1086 {
1087 EFI_STATUS Status;
1088 EFI_STATUS GetNextFileStatus;
1089 EFI_STATUS SecurityStatus;
1090 EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv;
1091 EFI_DEVICE_PATH_PROTOCOL *FvDevicePath;
1092 EFI_HANDLE FvHandle;
1093 UINTN BufferSize;
1094 EFI_GUID NameGuid;
1095 UINTN Key;
1096 EFI_FV_FILETYPE Type;
1097 EFI_FV_FILE_ATTRIBUTES Attributes;
1098 UINTN Size;
1099 EFI_CORE_DRIVER_ENTRY *DriverEntry;
1100 EFI_GUID *AprioriFile;
1101 UINTN AprioriEntryCount;
1102 UINTN Index;
1103 LIST_ENTRY *Link;
1104 UINT32 AuthenticationStatus;
1105 UINTN SizeOfBuffer;
1106 VOID *DepexBuffer;
1107 KNOWN_HANDLE *KnownHandle;
1108
1109 while (TRUE) {
1110 BufferSize = sizeof (EFI_HANDLE);
1111 Status = CoreLocateHandle (
1112 ByRegisterNotify,
1113 NULL,
1114 mFwVolEventRegistration,
1115 &BufferSize,
1116 &FvHandle
1117 );
1118 if (EFI_ERROR (Status)) {
1119 //
1120 // If no more notification events exit
1121 //
1122 return;
1123 }
1124
1125 if (FvHasBeenProcessed (FvHandle)) {
1126 //
1127 // This Fv has already been processed so lets skip it!
1128 //
1129 continue;
1130 }
1131
1132 //
1133 // Since we are about to process this Fv mark it as processed.
1134 //
1135 KnownHandle = FvIsBeingProcesssed (FvHandle);
1136 if (KnownHandle == NULL) {
1137 //
1138 // The FV with the same FV name guid has already been processed.
1139 // So lets skip it!
1140 //
1141 continue;
1142 }
1143
1144 Status = CoreHandleProtocol (FvHandle, &gEfiFirmwareVolume2ProtocolGuid, (VOID **)&Fv);
1145 if (EFI_ERROR (Status) || Fv == NULL) {
1146 //
1147 // FvHandle must have Firmware Volume2 protocol thus we should never get here.
1148 //
1149 ASSERT (FALSE);
1150 continue;
1151 }
1152
1153 Status = CoreHandleProtocol (FvHandle, &gEfiDevicePathProtocolGuid, (VOID **)&FvDevicePath);
1154 if (EFI_ERROR (Status)) {
1155 //
1156 // The Firmware volume doesn't have device path, can't be dispatched.
1157 //
1158 continue;
1159 }
1160
1161 //
1162 // Evaluate the authentication status of the Firmware Volume through
1163 // Security Architectural Protocol
1164 //
1165 if (gSecurity != NULL) {
1166 SecurityStatus = gSecurity->FileAuthenticationState (
1167 gSecurity,
1168 0,
1169 FvDevicePath
1170 );
1171 if (SecurityStatus != EFI_SUCCESS) {
1172 //
1173 // Security check failed. The firmware volume should not be used for any purpose.
1174 //
1175 continue;
1176 }
1177 }
1178
1179 //
1180 // Discover Drivers in FV and add them to the Discovered Driver List.
1181 // Process EFI_FV_FILETYPE_DRIVER type and then EFI_FV_FILETYPE_COMBINED_PEIM_DRIVER
1182 // EFI_FV_FILETYPE_DXE_CORE is processed to produce a Loaded Image protocol for the core
1183 // EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE is processed to create a Fvb
1184 //
1185 for (Index = 0; Index < sizeof (mDxeFileTypes) / sizeof (EFI_FV_FILETYPE); Index++) {
1186 //
1187 // Initialize the search key
1188 //
1189 Key = 0;
1190 do {
1191 Type = mDxeFileTypes[Index];
1192 GetNextFileStatus = Fv->GetNextFile (
1193 Fv,
1194 &Key,
1195 &Type,
1196 &NameGuid,
1197 &Attributes,
1198 &Size
1199 );
1200 if (!EFI_ERROR (GetNextFileStatus)) {
1201 if (Type == EFI_FV_FILETYPE_DXE_CORE) {
1202 //
1203 // If this is the DXE core fill in it's DevicePath & DeviceHandle
1204 //
1205 if (gDxeCoreLoadedImage->FilePath == NULL) {
1206 if (CompareGuid (&NameGuid, gDxeCoreFileName)) {
1207 //
1208 // Maybe One specail Fv cantains only one DXE_CORE module, so its device path must
1209 // be initialized completely.
1210 //
1211 EfiInitializeFwVolDevicepathNode (&mFvDevicePath.File, &NameGuid);
1212 SetDevicePathEndNode (&mFvDevicePath.End);
1213
1214 gDxeCoreLoadedImage->FilePath = DuplicateDevicePath (
1215 (EFI_DEVICE_PATH_PROTOCOL *)&mFvDevicePath
1216 );
1217 gDxeCoreLoadedImage->DeviceHandle = FvHandle;
1218 }
1219 }
1220 } else if (Type == EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE) {
1221 //
1222 // Check if this EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE file has already
1223 // been extracted.
1224 //
1225 if (FvFoundInHobFv2 (&KnownHandle->FvNameGuid, &NameGuid)) {
1226 continue;
1227 }
1228
1229 //
1230 // Check if this EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE file has PEI depex section.
1231 //
1232 DepexBuffer = NULL;
1233 SizeOfBuffer = 0;
1234 Status = Fv->ReadSection (
1235 Fv,
1236 &NameGuid,
1237 EFI_SECTION_PEI_DEPEX,
1238 0,
1239 &DepexBuffer,
1240 &SizeOfBuffer,
1241 &AuthenticationStatus
1242 );
1243 if (!EFI_ERROR (Status)) {
1244 //
1245 // If PEI depex section is found, this FV image will be ignored in DXE phase.
1246 // Now, DxeCore doesn't support FV image with more one type DEPEX section.
1247 //
1248 FreePool (DepexBuffer);
1249 continue;
1250 }
1251
1252 //
1253 // Check if this EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE file has SMM depex section.
1254 //
1255 DepexBuffer = NULL;
1256 SizeOfBuffer = 0;
1257 Status = Fv->ReadSection (
1258 Fv,
1259 &NameGuid,
1260 EFI_SECTION_SMM_DEPEX,
1261 0,
1262 &DepexBuffer,
1263 &SizeOfBuffer,
1264 &AuthenticationStatus
1265 );
1266 if (!EFI_ERROR (Status)) {
1267 //
1268 // If SMM depex section is found, this FV image will be ignored in DXE phase.
1269 // Now, DxeCore doesn't support FV image with more one type DEPEX section.
1270 //
1271 FreePool (DepexBuffer);
1272 continue;
1273 }
1274
1275 //
1276 // Check if this EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE file has DXE depex section.
1277 //
1278 DepexBuffer = NULL;
1279 SizeOfBuffer = 0;
1280 Status = Fv->ReadSection (
1281 Fv,
1282 &NameGuid,
1283 EFI_SECTION_DXE_DEPEX,
1284 0,
1285 &DepexBuffer,
1286 &SizeOfBuffer,
1287 &AuthenticationStatus
1288 );
1289 if (EFI_ERROR (Status)) {
1290 //
1291 // If no depex section, produce a firmware volume block protocol for it so it gets dispatched from.
1292 //
1293 CoreProcessFvImageFile (Fv, FvHandle, &NameGuid);
1294 } else {
1295 //
1296 // If depex section is found, this FV image will be dispatched until its depex is evaluated to TRUE.
1297 //
1298 FreePool (DepexBuffer);
1299 CoreAddToDriverList (Fv, FvHandle, &NameGuid, Type);
1300 }
1301 } else {
1302 //
1303 // Transition driver from Undiscovered to Discovered state
1304 //
1305 CoreAddToDriverList (Fv, FvHandle, &NameGuid, Type);
1306 }
1307 }
1308 } while (!EFI_ERROR (GetNextFileStatus));
1309 }
1310
1311 //
1312 // Read the array of GUIDs from the Apriori file if it is present in the firmware volume
1313 //
1314 AprioriFile = NULL;
1315 Status = Fv->ReadSection (
1316 Fv,
1317 &gAprioriGuid,
1318 EFI_SECTION_RAW,
1319 0,
1320 (VOID **)&AprioriFile,
1321 &SizeOfBuffer,
1322 &AuthenticationStatus
1323 );
1324 if (!EFI_ERROR (Status)) {
1325 AprioriEntryCount = SizeOfBuffer / sizeof (EFI_GUID);
1326 } else {
1327 AprioriEntryCount = 0;
1328 }
1329
1330 //
1331 // Put drivers on Apriori List on the Scheduled queue. The Discovered List includes
1332 // drivers not in the current FV and these must be skipped since the a priori list
1333 // is only valid for the FV that it resided in.
1334 //
1335
1336 for (Index = 0; Index < AprioriEntryCount; Index++) {
1337 for (Link = mDiscoveredList.ForwardLink; Link != &mDiscoveredList; Link = Link->ForwardLink) {
1338 DriverEntry = CR(Link, EFI_CORE_DRIVER_ENTRY, Link, EFI_CORE_DRIVER_ENTRY_SIGNATURE);
1339 if (CompareGuid (&DriverEntry->FileName, &AprioriFile[Index]) &&
1340 (FvHandle == DriverEntry->FvHandle)) {
1341 CoreAcquireDispatcherLock ();
1342 DriverEntry->Dependent = FALSE;
1343 DriverEntry->Scheduled = TRUE;
1344 InsertTailList (&mScheduledQueue, &DriverEntry->ScheduledLink);
1345 CoreReleaseDispatcherLock ();
1346 DEBUG ((DEBUG_DISPATCH, "Evaluate DXE DEPEX for FFS(%g)\n", &DriverEntry->FileName));
1347 DEBUG ((DEBUG_DISPATCH, " RESULT = TRUE (Apriori)\n"));
1348 break;
1349 }
1350 }
1351 }
1352
1353 //
1354 // Free data allocated by Fv->ReadSection ()
1355 //
1356 CoreFreePool (AprioriFile);
1357 }
1358 }
1359
1360
1361
1362 /**
1363 Initialize the dispatcher. Initialize the notification function that runs when
1364 an FV2 protocol is added to the system.
1365
1366 **/
1367 VOID
1368 CoreInitializeDispatcher (
1369 VOID
1370 )
1371 {
1372 mFwVolEvent = EfiCreateProtocolNotifyEvent (
1373 &gEfiFirmwareVolume2ProtocolGuid,
1374 TPL_CALLBACK,
1375 CoreFwVolEventProtocolNotify,
1376 NULL,
1377 &mFwVolEventRegistration
1378 );
1379 }
1380
1381 //
1382 // Function only used in debug builds
1383 //
1384
1385 /**
1386 Traverse the discovered list for any drivers that were discovered but not loaded
1387 because the dependency experessions evaluated to false.
1388
1389 **/
1390 VOID
1391 CoreDisplayDiscoveredNotDispatched (
1392 VOID
1393 )
1394 {
1395 LIST_ENTRY *Link;
1396 EFI_CORE_DRIVER_ENTRY *DriverEntry;
1397
1398 for (Link = mDiscoveredList.ForwardLink;Link !=&mDiscoveredList; Link = Link->ForwardLink) {
1399 DriverEntry = CR(Link, EFI_CORE_DRIVER_ENTRY, Link, EFI_CORE_DRIVER_ENTRY_SIGNATURE);
1400 if (DriverEntry->Dependent) {
1401 DEBUG ((DEBUG_LOAD, "Driver %g was discovered but not loaded!!\n", &DriverEntry->FileName));
1402 }
1403 }
1404 }