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