Coverage Report

Created: 2020-02-14 15:38

/src/botan/src/lib/tls/tls_session_key.cpp
Line
Count
Source (jump to first uncovered line)
1
/*
2
* TLS Session Key
3
* (C) 2004-2006,2011,2016,2019 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7
8
#include <botan/internal/tls_session_key.h>
9
#include <botan/internal/tls_handshake_state.h>
10
#include <botan/tls_messages.h>
11
#include <botan/kdf.h>
12
13
namespace Botan {
14
15
namespace TLS {
16
17
/**
18
* Session_Keys Constructor
19
*/
20
Session_Keys::Session_Keys(const Handshake_State* state,
21
                           const secure_vector<uint8_t>& pre_master_secret,
22
                           bool resuming)
23
14.9k
   {
24
14.9k
   const size_t cipher_keylen = state->ciphersuite().cipher_keylen();
25
14.9k
   const size_t mac_keylen = state->ciphersuite().mac_keylen();
26
14.9k
   const size_t cipher_nonce_bytes = state->ciphersuite().nonce_bytes_from_handshake();
27
14.9k
28
14.9k
   const bool extended_master_secret = state->server_hello()->supports_extended_master_secret();
29
14.9k
30
14.9k
   const size_t prf_gen = 2 * (mac_keylen + cipher_keylen + cipher_nonce_bytes);
31
14.9k
32
14.9k
   const uint8_t MASTER_SECRET_MAGIC[] = {
33
14.9k
      0x6D, 0x61, 0x73, 0x74, 0x65, 0x72, 0x20, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74 };
34
14.9k
35
14.9k
   const uint8_t EXT_MASTER_SECRET_MAGIC[] = {
36
14.9k
      0x65, 0x78, 0x74, 0x65, 0x6E, 0x64, 0x65, 0x64, 0x20,
37
14.9k
      0x6D, 0x61, 0x73, 0x74, 0x65, 0x72, 0x20, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74 };
38
14.9k
39
14.9k
   const uint8_t KEY_GEN_MAGIC[] = {
40
14.9k
      0x6B, 0x65, 0x79, 0x20, 0x65, 0x78, 0x70, 0x61, 0x6E, 0x73, 0x69, 0x6F, 0x6E };
41
14.9k
42
14.9k
   std::unique_ptr<KDF> prf(state->protocol_specific_prf());
43
14.9k
44
14.9k
   if(resuming)
45
0
      {
46
0
      // This is actually the master secret saved as part of the session
47
0
      m_master_sec = pre_master_secret;
48
0
      }
49
14.9k
   else
50
14.9k
      {
51
14.9k
      std::vector<uint8_t> salt;
52
14.9k
      std::vector<uint8_t> label;
53
14.9k
      if(extended_master_secret)
54
470
         {
55
470
         label.assign(EXT_MASTER_SECRET_MAGIC, EXT_MASTER_SECRET_MAGIC + sizeof(EXT_MASTER_SECRET_MAGIC));
56
470
         salt += state->hash().final(state->version(),
57
470
                                     state->ciphersuite().prf_algo());
58
470
         }
59
14.4k
      else
60
14.4k
         {
61
14.4k
         label.assign(MASTER_SECRET_MAGIC, MASTER_SECRET_MAGIC + sizeof(MASTER_SECRET_MAGIC));
62
14.4k
         salt += state->client_hello()->random();
63
14.4k
         salt += state->server_hello()->random();
64
14.4k
         }
65
14.9k
66
14.9k
      m_master_sec = prf->derive_key(48, pre_master_secret, salt, label);
67
14.9k
      }
68
14.9k
69
14.9k
   std::vector<uint8_t> salt;
70
14.9k
   std::vector<uint8_t> label;
71
14.9k
   label.assign(KEY_GEN_MAGIC, KEY_GEN_MAGIC + sizeof(KEY_GEN_MAGIC));
72
14.9k
   salt += state->server_hello()->random();
73
14.9k
   salt += state->client_hello()->random();
74
14.9k
75
14.9k
   const secure_vector<uint8_t> prf_output = prf->derive_key(
76
14.9k
      prf_gen,
77
14.9k
      m_master_sec.data(), m_master_sec.size(),
78
14.9k
      salt.data(), salt.size(),
79
14.9k
      label.data(), label.size());
80
14.9k
81
14.9k
   const uint8_t* key_data = prf_output.data();
82
14.9k
83
14.9k
   m_c_aead.resize(mac_keylen + cipher_keylen);
84
14.9k
   m_s_aead.resize(mac_keylen + cipher_keylen);
85
14.9k
86
14.9k
   copy_mem(&m_c_aead[0], key_data, mac_keylen);
87
14.9k
   copy_mem(&m_s_aead[0], key_data + mac_keylen, mac_keylen);
88
14.9k
89
14.9k
   copy_mem(&m_c_aead[mac_keylen], key_data + 2*mac_keylen, cipher_keylen);
90
14.9k
   copy_mem(&m_s_aead[mac_keylen], key_data + 2*mac_keylen + cipher_keylen, cipher_keylen);
91
14.9k
92
14.9k
   m_c_nonce.resize(cipher_nonce_bytes);
93
14.9k
   m_s_nonce.resize(cipher_nonce_bytes);
94
14.9k
95
14.9k
   copy_mem(&m_c_nonce[0], key_data + 2*(mac_keylen + cipher_keylen), cipher_nonce_bytes);
96
14.9k
   copy_mem(&m_s_nonce[0], key_data + 2*(mac_keylen + cipher_keylen) + cipher_nonce_bytes, cipher_nonce_bytes);
97
14.9k
   }
98
99
}
100
101
}