blob: fd1743b50aed1c42b7ba1fdb8ca2685cf9deb26d [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// 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_QUARTC_QUARTC_SESSION_H_
6#define QUICHE_QUIC_QUARTC_QUARTC_SESSION_H_
7
8#include <memory>
9#include <string>
10
11#include "net/third_party/quiche/src/quic/core/quic_crypto_client_stream.h"
12#include "net/third_party/quiche/src/quic/core/quic_crypto_server_stream.h"
13#include "net/third_party/quiche/src/quic/core/quic_crypto_stream.h"
14#include "net/third_party/quiche/src/quic/core/quic_error_codes.h"
15#include "net/third_party/quiche/src/quic/core/quic_session.h"
16#include "net/third_party/quiche/src/quic/core/quic_types.h"
17#include "net/third_party/quiche/src/quic/quartc/quartc_packet_writer.h"
18#include "net/third_party/quiche/src/quic/quartc/quartc_stream.h"
19
20namespace quic {
21
22// QuartcSession owns and manages a QUIC connection.
23class QuartcSession : public QuicSession,
24 public QuartcPacketTransport::Delegate {
25 public:
26 QuartcSession(std::unique_ptr<QuicConnection> connection,
27 Visitor* visitor,
28 const QuicConfig& config,
29 const ParsedQuicVersionVector& supported_versions,
30 const QuicClock* clock);
31 QuartcSession(const QuartcSession&) = delete;
32 QuartcSession& operator=(const QuartcSession&) = delete;
33 ~QuartcSession() override;
34
35 // QuicSession overrides.
36 QuartcStream* CreateOutgoingBidirectionalStream();
37
38 // Sends short unreliable message using quic message frame (message must fit
39 // in one quic packet). If connection is blocked by congestion control,
40 // message will be queued and resent later after receiving an OnCanWrite
41 // notification.
42 //
43 // Message size must be <= GetLargestMessagePayload().
44 //
45 // Supported in quic version 45 or later.
46 //
47 // Returns false and logs error if message is too long or session does not
48 // support SendMessage API. Other unexpected errors during send will not be
49 // returned, because messages can be sent later if connection is congestion
50 // controlled.
QUICHE team136e7852019-05-13 14:10:34 -070051 //
52 // |datagram_id| is used to notify when message was sent in
53 // Delegate::OnMessageSent.
54 //
55 // TODO(sukhanov): We can not use QUIC message ID for notifications, because
56 // QUIC does not take ownership of messages and if connection is congestion
57 // controlled, message is not sent and does not get message id until it is
58 // sent successfully. It also creates problem of flow control between
59 // messages and streams if they are used together. We discussed it with QUIC
60 // team and there are multiple solutions, but for now we have to use our
61 // own datagram identification.
62 bool SendOrQueueMessage(QuicMemSliceSpan message, int64_t datagram_id);
QUICHE teama6ef0a62019-03-07 20:34:33 -050063
64 // Returns largest message payload acceptable in SendQuartcMessage.
ianswettb239f862019-04-05 09:15:06 -070065 QuicPacketLength GetCurrentLargestMessagePayload() const {
66 return connection()->GetCurrentLargestMessagePayload();
QUICHE teama6ef0a62019-03-07 20:34:33 -050067 }
68
69 // Return true if transport support message frame.
70 bool CanSendMessage() const {
71 return connection()->transport_version() > QUIC_VERSION_44;
72 }
73
74 void OnCryptoHandshakeEvent(CryptoHandshakeEvent event) override;
75
76 // QuicConnectionVisitorInterface overrides.
77 void OnCongestionWindowChange(QuicTime now) override;
78 bool ShouldKeepConnectionAlive() const override;
79
80 void OnCanWrite() override;
QUICHE team65d3e322019-04-29 14:19:54 -070081 bool SendProbingData() override;
QUICHE teama6ef0a62019-03-07 20:34:33 -050082
83 void OnConnectionClosed(QuicErrorCode error,
vasilvvc48c8712019-03-11 13:38:16 -070084 const std::string& error_details,
QUICHE teama6ef0a62019-03-07 20:34:33 -050085 ConnectionCloseSource source) override;
86
87 // QuartcSession methods.
88 virtual void StartCryptoHandshake() = 0;
89
90 // Closes the connection with the given human-readable error details.
91 // The connection closes with the QUIC_CONNECTION_CANCELLED error code to
92 // indicate the application closed it.
93 //
94 // Informs the peer that the connection has been closed. This prevents the
95 // peer from waiting until the connection times out.
96 //
97 // Cleans up the underlying QuicConnection's state. Closing the connection
98 // makes it safe to delete the QuartcSession.
vasilvvc48c8712019-03-11 13:38:16 -070099 void CloseConnection(const std::string& details);
QUICHE teama6ef0a62019-03-07 20:34:33 -0500100
101 // If the given stream is still open, sends a reset frame to cancel it.
102 // Note: This method cancels a stream by QuicStreamId rather than by pointer
103 // (or by a method on QuartcStream) because QuartcSession (and not
104 // the caller) owns the streams. Streams may finish and be deleted before the
105 // caller tries to cancel them, rendering the caller's pointers invalid.
106 void CancelStream(QuicStreamId stream_id);
107
108 // Callbacks called by the QuartcSession to notify the user of the
109 // QuartcSession of certain events.
110 class Delegate {
111 public:
112 virtual ~Delegate() {}
113
114 // Called when the crypto handshake is complete. Crypto handshake on the
115 // client is only completed _after_ SHLO is received, but we can actually
116 // start sending media data right after CHLO is sent.
117 virtual void OnCryptoHandshakeComplete() = 0;
118
119 // Connection can be writable even before crypto handshake is complete.
120 // In particular, on the client, we can start sending data after sending
121 // full CHLO, without waiting for SHLO. This reduces a send delay by 1-rtt.
122 //
123 // This may be called multiple times.
124 virtual void OnConnectionWritable() = 0;
125
126 // Called when a new stream is received from the remote endpoint.
127 virtual void OnIncomingStream(QuartcStream* stream) = 0;
128
129 // Called when network parameters change in response to an ack frame.
130 virtual void OnCongestionControlChange(QuicBandwidth bandwidth_estimate,
131 QuicBandwidth pacing_rate,
132 QuicTime::Delta latest_rtt) = 0;
133
134 // Called when the connection is closed. This means all of the streams will
135 // be closed and no new streams can be created.
136 virtual void OnConnectionClosed(QuicErrorCode error_code,
vasilvvc48c8712019-03-11 13:38:16 -0700137 const std::string& error_details,
QUICHE teama6ef0a62019-03-07 20:34:33 -0500138 ConnectionCloseSource source) = 0;
139
140 // Called when message (sent as SendMessage) is received.
141 virtual void OnMessageReceived(QuicStringPiece message) = 0;
142
QUICHE team136e7852019-05-13 14:10:34 -0700143 // Called when message is sent to QUIC.
144 //
145 // Takes into account delay due to congestion control, but does not take
146 // into account any additional socket delays.
147 //
148 // Passed |datagram_id| is the same used in SendOrQueueMessage.
149 //
150 // TODO(sukhanov): We can take into account socket delay, but it's not clear
151 // if it's worth doing if we eventually plan to move congestion control to
152 // QUIC in QRTP model. If we need to do it, mellem@ thinks it's fairly
153 // strtaightforward: QUIC does not know about socket delay, but ICE does. We
154 // can tell ICE the QUIC packet number for each packet sent, and it will
155 // echo it back to us when the packet actually goes out. We just need to
156 // plumb that signal up to RTP's congestion control.
157 virtual void OnMessageSent(int64_t datagram_id) = 0;
158
QUICHE teama6ef0a62019-03-07 20:34:33 -0500159 // TODO(zhihuang): Add proof verification.
160 };
161
162 // The |delegate| is not owned by QuartcSession.
163 void SetDelegate(Delegate* session_delegate);
164
165 // Called when CanWrite() changes from false to true.
166 void OnTransportCanWrite() override;
167
168 // Called when a packet has been received and should be handled by the
169 // QuicConnection.
170 void OnTransportReceived(const char* data, size_t data_len) override;
171
172 void OnMessageReceived(QuicStringPiece message) override;
173
174 // Returns number of queued (not sent) messages submitted by
175 // SendOrQueueMessage. Messages are queued if connection is congestion
176 // controlled.
177 size_t send_message_queue_size() const { return send_message_queue_.size(); }
178
179 protected:
180 // QuicSession override.
181 QuicStream* CreateIncomingStream(QuicStreamId id) override;
renjietangbaea59c2019-05-29 15:08:14 -0700182 QuicStream* CreateIncomingStream(PendingStream* pending) override;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500183
184 std::unique_ptr<QuartcStream> CreateDataStream(QuicStreamId id,
185 spdy::SpdyPriority priority);
renjietangbaea59c2019-05-29 15:08:14 -0700186 std::unique_ptr<QuartcStream> CreateDataStream(PendingStream* pending,
QUICHE teama6ef0a62019-03-07 20:34:33 -0500187 spdy::SpdyPriority priority);
188 // Activates a QuartcStream. The session takes ownership of the stream, but
189 // returns an unowned pointer to the stream for convenience.
190 QuartcStream* ActivateDataStream(std::unique_ptr<QuartcStream> stream);
191
192 void ResetStream(QuicStreamId stream_id, QuicRstStreamErrorCode error);
193
194 const QuicClock* clock() { return clock_; }
195
196 private:
197 std::unique_ptr<QuartcStream> InitializeDataStream(
198 std::unique_ptr<QuartcStream> stream,
199 spdy::SpdyPriority priority);
200
QUICHE team136e7852019-05-13 14:10:34 -0700201 // Holds message until it's sent.
202 struct QueuedMessage {
203 QueuedMessage(QuicMemSlice the_message, int64_t the_datagram_id)
204 : message(std::move(the_message)), datagram_id(the_datagram_id) {}
205 QuicMemSlice message;
206 int64_t datagram_id;
207 };
208
QUICHE teama6ef0a62019-03-07 20:34:33 -0500209 void ProcessSendMessageQueue();
210
211 // Take ownership of the QuicConnection. Note: if |connection_| changes,
212 // the new value of |connection_| must be given to |packet_writer_| before any
213 // packets are written. Otherwise, |packet_writer_| will crash.
214 std::unique_ptr<QuicConnection> connection_;
215
216 // For recording packet receipt time
217 const QuicClock* clock_;
218
219 // Not owned by QuartcSession.
220 Delegate* session_delegate_ = nullptr;
221
222 // Options passed to the packet writer for each packet.
223 std::unique_ptr<QuartcPerPacketOptions> per_packet_options_;
224
225 // Queue of pending messages sent by SendQuartcMessage that were not sent
226 // yet or blocked by congestion control. Messages are queued in the order
227 // of sent by SendOrQueueMessage().
QUICHE team136e7852019-05-13 14:10:34 -0700228 QuicDeque<QueuedMessage> send_message_queue_;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500229};
230
231class QuartcClientSession : public QuartcSession,
232 public QuicCryptoClientStream::ProofHandler {
233 public:
234 QuartcClientSession(
235 std::unique_ptr<QuicConnection> connection,
236 const QuicConfig& config,
237 const ParsedQuicVersionVector& supported_versions,
238 const QuicClock* clock,
239 std::unique_ptr<QuartcPacketWriter> packet_writer,
240 std::unique_ptr<QuicCryptoClientConfig> client_crypto_config,
241 QuicStringPiece server_crypto_config);
242 QuartcClientSession(const QuartcClientSession&) = delete;
243 QuartcClientSession& operator=(const QuartcClientSession&) = delete;
244
245 ~QuartcClientSession() override;
246
247 // Initialize should not be called on a QuartcSession. Instead, call
248 // StartCryptoHandshake().
249 // TODO(mellem): Move creation of the crypto stream into Initialize() and
250 // remove StartCryptoHandshake() to bring QuartcSession in line with other
251 // implementations of QuicSession, which can be started by calling
252 // Initialize().
253 void Initialize() override;
254
255 // Accessors for the client crypto stream.
256 QuicCryptoStream* GetMutableCryptoStream() override;
257 const QuicCryptoStream* GetCryptoStream() const override;
258
259 // Initializes the session and sends a handshake.
260 void StartCryptoHandshake() override;
261
262 // ProofHandler overrides.
263 void OnProofValid(const QuicCryptoClientConfig::CachedState& cached) override;
264
265 // Called by the client crypto handshake when proof verification details
266 // become available, either because proof verification is complete, or when
267 // cached details are used.
268 void OnProofVerifyDetailsAvailable(
269 const ProofVerifyDetails& verify_details) override;
270
271 private:
272 // Packet writer used by |connection_|.
273 std::unique_ptr<QuartcPacketWriter> packet_writer_;
274
275 // Config for QUIC crypto stream.
276 std::unique_ptr<QuicCryptoClientConfig> client_crypto_config_;
277
278 // Client perspective crypto stream.
279 std::unique_ptr<QuicCryptoClientStream> crypto_stream_;
280
vasilvvc48c8712019-03-11 13:38:16 -0700281 const std::string server_config_;
QUICHE teama6ef0a62019-03-07 20:34:33 -0500282};
283
284class QuartcServerSession : public QuartcSession {
285 public:
286 QuartcServerSession(std::unique_ptr<QuicConnection> connection,
287 Visitor* visitor,
288 const QuicConfig& config,
289 const ParsedQuicVersionVector& supported_versions,
290 const QuicClock* clock,
291 const QuicCryptoServerConfig* server_crypto_config,
292 QuicCompressedCertsCache* const compressed_certs_cache,
293 QuicCryptoServerStream::Helper* const stream_helper);
294 QuartcServerSession(const QuartcServerSession&) = delete;
295 QuartcServerSession& operator=(const QuartcServerSession&) = delete;
296
297 // Accessors for the server crypto stream.
298 QuicCryptoStream* GetMutableCryptoStream() override;
299 const QuicCryptoStream* GetCryptoStream() const override;
300
301 // Initializes the session and prepares to receive a handshake.
302 void StartCryptoHandshake() override;
303
304 private:
305 // Config for QUIC crypto stream.
306 const QuicCryptoServerConfig* server_crypto_config_;
307
308 // Used by QUIC crypto server stream to track most recently compressed certs.
309 QuicCompressedCertsCache* const compressed_certs_cache_;
310
311 // This helper is needed to create QuicCryptoServerStream.
312 QuicCryptoServerStream::Helper* const stream_helper_;
313
314 // Server perspective crypto stream.
315 std::unique_ptr<QuicCryptoServerStream> crypto_stream_;
316};
317
318} // namespace quic
319
320#endif // QUICHE_QUIC_QUARTC_QUARTC_SESSION_H_