2 X.509 Certificate Handler Wrapper Implementation over OpenSSL.
4 Copyright (c) 2010 - 2015, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15 #include "InternalCryptLib.h"
16 #include <openssl/x509.h>
20 Construct a X509 object from DER-encoded certificate data.
22 If Cert is NULL, then return FALSE.
23 If SingleX509Cert is NULL, then return FALSE.
25 @param[in] Cert Pointer to the DER-encoded certificate data.
26 @param[in] CertSize The size of certificate data in bytes.
27 @param[out] SingleX509Cert The generated X509 object.
29 @retval TRUE The X509 object generation succeeded.
30 @retval FALSE The operation failed.
35 X509ConstructCertificate (
38 OUT UINT8
**SingleX509Cert
45 // Check input parameters.
47 if (Cert
== NULL
|| SingleX509Cert
== NULL
|| CertSize
> INT_MAX
) {
52 // Read DER-encoded X509 Certificate and Construct X509 object.
55 X509Cert
= d2i_X509 (NULL
, &Temp
, (long) CertSize
);
56 if (X509Cert
== NULL
) {
60 *SingleX509Cert
= (UINT8
*) X509Cert
;
66 Construct a X509 stack object from a list of DER-encoded certificate data.
68 If X509Stack is NULL, then return FALSE.
70 @param[in, out] X509Stack On input, pointer to an existing or NULL X509 stack object.
71 On output, pointer to the X509 stack object with new
72 inserted X509 certificate.
73 @param ... A list of DER-encoded single certificate data followed
74 by certificate size. A NULL terminates the list. The
75 pairs are the arguments to X509ConstructCertificate().
77 @retval TRUE The X509 stack construction succeeded.
78 @retval FALSE The construction operation failed.
83 X509ConstructCertificateStack (
84 IN OUT UINT8
**X509Stack
,
91 STACK_OF(X509
) *CertStack
;
97 // Check input parameters.
99 if (X509Stack
== NULL
) {
106 // Initialize X509 stack object.
108 CertStack
= (STACK_OF(X509
) *) (*X509Stack
);
109 if (CertStack
== NULL
) {
110 CertStack
= sk_X509_new_null ();
111 if (CertStack
== NULL
) {
116 VA_START (Args
, X509Stack
);
118 for (Index
= 0; ; Index
++) {
120 // If Cert is NULL, then it is the end of the list.
122 Cert
= VA_ARG (Args
, UINT8
*);
127 CertSize
= VA_ARG (Args
, UINTN
);
133 // Construct X509 Object from the given DER-encoded certificate data.
136 Status
= X509ConstructCertificate (
137 (CONST UINT8
*) Cert
,
142 if (X509Cert
!= NULL
) {
143 X509_free (X509Cert
);
149 // Insert the new X509 object into X509 stack object.
151 sk_X509_push (CertStack
, X509Cert
);
157 sk_X509_pop_free (CertStack
, X509_free
);
159 *X509Stack
= (UINT8
*) CertStack
;
166 Release the specified X509 object.
168 If X509Cert is NULL, then return FALSE.
170 @param[in] X509Cert Pointer to the X509 object to be released.
180 // Check input parameters.
182 if (X509Cert
== NULL
) {
187 // Free OpenSSL X509 object.
189 X509_free ((X509
*) X509Cert
);
193 Release the specified X509 stack object.
195 If X509Stack is NULL, then return FALSE.
197 @param[in] X509Stack Pointer to the X509 stack object to be released.
207 // Check input parameters.
209 if (X509Stack
== NULL
) {
214 // Free OpenSSL X509 stack object.
216 sk_X509_pop_free ((STACK_OF(X509
) *) X509Stack
, X509_free
);
220 Retrieve the subject bytes from one X.509 certificate.
222 @param[in] Cert Pointer to the DER-encoded X509 certificate.
223 @param[in] CertSize Size of the X509 certificate in bytes.
224 @param[out] CertSubject Pointer to the retrieved certificate subject bytes.
225 @param[in, out] SubjectSize The size in bytes of the CertSubject buffer on input,
226 and the size of buffer returned CertSubject on output.
228 If Cert is NULL, then return FALSE.
229 If SubjectSize is NULL, then return FALSE.
231 @retval TRUE The certificate subject retrieved successfully.
232 @retval FALSE Invalid certificate, or the SubjectSize is too small for the result.
233 The SubjectSize will be updated with the required size.
239 IN CONST UINT8
*Cert
,
241 OUT UINT8
*CertSubject
,
242 IN OUT UINTN
*SubjectSize
250 // Check input parameters.
252 if (Cert
== NULL
|| SubjectSize
== NULL
) {
259 // Read DER-encoded X509 Certificate and Construct X509 object.
261 Status
= X509ConstructCertificate (Cert
, CertSize
, (UINT8
**) &X509Cert
);
262 if ((X509Cert
== NULL
) || (!Status
)) {
270 // Retrieve subject name from certificate object.
272 X509Name
= X509_get_subject_name (X509Cert
);
273 if (X509Name
== NULL
) {
277 if (*SubjectSize
< (UINTN
) X509Name
->bytes
->length
) {
278 *SubjectSize
= (UINTN
) X509Name
->bytes
->length
;
281 *SubjectSize
= (UINTN
) X509Name
->bytes
->length
;
282 if (CertSubject
!= NULL
) {
283 CopyMem (CertSubject
, (UINT8
*) X509Name
->bytes
->data
, *SubjectSize
);
289 // Release Resources.
291 if (X509Cert
!= NULL
) {
292 X509_free (X509Cert
);
299 Retrieve the RSA Public Key from one DER-encoded X509 certificate.
301 @param[in] Cert Pointer to the DER-encoded X509 certificate.
302 @param[in] CertSize Size of the X509 certificate in bytes.
303 @param[out] RsaContext Pointer to new-generated RSA context which contain the retrieved
304 RSA public key component. Use RsaFree() function to free the
307 If Cert is NULL, then return FALSE.
308 If RsaContext is NULL, then return FALSE.
310 @retval TRUE RSA Public Key was retrieved successfully.
311 @retval FALSE Fail to retrieve RSA public key from X509 certificate.
316 RsaGetPublicKeyFromX509 (
317 IN CONST UINT8
*Cert
,
319 OUT VOID
**RsaContext
327 // Check input parameters.
329 if (Cert
== NULL
|| RsaContext
== NULL
) {
337 // Read DER-encoded X509 Certificate and Construct X509 object.
339 Status
= X509ConstructCertificate (Cert
, CertSize
, (UINT8
**) &X509Cert
);
340 if ((X509Cert
== NULL
) || (!Status
)) {
348 // Retrieve and check EVP_PKEY data from X509 Certificate.
350 Pkey
= X509_get_pubkey (X509Cert
);
351 if ((Pkey
== NULL
) || (Pkey
->type
!= EVP_PKEY_RSA
)) {
356 // Duplicate RSA Context from the retrieved EVP_PKEY.
358 if ((*RsaContext
= RSAPublicKey_dup (Pkey
->pkey
.rsa
)) != NULL
) {
364 // Release Resources.
366 if (X509Cert
!= NULL
) {
367 X509_free (X509Cert
);
371 EVP_PKEY_free (Pkey
);
378 Verify one X509 certificate was issued by the trusted CA.
380 @param[in] Cert Pointer to the DER-encoded X509 certificate to be verified.
381 @param[in] CertSize Size of the X509 certificate in bytes.
382 @param[in] CACert Pointer to the DER-encoded trusted CA certificate.
383 @param[in] CACertSize Size of the CA Certificate in bytes.
385 If Cert is NULL, then return FALSE.
386 If CACert is NULL, then return FALSE.
388 @retval TRUE The certificate was issued by the trusted CA.
389 @retval FALSE Invalid certificate or the certificate was not issued by the given
396 IN CONST UINT8
*Cert
,
398 IN CONST UINT8
*CACert
,
405 X509_STORE
*CertStore
;
406 X509_STORE_CTX CertCtx
;
409 // Check input parameters.
411 if (Cert
== NULL
|| CACert
== NULL
) {
421 // Register & Initialize necessary digest algorithms for certificate verification.
423 if (EVP_add_digest (EVP_md5 ()) == 0) {
426 if (EVP_add_digest (EVP_sha1 ()) == 0) {
429 if (EVP_add_digest (EVP_sha256 ()) == 0) {
434 // Read DER-encoded certificate to be verified and Construct X509 object.
436 Status
= X509ConstructCertificate (Cert
, CertSize
, (UINT8
**) &X509Cert
);
437 if ((X509Cert
== NULL
) || (!Status
)) {
443 // Read DER-encoded root certificate and Construct X509 object.
445 Status
= X509ConstructCertificate (CACert
, CACertSize
, (UINT8
**) &X509CACert
);
446 if ((X509CACert
== NULL
) || (!Status
)) {
454 // Set up X509 Store for trusted certificate.
456 CertStore
= X509_STORE_new ();
457 if (CertStore
== NULL
) {
460 if (!(X509_STORE_add_cert (CertStore
, X509CACert
))) {
465 // Set up X509_STORE_CTX for the subsequent verification operation.
467 if (!X509_STORE_CTX_init (&CertCtx
, CertStore
, X509Cert
, NULL
)) {
472 // X509 Certificate Verification.
474 Status
= (BOOLEAN
) X509_verify_cert (&CertCtx
);
475 X509_STORE_CTX_cleanup (&CertCtx
);
479 // Release Resources.
481 if (X509Cert
!= NULL
) {
482 X509_free (X509Cert
);
485 if (X509CACert
!= NULL
) {
486 X509_free (X509CACert
);
489 if (CertStore
!= NULL
) {
490 X509_STORE_free (CertStore
);
497 Retrieve the TBSCertificate from one given X.509 certificate.
499 @param[in] Cert Pointer to the given DER-encoded X509 certificate.
500 @param[in] CertSize Size of the X509 certificate in bytes.
501 @param[out] TBSCert DER-Encoded To-Be-Signed certificate.
502 @param[out] TBSCertSize Size of the TBS certificate in bytes.
504 If Cert is NULL, then return FALSE.
505 If TBSCert is NULL, then return FALSE.
506 If TBSCertSize is NULL, then return FALSE.
508 @retval TRUE The TBSCertificate was retrieved successfully.
509 @retval FALSE Invalid X.509 certificate.
515 IN CONST UINT8
*Cert
,
518 OUT UINTN
*TBSCertSize
527 // Check input parameters.
529 if ((Cert
== NULL
) || (TBSCert
== NULL
) ||
530 (TBSCertSize
== NULL
) || (CertSize
> INT_MAX
)) {
535 // An X.509 Certificate is: (defined in RFC3280)
536 // Certificate ::= SEQUENCE {
537 // tbsCertificate TBSCertificate,
538 // signatureAlgorithm AlgorithmIdentifier,
539 // signature BIT STRING }
543 // TBSCertificate ::= SEQUENCE {
544 // version [0] Version DEFAULT v1,
548 // So we can just ASN1-parse the x.509 DER-encoded data. If we strip
549 // the first SEQUENCE, the second SEQUENCE is the TBSCertificate.
552 ASN1_get_object (&Temp
, (long *)&Length
, (int *)&Asn1Tag
, (int *)&ObjClass
, (long)CertSize
);
554 if (Asn1Tag
!= V_ASN1_SEQUENCE
) {
558 *TBSCert
= (UINT8
*)Temp
;
560 ASN1_get_object (&Temp
, (long *)&Length
, (int *)&Asn1Tag
, (int *)&ObjClass
, (long)Length
);
562 // Verify the parsed TBSCertificate is one correct SEQUENCE data.
564 if (Asn1Tag
!= V_ASN1_SEQUENCE
) {
568 *TBSCertSize
= Length
+ (Temp
- *TBSCert
);