2 The internal header file includes the common header files, defines
3 internal structure and functions used by ImageVerificationLib.
5 Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR>
6 This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16 #ifndef __IMAGEVERIFICATIONLIB_H__
17 #define __IMAGEVERIFICATIONLIB_H__
19 #include <Library/UefiDriverEntryPoint.h>
20 #include <Library/DebugLib.h>
21 #include <Library/BaseMemoryLib.h>
22 #include <Library/UefiBootServicesTableLib.h>
23 #include <Library/UefiRuntimeServicesTableLib.h>
24 #include <Library/UefiLib.h>
25 #include <Library/BaseLib.h>
26 #include <Library/MemoryAllocationLib.h>
27 #include <Library/BaseCryptLib.h>
28 #include <Library/PcdLib.h>
29 #include <Library/DevicePathLib.h>
30 #include <Library/SecurityManagementLib.h>
31 #include <Library/PeCoffLib.h>
32 #include <Protocol/FirmwareVolume2.h>
33 #include <Protocol/DevicePath.h>
34 #include <Protocol/BlockIo.h>
35 #include <Protocol/SimpleFileSystem.h>
36 #include <Protocol/VariableWrite.h>
37 #include <Guid/ImageAuthentication.h>
38 #include <Guid/AuthenticatedVariableFormat.h>
39 #include <IndustryStandard/PeImage.h>
41 #define EFI_CERT_TYPE_RSA2048_SHA256_SIZE 256
42 #define EFI_CERT_TYPE_RSA2048_SIZE 256
43 #define MAX_NOTIFY_STRING_LEN 64
44 #define TWO_BYTE_ENCODE 0x82
46 #define ALIGNMENT_SIZE 8
47 #define ALIGN_SIZE(a) (((a) % ALIGNMENT_SIZE) ? ALIGNMENT_SIZE - ((a) % ALIGNMENT_SIZE) : 0)
50 // Image type definitions
52 #define IMAGE_UNKNOWN 0x00000000
53 #define IMAGE_FROM_FV 0x00000001
54 #define IMAGE_FROM_OPTION_ROM 0x00000002
55 #define IMAGE_FROM_REMOVABLE_MEDIA 0x00000003
56 #define IMAGE_FROM_FIXED_MEDIA 0x00000004
59 // Authorization policy bit definition
61 #define ALWAYS_EXECUTE 0x00000000
62 #define NEVER_EXECUTE 0x00000001
63 #define ALLOW_EXECUTE_ON_SECURITY_VIOLATION 0x00000002
64 #define DEFER_EXECUTE_ON_SECURITY_VIOLATION 0x00000003
65 #define DENY_EXECUTE_ON_SECURITY_VIOLATION 0x00000004
66 #define QUERY_USER_ON_SECURITY_VIOLATION 0x00000005
71 #define HASHALG_SHA1 0x00000000
72 #define HASHALG_SHA224 0x00000001
73 #define HASHALG_SHA256 0x00000002
74 #define HASHALG_SHA384 0x00000003
75 #define HASHALG_SHA512 0x00000004
76 #define HASHALG_MAX 0x00000005
79 // Set max digest size as SHA512 Output (64 bytes) by far
81 #define MAX_DIGEST_SIZE SHA512_DIGEST_SIZE
84 // PKCS7 Certificate definition
89 } WIN_CERTIFICATE_EFI_PKCS
;
93 Retrieves the size, in bytes, of the context buffer required for hash operations.
95 @return The size, in bytes, of the context buffer required for hash operations.
100 (EFIAPI
*HASH_GET_CONTEXT_SIZE
)(
105 Initializes user-supplied memory pointed by HashContext as hash context for
108 If HashContext is NULL, then ASSERT().
110 @param[in, out] HashContext Pointer to Context being initialized.
112 @retval TRUE HASH context initialization succeeded.
113 @retval FALSE HASH context initialization failed.
119 IN OUT VOID
*HashContext
124 Performs digest on a data buffer of the specified length. This function can
125 be called multiple times to compute the digest of long or discontinuous data streams.
127 If HashContext is NULL, then ASSERT().
129 @param[in, out] HashContext Pointer to the MD5 context.
130 @param[in] Data Pointer to the buffer containing the data to be hashed.
131 @param[in] DataLength Length of Data buffer in bytes.
133 @retval TRUE HASH data digest succeeded.
134 @retval FALSE Invalid HASH context. After HashFinal function has been called, the
135 HASH context cannot be reused.
140 (EFIAPI
*HASH_UPDATE
)(
141 IN OUT VOID
*HashContext
,
147 Completes hash computation and retrieves the digest value into the specified
148 memory. After this function has been called, the context cannot be used again.
150 If HashContext is NULL, then ASSERT().
151 If HashValue is NULL, then ASSERT().
153 @param[in, out] HashContext Pointer to the MD5 context
154 @param[out] HashValue Pointer to a buffer that receives the HASH digest
157 @retval TRUE HASH digest computation succeeded.
158 @retval FALSE HASH digest computation failed.
163 (EFIAPI
*HASH_FINAL
)(
164 IN OUT VOID
*HashContext
,
170 // Hash Algorithm Table
174 // Name for Hash Algorithm
182 // Hash Algorithm OID ASN.1 Value
186 // Length of Hash OID Value
190 // Pointer to Hash GetContentSize function
192 HASH_GET_CONTEXT_SIZE GetContextSize
;
194 // Pointer to Hash Init function
198 // Pointer to Hash Update function
200 HASH_UPDATE HashUpdate
;
202 // Pointer to Hash Final function
204 HASH_FINAL HashFinal
;