Coverage Report

Created: 2018-08-29 13:53

/src/openssl/ssl/statem/statem_clnt.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
3
 * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
4
 * Copyright 2005 Nokia. All rights reserved.
5
 *
6
 * Licensed under the OpenSSL license (the "License").  You may not use
7
 * this file except in compliance with the License.  You can obtain a copy
8
 * in the file LICENSE in the source distribution or at
9
 * https://www.openssl.org/source/license.html
10
 */
11
12
#include <stdio.h>
13
#include <time.h>
14
#include <assert.h>
15
#include "../ssl_locl.h"
16
#include "statem_locl.h"
17
#include <openssl/buffer.h>
18
#include <openssl/rand.h>
19
#include <openssl/objects.h>
20
#include <openssl/evp.h>
21
#include <openssl/md5.h>
22
#include <openssl/dh.h>
23
#include <openssl/bn.h>
24
#include <openssl/engine.h>
25
#include <internal/cryptlib.h>
26
27
static MSG_PROCESS_RETURN tls_process_as_hello_retry_request(SSL *s, PACKET *pkt);
28
static MSG_PROCESS_RETURN tls_process_encrypted_extensions(SSL *s, PACKET *pkt);
29
30
static ossl_inline int cert_req_allowed(SSL *s);
31
static int key_exchange_expected(SSL *s);
32
static int ssl_cipher_list_to_bytes(SSL *s, STACK_OF(SSL_CIPHER) *sk,
33
                                    WPACKET *pkt);
34
35
/*
36
 * Is a CertificateRequest message allowed at the moment or not?
37
 *
38
 *  Return values are:
39
 *  1: Yes
40
 *  0: No
41
 */
42
static ossl_inline int cert_req_allowed(SSL *s)
43
0
{
44
0
    /* TLS does not like anon-DH with client cert */
45
0
    if ((s->version > SSL3_VERSION
46
0
         && (s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL))
47
0
        || (s->s3->tmp.new_cipher->algorithm_auth & (SSL_aSRP | SSL_aPSK)))
48
0
        return 0;
49
0
50
0
    return 1;
51
0
}
52
53
/*
54
 * Should we expect the ServerKeyExchange message or not?
55
 *
56
 *  Return values are:
57
 *  1: Yes
58
 *  0: No
59
 */
60
static int key_exchange_expected(SSL *s)
61
0
{
62
0
    long alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
63
0
64
0
    /*
65
0
     * Can't skip server key exchange if this is an ephemeral
66
0
     * ciphersuite or for SRP
67
0
     */
68
0
    if (alg_k & (SSL_kDHE | SSL_kECDHE | SSL_kDHEPSK | SSL_kECDHEPSK
69
0
                 | SSL_kSRP)) {
70
0
        return 1;
71
0
    }
72
0
73
0
    return 0;
74
0
}
75
76
/*
77
 * ossl_statem_client_read_transition() encapsulates the logic for the allowed
78
 * handshake state transitions when a TLS1.3 client is reading messages from the
79
 * server. The message type that the server has sent is provided in |mt|. The
80
 * current state is in |s->statem.hand_state|.
81
 *
82
 * Return values are 1 for success (transition allowed) and  0 on error
83
 * (transition not allowed)
84
 */
85
static int ossl_statem_client13_read_transition(SSL *s, int mt)
86
0
{
87
0
    OSSL_STATEM *st = &s->statem;
88
0
89
0
    /*
90
0
     * Note: There is no case for TLS_ST_CW_CLNT_HELLO, because we haven't
91
0
     * yet negotiated TLSv1.3 at that point so that is handled by
92
0
     * ossl_statem_client_read_transition()
93
0
     */
94
0
95
0
    switch (st->hand_state) {
96
0
    default:
97
0
        break;
98
0
99
0
    case TLS_ST_CW_CLNT_HELLO:
100
0
        /*
101
0
         * This must a ClientHello following a HelloRetryRequest, so the only
102
0
         * thing we can get now is a ServerHello.
103
0
         */
104
0
        if (mt == SSL3_MT_SERVER_HELLO) {
105
0
            st->hand_state = TLS_ST_CR_SRVR_HELLO;
106
0
            return 1;
107
0
        }
108
0
        break;
109
0
110
0
    case TLS_ST_CR_SRVR_HELLO:
111
0
        if (mt == SSL3_MT_ENCRYPTED_EXTENSIONS) {
112
0
            st->hand_state = TLS_ST_CR_ENCRYPTED_EXTENSIONS;
113
0
            return 1;
114
0
        }
115
0
        break;
116
0
117
0
    case TLS_ST_CR_ENCRYPTED_EXTENSIONS:
118
0
        if (s->hit) {
119
0
            if (mt == SSL3_MT_FINISHED) {
120
0
                st->hand_state = TLS_ST_CR_FINISHED;
121
0
                return 1;
122
0
            }
123
0
        } else {
124
0
            if (mt == SSL3_MT_CERTIFICATE_REQUEST) {
125
0
                st->hand_state = TLS_ST_CR_CERT_REQ;
126
0
                return 1;
127
0
            }
128
0
            if (mt == SSL3_MT_CERTIFICATE) {
129
0
                st->hand_state = TLS_ST_CR_CERT;
130
0
                return 1;
131
0
            }
132
0
        }
133
0
        break;
134
0
135
0
    case TLS_ST_CR_CERT_REQ:
136
0
        if (mt == SSL3_MT_CERTIFICATE) {
137
0
            st->hand_state = TLS_ST_CR_CERT;
138
0
            return 1;
139
0
        }
140
0
        break;
141
0
142
0
    case TLS_ST_CR_CERT:
143
0
        if (mt == SSL3_MT_CERTIFICATE_VERIFY) {
144
0
            st->hand_state = TLS_ST_CR_CERT_VRFY;
145
0
            return 1;
146
0
        }
147
0
        break;
148
0
149
0
    case TLS_ST_CR_CERT_VRFY:
150
0
        if (mt == SSL3_MT_FINISHED) {
151
0
            st->hand_state = TLS_ST_CR_FINISHED;
152
0
            return 1;
153
0
        }
154
0
        break;
155
0
156
0
    case TLS_ST_OK:
157
0
        if (mt == SSL3_MT_NEWSESSION_TICKET) {
158
0
            st->hand_state = TLS_ST_CR_SESSION_TICKET;
159
0
            return 1;
160
0
        }
161
0
        if (mt == SSL3_MT_KEY_UPDATE) {
162
0
            st->hand_state = TLS_ST_CR_KEY_UPDATE;
163
0
            return 1;
164
0
        }
165
0
        if (mt == SSL3_MT_CERTIFICATE_REQUEST) {
166
#if DTLS_MAX_VERSION != DTLS1_2_VERSION
167
# error TODO(DTLS1.3): Restore digest for PHA before adding message.
168
#endif
169
0
            if (!SSL_IS_DTLS(s) && s->post_handshake_auth == SSL_PHA_EXT_SENT) {
170
0
                s->post_handshake_auth = SSL_PHA_REQUESTED;
171
0
                /*
172
0
                 * In TLS, this is called before the message is added to the
173
0
                 * digest. In DTLS, this is expected to be called after adding
174
0
                 * to the digest. Either move the digest restore, or add the
175
0
                 * message here after the swap, or do it after the clientFinished?
176
0
                 */
177
0
                if (!tls13_restore_handshake_digest_for_pha(s)) {
178
0
                    /* SSLfatal() already called */
179
0
                    return 0;
180
0
                }
181
0
                st->hand_state = TLS_ST_CR_CERT_REQ;
182
0
                return 1;
183
0
            }
184
0
        }
185
0
        break;
186
0
    }
187
0
188
0
    /* No valid transition found */
189
0
    return 0;
190
0
}
191
192
/*
193
 * ossl_statem_client_read_transition() encapsulates the logic for the allowed
194
 * handshake state transitions when the client is reading messages from the
195
 * server. The message type that the server has sent is provided in |mt|. The
196
 * current state is in |s->statem.hand_state|.
197
 *
198
 * Return values are 1 for success (transition allowed) and  0 on error
199
 * (transition not allowed)
200
 */
201
int ossl_statem_client_read_transition(SSL *s, int mt)
202
0
{
203
0
    OSSL_STATEM *st = &s->statem;
204
0
    int ske_expected;
205
0
206
0
    /*
207
0
     * Note that after writing the first ClientHello we don't know what version
208
0
     * we are going to negotiate yet, so we don't take this branch until later.
209
0
     */
210
0
    if (SSL_IS_TLS13(s)) {
211
0
        if (!ossl_statem_client13_read_transition(s, mt))
212
0
            goto err;
213
0
        return 1;
214
0
    }
215
0
216
0
    switch (st->hand_state) {
217
0
    default:
218
0
        break;
219
0
220
0
    case TLS_ST_CW_CLNT_HELLO:
221
0
        if (mt == SSL3_MT_SERVER_HELLO) {
222
0
            st->hand_state = TLS_ST_CR_SRVR_HELLO;
223
0
            return 1;
224
0
        }
225
0
226
0
        if (SSL_IS_DTLS(s)) {
227
0
            if (mt == DTLS1_MT_HELLO_VERIFY_REQUEST) {
228
0
                st->hand_state = DTLS_ST_CR_HELLO_VERIFY_REQUEST;
229
0
                return 1;
230
0
            }
231
0
        }
232
0
        break;
233
0
234
0
    case TLS_ST_EARLY_DATA:
235
0
        /*
236
0
         * We've not actually selected TLSv1.3 yet, but we have sent early
237
0
         * data. The only thing allowed now is a ServerHello or a
238
0
         * HelloRetryRequest.
239
0
         */
240
0
        if (mt == SSL3_MT_SERVER_HELLO) {
241
0
            st->hand_state = TLS_ST_CR_SRVR_HELLO;
242
0
            return 1;
243
0
        }
244
0
        break;
245
0
246
0
    case TLS_ST_CR_SRVR_HELLO:
247
0
        if (s->hit) {
248
0
            if (s->ext.ticket_expected) {
249
0
                if (mt == SSL3_MT_NEWSESSION_TICKET) {
250
0
                    st->hand_state = TLS_ST_CR_SESSION_TICKET;
251
0
                    return 1;
252
0
                }
253
0
            } else if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
254
0
                st->hand_state = TLS_ST_CR_CHANGE;
255
0
                return 1;
256
0
            }
257
0
        } else {
258
0
            if (SSL_IS_DTLS(s) && mt == DTLS1_MT_HELLO_VERIFY_REQUEST) {
259
0
                st->hand_state = DTLS_ST_CR_HELLO_VERIFY_REQUEST;
260
0
                return 1;
261
0
            } else if (s->version >= TLS1_VERSION
262
0
                       && s->ext.session_secret_cb != NULL
263
0
                       && s->session->ext.tick != NULL
264
0
                       && mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
265
0
                /*
266
0
                 * Normally, we can tell if the server is resuming the session
267
0
                 * from the session ID. EAP-FAST (RFC 4851), however, relies on
268
0
                 * the next server message after the ServerHello to determine if
269
0
                 * the server is resuming.
270
0
                 */
271
0
                s->hit = 1;
272
0
                st->hand_state = TLS_ST_CR_CHANGE;
273
0
                return 1;
274
0
            } else if (!(s->s3->tmp.new_cipher->algorithm_auth
275
0
                         & (SSL_aNULL | SSL_aSRP | SSL_aPSK))) {
276
0
                if (mt == SSL3_MT_CERTIFICATE) {
277
0
                    st->hand_state = TLS_ST_CR_CERT;
278
0
                    return 1;
279
0
                }
280
0
            } else {
281
0
                ske_expected = key_exchange_expected(s);
282
0
                /* SKE is optional for some PSK ciphersuites */
283
0
                if (ske_expected
284
0
                    || ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_PSK)
285
0
                        && mt == SSL3_MT_SERVER_KEY_EXCHANGE)) {
286
0
                    if (mt == SSL3_MT_SERVER_KEY_EXCHANGE) {
287
0
                        st->hand_state = TLS_ST_CR_KEY_EXCH;
288
0
                        return 1;
289
0
                    }
290
0
                } else if (mt == SSL3_MT_CERTIFICATE_REQUEST
291
0
                           && cert_req_allowed(s)) {
292
0
                    st->hand_state = TLS_ST_CR_CERT_REQ;
293
0
                    return 1;
294
0
                } else if (mt == SSL3_MT_SERVER_DONE) {
295
0
                    st->hand_state = TLS_ST_CR_SRVR_DONE;
296
0
                    return 1;
297
0
                }
298
0
            }
299
0
        }
300
0
        break;
301
0
302
0
    case TLS_ST_CR_CERT:
303
0
        /*
304
0
         * The CertificateStatus message is optional even if
305
0
         * |ext.status_expected| is set
306
0
         */
307
0
        if (s->ext.status_expected && mt == SSL3_MT_CERTIFICATE_STATUS) {
308
0
            st->hand_state = TLS_ST_CR_CERT_STATUS;
309
0
            return 1;
310
0
        }
311
0
        /* Fall through */
312
0
313
0
    case TLS_ST_CR_CERT_STATUS:
314
0
        ske_expected = key_exchange_expected(s);
315
0
        /* SKE is optional for some PSK ciphersuites */
316
0
        if (ske_expected || ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_PSK)
317
0
                             && mt == SSL3_MT_SERVER_KEY_EXCHANGE)) {
318
0
            if (mt == SSL3_MT_SERVER_KEY_EXCHANGE) {
319
0
                st->hand_state = TLS_ST_CR_KEY_EXCH;
320
0
                return 1;
321
0
            }
322
0
            goto err;
323
0
        }
324
0
        /* Fall through */
325
0
326
0
    case TLS_ST_CR_KEY_EXCH:
327
0
        if (mt == SSL3_MT_CERTIFICATE_REQUEST) {
328
0
            if (cert_req_allowed(s)) {
329
0
                st->hand_state = TLS_ST_CR_CERT_REQ;
330
0
                return 1;
331
0
            }
332
0
            goto err;
333
0
        }
334
0
        /* Fall through */
335
0
336
0
    case TLS_ST_CR_CERT_REQ:
337
0
        if (mt == SSL3_MT_SERVER_DONE) {
338
0
            st->hand_state = TLS_ST_CR_SRVR_DONE;
339
0
            return 1;
340
0
        }
341
0
        break;
342
0
343
0
    case TLS_ST_CW_FINISHED:
344
0
        if (s->ext.ticket_expected) {
345
0
            if (mt == SSL3_MT_NEWSESSION_TICKET) {
346
0
                st->hand_state = TLS_ST_CR_SESSION_TICKET;
347
0
                return 1;
348
0
            }
349
0
        } else if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
350
0
            st->hand_state = TLS_ST_CR_CHANGE;
351
0
            return 1;
352
0
        }
353
0
        break;
354
0
355
0
    case TLS_ST_CR_SESSION_TICKET:
356
0
        if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
357
0
            st->hand_state = TLS_ST_CR_CHANGE;
358
0
            return 1;
359
0
        }
360
0
        break;
361
0
362
0
    case TLS_ST_CR_CHANGE:
363
0
        if (mt == SSL3_MT_FINISHED) {
364
0
            st->hand_state = TLS_ST_CR_FINISHED;
365
0
            return 1;
366
0
        }
367
0
        break;
368
0
369
0
    case TLS_ST_OK:
370
0
        if (mt == SSL3_MT_HELLO_REQUEST) {
371
0
            st->hand_state = TLS_ST_CR_HELLO_REQ;
372
0
            return 1;
373
0
        }
374
0
        break;
375
0
    }
376
0
377
0
 err:
378
0
    /* No valid transition found */
379
0
    if (SSL_IS_DTLS(s) && mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
380
0
        BIO *rbio;
381
0
382
0
        /*
383
0
         * CCS messages don't have a message sequence number so this is probably
384
0
         * because of an out-of-order CCS. We'll just drop it.
385
0
         */
386
0
        s->init_num = 0;
387
0
        s->rwstate = SSL_READING;
388
0
        rbio = SSL_get_rbio(s);
389
0
        BIO_clear_retry_flags(rbio);
390
0
        BIO_set_retry_read(rbio);
391
0
        return 0;
392
0
    }
393
0
    SSLfatal(s, SSL3_AD_UNEXPECTED_MESSAGE,
394
0
             SSL_F_OSSL_STATEM_CLIENT_READ_TRANSITION,
395
0
             SSL_R_UNEXPECTED_MESSAGE);
396
0
    return 0;
397
0
}
398
399
/*
400
 * ossl_statem_client13_write_transition() works out what handshake state to
401
 * move to next when the TLSv1.3 client is writing messages to be sent to the
402
 * server.
403
 */
404
static WRITE_TRAN ossl_statem_client13_write_transition(SSL *s)
405
0
{
406
0
    OSSL_STATEM *st = &s->statem;
407
0
408
0
    /*
409
0
     * Note: There are no cases for TLS_ST_BEFORE because we haven't negotiated
410
0
     * TLSv1.3 yet at that point. They are handled by
411
0
     * ossl_statem_client_write_transition().
412
0
     */
413
0
    switch (st->hand_state) {
414
0
    default:
415
0
        /* Shouldn't happen */
416
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
417
0
                 SSL_F_OSSL_STATEM_CLIENT13_WRITE_TRANSITION,
418
0
                 ERR_R_INTERNAL_ERROR);
419
0
        return WRITE_TRAN_ERROR;
420
0
421
0
    case TLS_ST_CR_CERT_REQ:
422
0
        if (s->post_handshake_auth == SSL_PHA_REQUESTED) {
423
0
            st->hand_state = TLS_ST_CW_CERT;
424
0
            return WRITE_TRAN_CONTINUE;
425
0
        }
426
0
        /* Shouldn't happen - same as default case */
427
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
428
0
                 SSL_F_OSSL_STATEM_CLIENT13_WRITE_TRANSITION,
429
0
                 ERR_R_INTERNAL_ERROR);
430
0
        return WRITE_TRAN_ERROR;
431
0
432
0
    case TLS_ST_CR_FINISHED:
433
0
        if (s->early_data_state == SSL_EARLY_DATA_WRITE_RETRY
434
0
                || s->early_data_state == SSL_EARLY_DATA_FINISHED_WRITING)
435
0
            st->hand_state = TLS_ST_PENDING_EARLY_DATA_END;
436
0
        else if ((s->options & SSL_OP_ENABLE_MIDDLEBOX_COMPAT) != 0
437
0
                 && s->hello_retry_request == SSL_HRR_NONE)
438
0
            st->hand_state = TLS_ST_CW_CHANGE;
439
0
        else
440
0
            st->hand_state = (s->s3->tmp.cert_req != 0) ? TLS_ST_CW_CERT
441
0
                                                        : TLS_ST_CW_FINISHED;
442
0
        return WRITE_TRAN_CONTINUE;
443
0
444
0
    case TLS_ST_PENDING_EARLY_DATA_END:
445
0
        if (s->ext.early_data == SSL_EARLY_DATA_ACCEPTED) {
446
0
            st->hand_state = TLS_ST_CW_END_OF_EARLY_DATA;
447
0
            return WRITE_TRAN_CONTINUE;
448
0
        }
449
0
        /* Fall through */
450
0
451
0
    case TLS_ST_CW_END_OF_EARLY_DATA:
452
0
    case TLS_ST_CW_CHANGE:
453
0
        st->hand_state = (s->s3->tmp.cert_req != 0) ? TLS_ST_CW_CERT
454
0
                                                    : TLS_ST_CW_FINISHED;
455
0
        return WRITE_TRAN_CONTINUE;
456
0
457
0
    case TLS_ST_CW_CERT:
458
0
        /* If a non-empty Certificate we also send CertificateVerify */
459
0
        st->hand_state = (s->s3->tmp.cert_req == 1) ? TLS_ST_CW_CERT_VRFY
460
0
                                                    : TLS_ST_CW_FINISHED;
461
0
        return WRITE_TRAN_CONTINUE;
462
0
463
0
    case TLS_ST_CW_CERT_VRFY:
464
0
        st->hand_state = TLS_ST_CW_FINISHED;
465
0
        return WRITE_TRAN_CONTINUE;
466
0
467
0
    case TLS_ST_CR_KEY_UPDATE:
468
0
        if (s->key_update != SSL_KEY_UPDATE_NONE) {
469
0
            st->hand_state = TLS_ST_CW_KEY_UPDATE;
470
0
            return WRITE_TRAN_CONTINUE;
471
0
        }
472
0
        /* Fall through */
473
0
474
0
    case TLS_ST_CW_KEY_UPDATE:
475
0
    case TLS_ST_CR_SESSION_TICKET:
476
0
    case TLS_ST_CW_FINISHED:
477
0
        st->hand_state = TLS_ST_OK;
478
0
        return WRITE_TRAN_CONTINUE;
479
0
480
0
    case TLS_ST_OK:
481
0
        if (s->key_update != SSL_KEY_UPDATE_NONE) {
482
0
            st->hand_state = TLS_ST_CW_KEY_UPDATE;
483
0
            return WRITE_TRAN_CONTINUE;
484
0
        }
