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