1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/quic/quic_http_stream.h"
#include <set>
#include <string_view>
#include <utility>
#include "base/auto_reset.h"
#include "base/functional/bind.h"
#include "base/metrics/histogram_functions.h"
#include "base/strings/string_split.h"
#include "base/task/single_thread_task_runner.h"
#include "net/base/features.h"
#include "net/base/ip_endpoint.h"
#include "net/base/load_flags.h"
#include "net/base/net_errors.h"
#include "net/http/http_response_headers.h"
#include "net/http/http_status_code.h"
#include "net/http/http_util.h"
#include "net/log/net_log.h"
#include "net/log/net_log_event_type.h"
#include "net/log/net_log_source.h"
#include "net/quic/quic_http_utils.h"
#include "net/spdy/spdy_http_utils.h"
#include "net/ssl/ssl_info.h"
#include "net/third_party/quiche/src/quiche/http2/core/spdy_frame_builder.h"
#include "net/third_party/quiche/src/quiche/http2/core/spdy_framer.h"
#include "net/third_party/quiche/src/quiche/quic/core/http/spdy_utils.h"
#include "net/third_party/quiche/src/quiche/quic/core/quic_stream_sequencer.h"
#include "net/third_party/quiche/src/quiche/quic/core/quic_utils.h"
#include "url/origin.h"
#include "url/scheme_host_port.h"
namespace net {
QuicHttpStream::QuicHttpStream(
std::unique_ptr<QuicChromiumClientSession::Handle> session,
std::set<std::string> dns_aliases)
: MultiplexedHttpStream(std::move(session)),
dns_aliases_(std::move(dns_aliases)) {}
QuicHttpStream::~QuicHttpStream() {
CHECK(!in_loop_);
Close(false);
}
HttpConnectionInfo QuicHttpStream::ConnectionInfoFromQuicVersion(
quic::ParsedQuicVersion quic_version) {
switch (quic_version.transport_version) {
case quic::QUIC_VERSION_UNSUPPORTED:
return HttpConnectionInfo::kQUIC_UNKNOWN_VERSION;
case quic::QUIC_VERSION_46:
return HttpConnectionInfo::kQUIC_46;
case quic::QUIC_VERSION_IETF_DRAFT_29:
DCHECK(quic_version.UsesTls());
return HttpConnectionInfo::kQUIC_DRAFT_29;
case quic::QUIC_VERSION_IETF_RFC_V1:
DCHECK(quic_version.UsesTls());
return HttpConnectionInfo::kQUIC_RFC_V1;
case quic::QUIC_VERSION_RESERVED_FOR_NEGOTIATION:
return HttpConnectionInfo::kQUIC_999;
case quic::QUIC_VERSION_IETF_RFC_V2:
DCHECK(quic_version.UsesTls());
return HttpConnectionInfo::kQUIC_2_DRAFT_8;
}
NOTREACHED();
}
void QuicHttpStream::RegisterRequest(const HttpRequestInfo* request_info) {
DCHECK(request_info);
DCHECK(request_info->traffic_annotation.is_valid());
request_info_ = request_info;
}
int QuicHttpStream::InitializeStream(bool can_send_early,
RequestPriority priority,
const NetLogWithSource& stream_net_log,
CompletionOnceCallback callback) {
CHECK(callback_.is_null());
DCHECK(request_info_);
DCHECK(!stream_);
// HttpNetworkTransaction will retry any request that fails with
// ERR_QUIC_HANDSHAKE_FAILED. It will retry any request with
// ERR_CONNECTION_CLOSED so long as the connection has been used for other
// streams first and headers have not yet been received.
if (!quic_session()->IsConnected()) {
return GetResponseStatus();
}
stream_net_log.AddEventReferencingSource(
NetLogEventType::HTTP_STREAM_REQUEST_BOUND_TO_QUIC_SESSION,
quic_session()->net_log().source());
stream_net_log.AddEventWithIntParams(
NetLogEventType::QUIC_CONNECTION_MIGRATION_MODE,
"connection_migration_mode",
static_cast<int>(quic_session()->connection_migration_mode()));
stream_net_log_ = stream_net_log;
can_send_early_ = can_send_early;
request_time_ = base::Time::Now();
priority_ = priority;
SaveSSLInfo();
next_state_ = STATE_REQUEST_STREAM;
int rv = DoLoop(OK);
if (rv == ERR_IO_PENDING) {
callback_ = std::move(callback);
}
return MapStreamError(rv);
}
int QuicHttpStream::SendRequest(const HttpRequestHeaders& request_headers,
HttpResponseInfo* response,
CompletionOnceCallback callback) {
CHECK(!request_body_stream_);
CHECK(!response_info_);
CHECK(callback_.is_null());
CHECK(!callback.is_null());
CHECK(response);
if (!stream_ || !quic_session()->IsConnected()) {
return GetResponseStatus();
}
// Store the serialized request headers.
CreateSpdyHeadersFromHttpRequest(*request_info_, priority_, request_headers,
&request_headers_);
// Store the request body.
request_body_stream_ = request_info_->upload_data_stream;
if (request_body_stream_) {
// TODO(rch): Can we be more precise about when to allocate
// raw_request_body_buf_. Removed the following check. DoReadRequestBody()
// was being called even if we didn't yet allocate raw_request_body_buf_.
// && (request_body_stream_->size() ||
// request_body_stream_->is_chunked()))
// Set the body buffer size to be the size of the body clamped
// into the range [10 * quic::kMaxOutgoingPacketSize, 256 *
// quic::kMaxOutgoingPacketSize]. With larger bodies, larger buffers reduce
// CPU usage.
raw_request_body_buf_ =
base::MakeRefCounted<IOBufferWithSize>(static_cast<size_t>(
std::max(10 * quic::kMaxOutgoingPacketSize,
std::min(request_body_stream_->size(),
256 * quic::kMaxOutgoingPacketSize))));
// The request body buffer is empty at first.
request_body_buf_ =
base::MakeRefCounted<DrainableIOBuffer>(raw_request_body_buf_, 0);
}
// Store the response info.
response_info_ = response;
// Put the peer's IP address and port into the response.
IPEndPoint address;
int rv = quic_session()->GetPeerAddress(&address);
if (rv != OK) {
return rv;
}
response_info_->remote_endpoint = address;
next_state_ = STATE_SET_REQUEST_PRIORITY;
rv = DoLoop(OK);
if (rv == ERR_IO_PENDING) {
callback_ = std::move(callback);
}
return rv > 0 ? OK : MapStreamError(rv);
}
int QuicHttpStream::ReadResponseHeaders(CompletionOnceCallback callback) {
CHECK(callback_.is_null());
CHECK(!callback.is_null());
int rv = stream_->ReadInitialHeaders(
&response_header_block_,
base::BindOnce(&QuicHttpStream::OnReadResponseHeadersComplete,
weak_factory_.GetWeakPtr()));
if (rv == ERR_IO_PENDING) {
// Still waiting for the response, return IO_PENDING.
CHECK(callback_.is_null());
callback_ = std::move(callback);
return ERR_IO_PENDING;
}
if (rv < 0) {
return MapStreamError(rv);
}
// Check if we already have the response headers. If so, return synchronously.
if (response_headers_received_) {
return OK;
}
headers_bytes_received_ += rv;
return ProcessResponseHeaders(response_header_block_);
}
int QuicHttpStream::ReadResponseBody(IOBuffer* buf,
int buf_len,
CompletionOnceCallback callback) {
CHECK(callback_.is_null());
CHECK(!callback.is_null());
CHECK(!user_buffer_.get());
CHECK_EQ(0, user_buffer_len_);
// Invalidate HttpRequestInfo pointer. This is to allow the stream to be
// shared across multiple transactions which might require this
// stream to outlive the request_info_'s owner.
// Only allowed when Read state machine starts. It is safe to reset it at
// this point since request_info_->upload_data_stream is also not needed
// anymore.
request_info_ = nullptr;
// If the stream is already closed, there is no body to read.
if (stream_->IsDoneReading()) {
return HandleReadComplete(OK);
}
int rv = stream_->ReadBody(buf, buf_len,
base::BindOnce(&QuicHttpStream::OnReadBodyComplete,
weak_factory_.GetWeakPtr()));
if (rv == ERR_IO_PENDING) {
callback_ = std::move(callback);
user_buffer_ = buf;
user_buffer_len_ = buf_len;
return ERR_IO_PENDING;
}
if (rv < 0) {
return MapStreamError(rv);
}
return HandleReadComplete(rv);
}
void QuicHttpStream::Close(bool /*not_reusable*/) {
session_error_ = ERR_ABORTED;
SaveResponseStatus();
// Note: the not_reusable flag has no meaning for QUIC streams.
if (stream_) {
stream_->Reset(quic::QUIC_STREAM_CANCELLED);
}
ResetStream();
}
bool QuicHttpStream::IsResponseBodyComplete() const {
return next_state_ == STATE_OPEN && stream_->IsDoneReading();
}
bool QuicHttpStream::IsConnectionReused() const {
// TODO(rch): do something smarter here.
return stream_ && stream_->id() > 1;
}
int64_t QuicHttpStream::GetTotalReceivedBytes() const {
if (stream_) {
DCHECK_LE(stream_->NumBytesConsumed(), stream_->stream_bytes_read());
// Only count the uniquely received bytes.
return stream_->NumBytesConsumed();
}
return closed_stream_received_bytes_;
}
int64_t QuicHttpStream::GetTotalSentBytes() const {
if (stream_) {
return stream_->stream_bytes_written();
}
return closed_stream_sent_bytes_;
}
bool QuicHttpStream::GetLoadTimingInfo(LoadTimingInfo* load_timing_info) const {
bool is_first_stream = closed_is_first_stream_;
if (stream_) {
load_timing_info->socket_log_id = stream_->net_log().source().id;
is_first_stream = stream_->IsFirstStream();
load_timing_info->first_early_hints_time =
stream_->first_early_hints_time();
load_timing_info->receive_non_informational_headers_start =
stream_->headers_received_start_time();
load_timing_info->receive_headers_start =
load_timing_info->first_early_hints_time.is_null()
? load_timing_info->receive_non_informational_headers_start
: load_timing_info->first_early_hints_time;
}
if (is_first_stream) {
load_timing_info->socket_reused = false;
load_timing_info->connect_timing = connect_timing_;
} else {
load_timing_info->socket_reused = true;
}
return true;
}
bool QuicHttpStream::GetAlternativeService(
AlternativeService* alternative_service) const {
alternative_service->protocol = NextProto::kProtoQUIC;
const url::SchemeHostPort& destination = quic_session()->destination();
alternative_service->host = destination.host();
alternative_service->port = destination.port();
return true;
}
void QuicHttpStream::PopulateNetErrorDetails(NetErrorDetails* details) {
details->connection_info =
ConnectionInfoFromQuicVersion(quic_session()->GetQuicVersion());
quic_session()->PopulateNetErrorDetails(details);
if (quic_session()->OneRttKeysAvailable() && stream_ &&
stream_->connection_error() != quic::QUIC_NO_ERROR) {
details->quic_connection_error = stream_->connection_error();
}
}
void QuicHttpStream::SetPriority(RequestPriority priority) {
priority_ = priority;
}
void QuicHttpStream::OnReadResponseHeadersComplete(int rv) {
DCHECK(callback_);
DCHECK(!response_headers_received_);
if (rv > 0) {
headers_bytes_received_ += rv;
rv = ProcessResponseHeaders(response_header_block_);
}
if (rv != ERR_IO_PENDING && !callback_.is_null()) {
DoCallback(rv);
}
}
const std::set<std::string>& QuicHttpStream::GetDnsAliases() const {
return dns_aliases_;
}
std::string_view QuicHttpStream::GetAcceptChViaAlps() const {
if (!request_info_) {
return {};
}
return session()->GetAcceptChViaAlps(url::SchemeHostPort(request_info_->url));
}
std::optional<HttpStream::QuicConnectionDetails>
QuicHttpStream::GetQuicConnectionDetails() const {
QuicConnectionDetails details;
if (stream_) {
details.error.connection_error = stream_->connection_error();
details.error.stream_error = stream_->stream_error();
details.error.connection_wire_error = stream_->connection_wire_error();
details.error.ietf_application_error = stream_->ietf_application_error();
} else {
details.error.connection_error = connection_error_;
details.error.stream_error = stream_error_;
details.error.connection_wire_error = connection_wire_error_;
details.error.ietf_application_error = ietf_application_error_;
}
details.connection_migration_info =
quic_session()->GetConnectionMigrationInfoSinceInit();
return details;
}
void QuicHttpStream::ReadTrailingHeaders() {
int rv = stream_->ReadTrailingHeaders(
&trailing_header_block_,
base::BindOnce(&QuicHttpStream::OnReadTrailingHeadersComplete,
weak_factory_.GetWeakPtr()));
if (rv != ERR_IO_PENDING) {
OnReadTrailingHeadersComplete(rv);
}
}
void QuicHttpStream::OnReadTrailingHeadersComplete(int rv) {
DCHECK(response_headers_received_);
if (rv > 0) {
headers_bytes_received_ += rv;
}
// QuicHttpStream ignores trailers.
if (stream_->IsDoneReading()) {
// Close the read side. If the write side has been closed, this will
// invoke QuicHttpStream::OnClose to reset the stream.
stream_->OnFinRead();
SetResponseStatus(OK);
}
}
void QuicHttpStream::OnIOComplete(int rv) {
rv = DoLoop(rv);
if (rv != ERR_IO_PENDING && !callback_.is_null()) {
DoCallback(rv);
}
}
void QuicHttpStream::DoCallback(int rv) {
CHECK_NE(rv, ERR_IO_PENDING);
CHECK(!callback_.is_null());
CHECK(!in_loop_);
// The client callback can do anything, including destroying this class,
// so any pending callback must be issued after everything else is done.
std::move(callback_).Run(MapStreamError(rv));
}
int QuicHttpStream::DoLoop(int rv) {
CHECK(!in_loop_);
base::AutoReset<bool> auto_reset_in_loop(&in_loop_, true);
std::unique_ptr<quic::QuicConnection::ScopedPacketFlusher> packet_flusher =
quic_session()->CreatePacketBundler();
do {
State state = next_state_;
next_state_ = STATE_NONE;
switch (state) {
case STATE_REQUEST_STREAM:
CHECK_EQ(OK, rv);
rv = DoRequestStream();
break;
case STATE_REQUEST_STREAM_COMPLETE:
rv = DoRequestStreamComplete(rv);
break;
case STATE_SET_REQUEST_PRIORITY:
CHECK_EQ(OK, rv);
rv = DoSetRequestPriority();
break;
case STATE_SEND_HEADERS:
CHECK_EQ(OK, rv);
rv = DoSendHeaders();
break;
case STATE_SEND_HEADERS_COMPLETE:
rv = DoSendHeadersComplete(rv);
break;
case STATE_READ_REQUEST_BODY:
CHECK_EQ(OK, rv);
rv = DoReadRequestBody();
break;
case STATE_READ_REQUEST_BODY_COMPLETE:
rv = DoReadRequestBodyComplete(rv);
break;
case STATE_SEND_BODY:
CHECK_EQ(OK, rv);
rv = DoSendBody();
break;
case STATE_SEND_BODY_COMPLETE:
rv = DoSendBodyComplete(rv);
break;
case STATE_OPEN:
CHECK_EQ(OK, rv);
break;
default:
NOTREACHED() << "next_state_: " << next_state_;
}
} while (next_state_ != STATE_NONE && next_state_ != STATE_OPEN &&
rv != ERR_IO_PENDING);
return rv;
}
int QuicHttpStream::DoRequestStream() {
next_state_ = STATE_REQUEST_STREAM_COMPLETE;
return quic_session()->RequestStream(
!can_send_early_,
base::BindOnce(&QuicHttpStream::OnIOComplete, weak_factory_.GetWeakPtr()),
NetworkTrafficAnnotationTag(request_info_->traffic_annotation));
}
int QuicHttpStream::DoRequestStreamComplete(int rv) {
DCHECK(rv == OK || !stream_);
if (rv != OK) {
session_error_ = rv;
return GetResponseStatus();
}
stream_ = quic_session()->ReleaseStream();
DCHECK(stream_);
if (!stream_->IsOpen()) {
session_error_ = ERR_CONNECTION_CLOSED;
return GetResponseStatus();
}
if (request_info_->load_flags &
LOAD_DISABLE_CONNECTION_MIGRATION_TO_CELLULAR) {
stream_->DisableConnectionMigrationToCellularNetwork();
}
DCHECK(response_info_ == nullptr);
return OK;
}
int QuicHttpStream::DoSetRequestPriority() {
// Set priority according to request
DCHECK(stream_);
DCHECK(response_info_);
DCHECK(request_info_);
uint8_t urgency = ConvertRequestPriorityToQuicPriority(priority_);
bool incremental = request_info_->priority_incremental;
stream_->SetPriority(
quic::QuicStreamPriority(quic::HttpStreamPriority{urgency, incremental}));
next_state_ = STATE_SEND_HEADERS;
return OK;
}
int QuicHttpStream::DoSendHeaders() {
uint8_t urgency = ConvertRequestPriorityToQuicPriority(priority_);
bool incremental = request_info_->priority_incremental;
quic::QuicStreamPriority priority(
quic::HttpStreamPriority{urgency, incremental});
// Log the actual request with the URL Request's net log.
stream_net_log_.AddEvent(
NetLogEventType::HTTP_TRANSACTION_QUIC_SEND_REQUEST_HEADERS,
[&](NetLogCaptureMode capture_mode) {
return QuicRequestNetLogParams(stream_->id(), &request_headers_,
priority, capture_mode);
});
DispatchRequestHeadersCallback(request_headers_);
bool has_upload_data = request_body_stream_ != nullptr;
next_state_ = STATE_SEND_HEADERS_COMPLETE;
int rv = stream_->WriteHeaders(std::move(request_headers_), !has_upload_data,
nullptr);
if (rv > 0) {
headers_bytes_sent_ += rv;
}
request_headers_ = quiche::HttpHeaderBlock();
return rv;
}
int QuicHttpStream::DoSendHeadersComplete(int rv) {
if (rv < 0) {
return rv;
}
next_state_ = request_body_stream_ ? STATE_READ_REQUEST_BODY : STATE_OPEN;
return OK;
}
int QuicHttpStream::DoReadRequestBody() {
next_state_ = STATE_READ_REQUEST_BODY_COMPLETE;
return request_body_stream_->Read(
raw_request_body_buf_.get(), raw_request_body_buf_->size(),
base::BindOnce(&QuicHttpStream::OnIOComplete,
weak_factory_.GetWeakPtr()));
}
int QuicHttpStream::DoReadRequestBodyComplete(int rv) {
// |rv| is the result of read from the request body from the last call to
// DoSendBody().
if (rv < 0) {
stream_->Reset(quic::QUIC_ERROR_PROCESSING_STREAM);
ResetStream();
return rv;
}
request_body_buf_ =
base::MakeRefCounted<DrainableIOBuffer>(raw_request_body_buf_, rv);
if (rv == 0) { // Reached the end.
DCHECK(request_body_stream_->IsEOF());
}
next_state_ = STATE_SEND_BODY;
return OK;
}
int QuicHttpStream::DoSendBody() {
CHECK(request_body_stream_);
CHECK(request_body_buf_.get());
const bool eof = request_body_stream_->IsEOF();
int len = request_body_buf_->BytesRemaining();
if (len > 0 || eof) {
next_state_ = STATE_SEND_BODY_COMPLETE;
std::string_view data(request_body_buf_->data(), len);
return stream_->WriteStreamData(
data, eof,
base::BindOnce(&QuicHttpStream::OnIOComplete,
weak_factory_.GetWeakPtr()));
}
next_state_ = STATE_OPEN;
return OK;
}
int QuicHttpStream::DoSendBodyComplete(int rv) {
if (rv < 0) {
return rv;
}
request_body_buf_->DidConsume(request_body_buf_->BytesRemaining());
if (!request_body_stream_->IsEOF()) {
next_state_ = STATE_READ_REQUEST_BODY;
return OK;
}
next_state_ = STATE_OPEN;
return OK;
}
int QuicHttpStream::ProcessResponseHeaders(
const quiche::HttpHeaderBlock& headers) {
const int rv = SpdyHeadersToHttpResponse(headers, response_info_);
base::UmaHistogramBoolean("Net.QuicHttpStream.ProcessResponseHeaderSuccess",
rv == OK);
if (rv != OK) {
DLOG(WARNING) << "Invalid headers";
return ERR_QUIC_PROTOCOL_ERROR;
}
if (response_info_->headers->response_code() == HTTP_EARLY_HINTS) {
DCHECK(!response_headers_received_);
headers_bytes_received_ = 0;
return OK;
}
response_info_->connection_info =
ConnectionInfoFromQuicVersion(quic_session()->GetQuicVersion());
response_info_->was_alpn_negotiated = true;
response_info_->alpn_negotiated_protocol =
HttpConnectionInfoToString(response_info_->connection_info);
response_info_->response_time = response_info_->original_response_time =
base::Time::Now();
response_info_->request_time = request_time_;
response_headers_received_ = true;
// Populate |connect_timing_| when response headers are received. This should
// take care of 0-RTT where request is sent before handshake is confirmed.
connect_timing_ = quic_session()->GetConnectTiming();
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(&QuicHttpStream::ReadTrailingHeaders,
weak_factory_.GetWeakPtr()));
if (stream_->IsDoneReading()) {
session_error_ = OK;
SaveResponseStatus();
stream_->OnFinRead();
}
return OK;
}
void QuicHttpStream::OnReadBodyComplete(int rv) {
CHECK(callback_);
user_buffer_ = nullptr;
user_buffer_len_ = 0;
rv = HandleReadComplete(rv);
DoCallback(rv);
}
int QuicHttpStream::HandleReadComplete(int rv) {
if (stream_->IsDoneReading()) {
stream_->OnFinRead();
SetResponseStatus(OK);
ResetStream();
}
return rv;
}
void QuicHttpStream::ResetStream() {
// If |request_body_stream_| is non-NULL, Reset it, to abort any in progress
// read.
if (request_body_stream_) {
request_body_stream_->Reset();
}
if (!stream_) {
return;
}
DCHECK_LE(stream_->NumBytesConsumed(), stream_->stream_bytes_read());
// Only count the uniquely received bytes.
closed_stream_received_bytes_ = stream_->NumBytesConsumed();
closed_stream_sent_bytes_ = stream_->stream_bytes_written();
closed_is_first_stream_ = stream_->IsFirstStream();
connection_error_ = stream_->connection_error();
stream_error_ = stream_->stream_error();
connection_wire_error_ = stream_->connection_wire_error();
ietf_application_error_ = stream_->ietf_application_error();
}
int QuicHttpStream::MapStreamError(int rv) {
if (rv == ERR_QUIC_PROTOCOL_ERROR && !quic_session()->OneRttKeysAvailable()) {
return ERR_QUIC_HANDSHAKE_FAILED;
}
return rv;
}
int QuicHttpStream::GetResponseStatus() {
SaveResponseStatus();
return response_status_;
}
void QuicHttpStream::SaveResponseStatus() {
if (!has_response_status_) {
SetResponseStatus(ComputeResponseStatus());
}
}
void QuicHttpStream::SetResponseStatus(int response_status) {
has_response_status_ = true;
response_status_ = response_status;
}
int QuicHttpStream::ComputeResponseStatus() const {
DCHECK(!has_response_status_);
// If the handshake has failed this will be handled by the QuicSessionPool
// and HttpStreamFactory to mark QUIC as broken if TCP is actually working.
if (!quic_session()->OneRttKeysAvailable()) {
return ERR_QUIC_HANDSHAKE_FAILED;
}
// If the session was aborted by a higher layer, simply use that error code.
if (session_error_ != ERR_UNEXPECTED) {
return session_error_;
}
// If |response_info_| is null then the request has not been sent, so
// return ERR_CONNECTION_CLOSED to permit HttpNetworkTransaction to
// retry the request.
if (!response_info_) {
return ERR_CONNECTION_CLOSED;
}
base::UmaHistogramEnumeration("Net.QuicHttpStream.ResponseStatus",
stream_->stream_error(),
quic::QUIC_STREAM_LAST_ERROR);
return ERR_QUIC_PROTOCOL_ERROR;
}
void QuicHttpStream::SetRequestIdempotency(Idempotency idempotency) {
if (stream_ == nullptr) {
return;
}
stream_->SetRequestIdempotency(idempotency);
}
} // namespace net
|