754a6ba84509e5be2e61c00d197d97869f7c417d
[openssl.git] / test / cmp_testlib.c
1 /*
2  * Copyright 2007-2020 The OpenSSL Project Authors. All Rights Reserved.
3  * Copyright Nokia 2007-2019
4  * Copyright Siemens AG 2015-2019
5  *
6  * Licensed under the Apache License 2.0 (the "License").  You may not use
7  * this file except in compliance with the License.  You can obtain a copy
8  * in the file LICENSE in the source distribution or at
9  * https://www.openssl.org/source/license.html
10  */
11
12 #include "cmp_testlib.h"
13 #include <openssl/rsa.h> /* needed in case config no-deprecated */
14
15 DEFINE_STACK_OF(X509)
16
17 EVP_PKEY *load_pem_key(const char *file, OPENSSL_CTX *libctx)
18 {
19     EVP_PKEY *key = NULL;
20     BIO *bio = NULL;
21
22     if (!TEST_ptr(bio = BIO_new(BIO_s_file())))
23         return NULL;
24     if (TEST_int_gt(BIO_read_filename(bio, file), 0))
25         (void)TEST_ptr(key = PEM_read_bio_PrivateKey_ex(bio, NULL, NULL, NULL,
26                                                         libctx, NULL));
27
28     BIO_free(bio);
29     return key;
30 }
31
32 X509 *load_pem_cert(const char *file, OPENSSL_CTX *libctx)
33 {
34     X509 *cert = NULL;
35     BIO *bio = NULL;
36
37     if (!TEST_ptr(bio = BIO_new(BIO_s_file())))
38         return NULL;
39     if (TEST_int_gt(BIO_read_filename(bio, file), 0)
40             && TEST_ptr(cert = X509_new_with_libctx(libctx, NULL)))
41         (void)TEST_ptr(cert = PEM_read_bio_X509(bio, &cert, NULL, NULL));
42
43     BIO_free(bio);
44     return cert;
45 }
46
47 OSSL_CMP_MSG *load_pkimsg(const char *file)
48 {
49     OSSL_CMP_MSG *msg;
50
51     (void)TEST_ptr((msg = OSSL_CMP_MSG_read(file)));
52     return msg;
53 }
54
55 X509_REQ *load_csr(const char *file)
56 {
57     X509_REQ *csr = NULL;
58     BIO *bio = NULL;
59
60     if (!TEST_ptr(file) || !TEST_ptr(bio = BIO_new_file(file, "rb")))
61         return NULL;
62     (void)TEST_ptr(csr = d2i_X509_REQ_bio(bio, NULL));
63     BIO_free(bio);
64     return csr;
65 }
66
67 /*
68  * Checks whether the syntax of msg conforms to ASN.1
69  */
70 int valid_asn1_encoding(const OSSL_CMP_MSG *msg)
71 {
72     return msg != NULL ? i2d_OSSL_CMP_MSG(msg, NULL) > 0 : 0;
73 }
74
75 /*
76  * Compares two stacks of certificates in the order of their elements.
77  * Returns 0 if sk1 and sk2 are equal and another value otherwise
78  */
79 int STACK_OF_X509_cmp(const STACK_OF(X509) *sk1, const STACK_OF(X509) *sk2)
80 {
81     int i, res;
82     X509 *a, *b;
83
84     if (sk1 == sk2)
85         return 0;
86     if (sk1 == NULL)
87         return -1;
88     if (sk2 == NULL)
89         return 1;
90     if ((res = sk_X509_num(sk1) - sk_X509_num(sk2)))
91         return res;
92     for (i = 0; i < sk_X509_num(sk1); i++) {
93         a = sk_X509_value(sk1, i);
94         b = sk_X509_value(sk2, i);
95         if (a != b)
96             if ((res = X509_cmp(a, b)) != 0)
97                 return res;
98     }
99     return 0;
100 }
101
102 /*
103  * Up refs and push a cert onto sk.
104  * Returns the number of certificates on the stack on success
105  * Returns -1 or 0 on error
106  */
107 int STACK_OF_X509_push1(STACK_OF(X509) *sk, X509 *cert)
108 {
109     int res;
110
111     if (sk == NULL || cert == NULL)
112         return -1;
113     if (!X509_up_ref(cert))
114         return -1;
115     res = sk_X509_push(sk, cert);
116     if (res <= 0)
117         X509_free(cert); /* down-ref */
118     return res;
119 }
120
121 int print_to_bio_out(const char *func, const char *file, int line,
122                      OSSL_CMP_severity level, const char *msg)
123 {
124     return OSSL_CMP_print_to_bio(bio_out, func, file, line, level, msg);
125 }