485
0
486
0
        /* Try to read from the server instead */
487
0
        return WRITE_TRAN_FINISHED;
488
0
    }
489
0
}
490
491
/*
492
 * ossl_statem_client_write_transition() works out what handshake state to
493
 * move to next when the client is writing messages to be sent to the server.
494
 */
495
WRITE_TRAN ossl_statem_client_write_transition(SSL *s)
496
0
{
497
0
    OSSL_STATEM *st = &s->statem;
498
0
499
0
    /*
500
0
     * Note that immediately before/after a ClientHello we don't know what
501
0
     * version we are going to negotiate yet, so we don't take this branch until
502
0
     * later
503
0
     */
504
0
    if (SSL_IS_TLS13(s))
505
0
        return ossl_statem_client13_write_transition(s);
506
0
507
0
    switch (st->hand_state) {
508
0
    default:
509
0
        /* Shouldn't happen */
510
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
511
0
                 SSL_F_OSSL_STATEM_CLIENT_WRITE_TRANSITION,
512
0
                 ERR_R_INTERNAL_ERROR);
513
0
        return WRITE_TRAN_ERROR;
514
0
515
0
    case TLS_ST_OK:
516
0
        if (!s->renegotiate) {
517
0
            /*
518
0
             * We haven't requested a renegotiation ourselves so we must have
519
0
             * received a message from the server. Better read it.
520
0
             */
521
0
            return WRITE_TRAN_FINISHED;
522
0
        }
523
0
        /* Renegotiation */
524
0
        /* fall thru */
525
0
    case TLS_ST_BEFORE:
526
0
        st->hand_state = TLS_ST_CW_CLNT_HELLO;
527
0
        return WRITE_TRAN_CONTINUE;
528
0
529
0
    case TLS_ST_CW_CLNT_HELLO:
530
0
        if (s->early_data_state == SSL_EARLY_DATA_CONNECTING) {
531
0
            /*
532
0
             * We are assuming this is a TLSv1.3 connection, although we haven't
533
0
             * actually selected a version yet.
534
0
             */
535
0
            if ((s->options & SSL_OP_ENABLE_MIDDLEBOX_COMPAT) != 0)
536
0
                st->hand_state = TLS_ST_CW_CHANGE;
537
0
            else
538
0
                st->hand_state = TLS_ST_EARLY_DATA;
539
0
            return WRITE_TRAN_CONTINUE;
540
0
        }
541
0
        /*
542
0
         * No transition at the end of writing because we don't know what
543
0
         * we will be sent
544
0
         */
545
0
        return WRITE_TRAN_FINISHED;
546
0
547
0
    case TLS_ST_CR_SRVR_HELLO:
548
0
        /*
549
0
         * We only get here in TLSv1.3. We just received an HRR, so issue a
550
0
         * CCS unless middlebox compat mode is off, or we already issued one
551
0
         * because we did early data.
552
0
         */
553
0
        if ((s->options & SSL_OP_ENABLE_MIDDLEBOX_COMPAT) != 0
554
0
                && s->early_data_state != SSL_EARLY_DATA_FINISHED_WRITING)
555
0
            st->hand_state = TLS_ST_CW_CHANGE;
556
0
        else
557
0
            st->hand_state = TLS_ST_CW_CLNT_HELLO;
558
0
        return WRITE_TRAN_CONTINUE;
559
0
560
0
    case TLS_ST_EARLY_DATA:
561
0
        return WRITE_TRAN_FINISHED;
562
0
563
0
    case DTLS_ST_CR_HELLO_VERIFY_REQUEST:
564
0
        st->hand_state = TLS_ST_CW_CLNT_HELLO;
565
0
        return WRITE_TRAN_CONTINUE;
566
0
567
0
    case TLS_ST_CR_SRVR_DONE:
568
0
        if (s->s3->tmp.cert_req)
569
0
            st->hand_state = TLS_ST_CW_CERT;
570
0
        else
571
0
            st->hand_state = TLS_ST_CW_KEY_EXCH;
572
0
        return WRITE_TRAN_CONTINUE;
573
0
574
0
    case TLS_ST_CW_CERT:
575
0
        st->hand_state = TLS_ST_CW_KEY_EXCH;
576
0
        return WRITE_TRAN_CONTINUE;
577
0
578
0
    case TLS_ST_CW_KEY_EXCH:
579
0
        /*
580
0
         * For TLS, cert_req is set to 2, so a cert chain of nothing is
581
0
         * sent, but no verify packet is sent
582
0
         */
583
0
        /*
584
0
         * XXX: For now, we do not support client authentication in ECDH
585
0
         * cipher suites with ECDH (rather than ECDSA) certificates. We
586
0
         * need to skip the certificate verify message when client's
587
0
         * ECDH public key is sent inside the client certificate.
588
0
         */
589
0
        if (s->s3->tmp.cert_req == 1) {
590
0
            st->hand_state = TLS_ST_CW_CERT_VRFY;
591
0
        } else {
592
0
            st->hand_state = TLS_ST_CW_CHANGE;
593
0
        }
594
0
        if (s->s3->flags & TLS1_FLAGS_SKIP_CERT_VERIFY) {
595
0
            st->hand_state = TLS_ST_CW_CHANGE;
596
0
        }
597
0
        return WRITE_TRAN_CONTINUE;
598
0
599
0
    case TLS_ST_CW_CERT_VRFY:
600
0
        st->hand_state = TLS_ST_CW_CHANGE;
601
0
        return WRITE_TRAN_CONTINUE;
602
0
603
0
    case TLS_ST_CW_CHANGE:
604
0
        if (s->hello_retry_request == SSL_HRR_PENDING) {
605
0
            st->hand_state = TLS_ST_CW_CLNT_HELLO;
606
0
        } else if (s->early_data_state == SSL_EARLY_DATA_CONNECTING) {
607
0
            st->hand_state = TLS_ST_EARLY_DATA;
608
0
        } else {
609
#if defined(OPENSSL_NO_NEXTPROTONEG)
610
            st->hand_state = TLS_ST_CW_FINISHED;
611
#else
612
0
            if (!SSL_IS_DTLS(s) && s->s3->npn_seen)
613
0
                st->hand_state = TLS_ST_CW_NEXT_PROTO;
614
0
            else
615
0
                st->hand_state = TLS_ST_CW_FINISHED;
616
0
#endif
617
0
        }
618
0
        return WRITE_TRAN_CONTINUE;
619
0
620
0
#if !defined(OPENSSL_NO_NEXTPROTONEG)
621
0
    case TLS_ST_CW_NEXT_PROTO:
622
0
        st->hand_state = TLS_ST_CW_FINISHED;
623
0
        return WRITE_TRAN_CONTINUE;
624
0
#endif
625
0
626
0
    case TLS_ST_CW_FINISHED:
627
0
        if (s->hit) {
628
0
            st->hand_state = TLS_ST_OK;
629
0
            return WRITE_TRAN_CONTINUE;
630
0
        } else {
631
0
            return WRITE_TRAN_FINISHED;
632
0
        }
633
0
634
0
    case TLS_ST_CR_FINISHED:
635
0
        if (s->hit) {
636
0
            st->hand_state = TLS_ST_CW_CHANGE;
637
0
            return WRITE_TRAN_CONTINUE;
638
0
        } else {
639
0
            st->hand_state = TLS_ST_OK;
640
0
            return WRITE_TRAN_CONTINUE;
641
0
        }
642
0
643
0
    case TLS_ST_CR_HELLO_REQ:
644
0
        /*
645
0
         * If we can renegotiate now then do so, otherwise wait for a more
646
0
         * convenient time.
647
0
         */
648
0
        if (ssl3_renegotiate_check(s, 1)) {
649
0
            if (!tls_setup_handshake(s)) {
650
0
                /* SSLfatal() already called */
651
0
                return WRITE_TRAN_ERROR;
652
0
            }
653
0
            st->hand_state = TLS_ST_CW_CLNT_HELLO;
654
0
            return WRITE_TRAN_CONTINUE;
655
0
        }
656
0
        st->hand_state = TLS_ST_OK;
657
0
        return WRITE_TRAN_CONTINUE;
658
0
    }
659
0
}
660
661
/*
662
 * Perform any pre work that needs to be done prior to sending a message from
663
 * the client to the server.
664
 */
665
WORK_STATE ossl_statem_client_pre_work(SSL *s, WORK_STATE wst)
666
0
{
667
0
    OSSL_STATEM *st = &s->statem;
668
0
669
0
    switch (st->hand_state) {
670
0
    default:
671
0
        /* No pre work to be done */
672
0
        break;
673
0
674
0
    case TLS_ST_CW_CLNT_HELLO:
675
0
        s->shutdown = 0;
676
0
        if (SSL_IS_DTLS(s)) {
677
0
            /* every DTLS ClientHello resets Finished MAC */
678
0
            if (!ssl3_init_finished_mac(s)) {
679
0
                /* SSLfatal() already called */
680
0
                return WORK_ERROR;
681
0
            }
682
0
        }
683
0
        break;
684
0
685
0
    case TLS_ST_CW_CHANGE:
686
0
        if (SSL_IS_DTLS(s)) {
687
0
            if (s->hit) {
688
0
                /*
689
0
                 * We're into the last flight so we don't retransmit these
690
0
                 * messages unless we need to.
691
0
                 */
692
0
                st->use_timer = 0;
693
0
            }
694
#ifndef OPENSSL_NO_SCTP
695
            if (BIO_dgram_is_sctp(SSL_get_wbio(s))) {
696
                /* Calls SSLfatal() as required */
697
                return dtls_wait_for_dry(s);
698
            }
699
#endif
700
        }
701
0
        break;
702
0
703
0
    case TLS_ST_PENDING_EARLY_DATA_END:
704
0
        /*
705
0
         * If we've been called by SSL_do_handshake()/SSL_write(), or we did not
706
0
         * attempt to write early data before calling SSL_read() then we press
707
0
         * on with the handshake. Otherwise we pause here.
708
0
         */
709
0
        if (s->early_data_state == SSL_EARLY_DATA_FINISHED_WRITING
710
0
                || s->early_data_state == SSL_EARLY_DATA_NONE)
711
0
            return WORK_FINISHED_CONTINUE;
712
0
        /* Fall through */
713
0
714
0
    case TLS_ST_EARLY_DATA:
715
0
        return tls_finish_handshake(s, wst, 0, 1);
716
0
717
0
    case TLS_ST_OK:
718
0
        /* Calls SSLfatal() as required */
719
0
        return tls_finish_handshake(s, wst, 1, 1);
720
0
    }
721
0
722
0
    return WORK_FINISHED_CONTINUE;
723
0
}
724
725
/*
726
 * Perform any work that needs to be done after sending a message from the
727
 * client to the server.
728
 */
729
WORK_STATE ossl_statem_client_post_work(SSL *s, WORK_STATE wst)
730
0
{
731
0
    OSSL_STATEM *st = &s->statem;
732
0
733
0
    s->init_num = 0;
734
0
735
0
    switch (st->hand_state) {
736
0
    default:
737
0
        /* No post work to be done */
738
0
        break;
739
0
740
0
    case TLS_ST_CW_CLNT_HELLO:
741
0
        if (s->early_data_state == SSL_EARLY_DATA_CONNECTING
742
0
                && s->max_early_data > 0) {
743
0
            /*
744
0
             * We haven't selected TLSv1.3 yet so we don't call the change
745
0
             * cipher state function associated with the SSL_METHOD. Instead
746
0
             * we call tls13_change_cipher_state() directly.
747
0
             */
748
0
            if ((s->options & SSL_OP_ENABLE_MIDDLEBOX_COMPAT) == 0) {
749
0
                if (!tls13_change_cipher_state(s,
750
0
                            SSL3_CC_EARLY | SSL3_CHANGE_CIPHER_CLIENT_WRITE)) {
751
0
                    /* SSLfatal() already called */
752
0
                    return WORK_ERROR;
753
0
                }
754
0
            }
755
0
            /* else we're in compat mode so we delay flushing until after CCS */
756
0
        } else if (!statem_flush(s)) {
757
0
            return WORK_MORE_A;
758
0
        }
759
0
760
0
        if (SSL_IS_DTLS(s)) {
761
0
            /* Treat the next message as the first packet */
762
0
            s->first_packet = 1;
763
0
        }
764
0
        break;
765
0
766
0
    case TLS_ST_CW_END_OF_EARLY_DATA:
767
0
        /*
768
0
         * We set the enc_write_ctx back to NULL because we may end up writing
769
0
         * in cleartext again if we get a HelloRetryRequest from the server.
770
0
         */
771
0
        EVP_CIPHER_CTX_free(s->enc_write_ctx);
772
0
        s->enc_write_ctx = NULL;
773
0
        break;
774
0
775
0
    case TLS_ST_CW_KEY_EXCH:
776
0
        if (tls_client_key_exchange_post_work(s) == 0) {
777
0
            /* SSLfatal() already called */
778
0
            return WORK_ERROR;
779
0
        }
780
0
        break;
781
0
782
0
    case TLS_ST_CW_CHANGE:
783
0
        if (SSL_IS_TLS13(s) || s->hello_retry_request == SSL_HRR_PENDING)
784
0
            break;
785
0
        if (s->early_data_state == SSL_EARLY_DATA_CONNECTING
786
0
                    && s->max_early_data > 0) {
787
0
            /*
788
0
             * We haven't selected TLSv1.3 yet so we don't call the change
789
0
             * cipher state function associated with the SSL_METHOD. Instead
790
0
             * we call tls13_change_cipher_state() directly.
791
0
             */
792
0
            if (!tls13_change_cipher_state(s,
793
0
                        SSL3_CC_EARLY | SSL3_CHANGE_CIPHER_CLIENT_WRITE))
794
0
                return WORK_ERROR;
795
0
            break;
796
0
        }
797
0
        s->session->cipher = s->s3->tmp.new_cipher;
798
#ifdef OPENSSL_NO_COMP
799
        s->session->compress_meth = 0;
800
#else
801
0
        if (s->s3->tmp.new_compression == NULL)
802
0
            s->session->compress_meth = 0;
803
0
        else
804
0
            s->session->compress_meth = s->s3->tmp.new_compression->id;
805
0
#endif
806
0
        if (!s->method->ssl3_enc->setup_key_block(s)) {
807
0
            /* SSLfatal() already called */
808
0
            return WORK_ERROR;
809
0
        }
810
0
811
0
        if (!s->method->ssl3_enc->change_cipher_state(s,
812
0
                                          SSL3_CHANGE_CIPHER_CLIENT_WRITE)) {
813
0
            /* SSLfatal() already called */
814
0
            return WORK_ERROR;
815
0
        }
816
0
817
0
        if (SSL_IS_DTLS(s)) {
818
#ifndef OPENSSL_NO_SCTP
819
            if (s->hit) {
820
                /*
821
                 * Change to new shared key of SCTP-Auth, will be ignored if
822
                 * no SCTP used.
823
                 */
824
                BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
825
                         0, NULL);
826
            }
827
#endif
828
829
0
            dtls1_reset_seq_numbers(s, SSL3_CC_WRITE);
830
0
        }
831
0
        break;
832
0
833
0
    case TLS_ST_CW_FINISHED:
834
#ifndef OPENSSL_NO_SCTP
835
        if (wst == WORK_MORE_A && SSL_IS_DTLS(s) && s->hit == 0) {
836
            /*
837
             * Change to new shared key of SCTP-Auth, will be ignored if
838
             * no SCTP used.
839
             */
840
            BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
841
                     0, NULL);
842
        }
843
#endif
844
0
        if (statem_flush(s) != 1)
845
0
            return WORK_MORE_B;
846
0
847
0
        if (SSL_IS_TLS13(s)) {
848
0
            if (!tls13_save_handshake_digest_for_pha(s)) {
849
0
                /* SSLfatal() already called */
850
0
                return WORK_ERROR;
851
0
            }
852
0
            if (s->post_handshake_auth != SSL_PHA_REQUESTED) {
853
0
                if (!s->method->ssl3_enc->change_cipher_state(s,
854
0
                        SSL3_CC_APPLICATION | SSL3_CHANGE_CIPHER_CLIENT_WRITE)) {
855
0
                    /* SSLfatal() already called */
856
0
                    return WORK_ERROR;
857
0
                }
858
0
            }
859
0
        }
860
0
        break;
861
0
862
0
    case TLS_ST_CW_KEY_UPDATE:
863
0
        if (statem_flush(s) != 1)
864
0
            return WORK_MORE_A;
865
0
        if (!tls13_update_key(s, 1)) {
866
0
            /* SSLfatal() already called */
867
0
            return WORK_ERROR;
868
0
        }
869
0
        break;
870
0
    }
871
0
872
0
    return WORK_FINISHED_CONTINUE;
873
0
}
874
875
/*
876
 * Get the message construction function and message type for sending from the
877
 * client
878
 *
879
 * Valid return values are:
880
 *   1: Success
881
 *   0: Error
882
 */
883
int ossl_statem_client_construct_message(SSL *s, WPACKET *pkt,
884
                                         confunc_f *confunc, int *mt)
885
0
{
886
0
    OSSL_STATEM *st = &s->statem;
887
0
888
0
    switch (st->hand_state) {
889
0
    default:
890
0
        /* Shouldn't happen */
891
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
892
0
                 SSL_F_OSSL_STATEM_CLIENT_CONSTRUCT_MESSAGE,
893
0
                 SSL_R_BAD_HANDSHAKE_STATE);
894
0
        return 0;
895
0
896
0
    case TLS_ST_CW_CHANGE:
897
0
        if (SSL_IS_DTLS(s))
898
0
            *confunc = dtls_construct_change_cipher_spec;
899
0
        else
900
0
            *confunc = tls_construct_change_cipher_spec;
901
0
        *mt = SSL3_MT_CHANGE_CIPHER_SPEC;
902
0
        break;
903
0
904
0
    case TLS_ST_CW_CLNT_HELLO:
905
0
        *confunc = tls_construct_client_hello;
906
0
        *mt = SSL3_MT_CLIENT_HELLO;
907
0
        break;
908
0
909
0
    case TLS_ST_CW_END_OF_EARLY_DATA:
910
0
        *confunc = tls_construct_end_of_early_data;
911
0
        *mt = SSL3_MT_END_OF_EARLY_DATA;
912
0
        break;
913
0
914
0
    case TLS_ST_PENDING_EARLY_DATA_END:
915
0
        *confunc = NULL;
916
0
        *mt = SSL3_MT_DUMMY;
917
0
        break;
918
0
919
0
    case TLS_ST_CW_CERT:
920
0
        *confunc = tls_construct_client_certificate;
921
0
        *mt = SSL3_MT_CERTIFICATE;
922
0
        break;
923
0
924
0
    case TLS_ST_CW_KEY_EXCH:
925
0
        *confunc = tls_construct_client_key_exchange;
926
0
        *mt = SSL3_MT_CLIENT_KEY_EXCHANGE;
927
0
        break;
928
0
929
0
    case TLS_ST_CW_CERT_VRFY:
930
0
        *confunc = tls_construct_cert_verify;
931
0
        *mt = SSL3_MT_CERTIFICATE_VERIFY;
932
0
        break;
933
0
934
0
#if !defined(OPENSSL_NO_NEXTPROTONEG)
935
0
    case TLS_ST_CW_NEXT_PROTO:
936
0
        *confunc = tls_construct_next_proto;
937
0
        *mt = SSL3_MT_NEXT_PROTO;
938
0
        break;
939
0
#endif
940
0
    case TLS_ST_CW_FINISHED:
941
0
        *confunc = tls_construct_finished;
942
0
        *mt = SSL3_MT_FINISHED;
943
0
        break;
944
0
945
0
    case TLS_ST_CW_KEY_UPDATE:
946
0
        *confunc = tls_construct_key_update;
947
0
        *mt = SSL3_MT_KEY_UPDATE;
948
0
        break;
949
0
    }
950
0
951
0
    return 1;
952
0
}
953
954
/*
955
 * Returns the maximum allowed length for the current message that we are
956
 * reading. Excludes the message header.
957
 */
