Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1 | /* |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 2 | * DTLS implementation written by Nagendra Modadugu |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 4 | */ |
| 5 | /* ==================================================================== |
| 6 | * Copyright (c) 1999-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 |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 13 | * notice, this list of conditions and the following disclaimer. |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 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 | |
| 59 | #include <stdio.h> |
Dr. Stephen Henson | 9289f21 | 2009-05-16 11:15:42 +0000 | [diff] [blame] | 60 | #define USE_SOCKETS |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 61 | #include <openssl/objects.h> |
Matt Caswell | 8ba708e | 2015-09-11 10:48:59 +0100 | [diff] [blame] | 62 | #include <openssl/rand.h> |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 63 | #include "ssl_locl.h" |
| 64 | |
Andy Polyakov | a006fef | 2013-01-19 21:23:13 +0100 | [diff] [blame] | 65 | #if defined(OPENSSL_SYS_VMS) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 66 | # include <sys/timeb.h> |
Matt Caswell | fb45690 | 2015-04-30 09:40:55 +0100 | [diff] [blame] | 67 | #elif defined(OPENSSL_SYS_VXWORKS) |
| 68 | # include <sys/times.h> |
| 69 | #elif !defined(OPENSSL_SYS_WIN32) |
| 70 | # include <sys/time.h> |
Dr. Stephen Henson | eb38b26 | 2009-05-15 22:58:40 +0000 | [diff] [blame] | 71 | #endif |
| 72 | |
| 73 | static void get_current_time(struct timeval *t); |
Matt Caswell | 77d514c | 2015-03-09 15:33:46 +0000 | [diff] [blame] | 74 | static int dtls1_set_handshake_header(SSL *s, int type, unsigned long len); |
Dr. Stephen Henson | 173e72e | 2013-03-11 15:34:28 +0000 | [diff] [blame] | 75 | static int dtls1_handshake_write(SSL *s); |
Matt Caswell | 3616bb6 | 2015-10-26 11:13:56 +0000 | [diff] [blame] | 76 | static unsigned int dtls1_link_min_mtu(void); |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 77 | |
Matt Caswell | 8ba708e | 2015-09-11 10:48:59 +0100 | [diff] [blame] | 78 | /* XDTLS: figure out the right values */ |
| 79 | static const unsigned int g_probable_mtu[] = { 1500, 512, 256 }; |
| 80 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 81 | const SSL3_ENC_METHOD DTLSv1_enc_data = { |
| 82 | tls1_enc, |
| 83 | tls1_mac, |
| 84 | tls1_setup_key_block, |
| 85 | tls1_generate_master_secret, |
| 86 | tls1_change_cipher_state, |
| 87 | tls1_final_finish_mac, |
| 88 | TLS1_FINISH_MAC_LENGTH, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 89 | TLS_MD_CLIENT_FINISH_CONST, TLS_MD_CLIENT_FINISH_CONST_SIZE, |
| 90 | TLS_MD_SERVER_FINISH_CONST, TLS_MD_SERVER_FINISH_CONST_SIZE, |
| 91 | tls1_alert_code, |
| 92 | tls1_export_keying_material, |
| 93 | SSL_ENC_FLAG_DTLS | SSL_ENC_FLAG_EXPLICIT_IV, |
| 94 | DTLS1_HM_HEADER_LENGTH, |
| 95 | dtls1_set_handshake_header, |
| 96 | dtls1_handshake_write |
| 97 | }; |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 98 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 99 | const SSL3_ENC_METHOD DTLSv1_2_enc_data = { |
| 100 | tls1_enc, |
| 101 | tls1_mac, |
| 102 | tls1_setup_key_block, |
| 103 | tls1_generate_master_secret, |
| 104 | tls1_change_cipher_state, |
| 105 | tls1_final_finish_mac, |
| 106 | TLS1_FINISH_MAC_LENGTH, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 107 | TLS_MD_CLIENT_FINISH_CONST, TLS_MD_CLIENT_FINISH_CONST_SIZE, |
| 108 | TLS_MD_SERVER_FINISH_CONST, TLS_MD_SERVER_FINISH_CONST_SIZE, |
| 109 | tls1_alert_code, |
| 110 | tls1_export_keying_material, |
| 111 | SSL_ENC_FLAG_DTLS | SSL_ENC_FLAG_EXPLICIT_IV | SSL_ENC_FLAG_SIGALGS |
| 112 | | SSL_ENC_FLAG_SHA256_PRF | SSL_ENC_FLAG_TLS1_2_CIPHERS, |
| 113 | DTLS1_HM_HEADER_LENGTH, |
| 114 | dtls1_set_handshake_header, |
| 115 | dtls1_handshake_write |
| 116 | }; |
Dr. Stephen Henson | c3b344e | 2013-03-20 15:49:14 +0000 | [diff] [blame] | 117 | |
Dr. Stephen Henson | f3b656b | 2005-08-05 23:56:11 +0000 | [diff] [blame] | 118 | long dtls1_default_timeout(void) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 119 | { |
| 120 | /* |
| 121 | * 2 hours, the 24 hours mentioned in the DTLSv1 spec is way too long for |
| 122 | * http, the cache would over fill |
| 123 | */ |
| 124 | return (60 * 60 * 2); |
| 125 | } |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 126 | |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 127 | int dtls1_new(SSL *s) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 128 | { |
| 129 | DTLS1_STATE *d1; |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 130 | |
Viktor Dukhovni | 61986d3 | 2015-04-16 01:50:03 -0400 | [diff] [blame] | 131 | if (!DTLS_RECORD_LAYER_new(&s->rlayer)) { |
Matt Caswell | 5fb6f80 | 2015-02-03 16:11:49 +0000 | [diff] [blame] | 132 | return 0; |
| 133 | } |
| 134 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 135 | if (!ssl3_new(s)) |
| 136 | return (0); |
Rich Salz | b51bce9 | 2015-08-25 13:25:58 -0400 | [diff] [blame] | 137 | if ((d1 = OPENSSL_zalloc(sizeof(*d1))) == NULL) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 138 | ssl3_free(s); |
| 139 | return (0); |
| 140 | } |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 141 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 142 | d1->buffered_messages = pqueue_new(); |
| 143 | d1->sent_messages = pqueue_new(); |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 144 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 145 | if (s->server) { |
| 146 | d1->cookie_len = sizeof(s->d1->cookie); |
| 147 | } |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 148 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 149 | d1->link_mtu = 0; |
| 150 | d1->mtu = 0; |
Matt Caswell | 59669b6 | 2014-12-01 23:58:05 +0000 | [diff] [blame] | 151 | |
Matt Caswell | a71edf3 | 2015-10-30 10:05:53 +0000 | [diff] [blame] | 152 | if (d1->buffered_messages == NULL || d1->sent_messages == NULL) { |
Rich Salz | 25aaa98 | 2015-05-01 14:37:16 -0400 | [diff] [blame] | 153 | pqueue_free(d1->buffered_messages); |
| 154 | pqueue_free(d1->sent_messages); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 155 | OPENSSL_free(d1); |
| 156 | ssl3_free(s); |
| 157 | return (0); |
| 158 | } |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 159 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 160 | s->d1 = d1; |
| 161 | s->method->ssl_clear(s); |
| 162 | return (1); |
| 163 | } |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 164 | |
Dr. Stephen Henson | 7832d6a | 2011-05-25 12:28:06 +0000 | [diff] [blame] | 165 | static void dtls1_clear_queues(SSL *s) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 166 | { |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 167 | pitem *item = NULL; |
| 168 | hm_fragment *frag = NULL; |
Dr. Stephen Henson | 006b54a | 2011-05-25 14:30:20 +0000 | [diff] [blame] | 169 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 170 | while ((item = pqueue_pop(s->d1->buffered_messages)) != NULL) { |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 171 | frag = (hm_fragment *)item->data; |
Matt Caswell | 8a35dbb | 2014-11-25 13:36:00 +0000 | [diff] [blame] | 172 | dtls1_hm_fragment_free(frag); |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 173 | pitem_free(item); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 174 | } |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 175 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 176 | while ((item = pqueue_pop(s->d1->sent_messages)) != NULL) { |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 177 | frag = (hm_fragment *)item->data; |
Matt Caswell | 8a35dbb | 2014-11-25 13:36:00 +0000 | [diff] [blame] | 178 | dtls1_hm_fragment_free(frag); |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 179 | pitem_free(item); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 180 | } |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 181 | } |
Dr. Stephen Henson | 7832d6a | 2011-05-25 12:28:06 +0000 | [diff] [blame] | 182 | |
| 183 | void dtls1_free(SSL *s) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 184 | { |
Matt Caswell | 40f3718 | 2015-02-03 14:54:13 +0000 | [diff] [blame] | 185 | DTLS_RECORD_LAYER_free(&s->rlayer); |
| 186 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 187 | ssl3_free(s); |
Dr. Stephen Henson | 7832d6a | 2011-05-25 12:28:06 +0000 | [diff] [blame] | 188 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 189 | dtls1_clear_queues(s); |
Dr. Stephen Henson | 7832d6a | 2011-05-25 12:28:06 +0000 | [diff] [blame] | 190 | |
Dr. Stephen Henson | 7832d6a | 2011-05-25 12:28:06 +0000 | [diff] [blame] | 191 | pqueue_free(s->d1->buffered_messages); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 192 | pqueue_free(s->d1->sent_messages); |
Dr. Stephen Henson | e5fa864 | 2009-04-15 15:27:03 +0000 | [diff] [blame] | 193 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 194 | OPENSSL_free(s->d1); |
| 195 | s->d1 = NULL; |
| 196 | } |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 197 | |
| 198 | void dtls1_clear(SSL *s) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 199 | { |
Rich Salz | cf2cede | 2016-01-22 14:54:01 -0500 | [diff] [blame] | 200 | pqueue *buffered_messages; |
| 201 | pqueue *sent_messages; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 202 | unsigned int mtu; |
| 203 | unsigned int link_mtu; |
Dr. Stephen Henson | 1d7392f | 2011-09-23 13:34:48 +0000 | [diff] [blame] | 204 | |
Matt Caswell | 40f3718 | 2015-02-03 14:54:13 +0000 | [diff] [blame] | 205 | DTLS_RECORD_LAYER_clear(&s->rlayer); |
| 206 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 207 | if (s->d1) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 208 | buffered_messages = s->d1->buffered_messages; |
| 209 | sent_messages = s->d1->sent_messages; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 210 | mtu = s->d1->mtu; |
| 211 | link_mtu = s->d1->link_mtu; |
Dr. Stephen Henson | 7832d6a | 2011-05-25 12:28:06 +0000 | [diff] [blame] | 212 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 213 | dtls1_clear_queues(s); |
Dr. Stephen Henson | 7832d6a | 2011-05-25 12:28:06 +0000 | [diff] [blame] | 214 | |
Rich Salz | 16f8d4e | 2015-05-04 18:00:15 -0400 | [diff] [blame] | 215 | memset(s->d1, 0, sizeof(*s->d1)); |
Dr. Stephen Henson | 7832d6a | 2011-05-25 12:28:06 +0000 | [diff] [blame] | 216 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 217 | if (s->server) { |
| 218 | s->d1->cookie_len = sizeof(s->d1->cookie); |
| 219 | } |
Dr. Stephen Henson | 7832d6a | 2011-05-25 12:28:06 +0000 | [diff] [blame] | 220 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 221 | if (SSL_get_options(s) & SSL_OP_NO_QUERY_MTU) { |
| 222 | s->d1->mtu = mtu; |
| 223 | s->d1->link_mtu = link_mtu; |
| 224 | } |
Dr. Stephen Henson | 1d7392f | 2011-09-23 13:34:48 +0000 | [diff] [blame] | 225 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 226 | s->d1->buffered_messages = buffered_messages; |
| 227 | s->d1->sent_messages = sent_messages; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 228 | } |
Dr. Stephen Henson | 7832d6a | 2011-05-25 12:28:06 +0000 | [diff] [blame] | 229 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 230 | ssl3_clear(s); |
| 231 | if (s->options & SSL_OP_CISCO_ANYCONNECT) |
David Woodhouse | f7683aa | 2015-03-02 16:20:15 +0000 | [diff] [blame] | 232 | s->client_version = s->version = DTLS1_BAD_VER; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 233 | else if (s->method->version == DTLS_ANY_VERSION) |
Viktor Dukhovni | 4fa5214 | 2015-12-29 03:24:17 -0500 | [diff] [blame] | 234 | s->version = DTLS_MAX_VERSION; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 235 | else |
| 236 | s->version = s->method->version; |
| 237 | } |
Andy Polyakov | 5d58f1b | 2007-10-05 21:04:56 +0000 | [diff] [blame] | 238 | |
Dr. Stephen Henson | b972fba | 2009-08-12 13:19:54 +0000 | [diff] [blame] | 239 | long dtls1_ctrl(SSL *s, int cmd, long larg, void *parg) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 240 | { |
| 241 | int ret = 0; |
Dr. Stephen Henson | b972fba | 2009-08-12 13:19:54 +0000 | [diff] [blame] | 242 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 243 | switch (cmd) { |
| 244 | case DTLS_CTRL_GET_TIMEOUT: |
| 245 | if (dtls1_get_timeout(s, (struct timeval *)parg) != NULL) { |
| 246 | ret = 1; |
| 247 | } |
| 248 | break; |
| 249 | case DTLS_CTRL_HANDLE_TIMEOUT: |
| 250 | ret = dtls1_handle_timeout(s); |
| 251 | break; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 252 | case DTLS_CTRL_SET_LINK_MTU: |
| 253 | if (larg < (long)dtls1_link_min_mtu()) |
| 254 | return 0; |
| 255 | s->d1->link_mtu = larg; |
| 256 | return 1; |
| 257 | case DTLS_CTRL_GET_LINK_MIN_MTU: |
| 258 | return (long)dtls1_link_min_mtu(); |
| 259 | case SSL_CTRL_SET_MTU: |
| 260 | /* |
| 261 | * We may not have a BIO set yet so can't call dtls1_min_mtu() |
| 262 | * We'll have to make do with dtls1_link_min_mtu() and max overhead |
| 263 | */ |
| 264 | if (larg < (long)dtls1_link_min_mtu() - DTLS1_MAX_MTU_OVERHEAD) |
| 265 | return 0; |
| 266 | s->d1->mtu = larg; |
| 267 | return larg; |
| 268 | default: |
| 269 | ret = ssl3_ctrl(s, cmd, larg, parg); |
| 270 | break; |
| 271 | } |
| 272 | return (ret); |
| 273 | } |
Dr. Stephen Henson | b972fba | 2009-08-12 13:19:54 +0000 | [diff] [blame] | 274 | |
Dr. Stephen Henson | eb38b26 | 2009-05-15 22:58:40 +0000 | [diff] [blame] | 275 | void dtls1_start_timer(SSL *s) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 276 | { |
Dr. Stephen Henson | 7e159e0 | 2011-12-25 14:45:15 +0000 | [diff] [blame] | 277 | #ifndef OPENSSL_NO_SCTP |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 278 | /* Disable timer for SCTP */ |
| 279 | if (BIO_dgram_is_sctp(SSL_get_wbio(s))) { |
Rich Salz | 16f8d4e | 2015-05-04 18:00:15 -0400 | [diff] [blame] | 280 | memset(&s->d1->next_timeout, 0, sizeof(s->d1->next_timeout)); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 281 | return; |
| 282 | } |
Dr. Stephen Henson | 7e159e0 | 2011-12-25 14:45:15 +0000 | [diff] [blame] | 283 | #endif |
| 284 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 285 | /* If timer is not set, initialize duration with 1 second */ |
| 286 | if (s->d1->next_timeout.tv_sec == 0 && s->d1->next_timeout.tv_usec == 0) { |
| 287 | s->d1->timeout_duration = 1; |
| 288 | } |
Dr. Stephen Henson | eb38b26 | 2009-05-15 22:58:40 +0000 | [diff] [blame] | 289 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 290 | /* Set timeout to current time */ |
| 291 | get_current_time(&(s->d1->next_timeout)); |
Dr. Stephen Henson | eb38b26 | 2009-05-15 22:58:40 +0000 | [diff] [blame] | 292 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 293 | /* Add duration to current time */ |
| 294 | s->d1->next_timeout.tv_sec += s->d1->timeout_duration; |
| 295 | BIO_ctrl(SSL_get_rbio(s), BIO_CTRL_DGRAM_SET_NEXT_TIMEOUT, 0, |
| 296 | &(s->d1->next_timeout)); |
| 297 | } |
Dr. Stephen Henson | eb38b26 | 2009-05-15 22:58:40 +0000 | [diff] [blame] | 298 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 299 | struct timeval *dtls1_get_timeout(SSL *s, struct timeval *timeleft) |
| 300 | { |
| 301 | struct timeval timenow; |
Dr. Stephen Henson | eb38b26 | 2009-05-15 22:58:40 +0000 | [diff] [blame] | 302 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 303 | /* If no timeout is set, just return NULL */ |
| 304 | if (s->d1->next_timeout.tv_sec == 0 && s->d1->next_timeout.tv_usec == 0) { |
| 305 | return NULL; |
| 306 | } |
Dr. Stephen Henson | eb38b26 | 2009-05-15 22:58:40 +0000 | [diff] [blame] | 307 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 308 | /* Get current time */ |
| 309 | get_current_time(&timenow); |
Dr. Stephen Henson | eb38b26 | 2009-05-15 22:58:40 +0000 | [diff] [blame] | 310 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 311 | /* If timer already expired, set remaining time to 0 */ |
| 312 | if (s->d1->next_timeout.tv_sec < timenow.tv_sec || |
| 313 | (s->d1->next_timeout.tv_sec == timenow.tv_sec && |
| 314 | s->d1->next_timeout.tv_usec <= timenow.tv_usec)) { |
Rich Salz | 16f8d4e | 2015-05-04 18:00:15 -0400 | [diff] [blame] | 315 | memset(timeleft, 0, sizeof(*timeleft)); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 316 | return timeleft; |
| 317 | } |
Dr. Stephen Henson | eb38b26 | 2009-05-15 22:58:40 +0000 | [diff] [blame] | 318 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 319 | /* Calculate time left until timer expires */ |
| 320 | memcpy(timeleft, &(s->d1->next_timeout), sizeof(struct timeval)); |
| 321 | timeleft->tv_sec -= timenow.tv_sec; |
| 322 | timeleft->tv_usec -= timenow.tv_usec; |
| 323 | if (timeleft->tv_usec < 0) { |
| 324 | timeleft->tv_sec--; |
| 325 | timeleft->tv_usec += 1000000; |
| 326 | } |
Dr. Stephen Henson | 87a37cb | 2010-04-06 12:29:31 +0000 | [diff] [blame] | 327 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 328 | /* |
| 329 | * If remaining time is less than 15 ms, set it to 0 to prevent issues |
| 330 | * because of small devergences with socket timeouts. |
| 331 | */ |
| 332 | if (timeleft->tv_sec == 0 && timeleft->tv_usec < 15000) { |
Rich Salz | 16f8d4e | 2015-05-04 18:00:15 -0400 | [diff] [blame] | 333 | memset(timeleft, 0, sizeof(*timeleft)); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 334 | } |
| 335 | |
| 336 | return timeleft; |
| 337 | } |
Dr. Stephen Henson | eb38b26 | 2009-05-15 22:58:40 +0000 | [diff] [blame] | 338 | |
| 339 | int dtls1_is_timer_expired(SSL *s) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 340 | { |
| 341 | struct timeval timeleft; |
Dr. Stephen Henson | eb38b26 | 2009-05-15 22:58:40 +0000 | [diff] [blame] | 342 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 343 | /* Get time left until timeout, return false if no timer running */ |
| 344 | if (dtls1_get_timeout(s, &timeleft) == NULL) { |
| 345 | return 0; |
| 346 | } |
Dr. Stephen Henson | eb38b26 | 2009-05-15 22:58:40 +0000 | [diff] [blame] | 347 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 348 | /* Return false if timer is not expired yet */ |
| 349 | if (timeleft.tv_sec > 0 || timeleft.tv_usec > 0) { |
| 350 | return 0; |
| 351 | } |
Dr. Stephen Henson | eb38b26 | 2009-05-15 22:58:40 +0000 | [diff] [blame] | 352 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 353 | /* Timer expired, so return true */ |
| 354 | return 1; |
| 355 | } |
Dr. Stephen Henson | eb38b26 | 2009-05-15 22:58:40 +0000 | [diff] [blame] | 356 | |
| 357 | void dtls1_double_timeout(SSL *s) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 358 | { |
| 359 | s->d1->timeout_duration *= 2; |
| 360 | if (s->d1->timeout_duration > 60) |
| 361 | s->d1->timeout_duration = 60; |
| 362 | dtls1_start_timer(s); |
| 363 | } |
Dr. Stephen Henson | eb38b26 | 2009-05-15 22:58:40 +0000 | [diff] [blame] | 364 | |
| 365 | void dtls1_stop_timer(SSL *s) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 366 | { |
| 367 | /* Reset everything */ |
Rich Salz | 16f8d4e | 2015-05-04 18:00:15 -0400 | [diff] [blame] | 368 | memset(&s->d1->timeout, 0, sizeof(s->d1->timeout)); |
| 369 | memset(&s->d1->next_timeout, 0, sizeof(s->d1->next_timeout)); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 370 | s->d1->timeout_duration = 1; |
| 371 | BIO_ctrl(SSL_get_rbio(s), BIO_CTRL_DGRAM_SET_NEXT_TIMEOUT, 0, |
| 372 | &(s->d1->next_timeout)); |
| 373 | /* Clear retransmission buffer */ |
| 374 | dtls1_clear_record_buffer(s); |
| 375 | } |
Dr. Stephen Henson | eb38b26 | 2009-05-15 22:58:40 +0000 | [diff] [blame] | 376 | |
Dr. Stephen Henson | ea6e386 | 2012-03-09 15:52:33 +0000 | [diff] [blame] | 377 | int dtls1_check_timeout_num(SSL *s) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 378 | { |
| 379 | unsigned int mtu; |
Matt Caswell | 047f215 | 2014-12-02 11:16:35 +0000 | [diff] [blame] | 380 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 381 | s->d1->timeout.num_alerts++; |
Dr. Stephen Henson | ea6e386 | 2012-03-09 15:52:33 +0000 | [diff] [blame] | 382 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 383 | /* Reduce MTU after 2 unsuccessful retransmissions */ |
| 384 | if (s->d1->timeout.num_alerts > 2 |
| 385 | && !(SSL_get_options(s) & SSL_OP_NO_QUERY_MTU)) { |
| 386 | mtu = |
| 387 | BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_GET_FALLBACK_MTU, 0, |
| 388 | NULL); |
| 389 | if (mtu < s->d1->mtu) |
| 390 | s->d1->mtu = mtu; |
| 391 | } |
Dr. Stephen Henson | ea6e386 | 2012-03-09 15:52:33 +0000 | [diff] [blame] | 392 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 393 | if (s->d1->timeout.num_alerts > DTLS1_TMO_ALERT_COUNT) { |
| 394 | /* fail the connection, enough alerts have been sent */ |
| 395 | SSLerr(SSL_F_DTLS1_CHECK_TIMEOUT_NUM, SSL_R_READ_TIMEOUT_EXPIRED); |
| 396 | return -1; |
| 397 | } |
Dr. Stephen Henson | ea6e386 | 2012-03-09 15:52:33 +0000 | [diff] [blame] | 398 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 399 | return 0; |
| 400 | } |
Dr. Stephen Henson | ea6e386 | 2012-03-09 15:52:33 +0000 | [diff] [blame] | 401 | |
Dr. Stephen Henson | b972fba | 2009-08-12 13:19:54 +0000 | [diff] [blame] | 402 | int dtls1_handle_timeout(SSL *s) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 403 | { |
| 404 | /* if no timer is expired, don't do anything */ |
| 405 | if (!dtls1_is_timer_expired(s)) { |
| 406 | return 0; |
| 407 | } |
Dr. Stephen Henson | b972fba | 2009-08-12 13:19:54 +0000 | [diff] [blame] | 408 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 409 | dtls1_double_timeout(s); |
Dr. Stephen Henson | ea6e386 | 2012-03-09 15:52:33 +0000 | [diff] [blame] | 410 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 411 | if (dtls1_check_timeout_num(s) < 0) |
| 412 | return -1; |
Dr. Stephen Henson | b972fba | 2009-08-12 13:19:54 +0000 | [diff] [blame] | 413 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 414 | s->d1->timeout.read_timeouts++; |
| 415 | if (s->d1->timeout.read_timeouts > DTLS1_TMO_READ_COUNT) { |
| 416 | s->d1->timeout.read_timeouts = 1; |
| 417 | } |
Dr. Stephen Henson | 4817504 | 2011-12-31 22:59:57 +0000 | [diff] [blame] | 418 | #ifndef OPENSSL_NO_HEARTBEATS |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 419 | if (s->tlsext_hb_pending) { |
| 420 | s->tlsext_hb_pending = 0; |
| 421 | return dtls1_heartbeat(s); |
| 422 | } |
Dr. Stephen Henson | 4817504 | 2011-12-31 22:59:57 +0000 | [diff] [blame] | 423 | #endif |
| 424 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 425 | dtls1_start_timer(s); |
| 426 | return dtls1_retransmit_buffered_messages(s); |
| 427 | } |
Dr. Stephen Henson | b972fba | 2009-08-12 13:19:54 +0000 | [diff] [blame] | 428 | |
Dr. Stephen Henson | eb38b26 | 2009-05-15 22:58:40 +0000 | [diff] [blame] | 429 | static void get_current_time(struct timeval *t) |
| 430 | { |
Andy Polyakov | a006fef | 2013-01-19 21:23:13 +0100 | [diff] [blame] | 431 | #if defined(_WIN32) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 432 | SYSTEMTIME st; |
| 433 | union { |
| 434 | unsigned __int64 ul; |
| 435 | FILETIME ft; |
| 436 | } now; |
Andy Polyakov | f469880 | 2012-12-16 19:02:59 +0000 | [diff] [blame] | 437 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 438 | GetSystemTime(&st); |
| 439 | SystemTimeToFileTime(&st, &now.ft); |
| 440 | # ifdef __MINGW32__ |
| 441 | now.ul -= 116444736000000000ULL; |
| 442 | # else |
Matt Caswell | d2a0d72 | 2015-01-22 11:04:47 +0000 | [diff] [blame] | 443 | now.ul -= 116444736000000000UI64; /* re-bias to 1/1/1970 */ |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 444 | # endif |
| 445 | t->tv_sec = (long)(now.ul / 10000000); |
| 446 | t->tv_usec = ((int)(now.ul % 10000000)) / 10; |
Dr. Stephen Henson | eb38b26 | 2009-05-15 22:58:40 +0000 | [diff] [blame] | 447 | #elif defined(OPENSSL_SYS_VMS) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 448 | struct timeb tb; |
| 449 | ftime(&tb); |
| 450 | t->tv_sec = (long)tb.time; |
| 451 | t->tv_usec = (long)tb.millitm * 1000; |
Dr. Stephen Henson | eb38b26 | 2009-05-15 22:58:40 +0000 | [diff] [blame] | 452 | #else |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 453 | gettimeofday(t, NULL); |
Dr. Stephen Henson | eb38b26 | 2009-05-15 22:58:40 +0000 | [diff] [blame] | 454 | #endif |
| 455 | } |
Dr. Stephen Henson | 1fc3ac8 | 2009-09-09 17:05:18 +0000 | [diff] [blame] | 456 | |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 457 | |
| 458 | #define LISTEN_SUCCESS 2 |
| 459 | #define LISTEN_SEND_VERIFY_REQUEST 1 |
| 460 | |
Matt Caswell | f9e5503 | 2016-03-21 15:32:40 +0000 | [diff] [blame] | 461 | #ifndef OPENSSL_NO_SOCK |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 462 | int DTLSv1_listen(SSL *s, BIO_ADDR *client) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 463 | { |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 464 | int next, n, ret = 0, clearpkt = 0; |
| 465 | unsigned char cookie[DTLS1_COOKIE_LENGTH]; |
| 466 | unsigned char seq[SEQ_NUM_SIZE]; |
Emilia Kasper | b698174 | 2016-02-01 15:26:18 +0100 | [diff] [blame] | 467 | const unsigned char *data; |
| 468 | unsigned char *p, *buf; |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 469 | unsigned long reclen, fragoff, fraglen, msglen; |
| 470 | unsigned int rectype, versmajor, msgseq, msgtype, clientvers, cookielen; |
| 471 | BIO *rbio, *wbio; |
| 472 | BUF_MEM *bufm; |
Richard Levitte | d858c87 | 2016-02-03 00:27:44 +0100 | [diff] [blame] | 473 | BIO_ADDR *tmpclient = NULL; |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 474 | PACKET pkt, msgpkt, msgpayload, session, cookiepkt; |
Dr. Stephen Henson | 1fc3ac8 | 2009-09-09 17:05:18 +0000 | [diff] [blame] | 475 | |
Matt Caswell | e83ee04 | 2015-03-09 16:09:04 +0000 | [diff] [blame] | 476 | /* Ensure there is no state left over from a previous invocation */ |
Viktor Dukhovni | 61986d3 | 2015-04-16 01:50:03 -0400 | [diff] [blame] | 477 | if (!SSL_clear(s)) |
Matt Caswell | c7f5b5d | 2015-03-23 15:27:40 +0000 | [diff] [blame] | 478 | return -1; |
Matt Caswell | e83ee04 | 2015-03-09 16:09:04 +0000 | [diff] [blame] | 479 | |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 480 | ERR_clear_error(); |
| 481 | |
| 482 | rbio = SSL_get_rbio(s); |
| 483 | wbio = SSL_get_wbio(s); |
| 484 | |
| 485 | if(!rbio || !wbio) { |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 486 | SSLerr(SSL_F_DTLSV1_LISTEN, SSL_R_BIO_NOT_SET); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 487 | return -1; |
| 488 | } |
| 489 | |
| 490 | /* |
| 491 | * We only peek at incoming ClientHello's until we're sure we are going to |
| 492 | * to respond with a HelloVerifyRequest. If its a ClientHello with a valid |
Viktor Dukhovni | aea145e | 2016-01-09 17:18:02 -0500 | [diff] [blame] | 493 | * cookie then we leave it in the BIO for accept to handle. |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 494 | */ |
| 495 | BIO_ctrl(SSL_get_rbio(s), BIO_CTRL_DGRAM_SET_PEEK_MODE, 1, NULL); |
| 496 | |
| 497 | /* |
| 498 | * Note: This check deliberately excludes DTLS1_BAD_VER because that version |
| 499 | * requires the MAC to be calculated *including* the first ClientHello |
| 500 | * (without the cookie). Since DTLSv1_listen is stateless that cannot be |
| 501 | * supported. DTLS1_BAD_VER must use cookies in a stateful manner (e.g. via |
| 502 | * SSL_accept) |
| 503 | */ |
| 504 | if ((s->version & 0xff00) != (DTLS1_VERSION & 0xff00)) { |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 505 | SSLerr(SSL_F_DTLSV1_LISTEN, SSL_R_UNSUPPORTED_SSL_VERSION); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 506 | return -1; |
| 507 | } |
| 508 | |
| 509 | if (s->init_buf == NULL) { |
| 510 | if ((bufm = BUF_MEM_new()) == NULL) { |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 511 | SSLerr(SSL_F_DTLSV1_LISTEN, ERR_R_MALLOC_FAILURE); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 512 | return -1; |
| 513 | } |
| 514 | |
| 515 | if (!BUF_MEM_grow(bufm, SSL3_RT_MAX_PLAIN_LENGTH)) { |
| 516 | BUF_MEM_free(bufm); |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 517 | SSLerr(SSL_F_DTLSV1_LISTEN, ERR_R_MALLOC_FAILURE); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 518 | return -1; |
| 519 | } |
| 520 | s->init_buf = bufm; |
| 521 | } |
| 522 | buf = (unsigned char *)s->init_buf->data; |
| 523 | |
| 524 | do { |
| 525 | /* Get a packet */ |
| 526 | |
| 527 | clear_sys_error(); |
| 528 | /* |
| 529 | * Technically a ClientHello could be SSL3_RT_MAX_PLAIN_LENGTH |
| 530 | * + DTLS1_RT_HEADER_LENGTH bytes long. Normally init_buf does not store |
| 531 | * the record header as well, but we do here. We've set up init_buf to |
| 532 | * be the standard size for simplicity. In practice we shouldn't ever |
| 533 | * receive a ClientHello as long as this. If we do it will get dropped |
| 534 | * in the record length check below. |
| 535 | */ |
| 536 | n = BIO_read(rbio, buf, SSL3_RT_MAX_PLAIN_LENGTH); |
| 537 | |
| 538 | if (n <= 0) { |
| 539 | if(BIO_should_retry(rbio)) { |
| 540 | /* Non-blocking IO */ |
| 541 | goto end; |
| 542 | } |
| 543 | return -1; |
| 544 | } |
| 545 | |
| 546 | /* If we hit any problems we need to clear this packet from the BIO */ |
| 547 | clearpkt = 1; |
| 548 | |
| 549 | if (!PACKET_buf_init(&pkt, buf, n)) { |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 550 | SSLerr(SSL_F_DTLSV1_LISTEN, ERR_R_INTERNAL_ERROR); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 551 | return -1; |
| 552 | } |
| 553 | |
| 554 | /* |
| 555 | * Parse the received record. If there are any problems with it we just |
| 556 | * dump it - with no alert. RFC6347 says this "Unlike TLS, DTLS is |
| 557 | * resilient in the face of invalid records (e.g., invalid formatting, |
| 558 | * length, MAC, etc.). In general, invalid records SHOULD be silently |
| 559 | * discarded, thus preserving the association; however, an error MAY be |
| 560 | * logged for diagnostic purposes." |
| 561 | */ |
| 562 | |
| 563 | /* this packet contained a partial record, dump it */ |
| 564 | if (n < DTLS1_RT_HEADER_LENGTH) { |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 565 | SSLerr(SSL_F_DTLSV1_LISTEN, SSL_R_RECORD_TOO_SMALL); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 566 | goto end; |
| 567 | } |
| 568 | |
| 569 | if (s->msg_callback) |
| 570 | s->msg_callback(0, 0, SSL3_RT_HEADER, buf, |
| 571 | DTLS1_RT_HEADER_LENGTH, s, s->msg_callback_arg); |
| 572 | |
| 573 | /* Get the record header */ |
| 574 | if (!PACKET_get_1(&pkt, &rectype) |
| 575 | || !PACKET_get_1(&pkt, &versmajor)) { |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 576 | SSLerr(SSL_F_DTLSV1_LISTEN, SSL_R_LENGTH_MISMATCH); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 577 | goto end; |
| 578 | } |
| 579 | |
| 580 | if (rectype != SSL3_RT_HANDSHAKE) { |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 581 | SSLerr(SSL_F_DTLSV1_LISTEN, SSL_R_UNEXPECTED_MESSAGE); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 582 | goto end; |
| 583 | } |
| 584 | |
| 585 | /* |
| 586 | * Check record version number. We only check that the major version is |
| 587 | * the same. |
| 588 | */ |
| 589 | if (versmajor != DTLS1_VERSION_MAJOR) { |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 590 | SSLerr(SSL_F_DTLSV1_LISTEN, SSL_R_BAD_PROTOCOL_VERSION_NUMBER); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 591 | goto end; |
| 592 | } |
| 593 | |
| 594 | if (!PACKET_forward(&pkt, 1) |
| 595 | /* Save the sequence number: 64 bits, with top 2 bytes = epoch */ |
| 596 | || !PACKET_copy_bytes(&pkt, seq, SEQ_NUM_SIZE) |
Matt Caswell | 4b1043e | 2015-11-04 13:53:57 +0000 | [diff] [blame] | 597 | || !PACKET_get_length_prefixed_2(&pkt, &msgpkt)) { |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 598 | SSLerr(SSL_F_DTLSV1_LISTEN, SSL_R_LENGTH_MISMATCH); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 599 | goto end; |
| 600 | } |
Matt Caswell | 4b1043e | 2015-11-04 13:53:57 +0000 | [diff] [blame] | 601 | /* |
| 602 | * We allow data remaining at the end of the packet because there could |
| 603 | * be a second record (but we ignore it) |
| 604 | */ |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 605 | |
| 606 | /* This is an initial ClientHello so the epoch has to be 0 */ |
| 607 | if (seq[0] != 0 || seq[1] != 0) { |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 608 | SSLerr(SSL_F_DTLSV1_LISTEN, SSL_R_UNEXPECTED_MESSAGE); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 609 | goto end; |
| 610 | } |
| 611 | |
| 612 | /* Get a pointer to the raw message for the later callback */ |
| 613 | data = PACKET_data(&msgpkt); |
| 614 | |
| 615 | /* Finished processing the record header, now process the message */ |
| 616 | if (!PACKET_get_1(&msgpkt, &msgtype) |
| 617 | || !PACKET_get_net_3(&msgpkt, &msglen) |
| 618 | || !PACKET_get_net_2(&msgpkt, &msgseq) |
| 619 | || !PACKET_get_net_3(&msgpkt, &fragoff) |
| 620 | || !PACKET_get_net_3(&msgpkt, &fraglen) |
Matt Caswell | 4b1043e | 2015-11-04 13:53:57 +0000 | [diff] [blame] | 621 | || !PACKET_get_sub_packet(&msgpkt, &msgpayload, fraglen) |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 622 | || PACKET_remaining(&msgpkt) != 0) { |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 623 | SSLerr(SSL_F_DTLSV1_LISTEN, SSL_R_LENGTH_MISMATCH); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 624 | goto end; |
| 625 | } |
| 626 | |
| 627 | if (msgtype != SSL3_MT_CLIENT_HELLO) { |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 628 | SSLerr(SSL_F_DTLSV1_LISTEN, SSL_R_UNEXPECTED_MESSAGE); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 629 | goto end; |
| 630 | } |
| 631 | |
| 632 | /* Message sequence number can only be 0 or 1 */ |
| 633 | if(msgseq > 2) { |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 634 | SSLerr(SSL_F_DTLSV1_LISTEN, SSL_R_INVALID_SEQUENCE_NUMBER); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 635 | goto end; |
| 636 | } |
| 637 | |
Matt Caswell | 4b1043e | 2015-11-04 13:53:57 +0000 | [diff] [blame] | 638 | /* |
| 639 | * We don't support fragment reassembly for ClientHellos whilst |
| 640 | * listening because that would require server side state (which is |
| 641 | * against the whole point of the ClientHello/HelloVerifyRequest |
| 642 | * mechanism). Instead we only look at the first ClientHello fragment |
| 643 | * and require that the cookie must be contained within it. |
| 644 | */ |
| 645 | if (fragoff != 0 || fraglen > msglen) { |
| 646 | /* Non initial ClientHello fragment (or bad fragment) */ |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 647 | SSLerr(SSL_F_DTLSV1_LISTEN, SSL_R_FRAGMENTED_CLIENT_HELLO); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 648 | goto end; |
| 649 | } |
| 650 | |
| 651 | if (s->msg_callback) |
| 652 | s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE, data, |
Matt Caswell | 4b1043e | 2015-11-04 13:53:57 +0000 | [diff] [blame] | 653 | fraglen + DTLS1_HM_HEADER_LENGTH, s, |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 654 | s->msg_callback_arg); |
| 655 | |
| 656 | if (!PACKET_get_net_2(&msgpayload, &clientvers)) { |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 657 | SSLerr(SSL_F_DTLSV1_LISTEN, SSL_R_LENGTH_MISMATCH); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 658 | goto end; |
| 659 | } |
| 660 | |
| 661 | /* |
| 662 | * Verify client version is supported |
| 663 | */ |
Viktor Dukhovni | 4fa5214 | 2015-12-29 03:24:17 -0500 | [diff] [blame] | 664 | if (DTLS_VERSION_LT(clientvers, (unsigned int)s->method->version) && |
| 665 | s->method->version != DTLS_ANY_VERSION) { |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 666 | SSLerr(SSL_F_DTLSV1_LISTEN, SSL_R_WRONG_VERSION_NUMBER); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 667 | goto end; |
| 668 | } |
| 669 | |
| 670 | if (!PACKET_forward(&msgpayload, SSL3_RANDOM_SIZE) |
| 671 | || !PACKET_get_length_prefixed_1(&msgpayload, &session) |
| 672 | || !PACKET_get_length_prefixed_1(&msgpayload, &cookiepkt)) { |
Matt Caswell | 4b1043e | 2015-11-04 13:53:57 +0000 | [diff] [blame] | 673 | /* |
| 674 | * Could be malformed or the cookie does not fit within the initial |
| 675 | * ClientHello fragment. Either way we can't handle it. |
| 676 | */ |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 677 | SSLerr(SSL_F_DTLSV1_LISTEN, SSL_R_LENGTH_MISMATCH); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 678 | goto end; |
| 679 | } |
| 680 | |
| 681 | /* |
| 682 | * Check if we have a cookie or not. If not we need to send a |
| 683 | * HelloVerifyRequest. |
| 684 | */ |
| 685 | if (PACKET_remaining(&cookiepkt) == 0) { |
| 686 | next = LISTEN_SEND_VERIFY_REQUEST; |
| 687 | } else { |
| 688 | /* |
| 689 | * We have a cookie, so lets check it. |
| 690 | */ |
| 691 | if (s->ctx->app_verify_cookie_cb == NULL) { |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 692 | SSLerr(SSL_F_DTLSV1_LISTEN, SSL_R_NO_VERIFY_COOKIE_CALLBACK); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 693 | /* This is fatal */ |
| 694 | return -1; |
| 695 | } |
Emilia Kasper | 3101154 | 2015-10-06 17:20:32 +0200 | [diff] [blame] | 696 | if (s->ctx->app_verify_cookie_cb(s, PACKET_data(&cookiepkt), |
| 697 | PACKET_remaining(&cookiepkt)) == |
| 698 | 0) { |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 699 | /* |
| 700 | * We treat invalid cookies in the same was as no cookie as |
| 701 | * per RFC6347 |
| 702 | */ |
| 703 | next = LISTEN_SEND_VERIFY_REQUEST; |
| 704 | } else { |
| 705 | /* Cookie verification succeeded */ |
| 706 | next = LISTEN_SUCCESS; |
| 707 | } |
| 708 | } |
| 709 | |
| 710 | if (next == LISTEN_SEND_VERIFY_REQUEST) { |
| 711 | /* |
| 712 | * There was no cookie in the ClientHello so we need to send a |
| 713 | * HelloVerifyRequest. If this fails we do not worry about trying |
| 714 | * to resend, we just drop it. |
| 715 | */ |
| 716 | |
| 717 | /* |
| 718 | * Dump the read packet, we don't need it any more. Ignore return |
| 719 | * value |
| 720 | */ |
| 721 | BIO_ctrl(SSL_get_rbio(s), BIO_CTRL_DGRAM_SET_PEEK_MODE, 0, NULL); |
| 722 | BIO_read(rbio, buf, SSL3_RT_MAX_PLAIN_LENGTH); |
| 723 | BIO_ctrl(SSL_get_rbio(s), BIO_CTRL_DGRAM_SET_PEEK_MODE, 1, NULL); |
| 724 | |
| 725 | /* Generate the cookie */ |
| 726 | if (s->ctx->app_gen_cookie_cb == NULL || |
Matt Caswell | 373dc6e | 2015-09-23 12:57:34 +0100 | [diff] [blame] | 727 | s->ctx->app_gen_cookie_cb(s, cookie, &cookielen) == 0 || |
| 728 | cookielen > 255) { |
Matt Caswell | 3edeb62 | 2016-02-05 10:59:42 +0000 | [diff] [blame] | 729 | SSLerr(SSL_F_DTLSV1_LISTEN, SSL_R_COOKIE_GEN_CALLBACK_FAILURE); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 730 | /* This is fatal */ |
| 731 | return -1; |
| 732 | } |
| 733 | |
| 734 | p = &buf[DTLS1_RT_HEADER_LENGTH]; |
Matt Caswell | 8ba708e | 2015-09-11 10:48:59 +0100 | [diff] [blame] | 735 | msglen = dtls_raw_hello_verify_request(p + DTLS1_HM_HEADER_LENGTH, |
| 736 | cookie, cookielen); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 737 | |
| 738 | *p++ = DTLS1_MT_HELLO_VERIFY_REQUEST; |
| 739 | |
| 740 | /* Message length */ |
| 741 | l2n3(msglen, p); |
| 742 | |
| 743 | /* Message sequence number is always 0 for a HelloVerifyRequest */ |
| 744 | s2n(0, p); |
| 745 | |
| 746 | /* |
| 747 | * We never fragment a HelloVerifyRequest, so fragment offset is 0 |
| 748 | * and fragment length is message length |
| 749 | */ |
| 750 | l2n3(0, p); |
| 751 | l2n3(msglen, p); |
| 752 | |
| 753 | /* Set reclen equal to length of whole handshake message */ |
| 754 | reclen = msglen + DTLS1_HM_HEADER_LENGTH; |
| 755 | |
| 756 | /* Add the record header */ |
| 757 | p = buf; |
| 758 | |
| 759 | *(p++) = SSL3_RT_HANDSHAKE; |
| 760 | /* |
| 761 | * Special case: for hello verify request, client version 1.0 and we |
| 762 | * haven't decided which version to use yet send back using version |
| 763 | * 1.0 header: otherwise some clients will ignore it. |
| 764 | */ |
| 765 | if (s->method->version == DTLS_ANY_VERSION) { |
| 766 | *(p++) = DTLS1_VERSION >> 8; |
| 767 | *(p++) = DTLS1_VERSION & 0xff; |
| 768 | } else { |
| 769 | *(p++) = s->version >> 8; |
| 770 | *(p++) = s->version & 0xff; |
| 771 | } |
| 772 | |
| 773 | /* |
| 774 | * Record sequence number is always the same as in the received |
| 775 | * ClientHello |
| 776 | */ |
| 777 | memcpy(p, seq, SEQ_NUM_SIZE); |
| 778 | p += SEQ_NUM_SIZE; |
| 779 | |
| 780 | /* Length */ |
| 781 | s2n(reclen, p); |
| 782 | |
| 783 | /* |
| 784 | * Set reclen equal to length of whole record including record |
| 785 | * header |
| 786 | */ |
| 787 | reclen += DTLS1_RT_HEADER_LENGTH; |
| 788 | |
| 789 | if (s->msg_callback) |
| 790 | s->msg_callback(1, 0, SSL3_RT_HEADER, buf, |
| 791 | DTLS1_RT_HEADER_LENGTH, s, s->msg_callback_arg); |
| 792 | |
Matt Caswell | ce0865d | 2016-01-21 12:22:58 +0000 | [diff] [blame] | 793 | |
| 794 | if ((tmpclient = BIO_ADDR_new()) == NULL) { |
| 795 | SSLerr(SSL_F_DTLSV1_LISTEN, ERR_R_MALLOC_FAILURE); |
| 796 | goto end; |
| 797 | } |
| 798 | |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 799 | /* |
FdaSilvaYY | 8483a00 | 2016-03-10 21:34:48 +0100 | [diff] [blame^] | 800 | * This is unnecessary if rbio and wbio are one and the same - but |
Matt Caswell | ce0865d | 2016-01-21 12:22:58 +0000 | [diff] [blame] | 801 | * maybe they're not. We ignore errors here - some BIOs do not |
| 802 | * support this. |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 803 | */ |
Matt Caswell | ce0865d | 2016-01-21 12:22:58 +0000 | [diff] [blame] | 804 | if(BIO_dgram_get_peer(rbio, tmpclient) > 0) { |
| 805 | (void)BIO_dgram_set_peer(wbio, tmpclient); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 806 | } |
Richard Levitte | d858c87 | 2016-02-03 00:27:44 +0100 | [diff] [blame] | 807 | BIO_ADDR_free(tmpclient); |
| 808 | tmpclient = NULL; |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 809 | |
| 810 | if (BIO_write(wbio, buf, reclen) < (int)reclen) { |
| 811 | if(BIO_should_retry(wbio)) { |
| 812 | /* |
| 813 | * Non-blocking IO...but we're stateless, so we're just |
| 814 | * going to drop this packet. |
| 815 | */ |
| 816 | goto end; |
| 817 | } |
| 818 | return -1; |
| 819 | } |
| 820 | |
| 821 | if (BIO_flush(wbio) <= 0) { |
| 822 | if(BIO_should_retry(wbio)) { |
| 823 | /* |
| 824 | * Non-blocking IO...but we're stateless, so we're just |
| 825 | * going to drop this packet. |
| 826 | */ |
| 827 | goto end; |
| 828 | } |
| 829 | return -1; |
| 830 | } |
| 831 | } |
| 832 | } while (next != LISTEN_SUCCESS); |
| 833 | |
| 834 | /* |
| 835 | * Set expected sequence numbers to continue the handshake. |
| 836 | */ |
| 837 | s->d1->handshake_read_seq = 1; |
| 838 | s->d1->handshake_write_seq = 1; |
| 839 | s->d1->next_handshake_write_seq = 1; |
| 840 | DTLS_RECORD_LAYER_set_write_sequence(&s->rlayer, seq); |
| 841 | |
| 842 | /* |
| 843 | * We are doing cookie exchange, so make sure we set that option in the |
| 844 | * SSL object |
| 845 | */ |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 846 | SSL_set_options(s, SSL_OP_COOKIE_EXCHANGE); |
Dr. Stephen Henson | 1fc3ac8 | 2009-09-09 17:05:18 +0000 | [diff] [blame] | 847 | |
Matt Caswell | 31fd10e | 2015-10-22 12:18:45 +0100 | [diff] [blame] | 848 | /* |
| 849 | * Tell the state machine that we've done the initial hello verify |
| 850 | * exchange |
| 851 | */ |
| 852 | ossl_statem_set_hello_verify_done(s); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 853 | |
Matt Caswell | ce0865d | 2016-01-21 12:22:58 +0000 | [diff] [blame] | 854 | /* Some BIOs may not support this. If we fail we clear the client address */ |
| 855 | if (BIO_dgram_get_peer(rbio, client) <= 0) |
| 856 | BIO_ADDR_clear(client); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 857 | |
| 858 | ret = 1; |
| 859 | clearpkt = 0; |
| 860 | end: |
Richard Levitte | d858c87 | 2016-02-03 00:27:44 +0100 | [diff] [blame] | 861 | BIO_ADDR_free(tmpclient); |
Matt Caswell | e3d0dae | 2015-09-14 22:49:35 +0100 | [diff] [blame] | 862 | BIO_ctrl(SSL_get_rbio(s), BIO_CTRL_DGRAM_SET_PEEK_MODE, 0, NULL); |
| 863 | if (clearpkt) { |
| 864 | /* Dump this packet. Ignore return value */ |
| 865 | BIO_read(rbio, buf, SSL3_RT_MAX_PLAIN_LENGTH); |
| 866 | } |
| 867 | return ret; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 868 | } |
Matt Caswell | f9e5503 | 2016-03-21 15:32:40 +0000 | [diff] [blame] | 869 | #endif |
Dr. Stephen Henson | 173e72e | 2013-03-11 15:34:28 +0000 | [diff] [blame] | 870 | |
Matt Caswell | 77d514c | 2015-03-09 15:33:46 +0000 | [diff] [blame] | 871 | static int dtls1_set_handshake_header(SSL *s, int htype, unsigned long len) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 872 | { |
Rich Salz | a773b52 | 2016-02-13 22:33:56 -0500 | [diff] [blame] | 873 | dtls1_set_message_header(s, htype, len, 0, len); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 874 | s->init_num = (int)len + DTLS1_HM_HEADER_LENGTH; |
| 875 | s->init_off = 0; |
| 876 | /* Buffer the message to handle re-xmits */ |
Matt Caswell | 77d514c | 2015-03-09 15:33:46 +0000 | [diff] [blame] | 877 | |
Viktor Dukhovni | 61986d3 | 2015-04-16 01:50:03 -0400 | [diff] [blame] | 878 | if (!dtls1_buffer_message(s, 0)) |
Matt Caswell | 77d514c | 2015-03-09 15:33:46 +0000 | [diff] [blame] | 879 | return 0; |
| 880 | |
| 881 | return 1; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 882 | } |
Dr. Stephen Henson | 173e72e | 2013-03-11 15:34:28 +0000 | [diff] [blame] | 883 | |
| 884 | static int dtls1_handshake_write(SSL *s) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 885 | { |
| 886 | return dtls1_do_write(s, SSL3_RT_HANDSHAKE); |
| 887 | } |
Matt Caswell | 8ba708e | 2015-09-11 10:48:59 +0100 | [diff] [blame] | 888 | |
| 889 | #ifndef OPENSSL_NO_HEARTBEATS |
| 890 | int dtls1_process_heartbeat(SSL *s, unsigned char *p, unsigned int length) |
| 891 | { |
| 892 | unsigned char *pl; |
| 893 | unsigned short hbtype; |
| 894 | unsigned int payload; |
| 895 | unsigned int padding = 16; /* Use minimum padding */ |
| 896 | |
| 897 | if (s->msg_callback) |
Rich Salz | 22e3dcb | 2016-01-25 13:30:37 -0500 | [diff] [blame] | 898 | s->msg_callback(0, s->version, DTLS1_RT_HEARTBEAT, |
Matt Caswell | 8ba708e | 2015-09-11 10:48:59 +0100 | [diff] [blame] | 899 | p, length, s, s->msg_callback_arg); |
| 900 | |
| 901 | /* Read type and payload length first */ |
| 902 | if (1 + 2 + 16 > length) |
| 903 | return 0; /* silently discard */ |
| 904 | if (length > SSL3_RT_MAX_PLAIN_LENGTH) |
| 905 | return 0; /* silently discard per RFC 6520 sec. 4 */ |
| 906 | |
| 907 | hbtype = *p++; |
| 908 | n2s(p, payload); |
| 909 | if (1 + 2 + payload + 16 > length) |
| 910 | return 0; /* silently discard per RFC 6520 sec. 4 */ |
| 911 | pl = p; |
| 912 | |
| 913 | if (hbtype == TLS1_HB_REQUEST) { |
| 914 | unsigned char *buffer, *bp; |
| 915 | unsigned int write_length = 1 /* heartbeat type */ + |
| 916 | 2 /* heartbeat length */ + |
| 917 | payload + padding; |
| 918 | int r; |
| 919 | |
| 920 | if (write_length > SSL3_RT_MAX_PLAIN_LENGTH) |
| 921 | return 0; |
| 922 | |
| 923 | /* |
| 924 | * Allocate memory for the response, size is 1 byte message type, |
| 925 | * plus 2 bytes payload length, plus payload, plus padding |
| 926 | */ |
| 927 | buffer = OPENSSL_malloc(write_length); |
| 928 | if (buffer == NULL) |
| 929 | return -1; |
| 930 | bp = buffer; |
| 931 | |
| 932 | /* Enter response type, length and copy payload */ |
| 933 | *bp++ = TLS1_HB_RESPONSE; |
| 934 | s2n(payload, bp); |
| 935 | memcpy(bp, pl, payload); |
| 936 | bp += payload; |
| 937 | /* Random padding */ |
| 938 | if (RAND_bytes(bp, padding) <= 0) { |
| 939 | OPENSSL_free(buffer); |
| 940 | return -1; |
| 941 | } |
| 942 | |
Rich Salz | 22e3dcb | 2016-01-25 13:30:37 -0500 | [diff] [blame] | 943 | r = dtls1_write_bytes(s, DTLS1_RT_HEARTBEAT, buffer, write_length); |
Matt Caswell | 8ba708e | 2015-09-11 10:48:59 +0100 | [diff] [blame] | 944 | |
| 945 | if (r >= 0 && s->msg_callback) |
Rich Salz | 22e3dcb | 2016-01-25 13:30:37 -0500 | [diff] [blame] | 946 | s->msg_callback(1, s->version, DTLS1_RT_HEARTBEAT, |
Matt Caswell | 8ba708e | 2015-09-11 10:48:59 +0100 | [diff] [blame] | 947 | buffer, write_length, s, s->msg_callback_arg); |
| 948 | |
| 949 | OPENSSL_free(buffer); |
| 950 | |
| 951 | if (r < 0) |
| 952 | return r; |
| 953 | } else if (hbtype == TLS1_HB_RESPONSE) { |
| 954 | unsigned int seq; |
| 955 | |
| 956 | /* |
| 957 | * We only send sequence numbers (2 bytes unsigned int), and 16 |
| 958 | * random bytes, so we just try to read the sequence number |
| 959 | */ |
| 960 | n2s(pl, seq); |
| 961 | |
| 962 | if (payload == 18 && seq == s->tlsext_hb_seq) { |
| 963 | dtls1_stop_timer(s); |
| 964 | s->tlsext_hb_seq++; |
| 965 | s->tlsext_hb_pending = 0; |
| 966 | } |
| 967 | } |
| 968 | |
| 969 | return 0; |
| 970 | } |
| 971 | |
| 972 | int dtls1_heartbeat(SSL *s) |
| 973 | { |
| 974 | unsigned char *buf, *p; |
| 975 | int ret = -1; |
| 976 | unsigned int payload = 18; /* Sequence number + random bytes */ |
| 977 | unsigned int padding = 16; /* Use minimum padding */ |
| 978 | |
| 979 | /* Only send if peer supports and accepts HB requests... */ |
Rich Salz | 22e3dcb | 2016-01-25 13:30:37 -0500 | [diff] [blame] | 980 | if (!(s->tlsext_heartbeat & SSL_DTLSEXT_HB_ENABLED) || |
| 981 | s->tlsext_heartbeat & SSL_DTLSEXT_HB_DONT_SEND_REQUESTS) { |
Matt Caswell | 8ba708e | 2015-09-11 10:48:59 +0100 | [diff] [blame] | 982 | SSLerr(SSL_F_DTLS1_HEARTBEAT, SSL_R_TLS_HEARTBEAT_PEER_DOESNT_ACCEPT); |
| 983 | return -1; |
| 984 | } |
| 985 | |
| 986 | /* ...and there is none in flight yet... */ |
| 987 | if (s->tlsext_hb_pending) { |
| 988 | SSLerr(SSL_F_DTLS1_HEARTBEAT, SSL_R_TLS_HEARTBEAT_PENDING); |
| 989 | return -1; |
| 990 | } |
| 991 | |
| 992 | /* ...and no handshake in progress. */ |
Matt Caswell | 024f543 | 2015-10-22 13:57:18 +0100 | [diff] [blame] | 993 | if (SSL_in_init(s) || ossl_statem_get_in_handshake(s)) { |
Matt Caswell | 8ba708e | 2015-09-11 10:48:59 +0100 | [diff] [blame] | 994 | SSLerr(SSL_F_DTLS1_HEARTBEAT, SSL_R_UNEXPECTED_MESSAGE); |
| 995 | return -1; |
| 996 | } |
| 997 | |
Matt Caswell | 8ba708e | 2015-09-11 10:48:59 +0100 | [diff] [blame] | 998 | /*- |
| 999 | * Create HeartBeat message, we just use a sequence number |
| 1000 | * as payload to distuingish different messages and add |
| 1001 | * some random stuff. |
| 1002 | * - Message Type, 1 byte |
| 1003 | * - Payload Length, 2 bytes (unsigned int) |
| 1004 | * - Payload, the sequence number (2 bytes uint) |
| 1005 | * - Payload, random bytes (16 bytes uint) |
| 1006 | * - Padding |
| 1007 | */ |
| 1008 | buf = OPENSSL_malloc(1 + 2 + payload + padding); |
| 1009 | if (buf == NULL) { |
| 1010 | SSLerr(SSL_F_DTLS1_HEARTBEAT, ERR_R_MALLOC_FAILURE); |
| 1011 | return -1; |
| 1012 | } |
| 1013 | p = buf; |
| 1014 | /* Message Type */ |
| 1015 | *p++ = TLS1_HB_REQUEST; |
| 1016 | /* Payload length (18 bytes here) */ |
| 1017 | s2n(payload, p); |
| 1018 | /* Sequence number */ |
| 1019 | s2n(s->tlsext_hb_seq, p); |
| 1020 | /* 16 random bytes */ |
| 1021 | if (RAND_bytes(p, 16) <= 0) { |
| 1022 | SSLerr(SSL_F_DTLS1_HEARTBEAT, ERR_R_INTERNAL_ERROR); |
| 1023 | goto err; |
| 1024 | } |
| 1025 | p += 16; |
| 1026 | /* Random padding */ |
| 1027 | if (RAND_bytes(p, padding) <= 0) { |
| 1028 | SSLerr(SSL_F_DTLS1_HEARTBEAT, ERR_R_INTERNAL_ERROR); |
| 1029 | goto err; |
| 1030 | } |
| 1031 | |
Rich Salz | 22e3dcb | 2016-01-25 13:30:37 -0500 | [diff] [blame] | 1032 | ret = dtls1_write_bytes(s, DTLS1_RT_HEARTBEAT, buf, 3 + payload + padding); |
Matt Caswell | 8ba708e | 2015-09-11 10:48:59 +0100 | [diff] [blame] | 1033 | if (ret >= 0) { |
| 1034 | if (s->msg_callback) |
Rich Salz | 22e3dcb | 2016-01-25 13:30:37 -0500 | [diff] [blame] | 1035 | s->msg_callback(1, s->version, DTLS1_RT_HEARTBEAT, |
Matt Caswell | 8ba708e | 2015-09-11 10:48:59 +0100 | [diff] [blame] | 1036 | buf, 3 + payload + padding, |
| 1037 | s, s->msg_callback_arg); |
| 1038 | |
| 1039 | dtls1_start_timer(s); |
| 1040 | s->tlsext_hb_pending = 1; |
| 1041 | } |
| 1042 | |
| 1043 | err: |
| 1044 | OPENSSL_free(buf); |
| 1045 | |
| 1046 | return ret; |
| 1047 | } |
| 1048 | #endif |
| 1049 | |
| 1050 | int dtls1_shutdown(SSL *s) |
| 1051 | { |
| 1052 | int ret; |
| 1053 | #ifndef OPENSSL_NO_SCTP |
| 1054 | BIO *wbio; |
| 1055 | |
| 1056 | wbio = SSL_get_wbio(s); |
| 1057 | if (wbio != NULL && BIO_dgram_is_sctp(wbio) && |
| 1058 | !(s->shutdown & SSL_SENT_SHUTDOWN)) { |
| 1059 | ret = BIO_dgram_sctp_wait_for_dry(wbio); |
| 1060 | if (ret < 0) |
| 1061 | return -1; |
| 1062 | |
| 1063 | if (ret == 0) |
| 1064 | BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN, 1, |
| 1065 | NULL); |
| 1066 | } |
| 1067 | #endif |
| 1068 | ret = ssl3_shutdown(s); |
| 1069 | #ifndef OPENSSL_NO_SCTP |
| 1070 | BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN, 0, NULL); |
| 1071 | #endif |
| 1072 | return ret; |
| 1073 | } |
| 1074 | |
| 1075 | int dtls1_query_mtu(SSL *s) |
| 1076 | { |
| 1077 | if (s->d1->link_mtu) { |
| 1078 | s->d1->mtu = |
| 1079 | s->d1->link_mtu - BIO_dgram_get_mtu_overhead(SSL_get_wbio(s)); |
| 1080 | s->d1->link_mtu = 0; |
| 1081 | } |
| 1082 | |
| 1083 | /* AHA! Figure out the MTU, and stick to the right size */ |
| 1084 | if (s->d1->mtu < dtls1_min_mtu(s)) { |
| 1085 | if (!(SSL_get_options(s) & SSL_OP_NO_QUERY_MTU)) { |
| 1086 | s->d1->mtu = |
| 1087 | BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL); |
| 1088 | |
| 1089 | /* |
| 1090 | * I've seen the kernel return bogus numbers when it doesn't know |
| 1091 | * (initial write), so just make sure we have a reasonable number |
| 1092 | */ |
| 1093 | if (s->d1->mtu < dtls1_min_mtu(s)) { |
| 1094 | /* Set to min mtu */ |
| 1095 | s->d1->mtu = dtls1_min_mtu(s); |
| 1096 | BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SET_MTU, |
| 1097 | s->d1->mtu, NULL); |
| 1098 | } |
| 1099 | } else |
| 1100 | return 0; |
| 1101 | } |
| 1102 | return 1; |
| 1103 | } |
| 1104 | |
Matt Caswell | 3616bb6 | 2015-10-26 11:13:56 +0000 | [diff] [blame] | 1105 | static unsigned int dtls1_link_min_mtu(void) |
Matt Caswell | 8ba708e | 2015-09-11 10:48:59 +0100 | [diff] [blame] | 1106 | { |
| 1107 | return (g_probable_mtu[(sizeof(g_probable_mtu) / |
| 1108 | sizeof(g_probable_mtu[0])) - 1]); |
| 1109 | } |
| 1110 | |
| 1111 | unsigned int dtls1_min_mtu(SSL *s) |
| 1112 | { |
| 1113 | return dtls1_link_min_mtu() - BIO_dgram_get_mtu_overhead(SSL_get_wbio(s)); |
| 1114 | } |