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