958
size_t ossl_statem_client_max_message_size(SSL *s)
959
0
{
960
0
    OSSL_STATEM *st = &s->statem;
961
0
962
0
    switch (st->hand_state) {
963
0
    default:
964
0
        /* Shouldn't happen */
965
0
        return 0;
966
0
967
0
    case TLS_ST_CR_SRVR_HELLO:
968
0
        return SERVER_HELLO_MAX_LENGTH;
969
0
970
0
    case DTLS_ST_CR_HELLO_VERIFY_REQUEST:
971
0
        return HELLO_VERIFY_REQUEST_MAX_LENGTH;
972
0
973
0
    case TLS_ST_CR_CERT:
974
0
        return s->max_cert_list;
975
0
976
0
    case TLS_ST_CR_CERT_VRFY:
977
0
        return SSL3_RT_MAX_PLAIN_LENGTH;
978
0
979
0
    case TLS_ST_CR_CERT_STATUS:
980
0
        return SSL3_RT_MAX_PLAIN_LENGTH;
981
0
982
0
    case TLS_ST_CR_KEY_EXCH:
983
0
        return SERVER_KEY_EXCH_MAX_LENGTH;
984
0
985
0
    case TLS_ST_CR_CERT_REQ:
986
0
        /*
987
0
         * Set to s->max_cert_list for compatibility with previous releases. In
988
0
         * practice these messages can get quite long if servers are configured
989
0
         * to provide a long list of acceptable CAs
990
0
         */
991
0
        return s->max_cert_list;
992
0
993
0
    case TLS_ST_CR_SRVR_DONE:
994
0
        return SERVER_HELLO_DONE_MAX_LENGTH;
995
0
996
0
    case TLS_ST_CR_CHANGE:
997
0
        if (s->version == DTLS1_BAD_VER)
998
0
            return 3;
999
0
        return CCS_MAX_LENGTH;
1000
0
1001
0
    case TLS_ST_CR_SESSION_TICKET:
1002
0
        return SSL3_RT_MAX_PLAIN_LENGTH;
1003
0
1004
0
    case TLS_ST_CR_FINISHED:
1005
0
        return FINISHED_MAX_LENGTH;
1006
0
1007
0
    case TLS_ST_CR_ENCRYPTED_EXTENSIONS:
1008
0
        return ENCRYPTED_EXTENSIONS_MAX_LENGTH;
1009
0
1010
0
    case TLS_ST_CR_KEY_UPDATE:
1011
0
        return KEY_UPDATE_MAX_LENGTH;
1012
0
    }
1013
0
}
1014
1015
/*
1016
 * Process a message that the client has been received from the server.
1017
 */
1018
MSG_PROCESS_RETURN ossl_statem_client_process_message(SSL *s, PACKET *pkt)
1019
0
{
1020
0
    OSSL_STATEM *st = &s->statem;
1021
0
1022
0
    switch (st->hand_state) {
1023
0
    default:
1024
0
        /* Shouldn't happen */
1025
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
1026
0
                 SSL_F_OSSL_STATEM_CLIENT_PROCESS_MESSAGE,
1027
0
                 ERR_R_INTERNAL_ERROR);
1028
0
        return MSG_PROCESS_ERROR;
1029
0
1030
0
    case TLS_ST_CR_SRVR_HELLO:
1031
0
        return tls_process_server_hello(s, pkt);
1032
0
1033
0
    case DTLS_ST_CR_HELLO_VERIFY_REQUEST:
1034
0
        return dtls_process_hello_verify(s, pkt);
1035
0
1036
0
    case TLS_ST_CR_CERT:
1037
0
        return tls_process_server_certificate(s, pkt);
1038
0
1039
0
    case TLS_ST_CR_CERT_VRFY:
1040
0
        return tls_process_cert_verify(s, pkt);
1041
0
1042
0
    case TLS_ST_CR_CERT_STATUS:
1043
0
        return tls_process_cert_status(s, pkt);
1044
0
1045
0
    case TLS_ST_CR_KEY_EXCH:
1046
0
        return tls_process_key_exchange(s, pkt);
1047
0
1048
0
    case TLS_ST_CR_CERT_REQ:
1049
0
        return tls_process_certificate_request(s, pkt);
1050
0
1051
0
    case TLS_ST_CR_SRVR_DONE:
1052
0
        return tls_process_server_done(s, pkt);
1053
0
1054
0
    case TLS_ST_CR_CHANGE:
1055
0
        return tls_process_change_cipher_spec(s, pkt);
1056
0
1057
0
    case TLS_ST_CR_SESSION_TICKET:
1058
0
        return tls_process_new_session_ticket(s, pkt);
1059
0
1060
0
    case TLS_ST_CR_FINISHED:
1061
0
        return tls_process_finished(s, pkt);
1062
0
1063
0
    case TLS_ST_CR_HELLO_REQ:
1064
0
        return tls_process_hello_req(s, pkt);
1065
0
1066
0
    case TLS_ST_CR_ENCRYPTED_EXTENSIONS:
1067
0
        return tls_process_encrypted_extensions(s, pkt);
1068
0
1069
0
    case TLS_ST_CR_KEY_UPDATE:
1070
0
        return tls_process_key_update(s, pkt);
1071
0
    }
1072
0
}
1073
1074
/*
1075
 * Perform any further processing required following the receipt of a message
1076
 * from the server
1077
 */
1078
WORK_STATE ossl_statem_client_post_process_message(SSL *s, WORK_STATE wst)
1079
0
{
1080
0
    OSSL_STATEM *st = &s->statem;
1081
0
1082
0
    switch (st->hand_state) {
1083
0
    default:
1084
0
        /* Shouldn't happen */
1085
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
1086
0
                 SSL_F_OSSL_STATEM_CLIENT_POST_PROCESS_MESSAGE,
1087
0
                 ERR_R_INTERNAL_ERROR);
1088
0
        return WORK_ERROR;
1089
0
1090
0
    case TLS_ST_CR_CERT_REQ:
1091
0
        return tls_prepare_client_certificate(s, wst);
1092
0
    }
1093
0
}
1094
1095
int tls_construct_client_hello(SSL *s, WPACKET *pkt)
1096
0
{
1097
0
    unsigned char *p;
1098
0
    size_t sess_id_len;
1099
0
    int i, protverr;
1100
0
#ifndef OPENSSL_NO_COMP
1101
0
    SSL_COMP *comp;
1102
0
#endif
1103
0
    SSL_SESSION *sess = s->session;
1104
0
    unsigned char *session_id;
1105
0
1106
0
    if (!WPACKET_set_max_size(pkt, SSL3_RT_MAX_PLAIN_LENGTH)) {
1107
0
        /* Should not happen */
1108
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
1109
0
                 SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1110
0
        return 0;
1111
0
    }
1112
0
1113
0
    /* Work out what SSL/TLS/DTLS version to use */
1114
0
    protverr = ssl_set_client_hello_version(s);
1115
0
    if (protverr != 0) {
1116
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1117
0
                 protverr);
1118
0
        return 0;
1119
0
    }
1120
0
1121
0
    if (sess == NULL
1122
0
            || !ssl_version_supported(s, sess->ssl_version, NULL)
1123
0
            || !SSL_SESSION_is_resumable(sess)) {
1124
0
        if (s->hello_retry_request == SSL_HRR_NONE
1125
0
                && !ssl_get_new_session(s, 0)) {
1126
0
            /* SSLfatal() already called */
1127
0
            return 0;
1128
0
        }
1129
0
    }
1130
0
    /* else use the pre-loaded session */
1131
0
1132
0
    p = s->s3->client_random;
1133
0
1134
0
    /*
1135
0
     * for DTLS if client_random is initialized, reuse it, we are
1136
0
     * required to use same upon reply to HelloVerify
1137
0
     */
1138
0
    if (SSL_IS_DTLS(s)) {
1139
0
        size_t idx;
1140
0
        i = 1;
1141
0
        for (idx = 0; idx < sizeof(s->s3->client_random); idx++) {
1142
0
            if (p[idx]) {
1143
0
                i = 0;
1144
0
                break;
1145
0
            }
1146
0
        }
1147
0
    } else {
1148
0
        i = (s->hello_retry_request == SSL_HRR_NONE);
1149
0
    }
1150
0
1151
0
    if (i && ssl_fill_hello_random(s, 0, p, sizeof(s->s3->client_random),
1152
0
                                   DOWNGRADE_NONE) <= 0) {
1153
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1154
0
                 ERR_R_INTERNAL_ERROR);
1155
0
        return 0;
1156
0
    }
1157
0
1158
0
    /*-
1159
0
     * version indicates the negotiated version: for example from
1160
0
     * an SSLv2/v3 compatible client hello). The client_version
1161
0
     * field is the maximum version we permit and it is also
1162
0
     * used in RSA encrypted premaster secrets. Some servers can
1163
0
     * choke if we initially report a higher version then
1164
0
     * renegotiate to a lower one in the premaster secret. This
1165
0
     * didn't happen with TLS 1.0 as most servers supported it
1166
0
     * but it can with TLS 1.1 or later if the server only supports
1167
0
     * 1.0.
1168
0
     *
1169
0
     * Possible scenario with previous logic:
1170
0
     *      1. Client hello indicates TLS 1.2
1171
0
     *      2. Server hello says TLS 1.0
1172
0
     *      3. RSA encrypted premaster secret uses 1.2.
1173
0
     *      4. Handshake proceeds using TLS 1.0.
1174
0
     *      5. Server sends hello request to renegotiate.
1175
0
     *      6. Client hello indicates TLS v1.0 as we now
1176
0
     *         know that is maximum server supports.
1177
0
     *      7. Server chokes on RSA encrypted premaster secret
1178
0
     *         containing version 1.0.
1179
0
     *
1180
0
     * For interoperability it should be OK to always use the
1181
0
     * maximum version we support in client hello and then rely
1182
0
     * on the checking of version to ensure the servers isn't
1183
0
     * being inconsistent: for example initially negotiating with
1184
0
     * TLS 1.0 and renegotiating with TLS 1.2. We do this by using
1185
0
     * client_version in client hello and not resetting it to
1186
0
     * the negotiated version.
1187
0
     *
1188
0
     * For TLS 1.3 we always set the ClientHello version to 1.2 and rely on the
1189
0
     * supported_versions extension for the real supported versions.
1190
0
     */
1191
0
    if (!WPACKET_put_bytes_u16(pkt, s->client_version)
1192
0
            || !WPACKET_memcpy(pkt, s->s3->client_random, SSL3_RANDOM_SIZE)) {
1193
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1194
0
                 ERR_R_INTERNAL_ERROR);
1195
0
        return 0;
1196
0
    }
1197
0
1198
0
    /* Session ID */
1199
0
    session_id = s->session->session_id;
1200
0
    if (s->new_session || s->session->ssl_version == TLS1_3_VERSION) {
1201
0
        if (s->version == TLS1_3_VERSION
1202
0
                && (s->options & SSL_OP_ENABLE_MIDDLEBOX_COMPAT) != 0) {
1203
0
            sess_id_len = sizeof(s->tmp_session_id);
1204
0
            s->tmp_session_id_len = sess_id_len;
1205
0
            session_id = s->tmp_session_id;
1206
0
            if (s->hello_retry_request == SSL_HRR_NONE
1207
0
                    && RAND_bytes(s->tmp_session_id, sess_id_len) <= 0) {
1208
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
1209
0
                         SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1210
0
                         ERR_R_INTERNAL_ERROR);
1211
0
                return 0;
1212
0
            }
1213
0
        } else {
1214
0
            sess_id_len = 0;
1215
0
        }
1216
0
    } else {
1217
0
        assert(s->session->session_id_length <= sizeof(s->session->session_id));
1218
0
        sess_id_len = s->session->session_id_length;
1219
0
        if (s->version == TLS1_3_VERSION) {
1220
0
            s->tmp_session_id_len = sess_id_len;
1221
0
            memcpy(s->tmp_session_id, s->session->session_id, sess_id_len);
1222
0
        }
1223
0
    }
1224
0
    if (!WPACKET_start_sub_packet_u8(pkt)
1225
0
            || (sess_id_len != 0 && !WPACKET_memcpy(pkt, session_id,
1226
0
                                                    sess_id_len))
1227
0
            || !WPACKET_close(pkt)) {
1228
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1229
0
                 ERR_R_INTERNAL_ERROR);
1230
0
        return 0;
1231
0
    }
1232
0
1233
0
    /* cookie stuff for DTLS */
1234
0
    if (SSL_IS_DTLS(s)) {
1235
0
        if (s->d1->cookie_len > sizeof(s->d1->cookie)
1236
0
                || !WPACKET_sub_memcpy_u8(pkt, s->d1->cookie,
1237
0
                                          s->d1->cookie_len)) {
1238
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1239
0
                     ERR_R_INTERNAL_ERROR);
1240
0
            return 0;
1241
0
        }
1242
0
    }
1243
0
1244
0
    /* Ciphers supported */
1245
0
    if (!WPACKET_start_sub_packet_u16(pkt)) {
1246
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1247
0
                 ERR_R_INTERNAL_ERROR);
1248
0
        return 0;
1249
0
    }
1250
0
1251
0
    if (!ssl_cipher_list_to_bytes(s, SSL_get_ciphers(s), pkt)) {
1252
0
        /* SSLfatal() already called */
1253
0
        return 0;
1254
0
    }
1255
0
    if (!WPACKET_close(pkt)) {
1256
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1257
0
                 ERR_R_INTERNAL_ERROR);
1258
0
        return 0;
1259
0
    }
1260
0
1261
0
    /* COMPRESSION */
1262
0
    if (!WPACKET_start_sub_packet_u8(pkt)) {
1263
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1264
0
                 ERR_R_INTERNAL_ERROR);
1265
0
        return 0;
1266
0
    }
1267
0
#ifndef OPENSSL_NO_COMP
1268
0
    if (ssl_allow_compression(s)
1269
0
            && s->ctx->comp_methods
1270
0
            && (SSL_IS_DTLS(s) || s->s3->tmp.max_ver < TLS1_3_VERSION)) {
1271
0
        int compnum = sk_SSL_COMP_num(s->ctx->comp_methods);
1272
0
        for (i = 0; i < compnum; i++) {
1273
0
            comp = sk_SSL_COMP_value(s->ctx->comp_methods, i);
1274
0
            if (!WPACKET_put_bytes_u8(pkt, comp->id)) {
1275
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
1276
0
                         SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1277
0
                         ERR_R_INTERNAL_ERROR);
1278
0
                return 0;
1279
0
            }
1280
0
        }
1281
0
    }
1282
0
#endif
1283
0
    /* Add the NULL method */
1284
0
    if (!WPACKET_put_bytes_u8(pkt, 0) || !WPACKET_close(pkt)) {
1285
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1286
0
                 ERR_R_INTERNAL_ERROR);
1287
0
        return 0;
1288
0
    }
1289
0
1290
0
    /* TLS extensions */
1291
0
    if (!tls_construct_extensions(s, pkt, SSL_EXT_CLIENT_HELLO, NULL, 0)) {
1292
0
        /* SSLfatal() already called */
1293
0
        return 0;
1294
0
    }
1295
0
1296
0
    return 1;
1297
0
}
1298
1299
MSG_PROCESS_RETURN dtls_process_hello_verify(SSL *s, PACKET *pkt)
1300
0
{
1301
0
    size_t cookie_len;
1302
0
    PACKET cookiepkt;
1303
0
1304
0
    if (!PACKET_forward(pkt, 2)
1305
0
        || !PACKET_get_length_prefixed_1(pkt, &cookiepkt)) {
1306
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_DTLS_PROCESS_HELLO_VERIFY,
1307
0
                 SSL_R_LENGTH_MISMATCH);
1308
0
        return MSG_PROCESS_ERROR;
1309
0
    }
1310
0
1311
0
    cookie_len = PACKET_remaining(&cookiepkt);
1312
0
    if (cookie_len > sizeof(s->d1->cookie)) {
1313
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_DTLS_PROCESS_HELLO_VERIFY,
1314
0
                 SSL_R_LENGTH_TOO_LONG);
1315
0
        return MSG_PROCESS_ERROR;
1316
0
    }
1317
0
1318
0
    if (!PACKET_copy_bytes(&cookiepkt, s->d1->cookie, cookie_len)) {
1319
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_DTLS_PROCESS_HELLO_VERIFY,
1320
0
                 SSL_R_LENGTH_MISMATCH);
1321
0
        return MSG_PROCESS_ERROR;
1322
0
    }
1323
0
    s->d1->cookie_len = cookie_len;
1324
0
1325
0
    return MSG_PROCESS_FINISHED_READING;
1326
0
}
1327
1328
static int set_client_ciphersuite(SSL *s, const unsigned char *cipherchars)
1329
0
{
1330
0
    STACK_OF(SSL_CIPHER) *sk;
1331
0
    const SSL_CIPHER *c;
1332
0
    int i;
1333
0
1334
0
    c = ssl_get_cipher_by_char(s, cipherchars, 0);
1335
0
    if (c == NULL) {
1336
0
        /* unknown cipher */
1337
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_SET_CLIENT_CIPHERSUITE,
1338
0
                 SSL_R_UNKNOWN_CIPHER_RETURNED);
1339
0
        return 0;
1340
0
    }
1341
0
    /*
1342
0
     * If it is a disabled cipher we either didn't send it in client hello,
1343
0
     * or it's not allowed for the selected protocol. So we return an error.
1344
0
     */
1345
0
    if (ssl_cipher_disabled(s, c, SSL_SECOP_CIPHER_CHECK, 1)) {
1346
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_SET_CLIENT_CIPHERSUITE,
1347
0
                 SSL_R_WRONG_CIPHER_RETURNED);
1348
0
        return 0;
1349
0
    }
1350
0
1351
0
    sk = ssl_get_ciphers_by_id(s);
1352
0
    i = sk_SSL_CIPHER_find(sk, c);
1353
0
    if (i < 0) {
1354
0
        /* we did not say we would use this cipher */
1355
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_SET_CLIENT_CIPHERSUITE,
1356
0
                 SSL_R_WRONG_CIPHER_RETURNED);
1357
0
        return 0;
1358
0
    }
1359
0
1360
0
    if (SSL_IS_TLS13(s) && s->s3->tmp.new_cipher != NULL
1361
0
            && s->s3->tmp.new_cipher->id != c->id) {
1362
0
        /* ServerHello selected a different ciphersuite to that in the HRR */
1363
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_SET_CLIENT_CIPHERSUITE,
1364
0
                 SSL_R_WRONG_CIPHER_RETURNED);
1365
0
        return 0;
1366
0
    }
1367
0
1368
0
    /*
1369
0
     * Depending on the session caching (internal/external), the cipher
1370
0
     * and/or cipher_id values may not be set. Make sure that cipher_id is
1371
0
     * set and use it for comparison.
1372
0
     */
1373
0
    if (s->session->cipher != NULL)
1374
0
        s->session->cipher_id = s->session->cipher->id;
1375
0
    if (s->hit && (s->session->cipher_id != c->id)) {
1376
0
        if (SSL_IS_TLS13(s)) {
1377
0
            /*
1378
0
             * In TLSv1.3 it is valid for the server to select a different
1379
0
             * ciphersuite as long as the hash is the same.
1380
0
             */
1381
0
            if (ssl_md(c->algorithm2)
1382
0
                    != ssl_md(s->session->cipher->algorithm2)) {
1383
0
                SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1384
0
                         SSL_F_SET_CLIENT_CIPHERSUITE,
1385
0
                         SSL_R_CIPHERSUITE_DIGEST_HAS_CHANGED);
1386
0
                return 0;
1387
0
            }
1388
0
        } else {
1389
0
            /*
1390
0
             * Prior to TLSv1.3 resuming a session always meant using the same
1391
0
             * ciphersuite.
1392
0
             */
1393
0
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_SET_CLIENT_CIPHERSUITE,
1394
0
                     SSL_R_OLD_SESSION_CIPHER_NOT_RETURNED);
1395
0
            return 0;
1396
0
        }
1397
0
    }
1398
0
    s->s3->tmp.new_cipher = c;
1399
0
1400
0
    return 1;
1401
0
}
1402
1403
MSG_PROCESS_RETURN tls_process_server_hello(SSL *s, PACKET *pkt)
1404
0
{
1405
0
    PACKET session_id, extpkt;
1406
0
    size_t session_id_len;
1407
0
    const unsigned char *cipherchars;
1408
0
    int hrr = 0;
1409
0
    unsigned int compression;
1410
0
    unsigned int sversion;
1411
0
    unsigned int context;
1412
0
    RAW_EXTENSION *extensions = NULL;
1413
0
#ifndef OPENSSL_NO_COMP
1414
0
    SSL_COMP *comp;
1415
0
#endif
1416
0
1417
0
    if (!PACKET_get_net_2(pkt, &sversion)) {
1418
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1419
0
                 SSL_R_LENGTH_MISMATCH);
1420
0
        goto err;
1421
0
    }
1422
0
1423
0
    /* load the server random */
1424
0
    if (s->version == TLS1_3_VERSION
1425
0
            && sversion == TLS1_2_VERSION
1426
0
            && PACKET_remaining(pkt) >= SSL3_RANDOM_SIZE
1427
0
            && memcmp(hrrrandom, PACKET_data(pkt), SSL3_RANDOM_SIZE) == 0) {
1428
0
        s->hello_retry_request = SSL_HRR_PENDING;
1429
0
        hrr = 1;
1430
0
        if (!PACKET_forward(pkt, SSL3_RANDOM_SIZE)) {
1431
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1432
0
                     SSL_R_LENGTH_MISMATCH);
1433
0
            goto err;
1434
0
        }
1435
0
    } else {
1436
0
        if (!PACKET_copy_bytes(pkt, s->s3->server_random, SSL3_RANDOM_SIZE)) {
1437
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1438
0
                     SSL_R_LENGTH_MISMATCH);
1439
0
            goto err;
1440
0
        }
1441
0
    }
1442
0
1443
0
    /* Get the session-id. */
