blob: 60a162cf89f24347cfd60d8f16d2690daf094947 [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// 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
5#ifndef QUICHE_QUIC_CORE_QUIC_CRYPTO_SERVER_STREAM_H_
6#define QUICHE_QUIC_CORE_QUIC_CRYPTO_SERVER_STREAM_H_
7
8#include <cstdint>
9#include <memory>
vasilvv872e7a32019-03-12 16:42:44 -070010#include <string>
QUICHE teama6ef0a62019-03-07 20:34:33 -050011
QUICHE teama6ef0a62019-03-07 20:34:33 -050012#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 teama6ef0a62019-03-07 20:34:33 -050020
21namespace quic {
22
23class CachedNetworkParameters;
24class CryptoHandshakeMessage;
25class QuicCryptoServerConfig;
26class QuicCryptoServerStreamBase;
27
28// TODO(alyssar) see what can be moved out of QuicCryptoServerStream with
29// various code and test refactoring.
30class QUIC_EXPORT_PRIVATE QuicCryptoServerStreamBase : public QuicCryptoStream {
31 public:
32 explicit QuicCryptoServerStreamBase(QuicSession* session);
33
34 ~QuicCryptoServerStreamBase() override {}
35
36 // Cancel any outstanding callbacks, such as asynchronous validation of client
37 // hello.
38 virtual void CancelOutstandingCallbacks() = 0;
39
40 // GetBase64SHA256ClientChannelID sets |*output| to the base64 encoded,
41 // SHA-256 hash of the client's ChannelID key and returns true, if the client
42 // presented a ChannelID. Otherwise it returns false.
vasilvvc48c8712019-03-11 13:38:16 -070043 virtual bool GetBase64SHA256ClientChannelID(std::string* output) const = 0;
QUICHE teama6ef0a62019-03-07 20:34:33 -050044
45 virtual int NumServerConfigUpdateMessagesSent() const = 0;
46
47 // Sends the latest server config and source-address token to the client.
48 virtual void SendServerConfigUpdate(
49 const CachedNetworkParameters* cached_network_params) = 0;
50
51 // These are all accessors and setters to their respective counters.
52 virtual uint8_t NumHandshakeMessages() const = 0;
53 virtual uint8_t NumHandshakeMessagesWithServerNonces() const = 0;
QUICHE teama6ef0a62019-03-07 20:34:33 -050054 virtual bool ZeroRttAttempted() const = 0;
QUICHE teama6ef0a62019-03-07 20:34:33 -050055 virtual const CachedNetworkParameters* PreviousCachedNetworkParams()
56 const = 0;
57 virtual void SetPreviousCachedNetworkParams(
58 CachedNetworkParameters cached_network_params) = 0;
QUICHE teama6ef0a62019-03-07 20:34:33 -050059};
60
61class QUIC_EXPORT_PRIVATE QuicCryptoServerStream
62 : public QuicCryptoServerStreamBase {
63 public:
64 // QuicCryptoServerStream creates a HandshakerDelegate at construction time
65 // based on the QuicTransportVersion of the connection. Different
66 // HandshakerDelegates provide implementations of different crypto handshake
67 // protocols. Currently QUIC crypto is the only protocol implemented; a future
68 // HandshakerDelegate will use TLS as the handshake protocol.
69 // QuicCryptoServerStream delegates all of its public methods to its
70 // HandshakerDelegate.
71 //
72 // This setup of the crypto stream delegating its implementation to the
73 // handshaker results in the handshaker reading and writing bytes on the
74 // crypto stream, instead of the handshake rpassing the stream bytes to send.
75 class QUIC_EXPORT_PRIVATE HandshakerDelegate {
76 public:
77 virtual ~HandshakerDelegate() {}
78
79 // Cancel any outstanding callbacks, such as asynchronous validation of
80 // client hello.
81 virtual void CancelOutstandingCallbacks() = 0;
82
83 // GetBase64SHA256ClientChannelID sets |*output| to the base64 encoded,
84 // SHA-256 hash of the client's ChannelID key and returns true, if the
85 // client presented a ChannelID. Otherwise it returns false.
vasilvvc48c8712019-03-11 13:38:16 -070086 virtual bool GetBase64SHA256ClientChannelID(std::string* output) const = 0;
QUICHE teama6ef0a62019-03-07 20:34:33 -050087
88 // Sends the latest server config and source-address token to the client.
89 virtual void SendServerConfigUpdate(
90 const CachedNetworkParameters* cached_network_params) = 0;
91
92 // These are all accessors and setters to their respective counters.
93 virtual uint8_t NumHandshakeMessages() const = 0;
94 virtual uint8_t NumHandshakeMessagesWithServerNonces() const = 0;
95 virtual int NumServerConfigUpdateMessagesSent() const = 0;
96 virtual const CachedNetworkParameters* PreviousCachedNetworkParams()
97 const = 0;
98 virtual bool ZeroRttAttempted() const = 0;
99 virtual void SetPreviousCachedNetworkParams(
100 CachedNetworkParameters cached_network_params) = 0;
101
102 // NOTE: Indicating that the Expect-CT header should be sent here presents a
103 // layering violation to some extent. The Expect-CT header only applies to
104 // HTTP connections, while this class can be used for non-HTTP applications.
105 // However, it is exposed here because that is the only place where the
106 // configuration for the certificate used in the connection is accessible.
107 virtual bool ShouldSendExpectCTHeader() const = 0;
108
109 // Returns true once any encrypter (initial/0RTT or final/1RTT) has been set
110 // for the connection.
111 virtual bool encryption_established() const = 0;
112
113 // Returns true once the crypto handshake has completed.
114 virtual bool handshake_confirmed() const = 0;
115
116 // Returns the parameters negotiated in the crypto handshake.
117 virtual const QuicCryptoNegotiatedParameters& crypto_negotiated_params()
118 const = 0;
119
120 // Used by QuicCryptoStream to parse data received on this stream.
121 virtual CryptoMessageParser* crypto_message_parser() = 0;
122 };
123
124 class Helper {
125 public:
126 virtual ~Helper() {}
127
QUICHE teama6ef0a62019-03-07 20:34:33 -0500128 // Returns true if |message|, which was received on |self_address| is
129 // acceptable according to the visitor's policy. Otherwise, returns false
130 // and populates |error_details|.
131 virtual bool CanAcceptClientHello(const CryptoHandshakeMessage& message,
132 const QuicSocketAddress& client_address,
133 const QuicSocketAddress& peer_address,
134 const QuicSocketAddress& self_address,
vasilvvc48c8712019-03-11 13:38:16 -0700135 std::string* error_details) const = 0;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500136 };
137
138 // |crypto_config| must outlive the stream.
139 // |session| must outlive the stream.
140 // |helper| must outlive the stream.
141 QuicCryptoServerStream(const QuicCryptoServerConfig* crypto_config,
142 QuicCompressedCertsCache* compressed_certs_cache,
QUICHE teama6ef0a62019-03-07 20:34:33 -0500143 QuicSession* session,
144 Helper* helper);
145 QuicCryptoServerStream(const QuicCryptoServerStream&) = delete;
146 QuicCryptoServerStream& operator=(const QuicCryptoServerStream&) = delete;
147
148 ~QuicCryptoServerStream() override;
149
150 // From QuicCryptoServerStreamBase
151 void CancelOutstandingCallbacks() override;
vasilvvc48c8712019-03-11 13:38:16 -0700152 bool GetBase64SHA256ClientChannelID(std::string* output) const override;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500153 void SendServerConfigUpdate(
154 const CachedNetworkParameters* cached_network_params) override;
155 uint8_t NumHandshakeMessages() const override;
156 uint8_t NumHandshakeMessagesWithServerNonces() const override;
157 int NumServerConfigUpdateMessagesSent() const override;
158 const CachedNetworkParameters* PreviousCachedNetworkParams() const override;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500159 bool ZeroRttAttempted() const override;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500160 void SetPreviousCachedNetworkParams(
161 CachedNetworkParameters cached_network_params) override;
162
163 // NOTE: Indicating that the Expect-CT header should be sent here presents
164 // a layering violation to some extent. The Expect-CT header only applies to
165 // HTTP connections, while this class can be used for non-HTTP applications.
166 // However, it is exposed here because that is the only place where the
167 // configuration for the certificate used in the connection is accessible.
168 bool ShouldSendExpectCTHeader() const;
169
170 bool encryption_established() const override;
171 bool handshake_confirmed() const override;
172 const QuicCryptoNegotiatedParameters& crypto_negotiated_params()
173 const override;
174 CryptoMessageParser* crypto_message_parser() override;
175 void OnSuccessfulVersionNegotiation(
176 const ParsedQuicVersion& version) override;
177
178 protected:
179 // Provided so that subclasses can provide their own handshaker.
180 virtual HandshakerDelegate* handshaker() const;
181
182 private:
183 std::unique_ptr<HandshakerDelegate> handshaker_;
184
QUICHE teama6ef0a62019-03-07 20:34:33 -0500185 // Arguments from QuicCryptoServerStream constructor that might need to be
186 // passed to the HandshakerDelegate constructor in its late construction.
187 const QuicCryptoServerConfig* crypto_config_;
188 QuicCompressedCertsCache* compressed_certs_cache_;
189 Helper* helper_;
190};
191
192} // namespace quic
193
194#endif // QUICHE_QUIC_CORE_QUIC_CRYPTO_SERVER_STREAM_H_