From: Jiewen Yao Date: Wed, 21 Sep 2016 01:54:58 +0000 (+0800) Subject: MdeModulePkg/DxeCapsuleLibNull: Add ProcessCapsules() interface. X-Git-Tag: edk2-stable201903~5294 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=bf468a6ca060d8c5214a34175a309a11d1a65aba;ds=sidebyside MdeModulePkg/DxeCapsuleLibNull: Add ProcessCapsules() interface. Add ProcessCapsules() interface for DxeCapsuleLibNull. Cc: Feng Tian Cc: Star Zeng Cc: Michael D Kinney Cc: Liming Gao Cc: Chao Zhang Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jiewen Yao Reviewed-by: Liming Gao Reviewed-by: Michael Kinney Tested-by: Michael Kinney --- diff --git a/MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.c b/MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.c index fb5c25536f..b064240ccb 100644 --- a/MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.c +++ b/MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.c @@ -1,7 +1,7 @@ /** @file Null Dxe Capsule Library instance does nothing and returns unsupport status. -Copyright (c) 2007 - 2008, Intel Corporation. All rights reserved.
+Copyright (c) 2007 - 2016, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -17,7 +17,9 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. /** The firmware checks whether the capsule image is supported by the CapsuleGuid in CapsuleHeader or other specific information in capsule image. - + + Caution: This function may receive untrusted input. + @param CapsuleHeader Point to the UEFI capsule image to be checked. @retval EFI_UNSUPPORTED Input capsule is not supported by the firmware. @@ -34,7 +36,9 @@ SupportCapsuleImage ( /** The firmware specific implementation processes the capsule image if it recognized the format of this capsule image. - + + Caution: This function may receive untrusted input. + @param CapsuleHeader Point to the UEFI capsule image to be processed. @retval EFI_UNSUPPORTED Capsule image is not supported by the firmware. @@ -48,4 +52,42 @@ ProcessCapsuleImage ( return EFI_UNSUPPORTED; } +/** + + This routine is called to process capsules. + + Caution: This function may receive untrusted input. + + The capsules reported in EFI_HOB_UEFI_CAPSULE are processed. + If there is no EFI_HOB_UEFI_CAPSULE, this routine does nothing. + + This routine should be called twice in BDS. + 1) The first call must be before EndOfDxe. The system capsules is processed. + If device capsule FMP protocols are exposted at this time and device FMP + capsule has zero EmbeddedDriverCount, the device capsules are processed. + Each individual capsule result is recorded in capsule record variable. + System may reset in this function, if reset is required by capsule and + all capsules are processed. + If not all capsules are processed, reset will be defered to second call. + + 2) The second call must be after EndOfDxe and after ConnectAll, so that all + device capsule FMP protocols are exposed. + The system capsules are skipped. If the device capsules are NOT processed + in first call, they are processed here. + Each individual capsule result is recorded in capsule record variable. + System may reset in this function, if reset is required by capsule + processed in first call and second call. + + @retval EFI_SUCCESS There is no error when processing capsules. + @retval EFI_OUT_OF_RESOURCES No enough resource to process capsules. + +**/ +EFI_STATUS +EFIAPI +ProcessCapsules ( + VOID + ) +{ + return EFI_UNSUPPORTED; +}