Fix the update target and remove duplicate file updates
[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         X509_NAME_print_ex(bio_err, X509_get_subject_name(err_cert),
145                            0, XN_FLAG_ONELINE);
146         BIO_puts(bio_err, "\n");
147     } else
148         BIO_puts(bio_err, "<no cert>\n");
149     if (!ok) {
150         BIO_printf(bio_err, "verify error:num=%d:%s\n", err,
151                    X509_verify_cert_error_string(err));
152         if (verify_depth >= depth) {
153             if (!verify_return_error)
154                 ok = 1;
155             verify_error = X509_V_OK;
156         } else {
157             ok = 0;
158             verify_error = X509_V_ERR_CERT_CHAIN_TOO_LONG;
159         }
160     }
161     switch (err) {
162     case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT:
163         BIO_puts(bio_err, "issuer= ");
164         X509_NAME_print_ex(bio_err, X509_get_issuer_name(err_cert),
165                            0, XN_FLAG_ONELINE);
166         BIO_puts(bio_err, "\n");
167         break;
168     case X509_V_ERR_CERT_NOT_YET_VALID:
169     case X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD:
170         BIO_printf(bio_err, "notBefore=");
171         ASN1_TIME_print(bio_err, X509_get_notBefore(err_cert));
172         BIO_printf(bio_err, "\n");
173         break;
174     case X509_V_ERR_CERT_HAS_EXPIRED:
175     case X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD:
176         BIO_printf(bio_err, "notAfter=");
177         ASN1_TIME_print(bio_err, X509_get_notAfter(err_cert));
178         BIO_printf(bio_err, "\n");
179         break;
180     case X509_V_ERR_NO_EXPLICIT_POLICY:
181         policies_print(bio_err, ctx);
182         break;
183     }
184     if (err == X509_V_OK && ok == 2)
185         policies_print(bio_err, ctx);
186
187     BIO_printf(bio_err, "verify return:%d\n", ok);
188     return (ok);
189 }
190
191 int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file)
192 {
193     if (cert_file != NULL) {
194         /*-
195         SSL *ssl;
196         X509 *x509;
197         */
198
199         if (SSL_CTX_use_certificate_file(ctx, cert_file,
200                                          SSL_FILETYPE_PEM) <= 0) {
201             BIO_printf(bio_err, "unable to get certificate from '%s'\n",
202                        cert_file);
203             ERR_print_errors(bio_err);
204             return (0);
205         }
206         if (key_file == NULL)
207             key_file = cert_file;
208         if (SSL_CTX_use_PrivateKey_file(ctx, key_file, SSL_FILETYPE_PEM) <= 0) {
209             BIO_printf(bio_err, "unable to get private key from '%s'\n",
210                        key_file);
211             ERR_print_errors(bio_err);
212             return (0);
213         }
214
215         /*-
216         In theory this is no longer needed
217         ssl=SSL_new(ctx);
218         x509=SSL_get_certificate(ssl);
219
220         if (x509 != NULL) {
221                 EVP_PKEY *pktmp;
222                 pktmp = X509_get_pubkey(x509);
223                 EVP_PKEY_copy_parameters(pktmp,
224                                         SSL_get_privatekey(ssl));
225                 EVP_PKEY_free(pktmp);
226         }
227         SSL_free(ssl);
228         */
229
230         /*
231          * If we are using DSA, we can copy the parameters from the private
232          * key
233          */
234
235         /*
236          * Now we know that a key and cert have been set against the SSL
237          * context
238          */
239         if (!SSL_CTX_check_private_key(ctx)) {
240             BIO_printf(bio_err,
241                        "Private key does not match the certificate public key\n");
242             return (0);
243         }
244     }
245     return (1);
246 }
247
248 int set_cert_key_stuff(SSL_CTX *ctx, X509 *cert, EVP_PKEY *key)
249 {
250     if (cert == NULL)
251         return 1;
252     if (SSL_CTX_use_certificate(ctx, cert) <= 0) {
253         BIO_printf(bio_err, "error setting certificate\n");
254         ERR_print_errors(bio_err);
255         return 0;
256     }
257     if (SSL_CTX_use_PrivateKey(ctx, key) <= 0) {
258         BIO_printf(bio_err, "error setting private key\n");
259         ERR_print_errors(bio_err);
260         return 0;
261     }
262
263     /*
264      * Now we know that a key and cert have been set against the SSL context
265      */
266     if (!SSL_CTX_check_private_key(ctx)) {
267         BIO_printf(bio_err,
268                    "Private key does not match the certificate public key\n");
269         return 0;
270     }
271     return 1;
272 }
273
274 long MS_CALLBACK bio_dump_callback(BIO *bio, int cmd, const char *argp,
275                                    int argi, long argl, long ret)
276 {
277     BIO *out;
278
279     out = (BIO *)BIO_get_callback_arg(bio);
280     if (out == NULL)
281         return (ret);
282
283     if (cmd == (BIO_CB_READ | BIO_CB_RETURN)) {
284         BIO_printf(out, "read from %p [%p] (%lu bytes => %ld (0x%lX))\n",
285                    (void *)bio, argp, (unsigned long)argi, ret, ret);
286         BIO_dump(out, argp, (int)ret);
287         return (ret);
288     } else if (cmd == (BIO_CB_WRITE | BIO_CB_RETURN)) {
289         BIO_printf(out, "write to %p [%p] (%lu bytes => %ld (0x%lX))\n",
290                    (void *)bio, argp, (unsigned long)argi, ret, ret);
291         BIO_dump(out, argp, (int)ret);
292     }
293     return (ret);
294 }
295
296 void MS_CALLBACK apps_ssl_info_callback(const SSL *s, int where, int ret)
297 {
298     const char *str;
299     int w;
300
301     w = where & ~SSL_ST_MASK;
302
303     if (w & SSL_ST_CONNECT)
304         str = "SSL_connect";
305     else if (w & SSL_ST_ACCEPT)
306         str = "SSL_accept";
307     else
308         str = "undefined";
309
310     if (where & SSL_CB_LOOP) {
311         BIO_printf(bio_err, "%s:%s\n", str, SSL_state_string_long(s));
312     } else if (where & SSL_CB_ALERT) {
313         str = (where & SSL_CB_READ) ? "read" : "write";
314         BIO_printf(bio_err, "SSL3 alert %s:%s:%s\n",
315                    str,
316                    SSL_alert_type_string_long(ret),
317                    SSL_alert_desc_string_long(ret));
318     } else if (where & SSL_CB_EXIT) {
319         if (ret == 0)
320             BIO_printf(bio_err, "%s:failed in %s\n",
321                        str, SSL_state_string_long(s));
322         else if (ret < 0) {
323             BIO_printf(bio_err, "%s:error in %s\n",
324                        str, SSL_state_string_long(s));
325         }
326     }
327 }
328
329 void MS_CALLBACK msg_cb(int write_p, int version, int content_type,
330                         const void *buf, size_t len, SSL *ssl, void *arg)
331 {
332     BIO *bio = arg;
333     const char *str_write_p, *str_version, *str_content_type =
334         "", *str_details1 = "", *str_details2 = "";
335
336     str_write_p = write_p ? ">>>" : "<<<";
337
338     switch (version) {
339     case SSL2_VERSION:
340         str_version = "SSL 2.0";
341         break;
342     case SSL3_VERSION:
343         str_version = "SSL 3.0 ";
344         break;
345     case TLS1_VERSION:
346         str_version = "TLS 1.0 ";
347         break;
348     case DTLS1_VERSION:
349         str_version = "DTLS 1.0 ";
350         break;
351     case DTLS1_BAD_VER:
352         str_version = "DTLS 1.0 (bad) ";
353         break;
354     default:
355         str_version = "???";
356     }
357
358     if (version == SSL2_VERSION) {
359         str_details1 = "???";
360
361         if (len > 0) {
362             switch (((const unsigned char *)buf)[0]) {
363             case 0:
364                 str_details1 = ", ERROR:";
365                 str_details2 = " ???";
366                 if (len >= 3) {
367                     unsigned err =
368                         (((const unsigned char *)buf)[1] << 8) +
369                         ((const unsigned char *)buf)[2];
370
371                     switch (err) {
372                     case 0x0001:
373                         str_details2 = " NO-CIPHER-ERROR";
374                         break;
375                     case 0x0002:
376                         str_details2 = " NO-CERTIFICATE-ERROR";
377                         break;
378                     case 0x0004:
379                         str_details2 = " BAD-CERTIFICATE-ERROR";
380                         break;
381                     case 0x0006:
382                         str_details2 = " UNSUPPORTED-CERTIFICATE-TYPE-ERROR";
383                         break;
384                     }
385                 }
386
387                 break;
388             case 1:
389                 str_details1 = ", CLIENT-HELLO";
390                 break;
391             case 2:
392                 str_details1 = ", CLIENT-MASTER-KEY";
393                 break;
394             case 3:
395                 str_details1 = ", CLIENT-FINISHED";
396                 break;
397             case 4:
398                 str_details1 = ", SERVER-HELLO";
399                 break;
400             case 5:
401                 str_details1 = ", SERVER-VERIFY";
402                 break;
403             case 6:
404                 str_details1 = ", SERVER-FINISHED";
405                 break;
406             case 7:
407                 str_details1 = ", REQUEST-CERTIFICATE";
408                 break;
409             case 8:
410                 str_details1 = ", CLIENT-CERTIFICATE";
411                 break;
412             }
413         }
414     }
415
416     if (version == SSL3_VERSION ||
417         version == TLS1_VERSION ||
418         version == DTLS1_VERSION || version == DTLS1_BAD_VER) {
419         switch (content_type) {
420         case 20:
421             str_content_type = "ChangeCipherSpec";
422             break;
423         case 21:
424             str_content_type = "Alert";
425             break;
426         case 22:
427             str_content_type = "Handshake";
428             break;
429         }
430
431         if (content_type == 21) { /* Alert */
432             str_details1 = ", ???";
433
434             if (len == 2) {
435                 switch (((const unsigned char *)buf)[0]) {
436                 case 1:
437                     str_details1 = ", warning";
438                     break;
439                 case 2:
440                     str_details1 = ", fatal";
441                     break;
442                 }
443
444                 str_details2 = " ???";
445                 switch (((const unsigned char *)buf)[1]) {
446                 case 0:
447                     str_details2 = " close_notify";
448                     break;
449                 case 10:
450                     str_details2 = " unexpected_message";
451                     break;
452                 case 20:
453                     str_details2 = " bad_record_mac";
454                     break;
455                 case 21:
456                     str_details2 = " decryption_failed";
457                     break;
458                 case 22:
459                     str_details2 = " record_overflow";
460                     break;
461                 case 30:
462                     str_details2 = " decompression_failure";
463                     break;
464                 case 40:
465                     str_details2 = " handshake_failure";
466                     break;
467                 case 42:
468                     str_details2 = " bad_certificate";
469                     break;
470                 case 43:
471                     str_details2 = " unsupported_certificate";
472                     break;
473                 case 44:
474                     str_details2 = " certificate_revoked";
475                     break;
476                 case 45:
477                     str_details2 = " certificate_expired";
478                     break;
479                 case 46:
480                     str_details2 = " certificate_unknown";
481                     break;
482                 case 47:
483                     str_details2 = " illegal_parameter";
484                     break;
485                 case 48:
486                     str_details2 = " unknown_ca";
487                     break;
488                 case 49:
489                     str_details2 = " access_denied";
490                     break;
491                 case 50:
492                     str_details2 = " decode_error";
493                     break;
494                 case 51:
495                     str_details2 = " decrypt_error";
496                     break;
497                 case 60:
498                     str_details2 = " export_restriction";
499                     break;
500                 case 70:
501                     str_details2 = " protocol_version";
502                     break;
503                 case 71:
504                     str_details2 = " insufficient_security";
505                     break;
506                 case 80:
507                     str_details2 = " internal_error";
508                     break;
509                 case 90:
510                     str_details2 = " user_canceled";
511                     break;
512                 case 100:
513                     str_details2 = " no_renegotiation";
514                     break;
515                 case 110:
516                     str_details2 = " unsupported_extension";
517                     break;
518                 case 111:
519                     str_details2 = " certificate_unobtainable";
520                     break;
521                 case 112:
522                     str_details2 = " unrecognized_name";
523                     break;
524                 case 113:
525                     str_details2 = " bad_certificate_status_response";
526                     break;
527                 case 114:
528                     str_details2 = " bad_certificate_hash_value";
529                     break;
530                 }
531             }
532         }
533
534         if (content_type == 22) { /* Handshake */
535             str_details1 = "???";
536
537             if (len > 0) {
538                 switch (((const unsigned char *)buf)[0]) {
539                 case 0:
540                     str_details1 = ", HelloRequest";
541                     break;
542                 case 1:
543                     str_details1 = ", ClientHello";
544                     break;
545                 case 2:
546                     str_details1 = ", ServerHello";
547                     break;
548                 case 3:
549                     str_details1 = ", HelloVerifyRequest";
550                     break;
551                 case 11:
552                     str_details1 = ", Certificate";
553                     break;
554                 case 12:
555                     str_details1 = ", ServerKeyExchange";
556                     break;
557                 case 13:
558                     str_details1 = ", CertificateRequest";
559                     break;
560                 case 14:
561                     str_details1 = ", ServerHelloDone";
562                     break;
563                 case 15:
564                     str_details1 = ", CertificateVerify";
565                     break;
566                 case 16:
567                     str_details1 = ", ClientKeyExchange";
568                     break;
569                 case 20:
570                     str_details1 = ", Finished";
571                     break;
572                 }
573             }
574         }
575     }
576
577     BIO_printf(bio, "%s %s%s [length %04lx]%s%s\n", str_write_p, str_version,
578                str_content_type, (unsigned long)len, str_details1,
579                str_details2);
580
581     if (len > 0) {
582         size_t num, i;
583
584         BIO_printf(bio, "   ");
585         num = len;
586 #if 0
587         if (num > 16)
588             num = 16;
589 #endif
590         for (i = 0; i < num; i++) {
591             if (i % 16 == 0 && i > 0)
592                 BIO_printf(bio, "\n   ");
593             BIO_printf(bio, " %02x", ((const unsigned char *)buf)[i]);
594         }
595         if (i < len)
596             BIO_printf(bio, " ...");
597         BIO_printf(bio, "\n");
598     }
599     (void)BIO_flush(bio);
600 }
601
602 void MS_CALLBACK tlsext_cb(SSL *s, int client_server, int type,
603                            unsigned char *data, int len, void *arg)
604 {
605     BIO *bio = arg;
606     char *extname;
607
608     switch (type) {
609     case TLSEXT_TYPE_server_name:
610         extname = "server name";
611         break;
612
613     case TLSEXT_TYPE_max_fragment_length:
614         extname = "max fragment length";
615         break;
616
617     case TLSEXT_TYPE_client_certificate_url:
618         extname = "client certificate URL";
619         break;
620
621     case TLSEXT_TYPE_trusted_ca_keys:
622         extname = "trusted CA keys";
623         break;
624
625     case TLSEXT_TYPE_truncated_hmac:
626         extname = "truncated HMAC";
627         break;
628
629     case TLSEXT_TYPE_status_request:
630         extname = "status request";
631         break;
632
633     case TLSEXT_TYPE_elliptic_curves:
634         extname = "elliptic curves";
635         break;
636
637     case TLSEXT_TYPE_ec_point_formats:
638         extname = "EC point formats";
639         break;
640
641     case TLSEXT_TYPE_session_ticket:
642         extname = "server ticket";
643         break;
644
645     case TLSEXT_TYPE_renegotiate:
646         extname = "renegotiate";
647         break;
648
649 #ifdef TLSEXT_TYPE_opaque_prf_input
650     case TLSEXT_TYPE_opaque_prf_input:
651         extname = "opaque PRF input";
652         break;
653 #endif
654
655     default:
656         extname = "unknown";
657         break;
658
659     }
660
661     BIO_printf(bio, "TLS %s extension \"%s\" (id=%d), len=%d\n",
662                client_server ? "server" : "client", extname, type, len);
663     BIO_dump(bio, (char *)data, len);
664     (void)BIO_flush(bio);
665 }
666
667 int MS_CALLBACK generate_cookie_callback(SSL *ssl, unsigned char *cookie,
668                                          unsigned int *cookie_len)
669 {
670     unsigned char *buffer, result[EVP_MAX_MD_SIZE];
671     unsigned int length, resultlength;
672     union {
673         struct sockaddr sa;
674         struct sockaddr_in s4;
675 #if OPENSSL_USE_IPV6
676         struct sockaddr_in6 s6;
677 #endif
678     } peer;
679
680     /* Initialize a random secret */
681     if (!cookie_initialized) {
682         if (!RAND_bytes(cookie_secret, COOKIE_SECRET_LENGTH)) {
683             BIO_printf(bio_err, "error setting random cookie secret\n");
684             return 0;
685         }
686         cookie_initialized = 1;
687     }
688
689     /* Read peer information */
690     (void)BIO_dgram_get_peer(SSL_get_rbio(ssl), &peer);
691
692     /* Create buffer with peer's address and port */
693     length = 0;
694     switch (peer.sa.sa_family) {
695     case AF_INET:
696         length += sizeof(struct in_addr);
697         length += sizeof(peer.s4.sin_port);
698         break;
699 #if OPENSSL_USE_IPV6
700     case AF_INET6:
701         length += sizeof(struct in6_addr);
702         length += sizeof(peer.s6.sin6_port);
703         break;
704 #endif
705     default:
706         OPENSSL_assert(0);
707         break;
708     }
709     buffer = OPENSSL_malloc(length);
710
711     if (buffer == NULL) {
712         BIO_printf(bio_err, "out of memory\n");
713         return 0;
714     }
715
716     switch (peer.sa.sa_family) {
717     case AF_INET:
718         memcpy(buffer, &peer.s4.sin_port, sizeof(peer.s4.sin_port));
719         memcpy(buffer + sizeof(peer.s4.sin_port),
720                &peer.s4.sin_addr, sizeof(struct in_addr));
721         break;
722 #if OPENSSL_USE_IPV6
723     case AF_INET6:
724         memcpy(buffer, &peer.s6.sin6_port, sizeof(peer.s6.sin6_port));
725         memcpy(buffer + sizeof(peer.s6.sin6_port),
726                &peer.s6.sin6_addr, sizeof(struct in6_addr));
727         break;
728 #endif
729     default:
730         OPENSSL_assert(0);
731         break;
732     }
733
734     /* Calculate HMAC of buffer using the secret */
735     HMAC(EVP_sha1(), cookie_secret, COOKIE_SECRET_LENGTH,
736          buffer, length, result, &resultlength);
737     OPENSSL_free(buffer);
738
739     memcpy(cookie, result, resultlength);
740     *cookie_len = resultlength;
741
742     return 1;
743 }
744
745 int MS_CALLBACK verify_cookie_callback(SSL *ssl, unsigned char *cookie,
746                                        unsigned int cookie_len)
747 {
748     unsigned char *buffer, result[EVP_MAX_MD_SIZE];
749     unsigned int length, resultlength;
750     union {
751         struct sockaddr sa;
752         struct sockaddr_in s4;
753 #if OPENSSL_USE_IPV6
754         struct sockaddr_in6 s6;
755 #endif
756     } peer;
757
758     /* If secret isn't initialized yet, the cookie can't be valid */
759     if (!cookie_initialized)
760         return 0;
761
762     /* Read peer information */
763     (void)BIO_dgram_get_peer(SSL_get_rbio(ssl), &peer);
764
765     /* Create buffer with peer's address and port */
766     length = 0;
767     switch (peer.sa.sa_family) {
768     case AF_INET:
769         length += sizeof(struct in_addr);
770         length += sizeof(peer.s4.sin_port);
771         break;
772 #if OPENSSL_USE_IPV6
773     case AF_INET6:
774         length += sizeof(struct in6_addr);
775         length += sizeof(peer.s6.sin6_port);
776         break;
777 #endif
778     default:
779         OPENSSL_assert(0);
780         break;
781     }
782     buffer = OPENSSL_malloc(length);
783
784     if (buffer == NULL) {
785         BIO_printf(bio_err, "out of memory\n");
786         return 0;
787     }
788
789     switch (peer.sa.sa_family) {
790     case AF_INET:
791         memcpy(buffer, &peer.s4.sin_port, sizeof(peer.s4.sin_port));
792         memcpy(buffer + sizeof(peer.s4.sin_port),
793                &peer.s4.sin_addr, sizeof(struct in_addr));
794         break;
795 #if OPENSSL_USE_IPV6
796     case AF_INET6:
797         memcpy(buffer, &peer.s6.sin6_port, sizeof(peer.s6.sin6_port));
798         memcpy(buffer + sizeof(peer.s6.sin6_port),
799                &peer.s6.sin6_addr, sizeof(struct in6_addr));
800         break;
801 #endif
802     default:
803         OPENSSL_assert(0);
804         break;
805     }
806
807     /* Calculate HMAC of buffer using the secret */
808     HMAC(EVP_sha1(), cookie_secret, COOKIE_SECRET_LENGTH,
809          buffer, length, result, &resultlength);
810     OPENSSL_free(buffer);
811
812     if (cookie_len == resultlength
813         && memcmp(result, cookie, resultlength) == 0)
814         return 1;
815
816     return 0;
817 }