]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Core/Dxe/Hand/Handle.c
Clean up DxeCore to remove duplicate memory allocation & device path utility services...
[mirror_edk2.git] / MdeModulePkg / Core / Dxe / Hand / Handle.c
1 /** @file
2 UEFI handle & protocol handling.
3
4 Copyright (c) 2006 - 2008, Intel Corporation. <BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #include "DxeMain.h"
16
17
18 //
19 // mProtocolDatabase - A list of all protocols in the system. (simple list for now)
20 // gHandleList - A list of all the handles in the system
21 // gProtocolDatabaseLock - Lock to protect the mProtocolDatabase
22 // gHandleDatabaseKey - The Key to show that the handle has been created/modified
23 //
24 LIST_ENTRY mProtocolDatabase = INITIALIZE_LIST_HEAD_VARIABLE (mProtocolDatabase);
25 LIST_ENTRY gHandleList = INITIALIZE_LIST_HEAD_VARIABLE (gHandleList);
26 EFI_LOCK gProtocolDatabaseLock = EFI_INITIALIZE_LOCK_VARIABLE (TPL_NOTIFY);
27 UINT64 gHandleDatabaseKey = 0;
28
29
30
31 /**
32 Acquire lock on gProtocolDatabaseLock.
33
34 **/
35 VOID
36 CoreAcquireProtocolLock (
37 VOID
38 )
39 {
40 CoreAcquireLock (&gProtocolDatabaseLock);
41 }
42
43
44
45 /**
46 Release lock on gProtocolDatabaseLock.
47
48 **/
49 VOID
50 CoreReleaseProtocolLock (
51 VOID
52 )
53 {
54 CoreReleaseLock (&gProtocolDatabaseLock);
55 }
56
57
58
59 /**
60 Check whether a handle is a valid EFI_HANDLE
61
62 @param UserHandle The handle to check
63
64 @retval EFI_INVALID_PARAMETER The handle is NULL or not a valid EFI_HANDLE.
65 @retval EFI_SUCCESS The handle is valid EFI_HANDLE.
66
67 **/
68 EFI_STATUS
69 CoreValidateHandle (
70 IN EFI_HANDLE UserHandle
71 )
72 {
73 IHANDLE *Handle;
74
75 Handle = (IHANDLE *)UserHandle;
76 if (Handle == NULL) {
77 return EFI_INVALID_PARAMETER;
78 }
79 if (Handle->Signature != EFI_HANDLE_SIGNATURE) {
80 return EFI_INVALID_PARAMETER;
81 }
82 return EFI_SUCCESS;
83 }
84
85
86
87 /**
88 Finds the protocol entry for the requested protocol.
89 The gProtocolDatabaseLock must be owned
90
91 @param Protocol The ID of the protocol
92 @param Create Create a new entry if not found
93
94 @return Protocol entry
95
96 **/
97 PROTOCOL_ENTRY *
98 CoreFindProtocolEntry (
99 IN EFI_GUID *Protocol,
100 IN BOOLEAN Create
101 )
102 {
103 LIST_ENTRY *Link;
104 PROTOCOL_ENTRY *Item;
105 PROTOCOL_ENTRY *ProtEntry;
106
107 ASSERT_LOCKED(&gProtocolDatabaseLock);
108
109 //
110 // Search the database for the matching GUID
111 //
112
113 ProtEntry = NULL;
114 for (Link = mProtocolDatabase.ForwardLink;
115 Link != &mProtocolDatabase;
116 Link = Link->ForwardLink) {
117
118 Item = CR(Link, PROTOCOL_ENTRY, AllEntries, PROTOCOL_ENTRY_SIGNATURE);
119 if (CompareGuid (&Item->ProtocolID, Protocol)) {
120
121 //
122 // This is the protocol entry
123 //
124
125 ProtEntry = Item;
126 break;
127 }
128 }
129
130 //
131 // If the protocol entry was not found and Create is TRUE, then
132 // allocate a new entry
133 //
134 if ((ProtEntry == NULL) && Create) {
135 ProtEntry = AllocatePool (sizeof(PROTOCOL_ENTRY));
136
137 if (ProtEntry != NULL) {
138 //
139 // Initialize new protocol entry structure
140 //
141 ProtEntry->Signature = PROTOCOL_ENTRY_SIGNATURE;
142 CopyGuid ((VOID *)&ProtEntry->ProtocolID, Protocol);
143 InitializeListHead (&ProtEntry->Protocols);
144 InitializeListHead (&ProtEntry->Notify);
145
146 //
147 // Add it to protocol database
148 //
149 InsertTailList (&mProtocolDatabase, &ProtEntry->AllEntries);
150 }
151 }
152
153 return ProtEntry;
154 }
155
156
157
158 /**
159 Finds the protocol instance for the requested handle and protocol.
160 Note: This function doesn't do parameters checking, it's caller's responsibility
161 to pass in valid parameters.
162
163 @param Handle The handle to search the protocol on
164 @param Protocol GUID of the protocol
165 @param Interface The interface for the protocol being searched
166
167 @return Protocol instance (NULL: Not found)
168
169 **/
170 PROTOCOL_INTERFACE *
171 CoreFindProtocolInterface (
172 IN IHANDLE *Handle,
173 IN EFI_GUID *Protocol,
174 IN VOID *Interface
175 )
176 {
177 PROTOCOL_INTERFACE *Prot;
178 PROTOCOL_ENTRY *ProtEntry;
179 LIST_ENTRY *Link;
180
181 ASSERT_LOCKED(&gProtocolDatabaseLock);
182 Prot = NULL;
183
184 //
185 // Lookup the protocol entry for this protocol ID
186 //
187
188 ProtEntry = CoreFindProtocolEntry (Protocol, FALSE);
189 if (ProtEntry != NULL) {
190
191 //
192 // Look at each protocol interface for any matches
193 //
194 for (Link = Handle->Protocols.ForwardLink; Link != &Handle->Protocols; Link=Link->ForwardLink) {
195
196 //
197 // If this protocol interface matches, remove it
198 //
199 Prot = CR(Link, PROTOCOL_INTERFACE, Link, PROTOCOL_INTERFACE_SIGNATURE);
200 if (Prot->Interface == Interface && Prot->Protocol == ProtEntry) {
201 break;
202 }
203
204 Prot = NULL;
205 }
206 }
207
208 return Prot;
209 }
210
211
212 /**
213 Removes an event from a register protocol notify list on a protocol.
214
215 @param Event The event to search for in the protocol
216 database.
217
218 @return EFI_SUCCESS if the event was found and removed.
219 @return EFI_NOT_FOUND if the event was not found in the protocl database.
220
221 **/
222 EFI_STATUS
223 CoreUnregisterProtocolNotifyEvent (
224 IN EFI_EVENT Event
225 )
226 {
227 LIST_ENTRY *Link;
228 PROTOCOL_ENTRY *ProtEntry;
229 LIST_ENTRY *NotifyLink;
230 PROTOCOL_NOTIFY *ProtNotify;
231
232 CoreAcquireProtocolLock ();
233
234 for ( Link = mProtocolDatabase.ForwardLink;
235 Link != &mProtocolDatabase;
236 Link = Link->ForwardLink) {
237
238 ProtEntry = CR(Link, PROTOCOL_ENTRY, AllEntries, PROTOCOL_ENTRY_SIGNATURE);
239
240 for ( NotifyLink = ProtEntry->Notify.ForwardLink;
241 NotifyLink != &ProtEntry->Notify;
242 NotifyLink = NotifyLink->ForwardLink) {
243
244 ProtNotify = CR(NotifyLink, PROTOCOL_NOTIFY, Link, PROTOCOL_NOTIFY_SIGNATURE);
245
246 if (ProtNotify->Event == Event) {
247 RemoveEntryList(&ProtNotify->Link);
248 CoreFreePool(ProtNotify);
249 CoreReleaseProtocolLock ();
250 return EFI_SUCCESS;
251 }
252 }
253 }
254
255 CoreReleaseProtocolLock ();
256 return EFI_NOT_FOUND;
257 }
258
259
260
261 /**
262 Removes all the events in the protocol database that match Event.
263
264 @param Event The event to search for in the protocol
265 database.
266
267 @return EFI_SUCCESS when done searching the entire database.
268
269 **/
270 EFI_STATUS
271 CoreUnregisterProtocolNotify (
272 IN EFI_EVENT Event
273 )
274 {
275 EFI_STATUS Status;
276
277 do {
278 Status = CoreUnregisterProtocolNotifyEvent (Event);
279 } while (!EFI_ERROR (Status));
280
281 return EFI_SUCCESS;
282 }
283
284
285
286
287 /**
288 Wrapper function to CoreInstallProtocolInterfaceNotify. This is the public API which
289 Calls the private one which contains a BOOLEAN parameter for notifications
290
291 @param UserHandle The handle to install the protocol handler on,
292 or NULL if a new handle is to be allocated
293 @param Protocol The protocol to add to the handle
294 @param InterfaceType Indicates whether Interface is supplied in
295 native form.
296 @param Interface The interface for the protocol being added
297
298 @return Status code
299
300 **/
301 EFI_STATUS
302 EFIAPI
303 CoreInstallProtocolInterface (
304 IN OUT EFI_HANDLE *UserHandle,
305 IN EFI_GUID *Protocol,
306 IN EFI_INTERFACE_TYPE InterfaceType,
307 IN VOID *Interface
308 )
309 {
310 return CoreInstallProtocolInterfaceNotify (
311 UserHandle,
312 Protocol,
313 InterfaceType,
314 Interface,
315 TRUE
316 );
317 }
318
319
320 /**
321 Installs a protocol interface into the boot services environment.
322
323 @param UserHandle The handle to install the protocol handler on,
324 or NULL if a new handle is to be allocated
325 @param Protocol The protocol to add to the handle
326 @param InterfaceType Indicates whether Interface is supplied in
327 native form.
328 @param Interface The interface for the protocol being added
329 @param Notify indicates whether notify the notification list
330 for this protocol
331
332 @retval EFI_INVALID_PARAMETER Invalid parameter
333 @retval EFI_OUT_OF_RESOURCES No enough buffer to allocate
334 @retval EFI_SUCCESS Protocol interface successfully installed
335
336 **/
337 EFI_STATUS
338 CoreInstallProtocolInterfaceNotify (
339 IN OUT EFI_HANDLE *UserHandle,
340 IN EFI_GUID *Protocol,
341 IN EFI_INTERFACE_TYPE InterfaceType,
342 IN VOID *Interface,
343 IN BOOLEAN Notify
344 )
345 {
346 PROTOCOL_INTERFACE *Prot;
347 PROTOCOL_ENTRY *ProtEntry;
348 IHANDLE *Handle;
349 EFI_STATUS Status;
350 VOID *ExistingInterface;
351
352 //
353 // returns EFI_INVALID_PARAMETER if InterfaceType is invalid.
354 // Also added check for invalid UserHandle and Protocol pointers.
355 //
356 if (UserHandle == NULL || Protocol == NULL) {
357 return EFI_INVALID_PARAMETER;
358 }
359
360 if (InterfaceType != EFI_NATIVE_INTERFACE) {
361 return EFI_INVALID_PARAMETER;
362 }
363
364 //
365 // Print debug message
366 //
367 DEBUG((DEBUG_LOAD | DEBUG_INFO, "InstallProtocolInterface: %g %p\n", Protocol, Interface));
368
369 Status = EFI_OUT_OF_RESOURCES;
370 Prot = NULL;
371 Handle = NULL;
372
373 if (*UserHandle != NULL_HANDLE) {
374 Status = CoreHandleProtocol (*UserHandle, Protocol, (VOID **)&ExistingInterface);
375 if (!EFI_ERROR (Status)) {
376 return EFI_INVALID_PARAMETER;
377 }
378 }
379
380 //
381 // Lock the protocol database
382 //
383 CoreAcquireProtocolLock ();
384
385 //
386 // Lookup the Protocol Entry for the requested protocol
387 //
388 ProtEntry = CoreFindProtocolEntry (Protocol, TRUE);
389 if (ProtEntry == NULL) {
390 goto Done;
391 }
392
393 //
394 // Allocate a new protocol interface structure
395 //
396 Prot = AllocateZeroPool (sizeof(PROTOCOL_INTERFACE));
397 if (Prot == NULL) {
398 Status = EFI_OUT_OF_RESOURCES;
399 goto Done;
400 }
401
402 //
403 // If caller didn't supply a handle, allocate a new one
404 //
405 Handle = (IHANDLE *)*UserHandle;
406 if (Handle == NULL) {
407 Handle = AllocateZeroPool (sizeof(IHANDLE));
408 if (Handle == NULL) {
409 Status = EFI_OUT_OF_RESOURCES;
410 goto Done;
411 }
412
413 //
414 // Initialize new handler structure
415 //
416 Handle->Signature = EFI_HANDLE_SIGNATURE;
417 InitializeListHead (&Handle->Protocols);
418
419 //
420 // Initialize the Key to show that the handle has been created/modified
421 //
422 gHandleDatabaseKey++;
423 Handle->Key = gHandleDatabaseKey;
424
425 //
426 // Add this handle to the list global list of all handles
427 // in the system
428 //
429 InsertTailList (&gHandleList, &Handle->AllHandles);
430 }
431
432 Status = CoreValidateHandle (Handle);
433 if (EFI_ERROR (Status)) {
434 goto Done;
435 }
436
437 //
438 // Each interface that is added must be unique
439 //
440 ASSERT (CoreFindProtocolInterface (Handle, Protocol, Interface) == NULL);
441
442 //
443 // Initialize the protocol interface structure
444 //
445 Prot->Signature = PROTOCOL_INTERFACE_SIGNATURE;
446 Prot->Handle = Handle;
447 Prot->Protocol = ProtEntry;
448 Prot->Interface = Interface;
449
450 //
451 // Initalize OpenProtocol Data base
452 //
453 InitializeListHead (&Prot->OpenList);
454 Prot->OpenListCount = 0;
455
456 //
457 // Add this protocol interface to the head of the supported
458 // protocol list for this handle
459 //
460 InsertHeadList (&Handle->Protocols, &Prot->Link);
461
462 //
463 // Add this protocol interface to the tail of the
464 // protocol entry
465 //
466 InsertTailList (&ProtEntry->Protocols, &Prot->ByProtocol);
467
468 //
469 // Notify the notification list for this protocol
470 //
471 if (Notify) {
472 CoreNotifyProtocolEntry (ProtEntry);
473 }
474 Status = EFI_SUCCESS;
475
476 Done:
477 //
478 // Done, unlock the database and return
479 //
480 CoreReleaseProtocolLock ();
481 if (!EFI_ERROR (Status)) {
482 //
483 // Return the new handle back to the caller
484 //
485 *UserHandle = Handle;
486 } else {
487 //
488 // There was an error, clean up
489 //
490 if (Prot != NULL) {
491 CoreFreePool (Prot);
492 }
493 }
494
495 return Status;
496 }
497
498
499
500
501 /**
502 Installs a list of protocol interface into the boot services environment.
503 This function calls InstallProtocolInterface() in a loop. If any error
504 occures all the protocols added by this function are removed. This is
505 basically a lib function to save space.
506
507 @param Handle The handle to install the protocol handlers on,
508 or NULL if a new handle is to be allocated
509 @param ... EFI_GUID followed by protocol instance. A NULL
510 terminates the list. The pairs are the
511 arguments to InstallProtocolInterface(). All the
512 protocols are added to Handle.
513
514 @retval EFI_INVALID_PARAMETER Handle is NULL.
515 @retval EFI_SUCCESS Protocol interfaces successfully installed.
516
517 **/
518 EFI_STATUS
519 EFIAPI
520 CoreInstallMultipleProtocolInterfaces (
521 IN OUT EFI_HANDLE *Handle,
522 ...
523 )
524 {
525 VA_LIST Args;
526 EFI_STATUS Status;
527 EFI_GUID *Protocol;
528 VOID *Interface;
529 EFI_TPL OldTpl;
530 UINTN Index;
531 EFI_HANDLE OldHandle;
532 EFI_HANDLE DeviceHandle;
533 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
534
535 if (Handle == NULL) {
536 return EFI_INVALID_PARAMETER;
537 }
538
539 //
540 // Syncronize with notifcations.
541 //
542 OldTpl = CoreRaiseTpl (TPL_NOTIFY);
543 OldHandle = *Handle;
544
545 //
546 // Check for duplicate device path and install the protocol interfaces
547 //
548 VA_START (Args, Handle);
549 for (Index = 0, Status = EFI_SUCCESS; !EFI_ERROR (Status); Index++) {
550 //
551 // If protocol is NULL, then it's the end of the list
552 //
553 Protocol = VA_ARG (Args, EFI_GUID *);
554 if (Protocol == NULL) {
555 break;
556 }
557
558 Interface = VA_ARG (Args, VOID *);
559
560 //
561 // Make sure you are installing on top a device path that has already been added.
562 //
563 if (CompareGuid (Protocol, &gEfiDevicePathProtocolGuid)) {
564 DeviceHandle = NULL;
565 DevicePath = Interface;
566 Status = CoreLocateDevicePath (&gEfiDevicePathProtocolGuid, &DevicePath, &DeviceHandle);
567 if (!EFI_ERROR (Status) && (DeviceHandle != NULL_HANDLE) && IsDevicePathEnd(DevicePath)) {
568 Status = EFI_ALREADY_STARTED;
569 continue;
570 }
571 }
572
573 //
574 // Install it
575 //
576 Status = CoreInstallProtocolInterface (Handle, Protocol, EFI_NATIVE_INTERFACE, Interface);
577 }
578
579 //
580 // If there was an error, remove all the interfaces that were installed without any errors
581 //
582 if (EFI_ERROR (Status)) {
583 //
584 // Reset the va_arg back to the first argument.
585 //
586 VA_START (Args, Handle);
587 for (; Index > 1; Index--) {
588 Protocol = VA_ARG (Args, EFI_GUID *);
589 Interface = VA_ARG (Args, VOID *);
590 CoreUninstallProtocolInterface (*Handle, Protocol, Interface);
591 }
592 *Handle = OldHandle;
593 }
594
595 //
596 // Done
597 //
598 CoreRestoreTpl (OldTpl);
599 return Status;
600 }
601
602
603 /**
604 Attempts to disconnect all drivers that are using the protocol interface being queried.
605 If failed, reconnect all drivers disconnected.
606 Note: This function doesn't do parameters checking, it's caller's responsibility
607 to pass in valid parameters.
608
609 @param UserHandle The handle on which the protocol is installed
610 @param Prot The protocol to disconnect drivers from
611
612 @retval EFI_SUCCESS Drivers using the protocol interface are all
613 disconnected
614 @retval EFI_ACCESS_DENIED Failed to disconnect one or all of the drivers
615
616 **/
617 EFI_STATUS
618 CoreDisconnectControllersUsingProtocolInterface (
619 IN EFI_HANDLE UserHandle,
620 IN PROTOCOL_INTERFACE *Prot
621 )
622 {
623 EFI_STATUS Status;
624 BOOLEAN ItemFound;
625 LIST_ENTRY *Link;
626 OPEN_PROTOCOL_DATA *OpenData;
627
628 Status = EFI_SUCCESS;
629
630 //
631 // Attempt to disconnect all drivers from this protocol interface
632 //
633 do {
634 ItemFound = FALSE;
635 for ( Link = Prot->OpenList.ForwardLink;
636 (Link != &Prot->OpenList) && !ItemFound;
637 Link = Link->ForwardLink ) {
638 OpenData = CR (Link, OPEN_PROTOCOL_DATA, Link, OPEN_PROTOCOL_DATA_SIGNATURE);
639 if (OpenData->Attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) {
640 ItemFound = TRUE;
641 CoreReleaseProtocolLock ();
642 Status = CoreDisconnectController (UserHandle, OpenData->AgentHandle, NULL);
643 CoreAcquireProtocolLock ();
644 if (EFI_ERROR (Status)) {
645 ItemFound = FALSE;
646 break;
647 }
648 }
649 }
650 } while (ItemFound);
651
652 if (!EFI_ERROR (Status)) {
653 //
654 // Attempt to remove BY_HANDLE_PROTOOCL and GET_PROTOCOL and TEST_PROTOCOL Open List items
655 //
656 do {
657 ItemFound = FALSE;
658 for ( Link = Prot->OpenList.ForwardLink;
659 (Link != &Prot->OpenList) && !ItemFound;
660 Link = Link->ForwardLink ) {
661 OpenData = CR (Link, OPEN_PROTOCOL_DATA, Link, OPEN_PROTOCOL_DATA_SIGNATURE);
662 if (OpenData->Attributes &
663 (EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL | EFI_OPEN_PROTOCOL_GET_PROTOCOL | EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) {
664 ItemFound = TRUE;
665 RemoveEntryList (&OpenData->Link);
666 Prot->OpenListCount--;
667 CoreFreePool (OpenData);
668 }
669 }
670 } while (ItemFound);
671 }
672
673 //
674 // If there are errors or still has open items in the list, then reconnect all the drivers and return an error
675 //
676 if (EFI_ERROR (Status) || (Prot->OpenListCount > 0)) {
677 CoreReleaseProtocolLock ();
678 CoreConnectController (UserHandle, NULL, NULL, TRUE);
679 CoreAcquireProtocolLock ();
680 Status = EFI_ACCESS_DENIED;
681 }
682
683 return Status;
684 }
685
686
687
688 /**
689 Uninstalls all instances of a protocol:interfacer from a handle.
690 If the last protocol interface is remove from the handle, the
691 handle is freed.
692
693 @param UserHandle The handle to remove the protocol handler from
694 @param Protocol The protocol, of protocol:interface, to remove
695 @param Interface The interface, of protocol:interface, to remove
696
697 @retval EFI_INVALID_PARAMETER Protocol is NULL.
698 @retval EFI_SUCCESS Protocol interface successfully uninstalled.
699
700 **/
701 EFI_STATUS
702 EFIAPI
703 CoreUninstallProtocolInterface (
704 IN EFI_HANDLE UserHandle,
705 IN EFI_GUID *Protocol,
706 IN VOID *Interface
707 )
708 {
709 EFI_STATUS Status;
710 IHANDLE *Handle;
711 PROTOCOL_INTERFACE *Prot;
712
713 //
714 // Check that Protocol is valid
715 //
716 if (Protocol == NULL) {
717 return EFI_INVALID_PARAMETER;
718 }
719
720 //
721 // Check that UserHandle is a valid handle
722 //
723 Status = CoreValidateHandle (UserHandle);
724 if (EFI_ERROR (Status)) {
725 return Status;
726 }
727
728 //
729 // Lock the protocol database
730 //
731 CoreAcquireProtocolLock ();
732
733 //
734 // Check that Protocol exists on UserHandle, and Interface matches the interface in the database
735 //
736 Prot = CoreFindProtocolInterface (UserHandle, Protocol, Interface);
737 if (Prot == NULL) {
738 Status = EFI_NOT_FOUND;
739 goto Done;
740 }
741
742 //
743 // Attempt to disconnect all drivers that are using the protocol interface that is about to be removed
744 //
745 Status = CoreDisconnectControllersUsingProtocolInterface (
746 UserHandle,
747 Prot
748 );
749 if (EFI_ERROR (Status)) {
750 //
751 // One or more drivers refused to release, so return the error
752 //
753 goto Done;
754 }
755
756 //
757 // Remove the protocol interface from the protocol
758 //
759 Status = EFI_NOT_FOUND;
760 Handle = (IHANDLE *)UserHandle;
761 Prot = CoreRemoveInterfaceFromProtocol (Handle, Protocol, Interface);
762
763 if (Prot != NULL) {
764 //
765 // Update the Key to show that the handle has been created/modified
766 //
767 gHandleDatabaseKey++;
768 Handle->Key = gHandleDatabaseKey;
769
770 //
771 // Remove the protocol interface from the handle
772 //
773 RemoveEntryList (&Prot->Link);
774
775 //
776 // Free the memory
777 //
778 Prot->Signature = 0;
779 CoreFreePool (Prot);
780 Status = EFI_SUCCESS;
781 }
782
783 //
784 // If there are no more handlers for the handle, free the handle
785 //
786 if (IsListEmpty (&Handle->Protocols)) {
787 Handle->Signature = 0;
788 RemoveEntryList (&Handle->AllHandles);
789 CoreFreePool (Handle);
790 }
791
792 Done:
793 //
794 // Done, unlock the database and return
795 //
796 CoreReleaseProtocolLock ();
797 return Status;
798 }
799
800
801
802
803 /**
804 Uninstalls a list of protocol interface in the boot services environment.
805 This function calls UnisatllProtocolInterface() in a loop. This is
806 basically a lib function to save space.
807
808 @param Handle The handle to uninstall the protocol
809 @param ... EFI_GUID followed by protocol instance. A NULL
810 terminates the list. The pairs are the
811 arguments to UninstallProtocolInterface(). All
812 the protocols are added to Handle.
813
814 @return Status code
815
816 **/
817 EFI_STATUS
818 EFIAPI
819 CoreUninstallMultipleProtocolInterfaces (
820 IN EFI_HANDLE Handle,
821 ...
822 )
823 {
824 EFI_STATUS Status;
825 VA_LIST Args;
826 EFI_GUID *Protocol;
827 VOID *Interface;
828 UINTN Index;
829
830 VA_START (Args, Handle);
831 for (Index = 0, Status = EFI_SUCCESS; !EFI_ERROR (Status); Index++) {
832 //
833 // If protocol is NULL, then it's the end of the list
834 //
835 Protocol = VA_ARG (Args, EFI_GUID *);
836 if (Protocol == NULL) {
837 break;
838 }
839
840 Interface = VA_ARG (Args, VOID *);
841
842 //
843 // Uninstall it
844 //
845 Status = CoreUninstallProtocolInterface (Handle, Protocol, Interface);
846 }
847
848 //
849 // If there was an error, add all the interfaces that were
850 // uninstalled without any errors
851 //
852 if (EFI_ERROR (Status)) {
853 //
854 // Reset the va_arg back to the first argument.
855 //
856 VA_START (Args, Handle);
857 for (; Index > 1; Index--) {
858 Protocol = VA_ARG(Args, EFI_GUID *);
859 Interface = VA_ARG(Args, VOID *);
860 CoreInstallProtocolInterface (&Handle, Protocol, EFI_NATIVE_INTERFACE, Interface);
861 }
862 }
863
864 return Status;
865 }
866
867
868 /**
869 Locate a certain GUID protocol interface in a Handle's protocols.
870
871 @param UserHandle The handle to obtain the protocol interface on
872 @param Protocol The GUID of the protocol
873
874 @return The requested protocol interface for the handle
875
876 **/
877 PROTOCOL_INTERFACE *
878 CoreGetProtocolInterface (
879 IN EFI_HANDLE UserHandle,
880 IN EFI_GUID *Protocol
881 )
882 {
883 EFI_STATUS Status;
884 PROTOCOL_ENTRY *ProtEntry;
885 PROTOCOL_INTERFACE *Prot;
886 IHANDLE *Handle;
887 LIST_ENTRY *Link;
888
889 Status = CoreValidateHandle (UserHandle);
890 if (EFI_ERROR (Status)) {
891 return NULL;
892 }
893
894 Handle = (IHANDLE *)UserHandle;
895
896 //
897 // Look at each protocol interface for a match
898 //
899 for (Link = Handle->Protocols.ForwardLink; Link != &Handle->Protocols; Link = Link->ForwardLink) {
900 Prot = CR(Link, PROTOCOL_INTERFACE, Link, PROTOCOL_INTERFACE_SIGNATURE);
901 ProtEntry = Prot->Protocol;
902 if (CompareGuid (&ProtEntry->ProtocolID, Protocol)) {
903 return Prot;
904 }
905 }
906 return NULL;
907 }
908
909
910
911 /**
912 Queries a handle to determine if it supports a specified protocol.
913
914 @param UserHandle The handle being queried.
915 @param Protocol The published unique identifier of the protocol.
916 @param Interface Supplies the address where a pointer to the
917 corresponding Protocol Interface is returned.
918
919 @return The requested protocol interface for the handle
920
921 **/
922 EFI_STATUS
923 EFIAPI
924 CoreHandleProtocol (
925 IN EFI_HANDLE UserHandle,
926 IN EFI_GUID *Protocol,
927 OUT VOID **Interface
928 )
929 {
930 return CoreOpenProtocol (
931 UserHandle,
932 Protocol,
933 Interface,
934 gDxeCoreImageHandle,
935 NULL,
936 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL
937 );
938 }
939
940
941
942 /**
943 Locates the installed protocol handler for the handle, and
944 invokes it to obtain the protocol interface. Usage information
945 is registered in the protocol data base.
946
947 @param UserHandle The handle to obtain the protocol interface on
948 @param Protocol The ID of the protocol
949 @param Interface The location to return the protocol interface
950 @param ImageHandle The handle of the Image that is opening the
951 protocol interface specified by Protocol and
952 Interface.
953 @param ControllerHandle The controller handle that is requiring this
954 interface.
955 @param Attributes The open mode of the protocol interface
956 specified by Handle and Protocol.
957
958 @retval EFI_INVALID_PARAMETER Protocol is NULL.
959 @retval EFI_SUCCESS Get the protocol interface.
960
961 **/
962 EFI_STATUS
963 EFIAPI
964 CoreOpenProtocol (
965 IN EFI_HANDLE UserHandle,
966 IN EFI_GUID *Protocol,
967 OUT VOID **Interface OPTIONAL,
968 IN EFI_HANDLE ImageHandle,
969 IN EFI_HANDLE ControllerHandle,
970 IN UINT32 Attributes
971 )
972 {
973 EFI_STATUS Status;
974 PROTOCOL_INTERFACE *Prot;
975 LIST_ENTRY *Link;
976 OPEN_PROTOCOL_DATA *OpenData;
977 BOOLEAN ByDriver;
978 BOOLEAN Exclusive;
979 BOOLEAN Disconnect;
980 BOOLEAN ExactMatch;
981
982 //
983 // Check for invalid Protocol
984 //
985 if (Protocol == NULL) {
986 return EFI_INVALID_PARAMETER;
987 }
988
989 //
990 // Check for invalid Interface
991 //
992 if (Attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL) {
993 if (Interface == NULL) {
994 return EFI_INVALID_PARAMETER;
995 } else {
996 *Interface = NULL;
997 }
998 }
999
1000 //
1001 // Check for invalid UserHandle
1002 //
1003 Status = CoreValidateHandle (UserHandle);
1004 if (EFI_ERROR (Status)) {
1005 return Status;
1006 }
1007
1008 //
1009 // Check for invalid Attributes
1010 //
1011 switch (Attributes) {
1012 case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER :
1013 Status = CoreValidateHandle (ImageHandle);
1014 if (EFI_ERROR (Status)) {
1015 return Status;
1016 }
1017 Status = CoreValidateHandle (ControllerHandle);
1018 if (EFI_ERROR (Status)) {
1019 return Status;
1020 }
1021 if (UserHandle == ControllerHandle) {
1022 return EFI_INVALID_PARAMETER;
1023 }
1024 break;
1025 case EFI_OPEN_PROTOCOL_BY_DRIVER :
1026 case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE :
1027 Status = CoreValidateHandle (ImageHandle);
1028 if (EFI_ERROR (Status)) {
1029 return Status;
1030 }
1031 Status = CoreValidateHandle (ControllerHandle);
1032 if (EFI_ERROR (Status)) {
1033 return Status;
1034 }
1035 break;
1036 case EFI_OPEN_PROTOCOL_EXCLUSIVE :
1037 Status = CoreValidateHandle (ImageHandle);
1038 if (EFI_ERROR (Status)) {
1039 return Status;
1040 }
1041 break;
1042 case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL :
1043 case EFI_OPEN_PROTOCOL_GET_PROTOCOL :
1044 case EFI_OPEN_PROTOCOL_TEST_PROTOCOL :
1045 break;
1046 default:
1047 return EFI_INVALID_PARAMETER;
1048 }
1049
1050 //
1051 // Lock the protocol database
1052 //
1053 CoreAcquireProtocolLock ();
1054
1055 //
1056 // Look at each protocol interface for a match
1057 //
1058 Prot = CoreGetProtocolInterface (UserHandle, Protocol);
1059 if (Prot == NULL) {
1060 Status = EFI_UNSUPPORTED;
1061 goto Done;
1062 }
1063
1064 //
1065 // This is the protocol interface entry for this protocol
1066 //
1067 if (Attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL) {
1068 *Interface = Prot->Interface;
1069 }
1070 Status = EFI_SUCCESS;
1071
1072 ByDriver = FALSE;
1073 Exclusive = FALSE;
1074 for ( Link = Prot->OpenList.ForwardLink; Link != &Prot->OpenList; Link = Link->ForwardLink) {
1075 OpenData = CR (Link, OPEN_PROTOCOL_DATA, Link, OPEN_PROTOCOL_DATA_SIGNATURE);
1076 ExactMatch = (BOOLEAN)((OpenData->AgentHandle == ImageHandle) &&
1077 (OpenData->Attributes == Attributes) &&
1078 (OpenData->ControllerHandle == ControllerHandle));
1079 if (OpenData->Attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) {
1080 ByDriver = TRUE;
1081 if (ExactMatch) {
1082 Status = EFI_ALREADY_STARTED;
1083 goto Done;
1084 }
1085 }
1086 if (OpenData->Attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
1087 Exclusive = TRUE;
1088 } else if (ExactMatch) {
1089 OpenData->OpenCount++;
1090 Status = EFI_SUCCESS;
1091 goto Done;
1092 }
1093 }
1094
1095 //
1096 // ByDriver TRUE -> A driver is managing (UserHandle, Protocol)
1097 // ByDriver FALSE -> There are no drivers managing (UserHandle, Protocol)
1098 // Exclusive TRUE -> Something has exclusive access to (UserHandle, Protocol)
1099 // Exclusive FALSE -> Nothing has exclusive access to (UserHandle, Protocol)
1100 //
1101
1102 switch (Attributes) {
1103 case EFI_OPEN_PROTOCOL_BY_DRIVER :
1104 if (Exclusive || ByDriver) {
1105 Status = EFI_ACCESS_DENIED;
1106 goto Done;
1107 }
1108 break;
1109 case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE :
1110 case EFI_OPEN_PROTOCOL_EXCLUSIVE :
1111 if (Exclusive) {
1112 Status = EFI_ACCESS_DENIED;
1113 goto Done;
1114 }
1115 if (ByDriver) {
1116 do {
1117 Disconnect = FALSE;
1118 for ( Link = Prot->OpenList.ForwardLink; (Link != &Prot->OpenList) && (!Disconnect); Link = Link->ForwardLink) {
1119 OpenData = CR (Link, OPEN_PROTOCOL_DATA, Link, OPEN_PROTOCOL_DATA_SIGNATURE);
1120 if (OpenData->Attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) {
1121 Disconnect = TRUE;
1122 CoreReleaseProtocolLock ();
1123 Status = CoreDisconnectController (UserHandle, OpenData->AgentHandle, NULL);
1124 CoreAcquireProtocolLock ();
1125 if (EFI_ERROR (Status)) {
1126 Status = EFI_ACCESS_DENIED;
1127 goto Done;
1128 }
1129 }
1130 }
1131 } while (Disconnect);
1132 }
1133 break;
1134 case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER :
1135 case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL :
1136 case EFI_OPEN_PROTOCOL_GET_PROTOCOL :
1137 case EFI_OPEN_PROTOCOL_TEST_PROTOCOL :
1138 break;
1139 }
1140
1141 if (ImageHandle == NULL) {
1142 Status = EFI_SUCCESS;
1143 goto Done;
1144 }
1145 //
1146 // Create new entry
1147 //
1148 OpenData = AllocatePool (sizeof(OPEN_PROTOCOL_DATA));
1149 if (OpenData == NULL) {
1150 Status = EFI_OUT_OF_RESOURCES;
1151 } else {
1152 OpenData->Signature = OPEN_PROTOCOL_DATA_SIGNATURE;
1153 OpenData->AgentHandle = ImageHandle;
1154 OpenData->ControllerHandle = ControllerHandle;
1155 OpenData->Attributes = Attributes;
1156 OpenData->OpenCount = 1;
1157 InsertTailList (&Prot->OpenList, &OpenData->Link);
1158 Prot->OpenListCount++;
1159 Status = EFI_SUCCESS;
1160 }
1161
1162 Done:
1163 //
1164 // Done. Release the database lock are return
1165 //
1166 CoreReleaseProtocolLock ();
1167 return Status;
1168 }
1169
1170
1171
1172 /**
1173 Closes a protocol on a handle that was opened using OpenProtocol().
1174
1175 @param UserHandle The handle for the protocol interface that was
1176 previously opened with OpenProtocol(), and is
1177 now being closed.
1178 @param Protocol The published unique identifier of the protocol.
1179 It is the caller's responsibility to pass in a
1180 valid GUID.
1181 @param AgentHandle The handle of the agent that is closing the
1182 protocol interface.
1183 @param ControllerHandle If the agent that opened a protocol is a driver
1184 that follows the EFI Driver Model, then this
1185 parameter is the controller handle that required
1186 the protocol interface. If the agent does not
1187 follow the EFI Driver Model, then this parameter
1188 is optional and may be NULL.
1189
1190 @retval EFI_SUCCESS The protocol instance was closed.
1191 @retval EFI_INVALID_PARAMETER Handle, AgentHandle or ControllerHandle is not a
1192 valid EFI_HANDLE.
1193 @retval EFI_NOT_FOUND Can not find the specified protocol or
1194 AgentHandle.
1195
1196 **/
1197 EFI_STATUS
1198 EFIAPI
1199 CoreCloseProtocol (
1200 IN EFI_HANDLE UserHandle,
1201 IN EFI_GUID *Protocol,
1202 IN EFI_HANDLE AgentHandle,
1203 IN EFI_HANDLE ControllerHandle
1204 )
1205 {
1206 EFI_STATUS Status;
1207 PROTOCOL_INTERFACE *ProtocolInterface;
1208 LIST_ENTRY *Link;
1209 OPEN_PROTOCOL_DATA *OpenData;
1210
1211 //
1212 // Check for invalid parameters
1213 //
1214 Status = CoreValidateHandle (UserHandle);
1215 if (EFI_ERROR (Status)) {
1216 return Status;
1217 }
1218 Status = CoreValidateHandle (AgentHandle);
1219 if (EFI_ERROR (Status)) {
1220 return Status;
1221 }
1222 if (ControllerHandle != NULL_HANDLE) {
1223 Status = CoreValidateHandle (ControllerHandle);
1224 if (EFI_ERROR (Status)) {
1225 return Status;
1226 }
1227 }
1228 if (Protocol == NULL) {
1229 return EFI_INVALID_PARAMETER;
1230 }
1231
1232 //
1233 // Lock the protocol database
1234 //
1235 CoreAcquireProtocolLock ();
1236
1237 //
1238 // Look at each protocol interface for a match
1239 //
1240 Status = EFI_NOT_FOUND;
1241 ProtocolInterface = CoreGetProtocolInterface (UserHandle, Protocol);
1242 if (ProtocolInterface == NULL) {
1243 goto Done;
1244 }
1245
1246 //
1247 // Walk the Open data base looking for AgentHandle
1248 //
1249 Link = ProtocolInterface->OpenList.ForwardLink;
1250 while (Link != &ProtocolInterface->OpenList) {
1251 OpenData = CR (Link, OPEN_PROTOCOL_DATA, Link, OPEN_PROTOCOL_DATA_SIGNATURE);
1252 Link = Link->ForwardLink;
1253 if ((OpenData->AgentHandle == AgentHandle) && (OpenData->ControllerHandle == ControllerHandle)) {
1254 RemoveEntryList (&OpenData->Link);
1255 ProtocolInterface->OpenListCount--;
1256 CoreFreePool (OpenData);
1257 Status = EFI_SUCCESS;
1258 }
1259 }
1260
1261 Done:
1262 //
1263 // Done. Release the database lock and return.
1264 //
1265 CoreReleaseProtocolLock ();
1266 return Status;
1267 }
1268
1269
1270
1271
1272 /**
1273 Return information about Opened protocols in the system
1274
1275 @param UserHandle The handle to close the protocol interface on
1276 @param Protocol The ID of the protocol
1277 @param EntryBuffer A pointer to a buffer of open protocol
1278 information in the form of
1279 EFI_OPEN_PROTOCOL_INFORMATION_ENTRY structures.
1280 @param EntryCount Number of EntryBuffer entries
1281
1282 **/
1283 EFI_STATUS
1284 EFIAPI
1285 CoreOpenProtocolInformation (
1286 IN EFI_HANDLE UserHandle,
1287 IN EFI_GUID *Protocol,
1288 OUT EFI_OPEN_PROTOCOL_INFORMATION_ENTRY **EntryBuffer,
1289 OUT UINTN *EntryCount
1290 )
1291 {
1292 EFI_STATUS Status;
1293 PROTOCOL_INTERFACE *ProtocolInterface;
1294 LIST_ENTRY *Link;
1295 OPEN_PROTOCOL_DATA *OpenData;
1296 EFI_OPEN_PROTOCOL_INFORMATION_ENTRY *Buffer;
1297 UINTN Count;
1298 UINTN Size;
1299
1300 *EntryBuffer = NULL;
1301 *EntryCount = 0;
1302
1303 //
1304 // Lock the protocol database
1305 //
1306 CoreAcquireProtocolLock ();
1307
1308 //
1309 // Look at each protocol interface for a match
1310 //
1311 Status = EFI_NOT_FOUND;
1312 ProtocolInterface = CoreGetProtocolInterface (UserHandle, Protocol);
1313 if (ProtocolInterface == NULL) {
1314 goto Done;
1315 }
1316
1317 //
1318 // Count the number of Open Entries
1319 //
1320 for ( Link = ProtocolInterface->OpenList.ForwardLink, Count = 0;
1321 (Link != &ProtocolInterface->OpenList) ;
1322 Link = Link->ForwardLink ) {
1323 Count++;
1324 }
1325
1326 ASSERT (Count == ProtocolInterface->OpenListCount);
1327
1328 if (Count == 0) {
1329 Size = sizeof(EFI_OPEN_PROTOCOL_INFORMATION_ENTRY);
1330 } else {
1331 Size = Count * sizeof(EFI_OPEN_PROTOCOL_INFORMATION_ENTRY);
1332 }
1333
1334 Buffer = AllocatePool (Size);
1335 if (Buffer == NULL) {
1336 Status = EFI_OUT_OF_RESOURCES;
1337 goto Done;
1338 }
1339
1340 Status = EFI_SUCCESS;
1341 for ( Link = ProtocolInterface->OpenList.ForwardLink, Count = 0;
1342 (Link != &ProtocolInterface->OpenList);
1343 Link = Link->ForwardLink, Count++ ) {
1344 OpenData = CR (Link, OPEN_PROTOCOL_DATA, Link, OPEN_PROTOCOL_DATA_SIGNATURE);
1345
1346 Buffer[Count].AgentHandle = OpenData->AgentHandle;
1347 Buffer[Count].ControllerHandle = OpenData->ControllerHandle;
1348 Buffer[Count].Attributes = OpenData->Attributes;
1349 Buffer[Count].OpenCount = OpenData->OpenCount;
1350 }
1351
1352 *EntryBuffer = Buffer;
1353 *EntryCount = Count;
1354
1355 Done:
1356 //
1357 // Done. Release the database lock.
1358 //
1359 CoreReleaseProtocolLock ();
1360 return Status;
1361 }
1362
1363
1364
1365
1366 /**
1367 Retrieves the list of protocol interface GUIDs that are installed on a handle in a buffer allocated
1368 from pool.
1369
1370 @param UserHandle The handle from which to retrieve the list of
1371 protocol interface GUIDs.
1372 @param ProtocolBuffer A pointer to the list of protocol interface GUID
1373 pointers that are installed on Handle.
1374 @param ProtocolBufferCount A pointer to the number of GUID pointers present
1375 in ProtocolBuffer.
1376
1377 @retval EFI_SUCCESS The list of protocol interface GUIDs installed
1378 on Handle was returned in ProtocolBuffer. The
1379 number of protocol interface GUIDs was returned
1380 in ProtocolBufferCount.
1381 @retval EFI_INVALID_PARAMETER Handle is NULL.
1382 @retval EFI_INVALID_PARAMETER Handle is not a valid EFI_HANDLE.
1383 @retval EFI_INVALID_PARAMETER ProtocolBuffer is NULL.
1384 @retval EFI_INVALID_PARAMETER ProtocolBufferCount is NULL.
1385 @retval EFI_OUT_OF_RESOURCES There is not enough pool memory to store the
1386 results.
1387
1388 **/
1389 EFI_STATUS
1390 EFIAPI
1391 CoreProtocolsPerHandle (
1392 IN EFI_HANDLE UserHandle,
1393 OUT EFI_GUID ***ProtocolBuffer,
1394 OUT UINTN *ProtocolBufferCount
1395 )
1396 {
1397 EFI_STATUS Status;
1398 IHANDLE *Handle;
1399 PROTOCOL_INTERFACE *Prot;
1400 LIST_ENTRY *Link;
1401 UINTN ProtocolCount;
1402 EFI_GUID **Buffer;
1403
1404 Status = CoreValidateHandle (UserHandle);
1405 if (EFI_ERROR (Status)) {
1406 return Status;
1407 }
1408
1409 Handle = (IHANDLE *)UserHandle;
1410
1411 if (ProtocolBuffer == NULL) {
1412 return EFI_INVALID_PARAMETER;
1413 }
1414
1415 if (ProtocolBufferCount == NULL) {
1416 return EFI_INVALID_PARAMETER;
1417 }
1418
1419 *ProtocolBufferCount = 0;
1420
1421 ProtocolCount = 0;
1422
1423 CoreAcquireProtocolLock ();
1424
1425 for (Link = Handle->Protocols.ForwardLink; Link != &Handle->Protocols; Link = Link->ForwardLink) {
1426 ProtocolCount++;
1427 }
1428
1429 //
1430 // If there are no protocol interfaces installed on Handle, then Handle is not a valid EFI_HANDLE
1431 //
1432 if (ProtocolCount == 0) {
1433 Status = EFI_INVALID_PARAMETER;
1434 goto Done;
1435 }
1436
1437 Buffer = AllocatePool (sizeof (EFI_GUID *) * ProtocolCount);
1438 if (Buffer == NULL) {
1439 Status = EFI_OUT_OF_RESOURCES;
1440 goto Done;
1441 }
1442
1443 *ProtocolBuffer = Buffer;
1444 *ProtocolBufferCount = ProtocolCount;
1445
1446 for ( Link = Handle->Protocols.ForwardLink, ProtocolCount = 0;
1447 Link != &Handle->Protocols;
1448 Link = Link->ForwardLink, ProtocolCount++) {
1449 Prot = CR(Link, PROTOCOL_INTERFACE, Link, PROTOCOL_INTERFACE_SIGNATURE);
1450 Buffer[ProtocolCount] = &(Prot->Protocol->ProtocolID);
1451 }
1452 Status = EFI_SUCCESS;
1453
1454 Done:
1455 CoreReleaseProtocolLock ();
1456 return Status;
1457 }
1458
1459
1460
1461 /**
1462 return handle database key.
1463
1464
1465 @return Handle database key.
1466
1467 **/
1468 UINT64
1469 CoreGetHandleDatabaseKey (
1470 VOID
1471 )
1472 {
1473 return gHandleDatabaseKey;
1474 }
1475
1476
1477
1478 /**
1479 Go connect any handles that were created or modified while a image executed.
1480
1481 @param Key The Key to show that the handle has been
1482 created/modified
1483
1484 **/
1485 VOID
1486 CoreConnectHandlesByKey (
1487 UINT64 Key
1488 )
1489 {
1490 UINTN Count;
1491 LIST_ENTRY *Link;
1492 EFI_HANDLE *HandleBuffer;
1493 IHANDLE *Handle;
1494 UINTN Index;
1495
1496 //
1497 // Lock the protocol database
1498 //
1499 CoreAcquireProtocolLock ();
1500
1501 for (Link = gHandleList.ForwardLink, Count = 0; Link != &gHandleList; Link = Link->ForwardLink) {
1502 Handle = CR (Link, IHANDLE, AllHandles, EFI_HANDLE_SIGNATURE);
1503 if (Handle->Key > Key) {
1504 Count++;
1505 }
1506 }
1507
1508 HandleBuffer = AllocatePool (Count * sizeof (EFI_HANDLE));
1509 if (HandleBuffer == NULL) {
1510 CoreReleaseProtocolLock ();
1511 return;
1512 }
1513
1514 for (Link = gHandleList.ForwardLink, Count = 0; Link != &gHandleList; Link = Link->ForwardLink) {
1515 Handle = CR (Link, IHANDLE, AllHandles, EFI_HANDLE_SIGNATURE);
1516 if (Handle->Key > Key) {
1517 HandleBuffer[Count++] = Handle;
1518 }
1519 }
1520
1521 //
1522 // Unlock the protocol database
1523 //
1524 CoreReleaseProtocolLock ();
1525
1526 //
1527 // Connect all handles whose Key value is greater than Key
1528 //
1529 for (Index = 0; Index < Count; Index++) {
1530 CoreConnectController (HandleBuffer[Index], NULL, NULL, TRUE);
1531 }
1532
1533 CoreFreePool(HandleBuffer);
1534 }