xref: /freebsd/crypto/openssl/test/cmp_msg_test.c (revision e0c4386e7e71d93b0edc0c8fa156263fc4a8b0b6)
1*e0c4386eSCy Schubert /*
2*e0c4386eSCy Schubert  * Copyright 2007-2023 The OpenSSL Project Authors. All Rights Reserved.
3*e0c4386eSCy Schubert  * Copyright Nokia 2007-2019
4*e0c4386eSCy Schubert  * Copyright Siemens AG 2015-2019
5*e0c4386eSCy Schubert  *
6*e0c4386eSCy Schubert  * Licensed under the Apache License 2.0 (the "License").  You may not use
7*e0c4386eSCy Schubert  * this file except in compliance with the License.  You can obtain a copy
8*e0c4386eSCy Schubert  * in the file LICENSE in the source distribution or at
9*e0c4386eSCy Schubert  * https://www.openssl.org/source/license.html
10*e0c4386eSCy Schubert  */
11*e0c4386eSCy Schubert 
12*e0c4386eSCy Schubert #include "helpers/cmp_testlib.h"
13*e0c4386eSCy Schubert 
14*e0c4386eSCy Schubert static const char *newkey_f;
15*e0c4386eSCy Schubert static const char *server_cert_f;
16*e0c4386eSCy Schubert static const char *pkcs10_f;
17*e0c4386eSCy Schubert 
18*e0c4386eSCy Schubert typedef struct test_fixture {
19*e0c4386eSCy Schubert     const char *test_case_name;
20*e0c4386eSCy Schubert     OSSL_CMP_CTX *cmp_ctx;
21*e0c4386eSCy Schubert     /* for msg create tests */
22*e0c4386eSCy Schubert     int bodytype;
23*e0c4386eSCy Schubert     int err_code;
24*e0c4386eSCy Schubert     /* for certConf */
25*e0c4386eSCy Schubert     int fail_info;
26*e0c4386eSCy Schubert     /* for protection tests */
27*e0c4386eSCy Schubert     OSSL_CMP_MSG *msg;
28*e0c4386eSCy Schubert     int expected;
29*e0c4386eSCy Schubert     /* for error and response messages */
30*e0c4386eSCy Schubert     OSSL_CMP_PKISI *si;
31*e0c4386eSCy Schubert } CMP_MSG_TEST_FIXTURE;
32*e0c4386eSCy Schubert 
33*e0c4386eSCy Schubert static OSSL_LIB_CTX *libctx = NULL;
34*e0c4386eSCy Schubert static OSSL_PROVIDER *default_null_provider = NULL, *provider = NULL;
35*e0c4386eSCy Schubert 
36*e0c4386eSCy Schubert static unsigned char ref[CMP_TEST_REFVALUE_LENGTH];
37*e0c4386eSCy Schubert 
tear_down(CMP_MSG_TEST_FIXTURE * fixture)38*e0c4386eSCy Schubert static void tear_down(CMP_MSG_TEST_FIXTURE *fixture)
39*e0c4386eSCy Schubert {
40*e0c4386eSCy Schubert     OSSL_CMP_CTX_free(fixture->cmp_ctx);
41*e0c4386eSCy Schubert     OSSL_CMP_MSG_free(fixture->msg);
42*e0c4386eSCy Schubert     OSSL_CMP_PKISI_free(fixture->si);
43*e0c4386eSCy Schubert     OPENSSL_free(fixture);
44*e0c4386eSCy Schubert }
45*e0c4386eSCy Schubert 
46*e0c4386eSCy Schubert #define SET_OPT_UNPROTECTED_SEND(ctx, val) \
47*e0c4386eSCy Schubert     OSSL_CMP_CTX_set_option((ctx), OSSL_CMP_OPT_UNPROTECTED_SEND, (val))
set_up(const char * const test_case_name)48*e0c4386eSCy Schubert static CMP_MSG_TEST_FIXTURE *set_up(const char *const test_case_name)
49*e0c4386eSCy Schubert {
50*e0c4386eSCy Schubert     CMP_MSG_TEST_FIXTURE *fixture;
51*e0c4386eSCy Schubert 
52*e0c4386eSCy Schubert     if (!TEST_ptr(fixture = OPENSSL_zalloc(sizeof(*fixture))))
53*e0c4386eSCy Schubert         return NULL;
54*e0c4386eSCy Schubert     fixture->test_case_name = test_case_name;
55*e0c4386eSCy Schubert 
56*e0c4386eSCy Schubert     if (!TEST_ptr(fixture->cmp_ctx = OSSL_CMP_CTX_new(libctx, NULL))
57*e0c4386eSCy Schubert             || !TEST_true(SET_OPT_UNPROTECTED_SEND(fixture->cmp_ctx, 1))
58*e0c4386eSCy Schubert             || !TEST_true(OSSL_CMP_CTX_set1_referenceValue(fixture->cmp_ctx,
59*e0c4386eSCy Schubert                                                            ref, sizeof(ref)))) {
60*e0c4386eSCy Schubert         tear_down(fixture);
61*e0c4386eSCy Schubert         return NULL;
62*e0c4386eSCy Schubert     }
63*e0c4386eSCy Schubert     return fixture;
64*e0c4386eSCy Schubert }
65*e0c4386eSCy Schubert 
66*e0c4386eSCy Schubert static EVP_PKEY *newkey = NULL;
67*e0c4386eSCy Schubert static X509 *cert = NULL;
68*e0c4386eSCy Schubert 
69*e0c4386eSCy Schubert #define EXECUTE_MSG_CREATION_TEST(expr) \
70*e0c4386eSCy Schubert     do { \
71*e0c4386eSCy Schubert         OSSL_CMP_MSG *msg = NULL; \
72*e0c4386eSCy Schubert         int good = fixture->expected != 0 ? \
73*e0c4386eSCy Schubert             TEST_ptr(msg = (expr)) && TEST_true(valid_asn1_encoding(msg)) : \
74*e0c4386eSCy Schubert             TEST_ptr_null(msg = (expr)); \
75*e0c4386eSCy Schubert  \
76*e0c4386eSCy Schubert         OSSL_CMP_MSG_free(msg); \
77*e0c4386eSCy Schubert         ERR_print_errors_fp(stderr); \
78*e0c4386eSCy Schubert         return good; \
79*e0c4386eSCy Schubert     } while (0)
80*e0c4386eSCy Schubert 
81*e0c4386eSCy Schubert /*-
82*e0c4386eSCy Schubert  * The following tests call a cmp message creation function.
83*e0c4386eSCy Schubert  * if fixture->expected != 0:
84*e0c4386eSCy Schubert  *         returns 1 if the message is created and syntactically correct.
85*e0c4386eSCy Schubert  * if fixture->expected == 0
86*e0c4386eSCy Schubert  *         returns 1 if message creation returns NULL
87*e0c4386eSCy Schubert  */
execute_certreq_create_test(CMP_MSG_TEST_FIXTURE * fixture)88*e0c4386eSCy Schubert static int execute_certreq_create_test(CMP_MSG_TEST_FIXTURE *fixture)
89*e0c4386eSCy Schubert {
90*e0c4386eSCy Schubert     EXECUTE_MSG_CREATION_TEST(ossl_cmp_certreq_new(fixture->cmp_ctx,
91*e0c4386eSCy Schubert                                                    fixture->bodytype,
92*e0c4386eSCy Schubert                                                    NULL));
93*e0c4386eSCy Schubert }
94*e0c4386eSCy Schubert 
execute_errormsg_create_test(CMP_MSG_TEST_FIXTURE * fixture)95*e0c4386eSCy Schubert static int execute_errormsg_create_test(CMP_MSG_TEST_FIXTURE *fixture)
96*e0c4386eSCy Schubert {
97*e0c4386eSCy Schubert     EXECUTE_MSG_CREATION_TEST(ossl_cmp_error_new(fixture->cmp_ctx, fixture->si,
98*e0c4386eSCy Schubert                                                  fixture->err_code,
99*e0c4386eSCy Schubert                                                  "details", 0));
100*e0c4386eSCy Schubert }
101*e0c4386eSCy Schubert 
execute_rr_create_test(CMP_MSG_TEST_FIXTURE * fixture)102*e0c4386eSCy Schubert static int execute_rr_create_test(CMP_MSG_TEST_FIXTURE *fixture)
103*e0c4386eSCy Schubert {
104*e0c4386eSCy Schubert     EXECUTE_MSG_CREATION_TEST(ossl_cmp_rr_new(fixture->cmp_ctx));
105*e0c4386eSCy Schubert }
106*e0c4386eSCy Schubert 
execute_certconf_create_test(CMP_MSG_TEST_FIXTURE * fixture)107*e0c4386eSCy Schubert static int execute_certconf_create_test(CMP_MSG_TEST_FIXTURE *fixture)
108*e0c4386eSCy Schubert {
109*e0c4386eSCy Schubert     EXECUTE_MSG_CREATION_TEST(ossl_cmp_certConf_new
110*e0c4386eSCy Schubert                               (fixture->cmp_ctx, OSSL_CMP_CERTREQID,
111*e0c4386eSCy Schubert                                fixture->fail_info, NULL));
112*e0c4386eSCy Schubert }
113*e0c4386eSCy Schubert 
execute_genm_create_test(CMP_MSG_TEST_FIXTURE * fixture)114*e0c4386eSCy Schubert static int execute_genm_create_test(CMP_MSG_TEST_FIXTURE *fixture)
115*e0c4386eSCy Schubert {
116*e0c4386eSCy Schubert     EXECUTE_MSG_CREATION_TEST(ossl_cmp_genm_new(fixture->cmp_ctx));
117*e0c4386eSCy Schubert }
118*e0c4386eSCy Schubert 
execute_pollreq_create_test(CMP_MSG_TEST_FIXTURE * fixture)119*e0c4386eSCy Schubert static int execute_pollreq_create_test(CMP_MSG_TEST_FIXTURE *fixture)
120*e0c4386eSCy Schubert {
121*e0c4386eSCy Schubert     EXECUTE_MSG_CREATION_TEST(ossl_cmp_pollReq_new(fixture->cmp_ctx, 4711));
122*e0c4386eSCy Schubert }
123*e0c4386eSCy Schubert 
execute_pkimessage_create_test(CMP_MSG_TEST_FIXTURE * fixture)124*e0c4386eSCy Schubert static int execute_pkimessage_create_test(CMP_MSG_TEST_FIXTURE *fixture)
125*e0c4386eSCy Schubert {
126*e0c4386eSCy Schubert     EXECUTE_MSG_CREATION_TEST(ossl_cmp_msg_create
127*e0c4386eSCy Schubert                               (fixture->cmp_ctx, fixture->bodytype));
128*e0c4386eSCy Schubert }
129*e0c4386eSCy Schubert 
set1_newPkey(OSSL_CMP_CTX * ctx,EVP_PKEY * pkey)130*e0c4386eSCy Schubert static int set1_newPkey(OSSL_CMP_CTX *ctx, EVP_PKEY *pkey)
131*e0c4386eSCy Schubert {
132*e0c4386eSCy Schubert     if (!EVP_PKEY_up_ref(pkey))
133*e0c4386eSCy Schubert         return 0;
134*e0c4386eSCy Schubert 
135*e0c4386eSCy Schubert     if (!OSSL_CMP_CTX_set0_newPkey(ctx, 1, pkey)) {
136*e0c4386eSCy Schubert         EVP_PKEY_free(pkey);
137*e0c4386eSCy Schubert         return 0;
138*e0c4386eSCy Schubert     }
139*e0c4386eSCy Schubert     return 1;
140*e0c4386eSCy Schubert }
141*e0c4386eSCy Schubert 
test_cmp_create_ir_protection_set(void)142*e0c4386eSCy Schubert static int test_cmp_create_ir_protection_set(void)
143*e0c4386eSCy Schubert {
144*e0c4386eSCy Schubert     OSSL_CMP_CTX *ctx;
145*e0c4386eSCy Schubert     unsigned char secret[16];
146*e0c4386eSCy Schubert 
147*e0c4386eSCy Schubert     SETUP_TEST_FIXTURE(CMP_MSG_TEST_FIXTURE, set_up);
148*e0c4386eSCy Schubert 
149*e0c4386eSCy Schubert     ctx = fixture->cmp_ctx;
150*e0c4386eSCy Schubert     fixture->bodytype = OSSL_CMP_PKIBODY_IR;
151*e0c4386eSCy Schubert     fixture->err_code = -1;
152*e0c4386eSCy Schubert     fixture->expected = 1;
153*e0c4386eSCy Schubert     if (!TEST_int_eq(1, RAND_bytes_ex(libctx, secret, sizeof(secret), 0))
154*e0c4386eSCy Schubert             || !TEST_true(SET_OPT_UNPROTECTED_SEND(ctx, 0))
155*e0c4386eSCy Schubert             || !TEST_true(set1_newPkey(ctx, newkey))
156*e0c4386eSCy Schubert             || !TEST_true(OSSL_CMP_CTX_set1_secretValue(ctx, secret,
157*e0c4386eSCy Schubert                                                         sizeof(secret)))) {
158*e0c4386eSCy Schubert         tear_down(fixture);
159*e0c4386eSCy Schubert         fixture = NULL;
160*e0c4386eSCy Schubert     }
161*e0c4386eSCy Schubert     EXECUTE_TEST(execute_certreq_create_test, tear_down);
162*e0c4386eSCy Schubert     return result;
163*e0c4386eSCy Schubert }
164*e0c4386eSCy Schubert 
test_cmp_create_ir_protection_fails(void)165*e0c4386eSCy Schubert static int test_cmp_create_ir_protection_fails(void)
166*e0c4386eSCy Schubert {
167*e0c4386eSCy Schubert     SETUP_TEST_FIXTURE(CMP_MSG_TEST_FIXTURE, set_up);
168*e0c4386eSCy Schubert     fixture->bodytype = OSSL_CMP_PKIBODY_IR;
169*e0c4386eSCy Schubert     fixture->err_code = -1;
170*e0c4386eSCy Schubert     fixture->expected = 0;
171*e0c4386eSCy Schubert     if (!TEST_true(OSSL_CMP_CTX_set1_pkey(fixture->cmp_ctx, newkey))
172*e0c4386eSCy Schubert             || !TEST_true(SET_OPT_UNPROTECTED_SEND(fixture->cmp_ctx, 0))
173*e0c4386eSCy Schubert             /* newkey used by default for signing does not match cert: */
174*e0c4386eSCy Schubert             || !TEST_true(OSSL_CMP_CTX_set1_cert(fixture->cmp_ctx, cert))) {
175*e0c4386eSCy Schubert         tear_down(fixture);
176*e0c4386eSCy Schubert         fixture = NULL;
177*e0c4386eSCy Schubert     }
178*e0c4386eSCy Schubert     EXECUTE_TEST(execute_certreq_create_test, tear_down);
179*e0c4386eSCy Schubert     return result;
180*e0c4386eSCy Schubert }
181*e0c4386eSCy Schubert 
test_cmp_create_cr_without_key(void)182*e0c4386eSCy Schubert static int test_cmp_create_cr_without_key(void)
183*e0c4386eSCy Schubert {
184*e0c4386eSCy Schubert     SETUP_TEST_FIXTURE(CMP_MSG_TEST_FIXTURE, set_up);
185*e0c4386eSCy Schubert     fixture->bodytype = OSSL_CMP_PKIBODY_CR;
186*e0c4386eSCy Schubert     fixture->err_code = -1;
187*e0c4386eSCy Schubert     fixture->expected = 0;
188*e0c4386eSCy Schubert     EXECUTE_TEST(execute_certreq_create_test, tear_down);
189*e0c4386eSCy Schubert     return result;
190*e0c4386eSCy Schubert }
191*e0c4386eSCy Schubert 
test_cmp_create_cr(void)192*e0c4386eSCy Schubert static int test_cmp_create_cr(void)
193*e0c4386eSCy Schubert {
194*e0c4386eSCy Schubert     SETUP_TEST_FIXTURE(CMP_MSG_TEST_FIXTURE, set_up);
195*e0c4386eSCy Schubert     fixture->bodytype = OSSL_CMP_PKIBODY_CR;
196*e0c4386eSCy Schubert     fixture->err_code = -1;
197*e0c4386eSCy Schubert     fixture->expected = 1;
198*e0c4386eSCy Schubert     if (!TEST_true(set1_newPkey(fixture->cmp_ctx, newkey))) {
199*e0c4386eSCy Schubert         tear_down(fixture);
200*e0c4386eSCy Schubert         fixture = NULL;
201*e0c4386eSCy Schubert     }
202*e0c4386eSCy Schubert     EXECUTE_TEST(execute_certreq_create_test, tear_down);
203*e0c4386eSCy Schubert     return result;
204*e0c4386eSCy Schubert }
205*e0c4386eSCy Schubert 
test_cmp_create_certreq_with_invalid_bodytype(void)206*e0c4386eSCy Schubert static int test_cmp_create_certreq_with_invalid_bodytype(void)
207*e0c4386eSCy Schubert {
208*e0c4386eSCy Schubert     SETUP_TEST_FIXTURE(CMP_MSG_TEST_FIXTURE, set_up);
209*e0c4386eSCy Schubert     fixture->bodytype = OSSL_CMP_PKIBODY_RR;
210*e0c4386eSCy Schubert     fixture->err_code = -1;
211*e0c4386eSCy Schubert     fixture->expected = 0;
212*e0c4386eSCy Schubert     if (!TEST_true(set1_newPkey(fixture->cmp_ctx, newkey))) {
213*e0c4386eSCy Schubert         tear_down(fixture);
214*e0c4386eSCy Schubert         fixture = NULL;
215*e0c4386eSCy Schubert     }
216*e0c4386eSCy Schubert     EXECUTE_TEST(execute_certreq_create_test, tear_down);
217*e0c4386eSCy Schubert     return result;
218*e0c4386eSCy Schubert }
219*e0c4386eSCy Schubert 
test_cmp_create_p10cr(void)220*e0c4386eSCy Schubert static int test_cmp_create_p10cr(void)
221*e0c4386eSCy Schubert {
222*e0c4386eSCy Schubert     OSSL_CMP_CTX *ctx;
223*e0c4386eSCy Schubert     X509_REQ *p10cr = NULL;
224*e0c4386eSCy Schubert 
225*e0c4386eSCy Schubert     SETUP_TEST_FIXTURE(CMP_MSG_TEST_FIXTURE, set_up);
226*e0c4386eSCy Schubert     ctx = fixture->cmp_ctx;
227*e0c4386eSCy Schubert     fixture->bodytype = OSSL_CMP_PKIBODY_P10CR;
228*e0c4386eSCy Schubert     fixture->err_code = CMP_R_ERROR_CREATING_CERTREQ;
229*e0c4386eSCy Schubert     fixture->expected = 1;
230*e0c4386eSCy Schubert     if (!TEST_ptr(p10cr = load_csr_der(pkcs10_f, libctx))
231*e0c4386eSCy Schubert             || !TEST_true(set1_newPkey(ctx, newkey))
232*e0c4386eSCy Schubert             || !TEST_true(OSSL_CMP_CTX_set1_p10CSR(ctx, p10cr))) {
233*e0c4386eSCy Schubert         tear_down(fixture);
234*e0c4386eSCy Schubert         fixture = NULL;
235*e0c4386eSCy Schubert     }
236*e0c4386eSCy Schubert     X509_REQ_free(p10cr);
237*e0c4386eSCy Schubert     EXECUTE_TEST(execute_certreq_create_test, tear_down);
238*e0c4386eSCy Schubert     return result;
239*e0c4386eSCy Schubert }
240*e0c4386eSCy Schubert 
test_cmp_create_p10cr_null(void)241*e0c4386eSCy Schubert static int test_cmp_create_p10cr_null(void)
242*e0c4386eSCy Schubert {
243*e0c4386eSCy Schubert     SETUP_TEST_FIXTURE(CMP_MSG_TEST_FIXTURE, set_up);
244*e0c4386eSCy Schubert     fixture->bodytype = OSSL_CMP_PKIBODY_P10CR;
245*e0c4386eSCy Schubert     fixture->err_code = CMP_R_ERROR_CREATING_CERTREQ;
246*e0c4386eSCy Schubert     fixture->expected = 0;
247*e0c4386eSCy Schubert     if (!TEST_true(set1_newPkey(fixture->cmp_ctx, newkey))) {
248*e0c4386eSCy Schubert         tear_down(fixture);
249*e0c4386eSCy Schubert         fixture = NULL;
250*e0c4386eSCy Schubert     }
251*e0c4386eSCy Schubert     EXECUTE_TEST(execute_certreq_create_test, tear_down);
252*e0c4386eSCy Schubert     return result;
253*e0c4386eSCy Schubert }
254*e0c4386eSCy Schubert 
test_cmp_create_kur(void)255*e0c4386eSCy Schubert static int test_cmp_create_kur(void)
256*e0c4386eSCy Schubert {
257*e0c4386eSCy Schubert     SETUP_TEST_FIXTURE(CMP_MSG_TEST_FIXTURE, set_up);
258*e0c4386eSCy Schubert     fixture->bodytype = OSSL_CMP_PKIBODY_KUR;
259*e0c4386eSCy Schubert     fixture->err_code = -1;
260*e0c4386eSCy Schubert     fixture->expected = 1;
261*e0c4386eSCy Schubert     if (!TEST_true(set1_newPkey(fixture->cmp_ctx, newkey))
262*e0c4386eSCy Schubert             || !TEST_true(OSSL_CMP_CTX_set1_oldCert(fixture->cmp_ctx, cert))) {
263*e0c4386eSCy Schubert         tear_down(fixture);
264*e0c4386eSCy Schubert         fixture = NULL;
265*e0c4386eSCy Schubert     }
266*e0c4386eSCy Schubert     EXECUTE_TEST(execute_certreq_create_test, tear_down);
267*e0c4386eSCy Schubert     return result;
268*e0c4386eSCy Schubert }
269*e0c4386eSCy Schubert 
test_cmp_create_kur_without_oldcert(void)270*e0c4386eSCy Schubert static int test_cmp_create_kur_without_oldcert(void)
271*e0c4386eSCy Schubert {
272*e0c4386eSCy Schubert     SETUP_TEST_FIXTURE(CMP_MSG_TEST_FIXTURE, set_up);
273*e0c4386eSCy Schubert     fixture->bodytype = OSSL_CMP_PKIBODY_KUR;
274*e0c4386eSCy Schubert     fixture->err_code = -1;
275*e0c4386eSCy Schubert     fixture->expected = 0;
276*e0c4386eSCy Schubert     if (!TEST_true(set1_newPkey(fixture->cmp_ctx, newkey))) {
277*e0c4386eSCy Schubert         tear_down(fixture);
278*e0c4386eSCy Schubert         fixture = NULL;
279*e0c4386eSCy Schubert     }
280*e0c4386eSCy Schubert     EXECUTE_TEST(execute_certreq_create_test, tear_down);
281*e0c4386eSCy Schubert     return result;
282*e0c4386eSCy Schubert }
283*e0c4386eSCy Schubert 
test_cmp_create_certconf(void)284*e0c4386eSCy Schubert static int test_cmp_create_certconf(void)
285*e0c4386eSCy Schubert {
286*e0c4386eSCy Schubert     SETUP_TEST_FIXTURE(CMP_MSG_TEST_FIXTURE, set_up);
287*e0c4386eSCy Schubert     fixture->fail_info = 0;
288*e0c4386eSCy Schubert     fixture->expected = 1;
289*e0c4386eSCy Schubert     if (!TEST_true(ossl_cmp_ctx_set0_newCert(fixture->cmp_ctx,
290*e0c4386eSCy Schubert                                              X509_dup(cert)))) {
291*e0c4386eSCy Schubert         tear_down(fixture);
292*e0c4386eSCy Schubert         fixture = NULL;
293*e0c4386eSCy Schubert     }
294*e0c4386eSCy Schubert     EXECUTE_TEST(execute_certconf_create_test, tear_down);
295*e0c4386eSCy Schubert     return result;
296*e0c4386eSCy Schubert }
297*e0c4386eSCy Schubert 
test_cmp_create_certconf_badAlg(void)298*e0c4386eSCy Schubert static int test_cmp_create_certconf_badAlg(void)
299*e0c4386eSCy Schubert {
300*e0c4386eSCy Schubert     SETUP_TEST_FIXTURE(CMP_MSG_TEST_FIXTURE, set_up);
301*e0c4386eSCy Schubert     fixture->fail_info = 1 << OSSL_CMP_PKIFAILUREINFO_badAlg;
302*e0c4386eSCy Schubert     fixture->expected = 1;
303*e0c4386eSCy Schubert     if (!TEST_true(ossl_cmp_ctx_set0_newCert(fixture->cmp_ctx,
304*e0c4386eSCy Schubert                                              X509_dup(cert)))) {
305*e0c4386eSCy Schubert         tear_down(fixture);
306*e0c4386eSCy Schubert         fixture = NULL;
307*e0c4386eSCy Schubert     }
308*e0c4386eSCy Schubert     EXECUTE_TEST(execute_certconf_create_test, tear_down);
309*e0c4386eSCy Schubert     return result;
310*e0c4386eSCy Schubert }
311*e0c4386eSCy Schubert 
test_cmp_create_certconf_fail_info_max(void)312*e0c4386eSCy Schubert static int test_cmp_create_certconf_fail_info_max(void)
313*e0c4386eSCy Schubert {
314*e0c4386eSCy Schubert     SETUP_TEST_FIXTURE(CMP_MSG_TEST_FIXTURE, set_up);
315*e0c4386eSCy Schubert     fixture->fail_info = 1 << OSSL_CMP_PKIFAILUREINFO_MAX;
316*e0c4386eSCy Schubert     fixture->expected = 1;
317*e0c4386eSCy Schubert     if (!TEST_true(ossl_cmp_ctx_set0_newCert(fixture->cmp_ctx,
318*e0c4386eSCy Schubert                                              X509_dup(cert)))) {
319*e0c4386eSCy Schubert         tear_down(fixture);
320*e0c4386eSCy Schubert         fixture = NULL;
321*e0c4386eSCy Schubert     }
322*e0c4386eSCy Schubert     EXECUTE_TEST(execute_certconf_create_test, tear_down);
323*e0c4386eSCy Schubert     return result;
324*e0c4386eSCy Schubert }
325*e0c4386eSCy Schubert 
test_cmp_create_error_msg(void)326*e0c4386eSCy Schubert static int test_cmp_create_error_msg(void)
327*e0c4386eSCy Schubert {
328*e0c4386eSCy Schubert     SETUP_TEST_FIXTURE(CMP_MSG_TEST_FIXTURE, set_up);
329*e0c4386eSCy Schubert     fixture->si = OSSL_CMP_STATUSINFO_new(OSSL_CMP_PKISTATUS_rejection,
330*e0c4386eSCy Schubert                                           OSSL_CMP_PKIFAILUREINFO_systemFailure,
331*e0c4386eSCy Schubert                                           NULL);
332*e0c4386eSCy Schubert     fixture->err_code = -1;
333*e0c4386eSCy Schubert     fixture->expected = 1; /* expected: message creation is successful */
334*e0c4386eSCy Schubert     if (!TEST_true(set1_newPkey(fixture->cmp_ctx, newkey))) {
335*e0c4386eSCy Schubert         tear_down(fixture);
336*e0c4386eSCy Schubert         fixture = NULL;
337*e0c4386eSCy Schubert     }
338*e0c4386eSCy Schubert     EXECUTE_TEST(execute_errormsg_create_test, tear_down);
339*e0c4386eSCy Schubert     return result;
340*e0c4386eSCy Schubert }
341*e0c4386eSCy Schubert 
342*e0c4386eSCy Schubert 
test_cmp_create_pollreq(void)343*e0c4386eSCy Schubert static int test_cmp_create_pollreq(void)
344*e0c4386eSCy Schubert {
345*e0c4386eSCy Schubert     SETUP_TEST_FIXTURE(CMP_MSG_TEST_FIXTURE, set_up);
346*e0c4386eSCy Schubert     fixture->expected = 1;
347*e0c4386eSCy Schubert     EXECUTE_TEST(execute_pollreq_create_test, tear_down);
348*e0c4386eSCy Schubert     return result;
349*e0c4386eSCy Schubert }
350*e0c4386eSCy Schubert 
test_cmp_create_rr(void)351*e0c4386eSCy Schubert static int test_cmp_create_rr(void)
352*e0c4386eSCy Schubert {
353*e0c4386eSCy Schubert     SETUP_TEST_FIXTURE(CMP_MSG_TEST_FIXTURE, set_up);
354*e0c4386eSCy Schubert     fixture->expected = 1;
355*e0c4386eSCy Schubert     if (!TEST_true(OSSL_CMP_CTX_set1_oldCert(fixture->cmp_ctx, cert))) {
356*e0c4386eSCy Schubert         tear_down(fixture);
357*e0c4386eSCy Schubert         fixture = NULL;
358*e0c4386eSCy Schubert     }
359*e0c4386eSCy Schubert     EXECUTE_TEST(execute_rr_create_test, tear_down);
360*e0c4386eSCy Schubert     return result;
361*e0c4386eSCy Schubert }
362*e0c4386eSCy Schubert 
test_cmp_create_genm(void)363*e0c4386eSCy Schubert static int test_cmp_create_genm(void)
364*e0c4386eSCy Schubert {
365*e0c4386eSCy Schubert     OSSL_CMP_ITAV *iv = NULL;
366*e0c4386eSCy Schubert 
367*e0c4386eSCy Schubert     SETUP_TEST_FIXTURE(CMP_MSG_TEST_FIXTURE, set_up);
368*e0c4386eSCy Schubert     fixture->expected = 1;
369*e0c4386eSCy Schubert     iv = OSSL_CMP_ITAV_create(OBJ_nid2obj(NID_id_it_implicitConfirm), NULL);
370*e0c4386eSCy Schubert     if (!TEST_ptr(iv)
371*e0c4386eSCy Schubert             || !TEST_true(OSSL_CMP_CTX_push0_genm_ITAV(fixture->cmp_ctx, iv))) {
372*e0c4386eSCy Schubert         OSSL_CMP_ITAV_free(iv);
373*e0c4386eSCy Schubert         tear_down(fixture);
374*e0c4386eSCy Schubert         fixture = NULL;
375*e0c4386eSCy Schubert     }
376*e0c4386eSCy Schubert 
377*e0c4386eSCy Schubert     EXECUTE_TEST(execute_genm_create_test, tear_down);
378*e0c4386eSCy Schubert     return result;
379*e0c4386eSCy Schubert }
380*e0c4386eSCy Schubert 
execute_certrep_create(CMP_MSG_TEST_FIXTURE * fixture)381*e0c4386eSCy Schubert static int execute_certrep_create(CMP_MSG_TEST_FIXTURE *fixture)
382*e0c4386eSCy Schubert {
383*e0c4386eSCy Schubert     OSSL_CMP_CTX *ctx = fixture->cmp_ctx;
384*e0c4386eSCy Schubert     OSSL_CMP_CERTREPMESSAGE *crepmsg = OSSL_CMP_CERTREPMESSAGE_new();
385*e0c4386eSCy Schubert     OSSL_CMP_CERTRESPONSE *read_cresp, *cresp = OSSL_CMP_CERTRESPONSE_new();
386*e0c4386eSCy Schubert     X509 *certfromresp = NULL;
387*e0c4386eSCy Schubert     int res = 0;
388*e0c4386eSCy Schubert 
389*e0c4386eSCy Schubert     if (crepmsg == NULL || cresp == NULL)
390*e0c4386eSCy Schubert         goto err;
391*e0c4386eSCy Schubert     if (!ASN1_INTEGER_set(cresp->certReqId, 99))
392*e0c4386eSCy Schubert         goto err;
393*e0c4386eSCy Schubert     if ((cresp->certifiedKeyPair = OSSL_CMP_CERTIFIEDKEYPAIR_new()) == NULL)
394*e0c4386eSCy Schubert         goto err;
395*e0c4386eSCy Schubert     cresp->certifiedKeyPair->certOrEncCert->type =
396*e0c4386eSCy Schubert         OSSL_CMP_CERTORENCCERT_CERTIFICATE;
397*e0c4386eSCy Schubert     if ((cresp->certifiedKeyPair->certOrEncCert->value.certificate =
398*e0c4386eSCy Schubert          X509_dup(cert)) == NULL
399*e0c4386eSCy Schubert             || !sk_OSSL_CMP_CERTRESPONSE_push(crepmsg->response, cresp))
400*e0c4386eSCy Schubert         goto err;
401*e0c4386eSCy Schubert     cresp = NULL;
402*e0c4386eSCy Schubert     read_cresp = ossl_cmp_certrepmessage_get0_certresponse(crepmsg, 99);
403*e0c4386eSCy Schubert     if (!TEST_ptr(read_cresp))
404*e0c4386eSCy Schubert         goto err;
405*e0c4386eSCy Schubert     if (!TEST_ptr_null(ossl_cmp_certrepmessage_get0_certresponse(crepmsg, 88)))
406*e0c4386eSCy Schubert         goto err;
407*e0c4386eSCy Schubert     certfromresp = ossl_cmp_certresponse_get1_cert(ctx, read_cresp);
408*e0c4386eSCy Schubert     if (certfromresp == NULL || !TEST_int_eq(X509_cmp(cert, certfromresp), 0))
409*e0c4386eSCy Schubert         goto err;
410*e0c4386eSCy Schubert 
411*e0c4386eSCy Schubert     res = 1;
412*e0c4386eSCy Schubert  err:
413*e0c4386eSCy Schubert     X509_free(certfromresp);
414*e0c4386eSCy Schubert     OSSL_CMP_CERTRESPONSE_free(cresp);
415*e0c4386eSCy Schubert     OSSL_CMP_CERTREPMESSAGE_free(crepmsg);
416*e0c4386eSCy Schubert     return res;
417*e0c4386eSCy Schubert }
418*e0c4386eSCy Schubert 
test_cmp_create_certrep(void)419*e0c4386eSCy Schubert static int test_cmp_create_certrep(void)
420*e0c4386eSCy Schubert {
421*e0c4386eSCy Schubert     SETUP_TEST_FIXTURE(CMP_MSG_TEST_FIXTURE, set_up);
422*e0c4386eSCy Schubert     EXECUTE_TEST(execute_certrep_create, tear_down);
423*e0c4386eSCy Schubert     return result;
424*e0c4386eSCy Schubert }
425*e0c4386eSCy Schubert 
426*e0c4386eSCy Schubert 
execute_rp_create(CMP_MSG_TEST_FIXTURE * fixture)427*e0c4386eSCy Schubert static int execute_rp_create(CMP_MSG_TEST_FIXTURE *fixture)
428*e0c4386eSCy Schubert {
429*e0c4386eSCy Schubert     OSSL_CMP_PKISI *si = OSSL_CMP_STATUSINFO_new(33, 44, "a text");
430*e0c4386eSCy Schubert     X509_NAME *issuer = X509_NAME_new();
431*e0c4386eSCy Schubert     ASN1_INTEGER *serial = ASN1_INTEGER_new();
432*e0c4386eSCy Schubert     OSSL_CRMF_CERTID *cid = NULL;
433*e0c4386eSCy Schubert     OSSL_CMP_MSG *rpmsg = NULL;
434*e0c4386eSCy Schubert     int res = 0;
435*e0c4386eSCy Schubert 
436*e0c4386eSCy Schubert     if (si == NULL || issuer == NULL || serial == NULL)
437*e0c4386eSCy Schubert         goto err;
438*e0c4386eSCy Schubert 
439*e0c4386eSCy Schubert     if (!X509_NAME_add_entry_by_txt(issuer, "CN", MBSTRING_ASC,
440*e0c4386eSCy Schubert                                     (unsigned char *)"The Issuer", -1, -1, 0)
441*e0c4386eSCy Schubert             || !ASN1_INTEGER_set(serial, 99)
442*e0c4386eSCy Schubert             || (cid = OSSL_CRMF_CERTID_gen(issuer, serial)) == NULL
443*e0c4386eSCy Schubert             || (rpmsg = ossl_cmp_rp_new(fixture->cmp_ctx, si, cid, 1)) == NULL)
444*e0c4386eSCy Schubert         goto err;
445*e0c4386eSCy Schubert 
446*e0c4386eSCy Schubert     if (!TEST_ptr(ossl_cmp_revrepcontent_get_CertId(rpmsg->body->value.rp, 0)))
447*e0c4386eSCy Schubert         goto err;
448*e0c4386eSCy Schubert 
449*e0c4386eSCy Schubert     if (!TEST_ptr(ossl_cmp_revrepcontent_get_pkisi(rpmsg->body->value.rp, 0)))
450*e0c4386eSCy Schubert         goto err;
451*e0c4386eSCy Schubert 
452*e0c4386eSCy Schubert     res = 1;
453*e0c4386eSCy Schubert  err:
454*e0c4386eSCy Schubert     ASN1_INTEGER_free(serial);
455*e0c4386eSCy Schubert     X509_NAME_free(issuer);
456*e0c4386eSCy Schubert     OSSL_CRMF_CERTID_free(cid);
457*e0c4386eSCy Schubert     OSSL_CMP_PKISI_free(si);
458*e0c4386eSCy Schubert     OSSL_CMP_MSG_free(rpmsg);
459*e0c4386eSCy Schubert     return res;
460*e0c4386eSCy Schubert }
461*e0c4386eSCy Schubert 
test_cmp_create_rp(void)462*e0c4386eSCy Schubert static int test_cmp_create_rp(void)
463*e0c4386eSCy Schubert {
464*e0c4386eSCy Schubert     SETUP_TEST_FIXTURE(CMP_MSG_TEST_FIXTURE, set_up);
465*e0c4386eSCy Schubert     EXECUTE_TEST(execute_rp_create, tear_down);
466*e0c4386eSCy Schubert     return result;
467*e0c4386eSCy Schubert }
468*e0c4386eSCy Schubert 
execute_pollrep_create(CMP_MSG_TEST_FIXTURE * fixture)469*e0c4386eSCy Schubert static int execute_pollrep_create(CMP_MSG_TEST_FIXTURE *fixture)
470*e0c4386eSCy Schubert {
471*e0c4386eSCy Schubert     OSSL_CMP_MSG *pollrep;
472*e0c4386eSCy Schubert     int res = 0;
473*e0c4386eSCy Schubert 
474*e0c4386eSCy Schubert     pollrep = ossl_cmp_pollRep_new(fixture->cmp_ctx, 77, 2000);
475*e0c4386eSCy Schubert     if (!TEST_ptr(pollrep))
476*e0c4386eSCy Schubert         return 0;
477*e0c4386eSCy Schubert     if (!TEST_ptr(ossl_cmp_pollrepcontent_get0_pollrep(pollrep->body->
478*e0c4386eSCy Schubert                                                        value.pollRep, 77)))
479*e0c4386eSCy Schubert         goto err;
480*e0c4386eSCy Schubert     if (!TEST_ptr_null(ossl_cmp_pollrepcontent_get0_pollrep(pollrep->body->
481*e0c4386eSCy Schubert                                                             value.pollRep, 88)))
482*e0c4386eSCy Schubert         goto err;
483*e0c4386eSCy Schubert 
484*e0c4386eSCy Schubert     res = 1;
485*e0c4386eSCy Schubert  err:
486*e0c4386eSCy Schubert     OSSL_CMP_MSG_free(pollrep);
487*e0c4386eSCy Schubert     return res;
488*e0c4386eSCy Schubert }
489*e0c4386eSCy Schubert 
test_cmp_create_pollrep(void)490*e0c4386eSCy Schubert static int test_cmp_create_pollrep(void)
491*e0c4386eSCy Schubert {
492*e0c4386eSCy Schubert     SETUP_TEST_FIXTURE(CMP_MSG_TEST_FIXTURE, set_up);
493*e0c4386eSCy Schubert     EXECUTE_TEST(execute_pollrep_create, tear_down);
494*e0c4386eSCy Schubert     return result;
495*e0c4386eSCy Schubert }
496*e0c4386eSCy Schubert 
test_cmp_pkimessage_create(int bodytype)497*e0c4386eSCy Schubert static int test_cmp_pkimessage_create(int bodytype)
498*e0c4386eSCy Schubert {
499*e0c4386eSCy Schubert     X509_REQ *p10cr = NULL;
500*e0c4386eSCy Schubert 
501*e0c4386eSCy Schubert     SETUP_TEST_FIXTURE(CMP_MSG_TEST_FIXTURE, set_up);
502*e0c4386eSCy Schubert 
503*e0c4386eSCy Schubert     switch (fixture->bodytype = bodytype) {
504*e0c4386eSCy Schubert     case OSSL_CMP_PKIBODY_P10CR:
505*e0c4386eSCy Schubert         fixture->expected = 1;
506*e0c4386eSCy Schubert         p10cr = load_csr_der(pkcs10_f, libctx);
507*e0c4386eSCy Schubert         if (!TEST_true(OSSL_CMP_CTX_set1_p10CSR(fixture->cmp_ctx, p10cr))) {
508*e0c4386eSCy Schubert             tear_down(fixture);
509*e0c4386eSCy Schubert             fixture = NULL;
510*e0c4386eSCy Schubert         }
511*e0c4386eSCy Schubert         X509_REQ_free(p10cr);
512*e0c4386eSCy Schubert         break;
513*e0c4386eSCy Schubert     case OSSL_CMP_PKIBODY_IR:
514*e0c4386eSCy Schubert     case OSSL_CMP_PKIBODY_IP:
515*e0c4386eSCy Schubert     case OSSL_CMP_PKIBODY_CR:
516*e0c4386eSCy Schubert     case OSSL_CMP_PKIBODY_CP:
517*e0c4386eSCy Schubert     case OSSL_CMP_PKIBODY_KUR:
518*e0c4386eSCy Schubert     case OSSL_CMP_PKIBODY_KUP:
519*e0c4386eSCy Schubert     case OSSL_CMP_PKIBODY_RR:
520*e0c4386eSCy Schubert     case OSSL_CMP_PKIBODY_RP:
521*e0c4386eSCy Schubert     case OSSL_CMP_PKIBODY_PKICONF:
522*e0c4386eSCy Schubert     case OSSL_CMP_PKIBODY_GENM:
523*e0c4386eSCy Schubert     case OSSL_CMP_PKIBODY_GENP:
524*e0c4386eSCy Schubert     case OSSL_CMP_PKIBODY_ERROR:
525*e0c4386eSCy Schubert     case OSSL_CMP_PKIBODY_CERTCONF:
526*e0c4386eSCy Schubert     case OSSL_CMP_PKIBODY_POLLREQ:
527*e0c4386eSCy Schubert     case OSSL_CMP_PKIBODY_POLLREP:
528*e0c4386eSCy Schubert         fixture->expected = 1;
529*e0c4386eSCy Schubert         break;
530*e0c4386eSCy Schubert     default:
531*e0c4386eSCy Schubert         fixture->expected = 0;
532*e0c4386eSCy Schubert         break;
533*e0c4386eSCy Schubert     }
534*e0c4386eSCy Schubert 
535*e0c4386eSCy Schubert     EXECUTE_TEST(execute_pkimessage_create_test, tear_down);
536*e0c4386eSCy Schubert     return result;
537*e0c4386eSCy Schubert }
538*e0c4386eSCy Schubert 
cleanup_tests(void)539*e0c4386eSCy Schubert void cleanup_tests(void)
540*e0c4386eSCy Schubert {
541*e0c4386eSCy Schubert     EVP_PKEY_free(newkey);
542*e0c4386eSCy Schubert     X509_free(cert);
543*e0c4386eSCy Schubert     OSSL_PROVIDER_unload(default_null_provider);
544*e0c4386eSCy Schubert     OSSL_PROVIDER_unload(provider);
545*e0c4386eSCy Schubert     OSSL_LIB_CTX_free(libctx);
546*e0c4386eSCy Schubert }
547*e0c4386eSCy Schubert 
548*e0c4386eSCy Schubert #define USAGE "new.key server.crt pkcs10.der module_name [module_conf_file]\n"
OPT_TEST_DECLARE_USAGE(USAGE)549*e0c4386eSCy Schubert OPT_TEST_DECLARE_USAGE(USAGE)
550*e0c4386eSCy Schubert 
551*e0c4386eSCy Schubert int setup_tests(void)
552*e0c4386eSCy Schubert {
553*e0c4386eSCy Schubert     if (!test_skip_common_options()) {
554*e0c4386eSCy Schubert         TEST_error("Error parsing test options\n");
555*e0c4386eSCy Schubert         return 0;
556*e0c4386eSCy Schubert     }
557*e0c4386eSCy Schubert 
558*e0c4386eSCy Schubert     if (!TEST_ptr(newkey_f = test_get_argument(0))
559*e0c4386eSCy Schubert             || !TEST_ptr(server_cert_f = test_get_argument(1))
560*e0c4386eSCy Schubert             || !TEST_ptr(pkcs10_f = test_get_argument(2))) {
561*e0c4386eSCy Schubert         TEST_error("usage: cmp_msg_test %s", USAGE);
562*e0c4386eSCy Schubert         return 0;
563*e0c4386eSCy Schubert     }
564*e0c4386eSCy Schubert 
565*e0c4386eSCy Schubert     if (!test_arg_libctx(&libctx, &default_null_provider, &provider, 3, USAGE))
566*e0c4386eSCy Schubert         return 0;
567*e0c4386eSCy Schubert 
568*e0c4386eSCy Schubert     if (!TEST_ptr(newkey = load_pkey_pem(newkey_f, libctx))
569*e0c4386eSCy Schubert             || !TEST_ptr(cert = load_cert_pem(server_cert_f, libctx))
570*e0c4386eSCy Schubert             || !TEST_int_eq(1, RAND_bytes_ex(libctx, ref, sizeof(ref), 0))) {
571*e0c4386eSCy Schubert         cleanup_tests();
572*e0c4386eSCy Schubert         return 0;
573*e0c4386eSCy Schubert     }
574*e0c4386eSCy Schubert 
575*e0c4386eSCy Schubert     /* Message creation tests */
576*e0c4386eSCy Schubert     ADD_TEST(test_cmp_create_certreq_with_invalid_bodytype);
577*e0c4386eSCy Schubert     ADD_TEST(test_cmp_create_ir_protection_fails);
578*e0c4386eSCy Schubert     ADD_TEST(test_cmp_create_ir_protection_set);
579*e0c4386eSCy Schubert     ADD_TEST(test_cmp_create_error_msg);
580*e0c4386eSCy Schubert     ADD_TEST(test_cmp_create_certconf);
581*e0c4386eSCy Schubert     ADD_TEST(test_cmp_create_certconf_badAlg);
582*e0c4386eSCy Schubert     ADD_TEST(test_cmp_create_certconf_fail_info_max);
583*e0c4386eSCy Schubert     ADD_TEST(test_cmp_create_kur);
584*e0c4386eSCy Schubert     ADD_TEST(test_cmp_create_kur_without_oldcert);
585*e0c4386eSCy Schubert     ADD_TEST(test_cmp_create_cr);
586*e0c4386eSCy Schubert     ADD_TEST(test_cmp_create_cr_without_key);
587*e0c4386eSCy Schubert     ADD_TEST(test_cmp_create_p10cr);
588*e0c4386eSCy Schubert     ADD_TEST(test_cmp_create_p10cr_null);
589*e0c4386eSCy Schubert     ADD_TEST(test_cmp_create_pollreq);
590*e0c4386eSCy Schubert     ADD_TEST(test_cmp_create_rr);
591*e0c4386eSCy Schubert     ADD_TEST(test_cmp_create_rp);
592*e0c4386eSCy Schubert     ADD_TEST(test_cmp_create_genm);
593*e0c4386eSCy Schubert     ADD_TEST(test_cmp_create_certrep);
594*e0c4386eSCy Schubert     ADD_TEST(test_cmp_create_pollrep);
595*e0c4386eSCy Schubert     ADD_ALL_TESTS_NOSUBTEST(test_cmp_pkimessage_create,
596*e0c4386eSCy Schubert                             OSSL_CMP_PKIBODY_POLLREP + 1);
597*e0c4386eSCy Schubert     return 1;
598*e0c4386eSCy Schubert }
599