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