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 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077
|
// Copyright 2013 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/spdy/spdy_session_pool.h"
#include <array>
#include <cstddef>
#include <tuple>
#include <utility>
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "base/run_loop.h"
#include "base/test/bind.h"
#include "base/test/metrics/histogram_tester.h"
#include "base/trace_event/memory_allocator_dump.h"
#include "base/trace_event/process_memory_dump.h"
#include "build/build_config.h"
#include "net/base/proxy_string_util.h"
#include "net/base/session_usage.h"
#include "net/base/test_completion_callback.h"
#include "net/base/tracing.h"
#include "net/dns/host_cache.h"
#include "net/dns/public/host_resolver_results.h"
#include "net/dns/public/secure_dns_policy.h"
#include "net/http/http_network_session.h"
#include "net/log/net_log_with_source.h"
#include "net/log/test_net_log.h"
#include "net/socket/client_socket_handle.h"
#include "net/socket/socket_tag.h"
#include "net/socket/socket_test_util.h"
#include "net/socket/transport_client_socket_pool.h"
#include "net/spdy/spdy_session.h"
#include "net/spdy/spdy_stream_test_util.h"
#include "net/spdy/spdy_test_util_common.h"
#include "net/test/cert_test_util.h"
#include "net/test/gtest_util.h"
#include "net/test/test_certificate_data.h"
#include "net/test/test_data_directory.h"
#include "net/test/test_with_task_environment.h"
#include "net/third_party/quiche/src/quiche/common/http/http_header_block.h"
#include "net/third_party/quiche/src/quiche/http2/core/spdy_protocol.h"
#include "net/traffic_annotation/network_traffic_annotation_test_helper.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using base::trace_event::MemoryAllocatorDump;
using net::test::IsError;
using net::test::IsOk;
using testing::ByRef;
using testing::Contains;
using testing::Eq;
namespace net {
class SpdySessionPoolTest : public TestWithTaskEnvironment {
protected:
// Used by RunIPPoolingTest().
enum SpdyPoolCloseSessionsType {
SPDY_POOL_CLOSE_SESSIONS_MANUALLY,
SPDY_POOL_CLOSE_CURRENT_SESSIONS,
SPDY_POOL_CLOSE_IDLE_SESSIONS,
};
SpdySessionPoolTest() = default;
void CreateNetworkSession() {
http_session_ = SpdySessionDependencies::SpdyCreateSession(&session_deps_);
spdy_session_pool_ = http_session_->spdy_session_pool();
}
void AddSSLSocketData() {
auto ssl = std::make_unique<SSLSocketDataProvider>(SYNCHRONOUS, OK);
ssl->ssl_info.cert =
ImportCertFromFile(GetTestCertsDirectory(), "spdy_pooling.pem");
ASSERT_TRUE(ssl->ssl_info.cert);
session_deps_.socket_factory->AddSSLSocketDataProvider(ssl.get());
ssl_data_vector_.push_back(std::move(ssl));
}
void RunIPPoolingTest(SpdyPoolCloseSessionsType close_sessions_type);
void RunIPPoolingDisabledTest(SSLSocketDataProvider* ssl);
size_t num_active_streams(base::WeakPtr<SpdySession> session) {
return session->active_streams_.size();
}
size_t max_concurrent_streams(base::WeakPtr<SpdySession> session) {
return session->max_concurrent_streams_;
}
SpdySessionDependencies session_deps_;
std::unique_ptr<HttpNetworkSession> http_session_;
raw_ptr<SpdySessionPool, DanglingUntriaged> spdy_session_pool_ = nullptr;
std::vector<std::unique_ptr<SSLSocketDataProvider>> ssl_data_vector_;
};
class SpdySessionRequestDelegate
: public SpdySessionPool::SpdySessionRequest::Delegate {
public:
SpdySessionRequestDelegate() = default;
SpdySessionRequestDelegate(const SpdySessionRequestDelegate&) = delete;
SpdySessionRequestDelegate& operator=(const SpdySessionRequestDelegate&) =
delete;
~SpdySessionRequestDelegate() override = default;
void OnSpdySessionAvailable(
base::WeakPtr<SpdySession> spdy_session) override {
EXPECT_FALSE(callback_invoked_);
callback_invoked_ = true;
spdy_session_ = spdy_session;
}
bool callback_invoked() const { return callback_invoked_; }
SpdySession* spdy_session() { return spdy_session_.get(); }
private:
bool callback_invoked_ = false;
base::WeakPtr<SpdySession> spdy_session_;
};
// Attempts to set up an alias for |key| using an already existing session in
// |pool|. To do this, simulates a host resolution that returns
// |endpoints|.
bool TryCreateAliasedSpdySession(
SpdySessionPool* pool,
const SpdySessionKey& key,
const std::vector<HostResolverEndpointResult>& endpoints,
bool enable_ip_based_pooling = true,
bool is_websocket = false) {
// The requested session must not already exist.
EXPECT_FALSE(pool->FindAvailableSession(key, enable_ip_based_pooling,
is_websocket, NetLogWithSource()));
// Create a request for the session. There should be no matching session
// (aliased or otherwise) yet. A pending request is necessary for the session
// to create an alias on host resolution completion.
std::unique_ptr<SpdySessionPool::SpdySessionRequest> request;
bool is_blocking_request_for_session = false;
SpdySessionRequestDelegate request_delegate;
EXPECT_FALSE(pool->RequestSession(
key, enable_ip_based_pooling, is_websocket, NetLogWithSource(),
/* on_blocking_request_destroyed_callback = */ base::RepeatingClosure(),
&request_delegate, &request, &is_blocking_request_for_session));
EXPECT_TRUE(request);
EXPECT_TRUE(is_blocking_request_for_session);
// Simulate a host resolution completing.
OnHostResolutionCallbackResult result = pool->OnHostResolutionComplete(
key, is_websocket, endpoints, /*aliases=*/{});
// Spin the message loop and see if it creates an H2 session.
base::RunLoop().RunUntilIdle();
EXPECT_EQ(request_delegate.callback_invoked(),
result == OnHostResolutionCallbackResult::kMayBeDeletedAsync);
EXPECT_EQ(request_delegate.callback_invoked(),
request_delegate.spdy_session() != nullptr);
request.reset();
// Calling RequestSession again should return request_delegate.spdy_session()
// (i.e. the newly created session, if a session was created, or nullptr, if
// one was not.)
EXPECT_EQ(request_delegate.spdy_session(),
pool->RequestSession(key, enable_ip_based_pooling, is_websocket,
NetLogWithSource(),
/* on_blocking_request_destroyed_callback = */
base::RepeatingClosure(), &request_delegate,
&request, &is_blocking_request_for_session)
.get());
return request_delegate.spdy_session() != nullptr;
}
// Attempts to set up an alias for |key| using an already existing session in
// |pool|. To do this, simulates a host resolution that returns
// |ip_address_list|.
bool TryCreateAliasedSpdySession(SpdySessionPool* pool,
const SpdySessionKey& key,
const std::string& ip_address_list,
bool enable_ip_based_pooling = true,
bool is_websocket = false) {
std::vector<IPEndPoint> ip_endpoints;
EXPECT_THAT(ParseAddressList(ip_address_list, &ip_endpoints), IsOk());
HostResolverEndpointResult endpoint;
for (auto& ip_endpoint : ip_endpoints) {
endpoint.ip_endpoints.emplace_back(ip_endpoint.address(), 443);
}
return TryCreateAliasedSpdySession(pool, key, {endpoint},
enable_ip_based_pooling, is_websocket);
}
// A delegate that opens a new session when it is closed.
class SessionOpeningDelegate : public SpdyStream::Delegate {
public:
SessionOpeningDelegate(SpdySessionPool* spdy_session_pool,
const SpdySessionKey& key)
: spdy_session_pool_(spdy_session_pool), key_(key) {}
~SessionOpeningDelegate() override = default;
void OnHeadersSent() override {}
void OnEarlyHintsReceived(const quiche::HttpHeaderBlock& headers) override {}
void OnHeadersReceived(
const quiche::HttpHeaderBlock& response_headers) override {}
void OnDataReceived(std::unique_ptr<SpdyBuffer> buffer) override {}
void OnDataSent() override {}
void OnTrailers(const quiche::HttpHeaderBlock& trailers) override {}
void OnClose(int status) override {
std::ignore = CreateFakeSpdySession(spdy_session_pool_, key_);
}
bool CanGreaseFrameType() const override { return false; }
NetLogSource source_dependency() const override { return NetLogSource(); }
private:
const raw_ptr<SpdySessionPool> spdy_session_pool_;
const SpdySessionKey key_;
};
// Set up a SpdyStream to create a new session when it is closed.
// CloseCurrentSessions should not close the newly-created session.
TEST_F(SpdySessionPoolTest, CloseCurrentSessions) {
const char kTestHost[] = "www.foo.com";
const int kTestPort = 80;
HostPortPair test_host_port_pair(kTestHost, kTestPort);
SpdySessionKey test_key = SpdySessionKey(
test_host_port_pair, PRIVACY_MODE_DISABLED, ProxyChain::Direct(),
SessionUsage::kDestination, SocketTag(), NetworkAnonymizationKey(),
SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
MockConnect connect_data(SYNCHRONOUS, OK);
MockRead reads[] = {
MockRead(SYNCHRONOUS, ERR_IO_PENDING) // Stall forever.
};
StaticSocketDataProvider data(reads, base::span<MockWrite>());
data.set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(&data);
SSLSocketDataProvider ssl(SYNCHRONOUS, OK);
session_deps_.socket_factory->AddSSLSocketDataProvider(&ssl);
CreateNetworkSession();
// Setup the first session to the first host.
base::WeakPtr<SpdySession> session =
CreateSpdySession(http_session_.get(), test_key, NetLogWithSource());
// Flush the SpdySession::OnReadComplete() task.
base::RunLoop().RunUntilIdle();
// Verify that we have sessions for everything.
EXPECT_TRUE(HasSpdySession(spdy_session_pool_, test_key));
// Set the stream to create a new session when it is closed.
base::WeakPtr<SpdyStream> spdy_stream = CreateStreamSynchronously(
SPDY_BIDIRECTIONAL_STREAM, session, GURL("http://www.foo.com"), MEDIUM,
NetLogWithSource());
SessionOpeningDelegate delegate(spdy_session_pool_, test_key);
spdy_stream->SetDelegate(&delegate);
// Close the current session.
spdy_session_pool_->CloseCurrentSessions(ERR_ABORTED);
EXPECT_TRUE(HasSpdySession(spdy_session_pool_, test_key));
}
TEST_F(SpdySessionPoolTest, CloseCurrentIdleSessions) {
const std::string close_session_description = "Closing idle sessions.";
MockConnect connect_data(SYNCHRONOUS, OK);
MockRead reads[] = {
MockRead(SYNCHRONOUS, ERR_IO_PENDING) // Stall forever.
};
StaticSocketDataProvider data1(reads, base::span<MockWrite>());
data1.set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(&data1);
AddSSLSocketData();
AddSSLSocketData();
AddSSLSocketData();
CreateNetworkSession();
// Set up session 1
const GURL url1("https://www.example.org");
HostPortPair test_host_port_pair1(HostPortPair::FromURL(url1));
SpdySessionKey key1(test_host_port_pair1, PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination,
SocketTag(), NetworkAnonymizationKey(),
SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
base::WeakPtr<SpdySession> session1 =
CreateSpdySession(http_session_.get(), key1, NetLogWithSource());
base::WeakPtr<SpdyStream> spdy_stream1 = CreateStreamSynchronously(
SPDY_BIDIRECTIONAL_STREAM, session1, url1, MEDIUM, NetLogWithSource());
ASSERT_TRUE(spdy_stream1);
// Set up session 2
StaticSocketDataProvider data2(reads, base::span<MockWrite>());
session_deps_.socket_factory->AddSocketDataProvider(&data2);
const GURL url2("https://mail.example.org");
HostPortPair test_host_port_pair2(HostPortPair::FromURL(url2));
SpdySessionKey key2(test_host_port_pair2, PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination,
SocketTag(), NetworkAnonymizationKey(),
SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
base::WeakPtr<SpdySession> session2 =
CreateSpdySession(http_session_.get(), key2, NetLogWithSource());
base::WeakPtr<SpdyStream> spdy_stream2 = CreateStreamSynchronously(
SPDY_BIDIRECTIONAL_STREAM, session2, url2, MEDIUM, NetLogWithSource());
ASSERT_TRUE(spdy_stream2);
// Set up session 3
StaticSocketDataProvider data3(reads, base::span<MockWrite>());
data3.set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(&data3);
const GURL url3("https://mail.example.com");
HostPortPair test_host_port_pair3(HostPortPair::FromURL(url3));
SpdySessionKey key3(test_host_port_pair3, PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination,
SocketTag(), NetworkAnonymizationKey(),
SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
base::WeakPtr<SpdySession> session3 =
CreateSpdySession(http_session_.get(), key3, NetLogWithSource());
base::WeakPtr<SpdyStream> spdy_stream3 = CreateStreamSynchronously(
SPDY_BIDIRECTIONAL_STREAM, session3, url3, MEDIUM, NetLogWithSource());
ASSERT_TRUE(spdy_stream3);
// All sessions are active and not closed
EXPECT_TRUE(session1->is_active());
EXPECT_TRUE(session1->IsAvailable());
EXPECT_TRUE(session2->is_active());
EXPECT_TRUE(session2->IsAvailable());
EXPECT_TRUE(session3->is_active());
EXPECT_TRUE(session3->IsAvailable());
// Should not do anything, all are active
spdy_session_pool_->CloseCurrentIdleSessions(close_session_description);
EXPECT_TRUE(session1->is_active());
EXPECT_TRUE(session1->IsAvailable());
EXPECT_TRUE(session2->is_active());
EXPECT_TRUE(session2->IsAvailable());
EXPECT_TRUE(session3->is_active());
EXPECT_TRUE(session3->IsAvailable());
// Make sessions 1 and 3 inactive, but keep them open.
// Session 2 still open and active
session1->CloseCreatedStream(spdy_stream1, OK);
EXPECT_FALSE(spdy_stream1);
session3->CloseCreatedStream(spdy_stream3, OK);
EXPECT_FALSE(spdy_stream3);
EXPECT_FALSE(session1->is_active());
EXPECT_TRUE(session1->IsAvailable());
EXPECT_TRUE(session2->is_active());
EXPECT_TRUE(session2->IsAvailable());
EXPECT_FALSE(session3->is_active());
EXPECT_TRUE(session3->IsAvailable());
// Should close session 1 and 3, 2 should be left open
spdy_session_pool_->CloseCurrentIdleSessions(close_session_description);
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(session1);
EXPECT_TRUE(session2->is_active());
EXPECT_TRUE(session2->IsAvailable());
EXPECT_FALSE(session3);
// Should not do anything
spdy_session_pool_->CloseCurrentIdleSessions(close_session_description);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(session2->is_active());
EXPECT_TRUE(session2->IsAvailable());
// Make 2 not active
session2->CloseCreatedStream(spdy_stream2, OK);
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(spdy_stream2);
EXPECT_FALSE(session2->is_active());
EXPECT_TRUE(session2->IsAvailable());
// This should close session 2
spdy_session_pool_->CloseCurrentIdleSessions(close_session_description);
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(session2);
}
// Set up a SpdyStream to create a new session when it is closed.
// CloseAllSessions should close the newly-created session.
TEST_F(SpdySessionPoolTest, CloseAllSessions) {
const char kTestHost[] = "www.foo.com";
const int kTestPort = 80;
HostPortPair test_host_port_pair(kTestHost, kTestPort);
SpdySessionKey test_key = SpdySessionKey(
test_host_port_pair, PRIVACY_MODE_DISABLED, ProxyChain::Direct(),
SessionUsage::kDestination, SocketTag(), NetworkAnonymizationKey(),
SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
MockConnect connect_data(SYNCHRONOUS, OK);
MockRead reads[] = {
MockRead(SYNCHRONOUS, ERR_IO_PENDING) // Stall forever.
};
StaticSocketDataProvider data(reads, base::span<MockWrite>());
data.set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(&data);
SSLSocketDataProvider ssl(SYNCHRONOUS, OK);
session_deps_.socket_factory->AddSSLSocketDataProvider(&ssl);
CreateNetworkSession();
// Setup the first session to the first host.
base::WeakPtr<SpdySession> session =
CreateSpdySession(http_session_.get(), test_key, NetLogWithSource());
// Flush the SpdySession::OnReadComplete() task.
base::RunLoop().RunUntilIdle();
// Verify that we have sessions for everything.
EXPECT_TRUE(HasSpdySession(spdy_session_pool_, test_key));
// Set the stream to create a new session when it is closed.
base::WeakPtr<SpdyStream> spdy_stream = CreateStreamSynchronously(
SPDY_BIDIRECTIONAL_STREAM, session, GURL("http://www.foo.com"), MEDIUM,
NetLogWithSource());
SessionOpeningDelegate delegate(spdy_session_pool_, test_key);
spdy_stream->SetDelegate(&delegate);
// Close the current session.
spdy_session_pool_->CloseAllSessions();
EXPECT_FALSE(HasSpdySession(spdy_session_pool_, test_key));
}
// Code testing SpdySessionPool::OnIPAddressChange requires a SpdySessionPool
// with some active sessions. This fixture takes care of setting most things up
// but doesn't create the pool yet, allowing tests to possibly further
// configure sessions_deps_.
class SpdySessionPoolOnIPAddressChangeTest : public SpdySessionPoolTest {
protected:
SpdySessionPoolOnIPAddressChangeTest()
: test_host_port_pair_(kTestHost, kTestPort),
reads_({
MockRead(SYNCHRONOUS, ERR_IO_PENDING) // Stall forever.
}),
test_key_(SpdySessionKey(
test_host_port_pair_,
PRIVACY_MODE_DISABLED,
ProxyChain::Direct(),
SessionUsage::kDestination,
SocketTag(),
NetworkAnonymizationKey(),
SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false)),
connect_data_(SYNCHRONOUS, OK),
data_(reads_, base::span<MockWrite>()),
ssl_(SYNCHRONOUS, OK) {
data_.set_connect_data(connect_data_);
session_deps_.socket_factory->AddSocketDataProvider(&data_);
session_deps_.socket_factory->AddSSLSocketDataProvider(&ssl_);
}
static constexpr char kTestHost[] = "www.foo.com";
static constexpr int kTestPort = 80;
static constexpr int kReadSize = 1;
const HostPortPair test_host_port_pair_;
const std::array<MockRead, kReadSize> reads_;
const SpdySessionKey test_key_;
const MockConnect connect_data_;
StaticSocketDataProvider data_;
SSLSocketDataProvider ssl_;
};
TEST_F(SpdySessionPoolOnIPAddressChangeTest, DoNotIgnoreIPAddressChanges) {
// Default behavior should be ignore_ip_address_changes = false;
CreateNetworkSession();
base::WeakPtr<SpdySession> session =
CreateSpdySession(http_session_.get(), test_key_, NetLogWithSource());
// Flush the SpdySession::OnReadComplete() task.
base::RunLoop().RunUntilIdle();
// Verify that we have a session.
EXPECT_TRUE(HasSpdySession(spdy_session_pool_, test_key_));
// Without setting session_deps_.ignore_ip_address_changes = true the pool
// should close (or make unavailable) all sessions after an IP address change.
NetworkChangeNotifier::NotifyObserversOfIPAddressChangeForTests();
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(HasSpdySession(spdy_session_pool_, test_key_));
}
TEST_F(SpdySessionPoolOnIPAddressChangeTest, IgnoreIPAddressChanges) {
session_deps_.ignore_ip_address_changes = true;
CreateNetworkSession();
// Setup the first session to the first host.
base::WeakPtr<SpdySession> session =
CreateSpdySession(http_session_.get(), test_key_, NetLogWithSource());
// Flush the SpdySession::OnReadComplete() task.
base::RunLoop().RunUntilIdle();
// Verify that we have a session.
EXPECT_TRUE(HasSpdySession(spdy_session_pool_, test_key_));
// Since we set ignore_ip_address_changes = true, the session should still be
// there after an IP address change.
NetworkChangeNotifier::NotifyObserversOfIPAddressChangeForTests();
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(HasSpdySession(spdy_session_pool_, test_key_));
}
// This test has three variants, one for each style of closing the connection.
// If |clean_via_close_current_sessions| is SPDY_POOL_CLOSE_SESSIONS_MANUALLY,
// the sessions are closed manually, calling SpdySessionPool::Remove() directly.
// If |clean_via_close_current_sessions| is SPDY_POOL_CLOSE_CURRENT_SESSIONS,
// sessions are closed with SpdySessionPool::CloseCurrentSessions().
// If |clean_via_close_current_sessions| is SPDY_POOL_CLOSE_IDLE_SESSIONS,
// sessions are closed with SpdySessionPool::CloseIdleSessions().
void SpdySessionPoolTest::RunIPPoolingTest(
SpdyPoolCloseSessionsType close_sessions_type) {
constexpr int kTestPort = 443;
struct TestHosts {
std::string url;
std::string name;
std::string iplist;
SpdySessionKey key;
};
auto test_hosts = std::to_array<TestHosts>({
{"http://www.example.org", "www.example.org",
"192.0.2.33,192.168.0.1,192.168.0.5"},
{"http://mail.example.org", "mail.example.org",
"192.168.0.2,192.168.0.3,192.168.0.5,192.0.2.33"},
{"http://mail.example.com", "mail.example.com",
"192.168.0.4,192.168.0.3"},
});
for (auto& test_host : test_hosts) {
session_deps_.host_resolver->rules()->AddIPLiteralRule(
test_host.name, test_host.iplist, std::string());
test_host.key = SpdySessionKey(
HostPortPair(test_host.name, kTestPort), PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination, SocketTag(),
NetworkAnonymizationKey(), SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
}
MockConnect connect_data(SYNCHRONOUS, OK);
MockRead reads[] = {
MockRead(SYNCHRONOUS, ERR_IO_PENDING) // Stall forever.
};
StaticSocketDataProvider data1(reads, base::span<MockWrite>());
data1.set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(&data1);
AddSSLSocketData();
CreateNetworkSession();
// Setup the first session to the first host.
base::WeakPtr<SpdySession> session = CreateSpdySession(
http_session_.get(), test_hosts[0].key, NetLogWithSource());
// Flush the SpdySession::OnReadComplete() task.
base::RunLoop().RunUntilIdle();
// The third host has no overlap with the first, so it can't pool IPs.
EXPECT_FALSE(TryCreateAliasedSpdySession(
spdy_session_pool_, test_hosts[2].key, test_hosts[2].iplist));
// The second host overlaps with the first, and should IP pool.
EXPECT_TRUE(TryCreateAliasedSpdySession(spdy_session_pool_, test_hosts[1].key,
test_hosts[1].iplist));
// However, if IP pooling is disabled, FindAvailableSession() should not find
// |session| for the second host.
base::WeakPtr<SpdySession> session1 =
spdy_session_pool_->FindAvailableSession(
test_hosts[1].key, /* enable_ip_based_pooling = */ false,
/* is_websocket = */ false, NetLogWithSource());
EXPECT_FALSE(session1);
// Verify that the second host, through a proxy, won't share the IP, even if
// the IP list matches.
SpdySessionKey proxy_key(
test_hosts[1].key.host_port_pair(), PRIVACY_MODE_DISABLED,
PacResultElementToProxyChain("HTTP http://proxy.foo.com/"),
SessionUsage::kDestination, SocketTag(), NetworkAnonymizationKey(),
SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
EXPECT_FALSE(TryCreateAliasedSpdySession(spdy_session_pool_, proxy_key,
test_hosts[1].iplist));
// Verify that the second host, with a different SecureDnsPolicy,
// won't share the IP, even if the IP list matches.
SpdySessionKey disable_secure_dns_key(
test_hosts[1].key.host_port_pair(), PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination, SocketTag(),
NetworkAnonymizationKey(), SecureDnsPolicy::kDisable,
/*disable_cert_verification_network_fetches=*/false);
EXPECT_FALSE(TryCreateAliasedSpdySession(
spdy_session_pool_, disable_secure_dns_key, test_hosts[1].iplist));
// Overlap between 2 and 3 is not transitive to 1.
EXPECT_FALSE(TryCreateAliasedSpdySession(
spdy_session_pool_, test_hosts[2].key, test_hosts[2].iplist));
// Create a new session to host 2.
StaticSocketDataProvider data2(reads, base::span<MockWrite>());
data2.set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(&data2);
AddSSLSocketData();
base::WeakPtr<SpdySession> session2 = CreateSpdySession(
http_session_.get(), test_hosts[2].key, NetLogWithSource());
// Verify that we have sessions for everything.
EXPECT_TRUE(HasSpdySession(spdy_session_pool_, test_hosts[0].key));
EXPECT_TRUE(HasSpdySession(spdy_session_pool_, test_hosts[1].key));
EXPECT_TRUE(HasSpdySession(spdy_session_pool_, test_hosts[2].key));
// Grab the session to host 1 and verify that it is the same session
// we got with host 0, and that is a different from host 2's session.
session1 = spdy_session_pool_->FindAvailableSession(
test_hosts[1].key, /* enable_ip_based_pooling = */ true,
/* is_websocket = */ false, NetLogWithSource());
EXPECT_EQ(session.get(), session1.get());
EXPECT_NE(session2.get(), session1.get());
// Remove the aliases and observe that we still have a session for host1.
SpdySessionPoolPeer pool_peer(spdy_session_pool_);
pool_peer.RemoveAliases(test_hosts[0].key);
pool_peer.RemoveAliases(test_hosts[1].key);
EXPECT_TRUE(HasSpdySession(spdy_session_pool_, test_hosts[1].key));
// Cleanup the sessions.
switch (close_sessions_type) {
case SPDY_POOL_CLOSE_SESSIONS_MANUALLY:
session->CloseSessionOnError(ERR_ABORTED, std::string());
session2->CloseSessionOnError(ERR_ABORTED, std::string());
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(session);
EXPECT_FALSE(session2);
break;
case SPDY_POOL_CLOSE_CURRENT_SESSIONS:
spdy_session_pool_->CloseCurrentSessions(ERR_ABORTED);
break;
case SPDY_POOL_CLOSE_IDLE_SESSIONS:
GURL url(test_hosts[0].url);
base::WeakPtr<SpdyStream> spdy_stream = CreateStreamSynchronously(
SPDY_BIDIRECTIONAL_STREAM, session, url, MEDIUM, NetLogWithSource());
GURL url1(test_hosts[1].url);
base::WeakPtr<SpdyStream> spdy_stream1 =
CreateStreamSynchronously(SPDY_BIDIRECTIONAL_STREAM, session1, url1,
MEDIUM, NetLogWithSource());
GURL url2(test_hosts[2].url);
base::WeakPtr<SpdyStream> spdy_stream2 =
CreateStreamSynchronously(SPDY_BIDIRECTIONAL_STREAM, session2, url2,
MEDIUM, NetLogWithSource());
// Close streams to make spdy_session and spdy_session1 inactive.
session->CloseCreatedStream(spdy_stream, OK);
EXPECT_FALSE(spdy_stream);
session1->CloseCreatedStream(spdy_stream1, OK);
EXPECT_FALSE(spdy_stream1);
// Check spdy_session and spdy_session1 are not closed.
EXPECT_FALSE(session->is_active());
EXPECT_TRUE(session->IsAvailable());
EXPECT_FALSE(session1->is_active());
EXPECT_TRUE(session1->IsAvailable());
EXPECT_TRUE(session2->is_active());
EXPECT_TRUE(session2->IsAvailable());
// Test that calling CloseIdleSessions, does not cause a crash.
// http://crbug.com/181400
spdy_session_pool_->CloseCurrentIdleSessions("Closing idle sessions.");
base::RunLoop().RunUntilIdle();
// Verify spdy_session and spdy_session1 are closed.
EXPECT_FALSE(session);
EXPECT_FALSE(session1);
EXPECT_TRUE(session2->is_active());
EXPECT_TRUE(session2->IsAvailable());
spdy_stream2->Cancel(ERR_ABORTED);
EXPECT_FALSE(spdy_stream);
EXPECT_FALSE(spdy_stream1);
EXPECT_FALSE(spdy_stream2);
session2->CloseSessionOnError(ERR_ABORTED, std::string());
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(session2);
break;
}
// Verify that the map is all cleaned up.
EXPECT_FALSE(HasSpdySession(spdy_session_pool_, test_hosts[0].key));
EXPECT_FALSE(HasSpdySession(spdy_session_pool_, test_hosts[1].key));
EXPECT_FALSE(HasSpdySession(spdy_session_pool_, test_hosts[2].key));
EXPECT_FALSE(TryCreateAliasedSpdySession(
spdy_session_pool_, test_hosts[0].key, test_hosts[0].iplist));
EXPECT_FALSE(TryCreateAliasedSpdySession(
spdy_session_pool_, test_hosts[1].key, test_hosts[1].iplist));
EXPECT_FALSE(TryCreateAliasedSpdySession(
spdy_session_pool_, test_hosts[2].key, test_hosts[2].iplist));
}
void SpdySessionPoolTest::RunIPPoolingDisabledTest(SSLSocketDataProvider* ssl) {
constexpr int kTestPort = 443;
struct TestHosts {
std::string name;
std::string iplist;
SpdySessionKey key;
};
auto test_hosts = std::to_array<TestHosts>({
{"www.webkit.org", "192.0.2.33,192.168.0.1,192.168.0.5"},
{"js.webkit.com", "192.168.0.4,192.168.0.1,192.0.2.33"},
});
session_deps_.host_resolver->set_synchronous_mode(true);
for (auto& test_host : test_hosts) {
session_deps_.host_resolver->rules()->AddIPLiteralRule(
test_host.name, test_host.iplist, std::string());
// Setup a SpdySessionKey
test_host.key = SpdySessionKey(
HostPortPair(test_host.name, kTestPort), PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination, SocketTag(),
NetworkAnonymizationKey(), SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
}
MockRead reads[] = {
MockRead(ASYNC, ERR_IO_PENDING),
};
StaticSocketDataProvider data(reads, base::span<MockWrite>());
session_deps_.socket_factory->AddSocketDataProvider(&data);
session_deps_.socket_factory->AddSSLSocketDataProvider(ssl);
CreateNetworkSession();
base::WeakPtr<SpdySession> spdy_session = CreateSpdySession(
http_session_.get(), test_hosts[0].key, NetLogWithSource());
EXPECT_TRUE(
HasSpdySession(http_session_->spdy_session_pool(), test_hosts[0].key));
EXPECT_FALSE(TryCreateAliasedSpdySession(
spdy_session_pool_, test_hosts[1].key, test_hosts[1].iplist,
/* enable_ip_based_pooling = */ false));
http_session_->spdy_session_pool()->CloseAllSessions();
}
TEST_F(SpdySessionPoolTest, IPPooling) {
RunIPPoolingTest(SPDY_POOL_CLOSE_SESSIONS_MANUALLY);
}
TEST_F(SpdySessionPoolTest, IPPoolingCloseCurrentSessions) {
RunIPPoolingTest(SPDY_POOL_CLOSE_CURRENT_SESSIONS);
}
TEST_F(SpdySessionPoolTest, IPPoolingCloseIdleSessions) {
RunIPPoolingTest(SPDY_POOL_CLOSE_IDLE_SESSIONS);
}
// Regression test for https://crbug.com/643025.
TEST_F(SpdySessionPoolTest, IPPoolingNetLog) {
// Define two hosts with identical IP address.
constexpr int kTestPort = 443;
struct TestHosts {
std::string name;
std::string iplist;
SpdySessionKey key;
};
auto test_hosts = std::to_array<TestHosts>({
{"www.example.org", "192.168.0.1"},
{"mail.example.org", "192.168.0.1"},
});
// Populate the HostResolver cache.
session_deps_.host_resolver->set_synchronous_mode(true);
for (auto& test_host : test_hosts) {
session_deps_.host_resolver->rules()->AddIPLiteralRule(
test_host.name, test_host.iplist, std::string());
test_host.key = SpdySessionKey(
HostPortPair(test_host.name, kTestPort), PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination, SocketTag(),
NetworkAnonymizationKey(), SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
}
MockRead reads[] = {MockRead(SYNCHRONOUS, ERR_IO_PENDING)};
StaticSocketDataProvider data(reads, base::span<MockWrite>());
MockConnect connect_data(SYNCHRONOUS, OK);
data.set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(&data);
AddSSLSocketData();
CreateNetworkSession();
// Open SpdySession to the first host.
base::WeakPtr<SpdySession> session0 = CreateSpdySession(
http_session_.get(), test_hosts[0].key, NetLogWithSource());
// The second host should pool to the existing connection.
RecordingNetLogObserver net_log_observer;
base::HistogramTester histogram_tester;
EXPECT_TRUE(TryCreateAliasedSpdySession(spdy_session_pool_, test_hosts[1].key,
test_hosts[1].iplist));
histogram_tester.ExpectTotalCount("Net.SpdySessionGet", 1);
base::WeakPtr<SpdySession> session1 =
spdy_session_pool_->FindAvailableSession(
test_hosts[1].key, /* enable_ip_based_pooling = */ true,
/* is_websocket = */ false,
NetLogWithSource::Make(NetLogSourceType::NONE));
EXPECT_EQ(session0.get(), session1.get());
ASSERT_EQ(1u, net_log_observer.GetSize());
histogram_tester.ExpectTotalCount("Net.SpdySessionGet", 2);
// FindAvailableSession() should have logged a netlog event indicating IP
// pooling.
auto entry_list = net_log_observer.GetEntries();
EXPECT_EQ(
NetLogEventType::HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION_FROM_IP_POOL,
entry_list[0].type);
// Both FindAvailableSession() calls (including one from
// TryCreateAliasedSpdySession) should log histogram entries indicating IP
// pooling.
histogram_tester.ExpectUniqueSample("Net.SpdySessionGet", 2, 2);
}
// Test IP pooling when the DNS responses have ALPNs.
TEST_F(SpdySessionPoolTest, IPPoolingDnsAlpn) {
// Define two hosts with identical IP address.
constexpr int kTestPort = 443;
struct TestHosts {
std::string name;
std::vector<HostResolverEndpointResult> endpoints;
SpdySessionKey key;
};
auto test_hosts = std::to_array<TestHosts>({
{"www.example.org"},
{"mail.example.org"},
{"mail.example.com"},
{"example.test"},
});
const IPEndPoint kRightIP(*IPAddress::FromIPLiteral("192.168.0.1"),
kTestPort);
const IPEndPoint kWrongIP(*IPAddress::FromIPLiteral("192.168.0.2"),
kTestPort);
const std::string kRightALPN = "h2";
const std::string kWrongALPN = "h3";
// `test_hosts[0]` and `test_hosts[1]` resolve to the same IP address, without
// any ALPN information.
test_hosts[0].endpoints.emplace_back();
test_hosts[0].endpoints[0].ip_endpoints = {kRightIP};
test_hosts[1].endpoints.emplace_back();
test_hosts[1].endpoints[0].ip_endpoints = {kRightIP};
// `test_hosts[2]` resolves to the same IP address, but only via an
// alternative endpoint with matching ALPN.
test_hosts[2].endpoints.emplace_back();
test_hosts[2].endpoints[0].ip_endpoints = {kRightIP};
test_hosts[2].endpoints[0].metadata.supported_protocol_alpns = {kRightALPN};
// `test_hosts[3]` resolves to the same IP address, but only via an
// alternative endpoint with a mismatching ALPN.
test_hosts[3].endpoints.resize(2);
test_hosts[3].endpoints[0].ip_endpoints = {kRightIP};
test_hosts[3].endpoints[0].metadata.supported_protocol_alpns = {kWrongALPN};
test_hosts[3].endpoints[1].ip_endpoints = {kWrongIP};
test_hosts[3].endpoints[1].metadata.supported_protocol_alpns = {kRightALPN};
// Populate the HostResolver cache.
session_deps_.host_resolver->set_synchronous_mode(true);
for (auto& test_host : test_hosts) {
session_deps_.host_resolver->rules()->AddRule(
test_host.name,
MockHostResolverBase::RuleResolver::RuleResult(test_host.endpoints));
test_host.key = SpdySessionKey(
HostPortPair(test_host.name, kTestPort), PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination, SocketTag(),
NetworkAnonymizationKey(), SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
}
MockRead reads[] = {MockRead(SYNCHRONOUS, ERR_IO_PENDING)};
StaticSocketDataProvider data(reads, base::span<MockWrite>());
MockConnect connect_data(SYNCHRONOUS, OK);
data.set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(&data);
AddSSLSocketData();
CreateNetworkSession();
// Open SpdySession to the first host.
base::WeakPtr<SpdySession> session0 = CreateSpdySession(
http_session_.get(), test_hosts[0].key, NetLogWithSource());
// The second host should pool to the existing connection. Although the
// addresses are not associated with ALPNs, the default connection flow for
// HTTPS is compatible with HTTP/2.
EXPECT_TRUE(TryCreateAliasedSpdySession(spdy_session_pool_, test_hosts[1].key,
test_hosts[1].endpoints));
base::WeakPtr<SpdySession> session1 =
spdy_session_pool_->FindAvailableSession(
test_hosts[1].key, /*enable_ip_based_pooling=*/true,
/*is_websocket=*/false,
NetLogWithSource::Make(NetLogSourceType::NONE));
EXPECT_EQ(session0.get(), session1.get());
// The third host should also pool to the existing connection.
EXPECT_TRUE(TryCreateAliasedSpdySession(spdy_session_pool_, test_hosts[2].key,
test_hosts[2].endpoints));
base::WeakPtr<SpdySession> session2 =
spdy_session_pool_->FindAvailableSession(
test_hosts[2].key, /*enable_ip_based_pooling=*/true,
/*is_websocket=*/false,
NetLogWithSource::Make(NetLogSourceType::NONE));
EXPECT_EQ(session0.get(), session2.get());
// The fourth host should not pool. The only matching endpoint is specific to
// QUIC.
EXPECT_FALSE(TryCreateAliasedSpdySession(
spdy_session_pool_, test_hosts[3].key, test_hosts[3].endpoints));
}
TEST_F(SpdySessionPoolTest, IPPoolingDisabled) {
// Define two hosts with identical IP address.
constexpr int kTestPort = 443;
struct TestHosts {
std::string name;
std::string iplist;
SpdySessionKey key;
};
auto test_hosts = std::to_array<TestHosts>({
{"www.example.org", "192.168.0.1"},
{"mail.example.org", "192.168.0.1"},
});
// Populate the HostResolver cache.
session_deps_.host_resolver->set_synchronous_mode(true);
for (auto& test_host : test_hosts) {
session_deps_.host_resolver->rules()->AddIPLiteralRule(
test_host.name, test_host.iplist, std::string());
test_host.key = SpdySessionKey(
HostPortPair(test_host.name, kTestPort), PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination, SocketTag(),
NetworkAnonymizationKey(), SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
}
MockRead reads[] = {MockRead(SYNCHRONOUS, ERR_IO_PENDING)};
StaticSocketDataProvider data(reads, base::span<MockWrite>());
MockConnect connect_data(SYNCHRONOUS, OK);
data.set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(&data);
AddSSLSocketData();
MockRead reads1[] = {MockRead(SYNCHRONOUS, ERR_IO_PENDING)};
StaticSocketDataProvider data1(reads1, base::span<MockWrite>());
MockConnect connect_data1(SYNCHRONOUS, OK);
data1.set_connect_data(connect_data1);
session_deps_.socket_factory->AddSocketDataProvider(&data1);
AddSSLSocketData();
CreateNetworkSession();
// Open SpdySession to the first host.
base::WeakPtr<SpdySession> session0 = CreateSpdySession(
http_session_.get(), test_hosts[0].key, NetLogWithSource());
// |test_hosts[1]| should pool to the existing connection.
EXPECT_TRUE(TryCreateAliasedSpdySession(spdy_session_pool_, test_hosts[1].key,
test_hosts[1].iplist));
base::WeakPtr<SpdySession> session1 =
spdy_session_pool_->FindAvailableSession(
test_hosts[1].key, /* enable_ip_based_pooling = */ true,
/* is_websocket = */ false, NetLogWithSource());
EXPECT_EQ(session0.get(), session1.get());
// A request to the second host should not pool to the existing connection if
// IP based pooling is disabled.
session1 = spdy_session_pool_->FindAvailableSession(
test_hosts[1].key, /* enable_ip_based_pooling = */ false,
/* is_websocket = */ false, NetLogWithSource());
EXPECT_FALSE(session1);
// It should be possible to open a new SpdySession, even if a previous call to
// FindAvailableSession() linked the second key to the first connection in the
// IP pooled bucket of SpdySessionPool::available_session_map_.
session1 = CreateSpdySessionWithIpBasedPoolingDisabled(
http_session_.get(), test_hosts[1].key, NetLogWithSource());
EXPECT_TRUE(session1);
EXPECT_NE(session0.get(), session1.get());
}
// Verifies that an SSL connection with client authentication disables SPDY IP
// pooling.
TEST_F(SpdySessionPoolTest, IPPoolingClientCert) {
SSLSocketDataProvider ssl(ASYNC, OK);
ssl.ssl_info.cert = X509Certificate::CreateFromBytes(webkit_der);
ASSERT_TRUE(ssl.ssl_info.cert);
ssl.ssl_info.client_cert_sent = true;
ssl.next_proto = NextProto::kProtoHTTP2;
RunIPPoolingDisabledTest(&ssl);
}
namespace {
enum class ChangeType {
kIpAddress = 0,
kSSLConfig,
kCertDatabase,
kCertVerifier
};
class SpdySessionGoAwayOnChangeTest
: public SpdySessionPoolTest,
public ::testing::WithParamInterface<ChangeType> {
public:
void SetUp() override {
SpdySessionPoolTest::SetUp();
if (GetParam() == ChangeType::kIpAddress) {
session_deps_.go_away_on_ip_change = true;
}
}
void SimulateChange() {
switch (GetParam()) {
case ChangeType::kIpAddress:
spdy_session_pool_->OnIPAddressChanged();
break;
case ChangeType::kSSLConfig:
session_deps_.ssl_config_service->NotifySSLContextConfigChange();
break;
case ChangeType::kCertDatabase:
// TODO(mattm): For more realistic testing this should call
// `CertDatabase::GetInstance()->NotifyObserversCertDBChanged()`,
// however that delivers notifications asynchronously, and running
// the message loop to allow the notification to be delivered allows
// other parts of the tested code to advance, breaking the test
// expectations.
spdy_session_pool_->OnSSLConfigChanged(
SSLClientContext::SSLConfigChangeType::kCertDatabaseChanged);
break;
case ChangeType::kCertVerifier:
session_deps_.cert_verifier->SimulateOnCertVerifierChanged();
break;
}
}
Error ExpectedNetError() const {
switch (GetParam()) {
case ChangeType::kIpAddress:
return ERR_NETWORK_CHANGED;
case ChangeType::kSSLConfig:
return ERR_NETWORK_CHANGED;
case ChangeType::kCertDatabase:
return ERR_CERT_DATABASE_CHANGED;
case ChangeType::kCertVerifier:
return ERR_CERT_VERIFIER_CHANGED;
}
}
};
} // namespace
// Construct a Pool with SpdySessions in various availability states. Simulate
// an IP address change. Ensure sessions gracefully shut down. Regression test
// for crbug.com/379469.
TEST_P(SpdySessionGoAwayOnChangeTest, GoAwayOnChange) {
MockConnect connect_data(SYNCHRONOUS, OK);
session_deps_.host_resolver->set_synchronous_mode(true);
// This isn't testing anything having to do with SPDY frames; we
// can ignore issues of how dependencies are set. We default to
// setting them (when doing the appropriate protocol) since that's
// where we're eventually headed for all HTTP/2 connections.
SpdyTestUtil spdy_util;
MockRead reads[] = {
MockRead(SYNCHRONOUS, ERR_IO_PENDING) // Stall forever.
};
spdy::SpdySerializedFrame req(
spdy_util.ConstructSpdyGet("http://www.example.org", 1, MEDIUM));
MockWrite writes[] = {CreateMockWrite(req, 1)};
StaticSocketDataProvider dataA(reads, writes);
dataA.set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(&dataA);
AddSSLSocketData();
CreateNetworkSession();
// Set up session A: Going away, but with an active stream.
const std::string kTestHostA("www.example.org");
HostPortPair test_host_port_pairA(kTestHostA, 80);
SpdySessionKey keyA(test_host_port_pairA, PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination,
SocketTag(), NetworkAnonymizationKey(),
SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
base::WeakPtr<SpdySession> sessionA =
CreateSpdySession(http_session_.get(), keyA, NetLogWithSource());
GURL urlA("http://www.example.org");
base::WeakPtr<SpdyStream> spdy_streamA = CreateStreamSynchronously(
SPDY_BIDIRECTIONAL_STREAM, sessionA, urlA, MEDIUM, NetLogWithSource());
test::StreamDelegateDoNothing delegateA(spdy_streamA);
spdy_streamA->SetDelegate(&delegateA);
quiche::HttpHeaderBlock headers(
spdy_util.ConstructGetHeaderBlock(urlA.spec()));
spdy_streamA->SendRequestHeaders(std::move(headers), NO_MORE_DATA_TO_SEND);
base::RunLoop().RunUntilIdle(); // Allow headers to write.
EXPECT_TRUE(delegateA.send_headers_completed());
sessionA->MakeUnavailable();
EXPECT_TRUE(sessionA->IsGoingAway());
EXPECT_FALSE(delegateA.StreamIsClosed());
// Set up session B: Available, with a created stream.
StaticSocketDataProvider dataB(reads, writes);
dataB.set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(&dataB);
AddSSLSocketData();
const std::string kTestHostB("mail.example.org");
HostPortPair test_host_port_pairB(kTestHostB, 80);
SpdySessionKey keyB(test_host_port_pairB, PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination,
SocketTag(), NetworkAnonymizationKey(),
SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
base::WeakPtr<SpdySession> sessionB =
CreateSpdySession(http_session_.get(), keyB, NetLogWithSource());
EXPECT_TRUE(sessionB->IsAvailable());
GURL urlB("http://mail.example.org");
base::WeakPtr<SpdyStream> spdy_streamB = CreateStreamSynchronously(
SPDY_BIDIRECTIONAL_STREAM, sessionB, urlB, MEDIUM, NetLogWithSource());
test::StreamDelegateDoNothing delegateB(spdy_streamB);
spdy_streamB->SetDelegate(&delegateB);
// Set up session C: Draining.
StaticSocketDataProvider dataC(reads, writes);
dataC.set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(&dataC);
AddSSLSocketData();
const std::string kTestHostC("mail.example.com");
HostPortPair test_host_port_pairC(kTestHostC, 80);
SpdySessionKey keyC(test_host_port_pairC, PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination,
SocketTag(), NetworkAnonymizationKey(),
SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
base::WeakPtr<SpdySession> sessionC =
CreateSpdySession(http_session_.get(), keyC, NetLogWithSource());
sessionC->CloseSessionOnError(ERR_HTTP2_PROTOCOL_ERROR, "Error!");
EXPECT_TRUE(sessionC->IsDraining());
SimulateChange();
EXPECT_TRUE(sessionA->IsGoingAway());
EXPECT_TRUE(sessionB->IsDraining());
EXPECT_TRUE(sessionC->IsDraining());
EXPECT_EQ(1u,
num_active_streams(sessionA)); // Active stream is still active.
EXPECT_FALSE(delegateA.StreamIsClosed());
EXPECT_TRUE(delegateB.StreamIsClosed()); // Created stream was closed.
EXPECT_THAT(delegateB.WaitForClose(), IsError(ExpectedNetError()));
sessionA->CloseSessionOnError(ERR_ABORTED, "Closing");
sessionB->CloseSessionOnError(ERR_ABORTED, "Closing");
EXPECT_TRUE(delegateA.StreamIsClosed());
EXPECT_THAT(delegateA.WaitForClose(), IsError(ERR_ABORTED));
}
INSTANTIATE_TEST_SUITE_P(All,
SpdySessionGoAwayOnChangeTest,
testing::Values(ChangeType::kIpAddress,
ChangeType::kSSLConfig,
ChangeType::kCertDatabase,
ChangeType::kCertVerifier));
// Construct a Pool with SpdySessions in various availability states. Simulate
// an IP address change. Ensure sessions gracefully shut down. Regression test
// for crbug.com/379469.
TEST_F(SpdySessionPoolTest, CloseOnIPAddressChanged) {
MockConnect connect_data(SYNCHRONOUS, OK);
session_deps_.host_resolver->set_synchronous_mode(true);
// This isn't testing anything having to do with SPDY frames; we
// can ignore issues of how dependencies are set. We default to
// setting them (when doing the appropriate protocol) since that's
// where we're eventually headed for all HTTP/2 connections.
SpdyTestUtil spdy_util;
MockRead reads[] = {
MockRead(SYNCHRONOUS, ERR_IO_PENDING) // Stall forever.
};
spdy::SpdySerializedFrame req(
spdy_util.ConstructSpdyGet("http://www.example.org", 1, MEDIUM));
MockWrite writes[] = {CreateMockWrite(req, 1)};
StaticSocketDataProvider dataA(reads, writes);
dataA.set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(&dataA);
AddSSLSocketData();
session_deps_.go_away_on_ip_change = false;
CreateNetworkSession();
// Set up session A: Going away, but with an active stream.
const std::string kTestHostA("www.example.org");
HostPortPair test_host_port_pairA(kTestHostA, 80);
SpdySessionKey keyA(test_host_port_pairA, PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination,
SocketTag(), NetworkAnonymizationKey(),
SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
base::WeakPtr<SpdySession> sessionA =
CreateSpdySession(http_session_.get(), keyA, NetLogWithSource());
GURL urlA("http://www.example.org");
base::WeakPtr<SpdyStream> spdy_streamA = CreateStreamSynchronously(
SPDY_BIDIRECTIONAL_STREAM, sessionA, urlA, MEDIUM, NetLogWithSource());
test::StreamDelegateDoNothing delegateA(spdy_streamA);
spdy_streamA->SetDelegate(&delegateA);
quiche::HttpHeaderBlock headers(
spdy_util.ConstructGetHeaderBlock(urlA.spec()));
spdy_streamA->SendRequestHeaders(std::move(headers), NO_MORE_DATA_TO_SEND);
base::RunLoop().RunUntilIdle(); // Allow headers to write.
EXPECT_TRUE(delegateA.send_headers_completed());
sessionA->MakeUnavailable();
EXPECT_TRUE(sessionA->IsGoingAway());
EXPECT_FALSE(delegateA.StreamIsClosed());
// Set up session B: Available, with a created stream.
StaticSocketDataProvider dataB(reads, writes);
dataB.set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(&dataB);
AddSSLSocketData();
const std::string kTestHostB("mail.example.org");
HostPortPair test_host_port_pairB(kTestHostB, 80);
SpdySessionKey keyB(test_host_port_pairB, PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination,
SocketTag(), NetworkAnonymizationKey(),
SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
base::WeakPtr<SpdySession> sessionB =
CreateSpdySession(http_session_.get(), keyB, NetLogWithSource());
EXPECT_TRUE(sessionB->IsAvailable());
GURL urlB("http://mail.example.org");
base::WeakPtr<SpdyStream> spdy_streamB = CreateStreamSynchronously(
SPDY_BIDIRECTIONAL_STREAM, sessionB, urlB, MEDIUM, NetLogWithSource());
test::StreamDelegateDoNothing delegateB(spdy_streamB);
spdy_streamB->SetDelegate(&delegateB);
// Set up session C: Draining.
StaticSocketDataProvider dataC(reads, writes);
dataC.set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(&dataC);
AddSSLSocketData();
const std::string kTestHostC("mail.example.com");
HostPortPair test_host_port_pairC(kTestHostC, 80);
SpdySessionKey keyC(test_host_port_pairC, PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination,
SocketTag(), NetworkAnonymizationKey(),
SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
base::WeakPtr<SpdySession> sessionC =
CreateSpdySession(http_session_.get(), keyC, NetLogWithSource());
sessionC->CloseSessionOnError(ERR_HTTP2_PROTOCOL_ERROR, "Error!");
EXPECT_TRUE(sessionC->IsDraining());
spdy_session_pool_->OnIPAddressChanged();
EXPECT_TRUE(sessionA->IsDraining());
EXPECT_TRUE(sessionB->IsDraining());
EXPECT_TRUE(sessionC->IsDraining());
// Both streams were closed with an error.
EXPECT_TRUE(delegateA.StreamIsClosed());
EXPECT_THAT(delegateA.WaitForClose(), IsError(ERR_NETWORK_CHANGED));
EXPECT_TRUE(delegateB.StreamIsClosed());
EXPECT_THAT(delegateB.WaitForClose(), IsError(ERR_NETWORK_CHANGED));
}
// Regression test for https://crbug.com/789791.
TEST_F(SpdySessionPoolTest, HandleIPAddressChangeThenShutdown) {
MockRead reads[] = {MockRead(SYNCHRONOUS, ERR_IO_PENDING)};
SpdyTestUtil spdy_util;
spdy::SpdySerializedFrame req(
spdy_util.ConstructSpdyGet(kDefaultUrl, 1, MEDIUM));
MockWrite writes[] = {CreateMockWrite(req, 1)};
StaticSocketDataProvider data(reads, writes);
MockConnect connect_data(SYNCHRONOUS, OK);
data.set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(&data);
AddSSLSocketData();
CreateNetworkSession();
const GURL url(kDefaultUrl);
SpdySessionKey key(HostPortPair::FromURL(url), PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination,
SocketTag(), NetworkAnonymizationKey(),
SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
base::WeakPtr<SpdySession> session =
CreateSpdySession(http_session_.get(), key, NetLogWithSource());
base::WeakPtr<SpdyStream> spdy_stream = CreateStreamSynchronously(
SPDY_BIDIRECTIONAL_STREAM, session, url, MEDIUM, NetLogWithSource());
test::StreamDelegateDoNothing delegate(spdy_stream);
spdy_stream->SetDelegate(&delegate);
quiche::HttpHeaderBlock headers(
spdy_util.ConstructGetHeaderBlock(url.spec()));
spdy_stream->SendRequestHeaders(std::move(headers), NO_MORE_DATA_TO_SEND);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(delegate.send_headers_completed());
spdy_session_pool_->OnIPAddressChanged();
#if BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_WIN) || BUILDFLAG(IS_IOS)
EXPECT_EQ(1u, num_active_streams(session));
EXPECT_TRUE(session->IsGoingAway());
EXPECT_FALSE(session->IsDraining());
#else
EXPECT_EQ(0u, num_active_streams(session));
EXPECT_FALSE(session->IsGoingAway());
EXPECT_TRUE(session->IsDraining());
#endif // BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_WIN) || BUILDFLAG(IS_IOS)
http_session_.reset();
data.AllReadDataConsumed();
data.AllWriteDataConsumed();
}
// Regression test for https://crbug.com/789791.
TEST_F(SpdySessionPoolTest, HandleGracefulGoawayThenShutdown) {
SpdyTestUtil spdy_util;
spdy::SpdySerializedFrame goaway(spdy_util.ConstructSpdyGoAway(
0x7fffffff, spdy::ERROR_CODE_NO_ERROR, "Graceful shutdown."));
MockRead reads[] = {
MockRead(ASYNC, ERR_IO_PENDING, 1), CreateMockRead(goaway, 2),
MockRead(ASYNC, ERR_IO_PENDING, 3), MockRead(ASYNC, OK, 4)};
spdy::SpdySerializedFrame req(
spdy_util.ConstructSpdyGet(kDefaultUrl, 1, MEDIUM));
MockWrite writes[] = {CreateMockWrite(req, 0)};
SequencedSocketData data(reads, writes);
MockConnect connect_data(SYNCHRONOUS, OK);
data.set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(&data);
AddSSLSocketData();
CreateNetworkSession();
const GURL url(kDefaultUrl);
SpdySessionKey key(HostPortPair::FromURL(url), PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination,
SocketTag(), NetworkAnonymizationKey(),
SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
base::WeakPtr<SpdySession> session =
CreateSpdySession(http_session_.get(), key, NetLogWithSource());
base::WeakPtr<SpdyStream> spdy_stream = CreateStreamSynchronously(
SPDY_BIDIRECTIONAL_STREAM, session, url, MEDIUM, NetLogWithSource());
test::StreamDelegateDoNothing delegate(spdy_stream);
spdy_stream->SetDelegate(&delegate);
quiche::HttpHeaderBlock headers(
spdy_util.ConstructGetHeaderBlock(url.spec()));
spdy_stream->SendRequestHeaders(std::move(headers), NO_MORE_DATA_TO_SEND);
// Send headers.
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(delegate.send_headers_completed());
EXPECT_EQ(1u, num_active_streams(session));
EXPECT_FALSE(session->IsGoingAway());
EXPECT_FALSE(session->IsDraining());
// Read GOAWAY.
data.Resume();
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1u, num_active_streams(session));
EXPECT_TRUE(session->IsGoingAway());
EXPECT_FALSE(session->IsDraining());
http_session_.reset();
data.AllReadDataConsumed();
data.AllWriteDataConsumed();
}
TEST_F(SpdySessionPoolTest, IPConnectionPoolingWithWebSockets) {
// Define two hosts with identical IP address.
const int kTestPort = 443;
struct TestHosts {
std::string name;
std::string iplist;
SpdySessionKey key;
};
auto test_hosts = std::to_array<TestHosts>({
{"www.example.org", "192.168.0.1"},
{"mail.example.org", "192.168.0.1"},
});
// Populate the HostResolver cache.
session_deps_.host_resolver->set_synchronous_mode(true);
for (auto& test_host : test_hosts) {
session_deps_.host_resolver->rules()->AddIPLiteralRule(
test_host.name, test_host.iplist, std::string());
test_host.key = SpdySessionKey(
HostPortPair(test_host.name, kTestPort), PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination, SocketTag(),
NetworkAnonymizationKey(), SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
}
SpdyTestUtil spdy_util;
spdy::SpdySerializedFrame req(spdy_util.ConstructSpdyGet(
base::span<const std::string_view>(), 1, LOWEST));
spdy::SpdySerializedFrame settings_ack(spdy_util.ConstructSpdySettingsAck());
MockWrite writes[] = {CreateMockWrite(req, 0),
CreateMockWrite(settings_ack, 2)};
spdy::SettingsMap settings;
settings[spdy::SETTINGS_ENABLE_CONNECT_PROTOCOL] = 1;
spdy::SpdySerializedFrame settings_frame(
spdy_util.ConstructSpdySettings(settings));
spdy::SpdySerializedFrame resp(
spdy_util.ConstructSpdyGetReply(base::span<const std::string_view>(), 1));
spdy::SpdySerializedFrame body(spdy_util.ConstructSpdyDataFrame(1, true));
MockRead reads[] = {CreateMockRead(settings_frame, 1),
CreateMockRead(resp, 3), CreateMockRead(body, 4),
MockRead(ASYNC, ERR_IO_PENDING, 5),
MockRead(ASYNC, 0, 6)};
SequencedSocketData data(reads, writes);
session_deps_.socket_factory->AddSocketDataProvider(&data);
AddSSLSocketData();
CreateNetworkSession();
// Create a connection to the first host.
base::WeakPtr<SpdySession> session = CreateSpdySession(
http_session_.get(), test_hosts[0].key, NetLogWithSource());
// SpdySession does not support Websocket before SETTINGS frame is read.
EXPECT_FALSE(session->support_websocket());
NetLogWithSource net_log_with_source{
NetLogWithSource::Make(NetLogSourceType::NONE)};
// TryCreateAliasedSpdySession should not find |session| for either
// SpdySessionKeys if |is_websocket| argument is set.
EXPECT_FALSE(TryCreateAliasedSpdySession(
spdy_session_pool_, test_hosts[0].key, test_hosts[0].iplist,
/* enable_ip_based_pooling = */ true,
/* is_websocket = */ true));
EXPECT_FALSE(TryCreateAliasedSpdySession(
spdy_session_pool_, test_hosts[1].key, test_hosts[1].iplist,
/* enable_ip_based_pooling = */ true,
/* is_websocket = */ true));
// Start request that triggers reading the SETTINGS frame.
const GURL url(kDefaultUrl);
base::WeakPtr<SpdyStream> spdy_stream = CreateStreamSynchronously(
SPDY_BIDIRECTIONAL_STREAM, session, url, LOWEST, NetLogWithSource());
test::StreamDelegateDoNothing delegate(spdy_stream);
spdy_stream->SetDelegate(&delegate);
quiche::HttpHeaderBlock headers(
spdy_util.ConstructGetHeaderBlock(url.spec()));
spdy_stream->SendRequestHeaders(std::move(headers), NO_MORE_DATA_TO_SEND);
base::RunLoop().RunUntilIdle();
// Now SpdySession has read the SETTINGS frame and thus supports Websocket.
EXPECT_TRUE(session->support_websocket());
// FindAvailableSession() on the first host should now find the existing
// session with websockets enabled, and TryCreateAliasedSpdySession() should
// now set up aliases for |session| for the second one.
base::WeakPtr<SpdySession> result = spdy_session_pool_->FindAvailableSession(
test_hosts[0].key, /* enable_ip_based_pooling = */ true,
/* is_websocket = */ true, net_log_with_source);
EXPECT_EQ(session.get(), result.get());
EXPECT_TRUE(TryCreateAliasedSpdySession(spdy_session_pool_, test_hosts[1].key,
test_hosts[1].iplist,
/* enable_ip_based_pooling = */ true,
/* is_websocket = */ true));
// FindAvailableSession() should return |session| for either SpdySessionKeys
// when IP based pooling is enabled.
result = spdy_session_pool_->FindAvailableSession(
test_hosts[0].key, /* enable_ip_based_pooling = */ true,
/* is_websocket = */ true, net_log_with_source);
EXPECT_EQ(session.get(), result.get());
result = spdy_session_pool_->FindAvailableSession(
test_hosts[1].key, /* enable_ip_based_pooling = */ true,
/* is_websocket = */ true, net_log_with_source);
EXPECT_EQ(session.get(), result.get());
// FindAvailableSession() should only return |session| for the first
// SpdySessionKey when IP based pooling is disabled.
result = spdy_session_pool_->FindAvailableSession(
test_hosts[0].key, /* enable_ip_based_pooling = */ false,
/* is_websocket = */ true, net_log_with_source);
EXPECT_EQ(session.get(), result.get());
result = spdy_session_pool_->FindAvailableSession(
test_hosts[1].key, /* enable_ip_based_pooling = */ false,
/* is_websocket = */ true, net_log_with_source);
EXPECT_FALSE(result);
// Read EOF.
data.Resume();
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(data.AllReadDataConsumed());
EXPECT_TRUE(data.AllWriteDataConsumed());
}
class TestOnRequestDeletedCallback {
public:
TestOnRequestDeletedCallback() = default;
TestOnRequestDeletedCallback(const TestOnRequestDeletedCallback&) = delete;
TestOnRequestDeletedCallback& operator=(const TestOnRequestDeletedCallback&) =
delete;
~TestOnRequestDeletedCallback() = default;
base::RepeatingClosure Callback() {
return base::BindRepeating(&TestOnRequestDeletedCallback::OnRequestDeleted,
base::Unretained(this));
}
bool invoked() const { return invoked_; }
void WaitUntilInvoked() { run_loop_.Run(); }
void SetRequestDeletedCallback(base::OnceClosure request_deleted_callback) {
DCHECK(!request_deleted_callback_);
request_deleted_callback_ = std::move(request_deleted_callback);
}
private:
void OnRequestDeleted() {
EXPECT_FALSE(invoked_);
invoked_ = true;
if (request_deleted_callback_) {
std::move(request_deleted_callback_).Run();
}
run_loop_.Quit();
}
bool invoked_ = false;
base::RunLoop run_loop_;
base::OnceClosure request_deleted_callback_;
};
class TestRequestDelegate
: public SpdySessionPool::SpdySessionRequest::Delegate {
public:
TestRequestDelegate() = default;
TestRequestDelegate(const TestRequestDelegate&) = delete;
TestRequestDelegate& operator=(const TestRequestDelegate&) = delete;
~TestRequestDelegate() override = default;
// SpdySessionPool::SpdySessionRequest::Delegate implementation:
void OnSpdySessionAvailable(
base::WeakPtr<SpdySession> spdy_session) override {}
};
TEST_F(SpdySessionPoolTest, RequestSessionWithNoSessions) {
const SpdySessionKey kSessionKey(
HostPortPair("foo.test", 443), PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination, SocketTag(),
NetworkAnonymizationKey(), SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
CreateNetworkSession();
// First request. Its request deleted callback should never be invoked.
TestOnRequestDeletedCallback request_deleted_callback1;
TestRequestDelegate request_delegate1;
std::unique_ptr<SpdySessionPool::SpdySessionRequest> spdy_session_request1;
bool is_first_request_for_session;
EXPECT_FALSE(spdy_session_pool_->RequestSession(
kSessionKey, /* enable_ip_based_pooling = */ false,
/* is_websocket = */ false, NetLogWithSource(),
request_deleted_callback1.Callback(), &request_delegate1,
&spdy_session_request1, &is_first_request_for_session));
EXPECT_TRUE(is_first_request_for_session);
// Second request.
TestOnRequestDeletedCallback request_deleted_callback2;
TestRequestDelegate request_delegate2;
std::unique_ptr<SpdySessionPool::SpdySessionRequest> spdy_session_request2;
EXPECT_FALSE(spdy_session_pool_->RequestSession(
kSessionKey, /* enable_ip_based_pooling = */ false,
/* is_websocket = */ false, NetLogWithSource(),
request_deleted_callback2.Callback(), &request_delegate2,
&spdy_session_request2, &is_first_request_for_session));
EXPECT_FALSE(is_first_request_for_session);
// Third request.
TestOnRequestDeletedCallback request_deleted_callback3;
TestRequestDelegate request_delegate3;
std::unique_ptr<SpdySessionPool::SpdySessionRequest> spdy_session_request3;
EXPECT_FALSE(spdy_session_pool_->RequestSession(
kSessionKey, /* enable_ip_based_pooling = */ false,
/* is_websocket = */ false, NetLogWithSource(),
request_deleted_callback3.Callback(), &request_delegate3,
&spdy_session_request3, &is_first_request_for_session));
EXPECT_FALSE(is_first_request_for_session);
// Destroying the second request shouldn't cause anything to happen.
spdy_session_request2.reset();
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(request_deleted_callback1.invoked());
EXPECT_FALSE(request_deleted_callback2.invoked());
EXPECT_FALSE(request_deleted_callback3.invoked());
// But destroying the first request should cause the second and third
// callbacks to be invoked.
spdy_session_request1.reset();
request_deleted_callback2.WaitUntilInvoked();
request_deleted_callback3.WaitUntilInvoked();
EXPECT_FALSE(request_deleted_callback1.invoked());
// Nothing should happen when the third request is destroyed.
spdy_session_request3.reset();
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(request_deleted_callback1.invoked());
}
TEST_F(SpdySessionPoolTest, RequestSessionDuringNotification) {
const SpdySessionKey kSessionKey(
HostPortPair("foo.test", 443), PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination, SocketTag(),
NetworkAnonymizationKey(), SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
CreateNetworkSession();
// First request. Its request deleted callback should never be invoked.
TestOnRequestDeletedCallback request_deleted_callback1;
TestRequestDelegate request_delegate1;
std::unique_ptr<SpdySessionPool::SpdySessionRequest> spdy_session_request1;
bool is_first_request_for_session;
EXPECT_FALSE(spdy_session_pool_->RequestSession(
kSessionKey, /* enable_ip_based_pooling = */ false,
/* is_websocket = */ false, NetLogWithSource(),
request_deleted_callback1.Callback(), &request_delegate1,
&spdy_session_request1, &is_first_request_for_session));
EXPECT_TRUE(is_first_request_for_session);
// Second request.
TestOnRequestDeletedCallback request_deleted_callback2;
TestRequestDelegate request_delegate2;
std::unique_ptr<SpdySessionPool::SpdySessionRequest> spdy_session_request2;
EXPECT_FALSE(spdy_session_pool_->RequestSession(
kSessionKey, /* enable_ip_based_pooling = */ false,
/* is_websocket = */ false, NetLogWithSource(),
request_deleted_callback2.Callback(), &request_delegate2,
&spdy_session_request2, &is_first_request_for_session));
EXPECT_FALSE(is_first_request_for_session);
TestOnRequestDeletedCallback request_deleted_callback3;
TestRequestDelegate request_delegate3;
std::unique_ptr<SpdySessionPool::SpdySessionRequest> spdy_session_request3;
TestOnRequestDeletedCallback request_deleted_callback4;
TestRequestDelegate request_delegate4;
std::unique_ptr<SpdySessionPool::SpdySessionRequest> spdy_session_request4;
request_deleted_callback2.SetRequestDeletedCallback(
base::BindLambdaForTesting([&]() {
// Third request. It should again be marked as the first request for the
// session, since it's only created after the original two have been
// removed.
bool is_first_request_for_session;
EXPECT_FALSE(spdy_session_pool_->RequestSession(
kSessionKey, /* enable_ip_based_pooling = */ false,
/* is_websocket = */ false, NetLogWithSource(),
request_deleted_callback3.Callback(), &request_delegate3,
&spdy_session_request3, &is_first_request_for_session));
EXPECT_TRUE(is_first_request_for_session);
// Fourth request.
EXPECT_FALSE(spdy_session_pool_->RequestSession(
kSessionKey, /* enable_ip_based_pooling = */ false,
/* is_websocket = */ false, NetLogWithSource(),
request_deleted_callback4.Callback(), &request_delegate4,
&spdy_session_request4, &is_first_request_for_session));
EXPECT_FALSE(is_first_request_for_session);
}));
// Destroying the first request should cause the second callback to be
// invoked, and the third and fourth request to be made.
spdy_session_request1.reset();
request_deleted_callback2.WaitUntilInvoked();
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(request_deleted_callback1.invoked());
EXPECT_FALSE(request_deleted_callback3.invoked());
EXPECT_FALSE(request_deleted_callback4.invoked());
EXPECT_TRUE(spdy_session_request3);
EXPECT_TRUE(spdy_session_request4);
// Destroying the third request should cause the fourth callback to be
// invoked.
spdy_session_request3.reset();
request_deleted_callback4.WaitUntilInvoked();
EXPECT_FALSE(request_deleted_callback1.invoked());
EXPECT_FALSE(request_deleted_callback3.invoked());
}
static const char kSSLServerTestHost[] = "config-changed.test";
struct SSLServerTests {
const char* url;
const char* proxy_pac_string;
bool expect_invalidated;
};
constexpr auto kSSLServerTests = std::to_array<SSLServerTests>({
// If the host and port match, the session should be invalidated.
{"https://config-changed.test", "DIRECT", true},
// If host and port do not match, the session should not be invalidated.
{"https://mail.config-changed.test", "DIRECT", false},
{"https://config-changed.test:444", "DIRECT", false},
// If the proxy matches, the session should be invalidated independent of
// the host.
{"https://config-changed.test", "HTTPS config-changed.test:443", true},
{"https://mail.config-changed.test", "HTTPS config-changed.test:443", true},
// HTTP and SOCKS proxies do not have client certificates.
{"https://mail.config-changed.test", "PROXY config-changed.test:443",
false},
{"https://mail.config-changed.test", "SOCKS5 config-changed.test:443",
false},
// The proxy host and port must match.
{"https://mail.config-changed.test", "HTTPS mail.config-changed.test:443",
false},
{"https://mail.config-changed.test", "HTTPS config-changed.test:444",
false},
});
// Tests the OnSSLConfigForServersChanged() method matches SpdySessions as
// expected.
TEST_F(SpdySessionPoolTest, SSLConfigForServerChanged) {
const MockConnect connect_data(SYNCHRONOUS, OK);
const MockRead reads[] = {
MockRead(SYNCHRONOUS, ERR_IO_PENDING) // Stall forever.
};
std::vector<std::unique_ptr<StaticSocketDataProvider>> socket_data;
size_t num_tests = std::size(kSSLServerTests);
for (size_t i = 0; i < num_tests; i++) {
socket_data.push_back(std::make_unique<StaticSocketDataProvider>(
reads, base::span<MockWrite>()));
socket_data.back()->set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(
socket_data.back().get());
AddSSLSocketData();
}
CreateNetworkSession();
std::vector<base::WeakPtr<SpdySession>> sessions;
for (size_t i = 0; i < num_tests; i++) {
SpdySessionKey key(
HostPortPair::FromURL(GURL(kSSLServerTests[i].url)),
PRIVACY_MODE_DISABLED,
PacResultElementToProxyChain(kSSLServerTests[i].proxy_pac_string),
SessionUsage::kDestination, SocketTag(), NetworkAnonymizationKey(),
SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
sessions.push_back(
CreateSpdySession(http_session_.get(), key, NetLogWithSource()));
}
// All sessions are available.
for (size_t i = 0; i < num_tests; i++) {
SCOPED_TRACE(i);
EXPECT_TRUE(sessions[i]->IsAvailable());
}
spdy_session_pool_->OnSSLConfigForServersChanged(
{HostPortPair(kSSLServerTestHost, 443)});
base::RunLoop().RunUntilIdle();
// Sessions were inactive, so the unavailable sessions are closed.
for (size_t i = 0; i < num_tests; i++) {
SCOPED_TRACE(i);
if (kSSLServerTests[i].expect_invalidated) {
EXPECT_FALSE(sessions[i]);
} else {
ASSERT_TRUE(sessions[i]);
EXPECT_TRUE(sessions[i]->IsAvailable());
}
}
}
// Tests the OnSSLConfigForServersChanged() method matches SpdySessions
// containing proxy chains.
// TODO(crbug.com/365771838): Add tests for non-ip protection nested proxy
// chains if support is enabled for all builds.
TEST_F(SpdySessionPoolTest, SSLConfigForServerChangedWithProxyChain) {
const MockConnect connect_data(SYNCHRONOUS, OK);
const MockRead reads[] = {
MockRead(SYNCHRONOUS, ERR_IO_PENDING) // Stall forever.
};
auto proxy_chain = ProxyChain::ForIpProtection({
ProxyServer::FromSchemeHostAndPort(ProxyServer::Scheme::SCHEME_HTTPS,
"proxya", 443),
ProxyServer::FromSchemeHostAndPort(ProxyServer::Scheme::SCHEME_HTTPS,
"proxyb", 443),
ProxyServer::FromSchemeHostAndPort(ProxyServer::Scheme::SCHEME_HTTPS,
"proxyc", 443),
});
std::vector<std::unique_ptr<StaticSocketDataProvider>> socket_data;
socket_data.push_back(std::make_unique<StaticSocketDataProvider>(
reads, base::span<MockWrite>()));
socket_data.back()->set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(socket_data.back().get());
AddSSLSocketData();
CreateNetworkSession();
SpdySessionKey key(HostPortPair::FromURL(GURL("https://example.com")),
PRIVACY_MODE_DISABLED, proxy_chain,
SessionUsage::kDestination, SocketTag(),
NetworkAnonymizationKey(), SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
base::WeakPtr<SpdySession> session =
CreateSpdySession(http_session_.get(), key, NetLogWithSource());
EXPECT_TRUE(session->IsAvailable());
spdy_session_pool_->OnSSLConfigForServersChanged(
{HostPortPair("proxyb", 443)});
base::RunLoop().RunUntilIdle();
// The unavailable session is closed.
EXPECT_FALSE(session);
}
// Tests the OnSSLConfigForServersChanged() method when there are streams open.
TEST_F(SpdySessionPoolTest, SSLConfigForServerChangedWithStreams) {
// Set up a SpdySession with an active, created, and pending stream.
SpdyTestUtil spdy_util;
spdy::SettingsMap settings;
settings[spdy::SETTINGS_MAX_CONCURRENT_STREAMS] = 2;
spdy::SpdySerializedFrame settings_frame =
spdy_util.ConstructSpdySettings(settings);
spdy::SpdySerializedFrame settings_ack = spdy_util.ConstructSpdySettingsAck();
spdy::SpdySerializedFrame req(spdy_util.ConstructSpdyGet(
base::span<const std::string_view>(), 1, MEDIUM));
const MockConnect connect_data(SYNCHRONOUS, OK);
const MockRead reads[] = {
CreateMockRead(settings_frame),
MockRead(SYNCHRONOUS, ERR_IO_PENDING) // Stall forever.
};
const MockWrite writes[] = {
CreateMockWrite(settings_ack),
CreateMockWrite(req),
};
StaticSocketDataProvider socket_data(reads, writes);
socket_data.set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(&socket_data);
AddSSLSocketData();
CreateNetworkSession();
const GURL url(kDefaultUrl);
SpdySessionKey key(HostPortPair::FromURL(url), PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination,
SocketTag(), NetworkAnonymizationKey(),
SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
base::WeakPtr<SpdySession> session =
CreateSpdySession(http_session_.get(), key, NetLogWithSource());
// Pick up the SETTINGS frame to update SETTINGS_MAX_CONCURRENT_STREAMS.
base::RunLoop().RunUntilIdle();
EXPECT_EQ(2u, max_concurrent_streams(session));
// The first two stream requests should succeed.
base::WeakPtr<SpdyStream> active_stream = CreateStreamSynchronously(
SPDY_REQUEST_RESPONSE_STREAM, session, url, MEDIUM, NetLogWithSource());
test::StreamDelegateDoNothing active_stream_delegate(active_stream);
active_stream->SetDelegate(&active_stream_delegate);
base::WeakPtr<SpdyStream> created_stream = CreateStreamSynchronously(
SPDY_REQUEST_RESPONSE_STREAM, session, url, MEDIUM, NetLogWithSource());
test::StreamDelegateDoNothing created_stream_delegate(created_stream);
created_stream->SetDelegate(&created_stream_delegate);
// The third will block.
TestCompletionCallback callback;
SpdyStreamRequest stream_request;
EXPECT_THAT(
stream_request.StartRequest(SPDY_REQUEST_RESPONSE_STREAM, session, url,
/*can_send_early=*/false, MEDIUM, SocketTag(),
NetLogWithSource(), callback.callback(),
TRAFFIC_ANNOTATION_FOR_TESTS),
IsError(ERR_IO_PENDING));
// Activate the first stream by sending data.
quiche::HttpHeaderBlock headers(
spdy_util.ConstructGetHeaderBlock(url.spec()));
active_stream->SendRequestHeaders(std::move(headers), NO_MORE_DATA_TO_SEND);
base::RunLoop().RunUntilIdle();
// The active stream should now have a stream ID.
EXPECT_EQ(1u, active_stream->stream_id());
EXPECT_EQ(spdy::kInvalidStreamId, created_stream->stream_id());
EXPECT_TRUE(session->is_active());
EXPECT_TRUE(session->IsAvailable());
spdy_session_pool_->OnSSLConfigForServersChanged(
{HostPortPair::FromURL(url)});
base::RunLoop().RunUntilIdle();
// The active stream is still alive, so the session is still active.
ASSERT_TRUE(session);
EXPECT_TRUE(session->is_active());
ASSERT_TRUE(active_stream);
// The session is no longer available.
EXPECT_FALSE(session->IsAvailable());
EXPECT_TRUE(session->IsGoingAway());
// The pending and created stream are cancelled.
// TODO(crbug.com/40768859): Ideally, this would be recoverable.
EXPECT_THAT(callback.WaitForResult(), IsError(ERR_NETWORK_CHANGED));
EXPECT_THAT(created_stream_delegate.WaitForClose(),
IsError(ERR_NETWORK_CHANGED));
// Close the active stream.
active_stream->Close();
// TODO(crbug.com/41469912): The invalidated session should be closed
// after a RunUntilIdle(), but it is not.
}
// Tests the OnSSLConfigForServersChanged() method when there only pending
// streams active.
TEST_F(SpdySessionPoolTest, SSLConfigForServerChangedWithOnlyPendingStreams) {
// Set up a SpdySession that accepts no streams.
SpdyTestUtil spdy_util;
spdy::SettingsMap settings;
settings[spdy::SETTINGS_MAX_CONCURRENT_STREAMS] = 0;
spdy::SpdySerializedFrame settings_frame =
spdy_util.ConstructSpdySettings(settings);
spdy::SpdySerializedFrame settings_ack = spdy_util.ConstructSpdySettingsAck();
const MockConnect connect_data(SYNCHRONOUS, OK);
const MockRead reads[] = {
CreateMockRead(settings_frame),
MockRead(SYNCHRONOUS, ERR_IO_PENDING) // Stall forever.
};
const MockWrite writes[] = {
CreateMockWrite(settings_ack),
};
StaticSocketDataProvider socket_data(reads, writes);
socket_data.set_connect_data(connect_data);
session_deps_.socket_factory->AddSocketDataProvider(&socket_data);
AddSSLSocketData();
CreateNetworkSession();
const GURL url(kDefaultUrl);
SpdySessionKey key(HostPortPair::FromURL(url), PRIVACY_MODE_DISABLED,
ProxyChain::Direct(), SessionUsage::kDestination,
SocketTag(), NetworkAnonymizationKey(),
SecureDnsPolicy::kAllow,
/*disable_cert_verification_network_fetches=*/false);
base::WeakPtr<SpdySession> session =
CreateSpdySession(http_session_.get(), key, NetLogWithSource());
// Pick up the SETTINGS frame to update SETTINGS_MAX_CONCURRENT_STREAMS.
base::RunLoop().RunUntilIdle();
EXPECT_EQ(0u, max_concurrent_streams(session));
// Create a stream. It should block on the stream limit.
TestCompletionCallback callback;
SpdyStreamRequest stream_request;
ASSERT_THAT(
stream_request.StartRequest(SPDY_REQUEST_RESPONSE_STREAM, session, url,
/*can_send_early=*/false, MEDIUM, SocketTag(),
NetLogWithSource(), callback.callback(),
TRAFFIC_ANNOTATION_FOR_TESTS),
IsError(ERR_IO_PENDING));
spdy_session_pool_->OnSSLConfigForServersChanged(
{HostPortPair::FromURL(url)});
base::RunLoop().RunUntilIdle();
// The pending stream is cancelled.
// TODO(crbug.com/40768859): Ideally, this would be recoverable.
EXPECT_THAT(callback.WaitForResult(), IsError(ERR_NETWORK_CHANGED));
EXPECT_FALSE(session);
}
} // namespace net
|