93a4caa48e0afeb88f66177170fd50997de720ec
[oweals/openssl.git] / ssl / t1_lib.c
1 /* ssl/t1_lib.c */
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 #include <stdio.h>
60 #include <openssl/objects.h>
61 #include <openssl/evp.h>
62 #include <openssl/hmac.h>
63 #include <openssl/ocsp.h>
64 #include "ssl_locl.h"
65
66 const char tls1_version_str[]="TLSv1" OPENSSL_VERSION_PTEXT;
67
68 #ifndef OPENSSL_NO_TLSEXT
69 static int tls_decrypt_ticket(SSL *s, const unsigned char *tick, int ticklen,
70                                 const unsigned char *sess_id, int sesslen,
71                                 SSL_SESSION **psess);
72 #endif
73
74 SSL3_ENC_METHOD TLSv1_enc_data={
75         tls1_enc,
76         tls1_mac,
77         tls1_setup_key_block,
78         tls1_generate_master_secret,
79         tls1_change_cipher_state,
80         tls1_final_finish_mac,
81         TLS1_FINISH_MAC_LENGTH,
82         tls1_cert_verify_mac,
83         TLS_MD_CLIENT_FINISH_CONST,TLS_MD_CLIENT_FINISH_CONST_SIZE,
84         TLS_MD_SERVER_FINISH_CONST,TLS_MD_SERVER_FINISH_CONST_SIZE,
85         tls1_alert_code,
86         };
87
88 long tls1_default_timeout(void)
89         {
90         /* 2 hours, the 24 hours mentioned in the TLSv1 spec
91          * is way too long for http, the cache would over fill */
92         return(60*60*2);
93         }
94
95 IMPLEMENT_tls1_meth_func(tlsv1_base_method,
96                         ssl_undefined_function,
97                         ssl_undefined_function,
98                         ssl_bad_method)
99
100 int tls1_new(SSL *s)
101         {
102         if (!ssl3_new(s)) return(0);
103         s->method->ssl_clear(s);
104         return(1);
105         }
106
107 void tls1_free(SSL *s)
108         {
109         ssl3_free(s);
110         }
111
112 void tls1_clear(SSL *s)
113         {
114         ssl3_clear(s);
115         s->version=TLS1_VERSION;
116         }
117
118 #if 0
119 long tls1_ctrl(SSL *s, int cmd, long larg, char *parg)
120         {
121         return(0);
122         }
123
124 long tls1_callback_ctrl(SSL *s, int cmd, void *(*fp)())
125         {
126         return(0);
127         }
128 #endif
129
130 #ifndef OPENSSL_NO_TLSEXT
131 unsigned char *ssl_add_clienthello_tlsext(SSL *s, unsigned char *p, unsigned char *limit)
132         {
133         int extdatalen=0;
134         unsigned char *ret = p;
135
136         ret+=2;
137
138         if (ret>=limit) return NULL; /* this really never occurs, but ... */
139
140         if (s->tlsext_hostname != NULL)
141                 { 
142                 /* Add TLS extension servername to the Client Hello message */
143                 unsigned long size_str;
144                 long lenmax; 
145
146                 /* check for enough space.
147                    4 for the servername type and entension length
148                    2 for servernamelist length
149                    1 for the hostname type
150                    2 for hostname length
151                    + hostname length 
152                 */
153                    
154                 if ((lenmax = limit - ret - 9) < 0 
155                 || (size_str = strlen(s->tlsext_hostname)) > (unsigned long)lenmax) 
156                         return NULL;
157                         
158                 /* extension type and length */
159                 s2n(TLSEXT_TYPE_server_name,ret); 
160                 s2n(size_str+5,ret);
161                 
162                 /* length of servername list */
163                 s2n(size_str+3,ret);
164         
165                 /* hostname type, length and hostname */
166                 *(ret++) = (unsigned char) TLSEXT_NAMETYPE_host_name;
167                 s2n(size_str,ret);
168                 memcpy(ret, s->tlsext_hostname, size_str);
169                 ret+=size_str;
170
171                 }
172
173         if (!(SSL_get_options(s) & SSL_OP_NO_TICKET))
174                 {
175                 int ticklen;
176                 if (s->session && s->session->tlsext_tick)
177                         ticklen = s->session->tlsext_ticklen;
178                 else
179                         ticklen = 0;
180                 /* Check for enough room 2 for extension type, 2 for len
181                  * rest for ticket
182                  */
183                 if (limit - ret - 4 - ticklen < 0)
184                         return NULL;
185                 s2n(TLSEXT_TYPE_session_ticket,ret); 
186                 s2n(ticklen,ret);
187                 if (ticklen)
188                         {
189                         memcpy(ret, s->session->tlsext_tick, ticklen);
190                         ret += ticklen;
191                         }
192                 }
193
194         if (s->tlsext_status_type == TLSEXT_STATUSTYPE_ocsp)
195                 {
196                 int i;
197                 long extlen, idlen, itmp;
198                 OCSP_RESPID *id;
199
200                 idlen = 0;
201                 for (i = 0; i < sk_OCSP_RESPID_num(s->tlsext_ocsp_ids); i++)
202                         {
203                         id = sk_OCSP_RESPID_value(s->tlsext_ocsp_ids, i);
204                         itmp = i2d_OCSP_RESPID(id, NULL);
205                         if (itmp <= 0)
206                                 return NULL;
207                         idlen += itmp + 2;
208                         }
209
210                 if (s->tlsext_ocsp_exts)
211                         {
212                         extlen = i2d_X509_EXTENSIONS(s->tlsext_ocsp_exts, NULL);
213                         if (extlen < 0)
214                                 return NULL;
215                         }
216                 else
217                         extlen = 0;
218                         
219                 if ((long)(limit - ret - 7 - extlen - idlen) < 0) return NULL;
220                 s2n(TLSEXT_TYPE_status_request, ret);
221                 if (extlen + idlen > 0xFFF0)
222                         return NULL;
223                 s2n(extlen + idlen + 5, ret);
224                 *(ret++) = TLSEXT_STATUSTYPE_ocsp;
225                 s2n(idlen, ret);
226                 for (i = 0; i < sk_OCSP_RESPID_num(s->tlsext_ocsp_ids); i++)
227                         {
228                         /* save position of id len */
229                         unsigned char *q = ret;
230                         id = sk_OCSP_RESPID_value(s->tlsext_ocsp_ids, i);
231                         /* skip over id len */
232                         ret += 2;
233                         itmp = i2d_OCSP_RESPID(id, &ret);
234                         /* write id len */
235                         s2n(itmp, q);
236                         }
237                 s2n(extlen, ret);
238                 if (extlen > 0)
239                         i2d_X509_EXTENSIONS(s->tlsext_ocsp_exts, &ret);
240                 }
241
242         if ((extdatalen = ret-p-2)== 0) 
243                 return p;
244
245         s2n(extdatalen,p);
246         return ret;
247         }
248
249 unsigned char *ssl_add_serverhello_tlsext(SSL *s, unsigned char *p, unsigned char *limit)
250         {
251         int extdatalen=0;
252         unsigned char *ret = p;
253
254         ret+=2;
255         if (ret>=limit) return NULL; /* this really never occurs, but ... */
256
257         if (!s->hit && s->servername_done == 1 && s->session->tlsext_hostname != NULL)
258                 { 
259                 if (limit - ret - 4 < 0) return NULL; 
260
261                 s2n(TLSEXT_TYPE_server_name,ret);
262                 s2n(0,ret);
263                 }
264         
265         if (s->tlsext_ticket_expected
266                 && !(SSL_get_options(s) & SSL_OP_NO_TICKET)) 
267                 { 
268                 if (limit - ret - 4 < 0) return NULL; 
269                 s2n(TLSEXT_TYPE_session_ticket,ret);
270                 s2n(0,ret);
271                 }
272
273         if (s->tlsext_status_expected)
274                 { 
275                 if ((long)(limit - ret - 4) < 0) return NULL; 
276                 s2n(TLSEXT_TYPE_status_request,ret);
277                 s2n(0,ret);
278                 }
279
280         if ((extdatalen = ret-p-2)== 0) 
281                 return p;
282
283         s2n(extdatalen,p);
284         return ret;
285         }
286
287 int ssl_parse_clienthello_tlsext(SSL *s, unsigned char **p, unsigned char *d, int n, int *al)
288         {
289         unsigned short type;
290         unsigned short size;
291         unsigned short len;
292         unsigned char *data = *p;
293         s->servername_done = 0;
294         s->tlsext_status_type = -1;
295
296         if (data >= (d+n-2))
297                 return 1;
298         n2s(data,len);
299
300         if (data > (d+n-len)) 
301                 return 1;
302
303         while (data <= (d+n-4))
304                 {
305                 n2s(data,type);
306                 n2s(data,size);
307
308                 if (data+size > (d+n))
309                         return 1;
310
311                 if (s->tlsext_debug_cb)
312                         s->tlsext_debug_cb(s, 0, type, data, size,
313                                                 s->tlsext_debug_arg);
314 /* The servername extension is treated as follows:
315
316    - Only the hostname type is supported with a maximum length of 255.
317    - The servername is rejected if too long or if it contains zeros,
318      in which case an fatal alert is generated.
319    - The servername field is maintained together with the session cache.
320    - When a session is resumed, the servername call back invoked in order
321      to allow the application to position itself to the right context. 
322    - The servername is acknowledged if it is new for a session or when 
323      it is identical to a previously used for the same session. 
324      Applications can control the behaviour.  They can at any time
325      set a 'desirable' servername for a new SSL object. This can be the
326      case for example with HTTPS when a Host: header field is received and
327      a renegotiation is requested. In this case, a possible servername
328      presented in the new client hello is only acknowledged if it matches
329      the value of the Host: field. 
330    - Applications must  use SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION
331      if they provide for changing an explicit servername context for the session,
332      i.e. when the session has been established with a servername extension. 
333    - On session reconnect, the servername extension may be absent. 
334
335 */      
336
337                 if (type == TLSEXT_TYPE_server_name)
338                         {
339                         unsigned char *sdata;
340                         int servname_type;
341                         int dsize; 
342                 
343                         if (size < 2) 
344                                 {
345                                 *al = SSL_AD_DECODE_ERROR;
346                                 return 0;
347                                 }
348                         n2s(data,dsize);  
349                         size -= 2;
350                         if (dsize > size  ) 
351                                 {
352                                 *al = SSL_AD_DECODE_ERROR;
353                                 return 0;
354                                 } 
355
356                         sdata = data;
357                         while (dsize > 3) 
358                                 {
359                                 servname_type = *(sdata++); 
360                                 n2s(sdata,len);
361                                 dsize -= 3;
362
363                                 if (len > dsize) 
364                                         {
365                                         *al = SSL_AD_DECODE_ERROR;
366                                         return 0;
367                                         }
368                                 if (s->servername_done == 0)
369                                 switch (servname_type)
370                                         {
371                                 case TLSEXT_NAMETYPE_host_name:
372                                         if (s->session->tlsext_hostname == NULL)
373                                                 {
374                                                 if (len > TLSEXT_MAXLEN_host_name || 
375                                                         ((s->session->tlsext_hostname = OPENSSL_malloc(len+1)) == NULL))
376                                                         {
377                                                         *al = TLS1_AD_UNRECOGNIZED_NAME;
378                                                         return 0;
379                                                         }
380                                                 memcpy(s->session->tlsext_hostname, sdata, len);
381                                                 s->session->tlsext_hostname[len]='\0';
382                                                 if (strlen(s->session->tlsext_hostname) != len) {
383                                                         OPENSSL_free(s->session->tlsext_hostname);
384                                                         *al = TLS1_AD_UNRECOGNIZED_NAME;
385                                                         return 0;
386                                                 }
387                                                 s->servername_done = 1; 
388
389                                                 }
390                                         else 
391                                                 s->servername_done = strlen(s->session->tlsext_hostname) == len 
392                                                         && strncmp(s->session->tlsext_hostname, (char *)sdata, len) == 0;
393                                         
394                                         break;
395
396                                 default:
397                                         break;
398                                         }
399                                  
400                                 dsize -= len;
401                                 }
402                         if (dsize != 0) 
403                                 {
404                                 *al = SSL_AD_DECODE_ERROR;
405                                 return 0;
406                                 }
407
408                         }
409                 else if (type == TLSEXT_TYPE_status_request
410                                                 && s->ctx->tlsext_status_cb)
411                         {
412                 
413                         if (size < 5) 
414                                 {
415                                 *al = SSL_AD_DECODE_ERROR;
416                                 return 0;
417                                 }
418
419                         s->tlsext_status_type = *data++;
420                         size--;
421                         if (s->tlsext_status_type == TLSEXT_STATUSTYPE_ocsp)
422                                 {
423                                 const unsigned char *sdata;
424                                 int dsize;
425                                 /* Read in responder_id_list */
426                                 n2s(data,dsize);
427                                 size -= 2;
428                                 if (dsize > size  ) 
429                                         {
430                                         *al = SSL_AD_DECODE_ERROR;
431                                         return 0;
432                                         }
433                                 while (dsize > 0)
434                                         {
435                                         OCSP_RESPID *id;
436                                         int idsize;
437                                         if (dsize < 4)
438                                                 {
439                                                 *al = SSL_AD_DECODE_ERROR;
440                                                 return 0;
441                                                 }
442                                         n2s(data, idsize);
443                                         dsize -= 2 + idsize;
444                                         if (dsize < 0)
445                                                 {
446                                                 *al = SSL_AD_DECODE_ERROR;
447                                                 return 0;
448                                                 }
449                                         sdata = data;
450                                         data += idsize;
451                                         id = d2i_OCSP_RESPID(NULL,
452                                                                 &sdata, idsize);
453                                         if (!id)
454                                                 {
455                                                 *al = SSL_AD_DECODE_ERROR;
456                                                 return 0;
457                                                 }
458                                         if (data != sdata)
459                                                 {
460                                                 OCSP_RESPID_free(id);
461                                                 *al = SSL_AD_DECODE_ERROR;
462                                                 return 0;
463                                                 }
464                                         if (!s->tlsext_ocsp_ids
465                                                 && !(s->tlsext_ocsp_ids =
466                                                 sk_OCSP_RESPID_new_null()))
467                                                 {
468                                                 OCSP_RESPID_free(id);
469                                                 *al = SSL_AD_INTERNAL_ERROR;
470                                                 return 0;
471                                                 }
472                                         if (!sk_OCSP_RESPID_push(
473                                                         s->tlsext_ocsp_ids, id))
474                                                 {
475                                                 OCSP_RESPID_free(id);
476                                                 *al = SSL_AD_INTERNAL_ERROR;
477                                                 return 0;
478                                                 }
479                                         }
480
481                                 /* Read in request_extensions */
482                                 n2s(data,dsize);
483                                 size -= 2;
484                                 if (dsize > size) 
485                                         {
486                                         *al = SSL_AD_DECODE_ERROR;
487                                         return 0;
488                                         }
489                                 sdata = data;
490                                 if (dsize > 0)
491                                         {
492                                         s->tlsext_ocsp_exts =
493                                                 d2i_X509_EXTENSIONS(NULL,
494                                                         &sdata, dsize);
495                                         if (!s->tlsext_ocsp_exts
496                                                 || (data + dsize != sdata))
497                                                 {
498                                                 *al = SSL_AD_DECODE_ERROR;
499                                                 return 0;
500                                                 }
501                                         }
502                                 }
503                                 /* We don't know what to do with any other type
504                                 * so ignore it.
505                                 */
506                                 else
507                                         s->tlsext_status_type = -1;
508                         }
509                 /* session ticket processed earlier */
510
511                 data+=size;             
512                 }
513
514         *p = data;
515         return 1;
516         }
517
518 int ssl_parse_serverhello_tlsext(SSL *s, unsigned char **p, unsigned char *d, int n, int *al)
519         {
520         unsigned short type;
521         unsigned short size;
522         unsigned short len;  
523         unsigned char *data = *p;
524
525         int tlsext_servername = 0;
526
527         if (data >= (d+n-2))
528                 return 1;
529
530         n2s(data,len);
531
532         while(data <= (d+n-4))
533                 {
534                 n2s(data,type);
535                 n2s(data,size);
536
537                 if (data+size > (d+n))
538                         return 1;
539
540                 if (s->tlsext_debug_cb)
541                         s->tlsext_debug_cb(s, 1, type, data, size,
542                                                 s->tlsext_debug_arg);
543
544                 if (type == TLSEXT_TYPE_server_name)
545                         {
546                         if (s->tlsext_hostname == NULL || size > 0)
547                                 {
548                                 *al = TLS1_AD_UNRECOGNIZED_NAME;
549                                 return 0;
550                                 }
551                         tlsext_servername = 1;   
552                         }
553                 else if (type == TLSEXT_TYPE_session_ticket)
554                         {
555                         if ((SSL_get_options(s) & SSL_OP_NO_TICKET)
556                                 || (size > 0))
557                                 {
558                                 *al = TLS1_AD_UNSUPPORTED_EXTENSION;
559                                 return 0;
560                                 }
561                         s->tlsext_ticket_expected = 1;
562                         }
563                 else if (type == TLSEXT_TYPE_status_request)
564                         {
565                         /* MUST be empty and only sent if we've requested
566                          * a status request message.
567                          */ 
568                         if ((s->tlsext_status_type == -1) || (size > 0))
569                                 {
570                                 *al = TLS1_AD_UNSUPPORTED_EXTENSION;
571                                 return 0;
572                                 }
573                         /* Set flag to expect CertificateStatus message */
574                         s->tlsext_status_expected = 1;
575                         }
576
577                 data+=size;             
578                 }
579
580         if (data != d+n)
581                 {
582                 *al = SSL_AD_DECODE_ERROR;
583                 return 0;
584                 }
585
586         if (!s->hit && tlsext_servername == 1)
587                 {
588                 if (s->tlsext_hostname)
589                         {
590                         if (s->session->tlsext_hostname == NULL)
591                                 {
592                                 s->session->tlsext_hostname = BUF_strdup(s->tlsext_hostname);   
593                                 if (!s->session->tlsext_hostname)
594                                         {
595                                         *al = SSL_AD_UNRECOGNIZED_NAME;
596                                         return 0;
597                                         }
598                                 }
599                         else 
600                                 {
601                                 *al = SSL_AD_DECODE_ERROR;
602                                 return 0;
603                                 }
604                         }
605                 }
606
607         *p = data;
608         return 1;
609         }
610
611 int ssl_check_clienthello_tlsext(SSL *s)
612         {
613         int ret=SSL_TLSEXT_ERR_NOACK;
614         int al = SSL_AD_UNRECOGNIZED_NAME;
615
616         if (s->ctx != NULL && s->ctx->tlsext_servername_callback != 0) 
617                 ret = s->ctx->tlsext_servername_callback(s, &al, s->ctx->tlsext_servername_arg);
618         else if (s->initial_ctx != NULL && s->initial_ctx->tlsext_servername_callback != 0)             
619                 ret = s->initial_ctx->tlsext_servername_callback(s, &al, s->initial_ctx->tlsext_servername_arg);
620
621         /* If status request then ask callback what to do.
622          * Note: this must be called after servername callbacks in case 
623          * the certificate has changed.
624          */
625         if ((s->tlsext_status_type != -1) && s->ctx->tlsext_status_cb)
626                 {
627                 int r;
628                 r = s->ctx->tlsext_status_cb(s, s->ctx->tlsext_status_arg);
629                 switch (r)
630                         {
631                         /* We don't want to send a status request response */
632                         case SSL_TLSEXT_ERR_NOACK:
633                                 s->tlsext_status_expected = 0;
634                                 break;
635                         /* status request response should be sent */
636                         case SSL_TLSEXT_ERR_OK:
637                                 if (s->tlsext_ocsp_resp)
638                                         s->tlsext_status_expected = 1;
639                                 else
640                                         s->tlsext_status_expected = 0;
641                                 break;
642                         /* something bad happened */
643                         case SSL_TLSEXT_ERR_ALERT_FATAL:
644                                 ret = SSL_TLSEXT_ERR_ALERT_FATAL;
645                                 al = SSL_AD_INTERNAL_ERROR;
646                                 goto err;
647                         }
648                 }
649         else
650                 s->tlsext_status_expected = 0;
651         err:
652         switch (ret)
653                 {
654                 case SSL_TLSEXT_ERR_ALERT_FATAL:
655                         ssl3_send_alert(s,SSL3_AL_FATAL,al); 
656                         return -1;
657
658                 case SSL_TLSEXT_ERR_ALERT_WARNING:
659                         ssl3_send_alert(s,SSL3_AL_WARNING,al);
660                         return 1; 
661                                         
662                 case SSL_TLSEXT_ERR_NOACK:
663                         s->servername_done=0;
664                         default:
665                 return 1;
666                 }
667         }
668
669 int ssl_check_serverhello_tlsext(SSL *s)
670         {
671         int ret=SSL_TLSEXT_ERR_NOACK;
672         int al = SSL_AD_UNRECOGNIZED_NAME;
673
674         if (s->ctx != NULL && s->ctx->tlsext_servername_callback != 0) 
675                 ret = s->ctx->tlsext_servername_callback(s, &al, s->ctx->tlsext_servername_arg);
676         else if (s->initial_ctx != NULL && s->initial_ctx->tlsext_servername_callback != 0)             
677                 ret = s->initial_ctx->tlsext_servername_callback(s, &al, s->initial_ctx->tlsext_servername_arg);
678
679         /* If we've requested certificate status and we wont get one
680          * tell the callback
681          */
682         if ((s->tlsext_status_type != -1) && !(s->tlsext_status_expected)
683                         && s->ctx->tlsext_status_cb)
684                 {
685                 int r;
686                 /* Set resp to NULL, resplen to -1 so callback knows
687                  * there is no response.
688                  */
689                 if (s->tlsext_ocsp_resp)
690                         {
691                         OPENSSL_free(s->tlsext_ocsp_resp);
692                         s->tlsext_ocsp_resp = NULL;
693                         }
694                 s->tlsext_ocsp_resplen = -1;
695                 r = s->ctx->tlsext_status_cb(s, s->ctx->tlsext_status_arg);
696                 if (r == 0)
697                         {
698                         al = SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE;
699                         ret = SSL_TLSEXT_ERR_ALERT_FATAL;
700                         }
701                 if (r < 0)
702                         {
703                         al = SSL_AD_INTERNAL_ERROR;
704                         ret = SSL_TLSEXT_ERR_ALERT_FATAL;
705                         }
706                 }
707
708         switch (ret)
709                 {
710                 case SSL_TLSEXT_ERR_ALERT_FATAL:
711                         ssl3_send_alert(s,SSL3_AL_FATAL,al); 
712                         return -1;
713
714                 case SSL_TLSEXT_ERR_ALERT_WARNING:
715                         ssl3_send_alert(s,SSL3_AL_WARNING,al);
716                         return 1; 
717                                         
718                 case SSL_TLSEXT_ERR_NOACK:
719                         s->servername_done=0;
720                         default:
721                 return 1;
722                 }
723         }
724
725 /* Since the server cache lookup is done early on in the processing of client
726  * hello and other operations depend on the result we need to handle any TLS
727  * session ticket extension at the same time.
728  */
729
730 int tls1_process_ticket(SSL *s, unsigned char *session_id, int len,
731                                 const unsigned char *limit, SSL_SESSION **ret)
732         {
733         /* Point after session ID in client hello */
734         const unsigned char *p = session_id + len;
735         unsigned short i;
736         if ((s->version <= SSL3_VERSION) || !limit)
737                 return 1;
738         if (p >= limit)
739                 return -1;
740         /* Skip past cipher list */
741         n2s(p, i);
742         p+= i;
743         if (p >= limit)
744                 return -1;
745         /* Skip past compression algorithm list */
746         i = *(p++);
747         p += i;
748         if (p > limit)
749                 return -1;
750         /* Now at start of extensions */
751         if ((p + 2) >= limit)
752                 return 1;
753         n2s(p, i);
754         while ((p + 4) <= limit)
755                 {
756                 unsigned short type, size;
757                 n2s(p, type);
758                 n2s(p, size);
759                 if (p + size > limit)
760                         return 1;
761                 if (type == TLSEXT_TYPE_session_ticket)
762                         {
763                         /* If tickets disabled indicate cache miss which will
764                          * trigger a full handshake
765                          */
766                         if (SSL_get_options(s) & SSL_OP_NO_TICKET)
767                                 return 0;
768                         /* If zero length not client will accept a ticket
769                          * and indicate cache miss to trigger full handshake
770                          */
771                         if (size == 0)
772                                 {
773                                 s->tlsext_ticket_expected = 1;
774                                 return 0;       /* Cache miss */
775                                 }
776                         return tls_decrypt_ticket(s, p, size, session_id, len,
777                                                                         ret);
778                         }
779                 p += size;
780                 }
781         return 1;
782         }
783
784 static int tls_decrypt_ticket(SSL *s, const unsigned char *etick, int eticklen,
785                                 const unsigned char *sess_id, int sesslen,
786                                 SSL_SESSION **psess)
787         {
788         SSL_SESSION *sess;
789         unsigned char *sdec;
790         const unsigned char *p;
791         int slen, mlen, renew_ticket = 0;
792         unsigned char tick_hmac[EVP_MAX_MD_SIZE];
793         HMAC_CTX hctx;
794         EVP_CIPHER_CTX ctx;
795         /* Need at least keyname + iv + some encrypted data */
796         if (eticklen < 48)
797                 goto tickerr;
798         /* Initialize session ticket encryption and HMAC contexts */
799         HMAC_CTX_init(&hctx);
800         EVP_CIPHER_CTX_init(&ctx);
801         if (s->ctx->tlsext_ticket_key_cb)
802                 {
803                 unsigned char *nctick = (unsigned char *)etick;
804                 int rv = s->ctx->tlsext_ticket_key_cb(s, nctick, nctick + 16,
805                                                         &ctx, &hctx, 0);
806                 if (rv < 0)
807                         return -1;
808                 if (rv == 0)
809                         goto tickerr;
810                 if (rv == 2)
811                         renew_ticket = 1;
812                 }
813         else
814                 {
815                 /* Check key name matches */
816                 if (memcmp(etick, s->ctx->tlsext_tick_key_name, 16))
817                         goto tickerr;
818                 HMAC_Init_ex(&hctx, s->ctx->tlsext_tick_hmac_key, 16,
819                                         tlsext_tick_md(), NULL);
820                 EVP_DecryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL,
821                                 s->ctx->tlsext_tick_aes_key, etick + 16);
822                 }
823         /* Attempt to process session ticket, first conduct sanity and
824          * integrity checks on ticket.
825          */
826         mlen = HMAC_size(&hctx);
827         eticklen -= mlen;
828         /* Check HMAC of encrypted ticket */
829         HMAC_Update(&hctx, etick, eticklen);
830         HMAC_Final(&hctx, tick_hmac, NULL);
831         HMAC_CTX_cleanup(&hctx);
832         if (memcmp(tick_hmac, etick + eticklen, mlen))
833                 goto tickerr;
834         /* Attempt to decrypt session data */
835         /* Move p after IV to start of encrypted ticket, update length */
836         p = etick + 16 + EVP_CIPHER_CTX_iv_length(&ctx);
837         eticklen -= 16 + EVP_CIPHER_CTX_iv_length(&ctx);
838         sdec = OPENSSL_malloc(eticklen);
839         if (!sdec)
840                 {
841                 EVP_CIPHER_CTX_cleanup(&ctx);
842                 return -1;
843                 }
844         EVP_DecryptUpdate(&ctx, sdec, &slen, p, eticklen);
845         if (EVP_DecryptFinal(&ctx, sdec + slen, &mlen) <= 0)
846                 goto tickerr;
847         slen += mlen;
848         EVP_CIPHER_CTX_cleanup(&ctx);
849         p = sdec;
850                 
851         sess = d2i_SSL_SESSION(NULL, &p, slen);
852         OPENSSL_free(sdec);
853         if (sess)
854                 {
855                 /* The session ID if non-empty is used by some clients to
856                  * detect that the ticket has been accepted. So we copy it to
857                  * the session structure. If it is empty set length to zero
858                  * as required by standard.
859                  */
860                 if (sesslen)
861                         memcpy(sess->session_id, sess_id, sesslen);
862                 sess->session_id_length = sesslen;
863                 *psess = sess;
864                 s->tlsext_ticket_expected = renew_ticket;
865                 return 1;
866                 }
867         /* If session decrypt failure indicate a cache miss and set state to
868          * send a new ticket
869          */
870         tickerr:        
871         s->tlsext_ticket_expected = 1;
872         return 0;
873         }
874
875 #endif