1444
0
    if (!PACKET_get_length_prefixed_1(pkt, &session_id)) {
1445
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1446
0
                 SSL_R_LENGTH_MISMATCH);
1447
0
        goto err;
1448
0
    }
1449
0
    session_id_len = PACKET_remaining(&session_id);
1450
0
    if (session_id_len > sizeof(s->session->session_id)
1451
0
        || session_id_len > SSL3_SESSION_ID_SIZE) {
1452
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SERVER_HELLO,
1453
0
                 SSL_R_SSL3_SESSION_ID_TOO_LONG);
1454
0
        goto err;
1455
0
    }
1456
0
1457
0
    if (!PACKET_get_bytes(pkt, &cipherchars, TLS_CIPHER_LEN)) {
1458
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1459
0
                 SSL_R_LENGTH_MISMATCH);
1460
0
        goto err;
1461
0
    }
1462
0
1463
0
    if (!PACKET_get_1(pkt, &compression)) {
1464
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1465
0
                 SSL_R_LENGTH_MISMATCH);
1466
0
        goto err;
1467
0
    }
1468
0
1469
0
    /* TLS extensions */
1470
0
    if (PACKET_remaining(pkt) == 0 && !hrr) {
1471
0
        PACKET_null_init(&extpkt);
1472
0
    } else if (!PACKET_as_length_prefixed_2(pkt, &extpkt)
1473
0
               || PACKET_remaining(pkt) != 0) {
1474
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1475
0
                 SSL_R_BAD_LENGTH);
1476
0
        goto err;
1477
0
    }
1478
0
1479
0
    if (!hrr) {
1480
0
        if (!tls_collect_extensions(s, &extpkt,
1481
0
                                    SSL_EXT_TLS1_2_SERVER_HELLO
1482
0
                                    | SSL_EXT_TLS1_3_SERVER_HELLO,
1483
0
                                    &extensions, NULL, 1)) {
1484
0
            /* SSLfatal() already called */
1485
0
            goto err;
1486
0
        }
1487
0
1488
0
        if (!ssl_choose_client_version(s, sversion, extensions)) {
1489
0
            /* SSLfatal() already called */
1490
0
            goto err;
1491
0
        }
1492
0
    }
1493
0
1494
0
    if (SSL_IS_TLS13(s) || hrr) {
1495
0
        if (compression != 0) {
1496
0
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1497
0
                     SSL_F_TLS_PROCESS_SERVER_HELLO,
1498
0
                     SSL_R_INVALID_COMPRESSION_ALGORITHM);
1499
0
            goto err;
1500
0
        }
1501
0
1502
0
        if (session_id_len != s->tmp_session_id_len
1503
0
                || memcmp(PACKET_data(&session_id), s->tmp_session_id,
1504
0
                          session_id_len) != 0) {
1505
0
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1506
0
                     SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_INVALID_SESSION_ID);
1507
0
            goto err;
1508
0
        }
1509
0
    }
1510
0
1511
0
    if (hrr) {
1512
0
        if (!set_client_ciphersuite(s, cipherchars)) {
1513
0
            /* SSLfatal() already called */
1514
0
            goto err;
1515
0
        }
1516
0
1517
0
        return tls_process_as_hello_retry_request(s, &extpkt);
1518
0
    }
1519
0
1520
0
    /*
1521
0
     * Now we have chosen the version we need to check again that the extensions
1522
0
     * are appropriate for this version.
1523
0
     */
1524
0
    context = SSL_IS_TLS13(s) ? SSL_EXT_TLS1_3_SERVER_HELLO
1525
0
                              : SSL_EXT_TLS1_2_SERVER_HELLO;
1526
0
    if (!tls_validate_all_contexts(s, context, extensions)) {
1527
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SERVER_HELLO,
1528
0
                 SSL_R_BAD_EXTENSION);
1529
0
        goto err;
1530
0
    }
1531
0
1532
0
    s->hit = 0;
1533
0
1534
0
    if (SSL_IS_TLS13(s)) {
1535
0
        /*
1536
0
         * In TLSv1.3 a ServerHello message signals a key change so the end of
1537
0
         * the message must be on a record boundary.
1538
0
         */
1539
0
        if (RECORD_LAYER_processed_read_pending(&s->rlayer)) {
1540
0
            SSLfatal(s, SSL_AD_UNEXPECTED_MESSAGE,
1541
0
                     SSL_F_TLS_PROCESS_SERVER_HELLO,
1542
0
                     SSL_R_NOT_ON_RECORD_BOUNDARY);
1543
0
            goto err;
1544
0
        }
1545
0
1546
0
        /* This will set s->hit if we are resuming */
1547
0
        if (!tls_parse_extension(s, TLSEXT_IDX_psk,
1548
0
                                 SSL_EXT_TLS1_3_SERVER_HELLO,
1549
0
                                 extensions, NULL, 0)) {
1550
0
            /* SSLfatal() already called */
1551
0
            goto err;
1552
0
        }
1553
0
    } else {
1554
0
        /*
1555
0
         * Check if we can resume the session based on external pre-shared
1556
0
         * secret. EAP-FAST (RFC 4851) supports two types of session resumption.
1557
0
         * Resumption based on server-side state works with session IDs.
1558
0
         * Resumption based on pre-shared Protected Access Credentials (PACs)
1559
0
         * works by overriding the SessionTicket extension at the application
1560
0
         * layer, and does not send a session ID. (We do not know whether
1561
0
         * EAP-FAST servers would honour the session ID.) Therefore, the session
1562
0
         * ID alone is not a reliable indicator of session resumption, so we
1563
0
         * first check if we can resume, and later peek at the next handshake
1564
0
         * message to see if the server wants to resume.
1565
0
         */
1566
0
        if (s->version >= TLS1_VERSION
1567
0
                && s->ext.session_secret_cb != NULL && s->session->ext.tick) {
1568
0
            const SSL_CIPHER *pref_cipher = NULL;
1569
0
            /*
1570
0
             * s->session->master_key_length is a size_t, but this is an int for
1571
0
             * backwards compat reasons
1572
0
             */
1573
0
            int master_key_length;
1574
0
            master_key_length = sizeof(s->session->master_key);
1575
0
            if (s->ext.session_secret_cb(s, s->session->master_key,
1576
0
                                         &master_key_length,
1577
0
                                         NULL, &pref_cipher,
1578
0
                                         s->ext.session_secret_cb_arg)
1579
0
                     && master_key_length > 0) {
1580
0
                s->session->master_key_length = master_key_length;
1581
0
                s->session->cipher = pref_cipher ?
1582
0
                    pref_cipher : ssl_get_cipher_by_char(s, cipherchars, 0);
1583
0
            } else {
1584
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
1585
0
                         SSL_F_TLS_PROCESS_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1586
0
                goto err;
1587
0
            }
1588
0
        }
1589
0
1590
0
        if (session_id_len != 0
1591
0
                && session_id_len == s->session->session_id_length
1592
0
                && memcmp(PACKET_data(&session_id), s->session->session_id,
1593
0
                          session_id_len) == 0)
1594
0
            s->hit = 1;
1595
0
    }
1596
0
1597
0
    if (s->hit) {
1598
0
        if (s->sid_ctx_length != s->session->sid_ctx_length
1599
0
                || memcmp(s->session->sid_ctx, s->sid_ctx, s->sid_ctx_length)) {
1600
0
            /* actually a client application bug */
1601
0
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1602
0
                     SSL_F_TLS_PROCESS_SERVER_HELLO,
1603
0
                     SSL_R_ATTEMPT_TO_REUSE_SESSION_IN_DIFFERENT_CONTEXT);
1604
0
            goto err;
1605
0
        }
1606
0
    } else {
1607
0
        /*
1608
0
         * If we were trying for session-id reuse but the server
1609
0
         * didn't resume, make a new SSL_SESSION.
1610
0
         * In the case of EAP-FAST and PAC, we do not send a session ID,
1611
0
         * so the PAC-based session secret is always preserved. It'll be
1612
0
         * overwritten if the server refuses resumption.
1613
0
         */
1614
0
        if (s->session->session_id_length > 0
1615
0
                || (SSL_IS_TLS13(s)
1616
0
                    && s->session->ext.tick_identity
1617
0
                       != TLSEXT_PSK_BAD_IDENTITY)) {
1618
0
            tsan_counter(&s->session_ctx->stats.sess_miss);
1619
0
            if (!ssl_get_new_session(s, 0)) {
1620
0
                /* SSLfatal() already called */
1621
0
                goto err;
1622
0
            }
1623
0
        }
1624
0
1625
0
        s->session->ssl_version = s->version;
1626
0
        /*
1627
0
         * In TLSv1.2 and below we save the session id we were sent so we can
1628
0
         * resume it later. In TLSv1.3 the session id we were sent is just an
1629
0
         * echo of what we originally sent in the ClientHello and should not be
1630
0
         * used for resumption.
1631
0
         */
1632
0
        if (!SSL_IS_TLS13(s)) {
1633
0
            s->session->session_id_length = session_id_len;
1634
0
            /* session_id_len could be 0 */
1635
0
            if (session_id_len > 0)
1636
0
                memcpy(s->session->session_id, PACKET_data(&session_id),
1637
0
                       session_id_len);
1638
0
        }
1639
0
    }
1640
0
1641
0
    /* Session version and negotiated protocol version should match */
1642
0
    if (s->version != s->session->ssl_version) {
1643
0
        SSLfatal(s, SSL_AD_PROTOCOL_VERSION, SSL_F_TLS_PROCESS_SERVER_HELLO,
1644
0
                 SSL_R_SSL_SESSION_VERSION_MISMATCH);
1645
0
        goto err;
1646
0
    }
1647
0
    /*
1648
0
     * Now that we know the version, update the check to see if it's an allowed
1649
0
     * version.
1650
0
     */
1651
0
    s->s3->tmp.min_ver = s->version;
1652
0
    s->s3->tmp.max_ver = s->version;
1653
0
1654
0
    if (!set_client_ciphersuite(s, cipherchars)) {
1655
0
        /* SSLfatal() already called */
1656
0
        goto err;
1657
0
    }
1658
0
1659
#ifdef OPENSSL_NO_COMP
1660
    if (compression != 0) {
1661
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SERVER_HELLO,
1662
                 SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM);
1663
        goto err;
1664
    }
1665
    /*
1666
     * If compression is disabled we'd better not try to resume a session
1667
     * using compression.
1668
     */
1669
    if (s->session->compress_meth != 0) {
1670
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_F_TLS_PROCESS_SERVER_HELLO,
1671
                 SSL_R_INCONSISTENT_COMPRESSION);
1672
        goto err;
1673
    }
1674
#else
1675
0
    if (s->hit && compression != s->session->compress_meth) {
1676
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SERVER_HELLO,
1677
0
                 SSL_R_OLD_SESSION_COMPRESSION_ALGORITHM_NOT_RETURNED);
1678
0
        goto err;
1679
0
    }
1680
0
    if (compression == 0)
1681
0
        comp = NULL;
1682
0
    else if (!ssl_allow_compression(s)) {
1683
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SERVER_HELLO,
1684
0
                 SSL_R_COMPRESSION_DISABLED);
1685
0
        goto err;
1686
0
    } else {
1687
0
        comp = ssl3_comp_find(s->ctx->comp_methods, compression);
1688
0
    }
1689
0
1690
0
    if (compression != 0 && comp == NULL) {
1691
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SERVER_HELLO,
1692
0
                 SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM);
1693
0
        goto err;
1694
0
    } else {
1695
0
        s->s3->tmp.new_compression = comp;
1696
0
    }
1697
0
#endif
1698
0
1699
0
    if (!tls_parse_all_extensions(s, context, extensions, NULL, 0, 1)) {
1700
0
        /* SSLfatal() already called */
1701
0
        goto err;
1702
0
    }
1703
0
1704
#ifndef OPENSSL_NO_SCTP
1705
    if (SSL_IS_DTLS(s) && s->hit) {
1706
        unsigned char sctpauthkey[64];
1707
        char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
1708
1709
        /*
1710
         * Add new shared key for SCTP-Auth, will be ignored if
1711
         * no SCTP used.
1712
         */
1713
        memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
1714
               sizeof(DTLS1_SCTP_AUTH_LABEL));
1715
1716
        if (SSL_export_keying_material(s, sctpauthkey,
1717
                                       sizeof(sctpauthkey),
1718
                                       labelbuffer,
1719
                                       sizeof(labelbuffer), NULL, 0, 0) <= 0) {
1720
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1721
                     ERR_R_INTERNAL_ERROR);
1722
            goto err;
1723
        }
1724
1725
        BIO_ctrl(SSL_get_wbio(s),
1726
                 BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
1727
                 sizeof(sctpauthkey), sctpauthkey);
1728
    }
1729
#endif
1730
1731
0
    /*
1732
0
     * In TLSv1.3 we have some post-processing to change cipher state, otherwise
1733
0
     * we're done with this message
1734
0
     */
1735
0
    if (SSL_IS_TLS13(s)
1736
0
            && (!s->method->ssl3_enc->setup_key_block(s)
1737
0
                || !s->method->ssl3_enc->change_cipher_state(s,
1738
0
                    SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_CLIENT_READ))) {
1739
0
        /* SSLfatal() already called */
1740
0
        goto err;
1741
0
    }
1742
0
1743
0
    OPENSSL_free(extensions);
1744
0
    return MSG_PROCESS_CONTINUE_READING;
1745
0
 err:
1746
0
    OPENSSL_free(extensions);
1747
0
    return MSG_PROCESS_ERROR;
1748
0
}
1749
1750
static MSG_PROCESS_RETURN tls_process_as_hello_retry_request(SSL *s,
1751
                                                             PACKET *extpkt)
1752
0
{
1753
0
    RAW_EXTENSION *extensions = NULL;
1754
0
1755
0
    /*
1756
0
     * If we were sending early_data then the enc_write_ctx is now invalid and
1757
0
     * should not be used.
1758
0
     */
1759
0
    EVP_CIPHER_CTX_free(s->enc_write_ctx);
1760
0
    s->enc_write_ctx = NULL;
1761
0
1762
0
    if (!tls_collect_extensions(s, extpkt, SSL_EXT_TLS1_3_HELLO_RETRY_REQUEST,
1763
0
                                &extensions, NULL, 1)
1764
0
            || !tls_parse_all_extensions(s, SSL_EXT_TLS1_3_HELLO_RETRY_REQUEST,
1765
0
                                         extensions, NULL, 0, 1)) {
1766
0
        /* SSLfatal() already called */
1767
0
        goto err;
1768
0
    }
1769
0
1770
0
    OPENSSL_free(extensions);
1771
0
    extensions = NULL;
1772
0
1773
0
    if (s->ext.tls13_cookie_len == 0
1774
0
#if !defined(OPENSSL_NO_EC) || !defined(OPENSSL_NO_DH)
1775
0
        && s->s3->tmp.pkey != NULL
1776
0
#endif
1777
0
        ) {
1778
0
        /*
1779
0
         * We didn't receive a cookie or a new key_share so the next
1780
0
         * ClientHello will not change
1781
0
         */
1782
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1783
0
                 SSL_F_TLS_PROCESS_AS_HELLO_RETRY_REQUEST,
1784
0
                 SSL_R_NO_CHANGE_FOLLOWING_HRR);
1785
0
        goto err;
1786
0
    }
1787
0
1788
0
    /*
1789
0
     * Re-initialise the Transcript Hash. We're going to prepopulate it with
1790
0
     * a synthetic message_hash in place of ClientHello1.
1791
0
     */
1792
0
    if (!create_synthetic_message_hash(s, NULL, 0, NULL, 0)) {
1793
0
        /* SSLfatal() already called */
1794
0
        goto err;
1795
0
    }
1796
0
1797
0
    /*
1798
0
     * Add this message to the Transcript Hash. Normally this is done
1799
0
     * automatically prior to the message processing stage. However due to the
1800
0
     * need to create the synthetic message hash, we defer that step until now
1801
0
     * for HRR messages.
1802
0
     */
1803
0
    if (!ssl3_finish_mac(s, (unsigned char *)s->init_buf->data,
1804
0
                                s->init_num + SSL3_HM_HEADER_LENGTH)) {
1805
0
        /* SSLfatal() already called */
1806
0
        goto err;
1807
0
    }
1808
0
1809
0
    return MSG_PROCESS_FINISHED_READING;
1810
0
 err:
1811
0
    OPENSSL_free(extensions);
1812
0
    return MSG_PROCESS_ERROR;
1813
0
}
1814
1815
MSG_PROCESS_RETURN tls_process_server_certificate(SSL *s, PACKET *pkt)
1816
0
{
1817
0
    int i;
1818
0
    MSG_PROCESS_RETURN ret = MSG_PROCESS_ERROR;
1819
0
    unsigned long cert_list_len, cert_len;
1820
0
    X509 *x = NULL;
1821
0
    const unsigned char *certstart, *certbytes;
1822
0
    STACK_OF(X509) *sk = NULL;
1823
0
    EVP_PKEY *pkey = NULL;
1824
0
    size_t chainidx, certidx;
1825
0
    unsigned int context = 0;
1826
0
    const SSL_CERT_LOOKUP *clu;
1827
0
1828
0
    if ((sk = sk_X509_new_null()) == NULL) {
1829
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1830
0
                 ERR_R_MALLOC_FAILURE);
1831
0
        goto err;
1832
0
    }
1833
0
1834
0
    if ((SSL_IS_TLS13(s) && !PACKET_get_1(pkt, &context))
1835
0
            || context != 0
1836
0
            || !PACKET_get_net_3(pkt, &cert_list_len)
1837
0
            || PACKET_remaining(pkt) != cert_list_len
1838
0
            || PACKET_remaining(pkt) == 0) {
1839
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1840
0
                 SSL_R_LENGTH_MISMATCH);
1841
0
        goto err;
1842
0
    }
1843
0
    for (chainidx = 0; PACKET_remaining(pkt); chainidx++) {
1844
0
        if (!PACKET_get_net_3(pkt, &cert_len)
1845
0
            || !PACKET_get_bytes(pkt, &certbytes, cert_len)) {
1846
0
            SSLfatal(s, SSL_AD_DECODE_ERROR,
1847
0
                     SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1848
0
                     SSL_R_CERT_LENGTH_MISMATCH);
1849
0
            goto err;
1850
0
        }
1851
0
1852
0
        certstart = certbytes;
1853
0
        x = d2i_X509(NULL, (const unsigned char **)&certbytes, cert_len);
1854
0
        if (x == NULL) {
1855
0
            SSLfatal(s, SSL_AD_BAD_CERTIFICATE,
1856
0
                     SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, ERR_R_ASN1_LIB);
1857
0
            goto err;
1858
0
        }
1859
0
        if (certbytes != (certstart + cert_len)) {
1860
0
            SSLfatal(s, SSL_AD_DECODE_ERROR,
1861
0
                     SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1862
0
                     SSL_R_CERT_LENGTH_MISMATCH);
1863
0
            goto err;
1864
0
        }
1865
0
1866
0
        if (SSL_IS_TLS13(s)) {
1867
0
            RAW_EXTENSION *rawexts = NULL;
1868
0
            PACKET extensions;
1869
0
1870
0
            if (!PACKET_get_length_prefixed_2(pkt, &extensions)) {
1871
0
                SSLfatal(s, SSL_AD_DECODE_ERROR,
1872
0
                         SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1873
0
                         SSL_R_BAD_LENGTH);
1874
0
                goto err;
1875
0
            }
1876
0
            if (!tls_collect_extensions(s, &extensions,
1877
0
                                        SSL_EXT_TLS1_3_CERTIFICATE, &rawexts,
1878
0
                                        NULL, chainidx == 0)
1879
0
                || !tls_parse_all_extensions(s, SSL_EXT_TLS1_3_CERTIFICATE,
1880
0
                                             rawexts, x, chainidx,
1881
0
                                             PACKET_remaining(pkt) == 0)) {
1882
0
                OPENSSL_free(rawexts);
1883
0
                /* SSLfatal already called */
1884
0
                goto err;
1885
0
            }
1886
0
            OPENSSL_free(rawexts);
1887
0
        }
1888
0
1889
0
        if (!sk_X509_push(sk, x)) {
1890
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
1891
0
                     SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1892
0
                     ERR_R_MALLOC_FAILURE);
1893
0
            goto err;
1894
0
        }
1895
0
        x = NULL;
1896
0
    }
1897
0
1898
0
    i = ssl_verify_cert_chain(s, sk);
1899
0
    /*
1900
0
     * The documented interface is that SSL_VERIFY_PEER should be set in order
1901
0
     * for client side verification of the server certificate to take place.
1902
0
     * However, historically the code has only checked that *any* flag is set
1903
0
     * to cause server verification to take place. Use of the other flags makes
1904
0
     * no sense in client mode. An attempt to clean up the semantics was
1905
0
     * reverted because at least one application *only* set
1906
0
     * SSL_VERIFY_FAIL_IF_NO_PEER_CERT. Prior to the clean up this still caused
1907
0
     * server verification to take place, after the clean up it silently did
1908
0
     * nothing. SSL_CTX_set_verify()/SSL_set_verify() cannot validate the flags
1909
0
     * sent to them because they are void functions. Therefore, we now use the
1910
0
     * (less clean) historic behaviour of performing validation if any flag is
1911
0
     * set. The *documented* interface remains the same.
1912
0
     */
