2 * Copyright 2007-2023 The OpenSSL Project Authors. All Rights Reserved.
3 * Copyright Nokia 2007-2019
4 * Copyright Siemens AG 2015-2019
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
12 /* This app is disabled when OPENSSL_NO_CMP is defined. */
18 #include "http_server.h"
22 #include "cmp_mock_srv.h"
24 /* tweaks needed due to missing unistd.h on Windows */
25 #if defined(_WIN32) && !defined(__BORLANDC__)
26 # define access _access
32 #include <openssl/ui.h>
33 #include <openssl/pkcs12.h>
34 #include <openssl/ssl.h>
36 /* explicit #includes not strictly needed since implied by the above: */
38 #include <openssl/cmp.h>
39 #include <openssl/cmp_util.h>
40 #include <openssl/crmf.h>
41 #include <openssl/crypto.h>
42 #include <openssl/err.h>
43 #include <openssl/store.h>
44 #include <openssl/objects.h>
45 #include <openssl/x509.h>
48 static char *opt_config
= NULL
;
49 #define CMP_SECTION "cmp"
50 #define SECTION_NAME_MAX 40 /* max length of section name */
51 #define DEFAULT_SECTION "default"
52 static char *opt_section
= CMP_SECTION
;
53 static int opt_verbosity
= OSSL_CMP_LOG_INFO
;
55 static int read_config(void);
57 static CONF
*conf
= NULL
; /* OpenSSL config file context structure */
58 static OSSL_CMP_CTX
*cmp_ctx
= NULL
; /* the client-side CMP context */
60 /* the type of cmp command we want to send */
70 /* message transfer */
71 #ifndef OPENSSL_NO_SOCK
72 static char *opt_server
= NULL
;
73 static char *opt_proxy
= NULL
;
74 static char *opt_no_proxy
= NULL
;
76 static char *opt_recipient
= NULL
;
77 static char *opt_path
= NULL
;
78 static int opt_keep_alive
= 1;
79 static int opt_msg_timeout
= -1;
80 static int opt_total_timeout
= -1;
82 /* server authentication */
83 static char *opt_trusted
= NULL
;
84 static char *opt_untrusted
= NULL
;
85 static char *opt_srvcert
= NULL
;
86 static char *opt_expect_sender
= NULL
;
87 static int opt_ignore_keyusage
= 0;
88 static int opt_unprotected_errors
= 0;
89 static char *opt_extracertsout
= NULL
;
90 static char *opt_cacertsout
= NULL
;
92 /* client authentication */
93 static char *opt_ref
= NULL
;
94 static char *opt_secret
= NULL
;
95 static char *opt_cert
= NULL
;
96 static char *opt_own_trusted
= NULL
;
97 static char *opt_key
= NULL
;
98 static char *opt_keypass
= NULL
;
99 static char *opt_digest
= NULL
;
100 static char *opt_mac
= NULL
;
101 static char *opt_extracerts
= NULL
;
102 static int opt_unprotected_requests
= 0;
104 /* generic message */
105 static char *opt_cmd_s
= NULL
;
106 static int opt_cmd
= -1;
107 static char *opt_geninfo
= NULL
;
108 static char *opt_infotype_s
= NULL
;
109 static int opt_infotype
= NID_undef
;
111 /* certificate enrollment */
112 static char *opt_newkey
= NULL
;
113 static char *opt_newkeypass
= NULL
;
114 static char *opt_subject
= NULL
;
115 static char *opt_issuer
= NULL
;
116 static int opt_days
= 0;
117 static char *opt_reqexts
= NULL
;
118 static char *opt_sans
= NULL
;
119 static int opt_san_nodefault
= 0;
120 static char *opt_policies
= NULL
;
121 static char *opt_policy_oids
= NULL
;
122 static int opt_policy_oids_critical
= 0;
123 static int opt_popo
= OSSL_CRMF_POPO_NONE
- 1;
124 static char *opt_csr
= NULL
;
125 static char *opt_out_trusted
= NULL
;
126 static int opt_implicit_confirm
= 0;
127 static int opt_disable_confirm
= 0;
128 static char *opt_certout
= NULL
;
129 static char *opt_chainout
= NULL
;
131 /* certificate enrollment and revocation */
132 static char *opt_oldcert
= NULL
;
133 static int opt_revreason
= CRL_REASON_NONE
;
135 /* credentials format */
136 static char *opt_certform_s
= "PEM";
137 static int opt_certform
= FORMAT_PEM
;
138 static char *opt_keyform_s
= NULL
;
139 static int opt_keyform
= FORMAT_UNDEF
;
140 static char *opt_otherpass
= NULL
;
141 static char *opt_engine
= NULL
;
143 #ifndef OPENSSL_NO_SOCK
145 static int opt_tls_used
= 0;
146 static char *opt_tls_cert
= NULL
;
147 static char *opt_tls_key
= NULL
;
148 static char *opt_tls_keypass
= NULL
;
149 static char *opt_tls_extra
= NULL
;
150 static char *opt_tls_trusted
= NULL
;
151 static char *opt_tls_host
= NULL
;
154 /* client-side debugging */
155 static int opt_batch
= 0;
156 static int opt_repeat
= 1;
157 static char *opt_reqin
= NULL
;
158 static int opt_reqin_new_tid
= 0;
159 static char *opt_reqout
= NULL
;
160 static char *opt_rspin
= NULL
;
161 static int rspin_in_use
= 0;
162 static char *opt_rspout
= NULL
;
163 static int opt_use_mock_srv
= 0;
166 #ifndef OPENSSL_NO_SOCK
167 static char *opt_port
= NULL
;
168 static int opt_max_msgs
= 0;
170 static char *opt_srv_ref
= NULL
;
171 static char *opt_srv_secret
= NULL
;
172 static char *opt_srv_cert
= NULL
;
173 static char *opt_srv_key
= NULL
;
174 static char *opt_srv_keypass
= NULL
;
176 static char *opt_srv_trusted
= NULL
;
177 static char *opt_srv_untrusted
= NULL
;
178 static char *opt_rsp_cert
= NULL
;
179 static char *opt_rsp_extracerts
= NULL
;
180 static char *opt_rsp_capubs
= NULL
;
181 static int opt_poll_count
= 0;
182 static int opt_check_after
= 1;
183 static int opt_grant_implicitconf
= 0;
185 static int opt_pkistatus
= OSSL_CMP_PKISTATUS_accepted
;
186 static int opt_failure
= INT_MIN
;
187 static int opt_failurebits
= 0;
188 static char *opt_statusstring
= NULL
;
189 static int opt_send_error
= 0;
190 static int opt_send_unprotected
= 0;
191 static int opt_send_unprot_err
= 0;
192 static int opt_accept_unprotected
= 0;
193 static int opt_accept_unprot_err
= 0;
194 static int opt_accept_raverified
= 0;
196 static X509_VERIFY_PARAM
*vpm
= NULL
;
198 typedef enum OPTION_choice
{
200 OPT_CONFIG
, OPT_SECTION
, OPT_VERBOSITY
,
202 OPT_CMD
, OPT_INFOTYPE
, OPT_GENINFO
,
204 OPT_NEWKEY
, OPT_NEWKEYPASS
, OPT_SUBJECT
, OPT_ISSUER
,
205 OPT_DAYS
, OPT_REQEXTS
,
206 OPT_SANS
, OPT_SAN_NODEFAULT
,
207 OPT_POLICIES
, OPT_POLICY_OIDS
, OPT_POLICY_OIDS_CRITICAL
,
209 OPT_OUT_TRUSTED
, OPT_IMPLICIT_CONFIRM
, OPT_DISABLE_CONFIRM
,
210 OPT_CERTOUT
, OPT_CHAINOUT
,
212 OPT_OLDCERT
, OPT_REVREASON
,
214 #ifndef OPENSSL_NO_SOCK
215 OPT_SERVER
, OPT_PROXY
, OPT_NO_PROXY
,
217 OPT_RECIPIENT
, OPT_PATH
,
218 OPT_KEEP_ALIVE
, OPT_MSG_TIMEOUT
, OPT_TOTAL_TIMEOUT
,
220 OPT_TRUSTED
, OPT_UNTRUSTED
, OPT_SRVCERT
,
222 OPT_IGNORE_KEYUSAGE
, OPT_UNPROTECTED_ERRORS
,
223 OPT_EXTRACERTSOUT
, OPT_CACERTSOUT
,
225 OPT_REF
, OPT_SECRET
, OPT_CERT
, OPT_OWN_TRUSTED
, OPT_KEY
, OPT_KEYPASS
,
226 OPT_DIGEST
, OPT_MAC
, OPT_EXTRACERTS
,
227 OPT_UNPROTECTED_REQUESTS
,
229 OPT_CERTFORM
, OPT_KEYFORM
,
231 #ifndef OPENSSL_NO_ENGINE
237 #ifndef OPENSSL_NO_SOCK
238 OPT_TLS_USED
, OPT_TLS_CERT
, OPT_TLS_KEY
,
240 OPT_TLS_EXTRA
, OPT_TLS_TRUSTED
, OPT_TLS_HOST
,
243 OPT_BATCH
, OPT_REPEAT
,
244 OPT_REQIN
, OPT_REQIN_NEW_TID
, OPT_REQOUT
, OPT_RSPIN
, OPT_RSPOUT
,
247 #ifndef OPENSSL_NO_SOCK
248 OPT_PORT
, OPT_MAX_MSGS
,
250 OPT_SRV_REF
, OPT_SRV_SECRET
,
251 OPT_SRV_CERT
, OPT_SRV_KEY
, OPT_SRV_KEYPASS
,
252 OPT_SRV_TRUSTED
, OPT_SRV_UNTRUSTED
,
253 OPT_RSP_CERT
, OPT_RSP_EXTRACERTS
, OPT_RSP_CAPUBS
,
254 OPT_POLL_COUNT
, OPT_CHECK_AFTER
,
255 OPT_GRANT_IMPLICITCONF
,
256 OPT_PKISTATUS
, OPT_FAILURE
,
257 OPT_FAILUREBITS
, OPT_STATUSSTRING
,
258 OPT_SEND_ERROR
, OPT_SEND_UNPROTECTED
,
259 OPT_SEND_UNPROT_ERR
, OPT_ACCEPT_UNPROTECTED
,
260 OPT_ACCEPT_UNPROT_ERR
, OPT_ACCEPT_RAVERIFIED
,
265 const OPTIONS cmp_options
[] = {
266 /* entries must be in the same order as enumerated above!! */
267 {"help", OPT_HELP
, '-', "Display this summary"},
268 {"config", OPT_CONFIG
, 's',
269 "Configuration file to use. \"\" = none. Default from env variable OPENSSL_CONF"},
270 {"section", OPT_SECTION
, 's',
271 "Section(s) in config file to get options from. \"\" = 'default'. Default 'cmp'"},
272 {"verbosity", OPT_VERBOSITY
, 'N',
273 "Log level; 3=ERR, 4=WARN, 6=INFO, 7=DEBUG, 8=TRACE. Default 6 = INFO"},
275 OPT_SECTION("Generic message"),
276 {"cmd", OPT_CMD
, 's', "CMP request to send: ir/cr/kur/p10cr/rr/genm"},
277 {"infotype", OPT_INFOTYPE
, 's',
278 "InfoType name for requesting specific info in genm, e.g. 'signKeyPairTypes'"},
279 {"geninfo", OPT_GENINFO
, 's',
280 "generalInfo integer values to place in request PKIHeader with given OID"},
282 "specified in the form <OID>:int:<n>, e.g. \"1.2.3.4:int:56789\""},
284 OPT_SECTION("Certificate enrollment"),
285 {"newkey", OPT_NEWKEY
, 's',
286 "Private or public key for the requested cert. Default: CSR key or client key"},
287 {"newkeypass", OPT_NEWKEYPASS
, 's', "New private key pass phrase source"},
288 {"subject", OPT_SUBJECT
, 's',
289 "Distinguished Name (DN) of subject to use in the requested cert template"},
291 "For kur, default is subject of -csr arg or reference cert (see -oldcert)"},
293 "this default is used for ir and cr only if no Subject Alt Names are set"},
294 {"issuer", OPT_ISSUER
, 's',
295 "DN of the issuer to place in the requested certificate template"},
297 "also used as recipient if neither -recipient nor -srvcert are given"},
298 {"days", OPT_DAYS
, 'N',
299 "Requested validity time of the new certificate in number of days"},
300 {"reqexts", OPT_REQEXTS
, 's',
301 "Name of config file section defining certificate request extensions."},
303 "Augments or replaces any extensions contained CSR given with -csr"},
304 {"sans", OPT_SANS
, 's',
305 "Subject Alt Names (IPADDR/DNS/URI) to add as (critical) cert req extension"},
306 {"san_nodefault", OPT_SAN_NODEFAULT
, '-',
307 "Do not take default SANs from reference certificate (see -oldcert)"},
308 {"policies", OPT_POLICIES
, 's',
309 "Name of config file section defining policies certificate request extension"},
310 {"policy_oids", OPT_POLICY_OIDS
, 's',
311 "Policy OID(s) to add as policies certificate request extension"},
312 {"policy_oids_critical", OPT_POLICY_OIDS_CRITICAL
, '-',
313 "Flag the policy OID(s) given with -policy_oids as critical"},
314 {"popo", OPT_POPO
, 'n',
315 "Proof-of-Possession (POPO) method to use for ir/cr/kur where"},
317 "-1 = NONE, 0 = RAVERIFIED, 1 = SIGNATURE (default), 2 = KEYENC"},
318 {"csr", OPT_CSR
, 's',
319 "PKCS#10 CSR file in PEM or DER format to convert or to use in p10cr"},
320 {"out_trusted", OPT_OUT_TRUSTED
, 's',
321 "Certificates to trust when verifying newly enrolled certificates"},
322 {"implicit_confirm", OPT_IMPLICIT_CONFIRM
, '-',
323 "Request implicit confirmation of newly enrolled certificates"},
324 {"disable_confirm", OPT_DISABLE_CONFIRM
, '-',
325 "Do not confirm newly enrolled certificate w/o requesting implicit"},
327 "confirmation. WARNING: This leads to behavior violating RFC 4210"},
328 {"certout", OPT_CERTOUT
, 's',
329 "File to save newly enrolled certificate"},
330 {"chainout", OPT_CHAINOUT
, 's',
331 "File to save the chain of newly enrolled certificate"},
333 OPT_SECTION("Certificate enrollment and revocation"),
335 {"oldcert", OPT_OLDCERT
, 's',
336 "Certificate to be updated (defaulting to -cert) or to be revoked in rr;"},
338 "also used as reference (defaulting to -cert) for subject DN and SANs."},
340 "Issuer is used as recipient unless -recipient, -srvcert, or -issuer given"},
341 {"revreason", OPT_REVREASON
, 'n',
342 "Reason code to include in revocation request (rr); possible values:"},
344 "0..6, 8..10 (see RFC5280, 5.3.1) or -1. Default -1 = none included"},
346 OPT_SECTION("Message transfer"),
347 #ifdef OPENSSL_NO_SOCK
349 "NOTE: -server, -proxy, and -no_proxy not supported due to no-sock build"},
351 {"server", OPT_SERVER
, 's',
352 "[http[s]://]address[:port][/path] of CMP server. Default port 80 or 443."},
354 "address may be a DNS name or an IP address; path can be overridden by -path"},
355 {"proxy", OPT_PROXY
, 's',
356 "[http[s]://]address[:port][/path] of HTTP(S) proxy to use; path is ignored"},
357 {"no_proxy", OPT_NO_PROXY
, 's',
358 "List of addresses of servers not to use HTTP(S) proxy for"},
360 "Default from environment variable 'no_proxy', else 'NO_PROXY', else none"},
362 {"recipient", OPT_RECIPIENT
, 's',
363 "DN of CA. Default: subject of -srvcert, -issuer, issuer of -oldcert or -cert"},
364 {"path", OPT_PATH
, 's',
365 "HTTP path (aka CMP alias) at the CMP server. Default from -server, else \"/\""},
366 {"keep_alive", OPT_KEEP_ALIVE
, 'N',
367 "Persistent HTTP connections. 0: no, 1 (the default): request, 2: require"},
368 {"msg_timeout", OPT_MSG_TIMEOUT
, 'N',
369 "Number of seconds allowed per CMP message round trip, or 0 for infinite"},
370 {"total_timeout", OPT_TOTAL_TIMEOUT
, 'N',
371 "Overall time an enrollment incl. polling may take. Default 0 = infinite"},
373 OPT_SECTION("Server authentication"),
374 {"trusted", OPT_TRUSTED
, 's',
375 "Certificates to use as trust anchors when verifying signed CMP responses"},
376 {OPT_MORE_STR
, 0, 0, "unless -srvcert is given"},
377 {"untrusted", OPT_UNTRUSTED
, 's',
378 "Intermediate CA certs for chain construction for CMP/TLS/enrolled certs"},
379 {"srvcert", OPT_SRVCERT
, 's',
380 "Server cert to pin and trust directly when verifying signed CMP responses"},
381 {"expect_sender", OPT_EXPECT_SENDER
, 's',
382 "DN of expected sender of responses. Defaults to subject of -srvcert, if any"},
383 {"ignore_keyusage", OPT_IGNORE_KEYUSAGE
, '-',
384 "Ignore CMP signer cert key usage, else 'digitalSignature' must be allowed"},
385 {"unprotected_errors", OPT_UNPROTECTED_ERRORS
, '-',
386 "Accept missing or invalid protection of regular error messages and negative"},
388 "certificate responses (ip/cp/kup), revocation responses (rp), and PKIConf"},
390 "WARNING: This setting leads to behavior allowing violation of RFC 4210"},
391 {"extracertsout", OPT_EXTRACERTSOUT
, 's',
392 "File to save extra certificates received in the extraCerts field"},
393 {"cacertsout", OPT_CACERTSOUT
, 's',
394 "File to save CA certificates received in the caPubs field of 'ip' messages"},
396 OPT_SECTION("Client authentication"),
397 {"ref", OPT_REF
, 's',
398 "Reference value to use as senderKID in case no -cert is given"},
399 {"secret", OPT_SECRET
, 's',
400 "Prefer PBM (over signatures) for protecting msgs with given password source"},
401 {"cert", OPT_CERT
, 's',
402 "Client's CMP signer certificate; its public key must match the -key argument"},
404 "This also used as default reference for subject DN and SANs."},
406 "Any further certs included are appended to the untrusted certs"},
407 {"own_trusted", OPT_OWN_TRUSTED
, 's',
408 "Optional certs to verify chain building for own CMP signer cert"},
409 {"key", OPT_KEY
, 's', "CMP signer private key, not used when -secret given"},
410 {"keypass", OPT_KEYPASS
, 's',
411 "Client private key (and cert and old cert) pass phrase source"},
412 {"digest", OPT_DIGEST
, 's',
413 "Digest to use in message protection and POPO signatures. Default \"sha256\""},
414 {"mac", OPT_MAC
, 's',
415 "MAC algorithm to use in PBM-based message protection. Default \"hmac-sha1\""},
416 {"extracerts", OPT_EXTRACERTS
, 's',
417 "Certificates to append in extraCerts field of outgoing messages."},
419 "This can be used as the default CMP signer cert chain to include"},
420 {"unprotected_requests", OPT_UNPROTECTED_REQUESTS
, '-',
421 "Send request messages without CMP-level protection"},
423 OPT_SECTION("Credentials format"),
424 {"certform", OPT_CERTFORM
, 's',
425 "Format (PEM or DER) to use when saving a certificate to a file. Default PEM"},
426 {"keyform", OPT_KEYFORM
, 's',
427 "Format of the key input (ENGINE, other values ignored)"},
428 {"otherpass", OPT_OTHERPASS
, 's',
429 "Pass phrase source potentially needed for loading certificates of others"},
430 #ifndef OPENSSL_NO_ENGINE
431 {"engine", OPT_ENGINE
, 's',
432 "Use crypto engine with given identifier, possibly a hardware device."},
434 "Engines may also be defined in OpenSSL config file engine section."},
439 OPT_SECTION("TLS connection"),
440 #ifdef OPENSSL_NO_SOCK
442 "NOTE: -tls_used and all other TLS options not supported due to no-sock build"},
444 {"tls_used", OPT_TLS_USED
, '-',
445 "Enable using TLS (also when other TLS options are not set)"},
446 {"tls_cert", OPT_TLS_CERT
, 's',
447 "Client's TLS certificate. May include chain to be provided to TLS server"},
448 {"tls_key", OPT_TLS_KEY
, 's',
449 "Private key for the client's TLS certificate"},
450 {"tls_keypass", OPT_TLS_KEYPASS
, 's',
451 "Pass phrase source for the client's private TLS key (and TLS cert)"},
452 {"tls_extra", OPT_TLS_EXTRA
, 's',
453 "Extra certificates to provide to TLS server during TLS handshake"},
454 {"tls_trusted", OPT_TLS_TRUSTED
, 's',
455 "Trusted certificates to use for verifying the TLS server certificate;"},
456 {OPT_MORE_STR
, 0, 0, "this implies host name validation"},
457 {"tls_host", OPT_TLS_HOST
, 's',
458 "Address to be checked (rather than -server) during TLS host name validation"},
461 OPT_SECTION("Client-side debugging"),
462 {"batch", OPT_BATCH
, '-',
463 "Do not interactively prompt for input when a password is required etc."},
464 {"repeat", OPT_REPEAT
, 'p',
465 "Invoke the transaction the given positive number of times. Default 1"},
466 {"reqin", OPT_REQIN
, 's',
467 "Take sequence of CMP requests to send to server from file(s)"},
468 {"reqin_new_tid", OPT_REQIN_NEW_TID
, '-',
469 "Use fresh transactionID for CMP requests read from -reqin"},
470 {"reqout", OPT_REQOUT
, 's',
471 "Save sequence of CMP requests created by the client to file(s)"},
472 {"rspin", OPT_RSPIN
, 's',
473 "Process sequence of CMP responses provided in file(s), skipping server"},
474 {"rspout", OPT_RSPOUT
, 's',
475 "Save sequence of actually used CMP responses to file(s)"},
477 {"use_mock_srv", OPT_USE_MOCK_SRV
, '-',
478 "Use internal mock server at API level, bypassing socket-based HTTP"},
480 OPT_SECTION("Mock server"),
481 #ifdef OPENSSL_NO_SOCK
483 "NOTE: -port and -max_msgs not supported due to no-sock build"},
485 {"port", OPT_PORT
, 's',
486 "Act as HTTP-based mock server listening on given port"},
487 {"max_msgs", OPT_MAX_MSGS
, 'N',
488 "max number of messages handled by HTTP mock server. Default: 0 = unlimited"},
491 {"srv_ref", OPT_SRV_REF
, 's',
492 "Reference value to use as senderKID of server in case no -srv_cert is given"},
493 {"srv_secret", OPT_SRV_SECRET
, 's',
494 "Password source for server authentication with a pre-shared key (secret)"},
495 {"srv_cert", OPT_SRV_CERT
, 's', "Certificate of the server"},
496 {"srv_key", OPT_SRV_KEY
, 's',
497 "Private key used by the server for signing messages"},
498 {"srv_keypass", OPT_SRV_KEYPASS
, 's',
499 "Server private key (and cert) pass phrase source"},
501 {"srv_trusted", OPT_SRV_TRUSTED
, 's',
502 "Trusted certificates for client authentication"},
503 {"srv_untrusted", OPT_SRV_UNTRUSTED
, 's',
504 "Intermediate certs that may be useful for verifying CMP protection"},
505 {"rsp_cert", OPT_RSP_CERT
, 's',
506 "Certificate to be returned as mock enrollment result"},
507 {"rsp_extracerts", OPT_RSP_EXTRACERTS
, 's',
508 "Extra certificates to be included in mock certification responses"},
509 {"rsp_capubs", OPT_RSP_CAPUBS
, 's',
510 "CA certificates to be included in mock ip response"},
511 {"poll_count", OPT_POLL_COUNT
, 'N',
512 "Number of times the client must poll before receiving a certificate"},
513 {"check_after", OPT_CHECK_AFTER
, 'N',
514 "The check_after value (time to wait) to include in poll response"},
515 {"grant_implicitconf", OPT_GRANT_IMPLICITCONF
, '-',
516 "Grant implicit confirmation of newly enrolled certificate"},
518 {"pkistatus", OPT_PKISTATUS
, 'N',
519 "PKIStatus to be included in server response. Possible values: 0..6"},
520 {"failure", OPT_FAILURE
, 'N',
521 "A single failure info bit number to include in server response, 0..26"},
522 {"failurebits", OPT_FAILUREBITS
, 'N',
523 "Number representing failure bits to include in server response, 0..2^27 - 1"},
524 {"statusstring", OPT_STATUSSTRING
, 's',
525 "Status string to be included in server response"},
526 {"send_error", OPT_SEND_ERROR
, '-',
527 "Force server to reply with error message"},
528 {"send_unprotected", OPT_SEND_UNPROTECTED
, '-',
529 "Send response messages without CMP-level protection"},
530 {"send_unprot_err", OPT_SEND_UNPROT_ERR
, '-',
531 "In case of negative responses, server shall send unprotected error messages,"},
533 "certificate responses (ip/cp/kup), and revocation responses (rp)."},
535 "WARNING: This setting leads to behavior violating RFC 4210"},
536 {"accept_unprotected", OPT_ACCEPT_UNPROTECTED
, '-',
537 "Accept missing or invalid protection of requests"},
538 {"accept_unprot_err", OPT_ACCEPT_UNPROT_ERR
, '-',
539 "Accept unprotected error messages from client"},
540 {"accept_raverified", OPT_ACCEPT_RAVERIFIED
, '-',
541 "Accept RAVERIFIED as proof-of-possession (POPO)"},
552 static varref cmp_vars
[] = { /* must be in same order as enumerated above! */
553 {&opt_config
}, {&opt_section
}, {(char **)&opt_verbosity
},
555 {&opt_cmd_s
}, {&opt_infotype_s
}, {&opt_geninfo
},
557 {&opt_newkey
}, {&opt_newkeypass
}, {&opt_subject
}, {&opt_issuer
},
558 {(char **)&opt_days
}, {&opt_reqexts
},
559 {&opt_sans
}, {(char **)&opt_san_nodefault
},
560 {&opt_policies
}, {&opt_policy_oids
}, {(char **)&opt_policy_oids_critical
},
561 {(char **)&opt_popo
}, {&opt_csr
},
563 {(char **)&opt_implicit_confirm
}, {(char **)&opt_disable_confirm
},
564 {&opt_certout
}, {&opt_chainout
},
566 {&opt_oldcert
}, {(char **)&opt_revreason
},
568 #ifndef OPENSSL_NO_SOCK
569 {&opt_server
}, {&opt_proxy
}, {&opt_no_proxy
},
571 {&opt_recipient
}, {&opt_path
}, {(char **)&opt_keep_alive
},
572 {(char **)&opt_msg_timeout
}, {(char **)&opt_total_timeout
},
574 {&opt_trusted
}, {&opt_untrusted
}, {&opt_srvcert
},
575 {&opt_expect_sender
},
576 {(char **)&opt_ignore_keyusage
}, {(char **)&opt_unprotected_errors
},
577 {&opt_extracertsout
}, {&opt_cacertsout
},
579 {&opt_ref
}, {&opt_secret
},
580 {&opt_cert
}, {&opt_own_trusted
}, {&opt_key
}, {&opt_keypass
},
581 {&opt_digest
}, {&opt_mac
}, {&opt_extracerts
},
582 {(char **)&opt_unprotected_requests
},
584 {&opt_certform_s
}, {&opt_keyform_s
},
586 #ifndef OPENSSL_NO_ENGINE
590 #ifndef OPENSSL_NO_SOCK
591 {(char **)&opt_tls_used
}, {&opt_tls_cert
}, {&opt_tls_key
},
593 {&opt_tls_extra
}, {&opt_tls_trusted
}, {&opt_tls_host
},
596 {(char **)&opt_batch
}, {(char **)&opt_repeat
},
597 {&opt_reqin
}, {(char **)&opt_reqin_new_tid
},
598 {&opt_reqout
}, {&opt_rspin
}, {&opt_rspout
},
600 {(char **)&opt_use_mock_srv
},
601 #ifndef OPENSSL_NO_SOCK
602 {&opt_port
}, {(char **)&opt_max_msgs
},
604 {&opt_srv_ref
}, {&opt_srv_secret
},
605 {&opt_srv_cert
}, {&opt_srv_key
}, {&opt_srv_keypass
},
606 {&opt_srv_trusted
}, {&opt_srv_untrusted
},
607 {&opt_rsp_cert
}, {&opt_rsp_extracerts
}, {&opt_rsp_capubs
},
608 {(char **)&opt_poll_count
}, {(char **)&opt_check_after
},
609 {(char **)&opt_grant_implicitconf
},
610 {(char **)&opt_pkistatus
}, {(char **)&opt_failure
},
611 {(char **)&opt_failurebits
}, {&opt_statusstring
},
612 {(char **)&opt_send_error
}, {(char **)&opt_send_unprotected
},
613 {(char **)&opt_send_unprot_err
}, {(char **)&opt_accept_unprotected
},
614 {(char **)&opt_accept_unprot_err
}, {(char **)&opt_accept_raverified
},
619 #define FUNC (strcmp(OPENSSL_FUNC, "(unknown function)") == 0 \
620 ? "CMP" : OPENSSL_FUNC)
621 #define CMP_print(bio, level, prefix, msg, a1, a2, a3) \
622 ((void)(level > opt_verbosity ? 0 : \
623 (BIO_printf(bio, "%s:%s:%d:CMP %s: " msg "\n", \
624 FUNC, OPENSSL_FILE, OPENSSL_LINE, prefix, a1, a2, a3))))
625 #define CMP_DEBUG(m, a1, a2, a3) \
626 CMP_print(bio_out, OSSL_CMP_LOG_DEBUG, "debug", m, a1, a2, a3)
627 #define CMP_debug(msg) CMP_DEBUG(msg"%s%s%s", "", "", "")
628 #define CMP_debug1(msg, a1) CMP_DEBUG(msg"%s%s", a1, "", "")
629 #define CMP_debug2(msg, a1, a2) CMP_DEBUG(msg"%s", a1, a2, "")
630 #define CMP_debug3(msg, a1, a2, a3) CMP_DEBUG(msg, a1, a2, a3)
631 #define CMP_INFO(msg, a1, a2, a3) \
632 CMP_print(bio_out, OSSL_CMP_LOG_INFO, "info", msg, a1, a2, a3)
633 #define CMP_info(msg) CMP_INFO(msg"%s%s%s", "", "", "")
634 #define CMP_info1(msg, a1) CMP_INFO(msg"%s%s", a1, "", "")
635 #define CMP_info2(msg, a1, a2) CMP_INFO(msg"%s", a1, a2, "")
636 #define CMP_info3(msg, a1, a2, a3) CMP_INFO(msg, a1, a2, a3)
637 #define CMP_WARN(m, a1, a2, a3) \
638 CMP_print(bio_out, OSSL_CMP_LOG_WARNING, "warning", m, a1, a2, a3)
639 #define CMP_warn(msg) CMP_WARN(msg"%s%s%s", "", "", "")
640 #define CMP_warn1(msg, a1) CMP_WARN(msg"%s%s", a1, "", "")
641 #define CMP_warn2(msg, a1, a2) CMP_WARN(msg"%s", a1, a2, "")
642 #define CMP_warn3(msg, a1, a2, a3) CMP_WARN(msg, a1, a2, a3)
643 #define CMP_ERR(msg, a1, a2, a3) \
644 CMP_print(bio_err, OSSL_CMP_LOG_ERR, "error", msg, a1, a2, a3)
645 #define CMP_err(msg) CMP_ERR(msg"%s%s%s", "", "", "")
646 #define CMP_err1(msg, a1) CMP_ERR(msg"%s%s", a1, "", "")
647 #define CMP_err2(msg, a1, a2) CMP_ERR(msg"%s", a1, a2, "")
648 #define CMP_err3(msg, a1, a2, a3) CMP_ERR(msg, a1, a2, a3)
650 static int print_to_bio_out(const char *func
, const char *file
, int line
,
651 OSSL_CMP_severity level
, const char *msg
)
653 return OSSL_CMP_print_to_bio(bio_out
, func
, file
, line
, level
, msg
);
656 static int print_to_bio_err(const char *func
, const char *file
, int line
,
657 OSSL_CMP_severity level
, const char *msg
)
659 return OSSL_CMP_print_to_bio(bio_err
, func
, file
, line
, level
, msg
);
662 static int set_verbosity(int level
)
664 if (level
< OSSL_CMP_LOG_EMERG
|| level
> OSSL_CMP_LOG_MAX
) {
665 CMP_err1("Logging verbosity level %d out of range (0 .. 8)", level
);
668 opt_verbosity
= level
;
672 static EVP_PKEY
*load_key_pwd(const char *uri
, int format
,
673 const char *pass
, ENGINE
*eng
, const char *desc
)
675 char *pass_string
= get_passwd(pass
, desc
);
676 EVP_PKEY
*pkey
= load_key(uri
, format
, 0, pass_string
, eng
, desc
);
678 clear_free(pass_string
);
682 static X509
*load_cert_pwd(const char *uri
, const char *pass
, const char *desc
)
685 char *pass_string
= get_passwd(pass
, desc
);
687 cert
= load_cert_pass(uri
, FORMAT_UNDEF
, 0, pass_string
, desc
);
688 clear_free(pass_string
);
692 static X509_REQ
*load_csr_autofmt(const char *infile
, const char *desc
)
695 BIO
*bio_bak
= bio_err
;
697 bio_err
= NULL
; /* do not show errors on more than one try */
698 csr
= load_csr(infile
, FORMAT_PEM
, desc
);
702 csr
= load_csr(infile
, FORMAT_ASN1
, desc
);
705 ERR_print_errors(bio_err
);
706 BIO_printf(bio_err
, "error: unable to load %s from file '%s'\n", desc
,
709 EVP_PKEY
*pkey
= X509_REQ_get0_pubkey(csr
);
710 int ret
= do_X509_REQ_verify(csr
, pkey
, NULL
/* vfyopts */);
712 if (pkey
== NULL
|| ret
< 0)
713 CMP_warn("error while verifying CSR self-signature");
715 CMP_warn("CSR self-signature does not match the contents");
720 /* set expected host name/IP addr and clears the email addr in the given ts */
721 static int truststore_set_host_etc(X509_STORE
*ts
, const char *host
)
723 X509_VERIFY_PARAM
*ts_vpm
= X509_STORE_get0_param(ts
);
725 /* first clear any host names, IP, and email addresses */
726 if (!X509_VERIFY_PARAM_set1_host(ts_vpm
, NULL
, 0)
727 || !X509_VERIFY_PARAM_set1_ip(ts_vpm
, NULL
, 0)
728 || !X509_VERIFY_PARAM_set1_email(ts_vpm
, NULL
, 0))
730 X509_VERIFY_PARAM_set_hostflags(ts_vpm
,
731 X509_CHECK_FLAG_ALWAYS_CHECK_SUBJECT
|
732 X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS
);
733 return (host
!= NULL
&& X509_VERIFY_PARAM_set1_ip_asc(ts_vpm
, host
))
734 || X509_VERIFY_PARAM_set1_host(ts_vpm
, host
, 0);
737 /* write OSSL_CMP_MSG DER-encoded to the specified file name item */
738 static int write_PKIMESSAGE(const OSSL_CMP_MSG
*msg
, char **filenames
)
742 if (msg
== NULL
|| filenames
== NULL
) {
743 CMP_err("NULL arg to write_PKIMESSAGE");
746 if (*filenames
== NULL
) {
747 CMP_err("not enough file names provided for writing PKIMessage");
752 *filenames
= next_item(file
);
753 if (OSSL_CMP_MSG_write(file
, msg
) < 0) {
754 CMP_err1("cannot write PKIMessage to file '%s'", file
);
760 /* read DER-encoded OSSL_CMP_MSG from the specified file name item */
761 static OSSL_CMP_MSG
*read_PKIMESSAGE(const char *desc
, char **filenames
)
766 if (filenames
== NULL
|| desc
== NULL
) {
767 CMP_err("NULL arg to read_PKIMESSAGE");
770 if (*filenames
== NULL
) {
771 CMP_err("not enough file names provided for reading PKIMessage");
776 *filenames
= next_item(file
);
778 ret
= OSSL_CMP_MSG_read(file
, app_get0_libctx(), app_get0_propq());
780 CMP_err1("cannot read PKIMessage from file '%s'", file
);
782 CMP_info2("%s %s", desc
, file
);
787 * Sends the PKIMessage req and on success place the response in *res
788 * basically like OSSL_CMP_MSG_http_perform(), but in addition allows
789 * to dump the sequence of requests and responses to files and/or
790 * to take the sequence of requests and responses from files.
792 static OSSL_CMP_MSG
*read_write_req_resp(OSSL_CMP_CTX
*ctx
,
793 const OSSL_CMP_MSG
*req
)
795 OSSL_CMP_MSG
*req_new
= NULL
;
796 OSSL_CMP_MSG
*res
= NULL
;
797 OSSL_CMP_PKIHEADER
*hdr
;
798 const char *prev_opt_rspin
= opt_rspin
;
800 if (req
!= NULL
&& opt_reqout
!= NULL
801 && !write_PKIMESSAGE(req
, &opt_reqout
))
803 if (opt_reqin
!= NULL
&& opt_rspin
== NULL
) {
804 if ((req_new
= read_PKIMESSAGE("actually sending", &opt_reqin
)) == NULL
)
807 * The transaction ID in req_new read from opt_reqin may not be fresh.
808 * In this case the server may complain "Transaction id already in use."
809 * The following workaround unfortunately requires re-protection.
811 if (opt_reqin_new_tid
812 && !OSSL_CMP_MSG_update_transactionID(ctx
, req_new
))
816 * Except for first request, need to satisfy recipNonce check by server.
817 * Unfortunately requires re-protection if protection is required.
819 if (!OSSL_CMP_MSG_update_recipNonce(ctx
, req_new
))
823 if (opt_rspin
!= NULL
) {
824 res
= read_PKIMESSAGE("actually using", &opt_rspin
);
826 const OSSL_CMP_MSG
*actual_req
= req_new
!= NULL
? req_new
: req
;
828 if (opt_use_mock_srv
) {
830 CMP_warn("too few -rspin filename arguments; resorting to using mock server");
831 res
= OSSL_CMP_CTX_server_perform(ctx
, actual_req
);
833 #ifndef OPENSSL_NO_SOCK
834 if (opt_server
== NULL
) {
835 CMP_err("missing -server or -use_mock_srv option, or too few -rspin filename arguments");
839 CMP_warn("too few -rspin filename arguments; resorting to contacting server");
840 res
= OSSL_CMP_MSG_http_perform(ctx
, actual_req
);
842 CMP_err("-server not supported on no-sock build; missing -use_mock_srv option or too few -rspin filename arguments");
850 if (req_new
!= NULL
|| prev_opt_rspin
!= NULL
) {
851 /* need to satisfy nonce and transactionID checks by client */
852 ASN1_OCTET_STRING
*nonce
;
853 ASN1_OCTET_STRING
*tid
;
855 hdr
= OSSL_CMP_MSG_get0_header(res
);
856 nonce
= OSSL_CMP_HDR_get0_recipNonce(hdr
);
857 tid
= OSSL_CMP_HDR_get0_transactionID(hdr
);
858 if (!OSSL_CMP_CTX_set1_senderNonce(ctx
, nonce
)
859 || !OSSL_CMP_CTX_set1_transactionID(ctx
, tid
)) {
860 OSSL_CMP_MSG_free(res
);
866 if (opt_rspout
!= NULL
&& !write_PKIMESSAGE(res
, &opt_rspout
)) {
867 OSSL_CMP_MSG_free(res
);
872 OSSL_CMP_MSG_free(req_new
);
876 static int set_name(const char *str
,
877 int (*set_fn
) (OSSL_CMP_CTX
*ctx
, const X509_NAME
*name
),
878 OSSL_CMP_CTX
*ctx
, const char *desc
)
881 X509_NAME
*n
= parse_name(str
, MBSTRING_ASC
, 1, desc
);
885 if (!(*set_fn
) (ctx
, n
)) {
887 CMP_err("out of memory");
895 static int set_gennames(OSSL_CMP_CTX
*ctx
, char *names
, const char *desc
)
899 for (; names
!= NULL
; names
= next
) {
902 next
= next_item(names
);
903 if (strcmp(names
, "critical") == 0) {
904 (void)OSSL_CMP_CTX_set_option(ctx
,
905 OSSL_CMP_OPT_SUBJECTALTNAME_CRITICAL
,
910 /* try IP address first, then URI or domain name */
911 (void)ERR_set_mark();
912 n
= a2i_GENERAL_NAME(NULL
, NULL
, NULL
, GEN_IPADD
, names
, 0);
914 n
= a2i_GENERAL_NAME(NULL
, NULL
, NULL
,
915 strchr(names
, ':') != NULL
? GEN_URI
: GEN_DNS
,
917 (void)ERR_pop_to_mark();
920 CMP_err2("bad syntax of %s '%s'", desc
, names
);
923 if (!OSSL_CMP_CTX_push1_subjectAltName(ctx
, n
)) {
924 GENERAL_NAME_free(n
);
925 CMP_err("out of memory");
928 GENERAL_NAME_free(n
);
933 static X509_STORE
*load_trusted(char *input
, int for_new_cert
, const char *desc
)
935 X509_STORE
*ts
= load_certstore(input
, opt_otherpass
, desc
, vpm
);
939 X509_STORE_set_verify_cb(ts
, X509_STORE_CTX_print_verify_cb
);
941 /* copy vpm to store */
942 if (X509_STORE_set1_param(ts
, vpm
/* may be NULL */)
943 && (for_new_cert
|| truststore_set_host_etc(ts
, NULL
)))
945 BIO_printf(bio_err
, "error setting verification parameters for %s\n", desc
);
946 OSSL_CMP_CTX_print_errors(cmp_ctx
);
951 typedef int (*add_X509_stack_fn_t
)(void *ctx
, const STACK_OF(X509
) *certs
);
953 static int setup_certs(char *files
, const char *desc
, void *ctx
,
954 add_X509_stack_fn_t set1_fn
)
956 STACK_OF(X509
) *certs
;
961 if ((certs
= load_certs_multifile(files
, opt_otherpass
, desc
, vpm
)) == NULL
)
963 ok
= (*set1_fn
)(ctx
, certs
);
964 sk_X509_pop_free(certs
, X509_free
);
970 * parse and transform some options, checking their syntax.
971 * Returns 1 on success, 0 on error
973 static int transform_opts(void)
975 if (opt_cmd_s
!= NULL
) {
976 if (!strcmp(opt_cmd_s
, "ir")) {
978 } else if (!strcmp(opt_cmd_s
, "kur")) {
980 } else if (!strcmp(opt_cmd_s
, "cr")) {
982 } else if (!strcmp(opt_cmd_s
, "p10cr")) {
984 } else if (!strcmp(opt_cmd_s
, "rr")) {
986 } else if (!strcmp(opt_cmd_s
, "genm")) {
989 CMP_err1("unknown cmp command '%s'", opt_cmd_s
);
993 CMP_err("no cmp command to execute");
997 #ifndef OPENSSL_NO_ENGINE
998 # define FORMAT_OPTIONS (OPT_FMT_PEMDER | OPT_FMT_PKCS12 | OPT_FMT_ENGINE)
1000 # define FORMAT_OPTIONS (OPT_FMT_PEMDER | OPT_FMT_PKCS12)
1003 if (opt_keyform_s
!= NULL
1004 && !opt_format(opt_keyform_s
, FORMAT_OPTIONS
, &opt_keyform
)) {
1005 CMP_err("unknown option given for key loading format");
1009 #undef FORMAT_OPTIONS
1011 if (opt_certform_s
!= NULL
1012 && !opt_format(opt_certform_s
, OPT_FMT_PEMDER
, &opt_certform
)) {
1013 CMP_err("unknown option given for certificate storing format");
1020 static OSSL_CMP_SRV_CTX
*setup_srv_ctx(ENGINE
*engine
)
1022 OSSL_CMP_CTX
*ctx
; /* extra CMP (client) ctx partly used by server */
1023 OSSL_CMP_SRV_CTX
*srv_ctx
= ossl_cmp_mock_srv_new(app_get0_libctx(),
1026 if (srv_ctx
== NULL
)
1028 ctx
= OSSL_CMP_SRV_CTX_get0_cmp_ctx(srv_ctx
);
1030 if (opt_srv_ref
== NULL
) {
1031 if (opt_srv_cert
== NULL
) {
1032 /* opt_srv_cert should determine the sender */
1033 CMP_err("must give -srv_ref for mock server if no -srv_cert given");
1037 if (!OSSL_CMP_CTX_set1_referenceValue(ctx
, (unsigned char *)opt_srv_ref
,
1038 strlen(opt_srv_ref
)))
1042 if (opt_srv_secret
!= NULL
) {
1044 char *pass_str
= get_passwd(opt_srv_secret
, "PBMAC secret of mock server");
1046 if (pass_str
!= NULL
) {
1047 cleanse(opt_srv_secret
);
1048 res
= OSSL_CMP_CTX_set1_secretValue(ctx
, (unsigned char *)pass_str
,
1050 clear_free(pass_str
);
1054 } else if (opt_srv_cert
== NULL
) {
1055 CMP_err("server credentials (-srv_secret or -srv_cert) must be given if -use_mock_srv or -port is used");
1058 CMP_warn("server will not be able to handle PBM-protected requests since -srv_secret is not given");
1061 if (opt_srv_secret
== NULL
1062 && ((opt_srv_cert
== NULL
) != (opt_srv_key
== NULL
))) {
1063 CMP_err("must give both -srv_cert and -srv_key options or neither");
1066 if (opt_srv_cert
!= NULL
) {
1067 X509
*srv_cert
= load_cert_pwd(opt_srv_cert
, opt_srv_keypass
,
1068 "certificate of the mock server");
1070 if (srv_cert
== NULL
|| !OSSL_CMP_CTX_set1_cert(ctx
, srv_cert
)) {
1071 X509_free(srv_cert
);
1074 X509_free(srv_cert
);
1076 if (opt_srv_key
!= NULL
) {
1077 EVP_PKEY
*pkey
= load_key_pwd(opt_srv_key
, opt_keyform
,
1079 engine
, "private key for mock server cert");
1081 if (pkey
== NULL
|| !OSSL_CMP_CTX_set1_pkey(ctx
, pkey
)) {
1082 EVP_PKEY_free(pkey
);
1085 EVP_PKEY_free(pkey
);
1087 cleanse(opt_srv_keypass
);
1089 if (opt_srv_trusted
!= NULL
) {
1091 load_trusted(opt_srv_trusted
, 0, "certs trusted by mock server");
1093 if (ts
== NULL
|| !OSSL_CMP_CTX_set0_trustedStore(ctx
, ts
)) {
1094 X509_STORE_free(ts
);
1098 CMP_warn("mock server will not be able to handle signature-protected requests since -srv_trusted is not given");
1100 if (!setup_certs(opt_srv_untrusted
,
1101 "untrusted certificates for mock server", ctx
,
1102 (add_X509_stack_fn_t
)OSSL_CMP_CTX_set1_untrusted
))
1105 if (opt_rsp_cert
== NULL
) {
1106 CMP_warn("no -rsp_cert given for mock server");
1108 X509
*cert
= load_cert_pwd(opt_rsp_cert
, opt_keypass
,
1109 "cert to be returned by the mock server");
1113 /* from server perspective the server is the client */
1114 if (!ossl_cmp_mock_srv_set1_certOut(srv_ctx
, cert
)) {
1120 if (!setup_certs(opt_rsp_extracerts
,
1121 "CMP extra certificates for mock server", srv_ctx
,
1122 (add_X509_stack_fn_t
)ossl_cmp_mock_srv_set1_chainOut
))
1124 if (!setup_certs(opt_rsp_capubs
, "caPubs for mock server", srv_ctx
,
1125 (add_X509_stack_fn_t
)ossl_cmp_mock_srv_set1_caPubsOut
))
1127 (void)ossl_cmp_mock_srv_set_pollCount(srv_ctx
, opt_poll_count
);
1128 (void)ossl_cmp_mock_srv_set_checkAfterTime(srv_ctx
, opt_check_after
);
1129 if (opt_grant_implicitconf
)
1130 (void)OSSL_CMP_SRV_CTX_set_grant_implicit_confirm(srv_ctx
, 1);
1132 if (opt_failure
!= INT_MIN
) { /* option has been set explicity */
1133 if (opt_failure
< 0 || OSSL_CMP_PKIFAILUREINFO_MAX
< opt_failure
) {
1134 CMP_err1("-failure out of range, should be >= 0 and <= %d",
1135 OSSL_CMP_PKIFAILUREINFO_MAX
);
1138 if (opt_failurebits
!= 0)
1139 CMP_warn("-failurebits overrides -failure");
1141 opt_failurebits
= 1 << opt_failure
;
1143 if ((unsigned)opt_failurebits
> OSSL_CMP_PKIFAILUREINFO_MAX_BIT_PATTERN
) {
1144 CMP_err("-failurebits out of range");
1147 if (!ossl_cmp_mock_srv_set_statusInfo(srv_ctx
, opt_pkistatus
,
1148 opt_failurebits
, opt_statusstring
))
1152 (void)ossl_cmp_mock_srv_set_sendError(srv_ctx
, 1);
1154 if (opt_send_unprotected
)
1155 (void)OSSL_CMP_CTX_set_option(ctx
, OSSL_CMP_OPT_UNPROTECTED_SEND
, 1);
1156 if (opt_send_unprot_err
)
1157 (void)OSSL_CMP_SRV_CTX_set_send_unprotected_errors(srv_ctx
, 1);
1158 if (opt_accept_unprotected
)
1159 (void)OSSL_CMP_SRV_CTX_set_accept_unprotected(srv_ctx
, 1);
1160 if (opt_accept_unprot_err
)
1161 (void)OSSL_CMP_CTX_set_option(ctx
, OSSL_CMP_OPT_UNPROTECTED_ERRORS
, 1);
1162 if (opt_accept_raverified
)
1163 (void)OSSL_CMP_SRV_CTX_set_accept_raverified(srv_ctx
, 1);
1168 ossl_cmp_mock_srv_free(srv_ctx
);
1173 * set up verification aspects of OSSL_CMP_CTX w.r.t. opts from config file/CLI.
1174 * Returns pointer on success, NULL on error
1176 static int setup_verification_ctx(OSSL_CMP_CTX
*ctx
)
1178 if (!setup_certs(opt_untrusted
, "untrusted certificates", ctx
,
1179 (add_X509_stack_fn_t
)OSSL_CMP_CTX_set1_untrusted
))
1182 if (opt_srvcert
!= NULL
|| opt_trusted
!= NULL
) {
1187 if (opt_srvcert
!= NULL
) {
1188 if (opt_trusted
!= NULL
) {
1189 CMP_warn("-trusted option is ignored since -srvcert option is present");
1192 if (opt_recipient
!= NULL
) {
1193 CMP_warn("-recipient option is ignored since -srvcert option is present");
1194 opt_recipient
= NULL
;
1196 srvcert
= load_cert_pwd(opt_srvcert
, opt_otherpass
,
1197 "directly trusted CMP server certificate");
1198 ok
= srvcert
!= NULL
&& OSSL_CMP_CTX_set1_srvCert(ctx
, srvcert
);
1203 if (opt_trusted
!= NULL
) {
1205 * the 0 arg below clears any expected host/ip/email address;
1206 * opt_expect_sender is used instead
1208 ts
= load_trusted(opt_trusted
, 0, "certs trusted by client");
1210 if (ts
== NULL
|| !OSSL_CMP_CTX_set0_trustedStore(ctx
, ts
)) {
1211 X509_STORE_free(ts
);
1217 if (opt_ignore_keyusage
)
1218 (void)OSSL_CMP_CTX_set_option(ctx
, OSSL_CMP_OPT_IGNORE_KEYUSAGE
, 1);
1220 if (opt_unprotected_errors
)
1221 (void)OSSL_CMP_CTX_set_option(ctx
, OSSL_CMP_OPT_UNPROTECTED_ERRORS
, 1);
1223 if (opt_out_trusted
!= NULL
) { /* for use in OSSL_CMP_certConf_cb() */
1224 X509_VERIFY_PARAM
*out_vpm
= NULL
;
1225 X509_STORE
*out_trusted
=
1226 load_trusted(opt_out_trusted
, 1,
1227 "trusted certs for verifying newly enrolled cert");
1229 if (out_trusted
== NULL
)
1231 /* ignore any -attime here, new certs are current anyway */
1232 out_vpm
= X509_STORE_get0_param(out_trusted
);
1233 X509_VERIFY_PARAM_clear_flags(out_vpm
, X509_V_FLAG_USE_CHECK_TIME
);
1235 (void)OSSL_CMP_CTX_set_certConf_cb_arg(ctx
, out_trusted
);
1238 if (opt_disable_confirm
)
1239 (void)OSSL_CMP_CTX_set_option(ctx
, OSSL_CMP_OPT_DISABLE_CONFIRM
, 1);
1241 if (opt_implicit_confirm
)
1242 (void)OSSL_CMP_CTX_set_option(ctx
, OSSL_CMP_OPT_IMPLICIT_CONFIRM
, 1);
1247 #ifndef OPENSSL_NO_SOCK
1249 * set up ssl_ctx for the OSSL_CMP_CTX based on options from config file/CLI.
1250 * Returns pointer on success, NULL on error
1252 static SSL_CTX
*setup_ssl_ctx(OSSL_CMP_CTX
*ctx
, const char *host
,
1255 STACK_OF(X509
) *untrusted
= OSSL_CMP_CTX_get0_untrusted(ctx
);
1256 EVP_PKEY
*pkey
= NULL
;
1257 X509_STORE
*trust_store
= NULL
;
1261 ssl_ctx
= SSL_CTX_new(TLS_client_method());
1262 if (ssl_ctx
== NULL
)
1265 if (opt_tls_trusted
!= NULL
) {
1266 trust_store
= load_trusted(opt_tls_trusted
, 0, "trusted TLS certs");
1267 if (trust_store
== NULL
)
1269 SSL_CTX_set_cert_store(ssl_ctx
, trust_store
);
1272 if (opt_tls_cert
!= NULL
&& opt_tls_key
!= NULL
) {
1274 STACK_OF(X509
) *certs
= NULL
;
1277 if (!load_cert_certs(opt_tls_cert
, &cert
, &certs
, 0, opt_tls_keypass
,
1278 "TLS client certificate (optionally with chain)",
1280 /* need opt_tls_keypass if opt_tls_cert is encrypted PKCS#12 file */
1283 ok
= SSL_CTX_use_certificate(ssl_ctx
, cert
) > 0;
1287 * Any further certs and any untrusted certs are used for constructing
1288 * the chain to be provided with the TLS client cert to the TLS server.
1290 if (!ok
|| !SSL_CTX_set0_chain(ssl_ctx
, certs
)) {
1291 CMP_err1("unable to use client TLS certificate file '%s'",
1293 sk_X509_pop_free(certs
, X509_free
);
1296 for (i
= 0; i
< sk_X509_num(untrusted
); i
++) {
1297 cert
= sk_X509_value(untrusted
, i
);
1298 if (!SSL_CTX_add1_chain_cert(ssl_ctx
, cert
)) {
1299 CMP_err("could not add untrusted cert to TLS client cert chain");
1305 X509_VERIFY_PARAM
*tls_vpm
= NULL
;
1306 unsigned long bak_flags
= 0; /* compiler warns without init */
1308 if (trust_store
!= NULL
) {
1309 tls_vpm
= X509_STORE_get0_param(trust_store
);
1310 bak_flags
= X509_VERIFY_PARAM_get_flags(tls_vpm
);
1311 /* disable any cert status/revocation checking etc. */
1312 X509_VERIFY_PARAM_clear_flags(tls_vpm
,
1313 ~(X509_V_FLAG_USE_CHECK_TIME
1314 | X509_V_FLAG_NO_CHECK_TIME
1315 | X509_V_FLAG_PARTIAL_CHAIN
1316 | X509_V_FLAG_POLICY_CHECK
));
1318 CMP_debug("trying to build cert chain for own TLS cert");
1319 if (SSL_CTX_build_cert_chain(ssl_ctx
,
1320 SSL_BUILD_CHAIN_FLAG_UNTRUSTED
|
1321 SSL_BUILD_CHAIN_FLAG_NO_ROOT
)) {
1322 CMP_debug("success building cert chain for own TLS cert");
1324 OSSL_CMP_CTX_print_errors(ctx
);
1325 CMP_warn("could not build cert chain for own TLS cert");
1327 if (trust_store
!= NULL
)
1328 X509_VERIFY_PARAM_set_flags(tls_vpm
, bak_flags
);
1331 /* If present we append to the list also the certs from opt_tls_extra */
1332 if (opt_tls_extra
!= NULL
) {
1333 STACK_OF(X509
) *tls_extra
= load_certs_multifile(opt_tls_extra
,
1335 "extra certificates for TLS",
1339 if (tls_extra
== NULL
)
1341 for (i
= 0; i
< sk_X509_num(tls_extra
); i
++) {
1342 cert
= sk_X509_value(tls_extra
, i
);
1344 res
= SSL_CTX_add_extra_chain_cert(ssl_ctx
, cert
);
1348 sk_X509_free(tls_extra
);
1350 BIO_printf(bio_err
, "error: unable to add TLS extra certs\n");
1355 pkey
= load_key_pwd(opt_tls_key
, opt_keyform
, opt_tls_keypass
,
1356 engine
, "TLS client private key");
1357 cleanse(opt_tls_keypass
);
1361 * verify the key matches the cert,
1362 * not using SSL_CTX_check_private_key(ssl_ctx)
1363 * because it gives poor and sometimes misleading diagnostics
1365 if (!X509_check_private_key(SSL_CTX_get0_certificate(ssl_ctx
),
1367 CMP_err2("TLS private key '%s' does not match the TLS certificate '%s'\n",
1368 opt_tls_key
, opt_tls_cert
);
1369 EVP_PKEY_free(pkey
);
1370 pkey
= NULL
; /* otherwise, for some reason double free! */
1373 if (SSL_CTX_use_PrivateKey(ssl_ctx
, pkey
) <= 0) {
1374 CMP_err1("unable to use TLS client private key '%s'", opt_tls_key
);
1375 EVP_PKEY_free(pkey
);
1376 pkey
= NULL
; /* otherwise, for some reason double free! */
1379 EVP_PKEY_free(pkey
); /* we do not need the handle any more */
1381 if (opt_tls_trusted
!= NULL
) {
1382 /* enable and parameterize server hostname/IP address check */
1383 if (!truststore_set_host_etc(trust_store
,
1384 opt_tls_host
!= NULL
? opt_tls_host
: host
))
1386 SSL_CTX_set_verify(ssl_ctx
, SSL_VERIFY_PEER
, NULL
);
1390 SSL_CTX_free(ssl_ctx
);
1393 #endif /* OPENSSL_NO_SOCK */
1396 * set up protection aspects of OSSL_CMP_CTX based on options from config
1397 * file/CLI while parsing options and checking their consistency.
1398 * Returns 1 on success, 0 on error
1400 static int setup_protection_ctx(OSSL_CMP_CTX
*ctx
, ENGINE
*engine
)
1402 if (!opt_unprotected_requests
&& opt_secret
== NULL
&& opt_key
== NULL
) {
1403 CMP_err("must give -key or -secret unless -unprotected_requests is used");
1407 if (opt_ref
== NULL
&& opt_cert
== NULL
&& opt_subject
== NULL
) {
1408 /* cert or subject should determine the sender */
1409 CMP_err("must give -ref if no -cert and no -subject given");
1412 if (!opt_secret
&& ((opt_cert
== NULL
) != (opt_key
== NULL
))) {
1413 CMP_err("must give both -cert and -key options or neither");
1416 if (opt_secret
!= NULL
) {
1417 char *pass_string
= get_passwd(opt_secret
, "PBMAC");
1420 if (pass_string
!= NULL
) {
1421 cleanse(opt_secret
);
1422 res
= OSSL_CMP_CTX_set1_secretValue(ctx
,
1423 (unsigned char *)pass_string
,
1424 strlen(pass_string
));
1425 clear_free(pass_string
);
1429 if (opt_cert
!= NULL
|| opt_key
!= NULL
)
1430 CMP_warn("-cert and -key not used for protection since -secret is given");
1433 && !OSSL_CMP_CTX_set1_referenceValue(ctx
, (unsigned char *)opt_ref
,
1437 if (opt_key
!= NULL
) {
1438 EVP_PKEY
*pkey
= load_key_pwd(opt_key
, opt_keyform
, opt_keypass
, engine
,
1439 "private key for CMP client certificate");
1441 if (pkey
== NULL
|| !OSSL_CMP_CTX_set1_pkey(ctx
, pkey
)) {
1442 EVP_PKEY_free(pkey
);
1445 EVP_PKEY_free(pkey
);
1447 if (opt_secret
== NULL
&& opt_srvcert
== NULL
&& opt_trusted
== NULL
)
1448 CMP_warn("will not authenticate server due to missing -secret, -trusted, or -srvcert");
1450 if (opt_cert
!= NULL
) {
1452 STACK_OF(X509
) *certs
= NULL
;
1453 X509_STORE
*own_trusted
= NULL
;
1456 if (!load_cert_certs(opt_cert
, &cert
, &certs
, 0, opt_keypass
,
1457 "CMP client certificate (optionally with chain)",
1459 /* opt_keypass is needed if opt_cert is an encrypted PKCS#12 file */
1461 ok
= OSSL_CMP_CTX_set1_cert(ctx
, cert
);
1464 CMP_err("out of memory");
1466 if (opt_own_trusted
!= NULL
) {
1467 own_trusted
= load_trusted(opt_own_trusted
, 0,
1468 "trusted certs for verifying own CMP signer cert");
1469 ok
= own_trusted
!= NULL
;
1471 ok
= ok
&& OSSL_CMP_CTX_build_cert_chain(ctx
, own_trusted
, certs
);
1473 X509_STORE_free(own_trusted
);
1474 sk_X509_pop_free(certs
, X509_free
);
1477 } else if (opt_own_trusted
!= NULL
) {
1478 CMP_warn("-own_trusted option is ignored without -cert");
1481 if (!setup_certs(opt_extracerts
, "extra certificates for CMP", ctx
,
1482 (add_X509_stack_fn_t
)OSSL_CMP_CTX_set1_extraCertsOut
))
1484 cleanse(opt_otherpass
);
1486 if (opt_unprotected_requests
)
1487 (void)OSSL_CMP_CTX_set_option(ctx
, OSSL_CMP_OPT_UNPROTECTED_SEND
, 1);
1489 if (opt_digest
!= NULL
) {
1490 int digest
= OBJ_ln2nid(opt_digest
);
1492 if (digest
== NID_undef
) {
1493 CMP_err1("digest algorithm name not recognized: '%s'", opt_digest
);
1496 if (!OSSL_CMP_CTX_set_option(ctx
, OSSL_CMP_OPT_DIGEST_ALGNID
, digest
)
1497 || !OSSL_CMP_CTX_set_option(ctx
, OSSL_CMP_OPT_OWF_ALGNID
, digest
)) {
1498 CMP_err1("digest algorithm name not supported: '%s'", opt_digest
);
1503 if (opt_mac
!= NULL
) {
1504 int mac
= OBJ_ln2nid(opt_mac
);
1505 if (mac
== NID_undef
) {
1506 CMP_err1("MAC algorithm name not recognized: '%s'", opt_mac
);
1509 (void)OSSL_CMP_CTX_set_option(ctx
, OSSL_CMP_OPT_MAC_ALGNID
, mac
);
1515 * set up IR/CR/KUR/CertConf/RR specific parts of the OSSL_CMP_CTX
1516 * based on options from config file/CLI.
1517 * Returns pointer on success, NULL on error
1519 static int setup_request_ctx(OSSL_CMP_CTX
*ctx
, ENGINE
*engine
)
1521 X509_REQ
*csr
= NULL
;
1522 X509_EXTENSIONS
*exts
= NULL
;
1525 if (opt_subject
== NULL
1526 && opt_csr
== NULL
&& opt_oldcert
== NULL
&& opt_cert
== NULL
1527 && opt_cmd
!= CMP_RR
&& opt_cmd
!= CMP_GENM
)
1528 CMP_warn("no -subject given; no -csr or -oldcert or -cert available for fallback");
1530 if (opt_cmd
== CMP_IR
|| opt_cmd
== CMP_CR
|| opt_cmd
== CMP_KUR
) {
1531 if (opt_newkey
== NULL
1532 && opt_key
== NULL
&& opt_csr
== NULL
&& opt_oldcert
== NULL
) {
1533 CMP_err("missing -newkey (or -key) to be certified and no -csr, -oldcert, or -cert given for fallback public key");
1536 if (opt_newkey
== NULL
1537 && opt_popo
!= OSSL_CRMF_POPO_NONE
1538 && opt_popo
!= OSSL_CRMF_POPO_RAVERIFIED
) {
1539 if (opt_csr
!= NULL
) {
1540 CMP_err1("no -newkey option given with private key for POPO, -csr option only provides public key%s",
1541 opt_key
== NULL
? "" :
1542 ", and -key option superseded by by -csr");
1545 if (opt_key
== NULL
) {
1546 CMP_err("missing -newkey (or -key) option for POPO");
1550 if (opt_certout
== NULL
) {
1551 CMP_err("-certout not given, nowhere to save newly enrolled certificate");
1554 if (!set_name(opt_subject
, OSSL_CMP_CTX_set1_subjectName
, ctx
, "subject")
1555 || !set_name(opt_issuer
, OSSL_CMP_CTX_set1_issuer
, ctx
, "issuer"))
1558 const char *msg
= "option is ignored for commands other than 'ir', 'cr', and 'kur'";
1560 if (opt_subject
!= NULL
) {
1561 if (opt_ref
== NULL
&& opt_cert
== NULL
) {
1562 /* use subject as default sender unless oldcert subject is used */
1563 if (!set_name(opt_subject
, OSSL_CMP_CTX_set1_subjectName
, ctx
, "subject"))
1566 CMP_warn1("-subject %s since -ref or -cert is given", msg
);
1569 if (opt_issuer
!= NULL
)
1570 CMP_warn1("-issuer %s", msg
);
1571 if (opt_reqexts
!= NULL
)
1572 CMP_warn1("-reqexts %s", msg
);
1573 if (opt_san_nodefault
)
1574 CMP_warn1("-san_nodefault %s", msg
);
1575 if (opt_sans
!= NULL
)
1576 CMP_warn1("-sans %s", msg
);
1577 if (opt_policies
!= NULL
)
1578 CMP_warn1("-policies %s", msg
);
1579 if (opt_policy_oids
!= NULL
)
1580 CMP_warn1("-policy_oids %s", msg
);
1582 if (opt_cmd
== CMP_KUR
) {
1583 char *ref_cert
= opt_oldcert
!= NULL
? opt_oldcert
: opt_cert
;
1585 if (ref_cert
== NULL
&& opt_csr
== NULL
) {
1586 CMP_err("missing -oldcert for certificate to be updated and no -csr given");
1589 if (opt_subject
!= NULL
)
1590 CMP_warn2("given -subject '%s' overrides the subject of '%s' for KUR",
1591 opt_subject
, ref_cert
!= NULL
? ref_cert
: opt_csr
);
1593 if (opt_cmd
== CMP_RR
) {
1594 if (opt_oldcert
== NULL
&& opt_csr
== NULL
) {
1595 CMP_err("missing -oldcert for certificate to be revoked and no -csr given");
1598 if (opt_oldcert
!= NULL
&& opt_csr
!= NULL
)
1599 CMP_warn("ignoring -csr since certificate to be revoked is given");
1601 if (opt_cmd
== CMP_P10CR
&& opt_csr
== NULL
) {
1602 CMP_err("missing PKCS#10 CSR for p10cr");
1606 if (opt_recipient
== NULL
&& opt_srvcert
== NULL
&& opt_issuer
== NULL
1607 && opt_oldcert
== NULL
&& opt_cert
== NULL
)
1608 CMP_warn("missing -recipient, -srvcert, -issuer, -oldcert or -cert; recipient will be set to \"NULL-DN\"");
1610 if (opt_cmd
== CMP_P10CR
|| opt_cmd
== CMP_RR
) {
1611 const char *msg
= "option is ignored for 'p10cr' and 'rr' commands";
1613 if (opt_newkeypass
!= NULL
)
1614 CMP_warn1("-newkeytype %s", msg
);
1615 if (opt_newkey
!= NULL
)
1616 CMP_warn1("-newkey %s", msg
);
1618 CMP_warn1("-days %s", msg
);
1619 if (opt_popo
!= OSSL_CRMF_POPO_NONE
- 1)
1620 CMP_warn1("-popo %s", msg
);
1621 } else if (opt_newkey
!= NULL
) {
1622 const char *file
= opt_newkey
;
1623 const int format
= opt_keyform
;
1624 const char *pass
= opt_newkeypass
;
1625 const char *desc
= "new private key for cert to be enrolled";
1628 BIO
*bio_bak
= bio_err
;
1630 bio_err
= NULL
; /* suppress diagnostics on first try loading key */
1631 pkey
= load_key_pwd(file
, format
, pass
, engine
, desc
);
1635 desc
= opt_csr
== NULL
1636 ? "fallback public key for cert to be enrolled"
1637 : "public key for checking cert resulting from p10cr";
1638 pkey
= load_pubkey(file
, format
, 0, pass
, engine
, desc
);
1641 cleanse(opt_newkeypass
);
1642 if (pkey
== NULL
|| !OSSL_CMP_CTX_set0_newPkey(ctx
, priv
, pkey
)) {
1643 EVP_PKEY_free(pkey
);
1649 && !OSSL_CMP_CTX_set_option(ctx
, OSSL_CMP_OPT_VALIDITY_DAYS
,
1651 CMP_err("could not set requested cert validity period");
1655 if (opt_policies
!= NULL
&& opt_policy_oids
!= NULL
) {
1656 CMP_err("cannot have policies both via -policies and via -policy_oids");
1660 if (opt_csr
!= NULL
) {
1661 if (opt_cmd
== CMP_GENM
) {
1662 CMP_warn("-csr option is ignored for command 'genm'");
1664 if ((csr
= load_csr_autofmt(opt_csr
, "PKCS#10 CSR")) == NULL
)
1666 if (!OSSL_CMP_CTX_set1_p10CSR(ctx
, csr
))
1670 if (opt_reqexts
!= NULL
|| opt_policies
!= NULL
) {
1671 if ((exts
= sk_X509_EXTENSION_new_null()) == NULL
)
1673 X509V3_set_ctx(&ext_ctx
, NULL
, NULL
, csr
, NULL
, X509V3_CTX_REPLACE
);
1674 X509V3_set_nconf(&ext_ctx
, conf
);
1675 if (opt_reqexts
!= NULL
1676 && !X509V3_EXT_add_nconf_sk(conf
, &ext_ctx
, opt_reqexts
, &exts
)) {
1677 CMP_err1("cannot load certificate request extension section '%s'",
1681 if (opt_policies
!= NULL
1682 && !X509V3_EXT_add_nconf_sk(conf
, &ext_ctx
, opt_policies
, &exts
)) {
1683 CMP_err1("cannot load policy cert request extension section '%s'",
1687 OSSL_CMP_CTX_set0_reqExtensions(ctx
, exts
);
1690 /* After here, must not goto oom/exts_err */
1692 if (OSSL_CMP_CTX_reqExtensions_have_SAN(ctx
) && opt_sans
!= NULL
) {
1693 CMP_err("cannot have Subject Alternative Names both via -reqexts and via -sans");
1696 if (!set_gennames(ctx
, opt_sans
, "Subject Alternative Name"))
1699 if (opt_san_nodefault
) {
1700 if (opt_sans
!= NULL
)
1701 CMP_warn("-opt_san_nodefault has no effect when -sans is used");
1702 (void)OSSL_CMP_CTX_set_option(ctx
,
1703 OSSL_CMP_OPT_SUBJECTALTNAME_NODEFAULT
, 1);
1706 if (opt_policy_oids_critical
) {
1707 if (opt_policy_oids
== NULL
)
1708 CMP_warn("-opt_policy_oids_critical has no effect unless -policy_oids is given");
1709 (void)OSSL_CMP_CTX_set_option(ctx
, OSSL_CMP_OPT_POLICIES_CRITICAL
, 1);
1712 while (opt_policy_oids
!= NULL
) {
1713 ASN1_OBJECT
*policy
;
1715 char *next
= next_item(opt_policy_oids
);
1717 if ((policy
= OBJ_txt2obj(opt_policy_oids
, 1)) == 0) {
1718 CMP_err1("unknown policy OID '%s'", opt_policy_oids
);
1722 if ((pinfo
= POLICYINFO_new()) == NULL
) {
1723 ASN1_OBJECT_free(policy
);
1726 pinfo
->policyid
= policy
;
1728 if (!OSSL_CMP_CTX_push0_policy(ctx
, pinfo
)) {
1729 CMP_err1("cannot add policy with OID '%s'", opt_policy_oids
);
1730 POLICYINFO_free(pinfo
);
1733 opt_policy_oids
= next
;
1736 if (opt_popo
>= OSSL_CRMF_POPO_NONE
)
1737 (void)OSSL_CMP_CTX_set_option(ctx
, OSSL_CMP_OPT_POPO_METHOD
, opt_popo
);
1739 if (opt_oldcert
!= NULL
) {
1740 if (opt_cmd
== CMP_GENM
) {
1741 CMP_warn("-oldcert option is ignored for command 'genm'");
1743 X509
*oldcert
= load_cert_pwd(opt_oldcert
, opt_keypass
,
1744 opt_cmd
== CMP_KUR
?
1745 "certificate to be updated" :
1747 "certificate to be revoked" :
1748 "reference certificate (oldcert)");
1749 /* opt_keypass needed if opt_oldcert is an encrypted PKCS#12 file */
1751 if (oldcert
== NULL
)
1753 if (!OSSL_CMP_CTX_set1_oldCert(ctx
, oldcert
)) {
1755 CMP_err("out of memory");
1761 cleanse(opt_keypass
);
1762 if (opt_revreason
> CRL_REASON_NONE
)
1763 (void)OSSL_CMP_CTX_set_option(ctx
, OSSL_CMP_OPT_REVOCATION_REASON
,
1769 CMP_err("out of memory");
1771 sk_X509_EXTENSION_pop_free(exts
, X509_EXTENSION_free
);
1776 static int handle_opt_geninfo(OSSL_CMP_CTX
*ctx
)
1782 OSSL_CMP_ITAV
*itav
;
1784 char *valptr
= strchr(opt_geninfo
, ':');
1786 if (valptr
== NULL
) {
1787 CMP_err("missing ':' in -geninfo option");
1793 if (OPENSSL_strncasecmp(valptr
, "int:", 4) != 0) {
1794 CMP_err("missing 'int:' in -geninfo option");
1799 value
= strtol(valptr
, &endstr
, 10);
1800 if (endstr
== valptr
|| *endstr
!= '\0') {
1801 CMP_err("cannot parse int in -geninfo option");
1805 type
= OBJ_txt2obj(opt_geninfo
, 1);
1807 CMP_err("cannot parse OID in -geninfo option");
1811 if ((aint
= ASN1_INTEGER_new()) == NULL
)
1814 val
= ASN1_TYPE_new();
1815 if (!ASN1_INTEGER_set(aint
, value
) || val
== NULL
) {
1816 ASN1_INTEGER_free(aint
);
1819 ASN1_TYPE_set(val
, V_ASN1_INTEGER
, aint
);
1820 itav
= OSSL_CMP_ITAV_create(type
, val
);
1822 ASN1_TYPE_free(val
);
1826 if (!OSSL_CMP_CTX_push0_geninfo_ITAV(ctx
, itav
)) {
1827 OSSL_CMP_ITAV_free(itav
);
1833 ASN1_OBJECT_free(type
);
1834 CMP_err("out of memory");
1840 * set up the client-side OSSL_CMP_CTX based on options from config file/CLI
1841 * while parsing options and checking their consistency.
1842 * Prints reason for error to bio_err.
1843 * Returns 1 on success, 0 on error
1845 static int setup_client_ctx(OSSL_CMP_CTX
*ctx
, ENGINE
*engine
)
1848 char *host
= NULL
, *port
= NULL
, *path
= NULL
, *used_path
= opt_path
;
1849 #ifndef OPENSSL_NO_SOCK
1851 static char server_port
[32] = { '\0' };
1852 const char *proxy_host
= NULL
;
1854 char server_buf
[200] = "mock server";
1855 char proxy_buf
[200] = "";
1857 if (!opt_use_mock_srv
&& opt_rspin
== NULL
) { /* note: -port is not given */
1858 #ifndef OPENSSL_NO_SOCK
1859 if (opt_server
== NULL
) {
1860 CMP_err("missing -server or -use_mock_srv or -rspin option");
1864 CMP_err("missing -use_mock_srv or -rspin option; -server option is not supported due to no-sock build");
1868 #ifndef OPENSSL_NO_SOCK
1869 if (opt_server
== NULL
) {
1870 if (opt_proxy
!= NULL
)
1871 CMP_warn("ignoring -proxy option since -server is not given");
1872 if (opt_no_proxy
!= NULL
)
1873 CMP_warn("ignoring -no_proxy option since -server is not given");
1875 CMP_warn("ignoring -tls_used option since -server is not given");
1880 if (!OSSL_HTTP_parse_url(opt_server
, &ssl
, NULL
/* user */, &host
, &port
,
1881 &portnum
, &path
, NULL
/* q */, NULL
/* frag */)) {
1882 CMP_err1("cannot parse -server URL: %s", opt_server
);
1885 if (ssl
&& !opt_tls_used
) {
1886 CMP_err("missing -tls_used option since -server URL indicates https");
1890 BIO_snprintf(server_port
, sizeof(server_port
), "%s", port
);
1891 if (opt_path
== NULL
)
1893 if (!OSSL_CMP_CTX_set1_server(ctx
, host
)
1894 || !OSSL_CMP_CTX_set_serverPort(ctx
, portnum
))
1896 if (opt_proxy
!= NULL
&& !OSSL_CMP_CTX_set1_proxy(ctx
, opt_proxy
))
1898 if (opt_no_proxy
!= NULL
&& !OSSL_CMP_CTX_set1_no_proxy(ctx
, opt_no_proxy
))
1900 (void)BIO_snprintf(server_buf
, sizeof(server_buf
), "http%s://%s:%s/%s",
1901 opt_tls_used
? "s" : "", host
, port
,
1902 *used_path
== '/' ? used_path
+ 1 : used_path
);
1904 proxy_host
= OSSL_HTTP_adapt_proxy(opt_proxy
, opt_no_proxy
, host
, ssl
);
1905 if (proxy_host
!= NULL
)
1906 (void)BIO_snprintf(proxy_buf
, sizeof(proxy_buf
), " via %s", proxy_host
);
1911 if (!OSSL_CMP_CTX_set1_serverPath(ctx
, used_path
))
1913 if (!transform_opts())
1916 if (opt_infotype_s
!= NULL
) {
1917 char id_buf
[100] = "id-it-";
1919 strncat(id_buf
, opt_infotype_s
, sizeof(id_buf
) - strlen(id_buf
) - 1);
1920 if ((opt_infotype
= OBJ_sn2nid(id_buf
)) == NID_undef
) {
1921 CMP_err("unknown OID name in -infotype option");
1926 if (!setup_verification_ctx(ctx
))
1929 if (opt_keep_alive
!= 1)
1930 (void)OSSL_CMP_CTX_set_option(ctx
, OSSL_CMP_OPT_KEEP_ALIVE
,
1932 if (opt_total_timeout
> 0 && opt_msg_timeout
> 0
1933 && opt_total_timeout
< opt_msg_timeout
) {
1934 CMP_err2("-total_timeout argument = %d must not be < %d (-msg_timeout)",
1935 opt_total_timeout
, opt_msg_timeout
);
1938 if (opt_msg_timeout
>= 0) /* must do this before setup_ssl_ctx() */
1939 (void)OSSL_CMP_CTX_set_option(ctx
, OSSL_CMP_OPT_MSG_TIMEOUT
,
1941 if (opt_total_timeout
>= 0)
1942 (void)OSSL_CMP_CTX_set_option(ctx
, OSSL_CMP_OPT_TOTAL_TIMEOUT
,
1945 if (opt_rspin
!= NULL
) {
1947 if (opt_reqin
!= NULL
)
1948 CMP_warn("-reqin is ignored since -rspin is present");
1950 if (opt_reqin_new_tid
&& opt_reqin
== NULL
)
1951 CMP_warn("-reqin_new_tid is ignored since -reqin is not present");
1952 if (opt_reqin
!= NULL
|| opt_reqout
!= NULL
1953 || opt_rspin
!= NULL
|| opt_rspout
!= NULL
|| opt_use_mock_srv
)
1954 (void)OSSL_CMP_CTX_set_transfer_cb(ctx
, read_write_req_resp
);
1956 #ifndef OPENSSL_NO_SOCK
1958 APP_HTTP_TLS_INFO
*info
;
1960 if (opt_tls_cert
!= NULL
1961 || opt_tls_key
!= NULL
|| opt_tls_keypass
!= NULL
) {
1962 if (opt_tls_key
== NULL
) {
1963 CMP_err("missing -tls_key option");
1965 } else if (opt_tls_cert
== NULL
) {
1966 CMP_err("missing -tls_cert option");
1971 if ((info
= OPENSSL_zalloc(sizeof(*info
))) == NULL
)
1973 (void)OSSL_CMP_CTX_set_http_cb_arg(ctx
, info
);
1974 info
->ssl_ctx
= setup_ssl_ctx(ctx
, host
, engine
);
1975 info
->server
= host
;
1976 host
= NULL
; /* prevent deallocation */
1977 if ((info
->port
= OPENSSL_strdup(server_port
)) == NULL
)
1979 /* workaround for callback design flaw, see #17088: */
1980 info
->use_proxy
= proxy_host
!= NULL
;
1981 info
->timeout
= OSSL_CMP_CTX_get_option(ctx
, OSSL_CMP_OPT_MSG_TIMEOUT
);
1983 if (info
->ssl_ctx
== NULL
)
1985 (void)OSSL_CMP_CTX_set_http_cb(ctx
, app_http_tls_cb
);
1989 if (!setup_protection_ctx(ctx
, engine
))
1992 if (!setup_request_ctx(ctx
, engine
))
1995 if (!set_name(opt_recipient
, OSSL_CMP_CTX_set1_recipient
, ctx
, "recipient")
1996 || !set_name(opt_expect_sender
, OSSL_CMP_CTX_set1_expected_sender
,
1997 ctx
, "expected sender"))
2000 if (opt_geninfo
!= NULL
&& !handle_opt_geninfo(ctx
))
2003 /* not printing earlier, to minimize confusion in case setup fails before */
2004 if (opt_rspin
!= NULL
)
2005 CMP_info2("will contact %s%s "
2006 "only if -rspin argument gives too few filenames",
2007 server_buf
, proxy_buf
);
2009 CMP_info2("will contact %s%s", server_buf
, proxy_buf
);
2019 CMP_err("out of memory");
2024 * write out the given certificate to the output specified by bio.
2025 * Depending on options use either PEM or DER format.
2026 * Returns 1 on success, 0 on error
2028 static int write_cert(BIO
*bio
, X509
*cert
)
2030 if ((opt_certform
== FORMAT_PEM
&& PEM_write_bio_X509(bio
, cert
))
2031 || (opt_certform
== FORMAT_ASN1
&& i2d_X509_bio(bio
, cert
)))
2033 if (opt_certform
!= FORMAT_PEM
&& opt_certform
!= FORMAT_ASN1
)
2035 "error: unsupported type '%s' for writing certificates\n",
2041 * If destFile != NULL writes out a stack of certs to the given file.
2042 * In any case frees the certs.
2043 * Depending on options use either PEM or DER format,
2044 * where DER does not make much sense for writing more than one cert!
2045 * Returns number of written certificates on success, -1 on error.
2047 static int save_free_certs(OSSL_CMP_CTX
*ctx
,
2048 STACK_OF(X509
) *certs
, char *destFile
, char *desc
)
2052 int n
= sk_X509_num(certs
);
2054 if (destFile
== NULL
)
2056 CMP_info3("received %d %s certificate(s), saving to file '%s'",
2058 if (n
> 1 && opt_certform
!= FORMAT_PEM
)
2059 CMP_warn("saving more than one certificate in non-PEM format");
2061 if (destFile
== NULL
|| (bio
= BIO_new(BIO_s_file())) == NULL
2062 || !BIO_write_filename(bio
, (char *)destFile
)) {
2063 CMP_err1("could not open file '%s' for writing", destFile
);
2068 for (i
= 0; i
< n
; i
++) {
2069 if (!write_cert(bio
, sk_X509_value(certs
, i
))) {
2070 CMP_err1("cannot write certificate to file '%s'", destFile
);
2078 sk_X509_pop_free(certs
, X509_free
);
2082 static void print_itavs(STACK_OF(OSSL_CMP_ITAV
) *itavs
)
2084 OSSL_CMP_ITAV
*itav
= NULL
;
2087 int n
= sk_OSSL_CMP_ITAV_num(itavs
); /* itavs == NULL leads to 0 */
2090 CMP_info("genp contains no ITAV");
2094 for (i
= 0; i
< n
; i
++) {
2095 itav
= sk_OSSL_CMP_ITAV_value(itavs
, i
);
2096 r
= OBJ_obj2txt(buf
, 128, OSSL_CMP_ITAV_get0_type(itav
), 0);
2098 CMP_err("could not get ITAV details");
2100 CMP_info("genp contains empty ITAV");
2102 CMP_info1("genp contains ITAV of type: %s", buf
);
2106 static char opt_item
[SECTION_NAME_MAX
+ 1];
2107 /* get previous name from a comma or space-separated list of names */
2108 static const char *prev_item(const char *opt
, const char *end
)
2118 if (beg
[0] == ',' || isspace(_UC(beg
[0]))) {
2124 if (len
> SECTION_NAME_MAX
) {
2125 CMP_warn3("using only first %d characters of section name starting with \"%.*s\"",
2126 SECTION_NAME_MAX
, SECTION_NAME_MAX
, beg
);
2127 len
= SECTION_NAME_MAX
;
2129 memcpy(opt_item
, beg
, len
);
2130 opt_item
[len
] = '\0';
2133 if (beg
[0] != ',' && !isspace(_UC(beg
[0]))) {
2141 /* get str value for name from a comma-separated hierarchy of config sections */
2142 static char *conf_get_string(const CONF
*src_conf
, const char *groups
,
2146 const char *end
= groups
+ strlen(groups
);
2148 while ((end
= prev_item(groups
, end
)) != NULL
) {
2149 if ((res
= NCONF_get_string(src_conf
, opt_item
, name
)) != NULL
)
2156 /* get long val for name from a comma-separated hierarchy of config sections */
2157 static int conf_get_number_e(const CONF
*conf_
, const char *groups
,
2158 const char *name
, long *result
)
2160 char *str
= conf_get_string(conf_
, groups
, name
);
2164 if (str
== NULL
|| *str
== '\0')
2167 res
= strtol(str
, &tailptr
, 10);
2168 if (res
== LONG_MIN
|| res
== LONG_MAX
|| *tailptr
!= '\0')
2176 * use the command line option table to read values from the CMP section
2177 * of openssl.cnf. Defaults are taken from the config file, they can be
2178 * overwritten on the command line.
2180 static int read_config(void)
2186 int start_opt
= OPT_VERBOSITY
- OPT_HELP
;
2187 int start_idx
= OPT_VERBOSITY
- 2;
2189 * starting with offset OPT_VERBOSITY because OPT_CONFIG and OPT_SECTION
2190 * would not make sense within the config file.
2192 int n_options
= OSSL_NELEM(cmp_options
) - 1;
2194 for (opt
= &cmp_options
[start_opt
], i
= start_idx
;
2195 opt
->name
!= NULL
; i
++, opt
++)
2196 if (!strcmp(opt
->name
, OPT_SECTION_STR
)
2197 || !strcmp(opt
->name
, OPT_MORE_STR
))
2199 OPENSSL_assert(OSSL_NELEM(cmp_vars
) == n_options
2200 + OPT_PROV__FIRST
+ 1 - OPT_PROV__LAST
2201 + OPT_R__FIRST
+ 1 - OPT_R__LAST
2202 + OPT_V__FIRST
+ 1 - OPT_V__LAST
);
2203 for (opt
= &cmp_options
[start_opt
], i
= start_idx
;
2204 opt
->name
!= NULL
; i
++, opt
++) {
2205 int provider_option
= (OPT_PROV__FIRST
<= opt
->retval
2206 && opt
->retval
< OPT_PROV__LAST
);
2207 int rand_state_option
= (OPT_R__FIRST
<= opt
->retval
2208 && opt
->retval
< OPT_R__LAST
);
2209 int verification_option
= (OPT_V__FIRST
<= opt
->retval
2210 && opt
->retval
< OPT_V__LAST
);
2212 if (strcmp(opt
->name
, OPT_SECTION_STR
) == 0
2213 || strcmp(opt
->name
, OPT_MORE_STR
) == 0) {
2217 if (provider_option
|| rand_state_option
|| verification_option
)
2219 switch (opt
->valtype
) {
2225 if (!conf_get_number_e(conf
, opt_section
, opt
->name
, &num
)) {
2227 continue; /* option not provided */
2229 if (opt
->valtype
== 'p' && num
<= 0) {
2230 opt_printf_stderr("Non-positive number \"%ld\" for config option -%s\n",
2234 if (opt
->valtype
== 'N' && num
< 0) {
2235 opt_printf_stderr("Negative number \"%ld\" for config option -%s\n",
2243 txt
= conf_get_string(conf
, opt_section
, opt
->name
);
2246 continue; /* option not provided */
2250 CMP_err2("internal: unsupported type '%c' for option '%s'",
2251 opt
->valtype
, opt
->name
);
2255 if (provider_option
|| verification_option
) {
2260 BIO_snprintf(arg1
, 81, "-%s", (char *)opt
->name
);
2261 conf_argv
[0] = prog
;
2262 conf_argv
[1] = arg1
;
2263 if (opt
->valtype
== '-') {
2268 conf_argv
[2] = conf_get_string(conf
, opt_section
, opt
->name
);
2271 if (conf_argc
> 1) {
2272 (void)opt_init(conf_argc
, conf_argv
, cmp_options
);
2275 ? !opt_provider(opt_next())
2276 : !opt_verify(opt_next(), vpm
)) {
2277 CMP_err2("for option '%s' in config file section '%s'",
2278 opt
->name
, opt_section
);
2283 switch (opt
->valtype
) {
2288 if (num
< INT_MIN
|| INT_MAX
< num
) {
2290 "integer value out of range for option '%s'\n",
2294 *cmp_vars
[i
].num
= (int)num
;
2297 *cmp_vars
[i
].num_long
= num
;
2300 if (txt
!= NULL
&& txt
[0] == '\0')
2301 txt
= NULL
; /* reset option on empty string input */
2302 *cmp_vars
[i
].txt
= txt
;
2311 static char *opt_str(void)
2313 char *arg
= opt_arg();
2315 if (arg
[0] == '\0') {
2316 CMP_warn1("%s option argument is empty string, resetting option",
2319 } else if (arg
[0] == '-') {
2320 CMP_warn1("%s option argument starts with hyphen", opt_flag());
2325 /* returns 1 on success, 0 on error, -1 on -help (i.e., stop with success) */
2326 static int get_opts(int argc
, char **argv
)
2330 prog
= opt_init(argc
, argv
, cmp_options
);
2332 while ((o
= opt_next()) != OPT_EOF
) {
2337 BIO_printf(bio_err
, "%s: Use -help for summary.\n", prog
);
2340 opt_help(cmp_options
);
2342 case OPT_CONFIG
: /* has already been handled */
2343 case OPT_SECTION
: /* has already been handled */
2346 if (!set_verbosity(opt_int_arg()))
2349 #ifndef OPENSSL_NO_SOCK
2351 opt_server
= opt_str();
2354 opt_proxy
= opt_str();
2357 opt_no_proxy
= opt_str();
2361 opt_recipient
= opt_str();
2364 opt_path
= opt_str();
2366 case OPT_KEEP_ALIVE
:
2367 opt_keep_alive
= opt_int_arg();
2368 if (opt_keep_alive
> 2) {
2369 CMP_err("-keep_alive argument must be 0, 1, or 2");
2373 case OPT_MSG_TIMEOUT
:
2374 opt_msg_timeout
= opt_int_arg();
2376 case OPT_TOTAL_TIMEOUT
:
2377 opt_total_timeout
= opt_int_arg();
2379 #ifndef OPENSSL_NO_SOCK
2384 opt_tls_cert
= opt_str();
2387 opt_tls_key
= opt_str();
2389 case OPT_TLS_KEYPASS
:
2390 opt_tls_keypass
= opt_str();
2393 opt_tls_extra
= opt_str();
2395 case OPT_TLS_TRUSTED
:
2396 opt_tls_trusted
= opt_str();
2399 opt_tls_host
= opt_str();
2404 opt_ref
= opt_str();
2407 opt_secret
= opt_str();
2410 opt_cert
= opt_str();
2412 case OPT_OWN_TRUSTED
:
2413 opt_own_trusted
= opt_str();
2416 opt_key
= opt_str();
2419 opt_keypass
= opt_str();
2422 opt_digest
= opt_str();
2425 opt_mac
= opt_str();
2427 case OPT_EXTRACERTS
:
2428 opt_extracerts
= opt_str();
2430 case OPT_UNPROTECTED_REQUESTS
:
2431 opt_unprotected_requests
= 1;
2435 opt_trusted
= opt_str();
2438 opt_untrusted
= opt_str();
2441 opt_srvcert
= opt_str();
2443 case OPT_EXPECT_SENDER
:
2444 opt_expect_sender
= opt_str();
2446 case OPT_IGNORE_KEYUSAGE
:
2447 opt_ignore_keyusage
= 1;
2449 case OPT_UNPROTECTED_ERRORS
:
2450 opt_unprotected_errors
= 1;
2452 case OPT_EXTRACERTSOUT
:
2453 opt_extracertsout
= opt_str();
2455 case OPT_CACERTSOUT
:
2456 opt_cacertsout
= opt_str();
2460 if (!opt_verify(o
, vpm
))
2464 opt_cmd_s
= opt_str();
2467 opt_infotype_s
= opt_str();
2470 opt_geninfo
= opt_str();
2474 opt_newkey
= opt_str();
2476 case OPT_NEWKEYPASS
:
2477 opt_newkeypass
= opt_str();
2480 opt_subject
= opt_str();
2483 opt_issuer
= opt_str();
2486 opt_days
= opt_int_arg();
2489 opt_reqexts
= opt_str();
2492 opt_sans
= opt_str();
2494 case OPT_SAN_NODEFAULT
:
2495 opt_san_nodefault
= 1;
2498 opt_policies
= opt_str();
2500 case OPT_POLICY_OIDS
:
2501 opt_policy_oids
= opt_str();
2503 case OPT_POLICY_OIDS_CRITICAL
:
2504 opt_policy_oids_critical
= 1;
2507 opt_popo
= opt_int_arg();
2508 if (opt_popo
< OSSL_CRMF_POPO_NONE
2509 || opt_popo
> OSSL_CRMF_POPO_KEYENC
) {
2510 CMP_err("invalid popo spec. Valid values are -1 .. 2");
2515 opt_csr
= opt_str();
2517 case OPT_OUT_TRUSTED
:
2518 opt_out_trusted
= opt_str();
2520 case OPT_IMPLICIT_CONFIRM
:
2521 opt_implicit_confirm
= 1;
2523 case OPT_DISABLE_CONFIRM
:
2524 opt_disable_confirm
= 1;
2527 opt_certout
= opt_str();
2530 opt_chainout
= opt_str();
2533 opt_oldcert
= opt_str();
2536 opt_revreason
= opt_int_arg();
2537 if (opt_revreason
< CRL_REASON_NONE
2538 || opt_revreason
> CRL_REASON_AA_COMPROMISE
2539 || opt_revreason
== 7) {
2540 CMP_err("invalid revreason. Valid values are -1 .. 6, 8 .. 10");
2545 opt_certform_s
= opt_str();
2548 opt_keyform_s
= opt_str();
2551 opt_otherpass
= opt_str();
2553 #ifndef OPENSSL_NO_ENGINE
2555 opt_engine
= opt_str();
2558 case OPT_PROV_CASES
:
2559 if (!opt_provider(o
))
2571 opt_repeat
= opt_int_arg();
2574 opt_reqin
= opt_str();
2576 case OPT_REQIN_NEW_TID
:
2577 opt_reqin_new_tid
= 1;
2580 opt_reqout
= opt_str();
2583 opt_rspin
= opt_str();
2586 opt_rspout
= opt_str();
2588 case OPT_USE_MOCK_SRV
:
2589 opt_use_mock_srv
= 1;
2592 #ifndef OPENSSL_NO_SOCK
2594 opt_port
= opt_str();
2597 opt_max_msgs
= opt_int_arg();
2601 opt_srv_ref
= opt_str();
2603 case OPT_SRV_SECRET
:
2604 opt_srv_secret
= opt_str();
2607 opt_srv_cert
= opt_str();
2610 opt_srv_key
= opt_str();
2612 case OPT_SRV_KEYPASS
:
2613 opt_srv_keypass
= opt_str();
2615 case OPT_SRV_TRUSTED
:
2616 opt_srv_trusted
= opt_str();
2618 case OPT_SRV_UNTRUSTED
:
2619 opt_srv_untrusted
= opt_str();
2622 opt_rsp_cert
= opt_str();
2624 case OPT_RSP_EXTRACERTS
:
2625 opt_rsp_extracerts
= opt_str();
2627 case OPT_RSP_CAPUBS
:
2628 opt_rsp_capubs
= opt_str();
2630 case OPT_POLL_COUNT
:
2631 opt_poll_count
= opt_int_arg();
2633 case OPT_CHECK_AFTER
:
2634 opt_check_after
= opt_int_arg();
2636 case OPT_GRANT_IMPLICITCONF
:
2637 opt_grant_implicitconf
= 1;
2640 opt_pkistatus
= opt_int_arg();
2643 opt_failure
= opt_int_arg();
2645 case OPT_FAILUREBITS
:
2646 opt_failurebits
= opt_int_arg();
2648 case OPT_STATUSSTRING
:
2649 opt_statusstring
= opt_str();
2651 case OPT_SEND_ERROR
:
2654 case OPT_SEND_UNPROTECTED
:
2655 opt_send_unprotected
= 1;
2657 case OPT_SEND_UNPROT_ERR
:
2658 opt_send_unprot_err
= 1;
2660 case OPT_ACCEPT_UNPROTECTED
:
2661 opt_accept_unprotected
= 1;
2663 case OPT_ACCEPT_UNPROT_ERR
:
2664 opt_accept_unprot_err
= 1;
2666 case OPT_ACCEPT_RAVERIFIED
:
2667 opt_accept_raverified
= 1;
2672 /* No extra args. */
2673 argc
= opt_num_rest();
2680 #ifndef OPENSSL_NO_SOCK
2681 static int cmp_server(OSSL_CMP_CTX
*srv_cmp_ctx
) {
2689 if ((acbio
= http_server_init_bio(prog
, opt_port
)) == NULL
)
2691 while (opt_max_msgs
<= 0 || msgs
< opt_max_msgs
) {
2693 OSSL_CMP_MSG
*req
= NULL
;
2694 OSSL_CMP_MSG
*resp
= NULL
;
2696 ret
= http_server_get_asn1_req(ASN1_ITEM_rptr(OSSL_CMP_MSG
),
2697 (ASN1_VALUE
**)&req
, &path
,
2698 &cbio
, acbio
, &keep_alive
,
2699 prog
, opt_port
, 0, 0);
2700 if (ret
== 0) { /* no request yet */
2709 if (ret
++ == -1) /* fatal error */
2715 if (strcmp(path
, "") != 0 && strcmp(path
, "pkix/") != 0) {
2716 (void)http_server_send_status(cbio
, 404, "Not Found");
2717 CMP_err1("expecting empty path or 'pkix/' but got '%s'",
2720 OSSL_CMP_MSG_free(req
);
2724 resp
= OSSL_CMP_CTX_server_perform(cmp_ctx
, req
);
2725 OSSL_CMP_MSG_free(req
);
2727 (void)http_server_send_status(cbio
,
2728 500, "Internal Server Error");
2729 break; /* treated as fatal error */
2731 ret
= http_server_send_asn1_resp(cbio
, keep_alive
,
2732 "application/pkixcmp",
2733 ASN1_ITEM_rptr(OSSL_CMP_MSG
),
2734 (const ASN1_VALUE
*)resp
);
2735 OSSL_CMP_MSG_free(resp
);
2737 break; /* treated as fatal error */
2740 if (!ret
) { /* on transmission error, cancel CMP transaction */
2741 (void)OSSL_CMP_CTX_set1_transactionID(srv_cmp_ctx
, NULL
);
2742 (void)OSSL_CMP_CTX_set1_senderNonce(srv_cmp_ctx
, NULL
);
2744 if (!ret
|| !keep_alive
2745 || OSSL_CMP_CTX_get_status(srv_cmp_ctx
) != OSSL_CMP_PKISTATUS_trans
2746 /* transaction closed by OSSL_CMP_CTX_server_perform() */) {
2753 BIO_free_all(acbio
);
2758 static void print_status(void)
2760 /* print PKIStatusInfo */
2761 int status
= OSSL_CMP_CTX_get_status(cmp_ctx
);
2762 char *buf
= app_malloc(OSSL_CMP_PKISI_BUFLEN
, "PKIStatusInfo buf");
2763 const char *string
=
2764 OSSL_CMP_CTX_snprint_PKIStatus(cmp_ctx
, buf
, OSSL_CMP_PKISI_BUFLEN
);
2765 const char *from
= "", *server
= "";
2767 #ifndef OPENSSL_NO_SOCK
2768 if (opt_server
!= NULL
) {
2770 server
= opt_server
;
2774 status
== OSSL_CMP_PKISTATUS_accepted
2775 ? OSSL_CMP_LOG_INFO
:
2776 status
== OSSL_CMP_PKISTATUS_rejection
2777 || status
== OSSL_CMP_PKISTATUS_waiting
2778 ? OSSL_CMP_LOG_ERR
: OSSL_CMP_LOG_WARNING
,
2779 status
== OSSL_CMP_PKISTATUS_accepted
? "info" :
2780 status
== OSSL_CMP_PKISTATUS_rejection
? "server error" :
2781 status
== OSSL_CMP_PKISTATUS_waiting
? "internal error"
2782 : "warning", "received%s%s %s", from
, server
,
2783 string
!= NULL
? string
: "<unknown PKIStatus>");
2787 int cmp_main(int argc
, char **argv
)
2789 char *configfile
= NULL
;
2791 X509
*newcert
= NULL
;
2792 ENGINE
*engine
= NULL
;
2793 OSSL_CMP_CTX
*srv_cmp_ctx
= NULL
;
2794 int ret
= 0; /* default: failure */
2796 prog
= opt_appname(argv
[0]);
2798 opt_help(cmp_options
);
2803 * handle options -config, -section, and -verbosity upfront
2804 * to take effect for other options
2806 for (i
= 1; i
< argc
- 1; i
++) {
2807 if (*argv
[i
] == '-') {
2808 if (!strcmp(argv
[i
] + 1, cmp_options
[OPT_CONFIG
- OPT_HELP
].name
))
2809 opt_config
= argv
[++i
];
2810 else if (!strcmp(argv
[i
] + 1,
2811 cmp_options
[OPT_SECTION
- OPT_HELP
].name
))
2812 opt_section
= argv
[++i
];
2813 else if (strcmp(argv
[i
] + 1,
2814 cmp_options
[OPT_VERBOSITY
- OPT_HELP
].name
) == 0
2815 && !set_verbosity(atoi(argv
[++i
])))
2819 if (opt_section
[0] == '\0') /* empty string */
2820 opt_section
= DEFAULT_SECTION
;
2822 vpm
= X509_VERIFY_PARAM_new();
2824 CMP_err("out of memory");
2828 /* read default values for options from config file */
2829 configfile
= opt_config
!= NULL
? opt_config
: default_config_file
;
2830 if (configfile
!= NULL
&& configfile
[0] != '\0' /* non-empty string */
2831 && (configfile
!= default_config_file
|| access(configfile
, F_OK
) != -1)) {
2832 CMP_info2("using section(s) '%s' of OpenSSL configuration file '%s'",
2833 opt_section
, configfile
);
2834 conf
= app_load_config(configfile
);
2838 if (strcmp(opt_section
, CMP_SECTION
) == 0) { /* default */
2839 if (!NCONF_get_section(conf
, opt_section
))
2840 CMP_info2("no [%s] section found in config file '%s';"
2841 " will thus use just [default] and unnamed section if present",
2842 opt_section
, configfile
);
2844 const char *end
= opt_section
+ strlen(opt_section
);
2845 while ((end
= prev_item(opt_section
, end
)) != NULL
) {
2846 if (!NCONF_get_section(conf
, opt_item
)) {
2847 CMP_err2("no [%s] section found in config file '%s'",
2848 opt_item
, configfile
);
2853 ret
= read_config();
2854 if (!set_verbosity(opt_verbosity
)) /* just for checking range */
2858 BIO_printf(bio_err
, "Use -help for summary.\n");
2863 (void)BIO_flush(bio_err
); /* prevent interference with opt_help() */
2865 ret
= get_opts(argc
, argv
);
2869 if (!app_RAND_load())
2873 set_base_ui_method(UI_null());
2875 if (opt_engine
!= NULL
) {
2876 engine
= setup_engine_methods(opt_engine
, 0 /* not: ENGINE_METHOD_ALL */, 0);
2877 if (engine
== NULL
) {
2878 CMP_err1("cannot load engine %s", opt_engine
);
2883 cmp_ctx
= OSSL_CMP_CTX_new(app_get0_libctx(), app_get0_propq());
2884 if (cmp_ctx
== NULL
)
2886 OSSL_CMP_CTX_set_log_verbosity(cmp_ctx
, opt_verbosity
);
2887 if (!OSSL_CMP_CTX_set_log_cb(cmp_ctx
, print_to_bio_out
)) {
2888 CMP_err1("cannot set up error reporting and logging for %s", prog
);
2892 #ifndef OPENSSL_NO_SOCK
2893 if ((opt_tls_cert
!= NULL
|| opt_tls_key
!= NULL
2894 || opt_tls_keypass
!= NULL
|| opt_tls_extra
!= NULL
2895 || opt_tls_trusted
!= NULL
|| opt_tls_host
!= NULL
)
2897 CMP_warn("Ingnoring TLS options(s) since -tls_used is not given");
2898 if (opt_port
!= NULL
) {
2900 CMP_err("-tls_used option not supported with -port option");
2903 if (opt_server
!= NULL
|| opt_use_mock_srv
) {
2904 CMP_err("The -port option excludes -server and -use_mock_srv");
2907 if (opt_reqin
!= NULL
|| opt_reqout
!= NULL
) {
2908 CMP_err("The -port option does not support -reqin and -reqout");
2911 if (opt_rspin
!= NULL
|| opt_rspout
!= NULL
) {
2912 CMP_err("The -port option does not support -rspin and -rspout");
2916 if (opt_server
!= NULL
&& opt_use_mock_srv
) {
2917 CMP_err("cannot use both -server and -use_mock_srv options");
2922 if (opt_use_mock_srv
2923 #ifndef OPENSSL_NO_SOCK
2927 OSSL_CMP_SRV_CTX
*srv_ctx
;
2929 if ((srv_ctx
= setup_srv_ctx(engine
)) == NULL
)
2931 srv_cmp_ctx
= OSSL_CMP_SRV_CTX_get0_cmp_ctx(srv_ctx
);
2932 OSSL_CMP_CTX_set_transfer_cb_arg(cmp_ctx
, srv_ctx
);
2933 if (!OSSL_CMP_CTX_set_log_cb(srv_cmp_ctx
, print_to_bio_err
)) {
2934 CMP_err1("cannot set up error reporting and logging for %s", prog
);
2937 OSSL_CMP_CTX_set_log_verbosity(srv_cmp_ctx
, opt_verbosity
);
2940 #ifndef OPENSSL_NO_SOCK
2941 if (opt_tls_used
&& (opt_use_mock_srv
|| opt_server
== NULL
)) {
2942 CMP_warn("ignoring -tls_used option since -use_mock_srv is given or -server is not given");
2946 if (opt_port
!= NULL
) { /* act as very basic CMP HTTP server */
2947 ret
= cmp_server(srv_cmp_ctx
);
2951 /* act as CMP client, possibly using internal mock server */
2953 if (opt_rspin
!= NULL
) {
2954 if (opt_server
!= NULL
)
2955 CMP_warn("-server option is not used if enough filenames given for -rspin");
2956 if (opt_use_mock_srv
)
2957 CMP_warn("-use_mock_srv option is not used if enough filenames given for -rspin");
2961 if (!setup_client_ctx(cmp_ctx
, engine
)) {
2962 CMP_err("cannot set up CMP context");
2965 for (i
= 0; i
< opt_repeat
; i
++) {
2966 /* everything is ready, now connect and perform the command! */
2969 newcert
= OSSL_CMP_exec_IR_ses(cmp_ctx
);
2970 if (newcert
!= NULL
)
2974 newcert
= OSSL_CMP_exec_KUR_ses(cmp_ctx
);
2975 if (newcert
!= NULL
)
2979 newcert
= OSSL_CMP_exec_CR_ses(cmp_ctx
);
2980 if (newcert
!= NULL
)
2984 newcert
= OSSL_CMP_exec_P10CR_ses(cmp_ctx
);
2985 if (newcert
!= NULL
)
2989 ret
= OSSL_CMP_exec_RR_ses(cmp_ctx
);
2993 STACK_OF(OSSL_CMP_ITAV
) *itavs
;
2995 if (opt_infotype
!= NID_undef
) {
2996 OSSL_CMP_ITAV
*itav
=
2997 OSSL_CMP_ITAV_create(OBJ_nid2obj(opt_infotype
), NULL
);
3000 OSSL_CMP_CTX_push0_genm_ITAV(cmp_ctx
, itav
);
3003 if ((itavs
= OSSL_CMP_exec_GENM_ses(cmp_ctx
)) != NULL
) {
3005 sk_OSSL_CMP_ITAV_pop_free(itavs
, OSSL_CMP_ITAV_free
);
3013 if (OSSL_CMP_CTX_get_status(cmp_ctx
) < OSSL_CMP_PKISTATUS_accepted
)
3014 goto err
; /* we got no response, maybe even did not send request */
3017 if (save_free_certs(cmp_ctx
, OSSL_CMP_CTX_get1_extraCertsIn(cmp_ctx
),
3018 opt_extracertsout
, "extra") < 0)
3023 if (save_free_certs(cmp_ctx
, OSSL_CMP_CTX_get1_caPubs(cmp_ctx
),
3024 opt_cacertsout
, "CA") < 0)
3026 if (newcert
!= NULL
) {
3027 STACK_OF(X509
) *certs
= sk_X509_new_null();
3029 if (!X509_add_cert(certs
, newcert
, X509_ADD_FLAG_UP_REF
)) {
3030 sk_X509_free(certs
);
3033 if (save_free_certs(cmp_ctx
, certs
, opt_certout
, "enrolled") < 0)
3036 if (save_free_certs(cmp_ctx
, OSSL_CMP_CTX_get1_newChain(cmp_ctx
),
3037 opt_chainout
, "chain") < 0)
3040 if (!OSSL_CMP_CTX_reinit(cmp_ctx
))
3046 /* in case we ended up here on error without proper cleaning */
3047 cleanse(opt_keypass
);
3048 cleanse(opt_newkeypass
);
3049 cleanse(opt_otherpass
);
3050 #ifndef OPENSSL_NO_SOCK
3051 cleanse(opt_tls_keypass
);
3053 cleanse(opt_secret
);
3054 cleanse(opt_srv_keypass
);
3055 cleanse(opt_srv_secret
);
3058 OSSL_CMP_CTX_print_errors(cmp_ctx
);
3060 if (cmp_ctx
!= NULL
) {
3061 #ifndef OPENSSL_NO_SOCK
3062 APP_HTTP_TLS_INFO
*info
= OSSL_CMP_CTX_get_http_cb_arg(cmp_ctx
);
3065 ossl_cmp_mock_srv_free(OSSL_CMP_CTX_get_transfer_cb_arg(cmp_ctx
));
3066 X509_STORE_free(OSSL_CMP_CTX_get_certConf_cb_arg(cmp_ctx
));
3067 /* cannot free info already here, as it may be used indirectly by: */
3068 OSSL_CMP_CTX_free(cmp_ctx
);
3069 #ifndef OPENSSL_NO_SOCK
3071 OPENSSL_free((char *)info
->server
);
3072 OPENSSL_free((char *)info
->port
);
3073 APP_HTTP_TLS_INFO_free(info
);
3077 X509_VERIFY_PARAM_free(vpm
);
3078 release_engine(engine
);
3080 NCONF_free(conf
); /* must not do as long as opt_... variables are used */
3081 OSSL_CMP_log_close();
3083 return ret
== 0 ? EXIT_FAILURE
: EXIT_SUCCESS
; /* ret == -1 for -help */