bc446a4654c03afb3e0b69ef0fc1a232d673c617
[openssl.git] / apps / cmp.c
1 /*
2  * Copyright 2007-2022 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 /* This app is disabled when OPENSSL_NO_CMP is defined. */
13
14 #include <string.h>
15 #include <ctype.h>
16
17 #include "apps.h"
18 #include "http_server.h"
19 #include "s_apps.h"
20 #include "progs.h"
21
22 #include "cmp_mock_srv.h"
23
24 /* tweaks needed due to missing unistd.h on Windows */
25 #if defined(_WIN32) && !defined(__BORLANDC__)
26 # define access _access
27 #endif
28 #ifndef F_OK
29 # define F_OK 0
30 #endif
31
32 #include <openssl/ui.h>
33 #include <openssl/pkcs12.h>
34 #include <openssl/ssl.h>
35
36 /* explicit #includes not strictly needed since implied by the above: */
37 #include <stdlib.h>
38 #include <openssl/cmp.h>
39 #include <openssl/cmp_util.h>
40 #include <openssl/crmf.h>
41 #include <openssl/crypto.h>
42 #include <openssl/err.h>
43 #include <openssl/store.h>
44 #include <openssl/objects.h>
45 #include <openssl/x509.h>
46
47 static char *prog;
48 static char *opt_config = NULL;
49 #define CMP_SECTION "cmp"
50 #define SECTION_NAME_MAX 40 /* max length of section name */
51 #define DEFAULT_SECTION "default"
52 static char *opt_section = CMP_SECTION;
53 static int opt_verbosity = OSSL_CMP_LOG_INFO;
54
55 static int read_config(void);
56
57 static CONF *conf = NULL; /* OpenSSL config file context structure */
58 static OSSL_CMP_CTX *cmp_ctx = NULL; /* the client-side CMP context */
59
60 /* the type of cmp command we want to send */
61 typedef enum {
62     CMP_IR,
63     CMP_KUR,
64     CMP_CR,
65     CMP_P10CR,
66     CMP_RR,
67     CMP_GENM
68 } cmp_cmd_t;
69
70 /* message transfer */
71 #ifndef OPENSSL_NO_SOCK
72 static char *opt_server = NULL;
73 static char *opt_proxy = NULL;
74 static char *opt_no_proxy = NULL;
75 #endif
76 static char *opt_recipient = NULL;
77 static char *opt_path = NULL;
78 static int opt_keep_alive = 1;
79 static int opt_msg_timeout = -1;
80 static int opt_total_timeout = -1;
81
82 /* server authentication */
83 static char *opt_trusted = NULL;
84 static char *opt_untrusted = NULL;
85 static char *opt_srvcert = NULL;
86 static char *opt_expect_sender = NULL;
87 static int opt_ignore_keyusage = 0;
88 static int opt_unprotected_errors = 0;
89 static char *opt_srvcertout = NULL;
90 static char *opt_extracertsout = NULL;
91 static char *opt_cacertsout = NULL;
92
93 /* client authentication */
94 static char *opt_ref = NULL;
95 static char *opt_secret = NULL;
96 static char *opt_cert = NULL;
97 static char *opt_own_trusted = NULL;
98 static char *opt_key = NULL;
99 static char *opt_keypass = NULL;
100 static char *opt_digest = NULL;
101 static char *opt_mac = NULL;
102 static char *opt_extracerts = NULL;
103 static int opt_unprotected_requests = 0;
104
105 /* generic message */
106 static char *opt_cmd_s = NULL;
107 static int opt_cmd = -1;
108 static char *opt_geninfo = NULL;
109 static char *opt_infotype_s = NULL;
110 static int opt_infotype = NID_undef;
111
112 /* certificate enrollment */
113 static char *opt_newkey = NULL;
114 static char *opt_newkeypass = NULL;
115 static char *opt_subject = NULL;
116 static char *opt_issuer = NULL;
117 static int opt_days = 0;
118 static char *opt_reqexts = NULL;
119 static char *opt_sans = NULL;
120 static int opt_san_nodefault = 0;
121 static char *opt_policies = NULL;
122 static char *opt_policy_oids = NULL;
123 static int opt_policy_oids_critical = 0;
124 static int opt_popo = OSSL_CRMF_POPO_NONE - 1;
125 static char *opt_csr = NULL;
126 static char *opt_out_trusted = NULL;
127 static int opt_implicit_confirm = 0;
128 static int opt_disable_confirm = 0;
129 static char *opt_certout = NULL;
130 static char *opt_chainout = NULL;
131
132 /* certificate enrollment and revocation */
133 static char *opt_oldcert = NULL;
134 static int opt_revreason = CRL_REASON_NONE;
135
136 /* credentials format */
137 static char *opt_certform_s = "PEM";
138 static int opt_certform = FORMAT_PEM;
139 static char *opt_keyform_s = NULL;
140 static int opt_keyform = FORMAT_UNDEF;
141 static char *opt_otherpass = NULL;
142 static char *opt_engine = NULL;
143
144 #ifndef OPENSSL_NO_SOCK
145 /* TLS connection */
146 static int opt_tls_used = 0;
147 static char *opt_tls_cert = NULL;
148 static char *opt_tls_key = NULL;
149 static char *opt_tls_keypass = NULL;
150 static char *opt_tls_extra = NULL;
151 static char *opt_tls_trusted = NULL;
152 static char *opt_tls_host = NULL;
153 #endif
154
155 /* client-side debugging */
156 static int opt_batch = 0;
157 static int opt_repeat = 1;
158 static char *opt_reqin = NULL;
159 static int opt_reqin_new_tid = 0;
160 static char *opt_reqout = NULL;
161 static char *opt_rspin = NULL;
162 static char *opt_rspout = NULL;
163 static int opt_use_mock_srv = 0;
164
165 /* mock server */
166 #ifndef OPENSSL_NO_SOCK
167 static char *opt_port = NULL;
168 static int opt_max_msgs = 0;
169 #endif
170 static char *opt_srv_ref = NULL;
171 static char *opt_srv_secret = NULL;
172 static char *opt_srv_cert = NULL;
173 static char *opt_srv_key = NULL;
174 static char *opt_srv_keypass = NULL;
175
176 static char *opt_srv_trusted = NULL;
177 static char *opt_srv_untrusted = NULL;
178 static char *opt_ref_cert = NULL;
179 static char *opt_rsp_cert = NULL;
180 static char *opt_rsp_extracerts = NULL;
181 static char *opt_rsp_capubs = NULL;
182 static int opt_poll_count = 0;
183 static int opt_check_after = 1;
184 static int opt_grant_implicitconf = 0;
185
186 static int opt_pkistatus = OSSL_CMP_PKISTATUS_accepted;
187 static int opt_failure = INT_MIN;
188 static int opt_failurebits = 0;
189 static char *opt_statusstring = NULL;
190 static int opt_send_error = 0;
191 static int opt_send_unprotected = 0;
192 static int opt_send_unprot_err = 0;
193 static int opt_accept_unprotected = 0;
194 static int opt_accept_unprot_err = 0;
195 static int opt_accept_raverified = 0;
196
197 static X509_VERIFY_PARAM *vpm = NULL;
198
199 typedef enum OPTION_choice {
200     OPT_COMMON,
201     OPT_CONFIG, OPT_SECTION, OPT_VERBOSITY,
202
203     OPT_CMD, OPT_INFOTYPE, OPT_GENINFO,
204
205     OPT_NEWKEY, OPT_NEWKEYPASS, OPT_SUBJECT, OPT_ISSUER,
206     OPT_DAYS, OPT_REQEXTS,
207     OPT_SANS, OPT_SAN_NODEFAULT,
208     OPT_POLICIES, OPT_POLICY_OIDS, OPT_POLICY_OIDS_CRITICAL,
209     OPT_POPO, OPT_CSR,
210     OPT_OUT_TRUSTED, OPT_IMPLICIT_CONFIRM, OPT_DISABLE_CONFIRM,
211     OPT_CERTOUT, OPT_CHAINOUT,
212
213     OPT_OLDCERT, OPT_REVREASON,
214
215 #ifndef OPENSSL_NO_SOCK
216     OPT_SERVER, OPT_PROXY, OPT_NO_PROXY,
217 #endif
218     OPT_RECIPIENT, OPT_PATH,
219     OPT_KEEP_ALIVE, OPT_MSG_TIMEOUT, OPT_TOTAL_TIMEOUT,
220
221     OPT_TRUSTED, OPT_UNTRUSTED, OPT_SRVCERT,
222     OPT_EXPECT_SENDER,
223     OPT_IGNORE_KEYUSAGE, OPT_UNPROTECTED_ERRORS,
224     OPT_SRVCERTOUT, OPT_EXTRACERTSOUT, OPT_CACERTSOUT,
225
226     OPT_REF, OPT_SECRET, OPT_CERT, OPT_OWN_TRUSTED, OPT_KEY, OPT_KEYPASS,
227     OPT_DIGEST, OPT_MAC, OPT_EXTRACERTS,
228     OPT_UNPROTECTED_REQUESTS,
229
230     OPT_CERTFORM, OPT_KEYFORM,
231     OPT_OTHERPASS,
232 #ifndef OPENSSL_NO_ENGINE
233     OPT_ENGINE,
234 #endif
235     OPT_PROV_ENUM,
236     OPT_R_ENUM,
237
238 #ifndef OPENSSL_NO_SOCK
239     OPT_TLS_USED, OPT_TLS_CERT, OPT_TLS_KEY,
240     OPT_TLS_KEYPASS,
241     OPT_TLS_EXTRA, OPT_TLS_TRUSTED, OPT_TLS_HOST,
242 #endif
243
244     OPT_BATCH, OPT_REPEAT,
245     OPT_REQIN, OPT_REQIN_NEW_TID, OPT_REQOUT, OPT_RSPIN, OPT_RSPOUT,
246     OPT_USE_MOCK_SRV,
247
248 #ifndef OPENSSL_NO_SOCK
249     OPT_PORT, OPT_MAX_MSGS,
250 #endif
251     OPT_SRV_REF, OPT_SRV_SECRET,
252     OPT_SRV_CERT, OPT_SRV_KEY, OPT_SRV_KEYPASS,
253     OPT_SRV_TRUSTED, OPT_SRV_UNTRUSTED,
254     OPT_REF_CERT, OPT_RSP_CERT, OPT_RSP_EXTRACERTS, OPT_RSP_CAPUBS,
255     OPT_POLL_COUNT, OPT_CHECK_AFTER,
256     OPT_GRANT_IMPLICITCONF,
257     OPT_PKISTATUS, OPT_FAILURE,
258     OPT_FAILUREBITS, OPT_STATUSSTRING,
259     OPT_SEND_ERROR, OPT_SEND_UNPROTECTED,
260     OPT_SEND_UNPROT_ERR, OPT_ACCEPT_UNPROTECTED,
261     OPT_ACCEPT_UNPROT_ERR, OPT_ACCEPT_RAVERIFIED,
262
263     OPT_V_ENUM
264 } OPTION_CHOICE;
265
266 const OPTIONS cmp_options[] = {
267     /* entries must be in the same order as enumerated above!! */
268     {"help", OPT_HELP, '-', "Display this summary"},
269     {"config", OPT_CONFIG, 's',
270      "Configuration file to use. \"\" = none. Default from env variable OPENSSL_CONF"},
271     {"section", OPT_SECTION, 's',
272      "Section(s) in config file to get options from. \"\" = 'default'. Default 'cmp'"},
273     {"verbosity", OPT_VERBOSITY, 'N',
274      "Log level; 3=ERR, 4=WARN, 6=INFO, 7=DEBUG, 8=TRACE. Default 6 = INFO"},
275
276     OPT_SECTION("Generic message"),
277     {"cmd", OPT_CMD, 's', "CMP request to send: ir/cr/kur/p10cr/rr/genm"},
278     {"infotype", OPT_INFOTYPE, 's',
279      "InfoType name for requesting specific info in genm, e.g. 'signKeyPairTypes'"},
280     {"geninfo", OPT_GENINFO, 's',
281      "generalInfo integer values to place in request PKIHeader with given OID"},
282     {OPT_MORE_STR, 0, 0,
283      "specified in the form <OID>:int:<n>, e.g. \"1.2.3.4:int:56789\""},
284
285     OPT_SECTION("Certificate enrollment"),
286     {"newkey", OPT_NEWKEY, 's',
287      "Private or public key for the requested cert. Default: CSR key or client key"},
288     {"newkeypass", OPT_NEWKEYPASS, 's', "New private key pass phrase source"},
289     {"subject", OPT_SUBJECT, 's',
290      "Distinguished Name (DN) of subject to use in the requested cert template"},
291     {OPT_MORE_STR, 0, 0,
292      "For kur, default is subject of -csr arg or reference cert (see -oldcert)"},
293     {OPT_MORE_STR, 0, 0,
294      "this default is used for ir and cr only if no Subject Alt Names are set"},
295     {"issuer", OPT_ISSUER, 's',
296      "DN of the issuer to place in the requested certificate template"},
297     {OPT_MORE_STR, 0, 0,
298      "also used as recipient if neither -recipient nor -srvcert are given"},
299     {"days", OPT_DAYS, 'N',
300      "Requested validity time of the new certificate in number of days"},
301     {"reqexts", OPT_REQEXTS, 's',
302      "Name of config file section defining certificate request extensions."},
303     {OPT_MORE_STR, 0, 0,
304      "Augments or replaces any extensions contained CSR given with -csr"},
305     {"sans", OPT_SANS, 's',
306      "Subject Alt Names (IPADDR/DNS/URI) to add as (critical) cert req extension"},
307     {"san_nodefault", OPT_SAN_NODEFAULT, '-',
308      "Do not take default SANs from reference certificate (see -oldcert)"},
309     {"policies", OPT_POLICIES, 's',
310      "Name of config file section defining policies certificate request extension"},
311     {"policy_oids", OPT_POLICY_OIDS, 's',
312      "Policy OID(s) to add as policies certificate request extension"},
313     {"policy_oids_critical", OPT_POLICY_OIDS_CRITICAL, '-',
314      "Flag the policy OID(s) given with -policy_oids as critical"},
315     {"popo", OPT_POPO, 'n',
316      "Proof-of-Possession (POPO) method to use for ir/cr/kur where"},
317     {OPT_MORE_STR, 0, 0,
318      "-1 = NONE, 0 = RAVERIFIED, 1 = SIGNATURE (default), 2 = KEYENC"},
319     {"csr", OPT_CSR, 's',
320      "PKCS#10 CSR file in PEM or DER format to convert or to use in p10cr"},
321     {"out_trusted", OPT_OUT_TRUSTED, 's',
322      "Certificates to trust when verifying newly enrolled certificates"},
323     {"implicit_confirm", OPT_IMPLICIT_CONFIRM, '-',
324      "Request implicit confirmation of newly enrolled certificates"},
325     {"disable_confirm", OPT_DISABLE_CONFIRM, '-',
326      "Do not confirm newly enrolled certificate w/o requesting implicit"},
327     {OPT_MORE_STR, 0, 0,
328      "confirmation. WARNING: This leads to behavior violating RFC 4210"},
329     {"certout", OPT_CERTOUT, 's',
330      "File to save newly enrolled certificate"},
331     {"chainout", OPT_CHAINOUT, 's',
332      "File to save the chain of newly enrolled certificate"},
333
334     OPT_SECTION("Certificate enrollment and revocation"),
335
336     {"oldcert", OPT_OLDCERT, 's',
337      "Certificate to be updated (defaulting to -cert) or to be revoked in rr;"},
338     {OPT_MORE_STR, 0, 0,
339      "also used as reference (defaulting to -cert) for subject DN and SANs."},
340     {OPT_MORE_STR, 0, 0,
341      "Issuer is used as recipient unless -recipient, -srvcert, or -issuer given"},
342     {"revreason", OPT_REVREASON, 'n',
343      "Reason code to include in revocation request (rr); possible values:"},
344     {OPT_MORE_STR, 0, 0,
345      "0..6, 8..10 (see RFC5280, 5.3.1) or -1. Default -1 = none included"},
346
347     OPT_SECTION("Message transfer"),
348 #ifdef OPENSSL_NO_SOCK
349     {OPT_MORE_STR, 0, 0,
350      "NOTE: -server, -proxy, and -no_proxy not supported due to no-sock build"},
351 #else
352     {"server", OPT_SERVER, 's',
353      "[http[s]://]address[:port][/path] of CMP server. Default port 80 or 443."},
354     {OPT_MORE_STR, 0, 0,
355      "address may be a DNS name or an IP address; path can be overridden by -path"},
356     {"proxy", OPT_PROXY, 's',
357      "[http[s]://]address[:port][/path] of HTTP(S) proxy to use; path is ignored"},
358     {"no_proxy", OPT_NO_PROXY, 's',
359      "List of addresses of servers not to use HTTP(S) proxy for"},
360     {OPT_MORE_STR, 0, 0,
361      "Default from environment variable 'no_proxy', else 'NO_PROXY', else none"},
362 #endif
363     {"recipient", OPT_RECIPIENT, 's',
364      "DN of CA. Default: subject of -srvcert, -issuer, issuer of -oldcert or -cert"},
365     {"path", OPT_PATH, 's',
366      "HTTP path (aka CMP alias) at the CMP server. Default from -server, else \"/\""},
367     {"keep_alive", OPT_KEEP_ALIVE, 'N',
368      "Persistent HTTP connections. 0: no, 1 (the default): request, 2: require"},
369     {"msg_timeout", OPT_MSG_TIMEOUT, 'N',
370      "Number of seconds allowed per CMP message round trip, or 0 for infinite"},
371     {"total_timeout", OPT_TOTAL_TIMEOUT, 'N',
372      "Overall time an enrollment incl. polling may take. Default 0 = infinite"},
373
374     OPT_SECTION("Server authentication"),
375     {"trusted", OPT_TRUSTED, 's',
376      "Certificates to trust as chain roots when verifying signed CMP responses"},
377     {OPT_MORE_STR, 0, 0, "unless -srvcert is given"},
378     {"untrusted", OPT_UNTRUSTED, 's',
379      "Intermediate CA certs for chain construction for CMP/TLS/enrolled certs"},
380     {"srvcert", OPT_SRVCERT, 's',
381      "Server cert to pin and trust directly when verifying signed CMP responses"},
382     {"expect_sender", OPT_EXPECT_SENDER, 's',
383      "DN of expected sender of responses. Defaults to subject of -srvcert, if any"},
384     {"ignore_keyusage", OPT_IGNORE_KEYUSAGE, '-',
385      "Ignore CMP signer cert key usage, else 'digitalSignature' must be allowed"},
386     {"unprotected_errors", OPT_UNPROTECTED_ERRORS, '-',
387      "Accept missing or invalid protection of regular error messages and negative"},
388     {OPT_MORE_STR, 0, 0,
389      "certificate responses (ip/cp/kup), revocation responses (rp), and PKIConf"},
390     {OPT_MORE_STR, 0, 0,
391      "WARNING: This setting leads to behavior allowing violation of RFC 4210"},
392     { "srvcertout", OPT_SRVCERTOUT, 's',
393       "File to save the server cert used and validated for CMP response protection"},
394     {"extracertsout", OPT_EXTRACERTSOUT, 's',
395      "File to save extra certificates received in the extraCerts field"},
396     {"cacertsout", OPT_CACERTSOUT, 's',
397      "File to save CA certificates received in the caPubs field of 'ip' messages"},
398
399     OPT_SECTION("Client authentication"),
400     {"ref", OPT_REF, 's',
401      "Reference value to use as senderKID in case no -cert is given"},
402     {"secret", OPT_SECRET, 's',
403      "Prefer PBM (over signatures) for protecting msgs with given password source"},
404     {"cert", OPT_CERT, 's',
405      "Client's CMP signer certificate; its public key must match the -key argument"},
406     {OPT_MORE_STR, 0, 0,
407      "This also used as default reference for subject DN and SANs."},
408     {OPT_MORE_STR, 0, 0,
409      "Any further certs included are appended to the untrusted certs"},
410     {"own_trusted", OPT_OWN_TRUSTED, 's',
411      "Optional certs to verify chain building for own CMP signer cert"},
412     {"key", OPT_KEY, 's', "CMP signer private key, not used when -secret given"},
413     {"keypass", OPT_KEYPASS, 's',
414      "Client private key (and cert and old cert) pass phrase source"},
415     {"digest", OPT_DIGEST, 's',
416      "Digest to use in message protection and POPO signatures. Default \"sha256\""},
417     {"mac", OPT_MAC, 's',
418      "MAC algorithm to use in PBM-based message protection. Default \"hmac-sha1\""},
419     {"extracerts", OPT_EXTRACERTS, 's',
420      "Certificates to append in extraCerts field of outgoing messages."},
421     {OPT_MORE_STR, 0, 0,
422      "This can be used as the default CMP signer cert chain to include"},
423     {"unprotected_requests", OPT_UNPROTECTED_REQUESTS, '-',
424      "Send messages without CMP-level protection"},
425
426     OPT_SECTION("Credentials format"),
427     {"certform", OPT_CERTFORM, 's',
428      "Format (PEM or DER) to use when saving a certificate to a file. Default PEM"},
429     {"keyform", OPT_KEYFORM, 's',
430      "Format of the key input (ENGINE, other values ignored)"},
431     {"otherpass", OPT_OTHERPASS, 's',
432      "Pass phrase source potentially needed for loading certificates of others"},
433 #ifndef OPENSSL_NO_ENGINE
434     {"engine", OPT_ENGINE, 's',
435      "Use crypto engine with given identifier, possibly a hardware device."},
436     {OPT_MORE_STR, 0, 0,
437      "Engines may also be defined in OpenSSL config file engine section."},
438 #endif
439     OPT_PROV_OPTIONS,
440     OPT_R_OPTIONS,
441
442     OPT_SECTION("TLS connection"),
443 #ifdef OPENSSL_NO_SOCK
444     {OPT_MORE_STR, 0, 0,
445      "NOTE: -tls_used and all other TLS options not supported due to no-sock build"},
446 #else
447     {"tls_used", OPT_TLS_USED, '-',
448      "Enable using TLS (also when other TLS options are not set)"},
449     {"tls_cert", OPT_TLS_CERT, 's',
450      "Client's TLS certificate. May include chain to be provided to TLS server"},
451     {"tls_key", OPT_TLS_KEY, 's',
452      "Private key for the client's TLS certificate"},
453     {"tls_keypass", OPT_TLS_KEYPASS, 's',
454      "Pass phrase source for the client's private TLS key (and TLS cert)"},
455     {"tls_extra", OPT_TLS_EXTRA, 's',
456      "Extra certificates to provide to TLS server during TLS handshake"},
457     {"tls_trusted", OPT_TLS_TRUSTED, 's',
458      "Trusted certificates to use for verifying the TLS server certificate;"},
459     {OPT_MORE_STR, 0, 0, "this implies hostname validation"},
460     {"tls_host", OPT_TLS_HOST, 's',
461      "Address to be checked (rather than -server) during TLS hostname validation"},
462 #endif
463
464     OPT_SECTION("Client-side debugging"),
465     {"batch", OPT_BATCH, '-',
466      "Do not interactively prompt for input when a password is required etc."},
467     {"repeat", OPT_REPEAT, 'p',
468      "Invoke the transaction the given positive number of times. Default 1"},
469     {"reqin", OPT_REQIN, 's', "Take sequence of CMP requests from file(s)"},
470     {"reqin_new_tid", OPT_REQIN_NEW_TID, '-',
471      "Use fresh transactionID for CMP requests read from -reqin"},
472     {"reqout", OPT_REQOUT, 's', "Save sequence of CMP requests to file(s)"},
473     {"rspin", OPT_RSPIN, 's',
474      "Process sequence of CMP responses provided in file(s), skipping server"},
475     {"rspout", OPT_RSPOUT, 's', "Save sequence of CMP responses to file(s)"},
476
477     {"use_mock_srv", OPT_USE_MOCK_SRV, '-',
478      "Use internal mock server at API level, bypassing socket-based HTTP"},
479
480     OPT_SECTION("Mock server"),
481 #ifdef OPENSSL_NO_SOCK
482     {OPT_MORE_STR, 0, 0,
483      "NOTE: -port and -max_msgs not supported due to no-sock build"},
484 #else
485     {"port", OPT_PORT, 's',
486      "Act as HTTP-based mock server listening on given port"},
487     {"max_msgs", OPT_MAX_MSGS, 'N',
488      "max number of messages handled by HTTP mock server. Default: 0 = unlimited"},
489 #endif
490
491     {"srv_ref", OPT_SRV_REF, 's',
492      "Reference value to use as senderKID of server in case no -srv_cert is given"},
493     {"srv_secret", OPT_SRV_SECRET, 's',
494      "Password source for server authentication with a pre-shared key (secret)"},
495     {"srv_cert", OPT_SRV_CERT, 's', "Certificate of the server"},
496     {"srv_key", OPT_SRV_KEY, 's',
497      "Private key used by the server for signing messages"},
498     {"srv_keypass", OPT_SRV_KEYPASS, 's',
499      "Server private key (and cert) pass phrase source"},
500
501     {"srv_trusted", OPT_SRV_TRUSTED, 's',
502      "Trusted certificates for client authentication"},
503     {"srv_untrusted", OPT_SRV_UNTRUSTED, 's',
504      "Intermediate certs that may be useful for verifying CMP protection"},
505     {"ref_cert", OPT_RSP_CERT, 's',
506      "Certificate to be expected for rr and any oldCertID in kur messages"},
507     {"rsp_cert", OPT_RSP_CERT, 's',
508      "Certificate to be returned as mock enrollment result"},
509     {"rsp_extracerts", OPT_RSP_EXTRACERTS, 's',
510      "Extra certificates to be included in mock certification responses"},
511     {"rsp_capubs", OPT_RSP_CAPUBS, 's',
512      "CA certificates to be included in mock ip response"},
513     {"poll_count", OPT_POLL_COUNT, 'N',
514      "Number of times the client must poll before receiving a certificate"},
515     {"check_after", OPT_CHECK_AFTER, 'N',
516      "The check_after value (time to wait) to include in poll response"},
517     {"grant_implicitconf", OPT_GRANT_IMPLICITCONF, '-',
518      "Grant implicit confirmation of newly enrolled certificate"},
519
520     {"pkistatus", OPT_PKISTATUS, 'N',
521      "PKIStatus to be included in server response. Possible values: 0..6"},
522     {"failure", OPT_FAILURE, 'N',
523      "A single failure info bit number to include in server response, 0..26"},
524     {"failurebits", OPT_FAILUREBITS, 'N',
525      "Number representing failure bits to include in server response, 0..2^27 - 1"},
526     {"statusstring", OPT_STATUSSTRING, 's',
527      "Status string to be included in server response"},
528     {"send_error", OPT_SEND_ERROR, '-',
529      "Force server to reply with error message"},
530     {"send_unprotected", OPT_SEND_UNPROTECTED, '-',
531      "Send response messages without CMP-level protection"},
532     {"send_unprot_err", OPT_SEND_UNPROT_ERR, '-',
533      "In case of negative responses, server shall send unprotected error messages,"},
534     {OPT_MORE_STR, 0, 0,
535      "certificate responses (ip/cp/kup), and revocation responses (rp)."},
536     {OPT_MORE_STR, 0, 0,
537      "WARNING: This setting leads to behavior violating RFC 4210"},
538     {"accept_unprotected", OPT_ACCEPT_UNPROTECTED, '-',
539      "Accept missing or invalid protection of requests"},
540     {"accept_unprot_err", OPT_ACCEPT_UNPROT_ERR, '-',
541      "Accept unprotected error messages from client"},
542     {"accept_raverified", OPT_ACCEPT_RAVERIFIED, '-',
543      "Accept RAVERIFIED as proof-of-possession (POPO)"},
544
545     OPT_V_OPTIONS,
546     {NULL}
547 };
548
549 typedef union {
550     char **txt;
551     int *num;
552     long *num_long;
553 } varref;
554 static varref cmp_vars[] = { /* must be in same order as enumerated above! */
555     {&opt_config}, {&opt_section}, {(char **)&opt_verbosity},
556
557     {&opt_cmd_s}, {&opt_infotype_s}, {&opt_geninfo},
558
559     {&opt_newkey}, {&opt_newkeypass}, {&opt_subject}, {&opt_issuer},
560     {(char **)&opt_days}, {&opt_reqexts},
561     {&opt_sans}, {(char **)&opt_san_nodefault},
562     {&opt_policies}, {&opt_policy_oids}, {(char **)&opt_policy_oids_critical},
563     {(char **)&opt_popo}, {&opt_csr},
564     {&opt_out_trusted},
565     {(char **)&opt_implicit_confirm}, {(char **)&opt_disable_confirm},
566     {&opt_certout}, {&opt_chainout},
567
568     {&opt_oldcert}, {(char **)&opt_revreason},
569
570 #ifndef OPENSSL_NO_SOCK
571     {&opt_server}, {&opt_proxy}, {&opt_no_proxy},
572 #endif
573     {&opt_recipient}, {&opt_path}, {(char **)&opt_keep_alive},
574     {(char **)&opt_msg_timeout}, {(char **)&opt_total_timeout},
575
576     {&opt_trusted}, {&opt_untrusted}, {&opt_srvcert},
577     {&opt_expect_sender},
578     {(char **)&opt_ignore_keyusage}, {(char **)&opt_unprotected_errors},
579     {&opt_srvcertout}, {&opt_extracertsout}, {&opt_cacertsout},
580
581     {&opt_ref}, {&opt_secret},
582     {&opt_cert}, {&opt_own_trusted}, {&opt_key}, {&opt_keypass},
583     {&opt_digest}, {&opt_mac}, {&opt_extracerts},
584     {(char **)&opt_unprotected_requests},
585
586     {&opt_certform_s}, {&opt_keyform_s},
587     {&opt_otherpass},
588 #ifndef OPENSSL_NO_ENGINE
589     {&opt_engine},
590 #endif
591
592 #ifndef OPENSSL_NO_SOCK
593     {(char **)&opt_tls_used}, {&opt_tls_cert}, {&opt_tls_key},
594     {&opt_tls_keypass},
595     {&opt_tls_extra}, {&opt_tls_trusted}, {&opt_tls_host},
596 #endif
597
598     {(char **)&opt_batch}, {(char **)&opt_repeat},
599     {&opt_reqin}, {(char **)&opt_reqin_new_tid},
600     {&opt_reqout}, {&opt_rspin}, {&opt_rspout},
601
602     {(char **)&opt_use_mock_srv},
603 #ifndef OPENSSL_NO_SOCK
604     {&opt_port}, {(char **)&opt_max_msgs},
605 #endif
606     {&opt_srv_ref}, {&opt_srv_secret},
607     {&opt_srv_cert}, {&opt_srv_key}, {&opt_srv_keypass},
608     {&opt_srv_trusted}, {&opt_srv_untrusted},
609     {&opt_ref_cert}, {&opt_rsp_cert}, {&opt_rsp_extracerts}, {&opt_rsp_capubs},
610     {(char **)&opt_poll_count}, {(char **)&opt_check_after},
611     {(char **)&opt_grant_implicitconf},
612     {(char **)&opt_pkistatus}, {(char **)&opt_failure},
613     {(char **)&opt_failurebits}, {&opt_statusstring},
614     {(char **)&opt_send_error}, {(char **)&opt_send_unprotected},
615     {(char **)&opt_send_unprot_err}, {(char **)&opt_accept_unprotected},
616     {(char **)&opt_accept_unprot_err}, {(char **)&opt_accept_raverified},
617
618     {NULL}
619 };
620
621 #define FUNC (strcmp(OPENSSL_FUNC, "(unknown function)") == 0   \
622               ? "CMP" : OPENSSL_FUNC)
623 #define CMP_print(bio, level, prefix, msg, a1, a2, a3) \
624     ((void)(level > opt_verbosity ? 0 : \
625             (BIO_printf(bio, "%s:%s:%d:CMP %s: " msg "\n", \
626                         FUNC, OPENSSL_FILE, OPENSSL_LINE, prefix, a1, a2, a3))))
627 #define CMP_DEBUG(m, a1, a2, a3) \
628     CMP_print(bio_out, OSSL_CMP_LOG_DEBUG, "debug", m, a1, a2, a3)
629 #define CMP_debug(msg)             CMP_DEBUG(msg"%s%s%s", "", "", "")
630 #define CMP_debug1(msg, a1)        CMP_DEBUG(msg"%s%s",   a1, "", "")
631 #define CMP_debug2(msg, a1, a2)    CMP_DEBUG(msg"%s",     a1, a2, "")
632 #define CMP_debug3(msg, a1, a2, a3) CMP_DEBUG(msg,        a1, a2, a3)
633 #define CMP_INFO(msg, a1, a2, a3) \
634     CMP_print(bio_out, OSSL_CMP_LOG_INFO, "info", msg, a1, a2, a3)
635 #define CMP_info(msg)              CMP_INFO(msg"%s%s%s", "", "", "")
636 #define CMP_info1(msg, a1)         CMP_INFO(msg"%s%s",   a1, "", "")
637 #define CMP_info2(msg, a1, a2)     CMP_INFO(msg"%s",     a1, a2, "")
638 #define CMP_info3(msg, a1, a2, a3) CMP_INFO(msg,         a1, a2, a3)
639 #define CMP_WARN(m, a1, a2, a3) \
640     CMP_print(bio_out, OSSL_CMP_LOG_WARNING, "warning", m, a1, a2, a3)
641 #define CMP_warn(msg)              CMP_WARN(msg"%s%s%s", "", "", "")
642 #define CMP_warn1(msg, a1)         CMP_WARN(msg"%s%s",   a1, "", "")
643 #define CMP_warn2(msg, a1, a2)     CMP_WARN(msg"%s",     a1, a2, "")
644 #define CMP_warn3(msg, a1, a2, a3) CMP_WARN(msg,         a1, a2, a3)
645 #define CMP_ERR(msg, a1, a2, a3) \
646     CMP_print(bio_err, OSSL_CMP_LOG_ERR, "error", msg, a1, a2, a3)
647 #define CMP_err(msg)               CMP_ERR(msg"%s%s%s", "", "", "")
648 #define CMP_err1(msg, a1)          CMP_ERR(msg"%s%s",   a1, "", "")
649 #define CMP_err2(msg, a1, a2)      CMP_ERR(msg"%s",     a1, a2, "")
650 #define CMP_err3(msg, a1, a2, a3)  CMP_ERR(msg,         a1, a2, a3)
651
652 static int print_to_bio_out(const char *func, const char *file, int line,
653                             OSSL_CMP_severity level, const char *msg)
654 {
655     return OSSL_CMP_print_to_bio(bio_out, func, file, line, level, msg);
656 }
657
658 static int print_to_bio_err(const char *func, const char *file, int line,
659                             OSSL_CMP_severity level, const char *msg)
660 {
661     return OSSL_CMP_print_to_bio(bio_err, func, file, line, level, msg);
662 }
663
664 static int set_verbosity(int level)
665 {
666     if (level < OSSL_CMP_LOG_EMERG || level > OSSL_CMP_LOG_MAX) {
667         CMP_err1("Logging verbosity level %d out of range (0 .. 8)", level);
668         return 0;
669     }
670     opt_verbosity = level;
671     return 1;
672 }
673
674 static EVP_PKEY *load_key_pwd(const char *uri, int format,
675                               const char *pass, ENGINE *eng, const char *desc)
676 {
677     char *pass_string = get_passwd(pass, desc);
678     EVP_PKEY *pkey = load_key(uri, format, 0, pass_string, eng, desc);
679
680     clear_free(pass_string);
681     return pkey;
682 }
683
684 static X509 *load_cert_pwd(const char *uri, const char *pass, const char *desc)
685 {
686     X509 *cert;
687     char *pass_string = get_passwd(pass, desc);
688
689     cert = load_cert_pass(uri, FORMAT_UNDEF, 0, pass_string, desc);
690     clear_free(pass_string);
691     return cert;
692 }
693
694 /* set expected hostname/IP addr and clears the email addr in the given ts */
695 static int truststore_set_host_etc(X509_STORE *ts, const char *host)
696 {
697     X509_VERIFY_PARAM *ts_vpm = X509_STORE_get0_param(ts);
698
699     /* first clear any hostnames, IP, and email addresses */
700     if (!X509_VERIFY_PARAM_set1_host(ts_vpm, NULL, 0)
701             || !X509_VERIFY_PARAM_set1_ip(ts_vpm, NULL, 0)
702             || !X509_VERIFY_PARAM_set1_email(ts_vpm, NULL, 0))
703         return 0;
704     X509_VERIFY_PARAM_set_hostflags(ts_vpm,
705                                     X509_CHECK_FLAG_ALWAYS_CHECK_SUBJECT |
706                                     X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS);
707     return (host != NULL && X509_VERIFY_PARAM_set1_ip_asc(ts_vpm, host))
708         || X509_VERIFY_PARAM_set1_host(ts_vpm, host, 0);
709 }
710
711 /* write OSSL_CMP_MSG DER-encoded to the specified file name item */
712 static int write_PKIMESSAGE(const OSSL_CMP_MSG *msg, char **filenames)
713 {
714     char *file;
715
716     if (msg == NULL || filenames == NULL) {
717         CMP_err("NULL arg to write_PKIMESSAGE");
718         return 0;
719     }
720     if (*filenames == NULL) {
721         CMP_err("not enough file names provided for writing PKIMessage");
722         return 0;
723     }
724
725     file = *filenames;
726     *filenames = next_item(file);
727     if (OSSL_CMP_MSG_write(file, msg) < 0) {
728         CMP_err1("cannot write PKIMessage to file '%s'", file);
729         return 0;
730     }
731     return 1;
732 }
733
734 /* read DER-encoded OSSL_CMP_MSG from the specified file name item */
735 static OSSL_CMP_MSG *read_PKIMESSAGE(char **filenames)
736 {
737     char *file;
738     OSSL_CMP_MSG *ret;
739
740     if (filenames == NULL) {
741         CMP_err("NULL arg to read_PKIMESSAGE");
742         return NULL;
743     }
744     if (*filenames == NULL) {
745         CMP_err("not enough file names provided for reading PKIMessage");
746         return NULL;
747     }
748
749     file = *filenames;
750     *filenames = next_item(file);
751
752     ret = OSSL_CMP_MSG_read(file, app_get0_libctx(), app_get0_propq());
753     if (ret == NULL)
754         CMP_err1("cannot read PKIMessage from file '%s'", file);
755     return ret;
756 }
757
758 /*-
759  * Sends the PKIMessage req and on success place the response in *res
760  * basically like OSSL_CMP_MSG_http_perform(), but in addition allows
761  * to dump the sequence of requests and responses to files and/or
762  * to take the sequence of requests and responses from files.
763  */
764 static OSSL_CMP_MSG *read_write_req_resp(OSSL_CMP_CTX *ctx,
765                                          const OSSL_CMP_MSG *req)
766 {
767     OSSL_CMP_MSG *req_new = NULL;
768     OSSL_CMP_MSG *res = NULL;
769     OSSL_CMP_PKIHEADER *hdr;
770     const char *prev_opt_rspin = opt_rspin;
771
772     if (opt_reqout != NULL && !write_PKIMESSAGE(req, &opt_reqout))
773         goto err;
774     if (opt_reqin != NULL && opt_rspin == NULL) {
775         if ((req_new = read_PKIMESSAGE(&opt_reqin)) == NULL)
776             goto err;
777         /*-
778          * The transaction ID in req_new read from opt_reqin may not be fresh.
779          * In this case the server may complain "Transaction id already in use."
780          * The following workaround unfortunately requires re-protection.
781          */
782         if (opt_reqin_new_tid
783                 && !OSSL_CMP_MSG_update_transactionID(ctx, req_new))
784             goto err;
785     }
786
787     if (opt_rspin != NULL) {
788         res = read_PKIMESSAGE(&opt_rspin);
789     } else {
790         const OSSL_CMP_MSG *actual_req = opt_reqin != NULL ? req_new : req;
791
792         res = opt_use_mock_srv
793             ? OSSL_CMP_CTX_server_perform(ctx, actual_req)
794             : OSSL_CMP_MSG_http_perform(ctx, actual_req);
795     }
796     if (res == NULL)
797         goto err;
798
799     if (opt_reqin != NULL || prev_opt_rspin != NULL) {
800         /* need to satisfy nonce and transactionID checks */
801         ASN1_OCTET_STRING *nonce;
802         ASN1_OCTET_STRING *tid;
803
804         hdr = OSSL_CMP_MSG_get0_header(res);
805         nonce = OSSL_CMP_HDR_get0_recipNonce(hdr);
806         tid = OSSL_CMP_HDR_get0_transactionID(hdr);
807         if (!OSSL_CMP_CTX_set1_senderNonce(ctx, nonce)
808                 || !OSSL_CMP_CTX_set1_transactionID(ctx, tid)) {
809             OSSL_CMP_MSG_free(res);
810             res = NULL;
811             goto err;
812         }
813     }
814
815     if (opt_rspout != NULL && !write_PKIMESSAGE(res, &opt_rspout)) {
816         OSSL_CMP_MSG_free(res);
817         res = NULL;
818     }
819
820  err:
821     OSSL_CMP_MSG_free(req_new);
822     return res;
823 }
824
825 static int set_name(const char *str,
826                     int (*set_fn) (OSSL_CMP_CTX *ctx, const X509_NAME *name),
827                     OSSL_CMP_CTX *ctx, const char *desc)
828 {
829     if (str != NULL) {
830         X509_NAME *n = parse_name(str, MBSTRING_ASC, 1, desc);
831
832         if (n == NULL)
833             return 0;
834         if (!(*set_fn) (ctx, n)) {
835             X509_NAME_free(n);
836             CMP_err("out of memory");
837             return 0;
838         }
839         X509_NAME_free(n);
840     }
841     return 1;
842 }
843
844 static int set_gennames(OSSL_CMP_CTX *ctx, char *names, const char *desc)
845 {
846     char *next;
847
848     for (; names != NULL; names = next) {
849         GENERAL_NAME *n;
850
851         next = next_item(names);
852         if (strcmp(names, "critical") == 0) {
853             (void)OSSL_CMP_CTX_set_option(ctx,
854                                           OSSL_CMP_OPT_SUBJECTALTNAME_CRITICAL,
855                                           1);
856             continue;
857         }
858
859         /* try IP address first, then email/URI/domain name */
860         (void)ERR_set_mark();
861         n = a2i_GENERAL_NAME(NULL, NULL, NULL, GEN_IPADD, names, 0);
862         if (n == NULL)
863             n = a2i_GENERAL_NAME(NULL, NULL, NULL,
864                                  strchr(names, '@') != NULL ? GEN_EMAIL :
865                                  strchr(names, ':') != NULL ? GEN_URI : GEN_DNS,
866                                  names, 0);
867         (void)ERR_pop_to_mark();
868
869         if (n == NULL) {
870             CMP_err2("bad syntax of %s '%s'", desc, names);
871             return 0;
872         }
873         if (!OSSL_CMP_CTX_push1_subjectAltName(ctx, n)) {
874             GENERAL_NAME_free(n);
875             CMP_err("out of memory");
876             return 0;
877         }
878         GENERAL_NAME_free(n);
879     }
880     return 1;
881 }
882
883 static X509_STORE *load_trusted(char *input, int for_new_cert, const char *desc)
884 {
885     X509_STORE *ts = load_certstore(input, opt_otherpass, desc, vpm);
886
887     if (ts == NULL)
888         return NULL;
889     X509_STORE_set_verify_cb(ts, X509_STORE_CTX_print_verify_cb);
890
891     /* copy vpm to store */
892     if (X509_STORE_set1_param(ts, vpm /* may be NULL */)
893             && (for_new_cert || truststore_set_host_etc(ts, NULL)))
894         return ts;
895     BIO_printf(bio_err, "error setting verification parameters for %s\n", desc);
896     OSSL_CMP_CTX_print_errors(cmp_ctx);
897     X509_STORE_free(ts);
898     return NULL;
899 }
900
901 typedef int (*add_X509_stack_fn_t)(void *ctx, const STACK_OF(X509) *certs);
902
903 static int setup_certs(char *files, const char *desc, void *ctx,
904                        add_X509_stack_fn_t set1_fn)
905 {
906     STACK_OF(X509) *certs;
907     int ok;
908
909     if (files == NULL)
910         return 1;
911     if ((certs = load_certs_multifile(files, opt_otherpass, desc, vpm)) == NULL)
912         return 0;
913     ok = (*set1_fn)(ctx, certs);
914     OSSL_STACK_OF_X509_free(certs);
915     return ok;
916 }
917
918 /*
919  * parse and transform some options, checking their syntax.
920  * Returns 1 on success, 0 on error
921  */
922 static int transform_opts(void)
923 {
924     if (opt_cmd_s != NULL) {
925         if (!strcmp(opt_cmd_s, "ir")) {
926             opt_cmd = CMP_IR;
927         } else if (!strcmp(opt_cmd_s, "kur")) {
928             opt_cmd = CMP_KUR;
929         } else if (!strcmp(opt_cmd_s, "cr")) {
930             opt_cmd = CMP_CR;
931         } else if (!strcmp(opt_cmd_s, "p10cr")) {
932             opt_cmd = CMP_P10CR;
933         } else if (!strcmp(opt_cmd_s, "rr")) {
934             opt_cmd = CMP_RR;
935         } else if (!strcmp(opt_cmd_s, "genm")) {
936             opt_cmd = CMP_GENM;
937         } else {
938             CMP_err1("unknown cmp command '%s'", opt_cmd_s);
939             return 0;
940         }
941     } else {
942         CMP_err("no cmp command to execute");
943         return 0;
944     }
945
946 #ifndef OPENSSL_NO_ENGINE
947 # define FORMAT_OPTIONS (OPT_FMT_PEMDER | OPT_FMT_PKCS12 | OPT_FMT_ENGINE)
948 #else
949 # define FORMAT_OPTIONS (OPT_FMT_PEMDER | OPT_FMT_PKCS12)
950 #endif
951
952     if (opt_keyform_s != NULL
953             && !opt_format(opt_keyform_s, FORMAT_OPTIONS, &opt_keyform)) {
954         CMP_err("unknown option given for key loading format");
955         return 0;
956     }
957
958 #undef FORMAT_OPTIONS
959
960     if (opt_certform_s != NULL
961             && !opt_format(opt_certform_s, OPT_FMT_PEMDER, &opt_certform)) {
962         CMP_err("unknown option given for certificate storing format");
963         return 0;
964     }
965
966     return 1;
967 }
968
969 static OSSL_CMP_SRV_CTX *setup_srv_ctx(ENGINE *engine)
970 {
971     OSSL_CMP_CTX *ctx; /* extra CMP (client) ctx partly used by server */
972     OSSL_CMP_SRV_CTX *srv_ctx = ossl_cmp_mock_srv_new(app_get0_libctx(),
973                                                       app_get0_propq());
974
975     if (srv_ctx == NULL)
976         return NULL;
977     ctx = OSSL_CMP_SRV_CTX_get0_cmp_ctx(srv_ctx);
978
979     if (opt_srv_ref == NULL) {
980         if (opt_srv_cert == NULL) {
981             /* opt_srv_cert should determine the sender */
982             CMP_err("must give -srv_ref for mock server if no -srv_cert given");
983             goto err;
984         }
985     } else {
986         if (!OSSL_CMP_CTX_set1_referenceValue(ctx, (unsigned char *)opt_srv_ref,
987                                               strlen(opt_srv_ref)))
988             goto err;
989     }
990
991     if (opt_srv_secret != NULL) {
992         int res;
993         char *pass_str = get_passwd(opt_srv_secret, "PBMAC secret of mock server");
994
995         if (pass_str != NULL) {
996             cleanse(opt_srv_secret);
997             res = OSSL_CMP_CTX_set1_secretValue(ctx, (unsigned char *)pass_str,
998                                                 strlen(pass_str));
999             clear_free(pass_str);
1000             if (res == 0)
1001                 goto err;
1002         }
1003     } else if (opt_srv_cert == NULL) {
1004         CMP_err("mock server credentials must be given if -use_mock_srv or -port is used");
1005         goto err;
1006     } else {
1007         CMP_warn("mock server will not be able to handle PBM-protected requests since -srv_secret is not given");
1008     }
1009
1010     if (opt_srv_secret == NULL
1011             && ((opt_srv_cert == NULL) != (opt_srv_key == NULL))) {
1012         CMP_err("must give both -srv_cert and -srv_key options or neither");
1013         goto err;
1014     }
1015     if (opt_srv_cert != NULL) {
1016         X509 *srv_cert = load_cert_pwd(opt_srv_cert, opt_srv_keypass,
1017                                        "certificate of the mock server");
1018
1019         if (srv_cert == NULL || !OSSL_CMP_CTX_set1_cert(ctx, srv_cert)) {
1020             X509_free(srv_cert);
1021             goto err;
1022         }
1023         X509_free(srv_cert);
1024     }
1025     if (opt_srv_key != NULL) {
1026         EVP_PKEY *pkey = load_key_pwd(opt_srv_key, opt_keyform,
1027                                       opt_srv_keypass,
1028                                       engine, "private key for mock server cert");
1029
1030         if (pkey == NULL || !OSSL_CMP_CTX_set1_pkey(ctx, pkey)) {
1031             EVP_PKEY_free(pkey);
1032             goto err;
1033         }
1034         EVP_PKEY_free(pkey);
1035     }
1036     cleanse(opt_srv_keypass);
1037
1038     if (opt_srv_trusted != NULL) {
1039         X509_STORE *ts =
1040             load_trusted(opt_srv_trusted, 0, "certs trusted by mock server");
1041
1042         if (ts == NULL || !OSSL_CMP_CTX_set0_trusted(ctx, ts)) {
1043             X509_STORE_free(ts);
1044             goto err;
1045         }
1046     } else {
1047         CMP_warn("mock server will not be able to handle signature-protected requests since -srv_trusted is not given");
1048     }
1049     if (!setup_certs(opt_srv_untrusted,
1050                      "untrusted certificates for mock server", ctx,
1051                      (add_X509_stack_fn_t)OSSL_CMP_CTX_set1_untrusted))
1052         goto err;
1053
1054     if (opt_ref_cert != NULL) {
1055         X509 *cert = load_cert_pwd(opt_ref_cert, opt_keypass,
1056                                    "reference cert to be expected by the mock server");
1057
1058         if (cert == NULL)
1059             goto err;
1060         if (!ossl_cmp_mock_srv_set1_refCert(srv_ctx, cert)) {
1061             X509_free(cert);
1062             goto err;
1063         }
1064         X509_free(cert);
1065     }
1066     if (opt_rsp_cert == NULL) {
1067         CMP_warn("no -rsp_cert given for mock server");
1068     } else {
1069         X509 *cert = load_cert_pwd(opt_rsp_cert, opt_keypass,
1070                                    "cert to be returned by the mock server");
1071
1072         if (cert == NULL)
1073             goto err;
1074         if (!ossl_cmp_mock_srv_set1_certOut(srv_ctx, cert)) {
1075             X509_free(cert);
1076             goto err;
1077         }
1078         X509_free(cert);
1079     }
1080     if (!setup_certs(opt_rsp_extracerts,
1081                      "CMP extra certificates for mock server", srv_ctx,
1082                      (add_X509_stack_fn_t)ossl_cmp_mock_srv_set1_chainOut))
1083         goto err;
1084     if (!setup_certs(opt_rsp_capubs, "caPubs for mock server", srv_ctx,
1085                      (add_X509_stack_fn_t)ossl_cmp_mock_srv_set1_caPubsOut))
1086         goto err;
1087     (void)ossl_cmp_mock_srv_set_pollCount(srv_ctx, opt_poll_count);
1088     (void)ossl_cmp_mock_srv_set_checkAfterTime(srv_ctx, opt_check_after);
1089     if (opt_grant_implicitconf)
1090         (void)OSSL_CMP_SRV_CTX_set_grant_implicit_confirm(srv_ctx, 1);
1091
1092     if (opt_failure != INT_MIN) { /* option has been set explicitly */
1093         if (opt_failure < 0 || OSSL_CMP_PKIFAILUREINFO_MAX < opt_failure) {
1094             CMP_err1("-failure out of range, should be >= 0 and <= %d",
1095                      OSSL_CMP_PKIFAILUREINFO_MAX);
1096             goto err;
1097         }
1098         if (opt_failurebits != 0)
1099             CMP_warn("-failurebits overrides -failure");
1100         else
1101             opt_failurebits = 1 << opt_failure;
1102     }
1103     if ((unsigned)opt_failurebits > OSSL_CMP_PKIFAILUREINFO_MAX_BIT_PATTERN) {
1104         CMP_err("-failurebits out of range");
1105         goto err;
1106     }
1107     if (!ossl_cmp_mock_srv_set_statusInfo(srv_ctx, opt_pkistatus,
1108                                           opt_failurebits, opt_statusstring))
1109         goto err;
1110
1111     if (opt_send_error)
1112         (void)ossl_cmp_mock_srv_set_send_error(srv_ctx, 1);
1113
1114     if (opt_send_unprotected)
1115         (void)OSSL_CMP_CTX_set_option(ctx, OSSL_CMP_OPT_UNPROTECTED_SEND, 1);
1116     if (opt_send_unprot_err)
1117         (void)OSSL_CMP_SRV_CTX_set_send_unprotected_errors(srv_ctx, 1);
1118     if (opt_accept_unprotected)
1119         (void)OSSL_CMP_SRV_CTX_set_accept_unprotected(srv_ctx, 1);
1120     if (opt_accept_unprot_err)
1121         (void)OSSL_CMP_CTX_set_option(ctx, OSSL_CMP_OPT_UNPROTECTED_ERRORS, 1);
1122     if (opt_accept_raverified)
1123         (void)OSSL_CMP_SRV_CTX_set_accept_raverified(srv_ctx, 1);
1124
1125     return srv_ctx;
1126
1127  err:
1128     ossl_cmp_mock_srv_free(srv_ctx);
1129     return NULL;
1130 }
1131
1132 /*
1133  * set up verification aspects of OSSL_CMP_CTX w.r.t. opts from config file/CLI.
1134  * Returns pointer on success, NULL on error
1135  */
1136 static int setup_verification_ctx(OSSL_CMP_CTX *ctx)
1137 {
1138     if (!setup_certs(opt_untrusted, "untrusted certificates", ctx,
1139                      (add_X509_stack_fn_t)OSSL_CMP_CTX_set1_untrusted))
1140         return 0;
1141
1142     if (opt_srvcert != NULL || opt_trusted != NULL) {
1143         X509 *srvcert;
1144         X509_STORE *ts;
1145         int ok;
1146
1147         if (opt_srvcert != NULL) {
1148             if (opt_trusted != NULL) {
1149                 CMP_warn("-trusted option is ignored since -srvcert option is present");
1150                 opt_trusted = NULL;
1151             }
1152             if (opt_recipient != NULL) {
1153                 CMP_warn("-recipient option is ignored since -srvcert option is present");
1154                 opt_recipient = NULL;
1155             }
1156             srvcert = load_cert_pwd(opt_srvcert, opt_otherpass,
1157                                     "directly trusted CMP server certificate");
1158             ok = srvcert != NULL && OSSL_CMP_CTX_set1_srvCert(ctx, srvcert);
1159             X509_free(srvcert);
1160             if (!ok)
1161                 return 0;
1162         }
1163         if (opt_trusted != NULL) {
1164             /*
1165              * the 0 arg below clears any expected host/ip/email address;
1166              * opt_expect_sender is used instead
1167              */
1168             ts = load_trusted(opt_trusted, 0, "certs trusted by client");
1169
1170             if (ts == NULL || !OSSL_CMP_CTX_set0_trusted(ctx, ts)) {
1171                 X509_STORE_free(ts);
1172                 return 0;
1173             }
1174         }
1175     }
1176
1177     if (opt_ignore_keyusage)
1178         (void)OSSL_CMP_CTX_set_option(ctx, OSSL_CMP_OPT_IGNORE_KEYUSAGE, 1);
1179
1180     if (opt_unprotected_errors)
1181         (void)OSSL_CMP_CTX_set_option(ctx, OSSL_CMP_OPT_UNPROTECTED_ERRORS, 1);
1182
1183     if (opt_out_trusted != NULL) { /* for use in OSSL_CMP_certConf_cb() */
1184         X509_VERIFY_PARAM *out_vpm = NULL;
1185         X509_STORE *out_trusted =
1186             load_trusted(opt_out_trusted, 1,
1187                          "trusted certs for verifying newly enrolled cert");
1188
1189         if (out_trusted == NULL)
1190             return 0;
1191         /* ignore any -attime here, new certs are current anyway */
1192         out_vpm = X509_STORE_get0_param(out_trusted);
1193         X509_VERIFY_PARAM_clear_flags(out_vpm, X509_V_FLAG_USE_CHECK_TIME);
1194
1195         (void)OSSL_CMP_CTX_set_certConf_cb_arg(ctx, out_trusted);
1196     }
1197
1198     if (opt_disable_confirm)
1199         (void)OSSL_CMP_CTX_set_option(ctx, OSSL_CMP_OPT_DISABLE_CONFIRM, 1);
1200
1201     if (opt_implicit_confirm)
1202         (void)OSSL_CMP_CTX_set_option(ctx, OSSL_CMP_OPT_IMPLICIT_CONFIRM, 1);
1203
1204     return 1;
1205 }
1206
1207 #ifndef OPENSSL_NO_SOCK
1208 /*
1209  * set up ssl_ctx for the OSSL_CMP_CTX based on options from config file/CLI.
1210  * Returns pointer on success, NULL on error
1211  */
1212 static SSL_CTX *setup_ssl_ctx(OSSL_CMP_CTX *ctx, const char *host,
1213                               ENGINE *engine)
1214 {
1215     STACK_OF(X509) *untrusted = OSSL_CMP_CTX_get0_untrusted(ctx);
1216     EVP_PKEY *pkey = NULL;
1217     X509_STORE *trust_store = NULL;
1218     SSL_CTX *ssl_ctx;
1219     int i;
1220
1221     ssl_ctx = SSL_CTX_new(TLS_client_method());
1222     if (ssl_ctx == NULL)
1223         return NULL;
1224
1225     if (opt_tls_trusted != NULL) {
1226         trust_store = load_trusted(opt_tls_trusted, 0, "trusted TLS certs");
1227         if (trust_store == NULL)
1228             goto err;
1229         SSL_CTX_set_cert_store(ssl_ctx, trust_store);
1230         SSL_CTX_set_verify(ssl_ctx, SSL_VERIFY_PEER, NULL);
1231     } else {
1232         CMP_warn("-tls_used given without -tls_trusted; will not authenticate the TLS server");
1233     }
1234
1235     if (opt_tls_cert != NULL && opt_tls_key != NULL) {
1236         X509 *cert;
1237         STACK_OF(X509) *certs = NULL;
1238         int ok;
1239
1240         if (!load_cert_certs(opt_tls_cert, &cert, &certs, 0, opt_tls_keypass,
1241                              "TLS client certificate (optionally with chain)",
1242                              vpm))
1243             /* need opt_tls_keypass if opt_tls_cert is encrypted PKCS#12 file */
1244             goto err;
1245
1246         ok = SSL_CTX_use_certificate(ssl_ctx, cert) > 0;
1247         X509_free(cert);
1248
1249         /*
1250          * Any further certs and any untrusted certs are used for constructing
1251          * the chain to be provided with the TLS client cert to the TLS server.
1252          */
1253         if (!ok || !SSL_CTX_set0_chain(ssl_ctx, certs)) {
1254             CMP_err1("unable to use client TLS certificate file '%s'",
1255                      opt_tls_cert);
1256             OSSL_STACK_OF_X509_free(certs);
1257             goto err;
1258         }
1259         for (i = 0; i < sk_X509_num(untrusted); i++) {
1260             cert = sk_X509_value(untrusted, i);
1261             if (!SSL_CTX_add1_chain_cert(ssl_ctx, cert)) {
1262                 CMP_err("could not add untrusted cert to TLS client cert chain");
1263                 goto err;
1264             }
1265         }
1266
1267         {
1268             X509_VERIFY_PARAM *tls_vpm = NULL;
1269             unsigned long bak_flags = 0; /* compiler warns without init */
1270
1271             if (trust_store != NULL) {
1272                 tls_vpm = X509_STORE_get0_param(trust_store);
1273                 bak_flags = X509_VERIFY_PARAM_get_flags(tls_vpm);
1274                 /* disable any cert status/revocation checking etc. */
1275                 X509_VERIFY_PARAM_clear_flags(tls_vpm,
1276                                               ~(X509_V_FLAG_USE_CHECK_TIME
1277                                                 | X509_V_FLAG_NO_CHECK_TIME));
1278             }
1279             CMP_debug("trying to build cert chain for own TLS cert");
1280             if (SSL_CTX_build_cert_chain(ssl_ctx,
1281                                          SSL_BUILD_CHAIN_FLAG_UNTRUSTED |
1282                                          SSL_BUILD_CHAIN_FLAG_NO_ROOT)) {
1283                 CMP_debug("success building cert chain for own TLS cert");
1284             } else {
1285                 OSSL_CMP_CTX_print_errors(ctx);
1286                 CMP_warn("could not build cert chain for own TLS cert");
1287             }
1288             if (trust_store != NULL)
1289                 X509_VERIFY_PARAM_set_flags(tls_vpm, bak_flags);
1290         }
1291
1292         /* If present we append to the list also the certs from opt_tls_extra */
1293         if (opt_tls_extra != NULL) {
1294             STACK_OF(X509) *tls_extra = load_certs_multifile(opt_tls_extra,
1295                                                              opt_otherpass,
1296                                                              "extra certificates for TLS",
1297                                                              vpm);
1298             int res = 1;
1299
1300             if (tls_extra == NULL)
1301                 goto err;
1302             for (i = 0; i < sk_X509_num(tls_extra); i++) {
1303                 cert = sk_X509_value(tls_extra, i);
1304                 if (res != 0)
1305                     res = SSL_CTX_add_extra_chain_cert(ssl_ctx, cert);
1306                 if (res == 0)
1307                     X509_free(cert);
1308             }
1309             sk_X509_free(tls_extra);
1310             if (res == 0) {
1311                 BIO_printf(bio_err, "error: unable to add TLS extra certs\n");
1312                 goto err;
1313             }
1314         }
1315
1316         pkey = load_key_pwd(opt_tls_key, opt_keyform, opt_tls_keypass,
1317                             engine, "TLS client private key");
1318         cleanse(opt_tls_keypass);
1319         if (pkey == NULL)
1320             goto err;
1321         /*
1322          * verify the key matches the cert,
1323          * not using SSL_CTX_check_private_key(ssl_ctx)
1324          * because it gives poor and sometimes misleading diagnostics
1325          */
1326         if (!X509_check_private_key(SSL_CTX_get0_certificate(ssl_ctx),
1327                                     pkey)) {
1328             CMP_err2("TLS private key '%s' does not match the TLS certificate '%s'\n",
1329                      opt_tls_key, opt_tls_cert);
1330             EVP_PKEY_free(pkey);
1331             pkey = NULL; /* otherwise, for some reason double free! */
1332             goto err;
1333         }
1334         if (SSL_CTX_use_PrivateKey(ssl_ctx, pkey) <= 0) {
1335             CMP_err1("unable to use TLS client private key '%s'", opt_tls_key);
1336             EVP_PKEY_free(pkey);
1337             pkey = NULL; /* otherwise, for some reason double free! */
1338             goto err;
1339         }
1340         EVP_PKEY_free(pkey); /* we do not need the handle any more */
1341     } else {
1342         CMP_warn("-tls_used given without -tls_key; cannot authenticate to the TLS server");
1343     }
1344     if (trust_store != NULL) {
1345         /*
1346          * Enable and parameterize server hostname/IP address check.
1347          * If we did this before checking our own TLS cert
1348          * the expected hostname would mislead the check.
1349          */
1350         if (!truststore_set_host_etc(trust_store,
1351                                      opt_tls_host != NULL ? opt_tls_host : host))
1352             goto err;
1353     }
1354     return ssl_ctx;
1355  err:
1356     SSL_CTX_free(ssl_ctx);
1357     return NULL;
1358 }
1359 #endif /* OPENSSL_NO_SOCK */
1360
1361 /*
1362  * set up protection aspects of OSSL_CMP_CTX based on options from config
1363  * file/CLI while parsing options and checking their consistency.
1364  * Returns 1 on success, 0 on error
1365  */
1366 static int setup_protection_ctx(OSSL_CMP_CTX *ctx, ENGINE *engine)
1367 {
1368     if (!opt_unprotected_requests && opt_secret == NULL && opt_key == NULL) {
1369         CMP_err("must give -key or -secret unless -unprotected_requests is used");
1370         return 0;
1371     }
1372
1373     if (opt_ref == NULL && opt_cert == NULL && opt_subject == NULL) {
1374         /* cert or subject should determine the sender */
1375         CMP_err("must give -ref if no -cert and no -subject given");
1376         return 0;
1377     }
1378     if (!opt_secret && ((opt_cert == NULL) != (opt_key == NULL))) {
1379         CMP_err("must give both -cert and -key options or neither");
1380         return 0;
1381     }
1382     if (opt_secret != NULL) {
1383         char *pass_string = get_passwd(opt_secret, "PBMAC");
1384         int res;
1385
1386         if (pass_string != NULL) {
1387             cleanse(opt_secret);
1388             res = OSSL_CMP_CTX_set1_secretValue(ctx,
1389                                                 (unsigned char *)pass_string,
1390                                                 strlen(pass_string));
1391             clear_free(pass_string);
1392             if (res == 0)
1393                 return 0;
1394         }
1395         if (opt_cert != NULL || opt_key != NULL)
1396             CMP_warn("-cert and -key not used for protection since -secret is given");
1397     }
1398     if (opt_ref != NULL
1399             && !OSSL_CMP_CTX_set1_referenceValue(ctx, (unsigned char *)opt_ref,
1400                                                  strlen(opt_ref)))
1401         return 0;
1402
1403     if (opt_key != NULL) {
1404         EVP_PKEY *pkey = load_key_pwd(opt_key, opt_keyform, opt_keypass, engine,
1405                                       "private key for CMP client certificate");
1406
1407         if (pkey == NULL || !OSSL_CMP_CTX_set1_pkey(ctx, pkey)) {
1408             EVP_PKEY_free(pkey);
1409             return 0;
1410         }
1411         EVP_PKEY_free(pkey);
1412     }
1413     if (opt_secret == NULL && opt_srvcert == NULL && opt_trusted == NULL)
1414         CMP_warn("will not authenticate server due to missing -secret, -trusted, or -srvcert");
1415
1416     if (opt_cert != NULL) {
1417         X509 *cert;
1418         STACK_OF(X509) *certs = NULL;
1419         X509_STORE *own_trusted = NULL;
1420         int ok;
1421
1422         if (!load_cert_certs(opt_cert, &cert, &certs, 0, opt_keypass,
1423                              "CMP client certificate (optionally with chain)",
1424                              vpm))
1425             /* opt_keypass is needed if opt_cert is an encrypted PKCS#12 file */
1426             return 0;
1427         ok = OSSL_CMP_CTX_set1_cert(ctx, cert);
1428         X509_free(cert);
1429         if (!ok) {
1430             CMP_err("out of memory");
1431         } else {
1432             if (opt_own_trusted != NULL) {
1433                 own_trusted = load_trusted(opt_own_trusted, 0,
1434                                            "trusted certs for verifying own CMP signer cert");
1435                 ok = own_trusted != NULL;
1436             }
1437             ok = ok && OSSL_CMP_CTX_build_cert_chain(ctx, own_trusted, certs);
1438         }
1439         X509_STORE_free(own_trusted);
1440         OSSL_STACK_OF_X509_free(certs);
1441         if (!ok)
1442             return 0;
1443     } else if (opt_own_trusted != NULL) {
1444         CMP_warn("-own_trusted option is ignored without -cert");
1445     }
1446
1447     if (!setup_certs(opt_extracerts, "extra certificates for CMP", ctx,
1448                      (add_X509_stack_fn_t)OSSL_CMP_CTX_set1_extraCertsOut))
1449         return 0;
1450     cleanse(opt_otherpass);
1451
1452     if (opt_unprotected_requests)
1453         (void)OSSL_CMP_CTX_set_option(ctx, OSSL_CMP_OPT_UNPROTECTED_SEND, 1);
1454
1455     if (opt_digest != NULL) {
1456         int digest = OBJ_ln2nid(opt_digest);
1457
1458         if (digest == NID_undef) {
1459             CMP_err1("digest algorithm name not recognized: '%s'", opt_digest);
1460             return 0;
1461         }
1462         if (!OSSL_CMP_CTX_set_option(ctx, OSSL_CMP_OPT_DIGEST_ALGNID, digest)
1463             || !OSSL_CMP_CTX_set_option(ctx, OSSL_CMP_OPT_OWF_ALGNID, digest)) {
1464             CMP_err1("digest algorithm name not supported: '%s'", opt_digest);
1465             return 0;
1466         }
1467     }
1468
1469     if (opt_mac != NULL) {
1470         int mac = OBJ_ln2nid(opt_mac);
1471
1472         if (mac == NID_undef) {
1473             CMP_err1("MAC algorithm name not recognized: '%s'", opt_mac);
1474             return 0;
1475         }
1476         (void)OSSL_CMP_CTX_set_option(ctx, OSSL_CMP_OPT_MAC_ALGNID, mac);
1477     }
1478     return 1;
1479 }
1480
1481 /*
1482  * set up IR/CR/KUR/CertConf/RR specific parts of the OSSL_CMP_CTX
1483  * based on options from config file/CLI.
1484  * Returns pointer on success, NULL on error
1485  */
1486 static int setup_request_ctx(OSSL_CMP_CTX *ctx, ENGINE *engine)
1487 {
1488     X509_REQ *csr = NULL;
1489     X509_EXTENSIONS *exts = NULL;
1490     X509V3_CTX ext_ctx;
1491
1492     if (opt_subject == NULL
1493             && opt_csr == NULL && opt_oldcert == NULL && opt_cert == NULL
1494             && opt_cmd != CMP_RR && opt_cmd != CMP_GENM)
1495         CMP_warn("no -subject given; no -csr or -oldcert or -cert available for fallback");
1496
1497     if (opt_cmd == CMP_IR || opt_cmd == CMP_CR || opt_cmd == CMP_KUR) {
1498         if (opt_newkey == NULL && opt_key == NULL && opt_csr == NULL) {
1499             CMP_err("missing -newkey (or -key) to be certified and no -csr given");
1500             return 0;
1501         }
1502         if (opt_certout == NULL) {
1503             CMP_err("-certout not given, nowhere to save newly enrolled certificate");
1504             return 0;
1505         }
1506         if (!set_name(opt_subject, OSSL_CMP_CTX_set1_subjectName, ctx, "subject")
1507                 || !set_name(opt_issuer, OSSL_CMP_CTX_set1_issuer, ctx, "issuer"))
1508             return 0;
1509     } else {
1510         const char *msg = "option is ignored for commands other than 'ir', 'cr', and 'kur'";
1511
1512         if (opt_subject != NULL) {
1513             if (opt_ref == NULL && opt_cert == NULL) {
1514                 /* will use subject as sender unless oldcert subject is used */
1515                 if (!set_name(opt_subject, OSSL_CMP_CTX_set1_subjectName, ctx, "subject"))
1516                     return 0;
1517             } else {
1518                 CMP_warn1("-subject %s since -ref or -cert is given", msg);
1519             }
1520         }
1521         if (opt_issuer != NULL)
1522             CMP_warn1("-issuer %s", msg);
1523         if (opt_reqexts != NULL)
1524             CMP_warn1("-reqexts %s", msg);
1525         if (opt_san_nodefault)
1526             CMP_warn1("-san_nodefault %s", msg);
1527         if (opt_sans != NULL)
1528             CMP_warn1("-sans %s", msg);
1529         if (opt_policies != NULL)
1530             CMP_warn1("-policies %s", msg);
1531         if (opt_policy_oids != NULL)
1532             CMP_warn1("-policy_oids %s", msg);
1533     }
1534     if (opt_cmd == CMP_KUR) {
1535         char *ref_cert = opt_oldcert != NULL ? opt_oldcert : opt_cert;
1536
1537         if (ref_cert == NULL && opt_csr == NULL) {
1538             CMP_err("missing -oldcert for certificate to be updated and no -csr given");
1539             return 0;
1540         }
1541         if (opt_subject != NULL)
1542             CMP_warn2("given -subject '%s' overrides the subject of '%s' for KUR",
1543                       opt_subject, ref_cert != NULL ? ref_cert : opt_csr);
1544     }
1545     if (opt_cmd == CMP_RR) {
1546         if (opt_oldcert == NULL && opt_csr == NULL) {
1547             CMP_err("missing -oldcert for certificate to be revoked and no -csr given");
1548             return 0;
1549         }
1550         if (opt_oldcert != NULL && opt_csr != NULL)
1551             CMP_warn("ignoring -csr since certificate to be revoked is given");
1552     }
1553     if (opt_cmd == CMP_P10CR && opt_csr == NULL) {
1554         CMP_err("missing PKCS#10 CSR for p10cr");
1555         return 0;
1556     }
1557
1558     if (opt_recipient == NULL && opt_srvcert == NULL && opt_issuer == NULL
1559             && opt_oldcert == NULL && opt_cert == NULL)
1560         CMP_warn("missing -recipient, -srvcert, -issuer, -oldcert or -cert; recipient will be set to \"NULL-DN\"");
1561
1562     if (opt_cmd == CMP_P10CR || opt_cmd == CMP_RR || opt_cmd == CMP_GENM) {
1563         const char *msg = "option is ignored for 'p10cr', 'rr', and 'genm' commands";
1564
1565         if (opt_newkeypass != NULL)
1566             CMP_warn1("-newkeypass %s", msg);
1567         if (opt_newkey != NULL)
1568             CMP_warn1("-newkey %s", msg);
1569         if (opt_days != 0)
1570             CMP_warn1("-days %s", msg);
1571         if (opt_popo != OSSL_CRMF_POPO_NONE - 1)
1572             CMP_warn1("-popo %s", msg);
1573     } else if (opt_newkey != NULL) {
1574         const char *file = opt_newkey;
1575         const int format = opt_keyform;
1576         const char *pass = opt_newkeypass;
1577         const char *desc = "new private key for cert to be enrolled";
1578         EVP_PKEY *pkey;
1579         int priv = 1;
1580         BIO *bio_bak = bio_err;
1581
1582         bio_err = NULL; /* suppress diagnostics on first try loading key */
1583         pkey = load_key_pwd(file, format, pass, engine, desc);
1584         bio_err = bio_bak;
1585         if (pkey == NULL) {
1586             ERR_clear_error();
1587             desc = opt_csr == NULL
1588                 ? "fallback public key for cert to be enrolled"
1589                 : "public key for checking cert resulting from p10cr";
1590             pkey = load_pubkey(file, format, 0, pass, engine, desc);
1591             priv = 0;
1592         }
1593         cleanse(opt_newkeypass);
1594         if (pkey == NULL || !OSSL_CMP_CTX_set0_newPkey(ctx, priv, pkey)) {
1595             EVP_PKEY_free(pkey);
1596             return 0;
1597         }
1598     }
1599
1600     if (opt_days > 0
1601             && !OSSL_CMP_CTX_set_option(ctx, OSSL_CMP_OPT_VALIDITY_DAYS,
1602                                         opt_days)) {
1603         CMP_err("could not set requested cert validity period");
1604         return 0;
1605     }
1606
1607     if (opt_policies != NULL && opt_policy_oids != NULL) {
1608         CMP_err("cannot have policies both via -policies and via -policy_oids");
1609         return 0;
1610     }
1611
1612     if (opt_csr != NULL) {
1613         if (opt_cmd == CMP_GENM) {
1614             CMP_warn("-csr option is ignored for command 'genm'");
1615         } else {
1616             csr = load_csr_autofmt(opt_csr, FORMAT_UNDEF, "PKCS#10 CSR");
1617             if (csr == NULL)
1618                 return 0;
1619             if (!OSSL_CMP_CTX_set1_p10CSR(ctx, csr))
1620                 goto oom;
1621         }
1622     }
1623     if (opt_reqexts != NULL || opt_policies != NULL) {
1624         if ((exts = sk_X509_EXTENSION_new_null()) == NULL)
1625             goto oom;
1626         X509V3_set_ctx(&ext_ctx, NULL, NULL, csr, NULL, X509V3_CTX_REPLACE);
1627         X509V3_set_nconf(&ext_ctx, conf);
1628         if (opt_reqexts != NULL
1629             && !X509V3_EXT_add_nconf_sk(conf, &ext_ctx, opt_reqexts, &exts)) {
1630             CMP_err1("cannot load certificate request extension section '%s'",
1631                      opt_reqexts);
1632             goto exts_err;
1633         }
1634         if (opt_policies != NULL
1635             && !X509V3_EXT_add_nconf_sk(conf, &ext_ctx, opt_policies, &exts)) {
1636             CMP_err1("cannot load policy cert request extension section '%s'",
1637                      opt_policies);
1638             goto exts_err;
1639         }
1640         OSSL_CMP_CTX_set0_reqExtensions(ctx, exts);
1641     }
1642     X509_REQ_free(csr);
1643     /* After here, must not goto oom/exts_err */
1644
1645     if (OSSL_CMP_CTX_reqExtensions_have_SAN(ctx) && opt_sans != NULL) {
1646         CMP_err("cannot have Subject Alternative Names both via -reqexts and via -sans");
1647         return 0;
1648     }
1649     if (!set_gennames(ctx, opt_sans, "Subject Alternative Name"))
1650         return 0;
1651
1652     if (opt_san_nodefault) {
1653         if (opt_sans != NULL)
1654             CMP_warn("-opt_san_nodefault has no effect when -sans is used");
1655         (void)OSSL_CMP_CTX_set_option(ctx,
1656                                       OSSL_CMP_OPT_SUBJECTALTNAME_NODEFAULT, 1);
1657     }
1658
1659     if (opt_policy_oids_critical) {
1660         if (opt_policy_oids == NULL)
1661             CMP_warn("-opt_policy_oids_critical has no effect unless -policy_oids is given");
1662         (void)OSSL_CMP_CTX_set_option(ctx, OSSL_CMP_OPT_POLICIES_CRITICAL, 1);
1663     }
1664
1665     while (opt_policy_oids != NULL) {
1666         ASN1_OBJECT *policy;
1667         POLICYINFO *pinfo;
1668         char *next = next_item(opt_policy_oids);
1669
1670         if ((policy = OBJ_txt2obj(opt_policy_oids, 1)) == 0) {
1671             CMP_err1("unknown policy OID '%s'", opt_policy_oids);
1672             return 0;
1673         }
1674
1675         if ((pinfo = POLICYINFO_new()) == NULL) {
1676             ASN1_OBJECT_free(policy);
1677             return 0;
1678         }
1679         pinfo->policyid = policy;
1680
1681         if (!OSSL_CMP_CTX_push0_policy(ctx, pinfo)) {
1682             CMP_err1("cannot add policy with OID '%s'", opt_policy_oids);
1683             POLICYINFO_free(pinfo);
1684             return 0;
1685         }
1686         opt_policy_oids = next;
1687     }
1688
1689     if (opt_popo >= OSSL_CRMF_POPO_NONE)
1690         (void)OSSL_CMP_CTX_set_option(ctx, OSSL_CMP_OPT_POPO_METHOD, opt_popo);
1691
1692     if (opt_oldcert != NULL) {
1693         if (opt_cmd == CMP_GENM) {
1694             CMP_warn("-oldcert option is ignored for command 'genm'");
1695         } else {
1696             X509 *oldcert = load_cert_pwd(opt_oldcert, opt_keypass,
1697                                           opt_cmd == CMP_KUR ?
1698                                           "certificate to be updated" :
1699                                           opt_cmd == CMP_RR ?
1700                                           "certificate to be revoked" :
1701                                           "reference certificate (oldcert)");
1702             /* opt_keypass needed if opt_oldcert is an encrypted PKCS#12 file */
1703
1704             if (oldcert == NULL)
1705                 return 0;
1706             if (!OSSL_CMP_CTX_set1_oldCert(ctx, oldcert)) {
1707                 X509_free(oldcert);
1708                 CMP_err("out of memory");
1709                 return 0;
1710             }
1711             X509_free(oldcert);
1712         }
1713     }
1714     cleanse(opt_keypass);
1715     if (opt_revreason > CRL_REASON_NONE)
1716         (void)OSSL_CMP_CTX_set_option(ctx, OSSL_CMP_OPT_REVOCATION_REASON,
1717                                       opt_revreason);
1718
1719     return 1;
1720
1721  oom:
1722     CMP_err("out of memory");
1723  exts_err:
1724     sk_X509_EXTENSION_pop_free(exts, X509_EXTENSION_free);
1725     X509_REQ_free(csr);
1726     return 0;
1727 }
1728
1729 static int handle_opt_geninfo(OSSL_CMP_CTX *ctx)
1730 {
1731     long value;
1732     ASN1_OBJECT *type;
1733     ASN1_INTEGER *aint;
1734     ASN1_TYPE *val;
1735     OSSL_CMP_ITAV *itav;
1736     char *endstr;
1737     char *valptr = strchr(opt_geninfo, ':');
1738
1739     if (valptr == NULL) {
1740         CMP_err("missing ':' in -geninfo option");
1741         return 0;
1742     }
1743     valptr[0] = '\0';
1744     valptr++;
1745
1746     if (!CHECK_AND_SKIP_CASE_PREFIX(valptr, "int:")) {
1747         CMP_err("missing 'int:' in -geninfo option");
1748         return 0;
1749     }
1750
1751     value = strtol(valptr, &endstr, 10);
1752     if (endstr == valptr || *endstr != '\0') {
1753         CMP_err("cannot parse int in -geninfo option");
1754         return 0;
1755     }
1756
1757     type = OBJ_txt2obj(opt_geninfo, 1);
1758     if (type == NULL) {
1759         CMP_err("cannot parse OID in -geninfo option");
1760         return 0;
1761     }
1762
1763     if ((aint = ASN1_INTEGER_new()) == NULL)
1764         goto oom;
1765
1766     val = ASN1_TYPE_new();
1767     if (!ASN1_INTEGER_set(aint, value) || val == NULL) {
1768         ASN1_INTEGER_free(aint);
1769         goto oom;
1770     }
1771     ASN1_TYPE_set(val, V_ASN1_INTEGER, aint);
1772     itav = OSSL_CMP_ITAV_create(type, val);
1773     if (itav == NULL) {
1774         ASN1_TYPE_free(val);
1775         goto oom;
1776     }
1777
1778     if (!OSSL_CMP_CTX_push0_geninfo_ITAV(ctx, itav)) {
1779         OSSL_CMP_ITAV_free(itav);
1780         return 0;
1781     }
1782     return 1;
1783
1784  oom:
1785     ASN1_OBJECT_free(type);
1786     CMP_err("out of memory");
1787     return 0;
1788 }
1789
1790 /*
1791  * set up the client-side OSSL_CMP_CTX based on options from config file/CLI
1792  * while parsing options and checking their consistency.
1793  * Prints reason for error to bio_err.
1794  * Returns 1 on success, 0 on error
1795  */
1796 static int setup_client_ctx(OSSL_CMP_CTX *ctx, ENGINE *engine)
1797 {
1798     int ret = 0;
1799     char *host = NULL, *port = NULL, *path = NULL, *used_path = opt_path;
1800 #ifndef OPENSSL_NO_SOCK
1801     int portnum, use_ssl;
1802     static char server_port[32] = { '\0' };
1803     const char *proxy_host = NULL;
1804 #endif
1805     char server_buf[200] = "mock server";
1806     char proxy_buf[200] = "";
1807
1808     if (!opt_use_mock_srv && opt_rspin == NULL) { /* note: -port is not given */
1809 #ifndef OPENSSL_NO_SOCK
1810         if (opt_server == NULL) {
1811             CMP_err("missing -server or -use_mock_srv or -rspin option");
1812             goto err;
1813         }
1814 #else
1815         CMP_err("missing -use_mock_srv or -rspin option; -server option is not supported due to no-sock build");
1816         goto err;
1817 #endif
1818     }
1819 #ifndef OPENSSL_NO_SOCK
1820     if (opt_server == NULL) {
1821         if (opt_proxy != NULL)
1822             CMP_warn("ignoring -proxy option since -server is not given");
1823         if (opt_no_proxy != NULL)
1824             CMP_warn("ignoring -no_proxy option since -server is not given");
1825         if (opt_tls_used) {
1826             CMP_warn("ignoring -tls_used option since -server is not given");
1827             opt_tls_used = 0;
1828         }
1829         goto set_path;
1830     }
1831     if (!OSSL_HTTP_parse_url(opt_server, &use_ssl, NULL /* user */, &host, &port,
1832                              &portnum, &path, NULL /* q */, NULL /* frag */)) {
1833         CMP_err1("cannot parse -server URL: %s", opt_server);
1834         goto err;
1835     }
1836     if (use_ssl && !opt_tls_used) {
1837         CMP_err("missing -tls_used option since -server URL indicates HTTPS");
1838         goto err;
1839     }
1840
1841     BIO_snprintf(server_port, sizeof(server_port), "%s", port);
1842     if (opt_path == NULL)
1843         used_path = path;
1844     if (!OSSL_CMP_CTX_set1_server(ctx, host)
1845             || !OSSL_CMP_CTX_set_serverPort(ctx, portnum))
1846         goto oom;
1847     if (opt_proxy != NULL && !OSSL_CMP_CTX_set1_proxy(ctx, opt_proxy))
1848         goto oom;
1849     if (opt_no_proxy != NULL && !OSSL_CMP_CTX_set1_no_proxy(ctx, opt_no_proxy))
1850         goto oom;
1851     (void)BIO_snprintf(server_buf, sizeof(server_buf), "http%s://%s:%s/%s",
1852                        opt_tls_used ? "s" : "", host, port,
1853                        *used_path == '/' ? used_path + 1 : used_path);
1854
1855     proxy_host = OSSL_HTTP_adapt_proxy(opt_proxy, opt_no_proxy, host, use_ssl);
1856     if (proxy_host != NULL)
1857         (void)BIO_snprintf(proxy_buf, sizeof(proxy_buf), " via %s", proxy_host);
1858
1859  set_path:
1860 #endif
1861
1862     if (!OSSL_CMP_CTX_set1_serverPath(ctx, used_path))
1863         goto oom;
1864     if (!transform_opts())
1865         goto err;
1866
1867     if (opt_infotype_s != NULL) {
1868         char id_buf[100] = "id-it-";
1869
1870         strncat(id_buf, opt_infotype_s, sizeof(id_buf) - strlen(id_buf) - 1);
1871         if ((opt_infotype = OBJ_sn2nid(id_buf)) == NID_undef) {
1872             CMP_err("unknown OID name in -infotype option");
1873             goto err;
1874         }
1875     }
1876
1877     if (!setup_verification_ctx(ctx))
1878         goto err;
1879
1880     if (opt_keep_alive != 1)
1881         (void)OSSL_CMP_CTX_set_option(ctx, OSSL_CMP_OPT_KEEP_ALIVE,
1882                                       opt_keep_alive);
1883     if (opt_total_timeout > 0 && opt_msg_timeout > 0
1884             && opt_total_timeout < opt_msg_timeout) {
1885         CMP_err2("-total_timeout argument = %d must not be < %d (-msg_timeout)",
1886                  opt_total_timeout, opt_msg_timeout);
1887         goto err;
1888     }
1889     if (opt_msg_timeout >= 0) /* must do this before setup_ssl_ctx() */
1890         (void)OSSL_CMP_CTX_set_option(ctx, OSSL_CMP_OPT_MSG_TIMEOUT,
1891                                       opt_msg_timeout);
1892     if (opt_total_timeout >= 0)
1893         (void)OSSL_CMP_CTX_set_option(ctx, OSSL_CMP_OPT_TOTAL_TIMEOUT,
1894                                       opt_total_timeout);
1895
1896     if (opt_reqin != NULL && opt_rspin != NULL)
1897         CMP_warn("-reqin is ignored since -rspin is present");
1898     if (opt_reqin_new_tid && opt_reqin == NULL)
1899         CMP_warn("-reqin_new_tid is ignored since -reqin is not present");
1900     if (opt_reqin != NULL || opt_reqout != NULL
1901             || opt_rspin != NULL || opt_rspout != NULL || opt_use_mock_srv)
1902         (void)OSSL_CMP_CTX_set_transfer_cb(ctx, read_write_req_resp);
1903
1904 #ifndef OPENSSL_NO_SOCK
1905     if (opt_tls_used) {
1906         APP_HTTP_TLS_INFO *info;
1907
1908         if (opt_tls_cert != NULL
1909             || opt_tls_key != NULL || opt_tls_keypass != NULL) {
1910             if (opt_tls_key == NULL) {
1911                 CMP_err("missing -tls_key option");
1912                 goto err;
1913             } else if (opt_tls_cert == NULL) {
1914                 CMP_err("missing -tls_cert option");
1915                 goto err;
1916             }
1917         }
1918
1919         if ((info = OPENSSL_zalloc(sizeof(*info))) == NULL)
1920             goto err;
1921         (void)OSSL_CMP_CTX_set_http_cb_arg(ctx, info);
1922         info->server = opt_server;
1923         info->port = server_port;
1924         /* workaround for callback design flaw, see #17088: */
1925         info->use_proxy = proxy_host != NULL;
1926         info->timeout = OSSL_CMP_CTX_get_option(ctx, OSSL_CMP_OPT_MSG_TIMEOUT);
1927         info->ssl_ctx = setup_ssl_ctx(ctx, host, engine);
1928
1929         if (info->ssl_ctx == NULL)
1930             goto err;
1931         (void)OSSL_CMP_CTX_set_http_cb(ctx, app_http_tls_cb);
1932     }
1933 #endif
1934
1935     if (!setup_protection_ctx(ctx, engine))
1936         goto err;
1937
1938     if (!setup_request_ctx(ctx, engine))
1939         goto err;
1940
1941     if (!set_name(opt_recipient, OSSL_CMP_CTX_set1_recipient, ctx, "recipient")
1942             || !set_name(opt_expect_sender, OSSL_CMP_CTX_set1_expected_sender,
1943                          ctx, "expected sender"))
1944         goto err;
1945
1946     if (opt_geninfo != NULL && !handle_opt_geninfo(ctx))
1947         goto err;
1948
1949     /* not printing earlier, to minimize confusion in case setup fails before */
1950     if (opt_rspin != NULL)
1951         CMP_info("will not contact any server since -rspin is given");
1952     else
1953         CMP_info2("will contact %s%s", server_buf, proxy_buf);
1954
1955     ret = 1;
1956
1957  err:
1958     OPENSSL_free(host);
1959     OPENSSL_free(port);
1960     OPENSSL_free(path);
1961     return ret;
1962  oom:
1963     CMP_err("out of memory");
1964     goto err;
1965 }
1966
1967 /*
1968  * write out the given certificate to the output specified by bio.
1969  * Depending on options use either PEM or DER format.
1970  * Returns 1 on success, 0 on error
1971  */
1972 static int write_cert(BIO *bio, X509 *cert)
1973 {
1974     if ((opt_certform == FORMAT_PEM && PEM_write_bio_X509(bio, cert))
1975             || (opt_certform == FORMAT_ASN1 && i2d_X509_bio(bio, cert)))
1976         return 1;
1977     if (opt_certform != FORMAT_PEM && opt_certform != FORMAT_ASN1)
1978         BIO_printf(bio_err,
1979                    "error: unsupported type '%s' for writing certificates\n",
1980                    opt_certform_s);
1981     return 0;
1982 }
1983
1984 /*
1985  * If file != NULL writes out a stack of certs to the given file.
1986  * If certs is NULL, the file is emptied.
1987  * Frees the certs if present.
1988  * Depending on options use either PEM or DER format,
1989  * where DER does not make much sense for writing more than one cert!
1990  * Returns number of written certificates on success, -1 on error.
1991  */
1992 static int save_free_certs(OSSL_CMP_CTX *ctx, STACK_OF(X509) *certs,
1993                            const char *file, const char *desc)
1994 {
1995     BIO *bio = NULL;
1996     int i;
1997     int n = sk_X509_num(certs /* may be NULL */);
1998
1999     if (n < 0)
2000         n = 0;
2001     if (file == NULL)
2002         goto end;
2003     if (certs != NULL)
2004         CMP_info3("received %d %s certificate(s), saving to file '%s'",
2005                   n, desc, file);
2006     if (n > 1 && opt_certform != FORMAT_PEM)
2007         CMP_warn("saving more than one certificate in non-PEM format");
2008
2009     if ((bio = BIO_new(BIO_s_file())) == NULL
2010             || !BIO_write_filename(bio, (char *)file)) {
2011         CMP_err3("could not open file '%s' for %s %s certificate(s)",
2012                  file, certs == NULL ? "deleting" : "writing", desc);
2013         n = -1;
2014         goto end;
2015     }
2016
2017     for (i = 0; i < n; i++) {
2018         if (!write_cert(bio, sk_X509_value(certs, i))) {
2019             CMP_err2("cannot write %s certificate to file '%s'", desc, file);
2020             n = -1;
2021             goto end;
2022         }
2023     }
2024
2025  end:
2026     BIO_free(bio);
2027     OSSL_STACK_OF_X509_free(certs);
2028     return n;
2029 }
2030
2031 static int delete_certfile(const char *file, const char *desc)
2032 {
2033     if (file == NULL)
2034         return 1;
2035
2036     if (unlink(file) != 0 && errno != ENOENT) {
2037         CMP_err2("Failed to delete %s, which should be done to indicate there is no %s cert",
2038                  file, desc);
2039         return 0;
2040     }
2041     return 1;
2042 }
2043
2044 static int save_cert(OSSL_CMP_CTX *ctx, X509 *cert,
2045                      const char *file, const char *desc)
2046 {
2047     if (file == NULL || cert == NULL) {
2048         return 1;
2049     } else {
2050         STACK_OF(X509) *certs = sk_X509_new_null();
2051
2052         if (!X509_add_cert(certs, cert, X509_ADD_FLAG_UP_REF)) {
2053             sk_X509_free(certs);
2054             return 0;
2055         }
2056         return save_free_certs(ctx, certs, file, desc) >= 0;
2057     }
2058 }
2059
2060 static int print_itavs(const STACK_OF(OSSL_CMP_ITAV) *itavs)
2061 {
2062     int i, ret = 1;
2063     int n = sk_OSSL_CMP_ITAV_num(itavs);
2064
2065     if (n <= 0) { /* also in case itavs == NULL */
2066         CMP_info("genp does not contain any ITAV");
2067         return ret;
2068     }
2069
2070     for (i = 1; i <= n; i++) {
2071         OSSL_CMP_ITAV *itav = sk_OSSL_CMP_ITAV_value(itavs, i - 1);
2072         ASN1_OBJECT *type = OSSL_CMP_ITAV_get0_type(itav);
2073         char name[80];
2074
2075         if (itav == NULL) {
2076             CMP_err1("could not get ITAV #%d from genp", i);
2077             ret = 0;
2078             continue;
2079         }
2080         if (i2t_ASN1_OBJECT(name, sizeof(name), type) <= 0) {
2081             CMP_err1("error parsing type of ITAV #%d from genp", i);
2082             ret = 0;
2083         }
2084         else {
2085             CMP_info2("ITAV #%d from genp type=%s", i, name);
2086         }
2087     }
2088     return ret;
2089 }
2090
2091 static char opt_item[SECTION_NAME_MAX + 1];
2092 /* get previous name from a comma or space-separated list of names */
2093 static const char *prev_item(const char *opt, const char *end)
2094 {
2095     const char *beg;
2096     size_t len;
2097
2098     if (end == opt)
2099         return NULL;
2100     beg = end;
2101     while (beg > opt) {
2102         --beg;
2103         if (beg[0] == ',' || isspace(beg[0])) {
2104             ++beg;
2105             break;
2106         }
2107     }
2108     len = end - beg;
2109     if (len > SECTION_NAME_MAX) {
2110         CMP_warn3("using only first %d characters of section name starting with \"%.*s\"",
2111                   SECTION_NAME_MAX, SECTION_NAME_MAX, beg);
2112         len = SECTION_NAME_MAX;
2113     }
2114     memcpy(opt_item, beg, len);
2115     opt_item[len] = '\0';
2116     while (beg > opt) {
2117         --beg;
2118         if (beg[0] != ',' && !isspace(beg[0])) {
2119             ++beg;
2120             break;
2121         }
2122     }
2123     return beg;
2124 }
2125
2126 /* get str value for name from a comma-separated hierarchy of config sections */
2127 static char *conf_get_string(const CONF *src_conf, const char *groups,
2128                              const char *name)
2129 {
2130     char *res = NULL;
2131     const char *end = groups + strlen(groups);
2132
2133     while ((end = prev_item(groups, end)) != NULL) {
2134         if ((res = NCONF_get_string(src_conf, opt_item, name)) != NULL)
2135             return res;
2136     }
2137     return res;
2138 }
2139
2140 /* get long val for name from a comma-separated hierarchy of config sections */
2141 static int conf_get_number_e(const CONF *conf_, const char *groups,
2142                              const char *name, long *result)
2143 {
2144     char *str = conf_get_string(conf_, groups, name);
2145     char *tailptr;
2146     long res;
2147
2148     if (str == NULL || *str == '\0')
2149         return 0;
2150
2151     res = strtol(str, &tailptr, 10);
2152     if (res == LONG_MIN || res == LONG_MAX || *tailptr != '\0')
2153         return 0;
2154
2155     *result = res;
2156     return 1;
2157 }
2158
2159 /*
2160  * use the command line option table to read values from the CMP section
2161  * of openssl.cnf.  Defaults are taken from the config file, they can be
2162  * overwritten on the command line.
2163  */
2164 static int read_config(void)
2165 {
2166     unsigned int i;
2167     long num = 0;
2168     char *txt = NULL;
2169     const OPTIONS *opt;
2170     int start_opt = OPT_VERBOSITY - OPT_HELP;
2171     int start_idx = OPT_VERBOSITY - 2;
2172     /*
2173      * starting with offset OPT_VERBOSITY because OPT_CONFIG and OPT_SECTION
2174      * would not make sense within the config file.
2175      */
2176     int n_options = OSSL_NELEM(cmp_options) - 1;
2177
2178     for (opt = &cmp_options[start_opt], i = start_idx;
2179          opt->name != NULL; i++, opt++)
2180         if (!strcmp(opt->name, OPT_SECTION_STR)
2181                 || !strcmp(opt->name, OPT_MORE_STR))
2182             n_options--;
2183     OPENSSL_assert(OSSL_NELEM(cmp_vars) == n_options
2184                    + OPT_PROV__FIRST + 1 - OPT_PROV__LAST
2185                    + OPT_R__FIRST + 1 - OPT_R__LAST
2186                    + OPT_V__FIRST + 1 - OPT_V__LAST);
2187     for (opt = &cmp_options[start_opt], i = start_idx;
2188          opt->name != NULL; i++, opt++) {
2189         int provider_option = (OPT_PROV__FIRST <= opt->retval
2190                                && opt->retval < OPT_PROV__LAST);
2191         int rand_state_option = (OPT_R__FIRST <= opt->retval
2192                                  && opt->retval < OPT_R__LAST);
2193         int verification_option = (OPT_V__FIRST <= opt->retval
2194                                    && opt->retval < OPT_V__LAST);
2195
2196         if (strcmp(opt->name, OPT_SECTION_STR) == 0
2197                 || strcmp(opt->name, OPT_MORE_STR) == 0) {
2198             i--;
2199             continue;
2200         }
2201         if (provider_option || rand_state_option || verification_option)
2202             i--;
2203         switch (opt->valtype) {
2204         case '-':
2205         case 'p':
2206         case 'n':
2207         case 'N':
2208         case 'l':
2209             if (!conf_get_number_e(conf, opt_section, opt->name, &num)) {
2210                 ERR_clear_error();
2211                 continue; /* option not provided */
2212             }
2213             if (opt->valtype == 'p' && num <= 0) {
2214                 opt_printf_stderr("Non-positive number \"%ld\" for config option -%s\n",
2215                                   num, opt->name);
2216                 return -1;
2217             }
2218             if (opt->valtype == 'N' && num < 0) {
2219                 opt_printf_stderr("Negative number \"%ld\" for config option -%s\n",
2220                                   num, opt->name);
2221                 return -1;
2222             }
2223             break;
2224         case 's':
2225         case '>':
2226         case 'M':
2227             txt = conf_get_string(conf, opt_section, opt->name);
2228             if (txt == NULL) {
2229                 ERR_clear_error();
2230                 continue; /* option not provided */
2231             }
2232             break;
2233         default:
2234             CMP_err2("internal: unsupported type '%c' for option '%s'",
2235                      opt->valtype, opt->name);
2236             return 0;
2237             break;
2238         }
2239         if (provider_option || verification_option) {
2240             int conf_argc = 1;
2241             char *conf_argv[3];
2242             char arg1[82];
2243
2244             BIO_snprintf(arg1, 81, "-%s", (char *)opt->name);
2245             conf_argv[0] = prog;
2246             conf_argv[1] = arg1;
2247             if (opt->valtype == '-') {
2248                 if (num != 0)
2249                     conf_argc = 2;
2250             } else {
2251                 conf_argc = 3;
2252                 conf_argv[2] = conf_get_string(conf, opt_section, opt->name);
2253                 /* not NULL */
2254             }
2255             if (conf_argc > 1) {
2256                 (void)opt_init(conf_argc, conf_argv, cmp_options);
2257
2258                 if (provider_option
2259                     ? !opt_provider(opt_next())
2260                     : !opt_verify(opt_next(), vpm)) {
2261                     CMP_err2("for option '%s' in config file section '%s'",
2262                              opt->name, opt_section);
2263                     return 0;
2264                 }
2265             }
2266         } else {
2267             switch (opt->valtype) {
2268             case '-':
2269             case 'p':
2270             case 'n':
2271             case 'N':
2272                 if (num < INT_MIN || INT_MAX < num) {
2273                     BIO_printf(bio_err,
2274                                "integer value out of range for option '%s'\n",
2275                                opt->name);
2276                     return 0;
2277                 }
2278                 *cmp_vars[i].num = (int)num;
2279                 break;
2280             case 'l':
2281                 *cmp_vars[i].num_long = num;
2282                 break;
2283             default:
2284                 if (txt != NULL && txt[0] == '\0')
2285                     txt = NULL; /* reset option on empty string input */
2286                 *cmp_vars[i].txt = txt;
2287                 break;
2288             }
2289         }
2290     }
2291
2292     return 1;
2293 }
2294
2295 static char *opt_str(void)
2296 {
2297     char *arg = opt_arg();
2298
2299     if (arg[0] == '\0') {
2300         CMP_warn1("%s option argument is empty string, resetting option",
2301                   opt_flag());
2302         arg = NULL;
2303     } else if (arg[0] == '-') {
2304         CMP_warn1("%s option argument starts with hyphen", opt_flag());
2305     }
2306     return arg;
2307 }
2308
2309 /* returns 1 on success, 0 on error, -1 on -help (i.e., stop with success) */
2310 static int get_opts(int argc, char **argv)
2311 {
2312     OPTION_CHOICE o;
2313
2314     prog = opt_init(argc, argv, cmp_options);
2315
2316     while ((o = opt_next()) != OPT_EOF) {
2317         switch (o) {
2318         case OPT_EOF:
2319         case OPT_ERR:
2320  opthelp:
2321             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
2322             return 0;
2323         case OPT_HELP:
2324             opt_help(cmp_options);
2325             return -1;
2326         case OPT_CONFIG: /* has already been handled */
2327         case OPT_SECTION: /* has already been handled */
2328             break;
2329         case OPT_VERBOSITY:
2330             if (!set_verbosity(opt_int_arg()))
2331                 goto opthelp;
2332             break;
2333 #ifndef OPENSSL_NO_SOCK
2334         case OPT_SERVER:
2335             opt_server = opt_str();
2336             break;
2337         case OPT_PROXY:
2338             opt_proxy = opt_str();
2339             break;
2340         case OPT_NO_PROXY:
2341             opt_no_proxy = opt_str();
2342             break;
2343 #endif
2344         case OPT_RECIPIENT:
2345             opt_recipient = opt_str();
2346             break;
2347         case OPT_PATH:
2348             opt_path = opt_str();
2349             break;
2350         case OPT_KEEP_ALIVE:
2351             opt_keep_alive = opt_int_arg();
2352             if (opt_keep_alive > 2) {
2353                 CMP_err("-keep_alive argument must be 0, 1, or 2");
2354                 goto opthelp;
2355             }
2356             break;
2357         case OPT_MSG_TIMEOUT:
2358             opt_msg_timeout = opt_int_arg();
2359             break;
2360         case OPT_TOTAL_TIMEOUT:
2361             opt_total_timeout = opt_int_arg();
2362             break;
2363 #ifndef OPENSSL_NO_SOCK
2364         case OPT_TLS_USED:
2365             opt_tls_used = 1;
2366             break;
2367         case OPT_TLS_CERT:
2368             opt_tls_cert = opt_str();
2369             break;
2370         case OPT_TLS_KEY:
2371             opt_tls_key = opt_str();
2372             break;
2373         case OPT_TLS_KEYPASS:
2374             opt_tls_keypass = opt_str();
2375             break;
2376         case OPT_TLS_EXTRA:
2377             opt_tls_extra = opt_str();
2378             break;
2379         case OPT_TLS_TRUSTED:
2380             opt_tls_trusted = opt_str();
2381             break;
2382         case OPT_TLS_HOST:
2383             opt_tls_host = opt_str();
2384             break;
2385 #endif
2386
2387         case OPT_REF:
2388             opt_ref = opt_str();
2389             break;
2390         case OPT_SECRET:
2391             opt_secret = opt_str();
2392             break;
2393         case OPT_CERT:
2394             opt_cert = opt_str();
2395             break;
2396         case OPT_OWN_TRUSTED:
2397             opt_own_trusted = opt_str();
2398             break;
2399         case OPT_KEY:
2400             opt_key = opt_str();
2401             break;
2402         case OPT_KEYPASS:
2403             opt_keypass = opt_str();
2404             break;
2405         case OPT_DIGEST:
2406             opt_digest = opt_str();
2407             break;
2408         case OPT_MAC:
2409             opt_mac = opt_str();
2410             break;
2411         case OPT_EXTRACERTS:
2412             opt_extracerts = opt_str();
2413             break;
2414         case OPT_UNPROTECTED_REQUESTS:
2415             opt_unprotected_requests = 1;
2416             break;
2417
2418         case OPT_TRUSTED:
2419             opt_trusted = opt_str();
2420             break;
2421         case OPT_UNTRUSTED:
2422             opt_untrusted = opt_str();
2423             break;
2424         case OPT_SRVCERT:
2425             opt_srvcert = opt_str();
2426             break;
2427         case OPT_EXPECT_SENDER:
2428             opt_expect_sender = opt_str();
2429             break;
2430         case OPT_IGNORE_KEYUSAGE:
2431             opt_ignore_keyusage = 1;
2432             break;
2433         case OPT_UNPROTECTED_ERRORS:
2434             opt_unprotected_errors = 1;
2435             break;
2436         case OPT_SRVCERTOUT:
2437             opt_srvcertout = opt_str();
2438             break;
2439         case OPT_EXTRACERTSOUT:
2440             opt_extracertsout = opt_str();
2441             break;
2442         case OPT_CACERTSOUT:
2443             opt_cacertsout = opt_str();
2444             break;
2445
2446         case OPT_V_CASES:
2447             if (!opt_verify(o, vpm))
2448                 goto opthelp;
2449             break;
2450         case OPT_CMD:
2451             opt_cmd_s = opt_str();
2452             break;
2453         case OPT_INFOTYPE:
2454             opt_infotype_s = opt_str();
2455             break;
2456         case OPT_GENINFO:
2457             opt_geninfo = opt_str();
2458             break;
2459
2460         case OPT_NEWKEY:
2461             opt_newkey = opt_str();
2462             break;
2463         case OPT_NEWKEYPASS:
2464             opt_newkeypass = opt_str();
2465             break;
2466         case OPT_SUBJECT:
2467             opt_subject = opt_str();
2468             break;
2469         case OPT_ISSUER:
2470             opt_issuer = opt_str();
2471             break;
2472         case OPT_DAYS:
2473             opt_days = opt_int_arg();
2474             break;
2475         case OPT_REQEXTS:
2476             opt_reqexts = opt_str();
2477             break;
2478         case OPT_SANS:
2479             opt_sans = opt_str();
2480             break;
2481         case OPT_SAN_NODEFAULT:
2482             opt_san_nodefault = 1;
2483             break;
2484         case OPT_POLICIES:
2485             opt_policies = opt_str();
2486             break;
2487         case OPT_POLICY_OIDS:
2488             opt_policy_oids = opt_str();
2489             break;
2490         case OPT_POLICY_OIDS_CRITICAL:
2491             opt_policy_oids_critical = 1;
2492             break;
2493         case OPT_POPO:
2494             opt_popo = opt_int_arg();
2495             if (opt_popo < OSSL_CRMF_POPO_NONE
2496                     || opt_popo > OSSL_CRMF_POPO_KEYENC) {
2497                 CMP_err("invalid popo spec. Valid values are -1 .. 2");
2498                 goto opthelp;
2499             }
2500             break;
2501         case OPT_CSR:
2502             opt_csr = opt_arg();
2503             break;
2504         case OPT_OUT_TRUSTED:
2505             opt_out_trusted = opt_str();
2506             break;
2507         case OPT_IMPLICIT_CONFIRM:
2508             opt_implicit_confirm = 1;
2509             break;
2510         case OPT_DISABLE_CONFIRM:
2511             opt_disable_confirm = 1;
2512             break;
2513         case OPT_CERTOUT:
2514             opt_certout = opt_str();
2515             break;
2516         case OPT_CHAINOUT:
2517             opt_chainout = opt_str();
2518             break;
2519         case OPT_OLDCERT:
2520             opt_oldcert = opt_str();
2521             break;
2522         case OPT_REVREASON:
2523             opt_revreason = opt_int_arg();
2524             if (opt_revreason < CRL_REASON_NONE
2525                     || opt_revreason > CRL_REASON_AA_COMPROMISE
2526                     || opt_revreason == 7) {
2527                 CMP_err("invalid revreason. Valid values are -1 .. 6, 8 .. 10");
2528                 goto opthelp;
2529             }
2530             break;
2531         case OPT_CERTFORM:
2532             opt_certform_s = opt_str();
2533             break;
2534         case OPT_KEYFORM:
2535             opt_keyform_s = opt_str();
2536             break;
2537         case OPT_OTHERPASS:
2538             opt_otherpass = opt_str();
2539             break;
2540 #ifndef OPENSSL_NO_ENGINE
2541         case OPT_ENGINE:
2542             opt_engine = opt_str();
2543             break;
2544 #endif
2545         case OPT_PROV_CASES:
2546             if (!opt_provider(o))
2547                 goto opthelp;
2548             break;
2549         case OPT_R_CASES:
2550             if (!opt_rand(o))
2551                 goto opthelp;
2552             break;
2553
2554         case OPT_BATCH:
2555             opt_batch = 1;
2556             break;
2557         case OPT_REPEAT:
2558             opt_repeat = opt_int_arg();
2559             break;
2560         case OPT_REQIN:
2561             opt_reqin = opt_str();
2562             break;
2563         case OPT_REQIN_NEW_TID:
2564             opt_reqin_new_tid = 1;
2565             break;
2566         case OPT_REQOUT:
2567             opt_reqout = opt_str();
2568             break;
2569         case OPT_RSPIN:
2570             opt_rspin = opt_str();
2571             break;
2572         case OPT_RSPOUT:
2573             opt_rspout = opt_str();
2574             break;
2575         case OPT_USE_MOCK_SRV:
2576             opt_use_mock_srv = 1;
2577             break;
2578
2579 #ifndef OPENSSL_NO_SOCK
2580         case OPT_PORT:
2581             opt_port = opt_str();
2582             break;
2583         case OPT_MAX_MSGS:
2584             opt_max_msgs = opt_int_arg();
2585             break;
2586 #endif
2587         case OPT_SRV_REF:
2588             opt_srv_ref = opt_str();
2589             break;
2590         case OPT_SRV_SECRET:
2591             opt_srv_secret = opt_str();
2592             break;
2593         case OPT_SRV_CERT:
2594             opt_srv_cert = opt_str();
2595             break;
2596         case OPT_SRV_KEY:
2597             opt_srv_key = opt_str();
2598             break;
2599         case OPT_SRV_KEYPASS:
2600             opt_srv_keypass = opt_str();
2601             break;
2602         case OPT_SRV_TRUSTED:
2603             opt_srv_trusted = opt_str();
2604             break;
2605         case OPT_SRV_UNTRUSTED:
2606             opt_srv_untrusted = opt_str();
2607             break;
2608         case OPT_REF_CERT:
2609             opt_ref_cert = opt_str();
2610             break;
2611         case OPT_RSP_CERT:
2612             opt_rsp_cert = opt_str();
2613             break;
2614         case OPT_RSP_EXTRACERTS:
2615             opt_rsp_extracerts = opt_str();
2616             break;
2617         case OPT_RSP_CAPUBS:
2618             opt_rsp_capubs = opt_str();
2619             break;
2620         case OPT_POLL_COUNT:
2621             opt_poll_count = opt_int_arg();
2622             break;
2623         case OPT_CHECK_AFTER:
2624             opt_check_after = opt_int_arg();
2625             break;
2626         case OPT_GRANT_IMPLICITCONF:
2627             opt_grant_implicitconf = 1;
2628             break;
2629         case OPT_PKISTATUS:
2630             opt_pkistatus = opt_int_arg();
2631             break;
2632         case OPT_FAILURE:
2633             opt_failure = opt_int_arg();
2634             break;
2635         case OPT_FAILUREBITS:
2636             opt_failurebits = opt_int_arg();
2637             break;
2638         case OPT_STATUSSTRING:
2639             opt_statusstring = opt_str();
2640             break;
2641         case OPT_SEND_ERROR:
2642             opt_send_error = 1;
2643             break;
2644         case OPT_SEND_UNPROTECTED:
2645             opt_send_unprotected = 1;
2646             break;
2647         case OPT_SEND_UNPROT_ERR:
2648             opt_send_unprot_err = 1;
2649             break;
2650         case OPT_ACCEPT_UNPROTECTED:
2651             opt_accept_unprotected = 1;
2652             break;
2653         case OPT_ACCEPT_UNPROT_ERR:
2654             opt_accept_unprot_err = 1;
2655             break;
2656         case OPT_ACCEPT_RAVERIFIED:
2657             opt_accept_raverified = 1;
2658             break;
2659         }
2660     }
2661
2662     /* No extra args. */
2663     if (!opt_check_rest_arg(NULL))
2664         goto opthelp;
2665     return 1;
2666 }
2667
2668 #ifndef OPENSSL_NO_SOCK
2669 static int cmp_server(OSSL_CMP_CTX *srv_cmp_ctx)
2670 {
2671     BIO *acbio;
2672     BIO *cbio = NULL;
2673     int keep_alive = 0;
2674     int msgs = 0;
2675     int retry = 1;
2676     int ret = 1;
2677
2678     if ((acbio = http_server_init(prog, opt_port, opt_verbosity)) == NULL)
2679         return 0;
2680     while (opt_max_msgs <= 0 || msgs < opt_max_msgs) {
2681         char *path = NULL;
2682         OSSL_CMP_MSG *req = NULL;
2683         OSSL_CMP_MSG *resp = NULL;
2684
2685         ret = http_server_get_asn1_req(ASN1_ITEM_rptr(OSSL_CMP_MSG),
2686                                        (ASN1_VALUE **)&req, &path,
2687                                        &cbio, acbio, &keep_alive,
2688                                        prog, 0, 0);
2689         if (ret == 0) { /* no request yet */
2690             if (retry) {
2691                 OSSL_sleep(1000);
2692                 retry = 0;
2693                 continue;
2694             }
2695             ret = 0;
2696             goto next;
2697         }
2698         if (ret++ == -1) /* fatal error */
2699             break;
2700
2701         ret = 0;
2702         msgs++;
2703         if (req != NULL) {
2704             if (strcmp(path, "") != 0 && strcmp(path, "pkix/") != 0) {
2705                 (void)http_server_send_status(prog, cbio, 404, "Not Found");
2706                 CMP_err1("expecting empty path or 'pkix/' but got '%s'",
2707                          path);
2708                 OPENSSL_free(path);
2709                 OSSL_CMP_MSG_free(req);
2710                 goto next;
2711             }
2712             OPENSSL_free(path);
2713             resp = OSSL_CMP_CTX_server_perform(cmp_ctx, req);
2714             OSSL_CMP_MSG_free(req);
2715             if (resp == NULL) {
2716                 (void)http_server_send_status(prog, cbio,
2717                                               500, "Internal Server Error");
2718                 break; /* treated as fatal error */
2719             }
2720             ret = http_server_send_asn1_resp(prog, cbio, keep_alive,
2721                                              "application/pkixcmp",
2722                                              ASN1_ITEM_rptr(OSSL_CMP_MSG),
2723                                              (const ASN1_VALUE *)resp);
2724             OSSL_CMP_MSG_free(resp);
2725             if (!ret)
2726                 break; /* treated as fatal error */
2727         }
2728     next:
2729         if (!ret) { /* on transmission error, cancel CMP transaction */
2730             (void)OSSL_CMP_CTX_set1_transactionID(srv_cmp_ctx, NULL);
2731             (void)OSSL_CMP_CTX_set1_senderNonce(srv_cmp_ctx, NULL);
2732         }
2733         if (!ret || !keep_alive
2734             || OSSL_CMP_CTX_get_status(srv_cmp_ctx) != OSSL_CMP_PKISTATUS_trans
2735             /* transaction closed by OSSL_CMP_CTX_server_perform() */) {
2736             BIO_free_all(cbio);
2737             cbio = NULL;
2738         }
2739     }
2740
2741     BIO_free_all(cbio);
2742     BIO_free_all(acbio);
2743     return ret;
2744 }
2745 #endif
2746
2747 static void print_status(void)
2748 {
2749     /* print PKIStatusInfo */
2750     int status = OSSL_CMP_CTX_get_status(cmp_ctx);
2751     char *buf = app_malloc(OSSL_CMP_PKISI_BUFLEN, "PKIStatusInfo buf");
2752     const char *string =
2753         OSSL_CMP_CTX_snprint_PKIStatus(cmp_ctx, buf, OSSL_CMP_PKISI_BUFLEN);
2754     const char *from = "", *server = "";
2755
2756 #ifndef OPENSSL_NO_SOCK
2757     if (opt_server != NULL) {
2758         from = " from ";
2759         server = opt_server;
2760     }
2761 #endif
2762     CMP_print(bio_err,
2763               status == OSSL_CMP_PKISTATUS_accepted
2764               ? OSSL_CMP_LOG_INFO :
2765               status == OSSL_CMP_PKISTATUS_rejection
2766               || status == OSSL_CMP_PKISTATUS_waiting
2767               ? OSSL_CMP_LOG_ERR : OSSL_CMP_LOG_WARNING,
2768               status == OSSL_CMP_PKISTATUS_accepted ? "info" :
2769               status == OSSL_CMP_PKISTATUS_rejection ? "server error" :
2770               status == OSSL_CMP_PKISTATUS_waiting ? "internal error"
2771               : "warning", "received%s%s %s", from, server,
2772               string != NULL ? string : "<unknown PKIStatus>");
2773     OPENSSL_free(buf);
2774 }
2775
2776 int cmp_main(int argc, char **argv)
2777 {
2778     char *configfile = NULL;
2779     int i;
2780     X509 *newcert = NULL;
2781     ENGINE *engine = NULL;
2782     OSSL_CMP_CTX *srv_cmp_ctx = NULL;
2783     int ret = 0; /* default: failure */
2784
2785     prog = opt_appname(argv[0]);
2786     if (argc <= 1) {
2787         opt_help(cmp_options);
2788         goto err;
2789     }
2790
2791     /*
2792      * handle options -config, -section, and -verbosity upfront
2793      * to take effect for other options
2794      */
2795     for (i = 1; i < argc - 1; i++) {
2796         if (*argv[i] == '-') {
2797             if (!strcmp(argv[i] + 1, cmp_options[OPT_CONFIG - OPT_HELP].name))
2798                 opt_config = argv[++i];
2799             else if (!strcmp(argv[i] + 1,
2800                              cmp_options[OPT_SECTION - OPT_HELP].name))
2801                 opt_section = argv[++i];
2802             else if (strcmp(argv[i] + 1,
2803                             cmp_options[OPT_VERBOSITY - OPT_HELP].name) == 0
2804                      && !set_verbosity(atoi(argv[++i])))
2805                 goto err;
2806         }
2807     }
2808     if (opt_section[0] == '\0') /* empty string */
2809         opt_section = DEFAULT_SECTION;
2810
2811     vpm = X509_VERIFY_PARAM_new();
2812     if (vpm == NULL) {
2813         CMP_err("out of memory");
2814         goto err;
2815     }
2816
2817     /* read default values for options from config file */
2818     configfile = opt_config != NULL ? opt_config : default_config_file;
2819     if (configfile != NULL && configfile[0] != '\0' /* non-empty string */
2820             && (configfile != default_config_file
2821                 || access(configfile, F_OK) != -1)) {
2822         CMP_info2("using section(s) '%s' of OpenSSL configuration file '%s'",
2823                   opt_section, configfile);
2824         conf = app_load_config(configfile);
2825         if (conf == NULL) {
2826             goto err;
2827         } else {
2828             if (strcmp(opt_section, CMP_SECTION) == 0) { /* default */
2829                 if (!NCONF_get_section(conf, opt_section))
2830                     CMP_info2("no [%s] section found in config file '%s';"
2831                               " will thus use just [default] and unnamed section if present",
2832                               opt_section, configfile);
2833             } else {
2834                 const char *end = opt_section + strlen(opt_section);
2835
2836                 while ((end = prev_item(opt_section, end)) != NULL) {
2837                     if (!NCONF_get_section(conf, opt_item)) {
2838                         CMP_err2("no [%s] section found in config file '%s'",
2839                                  opt_item, configfile);
2840                         goto err;
2841                     }
2842                 }
2843             }
2844             ret = read_config();
2845             if (!set_verbosity(opt_verbosity)) /* just for checking range */
2846                 ret = -1;
2847             if (ret <= 0) {
2848                 if (ret == -1)
2849                     BIO_printf(bio_err, "Use -help for summary.\n");
2850                 goto err;
2851             }
2852         }
2853     }
2854     (void)BIO_flush(bio_err); /* prevent interference with opt_help() */
2855
2856     ret = get_opts(argc, argv);
2857     if (ret <= 0)
2858         goto err;
2859
2860     ret = 0;
2861     if (!delete_certfile(opt_srvcertout, "validated server")
2862         || !delete_certfile(opt_certout, "enrolled")
2863         || save_free_certs(NULL, NULL, opt_extracertsout, "extra") < 0
2864         || save_free_certs(NULL, NULL, opt_cacertsout, "CA") < 0
2865         || save_free_certs(NULL, NULL, opt_chainout, "chain") < 0)
2866         goto err;
2867
2868     if (!app_RAND_load())
2869         goto err;
2870
2871     if (opt_batch)
2872         set_base_ui_method(UI_null());
2873
2874     if (opt_engine != NULL) {
2875         engine = setup_engine_methods(opt_engine,
2876                                       0 /* not: ENGINE_METHOD_ALL */, 0);
2877         if (engine == NULL) {
2878             CMP_err1("cannot load engine %s", opt_engine);
2879             goto err;
2880         }
2881     }
2882
2883     cmp_ctx = OSSL_CMP_CTX_new(app_get0_libctx(), app_get0_propq());
2884     if (cmp_ctx == NULL)
2885         goto err;
2886     OSSL_CMP_CTX_set_log_verbosity(cmp_ctx, opt_verbosity);
2887     if (!OSSL_CMP_CTX_set_log_cb(cmp_ctx, print_to_bio_out)) {
2888         CMP_err1("cannot set up error reporting and logging for %s", prog);
2889         goto err;
2890     }
2891
2892 #ifndef OPENSSL_NO_SOCK
2893     if (opt_tls_cert == NULL && opt_tls_key == NULL && opt_tls_keypass == NULL
2894             && opt_tls_extra == NULL && opt_tls_trusted == NULL
2895             && opt_tls_host == NULL) {
2896         if (opt_tls_used)
2897             CMP_warn("-tls_used given without any other TLS options");
2898     } else if (!opt_tls_used) {
2899         CMP_warn("ignoring TLS options(s) since -tls_used is not given");
2900     }
2901     if (opt_port != NULL) {
2902         if (opt_tls_used) {
2903             CMP_err("-tls_used option not supported with -port option");
2904             goto err;
2905         }
2906         if (opt_use_mock_srv || opt_server != NULL || opt_rspin != NULL) {
2907             CMP_err("cannot use -port with -use_mock_srv, -server, or -rspin options");
2908             goto err;
2909         }
2910     }
2911     if (opt_server != NULL && opt_use_mock_srv) {
2912         CMP_err("cannot use both -server and -use_mock_srv options");
2913         goto err;
2914     }
2915 #endif
2916     if (opt_rspin != NULL && opt_use_mock_srv) {
2917         CMP_err("cannot use both -rspin and -use_mock_srv options");
2918         goto err;
2919     }
2920
2921     if (opt_use_mock_srv
2922 #ifndef OPENSSL_NO_SOCK
2923         || opt_port != NULL
2924 #endif
2925         ) {
2926         OSSL_CMP_SRV_CTX *srv_ctx;
2927
2928         if ((srv_ctx = setup_srv_ctx(engine)) == NULL)
2929             goto err;
2930         srv_cmp_ctx = OSSL_CMP_SRV_CTX_get0_cmp_ctx(srv_ctx);
2931         OSSL_CMP_CTX_set_transfer_cb_arg(cmp_ctx, srv_ctx);
2932         if (!OSSL_CMP_CTX_set_log_cb(srv_cmp_ctx, print_to_bio_err)) {
2933             CMP_err1("cannot set up error reporting and logging for %s", prog);
2934             goto err;
2935         }
2936         OSSL_CMP_CTX_set_log_verbosity(srv_cmp_ctx, opt_verbosity);
2937     }
2938
2939 #ifndef OPENSSL_NO_SOCK
2940     if (opt_tls_used && (opt_use_mock_srv || opt_rspin != NULL)) {
2941         CMP_warn("ignoring -tls_used option since -use_mock_srv or -rspin is given");
2942         opt_tls_used = 0;
2943     }
2944
2945     if (opt_port != NULL) { /* act as very basic CMP HTTP server */
2946         ret = cmp_server(srv_cmp_ctx);
2947         goto err;
2948     }
2949
2950     /* act as CMP client, possibly using internal mock server */
2951
2952     if (opt_server != NULL) {
2953         if (opt_rspin != NULL) {
2954             CMP_warn("ignoring -server option since -rspin is given");
2955             opt_server = NULL;
2956         }
2957     }
2958 #endif
2959
2960     if (!setup_client_ctx(cmp_ctx, engine)) {
2961         CMP_err("cannot set up CMP context");
2962         goto err;
2963     }
2964     for (i = 0; i < opt_repeat; i++) {
2965         /* everything is ready, now connect and perform the command! */
2966         switch (opt_cmd) {
2967         case CMP_IR:
2968             newcert = OSSL_CMP_exec_IR_ses(cmp_ctx);
2969             if (newcert != NULL)
2970                 ret = 1;
2971             break;
2972         case CMP_KUR:
2973             newcert = OSSL_CMP_exec_KUR_ses(cmp_ctx);
2974             if (newcert != NULL)
2975                 ret = 1;
2976             break;
2977         case CMP_CR:
2978             newcert = OSSL_CMP_exec_CR_ses(cmp_ctx);
2979             if (newcert != NULL)
2980                 ret = 1;
2981             break;
2982         case CMP_P10CR:
2983             newcert = OSSL_CMP_exec_P10CR_ses(cmp_ctx);
2984             if (newcert != NULL)
2985                 ret = 1;
2986             break;
2987         case CMP_RR:
2988             ret = OSSL_CMP_exec_RR_ses(cmp_ctx);
2989             break;
2990         case CMP_GENM:
2991             {
2992                 STACK_OF(OSSL_CMP_ITAV) *itavs;
2993
2994                 if (opt_infotype != NID_undef) {
2995                     OSSL_CMP_ITAV *itav =
2996                         OSSL_CMP_ITAV_create(OBJ_nid2obj(opt_infotype), NULL);
2997
2998                     if (itav == NULL)
2999                         goto err;
3000                     OSSL_CMP_CTX_push0_genm_ITAV(cmp_ctx, itav);
3001                 }
3002
3003                 if ((itavs = OSSL_CMP_exec_GENM_ses(cmp_ctx)) != NULL) {
3004                     ret = print_itavs(itavs);
3005                     sk_OSSL_CMP_ITAV_pop_free(itavs, OSSL_CMP_ITAV_free);
3006                 } else {
3007                     CMP_err("could not obtain ITAVs from genp");
3008                 }
3009                 break;
3010             }
3011         default:
3012             break;
3013         }
3014         if (OSSL_CMP_CTX_get_status(cmp_ctx) < OSSL_CMP_PKISTATUS_accepted)
3015             goto err; /* we got no response, maybe even did not send request */
3016
3017         print_status();
3018         if (save_free_certs(cmp_ctx, OSSL_CMP_CTX_get1_extraCertsIn(cmp_ctx),
3019                             opt_extracertsout, "extra") < 0)
3020             ret = 0;
3021         if (!ret)
3022             goto err;
3023         ret = 0;
3024         if (!save_cert(cmp_ctx, OSSL_CMP_CTX_get0_validatedSrvCert(cmp_ctx),
3025                        opt_srvcertout, "validated server"))
3026             goto err;
3027         if (save_free_certs(cmp_ctx, OSSL_CMP_CTX_get1_caPubs(cmp_ctx),
3028                             opt_cacertsout, "CA") < 0)
3029             goto err;
3030         if (!save_cert(cmp_ctx, newcert, opt_certout, "enrolled"))
3031             goto err;
3032         if (save_free_certs(cmp_ctx, OSSL_CMP_CTX_get1_newChain(cmp_ctx),
3033                             opt_chainout, "chain") < 0)
3034             goto err;
3035
3036         if (!OSSL_CMP_CTX_reinit(cmp_ctx))
3037             goto err;
3038     }
3039     ret = 1;
3040
3041  err:
3042     /* in case we ended up here on error without proper cleaning */
3043     cleanse(opt_keypass);
3044     cleanse(opt_newkeypass);
3045     cleanse(opt_otherpass);
3046 #ifndef OPENSSL_NO_SOCK
3047     cleanse(opt_tls_keypass);
3048 #endif
3049     cleanse(opt_secret);
3050     cleanse(opt_srv_keypass);
3051     cleanse(opt_srv_secret);
3052
3053     if (ret != 1)
3054         OSSL_CMP_CTX_print_errors(cmp_ctx);
3055
3056     if (cmp_ctx != NULL) {
3057 #ifndef OPENSSL_NO_SOCK
3058         APP_HTTP_TLS_INFO *info = OSSL_CMP_CTX_get_http_cb_arg(cmp_ctx);
3059
3060 #endif
3061         ossl_cmp_mock_srv_free(OSSL_CMP_CTX_get_transfer_cb_arg(cmp_ctx));
3062         X509_STORE_free(OSSL_CMP_CTX_get_certConf_cb_arg(cmp_ctx));
3063         /* cannot free info already here, as it may be used indirectly by: */
3064         OSSL_CMP_CTX_free(cmp_ctx);
3065 #ifndef OPENSSL_NO_SOCK
3066         APP_HTTP_TLS_INFO_free(info);
3067 #endif
3068     }
3069     X509_VERIFY_PARAM_free(vpm);
3070     release_engine(engine);
3071
3072     NCONF_free(conf); /* must not do as long as opt_... variables are used */
3073     OSSL_CMP_log_close();
3074
3075     return ret == 0 ? EXIT_FAILURE : EXIT_SUCCESS; /* ret == -1 for -help */
3076 }