Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1 | /* |
| 2 | * DTLS implementation written by Nagendra Modadugu |
Adam Langley | e745b25 | 2018-02-26 14:02:17 -0800 | [diff] [blame] | 3 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 4 | */ |
| 5 | /* ==================================================================== |
| 6 | * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. |
| 7 | * |
| 8 | * Redistribution and use in source and binary forms, with or without |
| 9 | * modification, are permitted provided that the following conditions |
| 10 | * are met: |
| 11 | * |
| 12 | * 1. Redistributions of source code must retain the above copyright |
| 13 | * notice, this list of conditions and the following disclaimer. |
| 14 | * |
| 15 | * 2. Redistributions in binary form must reproduce the above copyright |
| 16 | * notice, this list of conditions and the following disclaimer in |
| 17 | * the documentation and/or other materials provided with the |
| 18 | * distribution. |
| 19 | * |
| 20 | * 3. All advertising materials mentioning features or use of this |
| 21 | * software must display the following acknowledgment: |
| 22 | * "This product includes software developed by the OpenSSL Project |
| 23 | * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" |
| 24 | * |
| 25 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to |
| 26 | * endorse or promote products derived from this software without |
| 27 | * prior written permission. For written permission, please contact |
| 28 | * openssl-core@openssl.org. |
| 29 | * |
| 30 | * 5. Products derived from this software may not be called "OpenSSL" |
| 31 | * nor may "OpenSSL" appear in their names without prior written |
| 32 | * permission of the OpenSSL Project. |
| 33 | * |
| 34 | * 6. Redistributions of any form whatsoever must retain the following |
| 35 | * acknowledgment: |
| 36 | * "This product includes software developed by the OpenSSL Project |
| 37 | * for use in the OpenSSL Toolkit (http://www.openssl.org/)" |
| 38 | * |
| 39 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY |
| 40 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 41 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 42 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR |
| 43 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 44 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 45 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 46 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 47 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 48 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 49 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
| 50 | * OF THE POSSIBILITY OF SUCH DAMAGE. |
| 51 | * ==================================================================== |
| 52 | * |
| 53 | * This product includes cryptographic software written by Eric Young |
| 54 | * (eay@cryptsoft.com). This product includes software written by Tim |
| 55 | * Hudson (tjh@cryptsoft.com). |
| 56 | * |
| 57 | */ |
| 58 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
| 59 | * All rights reserved. |
| 60 | * |
| 61 | * This package is an SSL implementation written |
| 62 | * by Eric Young (eay@cryptsoft.com). |
| 63 | * The implementation was written so as to conform with Netscapes SSL. |
| 64 | * |
| 65 | * This library is free for commercial and non-commercial use as long as |
| 66 | * the following conditions are aheared to. The following conditions |
| 67 | * apply to all code found in this distribution, be it the RC4, RSA, |
| 68 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation |
| 69 | * included with this distribution is covered by the same copyright terms |
| 70 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). |
| 71 | * |
| 72 | * Copyright remains Eric Young's, and as such any Copyright notices in |
| 73 | * the code are not to be removed. |
| 74 | * If this package is used in a product, Eric Young should be given attribution |
| 75 | * as the author of the parts of the library used. |
| 76 | * This can be in the form of a textual message at program startup or |
| 77 | * in documentation (online or textual) provided with the package. |
| 78 | * |
| 79 | * Redistribution and use in source and binary forms, with or without |
| 80 | * modification, are permitted provided that the following conditions |
| 81 | * are met: |
| 82 | * 1. Redistributions of source code must retain the copyright |
| 83 | * notice, this list of conditions and the following disclaimer. |
| 84 | * 2. Redistributions in binary form must reproduce the above copyright |
| 85 | * notice, this list of conditions and the following disclaimer in the |
| 86 | * documentation and/or other materials provided with the distribution. |
| 87 | * 3. All advertising materials mentioning features or use of this software |
| 88 | * must display the following acknowledgement: |
| 89 | * "This product includes cryptographic software written by |
| 90 | * Eric Young (eay@cryptsoft.com)" |
| 91 | * The word 'cryptographic' can be left out if the rouines from the library |
| 92 | * being used are not cryptographic related :-). |
| 93 | * 4. If you include any Windows specific code (or a derivative thereof) from |
| 94 | * the apps directory (application code) you must include an acknowledgement: |
| 95 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" |
| 96 | * |
| 97 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND |
| 98 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 99 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 100 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 101 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 102 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 103 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 104 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 105 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 106 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 107 | * SUCH DAMAGE. |
| 108 | * |
| 109 | * The licence and distribution terms for any publically available version or |
| 110 | * derivative of this code cannot be changed. i.e. this code cannot simply be |
| 111 | * copied and put under another distribution licence |
| 112 | * [including the GNU Public Licence.] */ |
| 113 | |
David Benjamin | 9e4e01e | 2015-09-15 01:48:04 -0400 | [diff] [blame] | 114 | #include <openssl/ssl.h> |
| 115 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 116 | #include <assert.h> |
| 117 | #include <limits.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 118 | #include <string.h> |
| 119 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 120 | #include <openssl/err.h> |
| 121 | #include <openssl/evp.h> |
| 122 | #include <openssl/mem.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 123 | #include <openssl/rand.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 124 | |
David Benjamin | 17cf2cb | 2016-12-13 01:07:13 -0500 | [diff] [blame] | 125 | #include "../crypto/internal.h" |
David Benjamin | 2ee94aa | 2015-04-07 22:38:30 -0400 | [diff] [blame] | 126 | #include "internal.h" |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 127 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 128 | |
Joshua Liebow-Feeser | 8c7c635 | 2018-08-26 18:53:36 -0700 | [diff] [blame] | 129 | BSSL_NAMESPACE_BEGIN |
David Benjamin | 86e95b8 | 2017-07-18 16:34:25 -0400 | [diff] [blame] | 130 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 131 | // TODO(davidben): 28 comes from the size of IP + UDP header. Is this reasonable |
| 132 | // for these values? Notably, why is kMinMTU a function of the transport |
| 133 | // protocol's overhead rather than, say, what's needed to hold a minimally-sized |
| 134 | // handshake fragment plus protocol overhead. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 135 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 136 | // kMinMTU is the minimum acceptable MTU value. |
David Benjamin | a18b671 | 2015-01-11 19:31:22 -0500 | [diff] [blame] | 137 | static const unsigned int kMinMTU = 256 - 28; |
| 138 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 139 | // kDefaultMTU is the default MTU value to use if neither the user nor |
| 140 | // the underlying BIO supplies one. |
David Benjamin | a18b671 | 2015-01-11 19:31:22 -0500 | [diff] [blame] | 141 | static const unsigned int kDefaultMTU = 1500 - 28; |
| 142 | |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 143 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 144 | // Receiving handshake messages. |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 145 | |
David Benjamin | 049fdfc | 2017-10-17 01:12:53 -0400 | [diff] [blame] | 146 | hm_fragment::~hm_fragment() { |
| 147 | OPENSSL_free(data); |
| 148 | OPENSSL_free(reassembly); |
David Benjamin | ec847ce | 2016-06-17 19:30:47 -0400 | [diff] [blame] | 149 | } |
| 150 | |
David Benjamin | 049fdfc | 2017-10-17 01:12:53 -0400 | [diff] [blame] | 151 | static UniquePtr<hm_fragment> dtls1_hm_fragment_new( |
| 152 | const struct hm_header_st *msg_hdr) { |
David Benjamin | 1386aad | 2017-07-19 23:57:40 -0400 | [diff] [blame] | 153 | ScopedCBB cbb; |
David Benjamin | 049fdfc | 2017-10-17 01:12:53 -0400 | [diff] [blame] | 154 | UniquePtr<hm_fragment> frag = MakeUnique<hm_fragment>(); |
| 155 | if (!frag) { |
| 156 | return nullptr; |
Adam Langley | 71d8a08 | 2014-12-13 16:28:18 -0800 | [diff] [blame] | 157 | } |
David Benjamin | 528bd26 | 2016-07-08 09:34:05 -0700 | [diff] [blame] | 158 | frag->type = msg_hdr->type; |
| 159 | frag->seq = msg_hdr->seq; |
| 160 | frag->msg_len = msg_hdr->msg_len; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 161 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 162 | // Allocate space for the reassembled message and fill in the header. |
David Benjamin | e8703a3 | 2017-07-09 16:17:55 -0400 | [diff] [blame] | 163 | frag->data = |
| 164 | (uint8_t *)OPENSSL_malloc(DTLS1_HM_HEADER_LENGTH + msg_hdr->msg_len); |
David Benjamin | 528bd26 | 2016-07-08 09:34:05 -0700 | [diff] [blame] | 165 | if (frag->data == NULL) { |
| 166 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
David Benjamin | 049fdfc | 2017-10-17 01:12:53 -0400 | [diff] [blame] | 167 | return nullptr; |
David Benjamin | 528bd26 | 2016-07-08 09:34:05 -0700 | [diff] [blame] | 168 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 169 | |
David Benjamin | 1386aad | 2017-07-19 23:57:40 -0400 | [diff] [blame] | 170 | if (!CBB_init_fixed(cbb.get(), frag->data, DTLS1_HM_HEADER_LENGTH) || |
| 171 | !CBB_add_u8(cbb.get(), msg_hdr->type) || |
| 172 | !CBB_add_u24(cbb.get(), msg_hdr->msg_len) || |
| 173 | !CBB_add_u16(cbb.get(), msg_hdr->seq) || |
| 174 | !CBB_add_u24(cbb.get(), 0 /* frag_off */) || |
| 175 | !CBB_add_u24(cbb.get(), msg_hdr->msg_len) || |
| 176 | !CBB_finish(cbb.get(), NULL, NULL)) { |
David Benjamin | 528bd26 | 2016-07-08 09:34:05 -0700 | [diff] [blame] | 177 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
David Benjamin | 049fdfc | 2017-10-17 01:12:53 -0400 | [diff] [blame] | 178 | return nullptr; |
David Benjamin | 528bd26 | 2016-07-08 09:34:05 -0700 | [diff] [blame] | 179 | } |
| 180 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 181 | // If the handshake message is empty, |frag->reassembly| is NULL. |
David Benjamin | 528bd26 | 2016-07-08 09:34:05 -0700 | [diff] [blame] | 182 | if (msg_hdr->msg_len > 0) { |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 183 | // Initialize reassembly bitmask. |
David Benjamin | 528bd26 | 2016-07-08 09:34:05 -0700 | [diff] [blame] | 184 | if (msg_hdr->msg_len + 7 < msg_hdr->msg_len) { |
David Benjamin | 29a83c5 | 2016-06-17 19:12:54 -0400 | [diff] [blame] | 185 | OPENSSL_PUT_ERROR(SSL, ERR_R_OVERFLOW); |
David Benjamin | 049fdfc | 2017-10-17 01:12:53 -0400 | [diff] [blame] | 186 | return nullptr; |
Adam Langley | 71d8a08 | 2014-12-13 16:28:18 -0800 | [diff] [blame] | 187 | } |
David Benjamin | 528bd26 | 2016-07-08 09:34:05 -0700 | [diff] [blame] | 188 | size_t bitmask_len = (msg_hdr->msg_len + 7) / 8; |
David Benjamin | e8703a3 | 2017-07-09 16:17:55 -0400 | [diff] [blame] | 189 | frag->reassembly = (uint8_t *)OPENSSL_malloc(bitmask_len); |
David Benjamin | 29a83c5 | 2016-06-17 19:12:54 -0400 | [diff] [blame] | 190 | if (frag->reassembly == NULL) { |
| 191 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
David Benjamin | 049fdfc | 2017-10-17 01:12:53 -0400 | [diff] [blame] | 192 | return nullptr; |
David Benjamin | 29a83c5 | 2016-06-17 19:12:54 -0400 | [diff] [blame] | 193 | } |
David Benjamin | 17cf2cb | 2016-12-13 01:07:13 -0500 | [diff] [blame] | 194 | OPENSSL_memset(frag->reassembly, 0, bitmask_len); |
Adam Langley | 71d8a08 | 2014-12-13 16:28:18 -0800 | [diff] [blame] | 195 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 196 | |
Adam Langley | 71d8a08 | 2014-12-13 16:28:18 -0800 | [diff] [blame] | 197 | return frag; |
| 198 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 199 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 200 | // bit_range returns a |uint8_t| with bits |start|, inclusive, to |end|, |
| 201 | // exclusive, set. |
David Benjamin | dca125e | 2016-06-23 17:52:47 -0400 | [diff] [blame] | 202 | static uint8_t bit_range(size_t start, size_t end) { |
David Benjamin | ee562b9 | 2015-03-02 20:52:52 -0500 | [diff] [blame] | 203 | return (uint8_t)(~((1u << start) - 1) & ((1u << end) - 1)); |
| 204 | } |
| 205 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 206 | // dtls1_hm_fragment_mark marks bytes |start|, inclusive, to |end|, exclusive, |
| 207 | // as received in |frag|. If |frag| becomes complete, it clears |
| 208 | // |frag->reassembly|. The range must be within the bounds of |frag|'s message |
| 209 | // and |frag->reassembly| must not be NULL. |
David Benjamin | ee562b9 | 2015-03-02 20:52:52 -0500 | [diff] [blame] | 210 | static void dtls1_hm_fragment_mark(hm_fragment *frag, size_t start, |
| 211 | size_t end) { |
David Benjamin | 528bd26 | 2016-07-08 09:34:05 -0700 | [diff] [blame] | 212 | size_t msg_len = frag->msg_len; |
David Benjamin | ee562b9 | 2015-03-02 20:52:52 -0500 | [diff] [blame] | 213 | |
| 214 | if (frag->reassembly == NULL || start > end || end > msg_len) { |
| 215 | assert(0); |
| 216 | return; |
| 217 | } |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 218 | // A zero-length message will never have a pending reassembly. |
David Benjamin | ee562b9 | 2015-03-02 20:52:52 -0500 | [diff] [blame] | 219 | assert(msg_len > 0); |
| 220 | |
David Benjamin | e51fb0f | 2017-09-07 11:51:46 -0400 | [diff] [blame] | 221 | if (start == end) { |
| 222 | return; |
| 223 | } |
| 224 | |
David Benjamin | ee562b9 | 2015-03-02 20:52:52 -0500 | [diff] [blame] | 225 | if ((start >> 3) == (end >> 3)) { |
| 226 | frag->reassembly[start >> 3] |= bit_range(start & 7, end & 7); |
| 227 | } else { |
| 228 | frag->reassembly[start >> 3] |= bit_range(start & 7, 8); |
David Benjamin | 5409123 | 2016-09-05 12:47:25 -0400 | [diff] [blame] | 229 | for (size_t i = (start >> 3) + 1; i < (end >> 3); i++) { |
David Benjamin | ee562b9 | 2015-03-02 20:52:52 -0500 | [diff] [blame] | 230 | frag->reassembly[i] = 0xff; |
| 231 | } |
| 232 | if ((end & 7) != 0) { |
| 233 | frag->reassembly[end >> 3] |= bit_range(0, end & 7); |
| 234 | } |
| 235 | } |
| 236 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 237 | // Check if the fragment is complete. |
David Benjamin | 5409123 | 2016-09-05 12:47:25 -0400 | [diff] [blame] | 238 | for (size_t i = 0; i < (msg_len >> 3); i++) { |
David Benjamin | ee562b9 | 2015-03-02 20:52:52 -0500 | [diff] [blame] | 239 | if (frag->reassembly[i] != 0xff) { |
| 240 | return; |
| 241 | } |
| 242 | } |
| 243 | if ((msg_len & 7) != 0 && |
| 244 | frag->reassembly[msg_len >> 3] != bit_range(0, msg_len & 7)) { |
| 245 | return; |
| 246 | } |
| 247 | |
| 248 | OPENSSL_free(frag->reassembly); |
| 249 | frag->reassembly = NULL; |
| 250 | } |
| 251 | |
David Benjamin | 97250f4 | 2017-10-07 04:12:35 -0400 | [diff] [blame] | 252 | // dtls1_is_current_message_complete returns whether the current handshake |
| 253 | // message is complete. |
| 254 | static bool dtls1_is_current_message_complete(const SSL *ssl) { |
David Benjamin | 800046f | 2017-10-17 01:37:51 -0400 | [diff] [blame] | 255 | size_t idx = ssl->d1->handshake_read_seq % SSL_MAX_HANDSHAKE_FLIGHT; |
| 256 | hm_fragment *frag = ssl->d1->incoming_messages[idx].get(); |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 257 | return frag != NULL && frag->reassembly == NULL; |
| 258 | } |
| 259 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 260 | // dtls1_get_incoming_message returns the incoming message corresponding to |
| 261 | // |msg_hdr|. If none exists, it creates a new one and inserts it in the |
| 262 | // queue. Otherwise, it checks |msg_hdr| is consistent with the existing one. It |
| 263 | // returns NULL on failure. The caller does not take ownership of the result. |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 264 | static hm_fragment *dtls1_get_incoming_message( |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 265 | SSL *ssl, uint8_t *out_alert, const struct hm_header_st *msg_hdr) { |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 266 | if (msg_hdr->seq < ssl->d1->handshake_read_seq || |
| 267 | msg_hdr->seq - ssl->d1->handshake_read_seq >= SSL_MAX_HANDSHAKE_FLIGHT) { |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 268 | *out_alert = SSL_AD_INTERNAL_ERROR; |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 269 | return NULL; |
| 270 | } |
| 271 | |
| 272 | size_t idx = msg_hdr->seq % SSL_MAX_HANDSHAKE_FLIGHT; |
David Benjamin | 800046f | 2017-10-17 01:37:51 -0400 | [diff] [blame] | 273 | hm_fragment *frag = ssl->d1->incoming_messages[idx].get(); |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 274 | if (frag != NULL) { |
David Benjamin | 528bd26 | 2016-07-08 09:34:05 -0700 | [diff] [blame] | 275 | assert(frag->seq == msg_hdr->seq); |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 276 | // The new fragment must be compatible with the previous fragments from this |
| 277 | // message. |
David Benjamin | 528bd26 | 2016-07-08 09:34:05 -0700 | [diff] [blame] | 278 | if (frag->type != msg_hdr->type || |
| 279 | frag->msg_len != msg_hdr->msg_len) { |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 280 | OPENSSL_PUT_ERROR(SSL, SSL_R_FRAGMENT_MISMATCH); |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 281 | *out_alert = SSL_AD_ILLEGAL_PARAMETER; |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 282 | return NULL; |
| 283 | } |
| 284 | return frag; |
| 285 | } |
| 286 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 287 | // This is the first fragment from this message. |
David Benjamin | 800046f | 2017-10-17 01:37:51 -0400 | [diff] [blame] | 288 | ssl->d1->incoming_messages[idx] = dtls1_hm_fragment_new(msg_hdr); |
| 289 | if (!ssl->d1->incoming_messages[idx]) { |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 290 | *out_alert = SSL_AD_INTERNAL_ERROR; |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 291 | return NULL; |
| 292 | } |
David Benjamin | 800046f | 2017-10-17 01:37:51 -0400 | [diff] [blame] | 293 | return ssl->d1->incoming_messages[idx].get(); |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 294 | } |
| 295 | |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 296 | ssl_open_record_t dtls1_open_handshake(SSL *ssl, size_t *out_consumed, |
| 297 | uint8_t *out_alert, Span<uint8_t> in) { |
| 298 | uint8_t type; |
| 299 | Span<uint8_t> record; |
| 300 | auto ret = dtls_open_record(ssl, &type, &record, out_consumed, out_alert, in); |
| 301 | if (ret != ssl_open_record_success) { |
| 302 | return ret; |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 303 | } |
| 304 | |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 305 | switch (type) { |
David Benjamin | b0c761e | 2017-06-25 22:42:55 -0400 | [diff] [blame] | 306 | case SSL3_RT_APPLICATION_DATA: |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 307 | // Unencrypted application data records are always illegal. |
David Benjamin | b0c761e | 2017-06-25 22:42:55 -0400 | [diff] [blame] | 308 | if (ssl->s3->aead_read_ctx->is_null_cipher()) { |
David Benjamin | b0c761e | 2017-06-25 22:42:55 -0400 | [diff] [blame] | 309 | OPENSSL_PUT_ERROR(SSL, SSL_R_UNEXPECTED_RECORD); |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 310 | *out_alert = SSL_AD_UNEXPECTED_MESSAGE; |
| 311 | return ssl_open_record_error; |
David Benjamin | b0c761e | 2017-06-25 22:42:55 -0400 | [diff] [blame] | 312 | } |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 313 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 314 | // Out-of-order application data may be received between ChangeCipherSpec |
| 315 | // and finished. Discard it. |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 316 | return ssl_open_record_discard; |
David Benjamin | b0c761e | 2017-06-25 22:42:55 -0400 | [diff] [blame] | 317 | |
| 318 | case SSL3_RT_CHANGE_CIPHER_SPEC: |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 319 | // We do not support renegotiation, so encrypted ChangeCipherSpec records |
| 320 | // are illegal. |
David Benjamin | b0c761e | 2017-06-25 22:42:55 -0400 | [diff] [blame] | 321 | if (!ssl->s3->aead_read_ctx->is_null_cipher()) { |
David Benjamin | b0c761e | 2017-06-25 22:42:55 -0400 | [diff] [blame] | 322 | OPENSSL_PUT_ERROR(SSL, SSL_R_UNEXPECTED_RECORD); |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 323 | *out_alert = SSL_AD_UNEXPECTED_MESSAGE; |
| 324 | return ssl_open_record_error; |
David Benjamin | b0c761e | 2017-06-25 22:42:55 -0400 | [diff] [blame] | 325 | } |
| 326 | |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 327 | if (record.size() != 1u || record[0] != SSL3_MT_CCS) { |
David Benjamin | b0c761e | 2017-06-25 22:42:55 -0400 | [diff] [blame] | 328 | OPENSSL_PUT_ERROR(SSL, SSL_R_BAD_CHANGE_CIPHER_SPEC); |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 329 | *out_alert = SSL_AD_ILLEGAL_PARAMETER; |
| 330 | return ssl_open_record_error; |
David Benjamin | b0c761e | 2017-06-25 22:42:55 -0400 | [diff] [blame] | 331 | } |
| 332 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 333 | // Flag the ChangeCipherSpec for later. |
David Benjamin | b0c761e | 2017-06-25 22:42:55 -0400 | [diff] [blame] | 334 | ssl->d1->has_change_cipher_spec = true; |
| 335 | ssl_do_msg_callback(ssl, 0 /* read */, SSL3_RT_CHANGE_CIPHER_SPEC, |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 336 | record); |
| 337 | return ssl_open_record_success; |
David Benjamin | b0c761e | 2017-06-25 22:42:55 -0400 | [diff] [blame] | 338 | |
| 339 | case SSL3_RT_HANDSHAKE: |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 340 | // Break out to main processing. |
David Benjamin | b0c761e | 2017-06-25 22:42:55 -0400 | [diff] [blame] | 341 | break; |
| 342 | |
| 343 | default: |
David Benjamin | b0c761e | 2017-06-25 22:42:55 -0400 | [diff] [blame] | 344 | OPENSSL_PUT_ERROR(SSL, SSL_R_UNEXPECTED_RECORD); |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 345 | *out_alert = SSL_AD_UNEXPECTED_MESSAGE; |
| 346 | return ssl_open_record_error; |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 347 | } |
| 348 | |
| 349 | CBS cbs; |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 350 | CBS_init(&cbs, record.data(), record.size()); |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 351 | while (CBS_len(&cbs) > 0) { |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 352 | // Read a handshake fragment. |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 353 | struct hm_header_st msg_hdr; |
| 354 | CBS body; |
| 355 | if (!dtls1_parse_fragment(&cbs, &msg_hdr, &body)) { |
| 356 | OPENSSL_PUT_ERROR(SSL, SSL_R_BAD_HANDSHAKE_RECORD); |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 357 | *out_alert = SSL_AD_DECODE_ERROR; |
| 358 | return ssl_open_record_error; |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | const size_t frag_off = msg_hdr.frag_off; |
| 362 | const size_t frag_len = msg_hdr.frag_len; |
| 363 | const size_t msg_len = msg_hdr.msg_len; |
| 364 | if (frag_off > msg_len || frag_off + frag_len < frag_off || |
| 365 | frag_off + frag_len > msg_len || |
| 366 | msg_len > ssl_max_handshake_message_len(ssl)) { |
| 367 | OPENSSL_PUT_ERROR(SSL, SSL_R_EXCESSIVE_MESSAGE_SIZE); |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 368 | *out_alert = SSL_AD_ILLEGAL_PARAMETER; |
| 369 | return ssl_open_record_error; |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 370 | } |
| 371 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 372 | // The encrypted epoch in DTLS has only one handshake message. |
David Benjamin | 02edcd0 | 2016-07-27 17:40:37 -0400 | [diff] [blame] | 373 | if (ssl->d1->r_epoch == 1 && msg_hdr.seq != ssl->d1->handshake_read_seq) { |
| 374 | OPENSSL_PUT_ERROR(SSL, SSL_R_UNEXPECTED_RECORD); |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 375 | *out_alert = SSL_AD_UNEXPECTED_MESSAGE; |
| 376 | return ssl_open_record_error; |
David Benjamin | 02edcd0 | 2016-07-27 17:40:37 -0400 | [diff] [blame] | 377 | } |
| 378 | |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 379 | if (msg_hdr.seq < ssl->d1->handshake_read_seq || |
| 380 | msg_hdr.seq > |
| 381 | (unsigned)ssl->d1->handshake_read_seq + SSL_MAX_HANDSHAKE_FLIGHT) { |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 382 | // Ignore fragments from the past, or ones too far in the future. |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 383 | continue; |
| 384 | } |
| 385 | |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 386 | hm_fragment *frag = dtls1_get_incoming_message(ssl, out_alert, &msg_hdr); |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 387 | if (frag == NULL) { |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 388 | return ssl_open_record_error; |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 389 | } |
David Benjamin | 528bd26 | 2016-07-08 09:34:05 -0700 | [diff] [blame] | 390 | assert(frag->msg_len == msg_len); |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 391 | |
| 392 | if (frag->reassembly == NULL) { |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 393 | // The message is already assembled. |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 394 | continue; |
| 395 | } |
| 396 | assert(msg_len > 0); |
| 397 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 398 | // Copy the body into the fragment. |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 399 | OPENSSL_memcpy(frag->data + DTLS1_HM_HEADER_LENGTH + frag_off, |
| 400 | CBS_data(&body), CBS_len(&body)); |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 401 | dtls1_hm_fragment_mark(frag, frag_off, frag_off + frag_len); |
| 402 | } |
| 403 | |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 404 | return ssl_open_record_success; |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 405 | } |
| 406 | |
Adam Langley | c9827e0 | 2019-04-12 14:46:50 -0700 | [diff] [blame] | 407 | bool dtls1_get_message(const SSL *ssl, SSLMessage *out) { |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 408 | if (!dtls1_is_current_message_complete(ssl)) { |
| 409 | return false; |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 410 | } |
| 411 | |
David Benjamin | 800046f | 2017-10-17 01:37:51 -0400 | [diff] [blame] | 412 | size_t idx = ssl->d1->handshake_read_seq % SSL_MAX_HANDSHAKE_FLIGHT; |
| 413 | hm_fragment *frag = ssl->d1->incoming_messages[idx].get(); |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 414 | out->type = frag->type; |
| 415 | CBS_init(&out->body, frag->data + DTLS1_HM_HEADER_LENGTH, frag->msg_len); |
| 416 | CBS_init(&out->raw, frag->data, DTLS1_HM_HEADER_LENGTH + frag->msg_len); |
| 417 | out->is_v2_hello = false; |
| 418 | if (!ssl->s3->has_message) { |
David Benjamin | 03a4b96 | 2017-10-06 17:54:10 -0400 | [diff] [blame] | 419 | ssl_do_msg_callback(ssl, 0 /* read */, SSL3_RT_HANDSHAKE, out->raw); |
David Benjamin | 046bc1f | 2017-08-31 15:06:42 -0400 | [diff] [blame] | 420 | ssl->s3->has_message = true; |
David Benjamin | 78b8b99 | 2017-08-01 18:38:41 -0400 | [diff] [blame] | 421 | } |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 422 | return true; |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 423 | } |
| 424 | |
David Benjamin | 8f94c31 | 2017-08-01 17:35:55 -0400 | [diff] [blame] | 425 | void dtls1_next_message(SSL *ssl) { |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 426 | assert(ssl->s3->has_message); |
David Benjamin | 4497e58 | 2016-07-27 17:51:49 -0400 | [diff] [blame] | 427 | assert(dtls1_is_current_message_complete(ssl)); |
| 428 | size_t index = ssl->d1->handshake_read_seq % SSL_MAX_HANDSHAKE_FLIGHT; |
David Benjamin | 800046f | 2017-10-17 01:37:51 -0400 | [diff] [blame] | 429 | ssl->d1->incoming_messages[index].reset(); |
David Benjamin | 4497e58 | 2016-07-27 17:51:49 -0400 | [diff] [blame] | 430 | ssl->d1->handshake_read_seq++; |
David Benjamin | 046bc1f | 2017-08-31 15:06:42 -0400 | [diff] [blame] | 431 | ssl->s3->has_message = false; |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 432 | // If we previously sent a flight, mark it as having a reply, so |
| 433 | // |on_handshake_complete| can manage post-handshake retransmission. |
David Benjamin | 302b818 | 2017-08-22 14:47:22 -0700 | [diff] [blame] | 434 | if (ssl->d1->outgoing_messages_complete) { |
| 435 | ssl->d1->flight_has_reply = true; |
| 436 | } |
David Benjamin | 4497e58 | 2016-07-27 17:51:49 -0400 | [diff] [blame] | 437 | } |
| 438 | |
David Benjamin | 40e9470 | 2017-10-06 18:26:36 -0400 | [diff] [blame] | 439 | bool dtls_has_unprocessed_handshake_data(const SSL *ssl) { |
David Benjamin | 6167281 | 2016-07-14 23:10:43 -0400 | [diff] [blame] | 440 | size_t current = ssl->d1->handshake_read_seq % SSL_MAX_HANDSHAKE_FLIGHT; |
| 441 | for (size_t i = 0; i < SSL_MAX_HANDSHAKE_FLIGHT; i++) { |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 442 | // Skip the current message. |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 443 | if (ssl->s3->has_message && i == current) { |
David Benjamin | 4497e58 | 2016-07-27 17:51:49 -0400 | [diff] [blame] | 444 | assert(dtls1_is_current_message_complete(ssl)); |
| 445 | continue; |
| 446 | } |
David Benjamin | 800046f | 2017-10-17 01:37:51 -0400 | [diff] [blame] | 447 | if (ssl->d1->incoming_messages[i] != nullptr) { |
David Benjamin | 40e9470 | 2017-10-06 18:26:36 -0400 | [diff] [blame] | 448 | return true; |
David Benjamin | 6167281 | 2016-07-14 23:10:43 -0400 | [diff] [blame] | 449 | } |
| 450 | } |
David Benjamin | 40e9470 | 2017-10-06 18:26:36 -0400 | [diff] [blame] | 451 | return false; |
David Benjamin | 6167281 | 2016-07-14 23:10:43 -0400 | [diff] [blame] | 452 | } |
| 453 | |
David Benjamin | 97250f4 | 2017-10-07 04:12:35 -0400 | [diff] [blame] | 454 | bool dtls1_parse_fragment(CBS *cbs, struct hm_header_st *out_hdr, |
| 455 | CBS *out_body) { |
David Benjamin | 17cf2cb | 2016-12-13 01:07:13 -0500 | [diff] [blame] | 456 | OPENSSL_memset(out_hdr, 0x00, sizeof(struct hm_header_st)); |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 457 | |
| 458 | if (!CBS_get_u8(cbs, &out_hdr->type) || |
| 459 | !CBS_get_u24(cbs, &out_hdr->msg_len) || |
| 460 | !CBS_get_u16(cbs, &out_hdr->seq) || |
| 461 | !CBS_get_u24(cbs, &out_hdr->frag_off) || |
| 462 | !CBS_get_u24(cbs, &out_hdr->frag_len) || |
| 463 | !CBS_get_bytes(cbs, out_body, out_hdr->frag_len)) { |
David Benjamin | 97250f4 | 2017-10-07 04:12:35 -0400 | [diff] [blame] | 464 | return false; |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 465 | } |
| 466 | |
David Benjamin | 97250f4 | 2017-10-07 04:12:35 -0400 | [diff] [blame] | 467 | return true; |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 468 | } |
| 469 | |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 470 | ssl_open_record_t dtls1_open_change_cipher_spec(SSL *ssl, size_t *out_consumed, |
| 471 | uint8_t *out_alert, |
| 472 | Span<uint8_t> in) { |
| 473 | if (!ssl->d1->has_change_cipher_spec) { |
| 474 | // dtls1_open_handshake processes both handshake and ChangeCipherSpec. |
| 475 | auto ret = dtls1_open_handshake(ssl, out_consumed, out_alert, in); |
| 476 | if (ret != ssl_open_record_success) { |
David Benjamin | b0c761e | 2017-06-25 22:42:55 -0400 | [diff] [blame] | 477 | return ret; |
| 478 | } |
| 479 | } |
David Benjamin | d9229f9 | 2017-10-06 17:36:20 -0400 | [diff] [blame] | 480 | if (ssl->d1->has_change_cipher_spec) { |
| 481 | ssl->d1->has_change_cipher_spec = false; |
| 482 | return ssl_open_record_success; |
| 483 | } |
| 484 | return ssl_open_record_discard; |
David Benjamin | b0c761e | 2017-06-25 22:42:55 -0400 | [diff] [blame] | 485 | } |
| 486 | |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 487 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 488 | // Sending handshake messages. |
David Benjamin | 9d632f4 | 2016-06-23 17:57:19 -0400 | [diff] [blame] | 489 | |
David Benjamin | 049fdfc | 2017-10-17 01:12:53 -0400 | [diff] [blame] | 490 | void DTLS_OUTGOING_MESSAGE::Clear() { |
| 491 | OPENSSL_free(data); |
| 492 | data = nullptr; |
| 493 | } |
| 494 | |
David Benjamin | 7583643 | 2016-06-17 18:48:29 -0400 | [diff] [blame] | 495 | void dtls_clear_outgoing_messages(SSL *ssl) { |
David Benjamin | 5409123 | 2016-09-05 12:47:25 -0400 | [diff] [blame] | 496 | for (size_t i = 0; i < ssl->d1->outgoing_messages_len; i++) { |
David Benjamin | 049fdfc | 2017-10-17 01:12:53 -0400 | [diff] [blame] | 497 | ssl->d1->outgoing_messages[i].Clear(); |
David Benjamin | 7583643 | 2016-06-17 18:48:29 -0400 | [diff] [blame] | 498 | } |
| 499 | ssl->d1->outgoing_messages_len = 0; |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 500 | ssl->d1->outgoing_written = 0; |
| 501 | ssl->d1->outgoing_offset = 0; |
David Benjamin | 9bbdf58 | 2017-08-02 19:46:29 -0400 | [diff] [blame] | 502 | ssl->d1->outgoing_messages_complete = false; |
David Benjamin | 302b818 | 2017-08-22 14:47:22 -0700 | [diff] [blame] | 503 | ssl->d1->flight_has_reply = false; |
David Benjamin | 7583643 | 2016-06-17 18:48:29 -0400 | [diff] [blame] | 504 | } |
| 505 | |
David Benjamin | bcef514 | 2021-06-02 11:24:26 -0400 | [diff] [blame] | 506 | bool dtls1_init_message(const SSL *ssl, CBB *cbb, CBB *body, uint8_t type) { |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 507 | // Pick a modest size hint to save most of the |realloc| calls. |
David Benjamin | 7583643 | 2016-06-17 18:48:29 -0400 | [diff] [blame] | 508 | if (!CBB_init(cbb, 64) || |
| 509 | !CBB_add_u8(cbb, type) || |
| 510 | !CBB_add_u24(cbb, 0 /* length (filled in later) */) || |
| 511 | !CBB_add_u16(cbb, ssl->d1->handshake_write_seq) || |
| 512 | !CBB_add_u24(cbb, 0 /* offset */) || |
| 513 | !CBB_add_u24_length_prefixed(cbb, body)) { |
David Benjamin | 97250f4 | 2017-10-07 04:12:35 -0400 | [diff] [blame] | 514 | return false; |
David Benjamin | 7583643 | 2016-06-17 18:48:29 -0400 | [diff] [blame] | 515 | } |
| 516 | |
David Benjamin | 97250f4 | 2017-10-07 04:12:35 -0400 | [diff] [blame] | 517 | return true; |
David Benjamin | 7583643 | 2016-06-17 18:48:29 -0400 | [diff] [blame] | 518 | } |
| 519 | |
David Benjamin | bcef514 | 2021-06-02 11:24:26 -0400 | [diff] [blame] | 520 | bool dtls1_finish_message(const SSL *ssl, CBB *cbb, Array<uint8_t> *out_msg) { |
David Benjamin | 879efc3 | 2017-09-21 11:20:53 -0400 | [diff] [blame] | 521 | if (!CBBFinishArray(cbb, out_msg) || |
| 522 | out_msg->size() < DTLS1_HM_HEADER_LENGTH) { |
David Benjamin | 7583643 | 2016-06-17 18:48:29 -0400 | [diff] [blame] | 523 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
David Benjamin | 97250f4 | 2017-10-07 04:12:35 -0400 | [diff] [blame] | 524 | return false; |
David Benjamin | 7583643 | 2016-06-17 18:48:29 -0400 | [diff] [blame] | 525 | } |
| 526 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 527 | // Fix up the header. Copy the fragment length into the total message |
| 528 | // length. |
David Benjamin | 879efc3 | 2017-09-21 11:20:53 -0400 | [diff] [blame] | 529 | OPENSSL_memcpy(out_msg->data() + 1, |
| 530 | out_msg->data() + DTLS1_HM_HEADER_LENGTH - 3, 3); |
David Benjamin | 97250f4 | 2017-10-07 04:12:35 -0400 | [diff] [blame] | 531 | return true; |
Steven Valdez | 5eead16 | 2016-11-11 22:23:25 -0500 | [diff] [blame] | 532 | } |
David Benjamin | 7583643 | 2016-06-17 18:48:29 -0400 | [diff] [blame] | 533 | |
Adam Langley | f64c373 | 2018-05-08 15:04:35 -0700 | [diff] [blame] | 534 | // ssl_size_t_greater_than_32_bits returns whether |v| exceeds the bounds of a |
| 535 | // 32-bit value. The obvious thing doesn't work because, in some 32-bit build |
| 536 | // configurations, the compiler warns that the test is always false and breaks |
| 537 | // the build. |
| 538 | static bool ssl_size_t_greater_than_32_bits(size_t v) { |
| 539 | #if defined(OPENSSL_64_BIT) |
| 540 | return v > 0xffffffff; |
| 541 | #elif defined(OPENSSL_32_BIT) |
| 542 | return false; |
| 543 | #else |
| 544 | #error "Building for neither 32- nor 64-bits." |
| 545 | #endif |
| 546 | } |
| 547 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 548 | // add_outgoing adds a new handshake message or ChangeCipherSpec to the current |
David Benjamin | 97250f4 | 2017-10-07 04:12:35 -0400 | [diff] [blame] | 549 | // outgoing flight. It returns true on success and false on error. |
David Benjamin | 049fdfc | 2017-10-17 01:12:53 -0400 | [diff] [blame] | 550 | static bool add_outgoing(SSL *ssl, bool is_ccs, Array<uint8_t> data) { |
David Benjamin | 9bbdf58 | 2017-08-02 19:46:29 -0400 | [diff] [blame] | 551 | if (ssl->d1->outgoing_messages_complete) { |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 552 | // If we've begun writing a new flight, we received the peer flight. Discard |
| 553 | // the timer and the our flight. |
David Benjamin | 9bbdf58 | 2017-08-02 19:46:29 -0400 | [diff] [blame] | 554 | dtls1_stop_timer(ssl); |
| 555 | dtls_clear_outgoing_messages(ssl); |
| 556 | } |
| 557 | |
David Benjamin | a3d76d0 | 2017-07-14 19:36:07 -0400 | [diff] [blame] | 558 | static_assert(SSL_MAX_HANDSHAKE_FLIGHT < |
| 559 | (1 << 8 * sizeof(ssl->d1->outgoing_messages_len)), |
| 560 | "outgoing_messages_len is too small"); |
David Benjamin | 879efc3 | 2017-09-21 11:20:53 -0400 | [diff] [blame] | 561 | if (ssl->d1->outgoing_messages_len >= SSL_MAX_HANDSHAKE_FLIGHT || |
Adam Langley | f64c373 | 2018-05-08 15:04:35 -0700 | [diff] [blame] | 562 | ssl_size_t_greater_than_32_bits(data.size())) { |
David Benjamin | 97250f4 | 2017-10-07 04:12:35 -0400 | [diff] [blame] | 563 | assert(false); |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 564 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
David Benjamin | 97250f4 | 2017-10-07 04:12:35 -0400 | [diff] [blame] | 565 | return false; |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 566 | } |
David Benjamin | 7583643 | 2016-06-17 18:48:29 -0400 | [diff] [blame] | 567 | |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 568 | if (!is_ccs) { |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 569 | // TODO(svaldez): Move this up a layer to fix abstraction for SSLTranscript |
| 570 | // on hs. |
Steven Valdez | 908ac19 | 2017-01-12 13:17:07 -0500 | [diff] [blame] | 571 | if (ssl->s3->hs != NULL && |
David Benjamin | 75a1f23 | 2017-10-11 17:19:19 -0400 | [diff] [blame] | 572 | !ssl->s3->hs->transcript.Update(data)) { |
Steven Valdez | 908ac19 | 2017-01-12 13:17:07 -0500 | [diff] [blame] | 573 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
David Benjamin | 97250f4 | 2017-10-07 04:12:35 -0400 | [diff] [blame] | 574 | return false; |
Steven Valdez | 908ac19 | 2017-01-12 13:17:07 -0500 | [diff] [blame] | 575 | } |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 576 | ssl->d1->handshake_write_seq++; |
| 577 | } |
| 578 | |
| 579 | DTLS_OUTGOING_MESSAGE *msg = |
| 580 | &ssl->d1->outgoing_messages[ssl->d1->outgoing_messages_len]; |
David Benjamin | 879efc3 | 2017-09-21 11:20:53 -0400 | [diff] [blame] | 581 | size_t len; |
| 582 | data.Release(&msg->data, &len); |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 583 | msg->len = len; |
| 584 | msg->epoch = ssl->d1->w_epoch; |
| 585 | msg->is_ccs = is_ccs; |
| 586 | |
| 587 | ssl->d1->outgoing_messages_len++; |
David Benjamin | 97250f4 | 2017-10-07 04:12:35 -0400 | [diff] [blame] | 588 | return true; |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 589 | } |
| 590 | |
David Benjamin | 97250f4 | 2017-10-07 04:12:35 -0400 | [diff] [blame] | 591 | bool dtls1_add_message(SSL *ssl, Array<uint8_t> data) { |
David Benjamin | 049fdfc | 2017-10-17 01:12:53 -0400 | [diff] [blame] | 592 | return add_outgoing(ssl, false /* handshake */, std::move(data)); |
David Benjamin | 7583643 | 2016-06-17 18:48:29 -0400 | [diff] [blame] | 593 | } |
| 594 | |
David Benjamin | 97250f4 | 2017-10-07 04:12:35 -0400 | [diff] [blame] | 595 | bool dtls1_add_change_cipher_spec(SSL *ssl) { |
David Benjamin | 049fdfc | 2017-10-17 01:12:53 -0400 | [diff] [blame] | 596 | return add_outgoing(ssl, true /* ChangeCipherSpec */, Array<uint8_t>()); |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 597 | } |
| 598 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 599 | // dtls1_update_mtu updates the current MTU from the BIO, ensuring it is above |
| 600 | // the minimum. |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 601 | static void dtls1_update_mtu(SSL *ssl) { |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 602 | // TODO(davidben): No consumer implements |BIO_CTRL_DGRAM_SET_MTU| and the |
| 603 | // only |BIO_CTRL_DGRAM_QUERY_MTU| implementation could use |
| 604 | // |SSL_set_mtu|. Does this need to be so complex? |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 605 | if (ssl->d1->mtu < dtls1_min_mtu() && |
| 606 | !(SSL_get_options(ssl) & SSL_OP_NO_QUERY_MTU)) { |
David Benjamin | 50596f8 | 2018-07-02 19:47:27 -0400 | [diff] [blame] | 607 | long mtu = BIO_ctrl(ssl->wbio.get(), BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL); |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 608 | if (mtu >= 0 && mtu <= (1 << 30) && (unsigned)mtu >= dtls1_min_mtu()) { |
| 609 | ssl->d1->mtu = (unsigned)mtu; |
| 610 | } else { |
| 611 | ssl->d1->mtu = kDefaultMTU; |
David Benjamin | 50596f8 | 2018-07-02 19:47:27 -0400 | [diff] [blame] | 612 | BIO_ctrl(ssl->wbio.get(), BIO_CTRL_DGRAM_SET_MTU, ssl->d1->mtu, NULL); |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 613 | } |
| 614 | } |
| 615 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 616 | // The MTU should be above the minimum now. |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 617 | assert(ssl->d1->mtu >= dtls1_min_mtu()); |
| 618 | } |
| 619 | |
| 620 | enum seal_result_t { |
| 621 | seal_error, |
| 622 | seal_no_progress, |
| 623 | seal_partial, |
| 624 | seal_success, |
| 625 | }; |
| 626 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 627 | // seal_next_message seals |msg|, which must be the next message, to |out|. If |
| 628 | // progress was made, it returns |seal_partial| or |seal_success| and sets |
| 629 | // |*out_len| to the number of bytes written. |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 630 | static enum seal_result_t seal_next_message(SSL *ssl, uint8_t *out, |
| 631 | size_t *out_len, size_t max_out, |
| 632 | const DTLS_OUTGOING_MESSAGE *msg) { |
| 633 | assert(ssl->d1->outgoing_written < ssl->d1->outgoing_messages_len); |
| 634 | assert(msg == &ssl->d1->outgoing_messages[ssl->d1->outgoing_written]); |
| 635 | |
David Benjamin | 3e3090d | 2015-04-05 12:48:30 -0400 | [diff] [blame] | 636 | enum dtls1_use_epoch_t use_epoch = dtls1_use_current_epoch; |
David Benjamin | cfc11c2 | 2017-07-18 22:45:18 -0400 | [diff] [blame] | 637 | if (ssl->d1->w_epoch >= 1 && msg->epoch == ssl->d1->w_epoch - 1) { |
David Benjamin | 3e3090d | 2015-04-05 12:48:30 -0400 | [diff] [blame] | 638 | use_epoch = dtls1_use_previous_epoch; |
David Benjamin | cfc11c2 | 2017-07-18 22:45:18 -0400 | [diff] [blame] | 639 | } else if (msg->epoch != ssl->d1->w_epoch) { |
| 640 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
| 641 | return seal_error; |
Adam Langley | 71d8a08 | 2014-12-13 16:28:18 -0800 | [diff] [blame] | 642 | } |
David Benjamin | cfc11c2 | 2017-07-18 22:45:18 -0400 | [diff] [blame] | 643 | |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 644 | size_t overhead = dtls_max_seal_overhead(ssl, use_epoch); |
| 645 | size_t prefix = dtls_seal_prefix_len(ssl, use_epoch); |
Adam Langley | 71d8a08 | 2014-12-13 16:28:18 -0800 | [diff] [blame] | 646 | |
David Benjamin | 29a83c5 | 2016-06-17 19:12:54 -0400 | [diff] [blame] | 647 | if (msg->is_ccs) { |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 648 | // Check there is room for the ChangeCipherSpec. |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 649 | static const uint8_t kChangeCipherSpec[1] = {SSL3_MT_CCS}; |
| 650 | if (max_out < sizeof(kChangeCipherSpec) + overhead) { |
| 651 | return seal_no_progress; |
| 652 | } |
| 653 | |
| 654 | if (!dtls_seal_record(ssl, out, out_len, max_out, |
| 655 | SSL3_RT_CHANGE_CIPHER_SPEC, kChangeCipherSpec, |
| 656 | sizeof(kChangeCipherSpec), use_epoch)) { |
| 657 | return seal_error; |
| 658 | } |
| 659 | |
| 660 | ssl_do_msg_callback(ssl, 1 /* write */, SSL3_RT_CHANGE_CIPHER_SPEC, |
David Benjamin | c64d123 | 2017-10-04 18:14:28 -0400 | [diff] [blame] | 661 | kChangeCipherSpec); |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 662 | return seal_success; |
David Benjamin | a97b737 | 2015-11-03 14:54:39 -0500 | [diff] [blame] | 663 | } |
| 664 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 665 | // DTLS messages are serialized as a single fragment in |msg|. |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 666 | CBS cbs, body; |
| 667 | struct hm_header_st hdr; |
| 668 | CBS_init(&cbs, msg->data, msg->len); |
| 669 | if (!dtls1_parse_fragment(&cbs, &hdr, &body) || |
| 670 | hdr.frag_off != 0 || |
| 671 | hdr.frag_len != CBS_len(&body) || |
| 672 | hdr.msg_len != CBS_len(&body) || |
| 673 | !CBS_skip(&body, ssl->d1->outgoing_offset) || |
| 674 | CBS_len(&cbs) != 0) { |
| 675 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
| 676 | return seal_error; |
| 677 | } |
| 678 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 679 | // Determine how much progress can be made. |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 680 | if (max_out < DTLS1_HM_HEADER_LENGTH + 1 + overhead || max_out < prefix) { |
| 681 | return seal_no_progress; |
| 682 | } |
| 683 | size_t todo = CBS_len(&body); |
| 684 | if (todo > max_out - DTLS1_HM_HEADER_LENGTH - overhead) { |
| 685 | todo = max_out - DTLS1_HM_HEADER_LENGTH - overhead; |
| 686 | } |
| 687 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 688 | // Assemble a fragment, to be sealed in-place. |
David Benjamin | 1386aad | 2017-07-19 23:57:40 -0400 | [diff] [blame] | 689 | ScopedCBB cbb; |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 690 | uint8_t *frag = out + prefix; |
| 691 | size_t max_frag = max_out - prefix, frag_len; |
David Benjamin | 1386aad | 2017-07-19 23:57:40 -0400 | [diff] [blame] | 692 | if (!CBB_init_fixed(cbb.get(), frag, max_frag) || |
| 693 | !CBB_add_u8(cbb.get(), hdr.type) || |
| 694 | !CBB_add_u24(cbb.get(), hdr.msg_len) || |
| 695 | !CBB_add_u16(cbb.get(), hdr.seq) || |
| 696 | !CBB_add_u24(cbb.get(), ssl->d1->outgoing_offset) || |
| 697 | !CBB_add_u24(cbb.get(), todo) || |
| 698 | !CBB_add_bytes(cbb.get(), CBS_data(&body), todo) || |
| 699 | !CBB_finish(cbb.get(), NULL, &frag_len)) { |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 700 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
| 701 | return seal_error; |
| 702 | } |
| 703 | |
David Benjamin | c64d123 | 2017-10-04 18:14:28 -0400 | [diff] [blame] | 704 | ssl_do_msg_callback(ssl, 1 /* write */, SSL3_RT_HANDSHAKE, |
| 705 | MakeSpan(frag, frag_len)); |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 706 | |
| 707 | if (!dtls_seal_record(ssl, out, out_len, max_out, SSL3_RT_HANDSHAKE, |
| 708 | out + prefix, frag_len, use_epoch)) { |
| 709 | return seal_error; |
| 710 | } |
| 711 | |
| 712 | if (todo == CBS_len(&body)) { |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 713 | // The next message is complete. |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 714 | ssl->d1->outgoing_offset = 0; |
| 715 | return seal_success; |
| 716 | } |
| 717 | |
| 718 | ssl->d1->outgoing_offset += todo; |
| 719 | return seal_partial; |
Adam Langley | 71d8a08 | 2014-12-13 16:28:18 -0800 | [diff] [blame] | 720 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 721 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 722 | // seal_next_packet writes as much of the next flight as possible to |out| and |
| 723 | // advances |ssl->d1->outgoing_written| and |ssl->d1->outgoing_offset| as |
| 724 | // appropriate. |
David Benjamin | 97250f4 | 2017-10-07 04:12:35 -0400 | [diff] [blame] | 725 | static bool seal_next_packet(SSL *ssl, uint8_t *out, size_t *out_len, |
| 726 | size_t max_out) { |
| 727 | bool made_progress = false; |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 728 | size_t total = 0; |
| 729 | assert(ssl->d1->outgoing_written < ssl->d1->outgoing_messages_len); |
| 730 | for (; ssl->d1->outgoing_written < ssl->d1->outgoing_messages_len; |
| 731 | ssl->d1->outgoing_written++) { |
| 732 | const DTLS_OUTGOING_MESSAGE *msg = |
| 733 | &ssl->d1->outgoing_messages[ssl->d1->outgoing_written]; |
| 734 | size_t len; |
| 735 | enum seal_result_t ret = seal_next_message(ssl, out, &len, max_out, msg); |
| 736 | switch (ret) { |
| 737 | case seal_error: |
David Benjamin | 97250f4 | 2017-10-07 04:12:35 -0400 | [diff] [blame] | 738 | return false; |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 739 | |
| 740 | case seal_no_progress: |
| 741 | goto packet_full; |
| 742 | |
| 743 | case seal_partial: |
| 744 | case seal_success: |
| 745 | out += len; |
| 746 | max_out -= len; |
| 747 | total += len; |
David Benjamin | 97250f4 | 2017-10-07 04:12:35 -0400 | [diff] [blame] | 748 | made_progress = true; |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 749 | |
| 750 | if (ret == seal_partial) { |
| 751 | goto packet_full; |
| 752 | } |
| 753 | break; |
| 754 | } |
David Benjamin | 30152fd | 2016-05-05 20:45:48 -0400 | [diff] [blame] | 755 | } |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 756 | |
| 757 | packet_full: |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 758 | // The MTU was too small to make any progress. |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 759 | if (!made_progress) { |
| 760 | OPENSSL_PUT_ERROR(SSL, SSL_R_MTU_TOO_SMALL); |
David Benjamin | 97250f4 | 2017-10-07 04:12:35 -0400 | [diff] [blame] | 761 | return false; |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 762 | } |
| 763 | |
| 764 | *out_len = total; |
David Benjamin | 97250f4 | 2017-10-07 04:12:35 -0400 | [diff] [blame] | 765 | return true; |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 766 | } |
| 767 | |
David Benjamin | 9bbdf58 | 2017-08-02 19:46:29 -0400 | [diff] [blame] | 768 | static int send_flight(SSL *ssl) { |
David Benjamin | e8d0746 | 2017-10-12 18:09:20 -0400 | [diff] [blame] | 769 | if (ssl->s3->write_shutdown != ssl_shutdown_none) { |
| 770 | OPENSSL_PUT_ERROR(SSL, SSL_R_PROTOCOL_IS_SHUTDOWN); |
| 771 | return -1; |
| 772 | } |
| 773 | |
David Benjamin | 084064b | 2021-03-29 18:04:19 -0400 | [diff] [blame] | 774 | if (ssl->wbio == nullptr) { |
| 775 | OPENSSL_PUT_ERROR(SSL, SSL_R_BIO_NOT_SET); |
| 776 | return -1; |
| 777 | } |
| 778 | |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 779 | dtls1_update_mtu(ssl); |
Adam Langley | bcc4e23 | 2015-02-19 15:51:58 -0800 | [diff] [blame] | 780 | |
David Benjamin | b86dcfe | 2021-07-12 17:15:01 -0400 | [diff] [blame^] | 781 | Array<uint8_t> packet; |
| 782 | if (!packet.Init(ssl->d1->mtu)) { |
| 783 | return -1; |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 784 | } |
| 785 | |
| 786 | while (ssl->d1->outgoing_written < ssl->d1->outgoing_messages_len) { |
| 787 | uint8_t old_written = ssl->d1->outgoing_written; |
| 788 | uint32_t old_offset = ssl->d1->outgoing_offset; |
| 789 | |
| 790 | size_t packet_len; |
David Benjamin | b86dcfe | 2021-07-12 17:15:01 -0400 | [diff] [blame^] | 791 | if (!seal_next_packet(ssl, packet.data(), &packet_len, packet.size())) { |
| 792 | return -1; |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 793 | } |
| 794 | |
David Benjamin | b86dcfe | 2021-07-12 17:15:01 -0400 | [diff] [blame^] | 795 | int bio_ret = BIO_write(ssl->wbio.get(), packet.data(), packet_len); |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 796 | if (bio_ret <= 0) { |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 797 | // Retry this packet the next time around. |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 798 | ssl->d1->outgoing_written = old_written; |
| 799 | ssl->d1->outgoing_offset = old_offset; |
David Benjamin | f492830 | 2019-08-21 16:04:53 -0400 | [diff] [blame] | 800 | ssl->s3->rwstate = SSL_ERROR_WANT_WRITE; |
David Benjamin | b86dcfe | 2021-07-12 17:15:01 -0400 | [diff] [blame^] | 801 | return bio_ret; |
Adam Langley | bcc4e23 | 2015-02-19 15:51:58 -0800 | [diff] [blame] | 802 | } |
| 803 | } |
| 804 | |
David Benjamin | 50596f8 | 2018-07-02 19:47:27 -0400 | [diff] [blame] | 805 | if (BIO_flush(ssl->wbio.get()) <= 0) { |
David Benjamin | f492830 | 2019-08-21 16:04:53 -0400 | [diff] [blame] | 806 | ssl->s3->rwstate = SSL_ERROR_WANT_WRITE; |
David Benjamin | b86dcfe | 2021-07-12 17:15:01 -0400 | [diff] [blame^] | 807 | return -1; |
David Benjamin | 2730955 | 2016-05-05 21:17:53 -0400 | [diff] [blame] | 808 | } |
David Benjamin | 30152fd | 2016-05-05 20:45:48 -0400 | [diff] [blame] | 809 | |
David Benjamin | b86dcfe | 2021-07-12 17:15:01 -0400 | [diff] [blame^] | 810 | return 1; |
Adam Langley | bcc4e23 | 2015-02-19 15:51:58 -0800 | [diff] [blame] | 811 | } |
| 812 | |
David Benjamin | 9bbdf58 | 2017-08-02 19:46:29 -0400 | [diff] [blame] | 813 | int dtls1_flush_flight(SSL *ssl) { |
| 814 | ssl->d1->outgoing_messages_complete = true; |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 815 | // Start the retransmission timer for the next flight (if any). |
David Benjamin | 9bbdf58 | 2017-08-02 19:46:29 -0400 | [diff] [blame] | 816 | dtls1_start_timer(ssl); |
| 817 | return send_flight(ssl); |
| 818 | } |
| 819 | |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 820 | int dtls1_retransmit_outgoing_messages(SSL *ssl) { |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 821 | // Rewind to the start of the flight and write it again. |
| 822 | // |
| 823 | // TODO(davidben): This does not allow retransmits to be resumed on |
| 824 | // non-blocking write. |
David Benjamin | 1a999cf | 2017-01-03 10:30:35 -0500 | [diff] [blame] | 825 | ssl->d1->outgoing_written = 0; |
| 826 | ssl->d1->outgoing_offset = 0; |
| 827 | |
David Benjamin | 9bbdf58 | 2017-08-02 19:46:29 -0400 | [diff] [blame] | 828 | return send_flight(ssl); |
David Benjamin | a97b737 | 2015-11-03 14:54:39 -0500 | [diff] [blame] | 829 | } |
| 830 | |
Adam Langley | 71d8a08 | 2014-12-13 16:28:18 -0800 | [diff] [blame] | 831 | unsigned int dtls1_min_mtu(void) { |
David Benjamin | a18b671 | 2015-01-11 19:31:22 -0500 | [diff] [blame] | 832 | return kMinMTU; |
Adam Langley | 71d8a08 | 2014-12-13 16:28:18 -0800 | [diff] [blame] | 833 | } |
David Benjamin | 86e95b8 | 2017-07-18 16:34:25 -0400 | [diff] [blame] | 834 | |
Joshua Liebow-Feeser | 8c7c635 | 2018-08-26 18:53:36 -0700 | [diff] [blame] | 835 | BSSL_NAMESPACE_END |