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