make update
[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 #ifndef OPENSSL_NO_COMP
140 # include <openssl/comp.h>
141 #endif
142 #include <openssl/evp.h>
143 #include <openssl/kdf.h>
144 #include <openssl/rand.h>
145
146 /* seed1 through seed5 are concatenated */
147 static int tls1_PRF(SSL *s,
148                     const void *seed1, int seed1_len,
149                     const void *seed2, int seed2_len,
150                     const void *seed3, int seed3_len,
151                     const void *seed4, int seed4_len,
152                     const void *seed5, int seed5_len,
153                     const unsigned char *sec, int slen,
154                     unsigned char *out, int olen)
155 {
156     const EVP_MD *md = ssl_prf_md(s);
157     EVP_PKEY_CTX *pctx = NULL;
158
159     int ret = 0;
160     size_t outlen = olen;
161
162     if (md == NULL) {
163         /* Should never happen */
164         SSLerr(SSL_F_TLS1_PRF, ERR_R_INTERNAL_ERROR);
165         return 0;
166     }
167     pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_TLS1_PRF, NULL);
168     if (pctx == NULL || EVP_PKEY_derive_init(pctx) <= 0
169         || EVP_PKEY_CTX_set_tls1_prf_md(pctx, md) <= 0
170         || EVP_PKEY_CTX_set1_tls1_prf_secret(pctx, sec, slen) <= 0)
171         goto err;
172
173     if (EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed1, seed1_len) <= 0)
174         goto err;
175     if (EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed2, seed2_len) <= 0)
176         goto err;
177     if (EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed3, seed3_len) <= 0)
178         goto err;
179     if (EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed4, seed4_len) <= 0)
180         goto err;
181     if (EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed5, seed5_len) <= 0)
182         goto err;
183
184     if (EVP_PKEY_derive(pctx, out, &outlen) <= 0)
185         goto err;
186     ret = 1;
187
188     err:
189     EVP_PKEY_CTX_free(pctx);
190     return ret;
191 }
192
193 static int tls1_generate_key_block(SSL *s, unsigned char *km, int num)
194 {
195     int ret;
196     ret = tls1_PRF(s,
197                    TLS_MD_KEY_EXPANSION_CONST,
198                    TLS_MD_KEY_EXPANSION_CONST_SIZE, s->s3->server_random,
199                    SSL3_RANDOM_SIZE, s->s3->client_random, SSL3_RANDOM_SIZE,
200                    NULL, 0, NULL, 0, s->session->master_key,
201                    s->session->master_key_length, km, num);
202
203     return ret;
204 }
205
206 int tls1_change_cipher_state(SSL *s, int which)
207 {
208     unsigned char *p, *mac_secret;
209     unsigned char tmp1[EVP_MAX_KEY_LENGTH];
210     unsigned char tmp2[EVP_MAX_KEY_LENGTH];
211     unsigned char iv1[EVP_MAX_IV_LENGTH * 2];
212     unsigned char iv2[EVP_MAX_IV_LENGTH * 2];
213     unsigned char *ms, *key, *iv;
214     EVP_CIPHER_CTX *dd;
215     const EVP_CIPHER *c;
216 #ifndef OPENSSL_NO_COMP
217     const SSL_COMP *comp;
218 #endif
219     const EVP_MD *m;
220     int mac_type;
221     int *mac_secret_size;
222     EVP_MD_CTX *mac_ctx;
223     EVP_PKEY *mac_key;
224     int n, i, j, k, cl;
225     int reuse_dd = 0;
226
227     c = s->s3->tmp.new_sym_enc;
228     m = s->s3->tmp.new_hash;
229     mac_type = s->s3->tmp.new_mac_pkey_type;
230 #ifndef OPENSSL_NO_COMP
231     comp = s->s3->tmp.new_compression;
232 #endif
233
234     if (which & SSL3_CC_READ) {
235         if (s->s3->tmp.new_cipher->algorithm2 & TLS1_STREAM_MAC)
236             s->mac_flags |= SSL_MAC_FLAG_READ_MAC_STREAM;
237         else
238             s->mac_flags &= ~SSL_MAC_FLAG_READ_MAC_STREAM;
239
240         if (s->enc_read_ctx != NULL)
241             reuse_dd = 1;
242         else if ((s->enc_read_ctx = EVP_CIPHER_CTX_new()) == NULL)
243             goto err;
244         else
245             /*
246              * make sure it's intialized in case we exit later with an error
247              */
248             EVP_CIPHER_CTX_reset(s->enc_read_ctx);
249         dd = s->enc_read_ctx;
250         mac_ctx = ssl_replace_hash(&s->read_hash, NULL);
251         if (mac_ctx == NULL)
252             goto err;
253 #ifndef OPENSSL_NO_COMP
254         COMP_CTX_free(s->expand);
255         s->expand = NULL;
256         if (comp != NULL) {
257             s->expand = COMP_CTX_new(comp->method);
258             if (s->expand == NULL) {
259                 SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE,
260                        SSL_R_COMPRESSION_LIBRARY_ERROR);
261                 goto err2;
262             }
263         }
264 #endif
265         /*
266          * this is done by dtls1_reset_seq_numbers for DTLS
267          */
268         if (!SSL_IS_DTLS(s))
269             RECORD_LAYER_reset_read_sequence(&s->rlayer);
270         mac_secret = &(s->s3->read_mac_secret[0]);
271         mac_secret_size = &(s->s3->read_mac_secret_size);
272     } else {
273         if (s->s3->tmp.new_cipher->algorithm2 & TLS1_STREAM_MAC)
274             s->mac_flags |= SSL_MAC_FLAG_WRITE_MAC_STREAM;
275         else
276             s->mac_flags &= ~SSL_MAC_FLAG_WRITE_MAC_STREAM;
277         if (s->enc_write_ctx != NULL && !SSL_IS_DTLS(s))
278             reuse_dd = 1;
279         else if ((s->enc_write_ctx = EVP_CIPHER_CTX_new()) == NULL)
280             goto err;
281         dd = s->enc_write_ctx;
282         if (SSL_IS_DTLS(s)) {
283             mac_ctx = EVP_MD_CTX_new();
284             if (mac_ctx == NULL)
285                 goto err;
286             s->write_hash = mac_ctx;
287         } else {
288             mac_ctx = ssl_replace_hash(&s->write_hash, NULL);
289             if (mac_ctx == NULL)
290                 goto err;
291         }
292 #ifndef OPENSSL_NO_COMP
293         COMP_CTX_free(s->compress);
294         s->compress = NULL;
295         if (comp != NULL) {
296             s->compress = COMP_CTX_new(comp->method);
297             if (s->compress == NULL) {
298                 SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE,
299                        SSL_R_COMPRESSION_LIBRARY_ERROR);
300                 goto err2;
301             }
302         }
303 #endif
304         /*
305          * this is done by dtls1_reset_seq_numbers for DTLS
306          */
307         if (!SSL_IS_DTLS(s))
308             RECORD_LAYER_reset_write_sequence(&s->rlayer);
309         mac_secret = &(s->s3->write_mac_secret[0]);
310         mac_secret_size = &(s->s3->write_mac_secret_size);
311     }
312
313     if (reuse_dd)
314         EVP_CIPHER_CTX_reset(dd);
315
316     p = s->s3->tmp.key_block;
317     i = *mac_secret_size = s->s3->tmp.new_mac_secret_size;
318
319     cl = EVP_CIPHER_key_length(c);
320     j = cl;
321     /* Was j=(exp)?5:EVP_CIPHER_key_length(c); */
322     /* If GCM/CCM mode only part of IV comes from PRF */
323     if (EVP_CIPHER_mode(c) == EVP_CIPH_GCM_MODE)
324         k = EVP_GCM_TLS_FIXED_IV_LEN;
325     else if (EVP_CIPHER_mode(c) == EVP_CIPH_CCM_MODE)
326         k = EVP_CCM_TLS_FIXED_IV_LEN;
327     else
328         k = EVP_CIPHER_iv_length(c);
329     if ((which == SSL3_CHANGE_CIPHER_CLIENT_WRITE) ||
330         (which == SSL3_CHANGE_CIPHER_SERVER_READ)) {
331         ms = &(p[0]);
332         n = i + i;
333         key = &(p[n]);
334         n += j + j;
335         iv = &(p[n]);
336         n += k + k;
337     } else {
338         n = i;
339         ms = &(p[n]);
340         n += i + j;
341         key = &(p[n]);
342         n += j + k;
343         iv = &(p[n]);
344         n += k;
345     }
346
347     if (n > s->s3->tmp.key_block_length) {
348         SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
349         goto err2;
350     }
351
352     memcpy(mac_secret, ms, i);
353
354     if (!(EVP_CIPHER_flags(c) & EVP_CIPH_FLAG_AEAD_CIPHER)) {
355         mac_key = EVP_PKEY_new_mac_key(mac_type, NULL,
356                                        mac_secret, *mac_secret_size);
357         if (mac_key == NULL
358                 || EVP_DigestSignInit(mac_ctx, NULL, m, NULL, mac_key) <= 0) {
359             EVP_PKEY_free(mac_key);
360             SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
361             goto err2;
362         }
363         EVP_PKEY_free(mac_key);
364     }
365 #ifdef SSL_DEBUG
366     printf("which = %04X\nmac key=", which);
367     {
368         int z;
369         for (z = 0; z < i; z++)
370             printf("%02X%c", ms[z], ((z + 1) % 16) ? ' ' : '\n');
371     }
372 #endif
373
374     if (EVP_CIPHER_mode(c) == EVP_CIPH_GCM_MODE) {
375         if (!EVP_CipherInit_ex(dd, c, NULL, key, NULL, (which & SSL3_CC_WRITE))
376             || !EVP_CIPHER_CTX_ctrl(dd, EVP_CTRL_GCM_SET_IV_FIXED, k, iv)) {
377             SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
378             goto err2;
379         }
380     } else if (EVP_CIPHER_mode(c) == EVP_CIPH_CCM_MODE) {
381         int taglen;
382         if (s->s3->tmp.new_cipher->algorithm_enc & (SSL_AES128CCM8|SSL_AES256CCM8))
383             taglen = 8;
384         else
385             taglen = 16;
386         if (!EVP_CipherInit_ex(dd, c, NULL, NULL, NULL, (which & SSL3_CC_WRITE))
387             || !EVP_CIPHER_CTX_ctrl(dd, EVP_CTRL_AEAD_SET_IVLEN, 12, NULL)
388             || !EVP_CIPHER_CTX_ctrl(dd, EVP_CTRL_AEAD_SET_TAG, taglen, NULL)
389             || !EVP_CIPHER_CTX_ctrl(dd, EVP_CTRL_CCM_SET_IV_FIXED, k, iv)
390             || !EVP_CipherInit_ex(dd, NULL, NULL, key, NULL, -1)) {
391             SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
392             goto err2;
393         }
394     } else {
395         if (!EVP_CipherInit_ex(dd, c, NULL, key, iv, (which & SSL3_CC_WRITE))) {
396             SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
397             goto err2;
398         }
399     }
400     /* Needed for "composite" AEADs, such as RC4-HMAC-MD5 */
401     if ((EVP_CIPHER_flags(c) & EVP_CIPH_FLAG_AEAD_CIPHER) && *mac_secret_size
402         && !EVP_CIPHER_CTX_ctrl(dd, EVP_CTRL_AEAD_SET_MAC_KEY,
403                                 *mac_secret_size, mac_secret)) {
404         SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
405         goto err2;
406     }
407 #ifdef OPENSSL_SSL_TRACE_CRYPTO
408     if (s->msg_callback) {
409         int wh = which & SSL3_CC_WRITE ? TLS1_RT_CRYPTO_WRITE : 0;
410         if (*mac_secret_size)
411             s->msg_callback(2, s->version, wh | TLS1_RT_CRYPTO_MAC,
412                             mac_secret, *mac_secret_size,
413                             s, s->msg_callback_arg);
414         if (c->key_len)
415             s->msg_callback(2, s->version, wh | TLS1_RT_CRYPTO_KEY,
416                             key, c->key_len, s, s->msg_callback_arg);
417         if (k) {
418             if (EVP_CIPHER_mode(c) == EVP_CIPH_GCM_MODE)
419                 wh |= TLS1_RT_CRYPTO_FIXED_IV;
420             else
421                 wh |= TLS1_RT_CRYPTO_IV;
422             s->msg_callback(2, s->version, wh, iv, k, s, s->msg_callback_arg);
423         }
424     }
425 #endif
426
427 #ifdef SSL_DEBUG
428     printf("which = %04X\nkey=", which);
429     {
430         int z;
431         for (z = 0; z < EVP_CIPHER_key_length(c); z++)
432             printf("%02X%c", key[z], ((z + 1) % 16) ? ' ' : '\n');
433     }
434     printf("\niv=");
435     {
436         int z;
437         for (z = 0; z < k; z++)
438             printf("%02X%c", iv[z], ((z + 1) % 16) ? ' ' : '\n');
439     }
440     printf("\n");
441 #endif
442
443     OPENSSL_cleanse(tmp1, sizeof(tmp1));
444     OPENSSL_cleanse(tmp2, sizeof(tmp1));
445     OPENSSL_cleanse(iv1, sizeof(iv1));
446     OPENSSL_cleanse(iv2, sizeof(iv2));
447     return (1);
448  err:
449     SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_MALLOC_FAILURE);
450  err2:
451     OPENSSL_cleanse(tmp1, sizeof(tmp1));
452     OPENSSL_cleanse(tmp2, sizeof(tmp1));
453     OPENSSL_cleanse(iv1, sizeof(iv1));
454     OPENSSL_cleanse(iv2, sizeof(iv2));
455     return (0);
456 }
457
458 int tls1_setup_key_block(SSL *s)
459 {
460     unsigned char *p;
461     const EVP_CIPHER *c;
462     const EVP_MD *hash;
463     int num;
464     SSL_COMP *comp;
465     int mac_type = NID_undef, mac_secret_size = 0;
466     int ret = 0;
467
468     if (s->s3->tmp.key_block_length != 0)
469         return (1);
470
471     if (!ssl_cipher_get_evp
472         (s->session, &c, &hash, &mac_type, &mac_secret_size, &comp,
473          SSL_USE_ETM(s))) {
474         SSLerr(SSL_F_TLS1_SETUP_KEY_BLOCK, SSL_R_CIPHER_OR_HASH_UNAVAILABLE);
475         return (0);
476     }
477
478     s->s3->tmp.new_sym_enc = c;
479     s->s3->tmp.new_hash = hash;
480     s->s3->tmp.new_mac_pkey_type = mac_type;
481     s->s3->tmp.new_mac_secret_size = mac_secret_size;
482     num =
483         EVP_CIPHER_key_length(c) + mac_secret_size + EVP_CIPHER_iv_length(c);
484     num *= 2;
485
486     ssl3_cleanup_key_block(s);
487
488     if ((p = OPENSSL_malloc(num)) == NULL) {
489         SSLerr(SSL_F_TLS1_SETUP_KEY_BLOCK, ERR_R_MALLOC_FAILURE);
490         goto err;
491     }
492
493     s->s3->tmp.key_block_length = num;
494     s->s3->tmp.key_block = p;
495
496 #ifdef SSL_DEBUG
497     printf("client random\n");
498     {
499         int z;
500         for (z = 0; z < SSL3_RANDOM_SIZE; z++)
501             printf("%02X%c", s->s3->client_random[z],
502                    ((z + 1) % 16) ? ' ' : '\n');
503     }
504     printf("server random\n");
505     {
506         int z;
507         for (z = 0; z < SSL3_RANDOM_SIZE; z++)
508             printf("%02X%c", s->s3->server_random[z],
509                    ((z + 1) % 16) ? ' ' : '\n');
510     }
511     printf("master key\n");
512     {
513         int z;
514         for (z = 0; z < s->session->master_key_length; z++)
515             printf("%02X%c", s->session->master_key[z],
516                    ((z + 1) % 16) ? ' ' : '\n');
517     }
518 #endif
519     if (!tls1_generate_key_block(s, p, num))
520         goto err;
521 #ifdef SSL_DEBUG
522     printf("\nkey block\n");
523     {
524         int z;
525         for (z = 0; z < num; z++)
526             printf("%02X%c", p[z], ((z + 1) % 16) ? ' ' : '\n');
527     }
528 #endif
529
530     if (!(s->options & SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS)
531         && s->method->version <= TLS1_VERSION) {
532         /*
533          * enable vulnerability countermeasure for CBC ciphers with known-IV
534          * problem (http://www.openssl.org/~bodo/tls-cbc.txt)
535          */
536         s->s3->need_empty_fragments = 1;
537
538         if (s->session->cipher != NULL) {
539             if (s->session->cipher->algorithm_enc == SSL_eNULL)
540                 s->s3->need_empty_fragments = 0;
541
542 #ifndef OPENSSL_NO_RC4
543             if (s->session->cipher->algorithm_enc == SSL_RC4)
544                 s->s3->need_empty_fragments = 0;
545 #endif
546         }
547     }
548
549     ret = 1;
550  err:
551     return (ret);
552 }
553
554 int tls1_final_finish_mac(SSL *s, const char *str, int slen,
555                           unsigned char *out)
556 {
557     int hashlen;
558     unsigned char hash[EVP_MAX_MD_SIZE];
559
560     if (!ssl3_digest_cached_records(s, 0))
561         return 0;
562
563     hashlen = ssl_handshake_hash(s, hash, sizeof(hash));
564
565     if (hashlen == 0)
566         return 0;
567
568     if (!tls1_PRF(s, str, slen, hash, hashlen, NULL, 0, NULL, 0, NULL, 0,
569                   s->session->master_key, s->session->master_key_length,
570                   out, TLS1_FINISH_MAC_LENGTH))
571         return 0;
572     OPENSSL_cleanse(hash, hashlen);
573     return TLS1_FINISH_MAC_LENGTH;
574 }
575
576 int tls1_generate_master_secret(SSL *s, unsigned char *out, unsigned char *p,
577                                 int len)
578 {
579     if (s->session->flags & SSL_SESS_FLAG_EXTMS) {
580         unsigned char hash[EVP_MAX_MD_SIZE * 2];
581         int hashlen;
582         /* Digest cached records keeping record buffer (if present):
583          * this wont affect client auth because we're freezing the buffer
584          * at the same point (after client key exchange and before certificate
585          * verify)
586          */
587         if (!ssl3_digest_cached_records(s, 1))
588             return -1;
589         hashlen = ssl_handshake_hash(s, hash, sizeof(hash));
590 #ifdef SSL_DEBUG
591         fprintf(stderr, "Handshake hashes:\n");
592         BIO_dump_fp(stderr, (char *)hash, hashlen);
593 #endif
594         tls1_PRF(s,
595                  TLS_MD_EXTENDED_MASTER_SECRET_CONST,
596                  TLS_MD_EXTENDED_MASTER_SECRET_CONST_SIZE,
597                  hash, hashlen,
598                  NULL, 0,
599                  NULL, 0,
600                  NULL, 0, p, len, s->session->master_key,
601                  SSL3_MASTER_SECRET_SIZE);
602         OPENSSL_cleanse(hash, hashlen);
603     } else {
604         tls1_PRF(s,
605                  TLS_MD_MASTER_SECRET_CONST,
606                  TLS_MD_MASTER_SECRET_CONST_SIZE,
607                  s->s3->client_random, SSL3_RANDOM_SIZE,
608                  NULL, 0,
609                  s->s3->server_random, SSL3_RANDOM_SIZE,
610                  NULL, 0, p, len, s->session->master_key,
611                  SSL3_MASTER_SECRET_SIZE);
612     }
613 #ifdef SSL_DEBUG
614     fprintf(stderr, "Premaster Secret:\n");
615     BIO_dump_fp(stderr, (char *)p, len);
616     fprintf(stderr, "Client Random:\n");
617     BIO_dump_fp(stderr, (char *)s->s3->client_random, SSL3_RANDOM_SIZE);
618     fprintf(stderr, "Server Random:\n");
619     BIO_dump_fp(stderr, (char *)s->s3->server_random, SSL3_RANDOM_SIZE);
620     fprintf(stderr, "Master Secret:\n");
621     BIO_dump_fp(stderr, (char *)s->session->master_key,
622                 SSL3_MASTER_SECRET_SIZE);
623 #endif
624
625 #ifdef OPENSSL_SSL_TRACE_CRYPTO
626     if (s->msg_callback) {
627         s->msg_callback(2, s->version, TLS1_RT_CRYPTO_PREMASTER,
628                         p, len, s, s->msg_callback_arg);
629         s->msg_callback(2, s->version, TLS1_RT_CRYPTO_CLIENT_RANDOM,
630                         s->s3->client_random, SSL3_RANDOM_SIZE,
631                         s, s->msg_callback_arg);
632         s->msg_callback(2, s->version, TLS1_RT_CRYPTO_SERVER_RANDOM,
633                         s->s3->server_random, SSL3_RANDOM_SIZE,
634                         s, s->msg_callback_arg);
635         s->msg_callback(2, s->version, TLS1_RT_CRYPTO_MASTER,
636                         s->session->master_key,
637                         SSL3_MASTER_SECRET_SIZE, s, s->msg_callback_arg);
638     }
639 #endif
640
641     return (SSL3_MASTER_SECRET_SIZE);
642 }
643
644 int tls1_export_keying_material(SSL *s, unsigned char *out, size_t olen,
645                                 const char *label, size_t llen,
646                                 const unsigned char *context,
647                                 size_t contextlen, int use_context)
648 {
649     unsigned char *val = NULL;
650     size_t vallen = 0, currentvalpos;
651     int rv;
652
653     /*
654      * construct PRF arguments we construct the PRF argument ourself rather
655      * than passing separate values into the TLS PRF to ensure that the
656      * concatenation of values does not create a prohibited label.
657      */
658     vallen = llen + SSL3_RANDOM_SIZE * 2;
659     if (use_context) {
660         vallen += 2 + contextlen;
661     }
662
663     val = OPENSSL_malloc(vallen);
664     if (val == NULL)
665         goto err2;
666     currentvalpos = 0;
667     memcpy(val + currentvalpos, (unsigned char *)label, llen);
668     currentvalpos += llen;
669     memcpy(val + currentvalpos, s->s3->client_random, SSL3_RANDOM_SIZE);
670     currentvalpos += SSL3_RANDOM_SIZE;
671     memcpy(val + currentvalpos, s->s3->server_random, SSL3_RANDOM_SIZE);
672     currentvalpos += SSL3_RANDOM_SIZE;
673
674     if (use_context) {
675         val[currentvalpos] = (contextlen >> 8) & 0xff;
676         currentvalpos++;
677         val[currentvalpos] = contextlen & 0xff;
678         currentvalpos++;
679         if ((contextlen > 0) || (context != NULL)) {
680             memcpy(val + currentvalpos, context, contextlen);
681         }
682     }
683
684     /*
685      * disallow prohibited labels note that SSL3_RANDOM_SIZE > max(prohibited
686      * label len) = 15, so size of val > max(prohibited label len) = 15 and
687      * the comparisons won't have buffer overflow
688      */
689     if (memcmp(val, TLS_MD_CLIENT_FINISH_CONST,
690                TLS_MD_CLIENT_FINISH_CONST_SIZE) == 0)
691         goto err1;
692     if (memcmp(val, TLS_MD_SERVER_FINISH_CONST,
693                TLS_MD_SERVER_FINISH_CONST_SIZE) == 0)
694         goto err1;
695     if (memcmp(val, TLS_MD_MASTER_SECRET_CONST,
696                TLS_MD_MASTER_SECRET_CONST_SIZE) == 0)
697         goto err1;
698     if (memcmp(val, TLS_MD_EXTENDED_MASTER_SECRET_CONST,
699                TLS_MD_EXTENDED_MASTER_SECRET_CONST_SIZE) == 0)
700         goto err1;
701     if (memcmp(val, TLS_MD_KEY_EXPANSION_CONST,
702                TLS_MD_KEY_EXPANSION_CONST_SIZE) == 0)
703         goto err1;
704
705     rv = tls1_PRF(s,
706                   val, vallen,
707                   NULL, 0,
708                   NULL, 0,
709                   NULL, 0,
710                   NULL, 0,
711                   s->session->master_key, s->session->master_key_length,
712                   out, olen);
713
714     goto ret;
715  err1:
716     SSLerr(SSL_F_TLS1_EXPORT_KEYING_MATERIAL,
717            SSL_R_TLS_ILLEGAL_EXPORTER_LABEL);
718     rv = 0;
719     goto ret;
720  err2:
721     SSLerr(SSL_F_TLS1_EXPORT_KEYING_MATERIAL, ERR_R_MALLOC_FAILURE);
722     rv = 0;
723  ret:
724     OPENSSL_clear_free(val, vallen);
725     return (rv);
726 }
727
728 int tls1_alert_code(int code)
729 {
730     switch (code) {
731     case SSL_AD_CLOSE_NOTIFY:
732         return (SSL3_AD_CLOSE_NOTIFY);
733     case SSL_AD_UNEXPECTED_MESSAGE:
734         return (SSL3_AD_UNEXPECTED_MESSAGE);
735     case SSL_AD_BAD_RECORD_MAC:
736         return (SSL3_AD_BAD_RECORD_MAC);
737     case SSL_AD_DECRYPTION_FAILED:
738         return (TLS1_AD_DECRYPTION_FAILED);
739     case SSL_AD_RECORD_OVERFLOW:
740         return (TLS1_AD_RECORD_OVERFLOW);
741     case SSL_AD_DECOMPRESSION_FAILURE:
742         return (SSL3_AD_DECOMPRESSION_FAILURE);
743     case SSL_AD_HANDSHAKE_FAILURE:
744         return (SSL3_AD_HANDSHAKE_FAILURE);
745     case SSL_AD_NO_CERTIFICATE:
746         return (-1);
747     case SSL_AD_BAD_CERTIFICATE:
748         return (SSL3_AD_BAD_CERTIFICATE);
749     case SSL_AD_UNSUPPORTED_CERTIFICATE:
750         return (SSL3_AD_UNSUPPORTED_CERTIFICATE);
751     case SSL_AD_CERTIFICATE_REVOKED:
752         return (SSL3_AD_CERTIFICATE_REVOKED);
753     case SSL_AD_CERTIFICATE_EXPIRED:
754         return (SSL3_AD_CERTIFICATE_EXPIRED);
755     case SSL_AD_CERTIFICATE_UNKNOWN:
756         return (SSL3_AD_CERTIFICATE_UNKNOWN);
757     case SSL_AD_ILLEGAL_PARAMETER:
758         return (SSL3_AD_ILLEGAL_PARAMETER);
759     case SSL_AD_UNKNOWN_CA:
760         return (TLS1_AD_UNKNOWN_CA);
761     case SSL_AD_ACCESS_DENIED:
762         return (TLS1_AD_ACCESS_DENIED);
763     case SSL_AD_DECODE_ERROR:
764         return (TLS1_AD_DECODE_ERROR);
765     case SSL_AD_DECRYPT_ERROR:
766         return (TLS1_AD_DECRYPT_ERROR);
767     case SSL_AD_EXPORT_RESTRICTION:
768         return (TLS1_AD_EXPORT_RESTRICTION);
769     case SSL_AD_PROTOCOL_VERSION:
770         return (TLS1_AD_PROTOCOL_VERSION);
771     case SSL_AD_INSUFFICIENT_SECURITY:
772         return (TLS1_AD_INSUFFICIENT_SECURITY);
773     case SSL_AD_INTERNAL_ERROR:
774         return (TLS1_AD_INTERNAL_ERROR);
775     case SSL_AD_USER_CANCELLED:
776         return (TLS1_AD_USER_CANCELLED);
777     case SSL_AD_NO_RENEGOTIATION:
778         return (TLS1_AD_NO_RENEGOTIATION);
779     case SSL_AD_UNSUPPORTED_EXTENSION:
780         return (TLS1_AD_UNSUPPORTED_EXTENSION);
781     case SSL_AD_CERTIFICATE_UNOBTAINABLE:
782         return (TLS1_AD_CERTIFICATE_UNOBTAINABLE);
783     case SSL_AD_UNRECOGNIZED_NAME:
784         return (TLS1_AD_UNRECOGNIZED_NAME);
785     case SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE:
786         return (TLS1_AD_BAD_CERTIFICATE_STATUS_RESPONSE);
787     case SSL_AD_BAD_CERTIFICATE_HASH_VALUE:
788         return (TLS1_AD_BAD_CERTIFICATE_HASH_VALUE);
789     case SSL_AD_UNKNOWN_PSK_IDENTITY:
790         return (TLS1_AD_UNKNOWN_PSK_IDENTITY);
791     case SSL_AD_INAPPROPRIATE_FALLBACK:
792         return (TLS1_AD_INAPPROPRIATE_FALLBACK);
793     case SSL_AD_NO_APPLICATION_PROTOCOL:
794         return (TLS1_AD_NO_APPLICATION_PROTOCOL);
795     default:
796         return (-1);
797     }
798 }