Remove heartbeats completely
[openssl.git] / apps / s_cb.c
1 /*
2  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (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
8  */
9
10 /* callback functions used by s_client, s_server, and s_time */
11 #include <stdio.h>
12 #include <stdlib.h>
13 #include <string.h> /* for memcpy() and strcmp() */
14 #define USE_SOCKETS
15 #include "apps.h"
16 #undef USE_SOCKETS
17 #include <openssl/err.h>
18 #include <openssl/rand.h>
19 #include <openssl/x509.h>
20 #include <openssl/ssl.h>
21 #include <openssl/bn.h>
22 #ifndef OPENSSL_NO_DH
23 # include <openssl/dh.h>
24 #endif
25 #include "s_apps.h"
26
27 #define COOKIE_SECRET_LENGTH    16
28
29 VERIFY_CB_ARGS verify_args = { 0, 0, X509_V_OK, 0 };
30
31 #ifndef OPENSSL_NO_SOCK
32 static unsigned char cookie_secret[COOKIE_SECRET_LENGTH];
33 static int cookie_initialized = 0;
34 #endif
35
36 static const char *lookup(int val, const STRINT_PAIR* list, const char* def)
37 {
38     for ( ; list->name; ++list)
39         if (list->retval == val)
40             return list->name;
41     return def;
42 }
43
44 int verify_callback(int ok, X509_STORE_CTX *ctx)
45 {
46     X509 *err_cert;
47     int err, depth;
48
49     err_cert = X509_STORE_CTX_get_current_cert(ctx);
50     err = X509_STORE_CTX_get_error(ctx);
51     depth = X509_STORE_CTX_get_error_depth(ctx);
52
53     if (!verify_args.quiet || !ok) {
54         BIO_printf(bio_err, "depth=%d ", depth);
55         if (err_cert) {
56             X509_NAME_print_ex(bio_err,
57                                X509_get_subject_name(err_cert),
58                                0, XN_FLAG_ONELINE);
59             BIO_puts(bio_err, "\n");
60         } else
61             BIO_puts(bio_err, "<no cert>\n");
62     }
63     if (!ok) {
64         BIO_printf(bio_err, "verify error:num=%d:%s\n", err,
65                    X509_verify_cert_error_string(err));
66         if (verify_args.depth >= depth) {
67             if (!verify_args.return_error)
68                 ok = 1;
69             verify_args.error = err;
70         } else {
71             ok = 0;
72             verify_args.error = X509_V_ERR_CERT_CHAIN_TOO_LONG;
73         }
74     }
75     switch (err) {
76     case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT:
77         BIO_puts(bio_err, "issuer= ");
78         X509_NAME_print_ex(bio_err, X509_get_issuer_name(err_cert),
79                            0, XN_FLAG_ONELINE);
80         BIO_puts(bio_err, "\n");
81         break;
82     case X509_V_ERR_CERT_NOT_YET_VALID:
83     case X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD:
84         BIO_printf(bio_err, "notBefore=");
85         ASN1_TIME_print(bio_err, X509_get0_notBefore(err_cert));
86         BIO_printf(bio_err, "\n");
87         break;
88     case X509_V_ERR_CERT_HAS_EXPIRED:
89     case X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD:
90         BIO_printf(bio_err, "notAfter=");
91         ASN1_TIME_print(bio_err, X509_get0_notAfter(err_cert));
92         BIO_printf(bio_err, "\n");
93         break;
94     case X509_V_ERR_NO_EXPLICIT_POLICY:
95         if (!verify_args.quiet)
96             policies_print(ctx);
97         break;
98     }
99     if (err == X509_V_OK && ok == 2 && !verify_args.quiet)
100         policies_print(ctx);
101     if (ok && !verify_args.quiet)
102         BIO_printf(bio_err, "verify return:%d\n", ok);
103     return (ok);
104 }
105
106 int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file)
107 {
108     if (cert_file != NULL) {
109         if (SSL_CTX_use_certificate_file(ctx, cert_file,
110                                          SSL_FILETYPE_PEM) <= 0) {
111             BIO_printf(bio_err, "unable to get certificate from '%s'\n",
112                        cert_file);
113             ERR_print_errors(bio_err);
114             return (0);
115         }
116         if (key_file == NULL)
117             key_file = cert_file;
118         if (SSL_CTX_use_PrivateKey_file(ctx, key_file, SSL_FILETYPE_PEM) <= 0) {
119             BIO_printf(bio_err, "unable to get private key from '%s'\n",
120                        key_file);
121             ERR_print_errors(bio_err);
122             return (0);
123         }
124
125         /*
126          * If we are using DSA, we can copy the parameters from the private
127          * key
128          */
129
130         /*
131          * Now we know that a key and cert have been set against the SSL
132          * context
133          */
134         if (!SSL_CTX_check_private_key(ctx)) {
135             BIO_printf(bio_err,
136                        "Private key does not match the certificate public key\n");
137             return (0);
138         }
139     }
140     return (1);
141 }
142
143 int set_cert_key_stuff(SSL_CTX *ctx, X509 *cert, EVP_PKEY *key,
144                        STACK_OF(X509) *chain, int build_chain)
145 {
146     int chflags = chain ? SSL_BUILD_CHAIN_FLAG_CHECK : 0;
147     if (cert == NULL)
148         return 1;
149     if (SSL_CTX_use_certificate(ctx, cert) <= 0) {
150         BIO_printf(bio_err, "error setting certificate\n");
151         ERR_print_errors(bio_err);
152         return 0;
153     }
154
155     if (SSL_CTX_use_PrivateKey(ctx, key) <= 0) {
156         BIO_printf(bio_err, "error setting private key\n");
157         ERR_print_errors(bio_err);
158         return 0;
159     }
160
161     /*
162      * Now we know that a key and cert have been set against the SSL context
163      */
164     if (!SSL_CTX_check_private_key(ctx)) {
165         BIO_printf(bio_err,
166                    "Private key does not match the certificate public key\n");
167         return 0;
168     }
169     if (chain && !SSL_CTX_set1_chain(ctx, chain)) {
170         BIO_printf(bio_err, "error setting certificate chain\n");
171         ERR_print_errors(bio_err);
172         return 0;
173     }
174     if (build_chain && !SSL_CTX_build_cert_chain(ctx, chflags)) {
175         BIO_printf(bio_err, "error building certificate chain\n");
176         ERR_print_errors(bio_err);
177         return 0;
178     }
179     return 1;
180 }
181
182 static STRINT_PAIR cert_type_list[] = {
183     {"RSA sign", TLS_CT_RSA_SIGN},
184     {"DSA sign", TLS_CT_DSS_SIGN},
185     {"RSA fixed DH", TLS_CT_RSA_FIXED_DH},
186     {"DSS fixed DH", TLS_CT_DSS_FIXED_DH},
187     {"ECDSA sign", TLS_CT_ECDSA_SIGN},
188     {"RSA fixed ECDH", TLS_CT_RSA_FIXED_ECDH},
189     {"ECDSA fixed ECDH", TLS_CT_ECDSA_FIXED_ECDH},
190     {"GOST01 Sign", TLS_CT_GOST01_SIGN},
191     {NULL}
192 };
193
194 static void ssl_print_client_cert_types(BIO *bio, SSL *s)
195 {
196     const unsigned char *p;
197     int i;
198     int cert_type_num = SSL_get0_certificate_types(s, &p);
199     if (!cert_type_num)
200         return;
201     BIO_puts(bio, "Client Certificate Types: ");
202     for (i = 0; i < cert_type_num; i++) {
203         unsigned char cert_type = p[i];
204         const char *cname = lookup((int)cert_type, cert_type_list, NULL);
205
206         if (i)
207             BIO_puts(bio, ", ");
208         if (cname)
209             BIO_puts(bio, cname);
210         else
211             BIO_printf(bio, "UNKNOWN (%d),", cert_type);
212     }
213     BIO_puts(bio, "\n");
214 }
215
216 static int do_print_sigalgs(BIO *out, SSL *s, int shared)
217 {
218     int i, nsig, client;
219     client = SSL_is_server(s) ? 0 : 1;
220     if (shared)
221         nsig = SSL_get_shared_sigalgs(s, -1, NULL, NULL, NULL, NULL, NULL);
222     else
223         nsig = SSL_get_sigalgs(s, -1, NULL, NULL, NULL, NULL, NULL);
224     if (nsig == 0)
225         return 1;
226
227     if (shared)
228         BIO_puts(out, "Shared ");
229
230     if (client)
231         BIO_puts(out, "Requested ");
232     BIO_puts(out, "Signature Algorithms: ");
233     for (i = 0; i < nsig; i++) {
234         int hash_nid, sign_nid;
235         unsigned char rhash, rsign;
236         const char *sstr = NULL;
237         if (shared)
238             SSL_get_shared_sigalgs(s, i, &sign_nid, &hash_nid, NULL,
239                                    &rsign, &rhash);
240         else
241             SSL_get_sigalgs(s, i, &sign_nid, &hash_nid, NULL, &rsign, &rhash);
242         if (i)
243             BIO_puts(out, ":");
244         if (sign_nid == EVP_PKEY_RSA)
245             sstr = "RSA";
246         else if (sign_nid == EVP_PKEY_DSA)
247             sstr = "DSA";
248         else if (sign_nid == EVP_PKEY_EC)
249             sstr = "ECDSA";
250         if (sstr)
251             BIO_printf(out, "%s+", sstr);
252         else
253             BIO_printf(out, "0x%02X+", (int)rsign);
254         if (hash_nid != NID_undef)
255             BIO_printf(out, "%s", OBJ_nid2sn(hash_nid));
256         else
257             BIO_printf(out, "0x%02X", (int)rhash);
258     }
259     BIO_puts(out, "\n");
260     return 1;
261 }
262
263 int ssl_print_sigalgs(BIO *out, SSL *s)
264 {
265     int mdnid;
266     if (!SSL_is_server(s))
267         ssl_print_client_cert_types(out, s);
268     do_print_sigalgs(out, s, 0);
269     do_print_sigalgs(out, s, 1);
270     if (SSL_get_peer_signature_nid(s, &mdnid))
271         BIO_printf(out, "Peer signing digest: %s\n", OBJ_nid2sn(mdnid));
272     return 1;
273 }
274
275 #ifndef OPENSSL_NO_EC
276 int ssl_print_point_formats(BIO *out, SSL *s)
277 {
278     int i, nformats;
279     const char *pformats;
280     nformats = SSL_get0_ec_point_formats(s, &pformats);
281     if (nformats <= 0)
282         return 1;
283     BIO_puts(out, "Supported Elliptic Curve Point Formats: ");
284     for (i = 0; i < nformats; i++, pformats++) {
285         if (i)
286             BIO_puts(out, ":");
287         switch (*pformats) {
288         case TLSEXT_ECPOINTFORMAT_uncompressed:
289             BIO_puts(out, "uncompressed");
290             break;
291
292         case TLSEXT_ECPOINTFORMAT_ansiX962_compressed_prime:
293             BIO_puts(out, "ansiX962_compressed_prime");
294             break;
295
296         case TLSEXT_ECPOINTFORMAT_ansiX962_compressed_char2:
297             BIO_puts(out, "ansiX962_compressed_char2");
298             break;
299
300         default:
301             BIO_printf(out, "unknown(%d)", (int)*pformats);
302             break;
303
304         }
305     }
306     BIO_puts(out, "\n");
307     return 1;
308 }
309
310 int ssl_print_groups(BIO *out, SSL *s, int noshared)
311 {
312     int i, ngroups, *groups, nid;
313     const char *gname;
314
315     ngroups = SSL_get1_groups(s, NULL);
316     if (ngroups <= 0)
317         return 1;
318     groups = app_malloc(ngroups * sizeof(int), "groups to print");
319     SSL_get1_groups(s, groups);
320
321     BIO_puts(out, "Supported Elliptic Groups: ");
322     for (i = 0; i < ngroups; i++) {
323         if (i)
324             BIO_puts(out, ":");
325         nid = groups[i];
326         /* If unrecognised print out hex version */
327         if (nid & TLSEXT_nid_unknown)
328             BIO_printf(out, "0x%04X", nid & 0xFFFF);
329         else {
330             /* TODO(TLS1.3): Get group name here */
331             /* Use NIST name for curve if it exists */
332             gname = EC_curve_nid2nist(nid);
333             if (!gname)
334                 gname = OBJ_nid2sn(nid);
335             BIO_printf(out, "%s", gname);
336         }
337     }
338     OPENSSL_free(groups);
339     if (noshared) {
340         BIO_puts(out, "\n");
341         return 1;
342     }
343     BIO_puts(out, "\nShared Elliptic groups: ");
344     ngroups = SSL_get_shared_group(s, -1);
345     for (i = 0; i < ngroups; i++) {
346         if (i)
347             BIO_puts(out, ":");
348         nid = SSL_get_shared_group(s, i);
349         /* TODO(TLS1.3): Convert for DH groups */
350         gname = EC_curve_nid2nist(nid);
351         if (!gname)
352             gname = OBJ_nid2sn(nid);
353         BIO_printf(out, "%s", gname);
354     }
355     if (ngroups == 0)
356         BIO_puts(out, "NONE");
357     BIO_puts(out, "\n");
358     return 1;
359 }
360 #endif
361 int ssl_print_tmp_key(BIO *out, SSL *s)
362 {
363     EVP_PKEY *key;
364     if (!SSL_get_server_tmp_key(s, &key))
365         return 1;
366     BIO_puts(out, "Server Temp Key: ");
367     switch (EVP_PKEY_id(key)) {
368     case EVP_PKEY_RSA:
369         BIO_printf(out, "RSA, %d bits\n", EVP_PKEY_bits(key));
370         break;
371
372     case EVP_PKEY_DH:
373         BIO_printf(out, "DH, %d bits\n", EVP_PKEY_bits(key));
374         break;
375 #ifndef OPENSSL_NO_EC
376     case EVP_PKEY_EC:
377         {
378             EC_KEY *ec = EVP_PKEY_get1_EC_KEY(key);
379             int nid;
380             const char *cname;
381             nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(ec));
382             EC_KEY_free(ec);
383             cname = EC_curve_nid2nist(nid);
384             if (!cname)
385                 cname = OBJ_nid2sn(nid);
386             BIO_printf(out, "ECDH, %s, %d bits\n", cname, EVP_PKEY_bits(key));
387         }
388     break;
389 #endif
390     default:
391         BIO_printf(out, "%s, %d bits\n", OBJ_nid2sn(EVP_PKEY_id(key)),
392                    EVP_PKEY_bits(key));
393     }
394     EVP_PKEY_free(key);
395     return 1;
396 }
397
398 long bio_dump_callback(BIO *bio, int cmd, const char *argp,
399                        int argi, long argl, long ret)
400 {
401     BIO *out;
402
403     out = (BIO *)BIO_get_callback_arg(bio);
404     if (out == NULL)
405         return (ret);
406
407     if (cmd == (BIO_CB_READ | BIO_CB_RETURN)) {
408         BIO_printf(out, "read from %p [%p] (%lu bytes => %ld (0x%lX))\n",
409                    (void *)bio, (void *)argp, (unsigned long)argi, ret, ret);
410         BIO_dump(out, argp, (int)ret);
411         return (ret);
412     } else if (cmd == (BIO_CB_WRITE | BIO_CB_RETURN)) {
413         BIO_printf(out, "write to %p [%p] (%lu bytes => %ld (0x%lX))\n",
414                    (void *)bio, (void *)argp, (unsigned long)argi, ret, ret);
415         BIO_dump(out, argp, (int)ret);
416     }
417     return (ret);
418 }
419
420 void apps_ssl_info_callback(const SSL *s, int where, int ret)
421 {
422     const char *str;
423     int w;
424
425     w = where & ~SSL_ST_MASK;
426
427     if (w & SSL_ST_CONNECT)
428         str = "SSL_connect";
429     else if (w & SSL_ST_ACCEPT)
430         str = "SSL_accept";
431     else
432         str = "undefined";
433
434     if (where & SSL_CB_LOOP) {
435         BIO_printf(bio_err, "%s:%s\n", str, SSL_state_string_long(s));
436     } else if (where & SSL_CB_ALERT) {
437         str = (where & SSL_CB_READ) ? "read" : "write";
438         BIO_printf(bio_err, "SSL3 alert %s:%s:%s\n",
439                    str,
440                    SSL_alert_type_string_long(ret),
441                    SSL_alert_desc_string_long(ret));
442     } else if (where & SSL_CB_EXIT) {
443         if (ret == 0)
444             BIO_printf(bio_err, "%s:failed in %s\n",
445                        str, SSL_state_string_long(s));
446         else if (ret < 0) {
447             BIO_printf(bio_err, "%s:error in %s\n",
448                        str, SSL_state_string_long(s));
449         }
450     }
451 }
452
453 static STRINT_PAIR ssl_versions[] = {
454     {"SSL 3.0", SSL3_VERSION},
455     {"TLS 1.0", TLS1_VERSION},
456     {"TLS 1.1", TLS1_1_VERSION},
457     {"TLS 1.2", TLS1_2_VERSION},
458     {"TLS 1.3", TLS1_3_VERSION},
459     {"DTLS 1.0", DTLS1_VERSION},
460     {"DTLS 1.0 (bad)", DTLS1_BAD_VER},
461     {NULL}
462 };
463 static STRINT_PAIR alert_types[] = {
464     {" close_notify", 0},
465     {" unexpected_message", 10},
466     {" bad_record_mac", 20},
467     {" decryption_failed", 21},
468     {" record_overflow", 22},
469     {" decompression_failure", 30},
470     {" handshake_failure", 40},
471     {" bad_certificate", 42},
472     {" unsupported_certificate", 43},
473     {" certificate_revoked", 44},
474     {" certificate_expired", 45},
475     {" certificate_unknown", 46},
476     {" illegal_parameter", 47},
477     {" unknown_ca", 48},
478     {" access_denied", 49},
479     {" decode_error", 50},
480     {" decrypt_error", 51},
481     {" export_restriction", 60},
482     {" protocol_version", 70},
483     {" insufficient_security", 71},
484     {" internal_error", 80},
485     {" user_canceled", 90},
486     {" no_renegotiation", 100},
487     {" unsupported_extension", 110},
488     {" certificate_unobtainable", 111},
489     {" unrecognized_name", 112},
490     {" bad_certificate_status_response", 113},
491     {" bad_certificate_hash_value", 114},
492     {" unknown_psk_identity", 115},
493     {NULL}
494 };
495
496 static STRINT_PAIR handshakes[] = {
497     {", HelloRequest", 0},
498     {", ClientHello", 1},
499     {", ServerHello", 2},
500     {", HelloVerifyRequest", 3},
501     {", NewSessionTicket", 4},
502     {", Certificate", 11},
503     {", ServerKeyExchange", 12},
504     {", CertificateRequest", 13},
505     {", ServerHelloDone", 14},
506     {", CertificateVerify", 15},
507     {", ClientKeyExchange", 16},
508     {", Finished", 20},
509     {", CertificateUrl", 21},
510     {", CertificateStatus", 22},
511     {", SupplementalData", 23},
512     {NULL}
513 };
514
515 void msg_cb(int write_p, int version, int content_type, const void *buf,
516             size_t len, SSL *ssl, void *arg)
517 {
518     BIO *bio = arg;
519     const char *str_write_p = write_p ? ">>>" : "<<<";
520     const char *str_version = lookup(version, ssl_versions, "???");
521     const char *str_content_type = "", *str_details1 = "", *str_details2 = "";
522     const unsigned char* bp = buf;
523
524     if (version == SSL3_VERSION ||
525         version == TLS1_VERSION ||
526         version == TLS1_1_VERSION ||
527         version == TLS1_2_VERSION ||
528         version == TLS1_3_VERSION ||
529         version == DTLS1_VERSION || version == DTLS1_BAD_VER) {
530         switch (content_type) {
531         case 20:
532             str_content_type = "ChangeCipherSpec";
533             break;
534         case 21:
535             str_content_type = "Alert";
536             str_details1 = ", ???";
537             if (len == 2) {
538                 switch (bp[0]) {
539                 case 1:
540                     str_details1 = ", warning";
541                     break;
542                 case 2:
543                     str_details1 = ", fatal";
544                     break;
545                 }
546                 str_details2 = lookup((int)bp[1], alert_types, " ???");
547             }
548             break;
549         case 22:
550             str_content_type = "Handshake";
551             str_details1 = "???";
552             if (len > 0)
553                 str_details1 = lookup((int)bp[0], handshakes, "???");
554             break;
555         case 23:
556             str_content_type = "ApplicationData";
557             break;
558         }
559     }
560
561     BIO_printf(bio, "%s %s%s [length %04lx]%s%s\n", str_write_p, str_version,
562                str_content_type, (unsigned long)len, str_details1,
563                str_details2);
564
565     if (len > 0) {
566         size_t num, i;
567
568         BIO_printf(bio, "   ");
569         num = len;
570         for (i = 0; i < num; i++) {
571             if (i % 16 == 0 && i > 0)
572                 BIO_printf(bio, "\n   ");
573             BIO_printf(bio, " %02x", ((const unsigned char *)buf)[i]);
574         }
575         if (i < len)
576             BIO_printf(bio, " ...");
577         BIO_printf(bio, "\n");
578     }
579     (void)BIO_flush(bio);
580 }
581
582 static STRINT_PAIR tlsext_types[] = {
583     {"server name", TLSEXT_TYPE_server_name},
584     {"max fragment length", TLSEXT_TYPE_max_fragment_length},
585     {"client certificate URL", TLSEXT_TYPE_client_certificate_url},
586     {"trusted CA keys", TLSEXT_TYPE_trusted_ca_keys},
587     {"truncated HMAC", TLSEXT_TYPE_truncated_hmac},
588     {"status request", TLSEXT_TYPE_status_request},
589     {"user mapping", TLSEXT_TYPE_user_mapping},
590     {"client authz", TLSEXT_TYPE_client_authz},
591     {"server authz", TLSEXT_TYPE_server_authz},
592     {"cert type", TLSEXT_TYPE_cert_type},
593     {"supported_groups", TLSEXT_TYPE_supported_groups},
594     {"EC point formats", TLSEXT_TYPE_ec_point_formats},
595     {"SRP", TLSEXT_TYPE_srp},
596     {"signature algorithms", TLSEXT_TYPE_signature_algorithms},
597     {"use SRTP", TLSEXT_TYPE_use_srtp},
598     {"session ticket", TLSEXT_TYPE_session_ticket},
599     {"renegotiation info", TLSEXT_TYPE_renegotiate},
600     {"signed certificate timestamps", TLSEXT_TYPE_signed_certificate_timestamp},
601     {"TLS padding", TLSEXT_TYPE_padding},
602 #ifdef TLSEXT_TYPE_next_proto_neg
603     {"next protocol", TLSEXT_TYPE_next_proto_neg},
604 #endif
605 #ifdef TLSEXT_TYPE_encrypt_then_mac
606     {"encrypt-then-mac", TLSEXT_TYPE_encrypt_then_mac},
607 #endif
608 #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
609     {"application layer protocol negotiation",
610      TLSEXT_TYPE_application_layer_protocol_negotiation},
611 #endif
612 #ifdef TLSEXT_TYPE_extended_master_secret
613     {"extended master secret", TLSEXT_TYPE_extended_master_secret},
614 #endif
615     {NULL}
616 };
617
618 void tlsext_cb(SSL *s, int client_server, int type,
619                const unsigned char *data, int len, void *arg)
620 {
621     BIO *bio = arg;
622     const char *extname = lookup(type, tlsext_types, "unknown");
623
624     BIO_printf(bio, "TLS %s extension \"%s\" (id=%d), len=%d\n",
625                client_server ? "server" : "client", extname, type, len);
626     BIO_dump(bio, (const char *)data, len);
627     (void)BIO_flush(bio);
628 }
629
630 #ifndef OPENSSL_NO_SOCK
631 int generate_cookie_callback(SSL *ssl, unsigned char *cookie,
632                              unsigned int *cookie_len)
633 {
634     unsigned char *buffer;
635     size_t length;
636     unsigned short port;
637     BIO_ADDR *peer = NULL;
638
639     /* Initialize a random secret */
640     if (!cookie_initialized) {
641         if (RAND_bytes(cookie_secret, COOKIE_SECRET_LENGTH) <= 0) {
642             BIO_printf(bio_err, "error setting random cookie secret\n");
643             return 0;
644         }
645         cookie_initialized = 1;
646     }
647
648     peer = BIO_ADDR_new();
649     if (peer == NULL) {
650         BIO_printf(bio_err, "memory full\n");
651         return 0;
652     }
653
654     /* Read peer information */
655     (void)BIO_dgram_get_peer(SSL_get_rbio(ssl), peer);
656
657     /* Create buffer with peer's address and port */
658     BIO_ADDR_rawaddress(peer, NULL, &length);
659     OPENSSL_assert(length != 0);
660     port = BIO_ADDR_rawport(peer);
661     length += sizeof(port);
662     buffer = app_malloc(length, "cookie generate buffer");
663
664     memcpy(buffer, &port, sizeof(port));
665     BIO_ADDR_rawaddress(peer, buffer + sizeof(port), NULL);
666
667     /* Calculate HMAC of buffer using the secret */
668     HMAC(EVP_sha1(), cookie_secret, COOKIE_SECRET_LENGTH,
669          buffer, length, cookie, cookie_len);
670
671     OPENSSL_free(buffer);
672     BIO_ADDR_free(peer);
673
674     return 1;
675 }
676
677 int verify_cookie_callback(SSL *ssl, const unsigned char *cookie,
678                            unsigned int cookie_len)
679 {
680     unsigned char result[EVP_MAX_MD_SIZE];
681     unsigned int resultlength;
682
683     /* Note: we check cookie_initialized because if it's not,
684      * it cannot be valid */
685     if (cookie_initialized
686         && generate_cookie_callback(ssl, result, &resultlength)
687         && cookie_len == resultlength
688         && memcmp(result, cookie, resultlength) == 0)
689         return 1;
690
691     return 0;
692 }
693 #endif
694
695 /*
696  * Example of extended certificate handling. Where the standard support of
697  * one certificate per algorithm is not sufficient an application can decide
698  * which certificate(s) to use at runtime based on whatever criteria it deems
699  * appropriate.
700  */
701
702 /* Linked list of certificates, keys and chains */
703 struct ssl_excert_st {
704     int certform;
705     const char *certfile;
706     int keyform;
707     const char *keyfile;
708     const char *chainfile;
709     X509 *cert;
710     EVP_PKEY *key;
711     STACK_OF(X509) *chain;
712     int build_chain;
713     struct ssl_excert_st *next, *prev;
714 };
715
716 static STRINT_PAIR chain_flags[] = {
717     {"Overall Validity", CERT_PKEY_VALID},
718     {"Sign with EE key", CERT_PKEY_SIGN},
719     {"EE signature", CERT_PKEY_EE_SIGNATURE},
720     {"CA signature", CERT_PKEY_CA_SIGNATURE},
721     {"EE key parameters", CERT_PKEY_EE_PARAM},
722     {"CA key parameters", CERT_PKEY_CA_PARAM},
723     {"Explicitly sign with EE key", CERT_PKEY_EXPLICIT_SIGN},
724     {"Issuer Name", CERT_PKEY_ISSUER_NAME},
725     {"Certificate Type", CERT_PKEY_CERT_TYPE},
726     {NULL}
727 };
728
729 static void print_chain_flags(SSL *s, int flags)
730 {
731     STRINT_PAIR *pp;
732
733     for (pp = chain_flags; pp->name; ++pp)
734         BIO_printf(bio_err, "\t%s: %s\n",
735                    pp->name,
736                    (flags & pp->retval) ? "OK" : "NOT OK");
737     BIO_printf(bio_err, "\tSuite B: ");
738     if (SSL_set_cert_flags(s, 0) & SSL_CERT_FLAG_SUITEB_128_LOS)
739         BIO_puts(bio_err, flags & CERT_PKEY_SUITEB ? "OK\n" : "NOT OK\n");
740     else
741         BIO_printf(bio_err, "not tested\n");
742 }
743
744 /*
745  * Very basic selection callback: just use any certificate chain reported as
746  * valid. More sophisticated could prioritise according to local policy.
747  */
748 static int set_cert_cb(SSL *ssl, void *arg)
749 {
750     int i, rv;
751     SSL_EXCERT *exc = arg;
752 #ifdef CERT_CB_TEST_RETRY
753     static int retry_cnt;
754     if (retry_cnt < 5) {
755         retry_cnt++;
756         BIO_printf(bio_err,
757                    "Certificate callback retry test: count %d\n",
758                    retry_cnt);
759         return -1;
760     }
761 #endif
762     SSL_certs_clear(ssl);
763
764     if (!exc)
765         return 1;
766
767     /*
768      * Go to end of list and traverse backwards since we prepend newer
769      * entries this retains the original order.
770      */
771     while (exc->next)
772         exc = exc->next;
773
774     i = 0;
775
776     while (exc) {
777         i++;
778         rv = SSL_check_chain(ssl, exc->cert, exc->key, exc->chain);
779         BIO_printf(bio_err, "Checking cert chain %d:\nSubject: ", i);
780         X509_NAME_print_ex(bio_err, X509_get_subject_name(exc->cert), 0,
781                            XN_FLAG_ONELINE);
782         BIO_puts(bio_err, "\n");
783         print_chain_flags(ssl, rv);
784         if (rv & CERT_PKEY_VALID) {
785             if (!SSL_use_certificate(ssl, exc->cert)
786                     || !SSL_use_PrivateKey(ssl, exc->key)) {
787                 return 0;
788             }
789             /*
790              * NB: we wouldn't normally do this as it is not efficient
791              * building chains on each connection better to cache the chain
792              * in advance.
793              */
794             if (exc->build_chain) {
795                 if (!SSL_build_cert_chain(ssl, 0))
796                     return 0;
797             } else if (exc->chain)
798                 SSL_set1_chain(ssl, exc->chain);
799         }
800         exc = exc->prev;
801     }
802     return 1;
803 }
804
805 void ssl_ctx_set_excert(SSL_CTX *ctx, SSL_EXCERT *exc)
806 {
807     SSL_CTX_set_cert_cb(ctx, set_cert_cb, exc);
808 }
809
810 static int ssl_excert_prepend(SSL_EXCERT **pexc)
811 {
812     SSL_EXCERT *exc = app_malloc(sizeof(*exc), "prepend cert");
813
814     memset(exc, 0, sizeof(*exc));
815
816     exc->next = *pexc;
817     *pexc = exc;
818
819     if (exc->next) {
820         exc->certform = exc->next->certform;
821         exc->keyform = exc->next->keyform;
822         exc->next->prev = exc;
823     } else {
824         exc->certform = FORMAT_PEM;
825         exc->keyform = FORMAT_PEM;
826     }
827     return 1;
828
829 }
830
831 void ssl_excert_free(SSL_EXCERT *exc)
832 {
833     SSL_EXCERT *curr;
834
835     if (!exc)
836         return;
837     while (exc) {
838         X509_free(exc->cert);
839         EVP_PKEY_free(exc->key);
840         sk_X509_pop_free(exc->chain, X509_free);
841         curr = exc;
842         exc = exc->next;
843         OPENSSL_free(curr);
844     }
845 }
846
847 int load_excert(SSL_EXCERT **pexc)
848 {
849     SSL_EXCERT *exc = *pexc;
850     if (!exc)
851         return 1;
852     /* If nothing in list, free and set to NULL */
853     if (!exc->certfile && !exc->next) {
854         ssl_excert_free(exc);
855         *pexc = NULL;
856         return 1;
857     }
858     for (; exc; exc = exc->next) {
859         if (!exc->certfile) {
860             BIO_printf(bio_err, "Missing filename\n");
861             return 0;
862         }
863         exc->cert = load_cert(exc->certfile, exc->certform,
864                               "Server Certificate");
865         if (!exc->cert)
866             return 0;
867         if (exc->keyfile) {
868             exc->key = load_key(exc->keyfile, exc->keyform,
869                                 0, NULL, NULL, "Server Key");
870         } else {
871             exc->key = load_key(exc->certfile, exc->certform,
872                                 0, NULL, NULL, "Server Key");
873         }
874         if (!exc->key)
875             return 0;
876         if (exc->chainfile) {
877             if (!load_certs(exc->chainfile, &exc->chain, FORMAT_PEM, NULL,
878                             "Server Chain"))
879                 return 0;
880         }
881     }
882     return 1;
883 }
884
885 enum range { OPT_X_ENUM };
886
887 int args_excert(int opt, SSL_EXCERT **pexc)
888 {
889     SSL_EXCERT *exc = *pexc;
890
891     assert(opt > OPT_X__FIRST);
892     assert(opt < OPT_X__LAST);
893
894     if (exc == NULL) {
895         if (!ssl_excert_prepend(&exc)) {
896             BIO_printf(bio_err, " %s: Error initialising xcert\n",
897                        opt_getprog());
898             goto err;
899         }
900         *pexc = exc;
901     }
902
903     switch ((enum range)opt) {
904     case OPT_X__FIRST:
905     case OPT_X__LAST:
906         return 0;
907     case OPT_X_CERT:
908         if (exc->certfile && !ssl_excert_prepend(&exc)) {
909             BIO_printf(bio_err, "%s: Error adding xcert\n", opt_getprog());
910             goto err;
911         }
912         exc->certfile = opt_arg();
913         break;
914     case OPT_X_KEY:
915         if (exc->keyfile) {
916             BIO_printf(bio_err, "%s: Key already specified\n", opt_getprog());
917             goto err;
918         }
919         exc->keyfile = opt_arg();
920         break;
921     case OPT_X_CHAIN:
922         if (exc->chainfile) {
923             BIO_printf(bio_err, "%s: Chain already specified\n",
924                        opt_getprog());
925             goto err;
926         }
927         exc->chainfile = opt_arg();
928         break;
929     case OPT_X_CHAIN_BUILD:
930         exc->build_chain = 1;
931         break;
932     case OPT_X_CERTFORM:
933         if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &exc->certform))
934             return 0;
935         break;
936     case OPT_X_KEYFORM:
937         if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &exc->keyform))
938             return 0;
939         break;
940     }
941     return 1;
942
943  err:
944     ERR_print_errors(bio_err);
945     ssl_excert_free(exc);
946     *pexc = NULL;
947     return 0;
948 }
949
950 static void print_raw_cipherlist(SSL *s)
951 {
952     const unsigned char *rlist;
953     static const unsigned char scsv_id[] = { 0, 0xFF };
954     size_t i, rlistlen, num;
955     if (!SSL_is_server(s))
956         return;
957     num = SSL_get0_raw_cipherlist(s, NULL);
958     OPENSSL_assert(num == 2);
959     rlistlen = SSL_get0_raw_cipherlist(s, &rlist);
960     BIO_puts(bio_err, "Client cipher list: ");
961     for (i = 0; i < rlistlen; i += num, rlist += num) {
962         const SSL_CIPHER *c = SSL_CIPHER_find(s, rlist);
963         if (i)
964             BIO_puts(bio_err, ":");
965         if (c)
966             BIO_puts(bio_err, SSL_CIPHER_get_name(c));
967         else if (!memcmp(rlist, scsv_id, num))
968             BIO_puts(bio_err, "SCSV");
969         else {
970             size_t j;
971             BIO_puts(bio_err, "0x");
972             for (j = 0; j < num; j++)
973                 BIO_printf(bio_err, "%02X", rlist[j]);
974         }
975     }
976     BIO_puts(bio_err, "\n");
977 }
978
979 /*
980  * Hex encoder for TLSA RRdata, not ':' delimited.
981  */
982 static char *hexencode(const unsigned char *data, size_t len)
983 {
984     static const char *hex = "0123456789abcdef";
985     char *out;
986     char *cp;
987     size_t outlen = 2 * len + 1;
988     int ilen = (int) outlen;
989
990     if (outlen < len || ilen < 0 || outlen != (size_t)ilen) {
991         BIO_printf(bio_err, "%s: %" PRIu64 "-byte buffer too large to hexencode\n",
992                    opt_getprog(), (uint64_t)len);
993         exit(1);
994     }
995     cp = out = app_malloc(ilen, "TLSA hex data buffer");
996
997     while (len-- > 0) {
998         *cp++ = hex[(*data >> 4) & 0x0f];
999         *cp++ = hex[*data++ & 0x0f];
1000     }
1001     *cp = '\0';
1002     return out;
1003 }
1004
1005 void print_verify_detail(SSL *s, BIO *bio)
1006 {
1007     int mdpth;
1008     EVP_PKEY *mspki;
1009     long verify_err = SSL_get_verify_result(s);
1010
1011     if (verify_err == X509_V_OK) {
1012         const char *peername = SSL_get0_peername(s);
1013
1014         BIO_printf(bio, "Verification: OK\n");
1015         if (peername != NULL)
1016             BIO_printf(bio, "Verified peername: %s\n", peername);
1017     } else {
1018         const char *reason = X509_verify_cert_error_string(verify_err);
1019
1020         BIO_printf(bio, "Verification error: %s\n", reason);
1021     }
1022
1023     if ((mdpth = SSL_get0_dane_authority(s, NULL, &mspki)) >= 0) {
1024         uint8_t usage, selector, mtype;
1025         const unsigned char *data = NULL;
1026         size_t dlen = 0;
1027         char *hexdata;
1028
1029         mdpth = SSL_get0_dane_tlsa(s, &usage, &selector, &mtype, &data, &dlen);
1030
1031         /*
1032          * The TLSA data field can be quite long when it is a certificate,
1033          * public key or even a SHA2-512 digest.  Because the initial octets of
1034          * ASN.1 certificates and public keys contain mostly boilerplate OIDs
1035          * and lengths, we show the last 12 bytes of the data instead, as these
1036          * are more likely to distinguish distinct TLSA records.
1037          */
1038 #define TLSA_TAIL_SIZE 12
1039         if (dlen > TLSA_TAIL_SIZE)
1040             hexdata = hexencode(data + dlen - TLSA_TAIL_SIZE, TLSA_TAIL_SIZE);
1041         else
1042             hexdata = hexencode(data, dlen);
1043         BIO_printf(bio, "DANE TLSA %d %d %d %s%s %s at depth %d\n",
1044                    usage, selector, mtype,
1045                    (dlen > TLSA_TAIL_SIZE) ? "..." : "", hexdata,
1046                    (mspki != NULL) ? "signed the certificate" :
1047                    mdpth ? "matched TA certificate" : "matched EE certificate",
1048                    mdpth);
1049         OPENSSL_free(hexdata);
1050     }
1051 }
1052
1053 void print_ssl_summary(SSL *s)
1054 {
1055     const SSL_CIPHER *c;
1056     X509 *peer;
1057     /* const char *pnam = SSL_is_server(s) ? "client" : "server"; */
1058
1059     BIO_printf(bio_err, "Protocol version: %s\n", SSL_get_version(s));
1060     print_raw_cipherlist(s);
1061     c = SSL_get_current_cipher(s);
1062     BIO_printf(bio_err, "Ciphersuite: %s\n", SSL_CIPHER_get_name(c));
1063     do_print_sigalgs(bio_err, s, 0);
1064     peer = SSL_get_peer_certificate(s);
1065     if (peer) {
1066         int nid;
1067
1068         BIO_puts(bio_err, "Peer certificate: ");
1069         X509_NAME_print_ex(bio_err, X509_get_subject_name(peer),
1070                            0, XN_FLAG_ONELINE);
1071         BIO_puts(bio_err, "\n");
1072         if (SSL_get_peer_signature_nid(s, &nid))
1073             BIO_printf(bio_err, "Hash used: %s\n", OBJ_nid2sn(nid));
1074         print_verify_detail(s, bio_err);
1075     } else
1076         BIO_puts(bio_err, "No peer certificate\n");
1077     X509_free(peer);
1078 #ifndef OPENSSL_NO_EC
1079     ssl_print_point_formats(bio_err, s);
1080     if (SSL_is_server(s))
1081         ssl_print_groups(bio_err, s, 1);
1082     else
1083         ssl_print_tmp_key(bio_err, s);
1084 #else
1085     if (!SSL_is_server(s))
1086         ssl_print_tmp_key(bio_err, s);
1087 #endif
1088 }
1089
1090 int config_ctx(SSL_CONF_CTX *cctx, STACK_OF(OPENSSL_STRING) *str,
1091                SSL_CTX *ctx)
1092 {
1093     int i;
1094
1095     SSL_CONF_CTX_set_ssl_ctx(cctx, ctx);
1096     for (i = 0; i < sk_OPENSSL_STRING_num(str); i += 2) {
1097         const char *flag = sk_OPENSSL_STRING_value(str, i);
1098         const char *arg = sk_OPENSSL_STRING_value(str, i + 1);
1099         if (SSL_CONF_cmd(cctx, flag, arg) <= 0) {
1100             if (arg)
1101                 BIO_printf(bio_err, "Error with command: \"%s %s\"\n",
1102                            flag, arg);
1103             else
1104                 BIO_printf(bio_err, "Error with command: \"%s\"\n", flag);
1105             ERR_print_errors(bio_err);
1106             return 0;
1107         }
1108     }
1109     if (!SSL_CONF_CTX_finish(cctx)) {
1110         BIO_puts(bio_err, "Error finishing context\n");
1111         ERR_print_errors(bio_err);
1112         return 0;
1113     }
1114     return 1;
1115 }
1116
1117 static int add_crls_store(X509_STORE *st, STACK_OF(X509_CRL) *crls)
1118 {
1119     X509_CRL *crl;
1120     int i;
1121     for (i = 0; i < sk_X509_CRL_num(crls); i++) {
1122         crl = sk_X509_CRL_value(crls, i);
1123         X509_STORE_add_crl(st, crl);
1124     }
1125     return 1;
1126 }
1127
1128 int ssl_ctx_add_crls(SSL_CTX *ctx, STACK_OF(X509_CRL) *crls, int crl_download)
1129 {
1130     X509_STORE *st;
1131     st = SSL_CTX_get_cert_store(ctx);
1132     add_crls_store(st, crls);
1133     if (crl_download)
1134         store_setup_crl_download(st);
1135     return 1;
1136 }
1137
1138 int ssl_load_stores(SSL_CTX *ctx,
1139                     const char *vfyCApath, const char *vfyCAfile,
1140                     const char *chCApath, const char *chCAfile,
1141                     STACK_OF(X509_CRL) *crls, int crl_download)
1142 {
1143     X509_STORE *vfy = NULL, *ch = NULL;
1144     int rv = 0;
1145     if (vfyCApath != NULL || vfyCAfile != NULL) {
1146         vfy = X509_STORE_new();
1147         if (vfy == NULL)
1148             goto err;
1149         if (!X509_STORE_load_locations(vfy, vfyCAfile, vfyCApath))
1150             goto err;
1151         add_crls_store(vfy, crls);
1152         SSL_CTX_set1_verify_cert_store(ctx, vfy);
1153         if (crl_download)
1154             store_setup_crl_download(vfy);
1155     }
1156     if (chCApath != NULL || chCAfile != NULL) {
1157         ch = X509_STORE_new();
1158         if (ch == NULL)
1159             goto err;
1160         if (!X509_STORE_load_locations(ch, chCAfile, chCApath))
1161             goto err;
1162         SSL_CTX_set1_chain_cert_store(ctx, ch);
1163     }
1164     rv = 1;
1165  err:
1166     X509_STORE_free(vfy);
1167     X509_STORE_free(ch);
1168     return rv;
1169 }
1170
1171 /* Verbose print out of security callback */
1172
1173 typedef struct {
1174     BIO *out;
1175     int verbose;
1176     int (*old_cb) (const SSL *s, const SSL_CTX *ctx, int op, int bits, int nid,
1177                    void *other, void *ex);
1178 } security_debug_ex;
1179
1180 static STRINT_PAIR callback_types[] = {
1181     {"Supported Ciphersuite", SSL_SECOP_CIPHER_SUPPORTED},
1182     {"Shared Ciphersuite", SSL_SECOP_CIPHER_SHARED},
1183     {"Check Ciphersuite", SSL_SECOP_CIPHER_CHECK},
1184 #ifndef OPENSSL_NO_DH
1185     {"Temp DH key bits", SSL_SECOP_TMP_DH},
1186 #endif
1187     {"Supported Curve", SSL_SECOP_CURVE_SUPPORTED},
1188     {"Shared Curve", SSL_SECOP_CURVE_SHARED},
1189     {"Check Curve", SSL_SECOP_CURVE_CHECK},
1190     {"Supported Signature Algorithm digest", SSL_SECOP_SIGALG_SUPPORTED},
1191     {"Shared Signature Algorithm digest", SSL_SECOP_SIGALG_SHARED},
1192     {"Check Signature Algorithm digest", SSL_SECOP_SIGALG_CHECK},
1193     {"Signature Algorithm mask", SSL_SECOP_SIGALG_MASK},
1194     {"Certificate chain EE key", SSL_SECOP_EE_KEY},
1195     {"Certificate chain CA key", SSL_SECOP_CA_KEY},
1196     {"Peer Chain EE key", SSL_SECOP_PEER_EE_KEY},
1197     {"Peer Chain CA key", SSL_SECOP_PEER_CA_KEY},
1198     {"Certificate chain CA digest", SSL_SECOP_CA_MD},
1199     {"Peer chain CA digest", SSL_SECOP_PEER_CA_MD},
1200     {"SSL compression", SSL_SECOP_COMPRESSION},
1201     {"Session ticket", SSL_SECOP_TICKET},
1202     {NULL}
1203 };
1204
1205 static int security_callback_debug(const SSL *s, const SSL_CTX *ctx,
1206                                    int op, int bits, int nid,
1207                                    void *other, void *ex)
1208 {
1209     security_debug_ex *sdb = ex;
1210     int rv, show_bits = 1, cert_md = 0;
1211     const char *nm;
1212     rv = sdb->old_cb(s, ctx, op, bits, nid, other, ex);
1213     if (rv == 1 && sdb->verbose < 2)
1214         return 1;
1215     BIO_puts(sdb->out, "Security callback: ");
1216
1217     nm = lookup(op, callback_types, NULL);
1218     switch (op) {
1219     case SSL_SECOP_TICKET:
1220     case SSL_SECOP_COMPRESSION:
1221         show_bits = 0;
1222         nm = NULL;
1223         break;
1224     case SSL_SECOP_VERSION:
1225         BIO_printf(sdb->out, "Version=%s", lookup(nid, ssl_versions, "???"));
1226         show_bits = 0;
1227         nm = NULL;
1228         break;
1229     case SSL_SECOP_CA_MD:
1230     case SSL_SECOP_PEER_CA_MD:
1231         cert_md = 1;
1232         break;
1233     }
1234     if (nm)
1235         BIO_printf(sdb->out, "%s=", nm);
1236
1237     switch (op & SSL_SECOP_OTHER_TYPE) {
1238
1239     case SSL_SECOP_OTHER_CIPHER:
1240         BIO_puts(sdb->out, SSL_CIPHER_get_name(other));
1241         break;
1242
1243 #ifndef OPENSSL_NO_EC
1244     case SSL_SECOP_OTHER_CURVE:
1245         {
1246             const char *cname;
1247             cname = EC_curve_nid2nist(nid);
1248             if (cname == NULL)
1249                 cname = OBJ_nid2sn(nid);
1250             BIO_puts(sdb->out, cname);
1251         }
1252         break;
1253 #endif
1254 #ifndef OPENSSL_NO_DH
1255     case SSL_SECOP_OTHER_DH:
1256         {
1257             DH *dh = other;
1258             BIO_printf(sdb->out, "%d", DH_bits(dh));
1259             break;
1260         }
1261 #endif
1262     case SSL_SECOP_OTHER_CERT:
1263         {
1264             if (cert_md) {
1265                 int sig_nid = X509_get_signature_nid(other);
1266                 BIO_puts(sdb->out, OBJ_nid2sn(sig_nid));
1267             } else {
1268                 EVP_PKEY *pkey = X509_get0_pubkey(other);
1269                 const char *algname = "";
1270                 EVP_PKEY_asn1_get0_info(NULL, NULL, NULL, NULL,
1271                                         &algname, EVP_PKEY_get0_asn1(pkey));
1272                 BIO_printf(sdb->out, "%s, bits=%d",
1273                            algname, EVP_PKEY_bits(pkey));
1274             }
1275             break;
1276         }
1277     case SSL_SECOP_OTHER_SIGALG:
1278         {
1279             const unsigned char *salg = other;
1280             const char *sname = NULL;
1281             switch (salg[1]) {
1282             case TLSEXT_signature_anonymous:
1283                 sname = "anonymous";
1284                 break;
1285             case TLSEXT_signature_rsa:
1286                 sname = "RSA";
1287                 break;
1288             case TLSEXT_signature_dsa:
1289                 sname = "DSA";
1290                 break;
1291             case TLSEXT_signature_ecdsa:
1292                 sname = "ECDSA";
1293                 break;
1294             }
1295
1296             BIO_puts(sdb->out, OBJ_nid2sn(nid));
1297             if (sname)
1298                 BIO_printf(sdb->out, ", algorithm=%s", sname);
1299             else
1300                 BIO_printf(sdb->out, ", algid=%d", salg[1]);
1301             break;
1302         }
1303
1304     }
1305
1306     if (show_bits)
1307         BIO_printf(sdb->out, ", security bits=%d", bits);
1308     BIO_printf(sdb->out, ": %s\n", rv ? "yes" : "no");
1309     return rv;
1310 }
1311
1312 void ssl_ctx_security_debug(SSL_CTX *ctx, int verbose)
1313 {
1314     static security_debug_ex sdb;
1315
1316     sdb.out = bio_err;
1317     sdb.verbose = verbose;
1318     sdb.old_cb = SSL_CTX_get_security_callback(ctx);
1319     SSL_CTX_set_security_callback(ctx, security_callback_debug);
1320     SSL_CTX_set0_security_ex_data(ctx, &sdb);
1321 }