QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1 | // Copyright (c) 2017 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef QUICHE_QUIC_CORE_TLS_SERVER_HANDSHAKER_H_ |
| 6 | #define QUICHE_QUIC_CORE_TLS_SERVER_HANDSHAKER_H_ |
| 7 | |
vasilvv | 872e7a3 | 2019-03-12 16:42:44 -0700 | [diff] [blame] | 8 | #include <string> |
| 9 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 10 | #include "third_party/boringssl/src/include/openssl/pool.h" |
| 11 | #include "third_party/boringssl/src/include/openssl/ssl.h" |
nharper | 6ebe83b | 2019-06-13 17:43:52 -0700 | [diff] [blame] | 12 | #include "net/third_party/quiche/src/quic/core/crypto/tls_server_connection.h" |
dschinazi | 56fb53e | 2019-06-21 15:30:04 -0700 | [diff] [blame] | 13 | #include "net/third_party/quiche/src/quic/core/proto/cached_network_parameters_proto.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 14 | #include "net/third_party/quiche/src/quic/core/quic_crypto_server_stream.h" |
| 15 | #include "net/third_party/quiche/src/quic/core/quic_crypto_stream.h" |
| 16 | #include "net/third_party/quiche/src/quic/core/tls_handshaker.h" |
| 17 | #include "net/third_party/quiche/src/quic/platform/api/quic_export.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 18 | |
| 19 | namespace quic { |
| 20 | |
| 21 | // An implementation of QuicCryptoServerStream::HandshakerDelegate which uses |
| 22 | // TLS 1.3 for the crypto handshake protocol. |
| 23 | class QUIC_EXPORT_PRIVATE TlsServerHandshaker |
nharper | 6ebe83b | 2019-06-13 17:43:52 -0700 | [diff] [blame] | 24 | : public TlsHandshaker, |
| 25 | public TlsServerConnection::Delegate, |
| 26 | public QuicCryptoServerStream::HandshakerDelegate { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 27 | public: |
| 28 | TlsServerHandshaker(QuicCryptoStream* stream, |
| 29 | QuicSession* session, |
| 30 | SSL_CTX* ssl_ctx, |
| 31 | ProofSource* proof_source); |
| 32 | TlsServerHandshaker(const TlsServerHandshaker&) = delete; |
| 33 | TlsServerHandshaker& operator=(const TlsServerHandshaker&) = delete; |
| 34 | |
| 35 | ~TlsServerHandshaker() override; |
| 36 | |
| 37 | // Creates and configures an SSL_CTX to be used with a TlsServerHandshaker. |
| 38 | // The caller is responsible for ownership of the newly created struct. |
| 39 | static bssl::UniquePtr<SSL_CTX> CreateSslCtx(); |
| 40 | |
| 41 | // From QuicCryptoServerStream::HandshakerDelegate |
| 42 | void CancelOutstandingCallbacks() override; |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 43 | bool GetBase64SHA256ClientChannelID(std::string* output) const override; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 44 | void SendServerConfigUpdate( |
| 45 | const CachedNetworkParameters* cached_network_params) override; |
| 46 | uint8_t NumHandshakeMessages() const override; |
| 47 | uint8_t NumHandshakeMessagesWithServerNonces() const override; |
| 48 | int NumServerConfigUpdateMessagesSent() const override; |
| 49 | const CachedNetworkParameters* PreviousCachedNetworkParams() const override; |
| 50 | bool ZeroRttAttempted() const override; |
| 51 | void SetPreviousCachedNetworkParams( |
| 52 | CachedNetworkParameters cached_network_params) override; |
| 53 | bool ShouldSendExpectCTHeader() const override; |
| 54 | |
| 55 | // From QuicCryptoServerStream::HandshakerDelegate and TlsHandshaker |
| 56 | bool encryption_established() const override; |
| 57 | bool handshake_confirmed() const override; |
| 58 | const QuicCryptoNegotiatedParameters& crypto_negotiated_params() |
| 59 | const override; |
| 60 | CryptoMessageParser* crypto_message_parser() override; |
| 61 | |
nharper | 6ebe83b | 2019-06-13 17:43:52 -0700 | [diff] [blame] | 62 | protected: |
renjietang | 96c1767 | 2019-06-14 12:50:14 -0700 | [diff] [blame] | 63 | TlsConnection* tls_connection() override { return &tls_connection_; } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 64 | |
nharper | 6ebe83b | 2019-06-13 17:43:52 -0700 | [diff] [blame] | 65 | // Called when a new message is received on the crypto stream and is available |
| 66 | // for the TLS stack to read. |
| 67 | void AdvanceHandshake() override; |
| 68 | void CloseConnection(QuicErrorCode error, |
| 69 | const std::string& reason_phrase) override; |
| 70 | |
| 71 | // TlsServerConnection::Delegate implementation: |
| 72 | int SelectCertificate(int* out_alert) override; |
| 73 | int SelectAlpn(const uint8_t** out, |
| 74 | uint8_t* out_len, |
| 75 | const uint8_t* in, |
| 76 | unsigned in_len) override; |
| 77 | ssl_private_key_result_t PrivateKeySign(uint8_t* out, |
| 78 | size_t* out_len, |
| 79 | size_t max_out, |
| 80 | uint16_t sig_alg, |
| 81 | QuicStringPiece in) override; |
| 82 | ssl_private_key_result_t PrivateKeyComplete(uint8_t* out, |
| 83 | size_t* out_len, |
| 84 | size_t max_out) override; |
| 85 | TlsConnection::Delegate* ConnectionDelegate() override { return this; } |
dschinazi | 35e749e | 2019-04-09 09:36:04 -0700 | [diff] [blame] | 86 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 87 | private: |
| 88 | class SignatureCallback : public ProofSource::SignatureCallback { |
| 89 | public: |
| 90 | explicit SignatureCallback(TlsServerHandshaker* handshaker); |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 91 | void Run(bool ok, std::string signature) override; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 92 | |
| 93 | // If called, Cancel causes the pending callback to be a no-op. |
| 94 | void Cancel(); |
| 95 | |
| 96 | private: |
| 97 | TlsServerHandshaker* handshaker_; |
| 98 | }; |
| 99 | |
| 100 | enum State { |
| 101 | STATE_LISTENING, |
| 102 | STATE_SIGNATURE_PENDING, |
| 103 | STATE_SIGNATURE_COMPLETE, |
| 104 | STATE_HANDSHAKE_COMPLETE, |
| 105 | STATE_CONNECTION_CLOSED, |
| 106 | }; |
| 107 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 108 | // Called when the TLS handshake is complete. |
| 109 | void FinishHandshake(); |
| 110 | |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 111 | void CloseConnection(const std::string& reason_phrase); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 112 | |
| 113 | bool SetTransportParameters(); |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 114 | bool ProcessTransportParameters(std::string* error_details); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 115 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 116 | State state_ = STATE_LISTENING; |
| 117 | |
| 118 | ProofSource* proof_source_; |
| 119 | SignatureCallback* signature_callback_ = nullptr; |
| 120 | |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 121 | std::string hostname_; |
| 122 | std::string cert_verify_sig_; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 123 | |
| 124 | bool encryption_established_ = false; |
| 125 | bool handshake_confirmed_ = false; |
dschinazi | 9145364 | 2019-08-01 11:12:15 -0700 | [diff] [blame] | 126 | bool valid_alpn_received_ = false; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 127 | QuicReferenceCountedPointer<QuicCryptoNegotiatedParameters> |
| 128 | crypto_negotiated_params_; |
nharper | 6ebe83b | 2019-06-13 17:43:52 -0700 | [diff] [blame] | 129 | TlsServerConnection tls_connection_; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 130 | }; |
| 131 | |
| 132 | } // namespace quic |
| 133 | |
| 134 | #endif // QUICHE_QUIC_CORE_TLS_SERVER_HANDSHAKER_H_ |