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