]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
Update DxeCore handle FV Image file with Depex section per PI spec.
[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. Items are
712 never removed/freed from the mFvHandleList.
713
714 @param FvHandle The handle of a FV that has been processed
715
716 **/
717 VOID
718 FvIsBeingProcesssed (
719 IN EFI_HANDLE FvHandle
720 )
721 {
722 KNOWN_HANDLE *KnownHandle;
723
724 KnownHandle = AllocatePool (sizeof (KNOWN_HANDLE));
725 ASSERT (KnownHandle != NULL);
726
727 KnownHandle->Signature = KNOWN_HANDLE_SIGNATURE;
728 KnownHandle->Handle = FvHandle;
729 InsertTailList (&mFvHandleList, &KnownHandle->Link);
730 }
731
732
733
734
735 /**
736 Convert FvHandle and DriverName into an EFI device path
737
738 @param Fv Fv protocol, needed to read Depex info out of
739 FLASH.
740 @param FvHandle Handle for Fv, needed in the
741 EFI_CORE_DRIVER_ENTRY so that the PE image can be
742 read out of the FV at a later time.
743 @param DriverName Name of driver to add to mDiscoveredList.
744
745 @return Pointer to device path constructed from FvHandle and DriverName
746
747 **/
748 EFI_DEVICE_PATH_PROTOCOL *
749 CoreFvToDevicePath (
750 IN EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv,
751 IN EFI_HANDLE FvHandle,
752 IN EFI_GUID *DriverName
753 )
754 {
755 EFI_STATUS Status;
756 EFI_DEVICE_PATH_PROTOCOL *FvDevicePath;
757 EFI_DEVICE_PATH_PROTOCOL *FileNameDevicePath;
758
759 //
760 // Remember the device path of the FV
761 //
762 Status = CoreHandleProtocol (FvHandle, &gEfiDevicePathProtocolGuid, (VOID **)&FvDevicePath);
763 if (EFI_ERROR (Status)) {
764 FileNameDevicePath = NULL;
765 } else {
766 //
767 // Build a device path to the file in the FV to pass into gBS->LoadImage
768 //
769 EfiInitializeFwVolDevicepathNode (&mFvDevicePath.File, DriverName);
770 SetDevicePathEndNode (&mFvDevicePath.End);
771
772 FileNameDevicePath = AppendDevicePath (
773 FvDevicePath,
774 (EFI_DEVICE_PATH_PROTOCOL *)&mFvDevicePath
775 );
776 }
777
778 return FileNameDevicePath;
779 }
780
781
782
783 /**
784 Add an entry to the mDiscoveredList. Allocate memory to store the DriverEntry,
785 and initilize any state variables. Read the Depex from the FV and store it
786 in DriverEntry. Pre-process the Depex to set the SOR, Before and After state.
787 The Discovered list is never free'ed and contains booleans that represent the
788 other possible DXE driver states.
789
790 @param Fv Fv protocol, needed to read Depex info out of
791 FLASH.
792 @param FvHandle Handle for Fv, needed in the
793 EFI_CORE_DRIVER_ENTRY so that the PE image can be
794 read out of the FV at a later time.
795 @param DriverName Name of driver to add to mDiscoveredList.
796 @param Type Fv File Type of file to add to mDiscoveredList.
797
798 @retval EFI_SUCCESS If driver was added to the mDiscoveredList.
799 @retval EFI_ALREADY_STARTED The driver has already been started. Only one
800 DriverName may be active in the system at any one
801 time.
802
803 **/
804 EFI_STATUS
805 CoreAddToDriverList (
806 IN EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv,
807 IN EFI_HANDLE FvHandle,
808 IN EFI_GUID *DriverName,
809 IN EFI_FV_FILETYPE Type
810 )
811 {
812 EFI_CORE_DRIVER_ENTRY *DriverEntry;
813
814
815 //
816 // Create the Driver Entry for the list. ZeroPool initializes lots of variables to
817 // NULL or FALSE.
818 //
819 DriverEntry = AllocateZeroPool (sizeof (EFI_CORE_DRIVER_ENTRY));
820 ASSERT (DriverEntry != NULL);
821 if (Type == EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE) {
822 DriverEntry->IsFvImage = TRUE;
823 }
824
825 DriverEntry->Signature = EFI_CORE_DRIVER_ENTRY_SIGNATURE;
826 CopyGuid (&DriverEntry->FileName, DriverName);
827 DriverEntry->FvHandle = FvHandle;
828 DriverEntry->Fv = Fv;
829 DriverEntry->FvFileDevicePath = CoreFvToDevicePath (Fv, FvHandle, DriverName);
830
831 CoreGetDepexSectionAndPreProccess (DriverEntry);
832
833 CoreAcquireDispatcherLock ();
834
835 InsertTailList (&mDiscoveredList, &DriverEntry->Link);
836
837 CoreReleaseDispatcherLock ();
838
839 return EFI_SUCCESS;
840 }
841
842
843 /**
844 Check if a FV Image type file (EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE) is
845 described by a EFI_HOB_FIRMWARE_VOLUME2 Hob.
846
847 @param FvHandle The handle which FVB protocol installed on.
848 @param DriverName The driver guid specified.
849
850 @retval TRUE This file is found in a EFI_HOB_FIRMWARE_VOLUME2
851 Hob.
852 @retval FALSE Not found.
853
854 **/
855 BOOLEAN
856 FvFoundInHobFv2 (
857 IN EFI_HANDLE FvHandle,
858 IN CONST EFI_GUID *DriverName
859 )
860 {
861 EFI_PEI_HOB_POINTERS HobFv2;
862
863 HobFv2.Raw = GetHobList ();
864
865 while ((HobFv2.Raw = GetNextHob (EFI_HOB_TYPE_FV2, HobFv2.Raw)) != NULL) {
866 if (CompareGuid (DriverName, &HobFv2.FirmwareVolume2->FileName)) {
867 return TRUE;
868 }
869 HobFv2.Raw = GET_NEXT_HOB (HobFv2);
870 }
871
872 return FALSE;
873 }
874
875
876
877 /**
878 Get the driver from the FV through driver name, and produce a FVB protocol on FvHandle.
879
880 @param Fv The FIRMWARE_VOLUME protocol installed on the FV.
881 @param FvHandle The handle which FVB protocol installed on.
882 @param DriverName The driver guid specified.
883
884 @retval EFI_OUT_OF_RESOURCES No enough memory or other resource.
885 @retval EFI_VOLUME_CORRUPTED Corrupted volume.
886 @retval EFI_SUCCESS Function successfully returned.
887
888 **/
889 EFI_STATUS
890 CoreProcessFvImageFile (
891 IN EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv,
892 IN EFI_HANDLE FvHandle,
893 IN EFI_GUID *DriverName
894 )
895 {
896 EFI_STATUS Status;
897 EFI_SECTION_TYPE SectionType;
898 UINT32 AuthenticationStatus;
899 VOID *Buffer;
900 VOID *AlignedBuffer;
901 UINTN BufferSize;
902 EFI_FIRMWARE_VOLUME_HEADER *FvHeader;
903 UINT32 FvAlignment;
904
905 //
906 // Read the first (and only the first) firmware volume section
907 //
908 SectionType = EFI_SECTION_FIRMWARE_VOLUME_IMAGE;
909 FvHeader = NULL;
910 FvAlignment = 0;
911 Buffer = NULL;
912 BufferSize = 0;
913 AlignedBuffer = NULL;
914 Status = Fv->ReadSection (
915 Fv,
916 DriverName,
917 SectionType,
918 0,
919 &Buffer,
920 &BufferSize,
921 &AuthenticationStatus
922 );
923 if (!EFI_ERROR (Status)) {
924 //
925 // FvImage should be at its required alignment.
926 //
927 FvHeader = (EFI_FIRMWARE_VOLUME_HEADER *) Buffer;
928 //
929 // Get FvHeader alignment
930 //
931 FvAlignment = 1 << ((FvHeader->Attributes & EFI_FVB2_ALIGNMENT) >> 16);
932 //
933 // FvAlignment must be greater than or equal to 8 bytes of the minimum FFS alignment value.
934 //
935 if (FvAlignment < 8) {
936 FvAlignment = 8;
937 }
938 //
939 // Allocate the aligned buffer for the FvImage.
940 //
941 AlignedBuffer = AllocateAlignedPages (EFI_SIZE_TO_PAGES (BufferSize), (UINTN) FvAlignment);
942 if (AlignedBuffer == NULL) {
943 Status = EFI_OUT_OF_RESOURCES;
944 } else {
945 //
946 // Move FvImage into the aligned buffer and release the original buffer.
947 //
948 CopyMem (AlignedBuffer, Buffer, BufferSize);
949 CoreFreePool (Buffer);
950 Buffer = NULL;
951 //
952 // Produce a FVB protocol for the file
953 //
954 Status = ProduceFVBProtocolOnBuffer (
955 (EFI_PHYSICAL_ADDRESS) (UINTN) AlignedBuffer,
956 (UINT64)BufferSize,
957 FvHandle,
958 NULL
959 );
960 }
961 }
962
963 if (EFI_ERROR (Status)) {
964 //
965 // ReadSection or Produce FVB failed, Free data buffer
966 //
967 if (Buffer != NULL) {
968 FreePool (Buffer);
969 }
970
971 if (AlignedBuffer != NULL) {
972 FreeAlignedPages (AlignedBuffer, EFI_SIZE_TO_PAGES (BufferSize));
973 }
974 }
975
976 return Status;
977 }
978
979
980 /**
981 Event notification that is fired every time a FV dispatch protocol is added.
982 More than one protocol may have been added when this event is fired, so you
983 must loop on CoreLocateHandle () to see how many protocols were added and
984 do the following to each FV:
985 If the Fv has already been processed, skip it. If the Fv has not been
986 processed then mark it as being processed, as we are about to process it.
987 Read the Fv and add any driver in the Fv to the mDiscoveredList.The
988 mDiscoveredList is never free'ed and contains variables that define
989 the other states the DXE driver transitions to..
990 While you are at it read the A Priori file into memory.
991 Place drivers in the A Priori list onto the mScheduledQueue.
992
993 @param Event The Event that is being processed, not used.
994 @param Context Event Context, not used.
995
996 **/
997 VOID
998 EFIAPI
999 CoreFwVolEventProtocolNotify (
1000 IN EFI_EVENT Event,
1001 IN VOID *Context
1002 )
1003 {
1004 EFI_STATUS Status;
1005 EFI_STATUS GetNextFileStatus;
1006 EFI_STATUS SecurityStatus;
1007 EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv;
1008 EFI_DEVICE_PATH_PROTOCOL *FvDevicePath;
1009 EFI_HANDLE FvHandle;
1010 UINTN BufferSize;
1011 EFI_GUID NameGuid;
1012 UINTN Key;
1013 EFI_FV_FILETYPE Type;
1014 EFI_FV_FILE_ATTRIBUTES Attributes;
1015 UINTN Size;
1016 EFI_CORE_DRIVER_ENTRY *DriverEntry;
1017 EFI_GUID *AprioriFile;
1018 UINTN AprioriEntryCount;
1019 UINTN Index;
1020 LIST_ENTRY *Link;
1021 UINT32 AuthenticationStatus;
1022 UINTN SizeOfBuffer;
1023 VOID *DepexBuffer;
1024
1025 while (TRUE) {
1026 BufferSize = sizeof (EFI_HANDLE);
1027 Status = CoreLocateHandle (
1028 ByRegisterNotify,
1029 NULL,
1030 mFwVolEventRegistration,
1031 &BufferSize,
1032 &FvHandle
1033 );
1034 if (EFI_ERROR (Status)) {
1035 //
1036 // If no more notification events exit
1037 //
1038 return;
1039 }
1040
1041 if (FvHasBeenProcessed (FvHandle)) {
1042 //
1043 // This Fv has already been processed so lets skip it!
1044 //
1045 continue;
1046 }
1047
1048 //
1049 // Since we are about to process this Fv mark it as processed.
1050 //
1051 FvIsBeingProcesssed (FvHandle);
1052
1053 Status = CoreHandleProtocol (FvHandle, &gEfiFirmwareVolume2ProtocolGuid, (VOID **)&Fv);
1054 if (EFI_ERROR (Status) || Fv == NULL) {
1055 //
1056 // FvHandle must have Firmware Volume2 protocol thus we should never get here.
1057 //
1058 ASSERT (FALSE);
1059 continue;
1060 }
1061
1062 Status = CoreHandleProtocol (FvHandle, &gEfiDevicePathProtocolGuid, (VOID **)&FvDevicePath);
1063 if (EFI_ERROR (Status)) {
1064 //
1065 // The Firmware volume doesn't have device path, can't be dispatched.
1066 //
1067 continue;
1068 }
1069
1070 //
1071 // Evaluate the authentication status of the Firmware Volume through
1072 // Security Architectural Protocol
1073 //
1074 if (gSecurity != NULL) {
1075 SecurityStatus = gSecurity->FileAuthenticationState (
1076 gSecurity,
1077 0,
1078 FvDevicePath
1079 );
1080 if (SecurityStatus != EFI_SUCCESS) {
1081 //
1082 // Security check failed. The firmware volume should not be used for any purpose.
1083 //
1084 continue;
1085 }
1086 }
1087
1088 //
1089 // Discover Drivers in FV and add them to the Discovered Driver List.
1090 // Process EFI_FV_FILETYPE_DRIVER type and then EFI_FV_FILETYPE_COMBINED_PEIM_DRIVER
1091 // EFI_FV_FILETYPE_DXE_CORE is processed to produce a Loaded Image protocol for the core
1092 // EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE is processed to create a Fvb
1093 //
1094 for (Index = 0; Index < sizeof (mDxeFileTypes) / sizeof (EFI_FV_FILETYPE); Index++) {
1095 //
1096 // Initialize the search key
1097 //
1098 Key = 0;
1099 do {
1100 Type = mDxeFileTypes[Index];
1101 GetNextFileStatus = Fv->GetNextFile (
1102 Fv,
1103 &Key,
1104 &Type,
1105 &NameGuid,
1106 &Attributes,
1107 &Size
1108 );
1109 if (!EFI_ERROR (GetNextFileStatus)) {
1110 if (Type == EFI_FV_FILETYPE_DXE_CORE) {
1111 //
1112 // If this is the DXE core fill in it's DevicePath & DeviceHandle
1113 //
1114 if (gDxeCoreLoadedImage->FilePath == NULL) {
1115 if (CompareGuid (&NameGuid, gDxeCoreFileName)) {
1116 //
1117 // Maybe One specail Fv cantains only one DXE_CORE module, so its device path must
1118 // be initialized completely.
1119 //
1120 EfiInitializeFwVolDevicepathNode (&mFvDevicePath.File, &NameGuid);
1121 SetDevicePathEndNode (&mFvDevicePath.End);
1122
1123 gDxeCoreLoadedImage->FilePath = DuplicateDevicePath (
1124 (EFI_DEVICE_PATH_PROTOCOL *)&mFvDevicePath
1125 );
1126 gDxeCoreLoadedImage->DeviceHandle = FvHandle;
1127 }
1128 }
1129 } else if (Type == EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE) {
1130 //
1131 // Check if this EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE file has already
1132 // been extracted.
1133 //
1134 if (FvFoundInHobFv2 (FvHandle, &NameGuid)) {
1135 continue;
1136 }
1137
1138 //
1139 // Check if this EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE file has PEI depex section.
1140 //
1141 DepexBuffer = NULL;
1142 SizeOfBuffer = 0;
1143 Status = Fv->ReadSection (
1144 Fv,
1145 &NameGuid,
1146 EFI_SECTION_PEI_DEPEX,
1147 0,
1148 &DepexBuffer,
1149 &SizeOfBuffer,
1150 &AuthenticationStatus
1151 );
1152 if (!EFI_ERROR (Status)) {
1153 //
1154 // If PEI depex section is found, this FV image will be ignored in DXE phase.
1155 // Now, DxeCore doesn't support FV image with more one type DEPEX section.
1156 //
1157 FreePool (DepexBuffer);
1158 continue;
1159 }
1160
1161 //
1162 // Check if this EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE file has SMM depex section.
1163 //
1164 DepexBuffer = NULL;
1165 SizeOfBuffer = 0;
1166 Status = Fv->ReadSection (
1167 Fv,
1168 &NameGuid,
1169 EFI_SECTION_SMM_DEPEX,
1170 0,
1171 &DepexBuffer,
1172 &SizeOfBuffer,
1173 &AuthenticationStatus
1174 );
1175 if (!EFI_ERROR (Status)) {
1176 //
1177 // If SMM depex section is found, this FV image will be ignored in DXE phase.
1178 // Now, DxeCore doesn't support FV image with more one type DEPEX section.
1179 //
1180 FreePool (DepexBuffer);
1181 continue;
1182 }
1183
1184 //
1185 // Check if this EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE file has DXE depex section.
1186 //
1187 DepexBuffer = NULL;
1188 SizeOfBuffer = 0;
1189 Status = Fv->ReadSection (
1190 Fv,
1191 &NameGuid,
1192 EFI_SECTION_DXE_DEPEX,
1193 0,
1194 &DepexBuffer,
1195 &SizeOfBuffer,
1196 &AuthenticationStatus
1197 );
1198 if (EFI_ERROR (Status)) {
1199 //
1200 // If no depex section, produce a firmware volume block protocol for it so it gets dispatched from.
1201 //
1202 CoreProcessFvImageFile (Fv, FvHandle, &NameGuid);
1203 } else {
1204 //
1205 // If depex section is found, this FV image will be dispatched until its depex is evaluated to TRUE.
1206 //
1207 FreePool (DepexBuffer);
1208 CoreAddToDriverList (Fv, FvHandle, &NameGuid, Type);
1209 }
1210 } else {
1211 //
1212 // Transition driver from Undiscovered to Discovered state
1213 //
1214 CoreAddToDriverList (Fv, FvHandle, &NameGuid, Type);
1215 }
1216 }
1217 } while (!EFI_ERROR (GetNextFileStatus));
1218 }
1219
1220 //
1221 // Read the array of GUIDs from the Apriori file if it is present in the firmware volume
1222 //
1223 AprioriFile = NULL;
1224 Status = Fv->ReadSection (
1225 Fv,
1226 &gAprioriGuid,
1227 EFI_SECTION_RAW,
1228 0,
1229 (VOID **)&AprioriFile,
1230 &SizeOfBuffer,
1231 &AuthenticationStatus
1232 );
1233 if (!EFI_ERROR (Status)) {
1234 AprioriEntryCount = SizeOfBuffer / sizeof (EFI_GUID);
1235 } else {
1236 AprioriEntryCount = 0;
1237 }
1238
1239 //
1240 // Put drivers on Apriori List on the Scheduled queue. The Discovered List includes
1241 // drivers not in the current FV and these must be skipped since the a priori list
1242 // is only valid for the FV that it resided in.
1243 //
1244
1245 for (Index = 0; Index < AprioriEntryCount; Index++) {
1246 for (Link = mDiscoveredList.ForwardLink; Link != &mDiscoveredList; Link = Link->ForwardLink) {
1247 DriverEntry = CR(Link, EFI_CORE_DRIVER_ENTRY, Link, EFI_CORE_DRIVER_ENTRY_SIGNATURE);
1248 if (CompareGuid (&DriverEntry->FileName, &AprioriFile[Index]) &&
1249 (FvHandle == DriverEntry->FvHandle)) {
1250 CoreAcquireDispatcherLock ();
1251 DriverEntry->Dependent = FALSE;
1252 DriverEntry->Scheduled = TRUE;
1253 InsertTailList (&mScheduledQueue, &DriverEntry->ScheduledLink);
1254 CoreReleaseDispatcherLock ();
1255 DEBUG ((DEBUG_DISPATCH, "Evaluate DXE DEPEX for FFS(%g)\n", &DriverEntry->FileName));
1256 DEBUG ((DEBUG_DISPATCH, " RESULT = TRUE (Apriori)\n"));
1257 break;
1258 }
1259 }
1260 }
1261
1262 //
1263 // Free data allocated by Fv->ReadSection ()
1264 //
1265 CoreFreePool (AprioriFile);
1266 }
1267 }
1268
1269
1270
1271 /**
1272 Initialize the dispatcher. Initialize the notification function that runs when
1273 an FV2 protocol is added to the system.
1274
1275 **/
1276 VOID
1277 CoreInitializeDispatcher (
1278 VOID
1279 )
1280 {
1281 mFwVolEvent = EfiCreateProtocolNotifyEvent (
1282 &gEfiFirmwareVolume2ProtocolGuid,
1283 TPL_CALLBACK,
1284 CoreFwVolEventProtocolNotify,
1285 NULL,
1286 &mFwVolEventRegistration
1287 );
1288 }
1289
1290 //
1291 // Function only used in debug builds
1292 //
1293
1294 /**
1295 Traverse the discovered list for any drivers that were discovered but not loaded
1296 because the dependency experessions evaluated to false.
1297
1298 **/
1299 VOID
1300 CoreDisplayDiscoveredNotDispatched (
1301 VOID
1302 )
1303 {
1304 LIST_ENTRY *Link;
1305 EFI_CORE_DRIVER_ENTRY *DriverEntry;
1306
1307 for (Link = mDiscoveredList.ForwardLink;Link !=&mDiscoveredList; Link = Link->ForwardLink) {
1308 DriverEntry = CR(Link, EFI_CORE_DRIVER_ENTRY, Link, EFI_CORE_DRIVER_ENTRY_SIGNATURE);
1309 if (DriverEntry->Dependent) {
1310 DEBUG ((DEBUG_LOAD, "Driver %g was discovered but not loaded!!\n", &DriverEntry->FileName));
1311 }
1312 }
1313 }