]> git.proxmox.com Git - mirror_edk2.git/blame - Nt32Pkg/Library/PlatformSecureLib/PlatformSecureLib.c
Nt32Pkg: Platform BDS should test the untested memory
[mirror_edk2.git] / Nt32Pkg / Library / PlatformSecureLib / PlatformSecureLib.c
CommitLineData
0ff38cbf 1/** @file\r
2 Provides a platform-specific method to enable Secure Boot Custom Mode setup.\r
3\r
4 Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR>\r
5 This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14#include <Library/PcdLib.h>\r
15\r
16\r
17/**\r
18\r
19 This function provides a platform-specific method to detect whether the platform\r
20 is operating by a physically present user. \r
21\r
22 Programmatic changing of platform security policy (such as disable Secure Boot,\r
23 or switch between Standard/Custom Secure Boot mode) MUST NOT be possible during\r
24 Boot Services or after exiting EFI Boot Services. Only a physically present user\r
25 is allowed to perform these operations.\r
26\r
27 NOTE THAT: This function cannot depend on any EFI Variable Service since they are\r
28 not available when this function is called in AuthenticateVariable driver.\r
29 \r
30 @retval TRUE The platform is operated by a physically present user.\r
31 @retval FALSE The platform is NOT operated by a physically present user.\r
32\r
33**/\r
34BOOLEAN\r
35EFIAPI\r
36UserPhysicalPresent (\r
37 VOID\r
38 )\r
39{\r
40 return TRUE;\r
41}\r