vasilvv | e6472f6 | 2019-10-02 06:50:56 -0700 | [diff] [blame] | 1 | // Copyright (c) 2019 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 | #include "net/third_party/quiche/src/quic/quic_transport/quic_transport_client_session.h" |
| 6 | |
vasilvv | ddf5247 | 2019-10-04 15:14:02 -0700 | [diff] [blame] | 7 | #include <cstdint> |
| 8 | #include <limits> |
vasilvv | e6472f6 | 2019-10-02 06:50:56 -0700 | [diff] [blame] | 9 | #include <memory> |
vasilvv | 2b0ab24 | 2020-01-07 07:32:09 -0800 | [diff] [blame] | 10 | #include <string> |
bnc | 463f235 | 2019-10-10 04:49:34 -0700 | [diff] [blame] | 11 | #include <utility> |
vasilvv | e6472f6 | 2019-10-02 06:50:56 -0700 | [diff] [blame] | 12 | |
vasilvv | 74b1661 | 2020-10-09 11:42:53 -0700 | [diff] [blame] | 13 | #include "absl/strings/string_view.h" |
vasilvv | e6472f6 | 2019-10-02 06:50:56 -0700 | [diff] [blame] | 14 | #include "url/gurl.h" |
vasilvv | 2b0ab24 | 2020-01-07 07:32:09 -0800 | [diff] [blame] | 15 | #include "net/third_party/quiche/src/quic/core/quic_constants.h" |
vasilvv | e6472f6 | 2019-10-02 06:50:56 -0700 | [diff] [blame] | 16 | #include "net/third_party/quiche/src/quic/core/quic_crypto_client_stream.h" |
vasilvv | ddf5247 | 2019-10-04 15:14:02 -0700 | [diff] [blame] | 17 | #include "net/third_party/quiche/src/quic/core/quic_data_writer.h" |
| 18 | #include "net/third_party/quiche/src/quic/core/quic_error_codes.h" |
vasilvv | e6472f6 | 2019-10-02 06:50:56 -0700 | [diff] [blame] | 19 | #include "net/third_party/quiche/src/quic/core/quic_session.h" |
| 20 | #include "net/third_party/quiche/src/quic/core/quic_types.h" |
| 21 | #include "net/third_party/quiche/src/quic/core/quic_versions.h" |
vasilvv | d88f162 | 2019-11-04 13:50:53 -0800 | [diff] [blame] | 22 | #include "net/third_party/quiche/src/quic/platform/api/quic_bug_tracker.h" |
vasilvv | e6472f6 | 2019-10-02 06:50:56 -0700 | [diff] [blame] | 23 | #include "net/third_party/quiche/src/quic/platform/api/quic_logging.h" |
vasilvv | d88f162 | 2019-11-04 13:50:53 -0800 | [diff] [blame] | 24 | #include "net/third_party/quiche/src/quic/quic_transport/quic_transport_protocol.h" |
vasilvv | 312e3a5 | 2019-10-18 15:06:14 -0700 | [diff] [blame] | 25 | #include "net/third_party/quiche/src/quic/quic_transport/quic_transport_stream.h" |
vasilvv | e6472f6 | 2019-10-02 06:50:56 -0700 | [diff] [blame] | 26 | |
| 27 | namespace quic { |
| 28 | |
vasilvv | e6472f6 | 2019-10-02 06:50:56 -0700 | [diff] [blame] | 29 | QuicTransportClientSession::QuicTransportClientSession( |
| 30 | QuicConnection* connection, |
| 31 | Visitor* owner, |
| 32 | const QuicConfig& config, |
| 33 | const ParsedQuicVersionVector& supported_versions, |
vasilvv | e58d0f1 | 2019-12-04 14:35:25 -0800 | [diff] [blame] | 34 | const GURL& url, |
vasilvv | e6472f6 | 2019-10-02 06:50:56 -0700 | [diff] [blame] | 35 | QuicCryptoClientConfig* crypto_config, |
vasilvv | dfbd3df | 2019-11-01 11:58:43 -0700 | [diff] [blame] | 36 | url::Origin origin, |
QUICHE team | 20456ed | 2020-11-18 22:24:42 -0800 | [diff] [blame] | 37 | ClientVisitor* visitor, |
| 38 | std::unique_ptr<QuicDatagramQueue::Observer> datagram_observer) |
vasilvv | e6472f6 | 2019-10-02 06:50:56 -0700 | [diff] [blame] | 39 | : QuicSession(connection, |
| 40 | owner, |
| 41 | config, |
| 42 | supported_versions, |
QUICHE team | 20456ed | 2020-11-18 22:24:42 -0800 | [diff] [blame] | 43 | /*num_expected_unidirectional_static_streams*/ 0, |
| 44 | std::move(datagram_observer)), |
vasilvv | e58d0f1 | 2019-12-04 14:35:25 -0800 | [diff] [blame] | 45 | url_(url), |
vasilvv | dfbd3df | 2019-11-01 11:58:43 -0700 | [diff] [blame] | 46 | origin_(origin), |
| 47 | visitor_(visitor) { |
vasilvv | e6472f6 | 2019-10-02 06:50:56 -0700 | [diff] [blame] | 48 | for (const ParsedQuicVersion& version : supported_versions) { |
| 49 | QUIC_BUG_IF(version.handshake_protocol != PROTOCOL_TLS1_3) |
| 50 | << "QuicTransport requires TLS 1.3 handshake"; |
| 51 | } |
vasilvv | e6472f6 | 2019-10-02 06:50:56 -0700 | [diff] [blame] | 52 | crypto_stream_ = std::make_unique<QuicCryptoClientStream>( |
vasilvv | e58d0f1 | 2019-12-04 14:35:25 -0800 | [diff] [blame] | 53 | QuicServerId(url.host(), url.EffectiveIntPort()), this, |
| 54 | crypto_config->proof_verifier()->CreateDefaultContext(), crypto_config, |
vasilvv | 636b7f2 | 2020-08-07 10:37:19 -0700 | [diff] [blame] | 55 | /*proof_handler=*/this, /*has_application_state = */ true); |
vasilvv | e6472f6 | 2019-10-02 06:50:56 -0700 | [diff] [blame] | 56 | } |
| 57 | |
vasilvv | 74b1661 | 2020-10-09 11:42:53 -0700 | [diff] [blame] | 58 | void QuicTransportClientSession::OnAlpnSelected(absl::string_view alpn) { |
vasilvv | 467b422 | 2019-12-09 16:22:11 -0800 | [diff] [blame] | 59 | // Defense in-depth: ensure the ALPN selected is the desired one. |
| 60 | if (alpn != QuicTransportAlpn()) { |
| 61 | QUIC_BUG << "QuicTransport negotiated non-QuicTransport ALPN: " << alpn; |
| 62 | connection()->CloseConnection( |
| 63 | QUIC_INTERNAL_ERROR, "QuicTransport negotiated non-QuicTransport ALPN", |
| 64 | ConnectionCloseBehavior::SEND_CONNECTION_CLOSE_PACKET); |
| 65 | return; |
| 66 | } |
| 67 | |
| 68 | alpn_received_ = true; |
| 69 | } |
| 70 | |
vasilvv | 312e3a5 | 2019-10-18 15:06:14 -0700 | [diff] [blame] | 71 | QuicStream* QuicTransportClientSession::CreateIncomingStream(QuicStreamId id) { |
vasilvv | dfbd3df | 2019-11-01 11:58:43 -0700 | [diff] [blame] | 72 | QUIC_DVLOG(1) << "Creating incoming QuicTransport stream " << id; |
vasilvv | d88f162 | 2019-11-04 13:50:53 -0800 | [diff] [blame] | 73 | QuicTransportStream* stream = CreateStream(id); |
| 74 | if (stream->type() == BIDIRECTIONAL) { |
| 75 | incoming_bidirectional_streams_.push_back(stream); |
vasilvv | dfbd3df | 2019-11-01 11:58:43 -0700 | [diff] [blame] | 76 | visitor_->OnIncomingBidirectionalStreamAvailable(); |
| 77 | } else { |
vasilvv | d88f162 | 2019-11-04 13:50:53 -0800 | [diff] [blame] | 78 | incoming_unidirectional_streams_.push_back(stream); |
vasilvv | dfbd3df | 2019-11-01 11:58:43 -0700 | [diff] [blame] | 79 | visitor_->OnIncomingUnidirectionalStreamAvailable(); |
| 80 | } |
vasilvv | d88f162 | 2019-11-04 13:50:53 -0800 | [diff] [blame] | 81 | return stream; |
vasilvv | 312e3a5 | 2019-10-18 15:06:14 -0700 | [diff] [blame] | 82 | } |
| 83 | |
fayang | d58736d | 2019-11-27 13:35:31 -0800 | [diff] [blame] | 84 | void QuicTransportClientSession::SetDefaultEncryptionLevel( |
| 85 | EncryptionLevel level) { |
| 86 | QuicSession::SetDefaultEncryptionLevel(level); |
| 87 | if (level == ENCRYPTION_FORWARD_SECURE) { |
| 88 | SendClientIndication(); |
| 89 | } |
| 90 | } |
| 91 | |
renjietang | c50cc4a | 2020-08-17 18:33:30 -0700 | [diff] [blame] | 92 | void QuicTransportClientSession::OnTlsHandshakeComplete() { |
| 93 | QuicSession::OnTlsHandshakeComplete(); |
fayang | d18bfb9 | 2020-03-19 17:24:21 -0700 | [diff] [blame] | 94 | SendClientIndication(); |
| 95 | } |
| 96 | |
vasilvv | dfbd3df | 2019-11-01 11:58:43 -0700 | [diff] [blame] | 97 | QuicTransportStream* |
| 98 | QuicTransportClientSession::AcceptIncomingBidirectionalStream() { |
| 99 | if (incoming_bidirectional_streams_.empty()) { |
| 100 | return nullptr; |
| 101 | } |
| 102 | QuicTransportStream* stream = incoming_bidirectional_streams_.front(); |
| 103 | incoming_bidirectional_streams_.pop_front(); |
| 104 | return stream; |
| 105 | } |
| 106 | |
| 107 | QuicTransportStream* |
| 108 | QuicTransportClientSession::AcceptIncomingUnidirectionalStream() { |
| 109 | if (incoming_unidirectional_streams_.empty()) { |
| 110 | return nullptr; |
| 111 | } |
| 112 | QuicTransportStream* stream = incoming_unidirectional_streams_.front(); |
| 113 | incoming_unidirectional_streams_.pop_front(); |
| 114 | return stream; |
| 115 | } |
| 116 | |
vasilvv | d88f162 | 2019-11-04 13:50:53 -0800 | [diff] [blame] | 117 | QuicTransportStream* |
| 118 | QuicTransportClientSession::OpenOutgoingBidirectionalStream() { |
| 119 | if (!CanOpenNextOutgoingBidirectionalStream()) { |
| 120 | QUIC_BUG << "Attempted to open a stream in violation of flow control"; |
| 121 | return nullptr; |
| 122 | } |
| 123 | return CreateStream(GetNextOutgoingBidirectionalStreamId()); |
| 124 | } |
| 125 | |
| 126 | QuicTransportStream* |
| 127 | QuicTransportClientSession::OpenOutgoingUnidirectionalStream() { |
| 128 | if (!CanOpenNextOutgoingUnidirectionalStream()) { |
| 129 | QUIC_BUG << "Attempted to open a stream in violation of flow control"; |
| 130 | return nullptr; |
| 131 | } |
| 132 | return CreateStream(GetNextOutgoingUnidirectionalStreamId()); |
| 133 | } |
| 134 | |
| 135 | QuicTransportStream* QuicTransportClientSession::CreateStream(QuicStreamId id) { |
| 136 | auto stream = std::make_unique<QuicTransportStream>(id, this, this); |
| 137 | QuicTransportStream* stream_ptr = stream.get(); |
| 138 | ActivateStream(std::move(stream)); |
| 139 | return stream_ptr; |
| 140 | } |
| 141 | |
vasilvv | ddf5247 | 2019-10-04 15:14:02 -0700 | [diff] [blame] | 142 | std::string QuicTransportClientSession::SerializeClientIndication() { |
| 143 | std::string serialized_origin = origin_.Serialize(); |
| 144 | if (serialized_origin.size() > std::numeric_limits<uint16_t>::max()) { |
| 145 | QUIC_BUG << "Client origin too long"; |
vasilvv | e6472f6 | 2019-10-02 06:50:56 -0700 | [diff] [blame] | 146 | connection()->CloseConnection( |
vasilvv | ddf5247 | 2019-10-04 15:14:02 -0700 | [diff] [blame] | 147 | QUIC_INTERNAL_ERROR, "Client origin too long", |
| 148 | ConnectionCloseBehavior::SEND_CONNECTION_CLOSE_PACKET); |
| 149 | return ""; |
| 150 | } |
| 151 | QUIC_DLOG(INFO) << "Sending client indication with origin " |
| 152 | << serialized_origin; |
| 153 | |
vasilvv | e58d0f1 | 2019-12-04 14:35:25 -0800 | [diff] [blame] | 154 | std::string path = url_.PathForRequest(); |
| 155 | if (path.size() > std::numeric_limits<uint16_t>::max()) { |
| 156 | connection()->CloseConnection( |
| 157 | QUIC_TRANSPORT_INVALID_CLIENT_INDICATION, "Requested URL path too long", |
| 158 | ConnectionCloseBehavior::SEND_CONNECTION_CLOSE_PACKET); |
| 159 | return ""; |
| 160 | } |
vasilvv | ddf5247 | 2019-10-04 15:14:02 -0700 | [diff] [blame] | 161 | |
vasilvv | e58d0f1 | 2019-12-04 14:35:25 -0800 | [diff] [blame] | 162 | constexpr size_t kPrefixSize = |
| 163 | sizeof(QuicTransportClientIndicationKeys) + sizeof(uint16_t); |
| 164 | const size_t buffer_size = |
| 165 | 2 * kPrefixSize + serialized_origin.size() + path.size(); |
| 166 | if (buffer_size > std::numeric_limits<uint16_t>::max()) { |
| 167 | connection()->CloseConnection( |
| 168 | QUIC_TRANSPORT_INVALID_CLIENT_INDICATION, |
| 169 | "Client indication size limit exceeded", |
| 170 | ConnectionCloseBehavior::SEND_CONNECTION_CLOSE_PACKET); |
| 171 | return ""; |
| 172 | } |
| 173 | |
| 174 | std::string buffer; |
| 175 | buffer.resize(buffer_size); |
| 176 | QuicDataWriter writer(buffer.size(), &buffer[0]); |
| 177 | bool success = |
| 178 | writer.WriteUInt16( |
| 179 | static_cast<uint16_t>(QuicTransportClientIndicationKeys::kOrigin)) && |
| 180 | writer.WriteUInt16(serialized_origin.size()) && |
| 181 | writer.WriteStringPiece(serialized_origin) && |
| 182 | writer.WriteUInt16( |
| 183 | static_cast<uint16_t>(QuicTransportClientIndicationKeys::kPath)) && |
| 184 | writer.WriteUInt16(path.size()) && writer.WriteStringPiece(path); |
| 185 | QUIC_BUG_IF(!success) << "Failed to serialize client indication"; |
| 186 | QUIC_BUG_IF(writer.length() != buffer.length()) |
| 187 | << "Serialized client indication has length different from expected"; |
vasilvv | ddf5247 | 2019-10-04 15:14:02 -0700 | [diff] [blame] | 188 | return buffer; |
| 189 | } |
| 190 | |
| 191 | void QuicTransportClientSession::SendClientIndication() { |
| 192 | if (!crypto_stream_->encryption_established()) { |
| 193 | QUIC_BUG << "Client indication may only be sent once the encryption is " |
| 194 | "established."; |
| 195 | connection()->CloseConnection( |
| 196 | QUIC_INTERNAL_ERROR, "Attempted to send client indication unencrypted", |
| 197 | ConnectionCloseBehavior::SEND_CONNECTION_CLOSE_PACKET); |
| 198 | return; |
| 199 | } |
vasilvv | 59dc4b6 | 2019-10-11 12:56:14 -0700 | [diff] [blame] | 200 | if (ready_) { |
vasilvv | ddf5247 | 2019-10-04 15:14:02 -0700 | [diff] [blame] | 201 | QUIC_BUG << "Client indication may only be sent once."; |
| 202 | connection()->CloseConnection( |
| 203 | QUIC_INTERNAL_ERROR, "Attempted to send client indication twice", |
vasilvv | e6472f6 | 2019-10-02 06:50:56 -0700 | [diff] [blame] | 204 | ConnectionCloseBehavior::SEND_CONNECTION_CLOSE_PACKET); |
| 205 | return; |
| 206 | } |
| 207 | |
vasilvv | ddf5247 | 2019-10-04 15:14:02 -0700 | [diff] [blame] | 208 | auto client_indication_owned = std::make_unique<ClientIndication>( |
vasilvv | d88f162 | 2019-11-04 13:50:53 -0800 | [diff] [blame] | 209 | /*stream_id=*/GetNextOutgoingUnidirectionalStreamId(), this, |
| 210 | /*is_static=*/false, WRITE_UNIDIRECTIONAL); |
| 211 | QUIC_BUG_IF(client_indication_owned->id() != ClientIndicationStream()) |
| 212 | << "Client indication stream is " << client_indication_owned->id() |
| 213 | << " instead of expected " << ClientIndicationStream(); |
vasilvv | ddf5247 | 2019-10-04 15:14:02 -0700 | [diff] [blame] | 214 | ClientIndication* client_indication = client_indication_owned.get(); |
| 215 | ActivateStream(std::move(client_indication_owned)); |
vasilvv | e6472f6 | 2019-10-02 06:50:56 -0700 | [diff] [blame] | 216 | |
vasilvv | ddf5247 | 2019-10-04 15:14:02 -0700 | [diff] [blame] | 217 | client_indication->WriteOrBufferData(SerializeClientIndication(), |
| 218 | /*fin=*/true, nullptr); |
| 219 | client_indication_sent_ = true; |
vasilvv | 59dc4b6 | 2019-10-11 12:56:14 -0700 | [diff] [blame] | 220 | |
vasilvv | 467b422 | 2019-12-09 16:22:11 -0800 | [diff] [blame] | 221 | // Defense in depth: never set the ready bit unless ALPN has been confirmed. |
| 222 | if (!alpn_received_) { |
| 223 | QUIC_BUG << "ALPN confirmation missing after handshake complete"; |
| 224 | connection()->CloseConnection( |
| 225 | QUIC_INTERNAL_ERROR, |
| 226 | "ALPN confirmation missing after handshake complete", |
| 227 | ConnectionCloseBehavior::SEND_CONNECTION_CLOSE_PACKET); |
| 228 | return; |
| 229 | } |
| 230 | |
vasilvv | 59dc4b6 | 2019-10-11 12:56:14 -0700 | [diff] [blame] | 231 | // Don't set the ready bit if we closed the connection due to any error |
| 232 | // beforehand. |
| 233 | if (!connection()->connected()) { |
| 234 | return; |
| 235 | } |
vasilvv | 467b422 | 2019-12-09 16:22:11 -0800 | [diff] [blame] | 236 | |
vasilvv | 59dc4b6 | 2019-10-11 12:56:14 -0700 | [diff] [blame] | 237 | ready_ = true; |
vasilvv | 467b422 | 2019-12-09 16:22:11 -0800 | [diff] [blame] | 238 | visitor_->OnSessionReady(); |
vasilvv | e6472f6 | 2019-10-02 06:50:56 -0700 | [diff] [blame] | 239 | } |
| 240 | |
vasilvv | 74b1661 | 2020-10-09 11:42:53 -0700 | [diff] [blame] | 241 | void QuicTransportClientSession::OnMessageReceived(absl::string_view message) { |
vasilvv | da373d4 | 2020-01-16 12:36:27 -0800 | [diff] [blame] | 242 | visitor_->OnDatagramReceived(message); |
vasilvv | 2b0ab24 | 2020-01-07 07:32:09 -0800 | [diff] [blame] | 243 | } |
| 244 | |
vasilvv | ec038f1 | 2020-01-07 11:58:08 -0800 | [diff] [blame] | 245 | void QuicTransportClientSession::OnCanCreateNewOutgoingStream( |
| 246 | bool unidirectional) { |
| 247 | if (unidirectional) { |
| 248 | visitor_->OnCanCreateNewOutgoingUnidirectionalStream(); |
| 249 | } else { |
| 250 | visitor_->OnCanCreateNewOutgoingBidirectionalStream(); |
| 251 | } |
| 252 | } |
| 253 | |
vasilvv | 636b7f2 | 2020-08-07 10:37:19 -0700 | [diff] [blame] | 254 | void QuicTransportClientSession::OnProofValid( |
| 255 | const QuicCryptoClientConfig::CachedState& /*cached*/) {} |
| 256 | |
| 257 | void QuicTransportClientSession::OnProofVerifyDetailsAvailable( |
| 258 | const ProofVerifyDetails& /*verify_details*/) {} |
| 259 | |
vasilvv | e6472f6 | 2019-10-02 06:50:56 -0700 | [diff] [blame] | 260 | } // namespace quic |