QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1 | // Copyright (c) 2012 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 | |
nharper | f6cb54d | 2020-02-27 14:14:21 -0800 | [diff] [blame] | 5 | #ifndef QUICHE_QUIC_CORE_QUIC_CRYPTO_SERVER_STREAM_BASE_H_ |
| 6 | #define QUICHE_QUIC_CORE_QUIC_CRYPTO_SERVER_STREAM_BASE_H_ |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 7 | |
| 8 | #include <cstdint> |
| 9 | #include <memory> |
vasilvv | 872e7a3 | 2019-03-12 16:42:44 -0700 | [diff] [blame] | 10 | #include <string> |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 11 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 12 | #include "net/third_party/quiche/src/quic/core/crypto/crypto_handshake.h" |
| 13 | #include "net/third_party/quiche/src/quic/core/crypto/quic_compressed_certs_cache.h" |
| 14 | #include "net/third_party/quiche/src/quic/core/crypto/quic_crypto_server_config.h" |
| 15 | #include "net/third_party/quiche/src/quic/core/quic_config.h" |
| 16 | #include "net/third_party/quiche/src/quic/core/quic_crypto_handshaker.h" |
| 17 | #include "net/third_party/quiche/src/quic/core/quic_crypto_stream.h" |
| 18 | #include "net/third_party/quiche/src/quic/core/quic_session.h" |
| 19 | #include "net/third_party/quiche/src/quic/platform/api/quic_export.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 20 | |
| 21 | namespace quic { |
| 22 | |
| 23 | class CachedNetworkParameters; |
| 24 | class CryptoHandshakeMessage; |
| 25 | class QuicCryptoServerConfig; |
| 26 | class QuicCryptoServerStreamBase; |
| 27 | |
| 28 | // TODO(alyssar) see what can be moved out of QuicCryptoServerStream with |
| 29 | // various code and test refactoring. |
| 30 | class QUIC_EXPORT_PRIVATE QuicCryptoServerStreamBase : public QuicCryptoStream { |
| 31 | public: |
| 32 | explicit QuicCryptoServerStreamBase(QuicSession* session); |
| 33 | |
nharper | 5f23a2d | 2020-02-20 10:44:09 -0800 | [diff] [blame] | 34 | class QUIC_EXPORT_PRIVATE Helper { |
| 35 | public: |
| 36 | virtual ~Helper() {} |
| 37 | |
| 38 | // Returns true if |message|, which was received on |self_address| is |
| 39 | // acceptable according to the visitor's policy. Otherwise, returns false |
| 40 | // and populates |error_details|. |
| 41 | virtual bool CanAcceptClientHello(const CryptoHandshakeMessage& message, |
| 42 | const QuicSocketAddress& client_address, |
| 43 | const QuicSocketAddress& peer_address, |
| 44 | const QuicSocketAddress& self_address, |
| 45 | std::string* error_details) const = 0; |
| 46 | }; |
| 47 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 48 | ~QuicCryptoServerStreamBase() override {} |
| 49 | |
| 50 | // Cancel any outstanding callbacks, such as asynchronous validation of client |
| 51 | // hello. |
| 52 | virtual void CancelOutstandingCallbacks() = 0; |
| 53 | |
| 54 | // GetBase64SHA256ClientChannelID sets |*output| to the base64 encoded, |
| 55 | // SHA-256 hash of the client's ChannelID key and returns true, if the client |
| 56 | // presented a ChannelID. Otherwise it returns false. |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 57 | virtual bool GetBase64SHA256ClientChannelID(std::string* output) const = 0; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 58 | |
| 59 | virtual int NumServerConfigUpdateMessagesSent() const = 0; |
| 60 | |
| 61 | // Sends the latest server config and source-address token to the client. |
| 62 | virtual void SendServerConfigUpdate( |
| 63 | const CachedNetworkParameters* cached_network_params) = 0; |
| 64 | |
nharper | fd0e263 | 2020-06-02 11:19:05 -0700 | [diff] [blame] | 65 | // Returns true if the connection was a successful 0-RTT resumption. |
fayang | 6098a0a | 2020-03-13 15:32:10 -0700 | [diff] [blame] | 66 | virtual bool IsZeroRtt() const = 0; |
nharper | fd0e263 | 2020-06-02 11:19:05 -0700 | [diff] [blame] | 67 | |
| 68 | // Returns true if the connection was the result of a resumption handshake, |
| 69 | // whether 0-RTT or not. |
| 70 | virtual bool IsResumption() const = 0; |
| 71 | |
| 72 | // Returns true if the client attempted a resumption handshake, whether or not |
| 73 | // the resumption actually occurred. |
| 74 | virtual bool ResumptionAttempted() const = 0; |
| 75 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 76 | virtual const CachedNetworkParameters* PreviousCachedNetworkParams() |
| 77 | const = 0; |
| 78 | virtual void SetPreviousCachedNetworkParams( |
| 79 | CachedNetworkParameters cached_network_params) = 0; |
nharper | 23d4074 | 2020-01-03 14:55:01 -0800 | [diff] [blame] | 80 | |
| 81 | // NOTE: Indicating that the Expect-CT header should be sent here presents |
| 82 | // a layering violation to some extent. The Expect-CT header only applies to |
| 83 | // HTTP connections, while this class can be used for non-HTTP applications. |
| 84 | // However, it is exposed here because that is the only place where the |
| 85 | // configuration for the certificate used in the connection is accessible. |
| 86 | virtual bool ShouldSendExpectCTHeader() const = 0; |
nharper | 9b0a1af | 2020-08-07 17:11:29 -0700 | [diff] [blame] | 87 | |
| 88 | // Returns the Details from the latest call to ProofSource::GetProof or |
| 89 | // ProofSource::ComputeTlsSignature. Returns nullptr if no such call has been |
| 90 | // made. The Details are owned by the QuicCryptoServerStreamBase and the |
| 91 | // pointer is only valid while the owning object is still valid. |
| 92 | virtual const ProofSource::Details* ProofSourceDetails() const = 0; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 93 | }; |
| 94 | |
nharper | e5e28f9 | 2020-01-03 14:10:07 -0800 | [diff] [blame] | 95 | // Creates an appropriate QuicCryptoServerStream for the provided parameters, |
| 96 | // including the version used by |session|. |crypto_config|, |session|, and |
| 97 | // |helper| must all outlive the stream. The caller takes ownership of the |
| 98 | // returned object. |
ianswett | 1f4fe2d | 2020-01-10 13:01:17 -0800 | [diff] [blame] | 99 | QUIC_EXPORT_PRIVATE std::unique_ptr<QuicCryptoServerStreamBase> |
| 100 | CreateCryptoServerStream(const QuicCryptoServerConfig* crypto_config, |
| 101 | QuicCompressedCertsCache* compressed_certs_cache, |
| 102 | QuicSession* session, |
nharper | 5f23a2d | 2020-02-20 10:44:09 -0800 | [diff] [blame] | 103 | QuicCryptoServerStreamBase::Helper* helper); |
nharper | e5e28f9 | 2020-01-03 14:10:07 -0800 | [diff] [blame] | 104 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 105 | } // namespace quic |
| 106 | |
nharper | f6cb54d | 2020-02-27 14:14:21 -0800 | [diff] [blame] | 107 | #endif // QUICHE_QUIC_CORE_QUIC_CRYPTO_SERVER_STREAM_BASE_H_ |