1913
0
    if (s->verify_mode != SSL_VERIFY_NONE && i <= 0) {
1914
0
        SSLfatal(s, ssl_x509err2alert(s->verify_result),
1915
0
                 SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1916
0
                 SSL_R_CERTIFICATE_VERIFY_FAILED);
1917
0
        goto err;
1918
0
    }
1919
0
    ERR_clear_error();          /* but we keep s->verify_result */
1920
0
    if (i > 1) {
1921
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
1922
0
                 SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, i);
1923
0
        goto err;
1924
0
    }
1925
0
1926
0
    s->session->peer_chain = sk;
1927
0
    /*
1928
0
     * Inconsistency alert: cert_chain does include the peer's certificate,
1929
0
     * which we don't include in statem_srvr.c
1930
0
     */
1931
0
    x = sk_X509_value(sk, 0);
1932
0
    sk = NULL;
1933
0
1934
0
    pkey = X509_get0_pubkey(x);
1935
0
1936
0
    if (pkey == NULL || EVP_PKEY_missing_parameters(pkey)) {
1937
0
        x = NULL;
1938
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1939
0
                 SSL_R_UNABLE_TO_FIND_PUBLIC_KEY_PARAMETERS);
1940
0
        goto err;
1941
0
    }
1942
0
1943
0
    if ((clu = ssl_cert_lookup_by_pkey(pkey, &certidx)) == NULL) {
1944
0
        x = NULL;
1945
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1946
0
                 SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1947
0
                 SSL_R_UNKNOWN_CERTIFICATE_TYPE);
1948
0
        goto err;
1949
0
    }
1950
0
    /*
1951
0
     * Check certificate type is consistent with ciphersuite. For TLS 1.3
1952
0
     * skip check since TLS 1.3 ciphersuites can be used with any certificate
1953
0
     * type.
1954
0
     */
1955
0
    if (!SSL_IS_TLS13(s)) {
1956
0
        if ((clu->amask & s->s3->tmp.new_cipher->algorithm_auth) == 0) {
1957
0
            x = NULL;
1958
0
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1959
0
                     SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1960
0
                     SSL_R_WRONG_CERTIFICATE_TYPE);
1961
0
            goto err;
1962
0
        }
1963
0
    }
1964
0
    s->session->peer_type = certidx;
1965
0
1966
0
    X509_free(s->session->peer);
1967
0
    X509_up_ref(x);
1968
0
    s->session->peer = x;
1969
0
    s->session->verify_result = s->verify_result;
1970
0
    x = NULL;
1971
0
1972
0
    /* Save the current hash state for when we receive the CertificateVerify */
1973
0
    if (SSL_IS_TLS13(s)
1974
0
            && !ssl_handshake_hash(s, s->cert_verify_hash,
1975
0
                                   sizeof(s->cert_verify_hash),
1976
0
                                   &s->cert_verify_hash_len)) {
1977
0
        /* SSLfatal() already called */;
1978
0
        goto err;
1979
0
    }
1980
0
1981
0
    ret = MSG_PROCESS_CONTINUE_READING;
1982
0
1983
0
 err:
1984
0
    X509_free(x);
1985
0
    sk_X509_pop_free(sk, X509_free);
1986
0
    return ret;
1987
0
}
1988
1989
static int tls_process_ske_psk_preamble(SSL *s, PACKET *pkt)
1990
0
{
1991
0
#ifndef OPENSSL_NO_PSK
1992
0
    PACKET psk_identity_hint;
1993
0
1994
0
    /* PSK ciphersuites are preceded by an identity hint */
1995
0
1996
0
    if (!PACKET_get_length_prefixed_2(pkt, &psk_identity_hint)) {
1997
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE,
1998
0
                 SSL_R_LENGTH_MISMATCH);
1999
0
        return 0;
2000
0
    }
2001
0
2002
0
    /*
2003
0
     * Store PSK identity hint for later use, hint is used in
2004
0
     * tls_construct_client_key_exchange.  Assume that the maximum length of
2005
0
     * a PSK identity hint can be as long as the maximum length of a PSK
2006
0
     * identity.
2007
0
     */
2008
0
    if (PACKET_remaining(&psk_identity_hint) > PSK_MAX_IDENTITY_LEN) {
2009
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
2010
0
                 SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE,
2011
0
                 SSL_R_DATA_LENGTH_TOO_LONG);
2012
0
        return 0;
2013
0
    }
2014
0
2015
0
    if (PACKET_remaining(&psk_identity_hint) == 0) {
2016
0
        OPENSSL_free(s->session->psk_identity_hint);
2017
0
        s->session->psk_identity_hint = NULL;
2018
0
    } else if (!PACKET_strndup(&psk_identity_hint,
2019
0
                               &s->session->psk_identity_hint)) {
2020
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE,
2021
0
                 ERR_R_INTERNAL_ERROR);
2022
0
        return 0;
2023
0
    }
2024
0
2025
0
    return 1;
2026
#else
2027
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE,
2028
             ERR_R_INTERNAL_ERROR);
2029
    return 0;
2030
#endif
2031
}
2032
2033
static int tls_process_ske_srp(SSL *s, PACKET *pkt, EVP_PKEY **pkey)
2034
0
{
2035
0
#ifndef OPENSSL_NO_SRP
2036
0
    PACKET prime, generator, salt, server_pub;
2037
0
2038
0
    if (!PACKET_get_length_prefixed_2(pkt, &prime)
2039
0
        || !PACKET_get_length_prefixed_2(pkt, &generator)
2040
0
        || !PACKET_get_length_prefixed_1(pkt, &salt)
2041
0
        || !PACKET_get_length_prefixed_2(pkt, &server_pub)) {
2042
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SKE_SRP,
2043
0
                 SSL_R_LENGTH_MISMATCH);
2044
0
        return 0;
2045
0
    }
2046
0
2047
0
    /* TODO(size_t): Convert BN_bin2bn() calls */
2048
0
    if ((s->srp_ctx.N =
2049
0
         BN_bin2bn(PACKET_data(&prime),
2050
0
                   (int)PACKET_remaining(&prime), NULL)) == NULL
2051
0
        || (s->srp_ctx.g =
2052
0
            BN_bin2bn(PACKET_data(&generator),
2053
0
                      (int)PACKET_remaining(&generator), NULL)) == NULL
2054
0
        || (s->srp_ctx.s =
2055
0
            BN_bin2bn(PACKET_data(&salt),
2056
0
                      (int)PACKET_remaining(&salt), NULL)) == NULL
2057
0
        || (s->srp_ctx.B =
2058
0
            BN_bin2bn(PACKET_data(&server_pub),
2059
0
                      (int)PACKET_remaining(&server_pub), NULL)) == NULL) {
2060
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_SRP,
2061
0
                 ERR_R_BN_LIB);
2062
0
        return 0;
2063
0
    }
2064
0
2065
0
    if (!srp_verify_server_param(s)) {
2066
0
        /* SSLfatal() already called */
2067
0
        return 0;
2068
0
    }
2069
0
2070
0
    /* We must check if there is a certificate */
2071
0
    if (s->s3->tmp.new_cipher->algorithm_auth & (SSL_aRSA | SSL_aDSS))
2072
0
        *pkey = X509_get0_pubkey(s->session->peer);
2073
0
2074
0
    return 1;
2075
#else
2076
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_SRP,
2077
             ERR_R_INTERNAL_ERROR);
2078
    return 0;
2079
#endif
2080
}
2081
2082
static int tls_process_ske_dhe(SSL *s, PACKET *pkt, EVP_PKEY **pkey)
2083
0
{
2084
0
#ifndef OPENSSL_NO_DH
2085
0
    PACKET prime, generator, pub_key;
2086
0
    EVP_PKEY *peer_tmp = NULL;
2087
0
2088
0
    DH *dh = NULL;
2089
0
    BIGNUM *p = NULL, *g = NULL, *bnpub_key = NULL;
2090
0
2091
0
    int check_bits = 0;
2092
0
2093
0
    if (!PACKET_get_length_prefixed_2(pkt, &prime)
2094
0
        || !PACKET_get_length_prefixed_2(pkt, &generator)
2095
0
        || !PACKET_get_length_prefixed_2(pkt, &pub_key)) {
2096
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2097
0
                 SSL_R_LENGTH_MISMATCH);
2098
0
        return 0;
2099
0
    }
2100
0
2101
0
    peer_tmp = EVP_PKEY_new();
2102
0
    dh = DH_new();
2103
0
2104
0
    if (peer_tmp == NULL || dh == NULL) {
2105
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2106
0
                 ERR_R_MALLOC_FAILURE);
2107
0
        goto err;
2108
0
    }
2109
0
2110
0
    /* TODO(size_t): Convert these calls */
2111
0
    p = BN_bin2bn(PACKET_data(&prime), (int)PACKET_remaining(&prime), NULL);
2112
0
    g = BN_bin2bn(PACKET_data(&generator), (int)PACKET_remaining(&generator),
2113
0
                  NULL);
2114
0
    bnpub_key = BN_bin2bn(PACKET_data(&pub_key),
2115
0
                          (int)PACKET_remaining(&pub_key), NULL);
2116
0
    if (p == NULL || g == NULL || bnpub_key == NULL) {
2117
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2118
0
                 ERR_R_BN_LIB);
2119
0
        goto err;
2120
0
    }
2121
0
2122
0
    /* test non-zero pubkey */
2123
0
    if (BN_is_zero(bnpub_key)) {
2124
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SKE_DHE,
2125
0
                 SSL_R_BAD_DH_VALUE);
2126
0
        goto err;
2127
0
    }
2128
0
2129
0
    if (!DH_set0_pqg(dh, p, NULL, g)) {
2130
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2131
0
                 ERR_R_BN_LIB);
2132
0
        goto err;
2133
0
    }
2134
0
    p = g = NULL;
2135
0
2136
0
    if (DH_check_params(dh, &check_bits) == 0 || check_bits != 0) {
2137
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SKE_DHE,
2138
0
                 SSL_R_BAD_DH_VALUE);
2139
0
        goto err;
2140
0
    }
2141
0
2142
0
    if (!DH_set0_key(dh, bnpub_key, NULL)) {
2143
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2144
0
                 ERR_R_BN_LIB);
2145
0
        goto err;
2146
0
    }
2147
0
    bnpub_key = NULL;
2148
0
2149
0
    if (!ssl_security(s, SSL_SECOP_TMP_DH, DH_security_bits(dh), 0, dh)) {
2150
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_F_TLS_PROCESS_SKE_DHE,
2151
0
                 SSL_R_DH_KEY_TOO_SMALL);
2152
0
        goto err;
2153
0
    }
2154
0
2155
0
    if (EVP_PKEY_assign_DH(peer_tmp, dh) == 0) {
2156
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2157
0
                 ERR_R_EVP_LIB);
2158
0
        goto err;
2159
0
    }
2160
0
2161
0
    s->s3->peer_tmp = peer_tmp;
2162
0
2163
0
    /*
2164
0
     * FIXME: This makes assumptions about which ciphersuites come with
2165
0
     * public keys. We should have a less ad-hoc way of doing this
2166
0
     */
2167
0
    if (s->s3->tmp.new_cipher->algorithm_auth & (SSL_aRSA | SSL_aDSS))
2168
0
        *pkey = X509_get0_pubkey(s->session->peer);
2169
0
    /* else anonymous DH, so no certificate or pkey. */
2170
0
2171
0
    return 1;
2172
0
2173
0
 err:
2174
0
    BN_free(p);
2175
0
    BN_free(g);
2176
0
    BN_free(bnpub_key);
2177
0
    DH_free(dh);
2178
0
    EVP_PKEY_free(peer_tmp);
2179
0
2180
0
    return 0;
2181
#else
2182
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2183
             ERR_R_INTERNAL_ERROR);
2184
    return 0;
2185
#endif
2186
}
2187
2188
static int tls_process_ske_ecdhe(SSL *s, PACKET *pkt, EVP_PKEY **pkey)
2189
0
{
2190
0
#ifndef OPENSSL_NO_EC
2191
0
    PACKET encoded_pt;
2192
0
    unsigned int curve_type, curve_id;
2193
0
2194
0
    /*
2195
0
     * Extract elliptic curve parameters and the server's ephemeral ECDH
2196
0
     * public key. We only support named (not generic) curves and
2197
0
     * ECParameters in this case is just three bytes.
2198
0
     */
2199
0
    if (!PACKET_get_1(pkt, &curve_type) || !PACKET_get_net_2(pkt, &curve_id)) {
2200
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SKE_ECDHE,
2201
0
                 SSL_R_LENGTH_TOO_SHORT);
2202
0
        return 0;
2203
0
    }
2204
0
    /*
2205
0
     * Check curve is named curve type and one of our preferences, if not
2206
0
     * server has sent an invalid curve.
2207
0
     */
2208
0
    if (curve_type != NAMED_CURVE_TYPE
2209
0
            || !tls1_check_group_id(s, curve_id, 1)) {
2210
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SKE_ECDHE,
2211
0
                 SSL_R_WRONG_CURVE);
2212
0
        return 0;
2213
0
    }
2214
0
2215
0
    if ((s->s3->peer_tmp = ssl_generate_param_group(curve_id)) == NULL) {
2216
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_ECDHE,
2217
0
                 SSL_R_UNABLE_TO_FIND_ECDH_PARAMETERS);
2218
0
        return 0;
2219
0
    }
2220
0
2221
0
    if (!PACKET_get_length_prefixed_1(pkt, &encoded_pt)) {
2222
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SKE_ECDHE,
2223
0
                 SSL_R_LENGTH_MISMATCH);
2224
0
        return 0;
2225
0
    }
2226
0
2227
0
    if (!EVP_PKEY_set1_tls_encodedpoint(s->s3->peer_tmp,
2228
0
                                        PACKET_data(&encoded_pt),
2229
0
                                        PACKET_remaining(&encoded_pt))) {
2230
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SKE_ECDHE,
2231
0
                 SSL_R_BAD_ECPOINT);
2232
0
        return 0;
2233
0
    }
2234
0
2235
0
    /*
2236
0
     * The ECC/TLS specification does not mention the use of DSA to sign
2237
0
     * ECParameters in the server key exchange message. We do support RSA
2238
0
     * and ECDSA.
2239
0
     */
2240
0
    if (s->s3->tmp.new_cipher->algorithm_auth & SSL_aECDSA)
2241
0
        *pkey = X509_get0_pubkey(s->session->peer);
2242
0
    else if (s->s3->tmp.new_cipher->algorithm_auth & SSL_aRSA)
2243
0
        *pkey = X509_get0_pubkey(s->session->peer);
2244
0
    /* else anonymous ECDH, so no certificate or pkey. */
2245
0
2246
0
    return 1;
2247
#else
2248
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_ECDHE,
2249
             ERR_R_INTERNAL_ERROR);
2250
    return 0;
2251
#endif
2252
}
2253
2254
MSG_PROCESS_RETURN tls_process_key_exchange(SSL *s, PACKET *pkt)
2255
0
{
2256
0
    long alg_k;
2257
0
    EVP_PKEY *pkey = NULL;
2258
0
    EVP_MD_CTX *md_ctx = NULL;
2259
0
    EVP_PKEY_CTX *pctx = NULL;
2260
0
    PACKET save_param_start, signature;
2261
0
2262
0
    alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
2263
0
2264
0
    save_param_start = *pkt;
2265
0
2266
0
#if !defined(OPENSSL_NO_EC) || !defined(OPENSSL_NO_DH)
2267
0
    EVP_PKEY_free(s->s3->peer_tmp);
2268
0
    s->s3->peer_tmp = NULL;
2269
0
#endif
2270
0
2271
0
    if (alg_k & SSL_PSK) {
2272
0
        if (!tls_process_ske_psk_preamble(s, pkt)) {
2273
0
            /* SSLfatal() already called */
2274
0
            goto err;
2275
0
        }
2276
0
    }
2277
0
2278
0
    /* Nothing else to do for plain PSK or RSAPSK */
2279
0
    if (alg_k & (SSL_kPSK | SSL_kRSAPSK)) {
2280
0
    } else if (alg_k & SSL_kSRP) {
2281
0
        if (!tls_process_ske_srp(s, pkt, &pkey)) {
2282
0
            /* SSLfatal() already called */
2283
0
            goto err;
2284
0
        }
2285
0
    } else if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) {
2286
0
        if (!tls_process_ske_dhe(s, pkt, &pkey)) {
2287
0
            /* SSLfatal() already called */
2288
0
            goto err;
2289
0
        }
2290
0
    } else if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) {
2291
0
        if (!tls_process_ske_ecdhe(s, pkt, &pkey)) {
2292
0
            /* SSLfatal() already called */
2293
0
            goto err;
2294
0
        }
2295
0
    } else if (alg_k) {
2296
0
        SSLfatal(s, SSL_AD_UNEXPECTED_MESSAGE, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2297
0
                 SSL_R_UNEXPECTED_MESSAGE);
2298
0
        goto err;
2299
0
    }
2300
0
2301
0
    /* if it was signed, check the signature */
2302
0
    if (pkey != NULL) {
2303
0
        PACKET params;
2304
0
        int maxsig;
2305
0
        const EVP_MD *md = NULL;
2306
0
        unsigned char *tbs;
2307
0
        size_t tbslen;
2308
0
        int rv;
2309
0
2310
0
        /*
2311
0
         * |pkt| now points to the beginning of the signature, so the difference
2312
0
         * equals the length of the parameters.
2313
0
         */
2314
0
        if (!PACKET_get_sub_packet(&save_param_start, &params,
2315
0
                                   PACKET_remaining(&save_param_start) -
2316
0
                                   PACKET_remaining(pkt))) {
2317
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2318
0
                     ERR_R_INTERNAL_ERROR);
2319
0
            goto err;
2320
0
        }
2321
0
2322
0
        if (SSL_USE_SIGALGS(s)) {
2323
0
            unsigned int sigalg;
2324
0
2325
0
            if (!PACKET_get_net_2(pkt, &sigalg)) {
2326
0
                SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2327
0
                         SSL_R_LENGTH_TOO_SHORT);
2328
0
                goto err;
2329
0
            }
2330
0
            if (tls12_check_peer_sigalg(s, sigalg, pkey) <=0) {
2331
0
                /* SSLfatal() already called */
2332
0
                goto err;
2333
0
            }
2334
0
        } else if (!tls1_set_peer_legacy_sigalg(s, pkey)) {
2335
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2336
0
                     ERR_R_INTERNAL_ERROR);
2337
0
            goto err;
2338
0
        }
2339
0
2340
0
        if (!tls1_lookup_md(s->s3->tmp.peer_sigalg, &md)) {
2341
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2342
0
                     ERR_R_INTERNAL_ERROR);
2343
0
            goto err;
2344
0
        }
2345
#ifdef SSL_DEBUG
2346
        if (SSL_USE_SIGALGS(s))
2347
            fprintf(stderr, "USING TLSv1.2 HASH %s\n", EVP_MD_name(md));
2348
#endif
2349
2350
0
        if (!PACKET_get_length_prefixed_2(pkt, &signature)
2351
0
            || PACKET_remaining(pkt) != 0) {
2352
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2353
0
                     SSL_R_LENGTH_MISMATCH);
2354
0
            goto err;
2355
0
        }
2356
0
        maxsig = EVP_PKEY_size(pkey);
2357
0
        if (maxsig < 0) {
2358
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2359
0
                     ERR_R_INTERNAL_ERROR);
2360
0
            goto err;
2361
0
        }
2362
0
2363
0
        /*
2364
0
         * Check signature length
2365
0
         */
2366
0
        if (PACKET_remaining(&signature) > (size_t)maxsig) {
2367
0
            /* wrong packet length */
2368
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2369
0
                   SSL_R_WRONG_SIGNATURE_LENGTH);
2370
0
            goto err;
2371
0
        }
2372
0
2373
0
        md_ctx = EVP_MD_CTX_new();
2374
0
        if (md_ctx == NULL) {
2375
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2376
0
                     ERR_R_MALLOC_FAILURE);
2377
0
            goto err;
2378
0
        }
2379
0
2380
0
        if (EVP_DigestVerifyInit(md_ctx, &pctx, md, NULL, pkey) <= 0) {
2381
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2382
0
                     ERR_R_EVP_LIB);
2383
0
            goto err;
2384
0
        }
2385
0
        if (SSL_USE_PSS(s)) {
2386
0
            if (EVP_PKEY_CTX_set_rsa_padding(pctx, RSA_PKCS1_PSS_PADDING) <= 0
2387
0
                || EVP_PKEY_CTX_set_rsa_pss_saltlen(pctx,
2388
0
                                                RSA_PSS_SALTLEN_DIGEST) <= 0) {
2389
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2390
0
                         SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_EVP_LIB);
2391
0
                goto err;
2392
0
            }
