dtls_meth.c 21.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
/*
 * Copyright 2018-2022 The OpenSSL Project Authors. All Rights Reserved.
 *
 * Licensed under the Apache License 2.0 (the "License").  You may not use
 * this file except in compliance with the License.  You can obtain a copy
 * in the file LICENSE in the source distribution or at
 * https://www.openssl.org/source/license.html
 */

#include "../../ssl_local.h"
#include "../record_local.h"
#include "recmethod_local.h"

/* mod 128 saturating subtract of two 64-bit values in big-endian order */
static int satsub64be(const unsigned char *v1, const unsigned char *v2)
{
    int64_t ret;
    uint64_t l1, l2;

    n2l8(v1, l1);
    n2l8(v2, l2);

    ret = l1 - l2;

    /* We do not permit wrap-around */
    if (l1 > l2 && ret < 0)
        return 128;
    else if (l2 > l1 && ret > 0)
        return -128;

    if (ret > 128)
        return 128;
    else if (ret < -128)
        return -128;
    else
        return (int)ret;
}

39
static int dtls_record_replay_check(OSSL_RECORD_LAYER *rl, DTLS_BITMAP *bitmap)
40 41 42
{
    int cmp;
    unsigned int shift;
43
    const unsigned char *seq = rl->sequence;
44 45 46 47 48 49 50 51 52

    cmp = satsub64be(seq, bitmap->max_seq_num);
    if (cmp > 0) {
        SSL3_RECORD_set_seq_num(&rl->rrec[0], seq);
        return 1;               /* this record in new */
    }
    shift = -cmp;
    if (shift >= sizeof(bitmap->map) * 8)
        return 0;               /* stale, outside the window */
53
    else if (bitmap->map & ((uint64_t)1 << shift))
54 55 56 57 58 59
        return 0;               /* record previously received */

    SSL3_RECORD_set_seq_num(&rl->rrec[0], seq);
    return 1;
}

60
static void dtls_record_bitmap_update(OSSL_RECORD_LAYER *rl,
61
                                      DTLS_BITMAP *bitmap)
62 63 64
{
    int cmp;
    unsigned int shift;
65
    const unsigned char *seq = rl->sequence;
66 67 68 69 70 71 72 73 74 75 76 77

    cmp = satsub64be(seq, bitmap->max_seq_num);
    if (cmp > 0) {
        shift = cmp;
        if (shift < sizeof(bitmap->map) * 8)
            bitmap->map <<= shift, bitmap->map |= 1UL;
        else
            bitmap->map = 1UL;
        memcpy(bitmap->max_seq_num, seq, SEQ_NUM_SIZE);
    } else {
        shift = -cmp;
        if (shift < sizeof(bitmap->map) * 8)
78
            bitmap->map |= (uint64_t)1 << shift;
79 80 81
    }
}

82 83
static DTLS_BITMAP *dtls_get_bitmap(OSSL_RECORD_LAYER *rl, SSL3_RECORD *rr,
                                    unsigned int *is_next_epoch)
84 85 86 87
{
    *is_next_epoch = 0;

    /* In current epoch, accept HM, CCS, DATA, & ALERT */
88
    if (rr->epoch == rl->epoch)
89
        return &rl->bitmap;
90 91 92 93 94 95

    /*
     * Only HM and ALERT messages can be from the next epoch and only if we
     * have already processed all of the unprocessed records from the last
     * epoch
     */
M
Matt Caswell 已提交
96 97 98
    else if (rr->epoch == (unsigned long)(rl->epoch + 1)
             && rl->unprocessed_rcds.epoch != rl->epoch
             && (rr->type == SSL3_RT_HANDSHAKE || rr->type == SSL3_RT_ALERT)) {
99
        *is_next_epoch = 1;
100
        return &rl->next_bitmap;
101 102 103 104 105
    }

    return NULL;
}

106 107 108 109 110
static void dtls_set_in_init(OSSL_RECORD_LAYER *rl, int in_init)
{
    rl->in_init = in_init;
}

