Fix the DTLS1_COOKIE_LENGTH value
[openssl.git] / apps / lib / s_cb.c
1 /*
2  * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
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 #include "apps.h"
15 #include <openssl/core_names.h>
16 #include <openssl/params.h>
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 DEFINE_STACK_OF(X509)
30 DEFINE_STACK_OF(X509_CRL)
31 DEFINE_STACK_OF(X509_NAME)
32 DEFINE_STACK_OF_STRING()
33
34 VERIFY_CB_ARGS verify_args = { -1, 0, X509_V_OK, 0 };
35
36 #ifndef OPENSSL_NO_SOCK
37 static unsigned char cookie_secret[COOKIE_SECRET_LENGTH];
38 static int cookie_initialized = 0;
39 #endif
40 static BIO *bio_keylog = NULL;
41
42 static const char *lookup(int val, const STRINT_PAIR* list, const char* def)
43 {
44     for ( ; list->name; ++list)
45         if (list->retval == val)
46             return list->name;
47     return def;
48 }
49
50 int verify_callback(int ok, X509_STORE_CTX *ctx)
51 {
52     X509 *err_cert;
53     int err, depth;
54
55     err_cert = X509_STORE_CTX_get_current_cert(ctx);
56     err = X509_STORE_CTX_get_error(ctx);
57     depth = X509_STORE_CTX_get_error_depth(ctx);
58
59     if (!verify_args.quiet || !ok) {
60         BIO_printf(bio_err, "depth=%d ", depth);
61         if (err_cert != NULL) {
62             X509_NAME_print_ex(bio_err,
63                                X509_get_subject_name(err_cert),
64                                0, get_nameopt());
65             BIO_puts(bio_err, "\n");
66         } else {
67             BIO_puts(bio_err, "<no cert>\n");
68         }
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 < 0 || 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, get_nameopt());
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     {"GOST12 Sign", TLS_CT_GOST12_IANA_SIGN},
199     {NULL}
200 };
201
202 static void ssl_print_client_cert_types(BIO *bio, SSL *s)
203 {
204     const unsigned char *p;
205     int i;
206     int cert_type_num = SSL_get0_certificate_types(s, &p);
207     if (!cert_type_num)
208         return;
209     BIO_puts(bio, "Client Certificate Types: ");
210     for (i = 0; i < cert_type_num; i++) {
211         unsigned char cert_type = p[i];
212         const char *cname = lookup((int)cert_type, cert_type_list, NULL);
213
214         if (i)
215             BIO_puts(bio, ", ");
216         if (cname != NULL)
217             BIO_puts(bio, cname);
218         else
219             BIO_printf(bio, "UNKNOWN (%d),", cert_type);
220     }
221     BIO_puts(bio, "\n");
222 }
223
224 static const char *get_sigtype(int nid)
225 {
226     switch (nid) {
227     case EVP_PKEY_RSA:
228         return "RSA";
229
230     case EVP_PKEY_RSA_PSS:
231         return "RSA-PSS";
232
233     case EVP_PKEY_DSA:
234         return "DSA";
235
236      case EVP_PKEY_EC:
237         return "ECDSA";
238
239      case NID_ED25519:
240         return "Ed25519";
241
242      case NID_ED448:
243         return "Ed448";
244
245      case NID_id_GostR3410_2001:
246         return "gost2001";
247
248      case NID_id_GostR3410_2012_256:
249         return "gost2012_256";
250
251      case NID_id_GostR3410_2012_512:
252         return "gost2012_512";
253
254     default:
255         return NULL;
256     }
257 }
258
259 static int do_print_sigalgs(BIO *out, SSL *s, int shared)
260 {
261     int i, nsig, client;
262     client = SSL_is_server(s) ? 0 : 1;
263     if (shared)
264         nsig = SSL_get_shared_sigalgs(s, 0, NULL, NULL, NULL, NULL, NULL);
265     else
266         nsig = SSL_get_sigalgs(s, -1, NULL, NULL, NULL, NULL, NULL);
267     if (nsig == 0)
268         return 1;
269
270     if (shared)
271         BIO_puts(out, "Shared ");
272
273     if (client)
274         BIO_puts(out, "Requested ");
275     BIO_puts(out, "Signature Algorithms: ");
276     for (i = 0; i < nsig; i++) {
277         int hash_nid, sign_nid;
278         unsigned char rhash, rsign;
279         const char *sstr = NULL;
280         if (shared)
281             SSL_get_shared_sigalgs(s, i, &sign_nid, &hash_nid, NULL,
282                                    &rsign, &rhash);
283         else
284             SSL_get_sigalgs(s, i, &sign_nid, &hash_nid, NULL, &rsign, &rhash);
285         if (i)
286             BIO_puts(out, ":");
287         sstr = get_sigtype(sign_nid);
288         if (sstr)
289             BIO_printf(out, "%s", sstr);
290         else
291             BIO_printf(out, "0x%02X", (int)rsign);
292         if (hash_nid != NID_undef)
293             BIO_printf(out, "+%s", OBJ_nid2sn(hash_nid));
294         else if (sstr == NULL)
295             BIO_printf(out, "+0x%02X", (int)rhash);
296     }
297     BIO_puts(out, "\n");
298     return 1;
299 }
300
301 int ssl_print_sigalgs(BIO *out, SSL *s)
302 {
303     int nid;
304     if (!SSL_is_server(s))
305         ssl_print_client_cert_types(out, s);
306     do_print_sigalgs(out, s, 0);
307     do_print_sigalgs(out, s, 1);
308     if (SSL_get_peer_signature_nid(s, &nid) && nid != NID_undef)
309         BIO_printf(out, "Peer signing digest: %s\n", OBJ_nid2sn(nid));
310     if (SSL_get_peer_signature_type_nid(s, &nid))
311         BIO_printf(out, "Peer signature type: %s\n", get_sigtype(nid));
312     return 1;
313 }
314
315 #ifndef OPENSSL_NO_EC
316 int ssl_print_point_formats(BIO *out, SSL *s)
317 {
318     int i, nformats;
319     const char *pformats;
320     nformats = SSL_get0_ec_point_formats(s, &pformats);
321     if (nformats <= 0)
322         return 1;
323     BIO_puts(out, "Supported Elliptic Curve Point Formats: ");
324     for (i = 0; i < nformats; i++, pformats++) {
325         if (i)
326             BIO_puts(out, ":");
327         switch (*pformats) {
328         case TLSEXT_ECPOINTFORMAT_uncompressed:
329             BIO_puts(out, "uncompressed");
330             break;
331
332         case TLSEXT_ECPOINTFORMAT_ansiX962_compressed_prime:
333             BIO_puts(out, "ansiX962_compressed_prime");
334             break;
335
336         case TLSEXT_ECPOINTFORMAT_ansiX962_compressed_char2:
337             BIO_puts(out, "ansiX962_compressed_char2");
338             break;
339
340         default:
341             BIO_printf(out, "unknown(%d)", (int)*pformats);
342             break;
343
344         }
345     }
346     BIO_puts(out, "\n");
347     return 1;
348 }
349
350 int ssl_print_groups(BIO *out, SSL *s, int noshared)
351 {
352     int i, ngroups, *groups, nid;
353     const char *gname;
354
355     ngroups = SSL_get1_groups(s, NULL);
356     if (ngroups <= 0)
357         return 1;
358     groups = app_malloc(ngroups * sizeof(int), "groups to print");
359     SSL_get1_groups(s, groups);
360
361     BIO_puts(out, "Supported Elliptic Groups: ");
362     for (i = 0; i < ngroups; i++) {
363         if (i)
364             BIO_puts(out, ":");
365         nid = groups[i];
366         /* If unrecognised print out hex version */
367         if (nid & TLSEXT_nid_unknown) {
368             BIO_printf(out, "0x%04X", nid & 0xFFFF);
369         } else {
370             /* TODO(TLS1.3): Get group name here */
371             /* Use NIST name for curve if it exists */
372             gname = EC_curve_nid2nist(nid);
373             if (gname == NULL)
374                 gname = OBJ_nid2sn(nid);
375             BIO_printf(out, "%s", gname);
376         }
377     }
378     OPENSSL_free(groups);
379     if (noshared) {
380         BIO_puts(out, "\n");
381         return 1;
382     }
383     BIO_puts(out, "\nShared Elliptic groups: ");
384     ngroups = SSL_get_shared_group(s, -1);
385     for (i = 0; i < ngroups; i++) {
386         if (i)
387             BIO_puts(out, ":");
388         nid = SSL_get_shared_group(s, i);
389         /* TODO(TLS1.3): Convert for DH groups */
390         gname = EC_curve_nid2nist(nid);
391         if (gname == NULL)
392             gname = OBJ_nid2sn(nid);
393         BIO_printf(out, "%s", gname);
394     }
395     if (ngroups == 0)
396         BIO_puts(out, "NONE");
397     BIO_puts(out, "\n");
398     return 1;
399 }
400 #endif
401
402 int ssl_print_tmp_key(BIO *out, SSL *s)
403 {
404     EVP_PKEY *key;
405
406     if (!SSL_get_peer_tmp_key(s, &key))
407         return 1;
408     BIO_puts(out, "Server Temp Key: ");
409     switch (EVP_PKEY_id(key)) {
410     case EVP_PKEY_RSA:
411         BIO_printf(out, "RSA, %d bits\n", EVP_PKEY_bits(key));
412         break;
413
414     case EVP_PKEY_DH:
415         BIO_printf(out, "DH, %d bits\n", EVP_PKEY_bits(key));
416         break;
417 #ifndef OPENSSL_NO_EC
418     case EVP_PKEY_EC:
419         {
420             EC_KEY *ec = EVP_PKEY_get1_EC_KEY(key);
421             int nid;
422             const char *cname;
423             nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(ec));
424             EC_KEY_free(ec);
425             cname = EC_curve_nid2nist(nid);
426             if (cname == NULL)
427                 cname = OBJ_nid2sn(nid);
428             BIO_printf(out, "ECDH, %s, %d bits\n", cname, EVP_PKEY_bits(key));
429         }
430     break;
431 #endif
432     default:
433         BIO_printf(out, "%s, %d bits\n", OBJ_nid2sn(EVP_PKEY_id(key)),
434                    EVP_PKEY_bits(key));
435     }
436     EVP_PKEY_free(key);
437     return 1;
438 }
439
440 long bio_dump_callback(BIO *bio, int cmd, const char *argp,
441                        int argi, long argl, long ret)
442 {
443     BIO *out;
444
445     out = (BIO *)BIO_get_callback_arg(bio);
446     if (out == NULL)
447         return ret;
448
449     if (cmd == (BIO_CB_READ | BIO_CB_RETURN)) {
450         BIO_printf(out, "read from %p [%p] (%lu bytes => %ld (0x%lX))\n",
451                    (void *)bio, (void *)argp, (unsigned long)argi, ret, ret);
452         BIO_dump(out, argp, (int)ret);
453         return ret;
454     } else if (cmd == (BIO_CB_WRITE | BIO_CB_RETURN)) {
455         BIO_printf(out, "write to %p [%p] (%lu bytes => %ld (0x%lX))\n",
456                    (void *)bio, (void *)argp, (unsigned long)argi, ret, ret);
457         BIO_dump(out, argp, (int)ret);
458     }
459     return ret;
460 }
461
462 void apps_ssl_info_callback(const SSL *s, int where, int ret)
463 {
464     const char *str;
465     int w;
466
467     w = where & ~SSL_ST_MASK;
468
469     if (w & SSL_ST_CONNECT)
470         str = "SSL_connect";
471     else if (w & SSL_ST_ACCEPT)
472         str = "SSL_accept";
473     else
474         str = "undefined";
475
476     if (where & SSL_CB_LOOP) {
477         BIO_printf(bio_err, "%s:%s\n", str, SSL_state_string_long(s));
478     } else if (where & SSL_CB_ALERT) {
479         str = (where & SSL_CB_READ) ? "read" : "write";
480         BIO_printf(bio_err, "SSL3 alert %s:%s:%s\n",
481                    str,
482                    SSL_alert_type_string_long(ret),
483                    SSL_alert_desc_string_long(ret));
484     } else if (where & SSL_CB_EXIT) {
485         if (ret == 0)
486             BIO_printf(bio_err, "%s:failed in %s\n",
487                        str, SSL_state_string_long(s));
488         else if (ret < 0)
489             BIO_printf(bio_err, "%s:error in %s\n",
490                        str, SSL_state_string_long(s));
491     }
492 }
493
494 static STRINT_PAIR ssl_versions[] = {
495     {"SSL 3.0", SSL3_VERSION},
496     {"TLS 1.0", TLS1_VERSION},
497     {"TLS 1.1", TLS1_1_VERSION},
498     {"TLS 1.2", TLS1_2_VERSION},
499     {"TLS 1.3", TLS1_3_VERSION},
500     {"DTLS 1.0", DTLS1_VERSION},
501     {"DTLS 1.0 (bad)", DTLS1_BAD_VER},
502     {NULL}
503 };
504
505 static STRINT_PAIR alert_types[] = {
506     {" close_notify", 0},
507     {" end_of_early_data", 1},
508     {" unexpected_message", 10},
509     {" bad_record_mac", 20},
510     {" decryption_failed", 21},
511     {" record_overflow", 22},
512     {" decompression_failure", 30},
513     {" handshake_failure", 40},
514     {" bad_certificate", 42},
515     {" unsupported_certificate", 43},
516     {" certificate_revoked", 44},
517     {" certificate_expired", 45},
518     {" certificate_unknown", 46},
519     {" illegal_parameter", 47},
520     {" unknown_ca", 48},
521     {" access_denied", 49},
522     {" decode_error", 50},
523     {" decrypt_error", 51},
524     {" export_restriction", 60},
525     {" protocol_version", 70},
526     {" insufficient_security", 71},
527     {" internal_error", 80},
528     {" inappropriate_fallback", 86},
529     {" user_canceled", 90},
530     {" no_renegotiation", 100},
531     {" missing_extension", 109},
532     {" unsupported_extension", 110},
533     {" certificate_unobtainable", 111},
534     {" unrecognized_name", 112},
535     {" bad_certificate_status_response", 113},
536     {" bad_certificate_hash_value", 114},
537     {" unknown_psk_identity", 115},
538     {" certificate_required", 116},
539     {NULL}
540 };
541
542 static STRINT_PAIR handshakes[] = {
543     {", HelloRequest", SSL3_MT_HELLO_REQUEST},
544     {", ClientHello", SSL3_MT_CLIENT_HELLO},
545     {", ServerHello", SSL3_MT_SERVER_HELLO},
546     {", HelloVerifyRequest", DTLS1_MT_HELLO_VERIFY_REQUEST},
547     {", NewSessionTicket", SSL3_MT_NEWSESSION_TICKET},
548     {", EndOfEarlyData", SSL3_MT_END_OF_EARLY_DATA},
549     {", EncryptedExtensions", SSL3_MT_ENCRYPTED_EXTENSIONS},
550     {", Certificate", SSL3_MT_CERTIFICATE},
551     {", ServerKeyExchange", SSL3_MT_SERVER_KEY_EXCHANGE},
552     {", CertificateRequest", SSL3_MT_CERTIFICATE_REQUEST},
553     {", ServerHelloDone", SSL3_MT_SERVER_DONE},
554     {", CertificateVerify", SSL3_MT_CERTIFICATE_VERIFY},
555     {", ClientKeyExchange", SSL3_MT_CLIENT_KEY_EXCHANGE},
556     {", Finished", SSL3_MT_FINISHED},
557     {", CertificateUrl", SSL3_MT_CERTIFICATE_URL},
558     {", CertificateStatus", SSL3_MT_CERTIFICATE_STATUS},
559     {", SupplementalData", SSL3_MT_SUPPLEMENTAL_DATA},
560     {", KeyUpdate", SSL3_MT_KEY_UPDATE},
561 #ifndef OPENSSL_NO_NEXTPROTONEG
562     {", NextProto", SSL3_MT_NEXT_PROTO},
563 #endif
564     {", MessageHash", SSL3_MT_MESSAGE_HASH},
565     {NULL}
566 };
567
568 void msg_cb(int write_p, int version, int content_type, const void *buf,
569             size_t len, SSL *ssl, void *arg)
570 {
571     BIO *bio = arg;
572     const char *str_write_p = write_p ? ">>>" : "<<<";
573     const char *str_version = lookup(version, ssl_versions, "???");
574     const char *str_content_type = "", *str_details1 = "", *str_details2 = "";
575     const unsigned char* bp = buf;
576
577     if (version == SSL3_VERSION ||
578         version == TLS1_VERSION ||
579         version == TLS1_1_VERSION ||
580         version == TLS1_2_VERSION ||
581         version == TLS1_3_VERSION ||
582         version == DTLS1_VERSION || version == DTLS1_BAD_VER) {
583         switch (content_type) {
584         case 20:
585             str_content_type = ", ChangeCipherSpec";
586             break;
587         case 21:
588             str_content_type = ", Alert";
589             str_details1 = ", ???";
590             if (len == 2) {
591                 switch (bp[0]) {
592                 case 1:
593                     str_details1 = ", warning";
594                     break;
595                 case 2:
596                     str_details1 = ", fatal";
597                     break;
598                 }
599                 str_details2 = lookup((int)bp[1], alert_types, " ???");
600             }
601             break;
602         case 22:
603             str_content_type = ", Handshake";
604             str_details1 = "???";
605             if (len > 0)
606                 str_details1 = lookup((int)bp[0], handshakes, "???");
607             break;
608         case 23:
609             str_content_type = ", ApplicationData";
610             break;
611         }
612     }
613
614     BIO_printf(bio, "%s %s%s [length %04lx]%s%s\n", str_write_p, str_version,
615                str_content_type, (unsigned long)len, str_details1,
616                str_details2);
617
618     if (len > 0) {
619         size_t num, i;
620
621         BIO_printf(bio, "   ");
622         num = len;
623         for (i = 0; i < num; i++) {
624             if (i % 16 == 0 && i > 0)
625                 BIO_printf(bio, "\n   ");
626             BIO_printf(bio, " %02x", ((const unsigned char *)buf)[i]);
627         }
628         if (i < len)
629             BIO_printf(bio, " ...");
630         BIO_printf(bio, "\n");
631     }
632     (void)BIO_flush(bio);
633 }
634
635 static STRINT_PAIR tlsext_types[] = {
636     {"server name", TLSEXT_TYPE_server_name},
637     {"max fragment length", TLSEXT_TYPE_max_fragment_length},
638     {"client certificate URL", TLSEXT_TYPE_client_certificate_url},
639     {"trusted CA keys", TLSEXT_TYPE_trusted_ca_keys},
640     {"truncated HMAC", TLSEXT_TYPE_truncated_hmac},
641     {"status request", TLSEXT_TYPE_status_request},
642     {"user mapping", TLSEXT_TYPE_user_mapping},
643     {"client authz", TLSEXT_TYPE_client_authz},
644     {"server authz", TLSEXT_TYPE_server_authz},
645     {"cert type", TLSEXT_TYPE_cert_type},
646     {"supported_groups", TLSEXT_TYPE_supported_groups},
647     {"EC point formats", TLSEXT_TYPE_ec_point_formats},
648     {"SRP", TLSEXT_TYPE_srp},
649     {"signature algorithms", TLSEXT_TYPE_signature_algorithms},
650     {"use SRTP", TLSEXT_TYPE_use_srtp},
651     {"session ticket", TLSEXT_TYPE_session_ticket},
652     {"renegotiation info", TLSEXT_TYPE_renegotiate},
653     {"signed certificate timestamps", TLSEXT_TYPE_signed_certificate_timestamp},
654     {"TLS padding", TLSEXT_TYPE_padding},
655 #ifdef TLSEXT_TYPE_next_proto_neg
656     {"next protocol", TLSEXT_TYPE_next_proto_neg},
657 #endif
658 #ifdef TLSEXT_TYPE_encrypt_then_mac
659     {"encrypt-then-mac", TLSEXT_TYPE_encrypt_then_mac},
660 #endif
661 #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
662     {"application layer protocol negotiation",
663      TLSEXT_TYPE_application_layer_protocol_negotiation},
664 #endif
665 #ifdef TLSEXT_TYPE_extended_master_secret
666     {"extended master secret", TLSEXT_TYPE_extended_master_secret},
667 #endif
668     {"key share", TLSEXT_TYPE_key_share},
669     {"supported versions", TLSEXT_TYPE_supported_versions},
670     {"psk", TLSEXT_TYPE_psk},
671     {"psk kex modes", TLSEXT_TYPE_psk_kex_modes},
672     {"certificate authorities", TLSEXT_TYPE_certificate_authorities},
673     {"post handshake auth", TLSEXT_TYPE_post_handshake_auth},
674     {NULL}
675 };
676
677 /* from rfc8446 4.2.3. + gost (https://tools.ietf.org/id/draft-smyshlyaev-tls12-gost-suites-04.html) */
678 static STRINT_PAIR signature_tls13_scheme_list[] = {
679     {"rsa_pkcs1_sha1",         0x0201 /* TLSEXT_SIGALG_rsa_pkcs1_sha1 */},
680     {"ecdsa_sha1",             0x0203 /* TLSEXT_SIGALG_ecdsa_sha1 */},
681 /*  {"rsa_pkcs1_sha224",       0x0301    TLSEXT_SIGALG_rsa_pkcs1_sha224}, not in rfc8446 */
682 /*  {"ecdsa_sha224",           0x0303    TLSEXT_SIGALG_ecdsa_sha224}      not in rfc8446 */
683     {"rsa_pkcs1_sha256",       0x0401 /* TLSEXT_SIGALG_rsa_pkcs1_sha256 */},
684     {"ecdsa_secp256r1_sha256", 0x0403 /* TLSEXT_SIGALG_ecdsa_secp256r1_sha256 */},
685     {"rsa_pkcs1_sha384",       0x0501 /* TLSEXT_SIGALG_rsa_pkcs1_sha384 */},
686     {"ecdsa_secp384r1_sha384", 0x0503 /* TLSEXT_SIGALG_ecdsa_secp384r1_sha384 */},
687     {"rsa_pkcs1_sha512",       0x0601 /* TLSEXT_SIGALG_rsa_pkcs1_sha512 */},
688     {"ecdsa_secp521r1_sha512", 0x0603 /* TLSEXT_SIGALG_ecdsa_secp521r1_sha512 */},
689     {"rsa_pss_rsae_sha256",    0x0804 /* TLSEXT_SIGALG_rsa_pss_rsae_sha256 */},
690     {"rsa_pss_rsae_sha384",    0x0805 /* TLSEXT_SIGALG_rsa_pss_rsae_sha384 */},
691     {"rsa_pss_rsae_sha512",    0x0806 /* TLSEXT_SIGALG_rsa_pss_rsae_sha512 */},
692     {"ed25519",                0x0807 /* TLSEXT_SIGALG_ed25519 */},
693     {"ed448",                  0x0808 /* TLSEXT_SIGALG_ed448 */},
694     {"rsa_pss_pss_sha256",     0x0809 /* TLSEXT_SIGALG_rsa_pss_pss_sha256 */},
695     {"rsa_pss_pss_sha384",     0x080a /* TLSEXT_SIGALG_rsa_pss_pss_sha384 */},
696     {"rsa_pss_pss_sha512",     0x080b /* TLSEXT_SIGALG_rsa_pss_pss_sha512 */},
697     {"gostr34102001",          0xeded /* TLSEXT_SIGALG_gostr34102001_gostr3411 */},
698     {"gostr34102012_256",      0xeeee /* TLSEXT_SIGALG_gostr34102012_256_gostr34112012_256 */},
699     {"gostr34102012_512",      0xefef /* TLSEXT_SIGALG_gostr34102012_512_gostr34112012_512 */},
700     {NULL}
701 };
702
703 /* from rfc5246 7.4.1.4.1. */
704 static STRINT_PAIR signature_tls12_alg_list[] = {
705     {"anonymous", TLSEXT_signature_anonymous /* 0 */},
706     {"RSA",       TLSEXT_signature_rsa       /* 1 */},
707     {"DSA",       TLSEXT_signature_dsa       /* 2 */},
708     {"ECDSA",     TLSEXT_signature_ecdsa     /* 3 */},
709     {NULL}
710 };
711
712 /* from rfc5246 7.4.1.4.1. */
713 static STRINT_PAIR signature_tls12_hash_list[] = {
714     {"none",   TLSEXT_hash_none   /* 0 */},
715     {"MD5",    TLSEXT_hash_md5    /* 1 */},
716     {"SHA1",   TLSEXT_hash_sha1   /* 2 */},
717     {"SHA224", TLSEXT_hash_sha224 /* 3 */},
718     {"SHA256", TLSEXT_hash_sha256 /* 4 */},
719     {"SHA384", TLSEXT_hash_sha384 /* 5 */},
720     {"SHA512", TLSEXT_hash_sha512 /* 6 */},
721     {NULL}
722 };
723
724 void tlsext_cb(SSL *s, int client_server, int type,
725                const unsigned char *data, int len, void *arg)
726 {
727     BIO *bio = arg;
728     const char *extname = lookup(type, tlsext_types, "unknown");
729
730     BIO_printf(bio, "TLS %s extension \"%s\" (id=%d), len=%d\n",
731                client_server ? "server" : "client", extname, type, len);
732     BIO_dump(bio, (const char *)data, len);
733     (void)BIO_flush(bio);
734 }
735
736 #ifndef OPENSSL_NO_SOCK
737 int generate_cookie_callback(SSL *ssl, unsigned char *cookie,
738                              unsigned int *cookie_len)
739 {
740     unsigned char *buffer = NULL;
741     size_t length = 0;
742     unsigned short port;
743     BIO_ADDR *lpeer = NULL, *peer = NULL;
744     int res = 0;
745     EVP_MAC *hmac = NULL;
746     EVP_MAC_CTX *ctx = NULL;
747     OSSL_PARAM params[3], *p = params;
748
749     /* Initialize a random secret */
750     if (!cookie_initialized) {
751         if (RAND_bytes(cookie_secret, COOKIE_SECRET_LENGTH) <= 0) {
752             BIO_printf(bio_err, "error setting random cookie secret\n");
753             return 0;
754         }
755         cookie_initialized = 1;
756     }
757
758     if (SSL_is_dtls(ssl)) {
759         lpeer = peer = BIO_ADDR_new();
760         if (peer == NULL) {
761             BIO_printf(bio_err, "memory full\n");
762             return 0;
763         }
764
765         /* Read peer information */
766         (void)BIO_dgram_get_peer(SSL_get_rbio(ssl), peer);
767     } else {
768         peer = ourpeer;
769     }
770
771     /* Create buffer with peer's address and port */
772     if (!BIO_ADDR_rawaddress(peer, NULL, &length)) {
773         BIO_printf(bio_err, "Failed getting peer address\n");
774         return 0;
775     }
776     OPENSSL_assert(length != 0);
777     port = BIO_ADDR_rawport(peer);
778     length += sizeof(port);
779     buffer = app_malloc(length, "cookie generate buffer");
780
781     memcpy(buffer, &port, sizeof(port));
782     BIO_ADDR_rawaddress(peer, buffer + sizeof(port), NULL);
783
784     /* Calculate HMAC of buffer using the secret */
785     hmac = EVP_MAC_fetch(NULL, "HMAC", NULL);
786     if (hmac == NULL) {
787             BIO_printf(bio_err, "HMAC not found\n");
788             goto end;
789     }
790     ctx = EVP_MAC_new_ctx(hmac);
791     if (ctx == NULL) {
792             BIO_printf(bio_err, "HMAC context allocation failed\n");
793             goto end;
794     }
795     *p++ = OSSL_PARAM_construct_utf8_string(OSSL_MAC_PARAM_DIGEST, "SHA1", 0);
796     *p++ = OSSL_PARAM_construct_octet_string(OSSL_MAC_PARAM_KEY, cookie_secret,
797                                              COOKIE_SECRET_LENGTH);
798     *p = OSSL_PARAM_construct_end();
799     if (!EVP_MAC_set_ctx_params(ctx, params)) {
800             BIO_printf(bio_err, "HMAC context parameter setting failed\n");
801             goto end;
802     }
803     if (!EVP_MAC_init(ctx)) {
804             BIO_printf(bio_err, "HMAC context initialisation failed\n");
805             goto end;
806     }
807     if (!EVP_MAC_update(ctx, buffer, length)) {
808             BIO_printf(bio_err, "HMAC context update failed\n");
809             goto end;
810     }
811     if (!EVP_MAC_final(ctx, cookie, NULL, (size_t)cookie_len)) {
812             BIO_printf(bio_err, "HMAC context final failed\n");
813             goto end;
814     }
815     res = 1;
816 end:
817     OPENSSL_free(buffer);
818     BIO_ADDR_free(lpeer);
819
820     return res;
821 }
822
823 int verify_cookie_callback(SSL *ssl, const unsigned char *cookie,
824                            unsigned int cookie_len)
825 {
826     unsigned char result[EVP_MAX_MD_SIZE];
827     unsigned int resultlength;
828
829     /* Note: we check cookie_initialized because if it's not,
830      * it cannot be valid */
831     if (cookie_initialized
832         && generate_cookie_callback(ssl, result, &resultlength)
833         && cookie_len == resultlength
834         && memcmp(result, cookie, resultlength) == 0)
835         return 1;
836
837     return 0;
838 }
839
840 int generate_stateless_cookie_callback(SSL *ssl, unsigned char *cookie,
841                                        size_t *cookie_len)
842 {
843     unsigned int temp;
844     int res = generate_cookie_callback(ssl, cookie, &temp);
845     *cookie_len = temp;
846     return res;
847 }
848
849 int verify_stateless_cookie_callback(SSL *ssl, const unsigned char *cookie,
850                                      size_t cookie_len)
851 {
852     return verify_cookie_callback(ssl, cookie, cookie_len);
853 }
854
855 #endif
856
857 /*
858  * Example of extended certificate handling. Where the standard support of
859  * one certificate per algorithm is not sufficient an application can decide
860  * which certificate(s) to use at runtime based on whatever criteria it deems
861  * appropriate.
862  */
863
864 /* Linked list of certificates, keys and chains */
865 struct ssl_excert_st {
866     int certform;
867     const char *certfile;
868     int keyform;
869     const char *keyfile;
870     const char *chainfile;
871     X509 *cert;
872     EVP_PKEY *key;
873     STACK_OF(X509) *chain;
874     int build_chain;
875     struct ssl_excert_st *next, *prev;
876 };
877
878 static STRINT_PAIR chain_flags[] = {
879     {"Overall Validity", CERT_PKEY_VALID},
880     {"Sign with EE key", CERT_PKEY_SIGN},
881     {"EE signature", CERT_PKEY_EE_SIGNATURE},
882     {"CA signature", CERT_PKEY_CA_SIGNATURE},
883     {"EE key parameters", CERT_PKEY_EE_PARAM},
884     {"CA key parameters", CERT_PKEY_CA_PARAM},
885     {"Explicitly sign with EE key", CERT_PKEY_EXPLICIT_SIGN},
886     {"Issuer Name", CERT_PKEY_ISSUER_NAME},
887     {"Certificate Type", CERT_PKEY_CERT_TYPE},
888     {NULL}
889 };
890
891 static void print_chain_flags(SSL *s, int flags)
892 {
893     STRINT_PAIR *pp;
894
895     for (pp = chain_flags; pp->name; ++pp)
896         BIO_printf(bio_err, "\t%s: %s\n",
897                    pp->name,
898                    (flags & pp->retval) ? "OK" : "NOT OK");
899     BIO_printf(bio_err, "\tSuite B: ");
900     if (SSL_set_cert_flags(s, 0) & SSL_CERT_FLAG_SUITEB_128_LOS)
901         BIO_puts(bio_err, flags & CERT_PKEY_SUITEB ? "OK\n" : "NOT OK\n");
902     else
903         BIO_printf(bio_err, "not tested\n");
904 }
905
906 /*
907  * Very basic selection callback: just use any certificate chain reported as
908  * valid. More sophisticated could prioritise according to local policy.
909  */
910 static int set_cert_cb(SSL *ssl, void *arg)
911 {
912     int i, rv;
913     SSL_EXCERT *exc = arg;
914 #ifdef CERT_CB_TEST_RETRY
915     static int retry_cnt;
916     if (retry_cnt < 5) {
917         retry_cnt++;
918         BIO_printf(bio_err,
919                    "Certificate callback retry test: count %d\n",
920                    retry_cnt);
921         return -1;
922     }
923 #endif
924     SSL_certs_clear(ssl);
925
926     if (exc == NULL)
927         return 1;
928
929     /*
930      * Go to end of list and traverse backwards since we prepend newer
931      * entries this retains the original order.
932      */
933     while (exc->next != NULL)
934         exc = exc->next;
935
936     i = 0;
937
938     while (exc != NULL) {
939         i++;
940         rv = SSL_check_chain(ssl, exc->cert, exc->key, exc->chain);
941         BIO_printf(bio_err, "Checking cert chain %d:\nSubject: ", i);
942         X509_NAME_print_ex(bio_err, X509_get_subject_name(exc->cert), 0,
943                            get_nameopt());
944         BIO_puts(bio_err, "\n");
945         print_chain_flags(ssl, rv);
946         if (rv & CERT_PKEY_VALID) {
947             if (!SSL_use_certificate(ssl, exc->cert)
948                     || !SSL_use_PrivateKey(ssl, exc->key)) {
949                 return 0;
950             }
951             /*
952              * NB: we wouldn't normally do this as it is not efficient
953              * building chains on each connection better to cache the chain
954              * in advance.
955              */
956             if (exc->build_chain) {
957                 if (!SSL_build_cert_chain(ssl, 0))
958                     return 0;
959             } else if (exc->chain != NULL) {
960                 SSL_set1_chain(ssl, exc->chain);
961             }
962         }
963         exc = exc->prev;
964     }
965     return 1;
966 }
967
968 void ssl_ctx_set_excert(SSL_CTX *ctx, SSL_EXCERT *exc)
969 {
970     SSL_CTX_set_cert_cb(ctx, set_cert_cb, exc);
971 }
972
973 static int ssl_excert_prepend(SSL_EXCERT **pexc)
974 {
975     SSL_EXCERT *exc = app_malloc(sizeof(*exc), "prepend cert");
976
977     memset(exc, 0, sizeof(*exc));
978
979     exc->next = *pexc;
980     *pexc = exc;
981
982     if (exc->next) {
983         exc->certform = exc->next->certform;
984         exc->keyform = exc->next->keyform;
985         exc->next->prev = exc;
986     } else {
987         exc->certform = FORMAT_PEM;
988         exc->keyform = FORMAT_PEM;
989     }
990     return 1;
991
992 }
993
994 void ssl_excert_free(SSL_EXCERT *exc)
995 {
996     SSL_EXCERT *curr;
997
998     if (exc == NULL)
999         return;
1000     while (exc) {
1001         X509_free(exc->cert);
1002         EVP_PKEY_free(exc->key);
1003         sk_X509_pop_free(exc->chain, X509_free);
1004         curr = exc;
1005         exc = exc->next;
1006         OPENSSL_free(curr);
1007     }
1008 }
1009
1010 int load_excert(SSL_EXCERT **pexc)
1011 {
1012     SSL_EXCERT *exc = *pexc;
1013     if (exc == NULL)
1014         return 1;
1015     /* If nothing in list, free and set to NULL */
1016     if (exc->certfile == NULL && exc->next == NULL) {
1017         ssl_excert_free(exc);
1018         *pexc = NULL;
1019         return 1;
1020     }
1021     for (; exc; exc = exc->next) {
1022         if (exc->certfile == NULL) {
1023             BIO_printf(bio_err, "Missing filename\n");
1024             return 0;
1025         }
1026         exc->cert = load_cert(exc->certfile, exc->certform,
1027                               "Server Certificate");
1028         if (exc->cert == NULL)
1029             return 0;
1030         if (exc->keyfile != NULL) {
1031             exc->key = load_key(exc->keyfile, exc->keyform,
1032                                 0, NULL, NULL, "Server Key");
1033         } else {
1034             exc->key = load_key(exc->certfile, exc->certform,
1035                                 0, NULL, NULL, "Server Key");
1036         }
1037         if (exc->key == NULL)
1038             return 0;
1039         if (exc->chainfile != NULL) {
1040             if (!load_certs(exc->chainfile, &exc->chain, FORMAT_PEM, NULL,
1041                             "Server Chain"))
1042                 return 0;
1043         }
1044     }
1045     return 1;
1046 }
1047
1048 enum range { OPT_X_ENUM };
1049
1050 int args_excert(int opt, SSL_EXCERT **pexc)
1051 {
1052     SSL_EXCERT *exc = *pexc;
1053
1054     assert(opt > OPT_X__FIRST);
1055     assert(opt < OPT_X__LAST);
1056
1057     if (exc == NULL) {
1058         if (!ssl_excert_prepend(&exc)) {
1059             BIO_printf(bio_err, " %s: Error initialising xcert\n",
1060                        opt_getprog());
1061             goto err;
1062         }
1063         *pexc = exc;
1064     }
1065
1066     switch ((enum range)opt) {
1067     case OPT_X__FIRST:
1068     case OPT_X__LAST:
1069         return 0;
1070     case OPT_X_CERT:
1071         if (exc->certfile != NULL && !ssl_excert_prepend(&exc)) {
1072             BIO_printf(bio_err, "%s: Error adding xcert\n", opt_getprog());
1073             goto err;
1074         }
1075         *pexc = exc;
1076         exc->certfile = opt_arg();
1077         break;
1078     case OPT_X_KEY:
1079         if (exc->keyfile != NULL) {
1080             BIO_printf(bio_err, "%s: Key already specified\n", opt_getprog());
1081             goto err;
1082         }
1083         exc->keyfile = opt_arg();
1084         break;
1085     case OPT_X_CHAIN:
1086         if (exc->chainfile != NULL) {
1087             BIO_printf(bio_err, "%s: Chain already specified\n",
1088                        opt_getprog());
1089             goto err;
1090         }
1091         exc->chainfile = opt_arg();
1092         break;
1093     case OPT_X_CHAIN_BUILD:
1094         exc->build_chain = 1;
1095         break;
1096     case OPT_X_CERTFORM:
1097         if (!opt_format(opt_arg(), OPT_FMT_ANY, &exc->certform))
1098             return 0;
1099         break;
1100     case OPT_X_KEYFORM:
1101         if (!opt_format(opt_arg(), OPT_FMT_ANY, &exc->keyform))
1102             return 0;
1103         break;
1104     }
1105     return 1;
1106
1107  err:
1108     ERR_print_errors(bio_err);
1109     ssl_excert_free(exc);
1110     *pexc = NULL;
1111     return 0;
1112 }
1113
1114 static void print_raw_cipherlist(SSL *s)
1115 {
1116     const unsigned char *rlist;
1117     static const unsigned char scsv_id[] = { 0, 0xFF };
1118     size_t i, rlistlen, num;
1119     if (!SSL_is_server(s))
1120         return;
1121     num = SSL_get0_raw_cipherlist(s, NULL);
1122     OPENSSL_assert(num == 2);
1123     rlistlen = SSL_get0_raw_cipherlist(s, &rlist);
1124     BIO_puts(bio_err, "Client cipher list: ");
1125     for (i = 0; i < rlistlen; i += num, rlist += num) {
1126         const SSL_CIPHER *c = SSL_CIPHER_find(s, rlist);
1127         if (i)
1128             BIO_puts(bio_err, ":");
1129         if (c != NULL) {
1130             BIO_puts(bio_err, SSL_CIPHER_get_name(c));
1131         } else if (memcmp(rlist, scsv_id, num) == 0) {
1132             BIO_puts(bio_err, "SCSV");
1133         } else {
1134             size_t j;
1135             BIO_puts(bio_err, "0x");
1136             for (j = 0; j < num; j++)
1137                 BIO_printf(bio_err, "%02X", rlist[j]);
1138         }
1139     }
1140     BIO_puts(bio_err, "\n");
1141 }
1142
1143 /*
1144  * Hex encoder for TLSA RRdata, not ':' delimited.
1145  */
1146 static char *hexencode(const unsigned char *data, size_t len)
1147 {
1148     static const char *hex = "0123456789abcdef";
1149     char *out;
1150     char *cp;
1151     size_t outlen = 2 * len + 1;
1152     int ilen = (int) outlen;
1153
1154     if (outlen < len || ilen < 0 || outlen != (size_t)ilen) {
1155         BIO_printf(bio_err, "%s: %zu-byte buffer too large to hexencode\n",
1156                    opt_getprog(), len);
1157         exit(1);
1158     }
1159     cp = out = app_malloc(ilen, "TLSA hex data buffer");
1160
1161     while (len-- > 0) {
1162         *cp++ = hex[(*data >> 4) & 0x0f];
1163         *cp++ = hex[*data++ & 0x0f];
1164     }
1165     *cp = '\0';
1166     return out;
1167 }
1168
1169 void print_verify_detail(SSL *s, BIO *bio)
1170 {
1171     int mdpth;
1172     EVP_PKEY *mspki;
1173     long verify_err = SSL_get_verify_result(s);
1174
1175     if (verify_err == X509_V_OK) {
1176         const char *peername = SSL_get0_peername(s);
1177
1178         BIO_printf(bio, "Verification: OK\n");
1179         if (peername != NULL)
1180             BIO_printf(bio, "Verified peername: %s\n", peername);
1181     } else {
1182         const char *reason = X509_verify_cert_error_string(verify_err);
1183
1184         BIO_printf(bio, "Verification error: %s\n", reason);
1185     }
1186
1187     if ((mdpth = SSL_get0_dane_authority(s, NULL, &mspki)) >= 0) {
1188         uint8_t usage, selector, mtype;
1189         const unsigned char *data = NULL;
1190         size_t dlen = 0;
1191         char *hexdata;
1192
1193         mdpth = SSL_get0_dane_tlsa(s, &usage, &selector, &mtype, &data, &dlen);
1194
1195         /*
1196          * The TLSA data field can be quite long when it is a certificate,
1197          * public key or even a SHA2-512 digest.  Because the initial octets of
1198          * ASN.1 certificates and public keys contain mostly boilerplate OIDs
1199          * and lengths, we show the last 12 bytes of the data instead, as these
1200          * are more likely to distinguish distinct TLSA records.
1201          */
1202 #define TLSA_TAIL_SIZE 12
1203         if (dlen > TLSA_TAIL_SIZE)
1204             hexdata = hexencode(data + dlen - TLSA_TAIL_SIZE, TLSA_TAIL_SIZE);
1205         else
1206             hexdata = hexencode(data, dlen);
1207         BIO_printf(bio, "DANE TLSA %d %d %d %s%s %s at depth %d\n",
1208                    usage, selector, mtype,
1209                    (dlen > TLSA_TAIL_SIZE) ? "..." : "", hexdata,
1210                    (mspki != NULL) ? "signed the certificate" :
1211                    mdpth ? "matched TA certificate" : "matched EE certificate",
1212                    mdpth);
1213         OPENSSL_free(hexdata);
1214     }
1215 }
1216
1217 void print_ssl_summary(SSL *s)
1218 {
1219     const SSL_CIPHER *c;
1220     X509 *peer;
1221
1222     BIO_printf(bio_err, "Protocol version: %s\n", SSL_get_version(s));
1223     print_raw_cipherlist(s);
1224     c = SSL_get_current_cipher(s);
1225     BIO_printf(bio_err, "Ciphersuite: %s\n", SSL_CIPHER_get_name(c));
1226     do_print_sigalgs(bio_err, s, 0);
1227     peer = SSL_get_peer_certificate(s);
1228     if (peer != NULL) {
1229         int nid;
1230
1231         BIO_puts(bio_err, "Peer certificate: ");
1232         X509_NAME_print_ex(bio_err, X509_get_subject_name(peer),
1233                            0, get_nameopt());
1234         BIO_puts(bio_err, "\n");
1235         if (SSL_get_peer_signature_nid(s, &nid))
1236             BIO_printf(bio_err, "Hash used: %s\n", OBJ_nid2sn(nid));
1237         if (SSL_get_peer_signature_type_nid(s, &nid))
1238             BIO_printf(bio_err, "Signature type: %s\n", get_sigtype(nid));
1239         print_verify_detail(s, bio_err);
1240     } else {
1241         BIO_puts(bio_err, "No peer certificate\n");
1242     }
1243     X509_free(peer);
1244 #ifndef OPENSSL_NO_EC
1245     ssl_print_point_formats(bio_err, s);
1246     if (SSL_is_server(s))
1247         ssl_print_groups(bio_err, s, 1);
1248     else
1249         ssl_print_tmp_key(bio_err, s);
1250 #else
1251     if (!SSL_is_server(s))
1252         ssl_print_tmp_key(bio_err, s);
1253 #endif
1254 }
1255
1256 int config_ctx(SSL_CONF_CTX *cctx, STACK_OF(OPENSSL_STRING) *str,
1257                SSL_CTX *ctx)
1258 {
1259     int i;
1260
1261     SSL_CONF_CTX_set_ssl_ctx(cctx, ctx);
1262     for (i = 0; i < sk_OPENSSL_STRING_num(str); i += 2) {
1263         const char *flag = sk_OPENSSL_STRING_value(str, i);
1264         const char *arg = sk_OPENSSL_STRING_value(str, i + 1);
1265         if (SSL_CONF_cmd(cctx, flag, arg) <= 0) {
1266             if (arg != NULL)
1267                 BIO_printf(bio_err, "Error with command: \"%s %s\"\n",
1268                            flag, arg);
1269             else
1270                 BIO_printf(bio_err, "Error with command: \"%s\"\n", flag);
1271             ERR_print_errors(bio_err);
1272             return 0;
1273         }
1274     }
1275     if (!SSL_CONF_CTX_finish(cctx)) {
1276         BIO_puts(bio_err, "Error finishing context\n");
1277         ERR_print_errors(bio_err);
1278         return 0;
1279     }
1280     return 1;
1281 }
1282
1283 static int add_crls_store(X509_STORE *st, STACK_OF(X509_CRL) *crls)
1284 {
1285     X509_CRL *crl;
1286     int i;
1287     for (i = 0; i < sk_X509_CRL_num(crls); i++) {
1288         crl = sk_X509_CRL_value(crls, i);
1289         X509_STORE_add_crl(st, crl);
1290     }
1291     return 1;
1292 }
1293
1294 int ssl_ctx_add_crls(SSL_CTX *ctx, STACK_OF(X509_CRL) *crls, int crl_download)
1295 {
1296     X509_STORE *st;
1297     st = SSL_CTX_get_cert_store(ctx);
1298     add_crls_store(st, crls);
1299     if (crl_download)
1300         store_setup_crl_download(st);
1301     return 1;
1302 }
1303
1304 int ssl_load_stores(SSL_CTX *ctx,
1305                     const char *vfyCApath, const char *vfyCAfile,
1306                     const char *vfyCAstore,
1307                     const char *chCApath, const char *chCAfile,
1308                     const char *chCAstore,
1309                     STACK_OF(X509_CRL) *crls, int crl_download)
1310 {
1311     X509_STORE *vfy = NULL, *ch = NULL;
1312     int rv = 0;
1313     if (vfyCApath != NULL || vfyCAfile != NULL || vfyCAstore != NULL) {
1314         vfy = X509_STORE_new();
1315         if (vfy == NULL)
1316             goto err;
1317         if (vfyCAfile != NULL && !X509_STORE_load_file(vfy, vfyCAfile))
1318             goto err;
1319         if (vfyCApath != NULL && !X509_STORE_load_path(vfy, vfyCApath))
1320             goto err;
1321         if (vfyCAstore != NULL && !X509_STORE_load_store(vfy, vfyCAstore))
1322             goto err;
1323         add_crls_store(vfy, crls);
1324         SSL_CTX_set1_verify_cert_store(ctx, vfy);
1325         if (crl_download)
1326             store_setup_crl_download(vfy);
1327     }
1328     if (chCApath != NULL || chCAfile != NULL || chCAstore != NULL) {
1329         ch = X509_STORE_new();
1330         if (ch == NULL)
1331             goto err;
1332         if (chCAfile != NULL && !X509_STORE_load_file(ch, chCAfile))
1333             goto err;
1334         if (chCApath != NULL && !X509_STORE_load_path(ch, chCApath))
1335             goto err;
1336         if (chCAstore != NULL && !X509_STORE_load_store(ch, chCAstore))
1337             goto err;
1338         SSL_CTX_set1_chain_cert_store(ctx, ch);
1339     }
1340     rv = 1;
1341  err:
1342     X509_STORE_free(vfy);
1343     X509_STORE_free(ch);
1344     return rv;
1345 }
1346
1347 /* Verbose print out of security callback */
1348
1349 typedef struct {
1350     BIO *out;
1351     int verbose;
1352     int (*old_cb) (const SSL *s, const SSL_CTX *ctx, int op, int bits, int nid,
1353                    void *other, void *ex);
1354 } security_debug_ex;
1355
1356 static STRINT_PAIR callback_types[] = {
1357     {"Supported Ciphersuite", SSL_SECOP_CIPHER_SUPPORTED},
1358     {"Shared Ciphersuite", SSL_SECOP_CIPHER_SHARED},
1359     {"Check Ciphersuite", SSL_SECOP_CIPHER_CHECK},
1360 #ifndef OPENSSL_NO_DH
1361     {"Temp DH key bits", SSL_SECOP_TMP_DH},
1362 #endif
1363     {"Supported Curve", SSL_SECOP_CURVE_SUPPORTED},
1364     {"Shared Curve", SSL_SECOP_CURVE_SHARED},
1365     {"Check Curve", SSL_SECOP_CURVE_CHECK},
1366     {"Supported Signature Algorithm", SSL_SECOP_SIGALG_SUPPORTED},
1367     {"Shared Signature Algorithm", SSL_SECOP_SIGALG_SHARED},
1368     {"Check Signature Algorithm", SSL_SECOP_SIGALG_CHECK},
1369     {"Signature Algorithm mask", SSL_SECOP_SIGALG_MASK},
1370     {"Certificate chain EE key", SSL_SECOP_EE_KEY},
1371     {"Certificate chain CA key", SSL_SECOP_CA_KEY},
1372     {"Peer Chain EE key", SSL_SECOP_PEER_EE_KEY},
1373     {"Peer Chain CA key", SSL_SECOP_PEER_CA_KEY},
1374     {"Certificate chain CA digest", SSL_SECOP_CA_MD},
1375     {"Peer chain CA digest", SSL_SECOP_PEER_CA_MD},
1376     {"SSL compression", SSL_SECOP_COMPRESSION},
1377     {"Session ticket", SSL_SECOP_TICKET},
1378     {NULL}
1379 };
1380
1381 static int security_callback_debug(const SSL *s, const SSL_CTX *ctx,
1382                                    int op, int bits, int nid,
1383                                    void *other, void *ex)
1384 {
1385     security_debug_ex *sdb = ex;
1386     int rv, show_bits = 1, cert_md = 0;
1387     const char *nm;
1388     int show_nm;
1389     rv = sdb->old_cb(s, ctx, op, bits, nid, other, ex);
1390     if (rv == 1 && sdb->verbose < 2)
1391         return 1;
1392     BIO_puts(sdb->out, "Security callback: ");
1393
1394     nm = lookup(op, callback_types, NULL);
1395     show_nm = nm != NULL;
1396     switch (op) {
1397     case SSL_SECOP_TICKET:
1398     case SSL_SECOP_COMPRESSION:
1399         show_bits = 0;
1400         show_nm = 0;
1401         break;
1402     case SSL_SECOP_VERSION:
1403         BIO_printf(sdb->out, "Version=%s", lookup(nid, ssl_versions, "???"));
1404         show_bits = 0;
1405         show_nm = 0;
1406         break;
1407     case SSL_SECOP_CA_MD:
1408     case SSL_SECOP_PEER_CA_MD:
1409         cert_md = 1;
1410         break;
1411     case SSL_SECOP_SIGALG_SUPPORTED:
1412     case SSL_SECOP_SIGALG_SHARED:
1413     case SSL_SECOP_SIGALG_CHECK:
1414     case SSL_SECOP_SIGALG_MASK:
1415         show_nm = 0;
1416         break;
1417     }
1418     if (show_nm)
1419         BIO_printf(sdb->out, "%s=", nm);
1420
1421     switch (op & SSL_SECOP_OTHER_TYPE) {
1422
1423     case SSL_SECOP_OTHER_CIPHER:
1424         BIO_puts(sdb->out, SSL_CIPHER_get_name(other));
1425         break;
1426
1427 #ifndef OPENSSL_NO_EC
1428     case SSL_SECOP_OTHER_CURVE:
1429         {
1430             const char *cname;
1431             cname = EC_curve_nid2nist(nid);
1432             if (cname == NULL)
1433                 cname = OBJ_nid2sn(nid);
1434             BIO_puts(sdb->out, cname);
1435         }
1436         break;
1437 #endif
1438 #ifndef OPENSSL_NO_DH
1439     case SSL_SECOP_OTHER_DH:
1440         {
1441             DH *dh = other;
1442             EVP_PKEY *pkey = EVP_PKEY_new();
1443             int fail = 1;
1444
1445             if (pkey != NULL) {
1446                 if (EVP_PKEY_set1_DH(pkey, dh)) {
1447                     BIO_printf(sdb->out, "%d", EVP_PKEY_bits(pkey));
1448                     fail = 0;
1449                 }
1450
1451                 EVP_PKEY_free(pkey);
1452             }
1453             if (fail)
1454                 BIO_printf(sdb->out, "s_cb.c:security_callback_debug op=0x%x",
1455                            op);
1456             break;
1457         }
1458 #endif
1459     case SSL_SECOP_OTHER_CERT:
1460         {
1461             if (cert_md) {
1462                 int sig_nid = X509_get_signature_nid(other);
1463                 BIO_puts(sdb->out, OBJ_nid2sn(sig_nid));
1464             } else {
1465                 EVP_PKEY *pkey = X509_get0_pubkey(other);
1466                 const char *algname = "";
1467                 EVP_PKEY_asn1_get0_info(NULL, NULL, NULL, NULL,
1468                                         &algname, EVP_PKEY_get0_asn1(pkey));
1469                 BIO_printf(sdb->out, "%s, bits=%d",
1470                            algname, EVP_PKEY_bits(pkey));
1471             }
1472             break;
1473         }
1474     case SSL_SECOP_OTHER_SIGALG:
1475         {
1476             const unsigned char *salg = other;
1477             const char *sname = NULL;
1478             int raw_sig_code = (salg[0] << 8) + salg[1]; /* always big endian (msb, lsb) */
1479                 /* raw_sig_code: signature_scheme from tls1.3, or signature_and_hash from tls1.2 */
1480
1481             if (nm != NULL)
1482                 BIO_printf(sdb->out, "%s", nm);
1483             else
1484                 BIO_printf(sdb->out, "s_cb.c:security_callback_debug op=0x%x", op);
1485
1486             sname = lookup(raw_sig_code, signature_tls13_scheme_list, NULL);
1487             if (sname != NULL) {
1488                 BIO_printf(sdb->out, " scheme=%s", sname);
1489             } else {
1490                 int alg_code = salg[1];
1491                 int hash_code = salg[0];
1492                 const char *alg_str = lookup(alg_code, signature_tls12_alg_list, NULL);
1493                 const char *hash_str = lookup(hash_code, signature_tls12_hash_list, NULL);
1494
1495                 if (alg_str != NULL && hash_str != NULL)
1496                     BIO_printf(sdb->out, " digest=%s, algorithm=%s", hash_str, alg_str);
1497                 else
1498                     BIO_printf(sdb->out, " scheme=unknown(0x%04x)", raw_sig_code);
1499             }
1500         }
1501
1502     }
1503
1504     if (show_bits)
1505         BIO_printf(sdb->out, ", security bits=%d", bits);
1506     BIO_printf(sdb->out, ": %s\n", rv ? "yes" : "no");
1507     return rv;
1508 }
1509
1510 void ssl_ctx_security_debug(SSL_CTX *ctx, int verbose)
1511 {
1512     static security_debug_ex sdb;
1513
1514     sdb.out = bio_err;
1515     sdb.verbose = verbose;
1516     sdb.old_cb = SSL_CTX_get_security_callback(ctx);
1517     SSL_CTX_set_security_callback(ctx, security_callback_debug);
1518     SSL_CTX_set0_security_ex_data(ctx, &sdb);
1519 }
1520
1521 static void keylog_callback(const SSL *ssl, const char *line)
1522 {
1523     if (bio_keylog == NULL) {
1524         BIO_printf(bio_err, "Keylog callback is invoked without valid file!\n");
1525         return;
1526     }
1527
1528     /*
1529      * There might be concurrent writers to the keylog file, so we must ensure
1530      * that the given line is written at once.
1531      */
1532     BIO_printf(bio_keylog, "%s\n", line);
1533     (void)BIO_flush(bio_keylog);
1534 }
1535
1536 int set_keylog_file(SSL_CTX *ctx, const char *keylog_file)
1537 {
1538     /* Close any open files */
1539     BIO_free_all(bio_keylog);
1540     bio_keylog = NULL;
1541
1542     if (ctx == NULL || keylog_file == NULL) {
1543         /* Keylogging is disabled, OK. */
1544         return 0;
1545     }
1546
1547     /*
1548      * Append rather than write in order to allow concurrent modification.
1549      * Furthermore, this preserves existing keylog files which is useful when
1550      * the tool is run multiple times.
1551      */
1552     bio_keylog = BIO_new_file(keylog_file, "a");
1553     if (bio_keylog == NULL) {
1554         BIO_printf(bio_err, "Error writing keylog file %s\n", keylog_file);
1555         return 1;
1556     }
1557
1558     /* Write a header for seekable, empty files (this excludes pipes). */
1559     if (BIO_tell(bio_keylog) == 0) {
1560         BIO_puts(bio_keylog,
1561                  "# SSL/TLS secrets log file, generated by OpenSSL\n");
1562         (void)BIO_flush(bio_keylog);
1563     }
1564     SSL_CTX_set_keylog_callback(ctx, keylog_callback);
1565     return 0;
1566 }
1567
1568 void print_ca_names(BIO *bio, SSL *s)
1569 {
1570     const char *cs = SSL_is_server(s) ? "server" : "client";
1571     const STACK_OF(X509_NAME) *sk = SSL_get0_peer_CA_list(s);
1572     int i;
1573
1574     if (sk == NULL || sk_X509_NAME_num(sk) == 0) {
1575         if (!SSL_is_server(s))
1576             BIO_printf(bio, "---\nNo %s certificate CA names sent\n", cs);
1577         return;
1578     }
1579
1580     BIO_printf(bio, "---\nAcceptable %s certificate CA names\n",cs);
1581     for (i = 0; i < sk_X509_NAME_num(sk); i++) {
1582         X509_NAME_print_ex(bio, sk_X509_NAME_value(sk, i), 0, get_nameopt());
1583         BIO_write(bio, "\n", 1);
1584     }
1585 }