1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
|
/*
* TLS Record Handling
* (C) 2012 Jack Lloyd
*
* Released under the terms of the Botan license
*/
#include <botan/internal/tls_record.h>
#include <botan/libstate.h>
#include <botan/loadstor.h>
#include <botan/internal/tls_session_key.h>
#include <botan/internal/rounding.h>
#include <botan/internal/assert.h>
#include <botan/internal/xor_buf.h>
namespace Botan {
namespace TLS {
Connection_Cipher_State::Connection_Cipher_State(
Protocol_Version version,
Connection_Side side,
const Ciphersuite& suite,
const Session_Keys& keys)
{
SymmetricKey mac_key, cipher_key;
InitializationVector iv;
if(side == CLIENT)
{
cipher_key = keys.client_cipher_key();
iv = keys.client_iv();
mac_key = keys.client_mac_key();
}
else
{
cipher_key = keys.server_cipher_key();
iv = keys.server_iv();
mac_key = keys.server_mac_key();
}
const std::string cipher_algo = suite.cipher_algo();
const std::string mac_algo = suite.mac_algo();
Algorithm_Factory& af = global_state().algorithm_factory();
if(const BlockCipher* bc = af.prototype_block_cipher(cipher_algo))
{
m_block_cipher.reset(bc->clone());
m_block_cipher->set_key(cipher_key);
m_block_cipher_cbc_state = iv.bits_of();
m_block_size = bc->block_size();
if(version.supports_explicit_cbc_ivs())
m_iv_size = m_block_size;
else
m_iv_size = 0;
}
else if(const StreamCipher* sc = af.prototype_stream_cipher(cipher_algo))
{
m_stream_cipher.reset(sc->clone());
m_stream_cipher->set_key(cipher_key);
m_block_size = 0;
m_iv_size = 0;
}
else
throw Invalid_Argument("Unknown TLS cipher " + cipher_algo);
if(version == Protocol_Version::SSL_V3)
m_mac.reset(af.make_mac("SSL3-MAC(" + mac_algo + ")"));
else
m_mac.reset(af.make_mac("HMAC(" + mac_algo + ")"));
m_mac->set_key(mac_key);
}
void write_record(std::vector<byte>& output,
byte msg_type, const byte msg[], size_t msg_length,
u64bit msg_sequence_number,
Protocol_Version version,
Connection_Cipher_State* cipherstate,
RandomNumberGenerator& rng)
{
output.clear();
output.push_back(msg_type);
output.push_back(version.major_version());
output.push_back(version.minor_version());
if(!cipherstate) // initial unencrypted handshake records
{
output.push_back(get_byte<u16bit>(0, msg_length));
output.push_back(get_byte<u16bit>(1, msg_length));
output.insert(output.end(), &msg[0], &msg[msg_length]);
return;
}
cipherstate->mac()->update_be(msg_sequence_number);
cipherstate->mac()->update(msg_type);
if(version != Protocol_Version::SSL_V3)
{
cipherstate->mac()->update(version.major_version());
cipherstate->mac()->update(version.minor_version());
}
cipherstate->mac()->update(get_byte<u16bit>(0, msg_length));
cipherstate->mac()->update(get_byte<u16bit>(1, msg_length));
cipherstate->mac()->update(msg, msg_length);
const size_t block_size = cipherstate->block_size();
const size_t iv_size = cipherstate->iv_size();
const size_t mac_size = cipherstate->mac_size();
const size_t buf_size = round_up(
iv_size + msg_length + mac_size + (block_size ? 1 : 0),
block_size);
if(buf_size >= MAX_CIPHERTEXT_SIZE)
throw Internal_Error("Output record is larger than allowed by protocol");
output.push_back(get_byte<u16bit>(0, buf_size));
output.push_back(get_byte<u16bit>(1, buf_size));
const size_t header_size = output.size();
if(iv_size)
{
output.resize(output.size() + iv_size);
rng.randomize(&output[output.size() - iv_size], iv_size);
}
output.insert(output.end(), &msg[0], &msg[msg_length]);
output.resize(output.size() + mac_size);
cipherstate->mac()->final(&output[output.size() - mac_size]);
if(block_size)
{
const size_t pad_val =
buf_size - (iv_size + msg_length + mac_size + 1);
for(size_t i = 0; i != pad_val + 1; ++i)
output.push_back(pad_val);
}
if(buf_size > MAX_CIPHERTEXT_SIZE)
throw Internal_Error("Produced ciphertext larger than protocol allows");
if(StreamCipher* sc = cipherstate->stream_cipher())
{
sc->cipher1(&output[header_size], buf_size);
}
else if(BlockCipher* bc = cipherstate->block_cipher())
{
secure_vector<byte>& cbc_state = cipherstate->cbc_state();
BOTAN_ASSERT(buf_size % block_size == 0,
"Buffer is an even multiple of block size");
byte* buf = &output[header_size];
const size_t blocks = buf_size / block_size;
xor_buf(&buf[0], &cbc_state[0], block_size);
bc->encrypt(&buf[0]);
for(size_t i = 1; i <= blocks; ++i)
{
xor_buf(&buf[block_size*i], &buf[block_size*(i-1)], block_size);
bc->encrypt(&buf[block_size*i]);
}
cbc_state.assign(&buf[block_size*(blocks-1)],
&buf[block_size*blocks]);
}
else
throw Internal_Error("NULL cipher not supported");
}
namespace {
size_t fill_buffer_to(std::vector<byte>& readbuf,
size_t& readbuf_pos,
const byte*& input,
size_t& input_size,
size_t& input_consumed,
size_t desired)
{
if(desired <= readbuf_pos)
return 0; // already have it
const size_t space_available = (readbuf.size() - readbuf_pos);
const size_t taken = std::min(input_size, desired - readbuf_pos);
if(taken > space_available)
throw TLS_Exception(Alert::RECORD_OVERFLOW,
"Record is larger than allowed maximum size");
copy_mem(&readbuf[readbuf_pos], input, taken);
readbuf_pos += taken;
input_consumed += taken;
input_size -= taken;
input += taken;
return (desired - readbuf_pos); // how many bytes do we still need?
}
/*
* Checks the TLS padding. Returns 0 if the padding is invalid (we
* count the padding_length field as part of the padding size so a
* valid padding will always be at least one byte long), or the
* length of the padding otherwise.
*
* Returning 0 in the error case should ensure the MAC check will fail.
* This approach is suggested in section 6.2.3.2 of RFC 5246.
*
* Also returns 0 if block_size == 0, so can be safely called with a
* stream cipher in use.
*/
size_t tls_padding_check(Protocol_Version version,
size_t block_size,
const byte record[],
size_t record_len)
{
if(block_size == 0 || record_len == 0 || record_len % block_size != 0)
return 0;
const size_t padding_length = record[(record_len-1)];
if(padding_length >= record_len)
return 0;
/*
* SSL v3 requires that the padding be less than the block size
* but not does specify the value of the padding bytes.
*/
if(version == Protocol_Version::SSL_V3)
{
if(padding_length > 0 && padding_length < block_size)
return (padding_length + 1);
else
return 0;
}
/*
* TLS v1.0 and up require all the padding bytes be the same value
* and allows up to 255 bytes.
*/
for(size_t i = 0; i != padding_length; ++i)
if(record[(record_len-i-1)] != padding_length)
return 0;
return padding_length + 1;
}
}
size_t read_record(std::vector<byte>& readbuf,
size_t& readbuf_pos,
const byte input[],
size_t input_sz,
size_t& consumed,
byte& msg_type,
std::vector<byte>& msg,
u64bit msg_sequence,
Protocol_Version version,
Connection_Cipher_State* cipherstate)
{
consumed = 0;
const size_t header_size =
(version.is_datagram_protocol()) ? DTLS_HEADER_SIZE : TLS_HEADER_SIZE;
if(readbuf_pos < header_size) // header incomplete?
{
if(size_t needed = fill_buffer_to(readbuf, readbuf_pos,
input, input_sz, consumed,
header_size))
return needed;
BOTAN_ASSERT_EQUAL(readbuf_pos, header_size,
"Have an entire header");
}
// Possible SSLv2 format client hello
if((!cipherstate) && (readbuf[0] & 0x80) && (readbuf[2] == 1))
{
if(version.is_datagram_protocol())
throw TLS_Exception(Alert::PROTOCOL_VERSION,
"Client sent SSLv2-style DTLS hello");
if(readbuf[3] == 0 && readbuf[4] == 2)
throw TLS_Exception(Alert::PROTOCOL_VERSION,
"Client claims to only support SSLv2, rejecting");
if(readbuf[3] >= 3) // SSLv2 mapped TLS hello, then?
{
const size_t record_len = make_u16bit(readbuf[0], readbuf[1]) & 0x7FFF;
if(size_t needed = fill_buffer_to(readbuf, readbuf_pos,
input, input_sz, consumed,
record_len + 2))
return needed;
BOTAN_ASSERT_EQUAL(readbuf_pos, (record_len + 2),
"Have the entire SSLv2 hello");
msg_type = HANDSHAKE;
msg.resize(record_len + 4);
// Fake v3-style handshake message wrapper
msg[0] = CLIENT_HELLO_SSLV2;
msg[1] = 0;
msg[2] = readbuf[0] & 0x7F;
msg[3] = readbuf[1];
copy_mem(&msg[4], &readbuf[2], readbuf_pos - 2);
readbuf_pos = 0;
return 0;
}
}
if(readbuf[0] != CHANGE_CIPHER_SPEC &&
readbuf[0] != ALERT &&
readbuf[0] != HANDSHAKE &&
readbuf[0] != APPLICATION_DATA &&
readbuf[0] != HEARTBEAT)
{
throw Unexpected_Message(
"Unknown record type " + std::to_string(readbuf[0]) +
" from counterparty");
}
const size_t record_len = make_u16bit(readbuf[3], readbuf[4]);
if(version.major_version())
{
if(readbuf[1] != version.major_version() ||
readbuf[2] != version.minor_version())
{
throw TLS_Exception(Alert::PROTOCOL_VERSION,
"Got unexpected version from counterparty");
}
}
if(record_len > MAX_CIPHERTEXT_SIZE)
throw TLS_Exception(Alert::RECORD_OVERFLOW,
"Got message that exceeds maximum size");
if(size_t needed = fill_buffer_to(readbuf, readbuf_pos,
input, input_sz, consumed,
header_size + record_len))
return needed;
BOTAN_ASSERT_EQUAL(static_cast<size_t>(header_size) + record_len,
readbuf_pos,
"Have the full record");
byte* record_contents = &readbuf[header_size];
if(!cipherstate) // Only handshake messages allowed here
{
if(readbuf[0] != CHANGE_CIPHER_SPEC &&
readbuf[0] != ALERT &&
readbuf[0] != HANDSHAKE)
{
throw Decoding_Error("Invalid msg type received during handshake");
}
msg_type = readbuf[0];
msg.resize(record_len);
copy_mem(&msg[0], record_contents, record_len);
readbuf_pos = 0;
return 0; // got a full record
}
// Otherwise, decrypt, check MAC, return plaintext
const size_t block_size = cipherstate->block_size();
const size_t iv_size = cipherstate->iv_size();
const size_t mac_size = cipherstate->mac_size();
if(StreamCipher* sc = cipherstate->stream_cipher())
{
sc->cipher1(record_contents, record_len);
}
else if(BlockCipher* bc = cipherstate->block_cipher())
{
secure_vector<byte>& cbc_state = cipherstate->cbc_state();
BOTAN_ASSERT(record_len % block_size == 0,
"Buffer is an even multiple of block size");
byte* buf = record_contents;
const size_t blocks = record_len / block_size;
secure_vector<byte> last_ciphertext(block_size);
copy_mem(&last_ciphertext[0], &buf[0], block_size);
bc->decrypt(&buf[0]);
xor_buf(&buf[0], &cbc_state[0], block_size);
secure_vector<byte> last_ciphertext2;
for(size_t i = 1; i <= blocks; ++i)
{
last_ciphertext2.assign(&buf[block_size*i], &buf[block_size*(i+1)]);
bc->decrypt(&buf[block_size*i]);
xor_buf(&buf[block_size*i], &last_ciphertext[0], block_size);
std::swap(last_ciphertext, last_ciphertext2);
}
cbc_state = last_ciphertext;
}
else
throw Internal_Error("NULL cipher not supported");
/*
* This is actually padding_length + 1 because both the padding and
* padding_length fields are padding from our perspective.
*/
const size_t pad_size =
tls_padding_check(version, block_size,
record_contents, record_len);
const size_t mac_pad_iv_size = mac_size + pad_size + iv_size;
if(record_len < mac_pad_iv_size)
throw Decoding_Error("Record sent with invalid length");
cipherstate->mac()->update_be(msg_sequence);
cipherstate->mac()->update(readbuf[0]); // msg_type
if(version != Protocol_Version::SSL_V3)
{
cipherstate->mac()->update(version.major_version());
cipherstate->mac()->update(version.minor_version());
}
const u16bit plain_length = record_len - mac_pad_iv_size;
cipherstate->mac()->update_be(plain_length);
cipherstate->mac()->update(&record_contents[iv_size], plain_length);
std::vector<byte> mac_buf(mac_size);
cipherstate->mac()->final(&mac_buf[0]);
const size_t mac_offset = record_len - (mac_size + pad_size);
if(!same_mem(&record_contents[mac_offset], &mac_buf[0], mac_size))
throw TLS_Exception(Alert::BAD_RECORD_MAC, "Message authentication failure");
msg_type = readbuf[0];
msg.assign(&record_contents[iv_size],
&record_contents[iv_size + plain_length]);
readbuf_pos = 0;
return 0;
}
}
}
|