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.
5 // A QuicSession, which demuxes a single connection to individual streams.
7 #ifndef NET_QUIC_QUIC_SESSION_H_
8 #define NET_QUIC_QUIC_SESSION_H_
14 #include "base/compiler_specific.h"
15 #include "base/containers/hash_tables.h"
16 #include "base/memory/scoped_ptr.h"
17 #include "base/strings/string_piece.h"
18 #include "net/base/ip_endpoint.h"
19 #include "net/quic/quic_connection.h"
20 #include "net/quic/quic_crypto_stream.h"
21 #include "net/quic/quic_packet_creator.h"
22 #include "net/quic/quic_protocol.h"
23 #include "net/quic/quic_write_blocked_list.h"
24 #include "net/quic/reliable_quic_stream.h"
28 class QuicCryptoStream
;
29 class QuicFlowController
;
30 class ReliableQuicStream
;
34 class QuicSessionPeer
;
37 class NET_EXPORT_PRIVATE QuicSession
: public QuicConnectionVisitorInterface
{
39 // CryptoHandshakeEvent enumerates the events generated by a QuicCryptoStream.
40 enum CryptoHandshakeEvent
{
41 // ENCRYPTION_FIRST_ESTABLISHED indicates that a full client hello has been
42 // sent by a client and that subsequent packets will be encrypted. (Client
44 ENCRYPTION_FIRST_ESTABLISHED
,
45 // ENCRYPTION_REESTABLISHED indicates that a client hello was rejected by
46 // the server and thus the encryption key has been updated. Therefore the
47 // connection should resend any packets that were sent under
48 // ENCRYPTION_INITIAL. (Client only.)
49 ENCRYPTION_REESTABLISHED
,
50 // HANDSHAKE_CONFIRMED, in a client, indicates the the server has accepted
51 // our handshake. In a server it indicates that a full, valid client hello
52 // has been received. (Client and server.)
56 QuicSession(QuicConnection
* connection
, const QuicConfig
& config
);
58 ~QuicSession() override
;
60 virtual void Initialize();
62 // QuicConnectionVisitorInterface methods:
63 void OnStreamFrame(const QuicStreamFrame
& frame
) override
;
64 void OnRstStream(const QuicRstStreamFrame
& frame
) override
;
65 void OnGoAway(const QuicGoAwayFrame
& frame
) override
;
66 void OnWindowUpdateFrame(const QuicWindowUpdateFrame
& frame
) override
;
67 void OnBlockedFrame(const QuicBlockedFrame
& frame
) override
;
68 void OnConnectionClosed(QuicErrorCode error
, bool from_peer
) override
;
69 void OnWriteBlocked() override
{}
70 void OnSuccessfulVersionNegotiation(const QuicVersion
& version
) override
;
71 void OnCanWrite() override
;
72 void OnCongestionWindowChange(QuicTime now
) override
{}
73 void OnConnectionMigration() override
{}
74 bool WillingAndAbleToWrite() const override
;
75 bool HasPendingHandshake() const override
;
76 bool HasOpenDynamicStreams() const override
;
78 // Called by streams when they want to write data to the peer.
79 // Returns a pair with the number of bytes consumed from data, and a boolean
80 // indicating if the fin bit was consumed. This does not indicate the data
81 // has been sent on the wire: it may have been turned into a packet and queued
82 // if the socket was unexpectedly blocked. |fec_protection| indicates if
83 // data is to be FEC protected. Note that data that is sent immediately
84 // following MUST_FEC_PROTECT data may get protected by falling within the
86 // If provided, |ack_notifier_delegate| will be registered to be notified when
87 // we have seen ACKs for all packets resulting from this call.
88 virtual QuicConsumedData
WritevData(
90 const QuicIOVector
& iov
,
91 QuicStreamOffset offset
,
93 FecProtection fec_protection
,
94 QuicAckNotifier::DelegateInterface
* ack_notifier_delegate
);
96 // Called by streams when they want to close the stream in both directions.
97 virtual void SendRstStream(QuicStreamId id
,
98 QuicRstStreamErrorCode error
,
99 QuicStreamOffset bytes_written
);
101 // Called when the session wants to go away and not accept any new streams.
102 void SendGoAway(QuicErrorCode error_code
, const std::string
& reason
);
104 // Removes the stream associated with 'stream_id' from the active stream map.
105 virtual void CloseStream(QuicStreamId stream_id
);
107 // Returns true if outgoing packets will be encrypted, even if the server
108 // hasn't confirmed the handshake yet.
109 virtual bool IsEncryptionEstablished();
111 // For a client, returns true if the server has confirmed our handshake. For
112 // a server, returns true if a full, valid client hello has been received.
113 virtual bool IsCryptoHandshakeConfirmed();
115 // Called by the QuicCryptoStream when a new QuicConfig has been negotiated.
116 virtual void OnConfigNegotiated();
118 // Called by the QuicCryptoStream when the handshake enters a new state.
120 // Clients will call this function in the order:
121 // ENCRYPTION_FIRST_ESTABLISHED
122 // zero or more ENCRYPTION_REESTABLISHED
123 // HANDSHAKE_CONFIRMED
125 // Servers will simply call it once with HANDSHAKE_CONFIRMED.
126 virtual void OnCryptoHandshakeEvent(CryptoHandshakeEvent event
);
128 // Called by the QuicCryptoStream when a handshake message is sent.
129 virtual void OnCryptoHandshakeMessageSent(
130 const CryptoHandshakeMessage
& message
);
132 // Called by the QuicCryptoStream when a handshake message is received.
133 virtual void OnCryptoHandshakeMessageReceived(
134 const CryptoHandshakeMessage
& message
);
136 // Returns mutable config for this session. Returned config is owned
138 QuicConfig
* config();
140 // Returns true if the stream existed previously and has been closed.
141 // Returns false if the stream is still active or if the stream has
142 // not yet been created.
143 bool IsClosedStream(QuicStreamId id
);
145 QuicConnection
* connection() { return connection_
.get(); }
146 const QuicConnection
* connection() const { return connection_
.get(); }
147 size_t num_active_requests() const { return dynamic_stream_map_
.size(); }
148 const IPEndPoint
& peer_address() const {
149 return connection_
->peer_address();
151 QuicConnectionId
connection_id() const {
152 return connection_
->connection_id();
155 // Returns the number of currently open streams, including those which have
156 // been implicitly created, but excluding the reserved headers and crypto
158 virtual size_t GetNumOpenStreams() const;
160 // Add the stream to the session's write-blocked list because it is blocked by
161 // connection-level flow control but not by its own stream-level flow control.
162 // The stream will be given a chance to write when a connection-level
163 // WINDOW_UPDATE arrives.
164 void MarkConnectionLevelWriteBlocked(QuicStreamId id
, QuicPriority priority
);
166 // Returns true if the session has data to be sent, either queued in the
167 // connection, or in a write-blocked stream.
168 bool HasDataToWrite() const;
170 bool goaway_sent() const;
172 bool goaway_received() const;
174 QuicErrorCode
error() const { return error_
; }
176 Perspective
perspective() const { return connection_
->perspective(); }
178 QuicFlowController
* flow_controller() { return &flow_controller_
; }
180 // Returns true if connection is flow controller blocked.
181 bool IsConnectionFlowControlBlocked() const;
183 // Returns true if any stream is flow controller blocked.
184 bool IsStreamFlowControlBlocked();
186 // Returns true if this is a secure QUIC session.
187 bool IsSecure() const { return connection()->is_secure(); }
189 size_t get_max_open_streams() const { return max_open_streams_
; }
191 ReliableQuicStream
* GetStream(const QuicStreamId stream_id
);
193 // Mark a stream as draining.
194 void StreamDraining(QuicStreamId id
);
197 typedef base::hash_map
<QuicStreamId
, ReliableQuicStream
*> StreamMap
;
199 // Creates a new stream, owned by the caller, to handle a peer-initiated
200 // stream. Returns nullptr and does error handling if the stream can not be
202 virtual ReliableQuicStream
* CreateIncomingDynamicStream(QuicStreamId id
) = 0;
204 // Create a new stream, owned by the caller, to handle a locally-initiated
205 // stream. Returns nullptr if max streams have already been opened.
206 virtual ReliableQuicStream
* CreateOutgoingDynamicStream() = 0;
208 // Return the reserved crypto stream.
209 virtual QuicCryptoStream
* GetCryptoStream() = 0;
211 // Adds 'stream' to the active stream map.
212 virtual void ActivateStream(ReliableQuicStream
* stream
);
214 // Returns the stream id for a new stream.
215 QuicStreamId
GetNextStreamId();
217 ReliableQuicStream
* GetIncomingDynamicStream(QuicStreamId stream_id
);
219 ReliableQuicStream
* GetDynamicStream(const QuicStreamId stream_id
);
221 // This is called after every call other than OnConnectionClose from the
222 // QuicConnectionVisitor to allow post-processing once the work has been done.
223 // In this case, it deletes streams given that it's safe to do so (no other
224 // operations are being done on the streams at this time)
225 virtual void PostProcessAfterData();
227 StreamMap
& static_streams() { return static_stream_map_
; }
228 const StreamMap
& static_streams() const { return static_stream_map_
; }
230 StreamMap
& dynamic_streams() { return dynamic_stream_map_
; }
231 const StreamMap
& dynamic_streams() const { return dynamic_stream_map_
; }
233 std::vector
<ReliableQuicStream
*>* closed_streams() {
234 return &closed_streams_
;
237 void set_max_open_streams(size_t max_open_streams
);
239 void set_largest_peer_created_stream_id(
240 QuicStreamId largest_peer_created_stream_id
) {
241 largest_peer_created_stream_id_
= largest_peer_created_stream_id
;
243 void set_error(QuicErrorCode error
) { error_
= error
; }
246 friend class test::QuicSessionPeer
;
247 friend class VisitorShim
;
249 // Performs the work required to close |stream_id|. If |locally_reset|
250 // then the stream has been reset by this endpoint, not by the peer.
251 void CloseStreamInner(QuicStreamId stream_id
, bool locally_reset
);
253 // When a stream is closed locally, it may not yet know how many bytes the
254 // peer sent on that stream.
255 // When this data arrives (via stream frame w. FIN, or RST) this method
256 // is called, and correctly updates the connection level flow controller.
257 void UpdateFlowControlOnFinalReceivedByteOffset(
258 QuicStreamId id
, QuicStreamOffset final_byte_offset
);
260 // Called in OnConfigNegotiated when we receive a new stream level flow
261 // control window in a negotiated config. Closes the connection if invalid.
262 void OnNewStreamFlowControlWindow(QuicStreamOffset new_window
);
264 // Called in OnConfigNegotiated when we receive a new connection level flow
265 // control window in a negotiated config. Closes the connection if invalid.
266 void OnNewSessionFlowControlWindow(QuicStreamOffset new_window
);
268 // Called in OnConfigNegotiated when auto-tuning is enabled for flow
269 // control receive windows.
270 void EnableAutoTuneReceiveWindow();
272 // Called in OnConfigNegotiated for finch trials to measure performance of
273 // starting with smaller flow control receive windows and auto-tuning.
274 void AdjustInitialFlowControlWindows(size_t stream_window
);
276 // Keep track of highest received byte offset of locally closed streams, while
277 // waiting for a definitive final highest offset from the peer.
278 std::map
<QuicStreamId
, QuicStreamOffset
>
279 locally_closed_streams_highest_offset_
;
281 scoped_ptr
<QuicConnection
> connection_
;
283 // A shim to stand between the connection and the session, to handle stream
285 scoped_ptr
<VisitorShim
> visitor_shim_
;
287 std::vector
<ReliableQuicStream
*> closed_streams_
;
291 // Returns the maximum number of streams this connection can open.
292 size_t max_open_streams_
;
294 // Static streams, such as crypto and header streams. Owned by child classes
295 // that create these streams.
296 StreamMap static_stream_map_
;
298 // Map from StreamId to pointers to streams that are owned by the caller.
299 StreamMap dynamic_stream_map_
;
300 QuicStreamId next_stream_id_
;
302 // Set of stream ids that have been "implicitly created" by receipt
303 // of a stream id larger than the next expected stream id.
304 base::hash_set
<QuicStreamId
> implicitly_created_streams_
;
306 // Set of stream ids that are "draining" -- a FIN has been sent and received,
307 // but the stream object still exists because not all the received data has
309 base::hash_set
<QuicStreamId
> draining_streams_
;
311 // A list of streams which need to write more data.
312 QuicWriteBlockedList write_blocked_streams_
;
314 QuicStreamId largest_peer_created_stream_id_
;
316 // The latched error with which the connection was closed.
317 QuicErrorCode error_
;
319 // Used for connection-level flow control.
320 QuicFlowController flow_controller_
;
322 // Indicate if there is pending data for the crypto stream.
323 bool has_pending_handshake_
;
325 DISALLOW_COPY_AND_ASSIGN(QuicSession
);
330 #endif // NET_QUIC_QUIC_SESSION_H_