2393
0
        }
2394
0
        tbslen = construct_key_exchange_tbs(s, &tbs, PACKET_data(&params),
2395
0
                                            PACKET_remaining(&params));
2396
0
        if (tbslen == 0) {
2397
0
            /* SSLfatal() already called */
2398
0
            goto err;
2399
0
        }
2400
0
2401
0
        rv = EVP_DigestVerify(md_ctx, PACKET_data(&signature),
2402
0
                              PACKET_remaining(&signature), tbs, tbslen);
2403
0
        OPENSSL_free(tbs);
2404
0
        if (rv <= 0) {
2405
0
            SSLfatal(s, SSL_AD_DECRYPT_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2406
0
                     SSL_R_BAD_SIGNATURE);
2407
0
            goto err;
2408
0
        }
2409
0
        EVP_MD_CTX_free(md_ctx);
2410
0
        md_ctx = NULL;
2411
0
    } else {
2412
0
        /* aNULL, aSRP or PSK do not need public keys */
2413
0
        if (!(s->s3->tmp.new_cipher->algorithm_auth & (SSL_aNULL | SSL_aSRP))
2414
0
            && !(alg_k & SSL_PSK)) {
2415
0
            /* Might be wrong key type, check it */
2416
0
            if (ssl3_check_cert_and_algorithm(s)) {
2417
0
                SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2418
0
                         SSL_R_BAD_DATA);
2419
0
            }
2420
0
            /* else this shouldn't happen, SSLfatal() already called */
2421
0
            goto err;
2422
0
        }
2423
0
        /* still data left over */
2424
0
        if (PACKET_remaining(pkt) != 0) {
2425
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2426
0
                     SSL_R_EXTRA_DATA_IN_MESSAGE);
2427
0
            goto err;
2428
0
        }
2429
0
    }
2430
0
2431
0
    return MSG_PROCESS_CONTINUE_READING;
2432
0
 err:
2433
0
    EVP_MD_CTX_free(md_ctx);
2434
0
    return MSG_PROCESS_ERROR;
2435
0
}
2436
2437
MSG_PROCESS_RETURN tls_process_certificate_request(SSL *s, PACKET *pkt)
2438
0
{
2439
0
    size_t i;
2440
0
2441
0
    /* Clear certificate validity flags */
2442
0
    for (i = 0; i < SSL_PKEY_NUM; i++)
2443
0
        s->s3->tmp.valid_flags[i] = 0;
2444
0
2445
0
    if (SSL_IS_TLS13(s)) {
2446
0
        PACKET reqctx, extensions;
2447
0
        RAW_EXTENSION *rawexts = NULL;
2448
0
2449
0
        /* Free and zero certificate types: it is not present in TLS 1.3 */
2450
0
        OPENSSL_free(s->s3->tmp.ctype);
2451
0
        s->s3->tmp.ctype = NULL;
2452
0
        s->s3->tmp.ctype_len = 0;
2453
0
        OPENSSL_free(s->pha_context);
2454
0
        s->pha_context = NULL;
2455
0
2456
0
        if (!PACKET_get_length_prefixed_1(pkt, &reqctx) ||
2457
0
            !PACKET_memdup(&reqctx, &s->pha_context, &s->pha_context_len)) {
2458
0
            SSLfatal(s, SSL_AD_DECODE_ERROR,
2459
0
                     SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2460
0
                     SSL_R_LENGTH_MISMATCH);
2461
0
            return MSG_PROCESS_ERROR;
2462
0
        }
2463
0
2464
0
        if (!PACKET_get_length_prefixed_2(pkt, &extensions)) {
2465
0
            SSLfatal(s, SSL_AD_DECODE_ERROR,
2466
0
                     SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2467
0
                     SSL_R_BAD_LENGTH);
2468
0
            return MSG_PROCESS_ERROR;
2469
0
        }
2470
0
        if (!tls_collect_extensions(s, &extensions,
2471
0
                                    SSL_EXT_TLS1_3_CERTIFICATE_REQUEST,
2472
0
                                    &rawexts, NULL, 1)
2473
0
            || !tls_parse_all_extensions(s, SSL_EXT_TLS1_3_CERTIFICATE_REQUEST,
2474
0
                                         rawexts, NULL, 0, 1)) {
2475
0
            /* SSLfatal() already called */
2476
0
            OPENSSL_free(rawexts);
2477
0
            return MSG_PROCESS_ERROR;
2478
0
        }
2479
0
        OPENSSL_free(rawexts);
2480
0
        if (!tls1_process_sigalgs(s)) {
2481
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2482
0
                     SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2483
0
                     SSL_R_BAD_LENGTH);
2484
0
            return MSG_PROCESS_ERROR;
2485
0
        }
2486
0
    } else {
2487
0
        PACKET ctypes;
2488
0
2489
0
        /* get the certificate types */
2490
0
        if (!PACKET_get_length_prefixed_1(pkt, &ctypes)) {
2491
0
            SSLfatal(s, SSL_AD_DECODE_ERROR,
2492
0
                     SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2493
0
                     SSL_R_LENGTH_MISMATCH);
2494
0
            return MSG_PROCESS_ERROR;
2495
0
        }
2496
0
2497
0
        if (!PACKET_memdup(&ctypes, &s->s3->tmp.ctype, &s->s3->tmp.ctype_len)) {
2498
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2499
0
                     SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2500
0
                     ERR_R_INTERNAL_ERROR);
2501
0
            return MSG_PROCESS_ERROR;
2502
0
        }
2503
0
2504
0
        if (SSL_USE_SIGALGS(s)) {
2505
0
            PACKET sigalgs;
2506
0
2507
0
            if (!PACKET_get_length_prefixed_2(pkt, &sigalgs)) {
2508
0
                SSLfatal(s, SSL_AD_DECODE_ERROR,
2509
0
                         SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2510
0
                         SSL_R_LENGTH_MISMATCH);
2511
0
                return MSG_PROCESS_ERROR;
2512
0
            }
2513
0
2514
0
            /*
2515
0
             * Despite this being for certificates, preserve compatibility
2516
0
             * with pre-TLS 1.3 and use the regular sigalgs field.
2517
0
             */
2518
0
            if (!tls1_save_sigalgs(s, &sigalgs, 0)) {
2519
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2520
0
                         SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2521
0
                         SSL_R_SIGNATURE_ALGORITHMS_ERROR);
2522
0
                return MSG_PROCESS_ERROR;
2523
0
            }
2524
0
            if (!tls1_process_sigalgs(s)) {
2525
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2526
0
                         SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2527
0
                         ERR_R_MALLOC_FAILURE);
2528
0
                return MSG_PROCESS_ERROR;
2529
0
            }
2530
0
        }
2531
0
2532
0
        /* get the CA RDNs */
2533
0
        if (!parse_ca_names(s, pkt)) {
2534
0
            /* SSLfatal() already called */
2535
0
            return MSG_PROCESS_ERROR;
2536
0
        }
2537
0
    }
2538
0
2539
0
    if (PACKET_remaining(pkt) != 0) {
2540
0
        SSLfatal(s, SSL_AD_DECODE_ERROR,
2541
0
                 SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2542
0
                 SSL_R_LENGTH_MISMATCH);
2543
0
        return MSG_PROCESS_ERROR;
2544
0
    }
2545
0
2546
0
    /* we should setup a certificate to return.... */
2547
0
    s->s3->tmp.cert_req = 1;
2548
0
2549
0
    return MSG_PROCESS_CONTINUE_PROCESSING;
2550
0
}
2551
2552
MSG_PROCESS_RETURN tls_process_new_session_ticket(SSL *s, PACKET *pkt)
2553
0
{
2554
0
    unsigned int ticklen;
2555
0
    unsigned long ticket_lifetime_hint, age_add = 0;
2556
0
    unsigned int sess_len;
2557
0
    RAW_EXTENSION *exts = NULL;
2558
0
    PACKET nonce;
2559
0
2560
0
    PACKET_null_init(&nonce);
2561
0
2562
0
    if (!PACKET_get_net_4(pkt, &ticket_lifetime_hint)
2563
0
        || (SSL_IS_TLS13(s)
2564
0
            && (!PACKET_get_net_4(pkt, &age_add)
2565
0
                || !PACKET_get_length_prefixed_1(pkt, &nonce)))
2566
0
        || !PACKET_get_net_2(pkt, &ticklen)
2567
0
        || (SSL_IS_TLS13(s) ? (ticklen == 0 || PACKET_remaining(pkt) < ticklen)
2568
0
                            : PACKET_remaining(pkt) != ticklen)) {
2569
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2570
0
                 SSL_R_LENGTH_MISMATCH);
2571
0
        goto err;
2572
0
    }
2573
0
2574
0
    /*
2575
0
     * Server is allowed to change its mind (in <=TLSv1.2) and send an empty
2576
0
     * ticket. We already checked this TLSv1.3 case above, so it should never
2577
0
     * be 0 here in that instance
2578
0
     */
2579
0
    if (ticklen == 0)
2580
0
        return MSG_PROCESS_CONTINUE_READING;
2581
0
2582
0
    /*
2583
0
     * Sessions must be immutable once they go into the session cache. Otherwise
2584
0
     * we can get multi-thread problems. Therefore we don't "update" sessions,
2585
0
     * we replace them with a duplicate. In TLSv1.3 we need to do this every
2586
0
     * time a NewSessionTicket arrives because those messages arrive
2587
0
     * post-handshake and the session may have already gone into the session
2588
0
     * cache.
2589
0
     */
2590
0
    if (SSL_IS_TLS13(s) || s->session->session_id_length > 0) {
2591
0
        SSL_SESSION *new_sess;
2592
0
2593
0
        /*
2594
0
         * We reused an existing session, so we need to replace it with a new
2595
0
         * one
2596
0
         */
2597
0
        if ((new_sess = ssl_session_dup(s->session, 0)) == 0) {
2598
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2599
0
                     SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2600
0
                     ERR_R_MALLOC_FAILURE);
2601
0
            goto err;
2602
0
        }
2603
0
2604
0
        if ((s->session_ctx->session_cache_mode & SSL_SESS_CACHE_CLIENT) != 0
2605
0
                && !SSL_IS_TLS13(s)) {
2606
0
            /*
2607
0
             * In TLSv1.2 and below the arrival of a new tickets signals that
2608
0
             * any old ticket we were using is now out of date, so we remove the
2609
0
             * old session from the cache. We carry on if this fails
2610
0
             */
2611
0
            SSL_CTX_remove_session(s->session_ctx, s->session);
2612
0
        }
2613
0
2614
0
        SSL_SESSION_free(s->session);
2615
0
        s->session = new_sess;
2616
0
    }
2617
0
2618
0
    /*
2619
0
     * Technically the cast to long here is not guaranteed by the C standard -
2620
0
     * but we use it elsewhere, so this should be ok.
2621
0
     */
2622
0
    s->session->time = (long)time(NULL);
2623
0
2624
0
    OPENSSL_free(s->session->ext.tick);
2625
0
    s->session->ext.tick = NULL;
2626
0
    s->session->ext.ticklen = 0;
2627
0
2628
0
    s->session->ext.tick = OPENSSL_malloc(ticklen);
2629
0
    if (s->session->ext.tick == NULL) {
2630
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2631
0
                 ERR_R_MALLOC_FAILURE);
2632
0
        goto err;
2633
0
    }
2634
0
    if (!PACKET_copy_bytes(pkt, s->session->ext.tick, ticklen)) {
2635
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2636
0
                 SSL_R_LENGTH_MISMATCH);
2637
0
        goto err;
2638
0
    }
2639
0
2640
0
    s->session->ext.tick_lifetime_hint = ticket_lifetime_hint;
2641
0
    s->session->ext.tick_age_add = age_add;
2642
0
    s->session->ext.ticklen = ticklen;
2643
0
2644
0
    if (SSL_IS_TLS13(s)) {
2645
0
        PACKET extpkt;
2646
0
2647
0
        if (!PACKET_as_length_prefixed_2(pkt, &extpkt)
2648
0
                || PACKET_remaining(pkt) != 0) {
2649
0
            SSLfatal(s, SSL_AD_DECODE_ERROR,
2650
0
                     SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2651
0
                     SSL_R_LENGTH_MISMATCH);
2652
0
            goto err;
2653
0
        }
2654
0
2655
0
        if (!tls_collect_extensions(s, &extpkt,
2656
0
                                    SSL_EXT_TLS1_3_NEW_SESSION_TICKET, &exts,
2657
0
                                    NULL, 1)
2658
0
                || !tls_parse_all_extensions(s,
2659
0
                                             SSL_EXT_TLS1_3_NEW_SESSION_TICKET,
2660
0
                                             exts, NULL, 0, 1)) {
2661
0
            /* SSLfatal() already called */
2662
0
            goto err;
2663
0
        }
2664
0
    }
2665
0
2666
0
    /*
2667
0
     * There are two ways to detect a resumed ticket session. One is to set
2668
0
     * an appropriate session ID and then the server must return a match in
2669
0
     * ServerHello. This allows the normal client session ID matching to work
2670
0
     * and we know much earlier that the ticket has been accepted. The
2671
0
     * other way is to set zero length session ID when the ticket is
2672
0
     * presented and rely on the handshake to determine session resumption.
2673
0
     * We choose the former approach because this fits in with assumptions
2674
0
     * elsewhere in OpenSSL. The session ID is set to the SHA256 (or SHA1 is
2675
0
     * SHA256 is disabled) hash of the ticket.
2676
0
     */
2677
0
    /*
2678
0
     * TODO(size_t): we use sess_len here because EVP_Digest expects an int
2679
0
     * but s->session->session_id_length is a size_t
2680
0
     */
2681
0
    if (!EVP_Digest(s->session->ext.tick, ticklen,
2682
0
                    s->session->session_id, &sess_len,
2683
0
                    EVP_sha256(), NULL)) {
2684
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2685
0
                 ERR_R_EVP_LIB);
2686
0
        goto err;
2687
0
    }
2688
0
    s->session->session_id_length = sess_len;
2689
0
    s->session->not_resumable = 0;
2690
0
2691
0
    /* This is a standalone message in TLSv1.3, so there is no more to read */
2692
0
    if (SSL_IS_TLS13(s)) {
2693
0
        const EVP_MD *md = ssl_handshake_md(s);
2694
0
        int hashleni = EVP_MD_size(md);
2695
0
        size_t hashlen;
2696
0
        static const unsigned char nonce_label[] = "resumption";
2697
0
2698
0
        /* Ensure cast to size_t is safe */
2699
0
        if (!ossl_assert(hashleni >= 0)) {
2700
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2701
0
                     SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2702
0
                     ERR_R_INTERNAL_ERROR);
2703
0
            goto err;
2704
0
        }
2705
0
        hashlen = (size_t)hashleni;
2706
0
2707
0
        if (!tls13_hkdf_expand(s, md, s->resumption_master_secret,
2708
0
                               nonce_label,
2709
0
                               sizeof(nonce_label) - 1,
2710
0
                               PACKET_data(&nonce),
2711
0
                               PACKET_remaining(&nonce),
2712
0
                               s->session->master_key,
2713
0
                               hashlen)) {
2714
0
            /* SSLfatal() already called */
2715
0
            goto err;
2716
0
        }
2717
0
        s->session->master_key_length = hashlen;
2718
0
2719
0
        OPENSSL_free(exts);
2720
0
        ssl_update_cache(s, SSL_SESS_CACHE_CLIENT);
2721
0
        return MSG_PROCESS_FINISHED_READING;
2722
0
    }
2723
0
2724
0
    return MSG_PROCESS_CONTINUE_READING;
2725
0
 err:
2726
0
    OPENSSL_free(exts);
2727
0
    return MSG_PROCESS_ERROR;
2728
0
}
2729
2730
/*
2731
 * In TLSv1.3 this is called from the extensions code, otherwise it is used to
2732
 * parse a separate message. Returns 1 on success or 0 on failure
2733
 */
2734
int tls_process_cert_status_body(SSL *s, PACKET *pkt)
2735
0
{
2736
0
    size_t resplen;
2737
0
    unsigned int type;
2738
0
2739
0
    if (!PACKET_get_1(pkt, &type)
2740
0
        || type != TLSEXT_STATUSTYPE_ocsp) {
2741
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_CERT_STATUS_BODY,
2742
0
                 SSL_R_UNSUPPORTED_STATUS_TYPE);
2743
0
        return 0;
2744
0
    }
2745
0
    if (!PACKET_get_net_3_len(pkt, &resplen)
2746
0
        || PACKET_remaining(pkt) != resplen) {
2747
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_CERT_STATUS_BODY,
2748
0
                 SSL_R_LENGTH_MISMATCH);
2749
0
        return 0;
2750
0
    }
2751
0
    s->ext.ocsp.resp = OPENSSL_malloc(resplen);
2752
0
    if (s->ext.ocsp.resp == NULL) {
2753
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_CERT_STATUS_BODY,
2754
0
                 ERR_R_MALLOC_FAILURE);
2755
0
        return 0;
2756
0
    }
2757
0
    if (!PACKET_copy_bytes(pkt, s->ext.ocsp.resp, resplen)) {
2758
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_CERT_STATUS_BODY,
2759
0
                 SSL_R_LENGTH_MISMATCH);
2760
0
        return 0;
2761
0
    }
2762
0
    s->ext.ocsp.resp_len = resplen;
2763
0
2764
0
    return 1;
2765
0
}
2766
2767
2768
MSG_PROCESS_RETURN tls_process_cert_status(SSL *s, PACKET *pkt)
2769
0
{
2770
0
    if (!tls_process_cert_status_body(s, pkt)) {
2771
0
        /* SSLfatal() already called */
2772
0
        return MSG_PROCESS_ERROR;
2773
0
    }
2774
0
2775
0
    return MSG_PROCESS_CONTINUE_READING;
2776
0
}
2777
2778
/*
2779
 * Perform miscellaneous checks and processing after we have received the
2780
 * server's initial flight. In TLS1.3 this is after the Server Finished message.
2781
 * In <=TLS1.2 this is after the ServerDone message. Returns 1 on success or 0
2782
 * on failure.
2783
 */
2784
int tls_process_initial_server_flight(SSL *s)
2785
0
{
2786
0
    /*
2787
0
     * at this point we check that we have the required stuff from
2788
0
     * the server
2789
0
     */
2790
0
    if (!ssl3_check_cert_and_algorithm(s)) {
2791
0
        /* SSLfatal() already called */
2792
0
        return 0;
2793
0
    }
2794
0
2795
0
    /*
2796
0
     * Call the ocsp status callback if needed. The |ext.ocsp.resp| and
2797
0
     * |ext.ocsp.resp_len| values will be set if we actually received a status
2798
0
     * message, or NULL and -1 otherwise
2799
0
     */
2800
0
    if (s->ext.status_type != TLSEXT_STATUSTYPE_nothing
2801
0
            && s->ctx->ext.status_cb != NULL) {
2802
0
        int ret = s->ctx->ext.status_cb(s, s->ctx->ext.status_arg);
2803
0
2804
0
        if (ret == 0) {
2805
0
            SSLfatal(s, SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE,
2806
0
                     SSL_F_TLS_PROCESS_INITIAL_SERVER_FLIGHT,
2807
0
                     SSL_R_INVALID_STATUS_RESPONSE);
2808
0
            return 0;
2809
0
        }
2810
0
        if (ret < 0) {
2811
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2812
0
                     SSL_F_TLS_PROCESS_INITIAL_SERVER_FLIGHT,
2813
0
                     ERR_R_MALLOC_FAILURE);
2814
0
            return 0;
2815
0
        }
2816
0
    }
2817
0
#ifndef OPENSSL_NO_CT
2818
0
    if (s->ct_validation_callback != NULL) {
2819
0
        /* Note we validate the SCTs whether or not we abort on error */
2820
0
        if (!ssl_validate_ct(s) && (s->verify_mode & SSL_VERIFY_PEER)) {
2821
0
            /* SSLfatal() already called */
2822
0
            return 0;
2823
0
        }
2824
0
    }
2825
0
#endif
2826
0
2827
0
    return 1;
2828
0
}
2829
2830
MSG_PROCESS_RETURN tls_process_server_done(SSL *s, PACKET *pkt)
2831
0
{
2832
0
    if (PACKET_remaining(pkt) > 0) {
2833
0
        /* should contain no data */
2834
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_DONE,
2835
0
                 SSL_R_LENGTH_MISMATCH);
2836
0
        return MSG_PROCESS_ERROR;
2837
0
    }
2838
0
#ifndef OPENSSL_NO_SRP
2839
0
    if (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) {
2840
0
        if (SRP_Calc_A_param(s) <= 0) {
2841
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SERVER_DONE,
2842
0
                     SSL_R_SRP_A_CALC);
2843
0
            return MSG_PROCESS_ERROR;
2844
0
        }
2845
0
    }
2846
0
#endif
2847
0
2848
0
    if (!tls_process_initial_server_flight(s)) {
2849
0
        /* SSLfatal() already called */
2850
0
        return MSG_PROCESS_ERROR;
2851
0
    }