111
static int dtls_process_record(OSSL_RECORD_LAYER *rl, DTLS_BITMAP *bitmap)
112 113 114 115 116 117 118 119 120 121 122 123 124
{
    int i;
    int enc_err;
    SSL3_RECORD *rr;
    int imac_size;
    size_t mac_size = 0;
    unsigned char md[EVP_MAX_MD_SIZE];
    SSL_MAC_BUF macbuf = { NULL, 0 };
    int ret = 0;

    rr = &rl->rrec[0];

    /*
M
Matt Caswell 已提交
125
     * At this point, rl->packet_length == DTLS1_RT_HEADER_LENGTH + rr->length,
126
     * and we have that many bytes in rl->packet
127
     */
128
    rr->input = &(rl->packet[DTLS1_RT_HEADER_LENGTH]);
129 130

    /*
131
     * ok, we can now read from 'rl->packet' data into 'rr'. rr->input
132 133 134 135 136 137 138 139 140 141 142 143
     * points at rr->length bytes, which need to be copied into rr->data by
     * either the decryption or by the decompression. When the data is 'copied'
     * into the rr->data buffer, rr->input will be pointed at the new buffer
     */

    /*
     * We now have - encrypted [ MAC [ compressed [ plain ] ] ] rr->length
     * bytes of encrypted compressed stuff.
     */

    /* check is not needed I believe */
    if (rr->length > SSL3_RT_MAX_ENCRYPTED_LENGTH) {
144
        RLAYERfatal(rl, SSL_AD_RECORD_OVERFLOW, SSL_R_ENCRYPTED_LENGTH_TOO_LONG);
145 146 147 148 149 150 151
        return 0;
    }

    /* decrypt in place in 'rr->input' */
    rr->data = rr->input;
    rr->orig_len = rr->length;

152 153
    if (rl->md_ctx != NULL) {
        const EVP_MD *tmpmd = EVP_MD_CTX_get0_md(rl->md_ctx);
154 155 156 157

        if (tmpmd != NULL) {
            imac_size = EVP_MD_get_size(tmpmd);
            if (!ossl_assert(imac_size >= 0 && imac_size <= EVP_MAX_MD_SIZE)) {
M
Matt Caswell 已提交
158 159
                RLAYERfatal(rl, SSL_AD_INTERNAL_ERROR, ERR_R_EVP_LIB);
                return 0;
160 161 162 163 164
            }
            mac_size = (size_t)imac_size;
        }
    }

M
Matt Caswell 已提交
165
    if (rl->use_etm && rl->md_ctx != NULL) {
166 167 168
        unsigned char *mac;

        if (rr->orig_len < mac_size) {
169
            RLAYERfatal(rl, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_TOO_SHORT);
170 171 172 173
            return 0;
        }
        rr->length -= mac_size;
        mac = rr->data + rr->length;
174
        i = rl->funcs->mac(rl, rr, md, 0 /* not send */);
175
        if (i == 0 || CRYPTO_memcmp(md, mac, (size_t)mac_size) != 0) {
176 177
            RLAYERfatal(rl, SSL_AD_BAD_RECORD_MAC,
                        SSL_R_DECRYPTION_FAILED_OR_BAD_RECORD_MAC);
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
            return 0;
        }
        /*
         * We've handled the mac now - there is no MAC inside the encrypted
         * record
         */
        mac_size = 0;
    }

    /*
     * Set a mark around the packet decryption attempt.  This is DTLS, so
     * bad packets are just ignored, and we don't want to leave stray
     * errors in the queue from processing bogus junk that we ignored.
     */
    ERR_set_mark();
193
    enc_err = rl->funcs->cipher(rl, rr, 1, 0, &macbuf, mac_size);
194 195 196 197 198 199 200 201 202

    /*-
     * enc_err is:
     *    0: if the record is publicly invalid, or an internal error, or AEAD
     *       decryption failed, or ETM decryption failed.
     *    1: Success or MTE decryption failed (MAC will be randomised)
     */
    if (enc_err == 0) {
        ERR_pop_to_mark();
203 204
        if (rl->alert != SSL_AD_NO_ALERT) {
            /* RLAYERfatal() already called */
205 206 207 208
            goto end;
        }
        /* For DTLS we simply ignore bad packets. */
        rr->length = 0;
209
        rl->packet_length = 0;
210 211 212 213 214 215 216 217 218
        goto end;
    }
    ERR_clear_last_mark();
    OSSL_TRACE_BEGIN(TLS) {
        BIO_printf(trc_out, "dec %zd\n", rr->length);
        BIO_dump_indent(trc_out, rr->data, rr->length, 4);
    } OSSL_TRACE_END(TLS);

    /* r->length is now the compressed data plus mac */
219 220 221 222
    if (!rl->use_etm
            && (rl->enc_ctx != NULL)
            && (EVP_MD_CTX_get0_md(rl->md_ctx) != NULL)) {
        /* rl->md_ctx != NULL => mac_size != -1 */
223

M
Matt Caswell 已提交
224
        i = rl->funcs->mac(rl, rr, md, 0 /* not send */);
225 226 227 228 229 230 231 232 233 234
        if (i == 0 || macbuf.mac == NULL
            || CRYPTO_memcmp(md, macbuf.mac, mac_size) != 0)
            enc_err = 0;
        if (rr->length > SSL3_RT_MAX_COMPRESSED_LENGTH + mac_size)
            enc_err = 0;
    }

    if (enc_err == 0) {
        /* decryption failed, silently discard message */
        rr->length = 0;
235
        rl->packet_length = 0;
236 237 238 239
        goto end;
    }

    /* r->length is now just compressed */
240
    if (rl->compctx != NULL) {
241
        if (rr->length > SSL3_RT_MAX_COMPRESSED_LENGTH) {
242 243
            RLAYERfatal(rl, SSL_AD_RECORD_OVERFLOW,
                        SSL_R_COMPRESSED_LENGTH_TOO_LONG);
244 245
            goto end;
        }
246 247
        if (!tls_do_uncompress(rl, rr)) {
            RLAYERfatal(rl, SSL_AD_DECOMPRESSION_FAILURE, SSL_R_BAD_DECOMPRESSION);
248 249 250 251
            goto end;
        }
    }

252 253 254 255 256 257
    /*
     * Check if the received packet overflows the current Max Fragment
     * Length setting.
     */
    if (rl->max_frag_len > 0 && rr->length > rl->max_frag_len) {
        RLAYERfatal(rl, SSL_AD_RECORD_OVERFLOW, SSL_R_DATA_LENGTH_TOO_LONG);
258 259 260 261 262 263 264 265 266 267 268 269 270 271
        goto end;
    }

    rr->off = 0;
    /*-
     * So at this point the following is true
     * ssl->s3.rrec.type   is the type of record
     * ssl->s3.rrec.length == number of bytes in record
     * ssl->s3.rrec.off    == offset to first valid byte
     * ssl->s3.rrec.data   == where to take bytes from, increment
     *                        after use :-).
     */

    /* we have pulled in a full packet so zero things */
272
    rl->packet_length = 0;
273 274

    /* Mark receipt of record. */
275
    dtls_record_bitmap_update(rl, bitmap);
276 277 278 279 280 281 282 283

    ret = 1;
 end:
    if (macbuf.alloced)
        OPENSSL_free(macbuf.mac);
    return ret;
}

