test/evp_test.c: improve output in case of errors.
[openssl.git] / ssl / t1_enc.c
1 /*
2  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 /* ====================================================================
11  * Copyright 2005 Nokia. All rights reserved.
12  *
13  * The portions of the attached software ("Contribution") is developed by
14  * Nokia Corporation and is licensed pursuant to the OpenSSL open source
15  * license.
16  *
17  * The Contribution, originally written by Mika Kousa and Pasi Eronen of
18  * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
19  * support (see RFC 4279) to OpenSSL.
20  *
21  * No patent licenses or other rights except those expressly stated in
22  * the OpenSSL open source license shall be deemed granted or received
23  * expressly, by implication, estoppel, or otherwise.
24  *
25  * No assurances are provided by Nokia that the Contribution does not
26  * infringe the patent or other intellectual property rights of any third
27  * party or that the license provides you with all the necessary rights
28  * to make use of the Contribution.
29  *
30  * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
31  * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
32  * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
33  * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
34  * OTHERWISE.
35  */
36
37 #include <stdio.h>
38 #include "ssl_locl.h"
39 #include <openssl/comp.h>
40 #include <openssl/evp.h>
41 #include <openssl/kdf.h>
42 #include <openssl/rand.h>
43
44 /* seed1 through seed5 are concatenated */
45 static int tls1_PRF(SSL *s,
46                     const void *seed1, size_t seed1_len,
47                     const void *seed2, size_t seed2_len,
48                     const void *seed3, size_t seed3_len,
49                     const void *seed4, size_t seed4_len,
50                     const void *seed5, size_t seed5_len,
51                     const unsigned char *sec, size_t slen,
52                     unsigned char *out, size_t olen)
53 {
54     const EVP_MD *md = ssl_prf_md(s);
55     EVP_PKEY_CTX *pctx = NULL;
56
57     int ret = 0;
58
59     if (md == NULL) {
60         /* Should never happen */
61         SSLerr(SSL_F_TLS1_PRF, ERR_R_INTERNAL_ERROR);
62         return 0;
63     }
64     pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_TLS1_PRF, NULL);
65     if (pctx == NULL || EVP_PKEY_derive_init(pctx) <= 0
66         || EVP_PKEY_CTX_set_tls1_prf_md(pctx, md) <= 0
67         || EVP_PKEY_CTX_set1_tls1_prf_secret(pctx, sec, (int)slen) <= 0)
68         goto err;
69
70     if (EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed1, (int)seed1_len) <= 0)
71         goto err;
72     if (EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed2, (int)seed2_len) <= 0)
73         goto err;
74     if (EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed3, (int)seed3_len) <= 0)
75         goto err;
76     if (EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed4, (int)seed4_len) <= 0)
77         goto err;
78     if (EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed5, (int)seed5_len) <= 0)
79         goto err;
80
81     if (EVP_PKEY_derive(pctx, out, &olen) <= 0)
82         goto err;
83     ret = 1;
84
85  err:
86     EVP_PKEY_CTX_free(pctx);
87     return ret;
88 }
89
90 static int tls1_generate_key_block(SSL *s, unsigned char *km, size_t num)
91 {
92     int ret;
93     ret = tls1_PRF(s,
94                    TLS_MD_KEY_EXPANSION_CONST,
95                    TLS_MD_KEY_EXPANSION_CONST_SIZE, s->s3->server_random,
96                    SSL3_RANDOM_SIZE, s->s3->client_random, SSL3_RANDOM_SIZE,
97                    NULL, 0, NULL, 0, s->session->master_key,
98                    s->session->master_key_length, km, num);
99
100     return ret;
101 }
102
103 int tls1_change_cipher_state(SSL *s, int which)
104 {
105     unsigned char *p, *mac_secret;
106     unsigned char tmp1[EVP_MAX_KEY_LENGTH];
107     unsigned char tmp2[EVP_MAX_KEY_LENGTH];
108     unsigned char iv1[EVP_MAX_IV_LENGTH * 2];
109     unsigned char iv2[EVP_MAX_IV_LENGTH * 2];
110     unsigned char *ms, *key, *iv;
111     EVP_CIPHER_CTX *dd;
112     const EVP_CIPHER *c;
113 #ifndef OPENSSL_NO_COMP
114     const SSL_COMP *comp;
115 #endif
116     const EVP_MD *m;
117     int mac_type;
118     size_t *mac_secret_size;
119     EVP_MD_CTX *mac_ctx;
120     EVP_PKEY *mac_key;
121     size_t n, i, j, k, cl;
122     int reuse_dd = 0;
123
124     c = s->s3->tmp.new_sym_enc;
125     m = s->s3->tmp.new_hash;
126     mac_type = s->s3->tmp.new_mac_pkey_type;
127 #ifndef OPENSSL_NO_COMP
128     comp = s->s3->tmp.new_compression;
129 #endif
130
131     if (which & SSL3_CC_READ) {
132         if (s->ext.use_etm)
133             s->s3->flags |= TLS1_FLAGS_ENCRYPT_THEN_MAC_READ;
134         else
135             s->s3->flags &= ~TLS1_FLAGS_ENCRYPT_THEN_MAC_READ;
136
137         if (s->s3->tmp.new_cipher->algorithm2 & TLS1_STREAM_MAC)
138             s->mac_flags |= SSL_MAC_FLAG_READ_MAC_STREAM;
139         else
140             s->mac_flags &= ~SSL_MAC_FLAG_READ_MAC_STREAM;
141
142         if (s->enc_read_ctx != NULL)
143             reuse_dd = 1;
144         else if ((s->enc_read_ctx = EVP_CIPHER_CTX_new()) == NULL)
145             goto err;
146         else
147             /*
148              * make sure it's initialised in case we exit later with an error
149              */
150             EVP_CIPHER_CTX_reset(s->enc_read_ctx);
151         dd = s->enc_read_ctx;
152         mac_ctx = ssl_replace_hash(&s->read_hash, NULL);
153         if (mac_ctx == NULL)
154             goto err;
155 #ifndef OPENSSL_NO_COMP
156         COMP_CTX_free(s->expand);
157         s->expand = NULL;
158         if (comp != NULL) {
159             s->expand = COMP_CTX_new(comp->method);
160             if (s->expand == NULL) {
161                 SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE,
162                        SSL_R_COMPRESSION_LIBRARY_ERROR);
163                 goto err2;
164             }
165         }
166 #endif
167         /*
168          * this is done by dtls1_reset_seq_numbers for DTLS
169          */
170         if (!SSL_IS_DTLS(s))
171             RECORD_LAYER_reset_read_sequence(&s->rlayer);
172         mac_secret = &(s->s3->read_mac_secret[0]);
173         mac_secret_size = &(s->s3->read_mac_secret_size);
174     } else {
175         if (s->ext.use_etm)
176             s->s3->flags |= TLS1_FLAGS_ENCRYPT_THEN_MAC_WRITE;
177         else
178             s->s3->flags &= ~TLS1_FLAGS_ENCRYPT_THEN_MAC_WRITE;
179
180         if (s->s3->tmp.new_cipher->algorithm2 & TLS1_STREAM_MAC)
181             s->mac_flags |= SSL_MAC_FLAG_WRITE_MAC_STREAM;
182         else
183             s->mac_flags &= ~SSL_MAC_FLAG_WRITE_MAC_STREAM;
184         if (s->enc_write_ctx != NULL && !SSL_IS_DTLS(s))
185             reuse_dd = 1;
186         else if ((s->enc_write_ctx = EVP_CIPHER_CTX_new()) == NULL)
187             goto err;
188         dd = s->enc_write_ctx;
189         if (SSL_IS_DTLS(s)) {
190             mac_ctx = EVP_MD_CTX_new();
191             if (mac_ctx == NULL)
192                 goto err;
193             s->write_hash = mac_ctx;
194         } else {
195             mac_ctx = ssl_replace_hash(&s->write_hash, NULL);
196             if (mac_ctx == NULL)
197                 goto err;
198         }
199 #ifndef OPENSSL_NO_COMP
200         COMP_CTX_free(s->compress);
201         s->compress = NULL;
202         if (comp != NULL) {
203             s->compress = COMP_CTX_new(comp->method);
204             if (s->compress == NULL) {
205                 SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE,
206                        SSL_R_COMPRESSION_LIBRARY_ERROR);
207                 goto err2;
208             }
209         }
210 #endif
211         /*
212          * this is done by dtls1_reset_seq_numbers for DTLS
213          */
214         if (!SSL_IS_DTLS(s))
215             RECORD_LAYER_reset_write_sequence(&s->rlayer);
216         mac_secret = &(s->s3->write_mac_secret[0]);
217         mac_secret_size = &(s->s3->write_mac_secret_size);
218     }
219
220     if (reuse_dd)
221         EVP_CIPHER_CTX_reset(dd);
222
223     p = s->s3->tmp.key_block;
224     i = *mac_secret_size = s->s3->tmp.new_mac_secret_size;
225
226     /* TODO(size_t): convert me */
227     cl = EVP_CIPHER_key_length(c);
228     j = cl;
229     /* Was j=(exp)?5:EVP_CIPHER_key_length(c); */
230     /* If GCM/CCM mode only part of IV comes from PRF */
231     if (EVP_CIPHER_mode(c) == EVP_CIPH_GCM_MODE)
232         k = EVP_GCM_TLS_FIXED_IV_LEN;
233     else if (EVP_CIPHER_mode(c) == EVP_CIPH_CCM_MODE)
234         k = EVP_CCM_TLS_FIXED_IV_LEN;
235     else
236         k = EVP_CIPHER_iv_length(c);
237     if ((which == SSL3_CHANGE_CIPHER_CLIENT_WRITE) ||
238         (which == SSL3_CHANGE_CIPHER_SERVER_READ)) {
239         ms = &(p[0]);
240         n = i + i;
241         key = &(p[n]);
242         n += j + j;
243         iv = &(p[n]);
244         n += k + k;
245     } else {
246         n = i;
247         ms = &(p[n]);
248         n += i + j;
249         key = &(p[n]);
250         n += j + k;
251         iv = &(p[n]);
252         n += k;
253     }
254
255     if (n > s->s3->tmp.key_block_length) {
256         SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
257         goto err2;
258     }
259
260     memcpy(mac_secret, ms, i);
261
262     if (!(EVP_CIPHER_flags(c) & EVP_CIPH_FLAG_AEAD_CIPHER)) {
263         /* TODO(size_t): Convert this function */
264         mac_key = EVP_PKEY_new_mac_key(mac_type, NULL,
265                                        mac_secret, (int)*mac_secret_size);
266         if (mac_key == NULL
267             || EVP_DigestSignInit(mac_ctx, NULL, m, NULL, mac_key) <= 0) {
268             EVP_PKEY_free(mac_key);
269             SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
270             goto err2;
271         }
272         EVP_PKEY_free(mac_key);
273     }
274 #ifdef SSL_DEBUG
275     printf("which = %04X\nmac key=", which);
276     {
277         size_t z;
278         for (z = 0; z < i; z++)
279             printf("%02X%c", ms[z], ((z + 1) % 16) ? ' ' : '\n');
280     }
281 #endif
282
283     if (EVP_CIPHER_mode(c) == EVP_CIPH_GCM_MODE) {
284         if (!EVP_CipherInit_ex(dd, c, NULL, key, NULL, (which & SSL3_CC_WRITE))
285             || !EVP_CIPHER_CTX_ctrl(dd, EVP_CTRL_GCM_SET_IV_FIXED, (int)k,
286                                     iv)) {
287             SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
288             goto err2;
289         }
290     } else if (EVP_CIPHER_mode(c) == EVP_CIPH_CCM_MODE) {
291         int taglen;
292         if (s->s3->tmp.
293             new_cipher->algorithm_enc & (SSL_AES128CCM8 | SSL_AES256CCM8))
294             taglen = EVP_CCM8_TLS_TAG_LEN;
295         else
296             taglen = EVP_CCM_TLS_TAG_LEN;
297         if (!EVP_CipherInit_ex(dd, c, NULL, NULL, NULL, (which & SSL3_CC_WRITE))
298             || !EVP_CIPHER_CTX_ctrl(dd, EVP_CTRL_AEAD_SET_IVLEN, 12, NULL)
299             || !EVP_CIPHER_CTX_ctrl(dd, EVP_CTRL_AEAD_SET_TAG, taglen, NULL)
300             || !EVP_CIPHER_CTX_ctrl(dd, EVP_CTRL_CCM_SET_IV_FIXED, (int)k, iv)
301             || !EVP_CipherInit_ex(dd, NULL, NULL, key, NULL, -1)) {
302             SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
303             goto err2;
304         }
305     } else {
306         if (!EVP_CipherInit_ex(dd, c, NULL, key, iv, (which & SSL3_CC_WRITE))) {
307             SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
308             goto err2;
309         }
310     }
311     /* Needed for "composite" AEADs, such as RC4-HMAC-MD5 */
312     if ((EVP_CIPHER_flags(c) & EVP_CIPH_FLAG_AEAD_CIPHER) && *mac_secret_size
313         && !EVP_CIPHER_CTX_ctrl(dd, EVP_CTRL_AEAD_SET_MAC_KEY,
314                                 (int)*mac_secret_size, mac_secret)) {
315         SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
316         goto err2;
317     }
318
319 #ifdef SSL_DEBUG
320     printf("which = %04X\nkey=", which);
321     {
322         int z;
323         for (z = 0; z < EVP_CIPHER_key_length(c); z++)
324             printf("%02X%c", key[z], ((z + 1) % 16) ? ' ' : '\n');
325     }
326     printf("\niv=");
327     {
328         size_t z;
329         for (z = 0; z < k; z++)
330             printf("%02X%c", iv[z], ((z + 1) % 16) ? ' ' : '\n');
331     }
332     printf("\n");
333 #endif
334
335     OPENSSL_cleanse(tmp1, sizeof(tmp1));
336     OPENSSL_cleanse(tmp2, sizeof(tmp1));
337     OPENSSL_cleanse(iv1, sizeof(iv1));
338     OPENSSL_cleanse(iv2, sizeof(iv2));
339     return (1);
340  err:
341     SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE, ERR_R_MALLOC_FAILURE);
342  err2:
343     OPENSSL_cleanse(tmp1, sizeof(tmp1));
344     OPENSSL_cleanse(tmp2, sizeof(tmp1));
345     OPENSSL_cleanse(iv1, sizeof(iv1));
346     OPENSSL_cleanse(iv2, sizeof(iv2));
347     return (0);
348 }
349
350 int tls1_setup_key_block(SSL *s)
351 {
352     unsigned char *p;
353     const EVP_CIPHER *c;
354     const EVP_MD *hash;
355     SSL_COMP *comp;
356     int mac_type = NID_undef;
357     size_t num, mac_secret_size = 0;
358     int ret = 0;
359
360     if (s->s3->tmp.key_block_length != 0)
361         return (1);
362
363     if (!ssl_cipher_get_evp(s->session, &c, &hash, &mac_type, &mac_secret_size,
364                             &comp, s->ext.use_etm)) {
365         SSLerr(SSL_F_TLS1_SETUP_KEY_BLOCK, SSL_R_CIPHER_OR_HASH_UNAVAILABLE);
366         return (0);
367     }
368
369     s->s3->tmp.new_sym_enc = c;
370     s->s3->tmp.new_hash = hash;
371     s->s3->tmp.new_mac_pkey_type = mac_type;
372     s->s3->tmp.new_mac_secret_size = mac_secret_size;
373     num = EVP_CIPHER_key_length(c) + mac_secret_size + EVP_CIPHER_iv_length(c);
374     num *= 2;
375
376     ssl3_cleanup_key_block(s);
377
378     if ((p = OPENSSL_malloc(num)) == NULL) {
379         SSLerr(SSL_F_TLS1_SETUP_KEY_BLOCK, ERR_R_MALLOC_FAILURE);
380         goto err;
381     }
382
383     s->s3->tmp.key_block_length = num;
384     s->s3->tmp.key_block = p;
385
386 #ifdef SSL_DEBUG
387     printf("client random\n");
388     {
389         int z;
390         for (z = 0; z < SSL3_RANDOM_SIZE; z++)
391             printf("%02X%c", s->s3->client_random[z],
392                    ((z + 1) % 16) ? ' ' : '\n');
393     }
394     printf("server random\n");
395     {
396         int z;
397         for (z = 0; z < SSL3_RANDOM_SIZE; z++)
398             printf("%02X%c", s->s3->server_random[z],
399                    ((z + 1) % 16) ? ' ' : '\n');
400     }
401     printf("master key\n");
402     {
403         size_t z;
404         for (z = 0; z < s->session->master_key_length; z++)
405             printf("%02X%c", s->session->master_key[z],
406                    ((z + 1) % 16) ? ' ' : '\n');
407     }
408 #endif
409     if (!tls1_generate_key_block(s, p, num))
410         goto err;
411 #ifdef SSL_DEBUG
412     printf("\nkey block\n");
413     {
414         size_t z;
415         for (z = 0; z < num; z++)
416             printf("%02X%c", p[z], ((z + 1) % 16) ? ' ' : '\n');
417     }
418 #endif
419
420     if (!(s->options & SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS)
421         && s->method->version <= TLS1_VERSION) {
422         /*
423          * enable vulnerability countermeasure for CBC ciphers with known-IV
424          * problem (http://www.openssl.org/~bodo/tls-cbc.txt)
425          */
426         s->s3->need_empty_fragments = 1;
427
428         if (s->session->cipher != NULL) {
429             if (s->session->cipher->algorithm_enc == SSL_eNULL)
430                 s->s3->need_empty_fragments = 0;
431
432 #ifndef OPENSSL_NO_RC4
433             if (s->session->cipher->algorithm_enc == SSL_RC4)
434                 s->s3->need_empty_fragments = 0;
435 #endif
436         }
437     }
438
439     ret = 1;
440  err:
441     return (ret);
442 }
443
444 size_t tls1_final_finish_mac(SSL *s, const char *str, size_t slen,
445                              unsigned char *out)
446 {
447     size_t hashlen;
448     unsigned char hash[EVP_MAX_MD_SIZE];
449
450     if (!ssl3_digest_cached_records(s, 0))
451         return 0;
452
453     if (!ssl_handshake_hash(s, hash, sizeof(hash), &hashlen))
454         return 0;
455
456     if (!tls1_PRF(s, str, slen, hash, hashlen, NULL, 0, NULL, 0, NULL, 0,
457                   s->session->master_key, s->session->master_key_length,
458                   out, TLS1_FINISH_MAC_LENGTH))
459         return 0;
460     OPENSSL_cleanse(hash, hashlen);
461     return TLS1_FINISH_MAC_LENGTH;
462 }
463
464 int tls1_generate_master_secret(SSL *s, unsigned char *out, unsigned char *p,
465                                 size_t len, size_t *secret_size)
466 {
467     if (s->session->flags & SSL_SESS_FLAG_EXTMS) {
468         unsigned char hash[EVP_MAX_MD_SIZE * 2];
469         size_t hashlen;
470         /*
471          * Digest cached records keeping record buffer (if present): this wont
472          * affect client auth because we're freezing the buffer at the same
473          * point (after client key exchange and before certificate verify)
474          */
475         if (!ssl3_digest_cached_records(s, 1))
476             return 0;
477         if(!ssl_handshake_hash(s, hash, sizeof(hash), &hashlen))
478             return 0;
479 #ifdef SSL_DEBUG
480         fprintf(stderr, "Handshake hashes:\n");
481         BIO_dump_fp(stderr, (char *)hash, hashlen);
482 #endif
483         tls1_PRF(s,
484                  TLS_MD_EXTENDED_MASTER_SECRET_CONST,
485                  TLS_MD_EXTENDED_MASTER_SECRET_CONST_SIZE,
486                  hash, hashlen,
487                  NULL, 0,
488                  NULL, 0,
489                  NULL, 0, p, len, s->session->master_key,
490                  SSL3_MASTER_SECRET_SIZE);
491         OPENSSL_cleanse(hash, hashlen);
492     } else {
493         tls1_PRF(s,
494                  TLS_MD_MASTER_SECRET_CONST,
495                  TLS_MD_MASTER_SECRET_CONST_SIZE,
496                  s->s3->client_random, SSL3_RANDOM_SIZE,
497                  NULL, 0,
498                  s->s3->server_random, SSL3_RANDOM_SIZE,
499                  NULL, 0, p, len, s->session->master_key,
500                  SSL3_MASTER_SECRET_SIZE);
501     }
502 #ifdef SSL_DEBUG
503     fprintf(stderr, "Premaster Secret:\n");
504     BIO_dump_fp(stderr, (char *)p, len);
505     fprintf(stderr, "Client Random:\n");
506     BIO_dump_fp(stderr, (char *)s->s3->client_random, SSL3_RANDOM_SIZE);
507     fprintf(stderr, "Server Random:\n");
508     BIO_dump_fp(stderr, (char *)s->s3->server_random, SSL3_RANDOM_SIZE);
509     fprintf(stderr, "Master Secret:\n");
510     BIO_dump_fp(stderr, (char *)s->session->master_key,
511                 SSL3_MASTER_SECRET_SIZE);
512 #endif
513
514     *secret_size = SSL3_MASTER_SECRET_SIZE;
515     return 1;
516 }
517
518 int tls1_export_keying_material(SSL *s, unsigned char *out, size_t olen,
519                                 const char *label, size_t llen,
520                                 const unsigned char *context,
521                                 size_t contextlen, int use_context)
522 {
523     unsigned char *val = NULL;
524     size_t vallen = 0, currentvalpos;
525     int rv;
526
527     /*
528      * construct PRF arguments we construct the PRF argument ourself rather
529      * than passing separate values into the TLS PRF to ensure that the
530      * concatenation of values does not create a prohibited label.
531      */
532     vallen = llen + SSL3_RANDOM_SIZE * 2;
533     if (use_context) {
534         vallen += 2 + contextlen;
535     }
536
537     val = OPENSSL_malloc(vallen);
538     if (val == NULL)
539         goto err2;
540     currentvalpos = 0;
541     memcpy(val + currentvalpos, (unsigned char *)label, llen);
542     currentvalpos += llen;
543     memcpy(val + currentvalpos, s->s3->client_random, SSL3_RANDOM_SIZE);
544     currentvalpos += SSL3_RANDOM_SIZE;
545     memcpy(val + currentvalpos, s->s3->server_random, SSL3_RANDOM_SIZE);
546     currentvalpos += SSL3_RANDOM_SIZE;
547
548     if (use_context) {
549         val[currentvalpos] = (contextlen >> 8) & 0xff;
550         currentvalpos++;
551         val[currentvalpos] = contextlen & 0xff;
552         currentvalpos++;
553         if ((contextlen > 0) || (context != NULL)) {
554             memcpy(val + currentvalpos, context, contextlen);
555         }
556     }
557
558     /*
559      * disallow prohibited labels note that SSL3_RANDOM_SIZE > max(prohibited
560      * label len) = 15, so size of val > max(prohibited label len) = 15 and
561      * the comparisons won't have buffer overflow
562      */
563     if (memcmp(val, TLS_MD_CLIENT_FINISH_CONST,
564                TLS_MD_CLIENT_FINISH_CONST_SIZE) == 0)
565         goto err1;
566     if (memcmp(val, TLS_MD_SERVER_FINISH_CONST,
567                TLS_MD_SERVER_FINISH_CONST_SIZE) == 0)
568         goto err1;
569     if (memcmp(val, TLS_MD_MASTER_SECRET_CONST,
570                TLS_MD_MASTER_SECRET_CONST_SIZE) == 0)
571         goto err1;
572     if (memcmp(val, TLS_MD_EXTENDED_MASTER_SECRET_CONST,
573                TLS_MD_EXTENDED_MASTER_SECRET_CONST_SIZE) == 0)
574         goto err1;
575     if (memcmp(val, TLS_MD_KEY_EXPANSION_CONST,
576                TLS_MD_KEY_EXPANSION_CONST_SIZE) == 0)
577         goto err1;
578
579     rv = tls1_PRF(s,
580                   val, vallen,
581                   NULL, 0,
582                   NULL, 0,
583                   NULL, 0,
584                   NULL, 0,
585                   s->session->master_key, s->session->master_key_length,
586                   out, olen);
587
588     goto ret;
589  err1:
590     SSLerr(SSL_F_TLS1_EXPORT_KEYING_MATERIAL, SSL_R_TLS_ILLEGAL_EXPORTER_LABEL);
591     rv = 0;
592     goto ret;
593  err2:
594     SSLerr(SSL_F_TLS1_EXPORT_KEYING_MATERIAL, ERR_R_MALLOC_FAILURE);
595     rv = 0;
596  ret:
597     OPENSSL_clear_free(val, vallen);
598     return (rv);
599 }
600
601 int tls1_alert_code(int code)
602 {
603     switch (code) {
604     case SSL_AD_CLOSE_NOTIFY:
605         return (SSL3_AD_CLOSE_NOTIFY);
606     case SSL_AD_UNEXPECTED_MESSAGE:
607         return (SSL3_AD_UNEXPECTED_MESSAGE);
608     case SSL_AD_BAD_RECORD_MAC:
609         return (SSL3_AD_BAD_RECORD_MAC);
610     case SSL_AD_DECRYPTION_FAILED:
611         return (TLS1_AD_DECRYPTION_FAILED);
612     case SSL_AD_RECORD_OVERFLOW:
613         return (TLS1_AD_RECORD_OVERFLOW);
614     case SSL_AD_DECOMPRESSION_FAILURE:
615         return (SSL3_AD_DECOMPRESSION_FAILURE);
616     case SSL_AD_HANDSHAKE_FAILURE:
617         return (SSL3_AD_HANDSHAKE_FAILURE);
618     case SSL_AD_NO_CERTIFICATE:
619         return (-1);
620     case SSL_AD_BAD_CERTIFICATE:
621         return (SSL3_AD_BAD_CERTIFICATE);
622     case SSL_AD_UNSUPPORTED_CERTIFICATE:
623         return (SSL3_AD_UNSUPPORTED_CERTIFICATE);
624     case SSL_AD_CERTIFICATE_REVOKED:
625         return (SSL3_AD_CERTIFICATE_REVOKED);
626     case SSL_AD_CERTIFICATE_EXPIRED:
627         return (SSL3_AD_CERTIFICATE_EXPIRED);
628     case SSL_AD_CERTIFICATE_UNKNOWN:
629         return (SSL3_AD_CERTIFICATE_UNKNOWN);
630     case SSL_AD_ILLEGAL_PARAMETER:
631         return (SSL3_AD_ILLEGAL_PARAMETER);
632     case SSL_AD_UNKNOWN_CA:
633         return (TLS1_AD_UNKNOWN_CA);
634     case SSL_AD_ACCESS_DENIED:
635         return (TLS1_AD_ACCESS_DENIED);
636     case SSL_AD_DECODE_ERROR:
637         return (TLS1_AD_DECODE_ERROR);
638     case SSL_AD_DECRYPT_ERROR:
639         return (TLS1_AD_DECRYPT_ERROR);
640     case SSL_AD_EXPORT_RESTRICTION:
641         return (TLS1_AD_EXPORT_RESTRICTION);
642     case SSL_AD_PROTOCOL_VERSION:
643         return (TLS1_AD_PROTOCOL_VERSION);
644     case SSL_AD_INSUFFICIENT_SECURITY:
645         return (TLS1_AD_INSUFFICIENT_SECURITY);
646     case SSL_AD_INTERNAL_ERROR:
647         return (TLS1_AD_INTERNAL_ERROR);
648     case SSL_AD_USER_CANCELLED:
649         return (TLS1_AD_USER_CANCELLED);
650     case SSL_AD_NO_RENEGOTIATION:
651         return (TLS1_AD_NO_RENEGOTIATION);
652     case SSL_AD_UNSUPPORTED_EXTENSION:
653         return (TLS1_AD_UNSUPPORTED_EXTENSION);
654     case SSL_AD_CERTIFICATE_UNOBTAINABLE:
655         return (TLS1_AD_CERTIFICATE_UNOBTAINABLE);
656     case SSL_AD_UNRECOGNIZED_NAME:
657         return (TLS1_AD_UNRECOGNIZED_NAME);
658     case SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE:
659         return (TLS1_AD_BAD_CERTIFICATE_STATUS_RESPONSE);
660     case SSL_AD_BAD_CERTIFICATE_HASH_VALUE:
661         return (TLS1_AD_BAD_CERTIFICATE_HASH_VALUE);
662     case SSL_AD_UNKNOWN_PSK_IDENTITY:
663         return (TLS1_AD_UNKNOWN_PSK_IDENTITY);
664     case SSL_AD_INAPPROPRIATE_FALLBACK:
665         return (TLS1_AD_INAPPROPRIATE_FALLBACK);
666     case SSL_AD_NO_APPLICATION_PROTOCOL:
667         return (TLS1_AD_NO_APPLICATION_PROTOCOL);
668     case SSL_AD_CERTIFICATE_REQUIRED:
669         return SSL_AD_HANDSHAKE_FAILURE;
670     default:
671         return (-1);
672     }
673 }