2852
0
2853
0
    return MSG_PROCESS_FINISHED_READING;
2854
0
}
2855
2856
static int tls_construct_cke_psk_preamble(SSL *s, WPACKET *pkt)
2857
0
{
2858
0
#ifndef OPENSSL_NO_PSK
2859
0
    int ret = 0;
2860
0
    /*
2861
0
     * The callback needs PSK_MAX_IDENTITY_LEN + 1 bytes to return a
2862
0
     * \0-terminated identity. The last byte is for us for simulating
2863
0
     * strnlen.
2864
0
     */
2865
0
    char identity[PSK_MAX_IDENTITY_LEN + 1];
2866
0
    size_t identitylen = 0;
2867
0
    unsigned char psk[PSK_MAX_PSK_LEN];
2868
0
    unsigned char *tmppsk = NULL;
2869
0
    char *tmpidentity = NULL;
2870
0
    size_t psklen = 0;
2871
0
2872
0
    if (s->psk_client_callback == NULL) {
2873
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE,
2874
0
                 SSL_R_PSK_NO_CLIENT_CB);
2875
0
        goto err;
2876
0
    }
2877
0
2878
0
    memset(identity, 0, sizeof(identity));
2879
0
2880
0
    psklen = s->psk_client_callback(s, s->session->psk_identity_hint,
2881
0
                                    identity, sizeof(identity) - 1,
2882
0
                                    psk, sizeof(psk));
2883
0
2884
0
    if (psklen > PSK_MAX_PSK_LEN) {
2885
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
2886
0
                 SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2887
0
        goto err;
2888
0
    } else if (psklen == 0) {
2889
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
2890
0
                 SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE,
2891
0
                 SSL_R_PSK_IDENTITY_NOT_FOUND);
2892
0
        goto err;
2893
0
    }
2894
0
2895
0
    identitylen = strlen(identity);
2896
0
    if (identitylen > PSK_MAX_IDENTITY_LEN) {
2897
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE,
2898
0
                 ERR_R_INTERNAL_ERROR);
2899
0
        goto err;
2900
0
    }
2901
0
2902
0
    tmppsk = OPENSSL_memdup(psk, psklen);
2903
0
    tmpidentity = OPENSSL_strdup(identity);
2904
0
    if (tmppsk == NULL || tmpidentity == NULL) {
2905
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE,
2906
0
                 ERR_R_MALLOC_FAILURE);
2907
0
        goto err;
2908
0
    }
2909
0
2910
0
    OPENSSL_free(s->s3->tmp.psk);
2911
0
    s->s3->tmp.psk = tmppsk;
2912
0
    s->s3->tmp.psklen = psklen;
2913
0
    tmppsk = NULL;
2914
0
    OPENSSL_free(s->session->psk_identity);
2915
0
    s->session->psk_identity = tmpidentity;
2916
0
    tmpidentity = NULL;
2917
0
2918
0
    if (!WPACKET_sub_memcpy_u16(pkt, identity, identitylen))  {
2919
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE,
2920
0
                 ERR_R_INTERNAL_ERROR);
2921
0
        goto err;
2922
0
    }
2923
0
2924
0
    ret = 1;
2925
0
2926
0
 err:
2927
0
    OPENSSL_cleanse(psk, psklen);
2928
0
    OPENSSL_cleanse(identity, sizeof(identity));
2929
0
    OPENSSL_clear_free(tmppsk, psklen);
2930
0
    OPENSSL_clear_free(tmpidentity, identitylen);
2931
0
2932
0
    return ret;
2933
#else
2934
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE,
2935
             ERR_R_INTERNAL_ERROR);
2936
    return 0;
2937
#endif
2938
}
2939
2940
static int tls_construct_cke_rsa(SSL *s, WPACKET *pkt)
2941
0
{
2942
0
#ifndef OPENSSL_NO_RSA
2943
0
    unsigned char *encdata = NULL;
2944
0
    EVP_PKEY *pkey = NULL;
2945
0
    EVP_PKEY_CTX *pctx = NULL;
2946
0
    size_t enclen;
2947
0
    unsigned char *pms = NULL;
2948
0
    size_t pmslen = 0;
2949
0
2950
0
    if (s->session->peer == NULL) {
2951
0
        /*
2952
0
         * We should always have a server certificate with SSL_kRSA.
2953
0
         */
2954
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
2955
0
                 ERR_R_INTERNAL_ERROR);
2956
0
        return 0;
2957
0
    }
2958
0
2959
0
    pkey = X509_get0_pubkey(s->session->peer);
2960
0
    if (EVP_PKEY_get0_RSA(pkey) == NULL) {
2961
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
2962
0
                 ERR_R_INTERNAL_ERROR);
2963
0
        return 0;
2964
0
    }
2965
0
2966
0
    pmslen = SSL_MAX_MASTER_KEY_LENGTH;
2967
0
    pms = OPENSSL_malloc(pmslen);
2968
0
    if (pms == NULL) {
2969
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
2970
0
                 ERR_R_MALLOC_FAILURE);
2971
0
        return 0;
2972
0
    }
2973
0
2974
0
    pms[0] = s->client_version >> 8;
2975
0
    pms[1] = s->client_version & 0xff;
2976
0
    /* TODO(size_t): Convert this function */
2977
0
    if (RAND_bytes(pms + 2, (int)(pmslen - 2)) <= 0) {
2978
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
2979
0
                 ERR_R_MALLOC_FAILURE);
2980
0
        goto err;
2981
0
    }
2982
0
2983
0
    /* Fix buf for TLS and beyond */
2984
0
    if (s->version > SSL3_VERSION && !WPACKET_start_sub_packet_u16(pkt)) {
2985
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
2986
0
                 ERR_R_INTERNAL_ERROR);
2987
0
        goto err;
2988
0
    }
2989
0
    pctx = EVP_PKEY_CTX_new(pkey, NULL);
2990
0
    if (pctx == NULL || EVP_PKEY_encrypt_init(pctx) <= 0
2991
0
        || EVP_PKEY_encrypt(pctx, NULL, &enclen, pms, pmslen) <= 0) {
2992
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
2993
0
                 ERR_R_EVP_LIB);
2994
0
        goto err;
2995
0
    }
2996
0
    if (!WPACKET_allocate_bytes(pkt, enclen, &encdata)
2997
0
            || EVP_PKEY_encrypt(pctx, encdata, &enclen, pms, pmslen) <= 0) {
2998
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
2999
0
                 SSL_R_BAD_RSA_ENCRYPT);
3000
0
        goto err;
3001
0
    }
3002
0
    EVP_PKEY_CTX_free(pctx);
3003
0
    pctx = NULL;
3004
0
3005
0
    /* Fix buf for TLS and beyond */
3006
0
    if (s->version > SSL3_VERSION && !WPACKET_close(pkt)) {
3007
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
3008
0
                 ERR_R_INTERNAL_ERROR);
3009
0
        goto err;
3010
0
    }
3011
0
3012
0
    /* Log the premaster secret, if logging is enabled. */
3013
0
    if (!ssl_log_rsa_client_key_exchange(s, encdata, enclen, pms, pmslen)) {
3014
0
        /* SSLfatal() already called */
3015
0
        goto err;
3016
0
    }
3017
0
3018
0
    s->s3->tmp.pms = pms;
3019
0
    s->s3->tmp.pmslen = pmslen;
3020
0
3021
0
    return 1;
3022
0
 err:
3023
0
    OPENSSL_clear_free(pms, pmslen);
3024
0
    EVP_PKEY_CTX_free(pctx);
3025
0
3026
0
    return 0;
3027
#else
3028
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
3029
             ERR_R_INTERNAL_ERROR);
3030
    return 0;
3031
#endif
3032
}
3033
3034
static int tls_construct_cke_dhe(SSL *s, WPACKET *pkt)
3035
0
{
3036
0
#ifndef OPENSSL_NO_DH
3037
0
    DH *dh_clnt = NULL;
3038
0
    const BIGNUM *pub_key;
3039
0
    EVP_PKEY *ckey = NULL, *skey = NULL;
3040
0
    unsigned char *keybytes = NULL;
3041
0
3042
0
    skey = s->s3->peer_tmp;
3043
0
    if (skey == NULL) {
3044
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_DHE,
3045
0
                 ERR_R_INTERNAL_ERROR);
3046
0
        goto err;
3047
0
    }
3048
0
3049
0
    ckey = ssl_generate_pkey(skey);
3050
0
    if (ckey == NULL) {
3051
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_DHE,
3052
0
                 ERR_R_INTERNAL_ERROR);
3053
0
        goto err;
3054
0
    }
3055
0
3056
0
    dh_clnt = EVP_PKEY_get0_DH(ckey);
3057
0
3058
0
    if (dh_clnt == NULL) {
3059
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_DHE,
3060
0
                 ERR_R_INTERNAL_ERROR);
3061
0
        goto err;
3062
0
    }
3063
0
3064
0
    if (ssl_derive(s, ckey, skey, 0) == 0) {
3065
0
        /* SSLfatal() already called */
3066
0
        goto err;
3067
0
    }
3068
0
3069
0
    /* send off the data */
3070
0
    DH_get0_key(dh_clnt, &pub_key, NULL);
3071
0
    if (!WPACKET_sub_allocate_bytes_u16(pkt, BN_num_bytes(pub_key),
3072
0
                                        &keybytes)) {
3073
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_DHE,
3074
0
                 ERR_R_INTERNAL_ERROR);
3075
0
        goto err;
3076
0
    }
3077
0
3078
0
    BN_bn2bin(pub_key, keybytes);
3079
0
    EVP_PKEY_free(ckey);
3080
0
3081
0
    return 1;
3082
0
 err:
3083
0
    EVP_PKEY_free(ckey);
3084
0
    return 0;
3085
#else
3086
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_DHE,
3087
             ERR_R_INTERNAL_ERROR);
3088
    return 0;
3089
#endif
3090
}
3091
3092
static int tls_construct_cke_ecdhe(SSL *s, WPACKET *pkt)
3093
0
{
3094
0
#ifndef OPENSSL_NO_EC
3095
0
    unsigned char *encodedPoint = NULL;
3096
0
    size_t encoded_pt_len = 0;
3097
0
    EVP_PKEY *ckey = NULL, *skey = NULL;
3098
0
    int ret = 0;
3099
0
3100
0
    skey = s->s3->peer_tmp;
3101
0
    if (skey == NULL) {
3102
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_ECDHE,
3103
0
                 ERR_R_INTERNAL_ERROR);
3104
0
        return 0;
3105
0
    }
3106
0
3107
0
    ckey = ssl_generate_pkey(skey);
3108
0
    if (ckey == NULL) {
3109
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_ECDHE,
3110
0
                 ERR_R_MALLOC_FAILURE);
3111
0
        goto err;
3112
0
    }
3113
0
3114
0
    if (ssl_derive(s, ckey, skey, 0) == 0) {
3115
0
        /* SSLfatal() already called */
3116
0
        goto err;
3117
0
    }
3118
0
3119
0
    /* Generate encoding of client key */
3120
0
    encoded_pt_len = EVP_PKEY_get1_tls_encodedpoint(ckey, &encodedPoint);
3121
0
3122
0
    if (encoded_pt_len == 0) {
3123
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_ECDHE,
3124
0
                 ERR_R_EC_LIB);
3125
0
        goto err;
3126
0
    }
3127
0
3128
0
    if (!WPACKET_sub_memcpy_u8(pkt, encodedPoint, encoded_pt_len)) {
3129
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_ECDHE,
3130
0
                 ERR_R_INTERNAL_ERROR);
3131
0
        goto err;
3132
0
    }
3133
0
3134
0
    ret = 1;
3135
0
 err:
3136
0
    OPENSSL_free(encodedPoint);
3137
0
    EVP_PKEY_free(ckey);
3138
0
    return ret;
3139
#else
3140
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_ECDHE,
3141
             ERR_R_INTERNAL_ERROR);
3142
    return 0;
3143
#endif
3144
}
3145
3146
static int tls_construct_cke_gost(SSL *s, WPACKET *pkt)
3147
0
{
3148
0
#ifndef OPENSSL_NO_GOST
3149
0
    /* GOST key exchange message creation */
3150
0
    EVP_PKEY_CTX *pkey_ctx = NULL;
3151
0
    X509 *peer_cert;
3152
0
    size_t msglen;
3153
0
    unsigned int md_len;
3154
0
    unsigned char shared_ukm[32], tmp[256];
3155
0
    EVP_MD_CTX *ukm_hash = NULL;
3156
0
    int dgst_nid = NID_id_GostR3411_94;
3157
0
    unsigned char *pms = NULL;
3158
0
    size_t pmslen = 0;
3159
0
3160
0
    if ((s->s3->tmp.new_cipher->algorithm_auth & SSL_aGOST12) != 0)
3161
0
        dgst_nid = NID_id_GostR3411_2012_256;
3162
0
3163
0
    /*
3164
0
     * Get server certificate PKEY and create ctx from it
3165
0
     */
3166
0
    peer_cert = s->session->peer;
3167
0
    if (!peer_cert) {
3168
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3169
0
               SSL_R_NO_GOST_CERTIFICATE_SENT_BY_PEER);
3170
0
        return 0;
3171
0
    }
3172
0
3173
0
    pkey_ctx = EVP_PKEY_CTX_new(X509_get0_pubkey(peer_cert), NULL);
3174
0
    if (pkey_ctx == NULL) {
3175
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3176
0
                 ERR_R_MALLOC_FAILURE);
3177
0
        return 0;
3178
0
    }
3179
0
    /*
3180
0
     * If we have send a certificate, and certificate key
3181
0
     * parameters match those of server certificate, use
3182
0
     * certificate key for key exchange
3183
0
     */
3184
0
3185
0
    /* Otherwise, generate ephemeral key pair */
3186
0
    pmslen = 32;
3187
0
    pms = OPENSSL_malloc(pmslen);
3188
0
    if (pms == NULL) {
3189
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3190
0
                 ERR_R_MALLOC_FAILURE);
3191
0
        goto err;
3192
0
    }
3193
0
3194
0
    if (EVP_PKEY_encrypt_init(pkey_ctx) <= 0
3195
0
        /* Generate session key
3196
0
         * TODO(size_t): Convert this function
3197
0
         */
3198
0
        || RAND_bytes(pms, (int)pmslen) <= 0) {
3199
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3200
0
                 ERR_R_INTERNAL_ERROR);
3201
0
        goto err;
3202
0
    };
3203
0
    /*
3204
0
     * Compute shared IV and store it in algorithm-specific context
3205
0
     * data
3206
0
     */
3207
0
    ukm_hash = EVP_MD_CTX_new();
3208
0
    if (ukm_hash == NULL
3209
0
        || EVP_DigestInit(ukm_hash, EVP_get_digestbynid(dgst_nid)) <= 0
3210
0
        || EVP_DigestUpdate(ukm_hash, s->s3->client_random,
3211
0
                            SSL3_RANDOM_SIZE) <= 0
3212
0
        || EVP_DigestUpdate(ukm_hash, s->s3->server_random,
3213
0
                            SSL3_RANDOM_SIZE) <= 0
3214
0
        || EVP_DigestFinal_ex(ukm_hash, shared_ukm, &md_len) <= 0) {
3215
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3216
0
                 ERR_R_INTERNAL_ERROR);
3217
0
        goto err;
3218
0
    }
3219
0
    EVP_MD_CTX_free(ukm_hash);
3220
0
    ukm_hash = NULL;
3221
0
    if (EVP_PKEY_CTX_ctrl(pkey_ctx, -1, EVP_PKEY_OP_ENCRYPT,
3222
0
                          EVP_PKEY_CTRL_SET_IV, 8, shared_ukm) < 0) {
3223
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3224
0
                 SSL_R_LIBRARY_BUG);
3225
0
        goto err;
3226
0
    }
3227
0
    /* Make GOST keytransport blob message */
3228
0
    /*
3229
0
     * Encapsulate it into sequence
3230
0
     */
3231
0
    msglen = 255;
3232
0
    if (EVP_PKEY_encrypt(pkey_ctx, tmp, &msglen, pms, pmslen) <= 0) {
3233
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3234
0
                 SSL_R_LIBRARY_BUG);
3235
0
        goto err;
3236
0
    }
3237
0
3238
0
    if (!WPACKET_put_bytes_u8(pkt, V_ASN1_SEQUENCE | V_ASN1_CONSTRUCTED)
3239
0
            || (msglen >= 0x80 && !WPACKET_put_bytes_u8(pkt, 0x81))
3240
0
            || !WPACKET_sub_memcpy_u8(pkt, tmp, msglen)) {
3241
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3242
0
                 ERR_R_INTERNAL_ERROR);
3243
0
        goto err;
3244
0
    }
3245
0
3246
0
    EVP_PKEY_CTX_free(pkey_ctx);
3247
0
    s->s3->tmp.pms = pms;
3248
0
    s->s3->tmp.pmslen = pmslen;
3249
0
3250
0
    return 1;
3251
0
 err:
3252
0
    EVP_PKEY_CTX_free(pkey_ctx);
3253
0
    OPENSSL_clear_free(pms, pmslen);
3254
0
    EVP_MD_CTX_free(ukm_hash);
3255
0
    return 0;
3256
#else
3257
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3258
             ERR_R_INTERNAL_ERROR);
3259
    return 0;
3260
#endif
3261
}
3262
3263
static int tls_construct_cke_srp(SSL *s, WPACKET *pkt)
3264
0
{
3265
0
#ifndef OPENSSL_NO_SRP
3266
0
    unsigned char *abytes = NULL;
3267
0
3268
0
    if (s->srp_ctx.A == NULL
3269
0
            || !WPACKET_sub_allocate_bytes_u16(pkt, BN_num_bytes(s->srp_ctx.A),
3270
0
                                               &abytes)) {
3271
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_SRP,
3272
0
                 ERR_R_INTERNAL_ERROR);
3273
0
        return 0;
3274
0
    }
3275
0
    BN_bn2bin(s->srp_ctx.A, abytes);
3276
0
3277
0
    OPENSSL_free(s->session->srp_username);
3278
0
    s->session->srp_username = OPENSSL_strdup(s->srp_ctx.login);
3279
0
    if (s->session->srp_username == NULL) {
3280
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_SRP,
3281
0
                 ERR_R_MALLOC_FAILURE);
3282
0
        return 0;
3283
0
    }
3284
0
3285
0
    return 1;
3286
#else
3287
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_SRP,
3288
             ERR_R_INTERNAL_ERROR);
3289
    return 0;
3290
#endif
3291
}
3292
3293
int tls_construct_client_key_exchange(SSL *s, WPACKET *pkt)
3294
0
{
3295
0
    unsigned long alg_k;
3296
0
3297
0
    alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
3298
0
3299
0
    /*
3300
0
     * All of the construct functions below call SSLfatal() if necessary so
3301
0
     * no need to do so here.
3302
0
     */
3303
0
    if ((alg_k & SSL_PSK)
3304
0
        && !tls_construct_cke_psk_preamble(s, pkt))
3305
0
        goto err;
3306
0
3307
0
    if (alg_k & (SSL_kRSA | SSL_kRSAPSK)) {
3308
0
        if (!tls_construct_cke_rsa(s, pkt))
3309
0
            goto err;
3310
0
    } else if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) {
3311
0
        if (!tls_construct_cke_dhe(s, pkt))
3312
0
            goto err;
3313
0
    } else if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) {
3314
0
        if (!tls_construct_cke_ecdhe(s, pkt))
3315
0
            goto err;
3316
0
    } else if (alg_k & SSL_kGOST) {
3317
0
        if (!tls_construct_cke_gost(s, pkt))
3318
0
            goto err;
3319
0
    } else if (alg_k & SSL_kSRP) {
3320
0
        if (!tls_construct_cke_srp(s, pkt))
3321
0
            goto err;
3322
0
    } else if (!(alg_k & SSL_kPSK)) {
3323
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3324
0
                 SSL_F_TLS_CONSTRUCT_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
3325
0
        goto err;
3326
0
    }
3327
0
3328
0
    return 1;
3329
0
 err:
3330
0
    OPENSSL_clear_free(s->s3->tmp.pms, s->s3->tmp.pmslen);
3331
0
    s->s3->tmp.pms = NULL;
3332
0
#ifndef OPENSSL_NO_PSK
3333
0
    OPENSSL_clear_free(s->s3->tmp.psk, s->s3->tmp.psklen);
3334
0
    s->s3->tmp.psk = NULL;
3335
0
#endif
3336
0
    return 0;
3337
0
}
3338
3339
int tls_client_key_exchange_post_work(SSL *s)
3340
0
{
3341
0
    unsigned char *pms = NULL;
3342
0
    size_t pmslen = 0;
3343
0
3344
0
    pms = s->s3->tmp.pms;
3345
0
    pmslen = s->s3->tmp.pmslen;
3346
0
3347
0
#ifndef OPENSSL_NO_SRP
3348
0
    /* Check for SRP */
3349
0
    if (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) {
3350
0
        if (!srp_generate_client_master_secret(s)) {
3351
0
            /* SSLfatal() already called */
3352
0
            goto err;
3353
0
        }
3354
0
        return 1;
3355
0
    }
3356
0
#endif
3357
0
3358
0
    if (pms == NULL && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK)) {
3359
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3360
0
                 SSL_F_TLS_CLIENT_KEY_EXCHANGE_POST_WORK, ERR_R_MALLOC_FAILURE);
