Add new ctrl to retrieve client certificate types, print out
[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 "s_apps.h"
124
125 #define COOKIE_SECRET_LENGTH    16
126
127 int verify_depth=0;
128 int verify_error=X509_V_OK;
129 int verify_return_error=0;
130 unsigned char cookie_secret[COOKIE_SECRET_LENGTH];
131 int cookie_initialized=0;
132
133 int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx)
134         {
135         X509 *err_cert;
136         int err,depth;
137
138         err_cert=X509_STORE_CTX_get_current_cert(ctx);
139         err=    X509_STORE_CTX_get_error(ctx);
140         depth=  X509_STORE_CTX_get_error_depth(ctx);
141
142         BIO_printf(bio_err,"depth=%d ",depth);
143         if (err_cert)
144                 {
145                 X509_NAME_print_ex(bio_err, X509_get_subject_name(err_cert),
146                                         0, XN_FLAG_ONELINE);
147                 BIO_puts(bio_err, "\n");
148                 }
149         else
150                 BIO_puts(bio_err, "<no cert>\n");
151         if (!ok)
152                 {
153                 BIO_printf(bio_err,"verify error:num=%d:%s\n",err,
154                         X509_verify_cert_error_string(err));
155                 if (verify_depth >= depth)
156                         {
157                         if (!verify_return_error)
158                                 ok=1;
159                         verify_error=X509_V_OK;
160                         }
161                 else
162                         {
163                         ok=0;
164                         verify_error=X509_V_ERR_CERT_CHAIN_TOO_LONG;
165                         }
166                 }
167         switch (err)
168                 {
169         case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT:
170                 BIO_puts(bio_err,"issuer= ");
171                 X509_NAME_print_ex(bio_err, X509_get_issuer_name(err_cert),
172                                         0, XN_FLAG_ONELINE);
173                 BIO_puts(bio_err, "\n");
174                 break;
175         case X509_V_ERR_CERT_NOT_YET_VALID:
176         case X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD:
177                 BIO_printf(bio_err,"notBefore=");
178                 ASN1_TIME_print(bio_err,X509_get_notBefore(err_cert));
179                 BIO_printf(bio_err,"\n");
180                 break;
181         case X509_V_ERR_CERT_HAS_EXPIRED:
182         case X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD:
183                 BIO_printf(bio_err,"notAfter=");
184                 ASN1_TIME_print(bio_err,X509_get_notAfter(err_cert));
185                 BIO_printf(bio_err,"\n");
186                 break;
187         case X509_V_ERR_NO_EXPLICIT_POLICY:
188                 policies_print(bio_err, ctx);
189                 break;
190                 }
191         if (err == X509_V_OK && ok == 2)
192                 policies_print(bio_err, ctx);
193
194         BIO_printf(bio_err,"verify return:%d\n",ok);
195         return(ok);
196         }
197
198 int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file)
199         {
200         if (cert_file != NULL)
201                 {
202                 /*
203                 SSL *ssl;
204                 X509 *x509;
205                 */
206
207                 if (SSL_CTX_use_certificate_file(ctx,cert_file,
208                         SSL_FILETYPE_PEM) <= 0)
209                         {
210                         BIO_printf(bio_err,"unable to get certificate from '%s'\n",cert_file);
211                         ERR_print_errors(bio_err);
212                         return(0);
213                         }
214                 if (key_file == NULL) key_file=cert_file;
215                 if (SSL_CTX_use_PrivateKey_file(ctx,key_file,
216                         SSL_FILETYPE_PEM) <= 0)
217                         {
218                         BIO_printf(bio_err,"unable to get private key from '%s'\n",key_file);
219                         ERR_print_errors(bio_err);
220                         return(0);
221                         }
222
223                 /*
224                 In theory this is no longer needed 
225                 ssl=SSL_new(ctx);
226                 x509=SSL_get_certificate(ssl);
227
228                 if (x509 != NULL) {
229                         EVP_PKEY *pktmp;
230                         pktmp = X509_get_pubkey(x509);
231                         EVP_PKEY_copy_parameters(pktmp,
232                                                 SSL_get_privatekey(ssl));
233                         EVP_PKEY_free(pktmp);
234                 }
235                 SSL_free(ssl);
236                 */
237
238                 /* If we are using DSA, we can copy the parameters from
239                  * the private key */
240
241
242                 /* Now we know that a key and cert have been set against
243                  * the SSL context */
244                 if (!SSL_CTX_check_private_key(ctx))
245                         {
246                         BIO_printf(bio_err,"Private key does not match the certificate public key\n");
247                         return(0);
248                         }
249                 }
250         return(1);
251         }
252
253 int set_cert_key_stuff(SSL_CTX *ctx, X509 *cert, EVP_PKEY *key,
254                        STACK_OF(X509) *chain)
255         {
256         if (cert == NULL)
257                 return 1;
258         if (SSL_CTX_use_certificate(ctx,cert) <= 0)
259                 {
260                 BIO_printf(bio_err,"error setting certificate\n");
261                 ERR_print_errors(bio_err);
262                 return 0;
263                 }
264
265         if (SSL_CTX_use_PrivateKey(ctx,key) <= 0)
266                 {
267                 BIO_printf(bio_err,"error setting private key\n");
268                 ERR_print_errors(bio_err);
269                 return 0;
270                 }
271                  
272         /* Now we know that a key and cert have been set against
273          * the SSL context */
274         if (!SSL_CTX_check_private_key(ctx))
275                 {
276                 BIO_printf(bio_err,"Private key does not match the certificate public key\n");
277                 return 0;
278                 }
279         if (chain && !SSL_CTX_set1_chain(ctx, chain))
280                 {
281                 BIO_printf(bio_err,"error setting certificate chain\n");
282                 ERR_print_errors(bio_err);
283                 return 0;
284                 }
285         return 1;
286         }
287
288 static void ssl_print_client_cert_types(BIO *bio, SSL *s)
289         {
290         const unsigned char *p;
291         int i;
292         int cert_type_num = SSL_get0_certificate_types(s, &p);
293         if (!cert_type_num)
294                 return;
295         BIO_puts(bio, "Client Certificate Types: ");
296         for (i = 0; i < cert_type_num; i++)
297                 {
298                 unsigned char cert_type = p[i];
299                 char *cname;
300                 switch(cert_type)
301                         {
302                 case TLS_CT_RSA_SIGN:
303                         cname = "RSA sign";
304                         break;
305
306                 case TLS_CT_DSS_SIGN:
307                         cname = "DSA sign";
308                         break;
309
310                 case TLS_CT_RSA_FIXED_DH:
311                         cname = "RSA fixed DH";
312                         break;
313
314                 case TLS_CT_DSS_FIXED_DH:
315                         cname = "DSS fixed DH";
316                         break;
317
318                 case TLS_CT_ECDSA_SIGN:
319                         cname = "ECDSA sign";
320                         break;
321
322                 case TLS_CT_RSA_FIXED_ECDH:
323                         cname = "RSA fixed ECDH";
324                         break;
325
326                 case TLS_CT_ECDSA_FIXED_ECDH:
327                         cname = "ECDSA fixed ECDH";
328                         break;
329
330                 case TLS_CT_GOST94_SIGN:
331                         cname = "GOST94 Sign";
332                         break;
333
334                 case TLS_CT_GOST01_SIGN:
335                         cname = "GOST01 Sign";
336                         break;
337
338                 default:
339                          cname = NULL;
340                         }
341
342                 if (i)
343                         BIO_puts(bio, ", ");
344
345                 if (cname)
346                         BIO_puts(bio, cname);
347                 else
348                         BIO_printf(bio, "UNKNOWN (%d),", cert_type);
349                 }
350         BIO_puts(bio, "\n");
351         }
352
353 static int do_print_sigalgs(BIO *out, SSL *s, int shared)
354         {
355         int i, nsig, client;
356         client = SSL_is_server(s) ? 0 : 1;
357         if (shared)
358                 nsig = SSL_get_shared_sigalgs(s, -1, NULL, NULL, NULL,
359                                                         NULL, NULL);
360         else
361                 nsig = SSL_get_sigalgs(s, -1, NULL, NULL, NULL, NULL, NULL);
362         if (nsig == 0)
363                 return 1;
364
365         if (shared)
366                 BIO_puts(out, "Shared ");
367
368         if (client)
369                 BIO_puts(out, "Requested ");
370         BIO_puts(out, "Signature Algorithms: ");
371         for (i = 0; i < nsig; i++)
372                 {
373                 int hash_nid, sign_nid;
374                 unsigned char rhash, rsign;
375                 const char *sstr = NULL;
376                 if (shared)
377                         SSL_get_shared_sigalgs(s, i, &sign_nid, &hash_nid, NULL,
378                                                         &rsign, &rhash);
379                 else
380                         SSL_get_sigalgs(s, i, &sign_nid, &hash_nid, NULL,
381                                                         &rsign, &rhash);
382                 if (i)
383                         BIO_puts(out, ":");
384                 if (sign_nid == EVP_PKEY_RSA)
385                         sstr = "RSA";
386                 else if(sign_nid == EVP_PKEY_DSA)
387                         sstr = "DSA";
388                 else if(sign_nid == EVP_PKEY_EC)
389                         sstr = "ECDSA";
390                 if (sstr)
391                         BIO_printf(out,"%s+", sstr);
392                 else
393                         BIO_printf(out,"0x%02X+", (int)rsign);
394                 if (hash_nid != NID_undef)
395                         BIO_printf(out, "%s", OBJ_nid2sn(hash_nid));
396                 else
397                         BIO_printf(out,"0x%02X", (int)rhash);
398                 }
399         BIO_puts(out, "\n");
400         return 1;
401         }
402
403 int ssl_print_sigalgs(BIO *out, SSL *s)
404         {
405         if (!SSL_is_server(s))
406                 ssl_print_client_cert_types(out, s);
407         do_print_sigalgs(out, s, 0);
408         do_print_sigalgs(out, s, 1);
409         return 1;
410         }
411
412 int ssl_print_curves(BIO *out, SSL *s)
413         {
414         int i, ncurves, *curves, nid;
415         const char *cname;
416         ncurves = SSL_get1_curves(s, NULL);
417         if (ncurves <= 0)
418                 return 1;
419         curves = OPENSSL_malloc(ncurves * sizeof(int));
420         SSL_get1_curves(s, curves);
421
422         BIO_puts(out, "Supported Elliptic Curves: ");
423         for (i = 0; i < ncurves; i++)
424                 {
425                 if (i)
426                         BIO_puts(out, ":");
427                 nid = curves[i];
428                 /* If unrecognised print out hex version */
429                 if (nid & TLSEXT_nid_unknown)
430                         BIO_printf(out, "0x%04X", nid & 0xFFFF);
431                 else
432                         {
433                         /* Use NIST name for curve if it exists */
434                         cname = EC_curve_nid2nist(nid);
435                         if (!cname)
436                                 cname = OBJ_nid2sn(nid);
437                         BIO_printf(out, "%s", cname);
438                         }
439                 }
440         BIO_puts(out, "\nShared Elliptic curves: ");
441         OPENSSL_free(curves);
442         ncurves = SSL_get_shared_curve(s, -1);
443         for (i = 0; i < ncurves; i++)
444                 {
445                 if (i)
446                         BIO_puts(out, ":");
447                 nid = SSL_get_shared_curve(s, i);
448                 cname = EC_curve_nid2nist(nid);
449                 if (!cname)
450                         cname = OBJ_nid2sn(nid);
451                 BIO_printf(out, "%s", cname);
452                 }
453         if (ncurves == 0)
454                 BIO_puts(out, "NONE");
455         BIO_puts(out, "\n");
456         return 1;
457         }
458
459
460 long MS_CALLBACK bio_dump_callback(BIO *bio, int cmd, const char *argp,
461                                    int argi, long argl, long ret)
462         {
463         BIO *out;
464
465         out=(BIO *)BIO_get_callback_arg(bio);
466         if (out == NULL) return(ret);
467
468         if (cmd == (BIO_CB_READ|BIO_CB_RETURN))
469                 {
470                 BIO_printf(out,"read from %p [%p] (%lu bytes => %ld (0x%lX))\n",
471                         (void *)bio,argp,(unsigned long)argi,ret,ret);
472                 BIO_dump(out,argp,(int)ret);
473                 return(ret);
474                 }
475         else if (cmd == (BIO_CB_WRITE|BIO_CB_RETURN))
476                 {
477                 BIO_printf(out,"write to %p [%p] (%lu bytes => %ld (0x%lX))\n",
478                         (void *)bio,argp,(unsigned long)argi,ret,ret);
479                 BIO_dump(out,argp,(int)ret);
480                 }
481         return(ret);
482         }
483
484 void MS_CALLBACK apps_ssl_info_callback(const SSL *s, int where, int ret)
485         {
486         const char *str;
487         int w;
488
489         w=where& ~SSL_ST_MASK;
490
491         if (w & SSL_ST_CONNECT) str="SSL_connect";
492         else if (w & SSL_ST_ACCEPT) str="SSL_accept";
493         else str="undefined";
494
495         if (where & SSL_CB_LOOP)
496                 {
497                 BIO_printf(bio_err,"%s:%s\n",str,SSL_state_string_long(s));
498                 }
499         else if (where & SSL_CB_ALERT)
500                 {
501                 str=(where & SSL_CB_READ)?"read":"write";
502                 BIO_printf(bio_err,"SSL3 alert %s:%s:%s\n",
503                         str,
504                         SSL_alert_type_string_long(ret),
505                         SSL_alert_desc_string_long(ret));
506                 }
507         else if (where & SSL_CB_EXIT)
508                 {
509                 if (ret == 0)
510                         BIO_printf(bio_err,"%s:failed in %s\n",
511                                 str,SSL_state_string_long(s));
512                 else if (ret < 0)
513                         {
514                         BIO_printf(bio_err,"%s:error in %s\n",
515                                 str,SSL_state_string_long(s));
516                         }
517                 }
518         }
519
520
521 void MS_CALLBACK msg_cb(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)
522         {
523         BIO *bio = arg;
524         const char *str_write_p, *str_version, *str_content_type = "", *str_details1 = "", *str_details2= "";
525         
526         str_write_p = write_p ? ">>>" : "<<<";
527
528         switch (version)
529                 {
530         case SSL2_VERSION:
531                 str_version = "SSL 2.0";
532                 break;
533         case SSL3_VERSION:
534                 str_version = "SSL 3.0 ";
535                 break;
536         case TLS1_VERSION:
537                 str_version = "TLS 1.0 ";
538                 break;
539         case TLS1_1_VERSION:
540                 str_version = "TLS 1.1 ";
541                 break;
542         case TLS1_2_VERSION:
543                 str_version = "TLS 1.2 ";
544                 break;
545         case DTLS1_VERSION:
546                 str_version = "DTLS 1.0 ";
547                 break;
548         case DTLS1_BAD_VER:
549                 str_version = "DTLS 1.0 (bad) ";
550                 break;
551         default:
552                 str_version = "???";
553                 }
554
555         if (version == SSL2_VERSION)
556                 {
557                 str_details1 = "???";
558
559                 if (len > 0)
560                         {
561                         switch (((const unsigned char*)buf)[0])
562                                 {
563                                 case 0:
564                                         str_details1 = ", ERROR:";
565                                         str_details2 = " ???";
566                                         if (len >= 3)
567                                                 {
568                                                 unsigned err = (((const unsigned char*)buf)[1]<<8) + ((const unsigned char*)buf)[2];
569                                                 
570                                                 switch (err)
571                                                         {
572                                                 case 0x0001:
573                                                         str_details2 = " NO-CIPHER-ERROR";
574                                                         break;
575                                                 case 0x0002:
576                                                         str_details2 = " NO-CERTIFICATE-ERROR";
577                                                         break;
578                                                 case 0x0004:
579                                                         str_details2 = " BAD-CERTIFICATE-ERROR";
580                                                         break;
581                                                 case 0x0006:
582                                                         str_details2 = " UNSUPPORTED-CERTIFICATE-TYPE-ERROR";
583                                                         break;
584                                                         }
585                                                 }
586
587                                         break;
588                                 case 1:
589                                         str_details1 = ", CLIENT-HELLO";
590                                         break;
591                                 case 2:
592                                         str_details1 = ", CLIENT-MASTER-KEY";
593                                         break;
594                                 case 3:
595                                         str_details1 = ", CLIENT-FINISHED";
596                                         break;
597                                 case 4:
598                                         str_details1 = ", SERVER-HELLO";
599                                         break;
600                                 case 5:
601                                         str_details1 = ", SERVER-VERIFY";
602                                         break;
603                                 case 6:
604                                         str_details1 = ", SERVER-FINISHED";
605                                         break;
606                                 case 7:
607                                         str_details1 = ", REQUEST-CERTIFICATE";
608                                         break;
609                                 case 8:
610                                         str_details1 = ", CLIENT-CERTIFICATE";
611                                         break;
612                                 }
613                         }
614                 }
615
616         if (version == SSL3_VERSION ||
617             version == TLS1_VERSION ||
618             version == TLS1_1_VERSION ||
619             version == TLS1_2_VERSION ||
620             version == DTLS1_VERSION ||
621             version == DTLS1_BAD_VER)
622                 {
623                 switch (content_type)
624                         {
625                 case 20:
626                         str_content_type = "ChangeCipherSpec";
627                         break;
628                 case 21:
629                         str_content_type = "Alert";
630                         break;
631                 case 22:
632                         str_content_type = "Handshake";
633                         break;
634                         }
635
636                 if (content_type == 21) /* Alert */
637                         {
638                         str_details1 = ", ???";
639                         
640                         if (len == 2)
641                                 {
642                                 switch (((const unsigned char*)buf)[0])
643                                         {
644                                 case 1:
645                                         str_details1 = ", warning";
646                                         break;
647                                 case 2:
648                                         str_details1 = ", fatal";
649                                         break;
650                                         }
651
652                                 str_details2 = " ???";
653                                 switch (((const unsigned char*)buf)[1])
654                                         {
655                                 case 0:
656                                         str_details2 = " close_notify";
657                                         break;
658                                 case 10:
659                                         str_details2 = " unexpected_message";
660                                         break;
661                                 case 20:
662                                         str_details2 = " bad_record_mac";
663                                         break;
664                                 case 21:
665                                         str_details2 = " decryption_failed";
666                                         break;
667                                 case 22:
668                                         str_details2 = " record_overflow";
669                                         break;
670                                 case 30:
671                                         str_details2 = " decompression_failure";
672                                         break;
673                                 case 40:
674                                         str_details2 = " handshake_failure";
675                                         break;
676                                 case 42:
677                                         str_details2 = " bad_certificate";
678                                         break;
679                                 case 43:
680                                         str_details2 = " unsupported_certificate";
681                                         break;
682                                 case 44:
683                                         str_details2 = " certificate_revoked";
684                                         break;
685                                 case 45:
686                                         str_details2 = " certificate_expired";
687                                         break;
688                                 case 46:
689                                         str_details2 = " certificate_unknown";
690                                         break;
691                                 case 47:
692                                         str_details2 = " illegal_parameter";
693                                         break;
694                                 case 48:
695                                         str_details2 = " unknown_ca";
696                                         break;
697                                 case 49:
698                                         str_details2 = " access_denied";
699                                         break;
700                                 case 50:
701                                         str_details2 = " decode_error";
702                                         break;
703                                 case 51:
704                                         str_details2 = " decrypt_error";
705                                         break;
706                                 case 60:
707                                         str_details2 = " export_restriction";
708                                         break;
709                                 case 70:
710                                         str_details2 = " protocol_version";
711                                         break;
712                                 case 71:
713                                         str_details2 = " insufficient_security";
714                                         break;
715                                 case 80:
716                                         str_details2 = " internal_error";
717                                         break;
718                                 case 90:
719                                         str_details2 = " user_canceled";
720                                         break;
721                                 case 100:
722                                         str_details2 = " no_renegotiation";
723                                         break;
724                                 case 110:
725                                         str_details2 = " unsupported_extension";
726                                         break;
727                                 case 111:
728                                         str_details2 = " certificate_unobtainable";
729                                         break;
730                                 case 112:
731                                         str_details2 = " unrecognized_name";
732                                         break;
733                                 case 113:
734                                         str_details2 = " bad_certificate_status_response";
735                                         break;
736                                 case 114:
737                                         str_details2 = " bad_certificate_hash_value";
738                                         break;
739                                 case 115:
740                                         str_details2 = " unknown_psk_identity";
741                                         break;
742                                         }
743                                 }
744                         }
745                 
746                 if (content_type == 22) /* Handshake */
747                         {
748                         str_details1 = "???";
749
750                         if (len > 0)
751                                 {
752                                 switch (((const unsigned char*)buf)[0])
753                                         {
754                                 case 0:
755                                         str_details1 = ", HelloRequest";
756                                         break;
757                                 case 1:
758                                         str_details1 = ", ClientHello";
759                                         break;
760                                 case 2:
761                                         str_details1 = ", ServerHello";
762                                         break;
763                                 case 3:
764                                         str_details1 = ", HelloVerifyRequest";
765                                         break;
766                                 case 11:
767                                         str_details1 = ", Certificate";
768                                         break;
769                                 case 12:
770                                         str_details1 = ", ServerKeyExchange";
771                                         break;
772                                 case 13:
773                                         str_details1 = ", CertificateRequest";
774                                         break;
775                                 case 14:
776                                         str_details1 = ", ServerHelloDone";
777                                         break;
778                                 case 15:
779                                         str_details1 = ", CertificateVerify";
780                                         break;
781                                 case 16:
782                                         str_details1 = ", ClientKeyExchange";
783                                         break;
784                                 case 20:
785                                         str_details1 = ", Finished";
786                                         break;
787                                         }
788                                 }
789                         }
790
791 #ifndef OPENSSL_NO_HEARTBEATS
792                 if (content_type == 24) /* Heartbeat */
793                         {
794                         str_details1 = ", Heartbeat";
795                         
796                         if (len > 0)
797                                 {
798                                 switch (((const unsigned char*)buf)[0])
799                                         {
800                                 case 1:
801                                         str_details1 = ", HeartbeatRequest";
802                                         break;
803                                 case 2:
804                                         str_details1 = ", HeartbeatResponse";
805                                         break;
806                                         }
807                                 }
808                         }
809 #endif
810                 }
811
812         BIO_printf(bio, "%s %s%s [length %04lx]%s%s\n", str_write_p, str_version, str_content_type, (unsigned long)len, str_details1, str_details2);
813
814         if (len > 0)
815                 {
816                 size_t num, i;
817                 
818                 BIO_printf(bio, "   ");
819                 num = len;
820 #if 0
821                 if (num > 16)
822                         num = 16;
823 #endif
824                 for (i = 0; i < num; i++)
825                         {
826                         if (i % 16 == 0 && i > 0)
827                                 BIO_printf(bio, "\n   ");
828                         BIO_printf(bio, " %02x", ((const unsigned char*)buf)[i]);
829                         }
830                 if (i < len)
831                         BIO_printf(bio, " ...");
832                 BIO_printf(bio, "\n");
833                 }
834         (void)BIO_flush(bio);
835         }
836
837 void MS_CALLBACK tlsext_cb(SSL *s, int client_server, int type,
838                                         unsigned char *data, int len,
839                                         void *arg)
840         {
841         BIO *bio = arg;
842         char *extname;
843
844         switch(type)
845                 {
846                 case TLSEXT_TYPE_server_name:
847                 extname = "server name";
848                 break;
849
850                 case TLSEXT_TYPE_max_fragment_length:
851                 extname = "max fragment length";
852                 break;
853
854                 case TLSEXT_TYPE_client_certificate_url:
855                 extname = "client certificate URL";
856                 break;
857
858                 case TLSEXT_TYPE_trusted_ca_keys:
859                 extname = "trusted CA keys";
860                 break;
861
862                 case TLSEXT_TYPE_truncated_hmac:
863                 extname = "truncated HMAC";
864                 break;
865
866                 case TLSEXT_TYPE_status_request:
867                 extname = "status request";
868                 break;
869
870                 case TLSEXT_TYPE_user_mapping:
871                 extname = "user mapping";
872                 break;
873
874                 case TLSEXT_TYPE_client_authz:
875                 extname = "client authz";
876                 break;
877
878                 case TLSEXT_TYPE_server_authz:
879                 extname = "server authz";
880                 break;
881
882                 case TLSEXT_TYPE_cert_type:
883                 extname = "cert type";
884                 break;
885
886                 case TLSEXT_TYPE_elliptic_curves:
887                 extname = "elliptic curves";
888                 break;
889
890                 case TLSEXT_TYPE_ec_point_formats:
891                 extname = "EC point formats";
892                 break;
893
894                 case TLSEXT_TYPE_srp:
895                 extname = "SRP";
896                 break;
897
898                 case TLSEXT_TYPE_signature_algorithms:
899                 extname = "signature algorithms";
900                 break;
901
902                 case TLSEXT_TYPE_use_srtp:
903                 extname = "use SRTP";
904                 break;
905
906                 case TLSEXT_TYPE_heartbeat:
907                 extname = "heartbeat";
908                 break;
909
910                 case TLSEXT_TYPE_session_ticket:
911                 extname = "session ticket";
912                 break;
913
914                 case TLSEXT_TYPE_renegotiate: 
915                 extname = "renegotiation info";
916                 break;
917
918 #ifdef TLSEXT_TYPE_opaque_prf_input
919                 case TLSEXT_TYPE_opaque_prf_input:
920                 extname = "opaque PRF input";
921                 break;
922 #endif
923 #ifdef TLSEXT_TYPE_next_proto_neg
924                 case TLSEXT_TYPE_next_proto_neg:
925                 extname = "next protocol";
926                 break;
927 #endif
928
929                 default:
930                 extname = "unknown";
931                 break;
932
933                 }
934         
935         BIO_printf(bio, "TLS %s extension \"%s\" (id=%d), len=%d\n",
936                         client_server ? "server": "client",
937                         extname, type, len);
938         BIO_dump(bio, (char *)data, len);
939         (void)BIO_flush(bio);
940         }
941
942 int MS_CALLBACK generate_cookie_callback(SSL *ssl, unsigned char *cookie, unsigned int *cookie_len)
943         {
944         unsigned char *buffer, result[EVP_MAX_MD_SIZE];
945         unsigned int length, resultlength;
946         union {
947                 struct sockaddr sa;
948                 struct sockaddr_in s4;
949 #if OPENSSL_USE_IPV6
950                 struct sockaddr_in6 s6;
951 #endif
952         } peer;
953
954         /* Initialize a random secret */
955         if (!cookie_initialized)
956                 {
957                 if (!RAND_bytes(cookie_secret, COOKIE_SECRET_LENGTH))
958                         {
959                         BIO_printf(bio_err,"error setting random cookie secret\n");
960                         return 0;
961                         }
962                 cookie_initialized = 1;
963                 }
964
965         /* Read peer information */
966         (void)BIO_dgram_get_peer(SSL_get_rbio(ssl), &peer);
967
968         /* Create buffer with peer's address and port */
969         length = 0;
970         switch (peer.sa.sa_family)
971                 {
972         case AF_INET:
973                 length += sizeof(struct in_addr);
974                 length += sizeof(peer.s4.sin_port);
975                 break;
976 #if OPENSSL_USE_IPV6
977         case AF_INET6:
978                 length += sizeof(struct in6_addr);
979                 length += sizeof(peer.s6.sin6_port);
980                 break;
981 #endif
982         default:
983                 OPENSSL_assert(0);
984                 break;
985                 }
986         buffer = OPENSSL_malloc(length);
987
988         if (buffer == NULL)
989                 {
990                 BIO_printf(bio_err,"out of memory\n");
991                 return 0;
992                 }
993
994         switch (peer.sa.sa_family)
995                 {
996         case AF_INET:
997                 memcpy(buffer,
998                        &peer.s4.sin_port,
999                        sizeof(peer.s4.sin_port));
1000                 memcpy(buffer + sizeof(peer.s4.sin_port),
1001                        &peer.s4.sin_addr,
1002                        sizeof(struct in_addr));
1003                 break;
1004 #if OPENSSL_USE_IPV6
1005         case AF_INET6:
1006                 memcpy(buffer,
1007                        &peer.s6.sin6_port,
1008                        sizeof(peer.s6.sin6_port));
1009                 memcpy(buffer + sizeof(peer.s6.sin6_port),
1010                        &peer.s6.sin6_addr,
1011                        sizeof(struct in6_addr));
1012                 break;
1013 #endif
1014         default:
1015                 OPENSSL_assert(0);
1016                 break;
1017                 }
1018
1019         /* Calculate HMAC of buffer using the secret */
1020         HMAC(EVP_sha1(), cookie_secret, COOKIE_SECRET_LENGTH,
1021              buffer, length, result, &resultlength);
1022         OPENSSL_free(buffer);
1023
1024         memcpy(cookie, result, resultlength);
1025         *cookie_len = resultlength;
1026
1027         return 1;
1028         }
1029
1030 int MS_CALLBACK verify_cookie_callback(SSL *ssl, unsigned char *cookie, unsigned int cookie_len)
1031         {
1032         unsigned char *buffer, result[EVP_MAX_MD_SIZE];
1033         unsigned int length, resultlength;
1034         union {
1035                 struct sockaddr sa;
1036                 struct sockaddr_in s4;
1037 #if OPENSSL_USE_IPV6
1038                 struct sockaddr_in6 s6;
1039 #endif
1040         } peer;
1041
1042         /* If secret isn't initialized yet, the cookie can't be valid */
1043         if (!cookie_initialized)
1044                 return 0;
1045
1046         /* Read peer information */
1047         (void)BIO_dgram_get_peer(SSL_get_rbio(ssl), &peer);
1048
1049         /* Create buffer with peer's address and port */
1050         length = 0;
1051         switch (peer.sa.sa_family)
1052                 {
1053         case AF_INET:
1054                 length += sizeof(struct in_addr);
1055                 length += sizeof(peer.s4.sin_port);
1056                 break;
1057 #if OPENSSL_USE_IPV6
1058         case AF_INET6:
1059                 length += sizeof(struct in6_addr);
1060                 length += sizeof(peer.s6.sin6_port);
1061                 break;
1062 #endif
1063         default:
1064                 OPENSSL_assert(0);
1065                 break;
1066                 }
1067         buffer = OPENSSL_malloc(length);
1068         
1069         if (buffer == NULL)
1070                 {
1071                 BIO_printf(bio_err,"out of memory\n");
1072                 return 0;
1073                 }
1074
1075         switch (peer.sa.sa_family)
1076                 {
1077         case AF_INET:
1078                 memcpy(buffer,
1079                        &peer.s4.sin_port,
1080                        sizeof(peer.s4.sin_port));
1081                 memcpy(buffer + sizeof(peer.s4.sin_port),
1082                        &peer.s4.sin_addr,
1083                        sizeof(struct in_addr));
1084                 break;
1085 #if OPENSSL_USE_IPV6
1086         case AF_INET6:
1087                 memcpy(buffer,
1088                        &peer.s6.sin6_port,
1089                        sizeof(peer.s6.sin6_port));
1090                 memcpy(buffer + sizeof(peer.s6.sin6_port),
1091                        &peer.s6.sin6_addr,
1092                        sizeof(struct in6_addr));
1093                 break;
1094 #endif
1095         default:
1096                 OPENSSL_assert(0);
1097                 break;
1098                 }
1099
1100         /* Calculate HMAC of buffer using the secret */
1101         HMAC(EVP_sha1(), cookie_secret, COOKIE_SECRET_LENGTH,
1102              buffer, length, result, &resultlength);
1103         OPENSSL_free(buffer);
1104
1105         if (cookie_len == resultlength && memcmp(result, cookie, resultlength) == 0)
1106                 return 1;
1107
1108         return 0;
1109         }
1110
1111 /* Example of extended certificate handling. Where the standard support
1112  * of one certificate per algorithm is not sufficient an application
1113  * can decide which certificate(s) to use at runtime based on whatever
1114  * criteria it deems appropriate.
1115  */
1116
1117 /* Linked list of certificates, keys and chains */
1118 struct  ssl_excert_st
1119         {
1120         int certform;
1121         const char *certfile;
1122         int keyform;
1123         const char *keyfile;
1124         const char *chainfile;
1125         X509 *cert;
1126         EVP_PKEY *key;
1127         STACK_OF(X509) *chain;
1128         struct ssl_excert_st *next, *prev;
1129         };
1130
1131 /* Very basic selection callback: just use any certificate chain
1132  * reported as valid. More sophisticated could prioritise according
1133  * to local policy.
1134  */
1135 static int set_cert_cb(SSL *ssl, void *arg)
1136         {
1137         SSL_EXCERT *exc = arg;
1138         SSL_certs_clear(ssl);
1139
1140         if (!exc)
1141                 return 1;
1142
1143         /* Go to end of list and traverse backwards since we prepend
1144          * newer entries this retains the original order.
1145          */
1146         while (exc->next)
1147                 exc = exc->next;
1148         
1149         while(exc)
1150                 {
1151                 if (SSL_check_chain(ssl, exc->cert, exc->key, exc->chain))
1152                         {
1153                         SSL_use_certificate(ssl, exc->cert);
1154                         SSL_use_PrivateKey(ssl, exc->key);
1155                         if (exc->chain)
1156                                 SSL_set1_chain(ssl, exc->chain);
1157                         }
1158                 exc = exc->prev;
1159                 }
1160         return 1;
1161         }
1162
1163 void ssl_ctx_set_excert(SSL_CTX *ctx, SSL_EXCERT *exc)
1164         {
1165         SSL_CTX_set_cert_cb(ctx, set_cert_cb, exc);
1166         }
1167
1168 static int ssl_excert_prepend(SSL_EXCERT **pexc)
1169         {
1170         SSL_EXCERT *exc;
1171         exc = OPENSSL_malloc(sizeof(SSL_EXCERT));
1172         if (!exc)
1173                 return 0;
1174         exc->certfile = NULL;
1175         exc->keyfile = NULL;
1176         exc->chainfile = NULL;
1177         exc->cert = NULL;
1178         exc->key = NULL;
1179         exc->chain = NULL;
1180         exc->prev = NULL;
1181
1182         exc->next = *pexc;
1183         *pexc = exc;
1184                         
1185         if (exc->next)
1186                 {
1187                 exc->certform = exc->next->certform;
1188                 exc->keyform = exc->next->keyform;
1189                 exc->next->prev = exc;
1190                 }
1191         else
1192                 {
1193                 exc->certform = FORMAT_PEM;
1194                 exc->keyform = FORMAT_PEM;
1195                 }
1196         return 1;
1197
1198         }
1199
1200 void ssl_excert_free(SSL_EXCERT *exc)
1201         {
1202         SSL_EXCERT *curr;
1203         while (exc)
1204                 {
1205                 if (exc->cert)
1206                         X509_free(exc->cert);
1207                 if (exc->key)
1208                         EVP_PKEY_free(exc->key);
1209                 if (exc->chain)
1210                         sk_X509_pop_free(exc->chain, X509_free);
1211                 curr = exc;
1212                 exc = exc->next;
1213                 OPENSSL_free(curr);
1214                 }
1215         }
1216
1217 int load_excert(SSL_EXCERT **pexc, BIO *err)
1218         {
1219         SSL_EXCERT *exc = *pexc;
1220         if (!exc)
1221                 return 1;
1222         /* If nothing in list, free and set to NULL */
1223         if (!exc->certfile && !exc->next)
1224                 {
1225                 ssl_excert_free(exc);
1226                 *pexc = NULL;
1227                 return 1;
1228                 }
1229         for(; exc; exc=exc->next)
1230                 {
1231                 if (!exc->certfile)
1232                         {
1233                         BIO_printf(err, "Missing filename\n");
1234                         return 0;
1235                         }
1236                 exc->cert = load_cert(err, exc->certfile, exc->certform,
1237                                         NULL, NULL, "Server Certificate");
1238                 if (!exc->cert)
1239                         return 0;
1240                 if (exc->keyfile)
1241                         exc->keyfile = exc->certfile;
1242                 exc->key = load_key(err, exc->certfile, exc->certform, 0,
1243                                         NULL, NULL, "Server Certificate");
1244                 if (!exc->key)
1245                         return 0;
1246                 if (exc->chainfile)
1247                         {
1248                         exc->chain = load_certs(err,
1249                                                 exc->chainfile, FORMAT_PEM,
1250                                                 NULL, NULL,
1251                                                 "Server Chain");
1252                         if (!exc->chainfile)
1253                                 return 0;
1254                         }
1255                 }
1256         return 1;
1257         }
1258                 
1259
1260 int args_excert(char ***pargs, int *pargc,
1261                         int *badarg, BIO *err, SSL_EXCERT **pexc)
1262         {
1263         char *arg = **pargs, *argn = (*pargs)[1];
1264         SSL_EXCERT *exc = *pexc;
1265         if (!exc)
1266                 {
1267                 if (ssl_excert_prepend(&exc))
1268                         *pexc = exc;
1269                 else
1270                         {
1271                         BIO_printf(err, "Error initialising xcert\n");
1272                         *badarg = 1;
1273                         goto err;
1274                         }
1275                 }
1276         if (strcmp(arg, "-xcert") == 0)
1277                 {
1278                 if (!argn)
1279                         {
1280                         *badarg = 1;
1281                         return 1;
1282                         }
1283                 if (exc->certfile && !ssl_excert_prepend(&exc))
1284                         {
1285                         BIO_printf(err, "Error adding xcert\n");
1286                         *badarg = 1;
1287                         goto err;
1288                         }
1289                 exc->certfile = argn;
1290                 }
1291         else if (strcmp(arg,"-xkey") == 0)
1292                 {
1293                 if (!argn)
1294                         {
1295                         *badarg = 1;
1296                         return 1;
1297                         }
1298                 if (exc->keyfile)
1299                         {
1300                         BIO_printf(err, "Key already specified\n");
1301                         *badarg = 1;
1302                         return 1;
1303                         }
1304                 exc->keyfile = argn;
1305                 }
1306         else if (strcmp(arg,"-xchain") == 0)
1307                 {
1308                 if (!argn)
1309                         {
1310                         *badarg = 1;
1311                         return 1;
1312                         }
1313                 if (exc->chainfile)
1314                         {
1315                         BIO_printf(err, "Chain already specified\n");
1316                         *badarg = 1;
1317                         return 1;
1318                         }
1319                 exc->chainfile = argn;
1320                 }
1321         else if (strcmp(arg,"-xcertform") == 0)
1322                 {
1323                 if (!argn)
1324                         {
1325                         *badarg = 1;
1326                         goto err;
1327                         }
1328                 exc->certform = str2fmt(argn);
1329                 }
1330         else if (strcmp(arg,"-xkeyform") == 0)
1331                 {
1332                 if (!argn)
1333                         {
1334                         *badarg = 1;
1335                         goto err;
1336                         }
1337                 exc->keyform = str2fmt(argn);
1338                 }
1339         else
1340                 return 0;
1341
1342         (*pargs) += 2;
1343
1344         if (pargc)
1345                 *pargc -= 2;
1346
1347         *pexc = exc;
1348
1349         return 1;
1350
1351         err:
1352         ERR_print_errors(err);
1353         ssl_excert_free(exc);
1354         *pexc = NULL;
1355         return 1;
1356         }
1357