split_send_fragment should always be less than or equal to max_send_fragment
[openssl.git] / ssl / t1_enc.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57 /* ====================================================================
58  * Copyright (c) 1998-2007 The OpenSSL Project.  All rights reserved.
59  *
60  * Redistribution and use in source and binary forms, with or without
61  * modification, are permitted provided that the following conditions
62  * are met:
63  *
64  * 1. Redistributions of source code must retain the above copyright
65  *    notice, this list of conditions and the following disclaimer.
66  *
67  * 2. Redistributions in binary form must reproduce the above copyright
68  *    notice, this list of conditions and the following disclaimer in
69  *    the documentation and/or other materials provided with the
70  *    distribution.
71  *
72  * 3. All advertising materials mentioning features or use of this
73  *    software must display the following acknowledgment:
74  *    "This product includes software developed by the OpenSSL Project
75  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
76  *
77  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
78  *    endorse or promote products derived from this software without
79  *    prior written permission. For written permission, please contact
80  *    openssl-core@openssl.org.
81  *
82  * 5. Products derived from this software may not be called "OpenSSL"
83  *    nor may "OpenSSL" appear in their names without prior written
84  *    permission of the OpenSSL Project.
85  *
86  * 6. Redistributions of any form whatsoever must retain the following
87  *    acknowledgment:
88  *    "This product includes software developed by the OpenSSL Project
89  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
90  *
91  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
92  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
93  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
94  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
95  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
96  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
97  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
98  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
99  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
100  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
101  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
102  * OF THE POSSIBILITY OF SUCH DAMAGE.
103  * ====================================================================
104  *
105  * This product includes cryptographic software written by Eric Young
106  * (eay@cryptsoft.com).  This product includes software written by Tim
107  * Hudson (tjh@cryptsoft.com).
108  *
109  */
110 /* ====================================================================
111  * Copyright 2005 Nokia. All rights reserved.
112  *
113  * The portions of the attached software ("Contribution") is developed by
114  * Nokia Corporation and is licensed pursuant to the OpenSSL open source
115  * license.
116  *
117  * The Contribution, originally written by Mika Kousa and Pasi Eronen of
118  * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
119  * support (see RFC 4279) to OpenSSL.
120  *
121  * No patent licenses or other rights except those expressly stated in
122  * the OpenSSL open source license shall be deemed granted or received
123  * expressly, by implication, estoppel, or otherwise.
124  *
125  * No assurances are provided by Nokia that the Contribution does not
126  * infringe the patent or other intellectual property rights of any third
127  * party or that the license provides you with all the necessary rights
128  * to make use of the Contribution.
129  *
130  * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
131  * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
132  * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
133  * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
134  * OTHERWISE.
135  */
136
137 #include <stdio.h>
138 #include "ssl_locl.h"
139 #include <openssl/comp.h>
140 #include <openssl/evp.h>
141 #include <openssl/kdf.h>
142 #include <openssl/rand.h>
143
144 /* seed1 through seed5 are concatenated */
145 static int tls1_PRF(SSL *s,
146                     const void *seed1, int seed1_len,
147                     const void *seed2, int seed2_len,
148                     const void *seed3, int seed3_len,
149                     const void *seed4, int seed4_len,
150                     const void *seed5, int seed5_len,
151                     const unsigned char *sec, int slen,
152                     unsigned char *out, int olen)
153 {
154     const EVP_MD *md = ssl_prf_md(s);
155     EVP_PKEY_CTX *pctx = NULL;
156
157     int ret = 0;
158     size_t outlen = olen;
159
160     if (md == NULL) {
161         /* Should never happen */
162         SSLerr(SSL_F_TLS1_PRF, ERR_R_INTERNAL_ERROR);
163         return 0;
164     }
165     pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_TLS1_PRF, NULL);
166     if (pctx == NULL || EVP_PKEY_derive_init(pctx) <= 0
167         || EVP_PKEY_CTX_set_tls1_prf_md(pctx, md) <= 0
168         || EVP_PKEY_CTX_set1_tls1_prf_secret(pctx, sec, slen) <= 0)
169         goto err;
170
171     if (EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed1, seed1_len) <= 0)
172         goto err;
173     if (EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed2, seed2_len) <= 0)
174         goto err;
175     if (EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed3, seed3_len) <= 0)
176         goto err;
177     if (EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed4, seed4_len) <= 0)
178         goto err;
179     if (EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed5, seed5_len) <= 0)
180         goto err;
181
182     if (EVP_PKEY_derive(pctx, out, &outlen) <= 0)
183         goto err;
184     ret = 1;
185
186     err:
187     EVP_PKEY_CTX_free(pctx);
188     return ret;
189 }
190
191 static int tls1_generate_key_block(SSL *s, unsigned char *km, int num)
192 {
193     int ret;
194     ret = tls1_PRF(s,
195                    TLS_MD_KEY_EXPANSION_CONST,
196                    TLS_MD_KEY_EXPANSION_CONST_SIZE, s->s3->server_random,
197                    SSL3_RANDOM_SIZE, s->s3->client_random, SSL3_RANDOM_SIZE,
198                    NULL, 0, NULL, 0, s->session->master_key,
199                    s->session->master_key_length, km, num);
200
201     return ret;
202 }
203
204 int tls1_change_cipher_state(SSL *s, int which)
205 {
206     unsigned char *p, *mac_secret;
207     unsigned char tmp1[EVP_MAX_KEY_LENGTH];
208     unsigned char tmp2[EVP_MAX_KEY_LENGTH];
209     unsigned char iv1[EVP_MAX_IV_LENGTH * 2];
210     unsigned char iv2[EVP_MAX_IV_LENGTH * 2];
211     unsigned char *ms, *key, *iv;
212     EVP_CIPHER_CTX *dd;
213     const EVP_CIPHER *c;
214 #ifndef OPENSSL_NO_COMP
215     const SSL_COMP *comp;
216 #endif
217     const EVP_MD *m;
218     int mac_type;
219     int *mac_secret_size;
220     EVP_MD_CTX *mac_ctx;
221     EVP_PKEY *mac_key;
222     int n, i, j, k, cl;
223     int reuse_dd = 0;
224
225     c = s->s3->tmp.new_sym_enc;
226     m = s->s3->tmp.new_hash;
227     mac_type = s->s3->tmp.new_mac_pkey_type;
228 #ifndef OPENSSL_NO_COMP
229     comp = s->s3->tmp.new_compression;
230 #endif
231
232     if (which & SSL3_CC_READ) {
233         if (s->s3->tmp.new_cipher->algorithm2 & TLS1_STREAM_MAC)
234             s->mac_flags |= SSL_MAC_FLAG_READ_MAC_STREAM;
235         else
236             s->mac_flags &= ~SSL_MAC_FLAG_READ_MAC_STREAM;
237
238         if (s->enc_read_ctx != NULL)
239             reuse_dd = 1;
240         else if ((s->enc_read_ctx = EVP_CIPHER_CTX_new()) == NULL)
241             goto err;
242         else
243             /*
244              * make sure it's intialized in case we exit later with an error
245              */
246             EVP_CIPHER_CTX_reset(s->enc_read_ctx);
247         dd = s->enc_read_ctx;
248         mac_ctx = ssl_replace_hash(&s->read_hash, NULL);
249         if (mac_ctx == NULL)
250             goto err;
251 #ifndef OPENSSL_NO_COMP
252         COMP_CTX_free(s->expand);
253         s->expand = NULL;
254         if (comp != NULL) {
255             s->expand = COMP_CTX_new(comp->method);
256             if (s->expand == NULL) {
257                 SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE,
258                        SSL_R_COMPRESSION_LIBRARY_ERROR);
259                 goto err2;
260             }
261         }
262 #endif
263         /*
264          * this is done by dtls1_reset_seq_numbers for DTLS
265          */
266         if (!SSL_IS_DTLS(s))
267             RECORD_LAYER_reset_read_sequence(&s->rlayer);
268         mac_secret = &(s->s3->read_mac_secret[0]);
269         mac_secret_size = &(s->s3->read_mac_secret_size);
270     } else {
271         if (s->s3->tmp.new_cipher->algorithm2 & TLS1_STREAM_MAC)
272             s->mac_flags |= SSL_MAC_FLAG_WRITE_MAC_STREAM;
273         else
274             s->mac_flags &= ~SSL_MAC_FLAG_WRITE_MAC_STREAM;
275         if (s->enc_write_ctx != NULL && !SSL_IS_DTLS(s))
276             reuse_dd = 1;
277         else if ((s->enc_write_ctx = EVP_CIPHER_CTX_new()) == NULL)
278             goto err;
279         dd = s->enc_write_ctx;
280         if (SSL_IS_DTLS(s)) {
281             mac_ctx = EVP_MD_CTX_new();
282             if (mac_ctx == NULL)
283                 goto err;
284             s->write_hash = mac_ctx;
285         } else {
286             mac_ctx = ssl_replace_hash(&s->write_hash, NULL);
287             if (mac_ctx == NULL)
288                 goto err;
289         }
290 #ifndef OPENSSL_NO_COMP
291         COMP_CTX_free(s->compress);
292         s->compress = NULL;
293         if (comp != NULL) {
294             s->compress = COMP_CTX_new(comp->method);
295             if (s->compress == NULL) {
296                 SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE,
297                        SSL_R_COMPRESSION_LIBRARY_ERROR);
298                 goto err2;
299             }
300         }
301 #endif
302         /*
303          * this is done by dtls1_reset_seq_numbers for DTLS
304          */
305         if (!SSL_IS_DTLS(s))
306             RECORD_LAYER_reset_write_sequence(&s->rlayer);
307         mac_secret = &(s->s3->write_mac_secret[0]);
308         mac_secret_size = &(s->s3->write_mac_secret_size);
309     }
310
311     if (reuse_dd)
312         EVP_CIPHER_CTX_reset(dd);
313
314     p = s->s3->tmp.key_block;
315     i = *mac_secret_size = s->s3->tmp.new_mac_secret_size;
316
317     cl = EVP_CIPHER_key_length(c);
318     j = cl;
319     /* Was j=(exp)?5:EVP_CIPHER_key_length(c); */
320     /* If GCM/CCM mode only part of IV comes from PRF */
321     if (EVP_CIPHER_mode(c) == EVP_CIPH_GCM_MODE)
322         k = EVP_GCM_TLS_FIXED_IV_LEN;
323     else if (EVP_CIPHER_mode(c) == EVP_CIPH_CCM_MODE)
324         k = EVP_CCM_TLS_FIXED_IV_LEN;
325     else
326         k = EVP_CIPHER_iv_length(c);
327     if ((which == SSL3_CHANGE_CIPHER_CLIENT_WRITE) ||
328         (which == SSL3_CHANGE_CIPHER_SERVER_READ)) {
329         ms = &(p[0]);
330         n = i + i;
331         key = &(p[n]);
332         n += j + j;
333         iv = &(p[n]);
334         n += k + k;
335     } else {
336         n = i;
337         ms = &(p[n]);
338         n += i + j;
339         key = &(p[n]);
340         n += j + k;
341         iv = &(p[n]);
342         n += k;
343     }
344
345     if (n > s->s3->tmp.key_block_length) {
346         SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
347         goto err2;
348     }
349
350     memcpy(mac_secret, ms, i);
351
352     if (!(EVP_CIPHER_flags(c) & EVP_CIPH_FLAG_AEAD_CIPHER)) {
353         mac_key = EVP_PKEY_new_mac_key(mac_type, NULL,
354                                        mac_secret, *mac_secret_size);
355         if (mac_key == NULL
356                 || EVP_DigestSignInit(mac_ctx, NULL, m, NULL, mac_key) <= 0) {
357             EVP_PKEY_free(mac_key);
358             SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
359             goto err2;
360         }
361         EVP_PKEY_free(mac_key);
362     }
363 #ifdef SSL_DEBUG
364     printf("which = %04X\nmac key=", which);
365     {
366         int z;
367         for (z = 0; z < i; z++)
368             printf("%02X%c", ms[z], ((z + 1) % 16) ? ' ' : '\n');
369     }
370 #endif
371
372     if (EVP_CIPHER_mode(c) == EVP_CIPH_GCM_MODE) {
373         if (!EVP_CipherInit_ex(dd, c, NULL, key, NULL, (which & SSL3_CC_WRITE))
374             || !EVP_CIPHER_CTX_ctrl(dd, EVP_CTRL_GCM_SET_IV_FIXED, k, iv)) {
375             SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
376             goto err2;
377         }
378     } else if (EVP_CIPHER_mode(c) == EVP_CIPH_CCM_MODE) {
379         int taglen;
380         if (s->s3->tmp.new_cipher->algorithm_enc & (SSL_AES128CCM8|SSL_AES256CCM8))
381             taglen = 8;
382         else
383             taglen = 16;
384         if (!EVP_CipherInit_ex(dd, c, NULL, NULL, NULL, (which & SSL3_CC_WRITE))
385             || !EVP_CIPHER_CTX_ctrl(dd, EVP_CTRL_AEAD_SET_IVLEN, 12, NULL)
386             || !EVP_CIPHER_CTX_ctrl(dd, EVP_CTRL_AEAD_SET_TAG, taglen, NULL)
387             || !EVP_CIPHER_CTX_ctrl(dd, EVP_CTRL_CCM_SET_IV_FIXED, k, iv)
388             || !EVP_CipherInit_ex(dd, NULL, NULL, key, NULL, -1)) {
389             SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
390             goto err2;
391         }
392     } else {
393         if (!EVP_CipherInit_ex(dd, c, NULL, key, iv, (which & SSL3_CC_WRITE))) {
394             SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
395             goto err2;
396         }
397     }
398     /* Needed for "composite" AEADs, such as RC4-HMAC-MD5 */
399     if ((EVP_CIPHER_flags(c) & EVP_CIPH_FLAG_AEAD_CIPHER) && *mac_secret_size
400         && !EVP_CIPHER_CTX_ctrl(dd, EVP_CTRL_AEAD_SET_MAC_KEY,
401                                 *mac_secret_size, mac_secret)) {
402         SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
403         goto err2;
404     }
405 #ifdef OPENSSL_SSL_TRACE_CRYPTO
406     if (s->msg_callback) {
407         int wh = which & SSL3_CC_WRITE ? TLS1_RT_CRYPTO_WRITE : 0;
408         if (*mac_secret_size)
409             s->msg_callback(2, s->version, wh | TLS1_RT_CRYPTO_MAC,
410                             mac_secret, *mac_secret_size,
411                             s, s->msg_callback_arg);
412         if (c->key_len)
413             s->msg_callback(2, s->version, wh | TLS1_RT_CRYPTO_KEY,
414                             key, c->key_len, s, s->msg_callback_arg);
415         if (k) {
416             if (EVP_CIPHER_mode(c) == EVP_CIPH_GCM_MODE)
417                 wh |= TLS1_RT_CRYPTO_FIXED_IV;
418             else
419                 wh |= TLS1_RT_CRYPTO_IV;
420             s->msg_callback(2, s->version, wh, iv, k, s, s->msg_callback_arg);
421         }
422     }
423 #endif
424
425 #ifdef SSL_DEBUG
426     printf("which = %04X\nkey=", which);
427     {
428         int z;
429         for (z = 0; z < EVP_CIPHER_key_length(c); z++)
430             printf("%02X%c", key[z], ((z + 1) % 16) ? ' ' : '\n');
431     }
432     printf("\niv=");
433     {
434         int z;
435         for (z = 0; z < k; z++)
436             printf("%02X%c", iv[z], ((z + 1) % 16) ? ' ' : '\n');
437     }
438     printf("\n");
439 #endif
440
441     OPENSSL_cleanse(tmp1, sizeof(tmp1));
442     OPENSSL_cleanse(tmp2, sizeof(tmp1));
443     OPENSSL_cleanse(iv1, sizeof(iv1));
444     OPENSSL_cleanse(iv2, sizeof(iv2));
445     return (1);
446  err:
447     SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_MALLOC_FAILURE);
448  err2:
449     OPENSSL_cleanse(tmp1, sizeof(tmp1));
450     OPENSSL_cleanse(tmp2, sizeof(tmp1));
451     OPENSSL_cleanse(iv1, sizeof(iv1));
452     OPENSSL_cleanse(iv2, sizeof(iv2));
453     return (0);
454 }
455
456 int tls1_setup_key_block(SSL *s)
457 {
458     unsigned char *p;
459     const EVP_CIPHER *c;
460     const EVP_MD *hash;
461     int num;
462     SSL_COMP *comp;
463     int mac_type = NID_undef, mac_secret_size = 0;
464     int ret = 0;
465
466     if (s->s3->tmp.key_block_length != 0)
467         return (1);
468
469     if (!ssl_cipher_get_evp
470         (s->session, &c, &hash, &mac_type, &mac_secret_size, &comp,
471          SSL_USE_ETM(s))) {
472         SSLerr(SSL_F_TLS1_SETUP_KEY_BLOCK, SSL_R_CIPHER_OR_HASH_UNAVAILABLE);
473         return (0);
474     }
475
476     s->s3->tmp.new_sym_enc = c;
477     s->s3->tmp.new_hash = hash;
478     s->s3->tmp.new_mac_pkey_type = mac_type;
479     s->s3->tmp.new_mac_secret_size = mac_secret_size;
480     num =
481         EVP_CIPHER_key_length(c) + mac_secret_size + EVP_CIPHER_iv_length(c);
482     num *= 2;
483
484     ssl3_cleanup_key_block(s);
485
486     if ((p = OPENSSL_malloc(num)) == NULL) {
487         SSLerr(SSL_F_TLS1_SETUP_KEY_BLOCK, ERR_R_MALLOC_FAILURE);
488         goto err;
489     }
490
491     s->s3->tmp.key_block_length = num;
492     s->s3->tmp.key_block = p;
493
494 #ifdef SSL_DEBUG
495     printf("client random\n");
496     {
497         int z;
498         for (z = 0; z < SSL3_RANDOM_SIZE; z++)
499             printf("%02X%c", s->s3->client_random[z],
500                    ((z + 1) % 16) ? ' ' : '\n');
501     }
502     printf("server random\n");
503     {
504         int z;
505         for (z = 0; z < SSL3_RANDOM_SIZE; z++)
506             printf("%02X%c", s->s3->server_random[z],
507                    ((z + 1) % 16) ? ' ' : '\n');
508     }
509     printf("master key\n");
510     {
511         int z;
512         for (z = 0; z < s->session->master_key_length; z++)
513             printf("%02X%c", s->session->master_key[z],
514                    ((z + 1) % 16) ? ' ' : '\n');
515     }
516 #endif
517     if (!tls1_generate_key_block(s, p, num))
518         goto err;
519 #ifdef SSL_DEBUG
520     printf("\nkey block\n");
521     {
522         int z;
523         for (z = 0; z < num; z++)
524             printf("%02X%c", p[z], ((z + 1) % 16) ? ' ' : '\n');
525     }
526 #endif
527
528     if (!(s->options & SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS)
529         && s->method->version <= TLS1_VERSION) {
530         /*
531          * enable vulnerability countermeasure for CBC ciphers with known-IV
532          * problem (http://www.openssl.org/~bodo/tls-cbc.txt)
533          */
534         s->s3->need_empty_fragments = 1;
535
536         if (s->session->cipher != NULL) {
537             if (s->session->cipher->algorithm_enc == SSL_eNULL)
538                 s->s3->need_empty_fragments = 0;
539
540 #ifndef OPENSSL_NO_RC4
541             if (s->session->cipher->algorithm_enc == SSL_RC4)
542                 s->s3->need_empty_fragments = 0;
543 #endif
544         }
545     }
546
547     ret = 1;
548  err:
549     return (ret);
550 }
551
552 int tls1_final_finish_mac(SSL *s, const char *str, int slen,
553                           unsigned char *out)
554 {
555     int hashlen;
556     unsigned char hash[EVP_MAX_MD_SIZE];
557
558     if (!ssl3_digest_cached_records(s, 0))
559         return 0;
560
561     hashlen = ssl_handshake_hash(s, hash, sizeof(hash));
562
563     if (hashlen == 0)
564         return 0;
565
566     if (!tls1_PRF(s, str, slen, hash, hashlen, NULL, 0, NULL, 0, NULL, 0,
567                   s->session->master_key, s->session->master_key_length,
568                   out, TLS1_FINISH_MAC_LENGTH))
569         return 0;
570     OPENSSL_cleanse(hash, hashlen);
571     return TLS1_FINISH_MAC_LENGTH;
572 }
573
574 int tls1_generate_master_secret(SSL *s, unsigned char *out, unsigned char *p,
575                                 int len)
576 {
577     if (s->session->flags & SSL_SESS_FLAG_EXTMS) {
578         unsigned char hash[EVP_MAX_MD_SIZE * 2];
579         int hashlen;
580         /* Digest cached records keeping record buffer (if present):
581          * this wont affect client auth because we're freezing the buffer
582          * at the same point (after client key exchange and before certificate
583          * verify)
584          */
585         if (!ssl3_digest_cached_records(s, 1))
586             return -1;
587         hashlen = ssl_handshake_hash(s, hash, sizeof(hash));
588 #ifdef SSL_DEBUG
589         fprintf(stderr, "Handshake hashes:\n");
590         BIO_dump_fp(stderr, (char *)hash, hashlen);
591 #endif
592         tls1_PRF(s,
593                  TLS_MD_EXTENDED_MASTER_SECRET_CONST,
594                  TLS_MD_EXTENDED_MASTER_SECRET_CONST_SIZE,
595                  hash, hashlen,
596                  NULL, 0,
597                  NULL, 0,
598                  NULL, 0, p, len, s->session->master_key,
599                  SSL3_MASTER_SECRET_SIZE);
600         OPENSSL_cleanse(hash, hashlen);
601     } else {
602         tls1_PRF(s,
603                  TLS_MD_MASTER_SECRET_CONST,
604                  TLS_MD_MASTER_SECRET_CONST_SIZE,
605                  s->s3->client_random, SSL3_RANDOM_SIZE,
606                  NULL, 0,
607                  s->s3->server_random, SSL3_RANDOM_SIZE,
608                  NULL, 0, p, len, s->session->master_key,
609                  SSL3_MASTER_SECRET_SIZE);
610     }
611 #ifdef SSL_DEBUG
612     fprintf(stderr, "Premaster Secret:\n");
613     BIO_dump_fp(stderr, (char *)p, len);
614     fprintf(stderr, "Client Random:\n");
615     BIO_dump_fp(stderr, (char *)s->s3->client_random, SSL3_RANDOM_SIZE);
616     fprintf(stderr, "Server Random:\n");
617     BIO_dump_fp(stderr, (char *)s->s3->server_random, SSL3_RANDOM_SIZE);
618     fprintf(stderr, "Master Secret:\n");
619     BIO_dump_fp(stderr, (char *)s->session->master_key,
620                 SSL3_MASTER_SECRET_SIZE);
621 #endif
622
623 #ifdef OPENSSL_SSL_TRACE_CRYPTO
624     if (s->msg_callback) {
625         s->msg_callback(2, s->version, TLS1_RT_CRYPTO_PREMASTER,
626                         p, len, s, s->msg_callback_arg);
627         s->msg_callback(2, s->version, TLS1_RT_CRYPTO_CLIENT_RANDOM,
628                         s->s3->client_random, SSL3_RANDOM_SIZE,
629                         s, s->msg_callback_arg);
630         s->msg_callback(2, s->version, TLS1_RT_CRYPTO_SERVER_RANDOM,
631                         s->s3->server_random, SSL3_RANDOM_SIZE,
632                         s, s->msg_callback_arg);
633         s->msg_callback(2, s->version, TLS1_RT_CRYPTO_MASTER,
634                         s->session->master_key,
635                         SSL3_MASTER_SECRET_SIZE, s, s->msg_callback_arg);
636     }
637 #endif
638
639     return (SSL3_MASTER_SECRET_SIZE);
640 }
641
642 int tls1_export_keying_material(SSL *s, unsigned char *out, size_t olen,
643                                 const char *label, size_t llen,
644                                 const unsigned char *context,
645                                 size_t contextlen, int use_context)
646 {
647     unsigned char *val = NULL;
648     size_t vallen = 0, currentvalpos;
649     int rv;
650
651     /*
652      * construct PRF arguments we construct the PRF argument ourself rather
653      * than passing separate values into the TLS PRF to ensure that the
654      * concatenation of values does not create a prohibited label.
655      */
656     vallen = llen + SSL3_RANDOM_SIZE * 2;
657     if (use_context) {
658         vallen += 2 + contextlen;
659     }
660
661     val = OPENSSL_malloc(vallen);
662     if (val == NULL)
663         goto err2;
664     currentvalpos = 0;
665     memcpy(val + currentvalpos, (unsigned char *)label, llen);
666     currentvalpos += llen;
667     memcpy(val + currentvalpos, s->s3->client_random, SSL3_RANDOM_SIZE);
668     currentvalpos += SSL3_RANDOM_SIZE;
669     memcpy(val + currentvalpos, s->s3->server_random, SSL3_RANDOM_SIZE);
670     currentvalpos += SSL3_RANDOM_SIZE;
671
672     if (use_context) {
673         val[currentvalpos] = (contextlen >> 8) & 0xff;
674         currentvalpos++;
675         val[currentvalpos] = contextlen & 0xff;
676         currentvalpos++;
677         if ((contextlen > 0) || (context != NULL)) {
678             memcpy(val + currentvalpos, context, contextlen);
679         }
680     }
681
682     /*
683      * disallow prohibited labels note that SSL3_RANDOM_SIZE > max(prohibited
684      * label len) = 15, so size of val > max(prohibited label len) = 15 and
685      * the comparisons won't have buffer overflow
686      */
687     if (memcmp(val, TLS_MD_CLIENT_FINISH_CONST,
688                TLS_MD_CLIENT_FINISH_CONST_SIZE) == 0)
689         goto err1;
690     if (memcmp(val, TLS_MD_SERVER_FINISH_CONST,
691                TLS_MD_SERVER_FINISH_CONST_SIZE) == 0)
692         goto err1;
693     if (memcmp(val, TLS_MD_MASTER_SECRET_CONST,
694                TLS_MD_MASTER_SECRET_CONST_SIZE) == 0)
695         goto err1;
696     if (memcmp(val, TLS_MD_EXTENDED_MASTER_SECRET_CONST,
697                TLS_MD_EXTENDED_MASTER_SECRET_CONST_SIZE) == 0)
698         goto err1;
699     if (memcmp(val, TLS_MD_KEY_EXPANSION_CONST,
700                TLS_MD_KEY_EXPANSION_CONST_SIZE) == 0)
701         goto err1;
702
703     rv = tls1_PRF(s,
704                   val, vallen,
705                   NULL, 0,
706                   NULL, 0,
707                   NULL, 0,
708                   NULL, 0,
709                   s->session->master_key, s->session->master_key_length,
710                   out, olen);
711
712     goto ret;
713  err1:
714     SSLerr(SSL_F_TLS1_EXPORT_KEYING_MATERIAL,
715            SSL_R_TLS_ILLEGAL_EXPORTER_LABEL);
716     rv = 0;
717     goto ret;
718  err2:
719     SSLerr(SSL_F_TLS1_EXPORT_KEYING_MATERIAL, ERR_R_MALLOC_FAILURE);
720     rv = 0;
721  ret:
722     OPENSSL_clear_free(val, vallen);
723     return (rv);
724 }
725
726 int tls1_alert_code(int code)
727 {
728     switch (code) {
729     case SSL_AD_CLOSE_NOTIFY:
730         return (SSL3_AD_CLOSE_NOTIFY);
731     case SSL_AD_UNEXPECTED_MESSAGE:
732         return (SSL3_AD_UNEXPECTED_MESSAGE);
733     case SSL_AD_BAD_RECORD_MAC:
734         return (SSL3_AD_BAD_RECORD_MAC);
735     case SSL_AD_DECRYPTION_FAILED:
736         return (TLS1_AD_DECRYPTION_FAILED);
737     case SSL_AD_RECORD_OVERFLOW:
738         return (TLS1_AD_RECORD_OVERFLOW);
739     case SSL_AD_DECOMPRESSION_FAILURE:
740         return (SSL3_AD_DECOMPRESSION_FAILURE);
741     case SSL_AD_HANDSHAKE_FAILURE:
742         return (SSL3_AD_HANDSHAKE_FAILURE);
743     case SSL_AD_NO_CERTIFICATE:
744         return (-1);
745     case SSL_AD_BAD_CERTIFICATE:
746         return (SSL3_AD_BAD_CERTIFICATE);
747     case SSL_AD_UNSUPPORTED_CERTIFICATE:
748         return (SSL3_AD_UNSUPPORTED_CERTIFICATE);
749     case SSL_AD_CERTIFICATE_REVOKED:
750         return (SSL3_AD_CERTIFICATE_REVOKED);
751     case SSL_AD_CERTIFICATE_EXPIRED:
752         return (SSL3_AD_CERTIFICATE_EXPIRED);
753     case SSL_AD_CERTIFICATE_UNKNOWN:
754         return (SSL3_AD_CERTIFICATE_UNKNOWN);
755     case SSL_AD_ILLEGAL_PARAMETER:
756         return (SSL3_AD_ILLEGAL_PARAMETER);
757     case SSL_AD_UNKNOWN_CA:
758         return (TLS1_AD_UNKNOWN_CA);
759     case SSL_AD_ACCESS_DENIED:
760         return (TLS1_AD_ACCESS_DENIED);
761     case SSL_AD_DECODE_ERROR:
762         return (TLS1_AD_DECODE_ERROR);
763     case SSL_AD_DECRYPT_ERROR:
764         return (TLS1_AD_DECRYPT_ERROR);
765     case SSL_AD_EXPORT_RESTRICTION:
766         return (TLS1_AD_EXPORT_RESTRICTION);
767     case SSL_AD_PROTOCOL_VERSION:
768         return (TLS1_AD_PROTOCOL_VERSION);
769     case SSL_AD_INSUFFICIENT_SECURITY:
770         return (TLS1_AD_INSUFFICIENT_SECURITY);
771     case SSL_AD_INTERNAL_ERROR:
772         return (TLS1_AD_INTERNAL_ERROR);
773     case SSL_AD_USER_CANCELLED:
774         return (TLS1_AD_USER_CANCELLED);
775     case SSL_AD_NO_RENEGOTIATION:
776         return (TLS1_AD_NO_RENEGOTIATION);
777     case SSL_AD_UNSUPPORTED_EXTENSION:
778         return (TLS1_AD_UNSUPPORTED_EXTENSION);
779     case SSL_AD_CERTIFICATE_UNOBTAINABLE:
780         return (TLS1_AD_CERTIFICATE_UNOBTAINABLE);
781     case SSL_AD_UNRECOGNIZED_NAME:
782         return (TLS1_AD_UNRECOGNIZED_NAME);
783     case SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE:
784         return (TLS1_AD_BAD_CERTIFICATE_STATUS_RESPONSE);
785     case SSL_AD_BAD_CERTIFICATE_HASH_VALUE:
786         return (TLS1_AD_BAD_CERTIFICATE_HASH_VALUE);
787     case SSL_AD_UNKNOWN_PSK_IDENTITY:
788         return (TLS1_AD_UNKNOWN_PSK_IDENTITY);
789     case SSL_AD_INAPPROPRIATE_FALLBACK:
790         return (TLS1_AD_INAPPROPRIATE_FALLBACK);
791     case SSL_AD_NO_APPLICATION_PROTOCOL:
792         return (TLS1_AD_NO_APPLICATION_PROTOCOL);
793     default:
794         return (-1);
795     }
796 }