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
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
|
/*
* TLS Server
* (C) 2004-2010 Jack Lloyd
*
* Released under the terms of the Botan license
*/
#include <botan/tls_server.h>
#include <botan/internal/tls_alerts.h>
#include <botan/internal/tls_state.h>
#include <botan/loadstor.h>
#include <botan/rsa.h>
#include <botan/dh.h>
namespace Botan {
namespace {
/**
* Choose what version to respond with
*/
Version_Code choose_version(Version_Code client, Version_Code minimum)
{
if(client < minimum)
throw TLS_Exception(PROTOCOL_VERSION,
"Client version is unacceptable by policy");
if(client == SSL_V3 || client == TLS_V10 || client == TLS_V11)
return client;
return TLS_V11;
}
// FIXME: checks are wrong for session reuse (add a flag for that)
/**
* Verify the state transition is allowed
*/
void server_check_state(Handshake_Type new_msg, Handshake_State* state)
{
class State_Transition_Error : public Unexpected_Message
{
public:
State_Transition_Error(const std::string& err) :
Unexpected_Message("State transition error from " + err) {}
};
if(new_msg == CLIENT_HELLO || new_msg == CLIENT_HELLO_SSLV2)
{
if(state->server_hello)
throw State_Transition_Error("ClientHello");
}
else if(new_msg == CERTIFICATE)
{
if(!state->do_client_auth || !state->cert_req ||
!state->server_hello_done || state->client_kex)
throw State_Transition_Error("ClientCertificate");
}
else if(new_msg == CLIENT_KEX)
{
if(!state->server_hello_done || state->client_verify ||
state->got_client_ccs)
throw State_Transition_Error("ClientKeyExchange");
}
else if(new_msg == CERTIFICATE_VERIFY)
{
if(!state->cert_req || !state->client_certs || !state->client_kex ||
state->got_client_ccs)
throw State_Transition_Error("CertificateVerify");
}
else if(new_msg == HANDSHAKE_CCS)
{
if(!state->client_kex || state->client_finished)
throw State_Transition_Error("ClientChangeCipherSpec");
}
else if(new_msg == FINISHED)
{
if(!state->got_client_ccs)
throw State_Transition_Error("ClientFinished");
}
else
throw Unexpected_Message("Unexpected message in handshake");
}
}
/**
* TLS Server Constructor
*/
TLS_Server::TLS_Server(const TLS_Policy& pol,
RandomNumberGenerator& r,
Socket& sock,
const X509_Certificate& cert,
const Private_Key& key) :
policy(pol),
rng(r),
peer(sock),
writer(sock)
{
state = 0;
cert_chain.push_back(cert);
private_key = PKCS8::copy_key(key, rng);
try {
active = false;
writer.set_version(TLS_V10);
do_handshake();
active = true;
}
catch(std::exception& e)
{
if(state)
{
delete state;
state = 0;
}
writer.alert(FATAL, HANDSHAKE_FAILURE);
throw Stream_IO_Error(std::string("TLS_Server: Handshake failed: ") +
e.what());
}
}
/**
* TLS Server Destructor
*/
TLS_Server::~TLS_Server()
{
close();
delete private_key;
delete state;
}
/**
* Return the peer's certificate chain
*/
std::vector<X509_Certificate> TLS_Server::peer_cert_chain() const
{
return peer_certs;
}
/**
* Write to a TLS connection
*/
void TLS_Server::write(const byte buf[], u32bit length)
{
if(!active)
throw Internal_Error("TLS_Server::write called while closed");
writer.send(APPLICATION_DATA, buf, length);
}
/**
* Read from a TLS connection
*/
u32bit TLS_Server::read(byte out[], u32bit length)
{
if(!active)
throw Internal_Error("TLS_Server::read called while closed");
writer.flush();
while(read_buf.size() == 0)
{
state_machine();
if(active == false)
break;
}
u32bit got = std::min(read_buf.size(), length);
read_buf.read(out, got);
return got;
}
/**
* Check connection status
*/
bool TLS_Server::is_closed() const
{
if(!active)
return true;
return false;
}
/**
* Close a TLS connection
*/
void TLS_Server::close()
{
close(WARNING, CLOSE_NOTIFY);
}
/**
* Close a TLS connection
*/
void TLS_Server::close(Alert_Level level, Alert_Type alert_code)
{
if(active)
{
try {
active = false;
writer.alert(level, alert_code);
writer.flush();
}
catch(...) {}
}
}
/**
* Iterate the TLS state machine
*/
void TLS_Server::state_machine()
{
byte rec_type = CONNECTION_CLOSED;
SecureVector<byte> record(1024);
u32bit bytes_needed = reader.get_record(rec_type, record);
while(bytes_needed)
{
u32bit to_get = std::min<u32bit>(record.size(), bytes_needed);
u32bit got = peer.read(&record[0], to_get);
if(got == 0)
{
rec_type = CONNECTION_CLOSED;
break;
}
reader.add_input(&record[0], got);
bytes_needed = reader.get_record(rec_type, record);
}
if(rec_type == CONNECTION_CLOSED)
{
active = false;
reader.reset();
writer.reset();
}
else if(rec_type == APPLICATION_DATA)
{
if(active)
read_buf.write(&record[0], record.size());
else
throw Unexpected_Message("Application data before handshake done");
}
else if(rec_type == HANDSHAKE || rec_type == CHANGE_CIPHER_SPEC)
read_handshake(rec_type, record);
else if(rec_type == ALERT)
{
Alert alert(record);
if(alert.is_fatal() || alert.type() == CLOSE_NOTIFY)
{
if(alert.type() == CLOSE_NOTIFY)
writer.alert(WARNING, CLOSE_NOTIFY);
reader.reset();
writer.reset();
active = false;
}
}
else
throw Unexpected_Message("Unknown message type recieved");
}
/**
* Split up and process handshake messages
*/
void TLS_Server::read_handshake(byte rec_type,
const MemoryRegion<byte>& rec_buf)
{
if(rec_type == HANDSHAKE)
{
if(!state)
state = new Handshake_State;
state->queue.write(&rec_buf[0], rec_buf.size());
}
while(true)
{
Handshake_Type type = HANDSHAKE_NONE;
SecureVector<byte> contents;
if(rec_type == HANDSHAKE)
{
if(state->queue.size() >= 4)
{
byte head[4] = { 0 };
state->queue.peek(head, 4);
const u32bit length = make_u32bit(0, head[1], head[2], head[3]);
if(state->queue.size() >= length + 4)
{
type = static_cast<Handshake_Type>(head[0]);
contents.resize(length);
state->queue.read(head, 4);
state->queue.read(&contents[0], contents.size());
}
}
}
else if(rec_type == CHANGE_CIPHER_SPEC)
{
if(state->queue.size() == 0 && rec_buf.size() == 1 && rec_buf[0] == 1)
type = HANDSHAKE_CCS;
else
throw Decoding_Error("Malformed ChangeCipherSpec message");
}
else
throw Decoding_Error("Unknown message type in handshake processing");
if(type == HANDSHAKE_NONE)
break;
process_handshake_msg(type, contents);
if(type == HANDSHAKE_CCS || !state)
break;
}
}
/**
* Process a handshake message
*/
void TLS_Server::process_handshake_msg(Handshake_Type type,
const MemoryRegion<byte>& contents)
{
rng.add_entropy(&contents[0], contents.size());
if(state == 0)
throw Unexpected_Message("Unexpected handshake message");
if(type != HANDSHAKE_CCS && type != FINISHED)
{
if(type != CLIENT_HELLO_SSLV2)
{
state->hash.update(static_cast<byte>(type));
u32bit record_length = contents.size();
for(u32bit j = 0; j != 3; j++)
state->hash.update(get_byte(j+1, record_length));
}
state->hash.update(contents);
}
if(type == CLIENT_HELLO || type == CLIENT_HELLO_SSLV2)
{
server_check_state(type, state);
state->client_hello = new Client_Hello(contents, type);
client_requested_hostname = state->client_hello->hostname();
state->version = choose_version(state->client_hello->version(),
policy.min_version());
writer.set_version(state->version);
reader.set_version(state->version);
state->server_hello = new Server_Hello(rng, writer,
policy, cert_chain,
*(state->client_hello),
state->version, state->hash);
state->suite = CipherSuite(state->server_hello->ciphersuite());
if(state->suite.sig_type() != TLS_ALGO_SIGNER_ANON)
{
// FIXME: should choose certs based on sig type
state->server_certs = new Certificate(writer, cert_chain,
state->hash);
}
state->kex_priv = PKCS8::copy_key(*private_key, rng);
if(state->suite.kex_type() != TLS_ALGO_KEYEXCH_NOKEX)
{
if(state->suite.kex_type() == TLS_ALGO_KEYEXCH_RSA)
{
state->kex_priv = new RSA_PrivateKey(rng,
policy.rsa_export_keysize());
}
else if(state->suite.kex_type() == TLS_ALGO_KEYEXCH_DH)
{
state->kex_priv = new DH_PrivateKey(rng, policy.dh_group());
}
else
throw Internal_Error("TLS_Server: Unknown ciphersuite kex type");
state->server_kex =
new Server_Key_Exchange(rng, writer,
state->kex_priv, private_key,
state->client_hello->random(),
state->server_hello->random(),
state->hash);
}
if(policy.require_client_auth())
{
state->do_client_auth = true;
throw Internal_Error("Client auth not implemented");
// FIXME: send client auth request here
}
state->server_hello_done = new Server_Hello_Done(writer, state->hash);
}
else if(type == CERTIFICATE)
{
server_check_state(type, state);
// FIXME: process this
}
else if(type == CLIENT_KEX)
{
server_check_state(type, state);
state->client_kex = new Client_Key_Exchange(contents, state->suite,
state->version);
SecureVector<byte> pre_master =
state->client_kex->pre_master_secret(rng, state->kex_priv,
state->server_hello->version());
state->keys = SessionKeys(state->suite, state->version, pre_master,
state->client_hello->random(),
state->server_hello->random());
}
else if(type == CERTIFICATE_VERIFY)
{
server_check_state(type, state);
// FIXME: process this
}
else if(type == HANDSHAKE_CCS)
{
server_check_state(type, state);
reader.set_keys(state->suite, state->keys, SERVER);
state->got_client_ccs = true;
}
else if(type == FINISHED)
{
server_check_state(type, state);
state->client_finished = new Finished(contents);
if(!state->client_finished->verify(state->keys.master_secret(),
state->version, state->hash, CLIENT))
throw TLS_Exception(DECRYPT_ERROR,
"Finished message didn't verify");
state->hash.update(static_cast<byte>(type));
u32bit record_length = contents.size();
for(u32bit j = 0; j != 3; j++)
state->hash.update(get_byte(j+1, record_length));
state->hash.update(contents);
writer.send(CHANGE_CIPHER_SPEC, 1);
writer.flush();
writer.set_keys(state->suite, state->keys, SERVER);
state->server_finished = new Finished(writer, state->version, SERVER,
state->keys.master_secret(),
state->hash);
delete state;
state = 0;
active = true;
}
else
throw Unexpected_Message("Unknown handshake message recieved");
}
/**
* Perform a server-side TLS handshake
*/
void TLS_Server::do_handshake()
{
while(true)
{
if(active && !state)
break;
state_machine();
if(!active && !state)
throw TLS_Exception(HANDSHAKE_FAILURE, "TLS_Server: Handshake failed");
}
}
}
|