]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkPkg/Include/Ppi/Security.h
Add "FRAMEWORK_" to remove name collision with Security2 PPI in MdePkg
[mirror_edk2.git] / IntelFrameworkPkg / Include / Ppi / Security.h
CommitLineData
3e5a3960 1/** @file\r
2 This file declares Security Architectural PPI.\r
4a71b21a 3 \r
4 This PPI is installed by some platform PEIM that abstracts the security policy to the PEI\r
ac644614 5 Foundation, namely the case of a PEIM's authentication state being returned during the PEI section\r
4a71b21a 6 extraction process.\r
7 \r
b80fbe85 8 Copyright (c) 2006, Intel Corporation\r
9 All rights reserved. This program and the accompanying materials\r
10 are licensed and made available under the terms and conditions of the BSD License\r
11 which accompanies this distribution. The full text of the license may be found at\r
12 http://opensource.org/licenses/bsd-license.php\r
3e5a3960 13\r
b80fbe85 14 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
15 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
3e5a3960 16\r
3e5a3960 17 @par Revision Reference:\r
18 This PPI is defined in PEI CIS.\r
19 Version 0.91.\r
20\r
21**/\r
22\r
23#ifndef __SECURITY_PPI_H__\r
24#define __SECURITY_PPI_H__\r
25\r
26#define EFI_PEI_SECURITY_PPI_GUID \\r
27 { \\r
28 0x1388066e, 0x3a57, 0x4efa, {0x98, 0xf3, 0xc1, 0x2f, 0x3a, 0x95, 0x8a, 0x29 } \\r
29 }\r
30\r
31typedef struct _EFI_PEI_SECURITY_PPI EFI_PEI_SECURITY_PPI;\r
32\r
33/**\r
b80fbe85 34 Allows the platform builder to implement a security policy in response\r
3e5a3960 35 to varying file authentication states.\r
36\r
badb54ab 37 @param PeiServices Pointer to the PEI Services Table.\r
38 @param This Interface pointer that implements the particular EFI_PEI_SECURITY_PPI instance.\r
39 @param AuthenticationStatus Status returned by the verification service as part of section extraction.\r
40 @param FfsFileHeader Pointer to the file under review.\r
41 @param DeferExecution Pointer to a variable that alerts the PEI Foundation to defer execution of a PEIM.\r
42\r
43 @retval EFI_SUCCESS The service performed its action successfully.\r
44 @retval EFI_SECURITY_VIOLATION The object cannot be trusted\r
3e5a3960 45**/\r
46typedef\r
47EFI_STATUS\r
fa712ebc 48(EFIAPI *FRAMEWORK_EFI_PEI_SECURITY_AUTHENTICATION_STATE)(\r
3e5a3960 49 IN EFI_PEI_SERVICES **PeiServices,\r
50 IN EFI_PEI_SECURITY_PPI *This,\r
51 IN UINT32 AuthenticationStatus,\r
52 IN EFI_FFS_FILE_HEADER *FfsFileHeader,\r
badb54ab 53 IN OUT BOOLEAN *DeferExecution\r
3e5a3960 54 );\r
55\r
badb54ab 56//\r
57// PPI interface structure of Security PPI\r
58//\r
3e5a3960 59struct _EFI_PEI_SECURITY_PPI {\r
fa712ebc 60 FRAMEWORK_EFI_PEI_SECURITY_AUTHENTICATION_STATE AuthenticationState;\r
3e5a3960 61};\r
62\r
63extern EFI_GUID gEfiPeiSecurityPpiGuid;\r
64\r
65#endif\r