284
static int dtls_rlayer_buffer_record(OSSL_RECORD_LAYER *rl, record_pqueue *queue,
285 286 287 288 289 290 291 292 293 294 295 296 297 298
                                     unsigned char *priority)
{
    DTLS_RLAYER_RECORD_DATA *rdata;
    pitem *item;

    /* Limit the size of the queue to prevent DOS attacks */
    if (pqueue_size(queue->q) >= 100)
        return 0;

    rdata = OPENSSL_malloc(sizeof(*rdata));
    item = pitem_new(priority, rdata);
    if (rdata == NULL || item == NULL) {
        OPENSSL_free(rdata);
        pitem_free(item);
299
        RLAYERfatal(rl, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
300 301 302
        return -1;
    }

303 304 305
    rdata->packet = rl->packet;
    rdata->packet_length = rl->packet_length;
    memcpy(&(rdata->rbuf), &rl->rbuf, sizeof(SSL3_BUFFER));
306 307 308 309
    memcpy(&(rdata->rrec), &rl->rrec[0], sizeof(SSL3_RECORD));

    item->data = rdata;

310 311 312
    rl->packet = NULL;
    rl->packet_length = 0;
    memset(&rl->rbuf, 0, sizeof(SSL3_BUFFER));
313 314
    memset(&rl->rrec[0], 0, sizeof(rl->rrec[0]));

315 316
    if (!tls_setup_read_buffer(rl)) {
        /* RLAYERfatal() already called */
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
        OPENSSL_free(rdata->rbuf.buf);
        OPENSSL_free(rdata);
        pitem_free(item);
        return -1;
    }

    if (pqueue_insert(queue->q, item) == NULL) {
        /* Must be a duplicate so ignore it */
        OPENSSL_free(rdata->rbuf.buf);
        OPENSSL_free(rdata);
        pitem_free(item);
    }

    return 1;
}

333
/* copy buffered record into OSSL_RECORD_LAYER structure */
334 335 336 337 338 339
static int dtls_copy_rlayer_record(OSSL_RECORD_LAYER *rl, pitem *item)
{
    DTLS_RLAYER_RECORD_DATA *rdata;

    rdata = (DTLS_RLAYER_RECORD_DATA *)item->data;

340
    SSL3_BUFFER_release(&rl->rbuf);
341

342 343 344
    rl->packet = rdata->packet;
    rl->packet_length = rdata->packet_length;
    memcpy(&rl->rbuf, &(rdata->rbuf), sizeof(SSL3_BUFFER));
345 346 347
    memcpy(&rl->rrec[0], &(rdata->rrec), sizeof(SSL3_RECORD));

    /* Set proper sequence number for mac calculation */
348
    memcpy(&(rl->sequence[2]), &(rdata->packet[5]), 6);
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379

    return 1;
}

static int dtls_retrieve_rlayer_buffered_record(OSSL_RECORD_LAYER *rl,
                                                record_pqueue *queue)
{
    pitem *item;

    item = pqueue_pop(queue->q);
    if (item) {
        dtls_copy_rlayer_record(rl, item);

        OPENSSL_free(item->data);
        pitem_free(item);

        return 1;
    }

    return 0;
}

/*-
 * Call this to get a new input record.
 * It will return <= 0 if more data is needed, normally due to an error
 * or non-blocking IO.
 * When it finishes, one packet has been decoded and can be found in
 * ssl->s3.rrec.type    - is the type of record
 * ssl->s3.rrec.data    - data
 * ssl->s3.rrec.length  - number of bytes
 */
380
int dtls_get_more_records(OSSL_RECORD_LAYER *rl)
381 382 383 384 385 386 387
{
    int ssl_major, ssl_minor;
    int rret;
    size_t more, n;
    SSL3_RECORD *rr;
    unsigned char *p = NULL;
    unsigned short version;
388
    DTLS_BITMAP *bitmap;
389 390 391 392 393 394 395 396
    unsigned int is_next_epoch;

    rl->num_recs = 0;
    rl->curr_rec = 0;
    rl->num_released = 0;

    rr = rl->rrec;

397
    if (rl->rbuf.buf == NULL) {
398
        if (!tls_setup_read_buffer(rl)) {
399 400 401 402 403
            /* RLAYERfatal() already called */
            return OSSL_RECORD_RETURN_FATAL;
        }
    }

404 405 406 407 408 409 410 411 412 413
 again:
    /* if we're renegotiating, then there may be buffered records */
    if (dtls_retrieve_rlayer_buffered_record(rl, &rl->processed_rcds)) {
        rl->num_recs = 1;
        return OSSL_RECORD_RETURN_SUCCESS;
    }

    /* get something from the wire */

    /* check if we have the header */
414 415 416 417
    if ((rl->rstate != SSL_ST_READ_BODY) ||
        (rl->packet_length < DTLS1_RT_HEADER_LENGTH)) {
        rret = rl->funcs->read_n(rl, DTLS1_RT_HEADER_LENGTH,
                                 SSL3_BUFFER_get_len(&rl->rbuf), 0, 1, &n);
418 419
        /* read timeout is handled by dtls1_read_bytes */
        if (rret < OSSL_RECORD_RETURN_SUCCESS) {
M
Matt Caswell 已提交
420
            /* RLAYERfatal() already called if appropriate */
421 422 423 424
            return rret;         /* error or non-blocking */
        }

        /* this packet contained a partial record, dump it */
425 426
        if (rl->packet_length != DTLS1_RT_HEADER_LENGTH) {
            rl->packet_length = 0;
427 428 429
            goto again;
        }

430
        rl->rstate = SSL_ST_READ_BODY;
431

432
        p = rl->packet;
433

434 435 436
        if (rl->msg_callback != NULL)
            rl->msg_callback(0, 0, SSL3_RT_HEADER, p, DTLS1_RT_HEADER_LENGTH,
                            rl->cbarg);
437 438 439 440 441 442 443 444 445 446

        /* Pull apart the header into the DTLS1_RECORD */
        rr->type = *(p++);
        ssl_major = *(p++);
        ssl_minor = *(p++);
        version = (ssl_major << 8) | ssl_minor;

        /* sequence number is 64 bits, with top 2 bytes = epoch */
        n2s(p, rr->epoch);

447
        memcpy(&(rl->sequence[2]), p, 6);
448 449 450 451 452 453 454 455
        p += 6;

        n2s(p, rr->length);

        /*
         * Lets check the version. We tolerate alerts that don't have the exact
         * version number (e.g. because of protocol version errors)
         */
456 457
        if (!rl->is_first_record && rr->type != SSL3_RT_ALERT) {
            if (version != rl->version) {
458 459
                /* unexpected version, silently discard */
                rr->length = 0;
460
                rl->packet_length = 0;
461 462 463 464
                goto again;
            }
        }

465 466
        if (ssl_major !=
                (rl->version == DTLS_ANY_VERSION ? DTLS1_VERSION_MAJOR
M
Matt Caswell 已提交
467
                                                 : rl->version >> 8)) {
468 469
            /* wrong version, silently discard record */
            rr->length = 0;
470
            rl->packet_length = 0;
471 472 473 474 475 476
            goto again;
        }

        if (rr->length > SSL3_RT_MAX_ENCRYPTED_LENGTH) {
            /* record too long, silently discard it */
            rr->length = 0;
477
            rl->packet_length = 0;
478 479 480
            goto again;
        }

481 482 483 484 485 486
        /*
         * If received packet overflows maximum possible fragment length then
         * silently discard it
         */
        if (rl->max_frag_len > 0
                && rr->length > rl->max_frag_len + SSL3_RT_MAX_ENCRYPTED_OVERHEAD) {
487 488
            /* record too long, silently discard it */
            rr->length = 0;
489
            rl->packet_length = 0;
490 491 492
            goto again;
        }

493
        /* now rl->rstate == SSL_ST_READ_BODY */
494 495
    }

496
    /* rl->rstate == SSL_ST_READ_BODY, get and decode the data */
497

M
Matt Caswell 已提交
498
    if (rr->length > rl->packet_length - DTLS1_RT_HEADER_LENGTH) {
499
        /* now rl->packet_length == DTLS1_RT_HEADER_LENGTH */
500
        more = rr->length;
501
        rret = rl->funcs->read_n(rl, more, more, 1, 1, &n);
502 503
        /* this packet contained a partial record, dump it */
        if (rret < OSSL_RECORD_RETURN_SUCCESS || n != more) {
504
            if (rl->alert != SSL_AD_NO_ALERT) {
505
                /* read_n() called RLAYERfatal() */
506 507 508
                return OSSL_RECORD_RETURN_FATAL;
            }
            rr->length = 0;
509
            rl->packet_length = 0;
510 511 512 513
            goto again;
        }

        /*
514 515
         * now n == rr->length,
         * and rl->packet_length ==  DTLS1_RT_HEADER_LENGTH + rr->length
516 517 518
         */
    }
    /* set state for later operations */
519
    rl->rstate = SSL_ST_READ_HEADER;
520 521

    /* match epochs.  NULL means the packet is dropped on the floor */
522
    bitmap = dtls_get_bitmap(rl, rr, &is_next_epoch);
523 524
    if (bitmap == NULL) {
        rr->length = 0;
525
        rl->packet_length = 0; /* dump this record */
526 527 528 529
        goto again;             /* get another record */
    }
#ifndef OPENSSL_NO_SCTP
    /* Only do replay check if no SCTP bio */
530
    if (!BIO_dgram_is_sctp(rl->bio)) {
531 532
#endif
        /* Check whether this is a repeat, or aged record. */
533
        if (!dtls_record_replay_check(rl, bitmap)) {
534
            rr->length = 0;
535
            rl->packet_length = 0; /* dump this record */
536 537 538 539 540 541 542
            goto again;         /* get another record */
        }
#ifndef OPENSSL_NO_SCTP
    }
#endif

    /* just read a 0 length packet */
M
Matt Caswell 已提交
543
    if (rr->length == 0)
544 545 546 547 548 549 550 551
        goto again;

    /*
     * If this record is from the next epoch (either HM or ALERT), and a
     * handshake is currently in progress, buffer it since it cannot be
     * processed at this time.
     */
    if (is_next_epoch) {
552
        if (rl->in_init) {
M
Matt Caswell 已提交
553 554 555
            if (dtls_rlayer_buffer_record(rl, &(rl->unprocessed_rcds),
                                          rr->seq_num) < 0) {
                /* RLAYERfatal() already called */
556 557 558 559
                return OSSL_RECORD_RETURN_FATAL;
            }
        }
        rr->length = 0;
560
        rl->packet_length = 0;
561 562 563
        goto again;
    }

564
    if (!dtls_process_record(rl, bitmap)) {
565
        if (rl->alert != SSL_AD_NO_ALERT) {
566
            /* dtls_process_record() called RLAYERfatal */
567 568 569
            return OSSL_RECORD_RETURN_FATAL;
        }
        rr->length = 0;
570
        rl->packet_length = 0; /* dump this record */
571 572 573 574 575 576 577 578 579
        goto again;             /* get another record */
    }

    rl->num_recs = 1;
    return OSSL_RECORD_RETURN_SUCCESS;
}

static int dtls_free(OSSL_RECORD_LAYER *rl)
{
580 581
    SSL3_BUFFER *rbuf;
    size_t left, written;
582 583
    pitem *item;
    DTLS_RLAYER_RECORD_DATA *rdata;
584
    int ret = 1;
585

586 587 588 589 590 591 592 593 594 595 596 597 598
    rbuf = &rl->rbuf;

    left = rbuf->left;
    if (left > 0) {
        /*
         * This record layer is closing but we still have data left in our
         * buffer. It must be destined for the next epoch - so push it there.
         */
        ret = BIO_write_ex(rl->next, rbuf->buf + rbuf->offset, left, &written);
        rbuf->left = 0;
    }

    if (rl->unprocessed_rcds.q != NULL) {
599 600
        while ((item = pqueue_pop(rl->unprocessed_rcds.q)) != NULL) {
            rdata = (DTLS_RLAYER_RECORD_DATA *)item->data;
601 602 603
            /* Push to the next record layer */
            ret &= BIO_write_ex(rl->next, rdata->packet, rdata->packet_length,
                                &written);
604 605 606 607 608 609 610
            OPENSSL_free(rdata->rbuf.buf);
            OPENSSL_free(item->data);
            pitem_free(item);
        }
        pqueue_free(rl->unprocessed_rcds.q);
    }

611
    if (rl->processed_rcds.q != NULL) {
612 613 614 615 616 617 618 619 620
        while ((item = pqueue_pop(rl->processed_rcds.q)) != NULL) {
            rdata = (DTLS_RLAYER_RECORD_DATA *)item->data;
            OPENSSL_free(rdata->rbuf.buf);
            OPENSSL_free(item->data);
            pitem_free(item);
        }
        pqueue_free(rl->processed_rcds.q);
    }

621
    return tls_free(rl) && ret;
622 623 624 625
}

static int
dtls_new_record_layer(OSSL_LIB_CTX *libctx, const char *propq, int vers,
M
Matt Caswell 已提交
626
                      int role, int direction, int level, uint16_t epoch,
627 628
                      unsigned char *key, size_t keylen, unsigned char *iv,
                      size_t ivlen, unsigned char *mackey, size_t mackeylen,
629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649
                      const EVP_CIPHER *ciph, size_t taglen,
                      int mactype,
                      const EVP_MD *md, const SSL_COMP *comp, BIO *prev,
                      BIO *transport, BIO *next, BIO_ADDR *local, BIO_ADDR *peer,
                      const OSSL_PARAM *settings, const OSSL_PARAM *options,
                      const OSSL_DISPATCH *fns, void *cbarg,
                      OSSL_RECORD_LAYER **retrl)
{
    int ret;

    ret = tls_int_new_record_layer(libctx, propq, vers, role, direction, level,
                                   key, keylen, iv, ivlen, mackey, mackeylen,
                                   ciph, taglen, mactype, md, comp, prev,
                                   transport, next, local, peer, settings,
                                   options, fns, cbarg, retrl);

    if (ret != OSSL_RECORD_RETURN_SUCCESS)
        return ret;

    (*retrl)->unprocessed_rcds.q = pqueue_new();
    (*retrl)->processed_rcds.q = pqueue_new();
M
Matt Caswell 已提交
650 651
    if ((*retrl)->unprocessed_rcds.q == NULL
            || (*retrl)->processed_rcds.q == NULL) {
652 653
        dtls_free(*retrl);
        *retrl = NULL;
654
        ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
655 656 657
        return OSSL_RECORD_RETURN_FATAL;
    }

658 659 660
    (*retrl)->unprocessed_rcds.epoch = epoch + 1;
    (*retrl)->processed_rcds.epoch = epoch;

661
    (*retrl)->isdtls = 1;
662
    (*retrl)->epoch = epoch;
663
    (*retrl)->in_init = 1;
664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679

    switch (vers) {
    case DTLS_ANY_VERSION:
        (*retrl)->funcs = &dtls_any_funcs;
        break;
    case DTLS1_2_VERSION:
    case DTLS1_VERSION:
    case DTLS1_BAD_VER:
        (*retrl)->funcs = &dtls_1_funcs;
        break;
    default:
        /* Should not happen */
        ERR_raise(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR);
        ret = OSSL_RECORD_RETURN_FATAL;
        goto err;
    }
680

681
    ret = (*retrl)->funcs->set_crypto_state(*retrl, level, key, keylen, iv,
M
Matt Caswell 已提交
682 683
                                            ivlen, mackey, mackeylen, ciph,
                                            taglen, mactype, md, comp);
684 685 686 687 688 689 690

 err:
    if (ret != OSSL_RECORD_RETURN_SUCCESS) {
        OPENSSL_free(*retrl);
        *retrl = NULL;
    }
    return ret;
691 692 693 694 695 696 697 698 699 700 701 702
}

const OSSL_RECORD_METHOD ossl_dtls_record_method = {
    dtls_new_record_layer,
    dtls_free,
    tls_reset,
    tls_unprocessed_read_pending,
    tls_processed_read_pending,
    tls_app_data_pending,
    tls_write_pending,
    tls_get_max_record_len,
    tls_get_max_records,
703 704
    tls_write_records,
    tls_retry_write_records,
705 706 707 708 709 710 711 712
    tls_read_record,
    tls_release_record,
    tls_get_alert_code,
    tls_set1_bio,
    tls_set_protocol_version,
    NULL,
    tls_set_first_handshake,
    tls_set_max_pipelines,
713
    dtls_set_in_init,
714 715
    tls_get_state,
    tls_set_options
716
};