2 * Copyright 1995-2025 The OpenSSL Project Authors. All Rights Reserved.
4 * Licensed under the Apache License 2.0 (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
11 * callback functions used by s_client, s_server, and s_time,
12 * as well as other common logic for those apps
16 #include <string.h> /* for memcpy() and strcmp() */
18 #include <openssl/core_names.h>
19 #include <openssl/params.h>
20 #include <openssl/err.h>
21 #include <openssl/rand.h>
22 #include <openssl/x509.h>
23 #include <openssl/ssl.h>
24 #include <openssl/bn.h>
26 # include <openssl/dh.h>
30 #define COOKIE_SECRET_LENGTH 16
32 VERIFY_CB_ARGS verify_args
= { -1, 0, X509_V_OK
, 0 };
34 #ifndef OPENSSL_NO_SOCK
35 static unsigned char cookie_secret
[COOKIE_SECRET_LENGTH
];
36 static int cookie_initialized
= 0;
38 static BIO
*bio_keylog
= NULL
;
40 static const char *lookup(int val
, const STRINT_PAIR
* list
, const char* def
)
42 for ( ; list
->name
; ++list
)
43 if (list
->retval
== val
)
48 int verify_callback(int ok
, X509_STORE_CTX
*ctx
)
53 err_cert
= X509_STORE_CTX_get_current_cert(ctx
);
54 err
= X509_STORE_CTX_get_error(ctx
);
55 depth
= X509_STORE_CTX_get_error_depth(ctx
);
57 if (!verify_args
.quiet
|| !ok
) {
58 BIO_printf(bio_err
, "depth=%d ", depth
);
59 if (err_cert
!= NULL
) {
60 X509_NAME_print_ex(bio_err
,
61 X509_get_subject_name(err_cert
),
63 BIO_puts(bio_err
, "\n");
65 BIO_puts(bio_err
, "<no cert>\n");
69 BIO_printf(bio_err
, "verify error:num=%d:%s\n", err
,
70 X509_verify_cert_error_string(err
));
71 if (verify_args
.depth
< 0 || verify_args
.depth
>= depth
) {
72 if (!verify_args
.return_error
)
74 verify_args
.error
= err
;
77 verify_args
.error
= X509_V_ERR_CERT_CHAIN_TOO_LONG
;
81 case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT
:
82 if (err_cert
!= NULL
) {
83 BIO_puts(bio_err
, "issuer= ");
84 X509_NAME_print_ex(bio_err
, X509_get_issuer_name(err_cert
),
86 BIO_puts(bio_err
, "\n");
89 case X509_V_ERR_CERT_NOT_YET_VALID
:
90 case X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD
:
91 if (err_cert
!= NULL
) {
92 BIO_printf(bio_err
, "notBefore=");
93 ASN1_TIME_print(bio_err
, X509_get0_notBefore(err_cert
));
94 BIO_printf(bio_err
, "\n");
97 case X509_V_ERR_CERT_HAS_EXPIRED
:
98 case X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD
:
99 if (err_cert
!= NULL
) {
100 BIO_printf(bio_err
, "notAfter=");
101 ASN1_TIME_print(bio_err
, X509_get0_notAfter(err_cert
));
102 BIO_printf(bio_err
, "\n");
105 case X509_V_ERR_NO_EXPLICIT_POLICY
:
106 if (!verify_args
.quiet
)
110 if (err
== X509_V_OK
&& ok
== 2 && !verify_args
.quiet
)
112 if (ok
&& !verify_args
.quiet
)
113 BIO_printf(bio_err
, "verify return:%d\n", ok
);
117 int set_cert_stuff(SSL_CTX
*ctx
, char *cert_file
, char *key_file
)
119 if (cert_file
!= NULL
) {
120 if (SSL_CTX_use_certificate_file(ctx
, cert_file
,
121 SSL_FILETYPE_PEM
) <= 0) {
122 BIO_printf(bio_err
, "unable to get certificate from '%s'\n",
124 ERR_print_errors(bio_err
);
127 if (key_file
== NULL
)
128 key_file
= cert_file
;
129 if (SSL_CTX_use_PrivateKey_file(ctx
, key_file
, SSL_FILETYPE_PEM
) <= 0) {
130 BIO_printf(bio_err
, "unable to get private key from '%s'\n",
132 ERR_print_errors(bio_err
);
137 * If we are using DSA, we can copy the parameters from the private
142 * Now we know that a key and cert have been set against the SSL
145 if (!SSL_CTX_check_private_key(ctx
)) {
147 "Private key does not match the certificate public key\n");
154 int set_cert_key_stuff(SSL_CTX
*ctx
, X509
*cert
, EVP_PKEY
*key
,
155 STACK_OF(X509
) *chain
, int build_chain
)
157 int chflags
= chain
? SSL_BUILD_CHAIN_FLAG_CHECK
: 0;
161 if (SSL_CTX_use_certificate(ctx
, cert
) <= 0) {
162 BIO_printf(bio_err
, "error setting certificate\n");
163 ERR_print_errors(bio_err
);
167 if (SSL_CTX_use_PrivateKey(ctx
, key
) <= 0) {
168 BIO_printf(bio_err
, "error setting private key\n");
169 ERR_print_errors(bio_err
);
174 * Now we know that a key and cert have been set against the SSL context
176 if (!SSL_CTX_check_private_key(ctx
)) {
178 "Private key does not match the certificate public key\n");
181 if (chain
&& !SSL_CTX_set1_chain(ctx
, chain
)) {
182 BIO_printf(bio_err
, "error setting certificate chain\n");
183 ERR_print_errors(bio_err
);
186 if (build_chain
&& !SSL_CTX_build_cert_chain(ctx
, chflags
)) {
187 BIO_printf(bio_err
, "error building certificate chain\n");
188 ERR_print_errors(bio_err
);
194 static STRINT_PAIR cert_type_list
[] = {
195 {"RSA sign", TLS_CT_RSA_SIGN
},
196 {"DSA sign", TLS_CT_DSS_SIGN
},
197 {"RSA fixed DH", TLS_CT_RSA_FIXED_DH
},
198 {"DSS fixed DH", TLS_CT_DSS_FIXED_DH
},
199 {"ECDSA sign", TLS_CT_ECDSA_SIGN
},
200 {"RSA fixed ECDH", TLS_CT_RSA_FIXED_ECDH
},
201 {"ECDSA fixed ECDH", TLS_CT_ECDSA_FIXED_ECDH
},
202 {"GOST01 Sign", TLS_CT_GOST01_SIGN
},
203 {"GOST12 Sign", TLS_CT_GOST12_IANA_SIGN
},
207 static void ssl_print_client_cert_types(BIO
*bio
, SSL
*s
)
209 const unsigned char *p
;
211 int cert_type_num
= SSL_get0_certificate_types(s
, &p
);
215 BIO_puts(bio
, "Client Certificate Types: ");
216 for (i
= 0; i
< cert_type_num
; i
++) {
217 unsigned char cert_type
= p
[i
];
218 const char *cname
= lookup((int)cert_type
, cert_type_list
, NULL
);
223 BIO_puts(bio
, cname
);
225 BIO_printf(bio
, "UNKNOWN (%d),", cert_type
);
230 static const char *get_sigtype(int nid
)
236 case EVP_PKEY_RSA_PSS
:
251 case NID_id_GostR3410_2001
:
254 case NID_id_GostR3410_2012_256
:
255 return "gost2012_256";
257 case NID_id_GostR3410_2012_512
:
258 return "gost2012_512";
261 /* Try to output provider-registered sig alg name */
262 return OBJ_nid2sn(nid
);
266 static int do_print_sigalgs(BIO
*out
, SSL
*s
, int shared
)
270 client
= SSL_is_server(s
) ? 0 : 1;
272 nsig
= SSL_get_shared_sigalgs(s
, 0, NULL
, NULL
, NULL
, NULL
, NULL
);
274 nsig
= SSL_get_sigalgs(s
, -1, NULL
, NULL
, NULL
, NULL
, NULL
);
279 BIO_puts(out
, "Shared ");
282 BIO_puts(out
, "Requested ");
283 BIO_puts(out
, "Signature Algorithms: ");
284 for (i
= 0; i
< nsig
; i
++) {
285 int hash_nid
, sign_nid
;
286 unsigned char rhash
, rsign
;
287 const char *sstr
= NULL
;
289 SSL_get_shared_sigalgs(s
, i
, &sign_nid
, &hash_nid
, NULL
,
292 SSL_get_sigalgs(s
, i
, &sign_nid
, &hash_nid
, NULL
, &rsign
, &rhash
);
295 switch (rsign
| rhash
<< 8) {
297 BIO_puts(out
, "rsa_pss_pss_sha256");
300 BIO_puts(out
, "rsa_pss_pss_sha384");
303 BIO_puts(out
, "rsa_pss_pss_sha512");
306 BIO_puts(out
, "ecdsa_brainpoolP256r1_sha256");
309 BIO_puts(out
, "ecdsa_brainpoolP384r1_sha384");
312 BIO_puts(out
, "ecdsa_brainpoolP512r1_sha512");
315 sstr
= get_sigtype(sign_nid
);
317 BIO_printf(out
, "%s", sstr
);
319 BIO_printf(out
, "0x%02X", (int)rsign
);
320 if (hash_nid
!= NID_undef
)
321 BIO_printf(out
, "+%s", OBJ_nid2sn(hash_nid
));
322 else if (sstr
== NULL
)
323 BIO_printf(out
, "+0x%02X", (int)rhash
);
329 int ssl_print_sigalgs(BIO
*out
, SSL
*s
)
334 if (!SSL_is_server(s
))
335 ssl_print_client_cert_types(out
, s
);
336 do_print_sigalgs(out
, s
, 0);
337 do_print_sigalgs(out
, s
, 1);
338 if (SSL_get_peer_signature_nid(s
, &nid
) && nid
!= NID_undef
)
339 BIO_printf(out
, "Peer signing digest: %s\n", OBJ_nid2sn(nid
));
340 if (SSL_get0_peer_signature_name(s
, &name
))
341 BIO_printf(out
, "Peer signature type: %s\n", name
);
342 else if (SSL_get_peer_signature_type_nid(s
, &nid
))
343 BIO_printf(out
, "Peer signature type: %s\n", get_sigtype(nid
));
347 #ifndef OPENSSL_NO_EC
348 int ssl_print_point_formats(BIO
*out
, SSL
*s
)
351 const char *pformats
;
353 nformats
= SSL_get0_ec_point_formats(s
, &pformats
);
356 BIO_puts(out
, "Supported Elliptic Curve Point Formats: ");
357 for (i
= 0; i
< nformats
; i
++, pformats
++) {
361 case TLSEXT_ECPOINTFORMAT_uncompressed
:
362 BIO_puts(out
, "uncompressed");
365 case TLSEXT_ECPOINTFORMAT_ansiX962_compressed_prime
:
366 BIO_puts(out
, "ansiX962_compressed_prime");
369 case TLSEXT_ECPOINTFORMAT_ansiX962_compressed_char2
:
370 BIO_puts(out
, "ansiX962_compressed_char2");
374 BIO_printf(out
, "unknown(%d)", (int)*pformats
);
383 int ssl_print_groups(BIO
*out
, SSL
*s
, int noshared
)
385 int i
, ngroups
, *groups
, nid
;
387 ngroups
= SSL_get1_groups(s
, NULL
);
390 groups
= app_malloc(ngroups
* sizeof(int), "groups to print");
391 SSL_get1_groups(s
, groups
);
393 BIO_puts(out
, "Supported groups: ");
394 for (i
= 0; i
< ngroups
; i
++) {
398 BIO_printf(out
, "%s", SSL_group_to_name(s
, nid
));
400 OPENSSL_free(groups
);
405 BIO_puts(out
, "\nShared groups: ");
406 ngroups
= SSL_get_shared_group(s
, -1);
407 for (i
= 0; i
< ngroups
; i
++) {
410 nid
= SSL_get_shared_group(s
, i
);
411 BIO_printf(out
, "%s", SSL_group_to_name(s
, nid
));
414 BIO_puts(out
, "NONE");
420 int ssl_print_tmp_key(BIO
*out
, SSL
*s
)
425 if (!SSL_get_peer_tmp_key(s
, &key
)) {
426 if (SSL_version(s
) == TLS1_3_VERSION
)
427 BIO_printf(out
, "Negotiated TLS1.3 group: %s\n",
428 SSL_group_to_name(s
, SSL_get_negotiated_group(s
)));
432 BIO_puts(out
, "Peer Temp Key: ");
433 switch (EVP_PKEY_get_id(key
)) {
435 BIO_printf(out
, "RSA, %d bits\n", EVP_PKEY_get_bits(key
));
438 case EVP_PKEY_KEYMGMT
:
439 if ((keyname
= EVP_PKEY_get0_type_name(key
)) == NULL
)
441 BIO_printf(out
, "%s\n", keyname
);
445 BIO_printf(out
, "DH, %d bits\n", EVP_PKEY_get_bits(key
));
447 #ifndef OPENSSL_NO_EC
453 if (!EVP_PKEY_get_utf8_string_param(key
, OSSL_PKEY_PARAM_GROUP_NAME
,
454 name
, sizeof(name
), &name_len
))
456 BIO_printf(out
, "ECDH, %s, %d bits\n", name
, EVP_PKEY_get_bits(key
));
461 BIO_printf(out
, "%s, %d bits\n", OBJ_nid2sn(EVP_PKEY_get_id(key
)),
462 EVP_PKEY_get_bits(key
));
468 long bio_dump_callback(BIO
*bio
, int cmd
, const char *argp
, size_t len
,
469 int argi
, long argl
, int ret
, size_t *processed
)
472 BIO_MMSG_CB_ARGS
*mmsgargs
;
475 out
= (BIO
*)BIO_get_callback_arg(bio
);
480 case (BIO_CB_READ
| BIO_CB_RETURN
):
481 if (ret
> 0 && processed
!= NULL
) {
482 BIO_printf(out
, "read from %p [%p] (%zu bytes => %zu (0x%zX))\n",
483 (void *)bio
, (void *)argp
, len
, *processed
, *processed
);
484 BIO_dump(out
, argp
, (int)*processed
);
486 BIO_printf(out
, "read from %p [%p] (%zu bytes => %d)\n",
487 (void *)bio
, (void *)argp
, len
, ret
);
491 case (BIO_CB_WRITE
| BIO_CB_RETURN
):
492 if (ret
> 0 && processed
!= NULL
) {
493 BIO_printf(out
, "write to %p [%p] (%zu bytes => %zu (0x%zX))\n",
494 (void *)bio
, (void *)argp
, len
, *processed
, *processed
);
495 BIO_dump(out
, argp
, (int)*processed
);
497 BIO_printf(out
, "write to %p [%p] (%zu bytes => %d)\n",
498 (void *)bio
, (void *)argp
, len
, ret
);
502 case (BIO_CB_RECVMMSG
| BIO_CB_RETURN
):
503 mmsgargs
= (BIO_MMSG_CB_ARGS
*)argp
;
505 for (i
= 0; i
< *(mmsgargs
->msgs_processed
); i
++) {
506 BIO_MSG
*msg
= (BIO_MSG
*)((char *)mmsgargs
->msg
507 + (i
* mmsgargs
->stride
));
509 BIO_printf(out
, "read from %p [%p] (%zu bytes => %zu (0x%zX))\n",
510 (void *)bio
, (void *)msg
->data
, msg
->data_len
,
511 msg
->data_len
, msg
->data_len
);
512 if (msg
->data_len
<= INT_MAX
)
513 BIO_dump(out
, msg
->data
, (int)msg
->data_len
);
515 } else if (mmsgargs
->num_msg
> 0) {
516 BIO_MSG
*msg
= mmsgargs
->msg
;
518 BIO_printf(out
, "read from %p [%p] (%zu bytes => %d)\n",
519 (void *)bio
, (void *)msg
->data
, msg
->data_len
, ret
);
523 case (BIO_CB_SENDMMSG
| BIO_CB_RETURN
):
524 mmsgargs
= (BIO_MMSG_CB_ARGS
*)argp
;
526 for (i
= 0; i
< *(mmsgargs
->msgs_processed
); i
++) {
527 BIO_MSG
*msg
= (BIO_MSG
*)((char *)mmsgargs
->msg
528 + (i
* mmsgargs
->stride
));
530 BIO_printf(out
, "write to %p [%p] (%zu bytes => %zu (0x%zX))\n",
531 (void *)bio
, (void *)msg
->data
, msg
->data_len
,
532 msg
->data_len
, msg
->data_len
);
533 if (msg
->data_len
<= INT_MAX
)
534 BIO_dump(out
, msg
->data
, (int)msg
->data_len
);
536 } else if (mmsgargs
->num_msg
> 0) {
537 BIO_MSG
*msg
= mmsgargs
->msg
;
539 BIO_printf(out
, "write to %p [%p] (%zu bytes => %d)\n",
540 (void *)bio
, (void *)msg
->data
, msg
->data_len
, ret
);
551 void apps_ssl_info_callback(const SSL
*s
, int where
, int ret
)
556 w
= where
& ~SSL_ST_MASK
;
558 if (w
& SSL_ST_CONNECT
)
560 else if (w
& SSL_ST_ACCEPT
)
565 if (where
& SSL_CB_LOOP
) {
566 BIO_printf(bio_err
, "%s:%s\n", str
, SSL_state_string_long(s
));
567 } else if (where
& SSL_CB_ALERT
) {
568 str
= (where
& SSL_CB_READ
) ? "read" : "write";
569 BIO_printf(bio_err
, "SSL3 alert %s:%s:%s\n",
571 SSL_alert_type_string_long(ret
),
572 SSL_alert_desc_string_long(ret
));
573 } else if (where
& SSL_CB_EXIT
) {
575 BIO_printf(bio_err
, "%s:failed in %s\n",
576 str
, SSL_state_string_long(s
));
578 BIO_printf(bio_err
, "%s:error in %s\n",
579 str
, SSL_state_string_long(s
));
583 static STRINT_PAIR ssl_versions
[] = {
584 {"SSL 3.0", SSL3_VERSION
},
585 {"TLS 1.0", TLS1_VERSION
},
586 {"TLS 1.1", TLS1_1_VERSION
},
587 {"TLS 1.2", TLS1_2_VERSION
},
588 {"TLS 1.3", TLS1_3_VERSION
},
589 {"DTLS 1.0", DTLS1_VERSION
},
590 {"DTLS 1.0 (bad)", DTLS1_BAD_VER
},
594 static STRINT_PAIR alert_types
[] = {
595 {" close_notify", 0},
596 {" end_of_early_data", 1},
597 {" unexpected_message", 10},
598 {" bad_record_mac", 20},
599 {" decryption_failed", 21},
600 {" record_overflow", 22},
601 {" decompression_failure", 30},
602 {" handshake_failure", 40},
603 {" bad_certificate", 42},
604 {" unsupported_certificate", 43},
605 {" certificate_revoked", 44},
606 {" certificate_expired", 45},
607 {" certificate_unknown", 46},
608 {" illegal_parameter", 47},
610 {" access_denied", 49},
611 {" decode_error", 50},
612 {" decrypt_error", 51},
613 {" export_restriction", 60},
614 {" protocol_version", 70},
615 {" insufficient_security", 71},
616 {" internal_error", 80},
617 {" inappropriate_fallback", 86},
618 {" user_canceled", 90},
619 {" no_renegotiation", 100},
620 {" missing_extension", 109},
621 {" unsupported_extension", 110},
622 {" certificate_unobtainable", 111},
623 {" unrecognized_name", 112},
624 {" bad_certificate_status_response", 113},
625 {" bad_certificate_hash_value", 114},
626 {" unknown_psk_identity", 115},
627 {" certificate_required", 116},
631 static STRINT_PAIR handshakes
[] = {
632 {", HelloRequest", SSL3_MT_HELLO_REQUEST
},
633 {", ClientHello", SSL3_MT_CLIENT_HELLO
},
634 {", ServerHello", SSL3_MT_SERVER_HELLO
},
635 {", HelloVerifyRequest", DTLS1_MT_HELLO_VERIFY_REQUEST
},
636 {", NewSessionTicket", SSL3_MT_NEWSESSION_TICKET
},
637 {", EndOfEarlyData", SSL3_MT_END_OF_EARLY_DATA
},
638 {", EncryptedExtensions", SSL3_MT_ENCRYPTED_EXTENSIONS
},
639 {", Certificate", SSL3_MT_CERTIFICATE
},
640 {", ServerKeyExchange", SSL3_MT_SERVER_KEY_EXCHANGE
},
641 {", CertificateRequest", SSL3_MT_CERTIFICATE_REQUEST
},
642 {", ServerHelloDone", SSL3_MT_SERVER_DONE
},
643 {", CertificateVerify", SSL3_MT_CERTIFICATE_VERIFY
},
644 {", ClientKeyExchange", SSL3_MT_CLIENT_KEY_EXCHANGE
},
645 {", Finished", SSL3_MT_FINISHED
},
646 {", CertificateUrl", SSL3_MT_CERTIFICATE_URL
},
647 {", CertificateStatus", SSL3_MT_CERTIFICATE_STATUS
},
648 {", SupplementalData", SSL3_MT_SUPPLEMENTAL_DATA
},
649 {", KeyUpdate", SSL3_MT_KEY_UPDATE
},
650 {", CompressedCertificate", SSL3_MT_COMPRESSED_CERTIFICATE
},
651 #ifndef OPENSSL_NO_NEXTPROTONEG
652 {", NextProto", SSL3_MT_NEXT_PROTO
},
654 {", MessageHash", SSL3_MT_MESSAGE_HASH
},
658 void msg_cb(int write_p
, int version
, int content_type
, const void *buf
,
659 size_t len
, SSL
*ssl
, void *arg
)
662 const char *str_write_p
= write_p
? ">>>" : "<<<";
664 const char *str_version
, *str_content_type
= "", *str_details1
= "", *str_details2
= "";
665 const unsigned char* bp
= buf
;
667 if (version
== SSL3_VERSION
||
668 version
== TLS1_VERSION
||
669 version
== TLS1_1_VERSION
||
670 version
== TLS1_2_VERSION
||
671 version
== TLS1_3_VERSION
||
672 version
== DTLS1_VERSION
|| version
== DTLS1_BAD_VER
) {
673 str_version
= lookup(version
, ssl_versions
, "???");
674 switch (content_type
) {
675 case SSL3_RT_CHANGE_CIPHER_SPEC
:
677 str_content_type
= ", ChangeCipherSpec";
681 str_content_type
= ", Alert";
682 str_details1
= ", ???";
686 str_details1
= ", warning";
689 str_details1
= ", fatal";
692 str_details2
= lookup((int)bp
[1], alert_types
, " ???");
695 case SSL3_RT_HANDSHAKE
:
697 str_content_type
= ", Handshake";
698 str_details1
= "???";
700 str_details1
= lookup((int)bp
[0], handshakes
, "???");
702 case SSL3_RT_APPLICATION_DATA
:
704 str_content_type
= ", ApplicationData";
708 str_content_type
= ", RecordHeader";
710 case SSL3_RT_INNER_CONTENT_TYPE
:
712 str_content_type
= ", InnerContent";
715 BIO_snprintf(tmpbuf
, sizeof(tmpbuf
)-1, ", Unknown (content_type=%d)", content_type
);
716 str_content_type
= tmpbuf
;
719 BIO_snprintf(tmpbuf
, sizeof(tmpbuf
)-1, "Not TLS data or unknown version (version=%d, content_type=%d)", version
, content_type
);
720 str_version
= tmpbuf
;
723 BIO_printf(bio
, "%s %s%s [length %04lx]%s%s\n", str_write_p
, str_version
,
724 str_content_type
, (unsigned long)len
, str_details1
,
730 BIO_printf(bio
, " ");
732 for (i
= 0; i
< num
; i
++) {
733 if (i
% 16 == 0 && i
> 0)
734 BIO_printf(bio
, "\n ");
735 BIO_printf(bio
, " %02x", ((const unsigned char *)buf
)[i
]);
738 BIO_printf(bio
, " ...");
739 BIO_printf(bio
, "\n");
741 (void)BIO_flush(bio
);
744 static const STRINT_PAIR tlsext_types
[] = {
745 {"server name", TLSEXT_TYPE_server_name
},
746 {"max fragment length", TLSEXT_TYPE_max_fragment_length
},
747 {"client certificate URL", TLSEXT_TYPE_client_certificate_url
},
748 {"trusted CA keys", TLSEXT_TYPE_trusted_ca_keys
},
749 {"truncated HMAC", TLSEXT_TYPE_truncated_hmac
},
750 {"status request", TLSEXT_TYPE_status_request
},
751 {"user mapping", TLSEXT_TYPE_user_mapping
},
752 {"client authz", TLSEXT_TYPE_client_authz
},
753 {"server authz", TLSEXT_TYPE_server_authz
},
754 {"cert type", TLSEXT_TYPE_cert_type
},
755 {"supported_groups", TLSEXT_TYPE_supported_groups
},
756 {"EC point formats", TLSEXT_TYPE_ec_point_formats
},
757 {"SRP", TLSEXT_TYPE_srp
},
758 {"signature algorithms", TLSEXT_TYPE_signature_algorithms
},
759 {"use SRTP", TLSEXT_TYPE_use_srtp
},
760 {"session ticket", TLSEXT_TYPE_session_ticket
},
761 {"renegotiation info", TLSEXT_TYPE_renegotiate
},
762 {"signed certificate timestamps", TLSEXT_TYPE_signed_certificate_timestamp
},
763 {"client cert type", TLSEXT_TYPE_client_cert_type
},
764 {"server cert type", TLSEXT_TYPE_server_cert_type
},
765 {"TLS padding", TLSEXT_TYPE_padding
},
766 #ifdef TLSEXT_TYPE_next_proto_neg
767 {"next protocol", TLSEXT_TYPE_next_proto_neg
},
769 #ifdef TLSEXT_TYPE_encrypt_then_mac
770 {"encrypt-then-mac", TLSEXT_TYPE_encrypt_then_mac
},
772 #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
773 {"application layer protocol negotiation",
774 TLSEXT_TYPE_application_layer_protocol_negotiation
},
776 #ifdef TLSEXT_TYPE_extended_master_secret
777 {"extended master secret", TLSEXT_TYPE_extended_master_secret
},
779 {"compress certificate", TLSEXT_TYPE_compress_certificate
},
780 {"key share", TLSEXT_TYPE_key_share
},
781 {"supported versions", TLSEXT_TYPE_supported_versions
},
782 {"psk", TLSEXT_TYPE_psk
},
783 {"psk kex modes", TLSEXT_TYPE_psk_kex_modes
},
784 {"certificate authorities", TLSEXT_TYPE_certificate_authorities
},
785 {"post handshake auth", TLSEXT_TYPE_post_handshake_auth
},
786 {"early_data", TLSEXT_TYPE_early_data
},
790 /* from rfc8446 4.2.3. + gost (https://tools.ietf.org/id/draft-smyshlyaev-tls12-gost-suites-04.html) */
791 static STRINT_PAIR signature_tls13_scheme_list
[] = {
792 {"rsa_pkcs1_sha1", 0x0201 /* TLSEXT_SIGALG_rsa_pkcs1_sha1 */},
793 {"ecdsa_sha1", 0x0203 /* TLSEXT_SIGALG_ecdsa_sha1 */},
794 /* {"rsa_pkcs1_sha224", 0x0301 TLSEXT_SIGALG_rsa_pkcs1_sha224}, not in rfc8446 */
795 /* {"ecdsa_sha224", 0x0303 TLSEXT_SIGALG_ecdsa_sha224} not in rfc8446 */
796 {"rsa_pkcs1_sha256", 0x0401 /* TLSEXT_SIGALG_rsa_pkcs1_sha256 */},
797 {"ecdsa_secp256r1_sha256", 0x0403 /* TLSEXT_SIGALG_ecdsa_secp256r1_sha256 */},
798 {"rsa_pkcs1_sha384", 0x0501 /* TLSEXT_SIGALG_rsa_pkcs1_sha384 */},
799 {"ecdsa_secp384r1_sha384", 0x0503 /* TLSEXT_SIGALG_ecdsa_secp384r1_sha384 */},
800 {"rsa_pkcs1_sha512", 0x0601 /* TLSEXT_SIGALG_rsa_pkcs1_sha512 */},
801 {"ecdsa_secp521r1_sha512", 0x0603 /* TLSEXT_SIGALG_ecdsa_secp521r1_sha512 */},
802 {"rsa_pss_rsae_sha256", 0x0804 /* TLSEXT_SIGALG_rsa_pss_rsae_sha256 */},
803 {"rsa_pss_rsae_sha384", 0x0805 /* TLSEXT_SIGALG_rsa_pss_rsae_sha384 */},
804 {"rsa_pss_rsae_sha512", 0x0806 /* TLSEXT_SIGALG_rsa_pss_rsae_sha512 */},
805 {"ed25519", 0x0807 /* TLSEXT_SIGALG_ed25519 */},
806 {"ed448", 0x0808 /* TLSEXT_SIGALG_ed448 */},
807 {"rsa_pss_pss_sha256", 0x0809 /* TLSEXT_SIGALG_rsa_pss_pss_sha256 */},
808 {"rsa_pss_pss_sha384", 0x080a /* TLSEXT_SIGALG_rsa_pss_pss_sha384 */},
809 {"rsa_pss_pss_sha512", 0x080b /* TLSEXT_SIGALG_rsa_pss_pss_sha512 */},
810 {"gostr34102001", 0xeded /* TLSEXT_SIGALG_gostr34102001_gostr3411 */},
811 {"gostr34102012_256", 0xeeee /* TLSEXT_SIGALG_gostr34102012_256_gostr34112012_256 */},
812 {"gostr34102012_512", 0xefef /* TLSEXT_SIGALG_gostr34102012_512_gostr34112012_512 */},
816 /* from rfc5246 7.4.1.4.1. */
817 static STRINT_PAIR signature_tls12_alg_list
[] = {
818 {"anonymous", TLSEXT_signature_anonymous
/* 0 */},
819 {"RSA", TLSEXT_signature_rsa
/* 1 */},
820 {"DSA", TLSEXT_signature_dsa
/* 2 */},
821 {"ECDSA", TLSEXT_signature_ecdsa
/* 3 */},
825 /* from rfc5246 7.4.1.4.1. */
826 static STRINT_PAIR signature_tls12_hash_list
[] = {
827 {"none", TLSEXT_hash_none
/* 0 */},
828 {"MD5", TLSEXT_hash_md5
/* 1 */},
829 {"SHA1", TLSEXT_hash_sha1
/* 2 */},
830 {"SHA224", TLSEXT_hash_sha224
/* 3 */},
831 {"SHA256", TLSEXT_hash_sha256
/* 4 */},
832 {"SHA384", TLSEXT_hash_sha384
/* 5 */},
833 {"SHA512", TLSEXT_hash_sha512
/* 6 */},
837 void tlsext_cb(SSL
*s
, int client_server
, int type
,
838 const unsigned char *data
, int len
, void *arg
)
841 const char *extname
= lookup(type
, tlsext_types
, "unknown");
843 BIO_printf(bio
, "TLS %s extension \"%s\" (id=%d), len=%d\n",
844 client_server
? "server" : "client", extname
, type
, len
);
845 BIO_dump(bio
, (const char *)data
, len
);
846 (void)BIO_flush(bio
);
849 #ifndef OPENSSL_NO_SOCK
850 int generate_stateless_cookie_callback(SSL
*ssl
, unsigned char *cookie
,
853 unsigned char *buffer
= NULL
;
856 BIO_ADDR
*lpeer
= NULL
, *peer
= NULL
;
859 /* Initialize a random secret */
860 if (!cookie_initialized
) {
861 if (RAND_bytes(cookie_secret
, COOKIE_SECRET_LENGTH
) <= 0) {
862 BIO_printf(bio_err
, "error setting random cookie secret\n");
865 cookie_initialized
= 1;
868 if (SSL_is_dtls(ssl
)) {
869 lpeer
= peer
= BIO_ADDR_new();
871 BIO_printf(bio_err
, "memory full\n");
875 /* Read peer information */
876 (void)BIO_dgram_get_peer(SSL_get_rbio(ssl
), peer
);
881 /* Create buffer with peer's address and port */
882 if (!BIO_ADDR_rawaddress(peer
, NULL
, &length
)) {
883 BIO_printf(bio_err
, "Failed getting peer address\n");
884 BIO_ADDR_free(lpeer
);
887 OPENSSL_assert(length
!= 0);
888 port
= BIO_ADDR_rawport(peer
);
889 length
+= sizeof(port
);
890 buffer
= app_malloc(length
, "cookie generate buffer");
892 memcpy(buffer
, &port
, sizeof(port
));
893 BIO_ADDR_rawaddress(peer
, buffer
+ sizeof(port
), NULL
);
895 if (EVP_Q_mac(NULL
, "HMAC", NULL
, "SHA1", NULL
,
896 cookie_secret
, COOKIE_SECRET_LENGTH
, buffer
, length
,
897 cookie
, DTLS1_COOKIE_LENGTH
, cookie_len
) == NULL
) {
899 "Error calculating HMAC-SHA1 of buffer with secret\n");
904 OPENSSL_free(buffer
);
905 BIO_ADDR_free(lpeer
);
910 int verify_stateless_cookie_callback(SSL
*ssl
, const unsigned char *cookie
,
913 unsigned char result
[EVP_MAX_MD_SIZE
];
916 /* Note: we check cookie_initialized because if it's not,
917 * it cannot be valid */
918 if (cookie_initialized
919 && generate_stateless_cookie_callback(ssl
, result
, &resultlength
)
920 && cookie_len
== resultlength
921 && memcmp(result
, cookie
, resultlength
) == 0)
927 int generate_cookie_callback(SSL
*ssl
, unsigned char *cookie
,
928 unsigned int *cookie_len
)
931 int res
= generate_stateless_cookie_callback(ssl
, cookie
, &temp
);
934 *cookie_len
= (unsigned int)temp
;
938 int verify_cookie_callback(SSL
*ssl
, const unsigned char *cookie
,
939 unsigned int cookie_len
)
941 return verify_stateless_cookie_callback(ssl
, cookie
, cookie_len
);
947 * Example of extended certificate handling. Where the standard support of
948 * one certificate per algorithm is not sufficient an application can decide
949 * which certificate(s) to use at runtime based on whatever criteria it deems
953 /* Linked list of certificates, keys and chains */
954 struct ssl_excert_st
{
956 const char *certfile
;
959 const char *chainfile
;
962 STACK_OF(X509
) *chain
;
964 struct ssl_excert_st
*next
, *prev
;
967 static STRINT_PAIR chain_flags
[] = {
968 {"Overall Validity", CERT_PKEY_VALID
},
969 {"Sign with EE key", CERT_PKEY_SIGN
},
970 {"EE signature", CERT_PKEY_EE_SIGNATURE
},
971 {"CA signature", CERT_PKEY_CA_SIGNATURE
},
972 {"EE key parameters", CERT_PKEY_EE_PARAM
},
973 {"CA key parameters", CERT_PKEY_CA_PARAM
},
974 {"Explicitly sign with EE key", CERT_PKEY_EXPLICIT_SIGN
},
975 {"Issuer Name", CERT_PKEY_ISSUER_NAME
},
976 {"Certificate Type", CERT_PKEY_CERT_TYPE
},
980 static void print_chain_flags(SSL
*s
, int flags
)
984 for (pp
= chain_flags
; pp
->name
; ++pp
)
985 BIO_printf(bio_err
, "\t%s: %s\n",
987 (flags
& pp
->retval
) ? "OK" : "NOT OK");
988 BIO_printf(bio_err
, "\tSuite B: ");
989 if (SSL_set_cert_flags(s
, 0) & SSL_CERT_FLAG_SUITEB_128_LOS
)
990 BIO_puts(bio_err
, flags
& CERT_PKEY_SUITEB
? "OK\n" : "NOT OK\n");
992 BIO_printf(bio_err
, "not tested\n");
996 * Very basic selection callback: just use any certificate chain reported as
997 * valid. More sophisticated could prioritise according to local policy.
999 static int set_cert_cb(SSL
*ssl
, void *arg
)
1002 SSL_EXCERT
*exc
= arg
;
1003 #ifdef CERT_CB_TEST_RETRY
1004 static int retry_cnt
;
1006 if (retry_cnt
< 5) {
1009 "Certificate callback retry test: count %d\n",
1014 SSL_certs_clear(ssl
);
1020 * Go to end of list and traverse backwards since we prepend newer
1021 * entries this retains the original order.
1023 while (exc
->next
!= NULL
)
1028 while (exc
!= NULL
) {
1030 rv
= SSL_check_chain(ssl
, exc
->cert
, exc
->key
, exc
->chain
);
1031 BIO_printf(bio_err
, "Checking cert chain %d:\nSubject: ", i
);
1032 X509_NAME_print_ex(bio_err
, X509_get_subject_name(exc
->cert
), 0,
1034 BIO_puts(bio_err
, "\n");
1035 print_chain_flags(ssl
, rv
);
1036 if (rv
& CERT_PKEY_VALID
) {
1037 if (!SSL_use_certificate(ssl
, exc
->cert
)
1038 || !SSL_use_PrivateKey(ssl
, exc
->key
)) {
1042 * NB: we wouldn't normally do this as it is not efficient
1043 * building chains on each connection better to cache the chain
1046 if (exc
->build_chain
) {
1047 if (!SSL_build_cert_chain(ssl
, 0))
1049 } else if (exc
->chain
!= NULL
) {
1050 if (!SSL_set1_chain(ssl
, exc
->chain
))
1059 void ssl_ctx_set_excert(SSL_CTX
*ctx
, SSL_EXCERT
*exc
)
1061 SSL_CTX_set_cert_cb(ctx
, set_cert_cb
, exc
);
1064 static int ssl_excert_prepend(SSL_EXCERT
**pexc
)
1066 SSL_EXCERT
*exc
= app_malloc(sizeof(*exc
), "prepend cert");
1068 memset(exc
, 0, sizeof(*exc
));
1074 exc
->certform
= exc
->next
->certform
;
1075 exc
->keyform
= exc
->next
->keyform
;
1076 exc
->next
->prev
= exc
;
1078 exc
->certform
= FORMAT_PEM
;
1079 exc
->keyform
= FORMAT_PEM
;
1085 void ssl_excert_free(SSL_EXCERT
*exc
)
1092 X509_free(exc
->cert
);
1093 EVP_PKEY_free(exc
->key
);
1094 OSSL_STACK_OF_X509_free(exc
->chain
);
1101 int load_excert(SSL_EXCERT
**pexc
)
1103 SSL_EXCERT
*exc
= *pexc
;
1107 /* If nothing in list, free and set to NULL */
1108 if (exc
->certfile
== NULL
&& exc
->next
== NULL
) {
1109 ssl_excert_free(exc
);
1113 for (; exc
; exc
= exc
->next
) {
1114 if (exc
->certfile
== NULL
) {
1115 BIO_printf(bio_err
, "Missing filename\n");
1118 exc
->cert
= load_cert(exc
->certfile
, exc
->certform
,
1119 "Server Certificate");
1120 if (exc
->cert
== NULL
)
1122 if (exc
->keyfile
!= NULL
) {
1123 exc
->key
= load_key(exc
->keyfile
, exc
->keyform
,
1124 0, NULL
, NULL
, "server key");
1126 exc
->key
= load_key(exc
->certfile
, exc
->certform
,
1127 0, NULL
, NULL
, "server key");
1129 if (exc
->key
== NULL
)
1131 if (exc
->chainfile
!= NULL
) {
1132 if (!load_certs(exc
->chainfile
, 0, &exc
->chain
, NULL
, "server chain"))
1139 enum range
{ OPT_X_ENUM
};
1141 int args_excert(int opt
, SSL_EXCERT
**pexc
)
1143 SSL_EXCERT
*exc
= *pexc
;
1145 assert(opt
> OPT_X__FIRST
);
1146 assert(opt
< OPT_X__LAST
);
1149 if (!ssl_excert_prepend(&exc
)) {
1150 BIO_printf(bio_err
, " %s: Error initialising xcert\n",
1157 switch ((enum range
)opt
) {
1162 if (exc
->certfile
!= NULL
&& !ssl_excert_prepend(&exc
)) {
1163 BIO_printf(bio_err
, "%s: Error adding xcert\n", opt_getprog());
1167 exc
->certfile
= opt_arg();
1170 if (exc
->keyfile
!= NULL
) {
1171 BIO_printf(bio_err
, "%s: Key already specified\n", opt_getprog());
1174 exc
->keyfile
= opt_arg();
1177 if (exc
->chainfile
!= NULL
) {
1178 BIO_printf(bio_err
, "%s: Chain already specified\n",
1182 exc
->chainfile
= opt_arg();
1184 case OPT_X_CHAIN_BUILD
:
1185 exc
->build_chain
= 1;
1187 case OPT_X_CERTFORM
:
1188 if (!opt_format(opt_arg(), OPT_FMT_ANY
, &exc
->certform
))
1192 if (!opt_format(opt_arg(), OPT_FMT_ANY
, &exc
->keyform
))
1199 ERR_print_errors(bio_err
);
1200 ssl_excert_free(exc
);
1205 static void print_raw_cipherlist(SSL
*s
)
1207 const unsigned char *rlist
;
1208 static const unsigned char scsv_id
[] = { 0, 0xFF };
1209 size_t i
, rlistlen
, num
;
1211 if (!SSL_is_server(s
))
1213 num
= SSL_get0_raw_cipherlist(s
, NULL
);
1214 OPENSSL_assert(num
== 2);
1215 rlistlen
= SSL_get0_raw_cipherlist(s
, &rlist
);
1216 BIO_puts(bio_err
, "Client cipher list: ");
1217 for (i
= 0; i
< rlistlen
; i
+= num
, rlist
+= num
) {
1218 const SSL_CIPHER
*c
= SSL_CIPHER_find(s
, rlist
);
1220 BIO_puts(bio_err
, ":");
1222 BIO_puts(bio_err
, SSL_CIPHER_get_name(c
));
1223 } else if (memcmp(rlist
, scsv_id
, num
) == 0) {
1224 BIO_puts(bio_err
, "SCSV");
1227 BIO_puts(bio_err
, "0x");
1228 for (j
= 0; j
< num
; j
++)
1229 BIO_printf(bio_err
, "%02X", rlist
[j
]);
1232 BIO_puts(bio_err
, "\n");
1236 * Hex encoder for TLSA RRdata, not ':' delimited.
1238 static char *hexencode(const unsigned char *data
, size_t len
)
1240 static const char *hex
= "0123456789abcdef";
1243 size_t outlen
= 2 * len
+ 1;
1244 int ilen
= (int) outlen
;
1246 if (outlen
< len
|| ilen
< 0 || outlen
!= (size_t)ilen
) {
1247 BIO_printf(bio_err
, "%s: %zu-byte buffer too large to hexencode\n",
1248 opt_getprog(), len
);
1251 cp
= out
= app_malloc(ilen
, "TLSA hex data buffer");
1254 *cp
++ = hex
[(*data
>> 4) & 0x0f];
1255 *cp
++ = hex
[*data
++ & 0x0f];
1261 void print_verify_detail(SSL
*s
, BIO
*bio
)
1264 EVP_PKEY
*mspki
= NULL
;
1265 long verify_err
= SSL_get_verify_result(s
);
1267 if (verify_err
== X509_V_OK
) {
1268 const char *peername
= SSL_get0_peername(s
);
1270 BIO_printf(bio
, "Verification: OK\n");
1271 if (peername
!= NULL
)
1272 BIO_printf(bio
, "Verified peername: %s\n", peername
);
1274 const char *reason
= X509_verify_cert_error_string(verify_err
);
1276 BIO_printf(bio
, "Verification error: %s\n", reason
);
1279 if ((mdpth
= SSL_get0_dane_authority(s
, NULL
, &mspki
)) >= 0) {
1280 uint8_t usage
, selector
, mtype
;
1281 const unsigned char *data
= NULL
;
1285 mdpth
= SSL_get0_dane_tlsa(s
, &usage
, &selector
, &mtype
, &data
, &dlen
);
1288 * The TLSA data field can be quite long when it is a certificate,
1289 * public key or even a SHA2-512 digest. Because the initial octets of
1290 * ASN.1 certificates and public keys contain mostly boilerplate OIDs
1291 * and lengths, we show the last 12 bytes of the data instead, as these
1292 * are more likely to distinguish distinct TLSA records.
1294 #define TLSA_TAIL_SIZE 12
1295 if (dlen
> TLSA_TAIL_SIZE
)
1296 hexdata
= hexencode(data
+ dlen
- TLSA_TAIL_SIZE
, TLSA_TAIL_SIZE
);
1298 hexdata
= hexencode(data
, dlen
);
1299 BIO_printf(bio
, "DANE TLSA %d %d %d %s%s ",
1300 usage
, selector
, mtype
,
1301 (dlen
> TLSA_TAIL_SIZE
) ? "..." : "", hexdata
);
1302 if (SSL_get0_peer_rpk(s
) == NULL
)
1303 BIO_printf(bio
, "%s certificate at depth %d\n",
1304 (mspki
!= NULL
) ? "signed the peer" :
1305 mdpth
? "matched the TA" : "matched the EE", mdpth
);
1307 BIO_printf(bio
, "matched the peer raw public key\n");
1308 OPENSSL_free(hexdata
);
1312 void print_ssl_summary(SSL
*s
)
1315 const SSL_CIPHER
*c
;
1316 X509
*peer
= SSL_get0_peer_certificate(s
);
1317 EVP_PKEY
*peer_rpk
= SSL_get0_peer_rpk(s
);
1320 BIO_printf(bio_err
, "Protocol version: %s\n", SSL_get_version(s
));
1321 print_raw_cipherlist(s
);
1322 c
= SSL_get_current_cipher(s
);
1323 BIO_printf(bio_err
, "Ciphersuite: %s\n", SSL_CIPHER_get_name(c
));
1324 do_print_sigalgs(bio_err
, s
, 0);
1326 BIO_puts(bio_err
, "Peer certificate: ");
1327 X509_NAME_print_ex(bio_err
, X509_get_subject_name(peer
),
1329 BIO_puts(bio_err
, "\n");
1330 if (SSL_get_peer_signature_nid(s
, &nid
))
1331 BIO_printf(bio_err
, "Hash used: %s\n", OBJ_nid2sn(nid
));
1332 if (SSL_get0_peer_signature_name(s
, &sigalg
))
1333 BIO_printf(bio_err
, "Signature type: %s\n", sigalg
);
1334 print_verify_detail(s
, bio_err
);
1335 } else if (peer_rpk
!= NULL
) {
1336 BIO_printf(bio_err
, "Peer used raw public key\n");
1337 if (SSL_get0_peer_signature_name(s
, &sigalg
))
1338 BIO_printf(bio_err
, "Signature type: %s\n", sigalg
);
1339 print_verify_detail(s
, bio_err
);
1341 BIO_puts(bio_err
, "No peer certificate or raw public key\n");
1343 #ifndef OPENSSL_NO_EC
1344 ssl_print_point_formats(bio_err
, s
);
1345 if (SSL_is_server(s
))
1346 ssl_print_groups(bio_err
, s
, 1);
1348 ssl_print_tmp_key(bio_err
, s
);
1351 int config_ctx(SSL_CONF_CTX
*cctx
, STACK_OF(OPENSSL_STRING
) *str
,
1356 SSL_CONF_CTX_set_ssl_ctx(cctx
, ctx
);
1357 for (i
= 0; i
< sk_OPENSSL_STRING_num(str
); i
+= 2) {
1358 const char *flag
= sk_OPENSSL_STRING_value(str
, i
);
1359 const char *arg
= sk_OPENSSL_STRING_value(str
, i
+ 1);
1361 if (SSL_CONF_cmd(cctx
, flag
, arg
) <= 0) {
1362 BIO_printf(bio_err
, "Call to SSL_CONF_cmd(%s, %s) failed\n",
1363 flag
, arg
== NULL
? "<NULL>" : arg
);
1364 ERR_print_errors(bio_err
);
1368 if (!SSL_CONF_CTX_finish(cctx
)) {
1369 BIO_puts(bio_err
, "Error finishing context\n");
1370 ERR_print_errors(bio_err
);
1376 static int add_crls_store(X509_STORE
*st
, STACK_OF(X509_CRL
) *crls
)
1381 for (i
= 0; i
< sk_X509_CRL_num(crls
); i
++) {
1382 crl
= sk_X509_CRL_value(crls
, i
);
1383 if (!X509_STORE_add_crl(st
, crl
))
1389 int ssl_ctx_add_crls(SSL_CTX
*ctx
, STACK_OF(X509_CRL
) *crls
, int crl_download
)
1393 st
= SSL_CTX_get_cert_store(ctx
);
1394 add_crls_store(st
, crls
);
1396 store_setup_crl_download(st
);
1400 int ssl_load_stores(SSL_CTX
*ctx
,
1401 const char *vfyCApath
, const char *vfyCAfile
,
1402 const char *vfyCAstore
,
1403 const char *chCApath
, const char *chCAfile
,
1404 const char *chCAstore
,
1405 STACK_OF(X509_CRL
) *crls
, int crl_download
)
1407 X509_STORE
*vfy
= NULL
, *ch
= NULL
;
1410 if (vfyCApath
!= NULL
|| vfyCAfile
!= NULL
|| vfyCAstore
!= NULL
) {
1411 vfy
= X509_STORE_new();
1414 if (vfyCAfile
!= NULL
&& !X509_STORE_load_file(vfy
, vfyCAfile
))
1416 if (vfyCApath
!= NULL
&& !X509_STORE_load_path(vfy
, vfyCApath
))
1418 if (vfyCAstore
!= NULL
&& !X509_STORE_load_store(vfy
, vfyCAstore
))
1420 add_crls_store(vfy
, crls
);
1421 if (SSL_CTX_set1_verify_cert_store(ctx
, vfy
) == 0)
1424 store_setup_crl_download(vfy
);
1426 if (chCApath
!= NULL
|| chCAfile
!= NULL
|| chCAstore
!= NULL
) {
1427 ch
= X509_STORE_new();
1430 if (chCAfile
!= NULL
&& !X509_STORE_load_file(ch
, chCAfile
))
1432 if (chCApath
!= NULL
&& !X509_STORE_load_path(ch
, chCApath
))
1434 if (chCAstore
!= NULL
&& !X509_STORE_load_store(ch
, chCAstore
))
1436 if (SSL_CTX_set1_chain_cert_store(ctx
, ch
) == 0)
1441 X509_STORE_free(vfy
);
1442 X509_STORE_free(ch
);
1446 /* Verbose print out of security callback */
1451 int (*old_cb
) (const SSL
*s
, const SSL_CTX
*ctx
, int op
, int bits
, int nid
,
1452 void *other
, void *ex
);
1453 } security_debug_ex
;
1455 static STRINT_PAIR callback_types
[] = {
1456 {"Supported Ciphersuite", SSL_SECOP_CIPHER_SUPPORTED
},
1457 {"Shared Ciphersuite", SSL_SECOP_CIPHER_SHARED
},
1458 {"Check Ciphersuite", SSL_SECOP_CIPHER_CHECK
},
1459 #ifndef OPENSSL_NO_DH
1460 {"Temp DH key bits", SSL_SECOP_TMP_DH
},
1462 {"Supported Curve", SSL_SECOP_CURVE_SUPPORTED
},
1463 {"Shared Curve", SSL_SECOP_CURVE_SHARED
},
1464 {"Check Curve", SSL_SECOP_CURVE_CHECK
},
1465 {"Supported Signature Algorithm", SSL_SECOP_SIGALG_SUPPORTED
},
1466 {"Shared Signature Algorithm", SSL_SECOP_SIGALG_SHARED
},
1467 {"Check Signature Algorithm", SSL_SECOP_SIGALG_CHECK
},
1468 {"Signature Algorithm mask", SSL_SECOP_SIGALG_MASK
},
1469 {"Certificate chain EE key", SSL_SECOP_EE_KEY
},
1470 {"Certificate chain CA key", SSL_SECOP_CA_KEY
},
1471 {"Peer Chain EE key", SSL_SECOP_PEER_EE_KEY
},
1472 {"Peer Chain CA key", SSL_SECOP_PEER_CA_KEY
},
1473 {"Certificate chain CA digest", SSL_SECOP_CA_MD
},
1474 {"Peer chain CA digest", SSL_SECOP_PEER_CA_MD
},
1475 {"SSL compression", SSL_SECOP_COMPRESSION
},
1476 {"Session ticket", SSL_SECOP_TICKET
},
1480 static int security_callback_debug(const SSL
*s
, const SSL_CTX
*ctx
,
1481 int op
, int bits
, int nid
,
1482 void *other
, void *ex
)
1484 security_debug_ex
*sdb
= ex
;
1485 int rv
, show_bits
= 1, cert_md
= 0;
1489 rv
= sdb
->old_cb(s
, ctx
, op
, bits
, nid
, other
, ex
);
1490 if (rv
== 1 && sdb
->verbose
< 2)
1492 BIO_puts(sdb
->out
, "Security callback: ");
1494 nm
= lookup(op
, callback_types
, NULL
);
1495 show_nm
= nm
!= NULL
;
1497 case SSL_SECOP_TICKET
:
1498 case SSL_SECOP_COMPRESSION
:
1502 case SSL_SECOP_VERSION
:
1503 BIO_printf(sdb
->out
, "Version=%s", lookup(nid
, ssl_versions
, "???"));
1507 case SSL_SECOP_CA_MD
:
1508 case SSL_SECOP_PEER_CA_MD
:
1511 case SSL_SECOP_SIGALG_SUPPORTED
:
1512 case SSL_SECOP_SIGALG_SHARED
:
1513 case SSL_SECOP_SIGALG_CHECK
:
1514 case SSL_SECOP_SIGALG_MASK
:
1519 BIO_printf(sdb
->out
, "%s=", nm
);
1521 switch (op
& SSL_SECOP_OTHER_TYPE
) {
1523 case SSL_SECOP_OTHER_CIPHER
:
1524 BIO_puts(sdb
->out
, SSL_CIPHER_get_name(other
));
1527 #ifndef OPENSSL_NO_EC
1528 case SSL_SECOP_OTHER_CURVE
:
1531 cname
= EC_curve_nid2nist(nid
);
1533 cname
= OBJ_nid2sn(nid
);
1534 BIO_puts(sdb
->out
, cname
);
1538 case SSL_SECOP_OTHER_CERT
:
1541 int sig_nid
= X509_get_signature_nid(other
);
1543 BIO_puts(sdb
->out
, OBJ_nid2sn(sig_nid
));
1545 EVP_PKEY
*pkey
= X509_get0_pubkey(other
);
1548 BIO_printf(sdb
->out
, "Public key missing");
1550 const char *algname
= "";
1552 EVP_PKEY_asn1_get0_info(NULL
, NULL
, NULL
, NULL
,
1553 &algname
, EVP_PKEY_get0_asn1(pkey
));
1554 BIO_printf(sdb
->out
, "%s, bits=%d",
1555 algname
, EVP_PKEY_get_bits(pkey
));
1560 case SSL_SECOP_OTHER_SIGALG
:
1562 const unsigned char *salg
= other
;
1563 const char *sname
= NULL
;
1564 int raw_sig_code
= (salg
[0] << 8) + salg
[1]; /* always big endian (msb, lsb) */
1565 /* raw_sig_code: signature_scheme from tls1.3, or signature_and_hash from tls1.2 */
1568 BIO_printf(sdb
->out
, "%s", nm
);
1570 BIO_printf(sdb
->out
, "s_cb.c:security_callback_debug op=0x%x", op
);
1572 sname
= lookup(raw_sig_code
, signature_tls13_scheme_list
, NULL
);
1573 if (sname
!= NULL
) {
1574 BIO_printf(sdb
->out
, " scheme=%s", sname
);
1576 int alg_code
= salg
[1];
1577 int hash_code
= salg
[0];
1578 const char *alg_str
= lookup(alg_code
, signature_tls12_alg_list
, NULL
);
1579 const char *hash_str
= lookup(hash_code
, signature_tls12_hash_list
, NULL
);
1581 if (alg_str
!= NULL
&& hash_str
!= NULL
)
1582 BIO_printf(sdb
->out
, " digest=%s, algorithm=%s", hash_str
, alg_str
);
1584 BIO_printf(sdb
->out
, " scheme=unknown(0x%04x)", raw_sig_code
);
1591 BIO_printf(sdb
->out
, ", security bits=%d", bits
);
1592 BIO_printf(sdb
->out
, ": %s\n", rv
? "yes" : "no");
1596 void ssl_ctx_security_debug(SSL_CTX
*ctx
, int verbose
)
1598 static security_debug_ex sdb
;
1601 sdb
.verbose
= verbose
;
1602 sdb
.old_cb
= SSL_CTX_get_security_callback(ctx
);
1603 SSL_CTX_set_security_callback(ctx
, security_callback_debug
);
1604 SSL_CTX_set0_security_ex_data(ctx
, &sdb
);
1607 static void keylog_callback(const SSL
*ssl
, const char *line
)
1609 if (bio_keylog
== NULL
) {
1610 BIO_printf(bio_err
, "Keylog callback is invoked without valid file!\n");
1615 * There might be concurrent writers to the keylog file, so we must ensure
1616 * that the given line is written at once.
1618 BIO_printf(bio_keylog
, "%s\n", line
);
1619 (void)BIO_flush(bio_keylog
);
1622 int set_keylog_file(SSL_CTX
*ctx
, const char *keylog_file
)
1624 /* Close any open files */
1625 BIO_free_all(bio_keylog
);
1628 if (ctx
== NULL
|| keylog_file
== NULL
) {
1629 /* Keylogging is disabled, OK. */
1634 * Append rather than write in order to allow concurrent modification.
1635 * Furthermore, this preserves existing keylog files which is useful when
1636 * the tool is run multiple times.
1638 bio_keylog
= BIO_new_file(keylog_file
, "a");
1639 if (bio_keylog
== NULL
) {
1640 BIO_printf(bio_err
, "Error writing keylog file %s\n", keylog_file
);
1644 /* Write a header for seekable, empty files (this excludes pipes). */
1645 if (BIO_tell(bio_keylog
) == 0) {
1646 BIO_puts(bio_keylog
,
1647 "# SSL/TLS secrets log file, generated by OpenSSL\n");
1648 (void)BIO_flush(bio_keylog
);
1650 SSL_CTX_set_keylog_callback(ctx
, keylog_callback
);
1654 void print_ca_names(BIO
*bio
, SSL
*s
)
1656 const char *cs
= SSL_is_server(s
) ? "server" : "client";
1657 const STACK_OF(X509_NAME
) *sk
= SSL_get0_peer_CA_list(s
);
1660 if (sk
== NULL
|| sk_X509_NAME_num(sk
) == 0) {
1661 if (!SSL_is_server(s
))
1662 BIO_printf(bio
, "---\nNo %s certificate CA names sent\n", cs
);
1666 BIO_printf(bio
, "---\nAcceptable %s certificate CA names\n", cs
);
1667 for (i
= 0; i
< sk_X509_NAME_num(sk
); i
++) {
1668 X509_NAME_print_ex(bio
, sk_X509_NAME_value(sk
, i
), 0, get_nameopt());
1669 BIO_write(bio
, "\n", 1);
1673 void ssl_print_secure_renegotiation_notes(BIO
*bio
, SSL
*s
)
1675 if (SSL_VERSION_ALLOWS_RENEGOTIATION(s
)) {
1676 BIO_printf(bio
, "Secure Renegotiation IS%s supported\n",
1677 SSL_get_secure_renegotiation_support(s
) ? "" : " NOT");
1679 BIO_printf(bio
, "This TLS version forbids renegotiation.\n");
1683 int progress_cb(EVP_PKEY_CTX
*ctx
)
1685 BIO
*b
= EVP_PKEY_CTX_get_app_data(ctx
);
1686 int p
= EVP_PKEY_CTX_get_keygen_info(ctx
, 0);
1687 static const char symbols
[] = ".+*\n";
1688 char c
= (p
>= 0 && (size_t)p
<= sizeof(symbols
) - 1) ? symbols
[p
] : '?';
1690 BIO_write(b
, &c
, 1);