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