]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Guid/ImageAuthentication.h
bf5295a0463f1a0faf1c54ed6d2ff9569a178915
[mirror_edk2.git] / MdePkg / Include / Guid / ImageAuthentication.h
1 /** @file
2 Platform Key, Key Exchange Key, and Image signature database are defined
3 for the signed image validation.
4
5 Copyright (c) 2009 - 2011, 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
10
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.
13
14 @par Revision Reference:
15 GUIDs defined in UEFI 2.3.1 spec.
16 **/
17
18 #ifndef __IMAGE_AUTHTICATION_H__
19 #define __IMAGE_AUTHTICATION_H__
20
21 #include <Guid/GlobalVariable.h>
22
23 #define EFI_IMAGE_SECURITY_DATABASE_GUID \
24 { \
25 0xd719b2cb, 0x3d3a, 0x4596, { 0xa3, 0xbc, 0xda, 0xd0, 0xe, 0x67, 0x65, 0x6f } \
26 }
27
28 ///
29 /// Varialbe name with guid EFI_IMAGE_SECURITY_DATABASE_GUID
30 /// for the authorized signature database.
31 ///
32 #define EFI_IMAGE_SECURITY_DATABASE L"db"
33 ///
34 /// Varialbe name with guid EFI_IMAGE_SECURITY_DATABASE_GUID
35 /// for the forbidden signature database.
36 ///
37 #define EFI_IMAGE_SECURITY_DATABASE1 L"dbx"
38
39 #define SETUP_MODE 1
40 #define USER_MODE 0
41 ///
42 /// Globally "SetupMode" variable to specify whether the system is currently operating
43 /// in setup mode (1) or not (0). All other values are reserved.
44 ///
45 #define EFI_SETUP_MODE_NAME L"SetupMode"
46 ///
47 /// Globally "PK" variable for the Platform Key Signature Database.
48 ///
49 #define EFI_PLATFORM_KEY_NAME L"PK"
50 ///
51 /// Globally "KEK" variable for the Key Exchange Key Signature Database.
52 ///
53 #define EFI_KEY_EXCHANGE_KEY_NAME L"KEK"
54 ///
55 /// Globally "SignatureSupport" variable returns an array of GUIDs,
56 /// with each GUID representing a type of signature which the platform
57 /// firmware supports for images and other data.
58 ///
59 #define EFI_SIGNATURE_SUPPORT_NAME L"SignatureSupport"
60
61 //***********************************************************************
62 // Signature Database
63 //***********************************************************************
64 ///
65 /// The format of a signature database.
66 ///
67 #pragma pack(1)
68
69 typedef struct {
70 ///
71 /// An identifier which identifies the agent which added the signature to the list.
72 ///
73 EFI_GUID SignatureOwner;
74 ///
75 /// The format of the signature is defined by the SignatureType.
76 ///
77 UINT8 SignatureData[1];
78 } EFI_SIGNATURE_DATA;
79
80 typedef struct {
81 ///
82 /// Type of the signature. GUID signature types are defined in below.
83 ///
84 EFI_GUID SignatureType;
85 ///
86 /// Total size of the signature list, including this header.
87 ///
88 UINT32 SignatureListSize;
89 ///
90 /// Size of the signature header which precedes the array of signatures.
91 ///
92 UINT32 SignatureHeaderSize;
93 ///
94 /// Size of each signature.
95 ///
96 UINT32 SignatureSize;
97 ///
98 /// Header before the array of signatures. The format of this header is specified
99 /// by the SignatureType.
100 /// UINT8 SignatureHeader[SignatureHeaderSize];
101 ///
102 /// An array of signatures. Each signature is SignatureSize bytes in length.
103 /// EFI_SIGNATURE_DATA Signatures[][SignatureSize];
104 ///
105 } EFI_SIGNATURE_LIST;
106
107 #pragma pack()
108
109 ///
110 /// This identifies a signature containing a SHA-256 hash. The SignatureHeader size shall
111 /// always be 0. The SignatureSize shall always be 16 (size of SignatureOwner component) +
112 /// 32 bytes.
113 ///
114 #define EFI_CERT_SHA256_GUID \
115 { \
116 0xc1c41626, 0x504c, 0x4092, {0xac, 0xa9, 0x41, 0xf9, 0x36, 0x93, 0x43, 0x28} \
117 }
118
119 ///
120 /// This identifies a signature containing an RSA-2048 key. The key (only the modulus
121 /// since the public key exponent is known to be 0x10001) shall be stored in big-endian
122 /// order.
123 /// The SignatureHeader size shall always be 0. The SignatureSize shall always be 16 (size
124 /// of SignatureOwner component) + 32 bytes.
125 ///
126 #define EFI_CERT_RSA2048_GUID \
127 { \
128 0x3c5766e8, 0x269c, 0x4e34, {0xaa, 0x14, 0xed, 0x77, 0x6e, 0x85, 0xb3, 0xb6} \
129 }
130
131 ///
132 /// This identifies a signature containing a RSA-2048 signature of a SHA-256 hash. The
133 /// SignatureHeader size shall always be 0. The SignatureSize shall always be 16 (size of
134 /// SignatureOwner component) + 32 bytes.
135 ///
136 #define EFI_CERT_RSA2048_SHA256_GUID \
137 { \
138 0xe2b36190, 0x879b, 0x4a3d, {0xad, 0x8d, 0xf2, 0xe7, 0xbb, 0xa3, 0x27, 0x84} \
139 }
140
141 ///
142 /// This identifies a signature containing a SHA-1 hash. The SignatureSize shall always
143 /// be 16 (size of SignatureOwner component) + 32 bytes.
144 ///
145 #define EFI_CERT_SHA1_GUID \
146 { \
147 0x826ca512, 0xcf10, 0x4ac9, {0xb1, 0x87, 0xbe, 0x1, 0x49, 0x66, 0x31, 0xbd} \
148 }
149
150 ///
151 /// TThis identifies a signature containing a RSA-2048 signature of a SHA-1 hash. The
152 /// SignatureHeader size shall always be 0. The SignatureSize shall always be 16 (size of
153 /// SignatureOwner component) + 32 bytes.
154 ///
155 #define EFI_CERT_RSA2048_SHA1_GUID \
156 { \
157 0x67f8444f, 0x8743, 0x48f1, {0xa3, 0x28, 0x1e, 0xaa, 0xb8, 0x73, 0x60, 0x80} \
158 }
159
160 ///
161 /// This identifies a signature based on an X.509 certificate. If the signature is an X.509
162 /// certificate then verification of the signature of an image should validate the public
163 /// key certificate in the image using certificate path verification, up to this X.509
164 /// certificate as a trusted root. The SignatureHeader size shall always be 0. The
165 /// SignatureSize may vary but shall always be 16 (size of the SignatureOwner component) +
166 /// the size of the certificate itself.
167 /// Note: This means that each certificate will normally be in a separate EFI_SIGNATURE_LIST.
168 ///
169 #define EFI_CERT_X509_GUID \
170 { \
171 0xa5c059a1, 0x94e4, 0x4aa7, {0x87, 0xb5, 0xab, 0x15, 0x5c, 0x2b, 0xf0, 0x72} \
172 }
173
174 ///
175 /// This identifies a signature containing a SHA-224 hash. The SignatureHeader size shall
176 /// always be 0. The SignatureSize shall always be 16 (size of SignatureOwner component) +
177 /// 28 bytes.
178 ///
179 #define EFI_CERT_SHA224_GUID \
180 { \
181 0xb6e5233, 0xa65c, 0x44c9, {0x94, 0x7, 0xd9, 0xab, 0x83, 0xbf, 0xc8, 0xbd} \
182 }
183
184 ///
185 /// This identifies a signature containing a SHA-384 hash. The SignatureHeader size shall
186 /// always be 0. The SignatureSize shall always be 16 (size of SignatureOwner component) +
187 /// 48 bytes.
188 ///
189 #define EFI_CERT_SHA384_GUID \
190 { \
191 0xff3e5307, 0x9fd0, 0x48c9, {0x85, 0xf1, 0x8a, 0xd5, 0x6c, 0x70, 0x1e, 0x1} \
192 }
193
194 ///
195 /// This identifies a signature containing a SHA-512 hash. The SignatureHeader size shall
196 /// always be 0. The SignatureSize shall always be 16 (size of SignatureOwner component) +
197 /// 64 bytes.
198 ///
199 #define EFI_CERT_SHA512_GUID \
200 { \
201 0x93e0fae, 0xa6c4, 0x4f50, {0x9f, 0x1b, 0xd4, 0x1e, 0x2b, 0x89, 0xc1, 0x9a} \
202 }
203
204 //***********************************************************************
205 // Image Execution Information Table Definition
206 //***********************************************************************
207 typedef UINT32 EFI_IMAGE_EXECUTION_ACTION;
208
209 #define EFI_IMAGE_EXECUTION_AUTHENTICATION 0x00000007
210 #define EFI_IMAGE_EXECUTION_AUTH_UNTESTED 0x00000000
211 #define EFI_IMAGE_EXECUTION_AUTH_SIG_FAILED 0x00000001
212 #define EFI_IMAGE_EXECUTION_AUTH_SIG_PASSED 0x00000002
213 #define EFI_IMAGE_EXECUTION_AUTH_SIG_NOT_FOUND 0x00000003
214 #define EFI_IMAGE_EXECUTION_AUTH_SIG_FOUND 0x00000004
215 #define EFI_IMAGE_EXECUTION_POLICY_FAILED 0x00000005
216 #define EFI_IMAGE_EXECUTION_INITIALIZED 0x00000008
217
218 //
219 // EFI_IMAGE_EXECUTION_INFO is added to EFI System Configuration Table
220 // and assigned the GUID EFI_IMAGE_SECURITY_DATABASE_GUID.
221 //
222 typedef struct {
223 ///
224 /// Describes the action taken by the firmware regarding this image.
225 ///
226 EFI_IMAGE_EXECUTION_ACTION Action;
227 ///
228 /// Size of all of the entire structure.
229 ///
230 UINT32 InfoSize;
231 ///
232 /// If this image was a UEFI device driver (for option ROM, for example) this is the
233 /// null-terminated, user-friendly name for the device. If the image was for an application,
234 /// then this is the name of the application. If this cannot be determined, then a simple
235 /// NULL character should be put in this position.
236 /// CHAR16 Name[];
237 ///
238
239 ///
240 /// For device drivers, this is the device path of the device for which this device driver
241 /// was intended. In some cases, the driver itself may be stored as part of the system
242 /// firmware, but this field should record the device's path, not the firmware path. For
243 /// applications, this is the device path of the application. If this cannot be determined,
244 /// a simple end-of-path device node should be put in this position.
245 /// EFI_DEVICE_PATH_PROTOCOL DevicePath;
246 ///
247
248 ///
249 /// Zero or more image signatures. If the image contained no signatures,
250 /// then this field is empty.
251 ///
252 EFI_SIGNATURE_LIST Signature;
253 } EFI_IMAGE_EXECUTION_INFO;
254
255
256 typedef struct {
257 ///
258 /// Number of EFI_IMAGE_EXECUTION_INFO structures.
259 ///
260 UINTN NumberOfImages;
261 ///
262 /// Number of image instances of EFI_IMAGE_EXECUTION_INFO structures.
263 ///
264 // EFI_IMAGE_EXECUTION_INFO InformationInfo[]
265 } EFI_IMAGE_EXECUTION_INFO_TABLE;
266
267 extern EFI_GUID gEfiImageSecurityDatabaseGuid;
268 extern EFI_GUID gEfiCertSha256Guid;
269 extern EFI_GUID gEfiCertRsa2048Guid;
270 extern EFI_GUID gEfiCertRsa2048Sha256Guid;
271 extern EFI_GUID gEfiCertSha1Guid;
272 extern EFI_GUID gEfiCertRsa2048Sha1Guid;
273 extern EFI_GUID gEfiCertX509Guid;
274 extern EFI_GUID gEfiCertSha224Guid;
275 extern EFI_GUID gEfiCertSha384Guid;
276 extern EFI_GUID gEfiCertSha512Guid;
277
278 #endif