Add libctx/provider support to cmp_msg_test
[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)
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(bio, NULL, NULL, NULL));
26
27     BIO_free(bio);
28     return key;
29 }
30
31 X509 *load_pem_cert(const char *file, OPENSSL_CTX *libctx)
32 {
33     X509 *cert = NULL;
34     BIO *bio = NULL;
35
36     if (!TEST_ptr(bio = BIO_new(BIO_s_file())))
37         return NULL;
38     if (TEST_int_gt(BIO_read_filename(bio, file), 0)
39             && TEST_ptr(cert = X509_new_with_libctx(libctx, NULL)))
40         (void)TEST_ptr(cert = PEM_read_bio_X509(bio, &cert, NULL, NULL));
41
42     BIO_free(bio);
43     return cert;
44 }
45
46 OSSL_CMP_MSG *load_pkimsg(const char *file)
47 {
48     OSSL_CMP_MSG *msg;
49
50     (void)TEST_ptr((msg = OSSL_CMP_MSG_read(file)));
51     return msg;
52 }
53
54 X509_REQ *load_csr(const char *file)
55 {
56     X509_REQ *csr = NULL;
57     BIO *bio = NULL;
58
59     if (!TEST_ptr(file) || !TEST_ptr(bio = BIO_new_file(file, "rb")))
60         return NULL;
61     (void)TEST_ptr(csr = d2i_X509_REQ_bio(bio, NULL));
62     BIO_free(bio);
63     return csr;
64 }
65
66 /*
67  * Checks whether the syntax of msg conforms to ASN.1
68  */
69 int valid_asn1_encoding(const OSSL_CMP_MSG *msg)
70 {
71     return msg != NULL ? i2d_OSSL_CMP_MSG(msg, NULL) > 0 : 0;
72 }
73
74 /*
75  * Compares two stacks of certificates in the order of their elements.
76  * Returns 0 if sk1 and sk2 are equal and another value otherwise
77  */
78 int STACK_OF_X509_cmp(const STACK_OF(X509) *sk1, const STACK_OF(X509) *sk2)
79 {
80     int i, res;
81     X509 *a, *b;
82
83     if (sk1 == sk2)
84         return 0;
85     if (sk1 == NULL)
86         return -1;
87     if (sk2 == NULL)
88         return 1;
89     if ((res = sk_X509_num(sk1) - sk_X509_num(sk2)))
90         return res;
91     for (i = 0; i < sk_X509_num(sk1); i++) {
92         a = sk_X509_value(sk1, i);
93         b = sk_X509_value(sk2, i);
94         if (a != b)
95             if ((res = X509_cmp(a, b)) != 0)
96                 return res;
97     }
98     return 0;
99 }
100
101 /*
102  * Up refs and push a cert onto sk.
103  * Returns the number of certificates on the stack on success
104  * Returns -1 or 0 on error
105  */
106 int STACK_OF_X509_push1(STACK_OF(X509) *sk, X509 *cert)
107 {
108     int res;
109
110     if (sk == NULL || cert == NULL)
111         return -1;
112     if (!X509_up_ref(cert))
113         return -1;
114     res = sk_X509_push(sk, cert);
115     if (res <= 0)
116         X509_free(cert); /* down-ref */
117     return res;
118 }
119
120 int print_to_bio_out(const char *func, const char *file, int line,
121                      OSSL_CMP_severity level, const char *msg)
122 {
123     return OSSL_CMP_print_to_bio(bio_out, func, file, line, level, msg);
124 }