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