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 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342
|
// 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/http/http_stream_factory_job.h"
#include <memory>
#include <utility>
#include "base/check_op.h"
#include "base/containers/contains.h"
#include "base/feature_list.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/location.h"
#include "base/notreached.h"
#include "base/strings/string_util.h"
#include "base/task/single_thread_task_runner.h"
#include "base/values.h"
#include "net/base/host_port_pair.h"
#include "net/base/load_flags.h"
#include "net/base/port_util.h"
#include "net/base/proxy_chain.h"
#include "net/base/proxy_delegate.h"
#include "net/base/session_usage.h"
#include "net/base/url_util.h"
#include "net/cert/cert_verifier.h"
#include "net/dns/public/secure_dns_policy.h"
#include "net/http/bidirectional_stream_impl.h"
#include "net/http/http_basic_stream.h"
#include "net/http/http_network_session.h"
#include "net/http/http_server_properties.h"
#include "net/http/http_stream_factory.h"
#include "net/http/proxy_fallback.h"
#include "net/log/net_log.h"
#include "net/log/net_log_event_type.h"
#include "net/log/net_log_source.h"
#include "net/log/net_log_source_type.h"
#include "net/proxy_resolution/proxy_resolution_service.h"
#include "net/quic/bidirectional_stream_quic_impl.h"
#include "net/quic/quic_http_stream.h"
#include "net/quic/quic_session_key.h"
#include "net/socket/client_socket_handle.h"
#include "net/socket/client_socket_pool_manager.h"
#include "net/socket/connect_job.h"
#include "net/socket/next_proto.h"
#include "net/socket/ssl_client_socket.h"
#include "net/socket/stream_socket.h"
#include "net/spdy/bidirectional_stream_spdy_impl.h"
#include "net/spdy/multiplexed_session_creation_initiator.h"
#include "net/spdy/spdy_http_stream.h"
#include "net/spdy/spdy_session.h"
#include "net/ssl/ssl_cert_request_info.h"
#include "url/gurl.h"
#include "url/scheme_host_port.h"
#include "url/url_constants.h"
namespace net {
namespace {
// Experiment to preconnect only one connection if HttpServerProperties is
// not supported or initialized.
BASE_FEATURE(kLimitEarlyPreconnectsExperiment,
"LimitEarlyPreconnects",
base::FEATURE_ENABLED_BY_DEFAULT);
} // namespace
const char* NetLogHttpStreamJobType(HttpStreamFactory::JobType job_type) {
switch (job_type) {
case HttpStreamFactory::MAIN:
return "main";
case HttpStreamFactory::ALTERNATIVE:
return "alternative";
case HttpStreamFactory::DNS_ALPN_H3:
return "dns_alpn_h3";
case HttpStreamFactory::PRECONNECT:
return "preconnect";
case HttpStreamFactory::PRECONNECT_DNS_ALPN_H3:
return "preconnect_dns_alpn_h3";
}
return "";
}
// Returns parameters associated with the ALPN protocol of a HTTP stream.
base::Value::Dict NetLogHttpStreamProtoParams(NextProto negotiated_protocol) {
base::Value::Dict dict;
dict.Set("proto", NextProtoToString(negotiated_protocol));
return dict;
}
HttpStreamFactory::Job::Job(
Delegate* delegate,
JobType job_type,
HttpNetworkSession* session,
const StreamRequestInfo& request_info,
RequestPriority priority,
const ProxyInfo& proxy_info,
const std::vector<SSLConfig::CertAndStatus>& allowed_bad_certs,
url::SchemeHostPort destination,
GURL origin_url,
NextProto alternative_protocol,
quic::ParsedQuicVersion quic_version,
bool is_websocket,
bool enable_ip_based_pooling,
std::optional<ConnectionManagementConfig> management_config,
NetLog* net_log)
: request_info_(request_info),
priority_(priority),
proxy_info_(proxy_info),
allowed_bad_certs_(allowed_bad_certs),
net_log_(
NetLogWithSource::Make(net_log, NetLogSourceType::HTTP_STREAM_JOB)),
io_callback_(
base::BindRepeating(&Job::OnIOComplete, base::Unretained(this))),
connection_(std::make_unique<ClientSocketHandle>()),
session_(session),
destination_(std::move(destination)),
origin_url_(std::move(origin_url)),
is_websocket_(is_websocket),
try_websocket_over_http2_(is_websocket_ &&
origin_url_.SchemeIs(url::kWssScheme)),
// Only support IP-based pooling for non-proxied streams.
enable_ip_based_pooling_(enable_ip_based_pooling &&
proxy_info.is_direct()),
delegate_(delegate),
job_type_(job_type),
using_ssl_(origin_url_.SchemeIs(url::kHttpsScheme) ||
origin_url_.SchemeIs(url::kWssScheme)),
using_quic_(
alternative_protocol == NextProto::kProtoQUIC ||
session->ShouldForceQuic(destination_, proxy_info, is_websocket_) ||
job_type == DNS_ALPN_H3 || job_type == PRECONNECT_DNS_ALPN_H3),
quic_version_(quic_version),
expect_spdy_(alternative_protocol == NextProto::kProtoHTTP2 &&
!using_quic_),
quic_request_(session_->quic_session_pool()),
spdy_session_key_(using_quic_
? SpdySessionKey()
: GetSpdySessionKey(proxy_info_.proxy_chain(),
origin_url_,
request_info_)),
management_config_(management_config) {
// Websocket `destination` schemes should be converted to HTTP(S).
DCHECK(base::EqualsCaseInsensitiveASCII(destination_.scheme(),
url::kHttpScheme) ||
base::EqualsCaseInsensitiveASCII(destination_.scheme(),
url::kHttpsScheme));
// This class is specific to a single `ProxyChain`, so `proxy_info_` must be
// non-empty. Entries beyond the first are ignored. It should simply take a
// `ProxyChain`, but the full `ProxyInfo` is passed back to
// `HttpNetworkTransaction`, which consumes additional fields.
DCHECK(!proxy_info_.is_empty());
// The Job is forced to use QUIC without a designated version, try the
// preferred QUIC version that is supported by default.
if (quic_version_ == quic::ParsedQuicVersion::Unsupported() &&
session->ShouldForceQuic(destination_, proxy_info, is_websocket_)) {
quic_version_ =
session->context().quic_context->params()->supported_versions[0];
}
if (using_quic_) {
DCHECK((quic_version_ != quic::ParsedQuicVersion::Unsupported()) ||
(job_type_ == DNS_ALPN_H3) || (job_type_ == PRECONNECT_DNS_ALPN_H3));
}
DCHECK(session);
if (alternative_protocol != NextProto::kProtoUnknown) {
// If the alternative service protocol is specified, then the job type must
// be either ALTERNATIVE or PRECONNECT.
DCHECK(job_type_ == ALTERNATIVE || job_type_ == PRECONNECT);
}
if (expect_spdy_) {
DCHECK(origin_url_.SchemeIs(url::kHttpsScheme));
}
if (using_quic_) {
DCHECK(session_->IsQuicEnabled());
}
if (job_type_ == PRECONNECT || is_websocket_) {
DCHECK(request_info_.socket_tag == SocketTag());
}
if (is_websocket_) {
DCHECK(origin_url_.SchemeIsWSOrWSS());
} else {
DCHECK(!origin_url_.SchemeIsWSOrWSS());
}
}
HttpStreamFactory::Job::~Job() {
if (started_) {
net_log_.EndEvent(NetLogEventType::HTTP_STREAM_JOB);
}
// When we're in a partially constructed state, waiting for the user to
// provide certificate handling information or authentication, we can't reuse
// this stream at all.
if (next_state_ == STATE_WAITING_USER_ACTION) {
connection_->socket()->Disconnect();
connection_.reset();
}
// The stream could be in a partial state. It is not reusable.
if (stream_.get() && next_state_ != STATE_DONE) {
stream_->Close(true /* not reusable */);
}
}
void HttpStreamFactory::Job::Start(HttpStreamRequest::StreamType stream_type) {
started_ = true;
stream_type_ = stream_type;
const NetLogWithSource* delegate_net_log = delegate_->GetNetLog();
if (delegate_net_log) {
net_log_.BeginEvent(NetLogEventType::HTTP_STREAM_JOB, [&] {
base::Value::Dict dict;
const auto& source = delegate_net_log->source();
if (source.IsValid()) {
source.AddToEventParameters(dict);
}
dict.Set("logical_destination",
url::SchemeHostPort(origin_url_).Serialize());
dict.Set("destination", destination_.Serialize());
dict.Set("expect_spdy", expect_spdy_);
dict.Set("using_quic", using_quic_);
dict.Set("priority", RequestPriorityToString(priority_));
dict.Set("type", NetLogHttpStreamJobType(job_type_));
return dict;
});
delegate_net_log->AddEventReferencingSource(
NetLogEventType::HTTP_STREAM_REQUEST_STARTED_JOB, net_log_.source());
}
StartInternal();
}
int HttpStreamFactory::Job::Preconnect(int num_streams) {
DCHECK_GT(num_streams, 0);
HttpServerProperties* http_server_properties =
session_->http_server_properties();
DCHECK(http_server_properties);
// Preconnect one connection if either of the following is true:
// (1) kLimitEarlyPreconnectsStreamExperiment is turned on,
// HttpServerProperties is not initialized, and url scheme is cryptographic.
// (2) The server supports H2 or QUIC.
bool connect_one_stream =
base::FeatureList::IsEnabled(kLimitEarlyPreconnectsExperiment) &&
!http_server_properties->IsInitialized() &&
origin_url_.SchemeIsCryptographic();
if (connect_one_stream || http_server_properties->SupportsRequestPriority(
url::SchemeHostPort(origin_url_),
request_info_.network_anonymization_key)) {
num_streams_ = 1;
} else {
num_streams_ = num_streams;
}
return StartInternal();
}
int HttpStreamFactory::Job::RestartTunnelWithProxyAuth() {
DCHECK(establishing_tunnel_);
DCHECK(restart_with_auth_callback_);
std::move(restart_with_auth_callback_).Run();
return ERR_IO_PENDING;
}
LoadState HttpStreamFactory::Job::GetLoadState() const {
switch (next_state_) {
case STATE_INIT_CONNECTION_COMPLETE:
case STATE_CREATE_STREAM_COMPLETE:
return using_quic_ ? LOAD_STATE_CONNECTING : connection_->GetLoadState();
default:
return LOAD_STATE_IDLE;
}
}
void HttpStreamFactory::Job::Resume() {
DCHECK_EQ(job_type_, MAIN);
DCHECK_EQ(next_state_, STATE_WAIT_COMPLETE);
OnIOComplete(OK);
}
void HttpStreamFactory::Job::Orphan() {
DCHECK(job_type_ == ALTERNATIVE || job_type_ == DNS_ALPN_H3);
net_log_.AddEvent(NetLogEventType::HTTP_STREAM_JOB_ORPHANED);
// Watching for SPDY sessions isn't supported on orphaned jobs.
// TODO(mmenke): Fix that.
spdy_session_request_.reset();
}
void HttpStreamFactory::Job::SetPriority(RequestPriority priority) {
priority_ = priority;
// Ownership of |connection_| is passed to the newly created stream
// or H2 session in DoCreateStream(), and the consumer is not
// notified immediately, so this call may occur when |connection_|
// is null.
//
// Note that streams are created without a priority associated with them,
// and it is up to the consumer to set their priority via
// HttpStream::InitializeStream(). So there is no need for this code
// to propagate priority changes to the newly created stream.
if (connection_ && connection_->is_initialized()) {
connection_->SetPriority(priority);
}
// TODO(akalin): Maybe Propagate this to the preconnect state.
}
bool HttpStreamFactory::Job::HasAvailableSpdySession() const {
return !using_quic_ && CanUseExistingSpdySession() &&
session_->spdy_session_pool()->HasAvailableSession(
spdy_session_key_,
/*enable_ip_based_pooling=*/true, is_websocket_);
}
bool HttpStreamFactory::Job::HasAvailableQuicSession() const {
if (!using_quic_) {
return false;
}
bool require_dns_https_alpn =
(job_type_ == DNS_ALPN_H3) || (job_type_ == PRECONNECT_DNS_ALPN_H3);
QuicSessionKey quic_session_key(
HostPortPair::FromURL(origin_url_), request_info_.privacy_mode,
proxy_info_.proxy_chain(), SessionUsage::kDestination,
request_info_.socket_tag, request_info_.network_anonymization_key,
request_info_.secure_dns_policy, require_dns_https_alpn);
return session_->quic_session_pool()->CanUseExistingSession(quic_session_key,
destination_);
}
bool HttpStreamFactory::Job::TargettedSocketGroupHasActiveSocket() const {
DCHECK(!using_quic_);
DCHECK(!is_websocket_);
ClientSocketPool* pool = session_->GetSocketPool(
HttpNetworkSession::NORMAL_SOCKET_POOL, proxy_info_.proxy_chain());
DCHECK(pool);
ClientSocketPool::GroupId connection_group(
destination_, request_info_.privacy_mode,
request_info_.network_anonymization_key, request_info_.secure_dns_policy,
disable_cert_verification_network_fetches());
return pool->HasActiveSocket(connection_group);
}
NextProto HttpStreamFactory::Job::negotiated_protocol() const {
return negotiated_protocol_;
}
bool HttpStreamFactory::Job::using_spdy() const {
return negotiated_protocol_ == NextProto::kProtoHTTP2;
}
url::SchemeHostPort HttpStreamFactory::Job::SchemeHostPortForSupportsSpdy()
const {
return url::SchemeHostPort(using_ssl_ ? url::kHttpsScheme : url::kHttpScheme,
spdy_session_key_.host_port_pair().HostForURL(),
spdy_session_key_.host_port_pair().port());
}
bool HttpStreamFactory::Job::disable_cert_verification_network_fetches() const {
return !!(request_info_.load_flags & LOAD_DISABLE_CERT_NETWORK_FETCHES);
}
const ProxyInfo& HttpStreamFactory::Job::proxy_info() const {
return proxy_info_;
}
ResolveErrorInfo HttpStreamFactory::Job::resolve_error_info() const {
return resolve_error_info_;
}
void HttpStreamFactory::Job::GetSSLInfo(SSLInfo* ssl_info) {
DCHECK(using_ssl_);
DCHECK(!establishing_tunnel_);
DCHECK(connection_.get() && connection_->socket());
connection_->socket()->GetSSLInfo(ssl_info);
}
bool HttpStreamFactory::Job::UsingHttpProxyWithoutTunnel() const {
return !using_quic_ && !using_ssl_ && !is_websocket_ &&
proxy_info_.proxy_chain().is_get_to_proxy_allowed();
}
bool HttpStreamFactory::Job::CanUseExistingSpdySession() const {
DCHECK(!using_quic_);
if (session_->http_server_properties()->RequiresHTTP11(
url::SchemeHostPort(origin_url_),
request_info_.network_anonymization_key)) {
return false;
}
if (is_websocket_) {
return try_websocket_over_http2_;
}
DCHECK(origin_url_.SchemeIsHTTPOrHTTPS());
// We need to make sure that if a HTTP/2 session was created for
// https://somehost/ then we do not use that session for http://somehost:443/.
// The only time we can use an existing session is if the request URL is
// https (the normal case) or if we are connecting to an HTTPS proxy to make
// a GET request for an HTTP destination. https://crbug.com/133176
if (origin_url_.SchemeIs(url::kHttpsScheme)) {
return true;
}
if (!proxy_info_.is_empty()) {
const ProxyChain& proxy_chain = proxy_info_.proxy_chain();
if (!proxy_chain.is_direct() && proxy_chain.is_get_to_proxy_allowed() &&
proxy_chain.Last().is_https()) {
return true;
}
}
return false;
}
void HttpStreamFactory::Job::OnStreamReadyCallback() {
DCHECK(stream_.get());
DCHECK_NE(job_type_, PRECONNECT);
DCHECK_NE(job_type_, PRECONNECT_DNS_ALPN_H3);
DCHECK(!is_websocket_ || try_websocket_over_http2_);
MaybeCopyConnectionAttemptsFromHandle();
delegate_->OnStreamReady(this);
// |this| may be deleted after this call.
}
void HttpStreamFactory::Job::OnWebSocketHandshakeStreamReadyCallback() {
DCHECK(websocket_stream_);
DCHECK_NE(job_type_, PRECONNECT);
DCHECK_NE(job_type_, PRECONNECT_DNS_ALPN_H3);
DCHECK(is_websocket_);
MaybeCopyConnectionAttemptsFromHandle();
delegate_->OnWebSocketHandshakeStreamReady(this, proxy_info_,
std::move(websocket_stream_));
// |this| may be deleted after this call.
}
void HttpStreamFactory::Job::OnBidirectionalStreamImplReadyCallback() {
DCHECK(bidirectional_stream_impl_);
MaybeCopyConnectionAttemptsFromHandle();
delegate_->OnBidirectionalStreamImplReady(this, proxy_info_);
// |this| may be deleted after this call.
}
void HttpStreamFactory::Job::OnStreamFailedCallback(int result) {
DCHECK_NE(job_type_, PRECONNECT);
DCHECK_NE(job_type_, PRECONNECT_DNS_ALPN_H3);
MaybeCopyConnectionAttemptsFromHandle();
delegate_->OnStreamFailed(this, result);
// |this| may be deleted after this call.
}
void HttpStreamFactory::Job::OnCertificateErrorCallback(
int result,
const SSLInfo& ssl_info) {
DCHECK_NE(job_type_, PRECONNECT);
DCHECK_NE(job_type_, PRECONNECT_DNS_ALPN_H3);
DCHECK(!spdy_session_request_);
MaybeCopyConnectionAttemptsFromHandle();
delegate_->OnCertificateError(this, result, ssl_info);
// |this| may be deleted after this call.
}
void HttpStreamFactory::Job::OnNeedsProxyAuthCallback(
const HttpResponseInfo& response,
HttpAuthController* auth_controller,
base::OnceClosure restart_with_auth_callback) {
DCHECK_NE(job_type_, PRECONNECT);
DCHECK_NE(job_type_, PRECONNECT_DNS_ALPN_H3);
DCHECK(establishing_tunnel_);
DCHECK(!restart_with_auth_callback_);
restart_with_auth_callback_ = std::move(restart_with_auth_callback);
// This is called out of band, so need to abort the SpdySessionRequest to
// prevent being passed a new session while waiting on proxy auth credentials.
spdy_session_request_.reset();
delegate_->OnNeedsProxyAuth(this, response, proxy_info_, auth_controller);
// |this| may be deleted after this call.
}
void HttpStreamFactory::Job::OnNeedsClientAuthCallback(
SSLCertRequestInfo* cert_info) {
DCHECK_NE(job_type_, PRECONNECT);
DCHECK_NE(job_type_, PRECONNECT_DNS_ALPN_H3);
DCHECK(!spdy_session_request_);
delegate_->OnNeedsClientAuth(this, cert_info);
// |this| may be deleted after this call.
}
void HttpStreamFactory::Job::OnPreconnectsComplete(int result) {
RecordPreconnectHistograms(result);
delegate_->OnPreconnectsComplete(this, result);
// |this| may be deleted after this call.
}
void HttpStreamFactory::Job::OnIOComplete(int result) {
RunLoop(result);
}
void HttpStreamFactory::Job::RunLoop(int result) {
result = DoLoop(result);
if (result == ERR_IO_PENDING) {
return;
}
// Stop watching for new SpdySessions, to avoid receiving a new SPDY session
// while doing anything other than waiting to establish a connection.
spdy_session_request_.reset();
// Record histograms which are required for the end of session creation.
RecordCompletionHistograms(result);
if ((job_type_ == PRECONNECT) || (job_type_ == PRECONNECT_DNS_ALPN_H3)) {
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE,
base::BindOnce(&HttpStreamFactory::Job::OnPreconnectsComplete,
ptr_factory_.GetWeakPtr(), result));
return;
}
if (IsCertificateError(result)) {
// Retrieve SSL information from the socket.
SSLInfo ssl_info;
GetSSLInfo(&ssl_info);
next_state_ = STATE_WAITING_USER_ACTION;
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE,
base::BindOnce(&HttpStreamFactory::Job::OnCertificateErrorCallback,
ptr_factory_.GetWeakPtr(), result, ssl_info));
return;
}
switch (result) {
case ERR_SSL_CLIENT_AUTH_CERT_NEEDED:
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE,
base::BindOnce(
&Job::OnNeedsClientAuthCallback, ptr_factory_.GetWeakPtr(),
base::RetainedRef(connection_->ssl_cert_request_info())));
return;
case OK:
next_state_ = STATE_DONE;
if (is_websocket_) {
DCHECK(websocket_stream_);
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE,
base::BindOnce(&Job::OnWebSocketHandshakeStreamReadyCallback,
ptr_factory_.GetWeakPtr()));
} else if (stream_type_ == HttpStreamRequest::BIDIRECTIONAL_STREAM) {
if (!bidirectional_stream_impl_) {
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(&Job::OnStreamFailedCallback,
ptr_factory_.GetWeakPtr(), ERR_FAILED));
} else {
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE,
base::BindOnce(&Job::OnBidirectionalStreamImplReadyCallback,
ptr_factory_.GetWeakPtr()));
}
} else {
DCHECK(stream_.get());
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(&Job::OnStreamReadyCallback,
ptr_factory_.GetWeakPtr()));
}
return;
default:
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(&Job::OnStreamFailedCallback,
ptr_factory_.GetWeakPtr(), result));
return;
}
}
int HttpStreamFactory::Job::DoLoop(int result) {
DCHECK_NE(next_state_, STATE_NONE);
int rv = result;
do {
State state = next_state_;
next_state_ = STATE_NONE;
switch (state) {
case STATE_START:
DCHECK_EQ(OK, rv);
rv = DoStart();
break;
case STATE_WAIT:
DCHECK_EQ(OK, rv);
rv = DoWait();
break;
case STATE_WAIT_COMPLETE:
rv = DoWaitComplete(rv);
break;
case STATE_INIT_CONNECTION:
DCHECK_EQ(OK, rv);
rv = DoInitConnection();
break;
case STATE_INIT_CONNECTION_COMPLETE:
rv = DoInitConnectionComplete(rv);
break;
case STATE_WAITING_USER_ACTION:
rv = DoWaitingUserAction(rv);
break;
case STATE_CREATE_STREAM:
DCHECK_EQ(OK, rv);
rv = DoCreateStream();
break;
case STATE_CREATE_STREAM_COMPLETE:
rv = DoCreateStreamComplete(rv);
break;
default:
NOTREACHED() << "bad state";
}
} while (rv != ERR_IO_PENDING && next_state_ != STATE_NONE);
return rv;
}
int HttpStreamFactory::Job::StartInternal() {
CHECK_EQ(STATE_NONE, next_state_);
next_state_ = STATE_START;
RunLoop(OK);
return ERR_IO_PENDING;
}
int HttpStreamFactory::Job::DoStart() {
// Don't connect to restricted ports.
if (!IsPortAllowedForScheme(destination_.port(),
origin_url_.scheme_piece())) {
return ERR_UNSAFE_PORT;
}
next_state_ = STATE_WAIT;
return OK;
}
int HttpStreamFactory::Job::DoWait() {
next_state_ = STATE_WAIT_COMPLETE;
bool should_wait = delegate_->ShouldWait(this);
net_log_.AddEntryWithBoolParams(NetLogEventType::HTTP_STREAM_JOB_WAITING,
NetLogEventPhase::BEGIN, "should_wait",
should_wait);
if (should_wait) {
return ERR_IO_PENDING;
}
return OK;
}
int HttpStreamFactory::Job::DoWaitComplete(int result) {
net_log_.EndEvent(NetLogEventType::HTTP_STREAM_JOB_WAITING);
DCHECK_EQ(OK, result);
next_state_ = STATE_INIT_CONNECTION;
return OK;
}
void HttpStreamFactory::Job::ResumeInitConnection() {
if (init_connection_already_resumed_) {
return;
}
DCHECK_EQ(next_state_, STATE_INIT_CONNECTION);
net_log_.AddEvent(NetLogEventType::HTTP_STREAM_JOB_RESUME_INIT_CONNECTION);
init_connection_already_resumed_ = true;
OnIOComplete(OK);
}
int HttpStreamFactory::Job::DoInitConnection() {
net_log_.BeginEvent(NetLogEventType::HTTP_STREAM_JOB_INIT_CONNECTION);
int result = DoInitConnectionImpl();
if (!expect_on_quic_session_created_ && !expect_on_quic_host_resolution_) {
delegate_->OnConnectionInitialized(this, result);
}
return result;
}
int HttpStreamFactory::Job::DoInitConnectionImpl() {
DCHECK(!connection_->is_initialized());
if (using_quic_ && !proxy_info_.is_direct() &&
!proxy_info_.proxy_chain().Last().is_quic()) {
// QUIC can not be spoken to non-QUIC proxies. This error should not be
// user visible, because the non-alternative Job should be resumed.
return ERR_NO_SUPPORTED_PROXIES;
}
DCHECK(proxy_info_.proxy_chain().IsValid());
next_state_ = STATE_INIT_CONNECTION_COMPLETE;
if (using_quic_) {
// TODO(mmenke): Clean this up. `disable_cert_verification_network_fetches`
// is enabled in ConnectJobFactory for H1/H2 connections. Also need to add
// it to the SpdySessionKey for H2 connections.
SSLConfig server_ssl_config;
server_ssl_config.disable_cert_verification_network_fetches =
disable_cert_verification_network_fetches();
return DoInitConnectionImplQuic(server_ssl_config.GetCertVerifyFlags());
}
// Check first if there is a pushed stream matching the request, or an HTTP/2
// connection this request can pool to. If so, then go straight to using
// that.
if (CanUseExistingSpdySession()) {
if (!existing_spdy_session_) {
if (!spdy_session_request_) {
// If not currently watching for an H2 session, use
// SpdySessionPool::RequestSession() to check for a session, and start
// watching for one.
bool should_throttle_connect = ShouldThrottleConnectForSpdy();
base::RepeatingClosure resume_callback =
should_throttle_connect
? base::BindRepeating(
&HttpStreamFactory::Job::ResumeInitConnection,
ptr_factory_.GetWeakPtr())
: base::RepeatingClosure();
bool is_blocking_request_for_session;
existing_spdy_session_ = session_->spdy_session_pool()->RequestSession(
spdy_session_key_, enable_ip_based_pooling_, is_websocket_,
net_log_, resume_callback, this, &spdy_session_request_,
&is_blocking_request_for_session);
if (!existing_spdy_session_ && should_throttle_connect &&
!is_blocking_request_for_session) {
net_log_.AddEvent(NetLogEventType::HTTP_STREAM_JOB_THROTTLED);
next_state_ = STATE_INIT_CONNECTION;
base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask(
FROM_HERE, resume_callback, base::Milliseconds(kHTTP2ThrottleMs));
return ERR_IO_PENDING;
}
} else if (enable_ip_based_pooling_) {
// If already watching for an H2 session, still need to check for an
// existing connection that can be reused through IP pooling, as those
// don't post session available notifications.
//
// TODO(mmenke): Make sessions created through IP pooling invoke the
// callback.
existing_spdy_session_ =
session_->spdy_session_pool()->FindAvailableSession(
spdy_session_key_, enable_ip_based_pooling_, is_websocket_,
net_log_);
}
}
if (existing_spdy_session_) {
// Stop watching for SpdySessions.
spdy_session_request_.reset();
// If we're preconnecting, but we already have a SpdySession, we don't
// actually need to preconnect any sockets, so we're done.
if (job_type_ == PRECONNECT) {
return OK;
}
negotiated_protocol_ = NextProto::kProtoHTTP2;
next_state_ = STATE_CREATE_STREAM;
return OK;
}
}
establishing_tunnel_ = !UsingHttpProxyWithoutTunnel();
if (job_type_ == PRECONNECT) {
DCHECK(!is_websocket_);
DCHECK(request_info_.socket_tag == SocketTag());
// The lifeime of the preconnect tasks is not controlled by |connection_|.
// It may outlives |this|. So we can't use |io_callback_| which holds
// base::Unretained(this).
auto callback =
base::BindOnce(&Job::OnIOComplete, ptr_factory_.GetWeakPtr());
// TODO(crbug.com/391578657): Check proxy info for did try IPP proxy to
// populate `fail_if_alias_requires_proxy_override` and pass into method for
// Preconnect.
return PreconnectSocketsForHttpRequest(
destination_, request_info_.load_flags, priority_, session_,
proxy_info_, allowed_bad_certs_, request_info_.privacy_mode,
request_info_.network_anonymization_key,
request_info_.secure_dns_policy, net_log_, num_streams_,
/*fail_if_alias_requires_proxy_override_=*/false, std::move(callback));
}
// TODO(crbug.com/383134117): Check proxy info for did try IPP proxy to
// populate `fail_if_alias_requires_proxy_override` and pass into
// `InitSocketHandleForWebSocketRequest` and `InitSocketHandleForHttpRequest`
ClientSocketPool::ProxyAuthCallback proxy_auth_callback =
base::BindRepeating(&HttpStreamFactory::Job::OnNeedsProxyAuthCallback,
base::Unretained(this));
if (is_websocket_) {
DCHECK(request_info_.socket_tag == SocketTag());
DCHECK_EQ(SecureDnsPolicy::kAllow, request_info_.secure_dns_policy);
return InitSocketHandleForWebSocketRequest(
destination_, request_info_.load_flags, priority_, session_,
proxy_info_, allowed_bad_certs_, request_info_.privacy_mode,
request_info_.network_anonymization_key, net_log_, connection_.get(),
io_callback_, proxy_auth_callback,
/*fail_if_alias_requires_proxy_override_=*/false);
}
return InitSocketHandleForHttpRequest(
destination_, request_info_.load_flags, priority_, session_, proxy_info_,
allowed_bad_certs_, request_info_.privacy_mode,
request_info_.network_anonymization_key, request_info_.secure_dns_policy,
request_info_.socket_tag, net_log_, connection_.get(), io_callback_,
proxy_auth_callback, /*fail_if_alias_requires_proxy_override_=*/false);
}
int HttpStreamFactory::Job::DoInitConnectionImplQuic(
int server_cert_verifier_flags) {
url::SchemeHostPort destination;
bool require_dns_https_alpn =
(job_type_ == DNS_ALPN_H3) || (job_type_ == PRECONNECT_DNS_ALPN_H3);
ProxyChain proxy_chain = proxy_info_.proxy_chain();
if (!proxy_chain.is_direct()) {
// We only support proxying QUIC over QUIC. While MASQUE defines mechanisms
// to carry QUIC traffic over non-QUIC proxies, the performance of these
// mechanisms would be worse than simply using H/1 or H/2 to reach the
// destination. The error for an invalid condition should not be user
// visible, because the non-alternative Job should be resumed.
if (proxy_chain.AnyProxy(
[](const ProxyServer& s) { return !s.is_quic(); })) {
return ERR_NO_SUPPORTED_PROXIES;
}
}
std::optional<NetworkTrafficAnnotationTag> traffic_annotation =
proxy_info_.traffic_annotation().is_valid()
? std::make_optional<NetworkTrafficAnnotationTag>(
proxy_info_.traffic_annotation())
: std::nullopt;
auto initiator =
(job_type_ == PRECONNECT || job_type_ == PRECONNECT_DNS_ALPN_H3)
? MultiplexedSessionCreationInitiator::kPreconnect
: MultiplexedSessionCreationInitiator::kUnknown;
// The QuicSessionRequest will take care of connecting to any proxies in the
// proxy chain.
int rv = quic_request_.Request(
destination_, quic_version_, proxy_chain, std::move(traffic_annotation),
session_->context().http_user_agent_settings.get(),
SessionUsage::kDestination, request_info_.privacy_mode, priority_,
request_info_.socket_tag, request_info_.network_anonymization_key,
request_info_.secure_dns_policy, require_dns_https_alpn,
server_cert_verifier_flags, origin_url_, net_log_, &net_error_details_,
initiator, management_config_,
base::BindOnce(&Job::OnFailedOnDefaultNetwork, ptr_factory_.GetWeakPtr()),
io_callback_);
if (rv == OK) {
using_existing_quic_session_ = true;
} else if (rv == ERR_IO_PENDING) {
// There's no available QUIC session. Inform the delegate how long to
// delay the main job.
delegate_->MaybeSetWaitTimeForMainJob(
quic_request_.GetTimeDelayForWaitingJob());
// Set up to get notified of either host resolution completion or session
// creation, in order to call the delegate's `OnConnectionInitialized`
// callback.
expect_on_quic_host_resolution_ = quic_request_.WaitForHostResolution(
base::BindOnce(&Job::OnQuicHostResolution, base::Unretained(this)));
expect_on_quic_session_created_ = quic_request_.WaitForQuicSessionCreation(
base::BindOnce(&Job::OnQuicSessionCreated, ptr_factory_.GetWeakPtr()));
}
return rv;
}
void HttpStreamFactory::Job::OnQuicHostResolution(int result) {
DCHECK(expect_on_quic_host_resolution_);
expect_on_quic_host_resolution_ = false;
delegate_->OnQuicHostResolution(destination_,
quic_request_.dns_resolution_start_time(),
quic_request_.dns_resolution_end_time());
// If no `OnQuicSessionCreated` call is expected, then consider the
// connection "initialized" and inform the delegate. Note that
// `OnQuicHostResolution` is actually called somewhat _after_ host resolution
// is complete -- the `Job` has already run to the point where it can make no
// further progress.
if (!expect_on_quic_session_created_) {
delegate_->OnConnectionInitialized(this, result);
}
}
void HttpStreamFactory::Job::OnQuicSessionCreated(int result) {
DCHECK(expect_on_quic_session_created_);
expect_on_quic_session_created_ = false;
delegate_->OnConnectionInitialized(this, result);
}
void HttpStreamFactory::Job::OnFailedOnDefaultNetwork(int result) {
DCHECK(job_type_ == ALTERNATIVE || job_type_ == DNS_ALPN_H3);
DCHECK(using_quic_);
delegate_->OnFailedOnDefaultNetwork(this);
}
int HttpStreamFactory::Job::DoInitConnectionComplete(int result) {
net_log_.EndEvent(NetLogEventType::HTTP_STREAM_JOB_INIT_CONNECTION);
establishing_tunnel_ = false;
// No need to continue waiting for a session, once a connection is
// established.
spdy_session_request_.reset();
if ((job_type_ == PRECONNECT) || (job_type_ == PRECONNECT_DNS_ALPN_H3)) {
if (using_quic_) {
return result;
}
DCHECK_EQ(OK, result);
return OK;
}
resolve_error_info_ = connection_->resolve_error_info();
// Determine the protocol (HTTP/1.1, HTTP/2, or HTTP/3). This covers both the
// origin and some proxy cases. First, if the URL is HTTPS (or WSS), we may
// negotiate HTTP/2 or HTTP/3 with the origin. Second, non-tunneled requests
// (i.e. HTTP URLs) through an HTTPS or QUIC proxy work by sending the request
// to the proxy directly. In that case, this logic also handles the proxy's
// negotiated protocol. HTTPS requests are always tunneled, so at most one of
// these applies.
//
// Tunneled requests may also negotiate ALPN at the proxy, but
// HttpProxyConnectJob handles ALPN. The resulting StreamSocket will not
// report an ALPN protocol.
if (result == OK) {
if (using_quic_) {
// TODO(davidben): Record these values consistently between QUIC and TCP
// below. In the QUIC case, we only record it for origin connections. In
// the TCP case, we also record it for non-tunneled, proxied requests.
if (using_ssl_) {
negotiated_protocol_ = NextProto::kProtoQUIC;
}
} else if (connection_->socket()->GetNegotiatedProtocol() !=
NextProto::kProtoUnknown) {
// Only connections that use TLS (either to the origin or via a GET to a
// secure proxy) can negotiate ALPN.
bool get_to_secure_proxy =
IsGetToProxy(proxy_info_.proxy_chain(), origin_url_) &&
proxy_info_.proxy_chain().Last().is_secure_http_like();
DCHECK(using_ssl_ || get_to_secure_proxy);
negotiated_protocol_ = connection_->socket()->GetNegotiatedProtocol();
net_log_.AddEvent(NetLogEventType::HTTP_STREAM_REQUEST_PROTO, [&] {
return NetLogHttpStreamProtoParams(negotiated_protocol_);
});
if (using_spdy()) {
if (is_websocket_) {
// WebSocket is not supported over a fresh HTTP/2 connection. This
// should not be reachable. For the origin, we do not request HTTP/2
// on fresh WebSockets connections, because not all HTTP/2 servers
// implement RFC 8441. For proxies, WebSockets are always tunneled.
//
// TODO(davidben): This isn't a CHECK() because, previously, it was
// reachable in https://crbug.com/828865. However, if reachable, it
// means a bug in the socket pools. The socket pools have since been
// cleaned up, so this may no longer be reachable. Restore the CHECK
// and see if this is still needed.
return ERR_NOT_IMPLEMENTED;
}
}
}
}
if (using_quic_ && result < 0 && !proxy_info_.is_direct() &&
proxy_info_.proxy_chain().Last().is_quic()) {
return ReconsiderProxyAfterError(result);
}
if (expect_spdy_ && !using_spdy()) {
return ERR_ALPN_NEGOTIATION_FAILED;
}
// |result| may be the result of any of the stacked protocols. The following
// logic is used when determining how to interpret an error.
// If |result| < 0:
// and connection_->socket() != NULL, then the SSL handshake ran and it
// is a potentially recoverable error.
// and connection_->socket == NULL and connection_->is_ssl_error() is true,
// then the SSL handshake ran with an unrecoverable error.
// otherwise, the error came from one of the other protocols.
bool ssl_started = using_ssl_ && (result == OK || connection_->socket() ||
connection_->is_ssl_error());
if (!ssl_started && result < 0 && (expect_spdy_ || using_quic_)) {
return result;
}
if (using_quic_) {
if (result < 0) {
return result;
}
if (stream_type_ == HttpStreamRequest::BIDIRECTIONAL_STREAM) {
std::unique_ptr<QuicChromiumClientSession::Handle> session =
quic_request_.ReleaseSessionHandle();
if (!session) {
// Quic session is closed before stream can be created.
return ERR_CONNECTION_CLOSED;
}
bidirectional_stream_impl_ =
std::make_unique<BidirectionalStreamQuicImpl>(std::move(session));
} else {
std::unique_ptr<QuicChromiumClientSession::Handle> session =
quic_request_.ReleaseSessionHandle();
if (!session) {
// Quic session is closed before stream can be created.
return ERR_CONNECTION_CLOSED;
}
auto dns_aliases =
session->GetDnsAliasesForSessionKey(quic_request_.session_key());
stream_ = std::make_unique<QuicHttpStream>(std::move(session),
std::move(dns_aliases));
}
next_state_ = STATE_CREATE_STREAM_COMPLETE;
return OK;
}
if (result < 0) {
if (!ssl_started) {
return ReconsiderProxyAfterError(result);
}
return result;
}
next_state_ = STATE_CREATE_STREAM;
return OK;
}
int HttpStreamFactory::Job::DoWaitingUserAction(int result) {
// This state indicates that the stream request is in a partially
// completed state, and we've called back to the delegate for more
// information.
// We're always waiting here for the delegate to call us back.
return ERR_IO_PENDING;
}
int HttpStreamFactory::Job::SetSpdyHttpStreamOrBidirectionalStreamImpl(
base::WeakPtr<SpdySession> session) {
DCHECK(using_spdy());
auto dns_aliases = session_->spdy_session_pool()->GetDnsAliasesForSessionKey(
spdy_session_key_);
if (is_websocket_) {
DCHECK_NE(job_type_, PRECONNECT);
DCHECK_NE(job_type_, PRECONNECT_DNS_ALPN_H3);
DCHECK(delegate_->websocket_handshake_stream_create_helper());
if (!try_websocket_over_http2_) {
// TODO(davidben): Is this reachable? We shouldn't receive a SpdySession
// if not requested.
return ERR_NOT_IMPLEMENTED;
}
websocket_stream_ =
delegate_->websocket_handshake_stream_create_helper()
->CreateHttp2Stream(session, std::move(dns_aliases));
return OK;
}
if (stream_type_ == HttpStreamRequest::BIDIRECTIONAL_STREAM) {
bidirectional_stream_impl_ = std::make_unique<BidirectionalStreamSpdyImpl>(
session, net_log_.source());
return OK;
}
// TODO(willchan): Delete this code, because eventually, the HttpStreamFactory
// will be creating all the SpdyHttpStreams, since it will know when
// SpdySessions become available.
stream_ = std::make_unique<SpdyHttpStream>(session, net_log_.source(),
std::move(dns_aliases));
return OK;
}
int HttpStreamFactory::Job::DoCreateStream() {
DCHECK(connection_->socket() || existing_spdy_session_.get());
DCHECK(!using_quic_);
next_state_ = STATE_CREATE_STREAM_COMPLETE;
if (!using_spdy()) {
DCHECK(!expect_spdy_);
bool is_for_get_to_http_proxy = UsingHttpProxyWithoutTunnel();
if (is_websocket_) {
DCHECK_NE(job_type_, PRECONNECT);
DCHECK_NE(job_type_, PRECONNECT_DNS_ALPN_H3);
DCHECK(delegate_->websocket_handshake_stream_create_helper());
websocket_stream_ =
delegate_->websocket_handshake_stream_create_helper()
->CreateBasicStream(std::move(connection_),
is_for_get_to_http_proxy,
session_->websocket_endpoint_lock_manager());
} else {
if (!request_info_.is_http1_allowed) {
return ERR_ALPN_NEGOTIATION_FAILED;
}
stream_ = std::make_unique<HttpBasicStream>(std::move(connection_),
is_for_get_to_http_proxy);
}
return OK;
}
CHECK(!stream_.get());
// It is also possible that an HTTP/2 connection has been established since
// last time Job checked above.
if (!existing_spdy_session_) {
// WebSocket over HTTP/2 is only allowed to use existing HTTP/2 connections.
// Therefore `using_spdy()` could not have been set unless a connection had
// already been found.
DCHECK(!is_websocket_);
existing_spdy_session_ =
session_->spdy_session_pool()->FindAvailableSession(
spdy_session_key_, enable_ip_based_pooling_,
/* is_websocket = */ false, net_log_);
}
if (existing_spdy_session_) {
// We picked up an existing session, so we don't need our socket.
if (connection_->socket()) {
connection_->socket()->Disconnect();
}
connection_->Reset();
int set_result =
SetSpdyHttpStreamOrBidirectionalStreamImpl(existing_spdy_session_);
existing_spdy_session_.reset();
return set_result;
}
// Close idle sockets in this group, since subsequent requests will go over
// |spdy_session|.
if (connection_->socket()->IsConnected()) {
connection_->CloseIdleSocketsInGroup("Switching to HTTP2 session");
}
auto initiator =
(job_type_ == PRECONNECT || job_type_ == PRECONNECT_DNS_ALPN_H3)
? MultiplexedSessionCreationInitiator::kPreconnect
: MultiplexedSessionCreationInitiator::kUnknown;
base::WeakPtr<SpdySession> spdy_session;
int rv =
session_->spdy_session_pool()->CreateAvailableSessionFromSocketHandle(
spdy_session_key_, std::move(connection_), net_log_, initiator,
&spdy_session, SpdySessionInitiator::kHttpStreamFactoryJob);
if (rv != OK) {
return rv;
}
session_->http_server_properties()->SetSupportsSpdy(
SchemeHostPortForSupportsSpdy(), request_info_.network_anonymization_key,
/*supports_spdy=*/true);
// Create a SpdyHttpStream or a BidirectionalStreamImpl attached to the
// session.
return SetSpdyHttpStreamOrBidirectionalStreamImpl(spdy_session);
}
int HttpStreamFactory::Job::DoCreateStreamComplete(int result) {
if (result < 0) {
return result;
}
session_->proxy_resolution_service()->ReportSuccess(proxy_info_);
next_state_ = STATE_NONE;
return OK;
}
void HttpStreamFactory::Job::OnSpdySessionAvailable(
base::WeakPtr<SpdySession> spdy_session) {
DCHECK(spdy_session);
// No need for the connection any more, since |spdy_session| can be used
// instead, and there's no benefit from keeping the old ConnectJob in the
// socket pool.
if (connection_) {
connection_->ResetAndCloseSocket();
}
// Once a connection is initialized, or if there's any out-of-band callback,
// like proxy auth challenge, the SpdySessionRequest is cancelled.
DCHECK(next_state_ == STATE_INIT_CONNECTION ||
next_state_ == STATE_INIT_CONNECTION_COMPLETE);
// Ignore calls to ResumeInitConnection() from either the timer or the
// SpdySessionPool.
init_connection_already_resumed_ = true;
// If this is a preconnect, nothing left do to.
if (job_type_ == PRECONNECT) {
OnPreconnectsComplete(OK);
return;
}
negotiated_protocol_ = NextProto::kProtoHTTP2;
existing_spdy_session_ = spdy_session;
next_state_ = STATE_CREATE_STREAM;
// This will synchronously close |connection_|, so no need to worry about it
// calling back into |this|.
RunLoop(OK);
}
int HttpStreamFactory::Job::ReconsiderProxyAfterError(int error) {
// Check if the error was a proxy failure.
if (!CanFalloverToNextProxy(proxy_info_.proxy_chain(), error, &error,
proxy_info_.is_for_ip_protection())) {
return error;
}
should_reconsider_proxy_ = true;
return error;
}
void HttpStreamFactory::Job::MaybeCopyConnectionAttemptsFromHandle() {
if (!connection_) {
return;
}
delegate_->AddConnectionAttemptsToRequest(this,
connection_->connection_attempts());
}
HttpStreamFactory::JobFactory::JobFactory() = default;
HttpStreamFactory::JobFactory::~JobFactory() = default;
std::unique_ptr<HttpStreamFactory::Job>
HttpStreamFactory::JobFactory::CreateJob(
HttpStreamFactory::Job::Delegate* delegate,
HttpStreamFactory::JobType job_type,
HttpNetworkSession* session,
const StreamRequestInfo& request_info,
RequestPriority priority,
const ProxyInfo& proxy_info,
const std::vector<SSLConfig::CertAndStatus>& allowed_bad_certs,
url::SchemeHostPort destination,
GURL origin_url,
bool is_websocket,
bool enable_ip_based_pooling,
NetLog* net_log,
NextProto alternative_protocol,
quic::ParsedQuicVersion quic_version,
std::optional<ConnectionManagementConfig> management_config) {
return std::make_unique<HttpStreamFactory::Job>(
delegate, job_type, session, request_info, priority, proxy_info,
allowed_bad_certs, std::move(destination), origin_url,
alternative_protocol, quic_version, is_websocket, enable_ip_based_pooling,
management_config, net_log);
}
bool HttpStreamFactory::Job::ShouldThrottleConnectForSpdy() const {
DCHECK(!using_quic_);
DCHECK(!spdy_session_request_);
// If the job has previously been throttled, don't throttle it again.
if (init_connection_already_resumed_) {
return false;
}
// Only throttle the request if the server is believed to support H2.
return session_->http_server_properties()->GetSupportsSpdy(
SchemeHostPortForSupportsSpdy(), request_info_.network_anonymization_key);
}
void HttpStreamFactory::Job::RecordPreconnectHistograms(int result) {
CHECK(job_type_ == PRECONNECT || job_type_ == PRECONNECT_DNS_ALPN_H3);
constexpr std::string_view kHistogramBase =
"Net.SessionCreate.GoogleSearch.Preconnect2";
if (!IsGoogleHostWithAlpnH3(destination_.host())) {
return;
}
bool is_session_reuse = false;
if (using_quic_) {
auto completion_result_histogram =
base::StrCat({kHistogramBase, ".Quic.CompletionResult"});
// TODO(crbug.com/376304027): Expand this to non-Quic as well. Currently,
// H1 and H2 does not return precise failure reason.
base::UmaHistogramSparse(completion_result_histogram, -result);
base::UmaHistogramSparse(
base::StrCat({completion_result_histogram,
job_type_ == PRECONNECT ? ".PreconnectJob"
: ".PreconnectDnsAlpnH3Job"}),
-result);
is_session_reuse = using_existing_quic_session_;
} else {
is_session_reuse = existing_spdy_session_ != nullptr;
}
base::UmaHistogramBoolean(
base::StrCat({kHistogramBase, using_quic_ ? ".Quic" : ".Spdy",
".IsSessionReused"}),
is_session_reuse);
}
void HttpStreamFactory::Job::RecordCompletionHistograms(int result) {
constexpr std::string_view kHistogramBase = "Net.SessionCreate";
bool is_session_reuse = using_quic_ ? using_existing_quic_session_
: existing_spdy_session_ != nullptr;
// We only record session creation which succeeded and the ones that we
// created a new session.
if (result != OK || is_session_reuse) {
return;
}
if (request_info_.traffic_annotation.is_valid()) {
base::UmaHistogramSparse(
base::StrCat(
{kHistogramBase, using_quic_ ? ".Quic" : ".Spdy",
".TrafficAnnotation",
IsGoogleHostWithAlpnH3(destination_.host()) ? ".GoogleHost" : ""}),
request_info_.traffic_annotation.unique_id_hash_code);
}
base::UmaHistogramBoolean(
base::StrCat(
{kHistogramBase, using_quic_ ? ".Quic" : ".Spdy",
".HasTrafficAnnotation",
IsGoogleHostWithAlpnH3(destination_.host()) ? ".GoogleHost" : ""}),
request_info_.traffic_annotation.is_valid());
}
} // namespace net
|