3361
0
        goto err;
3362
0
    }
3363
0
    if (!ssl_generate_master_secret(s, pms, pmslen, 1)) {
3364
0
        /* SSLfatal() already called */
3365
0
        /* ssl_generate_master_secret frees the pms even on error */
3366
0
        pms = NULL;
3367
0
        pmslen = 0;
3368
0
        goto err;
3369
0
    }
3370
0
    pms = NULL;
3371
0
    pmslen = 0;
3372
0
3373
#ifndef OPENSSL_NO_SCTP
3374
    if (SSL_IS_DTLS(s)) {
3375
        unsigned char sctpauthkey[64];
3376
        char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
3377
3378
        /*
3379
         * Add new shared key for SCTP-Auth, will be ignored if no SCTP
3380
         * used.
3381
         */
3382
        memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
3383
               sizeof(DTLS1_SCTP_AUTH_LABEL));
3384
3385
        if (SSL_export_keying_material(s, sctpauthkey,
3386
                                       sizeof(sctpauthkey), labelbuffer,
3387
                                       sizeof(labelbuffer), NULL, 0, 0) <= 0) {
3388
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3389
                     SSL_F_TLS_CLIENT_KEY_EXCHANGE_POST_WORK,
3390
                     ERR_R_INTERNAL_ERROR);
3391
            goto err;
3392
        }
3393
3394
        BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
3395
                 sizeof(sctpauthkey), sctpauthkey);
3396
    }
3397
#endif
3398
3399
0
    return 1;
3400
0
 err:
3401
0
    OPENSSL_clear_free(pms, pmslen);
3402
0
    s->s3->tmp.pms = NULL;
3403
0
    return 0;
3404
0
}
3405
3406
/*
3407
 * Check a certificate can be used for client authentication. Currently check
3408
 * cert exists, if we have a suitable digest for TLS 1.2 if static DH client
3409
 * certificates can be used and optionally checks suitability for Suite B.
3410
 */
3411
static int ssl3_check_client_certificate(SSL *s)
3412
0
{
3413
0
    /* If no suitable signature algorithm can't use certificate */
3414
0
    if (!tls_choose_sigalg(s, 0) || s->s3->tmp.sigalg == NULL)
3415
0
        return 0;
3416
0
    /*
3417
0
     * If strict mode check suitability of chain before using it. This also
3418
0
     * adjusts suite B digest if necessary.
3419
0
     */
3420
0
    if (s->cert->cert_flags & SSL_CERT_FLAGS_CHECK_TLS_STRICT &&
3421
0
        !tls1_check_chain(s, NULL, NULL, NULL, -2))
3422
0
        return 0;
3423
0
    return 1;
3424
0
}
3425
3426
WORK_STATE tls_prepare_client_certificate(SSL *s, WORK_STATE wst)
3427
0
{
3428
0
    X509 *x509 = NULL;
3429
0
    EVP_PKEY *pkey = NULL;
3430
0
    int i;
3431
0
3432
0
    if (wst == WORK_MORE_A) {
3433
0
        /* Let cert callback update client certificates if required */
3434
0
        if (s->cert->cert_cb) {
3435
0
            i = s->cert->cert_cb(s, s->cert->cert_cb_arg);
3436
0
            if (i < 0) {
3437
0
                s->rwstate = SSL_X509_LOOKUP;
3438
0
                return WORK_MORE_A;
3439
0
            }
3440
0
            if (i == 0) {
3441
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3442
0
                         SSL_F_TLS_PREPARE_CLIENT_CERTIFICATE,
3443
0
                         SSL_R_CALLBACK_FAILED);
3444
0
                return WORK_ERROR;
3445
0
            }
3446
0
            s->rwstate = SSL_NOTHING;
3447
0
        }
3448
0
        if (ssl3_check_client_certificate(s)) {
3449
0
            if (s->post_handshake_auth == SSL_PHA_REQUESTED) {
3450
0
                return WORK_FINISHED_STOP;
3451
0
            }
3452
0
            return WORK_FINISHED_CONTINUE;
3453
0
        }
3454
0
3455
0
        /* Fall through to WORK_MORE_B */
3456
0
        wst = WORK_MORE_B;
3457
0
    }
3458
0
3459
0
    /* We need to get a client cert */
3460
0
    if (wst == WORK_MORE_B) {
3461
0
        /*
3462
0
         * If we get an error, we need to ssl->rwstate=SSL_X509_LOOKUP;
3463
0
         * return(-1); We then get retied later
3464
0
         */
3465
0
        i = ssl_do_client_cert_cb(s, &x509, &pkey);
3466
0
        if (i < 0) {
3467
0
            s->rwstate = SSL_X509_LOOKUP;
3468
0
            return WORK_MORE_B;
3469
0
        }
3470
0
        s->rwstate = SSL_NOTHING;
3471
0
        if ((i == 1) && (pkey != NULL) && (x509 != NULL)) {
3472
0
            if (!SSL_use_certificate(s, x509) || !SSL_use_PrivateKey(s, pkey))
3473
0
                i = 0;
3474
0
        } else if (i == 1) {
3475
0
            i = 0;
3476
0
            SSLerr(SSL_F_TLS_PREPARE_CLIENT_CERTIFICATE,
3477
0
                   SSL_R_BAD_DATA_RETURNED_BY_CALLBACK);
3478
0
        }
3479
0
3480
0
        X509_free(x509);
3481
0
        EVP_PKEY_free(pkey);
3482
0
        if (i && !ssl3_check_client_certificate(s))
3483
0
            i = 0;
3484
0
        if (i == 0) {
3485
0
            if (s->version == SSL3_VERSION) {
3486
0
                s->s3->tmp.cert_req = 0;
3487
0
                ssl3_send_alert(s, SSL3_AL_WARNING, SSL_AD_NO_CERTIFICATE);
3488
0
                return WORK_FINISHED_CONTINUE;
3489
0
            } else {
3490
0
                s->s3->tmp.cert_req = 2;
3491
0
                if (!ssl3_digest_cached_records(s, 0)) {
3492
0
                    /* SSLfatal() already called */
3493
0
                    return WORK_ERROR;
3494
0
                }
3495
0
            }
3496
0
        }
3497
0
3498
0
        if (s->post_handshake_auth == SSL_PHA_REQUESTED)
3499
0
            return WORK_FINISHED_STOP;
3500
0
        return WORK_FINISHED_CONTINUE;
3501
0
    }
3502
0
3503
0
    /* Shouldn't ever get here */
3504
0
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PREPARE_CLIENT_CERTIFICATE,
3505
0
             ERR_R_INTERNAL_ERROR);
3506
0
    return WORK_ERROR;
3507
0
}
3508
3509
int tls_construct_client_certificate(SSL *s, WPACKET *pkt)
3510
0
{
3511
0
    if (SSL_IS_TLS13(s)) {
3512
0
        if (s->pha_context == NULL) {
3513
0
            /* no context available, add 0-length context */
3514
0
            if (!WPACKET_put_bytes_u8(pkt, 0)) {
3515
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3516
0
                         SSL_F_TLS_CONSTRUCT_CLIENT_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3517
0
                return 0;
3518
0
            }
3519
0
        } else if (!WPACKET_sub_memcpy_u8(pkt, s->pha_context, s->pha_context_len)) {
3520
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3521
0
                     SSL_F_TLS_CONSTRUCT_CLIENT_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3522
0
            return 0;
3523
0
        }
3524
0
    }
3525
0
    if (!ssl3_output_cert_chain(s, pkt,
3526
0
                                (s->s3->tmp.cert_req == 2) ? NULL
3527
0
                                                           : s->cert->key)) {
3528
0
        /* SSLfatal() already called */
3529
0
        return 0;
3530
0
    }
3531
0
3532
0
    if (SSL_IS_TLS13(s)
3533
0
            && SSL_IS_FIRST_HANDSHAKE(s)
3534
0
            && (!s->method->ssl3_enc->change_cipher_state(s,
3535
0
                    SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_CLIENT_WRITE))) {
3536
0
        /*
3537
0
         * This is a fatal error, which leaves enc_write_ctx in an inconsistent
3538
0
         * state and thus ssl3_send_alert may crash.
3539
0
         */
3540
0
        SSLfatal(s, SSL_AD_NO_ALERT, SSL_F_TLS_CONSTRUCT_CLIENT_CERTIFICATE,
3541
0
                 SSL_R_CANNOT_CHANGE_CIPHER);
3542
0
        return 0;
3543
0
    }
3544
0
3545
0
    return 1;
3546
0
}
3547
3548
int ssl3_check_cert_and_algorithm(SSL *s)
3549
0
{
3550
0
    const SSL_CERT_LOOKUP *clu;
3551
0
    size_t idx;
3552
0
    long alg_k, alg_a;
3553
0
3554
0
    alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
3555
0
    alg_a = s->s3->tmp.new_cipher->algorithm_auth;
3556
0
3557
0
    /* we don't have a certificate */
3558
0
    if (!(alg_a & SSL_aCERT))
3559
0
        return 1;
3560
0
3561
0
    /* This is the passed certificate */
3562
0
    clu = ssl_cert_lookup_by_pkey(X509_get0_pubkey(s->session->peer), &idx);
3563
0
3564
0
    /* Check certificate is recognised and suitable for cipher */
3565
0
    if (clu == NULL || (alg_a & clu->amask) == 0) {
3566
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
3567
0
                 SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3568
0
                 SSL_R_MISSING_SIGNING_CERT);
3569
0
        return 0;
3570
0
    }
3571
0
3572
0
#ifndef OPENSSL_NO_EC
3573
0
    if (clu->amask & SSL_aECDSA) {
3574
0
        if (ssl_check_srvr_ecc_cert_and_alg(s->session->peer, s))
3575
0
            return 1;
3576
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
3577
0
                 SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM, SSL_R_BAD_ECC_CERT);
3578
0
        return 0;
3579
0
    }
3580
0
#endif
3581
0
#ifndef OPENSSL_NO_RSA
3582
0
    if (alg_k & (SSL_kRSA | SSL_kRSAPSK) && idx != SSL_PKEY_RSA) {
3583
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
3584
0
                 SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3585
0
                 SSL_R_MISSING_RSA_ENCRYPTING_CERT);
3586
0
        return 0;
3587
0
    }
3588
0
#endif
3589
0
#ifndef OPENSSL_NO_DH
3590
0
    if ((alg_k & SSL_kDHE) && (s->s3->peer_tmp == NULL)) {
3591
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3592
0
                 ERR_R_INTERNAL_ERROR);
3593
0
        return 0;
3594
0
    }
3595
0
#endif
3596
0
3597
0
    return 1;
3598
0
}
3599
3600
#ifndef OPENSSL_NO_NEXTPROTONEG
3601
int tls_construct_next_proto(SSL *s, WPACKET *pkt)
3602
0
{
3603
0
    size_t len, padding_len;
3604
0
    unsigned char *padding = NULL;
3605
0
3606
0
    len = s->ext.npn_len;
3607
0
    padding_len = 32 - ((len + 2) % 32);
3608
0
3609
0
    if (!WPACKET_sub_memcpy_u8(pkt, s->ext.npn, len)
3610
0
            || !WPACKET_sub_allocate_bytes_u8(pkt, padding_len, &padding)) {
3611
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_NEXT_PROTO,
3612
0
                 ERR_R_INTERNAL_ERROR);
3613
0
        return 0;
3614
0
    }
3615
0
3616
0
    memset(padding, 0, padding_len);
3617
0
3618
0
    return 1;
3619
0
}
3620
#endif
3621
3622
MSG_PROCESS_RETURN tls_process_hello_req(SSL *s, PACKET *pkt)
3623
0
{
3624
0
    if (PACKET_remaining(pkt) > 0) {
3625
0
        /* should contain no data */
3626
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_HELLO_REQ,
3627
0
                 SSL_R_LENGTH_MISMATCH);
3628
0
        return MSG_PROCESS_ERROR;
3629
0
    }
3630
0
3631
0
    if ((s->options & SSL_OP_NO_RENEGOTIATION)) {
3632
0
        ssl3_send_alert(s, SSL3_AL_WARNING, SSL_AD_NO_RENEGOTIATION);
3633
0
        return MSG_PROCESS_FINISHED_READING;
3634
0
    }
3635
0
3636
0
    /*
3637
0
     * This is a historical discrepancy (not in the RFC) maintained for
3638
0
     * compatibility reasons. If a TLS client receives a HelloRequest it will
3639
0
     * attempt an abbreviated handshake. However if a DTLS client receives a
3640
0
     * HelloRequest it will do a full handshake. Either behaviour is reasonable
3641
0
     * but doing one for TLS and another for DTLS is odd.
3642
0
     */
3643
0
    if (SSL_IS_DTLS(s))
3644
0
        SSL_renegotiate(s);
3645
0
    else
3646
0
        SSL_renegotiate_abbreviated(s);
3647
0
3648
0
    return MSG_PROCESS_FINISHED_READING;
3649
0
}
3650
3651
static MSG_PROCESS_RETURN tls_process_encrypted_extensions(SSL *s, PACKET *pkt)
3652
0
{
3653
0
    PACKET extensions;
3654
0
    RAW_EXTENSION *rawexts = NULL;
3655
0
3656
0
    if (!PACKET_as_length_prefixed_2(pkt, &extensions)
3657
0
            || PACKET_remaining(pkt) != 0) {
3658
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_ENCRYPTED_EXTENSIONS,
3659
0
                 SSL_R_LENGTH_MISMATCH);
3660
0
        goto err;
3661
0
    }
3662
0
3663
0
    if (!tls_collect_extensions(s, &extensions,
3664
0
                                SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS, &rawexts,
3665
0
                                NULL, 1)
3666
0
            || !tls_parse_all_extensions(s, SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS,
3667
0
                                         rawexts, NULL, 0, 1)) {
3668
0
        /* SSLfatal() already called */
3669
0
        goto err;
3670
0
    }
3671
0
3672
0
    OPENSSL_free(rawexts);
3673
0
    return MSG_PROCESS_CONTINUE_READING;
3674
0
3675
0
 err:
3676
0
    OPENSSL_free(rawexts);
3677
0
    return MSG_PROCESS_ERROR;
3678
0
}
3679
3680
int ssl_do_client_cert_cb(SSL *s, X509 **px509, EVP_PKEY **ppkey)
3681
0
{
3682
0
    int i = 0;
3683
0
#ifndef OPENSSL_NO_ENGINE
3684
0
    if (s->ctx->client_cert_engine) {
3685
0
        i = ENGINE_load_ssl_client_cert(s->ctx->client_cert_engine, s,
3686
0
                                        SSL_get_client_CA_list(s),
3687
0
                                        px509, ppkey, NULL, NULL, NULL);
3688
0
        if (i != 0)
3689
0
            return i;
3690
0
    }
3691
0
#endif
3692
0
    if (s->ctx->client_cert_cb)
3693
0
        i = s->ctx->client_cert_cb(s, px509, ppkey);
3694
0
    return i;
3695
0
}
3696
3697
int ssl_cipher_list_to_bytes(SSL *s, STACK_OF(SSL_CIPHER) *sk, WPACKET *pkt)
3698
0
{
3699
0
    int i;
3700
0
    size_t totlen = 0, len, maxlen, maxverok = 0;
3701
0
    int empty_reneg_info_scsv = !s->renegotiate;
3702
0
3703
0
    /* Set disabled masks for this session */
3704
0
    if (!ssl_set_client_disabled(s)) {
3705
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_CIPHER_LIST_TO_BYTES,
3706
0
                 SSL_R_NO_PROTOCOLS_AVAILABLE);
3707
0
        return 0;
3708
0
    }
3709
0
3710
0
    if (sk == NULL) {
3711
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_CIPHER_LIST_TO_BYTES,
3712
0
                 ERR_R_INTERNAL_ERROR);
3713
0
        return 0;
3714
0
    }
3715
0
3716
#ifdef OPENSSL_MAX_TLS1_2_CIPHER_LENGTH
3717
# if OPENSSL_MAX_TLS1_2_CIPHER_LENGTH < 6
3718
#  error Max cipher length too short
3719
# endif
3720
    /*
3721
     * Some servers hang if client hello > 256 bytes as hack workaround
3722
     * chop number of supported ciphers to keep it well below this if we
3723
     * use TLS v1.2
3724
     */
3725
    if (TLS1_get_version(s) >= TLS1_2_VERSION)
3726
        maxlen = OPENSSL_MAX_TLS1_2_CIPHER_LENGTH & ~1;
3727
    else
3728
#endif
3729
        /* Maximum length that can be stored in 2 bytes. Length must be even */
3730
0
        maxlen = 0xfffe;
3731
0
3732
0
    if (empty_reneg_info_scsv)
3733
0
        maxlen -= 2;
3734
0
    if (s->mode & SSL_MODE_SEND_FALLBACK_SCSV)
3735
0
        maxlen -= 2;
3736
0
3737
0
    for (i = 0; i < sk_SSL_CIPHER_num(sk) && totlen < maxlen; i++) {
3738
0
        const SSL_CIPHER *c;
3739
0
3740
0
        c = sk_SSL_CIPHER_value(sk, i);
3741
0
        /* Skip disabled ciphers */
3742
0
        if (ssl_cipher_disabled(s, c, SSL_SECOP_CIPHER_SUPPORTED, 0))
3743
0
            continue;
3744
0
3745
0
        if (!s->method->put_cipher_by_char(c, pkt, &len)) {
3746
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_CIPHER_LIST_TO_BYTES,
3747
0
                     ERR_R_INTERNAL_ERROR);
3748
0
            return 0;
3749
0
        }
3750
0
3751
0
        /* Sanity check that the maximum version we offer has ciphers enabled */
3752
0
        if (!maxverok) {
3753
0
            if (SSL_IS_DTLS(s)) {
3754
0
                if (DTLS_VERSION_GE(c->max_dtls, s->s3->tmp.max_ver)
3755
0
                        && DTLS_VERSION_LE(c->min_dtls, s->s3->tmp.max_ver))
3756
0
                    maxverok = 1;
3757
0
            } else {
3758
0
                if (c->max_tls >= s->s3->tmp.max_ver
3759
0
                        && c->min_tls <= s->s3->tmp.max_ver)
3760
0
                    maxverok = 1;
3761
0
            }
3762
0
        }
3763
0
3764
0
        totlen += len;
3765
0
    }
3766
0
3767
0
    if (totlen == 0 || !maxverok) {
3768
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_CIPHER_LIST_TO_BYTES,
3769
0
                 SSL_R_NO_CIPHERS_AVAILABLE);
3770
0
3771
0
        if (!maxverok)
3772
0
            ERR_add_error_data(1, "No ciphers enabled for max supported "
3773
0
                                  "SSL/TLS version");
3774
0
3775
0
        return 0;
3776
0
    }
3777
0
3778
0
    if (totlen != 0) {
3779
0
        if (empty_reneg_info_scsv) {
3780
0
            static SSL_CIPHER scsv = {
3781
0
                0, NULL, NULL, SSL3_CK_SCSV, 0, 0, 0, 0, 0, 0, 0, 0, 0
3782
0
            };
3783
0
            if (!s->method->put_cipher_by_char(&scsv, pkt, &len)) {
3784
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3785
0
                         SSL_F_SSL_CIPHER_LIST_TO_BYTES, ERR_R_INTERNAL_ERROR);
3786
0
                return 0;
3787
0
            }
3788
0
        }
3789
0
        if (s->mode & SSL_MODE_SEND_FALLBACK_SCSV) {
3790
0
            static SSL_CIPHER scsv = {
3791
0
                0, NULL, NULL, SSL3_CK_FALLBACK_SCSV, 0, 0, 0, 0, 0, 0, 0, 0, 0
3792
0
            };
3793
0
            if (!s->method->put_cipher_by_char(&scsv, pkt, &len)) {
3794
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3795
0
                         SSL_F_SSL_CIPHER_LIST_TO_BYTES, ERR_R_INTERNAL_ERROR);
3796
0
                return 0;
3797
0
            }
3798
0
        }
3799
0
    }
3800
0
3801
0
    return 1;
3802
0
}
3803
3804
int tls_construct_end_of_early_data(SSL *s, WPACKET *pkt)
3805
0
{
3806
0
    if (s->early_data_state != SSL_EARLY_DATA_WRITE_RETRY
3807
0
            && s->early_data_state != SSL_EARLY_DATA_FINISHED_WRITING) {
3808
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3809
0
                 SSL_F_TLS_CONSTRUCT_END_OF_EARLY_DATA,
3810
0
                 ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
3811
0
        return 0;
3812
0
    }
3813
0
3814
0
    s->early_data_state = SSL_EARLY_DATA_FINISHED_WRITING;
3815
0
    return 1;
3816
0
}