REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2443
Use the pcd PcdPhysicalPresenceUserConfirmTimeout to control the wait time of user response. Cc: Jiewen Yao <jiewen....@intel.com> Cc: Jian J Wang <jian.j.w...@intel.com> Cc: Chao Zhang <chao.b.zh...@intel.com> Cc: Jordan Justen <jordan.l.jus...@intel.com> Cc: Laszlo Ersek <ler...@redhat.com> Cc: Ard Biesheuvel <ard.biesheu...@linaro.org> Cc: Marc-André Lureau <marcandre.lur...@redhat.com> Cc: Stefan Berger <stef...@linux.ibm.com> Signed-off-by: Zhichao Gao <zhichao....@intel.com> --- .../DxeTcg2PhysicalPresenceLib.c | 63 ++++++++++++++----- .../DxeTcg2PhysicalPresenceLib.inf | 6 +- 2 files changed, 52 insertions(+), 17 deletions(-) diff --git a/OvmfPkg/Library/Tcg2PhysicalPresenceLibQemu/DxeTcg2PhysicalPresenceLib.c b/OvmfPkg/Library/Tcg2PhysicalPresenceLibQemu/DxeTcg2PhysicalPresenceLib.c index 00d76ba2c2..13f78cbfac 100644 --- a/OvmfPkg/Library/Tcg2PhysicalPresenceLibQemu/DxeTcg2PhysicalPresenceLib.c +++ b/OvmfPkg/Library/Tcg2PhysicalPresenceLibQemu/DxeTcg2PhysicalPresenceLib.c @@ -9,7 +9,7 @@ Copyright (C) 2018, Red Hat, Inc. Copyright (c) 2018, IBM Corporation. All rights reserved.<BR> -Copyright (c) 2013 - 2016, Intel Corporation. All rights reserved.<BR> +Copyright (c) 2013 - 2020, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ @@ -32,6 +32,8 @@ SPDX-License-Identifier: BSD-2-Clause-Patent #include <Library/UefiBootServicesTableLib.h> #include <Library/UefiLib.h> #include <Library/UefiRuntimeServicesTableLib.h> +#include <Library/TimerLib.h> +#include <Library/PcdLib.h> #include <Library/Tcg2PhysicalPresenceLib.h> @@ -365,28 +367,57 @@ Tcg2ReadUserKey ( { EFI_STATUS Status; EFI_INPUT_KEY Key; - UINT16 InputKey; + UINT16 ConfirmKey; + UINTN Interval; + INT64 Timeout; - InputKey = 0; + // + // delay 100 milli-second + // + Interval = 100; + ConfirmKey = (CautionKey) ? SCAN_F12 : SCAN_F10; + Timeout = (INT64)PcdGet32 (PcdPhysicalPresenceUserConfirmTimeout); + if (Timeout > 0) { + Timeout = (INT64)MultU64x32 ((UINT64)Timeout, 1000); + } else { + // + // Wait forever + // + Timeout = MAX_INT64; + } + + // + // Wait for user response within the time-out + // do { + MicroSecondDelay (Interval * 1000); + Status = gBS->CheckEvent (gST->ConIn->WaitForKey); if (!EFI_ERROR (Status)) { Status = gST->ConIn->ReadKeyStroke (gST->ConIn, &Key); - if (Key.ScanCode == SCAN_ESC) { - InputKey = Key.ScanCode; - } - if ((Key.ScanCode == SCAN_F10) && !CautionKey) { - InputKey = Key.ScanCode; - } - if ((Key.ScanCode == SCAN_F12) && CautionKey) { - InputKey = Key.ScanCode; + if (!EFI_ERROR (Status)) { + if (Key.ScanCode == ConfirmKey) { + // + // User Confirmation + // + return TRUE; + } + + if (Key.ScanCode == SCAN_ESC) { + // + // User Rejection + // + return FALSE; + } + } else if (Status == EFI_DEVICE_ERROR) { + // + // If error, assume User Rejection + // + return FALSE; } } - } while (InputKey == 0); - - if (InputKey != SCAN_ESC) { - return TRUE; - } + Timeout -= Interval; + } while (Timeout > 0); return FALSE; } diff --git a/OvmfPkg/Library/Tcg2PhysicalPresenceLibQemu/DxeTcg2PhysicalPresenceLib.inf b/OvmfPkg/Library/Tcg2PhysicalPresenceLibQemu/DxeTcg2PhysicalPresenceLib.inf index 85ce0e2b29..701de1836c 100644 --- a/OvmfPkg/Library/Tcg2PhysicalPresenceLibQemu/DxeTcg2PhysicalPresenceLib.inf +++ b/OvmfPkg/Library/Tcg2PhysicalPresenceLibQemu/DxeTcg2PhysicalPresenceLib.inf @@ -20,7 +20,7 @@ # This external input must be validated carefully to avoid security issue. # # Copyright (C) 2018, Red Hat, Inc. -# Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR> +# Copyright (c) 2013 - 2020, Intel Corporation. All rights reserved.<BR> # SPDX-License-Identifier: BSD-2-Clause-Patent # ## @@ -62,10 +62,14 @@ UefiBootServicesTableLib UefiLib UefiRuntimeServicesTableLib + TimerLib [Protocols] gEfiTcg2ProtocolGuid ## SOMETIMES_CONSUMES +[Pcd] + gEfiSecurityPkgTokenSpaceGuid.PcdPhysicalPresenceUserConfirmTimeout + [Guids] ## SOMETIMES_CONSUMES ## HII gEfiTcg2PhysicalPresenceGuid -- 2.21.0.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#52713): https://edk2.groups.io/g/devel/message/52713 Mute This Topic: https://groups.io/mt/69392333/21656 Group Owner: devel+ow...@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-