Return the cookie_len value from generate_cookie_callback
[oweals/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     size_t mac_len;
749
750     /* Initialize a random secret */
751     if (!cookie_initialized) {
752         if (RAND_bytes(cookie_secret, COOKIE_SECRET_LENGTH) <= 0) {
753             BIO_printf(bio_err, "error setting random cookie secret\n");
754             return 0;
755         }
756         cookie_initialized = 1;
757     }
758
759     if (SSL_is_dtls(ssl)) {
760         lpeer = peer = BIO_ADDR_new();
761         if (peer == NULL) {
762             BIO_printf(bio_err, "memory full\n");
763             return 0;
764         }
765
766         /* Read peer information */
767         (void)BIO_dgram_get_peer(SSL_get_rbio(ssl), peer);
768     } else {
769         peer = ourpeer;
770     }
771
772     /* Create buffer with peer's address and port */
773     if (!BIO_ADDR_rawaddress(peer, NULL, &length)) {
774         BIO_printf(bio_err, "Failed getting peer address\n");
775         return 0;
776     }
777     OPENSSL_assert(length != 0);
778     port = BIO_ADDR_rawport(peer);
779     length += sizeof(port);
780     buffer = app_malloc(length, "cookie generate buffer");
781
782     memcpy(buffer, &port, sizeof(port));
783     BIO_ADDR_rawaddress(peer, buffer + sizeof(port), NULL);
784
785     /* Calculate HMAC of buffer using the secret */
786     hmac = EVP_MAC_fetch(NULL, "HMAC", NULL);
787     if (hmac == NULL) {
788             BIO_printf(bio_err, "HMAC not found\n");
789             goto end;
790     }
791     ctx = EVP_MAC_new_ctx(hmac);
792     if (ctx == NULL) {
793             BIO_printf(bio_err, "HMAC context allocation failed\n");
794             goto end;
795     }
796     *p++ = OSSL_PARAM_construct_utf8_string(OSSL_MAC_PARAM_DIGEST, "SHA1", 0);
797     *p++ = OSSL_PARAM_construct_octet_string(OSSL_MAC_PARAM_KEY, cookie_secret,
798                                              COOKIE_SECRET_LENGTH);
799     *p = OSSL_PARAM_construct_end();
800     if (!EVP_MAC_set_ctx_params(ctx, params)) {
801             BIO_printf(bio_err, "HMAC context parameter setting failed\n");
802             goto end;
803     }
804     if (!EVP_MAC_init(ctx)) {
805             BIO_printf(bio_err, "HMAC context initialisation failed\n");
806             goto end;
807     }
808     if (!EVP_MAC_update(ctx, buffer, length)) {
809             BIO_printf(bio_err, "HMAC context update failed\n");
810             goto end;
811     }
812     if (!EVP_MAC_final(ctx, cookie, &mac_len, DTLS1_COOKIE_LENGTH)) {
813             BIO_printf(bio_err, "HMAC context final failed\n");
814             goto end;
815     }
816     *cookie_len = (int)mac_len;
817     res = 1;
818 end:
819     OPENSSL_free(buffer);
820     BIO_ADDR_free(lpeer);
821
822     return res;
823 }
824
825 int verify_cookie_callback(SSL *ssl, const unsigned char *cookie,
826                            unsigned int cookie_len)
827 {
828     unsigned char result[EVP_MAX_MD_SIZE];
829     unsigned int resultlength;
830
831     /* Note: we check cookie_initialized because if it's not,
832      * it cannot be valid */
833     if (cookie_initialized
834         && generate_cookie_callback(ssl, result, &resultlength)
835         && cookie_len == resultlength
836         && memcmp(result, cookie, resultlength) == 0)
837         return 1;
838
839     return 0;
840 }
841
842 int generate_stateless_cookie_callback(SSL *ssl, unsigned char *cookie,
843                                        size_t *cookie_len)
844 {
845     unsigned int temp = 0;
846
847     int res = generate_cookie_callback(ssl, cookie, &temp);
848     *cookie_len = temp;
849     return res;
850 }
851
852 int verify_stateless_cookie_callback(SSL *ssl, const unsigned char *cookie,
853                                      size_t cookie_len)
854 {
855     return verify_cookie_callback(ssl, cookie, cookie_len);
856 }
857
858 #endif
859
860 /*
861  * Example of extended certificate handling. Where the standard support of
862  * one certificate per algorithm is not sufficient an application can decide
863  * which certificate(s) to use at runtime based on whatever criteria it deems
864  * appropriate.
865  */
866
867 /* Linked list of certificates, keys and chains */
868 struct ssl_excert_st {
869     int certform;
870     const char *certfile;
871     int keyform;
872     const char *keyfile;
873     const char *chainfile;
874     X509 *cert;
875     EVP_PKEY *key;
876     STACK_OF(X509) *chain;
877     int build_chain;
878     struct ssl_excert_st *next, *prev;
879 };
880
881 static STRINT_PAIR chain_flags[] = {
882     {"Overall Validity", CERT_PKEY_VALID},
883     {"Sign with EE key", CERT_PKEY_SIGN},
884     {"EE signature", CERT_PKEY_EE_SIGNATURE},
885     {"CA signature", CERT_PKEY_CA_SIGNATURE},
886     {"EE key parameters", CERT_PKEY_EE_PARAM},
887     {"CA key parameters", CERT_PKEY_CA_PARAM},
888     {"Explicitly sign with EE key", CERT_PKEY_EXPLICIT_SIGN},
889     {"Issuer Name", CERT_PKEY_ISSUER_NAME},
890     {"Certificate Type", CERT_PKEY_CERT_TYPE},
891     {NULL}
892 };
893
894 static void print_chain_flags(SSL *s, int flags)
895 {
896     STRINT_PAIR *pp;
897
898     for (pp = chain_flags; pp->name; ++pp)
899         BIO_printf(bio_err, "\t%s: %s\n",
900                    pp->name,
901                    (flags & pp->retval) ? "OK" : "NOT OK");
902     BIO_printf(bio_err, "\tSuite B: ");
903     if (SSL_set_cert_flags(s, 0) & SSL_CERT_FLAG_SUITEB_128_LOS)
904         BIO_puts(bio_err, flags & CERT_PKEY_SUITEB ? "OK\n" : "NOT OK\n");
905     else
906         BIO_printf(bio_err, "not tested\n");
907 }
908
909 /*
910  * Very basic selection callback: just use any certificate chain reported as
911  * valid. More sophisticated could prioritise according to local policy.
912  */
913 static int set_cert_cb(SSL *ssl, void *arg)
914 {
915     int i, rv;
916     SSL_EXCERT *exc = arg;
917 #ifdef CERT_CB_TEST_RETRY
918     static int retry_cnt;
919     if (retry_cnt < 5) {
920         retry_cnt++;
921         BIO_printf(bio_err,
922                    "Certificate callback retry test: count %d\n",
923                    retry_cnt);
924         return -1;
925     }
926 #endif
927     SSL_certs_clear(ssl);
928
929     if (exc == NULL)
930         return 1;
931
932     /*
933      * Go to end of list and traverse backwards since we prepend newer
934      * entries this retains the original order.
935      */
936     while (exc->next != NULL)
937         exc = exc->next;
938
939     i = 0;
940
941     while (exc != NULL) {
942         i++;
943         rv = SSL_check_chain(ssl, exc->cert, exc->key, exc->chain);
944         BIO_printf(bio_err, "Checking cert chain %d:\nSubject: ", i);
945         X509_NAME_print_ex(bio_err, X509_get_subject_name(exc->cert), 0,
946                            get_nameopt());
947         BIO_puts(bio_err, "\n");
948         print_chain_flags(ssl, rv);
949         if (rv & CERT_PKEY_VALID) {
950             if (!SSL_use_certificate(ssl, exc->cert)
951                     || !SSL_use_PrivateKey(ssl, exc->key)) {
952                 return 0;
953             }
954             /*
955              * NB: we wouldn't normally do this as it is not efficient
956              * building chains on each connection better to cache the chain
957              * in advance.
958              */
959             if (exc->build_chain) {
960                 if (!SSL_build_cert_chain(ssl, 0))
961                     return 0;
962             } else if (exc->chain != NULL) {
963                 SSL_set1_chain(ssl, exc->chain);
964             }
965         }
966         exc = exc->prev;
967     }
968     return 1;
969 }
970
971 void ssl_ctx_set_excert(SSL_CTX *ctx, SSL_EXCERT *exc)
972 {
973     SSL_CTX_set_cert_cb(ctx, set_cert_cb, exc);
974 }
975
976 static int ssl_excert_prepend(SSL_EXCERT **pexc)
977 {
978     SSL_EXCERT *exc = app_malloc(sizeof(*exc), "prepend cert");
979
980     memset(exc, 0, sizeof(*exc));
981
982     exc->next = *pexc;
983     *pexc = exc;
984
985     if (exc->next) {
986         exc->certform = exc->next->certform;
987         exc->keyform = exc->next->keyform;
988         exc->next->prev = exc;
989     } else {
990         exc->certform = FORMAT_PEM;
991         exc->keyform = FORMAT_PEM;
992     }
993     return 1;
994
995 }
996
997 void ssl_excert_free(SSL_EXCERT *exc)
998 {
999     SSL_EXCERT *curr;
1000
1001     if (exc == NULL)
1002         return;
1003     while (exc) {
1004         X509_free(exc->cert);
1005         EVP_PKEY_free(exc->key);
1006         sk_X509_pop_free(exc->chain, X509_free);
1007         curr = exc;
1008         exc = exc->next;
1009         OPENSSL_free(curr);
1010     }
1011 }
1012
1013 int load_excert(SSL_EXCERT **pexc)
1014 {
1015     SSL_EXCERT *exc = *pexc;
1016     if (exc == NULL)
1017         return 1;
1018     /* If nothing in list, free and set to NULL */
1019     if (exc->certfile == NULL && exc->next == NULL) {
1020         ssl_excert_free(exc);
1021         *pexc = NULL;
1022         return 1;
1023     }
1024     for (; exc; exc = exc->next) {
1025         if (exc->certfile == NULL) {
1026             BIO_printf(bio_err, "Missing filename\n");
1027             return 0;
1028         }
1029         exc->cert = load_cert(exc->certfile, exc->certform,
1030                               "Server Certificate");
1031         if (exc->cert == NULL)
1032             return 0;
1033         if (exc->keyfile != NULL) {
1034             exc->key = load_key(exc->keyfile, exc->keyform,
1035                                 0, NULL, NULL, "Server Key");
1036         } else {
1037             exc->key = load_key(exc->certfile, exc->certform,
1038                                 0, NULL, NULL, "Server Key");
1039         }
1040         if (exc->key == NULL)
1041             return 0;
1042         if (exc->chainfile != NULL) {
1043             if (!load_certs(exc->chainfile, &exc->chain, FORMAT_PEM, NULL,
1044                             "Server Chain"))
1045                 return 0;
1046         }
1047     }
1048     return 1;
1049 }
1050
1051 enum range { OPT_X_ENUM };
1052
1053 int args_excert(int opt, SSL_EXCERT **pexc)
1054 {
1055     SSL_EXCERT *exc = *pexc;
1056
1057     assert(opt > OPT_X__FIRST);
1058     assert(opt < OPT_X__LAST);
1059
1060     if (exc == NULL) {
1061         if (!ssl_excert_prepend(&exc)) {
1062             BIO_printf(bio_err, " %s: Error initialising xcert\n",
1063                        opt_getprog());
1064             goto err;
1065         }
1066         *pexc = exc;
1067     }
1068
1069     switch ((enum range)opt) {
1070     case OPT_X__FIRST:
1071     case OPT_X__LAST:
1072         return 0;
1073     case OPT_X_CERT:
1074         if (exc->certfile != NULL && !ssl_excert_prepend(&exc)) {
1075             BIO_printf(bio_err, "%s: Error adding xcert\n", opt_getprog());
1076             goto err;
1077         }
1078         *pexc = exc;
1079         exc->certfile = opt_arg();
1080         break;
1081     case OPT_X_KEY:
1082         if (exc->keyfile != NULL) {
1083             BIO_printf(bio_err, "%s: Key already specified\n", opt_getprog());
1084             goto err;
1085         }
1086         exc->keyfile = opt_arg();
1087         break;
1088     case OPT_X_CHAIN:
1089         if (exc->chainfile != NULL) {
1090             BIO_printf(bio_err, "%s: Chain already specified\n",
1091                        opt_getprog());
1092             goto err;
1093         }
1094         exc->chainfile = opt_arg();
1095         break;
1096     case OPT_X_CHAIN_BUILD:
1097         exc->build_chain = 1;
1098         break;
1099     case OPT_X_CERTFORM:
1100         if (!opt_format(opt_arg(), OPT_FMT_ANY, &exc->certform))
1101             return 0;
1102         break;
1103     case OPT_X_KEYFORM:
1104         if (!opt_format(opt_arg(), OPT_FMT_ANY, &exc->keyform))
1105             return 0;
1106         break;
1107     }
1108     return 1;
1109
1110  err:
1111     ERR_print_errors(bio_err);
1112     ssl_excert_free(exc);
1113     *pexc = NULL;
1114     return 0;
1115 }
1116
1117 static void print_raw_cipherlist(SSL *s)
1118 {
1119     const unsigned char *rlist;
1120     static const unsigned char scsv_id[] = { 0, 0xFF };
1121     size_t i, rlistlen, num;
1122     if (!SSL_is_server(s))
1123         return;
1124     num = SSL_get0_raw_cipherlist(s, NULL);
1125     OPENSSL_assert(num == 2);
1126     rlistlen = SSL_get0_raw_cipherlist(s, &rlist);
1127     BIO_puts(bio_err, "Client cipher list: ");
1128     for (i = 0; i < rlistlen; i += num, rlist += num) {
1129         const SSL_CIPHER *c = SSL_CIPHER_find(s, rlist);
1130         if (i)
1131             BIO_puts(bio_err, ":");
1132         if (c != NULL) {
1133             BIO_puts(bio_err, SSL_CIPHER_get_name(c));
1134         } else if (memcmp(rlist, scsv_id, num) == 0) {
1135             BIO_puts(bio_err, "SCSV");
1136         } else {
1137             size_t j;
1138             BIO_puts(bio_err, "0x");
1139             for (j = 0; j < num; j++)
1140                 BIO_printf(bio_err, "%02X", rlist[j]);
1141         }
1142     }
1143     BIO_puts(bio_err, "\n");
1144 }
1145
1146 /*
1147  * Hex encoder for TLSA RRdata, not ':' delimited.
1148  */
1149 static char *hexencode(const unsigned char *data, size_t len)
1150 {
1151     static const char *hex = "0123456789abcdef";
1152     char *out;
1153     char *cp;
1154     size_t outlen = 2 * len + 1;
1155     int ilen = (int) outlen;
1156
1157     if (outlen < len || ilen < 0 || outlen != (size_t)ilen) {
1158         BIO_printf(bio_err, "%s: %zu-byte buffer too large to hexencode\n",
1159                    opt_getprog(), len);
1160         exit(1);
1161     }
1162     cp = out = app_malloc(ilen, "TLSA hex data buffer");
1163
1164     while (len-- > 0) {
1165         *cp++ = hex[(*data >> 4) & 0x0f];
1166         *cp++ = hex[*data++ & 0x0f];
1167     }
1168     *cp = '\0';
1169     return out;
1170 }
1171
1172 void print_verify_detail(SSL *s, BIO *bio)
1173 {
1174     int mdpth;
1175     EVP_PKEY *mspki;
1176     long verify_err = SSL_get_verify_result(s);
1177
1178     if (verify_err == X509_V_OK) {
1179         const char *peername = SSL_get0_peername(s);
1180
1181         BIO_printf(bio, "Verification: OK\n");
1182         if (peername != NULL)
1183             BIO_printf(bio, "Verified peername: %s\n", peername);
1184     } else {
1185         const char *reason = X509_verify_cert_error_string(verify_err);
1186
1187         BIO_printf(bio, "Verification error: %s\n", reason);
1188     }
1189
1190     if ((mdpth = SSL_get0_dane_authority(s, NULL, &mspki)) >= 0) {
1191         uint8_t usage, selector, mtype;
1192         const unsigned char *data = NULL;
1193         size_t dlen = 0;
1194         char *hexdata;
1195
1196         mdpth = SSL_get0_dane_tlsa(s, &usage, &selector, &mtype, &data, &dlen);
1197
1198         /*
1199          * The TLSA data field can be quite long when it is a certificate,
1200          * public key or even a SHA2-512 digest.  Because the initial octets of
1201          * ASN.1 certificates and public keys contain mostly boilerplate OIDs
1202          * and lengths, we show the last 12 bytes of the data instead, as these
1203          * are more likely to distinguish distinct TLSA records.
1204          */
1205 #define TLSA_TAIL_SIZE 12
1206         if (dlen > TLSA_TAIL_SIZE)
1207             hexdata = hexencode(data + dlen - TLSA_TAIL_SIZE, TLSA_TAIL_SIZE);
1208         else
1209             hexdata = hexencode(data, dlen);
1210         BIO_printf(bio, "DANE TLSA %d %d %d %s%s %s at depth %d\n",
1211                    usage, selector, mtype,
1212                    (dlen > TLSA_TAIL_SIZE) ? "..." : "", hexdata,
1213                    (mspki != NULL) ? "signed the certificate" :
1214                    mdpth ? "matched TA certificate" : "matched EE certificate",
1215                    mdpth);
1216         OPENSSL_free(hexdata);
1217     }
1218 }
1219
1220 void print_ssl_summary(SSL *s)
1221 {
1222     const SSL_CIPHER *c;
1223     X509 *peer;
1224
1225     BIO_printf(bio_err, "Protocol version: %s\n", SSL_get_version(s));
1226     print_raw_cipherlist(s);
1227     c = SSL_get_current_cipher(s);
1228     BIO_printf(bio_err, "Ciphersuite: %s\n", SSL_CIPHER_get_name(c));
1229     do_print_sigalgs(bio_err, s, 0);
1230     peer = SSL_get_peer_certificate(s);
1231     if (peer != NULL) {
1232         int nid;
1233
1234         BIO_puts(bio_err, "Peer certificate: ");
1235         X509_NAME_print_ex(bio_err, X509_get_subject_name(peer),
1236                            0, get_nameopt());
1237         BIO_puts(bio_err, "\n");
1238         if (SSL_get_peer_signature_nid(s, &nid))
1239             BIO_printf(bio_err, "Hash used: %s\n", OBJ_nid2sn(nid));
1240         if (SSL_get_peer_signature_type_nid(s, &nid))
1241             BIO_printf(bio_err, "Signature type: %s\n", get_sigtype(nid));
1242         print_verify_detail(s, bio_err);
1243     } else {
1244         BIO_puts(bio_err, "No peer certificate\n");
1245     }
1246     X509_free(peer);
1247 #ifndef OPENSSL_NO_EC
1248     ssl_print_point_formats(bio_err, s);
1249     if (SSL_is_server(s))
1250         ssl_print_groups(bio_err, s, 1);
1251     else
1252         ssl_print_tmp_key(bio_err, s);
1253 #else
1254     if (!SSL_is_server(s))
1255         ssl_print_tmp_key(bio_err, s);
1256 #endif
1257 }
1258
1259 int config_ctx(SSL_CONF_CTX *cctx, STACK_OF(OPENSSL_STRING) *str,
1260                SSL_CTX *ctx)
1261 {
1262     int i;
1263
1264     SSL_CONF_CTX_set_ssl_ctx(cctx, ctx);
1265     for (i = 0; i < sk_OPENSSL_STRING_num(str); i += 2) {
1266         const char *flag = sk_OPENSSL_STRING_value(str, i);
1267         const char *arg = sk_OPENSSL_STRING_value(str, i + 1);
1268         if (SSL_CONF_cmd(cctx, flag, arg) <= 0) {
1269             if (arg != NULL)
1270                 BIO_printf(bio_err, "Error with command: \"%s %s\"\n",
1271                            flag, arg);
1272             else
1273                 BIO_printf(bio_err, "Error with command: \"%s\"\n", flag);
1274             ERR_print_errors(bio_err);
1275             return 0;
1276         }
1277     }
1278     if (!SSL_CONF_CTX_finish(cctx)) {
1279         BIO_puts(bio_err, "Error finishing context\n");
1280         ERR_print_errors(bio_err);
1281         return 0;
1282     }
1283     return 1;
1284 }
1285
1286 static int add_crls_store(X509_STORE *st, STACK_OF(X509_CRL) *crls)
1287 {
1288     X509_CRL *crl;
1289     int i;
1290     for (i = 0; i < sk_X509_CRL_num(crls); i++) {
1291         crl = sk_X509_CRL_value(crls, i);
1292         X509_STORE_add_crl(st, crl);
1293     }
1294     return 1;
1295 }
1296
1297 int ssl_ctx_add_crls(SSL_CTX *ctx, STACK_OF(X509_CRL) *crls, int crl_download)
1298 {
1299     X509_STORE *st;
1300     st = SSL_CTX_get_cert_store(ctx);
1301     add_crls_store(st, crls);
1302     if (crl_download)
1303         store_setup_crl_download(st);
1304     return 1;
1305 }
1306
1307 int ssl_load_stores(SSL_CTX *ctx,
1308                     const char *vfyCApath, const char *vfyCAfile,
1309                     const char *vfyCAstore,
1310                     const char *chCApath, const char *chCAfile,
1311                     const char *chCAstore,
1312                     STACK_OF(X509_CRL) *crls, int crl_download)
1313 {
1314     X509_STORE *vfy = NULL, *ch = NULL;
1315     int rv = 0;
1316     if (vfyCApath != NULL || vfyCAfile != NULL || vfyCAstore != NULL) {
1317         vfy = X509_STORE_new();
1318         if (vfy == NULL)
1319             goto err;
1320         if (vfyCAfile != NULL && !X509_STORE_load_file(vfy, vfyCAfile))
1321             goto err;
1322         if (vfyCApath != NULL && !X509_STORE_load_path(vfy, vfyCApath))
1323             goto err;
1324         if (vfyCAstore != NULL && !X509_STORE_load_store(vfy, vfyCAstore))
1325             goto err;
1326         add_crls_store(vfy, crls);
1327         SSL_CTX_set1_verify_cert_store(ctx, vfy);
1328         if (crl_download)
1329             store_setup_crl_download(vfy);
1330     }
1331     if (chCApath != NULL || chCAfile != NULL || chCAstore != NULL) {
1332         ch = X509_STORE_new();
1333         if (ch == NULL)
1334             goto err;
1335         if (chCAfile != NULL && !X509_STORE_load_file(ch, chCAfile))
1336             goto err;
1337         if (chCApath != NULL && !X509_STORE_load_path(ch, chCApath))
1338             goto err;
1339         if (chCAstore != NULL && !X509_STORE_load_store(ch, chCAstore))
1340             goto err;
1341         SSL_CTX_set1_chain_cert_store(ctx, ch);
1342     }
1343     rv = 1;
1344  err:
1345     X509_STORE_free(vfy);
1346     X509_STORE_free(ch);
1347     return rv;
1348 }
1349
1350 /* Verbose print out of security callback */
1351
1352 typedef struct {
1353     BIO *out;
1354     int verbose;
1355     int (*old_cb) (const SSL *s, const SSL_CTX *ctx, int op, int bits, int nid,
1356                    void *other, void *ex);
1357 } security_debug_ex;
1358
1359 static STRINT_PAIR callback_types[] = {
1360     {"Supported Ciphersuite", SSL_SECOP_CIPHER_SUPPORTED},
1361     {"Shared Ciphersuite", SSL_SECOP_CIPHER_SHARED},
1362     {"Check Ciphersuite", SSL_SECOP_CIPHER_CHECK},
1363 #ifndef OPENSSL_NO_DH
1364     {"Temp DH key bits", SSL_SECOP_TMP_DH},
1365 #endif
1366     {"Supported Curve", SSL_SECOP_CURVE_SUPPORTED},
1367     {"Shared Curve", SSL_SECOP_CURVE_SHARED},
1368     {"Check Curve", SSL_SECOP_CURVE_CHECK},
1369     {"Supported Signature Algorithm", SSL_SECOP_SIGALG_SUPPORTED},
1370     {"Shared Signature Algorithm", SSL_SECOP_SIGALG_SHARED},
1371     {"Check Signature Algorithm", SSL_SECOP_SIGALG_CHECK},
1372     {"Signature Algorithm mask", SSL_SECOP_SIGALG_MASK},
1373     {"Certificate chain EE key", SSL_SECOP_EE_KEY},
1374     {"Certificate chain CA key", SSL_SECOP_CA_KEY},
1375     {"Peer Chain EE key", SSL_SECOP_PEER_EE_KEY},
1376     {"Peer Chain CA key", SSL_SECOP_PEER_CA_KEY},
1377     {"Certificate chain CA digest", SSL_SECOP_CA_MD},
1378     {"Peer chain CA digest", SSL_SECOP_PEER_CA_MD},
1379     {"SSL compression", SSL_SECOP_COMPRESSION},
1380     {"Session ticket", SSL_SECOP_TICKET},
1381     {NULL}
1382 };
1383
1384 static int security_callback_debug(const SSL *s, const SSL_CTX *ctx,
1385                                    int op, int bits, int nid,
1386                                    void *other, void *ex)
1387 {
1388     security_debug_ex *sdb = ex;
1389     int rv, show_bits = 1, cert_md = 0;
1390     const char *nm;
1391     int show_nm;
1392     rv = sdb->old_cb(s, ctx, op, bits, nid, other, ex);
1393     if (rv == 1 && sdb->verbose < 2)
1394         return 1;
1395     BIO_puts(sdb->out, "Security callback: ");
1396
1397     nm = lookup(op, callback_types, NULL);
1398     show_nm = nm != NULL;
1399     switch (op) {
1400     case SSL_SECOP_TICKET:
1401     case SSL_SECOP_COMPRESSION:
1402         show_bits = 0;
1403         show_nm = 0;
1404         break;
1405     case SSL_SECOP_VERSION:
1406         BIO_printf(sdb->out, "Version=%s", lookup(nid, ssl_versions, "???"));
1407         show_bits = 0;
1408         show_nm = 0;
1409         break;
1410     case SSL_SECOP_CA_MD:
1411     case SSL_SECOP_PEER_CA_MD:
1412         cert_md = 1;
1413         break;
1414     case SSL_SECOP_SIGALG_SUPPORTED:
1415     case SSL_SECOP_SIGALG_SHARED:
1416     case SSL_SECOP_SIGALG_CHECK:
1417     case SSL_SECOP_SIGALG_MASK:
1418         show_nm = 0;
1419         break;
1420     }
1421     if (show_nm)
1422         BIO_printf(sdb->out, "%s=", nm);
1423
1424     switch (op & SSL_SECOP_OTHER_TYPE) {
1425
1426     case SSL_SECOP_OTHER_CIPHER:
1427         BIO_puts(sdb->out, SSL_CIPHER_get_name(other));
1428         break;
1429
1430 #ifndef OPENSSL_NO_EC
1431     case SSL_SECOP_OTHER_CURVE:
1432         {
1433             const char *cname;
1434             cname = EC_curve_nid2nist(nid);
1435             if (cname == NULL)
1436                 cname = OBJ_nid2sn(nid);
1437             BIO_puts(sdb->out, cname);
1438         }
1439         break;
1440 #endif
1441 #ifndef OPENSSL_NO_DH
1442     case SSL_SECOP_OTHER_DH:
1443         {
1444             DH *dh = other;
1445             EVP_PKEY *pkey = EVP_PKEY_new();
1446             int fail = 1;
1447
1448             if (pkey != NULL) {
1449                 if (EVP_PKEY_set1_DH(pkey, dh)) {
1450                     BIO_printf(sdb->out, "%d", EVP_PKEY_bits(pkey));
1451                     fail = 0;
1452                 }
1453
1454                 EVP_PKEY_free(pkey);
1455             }
1456             if (fail)
1457                 BIO_printf(sdb->out, "s_cb.c:security_callback_debug op=0x%x",
1458                            op);
1459             break;
1460         }
1461 #endif
1462     case SSL_SECOP_OTHER_CERT:
1463         {
1464             if (cert_md) {
1465                 int sig_nid = X509_get_signature_nid(other);
1466                 BIO_puts(sdb->out, OBJ_nid2sn(sig_nid));
1467             } else {
1468                 EVP_PKEY *pkey = X509_get0_pubkey(other);
1469                 const char *algname = "";
1470                 EVP_PKEY_asn1_get0_info(NULL, NULL, NULL, NULL,
1471                                         &algname, EVP_PKEY_get0_asn1(pkey));
1472                 BIO_printf(sdb->out, "%s, bits=%d",
1473                            algname, EVP_PKEY_bits(pkey));
1474             }
1475             break;
1476         }
1477     case SSL_SECOP_OTHER_SIGALG:
1478         {
1479             const unsigned char *salg = other;
1480             const char *sname = NULL;
1481             int raw_sig_code = (salg[0] << 8) + salg[1]; /* always big endian (msb, lsb) */
1482                 /* raw_sig_code: signature_scheme from tls1.3, or signature_and_hash from tls1.2 */
1483
1484             if (nm != NULL)
1485                 BIO_printf(sdb->out, "%s", nm);
1486             else
1487                 BIO_printf(sdb->out, "s_cb.c:security_callback_debug op=0x%x", op);
1488
1489             sname = lookup(raw_sig_code, signature_tls13_scheme_list, NULL);
1490             if (sname != NULL) {
1491                 BIO_printf(sdb->out, " scheme=%s", sname);
1492             } else {
1493                 int alg_code = salg[1];
1494                 int hash_code = salg[0];
1495                 const char *alg_str = lookup(alg_code, signature_tls12_alg_list, NULL);
1496                 const char *hash_str = lookup(hash_code, signature_tls12_hash_list, NULL);
1497
1498                 if (alg_str != NULL && hash_str != NULL)
1499                     BIO_printf(sdb->out, " digest=%s, algorithm=%s", hash_str, alg_str);
1500                 else
1501                     BIO_printf(sdb->out, " scheme=unknown(0x%04x)", raw_sig_code);
1502             }
1503         }
1504
1505     }
1506
1507     if (show_bits)
1508         BIO_printf(sdb->out, ", security bits=%d", bits);
1509     BIO_printf(sdb->out, ": %s\n", rv ? "yes" : "no");
1510     return rv;
1511 }
1512
1513 void ssl_ctx_security_debug(SSL_CTX *ctx, int verbose)
1514 {
1515     static security_debug_ex sdb;
1516
1517     sdb.out = bio_err;
1518     sdb.verbose = verbose;
1519     sdb.old_cb = SSL_CTX_get_security_callback(ctx);
1520     SSL_CTX_set_security_callback(ctx, security_callback_debug);
1521     SSL_CTX_set0_security_ex_data(ctx, &sdb);
1522 }
1523
1524 static void keylog_callback(const SSL *ssl, const char *line)
1525 {
1526     if (bio_keylog == NULL) {
1527         BIO_printf(bio_err, "Keylog callback is invoked without valid file!\n");
1528         return;
1529     }
1530
1531     /*
1532      * There might be concurrent writers to the keylog file, so we must ensure
1533      * that the given line is written at once.
1534      */
1535     BIO_printf(bio_keylog, "%s\n", line);
1536     (void)BIO_flush(bio_keylog);
1537 }
1538
1539 int set_keylog_file(SSL_CTX *ctx, const char *keylog_file)
1540 {
1541     /* Close any open files */
1542     BIO_free_all(bio_keylog);
1543     bio_keylog = NULL;
1544
1545     if (ctx == NULL || keylog_file == NULL) {
1546         /* Keylogging is disabled, OK. */
1547         return 0;
1548     }
1549
1550     /*
1551      * Append rather than write in order to allow concurrent modification.
1552      * Furthermore, this preserves existing keylog files which is useful when
1553      * the tool is run multiple times.
1554      */
1555     bio_keylog = BIO_new_file(keylog_file, "a");
1556     if (bio_keylog == NULL) {
1557         BIO_printf(bio_err, "Error writing keylog file %s\n", keylog_file);
1558         return 1;
1559     }
1560
1561     /* Write a header for seekable, empty files (this excludes pipes). */
1562     if (BIO_tell(bio_keylog) == 0) {
1563         BIO_puts(bio_keylog,
1564                  "# SSL/TLS secrets log file, generated by OpenSSL\n");
1565         (void)BIO_flush(bio_keylog);
1566     }
1567     SSL_CTX_set_keylog_callback(ctx, keylog_callback);
1568     return 0;
1569 }
1570
1571 void print_ca_names(BIO *bio, SSL *s)
1572 {
1573     const char *cs = SSL_is_server(s) ? "server" : "client";
1574     const STACK_OF(X509_NAME) *sk = SSL_get0_peer_CA_list(s);
1575     int i;
1576
1577     if (sk == NULL || sk_X509_NAME_num(sk) == 0) {
1578         if (!SSL_is_server(s))
1579             BIO_printf(bio, "---\nNo %s certificate CA names sent\n", cs);
1580         return;
1581     }
1582
1583     BIO_printf(bio, "---\nAcceptable %s certificate CA names\n",cs);
1584     for (i = 0; i < sk_X509_NAME_num(sk); i++) {
1585         X509_NAME_print_ex(bio, sk_X509_NAME_value(sk, i), 0, get_nameopt());
1586         BIO_write(bio, "\n", 1);
1587     }
1588 }