]> git.proxmox.com Git - mirror_edk2.git/blame - CryptoPkg/Library/BaseCryptLib/Pk/CryptAuthenticode.c
BaseTools: Fix a cleanall issue.
[mirror_edk2.git] / CryptoPkg / Library / BaseCryptLib / Pk / CryptAuthenticode.c
CommitLineData
b7d320f8 1/** @file\r
2 Authenticode Portable Executable Signature Verification over OpenSSL.\r
3\r
dc204d5a
JY
4 Caution: This module requires additional review when modified.\r
5 This library will have external input - signature (e.g. PE/COFF Authenticode).\r
6 This external input must be validated carefully to avoid security issue like\r
7 buffer overflow, integer overflow.\r
8\r
9 AuthenticodeVerify() will get PE/COFF Authenticode and will do basic check for\r
10 data structure.\r
11\r
16d2c32c 12Copyright (c) 2011 - 2012, Intel Corporation. All rights reserved.<BR>\r
b7d320f8 13This program and the accompanying materials\r
14are licensed and made available under the terms and conditions of the BSD License\r
15which accompanies this distribution. The full text of the license may be found at\r
16http://opensource.org/licenses/bsd-license.php\r
17\r
18THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
19WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
20\r
21**/\r
22\r
23#include "InternalCryptLib.h"\r
24\r
25#include <openssl/objects.h>\r
26#include <openssl/x509.h>\r
27#include <openssl/pkcs7.h>\r
28\r
fe5eea5e 29//\r
30// OID ASN.1 Value for SPC_INDIRECT_DATA_OBJID\r
31//\r
32UINT8 mSpcIndirectOidValue[] = {\r
33 0x2B, 0x06, 0x01, 0x04, 0x01, 0x82, 0x37, 0x02, 0x01, 0x04\r
34 };\r
b7d320f8 35\r
36/**\r
37 Verifies the validility of a PE/COFF Authenticode Signature as described in "Windows\r
38 Authenticode Portable Executable Signature Format".\r
39\r
16d2c32c 40 If AuthData is NULL, then return FALSE.\r
41 If ImageHash is NULL, then return FALSE.\r
b7d320f8 42\r
dc204d5a
JY
43 Caution: This function may receive untrusted input.\r
44 PE/COFF Authenticode is external input, so this function will do basic check for\r
45 Authenticode data structure.\r
46\r
b7d320f8 47 @param[in] AuthData Pointer to the Authenticode Signature retrieved from signed\r
48 PE/COFF image to be verified.\r
49 @param[in] DataSize Size of the Authenticode Signature in bytes.\r
50 @param[in] TrustedCert Pointer to a trusted/root certificate encoded in DER, which\r
51 is used for certificate chain verification.\r
52 @param[in] CertSize Size of the trusted certificate in bytes.\r
53 @param[in] ImageHash Pointer to the original image file hash value. The procudure\r
54 for calculating the image hash value is described in Authenticode\r
55 specification.\r
56 @param[in] HashSize Size of Image hash value in bytes.\r
57\r
58 @retval TRUE The specified Authenticode Signature is valid.\r
59 @retval FALSE Invalid Authenticode Signature.\r
60\r
61**/\r
62BOOLEAN\r
63EFIAPI\r
64AuthenticodeVerify (\r
65 IN CONST UINT8 *AuthData,\r
66 IN UINTN DataSize,\r
67 IN CONST UINT8 *TrustedCert,\r
68 IN UINTN CertSize,\r
69 IN CONST UINT8 *ImageHash,\r
70 IN UINTN HashSize\r
71 )\r
72{\r
73 BOOLEAN Status;\r
74 PKCS7 *Pkcs7;\r
75 CONST UINT8 *OrigAuthData;\r
76 UINT8 *SpcIndirectDataContent;\r
77 UINT8 Asn1Byte;\r
78 UINTN ContentSize;\r
fe5eea5e 79 UINT8 *SpcIndirectDataOid;\r
b7d320f8 80\r
81 //\r
16d2c32c 82 // Check input parameters.\r
b7d320f8 83 //\r
16d2c32c 84 if ((AuthData == NULL) || (TrustedCert == NULL) || (ImageHash == NULL)) {\r
85 return FALSE;\r
86 }\r
87\r
88 if ((DataSize > INT_MAX) || (CertSize > INT_MAX) || (HashSize > INT_MAX)) {\r
89 return FALSE;\r
90 }\r
da9e7418 91\r
b7d320f8 92 Status = FALSE;\r
93 Pkcs7 = NULL;\r
94 OrigAuthData = AuthData;\r
95\r
96 //\r
97 // Retrieve & Parse PKCS#7 Data (DER encoding) from Authenticode Signature\r
98 //\r
99 Pkcs7 = d2i_PKCS7 (NULL, &AuthData, (int)DataSize);\r
100 if (Pkcs7 == NULL) {\r
101 goto _Exit;\r
102 }\r
103\r
104 //\r
105 // Check if it's PKCS#7 Signed Data (for Authenticode Scenario)\r
106 //\r
107 if (!PKCS7_type_is_signed (Pkcs7)) {\r
108 goto _Exit;\r
109 }\r
110\r
111 //\r
112 // NOTE: OpenSSL PKCS7 Decoder didn't work for Authenticode-format signed data due to\r
113 // some authenticode-specific structure. Use opaque ASN.1 string to retrieve\r
114 // PKCS#7 ContentInfo here.\r
115 //\r
fe5eea5e 116 SpcIndirectDataOid = (UINT8 *)(Pkcs7->d.sign->contents->type->data);\r
117 if (CompareMem (\r
118 SpcIndirectDataOid,\r
119 mSpcIndirectOidValue,\r
120 sizeof (mSpcIndirectOidValue)\r
121 ) != 0) {\r
122 //\r
123 // Un-matched SPC_INDIRECT_DATA_OBJID.\r
124 //\r
125 goto _Exit;\r
126 } \r
127\r
128\r
b7d320f8 129 SpcIndirectDataContent = (UINT8 *)(Pkcs7->d.sign->contents->d.other->value.asn1_string->data);\r
130\r
131 //\r
132 // Retrieve the SEQUENCE data size from ASN.1-encoded SpcIndirectDataContent.\r
133 //\r
134 Asn1Byte = *(SpcIndirectDataContent + 1);\r
16d2c32c 135\r
b7d320f8 136 if ((Asn1Byte & 0x80) == 0) {\r
137 //\r
138 // Short Form of Length Encoding\r
139 //\r
140 ContentSize = (UINTN) (Asn1Byte & 0x7F);\r
141 //\r
142 // Skip the SEQUENCE Tag;\r
143 //\r
144 SpcIndirectDataContent += 2;\r
16d2c32c 145 } else if ((Asn1Byte & 0x82) == 0x82) {\r
b7d320f8 146 //\r
16d2c32c 147 // Long Form of Length Encoding, only support two bytes.\r
b7d320f8 148 //\r
0e241454 149 ContentSize = (UINTN) (*(UINT8 *)(SpcIndirectDataContent + 2));\r
150 ContentSize = (ContentSize << 8) + (UINTN)(*(UINT8 *)(SpcIndirectDataContent + 3));\r
b7d320f8 151 //\r
152 // Skip the SEQUENCE Tag;\r
153 //\r
154 SpcIndirectDataContent += 4;\r
16d2c32c 155 } else {\r
156 goto _Exit;\r
b7d320f8 157 }\r
158\r
159 //\r
160 // Compare the original file hash value to the digest retrieve from SpcIndirectDataContent\r
161 // defined in Authenticode\r
162 // NOTE: Need to double-check HashLength here!\r
163 //\r
164 if (CompareMem (SpcIndirectDataContent + ContentSize - HashSize, ImageHash, HashSize) != 0) {\r
165 //\r
166 // Un-matched PE/COFF Hash Value\r
167 //\r
168 goto _Exit;\r
169 }\r
170\r
171 //\r
172 // Verifies the PKCS#7 Signed Data in PE/COFF Authenticode Signature\r
173 //\r
174 Status = (BOOLEAN) Pkcs7Verify (OrigAuthData, DataSize, TrustedCert, CertSize, SpcIndirectDataContent, ContentSize);\r
175\r
176_Exit:\r
177 //\r
178 // Release Resources\r
179 //\r
180 PKCS7_free (Pkcs7);\r
181\r
182 return Status;\r
183}\r