Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 1 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
| 2 | * All rights reserved. |
| 3 | * |
| 4 | * This package is an SSL implementation written |
| 5 | * by Eric Young (eay@cryptsoft.com). |
| 6 | * The implementation was written so as to conform with Netscapes SSL. |
| 7 | * |
| 8 | * This library is free for commercial and non-commercial use as long as |
| 9 | * the following conditions are aheared to. The following conditions |
| 10 | * apply to all code found in this distribution, be it the RC4, RSA, |
| 11 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation |
| 12 | * included with this distribution is covered by the same copyright terms |
| 13 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). |
| 14 | * |
| 15 | * Copyright remains Eric Young's, and as such any Copyright notices in |
| 16 | * the code are not to be removed. |
| 17 | * If this package is used in a product, Eric Young should be given attribution |
| 18 | * as the author of the parts of the library used. |
| 19 | * This can be in the form of a textual message at program startup or |
| 20 | * in documentation (online or textual) provided with the package. |
| 21 | * |
| 22 | * Redistribution and use in source and binary forms, with or without |
| 23 | * modification, are permitted provided that the following conditions |
| 24 | * are met: |
| 25 | * 1. Redistributions of source code must retain the copyright |
| 26 | * notice, this list of conditions and the following disclaimer. |
| 27 | * 2. Redistributions in binary form must reproduce the above copyright |
| 28 | * notice, this list of conditions and the following disclaimer in the |
| 29 | * documentation and/or other materials provided with the distribution. |
| 30 | * 3. All advertising materials mentioning features or use of this software |
| 31 | * must display the following acknowledgement: |
| 32 | * "This product includes cryptographic software written by |
| 33 | * Eric Young (eay@cryptsoft.com)" |
| 34 | * The word 'cryptographic' can be left out if the rouines from the library |
| 35 | * being used are not cryptographic related :-). |
| 36 | * 4. If you include any Windows specific code (or a derivative thereof) from |
| 37 | * the apps directory (application code) you must include an acknowledgement: |
| 38 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" |
| 39 | * |
| 40 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND |
| 41 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 42 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 43 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 44 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 45 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 46 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 47 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 48 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 49 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 50 | * SUCH DAMAGE. |
| 51 | * |
| 52 | * The licence and distribution terms for any publically available version or |
| 53 | * derivative of this code cannot be changed. i.e. this code cannot simply be |
| 54 | * copied and put under another distribution licence |
| 55 | * [including the GNU Public Licence.] |
| 56 | */ |
| 57 | /* ==================================================================== |
| 58 | * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. |
| 59 | * |
| 60 | * Redistribution and use in source and binary forms, with or without |
| 61 | * modification, are permitted provided that the following conditions |
| 62 | * are met: |
| 63 | * |
| 64 | * 1. Redistributions of source code must retain the above copyright |
| 65 | * notice, this list of conditions and the following disclaimer. |
| 66 | * |
| 67 | * 2. Redistributions in binary form must reproduce the above copyright |
| 68 | * notice, this list of conditions and the following disclaimer in |
| 69 | * the documentation and/or other materials provided with the |
| 70 | * distribution. |
| 71 | * |
| 72 | * 3. All advertising materials mentioning features or use of this |
| 73 | * software must display the following acknowledgment: |
| 74 | * "This product includes software developed by the OpenSSL Project |
| 75 | * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" |
| 76 | * |
| 77 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to |
| 78 | * endorse or promote products derived from this software without |
| 79 | * prior written permission. For written permission, please contact |
| 80 | * openssl-core@openssl.org. |
| 81 | * |
| 82 | * 5. Products derived from this software may not be called "OpenSSL" |
| 83 | * nor may "OpenSSL" appear in their names without prior written |
| 84 | * permission of the OpenSSL Project. |
| 85 | * |
| 86 | * 6. Redistributions of any form whatsoever must retain the following |
| 87 | * acknowledgment: |
| 88 | * "This product includes software developed by the OpenSSL Project |
| 89 | * for use in the OpenSSL Toolkit (http://www.openssl.org/)" |
| 90 | * |
| 91 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY |
| 92 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 93 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 94 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR |
| 95 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 96 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 97 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 98 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 99 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 100 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 101 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
| 102 | * OF THE POSSIBILITY OF SUCH DAMAGE. |
| 103 | * ==================================================================== |
| 104 | * |
| 105 | * This product includes cryptographic software written by Eric Young |
| 106 | * (eay@cryptsoft.com). This product includes software written by Tim |
| 107 | * Hudson (tjh@cryptsoft.com). |
| 108 | * |
| 109 | */ |
| 110 | /* ==================================================================== |
| 111 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. |
| 112 | * ECC cipher suite support in OpenSSL originally developed by |
| 113 | * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. |
| 114 | */ |
| 115 | /* ==================================================================== |
| 116 | * Copyright 2005 Nokia. All rights reserved. |
| 117 | * |
| 118 | * The portions of the attached software ("Contribution") is developed by |
| 119 | * Nokia Corporation and is licensed pursuant to the OpenSSL open source |
| 120 | * license. |
| 121 | * |
| 122 | * The Contribution, originally written by Mika Kousa and Pasi Eronen of |
| 123 | * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites |
| 124 | * support (see RFC 4279) to OpenSSL. |
| 125 | * |
| 126 | * No patent licenses or other rights except those expressly stated in |
| 127 | * the OpenSSL open source license shall be deemed granted or received |
| 128 | * expressly, by implication, estoppel, or otherwise. |
| 129 | * |
| 130 | * No assurances are provided by Nokia that the Contribution does not |
| 131 | * infringe the patent or other intellectual property rights of any third |
| 132 | * party or that the license provides you with all the necessary rights |
| 133 | * to make use of the Contribution. |
| 134 | * |
| 135 | * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN |
| 136 | * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA |
| 137 | * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY |
| 138 | * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR |
| 139 | * OTHERWISE. |
| 140 | */ |
| 141 | |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 142 | #ifndef OPENSSL_HEADER_SSL_INTERNAL_H |
| 143 | #define OPENSSL_HEADER_SSL_INTERNAL_H |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 144 | |
| 145 | #include <openssl/base.h> |
| 146 | |
Robert Sloan | fe7cd21 | 2017-08-07 09:03:39 -0700 | [diff] [blame] | 147 | #include <stdlib.h> |
| 148 | |
Robert Sloan | 4562e9d | 2017-10-02 10:26:51 -0700 | [diff] [blame] | 149 | #include <limits> |
Robert Sloan | fe7cd21 | 2017-08-07 09:03:39 -0700 | [diff] [blame] | 150 | #include <new> |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 151 | #include <type_traits> |
| 152 | #include <utility> |
| 153 | |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 154 | #include <openssl/aead.h> |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 155 | #include <openssl/err.h> |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 156 | #include <openssl/lhash.h> |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 157 | #include <openssl/mem.h> |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 158 | #include <openssl/ssl.h> |
Robert Sloan | 4562e9d | 2017-10-02 10:26:51 -0700 | [diff] [blame] | 159 | #include <openssl/span.h> |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 160 | #include <openssl/stack.h> |
| 161 | |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 162 | #include "../crypto/err/internal.h" |
Robert Sloan | 4562e9d | 2017-10-02 10:26:51 -0700 | [diff] [blame] | 163 | #include "../crypto/internal.h" |
| 164 | |
David Benjamin | f0c4a6c | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 165 | |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 166 | #if defined(OPENSSL_WINDOWS) |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 167 | // Windows defines struct timeval in winsock2.h. |
David Benjamin | 6e899c7 | 2016-06-09 18:02:18 -0400 | [diff] [blame] | 168 | OPENSSL_MSVC_PRAGMA(warning(push, 3)) |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 169 | #include <winsock2.h> |
David Benjamin | 6e899c7 | 2016-06-09 18:02:18 -0400 | [diff] [blame] | 170 | OPENSSL_MSVC_PRAGMA(warning(pop)) |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 171 | #else |
Adam Langley | 4139edb | 2016-01-13 15:00:54 -0800 | [diff] [blame] | 172 | #include <sys/time.h> |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 173 | #endif |
| 174 | |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 175 | |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 176 | namespace bssl { |
| 177 | |
| 178 | struct SSL_HANDSHAKE; |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 179 | struct SSL_PROTOCOL_METHOD; |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 180 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 181 | // C++ utilities. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 182 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 183 | // New behaves like |new| but uses |OPENSSL_malloc| for memory allocation. It |
| 184 | // returns nullptr on allocation error. It only implements single-object |
| 185 | // allocation and not new T[n]. |
| 186 | // |
| 187 | // Note: unlike |new|, this does not support non-public constructors. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 188 | template <typename T, typename... Args> |
| 189 | T *New(Args &&... args) { |
Robert Sloan | fe7cd21 | 2017-08-07 09:03:39 -0700 | [diff] [blame] | 190 | void *t = OPENSSL_malloc(sizeof(T)); |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 191 | if (t == nullptr) { |
| 192 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
| 193 | return nullptr; |
| 194 | } |
Robert Sloan | fe7cd21 | 2017-08-07 09:03:39 -0700 | [diff] [blame] | 195 | return new (t) T(std::forward<Args>(args)...); |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 196 | } |
| 197 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 198 | // Delete behaves like |delete| but uses |OPENSSL_free| to release memory. |
| 199 | // |
| 200 | // Note: unlike |delete| this does not support non-public destructors. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 201 | template <typename T> |
| 202 | void Delete(T *t) { |
| 203 | if (t != nullptr) { |
| 204 | t->~T(); |
| 205 | OPENSSL_free(t); |
| 206 | } |
| 207 | } |
| 208 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 209 | // All types with kAllowUniquePtr set may be used with UniquePtr. Other types |
| 210 | // may be C structs which require a |BORINGSSL_MAKE_DELETER| registration. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 211 | namespace internal { |
| 212 | template <typename T> |
Robert Sloan | fe7cd21 | 2017-08-07 09:03:39 -0700 | [diff] [blame] | 213 | struct DeleterImpl<T, typename std::enable_if<T::kAllowUniquePtr>::type> { |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 214 | static void Free(T *t) { Delete(t); } |
| 215 | }; |
| 216 | } |
| 217 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 218 | // MakeUnique behaves like |std::make_unique| but returns nullptr on allocation |
| 219 | // error. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 220 | template <typename T, typename... Args> |
| 221 | UniquePtr<T> MakeUnique(Args &&... args) { |
| 222 | return UniquePtr<T>(New<T>(std::forward<Args>(args)...)); |
| 223 | } |
| 224 | |
Robert Sloan | fe7cd21 | 2017-08-07 09:03:39 -0700 | [diff] [blame] | 225 | #if defined(BORINGSSL_ALLOW_CXX_RUNTIME) |
| 226 | #define HAS_VIRTUAL_DESTRUCTOR |
| 227 | #define PURE_VIRTUAL = 0 |
| 228 | #else |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 229 | // HAS_VIRTUAL_DESTRUCTOR should be declared in any base class which defines a |
| 230 | // virtual destructor. This avoids a dependency on |_ZdlPv| and prevents the |
| 231 | // class from being used with |delete|. |
Robert Sloan | fe7cd21 | 2017-08-07 09:03:39 -0700 | [diff] [blame] | 232 | #define HAS_VIRTUAL_DESTRUCTOR \ |
| 233 | void operator delete(void *) { abort(); } |
| 234 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 235 | // PURE_VIRTUAL should be used instead of = 0 when defining pure-virtual |
| 236 | // functions. This avoids a dependency on |__cxa_pure_virtual| but loses |
| 237 | // compile-time checking. |
Robert Sloan | fe7cd21 | 2017-08-07 09:03:39 -0700 | [diff] [blame] | 238 | #define PURE_VIRTUAL { abort(); } |
| 239 | #endif |
| 240 | |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 241 | // CONSTEXPR_ARRAY works around a VS 2015 bug where ranged for loops don't work |
| 242 | // on constexpr arrays. |
| 243 | #if defined(_MSC_VER) && !defined(__clang__) && _MSC_VER < 1910 |
| 244 | #define CONSTEXPR_ARRAY const |
| 245 | #else |
| 246 | #define CONSTEXPR_ARRAY constexpr |
| 247 | #endif |
| 248 | |
Robert Sloan | 4562e9d | 2017-10-02 10:26:51 -0700 | [diff] [blame] | 249 | // Array<T> is an owning array of elements of |T|. |
| 250 | template <typename T> |
| 251 | class Array { |
| 252 | public: |
| 253 | // Array's default constructor creates an empty array. |
| 254 | Array() {} |
| 255 | Array(const Array &) = delete; |
| 256 | Array(Array &&other) { *this = std::move(other); } |
| 257 | |
| 258 | ~Array() { Reset(); } |
| 259 | |
| 260 | Array &operator=(const Array &) = delete; |
| 261 | Array &operator=(Array &&other) { |
| 262 | Reset(); |
| 263 | other.Release(&data_, &size_); |
| 264 | return *this; |
| 265 | } |
| 266 | |
| 267 | const T *data() const { return data_; } |
| 268 | T *data() { return data_; } |
| 269 | size_t size() const { return size_; } |
Robert Sloan | ae1abf9 | 2017-10-05 12:50:08 -0700 | [diff] [blame] | 270 | bool empty() const { return size_ == 0; } |
Robert Sloan | 4562e9d | 2017-10-02 10:26:51 -0700 | [diff] [blame] | 271 | |
| 272 | const T &operator[](size_t i) const { return data_[i]; } |
| 273 | T &operator[](size_t i) { return data_[i]; } |
| 274 | |
| 275 | T *begin() { return data_; } |
| 276 | const T *cbegin() const { return data_; } |
| 277 | T *end() { return data_ + size_; } |
| 278 | const T *cend() const { return data_ + size_; } |
| 279 | |
| 280 | void Reset() { Reset(nullptr, 0); } |
| 281 | |
| 282 | // Reset releases the current contents of the array and takes ownership of the |
| 283 | // raw pointer supplied by the caller. |
| 284 | void Reset(T *new_data, size_t new_size) { |
| 285 | for (size_t i = 0; i < size_; i++) { |
| 286 | data_[i].~T(); |
| 287 | } |
| 288 | OPENSSL_free(data_); |
| 289 | data_ = new_data; |
| 290 | size_ = new_size; |
| 291 | } |
| 292 | |
| 293 | // Release releases ownership of the array to a raw pointer supplied by the |
| 294 | // caller. |
| 295 | void Release(T **out, size_t *out_size) { |
| 296 | *out = data_; |
| 297 | *out_size = size_; |
| 298 | data_ = nullptr; |
| 299 | size_ = 0; |
| 300 | } |
| 301 | |
| 302 | // Init replaces the array with a newly-allocated array of |new_size| |
| 303 | // default-constructed copies of |T|. It returns true on success and false on |
| 304 | // error. |
| 305 | // |
| 306 | // Note that if |T| is a primitive type like |uint8_t|, it is uninitialized. |
| 307 | bool Init(size_t new_size) { |
| 308 | Reset(); |
| 309 | if (new_size == 0) { |
| 310 | return true; |
| 311 | } |
| 312 | |
| 313 | if (new_size > std::numeric_limits<size_t>::max() / sizeof(T)) { |
| 314 | OPENSSL_PUT_ERROR(SSL, ERR_R_OVERFLOW); |
| 315 | return false; |
| 316 | } |
| 317 | data_ = reinterpret_cast<T*>(OPENSSL_malloc(new_size * sizeof(T))); |
| 318 | if (data_ == nullptr) { |
| 319 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
| 320 | return false; |
| 321 | } |
| 322 | size_ = new_size; |
| 323 | for (size_t i = 0; i < size_; i++) { |
| 324 | new (&data_[i]) T; |
| 325 | } |
| 326 | return true; |
| 327 | } |
| 328 | |
| 329 | // CopyFrom replaces the array with a newly-allocated copy of |in|. It returns |
| 330 | // true on success and false on error. |
| 331 | bool CopyFrom(Span<const uint8_t> in) { |
| 332 | if (!Init(in.size())) { |
| 333 | return false; |
| 334 | } |
| 335 | OPENSSL_memcpy(data_, in.data(), in.size()); |
| 336 | return true; |
| 337 | } |
| 338 | |
| 339 | private: |
| 340 | T *data_ = nullptr; |
| 341 | size_t size_ = 0; |
| 342 | }; |
| 343 | |
| 344 | // CBBFinishArray behaves like |CBB_finish| but stores the result in an Array. |
| 345 | bool CBBFinishArray(CBB *cbb, Array<uint8_t> *out); |
| 346 | |
Robert Sloan | f6200e7 | 2017-07-10 08:09:18 -0700 | [diff] [blame] | 347 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 348 | // Protocol versions. |
| 349 | // |
| 350 | // Due to DTLS's historical wire version differences and to support multiple |
| 351 | // variants of the same protocol during development, we maintain two notions of |
| 352 | // version. |
| 353 | // |
| 354 | // The "version" or "wire version" is the actual 16-bit value that appears on |
| 355 | // the wire. It uniquely identifies a version and is also used at API |
| 356 | // boundaries. The set of supported versions differs between TLS and DTLS. Wire |
| 357 | // versions are opaque values and may not be compared numerically. |
| 358 | // |
| 359 | // The "protocol version" identifies the high-level handshake variant being |
| 360 | // used. DTLS versions map to the corresponding TLS versions. Draft TLS 1.3 |
| 361 | // variants all map to TLS 1.3. Protocol versions are sequential and may be |
| 362 | // compared numerically. |
Robert Sloan | f6200e7 | 2017-07-10 08:09:18 -0700 | [diff] [blame] | 363 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 364 | // ssl_protocol_version_from_wire sets |*out| to the protocol version |
Robert Sloan | ae1abf9 | 2017-10-05 12:50:08 -0700 | [diff] [blame] | 365 | // corresponding to wire version |version| and returns true. If |version| is not |
| 366 | // a valid TLS or DTLS version, it returns false. |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 367 | // |
| 368 | // Note this simultaneously handles both DTLS and TLS. Use one of the |
| 369 | // higher-level functions below for most operations. |
Robert Sloan | ae1abf9 | 2017-10-05 12:50:08 -0700 | [diff] [blame] | 370 | bool ssl_protocol_version_from_wire(uint16_t *out, uint16_t version); |
Robert Sloan | f6200e7 | 2017-07-10 08:09:18 -0700 | [diff] [blame] | 371 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 372 | // ssl_get_version_range sets |*out_min_version| and |*out_max_version| to the |
| 373 | // minimum and maximum enabled protocol versions, respectively. |
Robert Sloan | ae1abf9 | 2017-10-05 12:50:08 -0700 | [diff] [blame] | 374 | bool ssl_get_version_range(const SSL *ssl, uint16_t *out_min_version, |
| 375 | uint16_t *out_max_version); |
Robert Sloan | f6200e7 | 2017-07-10 08:09:18 -0700 | [diff] [blame] | 376 | |
Robert Sloan | ae1abf9 | 2017-10-05 12:50:08 -0700 | [diff] [blame] | 377 | // ssl_supports_version returns whether |hs| supports |version|. |
| 378 | bool ssl_supports_version(SSL_HANDSHAKE *hs, uint16_t version); |
Robert Sloan | f6200e7 | 2017-07-10 08:09:18 -0700 | [diff] [blame] | 379 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 380 | // ssl_add_supported_versions writes the supported versions of |hs| to |cbb|, in |
| 381 | // decreasing preference order. |
Robert Sloan | ae1abf9 | 2017-10-05 12:50:08 -0700 | [diff] [blame] | 382 | bool ssl_add_supported_versions(SSL_HANDSHAKE *hs, CBB *cbb); |
Robert Sloan | f6200e7 | 2017-07-10 08:09:18 -0700 | [diff] [blame] | 383 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 384 | // ssl_negotiate_version negotiates a common version based on |hs|'s preferences |
Robert Sloan | ae1abf9 | 2017-10-05 12:50:08 -0700 | [diff] [blame] | 385 | // and the peer preference list in |peer_versions|. On success, it returns true |
| 386 | // and sets |*out_version| to the selected version. Otherwise, it returns false |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 387 | // and sets |*out_alert| to an alert to send. |
Robert Sloan | ae1abf9 | 2017-10-05 12:50:08 -0700 | [diff] [blame] | 388 | bool ssl_negotiate_version(SSL_HANDSHAKE *hs, uint8_t *out_alert, |
| 389 | uint16_t *out_version, const CBS *peer_versions); |
Robert Sloan | f6200e7 | 2017-07-10 08:09:18 -0700 | [diff] [blame] | 390 | |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 391 | // ssl_protocol_version returns |ssl|'s protocol version. It is an error to |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 392 | // call this function before the version is determined. |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 393 | uint16_t ssl_protocol_version(const SSL *ssl); |
Robert Sloan | f6200e7 | 2017-07-10 08:09:18 -0700 | [diff] [blame] | 394 | |
Robert Sloan | b1b54b8 | 2017-11-06 13:50:02 -0800 | [diff] [blame^] | 395 | // ssl_is_draft21 returns whether the version corresponds to a draft21 TLS 1.3 |
| 396 | // variant. |
| 397 | bool ssl_is_draft21(uint16_t version); |
| 398 | |
Robert Sloan | db4251a | 2017-09-18 09:38:15 -0700 | [diff] [blame] | 399 | // ssl_is_resumption_experiment returns whether the version corresponds to a |
| 400 | // TLS 1.3 resumption experiment. |
| 401 | bool ssl_is_resumption_experiment(uint16_t version); |
| 402 | |
| 403 | // ssl_is_resumption_variant returns whether the version corresponds to a |
| 404 | // TLS 1.3 resumption experiment. |
| 405 | bool ssl_is_resumption_variant(enum tls13_variant_t variant); |
| 406 | |
| 407 | // ssl_is_resumption_client_ccs_experiment returns whether the version |
| 408 | // corresponds to a TLS 1.3 resumption experiment that sends a client CCS. |
| 409 | bool ssl_is_resumption_client_ccs_experiment(uint16_t version); |
| 410 | |
| 411 | // ssl_is_resumption_record_version_experiment returns whether the version |
| 412 | // corresponds to a TLS 1.3 resumption experiment that modifies the record |
| 413 | // version. |
| 414 | bool ssl_is_resumption_record_version_experiment(uint16_t version); |
| 415 | |
Robert Sloan | f6200e7 | 2017-07-10 08:09:18 -0700 | [diff] [blame] | 416 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 417 | // Cipher suites. |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 418 | |
Robert Sloan | db4251a | 2017-09-18 09:38:15 -0700 | [diff] [blame] | 419 | } // namespace bssl |
| 420 | |
| 421 | struct ssl_cipher_st { |
| 422 | // name is the OpenSSL name for the cipher. |
| 423 | const char *name; |
| 424 | // standard_name is the IETF name for the cipher. |
| 425 | const char *standard_name; |
| 426 | // id is the cipher suite value bitwise OR-d with 0x03000000. |
| 427 | uint32_t id; |
| 428 | |
| 429 | // algorithm_* determine the cipher suite. See constants below for the values. |
| 430 | uint32_t algorithm_mkey; |
| 431 | uint32_t algorithm_auth; |
| 432 | uint32_t algorithm_enc; |
| 433 | uint32_t algorithm_mac; |
| 434 | uint32_t algorithm_prf; |
| 435 | }; |
| 436 | |
| 437 | namespace bssl { |
| 438 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 439 | // Bits for |algorithm_mkey| (key exchange algorithm). |
Robert Sloan | a12bf46 | 2017-07-17 07:08:26 -0700 | [diff] [blame] | 440 | #define SSL_kRSA 0x00000001u |
| 441 | #define SSL_kECDHE 0x00000002u |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 442 | // SSL_kPSK is only set for plain PSK, not ECDHE_PSK. |
Robert Sloan | a12bf46 | 2017-07-17 07:08:26 -0700 | [diff] [blame] | 443 | #define SSL_kPSK 0x00000004u |
| 444 | #define SSL_kGENERIC 0x00000008u |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 445 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 446 | // Bits for |algorithm_auth| (server authentication). |
Robert Sloan | a12bf46 | 2017-07-17 07:08:26 -0700 | [diff] [blame] | 447 | #define SSL_aRSA 0x00000001u |
| 448 | #define SSL_aECDSA 0x00000002u |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 449 | // SSL_aPSK is set for both PSK and ECDHE_PSK. |
Robert Sloan | a12bf46 | 2017-07-17 07:08:26 -0700 | [diff] [blame] | 450 | #define SSL_aPSK 0x00000004u |
| 451 | #define SSL_aGENERIC 0x00000008u |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 452 | |
David Benjamin | d316cba | 2016-06-02 16:17:39 -0400 | [diff] [blame] | 453 | #define SSL_aCERT (SSL_aRSA | SSL_aECDSA) |
| 454 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 455 | // Bits for |algorithm_enc| (symmetric encryption). |
Robert Sloan | a12bf46 | 2017-07-17 07:08:26 -0700 | [diff] [blame] | 456 | #define SSL_3DES 0x00000001u |
| 457 | #define SSL_AES128 0x00000002u |
| 458 | #define SSL_AES256 0x00000004u |
| 459 | #define SSL_AES128GCM 0x00000008u |
| 460 | #define SSL_AES256GCM 0x00000010u |
| 461 | #define SSL_eNULL 0x00000020u |
| 462 | #define SSL_CHACHA20POLY1305 0x00000040u |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 463 | |
| 464 | #define SSL_AES (SSL_AES128 | SSL_AES256 | SSL_AES128GCM | SSL_AES256GCM) |
| 465 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 466 | // Bits for |algorithm_mac| (symmetric authentication). |
Robert Sloan | a12bf46 | 2017-07-17 07:08:26 -0700 | [diff] [blame] | 467 | #define SSL_SHA1 0x00000001u |
| 468 | #define SSL_SHA256 0x00000002u |
| 469 | #define SSL_SHA384 0x00000004u |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 470 | // SSL_AEAD is set for all AEADs. |
Robert Sloan | a12bf46 | 2017-07-17 07:08:26 -0700 | [diff] [blame] | 471 | #define SSL_AEAD 0x00000008u |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 472 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 473 | // Bits for |algorithm_prf| (handshake digest). |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 474 | #define SSL_HANDSHAKE_MAC_DEFAULT 0x1 |
| 475 | #define SSL_HANDSHAKE_MAC_SHA256 0x2 |
| 476 | #define SSL_HANDSHAKE_MAC_SHA384 0x4 |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 477 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 478 | // SSL_MAX_DIGEST is the number of digest types which exist. When adding a new |
| 479 | // one, update the table in ssl_cipher.c. |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 480 | #define SSL_MAX_DIGEST 4 |
| 481 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 482 | // ssl_cipher_get_evp_aead sets |*out_aead| to point to the correct EVP_AEAD |
| 483 | // object for |cipher| protocol version |version|. It sets |*out_mac_secret_len| |
| 484 | // and |*out_fixed_iv_len| to the MAC key length and fixed IV length, |
| 485 | // respectively. The MAC key length is zero except for legacy block and stream |
Robert Sloan | ae1abf9 | 2017-10-05 12:50:08 -0700 | [diff] [blame] | 486 | // ciphers. It returns true on success and false on error. |
| 487 | bool ssl_cipher_get_evp_aead(const EVP_AEAD **out_aead, |
| 488 | size_t *out_mac_secret_len, |
| 489 | size_t *out_fixed_iv_len, const SSL_CIPHER *cipher, |
| 490 | uint16_t version, int is_dtls); |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 491 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 492 | // ssl_get_handshake_digest returns the |EVP_MD| corresponding to |version| and |
| 493 | // |cipher|. |
Robert Sloan | 8437709 | 2017-08-14 09:33:19 -0700 | [diff] [blame] | 494 | const EVP_MD *ssl_get_handshake_digest(uint16_t version, |
| 495 | const SSL_CIPHER *cipher); |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 496 | |
Robert Sloan | b1b54b8 | 2017-11-06 13:50:02 -0800 | [diff] [blame^] | 497 | // ssl_create_cipher_list evaluates |rule_str|. It sets |*out_cipher_list| to a |
| 498 | // newly-allocated |ssl_cipher_preference_list_st| containing the result. It |
| 499 | // returns true on success and false on failure. If |strict| is true, nonsense |
| 500 | // will be rejected. If false, nonsense will be silently ignored. An empty |
| 501 | // result is considered an error regardless of |strict|. |
Robert Sloan | ae1abf9 | 2017-10-05 12:50:08 -0700 | [diff] [blame] | 502 | bool ssl_create_cipher_list( |
Robert Sloan | 1c9db53 | 2017-03-13 08:03:59 -0700 | [diff] [blame] | 503 | struct ssl_cipher_preference_list_st **out_cipher_list, |
Robert Sloan | ae1abf9 | 2017-10-05 12:50:08 -0700 | [diff] [blame] | 504 | const char *rule_str, bool strict); |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 505 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 506 | // ssl_cipher_get_value returns the cipher suite id of |cipher|. |
Adam Langley | f4e4272 | 2015-06-04 17:45:09 -0700 | [diff] [blame] | 507 | uint16_t ssl_cipher_get_value(const SSL_CIPHER *cipher); |
| 508 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 509 | // ssl_cipher_auth_mask_for_key returns the mask of cipher |algorithm_auth| |
| 510 | // values suitable for use with |key| in TLS 1.2 and below. |
Robert Sloan | 572a4e2 | 2017-04-17 10:52:19 -0700 | [diff] [blame] | 511 | uint32_t ssl_cipher_auth_mask_for_key(const EVP_PKEY *key); |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 512 | |
Robert Sloan | ae1abf9 | 2017-10-05 12:50:08 -0700 | [diff] [blame] | 513 | // ssl_cipher_uses_certificate_auth returns whether |cipher| authenticates the |
| 514 | // server and, optionally, the client with a certificate. |
| 515 | bool ssl_cipher_uses_certificate_auth(const SSL_CIPHER *cipher); |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 516 | |
Robert Sloan | ae1abf9 | 2017-10-05 12:50:08 -0700 | [diff] [blame] | 517 | // ssl_cipher_requires_server_key_exchange returns whether |cipher| requires a |
| 518 | // ServerKeyExchange message. |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 519 | // |
Robert Sloan | ae1abf9 | 2017-10-05 12:50:08 -0700 | [diff] [blame] | 520 | // This function may return false while still allowing |cipher| an optional |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 521 | // ServerKeyExchange. This is the case for plain PSK ciphers. |
Robert Sloan | ae1abf9 | 2017-10-05 12:50:08 -0700 | [diff] [blame] | 522 | bool ssl_cipher_requires_server_key_exchange(const SSL_CIPHER *cipher); |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 523 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 524 | // ssl_cipher_get_record_split_len, for TLS 1.0 CBC mode ciphers, returns the |
| 525 | // length of an encrypted 1-byte record, for use in record-splitting. Otherwise |
| 526 | // it returns zero. |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 527 | size_t ssl_cipher_get_record_split_len(const SSL_CIPHER *cipher); |
| 528 | |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 529 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 530 | // Transcript layer. |
Robert Sloan | 5d62578 | 2017-02-13 09:55:39 -0800 | [diff] [blame] | 531 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 532 | // SSLTranscript maintains the handshake transcript as a combination of a |
| 533 | // buffer and running hash. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 534 | class SSLTranscript { |
| 535 | public: |
| 536 | SSLTranscript(); |
| 537 | ~SSLTranscript(); |
| 538 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 539 | // Init initializes the handshake transcript. If called on an existing |
| 540 | // transcript, it resets the transcript and hash. It returns true on success |
| 541 | // and false on failure. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 542 | bool Init(); |
| 543 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 544 | // InitHash initializes the handshake hash based on the PRF and contents of |
| 545 | // the handshake transcript. Subsequent calls to |Update| will update the |
| 546 | // rolling hash. It returns one on success and zero on failure. It is an error |
| 547 | // to call this function after the handshake buffer is released. |
Robert Sloan | 8437709 | 2017-08-14 09:33:19 -0700 | [diff] [blame] | 548 | bool InitHash(uint16_t version, const SSL_CIPHER *cipher); |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 549 | |
Robert Sloan | b1b54b8 | 2017-11-06 13:50:02 -0800 | [diff] [blame^] | 550 | // UpdateForHelloRetryRequest resets the rolling hash with the |
| 551 | // HelloRetryRequest construction. It returns true on success and false on |
| 552 | // failure. It is an error to call this function before the handshake buffer |
| 553 | // is released. |
| 554 | bool UpdateForHelloRetryRequest(); |
| 555 | |
| 556 | // CopyHashContext copies the hash context into |ctx| and returns true on |
| 557 | // success. |
| 558 | bool CopyHashContext(EVP_MD_CTX *ctx); |
| 559 | |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 560 | Span<const uint8_t> buffer() { |
| 561 | return MakeConstSpan(reinterpret_cast<const uint8_t *>(buffer_->data), |
| 562 | buffer_->length); |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 563 | } |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 564 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 565 | // FreeBuffer releases the handshake buffer. Subsequent calls to |
| 566 | // |Update| will not update the handshake buffer. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 567 | void FreeBuffer(); |
| 568 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 569 | // DigestLen returns the length of the PRF hash. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 570 | size_t DigestLen() const; |
| 571 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 572 | // Digest returns the PRF hash. For TLS 1.1 and below, this is |
| 573 | // |EVP_md5_sha1|. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 574 | const EVP_MD *Digest() const; |
| 575 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 576 | // Update adds |in| to the handshake buffer and handshake hash, whichever is |
| 577 | // enabled. It returns true on success and false on failure. |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 578 | bool Update(Span<const uint8_t> in); |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 579 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 580 | // GetHash writes the handshake hash to |out| which must have room for at |
| 581 | // least |DigestLen| bytes. On success, it returns true and sets |*out_len| to |
| 582 | // the number of bytes written. Otherwise, it returns false. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 583 | bool GetHash(uint8_t *out, size_t *out_len); |
| 584 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 585 | // GetSSL3CertVerifyHash writes the SSL 3.0 CertificateVerify hash into the |
| 586 | // bytes pointed to by |out| and writes the number of bytes to |
| 587 | // |*out_len|. |out| must have room for |EVP_MAX_MD_SIZE| bytes. It returns |
| 588 | // one on success and zero on failure. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 589 | bool GetSSL3CertVerifyHash(uint8_t *out, size_t *out_len, |
| 590 | const SSL_SESSION *session, |
| 591 | uint16_t signature_algorithm); |
| 592 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 593 | // GetFinishedMAC computes the MAC for the Finished message into the bytes |
| 594 | // pointed by |out| and writes the number of bytes to |*out_len|. |out| must |
| 595 | // have room for |EVP_MAX_MD_SIZE| bytes. It returns true on success and false |
| 596 | // on failure. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 597 | bool GetFinishedMAC(uint8_t *out, size_t *out_len, const SSL_SESSION *session, |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 598 | bool from_server); |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 599 | |
| 600 | private: |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 601 | // buffer_, if non-null, contains the handshake transcript. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 602 | UniquePtr<BUF_MEM> buffer_; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 603 | // hash, if initialized with an |EVP_MD|, maintains the handshake hash. For |
| 604 | // TLS 1.1 and below, it is the SHA-1 half. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 605 | ScopedEVP_MD_CTX hash_; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 606 | // md5, if initialized with an |EVP_MD|, maintains the MD5 half of the |
| 607 | // handshake hash for TLS 1.1 and below. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 608 | ScopedEVP_MD_CTX md5_; |
| 609 | }; |
Robert Sloan | 5d62578 | 2017-02-13 09:55:39 -0800 | [diff] [blame] | 610 | |
Robert Sloan | b1b54b8 | 2017-11-06 13:50:02 -0800 | [diff] [blame^] | 611 | // tls1_prf computes the PRF function for |ssl|. It fills |out|, using |secret| |
| 612 | // as the secret and |label| as the label. |seed1| and |seed2| are concatenated |
| 613 | // to form the seed parameter. It returns true on success and false on failure. |
| 614 | bool tls1_prf(const EVP_MD *digest, Span<uint8_t> out, |
| 615 | Span<const uint8_t> secret, Span<const char> label, |
| 616 | Span<const uint8_t> seed1, Span<const uint8_t> seed2); |
Robert Sloan | 5d62578 | 2017-02-13 09:55:39 -0800 | [diff] [blame] | 617 | |
| 618 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 619 | // Encryption layer. |
Adam Langley | f4e4272 | 2015-06-04 17:45:09 -0700 | [diff] [blame] | 620 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 621 | // SSLAEADContext contains information about an AEAD that is being used to |
| 622 | // encrypt an SSL connection. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 623 | class SSLAEADContext { |
| 624 | public: |
Robert Sloan | db4251a | 2017-09-18 09:38:15 -0700 | [diff] [blame] | 625 | SSLAEADContext(uint16_t version, bool is_dtls, const SSL_CIPHER *cipher); |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 626 | ~SSLAEADContext(); |
Robert Sloan | fe7cd21 | 2017-08-07 09:03:39 -0700 | [diff] [blame] | 627 | static constexpr bool kAllowUniquePtr = true; |
| 628 | |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 629 | SSLAEADContext(const SSLAEADContext &&) = delete; |
| 630 | SSLAEADContext &operator=(const SSLAEADContext &&) = delete; |
| 631 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 632 | // CreateNullCipher creates an |SSLAEADContext| for the null cipher. |
Robert Sloan | db4251a | 2017-09-18 09:38:15 -0700 | [diff] [blame] | 633 | static UniquePtr<SSLAEADContext> CreateNullCipher(bool is_dtls); |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 634 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 635 | // Create creates an |SSLAEADContext| using the supplied key material. It |
| 636 | // returns nullptr on error. Only one of |Open| or |Seal| may be used with the |
| 637 | // resulting object, depending on |direction|. |version| is the normalized |
| 638 | // protocol version, so DTLS 1.0 is represented as 0x0301, not 0xffef. |
Robert Sloan | ae1abf9 | 2017-10-05 12:50:08 -0700 | [diff] [blame] | 639 | static UniquePtr<SSLAEADContext> Create(enum evp_aead_direction_t direction, |
| 640 | uint16_t version, int is_dtls, |
| 641 | const SSL_CIPHER *cipher, |
| 642 | Span<const uint8_t> enc_key, |
| 643 | Span<const uint8_t> mac_key, |
| 644 | Span<const uint8_t> fixed_iv); |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 645 | |
Robert Sloan | db4251a | 2017-09-18 09:38:15 -0700 | [diff] [blame] | 646 | // SetVersionIfNullCipher sets the version the SSLAEADContext for the null |
| 647 | // cipher, to make version-specific determinations in the record layer prior |
| 648 | // to a cipher being selected. |
| 649 | void SetVersionIfNullCipher(uint16_t version); |
| 650 | |
| 651 | // ProtocolVersion returns the protocol version associated with this |
| 652 | // SSLAEADContext. It can only be called once |version_| has been set to a |
| 653 | // valid value. |
| 654 | uint16_t ProtocolVersion() const; |
| 655 | |
| 656 | // RecordVersion returns the record version that should be used with this |
| 657 | // SSLAEADContext for record construction and crypto. |
| 658 | uint16_t RecordVersion() const; |
| 659 | |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 660 | const SSL_CIPHER *cipher() const { return cipher_; } |
| 661 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 662 | // is_null_cipher returns true if this is the null cipher. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 663 | bool is_null_cipher() const { return !cipher_; } |
| 664 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 665 | // ExplicitNonceLen returns the length of the explicit nonce. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 666 | size_t ExplicitNonceLen() const; |
| 667 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 668 | // MaxOverhead returns the maximum overhead of calling |Seal|. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 669 | size_t MaxOverhead() const; |
| 670 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 671 | // SuffixLen calculates the suffix length written by |SealScatter| and writes |
| 672 | // it to |*out_suffix_len|. It returns true on success and false on error. |
| 673 | // |in_len| and |extra_in_len| should equal the argument of the same names |
| 674 | // passed to |SealScatter|. |
Robert Sloan | fe7cd21 | 2017-08-07 09:03:39 -0700 | [diff] [blame] | 675 | bool SuffixLen(size_t *out_suffix_len, size_t in_len, |
| 676 | size_t extra_in_len) const; |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 677 | |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 678 | // Open authenticates and decrypts |in| in-place. On success, it sets |*out| |
| 679 | // to the plaintext in |in| and returns true. Otherwise, it returns |
| 680 | // false. The output will always be |ExplicitNonceLen| bytes ahead of |in|. |
| 681 | bool Open(Span<uint8_t> *out, uint8_t type, uint16_t record_version, |
| 682 | const uint8_t seqnum[8], Span<uint8_t> in); |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 683 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 684 | // Seal encrypts and authenticates |in_len| bytes from |in| and writes the |
| 685 | // result to |out|. It returns true on success and false on error. |
| 686 | // |
| 687 | // If |in| and |out| alias then |out| + |ExplicitNonceLen| must be == |in|. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 688 | bool Seal(uint8_t *out, size_t *out_len, size_t max_out, uint8_t type, |
Robert Sloan | db4251a | 2017-09-18 09:38:15 -0700 | [diff] [blame] | 689 | uint16_t record_version, const uint8_t seqnum[8], const uint8_t *in, |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 690 | size_t in_len); |
| 691 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 692 | // SealScatter encrypts and authenticates |in_len| bytes from |in| and splits |
| 693 | // the result between |out_prefix|, |out| and |out_suffix|. It returns one on |
| 694 | // success and zero on error. |
| 695 | // |
| 696 | // On successful return, exactly |ExplicitNonceLen| bytes are written to |
| 697 | // |out_prefix|, |in_len| bytes to |out|, and |SuffixLen| bytes to |
| 698 | // |out_suffix|. |
| 699 | // |
| 700 | // |extra_in| may point to an additional plaintext buffer. If present, |
| 701 | // |extra_in_len| additional bytes are encrypted and authenticated, and the |
| 702 | // ciphertext is written to the beginning of |out_suffix|. |SuffixLen| should |
| 703 | // be used to size |out_suffix| accordingly. |
| 704 | // |
| 705 | // If |in| and |out| alias then |out| must be == |in|. Other arguments may not |
| 706 | // alias anything. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 707 | bool SealScatter(uint8_t *out_prefix, uint8_t *out, uint8_t *out_suffix, |
Robert Sloan | db4251a | 2017-09-18 09:38:15 -0700 | [diff] [blame] | 708 | uint8_t type, uint16_t record_version, |
| 709 | const uint8_t seqnum[8], const uint8_t *in, size_t in_len, |
| 710 | const uint8_t *extra_in, size_t extra_in_len); |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 711 | |
| 712 | bool GetIV(const uint8_t **out_iv, size_t *out_iv_len) const; |
| 713 | |
| 714 | private: |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 715 | // GetAdditionalData writes the additional data into |out| and returns the |
| 716 | // number of bytes written. |
Robert Sloan | db4251a | 2017-09-18 09:38:15 -0700 | [diff] [blame] | 717 | size_t GetAdditionalData(uint8_t out[13], uint8_t type, |
| 718 | uint16_t record_version, const uint8_t seqnum[8], |
| 719 | size_t plaintext_len); |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 720 | |
| 721 | const SSL_CIPHER *cipher_; |
| 722 | ScopedEVP_AEAD_CTX ctx_; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 723 | // fixed_nonce_ contains any bytes of the nonce that are fixed for all |
| 724 | // records. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 725 | uint8_t fixed_nonce_[12]; |
| 726 | uint8_t fixed_nonce_len_ = 0, variable_nonce_len_ = 0; |
Robert Sloan | db4251a | 2017-09-18 09:38:15 -0700 | [diff] [blame] | 727 | // version_ is the wire version that should be used with this AEAD. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 728 | uint16_t version_; |
Robert Sloan | db4251a | 2017-09-18 09:38:15 -0700 | [diff] [blame] | 729 | // is_dtls_ is whether DTLS is being used with this AEAD. |
| 730 | bool is_dtls_; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 731 | // variable_nonce_included_in_record_ is true if the variable nonce |
| 732 | // for a record is included as a prefix before the ciphertext. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 733 | bool variable_nonce_included_in_record_ : 1; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 734 | // random_variable_nonce_ is true if the variable nonce is |
| 735 | // randomly generated, rather than derived from the sequence |
| 736 | // number. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 737 | bool random_variable_nonce_ : 1; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 738 | // omit_length_in_ad_ is true if the length should be omitted in the |
| 739 | // AEAD's ad parameter. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 740 | bool omit_length_in_ad_ : 1; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 741 | // omit_version_in_ad_ is true if the version should be omitted |
| 742 | // in the AEAD's ad parameter. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 743 | bool omit_version_in_ad_ : 1; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 744 | // omit_ad_ is true if the AEAD's ad parameter should be omitted. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 745 | bool omit_ad_ : 1; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 746 | // xor_fixed_nonce_ is true if the fixed nonce should be XOR'd into the |
| 747 | // variable nonce rather than prepended. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 748 | bool xor_fixed_nonce_ : 1; |
| 749 | }; |
Robert Sloan | a12bf46 | 2017-07-17 07:08:26 -0700 | [diff] [blame] | 750 | |
Adam Langley | f4e4272 | 2015-06-04 17:45:09 -0700 | [diff] [blame] | 751 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 752 | // DTLS replay bitmap. |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 753 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 754 | // DTLS1_BITMAP maintains a sliding window of 64 sequence numbers to detect |
| 755 | // replayed packets. It should be initialized by zeroing every field. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 756 | struct DTLS1_BITMAP { |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 757 | // map is a bit mask of the last 64 sequence numbers. Bit |
| 758 | // |1<<i| corresponds to |max_seq_num - i|. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 759 | uint64_t map = 0; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 760 | // max_seq_num is the largest sequence number seen so far as a 64-bit |
| 761 | // integer. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 762 | uint64_t max_seq_num = 0; |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 763 | }; |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 764 | |
| 765 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 766 | // Record layer. |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 767 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 768 | // ssl_record_sequence_update increments the sequence number in |seq|. It |
| 769 | // returns one on success and zero on wraparound. |
David Benjamin | 4969cc9 | 2016-04-22 15:02:23 -0400 | [diff] [blame] | 770 | int ssl_record_sequence_update(uint8_t *seq, size_t seq_len); |
| 771 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 772 | // ssl_record_prefix_len returns the length of the prefix before the ciphertext |
| 773 | // of a record for |ssl|. |
| 774 | // |
| 775 | // TODO(davidben): Expose this as part of public API once the high-level |
| 776 | // buffer-free APIs are available. |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 777 | size_t ssl_record_prefix_len(const SSL *ssl); |
| 778 | |
| 779 | enum ssl_open_record_t { |
| 780 | ssl_open_record_success, |
| 781 | ssl_open_record_discard, |
| 782 | ssl_open_record_partial, |
David Benjamin | 6e899c7 | 2016-06-09 18:02:18 -0400 | [diff] [blame] | 783 | ssl_open_record_close_notify, |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 784 | ssl_open_record_error, |
| 785 | }; |
| 786 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 787 | // tls_open_record decrypts a record from |in| in-place. |
| 788 | // |
| 789 | // If the input did not contain a complete record, it returns |
| 790 | // |ssl_open_record_partial|. It sets |*out_consumed| to the total number of |
| 791 | // bytes necessary. It is guaranteed that a successful call to |tls_open_record| |
| 792 | // will consume at least that many bytes. |
| 793 | // |
| 794 | // Otherwise, it sets |*out_consumed| to the number of bytes of input |
| 795 | // consumed. Note that input may be consumed on all return codes if a record was |
| 796 | // decrypted. |
| 797 | // |
| 798 | // On success, it returns |ssl_open_record_success|. It sets |*out_type| to the |
| 799 | // record type and |*out| to the record body in |in|. Note that |*out| may be |
| 800 | // empty. |
| 801 | // |
| 802 | // If a record was successfully processed but should be discarded, it returns |
| 803 | // |ssl_open_record_discard|. |
| 804 | // |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 805 | // If a record was successfully processed but is a close_notify, it returns |
| 806 | // |ssl_open_record_close_notify|. |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 807 | // |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 808 | // On failure or fatal alert, it returns |ssl_open_record_error| and sets |
| 809 | // |*out_alert| to an alert to emit, or zero if no alert should be emitted. |
| 810 | enum ssl_open_record_t tls_open_record(SSL *ssl, uint8_t *out_type, |
| 811 | Span<uint8_t> *out, size_t *out_consumed, |
| 812 | uint8_t *out_alert, Span<uint8_t> in); |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 813 | |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 814 | // dtls_open_record implements |tls_open_record| for DTLS. It only returns |
| 815 | // |ssl_open_record_partial| if |in| was empty and sets |*out_consumed| to |
| 816 | // zero. The caller should read one packet and try again. |
| 817 | enum ssl_open_record_t dtls_open_record(SSL *ssl, uint8_t *out_type, |
| 818 | Span<uint8_t> *out, |
David Benjamin | 6e899c7 | 2016-06-09 18:02:18 -0400 | [diff] [blame] | 819 | size_t *out_consumed, |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 820 | uint8_t *out_alert, Span<uint8_t> in); |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 821 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 822 | // ssl_seal_align_prefix_len returns the length of the prefix before the start |
| 823 | // of the bulk of the ciphertext when sealing a record with |ssl|. Callers may |
| 824 | // use this to align buffers. |
| 825 | // |
| 826 | // Note when TLS 1.0 CBC record-splitting is enabled, this includes the one byte |
| 827 | // record and is the offset into second record's ciphertext. Thus sealing a |
| 828 | // small record may result in a smaller output than this value. |
| 829 | // |
| 830 | // TODO(davidben): Is this alignment valuable? Record-splitting makes this a |
| 831 | // mess. |
David Benjamin | 6e899c7 | 2016-06-09 18:02:18 -0400 | [diff] [blame] | 832 | size_t ssl_seal_align_prefix_len(const SSL *ssl); |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 833 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 834 | // tls_seal_record seals a new record of type |type| and body |in| and writes it |
| 835 | // to |out|. At most |max_out| bytes will be written. It returns one on success |
| 836 | // and zero on error. If enabled, |tls_seal_record| implements TLS 1.0 CBC 1/n-1 |
| 837 | // record splitting and may write two records concatenated. |
| 838 | // |
| 839 | // For a large record, the bulk of the ciphertext will begin |
| 840 | // |ssl_seal_align_prefix_len| bytes into out. Aligning |out| appropriately may |
| 841 | // improve performance. It writes at most |in_len| + |SSL_max_seal_overhead| |
| 842 | // bytes to |out|. |
| 843 | // |
| 844 | // |in| and |out| may not alias. |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 845 | int tls_seal_record(SSL *ssl, uint8_t *out, size_t *out_len, size_t max_out, |
| 846 | uint8_t type, const uint8_t *in, size_t in_len); |
| 847 | |
| 848 | enum dtls1_use_epoch_t { |
| 849 | dtls1_use_previous_epoch, |
| 850 | dtls1_use_current_epoch, |
| 851 | }; |
| 852 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 853 | // dtls_max_seal_overhead returns the maximum overhead, in bytes, of sealing a |
| 854 | // record. |
Robert Sloan | 4d1ac50 | 2017-02-06 08:36:14 -0800 | [diff] [blame] | 855 | size_t dtls_max_seal_overhead(const SSL *ssl, enum dtls1_use_epoch_t use_epoch); |
| 856 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 857 | // dtls_seal_prefix_len returns the number of bytes of prefix to reserve in |
| 858 | // front of the plaintext when sealing a record in-place. |
David Benjamin | f31229b | 2017-01-25 14:08:15 -0500 | [diff] [blame] | 859 | size_t dtls_seal_prefix_len(const SSL *ssl, enum dtls1_use_epoch_t use_epoch); |
| 860 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 861 | // dtls_seal_record implements |tls_seal_record| for DTLS. |use_epoch| selects |
| 862 | // which epoch's cipher state to use. Unlike |tls_seal_record|, |in| and |out| |
| 863 | // may alias but, if they do, |in| must be exactly |dtls_seal_prefix_len| bytes |
| 864 | // ahead of |out|. |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 865 | int dtls_seal_record(SSL *ssl, uint8_t *out, size_t *out_len, size_t max_out, |
| 866 | uint8_t type, const uint8_t *in, size_t in_len, |
| 867 | enum dtls1_use_epoch_t use_epoch); |
| 868 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 869 | // ssl_process_alert processes |in| as an alert and updates |ssl|'s shutdown |
| 870 | // state. It returns one of |ssl_open_record_discard|, |ssl_open_record_error|, |
| 871 | // |ssl_open_record_close_notify|, or |ssl_open_record_fatal_alert| as |
| 872 | // appropriate. |
David Benjamin | 6e899c7 | 2016-06-09 18:02:18 -0400 | [diff] [blame] | 873 | enum ssl_open_record_t ssl_process_alert(SSL *ssl, uint8_t *out_alert, |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 874 | Span<const uint8_t> in); |
David Benjamin | 6e899c7 | 2016-06-09 18:02:18 -0400 | [diff] [blame] | 875 | |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 876 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 877 | // Private key operations. |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 878 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 879 | // ssl_has_private_key returns one if |ssl| has a private key |
| 880 | // configured and zero otherwise. |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 881 | int ssl_has_private_key(const SSL *ssl); |
| 882 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 883 | // ssl_private_key_* perform the corresponding operation on |
| 884 | // |SSL_PRIVATE_KEY_METHOD|. If there is a custom private key configured, they |
| 885 | // call the corresponding function or |complete| depending on whether there is a |
| 886 | // pending operation. Otherwise, they implement the operation with |
| 887 | // |EVP_PKEY|. |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 888 | |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 889 | enum ssl_private_key_result_t ssl_private_key_sign( |
Robert Sloan | e56da3e | 2017-06-26 08:26:42 -0700 | [diff] [blame] | 890 | SSL_HANDSHAKE *hs, uint8_t *out, size_t *out_len, size_t max_out, |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 891 | uint16_t sigalg, Span<const uint8_t> in); |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 892 | |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 893 | enum ssl_private_key_result_t ssl_private_key_decrypt(SSL_HANDSHAKE *hs, |
| 894 | uint8_t *out, |
| 895 | size_t *out_len, |
| 896 | size_t max_out, |
| 897 | Span<const uint8_t> in); |
Kenny Root | e99801b | 2015-11-06 15:31:15 -0800 | [diff] [blame] | 898 | |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 899 | // ssl_private_key_supports_signature_algorithm returns whether |hs|'s private |
| 900 | // key supports |sigalg|. |
| 901 | bool ssl_private_key_supports_signature_algorithm(SSL_HANDSHAKE *hs, |
Robert Sloan | 572a4e2 | 2017-04-17 10:52:19 -0700 | [diff] [blame] | 902 | uint16_t sigalg); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 903 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 904 | // ssl_public_key_verify verifies that the |signature| is valid for the public |
| 905 | // key |pkey| and input |in|, using the signature algorithm |sigalg|. |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 906 | bool ssl_public_key_verify(SSL *ssl, Span<const uint8_t> signature, |
| 907 | uint16_t sigalg, EVP_PKEY *pkey, |
| 908 | Span<const uint8_t> in); |
Kenny Root | e99801b | 2015-11-06 15:31:15 -0800 | [diff] [blame] | 909 | |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 910 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 911 | // Custom extensions |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 912 | |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 913 | } // namespace bssl |
| 914 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 915 | // |SSL_CUSTOM_EXTENSION| is a structure that contains information about |
| 916 | // custom-extension callbacks. It is defined unnamespaced for compatibility with |
| 917 | // |STACK_OF(SSL_CUSTOM_EXTENSION)|. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 918 | typedef struct ssl_custom_extension { |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 919 | SSL_custom_ext_add_cb add_callback; |
| 920 | void *add_arg; |
| 921 | SSL_custom_ext_free_cb free_callback; |
| 922 | SSL_custom_ext_parse_cb parse_callback; |
| 923 | void *parse_arg; |
| 924 | uint16_t value; |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 925 | } SSL_CUSTOM_EXTENSION; |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 926 | |
Robert Sloan | 8ff0355 | 2017-06-14 12:40:58 -0700 | [diff] [blame] | 927 | DEFINE_STACK_OF(SSL_CUSTOM_EXTENSION) |
| 928 | |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 929 | namespace bssl { |
| 930 | |
| 931 | void SSL_CUSTOM_EXTENSION_free(SSL_CUSTOM_EXTENSION *custom_extension); |
| 932 | |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 933 | int custom_ext_add_clienthello(SSL_HANDSHAKE *hs, CBB *extensions); |
| 934 | int custom_ext_parse_serverhello(SSL_HANDSHAKE *hs, int *out_alert, |
| 935 | uint16_t value, const CBS *extension); |
| 936 | int custom_ext_parse_clienthello(SSL_HANDSHAKE *hs, int *out_alert, |
| 937 | uint16_t value, const CBS *extension); |
| 938 | int custom_ext_add_serverhello(SSL_HANDSHAKE *hs, CBB *extensions); |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 939 | |
| 940 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 941 | // Key shares. |
Adam Langley | 4139edb | 2016-01-13 15:00:54 -0800 | [diff] [blame] | 942 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 943 | // SSLKeyShare abstracts over Diffie-Hellman-like key exchanges. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 944 | class SSLKeyShare { |
| 945 | public: |
| 946 | virtual ~SSLKeyShare() {} |
Robert Sloan | fe7cd21 | 2017-08-07 09:03:39 -0700 | [diff] [blame] | 947 | static constexpr bool kAllowUniquePtr = true; |
| 948 | HAS_VIRTUAL_DESTRUCTOR |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 949 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 950 | // Create returns a SSLKeyShare instance for use with group |group_id| or |
| 951 | // nullptr on error. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 952 | static UniquePtr<SSLKeyShare> Create(uint16_t group_id); |
Adam Langley | 4139edb | 2016-01-13 15:00:54 -0800 | [diff] [blame] | 953 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 954 | // GroupID returns the group ID. |
Robert Sloan | fe7cd21 | 2017-08-07 09:03:39 -0700 | [diff] [blame] | 955 | virtual uint16_t GroupID() const PURE_VIRTUAL; |
Adam Langley | 4139edb | 2016-01-13 15:00:54 -0800 | [diff] [blame] | 956 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 957 | // Offer generates a keypair and writes the public value to |
| 958 | // |out_public_key|. It returns true on success and false on error. |
Robert Sloan | fe7cd21 | 2017-08-07 09:03:39 -0700 | [diff] [blame] | 959 | virtual bool Offer(CBB *out_public_key) PURE_VIRTUAL; |
Adam Langley | 4139edb | 2016-01-13 15:00:54 -0800 | [diff] [blame] | 960 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 961 | // Accept performs a key exchange against the |peer_key| generated by |offer|. |
| 962 | // On success, it returns true, writes the public value to |out_public_key|, |
Robert Sloan | 4562e9d | 2017-10-02 10:26:51 -0700 | [diff] [blame] | 963 | // and sets |*out_secret| the shared secret. On failure, it returns false and |
| 964 | // sets |*out_alert| to an alert to send to the peer. |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 965 | // |
| 966 | // The default implementation calls |Offer| and then |Finish|, assuming a key |
| 967 | // exchange protocol where the peers are symmetric. |
Robert Sloan | 4562e9d | 2017-10-02 10:26:51 -0700 | [diff] [blame] | 968 | virtual bool Accept(CBB *out_public_key, Array<uint8_t> *out_secret, |
| 969 | uint8_t *out_alert, Span<const uint8_t> peer_key); |
David Benjamin | d316cba | 2016-06-02 16:17:39 -0400 | [diff] [blame] | 970 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 971 | // Finish performs a key exchange against the |peer_key| generated by |
Robert Sloan | 4562e9d | 2017-10-02 10:26:51 -0700 | [diff] [blame] | 972 | // |Accept|. On success, it returns true and sets |*out_secret| to the shared |
| 973 | // secret. On failure, it returns zero and sets |*out_alert| to an alert to |
| 974 | // send to the peer. |
| 975 | virtual bool Finish(Array<uint8_t> *out_secret, uint8_t *out_alert, |
| 976 | Span<const uint8_t> peer_key) PURE_VIRTUAL; |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 977 | }; |
Adam Langley | 4139edb | 2016-01-13 15:00:54 -0800 | [diff] [blame] | 978 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 979 | // ssl_nid_to_group_id looks up the group corresponding to |nid|. On success, it |
| 980 | // sets |*out_group_id| to the group ID and returns one. Otherwise, it returns |
| 981 | // zero. |
David Benjamin | d316cba | 2016-06-02 16:17:39 -0400 | [diff] [blame] | 982 | int ssl_nid_to_group_id(uint16_t *out_group_id, int nid); |
Adam Langley | 4139edb | 2016-01-13 15:00:54 -0800 | [diff] [blame] | 983 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 984 | // ssl_name_to_group_id looks up the group corresponding to the |name| string |
| 985 | // of length |len|. On success, it sets |*out_group_id| to the group ID and |
| 986 | // returns one. Otherwise, it returns zero. |
Steven Valdez | bb1ceac | 2016-10-07 10:34:51 -0400 | [diff] [blame] | 987 | int ssl_name_to_group_id(uint16_t *out_group_id, const char *name, size_t len); |
| 988 | |
David Benjamin | d316cba | 2016-06-02 16:17:39 -0400 | [diff] [blame] | 989 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 990 | // Handshake messages. |
David Benjamin | d316cba | 2016-06-02 16:17:39 -0400 | [diff] [blame] | 991 | |
Robert Sloan | 8437709 | 2017-08-14 09:33:19 -0700 | [diff] [blame] | 992 | struct SSLMessage { |
| 993 | bool is_v2_hello; |
| 994 | uint8_t type; |
| 995 | CBS body; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 996 | // raw is the entire serialized handshake message, including the TLS or DTLS |
| 997 | // message header. |
Robert Sloan | 8437709 | 2017-08-14 09:33:19 -0700 | [diff] [blame] | 998 | CBS raw; |
| 999 | }; |
| 1000 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1001 | // SSL_MAX_HANDSHAKE_FLIGHT is the number of messages, including |
| 1002 | // ChangeCipherSpec, in the longest handshake flight. Currently this is the |
| 1003 | // client's second leg in a full handshake when client certificates, NPN, and |
| 1004 | // Channel ID, are all enabled. |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1005 | #define SSL_MAX_HANDSHAKE_FLIGHT 7 |
| 1006 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1007 | // ssl_max_handshake_message_len returns the maximum number of bytes permitted |
| 1008 | // in a handshake message for |ssl|. |
David Benjamin | d316cba | 2016-06-02 16:17:39 -0400 | [diff] [blame] | 1009 | size_t ssl_max_handshake_message_len(const SSL *ssl); |
Adam Langley | 4139edb | 2016-01-13 15:00:54 -0800 | [diff] [blame] | 1010 | |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 1011 | // tls_can_accept_handshake_data returns whether |ssl| is able to accept more |
| 1012 | // data into handshake buffer. |
| 1013 | bool tls_can_accept_handshake_data(const SSL *ssl, uint8_t *out_alert); |
| 1014 | |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1015 | // tls_has_unprocessed_handshake_data returns whether there is buffered |
| 1016 | // handshake data that has not been consumed by |get_message|. |
| 1017 | bool tls_has_unprocessed_handshake_data(const SSL *ssl); |
| 1018 | |
| 1019 | // dtls_has_unprocessed_handshake_data behaves like |
| 1020 | // |tls_has_unprocessed_handshake_data| for DTLS. |
| 1021 | bool dtls_has_unprocessed_handshake_data(const SSL *ssl); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1022 | |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1023 | struct DTLS_OUTGOING_MESSAGE { |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 1024 | DTLS_OUTGOING_MESSAGE() {} |
| 1025 | DTLS_OUTGOING_MESSAGE(const DTLS_OUTGOING_MESSAGE &) = delete; |
| 1026 | DTLS_OUTGOING_MESSAGE &operator=(const DTLS_OUTGOING_MESSAGE &) = delete; |
| 1027 | ~DTLS_OUTGOING_MESSAGE() { Clear(); } |
| 1028 | |
| 1029 | void Clear(); |
| 1030 | |
| 1031 | uint8_t *data = nullptr; |
| 1032 | uint32_t len = 0; |
| 1033 | uint16_t epoch = 0; |
| 1034 | bool is_ccs = false; |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1035 | }; |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1036 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1037 | // dtls_clear_outgoing_messages releases all buffered outgoing messages. |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1038 | void dtls_clear_outgoing_messages(SSL *ssl); |
| 1039 | |
Adam Langley | 4139edb | 2016-01-13 15:00:54 -0800 | [diff] [blame] | 1040 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1041 | // Callbacks. |
David Benjamin | 6e899c7 | 2016-06-09 18:02:18 -0400 | [diff] [blame] | 1042 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1043 | // ssl_do_info_callback calls |ssl|'s info callback, if set. |
David Benjamin | 6e899c7 | 2016-06-09 18:02:18 -0400 | [diff] [blame] | 1044 | void ssl_do_info_callback(const SSL *ssl, int type, int value); |
| 1045 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1046 | // ssl_do_msg_callback calls |ssl|'s message callback, if set. |
David Benjamin | 7c0d06c | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1047 | void ssl_do_msg_callback(SSL *ssl, int is_write, int content_type, |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1048 | Span<const uint8_t> in); |
David Benjamin | 6e899c7 | 2016-06-09 18:02:18 -0400 | [diff] [blame] | 1049 | |
| 1050 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1051 | // Transport buffers. |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 1052 | |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 1053 | class SSLBuffer { |
| 1054 | public: |
| 1055 | SSLBuffer() {} |
| 1056 | ~SSLBuffer() { Clear(); } |
| 1057 | |
| 1058 | SSLBuffer(const SSLBuffer &) = delete; |
| 1059 | SSLBuffer &operator=(const SSLBuffer &) = delete; |
| 1060 | |
| 1061 | uint8_t *data() { return buf_ + offset_; } |
| 1062 | size_t size() const { return size_; } |
| 1063 | bool empty() const { return size_ == 0; } |
| 1064 | size_t cap() const { return cap_; } |
| 1065 | |
| 1066 | Span<uint8_t> span() { return MakeSpan(data(), size()); } |
| 1067 | |
| 1068 | Span<uint8_t> remaining() { |
| 1069 | return MakeSpan(data() + size(), cap() - size()); |
| 1070 | } |
| 1071 | |
| 1072 | // Clear releases the buffer. |
| 1073 | void Clear(); |
| 1074 | |
| 1075 | // EnsureCap ensures the buffer has capacity at least |new_cap|, aligned such |
| 1076 | // that data written after |header_len| is aligned to a |
| 1077 | // |SSL3_ALIGN_PAYLOAD|-byte boundary. It returns true on success and false |
| 1078 | // on error. |
| 1079 | bool EnsureCap(size_t header_len, size_t new_cap); |
| 1080 | |
| 1081 | // DidWrite extends the buffer by |len|. The caller must have filled in to |
| 1082 | // this point. |
| 1083 | void DidWrite(size_t len); |
| 1084 | |
| 1085 | // Consume consumes |len| bytes from the front of the buffer. The memory |
| 1086 | // consumed will remain valid until the next call to |DiscardConsumed| or |
| 1087 | // |Clear|. |
| 1088 | void Consume(size_t len); |
| 1089 | |
| 1090 | // DiscardConsumed discards the consumed bytes from the buffer. If the buffer |
| 1091 | // is now empty, it releases memory used by it. |
| 1092 | void DiscardConsumed(); |
| 1093 | |
| 1094 | private: |
| 1095 | // buf_ is the memory allocated for this buffer. |
| 1096 | uint8_t *buf_ = nullptr; |
| 1097 | // offset_ is the offset into |buf_| which the buffer contents start at. |
| 1098 | uint16_t offset_ = 0; |
| 1099 | // size_ is the size of the buffer contents from |buf_| + |offset_|. |
| 1100 | uint16_t size_ = 0; |
| 1101 | // cap_ is how much memory beyond |buf_| + |offset_| is available. |
| 1102 | uint16_t cap_ = 0; |
| 1103 | }; |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 1104 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1105 | // ssl_read_buffer_extend_to extends the read buffer to the desired length. For |
| 1106 | // TLS, it reads to the end of the buffer until the buffer is |len| bytes |
| 1107 | // long. For DTLS, it reads a new packet and ignores |len|. It returns one on |
| 1108 | // success, zero on EOF, and a negative number on error. |
| 1109 | // |
| 1110 | // It is an error to call |ssl_read_buffer_extend_to| in DTLS when the buffer is |
| 1111 | // non-empty. |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 1112 | int ssl_read_buffer_extend_to(SSL *ssl, size_t len); |
| 1113 | |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 1114 | // ssl_handle_open_record handles the result of passing |ssl->s3->read_buffer| |
| 1115 | // to a record-processing function. If |ret| is a success or if the caller |
| 1116 | // should retry, it returns one and sets |*out_retry|. Otherwise, it returns <= |
| 1117 | // 0. |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 1118 | int ssl_handle_open_record(SSL *ssl, bool *out_retry, ssl_open_record_t ret, |
| 1119 | size_t consumed, uint8_t alert); |
| 1120 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1121 | // ssl_write_buffer_flush flushes the write buffer to the transport. It returns |
| 1122 | // one on success and <= 0 on error. For DTLS, whether or not the write |
| 1123 | // succeeds, the write buffer will be cleared. |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 1124 | int ssl_write_buffer_flush(SSL *ssl); |
| 1125 | |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 1126 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1127 | // Certificate functions. |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1128 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1129 | // ssl_has_certificate returns one if a certificate and private key are |
| 1130 | // configured and zero otherwise. |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1131 | int ssl_has_certificate(const SSL *ssl); |
| 1132 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1133 | // ssl_parse_cert_chain parses a certificate list from |cbs| in the format used |
| 1134 | // by a TLS Certificate message. On success, it advances |cbs| and returns |
| 1135 | // true. Otherwise, it returns false and sets |*out_alert| to an alert to send |
| 1136 | // to the peer. |
| 1137 | // |
| 1138 | // If the list is non-empty then |*out_chain| and |*out_pubkey| will be set to |
| 1139 | // the certificate chain and the leaf certificate's public key |
| 1140 | // respectively. Otherwise, both will be set to nullptr. |
| 1141 | // |
| 1142 | // If the list is non-empty and |out_leaf_sha256| is non-NULL, it writes the |
| 1143 | // SHA-256 hash of the leaf to |out_leaf_sha256|. |
Robert Sloan | fe7cd21 | 2017-08-07 09:03:39 -0700 | [diff] [blame] | 1144 | bool ssl_parse_cert_chain(uint8_t *out_alert, |
| 1145 | UniquePtr<STACK_OF(CRYPTO_BUFFER)> *out_chain, |
| 1146 | UniquePtr<EVP_PKEY> *out_pubkey, |
| 1147 | uint8_t *out_leaf_sha256, CBS *cbs, |
| 1148 | CRYPTO_BUFFER_POOL *pool); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1149 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1150 | // ssl_add_cert_chain adds |ssl|'s certificate chain to |cbb| in the format used |
| 1151 | // by a TLS Certificate message. If there is no certificate chain, it emits an |
| 1152 | // empty certificate list. It returns one on success and zero on error. |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1153 | int ssl_add_cert_chain(SSL *ssl, CBB *cbb); |
| 1154 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1155 | // ssl_cert_check_digital_signature_key_usage parses the DER-encoded, X.509 |
| 1156 | // certificate in |in| and returns one if doesn't specify a key usage or, if it |
| 1157 | // does, if it includes digitalSignature. Otherwise it pushes to the error |
| 1158 | // queue and returns zero. |
Steven Valdez | e7531f0 | 2016-12-14 13:29:57 -0500 | [diff] [blame] | 1159 | int ssl_cert_check_digital_signature_key_usage(const CBS *in); |
| 1160 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1161 | // ssl_cert_parse_pubkey extracts the public key from the DER-encoded, X.509 |
| 1162 | // certificate in |in|. It returns an allocated |EVP_PKEY| or else returns |
| 1163 | // nullptr and pushes to the error queue. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1164 | UniquePtr<EVP_PKEY> ssl_cert_parse_pubkey(const CBS *in); |
Steven Valdez | e7531f0 | 2016-12-14 13:29:57 -0500 | [diff] [blame] | 1165 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1166 | // ssl_parse_client_CA_list parses a CA list from |cbs| in the format used by a |
| 1167 | // TLS CertificateRequest message. On success, it returns a newly-allocated |
| 1168 | // |CRYPTO_BUFFER| list and advances |cbs|. Otherwise, it returns nullptr and |
| 1169 | // sets |*out_alert| to an alert to send to the peer. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1170 | UniquePtr<STACK_OF(CRYPTO_BUFFER)> ssl_parse_client_CA_list(SSL *ssl, |
| 1171 | uint8_t *out_alert, |
| 1172 | CBS *cbs); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1173 | |
Robert Sloan | b1b54b8 | 2017-11-06 13:50:02 -0800 | [diff] [blame^] | 1174 | // ssl_has_client_CAs returns there are configured CAs. |
| 1175 | bool ssl_has_client_CAs(SSL *ssl); |
| 1176 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1177 | // ssl_add_client_CA_list adds the configured CA list to |cbb| in the format |
| 1178 | // used by a TLS CertificateRequest message. It returns one on success and zero |
| 1179 | // on error. |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1180 | int ssl_add_client_CA_list(SSL *ssl, CBB *cbb); |
| 1181 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1182 | // ssl_check_leaf_certificate returns one if |pkey| and |leaf| are suitable as |
| 1183 | // a server's leaf certificate for |hs|. Otherwise, it returns zero and pushes |
| 1184 | // an error on the error queue. |
Robert Sloan | a94fe05 | 2017-02-21 08:49:28 -0800 | [diff] [blame] | 1185 | int ssl_check_leaf_certificate(SSL_HANDSHAKE *hs, EVP_PKEY *pkey, |
Steven Valdez | e7531f0 | 2016-12-14 13:29:57 -0500 | [diff] [blame] | 1186 | const CRYPTO_BUFFER *leaf); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1187 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1188 | // ssl_on_certificate_selected is called once the certificate has been selected. |
| 1189 | // It finalizes the certificate and initializes |hs->local_pubkey|. It returns |
| 1190 | // one on success and zero on error. |
Robert Sloan | 572a4e2 | 2017-04-17 10:52:19 -0700 | [diff] [blame] | 1191 | int ssl_on_certificate_selected(SSL_HANDSHAKE *hs); |
| 1192 | |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1193 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1194 | // TLS 1.3 key derivation. |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1195 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1196 | // tls13_init_key_schedule initializes the handshake hash and key derivation |
Robert Sloan | b1b54b8 | 2017-11-06 13:50:02 -0800 | [diff] [blame^] | 1197 | // state, and incorporates the PSK. The cipher suite and PRF hash must have been |
| 1198 | // selected at this point. It returns one on success and zero on error. |
| 1199 | int tls13_init_key_schedule(SSL_HANDSHAKE *hs, const uint8_t *psk, |
| 1200 | size_t psk_len); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1201 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1202 | // tls13_init_early_key_schedule initializes the handshake hash and key |
Robert Sloan | b1b54b8 | 2017-11-06 13:50:02 -0800 | [diff] [blame^] | 1203 | // derivation state from the resumption secret and incorporates the PSK to |
| 1204 | // derive the early secrets. It returns one on success and zero on error. |
| 1205 | int tls13_init_early_key_schedule(SSL_HANDSHAKE *hs, const uint8_t *psk, |
| 1206 | size_t psk_len); |
Robert Sloan | 6d0d00e | 2017-03-27 07:13:07 -0700 | [diff] [blame] | 1207 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1208 | // tls13_advance_key_schedule incorporates |in| into the key schedule with |
| 1209 | // HKDF-Extract. It returns one on success and zero on error. |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 1210 | int tls13_advance_key_schedule(SSL_HANDSHAKE *hs, const uint8_t *in, |
| 1211 | size_t len); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1212 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1213 | // tls13_set_traffic_key sets the read or write traffic keys to |
| 1214 | // |traffic_secret|. It returns one on success and zero on error. |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 1215 | int tls13_set_traffic_key(SSL *ssl, enum evp_aead_direction_t direction, |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1216 | const uint8_t *traffic_secret, |
| 1217 | size_t traffic_secret_len); |
| 1218 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1219 | // tls13_derive_early_secrets derives the early traffic secret. It returns one |
| 1220 | // on success and zero on error. |
Robert Sloan | 6d0d00e | 2017-03-27 07:13:07 -0700 | [diff] [blame] | 1221 | int tls13_derive_early_secrets(SSL_HANDSHAKE *hs); |
| 1222 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1223 | // tls13_derive_handshake_secrets derives the handshake traffic secret. It |
| 1224 | // returns one on success and zero on error. |
Robert Sloan | 69939df | 2017-01-09 10:53:07 -0800 | [diff] [blame] | 1225 | int tls13_derive_handshake_secrets(SSL_HANDSHAKE *hs); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1226 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1227 | // tls13_rotate_traffic_key derives the next read or write traffic secret. It |
| 1228 | // returns one on success and zero on error. |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1229 | int tls13_rotate_traffic_key(SSL *ssl, enum evp_aead_direction_t direction); |
| 1230 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1231 | // tls13_derive_application_secrets derives the initial application data traffic |
| 1232 | // and exporter secrets based on the handshake transcripts and |master_secret|. |
| 1233 | // It returns one on success and zero on error. |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 1234 | int tls13_derive_application_secrets(SSL_HANDSHAKE *hs); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1235 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1236 | // tls13_derive_resumption_secret derives the |resumption_secret|. |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 1237 | int tls13_derive_resumption_secret(SSL_HANDSHAKE *hs); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1238 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1239 | // tls13_export_keying_material provides an exporter interface to use the |
| 1240 | // |exporter_secret|. |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1241 | int tls13_export_keying_material(SSL *ssl, uint8_t *out, size_t out_len, |
| 1242 | const char *label, size_t label_len, |
| 1243 | const uint8_t *context, size_t context_len, |
| 1244 | int use_context); |
| 1245 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1246 | // tls13_finished_mac calculates the MAC of the handshake transcript to verify |
| 1247 | // the integrity of the Finished message, and stores the result in |out| and |
| 1248 | // length in |out_len|. |is_server| is 1 if this is for the Server Finished and |
| 1249 | // 0 for the Client Finished. |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 1250 | int tls13_finished_mac(SSL_HANDSHAKE *hs, uint8_t *out, |
| 1251 | size_t *out_len, int is_server); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1252 | |
Robert Sloan | b1b54b8 | 2017-11-06 13:50:02 -0800 | [diff] [blame^] | 1253 | // tls13_derive_session_psk calculates the PSK for this session based on the |
| 1254 | // resumption master secret and |nonce|. It returns true on success, and false |
| 1255 | // on failure. |
| 1256 | bool tls13_derive_session_psk(SSL_SESSION *session, Span<const uint8_t> nonce); |
| 1257 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1258 | // tls13_write_psk_binder calculates the PSK binder value and replaces the last |
| 1259 | // bytes of |msg| with the resulting value. It returns 1 on success, and 0 on |
| 1260 | // failure. |
Robert Sloan | 5d62578 | 2017-02-13 09:55:39 -0800 | [diff] [blame] | 1261 | int tls13_write_psk_binder(SSL_HANDSHAKE *hs, uint8_t *msg, size_t len); |
David Benjamin | f0c4a6c | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1262 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1263 | // tls13_verify_psk_binder verifies that the handshake transcript, truncated |
| 1264 | // up to the binders has a valid signature using the value of |session|'s |
| 1265 | // resumption secret. It returns 1 on success, and 0 on failure. |
Robert Sloan | 5d62578 | 2017-02-13 09:55:39 -0800 | [diff] [blame] | 1266 | int tls13_verify_psk_binder(SSL_HANDSHAKE *hs, SSL_SESSION *session, |
Robert Sloan | 8437709 | 2017-08-14 09:33:19 -0700 | [diff] [blame] | 1267 | const SSLMessage &msg, CBS *binders); |
David Benjamin | f0c4a6c | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1268 | |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1269 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1270 | // Handshake functions. |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1271 | |
| 1272 | enum ssl_hs_wait_t { |
| 1273 | ssl_hs_error, |
| 1274 | ssl_hs_ok, |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1275 | ssl_hs_read_server_hello, |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1276 | ssl_hs_read_message, |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1277 | ssl_hs_flush, |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1278 | ssl_hs_certificate_selection_pending, |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1279 | ssl_hs_x509_lookup, |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 1280 | ssl_hs_channel_id_lookup, |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1281 | ssl_hs_private_key_operation, |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1282 | ssl_hs_pending_session, |
Robert Sloan | 1c9db53 | 2017-03-13 08:03:59 -0700 | [diff] [blame] | 1283 | ssl_hs_pending_ticket, |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1284 | ssl_hs_early_return, |
Robert Sloan | e56da3e | 2017-06-26 08:26:42 -0700 | [diff] [blame] | 1285 | ssl_hs_early_data_rejected, |
Robert Sloan | 6d0d00e | 2017-03-27 07:13:07 -0700 | [diff] [blame] | 1286 | ssl_hs_read_end_of_early_data, |
Robert Sloan | a12bf46 | 2017-07-17 07:08:26 -0700 | [diff] [blame] | 1287 | ssl_hs_read_change_cipher_spec, |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1288 | ssl_hs_certificate_verify, |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1289 | }; |
| 1290 | |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1291 | struct SSL_HANDSHAKE { |
| 1292 | explicit SSL_HANDSHAKE(SSL *ssl); |
| 1293 | ~SSL_HANDSHAKE(); |
Robert Sloan | fe7cd21 | 2017-08-07 09:03:39 -0700 | [diff] [blame] | 1294 | static constexpr bool kAllowUniquePtr = true; |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1295 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1296 | // ssl is a non-owning pointer to the parent |SSL| object. |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 1297 | SSL *ssl; |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1298 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1299 | // wait contains the operation the handshake is currently blocking on or |
| 1300 | // |ssl_hs_ok| if none. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1301 | enum ssl_hs_wait_t wait = ssl_hs_ok; |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1302 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1303 | // state is the internal state for the TLS 1.2 and below handshake. Its |
| 1304 | // values depend on |do_handshake| but the starting state is always zero. |
| 1305 | int state = 0; |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1306 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1307 | // tls13_state is the internal state for the TLS 1.3 handshake. Its values |
| 1308 | // depend on |do_handshake| but the starting state is always zero. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1309 | int tls13_state = 0; |
Steven Valdez | e7531f0 | 2016-12-14 13:29:57 -0500 | [diff] [blame] | 1310 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1311 | // min_version is the minimum accepted protocol version, taking account both |
| 1312 | // |SSL_OP_NO_*| and |SSL_CTX_set_min_proto_version| APIs. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1313 | uint16_t min_version = 0; |
Robert Sloan | e56da3e | 2017-06-26 08:26:42 -0700 | [diff] [blame] | 1314 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1315 | // max_version is the maximum accepted protocol version, taking account both |
| 1316 | // |SSL_OP_NO_*| and |SSL_CTX_set_max_proto_version| APIs. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1317 | uint16_t max_version = 0; |
Robert Sloan | e56da3e | 2017-06-26 08:26:42 -0700 | [diff] [blame] | 1318 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1319 | // session_id is the session ID in the ClientHello, used for the experimental |
| 1320 | // TLS 1.3 variant. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1321 | uint8_t session_id[SSL_MAX_SSL_SESSION_ID_LENGTH] = {0}; |
| 1322 | uint8_t session_id_len = 0; |
Robert Sloan | a12bf46 | 2017-07-17 07:08:26 -0700 | [diff] [blame] | 1323 | |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1324 | size_t hash_len = 0; |
| 1325 | uint8_t secret[EVP_MAX_MD_SIZE] = {0}; |
| 1326 | uint8_t early_traffic_secret[EVP_MAX_MD_SIZE] = {0}; |
| 1327 | uint8_t client_handshake_secret[EVP_MAX_MD_SIZE] = {0}; |
| 1328 | uint8_t server_handshake_secret[EVP_MAX_MD_SIZE] = {0}; |
| 1329 | uint8_t client_traffic_secret_0[EVP_MAX_MD_SIZE] = {0}; |
| 1330 | uint8_t server_traffic_secret_0[EVP_MAX_MD_SIZE] = {0}; |
| 1331 | uint8_t expected_client_finished[EVP_MAX_MD_SIZE] = {0}; |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1332 | |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 1333 | union { |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1334 | // sent is a bitset where the bits correspond to elements of kExtensions |
| 1335 | // in t1_lib.c. Each bit is set if that extension was sent in a |
| 1336 | // ClientHello. It's not used by servers. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1337 | uint32_t sent = 0; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1338 | // received is a bitset, like |sent|, but is used by servers to record |
| 1339 | // which extensions were received from a client. |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 1340 | uint32_t received; |
| 1341 | } extensions; |
| 1342 | |
| 1343 | union { |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1344 | // sent is a bitset where the bits correspond to elements of |
| 1345 | // |client_custom_extensions| in the |SSL_CTX|. Each bit is set if that |
| 1346 | // extension was sent in a ClientHello. It's not used by servers. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1347 | uint16_t sent = 0; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1348 | // received is a bitset, like |sent|, but is used by servers to record |
| 1349 | // which custom extensions were received from a client. The bits here |
| 1350 | // correspond to |server_custom_extensions|. |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 1351 | uint16_t received; |
| 1352 | } custom_extensions; |
| 1353 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1354 | // retry_group is the group ID selected by the server in HelloRetryRequest in |
| 1355 | // TLS 1.3. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1356 | uint16_t retry_group = 0; |
David Benjamin | 7c0d06c | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1357 | |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1358 | // error, if |wait| is |ssl_hs_error|, is the error the handshake failed on. |
| 1359 | UniquePtr<ERR_SAVE_STATE> error; |
| 1360 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1361 | // key_share is the current key exchange instance. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1362 | UniquePtr<SSLKeyShare> key_share; |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 1363 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1364 | // transcript is the current handshake transcript. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1365 | SSLTranscript transcript; |
Robert Sloan | 5d62578 | 2017-02-13 09:55:39 -0800 | [diff] [blame] | 1366 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1367 | // cookie is the value of the cookie received from the server, if any. |
Robert Sloan | 4562e9d | 2017-10-02 10:26:51 -0700 | [diff] [blame] | 1368 | Array<uint8_t> cookie; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 1369 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1370 | // key_share_bytes is the value of the previously sent KeyShare extension by |
| 1371 | // the client in TLS 1.3. |
Robert Sloan | 4562e9d | 2017-10-02 10:26:51 -0700 | [diff] [blame] | 1372 | Array<uint8_t> key_share_bytes; |
David Benjamin | 7c0d06c | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1373 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1374 | // ecdh_public_key, for servers, is the key share to be sent to the client in |
| 1375 | // TLS 1.3. |
Robert Sloan | 4562e9d | 2017-10-02 10:26:51 -0700 | [diff] [blame] | 1376 | Array<uint8_t> ecdh_public_key; |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1377 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1378 | // peer_sigalgs are the signature algorithms that the peer supports. These are |
| 1379 | // taken from the contents of the signature algorithms extension for a server |
| 1380 | // or from the CertificateRequest for a client. |
Robert Sloan | 4562e9d | 2017-10-02 10:26:51 -0700 | [diff] [blame] | 1381 | Array<uint16_t> peer_sigalgs; |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1382 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1383 | // peer_supported_group_list contains the supported group IDs advertised by |
| 1384 | // the peer. This is only set on the server's end. The server does not |
| 1385 | // advertise this extension to the client. |
Robert Sloan | 4562e9d | 2017-10-02 10:26:51 -0700 | [diff] [blame] | 1386 | Array<uint16_t> peer_supported_group_list; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 1387 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1388 | // peer_key is the peer's ECDH key for a TLS 1.2 client. |
Robert Sloan | 4562e9d | 2017-10-02 10:26:51 -0700 | [diff] [blame] | 1389 | Array<uint8_t> peer_key; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 1390 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1391 | // server_params, in a TLS 1.2 server, stores the ServerKeyExchange |
| 1392 | // parameters. It has client and server randoms prepended for signing |
| 1393 | // convenience. |
Robert Sloan | 4562e9d | 2017-10-02 10:26:51 -0700 | [diff] [blame] | 1394 | Array<uint8_t> server_params; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 1395 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1396 | // peer_psk_identity_hint, on the client, is the psk_identity_hint sent by the |
| 1397 | // server when using a TLS 1.2 PSK key exchange. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1398 | UniquePtr<char> peer_psk_identity_hint; |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 1399 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1400 | // ca_names, on the client, contains the list of CAs received in a |
| 1401 | // CertificateRequest message. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1402 | UniquePtr<STACK_OF(CRYPTO_BUFFER)> ca_names; |
Robert Sloan | 7d422bc | 2017-03-06 10:04:29 -0800 | [diff] [blame] | 1403 | |
Robert Sloan | ae1abf9 | 2017-10-05 12:50:08 -0700 | [diff] [blame] | 1404 | // cached_x509_ca_names contains a cache of parsed versions of the elements of |
| 1405 | // |ca_names|. This pointer is left non-owning so only |
| 1406 | // |ssl_crypto_x509_method| needs to link against crypto/x509. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1407 | STACK_OF(X509_NAME) *cached_x509_ca_names = nullptr; |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 1408 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1409 | // certificate_types, on the client, contains the set of certificate types |
| 1410 | // received in a CertificateRequest message. |
Robert Sloan | 4562e9d | 2017-10-02 10:26:51 -0700 | [diff] [blame] | 1411 | Array<uint8_t> certificate_types; |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 1412 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1413 | // local_pubkey is the public key we are authenticating as. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1414 | UniquePtr<EVP_PKEY> local_pubkey; |
Robert Sloan | 572a4e2 | 2017-04-17 10:52:19 -0700 | [diff] [blame] | 1415 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1416 | // peer_pubkey is the public key parsed from the peer's leaf certificate. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1417 | UniquePtr<EVP_PKEY> peer_pubkey; |
Steven Valdez | e7531f0 | 2016-12-14 13:29:57 -0500 | [diff] [blame] | 1418 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1419 | // new_session is the new mutable session being established by the current |
| 1420 | // handshake. It should not be cached. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1421 | UniquePtr<SSL_SESSION> new_session; |
Robert Sloan | a94fe05 | 2017-02-21 08:49:28 -0800 | [diff] [blame] | 1422 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1423 | // early_session is the session corresponding to the current 0-RTT state on |
| 1424 | // the client if |in_early_data| is true. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1425 | UniquePtr<SSL_SESSION> early_session; |
Robert Sloan | e56da3e | 2017-06-26 08:26:42 -0700 | [diff] [blame] | 1426 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1427 | // new_cipher is the cipher being negotiated in this handshake. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1428 | const SSL_CIPHER *new_cipher = nullptr; |
Robert Sloan | a94fe05 | 2017-02-21 08:49:28 -0800 | [diff] [blame] | 1429 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1430 | // key_block is the record-layer key block for TLS 1.2 and earlier. |
Robert Sloan | ae1abf9 | 2017-10-05 12:50:08 -0700 | [diff] [blame] | 1431 | Array<uint8_t> key_block; |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 1432 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1433 | // scts_requested is true if the SCT extension is in the ClientHello. |
| 1434 | bool scts_requested:1; |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 1435 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1436 | // needs_psk_binder is true if the ClientHello has a placeholder PSK binder to |
| 1437 | // be filled in. |
| 1438 | bool needs_psk_binder:1; |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 1439 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1440 | bool received_hello_retry_request:1; |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 1441 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1442 | bool received_custom_extension:1; |
Robert Sloan | 8f860b1 | 2017-08-28 07:37:06 -0700 | [diff] [blame] | 1443 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1444 | // handshake_finalized is true once the handshake has completed, at which |
| 1445 | // point accessors should use the established state. |
| 1446 | bool handshake_finalized:1; |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 1447 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1448 | // accept_psk_mode stores whether the client's PSK mode is compatible with our |
| 1449 | // preferences. |
| 1450 | bool accept_psk_mode:1; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 1451 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1452 | // cert_request is true if a client certificate was requested. |
| 1453 | bool cert_request:1; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 1454 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1455 | // certificate_status_expected is true if OCSP stapling was negotiated and the |
| 1456 | // server is expected to send a CertificateStatus message. (This is used on |
| 1457 | // both the client and server sides.) |
| 1458 | bool certificate_status_expected:1; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 1459 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1460 | // ocsp_stapling_requested is true if a client requested OCSP stapling. |
| 1461 | bool ocsp_stapling_requested:1; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 1462 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1463 | // should_ack_sni is used by a server and indicates that the SNI extension |
| 1464 | // should be echoed in the ServerHello. |
| 1465 | bool should_ack_sni:1; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 1466 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1467 | // in_false_start is true if there is a pending client handshake in False |
| 1468 | // Start. The client may write data at this point. |
| 1469 | bool in_false_start:1; |
Robert Sloan | e56da3e | 2017-06-26 08:26:42 -0700 | [diff] [blame] | 1470 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1471 | // in_early_data is true if there is a pending handshake that has progressed |
| 1472 | // enough to send and receive early data. |
| 1473 | bool in_early_data:1; |
Robert Sloan | 6d0d00e | 2017-03-27 07:13:07 -0700 | [diff] [blame] | 1474 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1475 | // early_data_offered is true if the client sent the early_data extension. |
| 1476 | bool early_data_offered:1; |
Robert Sloan | 6d0d00e | 2017-03-27 07:13:07 -0700 | [diff] [blame] | 1477 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1478 | // can_early_read is true if application data may be read at this point in the |
| 1479 | // handshake. |
| 1480 | bool can_early_read:1; |
Robert Sloan | 6d0d00e | 2017-03-27 07:13:07 -0700 | [diff] [blame] | 1481 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1482 | // can_early_write is true if application data may be written at this point in |
| 1483 | // the handshake. |
| 1484 | bool can_early_write:1; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 1485 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1486 | // next_proto_neg_seen is one of NPN was negotiated. |
| 1487 | bool next_proto_neg_seen:1; |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 1488 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1489 | // ticket_expected is true if a TLS 1.2 NewSessionTicket message is to be sent |
| 1490 | // or received. |
| 1491 | bool ticket_expected:1; |
Robert Sloan | a94fe05 | 2017-02-21 08:49:28 -0800 | [diff] [blame] | 1492 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1493 | // extended_master_secret is true if the extended master secret extension is |
| 1494 | // negotiated in this handshake. |
| 1495 | bool extended_master_secret:1; |
Robert Sloan | e56da3e | 2017-06-26 08:26:42 -0700 | [diff] [blame] | 1496 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1497 | // pending_private_key_op is true if there is a pending private key operation |
| 1498 | // in progress. |
| 1499 | bool pending_private_key_op:1; |
| 1500 | |
| 1501 | // client_version is the value sent or received in the ClientHello version. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1502 | uint16_t client_version = 0; |
Robert Sloan | 9254e68 | 2017-04-24 09:42:06 -0700 | [diff] [blame] | 1503 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1504 | // early_data_read is the amount of early data that has been read by the |
| 1505 | // record layer. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1506 | uint16_t early_data_read = 0; |
Robert Sloan | e56da3e | 2017-06-26 08:26:42 -0700 | [diff] [blame] | 1507 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1508 | // early_data_written is the amount of early data that has been written by the |
| 1509 | // record layer. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1510 | uint16_t early_data_written = 0; |
| 1511 | }; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 1512 | |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 1513 | UniquePtr<SSL_HANDSHAKE> ssl_handshake_new(SSL *ssl); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1514 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1515 | // ssl_check_message_type checks if |msg| has type |type|. If so it returns |
| 1516 | // one. Otherwise, it sends an alert and returns zero. |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 1517 | bool ssl_check_message_type(SSL *ssl, const SSLMessage &msg, int type); |
Robert Sloan | 4d1ac50 | 2017-02-06 08:36:14 -0800 | [diff] [blame] | 1518 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1519 | // ssl_run_handshake runs the TLS handshake. It returns one on success and <= 0 |
| 1520 | // on error. It sets |out_early_return| to one if we've completed the handshake |
| 1521 | // early. |
| 1522 | int ssl_run_handshake(SSL_HANDSHAKE *hs, bool *out_early_return); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1523 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1524 | // The following are implementations of |do_handshake| for the client and |
| 1525 | // server. |
| 1526 | enum ssl_hs_wait_t ssl_client_handshake(SSL_HANDSHAKE *hs); |
| 1527 | enum ssl_hs_wait_t ssl_server_handshake(SSL_HANDSHAKE *hs); |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 1528 | enum ssl_hs_wait_t tls13_client_handshake(SSL_HANDSHAKE *hs); |
| 1529 | enum ssl_hs_wait_t tls13_server_handshake(SSL_HANDSHAKE *hs); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1530 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1531 | // The following functions return human-readable representations of the TLS |
| 1532 | // handshake states for debugging. |
| 1533 | const char *ssl_client_handshake_state(SSL_HANDSHAKE *hs); |
| 1534 | const char *ssl_server_handshake_state(SSL_HANDSHAKE *hs); |
Robert Sloan | 8f860b1 | 2017-08-28 07:37:06 -0700 | [diff] [blame] | 1535 | const char *tls13_client_handshake_state(SSL_HANDSHAKE *hs); |
| 1536 | const char *tls13_server_handshake_state(SSL_HANDSHAKE *hs); |
| 1537 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1538 | // tls13_post_handshake processes a post-handshake message. It returns one on |
| 1539 | // success and zero on failure. |
Robert Sloan | 8437709 | 2017-08-14 09:33:19 -0700 | [diff] [blame] | 1540 | int tls13_post_handshake(SSL *ssl, const SSLMessage &msg); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1541 | |
Robert Sloan | 8437709 | 2017-08-14 09:33:19 -0700 | [diff] [blame] | 1542 | int tls13_process_certificate(SSL_HANDSHAKE *hs, const SSLMessage &msg, |
| 1543 | int allow_anonymous); |
| 1544 | int tls13_process_certificate_verify(SSL_HANDSHAKE *hs, const SSLMessage &msg); |
Robert Sloan | 6d0d00e | 2017-03-27 07:13:07 -0700 | [diff] [blame] | 1545 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1546 | // tls13_process_finished processes |msg| as a Finished message from the |
| 1547 | // peer. If |use_saved_value| is one, the verify_data is compared against |
| 1548 | // |hs->expected_client_finished| rather than computed fresh. |
Robert Sloan | 8437709 | 2017-08-14 09:33:19 -0700 | [diff] [blame] | 1549 | int tls13_process_finished(SSL_HANDSHAKE *hs, const SSLMessage &msg, |
| 1550 | int use_saved_value); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1551 | |
Robert Sloan | 4d1ac50 | 2017-02-06 08:36:14 -0800 | [diff] [blame] | 1552 | int tls13_add_certificate(SSL_HANDSHAKE *hs); |
Robert Sloan | e56da3e | 2017-06-26 08:26:42 -0700 | [diff] [blame] | 1553 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1554 | // tls13_add_certificate_verify adds a TLS 1.3 CertificateVerify message to the |
| 1555 | // handshake. If it returns |ssl_private_key_retry|, it should be called again |
| 1556 | // to retry when the signing operation is completed. |
Robert Sloan | e56da3e | 2017-06-26 08:26:42 -0700 | [diff] [blame] | 1557 | enum ssl_private_key_result_t tls13_add_certificate_verify(SSL_HANDSHAKE *hs); |
| 1558 | |
Robert Sloan | 4d1ac50 | 2017-02-06 08:36:14 -0800 | [diff] [blame] | 1559 | int tls13_add_finished(SSL_HANDSHAKE *hs); |
Robert Sloan | 8437709 | 2017-08-14 09:33:19 -0700 | [diff] [blame] | 1560 | int tls13_process_new_session_ticket(SSL *ssl, const SSLMessage &msg); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1561 | |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1562 | bool ssl_ext_key_share_parse_serverhello(SSL_HANDSHAKE *hs, |
| 1563 | Array<uint8_t> *out_secret, |
| 1564 | uint8_t *out_alert, CBS *contents); |
| 1565 | bool ssl_ext_key_share_parse_clienthello(SSL_HANDSHAKE *hs, bool *out_found, |
| 1566 | Array<uint8_t> *out_secret, |
| 1567 | uint8_t *out_alert, CBS *contents); |
| 1568 | bool ssl_ext_key_share_add_serverhello(SSL_HANDSHAKE *hs, CBB *out); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1569 | |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1570 | bool ssl_ext_pre_shared_key_parse_serverhello(SSL_HANDSHAKE *hs, |
| 1571 | uint8_t *out_alert, |
| 1572 | CBS *contents); |
| 1573 | bool ssl_ext_pre_shared_key_parse_clienthello( |
Robert Sloan | 1c9db53 | 2017-03-13 08:03:59 -0700 | [diff] [blame] | 1574 | SSL_HANDSHAKE *hs, CBS *out_ticket, CBS *out_binders, |
| 1575 | uint32_t *out_obfuscated_ticket_age, uint8_t *out_alert, CBS *contents); |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1576 | bool ssl_ext_pre_shared_key_add_serverhello(SSL_HANDSHAKE *hs, CBB *out); |
David Benjamin | f0c4a6c | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1577 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1578 | // ssl_is_sct_list_valid does a shallow parse of the SCT list in |contents| and |
| 1579 | // returns one iff it's valid. |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 1580 | int ssl_is_sct_list_valid(const CBS *contents); |
| 1581 | |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 1582 | int ssl_write_client_hello(SSL_HANDSHAKE *hs); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1583 | |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 1584 | enum ssl_cert_verify_context_t { |
| 1585 | ssl_cert_verify_server, |
| 1586 | ssl_cert_verify_client, |
| 1587 | ssl_cert_verify_channel_id, |
| 1588 | }; |
| 1589 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1590 | // tls13_get_cert_verify_signature_input generates the message to be signed for |
| 1591 | // TLS 1.3's CertificateVerify message. |cert_verify_context| determines the |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1592 | // type of signature. It sets |*out| to a newly allocated buffer containing the |
| 1593 | // result. This function returns true on success and false on failure. |
| 1594 | bool tls13_get_cert_verify_signature_input( |
| 1595 | SSL_HANDSHAKE *hs, Array<uint8_t> *out, |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 1596 | enum ssl_cert_verify_context_t cert_verify_context); |
| 1597 | |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 1598 | // ssl_is_alpn_protocol_allowed returns whether |protocol| is a valid server |
| 1599 | // selection for |ssl|'s client preferences. |
| 1600 | bool ssl_is_alpn_protocol_allowed(const SSL *ssl, Span<const uint8_t> protocol); |
| 1601 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1602 | // ssl_negotiate_alpn negotiates the ALPN extension, if applicable. It returns |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1603 | // true on successful negotiation or if nothing was negotiated. It returns false |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1604 | // and sets |*out_alert| to an alert on error. |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1605 | bool ssl_negotiate_alpn(SSL_HANDSHAKE *hs, uint8_t *out_alert, |
| 1606 | const SSL_CLIENT_HELLO *client_hello); |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 1607 | |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1608 | struct SSL_EXTENSION_TYPE { |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 1609 | uint16_t type; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1610 | bool *out_present; |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 1611 | CBS *out_data; |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1612 | }; |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 1613 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1614 | // ssl_parse_extensions parses a TLS extensions block out of |cbs| and advances |
| 1615 | // it. It writes the parsed extensions to pointers denoted by |ext_types|. On |
| 1616 | // success, it fills in the |out_present| and |out_data| fields and returns one. |
| 1617 | // Otherwise, it sets |*out_alert| to an alert to send and returns zero. Unknown |
| 1618 | // extensions are rejected unless |ignore_unknown| is 1. |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 1619 | int ssl_parse_extensions(const CBS *cbs, uint8_t *out_alert, |
| 1620 | const SSL_EXTENSION_TYPE *ext_types, |
Robert Sloan | 69939df | 2017-01-09 10:53:07 -0800 | [diff] [blame] | 1621 | size_t num_ext_types, int ignore_unknown); |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 1622 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1623 | // ssl_verify_peer_cert verifies the peer certificate for |hs|. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1624 | enum ssl_verify_result_t ssl_verify_peer_cert(SSL_HANDSHAKE *hs); |
| 1625 | |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1626 | enum ssl_hs_wait_t ssl_get_finished(SSL_HANDSHAKE *hs); |
| 1627 | bool ssl_send_finished(SSL_HANDSHAKE *hs); |
| 1628 | bool ssl_output_cert_chain(SSL *ssl); |
| 1629 | |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1630 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1631 | // SSLKEYLOGFILE functions. |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1632 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1633 | // ssl_log_secret logs |secret| with label |label|, if logging is enabled for |
| 1634 | // |ssl|. It returns one on success and zero on failure. |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1635 | int ssl_log_secret(const SSL *ssl, const char *label, const uint8_t *secret, |
| 1636 | size_t secret_len); |
| 1637 | |
| 1638 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1639 | // ClientHello functions. |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1640 | |
Robert Sloan | 4562e9d | 2017-10-02 10:26:51 -0700 | [diff] [blame] | 1641 | int ssl_client_hello_init(SSL *ssl, SSL_CLIENT_HELLO *out, |
| 1642 | const SSLMessage &msg); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1643 | |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 1644 | int ssl_client_hello_get_extension(const SSL_CLIENT_HELLO *client_hello, |
| 1645 | CBS *out, uint16_t extension_type); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1646 | |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 1647 | int ssl_client_cipher_list_contains_cipher(const SSL_CLIENT_HELLO *client_hello, |
| 1648 | uint16_t id); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1649 | |
| 1650 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1651 | // GREASE. |
Steven Valdez | bb1ceac | 2016-10-07 10:34:51 -0400 | [diff] [blame] | 1652 | |
| 1653 | enum ssl_grease_index_t { |
| 1654 | ssl_grease_cipher = 0, |
| 1655 | ssl_grease_group, |
| 1656 | ssl_grease_extension1, |
| 1657 | ssl_grease_extension2, |
| 1658 | ssl_grease_version, |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 1659 | ssl_grease_ticket_extension, |
Steven Valdez | bb1ceac | 2016-10-07 10:34:51 -0400 | [diff] [blame] | 1660 | }; |
| 1661 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1662 | // ssl_get_grease_value returns a GREASE value for |ssl|. For a given |
| 1663 | // connection, the values for each index will be deterministic. This allows the |
| 1664 | // same ClientHello be sent twice for a HelloRetryRequest or the same group be |
| 1665 | // advertised in both supported_groups and key_shares. |
Steven Valdez | bb1ceac | 2016-10-07 10:34:51 -0400 | [diff] [blame] | 1666 | uint16_t ssl_get_grease_value(const SSL *ssl, enum ssl_grease_index_t index); |
| 1667 | |
| 1668 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1669 | // Signature algorithms. |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 1670 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1671 | // tls1_parse_peer_sigalgs parses |sigalgs| as the list of peer signature |
| 1672 | // algorithms and saves them on |hs|. It returns one on success and zero on |
| 1673 | // error. |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 1674 | int tls1_parse_peer_sigalgs(SSL_HANDSHAKE *hs, const CBS *sigalgs); |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 1675 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1676 | // tls1_get_legacy_signature_algorithm sets |*out| to the signature algorithm |
| 1677 | // that should be used with |pkey| in TLS 1.1 and earlier. It returns one on |
| 1678 | // success and zero if |pkey| may not be used at those versions. |
Robert Sloan | 2424d84 | 2017-05-01 07:46:28 -0700 | [diff] [blame] | 1679 | int tls1_get_legacy_signature_algorithm(uint16_t *out, const EVP_PKEY *pkey); |
| 1680 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1681 | // tls1_choose_signature_algorithm sets |*out| to a signature algorithm for use |
| 1682 | // with |hs|'s private key based on the peer's preferences and the algorithms |
| 1683 | // supported. It returns one on success and zero on error. |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 1684 | int tls1_choose_signature_algorithm(SSL_HANDSHAKE *hs, uint16_t *out); |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 1685 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1686 | // tls12_add_verify_sigalgs adds the signature algorithms acceptable for the |
| 1687 | // peer signature to |out|. It returns one on success and zero on error. |
Robert Sloan | 572a4e2 | 2017-04-17 10:52:19 -0700 | [diff] [blame] | 1688 | int tls12_add_verify_sigalgs(const SSL *ssl, CBB *out); |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 1689 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1690 | // tls12_check_peer_sigalg checks if |sigalg| is acceptable for the peer |
| 1691 | // signature. It returns one on success and zero on error, setting |*out_alert| |
| 1692 | // to an alert to send. |
Robert Sloan | e56da3e | 2017-06-26 08:26:42 -0700 | [diff] [blame] | 1693 | int tls12_check_peer_sigalg(SSL *ssl, uint8_t *out_alert, uint16_t sigalg); |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 1694 | |
| 1695 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1696 | // Underdocumented functions. |
| 1697 | // |
| 1698 | // Functions below here haven't been touched up and may be underdocumented. |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 1699 | |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 1700 | #define TLSEXT_CHANNEL_ID_SIZE 128 |
| 1701 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1702 | // From RFC4492, used in encoding the curve type in ECParameters |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 1703 | #define NAMED_CURVE_TYPE 3 |
| 1704 | |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1705 | struct CERT { |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 1706 | EVP_PKEY *privatekey; |
Robert Sloan | 4d1ac50 | 2017-02-06 08:36:14 -0800 | [diff] [blame] | 1707 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1708 | // chain contains the certificate chain, with the leaf at the beginning. The |
| 1709 | // first element of |chain| may be NULL to indicate that the leaf certificate |
| 1710 | // has not yet been set. |
| 1711 | // If |chain| != NULL -> len(chain) >= 1 |
| 1712 | // If |chain[0]| == NULL -> len(chain) >= 2. |
| 1713 | // |chain[1..]| != NULL |
Robert Sloan | 4d1ac50 | 2017-02-06 08:36:14 -0800 | [diff] [blame] | 1714 | STACK_OF(CRYPTO_BUFFER) *chain; |
| 1715 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1716 | // x509_chain may contain a parsed copy of |chain[1..]|. This is only used as |
| 1717 | // a cache in order to implement “get0” functions that return a non-owning |
| 1718 | // pointer to the certificate chain. |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 1719 | STACK_OF(X509) *x509_chain; |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 1720 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1721 | // x509_leaf may contain a parsed copy of the first element of |chain|. This |
| 1722 | // is only used as a cache in order to implement “get0” functions that return |
| 1723 | // a non-owning pointer to the certificate chain. |
Robert Sloan | 4d1ac50 | 2017-02-06 08:36:14 -0800 | [diff] [blame] | 1724 | X509 *x509_leaf; |
| 1725 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1726 | // x509_stash contains the last |X509| object append to the chain. This is a |
| 1727 | // workaround for some third-party code that continue to use an |X509| object |
| 1728 | // even after passing ownership with an “add0” function. |
Robert Sloan | 4d1ac50 | 2017-02-06 08:36:14 -0800 | [diff] [blame] | 1729 | X509 *x509_stash; |
| 1730 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1731 | // key_method, if non-NULL, is a set of callbacks to call for private key |
| 1732 | // operations. |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 1733 | const SSL_PRIVATE_KEY_METHOD *key_method; |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 1734 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1735 | // x509_method contains pointers to functions that might deal with |X509| |
| 1736 | // compatibility, or might be a no-op, depending on the application. |
Robert Sloan | 5d62578 | 2017-02-13 09:55:39 -0800 | [diff] [blame] | 1737 | const SSL_X509_METHOD *x509_method; |
| 1738 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1739 | // sigalgs, if non-NULL, is the set of signature algorithms supported by |
| 1740 | // |privatekey| in decreasing order of preference. |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1741 | uint16_t *sigalgs; |
David Benjamin | f0c4a6c | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 1742 | size_t num_sigalgs; |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 1743 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1744 | // Certificate setup callback: if set is called whenever a |
| 1745 | // certificate may be required (client or server). the callback |
| 1746 | // can then examine any appropriate parameters and setup any |
| 1747 | // certificates required. This allows advanced applications |
| 1748 | // to select certificates on the fly: for example based on |
| 1749 | // supported signature algorithms or curves. |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 1750 | int (*cert_cb)(SSL *ssl, void *arg); |
| 1751 | void *cert_cb_arg; |
David Benjamin | 4969cc9 | 2016-04-22 15:02:23 -0400 | [diff] [blame] | 1752 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1753 | // Optional X509_STORE for certificate validation. If NULL the parent SSL_CTX |
| 1754 | // store is used instead. |
David Benjamin | 4969cc9 | 2016-04-22 15:02:23 -0400 | [diff] [blame] | 1755 | X509_STORE *verify_store; |
Robert Sloan | a94fe05 | 2017-02-21 08:49:28 -0800 | [diff] [blame] | 1756 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1757 | // Signed certificate timestamp list to be sent to the client, if requested |
Robert Sloan | a94fe05 | 2017-02-21 08:49:28 -0800 | [diff] [blame] | 1758 | CRYPTO_BUFFER *signed_cert_timestamp_list; |
| 1759 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1760 | // OCSP response to be sent to the client, if requested. |
Robert Sloan | a94fe05 | 2017-02-21 08:49:28 -0800 | [diff] [blame] | 1761 | CRYPTO_BUFFER *ocsp_response; |
| 1762 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1763 | // sid_ctx partitions the session space within a shared session cache or |
| 1764 | // ticket key. Only sessions with a matching value will be accepted. |
Robert Sloan | a94fe05 | 2017-02-21 08:49:28 -0800 | [diff] [blame] | 1765 | uint8_t sid_ctx_length; |
| 1766 | uint8_t sid_ctx[SSL_MAX_SID_CTX_LENGTH]; |
Robert Sloan | 572a4e2 | 2017-04-17 10:52:19 -0700 | [diff] [blame] | 1767 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1768 | // If enable_early_data is true, early data can be sent and accepted. |
| 1769 | bool enable_early_data:1; |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 1770 | }; |
| 1771 | |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1772 | // |SSL_PROTOCOL_METHOD| abstracts between TLS and DTLS. |
| 1773 | struct SSL_PROTOCOL_METHOD { |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 1774 | bool is_dtls; |
| 1775 | bool (*ssl_new)(SSL *ssl); |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1776 | void (*ssl_free)(SSL *ssl); |
| 1777 | // get_message sets |*out| to the current handshake message and returns true |
| 1778 | // if one has been received. It returns false if more input is needed. |
| 1779 | bool (*get_message)(SSL *ssl, SSLMessage *out); |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1780 | // next_message is called to release the current handshake message. |
| 1781 | void (*next_message)(SSL *ssl); |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 1782 | // Use the |ssl_open_handshake| wrapper. |
| 1783 | ssl_open_record_t (*open_handshake)(SSL *ssl, size_t *out_consumed, |
| 1784 | uint8_t *out_alert, Span<uint8_t> in); |
| 1785 | // Use the |ssl_open_change_cipher_spec| wrapper. |
| 1786 | ssl_open_record_t (*open_change_cipher_spec)(SSL *ssl, size_t *out_consumed, |
| 1787 | uint8_t *out_alert, |
| 1788 | Span<uint8_t> in); |
| 1789 | // Use the |ssl_open_app_data| wrapper. |
| 1790 | ssl_open_record_t (*open_app_data)(SSL *ssl, Span<uint8_t> *out, |
| 1791 | size_t *out_consumed, uint8_t *out_alert, |
| 1792 | Span<uint8_t> in); |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1793 | int (*write_app_data)(SSL *ssl, bool *out_needs_handshake, const uint8_t *buf, |
| 1794 | int len); |
| 1795 | int (*dispatch_alert)(SSL *ssl); |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1796 | // init_message begins a new handshake message of type |type|. |cbb| is the |
| 1797 | // root CBB to be passed into |finish_message|. |*body| is set to a child CBB |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 1798 | // the caller should write to. It returns true on success and false on error. |
| 1799 | bool (*init_message)(SSL *ssl, CBB *cbb, CBB *body, uint8_t type); |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1800 | // finish_message finishes a handshake message. It sets |*out_msg| to the |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 1801 | // serialized message. It returns true on success and false on error. |
| 1802 | bool (*finish_message)(SSL *ssl, CBB *cbb, bssl::Array<uint8_t> *out_msg); |
| 1803 | // add_message adds a handshake message to the pending flight. It returns |
| 1804 | // true on success and false on error. |
| 1805 | bool (*add_message)(SSL *ssl, bssl::Array<uint8_t> msg); |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1806 | // add_change_cipher_spec adds a ChangeCipherSpec record to the pending |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 1807 | // flight. It returns true on success and false on error. |
| 1808 | bool (*add_change_cipher_spec)(SSL *ssl); |
| 1809 | // add_alert adds an alert to the pending flight. It returns true on success |
| 1810 | // and false on error. |
| 1811 | bool (*add_alert)(SSL *ssl, uint8_t level, uint8_t desc); |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1812 | // flush_flight flushes the pending flight to the transport. It returns one on |
| 1813 | // success and <= 0 on error. |
| 1814 | int (*flush_flight)(SSL *ssl); |
| 1815 | // on_handshake_complete is called when the handshake is complete. |
| 1816 | void (*on_handshake_complete)(SSL *ssl); |
| 1817 | // set_read_state sets |ssl|'s read cipher state to |aead_ctx|. It returns |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 1818 | // true on success and false if changing the read state is forbidden at this |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1819 | // point. |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 1820 | bool (*set_read_state)(SSL *ssl, UniquePtr<SSLAEADContext> aead_ctx); |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1821 | // set_write_state sets |ssl|'s write cipher state to |aead_ctx|. It returns |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 1822 | // true on success and false if changing the write state is forbidden at this |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1823 | // point. |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 1824 | bool (*set_write_state)(SSL *ssl, UniquePtr<SSLAEADContext> aead_ctx); |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1825 | }; |
| 1826 | |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 1827 | // The following wrappers call |open_*| but handle |read_shutdown| correctly. |
| 1828 | |
| 1829 | // ssl_open_handshake processes a record from |in| for reading a handshake |
| 1830 | // message. |
| 1831 | ssl_open_record_t ssl_open_handshake(SSL *ssl, size_t *out_consumed, |
| 1832 | uint8_t *out_alert, Span<uint8_t> in); |
| 1833 | |
| 1834 | // ssl_open_change_cipher_spec processes a record from |in| for reading a |
| 1835 | // ChangeCipherSpec. |
| 1836 | ssl_open_record_t ssl_open_change_cipher_spec(SSL *ssl, size_t *out_consumed, |
| 1837 | uint8_t *out_alert, |
| 1838 | Span<uint8_t> in); |
| 1839 | |
| 1840 | // ssl_open_app_data processes a record from |in| for reading application data. |
| 1841 | // On success, it returns |ssl_open_record_success| and sets |*out| to the |
| 1842 | // input. If it encounters a post-handshake message, it returns |
| 1843 | // |ssl_open_record_discard|. The caller should then retry, after processing any |
| 1844 | // messages received with |get_message|. |
| 1845 | ssl_open_record_t ssl_open_app_data(SSL *ssl, Span<uint8_t> *out, |
| 1846 | size_t *out_consumed, uint8_t *out_alert, |
| 1847 | Span<uint8_t> in); |
| 1848 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1849 | // ssl_crypto_x509_method provides the |SSL_X509_METHOD| functions using |
| 1850 | // crypto/x509. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 1851 | extern const SSL_X509_METHOD ssl_crypto_x509_method; |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 1852 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 1853 | // ssl_noop_x509_method provides the |SSL_X509_METHOD| functions that avoid |
| 1854 | // crypto/x509. |
Robert Sloan | 8437709 | 2017-08-14 09:33:19 -0700 | [diff] [blame] | 1855 | extern const SSL_X509_METHOD ssl_noop_x509_method; |
| 1856 | |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 1857 | // ssl_cipher_preference_list_st contains a list of SSL_CIPHERs with |
| 1858 | // equal-preference groups. For TLS clients, the groups are moot because the |
| 1859 | // server picks the cipher and groups cannot be expressed on the wire. However, |
| 1860 | // for servers, the equal-preference groups allow the client's preferences to |
| 1861 | // be partially respected. (This only has an effect with |
| 1862 | // SSL_OP_CIPHER_SERVER_PREFERENCE). |
| 1863 | // |
| 1864 | // The equal-preference groups are expressed by grouping SSL_CIPHERs together. |
| 1865 | // All elements of a group have the same priority: no ordering is expressed |
| 1866 | // within a group. |
| 1867 | // |
| 1868 | // The values in |ciphers| are in one-to-one correspondence with |
| 1869 | // |in_group_flags|. (That is, sk_SSL_CIPHER_num(ciphers) is the number of |
| 1870 | // bytes in |in_group_flags|.) The bytes in |in_group_flags| are either 1, to |
| 1871 | // indicate that the corresponding SSL_CIPHER is not the last element of a |
| 1872 | // group, or 0 to indicate that it is. |
| 1873 | // |
| 1874 | // For example, if |in_group_flags| contains all zeros then that indicates a |
| 1875 | // traditional, fully-ordered preference. Every SSL_CIPHER is the last element |
| 1876 | // of the group (i.e. they are all in a one-element group). |
| 1877 | // |
| 1878 | // For a more complex example, consider: |
| 1879 | // ciphers: A B C D E F |
| 1880 | // in_group_flags: 1 1 0 0 1 0 |
| 1881 | // |
| 1882 | // That would express the following, order: |
| 1883 | // |
| 1884 | // A E |
| 1885 | // B -> D -> F |
| 1886 | // C |
| 1887 | struct ssl_cipher_preference_list_st { |
| 1888 | STACK_OF(SSL_CIPHER) *ciphers; |
| 1889 | uint8_t *in_group_flags; |
| 1890 | }; |
| 1891 | |
| 1892 | struct tlsext_ticket_key { |
| 1893 | static constexpr bool kAllowUniquePtr = true; |
| 1894 | |
| 1895 | uint8_t name[SSL_TICKET_KEY_NAME_LEN]; |
| 1896 | uint8_t hmac_key[16]; |
| 1897 | uint8_t aes_key[16]; |
| 1898 | // next_rotation_tv_sec is the time (in seconds from the epoch) when the |
| 1899 | // current key should be superseded by a new key, or the time when a previous |
| 1900 | // key should be dropped. If zero, then the key should not be automatically |
| 1901 | // rotated. |
| 1902 | uint64_t next_rotation_tv_sec; |
| 1903 | }; |
| 1904 | |
| 1905 | } // namespace bssl |
| 1906 | |
| 1907 | DECLARE_LHASH_OF(SSL_SESSION) |
| 1908 | |
| 1909 | namespace bssl { |
| 1910 | |
| 1911 | // SSLContext backs the public |SSL_CTX| type. Due to compatibility constraints, |
| 1912 | // it is a base class for |ssl_ctx_st|. |
| 1913 | struct SSLContext { |
| 1914 | const SSL_PROTOCOL_METHOD *method; |
| 1915 | const SSL_X509_METHOD *x509_method; |
| 1916 | |
| 1917 | // lock is used to protect various operations on this object. |
| 1918 | CRYPTO_MUTEX lock; |
| 1919 | |
| 1920 | // conf_max_version is the maximum acceptable protocol version configured by |
| 1921 | // |SSL_CTX_set_max_proto_version|. Note this version is normalized in DTLS |
| 1922 | // and is further constrainted by |SSL_OP_NO_*|. |
| 1923 | uint16_t conf_max_version; |
| 1924 | |
| 1925 | // conf_min_version is the minimum acceptable protocol version configured by |
| 1926 | // |SSL_CTX_set_min_proto_version|. Note this version is normalized in DTLS |
| 1927 | // and is further constrainted by |SSL_OP_NO_*|. |
| 1928 | uint16_t conf_min_version; |
| 1929 | |
| 1930 | // tls13_variant is the variant of TLS 1.3 we are using for this |
| 1931 | // configuration. |
| 1932 | enum tls13_variant_t tls13_variant; |
| 1933 | |
| 1934 | struct ssl_cipher_preference_list_st *cipher_list; |
| 1935 | |
| 1936 | X509_STORE *cert_store; |
| 1937 | LHASH_OF(SSL_SESSION) *sessions; |
| 1938 | // Most session-ids that will be cached, default is |
| 1939 | // SSL_SESSION_CACHE_MAX_SIZE_DEFAULT. 0 is unlimited. |
| 1940 | unsigned long session_cache_size; |
| 1941 | SSL_SESSION *session_cache_head; |
| 1942 | SSL_SESSION *session_cache_tail; |
| 1943 | |
| 1944 | // handshakes_since_cache_flush is the number of successful handshakes since |
| 1945 | // the last cache flush. |
| 1946 | int handshakes_since_cache_flush; |
| 1947 | |
| 1948 | // This can have one of 2 values, ored together, |
| 1949 | // SSL_SESS_CACHE_CLIENT, |
| 1950 | // SSL_SESS_CACHE_SERVER, |
| 1951 | // Default is SSL_SESSION_CACHE_SERVER, which means only |
| 1952 | // SSL_accept which cache SSL_SESSIONS. |
| 1953 | int session_cache_mode; |
| 1954 | |
| 1955 | // session_timeout is the default lifetime for new sessions in TLS 1.2 and |
| 1956 | // earlier, in seconds. |
| 1957 | uint32_t session_timeout; |
| 1958 | |
| 1959 | // session_psk_dhe_timeout is the default lifetime for new sessions in TLS |
| 1960 | // 1.3, in seconds. |
| 1961 | uint32_t session_psk_dhe_timeout; |
| 1962 | |
| 1963 | // If this callback is not null, it will be called each time a session id is |
| 1964 | // added to the cache. If this function returns 1, it means that the |
| 1965 | // callback will do a SSL_SESSION_free() when it has finished using it. |
| 1966 | // Otherwise, on 0, it means the callback has finished with it. If |
| 1967 | // remove_session_cb is not null, it will be called when a session-id is |
| 1968 | // removed from the cache. After the call, OpenSSL will SSL_SESSION_free() |
| 1969 | // it. |
| 1970 | int (*new_session_cb)(SSL *ssl, SSL_SESSION *sess); |
| 1971 | void (*remove_session_cb)(SSL_CTX *ctx, SSL_SESSION *sess); |
| 1972 | SSL_SESSION *(*get_session_cb)(SSL *ssl, const uint8_t *data, int len, |
| 1973 | int *copy); |
| 1974 | SSL_SESSION *(*get_session_cb_legacy)(SSL *ssl, uint8_t *data, int len, |
| 1975 | int *copy); |
| 1976 | |
| 1977 | CRYPTO_refcount_t references; |
| 1978 | |
| 1979 | // if defined, these override the X509_verify_cert() calls |
| 1980 | int (*app_verify_callback)(X509_STORE_CTX *store_ctx, void *arg); |
| 1981 | void *app_verify_arg; |
| 1982 | |
| 1983 | enum ssl_verify_result_t (*custom_verify_callback)(SSL *ssl, |
| 1984 | uint8_t *out_alert); |
| 1985 | |
| 1986 | // Default password callback. |
| 1987 | pem_password_cb *default_passwd_callback; |
| 1988 | |
| 1989 | // Default password callback user data. |
| 1990 | void *default_passwd_callback_userdata; |
| 1991 | |
| 1992 | // get client cert callback |
| 1993 | int (*client_cert_cb)(SSL *ssl, X509 **out_x509, EVP_PKEY **out_pkey); |
| 1994 | |
| 1995 | // get channel id callback |
| 1996 | void (*channel_id_cb)(SSL *ssl, EVP_PKEY **out_pkey); |
| 1997 | |
| 1998 | CRYPTO_EX_DATA ex_data; |
| 1999 | |
| 2000 | // custom_*_extensions stores any callback sets for custom extensions. Note |
| 2001 | // that these pointers will be NULL if the stack would otherwise be empty. |
| 2002 | STACK_OF(SSL_CUSTOM_EXTENSION) *client_custom_extensions; |
| 2003 | STACK_OF(SSL_CUSTOM_EXTENSION) *server_custom_extensions; |
| 2004 | |
| 2005 | // Default values used when no per-SSL value is defined follow |
| 2006 | |
| 2007 | void (*info_callback)(const SSL *ssl, int type, int value); |
| 2008 | |
| 2009 | // what we put in client cert requests |
| 2010 | STACK_OF(CRYPTO_BUFFER) *client_CA; |
| 2011 | |
| 2012 | // cached_x509_client_CA is a cache of parsed versions of the elements of |
| 2013 | // |client_CA|. |
| 2014 | STACK_OF(X509_NAME) *cached_x509_client_CA; |
| 2015 | |
| 2016 | |
| 2017 | // Default values to use in SSL structures follow (these are copied by |
| 2018 | // SSL_new) |
| 2019 | |
| 2020 | uint32_t options; |
| 2021 | uint32_t mode; |
| 2022 | uint32_t max_cert_list; |
| 2023 | |
| 2024 | CERT *cert; |
| 2025 | |
| 2026 | // callback that allows applications to peek at protocol messages |
| 2027 | void (*msg_callback)(int write_p, int version, int content_type, |
| 2028 | const void *buf, size_t len, SSL *ssl, void *arg); |
| 2029 | void *msg_callback_arg; |
| 2030 | |
| 2031 | int verify_mode; |
| 2032 | int (*default_verify_callback)( |
| 2033 | int ok, X509_STORE_CTX *ctx); // called 'verify_callback' in the SSL |
| 2034 | |
| 2035 | X509_VERIFY_PARAM *param; |
| 2036 | |
| 2037 | // select_certificate_cb is called before most ClientHello processing and |
| 2038 | // before the decision whether to resume a session is made. See |
| 2039 | // |ssl_select_cert_result_t| for details of the return values. |
| 2040 | enum ssl_select_cert_result_t (*select_certificate_cb)( |
| 2041 | const SSL_CLIENT_HELLO *); |
| 2042 | |
| 2043 | // dos_protection_cb is called once the resumption decision for a ClientHello |
| 2044 | // has been made. It returns one to continue the handshake or zero to |
| 2045 | // abort. |
| 2046 | int (*dos_protection_cb) (const SSL_CLIENT_HELLO *); |
| 2047 | |
| 2048 | // Maximum amount of data to send in one fragment. actual record size can be |
| 2049 | // more than this due to padding and MAC overheads. |
| 2050 | uint16_t max_send_fragment; |
| 2051 | |
| 2052 | // TLS extensions servername callback |
| 2053 | int (*tlsext_servername_callback)(SSL *, int *, void *); |
| 2054 | void *tlsext_servername_arg; |
| 2055 | |
| 2056 | // RFC 4507 session ticket keys. |tlsext_ticket_key_current| may be NULL |
| 2057 | // before the first handshake and |tlsext_ticket_key_prev| may be NULL at any |
| 2058 | // time. Automatically generated ticket keys are rotated as needed at |
| 2059 | // handshake time. Hence, all access must be synchronized through |lock|. |
| 2060 | struct tlsext_ticket_key *tlsext_ticket_key_current; |
| 2061 | struct tlsext_ticket_key *tlsext_ticket_key_prev; |
| 2062 | |
| 2063 | // Callback to support customisation of ticket key setting |
| 2064 | int (*tlsext_ticket_key_cb)(SSL *ssl, uint8_t *name, uint8_t *iv, |
| 2065 | EVP_CIPHER_CTX *ectx, HMAC_CTX *hctx, int enc); |
| 2066 | |
| 2067 | // Server-only: psk_identity_hint is the default identity hint to send in |
| 2068 | // PSK-based key exchanges. |
| 2069 | char *psk_identity_hint; |
| 2070 | |
| 2071 | unsigned int (*psk_client_callback)(SSL *ssl, const char *hint, |
| 2072 | char *identity, |
| 2073 | unsigned int max_identity_len, |
| 2074 | uint8_t *psk, unsigned int max_psk_len); |
| 2075 | unsigned int (*psk_server_callback)(SSL *ssl, const char *identity, |
| 2076 | uint8_t *psk, unsigned int max_psk_len); |
| 2077 | |
| 2078 | |
| 2079 | // Next protocol negotiation information |
| 2080 | // (for experimental NPN extension). |
| 2081 | |
| 2082 | // For a server, this contains a callback function by which the set of |
| 2083 | // advertised protocols can be provided. |
| 2084 | int (*next_protos_advertised_cb)(SSL *ssl, const uint8_t **out, |
| 2085 | unsigned *out_len, void *arg); |
| 2086 | void *next_protos_advertised_cb_arg; |
| 2087 | // For a client, this contains a callback function that selects the |
| 2088 | // next protocol from the list provided by the server. |
| 2089 | int (*next_proto_select_cb)(SSL *ssl, uint8_t **out, uint8_t *out_len, |
| 2090 | const uint8_t *in, unsigned in_len, void *arg); |
| 2091 | void *next_proto_select_cb_arg; |
| 2092 | |
| 2093 | // ALPN information |
| 2094 | // (we are in the process of transitioning from NPN to ALPN.) |
| 2095 | |
| 2096 | // For a server, this contains a callback function that allows the |
| 2097 | // server to select the protocol for the connection. |
| 2098 | // out: on successful return, this must point to the raw protocol |
| 2099 | // name (without the length prefix). |
| 2100 | // outlen: on successful return, this contains the length of |*out|. |
| 2101 | // in: points to the client's list of supported protocols in |
| 2102 | // wire-format. |
| 2103 | // inlen: the length of |in|. |
| 2104 | int (*alpn_select_cb)(SSL *ssl, const uint8_t **out, uint8_t *out_len, |
| 2105 | const uint8_t *in, unsigned in_len, void *arg); |
| 2106 | void *alpn_select_cb_arg; |
| 2107 | |
| 2108 | // For a client, this contains the list of supported protocols in wire |
| 2109 | // format. |
| 2110 | uint8_t *alpn_client_proto_list; |
| 2111 | unsigned alpn_client_proto_list_len; |
| 2112 | |
| 2113 | // SRTP profiles we are willing to do from RFC 5764 |
| 2114 | STACK_OF(SRTP_PROTECTION_PROFILE) *srtp_profiles; |
| 2115 | |
| 2116 | // Supported group values inherited by SSL structure |
| 2117 | size_t supported_group_list_len; |
| 2118 | uint16_t *supported_group_list; |
| 2119 | |
| 2120 | // The client's Channel ID private key. |
| 2121 | EVP_PKEY *tlsext_channel_id_private; |
| 2122 | |
| 2123 | // keylog_callback, if not NULL, is the key logging callback. See |
| 2124 | // |SSL_CTX_set_keylog_callback|. |
| 2125 | void (*keylog_callback)(const SSL *ssl, const char *line); |
| 2126 | |
| 2127 | // current_time_cb, if not NULL, is the function to use to get the current |
| 2128 | // time. It sets |*out_clock| to the current time. The |ssl| argument is |
| 2129 | // always NULL. See |SSL_CTX_set_current_time_cb|. |
| 2130 | void (*current_time_cb)(const SSL *ssl, struct timeval *out_clock); |
| 2131 | |
| 2132 | // pool is used for all |CRYPTO_BUFFER|s in case we wish to share certificate |
| 2133 | // memory. |
| 2134 | CRYPTO_BUFFER_POOL *pool; |
| 2135 | |
| 2136 | // ticket_aead_method contains function pointers for opening and sealing |
| 2137 | // session tickets. |
| 2138 | const SSL_TICKET_AEAD_METHOD *ticket_aead_method; |
| 2139 | |
| 2140 | // verify_sigalgs, if not empty, is the set of signature algorithms |
| 2141 | // accepted from the peer in decreasing order of preference. |
| 2142 | uint16_t *verify_sigalgs; |
| 2143 | size_t num_verify_sigalgs; |
| 2144 | |
| 2145 | // retain_only_sha256_of_client_certs is true if we should compute the SHA256 |
| 2146 | // hash of the peer's certificate and then discard it to save memory and |
| 2147 | // session space. Only effective on the server side. |
| 2148 | bool retain_only_sha256_of_client_certs:1; |
| 2149 | |
| 2150 | // quiet_shutdown is true if the connection should not send a close_notify on |
| 2151 | // shutdown. |
| 2152 | bool quiet_shutdown:1; |
| 2153 | |
| 2154 | // ocsp_stapling_enabled is only used by client connections and indicates |
| 2155 | // whether OCSP stapling will be requested. |
| 2156 | bool ocsp_stapling_enabled:1; |
| 2157 | |
| 2158 | // If true, a client will request certificate timestamps. |
| 2159 | bool signed_cert_timestamps_enabled:1; |
| 2160 | |
| 2161 | // tlsext_channel_id_enabled is one if Channel ID is enabled and zero |
| 2162 | // otherwise. For a server, means that we'll accept Channel IDs from clients. |
| 2163 | // For a client, means that we'll advertise support. |
| 2164 | bool tlsext_channel_id_enabled:1; |
| 2165 | |
| 2166 | // grease_enabled is one if draft-davidben-tls-grease-01 is enabled and zero |
| 2167 | // otherwise. |
| 2168 | bool grease_enabled:1; |
| 2169 | |
| 2170 | // allow_unknown_alpn_protos is one if the client allows unsolicited ALPN |
| 2171 | // protocols from the peer. |
| 2172 | bool allow_unknown_alpn_protos:1; |
| 2173 | |
| 2174 | // ed25519_enabled is one if Ed25519 is advertised in the handshake. |
| 2175 | bool ed25519_enabled:1; |
| 2176 | }; |
| 2177 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2178 | // An ssl_shutdown_t describes the shutdown state of one end of the connection, |
| 2179 | // whether it is alive or has been shutdown via close_notify or fatal alert. |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2180 | enum ssl_shutdown_t { |
| 2181 | ssl_shutdown_none = 0, |
| 2182 | ssl_shutdown_close_notify = 1, |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 2183 | ssl_shutdown_error = 2, |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2184 | }; |
| 2185 | |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2186 | struct SSL3_STATE { |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2187 | static constexpr bool kAllowUniquePtr = true; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2188 | |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2189 | SSL3_STATE(); |
| 2190 | ~SSL3_STATE(); |
| 2191 | |
| 2192 | uint8_t read_sequence[8] = {0}; |
| 2193 | uint8_t write_sequence[8] = {0}; |
| 2194 | |
| 2195 | uint8_t server_random[SSL3_RANDOM_SIZE] = {0}; |
| 2196 | uint8_t client_random[SSL3_RANDOM_SIZE] = {0}; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2197 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2198 | // read_buffer holds data from the transport to be processed. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2199 | SSLBuffer read_buffer; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2200 | // write_buffer holds data to be written to the transport. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2201 | SSLBuffer write_buffer; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2202 | |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 2203 | // pending_app_data is the unconsumed application data. It points into |
| 2204 | // |read_buffer|. |
| 2205 | Span<uint8_t> pending_app_data; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2206 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2207 | // partial write - check the numbers match |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2208 | unsigned int wnum = 0; // number of bytes sent so far |
| 2209 | int wpend_tot = 0; // number bytes written |
| 2210 | int wpend_type = 0; |
| 2211 | int wpend_ret = 0; // number of bytes submitted |
| 2212 | const uint8_t *wpend_buf = nullptr; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2213 | |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 2214 | // read_shutdown is the shutdown state for the read half of the connection. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2215 | enum ssl_shutdown_t read_shutdown = ssl_shutdown_none; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2216 | |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 2217 | // write_shutdown is the shutdown state for the write half of the connection. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2218 | enum ssl_shutdown_t write_shutdown = ssl_shutdown_none; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2219 | |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 2220 | // read_error, if |read_shutdown| is |ssl_shutdown_error|, is the error for |
| 2221 | // the receive half of the connection. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2222 | UniquePtr<ERR_SAVE_STATE> read_error; |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 2223 | |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2224 | int alert_dispatch = 0; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2225 | |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2226 | int total_renegotiations = 0; |
| 2227 | |
| 2228 | // This holds a variable that indicates what we were doing when a 0 or -1 is |
| 2229 | // returned. This is needed for non-blocking IO so we know what request |
| 2230 | // needs re-doing when in SSL_accept or SSL_connect |
| 2231 | int rwstate = SSL_NOTHING; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2232 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2233 | // early_data_skipped is the amount of early data that has been skipped by the |
| 2234 | // record layer. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2235 | uint16_t early_data_skipped = 0; |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 2236 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2237 | // empty_record_count is the number of consecutive empty records received. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2238 | uint8_t empty_record_count = 0; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2239 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2240 | // warning_alert_count is the number of consecutive warning alerts |
| 2241 | // received. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2242 | uint8_t warning_alert_count = 0; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2243 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2244 | // key_update_count is the number of consecutive KeyUpdates received. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2245 | uint8_t key_update_count = 0; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2246 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2247 | // skip_early_data instructs the record layer to skip unexpected early data |
| 2248 | // messages when 0RTT is rejected. |
| 2249 | bool skip_early_data:1; |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 2250 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2251 | // have_version is true if the connection's final version is known. Otherwise |
| 2252 | // the version has not been negotiated yet. |
| 2253 | bool have_version:1; |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 2254 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2255 | // v2_hello_done is true if the peer's V2ClientHello, if any, has been handled |
| 2256 | // and future messages should use the record layer. |
| 2257 | bool v2_hello_done:1; |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 2258 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2259 | // is_v2_hello is true if the current handshake message was derived from a |
| 2260 | // V2ClientHello rather than received from the peer directly. |
| 2261 | bool is_v2_hello:1; |
Robert Sloan | 4d1ac50 | 2017-02-06 08:36:14 -0800 | [diff] [blame] | 2262 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2263 | // has_message is true if the current handshake message has been returned |
| 2264 | // at least once by |get_message| and false otherwise. |
| 2265 | bool has_message:1; |
Robert Sloan | 8437709 | 2017-08-14 09:33:19 -0700 | [diff] [blame] | 2266 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2267 | // initial_handshake_complete is true if the initial handshake has |
| 2268 | // completed. |
| 2269 | bool initial_handshake_complete:1; |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 2270 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2271 | // session_reused indicates whether a session was resumed. |
| 2272 | bool session_reused:1; |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 2273 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2274 | bool send_connection_binding:1; |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 2275 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2276 | // In a client, this means that the server supported Channel ID and that a |
| 2277 | // Channel ID was sent. In a server it means that we echoed support for |
| 2278 | // Channel IDs and that tlsext_channel_id will be valid after the |
| 2279 | // handshake. |
| 2280 | bool tlsext_channel_id_valid:1; |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 2281 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2282 | // key_update_pending is true if we have a KeyUpdate acknowledgment |
| 2283 | // outstanding. |
| 2284 | bool key_update_pending:1; |
Robert Sloan | 572a4e2 | 2017-04-17 10:52:19 -0700 | [diff] [blame] | 2285 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2286 | // wpend_pending is true if we have a pending write outstanding. |
| 2287 | bool wpend_pending:1; |
Robert Sloan | e56da3e | 2017-06-26 08:26:42 -0700 | [diff] [blame] | 2288 | |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2289 | uint8_t send_alert[2] = {0}; |
| 2290 | |
| 2291 | // hs_buf is the buffer of handshake data to process. |
| 2292 | UniquePtr<BUF_MEM> hs_buf; |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 2293 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2294 | // pending_flight is the pending outgoing flight. This is used to flush each |
| 2295 | // handshake flight in a single write. |write_buffer| must be written out |
| 2296 | // before this data. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2297 | UniquePtr<BUF_MEM> pending_flight; |
Robert Sloan | 4d1ac50 | 2017-02-06 08:36:14 -0800 | [diff] [blame] | 2298 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2299 | // pending_flight_offset is the number of bytes of |pending_flight| which have |
| 2300 | // been successfully written. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2301 | uint32_t pending_flight_offset = 0; |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 2302 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2303 | // aead_read_ctx is the current read cipher state. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2304 | UniquePtr<SSLAEADContext> aead_read_ctx; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2305 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2306 | // aead_write_ctx is the current write cipher state. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2307 | UniquePtr<SSLAEADContext> aead_write_ctx; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2308 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2309 | // hs is the handshake state for the current handshake or NULL if there isn't |
| 2310 | // one. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2311 | UniquePtr<SSL_HANDSHAKE> hs; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2312 | |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2313 | uint8_t write_traffic_secret[EVP_MAX_MD_SIZE] = {0}; |
| 2314 | uint8_t read_traffic_secret[EVP_MAX_MD_SIZE] = {0}; |
| 2315 | uint8_t exporter_secret[EVP_MAX_MD_SIZE] = {0}; |
| 2316 | uint8_t early_exporter_secret[EVP_MAX_MD_SIZE] = {0}; |
| 2317 | uint8_t write_traffic_secret_len = 0; |
| 2318 | uint8_t read_traffic_secret_len = 0; |
| 2319 | uint8_t exporter_secret_len = 0; |
| 2320 | uint8_t early_exporter_secret_len = 0; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2321 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2322 | // Connection binding to prevent renegotiation attacks |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2323 | uint8_t previous_client_finished[12] = {0}; |
| 2324 | uint8_t previous_client_finished_len = 0; |
| 2325 | uint8_t previous_server_finished_len = 0; |
| 2326 | uint8_t previous_server_finished[12] = {0}; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2327 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2328 | // established_session is the session established by the connection. This |
| 2329 | // session is only filled upon the completion of the handshake and is |
| 2330 | // immutable. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2331 | UniquePtr<SSL_SESSION> established_session; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2332 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2333 | // Next protocol negotiation. For the client, this is the protocol that we |
| 2334 | // sent in NextProtocol and is set when handling ServerHello extensions. |
| 2335 | // |
| 2336 | // For a server, this is the client's selected_protocol from NextProtocol and |
| 2337 | // is set when handling the NextProtocol message, before the Finished |
| 2338 | // message. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2339 | Array<uint8_t> next_proto_negotiated; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2340 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2341 | // ALPN information |
| 2342 | // (we are in the process of transitioning from NPN to ALPN.) |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2343 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2344 | // In a server these point to the selected ALPN protocol after the |
| 2345 | // ClientHello has been processed. In a client these contain the protocol |
| 2346 | // that the server selected once the ServerHello has been processed. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2347 | Array<uint8_t> alpn_selected; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2348 | |
Robert Sloan | d1d118f | 2017-09-11 09:00:48 -0700 | [diff] [blame] | 2349 | // hostname, on the server, is the value of the SNI extension. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2350 | UniquePtr<char> hostname; |
Robert Sloan | d1d118f | 2017-09-11 09:00:48 -0700 | [diff] [blame] | 2351 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2352 | // For a server: |
| 2353 | // If |tlsext_channel_id_valid| is true, then this contains the |
| 2354 | // verified Channel ID from the client: a P256 point, (x,y), where |
| 2355 | // each are big-endian values. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2356 | uint8_t tlsext_channel_id[64] = {0}; |
Robert Sloan | 1c9db53 | 2017-03-13 08:03:59 -0700 | [diff] [blame] | 2357 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2358 | // ticket_age_skew is the difference, in seconds, between the client-sent |
| 2359 | // ticket age and the server-computed value in TLS 1.3 server connections |
| 2360 | // which resumed a session. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2361 | int32_t ticket_age_skew = 0; |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2362 | }; |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2363 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2364 | // lengths of messages |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 2365 | #define DTLS1_COOKIE_LENGTH 256 |
| 2366 | |
| 2367 | #define DTLS1_RT_HEADER_LENGTH 13 |
| 2368 | |
| 2369 | #define DTLS1_HM_HEADER_LENGTH 12 |
| 2370 | |
| 2371 | #define DTLS1_CCS_HEADER_LENGTH 1 |
| 2372 | |
| 2373 | #define DTLS1_AL_HEADER_LENGTH 2 |
| 2374 | |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 2375 | struct hm_header_st { |
| 2376 | uint8_t type; |
| 2377 | uint32_t msg_len; |
| 2378 | uint16_t seq; |
| 2379 | uint32_t frag_off; |
| 2380 | uint32_t frag_len; |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 2381 | }; |
| 2382 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2383 | // An hm_fragment is an incoming DTLS message, possibly not yet assembled. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2384 | struct hm_fragment { |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2385 | static constexpr bool kAllowUniquePtr = true; |
| 2386 | |
| 2387 | hm_fragment() {} |
| 2388 | hm_fragment(const hm_fragment &) = delete; |
| 2389 | hm_fragment &operator=(const hm_fragment &) = delete; |
| 2390 | |
| 2391 | ~hm_fragment(); |
| 2392 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2393 | // type is the type of the message. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2394 | uint8_t type = 0; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2395 | // seq is the sequence number of this message. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2396 | uint16_t seq = 0; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2397 | // msg_len is the length of the message body. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2398 | uint32_t msg_len = 0; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2399 | // data is a pointer to the message, including message header. It has length |
| 2400 | // |DTLS1_HM_HEADER_LENGTH| + |msg_len|. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2401 | uint8_t *data = nullptr; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2402 | // reassembly is a bitmask of |msg_len| bits corresponding to which parts of |
| 2403 | // the message have been received. It is NULL if the message is complete. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2404 | uint8_t *reassembly = nullptr; |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2405 | }; |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 2406 | |
Robert Sloan | 7d422bc | 2017-03-06 10:04:29 -0800 | [diff] [blame] | 2407 | struct OPENSSL_timeval { |
| 2408 | uint64_t tv_sec; |
| 2409 | uint32_t tv_usec; |
| 2410 | }; |
| 2411 | |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2412 | struct DTLS1_STATE { |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2413 | static constexpr bool kAllowUniquePtr = true; |
| 2414 | |
| 2415 | DTLS1_STATE(); |
| 2416 | ~DTLS1_STATE(); |
| 2417 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2418 | // has_change_cipher_spec is true if we have received a ChangeCipherSpec from |
| 2419 | // the peer in this epoch. |
Robert Sloan | fe7cd21 | 2017-08-07 09:03:39 -0700 | [diff] [blame] | 2420 | bool has_change_cipher_spec:1; |
| 2421 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2422 | // outgoing_messages_complete is true if |outgoing_messages| has been |
| 2423 | // completed by an attempt to flush it. Future calls to |add_message| and |
| 2424 | // |add_change_cipher_spec| will start a new flight. |
Robert Sloan | fe7cd21 | 2017-08-07 09:03:39 -0700 | [diff] [blame] | 2425 | bool outgoing_messages_complete:1; |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 2426 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2427 | // flight_has_reply is true if the current outgoing flight is complete and has |
| 2428 | // processed at least one message. This is used to detect whether we or the |
| 2429 | // peer sent the final flight. |
Robert Sloan | 8f860b1 | 2017-08-28 07:37:06 -0700 | [diff] [blame] | 2430 | bool flight_has_reply:1; |
| 2431 | |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2432 | uint8_t cookie[DTLS1_COOKIE_LENGTH] = {0}; |
| 2433 | size_t cookie_len = 0; |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 2434 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2435 | // The current data and handshake epoch. This is initially undefined, and |
| 2436 | // starts at zero once the initial handshake is completed. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2437 | uint16_t r_epoch = 0; |
| 2438 | uint16_t w_epoch = 0; |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 2439 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2440 | // records being received in the current epoch |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 2441 | DTLS1_BITMAP bitmap; |
| 2442 | |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2443 | uint16_t handshake_write_seq = 0; |
| 2444 | uint16_t handshake_read_seq = 0; |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 2445 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2446 | // save last sequence number for retransmissions |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2447 | uint8_t last_write_sequence[8] = {0}; |
| 2448 | UniquePtr<SSLAEADContext> last_aead_write_ctx; |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 2449 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2450 | // incoming_messages is a ring buffer of incoming handshake messages that have |
| 2451 | // yet to be processed. The front of the ring buffer is message number |
| 2452 | // |handshake_read_seq|, at position |handshake_read_seq| % |
| 2453 | // |SSL_MAX_HANDSHAKE_FLIGHT|. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2454 | UniquePtr<hm_fragment> incoming_messages[SSL_MAX_HANDSHAKE_FLIGHT]; |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 2455 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2456 | // outgoing_messages is the queue of outgoing messages from the last handshake |
| 2457 | // flight. |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 2458 | DTLS_OUTGOING_MESSAGE outgoing_messages[SSL_MAX_HANDSHAKE_FLIGHT]; |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2459 | uint8_t outgoing_messages_len = 0; |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 2460 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2461 | // outgoing_written is the number of outgoing messages that have been |
| 2462 | // written. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2463 | uint8_t outgoing_written = 0; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2464 | // outgoing_offset is the number of bytes of the next outgoing message have |
| 2465 | // been written. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2466 | uint32_t outgoing_offset = 0; |
Robert Sloan | 4d1ac50 | 2017-02-06 08:36:14 -0800 | [diff] [blame] | 2467 | |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2468 | unsigned mtu = 0; // max DTLS packet size |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 2469 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2470 | // num_timeouts is the number of times the retransmit timer has fired since |
| 2471 | // the last time it was reset. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2472 | unsigned num_timeouts = 0; |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 2473 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2474 | // Indicates when the last handshake msg or heartbeat sent will |
| 2475 | // timeout. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2476 | struct OPENSSL_timeval next_timeout = {0, 0}; |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 2477 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2478 | // timeout_duration_ms is the timeout duration in milliseconds. |
Robert Sloan | 29c1d2c | 2017-10-30 14:10:28 -0700 | [diff] [blame] | 2479 | unsigned timeout_duration_ms = 0; |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2480 | }; |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 2481 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2482 | // SSLConnection backs the public |SSL| type. Due to compatibility constraints, |
| 2483 | // it is a base class for |ssl_st|. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2484 | struct SSLConnection { |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2485 | // method is the method table corresponding to the current protocol (DTLS or |
| 2486 | // TLS). |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2487 | const SSL_PROTOCOL_METHOD *method; |
| 2488 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2489 | // version is the protocol version. |
Robert Sloan | f6200e7 | 2017-07-10 08:09:18 -0700 | [diff] [blame] | 2490 | uint16_t version; |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2491 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2492 | // conf_max_version is the maximum acceptable protocol version configured by |
| 2493 | // |SSL_set_max_proto_version|. Note this version is normalized in DTLS and is |
| 2494 | // further constrainted by |SSL_OP_NO_*|. |
Robert Sloan | e56da3e | 2017-06-26 08:26:42 -0700 | [diff] [blame] | 2495 | uint16_t conf_max_version; |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2496 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2497 | // conf_min_version is the minimum acceptable protocol version configured by |
| 2498 | // |SSL_set_min_proto_version|. Note this version is normalized in DTLS and is |
| 2499 | // further constrainted by |SSL_OP_NO_*|. |
Robert Sloan | e56da3e | 2017-06-26 08:26:42 -0700 | [diff] [blame] | 2500 | uint16_t conf_min_version; |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2501 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2502 | // tls13_variant is the variant of TLS 1.3 we are using for this |
| 2503 | // configuration. |
Robert Sloan | a12bf46 | 2017-07-17 07:08:26 -0700 | [diff] [blame] | 2504 | enum tls13_variant_t tls13_variant; |
| 2505 | |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2506 | uint16_t max_send_fragment; |
| 2507 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2508 | // There are 2 BIO's even though they are normally both the same. This is so |
| 2509 | // data can be read and written to different handlers |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2510 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2511 | BIO *rbio; // used by SSL_read |
| 2512 | BIO *wbio; // used by SSL_write |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2513 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2514 | // do_handshake runs the handshake. On completion, it returns |ssl_hs_ok|. |
| 2515 | // Otherwise, it returns a value corresponding to what operation is needed to |
| 2516 | // progress. |
| 2517 | enum ssl_hs_wait_t (*do_handshake)(SSL_HANDSHAKE *hs); |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2518 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2519 | SSL3_STATE *s3; // SSLv3 variables |
| 2520 | DTLS1_STATE *d1; // DTLSv1 variables |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2521 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2522 | // callback that allows applications to peek at protocol messages |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2523 | void (*msg_callback)(int write_p, int version, int content_type, |
| 2524 | const void *buf, size_t len, SSL *ssl, void *arg); |
| 2525 | void *msg_callback_arg; |
| 2526 | |
| 2527 | X509_VERIFY_PARAM *param; |
| 2528 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2529 | // crypto |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2530 | struct ssl_cipher_preference_list_st *cipher_list; |
| 2531 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2532 | // session info |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2533 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2534 | // client cert? |
| 2535 | // This is used to hold the server certificate used |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2536 | CERT *cert; |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2537 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2538 | // initial_timeout_duration_ms is the default DTLS timeout duration in |
| 2539 | // milliseconds. It's used to initialize the timer any time it's restarted. |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2540 | unsigned initial_timeout_duration_ms; |
| 2541 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2542 | // session is the configured session to be offered by the client. This session |
| 2543 | // is immutable. |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2544 | SSL_SESSION *session; |
| 2545 | |
| 2546 | int (*verify_callback)(int ok, |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2547 | X509_STORE_CTX *ctx); // fail if callback returns 0 |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2548 | |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2549 | enum ssl_verify_result_t (*custom_verify_callback)(SSL *ssl, |
| 2550 | uint8_t *out_alert); |
| 2551 | |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2552 | void (*info_callback)(const SSL *ssl, int type, int value); |
| 2553 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2554 | // Server-only: psk_identity_hint is the identity hint to send in |
| 2555 | // PSK-based key exchanges. |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2556 | char *psk_identity_hint; |
| 2557 | |
| 2558 | unsigned int (*psk_client_callback)(SSL *ssl, const char *hint, |
| 2559 | char *identity, |
| 2560 | unsigned int max_identity_len, |
| 2561 | uint8_t *psk, unsigned int max_psk_len); |
| 2562 | unsigned int (*psk_server_callback)(SSL *ssl, const char *identity, |
| 2563 | uint8_t *psk, unsigned int max_psk_len); |
| 2564 | |
| 2565 | SSL_CTX *ctx; |
| 2566 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2567 | // extra application data |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2568 | CRYPTO_EX_DATA ex_data; |
| 2569 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2570 | // for server side, keep the list of CA_dn we can use |
Robert Sloan | 7d422bc | 2017-03-06 10:04:29 -0800 | [diff] [blame] | 2571 | STACK_OF(CRYPTO_BUFFER) *client_CA; |
| 2572 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2573 | // cached_x509_client_CA is a cache of parsed versions of the elements of |
| 2574 | // |client_CA|. |
Robert Sloan | 7d422bc | 2017-03-06 10:04:29 -0800 | [diff] [blame] | 2575 | STACK_OF(X509_NAME) *cached_x509_client_CA; |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2576 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2577 | uint32_t options; // protocol behaviour |
| 2578 | uint32_t mode; // API behaviour |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2579 | uint32_t max_cert_list; |
| 2580 | char *tlsext_hostname; |
| 2581 | size_t supported_group_list_len; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2582 | uint16_t *supported_group_list; // our list |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2583 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2584 | // session_ctx is the |SSL_CTX| used for the session cache and related |
| 2585 | // settings. |
Robert Sloan | 1c9db53 | 2017-03-13 08:03:59 -0700 | [diff] [blame] | 2586 | SSL_CTX *session_ctx; |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2587 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2588 | // srtp_profiles is the list of configured SRTP protection profiles for |
| 2589 | // DTLS-SRTP. |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2590 | STACK_OF(SRTP_PROTECTION_PROFILE) *srtp_profiles; |
| 2591 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2592 | // srtp_profile is the selected SRTP protection profile for |
| 2593 | // DTLS-SRTP. |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2594 | const SRTP_PROTECTION_PROFILE *srtp_profile; |
| 2595 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2596 | // The client's Channel ID private key. |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2597 | EVP_PKEY *tlsext_channel_id_private; |
| 2598 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2599 | // For a client, this contains the list of supported protocols in wire |
| 2600 | // format. |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2601 | uint8_t *alpn_client_proto_list; |
| 2602 | unsigned alpn_client_proto_list_len; |
| 2603 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2604 | // renegotiate_mode controls how peer renegotiation attempts are handled. |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2605 | enum ssl_renegotiate_mode_t renegotiate_mode; |
| 2606 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2607 | // verify_mode is a bitmask of |SSL_VERIFY_*| values. |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2608 | uint8_t verify_mode; |
| 2609 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2610 | // server is true iff the this SSL* is the server half. Note: before the SSL* |
| 2611 | // is initialized by either SSL_set_accept_state or SSL_set_connect_state, |
| 2612 | // the side is not determined. In this state, server is always false. |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 2613 | bool server:1; |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2614 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2615 | // quiet_shutdown is true if the connection should not send a close_notify on |
| 2616 | // shutdown. |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 2617 | bool quiet_shutdown:1; |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2618 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2619 | // Enable signed certificate time stamps. Currently client only. |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 2620 | bool signed_cert_timestamps_enabled:1; |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2621 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2622 | // ocsp_stapling_enabled is only used by client connections and indicates |
| 2623 | // whether OCSP stapling will be requested. |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 2624 | bool ocsp_stapling_enabled:1; |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2625 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2626 | // tlsext_channel_id_enabled is copied from the |SSL_CTX|. For a server, |
| 2627 | // means that we'll accept Channel IDs from clients. For a client, means that |
| 2628 | // we'll advertise support. |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 2629 | bool tlsext_channel_id_enabled:1; |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2630 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2631 | // retain_only_sha256_of_client_certs is true if we should compute the SHA256 |
| 2632 | // hash of the peer's certificate and then discard it to save memory and |
| 2633 | // session space. Only effective on the server side. |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 2634 | bool retain_only_sha256_of_client_certs:1; |
Robert Sloan | 6d0d00e | 2017-03-27 07:13:07 -0700 | [diff] [blame] | 2635 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2636 | // early_data_accepted is true if early data was accepted by the server. |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 2637 | bool early_data_accepted:1; |
Robert Sloan | 47f43ed | 2017-02-06 14:55:15 -0800 | [diff] [blame] | 2638 | }; |
| 2639 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2640 | // From draft-ietf-tls-tls13-18, used in determining PSK modes. |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 2641 | #define SSL_PSK_DHE_KE 0x1 |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 2642 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2643 | // From draft-ietf-tls-tls13-16, used in determining whether to respond with a |
| 2644 | // KeyUpdate. |
David Benjamin | 95add82 | 2016-10-19 01:09:12 -0400 | [diff] [blame] | 2645 | #define SSL_KEY_UPDATE_NOT_REQUESTED 0 |
| 2646 | #define SSL_KEY_UPDATE_REQUESTED 1 |
| 2647 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2648 | // kMaxEarlyDataAccepted is the advertised number of plaintext bytes of early |
| 2649 | // data that will be accepted. This value should be slightly below |
| 2650 | // kMaxEarlyDataSkipped in tls_record.c, which is measured in ciphertext. |
Robert Sloan | 9254e68 | 2017-04-24 09:42:06 -0700 | [diff] [blame] | 2651 | static const size_t kMaxEarlyDataAccepted = 14336; |
| 2652 | |
Robert Sloan | 5d62578 | 2017-02-13 09:55:39 -0800 | [diff] [blame] | 2653 | CERT *ssl_cert_new(const SSL_X509_METHOD *x509_method); |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 2654 | CERT *ssl_cert_dup(CERT *cert); |
Robert Sloan | fe7cd21 | 2017-08-07 09:03:39 -0700 | [diff] [blame] | 2655 | void ssl_cert_clear_certs(CERT *cert); |
| 2656 | void ssl_cert_free(CERT *cert); |
| 2657 | int ssl_set_cert(CERT *cert, UniquePtr<CRYPTO_BUFFER> buffer); |
Robert Sloan | 5d62578 | 2017-02-13 09:55:39 -0800 | [diff] [blame] | 2658 | int ssl_is_key_type_supported(int key_type); |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2659 | // ssl_compare_public_and_private_key returns one if |pubkey| is the public |
| 2660 | // counterpart to |privkey|. Otherwise it returns zero and pushes a helpful |
| 2661 | // message on the error queue. |
Robert Sloan | 4d1ac50 | 2017-02-06 08:36:14 -0800 | [diff] [blame] | 2662 | int ssl_compare_public_and_private_key(const EVP_PKEY *pubkey, |
| 2663 | const EVP_PKEY *privkey); |
| 2664 | int ssl_cert_check_private_key(const CERT *cert, const EVP_PKEY *privkey); |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 2665 | int ssl_get_new_session(SSL_HANDSHAKE *hs, int is_server); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 2666 | int ssl_encrypt_ticket(SSL *ssl, CBB *out, const SSL_SESSION *session); |
Robert Sloan | 8f860b1 | 2017-08-28 07:37:06 -0700 | [diff] [blame] | 2667 | int ssl_ctx_rotate_ticket_encryption_key(SSL_CTX *ctx); |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 2668 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2669 | // ssl_session_new returns a newly-allocated blank |SSL_SESSION| or nullptr on |
| 2670 | // error. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2671 | UniquePtr<SSL_SESSION> ssl_session_new(const SSL_X509_METHOD *x509_method); |
Robert Sloan | 5d62578 | 2017-02-13 09:55:39 -0800 | [diff] [blame] | 2672 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2673 | // SSL_SESSION_parse parses an |SSL_SESSION| from |cbs| and advances |cbs| over |
| 2674 | // the parsed data. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2675 | UniquePtr<SSL_SESSION> SSL_SESSION_parse(CBS *cbs, |
| 2676 | const SSL_X509_METHOD *x509_method, |
| 2677 | CRYPTO_BUFFER_POOL *pool); |
Robert Sloan | 5d62578 | 2017-02-13 09:55:39 -0800 | [diff] [blame] | 2678 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2679 | // ssl_session_is_context_valid returns one if |session|'s session ID context |
| 2680 | // matches the one set on |ssl| and zero otherwise. |
David Benjamin | f0c4a6c | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 2681 | int ssl_session_is_context_valid(const SSL *ssl, const SSL_SESSION *session); |
| 2682 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2683 | // ssl_session_is_time_valid returns one if |session| is still valid and zero if |
| 2684 | // it has expired. |
David Benjamin | f0c4a6c | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 2685 | int ssl_session_is_time_valid(const SSL *ssl, const SSL_SESSION *session); |
| 2686 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2687 | // ssl_session_is_resumable returns one if |session| is resumable for |hs| and |
| 2688 | // zero otherwise. |
Robert Sloan | a94fe05 | 2017-02-21 08:49:28 -0800 | [diff] [blame] | 2689 | int ssl_session_is_resumable(const SSL_HANDSHAKE *hs, |
| 2690 | const SSL_SESSION *session); |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 2691 | |
Robert Sloan | ae1abf9 | 2017-10-05 12:50:08 -0700 | [diff] [blame] | 2692 | // ssl_session_protocol_version returns the protocol version associated with |
| 2693 | // |session|. Note that despite the name, this is not the same as |
| 2694 | // |SSL_SESSION_get_protocol_version|. The latter is based on upstream's name. |
| 2695 | uint16_t ssl_session_protocol_version(const SSL_SESSION *session); |
Robert Sloan | f6200e7 | 2017-07-10 08:09:18 -0700 | [diff] [blame] | 2696 | |
Robert Sloan | ae1abf9 | 2017-10-05 12:50:08 -0700 | [diff] [blame] | 2697 | // ssl_session_get_digest returns the digest used in |session|. |
| 2698 | const EVP_MD *ssl_session_get_digest(const SSL_SESSION *session); |
Robert Sloan | 5d62578 | 2017-02-13 09:55:39 -0800 | [diff] [blame] | 2699 | |
David Benjamin | 7c0d06c | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 2700 | void ssl_set_session(SSL *ssl, SSL_SESSION *session); |
| 2701 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2702 | // ssl_get_prev_session looks up the previous session based on |client_hello|. |
| 2703 | // On success, it sets |*out_session| to the session or nullptr if none was |
| 2704 | // found. If the session could not be looked up synchronously, it returns |
| 2705 | // |ssl_hs_pending_session| and should be called again. If a ticket could not be |
| 2706 | // decrypted immediately it returns |ssl_hs_pending_ticket| and should also |
| 2707 | // be called again. Otherwise, it returns |ssl_hs_error|. |
| 2708 | enum ssl_hs_wait_t ssl_get_prev_session(SSL *ssl, |
| 2709 | UniquePtr<SSL_SESSION> *out_session, |
| 2710 | bool *out_tickets_supported, |
| 2711 | bool *out_renew_ticket, |
| 2712 | const SSL_CLIENT_HELLO *client_hello); |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 2713 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2714 | // The following flags determine which parts of the session are duplicated. |
David Benjamin | f0c4a6c | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 2715 | #define SSL_SESSION_DUP_AUTH_ONLY 0x0 |
| 2716 | #define SSL_SESSION_INCLUDE_TICKET 0x1 |
| 2717 | #define SSL_SESSION_INCLUDE_NONAUTH 0x2 |
| 2718 | #define SSL_SESSION_DUP_ALL \ |
| 2719 | (SSL_SESSION_INCLUDE_TICKET | SSL_SESSION_INCLUDE_NONAUTH) |
| 2720 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2721 | // SSL_SESSION_dup returns a newly-allocated |SSL_SESSION| with a copy of the |
| 2722 | // fields in |session| or nullptr on error. The new session is non-resumable and |
| 2723 | // must be explicitly marked resumable once it has been filled in. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2724 | OPENSSL_EXPORT UniquePtr<SSL_SESSION> SSL_SESSION_dup(SSL_SESSION *session, |
| 2725 | int dup_flags); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 2726 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2727 | // ssl_session_rebase_time updates |session|'s start time to the current time, |
| 2728 | // adjusting the timeout so the expiration time is unchanged. |
Robert Sloan | 4d1ac50 | 2017-02-06 08:36:14 -0800 | [diff] [blame] | 2729 | void ssl_session_rebase_time(SSL *ssl, SSL_SESSION *session); |
| 2730 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2731 | // ssl_session_renew_timeout calls |ssl_session_rebase_time| and renews |
| 2732 | // |session|'s timeout to |timeout| (measured from the current time). The |
| 2733 | // renewal is clamped to the session's auth_timeout. |
Robert Sloan | 7d422bc | 2017-03-06 10:04:29 -0800 | [diff] [blame] | 2734 | void ssl_session_renew_timeout(SSL *ssl, SSL_SESSION *session, |
| 2735 | uint32_t timeout); |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 2736 | |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 2737 | void ssl_cipher_preference_list_free( |
| 2738 | struct ssl_cipher_preference_list_st *cipher_list); |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 2739 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2740 | // ssl_get_cipher_preferences returns the cipher preference list for TLS 1.2 and |
| 2741 | // below. |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 2742 | const struct ssl_cipher_preference_list_st *ssl_get_cipher_preferences( |
| 2743 | const SSL *ssl); |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 2744 | |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 2745 | void ssl_update_cache(SSL_HANDSHAKE *hs, int mode); |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 2746 | |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 2747 | int ssl_send_alert(SSL *ssl, int level, int desc); |
Robert Sloan | 8437709 | 2017-08-14 09:33:19 -0700 | [diff] [blame] | 2748 | bool ssl3_get_message(SSL *ssl, SSLMessage *out); |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 2749 | ssl_open_record_t ssl3_open_handshake(SSL *ssl, size_t *out_consumed, |
| 2750 | uint8_t *out_alert, Span<uint8_t> in); |
Robert Sloan | 8437709 | 2017-08-14 09:33:19 -0700 | [diff] [blame] | 2751 | void ssl3_next_message(SSL *ssl); |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 2752 | |
Adam Langley | 4139edb | 2016-01-13 15:00:54 -0800 | [diff] [blame] | 2753 | int ssl3_dispatch_alert(SSL *ssl); |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 2754 | ssl_open_record_t ssl3_open_app_data(SSL *ssl, Span<uint8_t> *out, |
| 2755 | size_t *out_consumed, uint8_t *out_alert, |
| 2756 | Span<uint8_t> in); |
| 2757 | ssl_open_record_t ssl3_open_change_cipher_spec(SSL *ssl, size_t *out_consumed, |
| 2758 | uint8_t *out_alert, |
| 2759 | Span<uint8_t> in); |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2760 | int ssl3_write_app_data(SSL *ssl, bool *out_needs_handshake, const uint8_t *buf, |
Robert Sloan | e56da3e | 2017-06-26 08:26:42 -0700 | [diff] [blame] | 2761 | int len); |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 2762 | |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 2763 | bool ssl3_new(SSL *ssl); |
Adam Langley | 4139edb | 2016-01-13 15:00:54 -0800 | [diff] [blame] | 2764 | void ssl3_free(SSL *ssl); |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 2765 | |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 2766 | bool ssl3_init_message(SSL *ssl, CBB *cbb, CBB *body, uint8_t type); |
| 2767 | bool ssl3_finish_message(SSL *ssl, CBB *cbb, Array<uint8_t> *out_msg); |
| 2768 | bool ssl3_add_message(SSL *ssl, Array<uint8_t> msg); |
| 2769 | bool ssl3_add_change_cipher_spec(SSL *ssl); |
| 2770 | bool ssl3_add_alert(SSL *ssl, uint8_t level, uint8_t desc); |
Robert Sloan | 4d1ac50 | 2017-02-06 08:36:14 -0800 | [diff] [blame] | 2771 | int ssl3_flush_flight(SSL *ssl); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 2772 | |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 2773 | bool dtls1_init_message(SSL *ssl, CBB *cbb, CBB *body, uint8_t type); |
| 2774 | bool dtls1_finish_message(SSL *ssl, CBB *cbb, Array<uint8_t> *out_msg); |
| 2775 | bool dtls1_add_message(SSL *ssl, Array<uint8_t> msg); |
| 2776 | bool dtls1_add_change_cipher_spec(SSL *ssl); |
| 2777 | bool dtls1_add_alert(SSL *ssl, uint8_t level, uint8_t desc); |
Robert Sloan | 4d1ac50 | 2017-02-06 08:36:14 -0800 | [diff] [blame] | 2778 | int dtls1_flush_flight(SSL *ssl); |
David Benjamin | 6e899c7 | 2016-06-09 18:02:18 -0400 | [diff] [blame] | 2779 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2780 | // ssl_add_message_cbb finishes the handshake message in |cbb| and adds it to |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 2781 | // the pending flight. It returns true on success and false on error. |
| 2782 | bool ssl_add_message_cbb(SSL *ssl, CBB *cbb); |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 2783 | |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 2784 | // ssl_hash_message incorporates |msg| into the handshake hash. It returns true |
| 2785 | // on success and false on allocation failure. |
Robert Sloan | 8437709 | 2017-08-14 09:33:19 -0700 | [diff] [blame] | 2786 | bool ssl_hash_message(SSL_HANDSHAKE *hs, const SSLMessage &msg); |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 2787 | |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 2788 | ssl_open_record_t dtls1_open_app_data(SSL *ssl, Span<uint8_t> *out, |
| 2789 | size_t *out_consumed, uint8_t *out_alert, |
| 2790 | Span<uint8_t> in); |
| 2791 | ssl_open_record_t dtls1_open_change_cipher_spec(SSL *ssl, size_t *out_consumed, |
| 2792 | uint8_t *out_alert, |
| 2793 | Span<uint8_t> in); |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 2794 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2795 | int dtls1_write_app_data(SSL *ssl, bool *out_needs_handshake, |
| 2796 | const uint8_t *buf, int len); |
David Benjamin | 6e899c7 | 2016-06-09 18:02:18 -0400 | [diff] [blame] | 2797 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2798 | // dtls1_write_record sends a record. It returns one on success and <= 0 on |
| 2799 | // error. |
David Benjamin | 6e899c7 | 2016-06-09 18:02:18 -0400 | [diff] [blame] | 2800 | int dtls1_write_record(SSL *ssl, int type, const uint8_t *buf, size_t len, |
| 2801 | enum dtls1_use_epoch_t use_epoch); |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 2802 | |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 2803 | int dtls1_retransmit_outgoing_messages(SSL *ssl); |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 2804 | bool dtls1_parse_fragment(CBS *cbs, struct hm_header_st *out_hdr, |
David Benjamin | 6e899c7 | 2016-06-09 18:02:18 -0400 | [diff] [blame] | 2805 | CBS *out_body); |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 2806 | bool dtls1_check_timeout_num(SSL *ssl); |
Adam Langley | e9ada86 | 2015-05-11 17:20:37 -0700 | [diff] [blame] | 2807 | |
Adam Langley | 4139edb | 2016-01-13 15:00:54 -0800 | [diff] [blame] | 2808 | void dtls1_start_timer(SSL *ssl); |
| 2809 | void dtls1_stop_timer(SSL *ssl); |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 2810 | bool dtls1_is_timer_expired(SSL *ssl); |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 2811 | unsigned int dtls1_min_mtu(void); |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 2812 | |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 2813 | bool dtls1_new(SSL *ssl); |
Adam Langley | 4139edb | 2016-01-13 15:00:54 -0800 | [diff] [blame] | 2814 | void dtls1_free(SSL *ssl); |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 2815 | |
Robert Sloan | 8437709 | 2017-08-14 09:33:19 -0700 | [diff] [blame] | 2816 | bool dtls1_get_message(SSL *ssl, SSLMessage *out); |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 2817 | ssl_open_record_t dtls1_open_handshake(SSL *ssl, size_t *out_consumed, |
| 2818 | uint8_t *out_alert, Span<uint8_t> in); |
Robert Sloan | 8437709 | 2017-08-14 09:33:19 -0700 | [diff] [blame] | 2819 | void dtls1_next_message(SSL *ssl); |
Adam Langley | 4139edb | 2016-01-13 15:00:54 -0800 | [diff] [blame] | 2820 | int dtls1_dispatch_alert(SSL *ssl); |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 2821 | |
Robert Sloan | 2e9e66a | 2017-09-25 09:08:29 -0700 | [diff] [blame] | 2822 | int tls1_change_cipher_state(SSL_HANDSHAKE *hs, evp_aead_direction_t direction); |
Robert Sloan | 5d62578 | 2017-02-13 09:55:39 -0800 | [diff] [blame] | 2823 | int tls1_generate_master_secret(SSL_HANDSHAKE *hs, uint8_t *out, |
Robert Sloan | b1b54b8 | 2017-11-06 13:50:02 -0800 | [diff] [blame^] | 2824 | Span<const uint8_t> premaster); |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 2825 | |
Robert Sloan | 4562e9d | 2017-10-02 10:26:51 -0700 | [diff] [blame] | 2826 | // tls1_get_grouplist returns the locally-configured group preference list. |
| 2827 | Span<const uint16_t> tls1_get_grouplist(const SSL *ssl); |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 2828 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2829 | // tls1_check_group_id returns one if |group_id| is consistent with |
| 2830 | // locally-configured group preferences. |
Robert Sloan | 4562e9d | 2017-10-02 10:26:51 -0700 | [diff] [blame] | 2831 | int tls1_check_group_id(const SSL *ssl, uint16_t group_id); |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 2832 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2833 | // tls1_get_shared_group sets |*out_group_id| to the first preferred shared |
| 2834 | // group between client and server preferences and returns one. If none may be |
| 2835 | // found, it returns zero. |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 2836 | int tls1_get_shared_group(SSL_HANDSHAKE *hs, uint16_t *out_group_id); |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 2837 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2838 | // tls1_set_curves converts the array of |ncurves| NIDs pointed to by |curves| |
| 2839 | // into a newly allocated array of TLS group IDs. On success, the function |
| 2840 | // returns one and writes the array to |*out_group_ids| and its size to |
| 2841 | // |*out_group_ids_len|. Otherwise, it returns zero. |
David Benjamin | d316cba | 2016-06-02 16:17:39 -0400 | [diff] [blame] | 2842 | int tls1_set_curves(uint16_t **out_group_ids, size_t *out_group_ids_len, |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 2843 | const int *curves, size_t ncurves); |
| 2844 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2845 | // tls1_set_curves_list converts the string of curves pointed to by |curves| |
| 2846 | // into a newly allocated array of TLS group IDs. On success, the function |
| 2847 | // returns one and writes the array to |*out_group_ids| and its size to |
| 2848 | // |*out_group_ids_len|. Otherwise, it returns zero. |
Steven Valdez | bb1ceac | 2016-10-07 10:34:51 -0400 | [diff] [blame] | 2849 | int tls1_set_curves_list(uint16_t **out_group_ids, size_t *out_group_ids_len, |
| 2850 | const char *curves); |
| 2851 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2852 | // ssl_add_clienthello_tlsext writes ClientHello extensions to |out|. It |
| 2853 | // returns one on success and zero on failure. The |header_len| argument is the |
| 2854 | // length of the ClientHello written so far and is used to compute the padding |
| 2855 | // length. (It does not include the record header.) |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 2856 | int ssl_add_clienthello_tlsext(SSL_HANDSHAKE *hs, CBB *out, size_t header_len); |
Kenny Root | e99801b | 2015-11-06 15:31:15 -0800 | [diff] [blame] | 2857 | |
David Benjamin | 1b24967 | 2016-12-06 18:25:50 -0500 | [diff] [blame] | 2858 | int ssl_add_serverhello_tlsext(SSL_HANDSHAKE *hs, CBB *out); |
| 2859 | int ssl_parse_clienthello_tlsext(SSL_HANDSHAKE *hs, |
| 2860 | const SSL_CLIENT_HELLO *client_hello); |
| 2861 | int ssl_parse_serverhello_tlsext(SSL_HANDSHAKE *hs, CBS *cbs); |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 2862 | |
| 2863 | #define tlsext_tick_md EVP_sha256 |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 2864 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2865 | // ssl_process_ticket processes a session ticket from the client. It returns |
| 2866 | // one of: |
| 2867 | // |ssl_ticket_aead_success|: |*out_session| is set to the parsed session and |
| 2868 | // |*out_renew_ticket| is set to whether the ticket should be renewed. |
| 2869 | // |ssl_ticket_aead_ignore_ticket|: |*out_renew_ticket| is set to whether a |
| 2870 | // fresh ticket should be sent, but the given ticket cannot be used. |
| 2871 | // |ssl_ticket_aead_retry|: the ticket could not be immediately decrypted. |
| 2872 | // Retry later. |
| 2873 | // |ssl_ticket_aead_error|: an error occured that is fatal to the connection. |
Robert Sloan | 1c9db53 | 2017-03-13 08:03:59 -0700 | [diff] [blame] | 2874 | enum ssl_ticket_aead_result_t ssl_process_ticket( |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2875 | SSL *ssl, UniquePtr<SSL_SESSION> *out_session, bool *out_renew_ticket, |
Robert Sloan | 1c9db53 | 2017-03-13 08:03:59 -0700 | [diff] [blame] | 2876 | const uint8_t *ticket, size_t ticket_len, const uint8_t *session_id, |
| 2877 | size_t session_id_len); |
Kenny Root | b849459 | 2015-09-25 02:29:14 +0000 | [diff] [blame] | 2878 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2879 | // tls1_verify_channel_id processes |msg| as a Channel ID message, and verifies |
| 2880 | // the signature. If the key is valid, it saves the Channel ID and returns |
| 2881 | // one. Otherwise, it returns zero. |
Robert Sloan | 8437709 | 2017-08-14 09:33:19 -0700 | [diff] [blame] | 2882 | int tls1_verify_channel_id(SSL_HANDSHAKE *hs, const SSLMessage &msg); |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 2883 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2884 | // tls1_write_channel_id generates a Channel ID message and puts the output in |
| 2885 | // |cbb|. |ssl->tlsext_channel_id_private| must already be set before calling. |
Robert Sloan | b1b54b8 | 2017-11-06 13:50:02 -0800 | [diff] [blame^] | 2886 | // This function returns true on success and false on error. |
| 2887 | bool tls1_write_channel_id(SSL_HANDSHAKE *hs, CBB *cbb); |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 2888 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2889 | // tls1_channel_id_hash computes the hash to be signed by Channel ID and writes |
| 2890 | // it to |out|, which must contain at least |EVP_MAX_MD_SIZE| bytes. It returns |
| 2891 | // one on success and zero on failure. |
Robert Sloan | 5d62578 | 2017-02-13 09:55:39 -0800 | [diff] [blame] | 2892 | int tls1_channel_id_hash(SSL_HANDSHAKE *hs, uint8_t *out, size_t *out_len); |
Adam Langley | d9e397b | 2015-01-22 14:27:53 -0800 | [diff] [blame] | 2893 | |
Robert Sloan | 5d62578 | 2017-02-13 09:55:39 -0800 | [diff] [blame] | 2894 | int tls1_record_handshake_hashes_for_channel_id(SSL_HANDSHAKE *hs); |
Kenny Root | a04d78d | 2015-09-25 00:26:37 +0000 | [diff] [blame] | 2895 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2896 | // ssl_do_channel_id_callback checks runs |ssl->ctx->channel_id_cb| if |
| 2897 | // necessary. It returns one on success and zero on fatal error. Note that, on |
| 2898 | // success, |ssl->tlsext_channel_id_private| may be unset, in which case the |
| 2899 | // operation should be retried later. |
Steven Valdez | 909b19f | 2016-11-21 15:35:44 -0500 | [diff] [blame] | 2900 | int ssl_do_channel_id_callback(SSL *ssl); |
| 2901 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2902 | // ssl_can_write returns one if |ssl| is allowed to write and zero otherwise. |
Robert Sloan | 6d0d00e | 2017-03-27 07:13:07 -0700 | [diff] [blame] | 2903 | int ssl_can_write(const SSL *ssl); |
| 2904 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2905 | // ssl_can_read returns one if |ssl| is allowed to read and zero otherwise. |
Robert Sloan | 6d0d00e | 2017-03-27 07:13:07 -0700 | [diff] [blame] | 2906 | int ssl_can_read(const SSL *ssl); |
| 2907 | |
Robert Sloan | 7d422bc | 2017-03-06 10:04:29 -0800 | [diff] [blame] | 2908 | void ssl_get_current_time(const SSL *ssl, struct OPENSSL_timeval *out_clock); |
Robert Sloan | 8f860b1 | 2017-08-28 07:37:06 -0700 | [diff] [blame] | 2909 | void ssl_ctx_get_current_time(const SSL_CTX *ctx, |
| 2910 | struct OPENSSL_timeval *out_clock); |
David Benjamin | c895d6b | 2016-08-11 13:26:41 -0400 | [diff] [blame] | 2911 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2912 | // ssl_reset_error_state resets state for |SSL_get_error|. |
Robert Sloan | 69939df | 2017-01-09 10:53:07 -0800 | [diff] [blame] | 2913 | void ssl_reset_error_state(SSL *ssl); |
| 2914 | |
Robert Sloan | 3627296 | 2017-10-23 10:28:39 -0700 | [diff] [blame] | 2915 | // ssl_set_read_error sets |ssl|'s read half into an error state, saving the |
| 2916 | // current state of the error queue. |
| 2917 | void ssl_set_read_error(SSL* ssl); |
| 2918 | |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2919 | } // namespace bssl |
| 2920 | |
| 2921 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2922 | // Opaque C types. |
| 2923 | // |
| 2924 | // The following types are exported to C code as public typedefs, so they must |
| 2925 | // be defined outside of the namespace. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2926 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2927 | // ssl_method_st backs the public |SSL_METHOD| type. It is a compatibility |
| 2928 | // structure to support the legacy version-locked methods. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2929 | struct ssl_method_st { |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2930 | // version, if non-zero, is the only protocol version acceptable to an |
| 2931 | // SSL_CTX initialized from this method. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2932 | uint16_t version; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2933 | // method is the underlying SSL_PROTOCOL_METHOD that initializes the |
| 2934 | // SSL_CTX. |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 2935 | const bssl::SSL_PROTOCOL_METHOD *method; |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2936 | // x509_method contains pointers to functions that might deal with |X509| |
| 2937 | // compatibility, or might be a no-op, depending on the application. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2938 | const SSL_X509_METHOD *x509_method; |
| 2939 | }; |
| 2940 | |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2941 | struct ssl_x509_method_st { |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2942 | // check_client_CA_list returns one if |names| is a good list of X.509 |
| 2943 | // distinguished names and zero otherwise. This is used to ensure that we can |
| 2944 | // reject unparsable values at handshake time when using crypto/x509. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2945 | int (*check_client_CA_list)(STACK_OF(CRYPTO_BUFFER) *names); |
| 2946 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2947 | // cert_clear frees and NULLs all X509 certificate-related state. |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 2948 | void (*cert_clear)(bssl::CERT *cert); |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2949 | // cert_free frees all X509-related state. |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 2950 | void (*cert_free)(bssl::CERT *cert); |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2951 | // cert_flush_cached_chain drops any cached |X509|-based certificate chain |
| 2952 | // from |cert|. |
| 2953 | // cert_dup duplicates any needed fields from |cert| to |new_cert|. |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 2954 | void (*cert_dup)(bssl::CERT *new_cert, const bssl::CERT *cert); |
| 2955 | void (*cert_flush_cached_chain)(bssl::CERT *cert); |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2956 | // cert_flush_cached_chain drops any cached |X509|-based leaf certificate |
| 2957 | // from |cert|. |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 2958 | void (*cert_flush_cached_leaf)(bssl::CERT *cert); |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2959 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2960 | // session_cache_objects fills out |sess->x509_peer| and |sess->x509_chain| |
| 2961 | // from |sess->certs| and erases |sess->x509_chain_without_leaf|. It returns |
| 2962 | // one on success or zero on error. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2963 | int (*session_cache_objects)(SSL_SESSION *session); |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2964 | // session_dup duplicates any needed fields from |session| to |new_session|. |
| 2965 | // It returns one on success or zero on error. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2966 | int (*session_dup)(SSL_SESSION *new_session, const SSL_SESSION *session); |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2967 | // session_clear frees any X509-related state from |session|. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2968 | void (*session_clear)(SSL_SESSION *session); |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2969 | // session_verify_cert_chain verifies the certificate chain in |session|, |
| 2970 | // sets |session->verify_result| and returns one on success or zero on |
| 2971 | // error. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2972 | int (*session_verify_cert_chain)(SSL_SESSION *session, SSL *ssl, |
| 2973 | uint8_t *out_alert); |
| 2974 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2975 | // hs_flush_cached_ca_names drops any cached |X509_NAME|s from |hs|. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2976 | void (*hs_flush_cached_ca_names)(bssl::SSL_HANDSHAKE *hs); |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2977 | // ssl_new does any neccessary initialisation of |ssl|. It returns one on |
| 2978 | // success or zero on error. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2979 | int (*ssl_new)(SSL *ssl); |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2980 | // ssl_free frees anything created by |ssl_new|. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2981 | void (*ssl_free)(SSL *ssl); |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2982 | // ssl_flush_cached_client_CA drops any cached |X509_NAME|s from |ssl|. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2983 | void (*ssl_flush_cached_client_CA)(SSL *ssl); |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2984 | // ssl_auto_chain_if_needed runs the deprecated auto-chaining logic if |
| 2985 | // necessary. On success, it updates |ssl|'s certificate configuration as |
| 2986 | // needed and returns one. Otherwise, it returns zero. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2987 | int (*ssl_auto_chain_if_needed)(SSL *ssl); |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2988 | // ssl_ctx_new does any neccessary initialisation of |ctx|. It returns one on |
| 2989 | // success or zero on error. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2990 | int (*ssl_ctx_new)(SSL_CTX *ctx); |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2991 | // ssl_ctx_free frees anything created by |ssl_ctx_new|. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2992 | void (*ssl_ctx_free)(SSL_CTX *ctx); |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 2993 | // ssl_ctx_flush_cached_client_CA drops any cached |X509_NAME|s from |ctx|. |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 2994 | void (*ssl_ctx_flush_cached_client_CA)(SSL_CTX *ssl); |
| 2995 | }; |
| 2996 | |
Robert Sloan | 921ef2c | 2017-10-17 09:02:20 -0700 | [diff] [blame] | 2997 | // The following types back public C-exposed types which must live in the global |
| 2998 | // namespace. We use subclassing so the implementations may be C++ types with |
| 2999 | // methods and destructor without polluting the global namespace. |
| 3000 | struct ssl_ctx_st : public bssl::SSLContext {}; |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 3001 | struct ssl_st : public bssl::SSLConnection {}; |
| 3002 | |
Robert Sloan | b6d070c | 2017-07-24 08:40:01 -0700 | [diff] [blame] | 3003 | |
Robert Sloan | a27a6a4 | 2017-09-05 08:39:28 -0700 | [diff] [blame] | 3004 | #endif // OPENSSL_HEADER_SSL_INTERNAL_H |