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
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <string>
#include <string_view>
#include <utility>
#include <vector>
#include "base/containers/span.h"
#include "base/run_loop.h"
#include "base/strings/stringprintf.h"
#include "base/test/bind.h"
#include "base/test/task_environment.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "mojo/public/cpp/system/data_pipe_utils.h"
#include "net/base/net_errors.h"
#include "net/base/network_isolation_key.h"
#include "net/base/test_completion_callback.h"
#include "net/dns/mock_host_resolver.h"
#include "net/proxy_resolution/configured_proxy_resolution_service.h"
#include "net/socket/socket_test_util.h"
#include "net/traffic_annotation/network_traffic_annotation_test_helper.h"
#include "net/url_request/url_request_context_builder.h"
#include "net/url_request/url_request_test_util.h"
#include "services/network/mojo_socket_test_util.h"
#include "services/network/proxy_resolving_socket_factory_mojo.h"
#include "services/network/proxy_resolving_socket_mojo.h"
#include "services/network/socket_factory.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace network {
class ProxyResolvingSocketTestBase {
public:
ProxyResolvingSocketTestBase(bool use_tls)
: use_tls_(use_tls),
task_environment_(base::test::TaskEnvironment::MainThreadType::IO) {}
ProxyResolvingSocketTestBase(const ProxyResolvingSocketTestBase&) = delete;
ProxyResolvingSocketTestBase& operator=(const ProxyResolvingSocketTestBase&) =
delete;
~ProxyResolvingSocketTestBase() {}
void Init(const std::string& pac_result) {
// Init() can be called multiple times in a test. Reset the members for each
// invocation. `context_` must outlive `factory_impl_`, which uses the
// URLRequestContext.
factory_receiver_ = nullptr;
factory_impl_ = nullptr;
factory_remote_.reset();
context_ = nullptr;
mock_client_socket_factory_ =
std::make_unique<net::MockClientSocketFactory>();
mock_client_socket_factory_->set_enable_read_if_ready(true);
auto context_builder = net::CreateTestURLRequestContextBuilder();
context_builder->set_proxy_resolution_service(
net::ConfiguredProxyResolutionService::CreateFixedFromPacResultForTest(
pac_result, TRAFFIC_ANNOTATION_FOR_TESTS));
context_builder->set_client_socket_factory_for_testing(
mock_client_socket_factory_.get());
context_ = context_builder->Build();
factory_impl_ =
std::make_unique<ProxyResolvingSocketFactoryMojo>(context_.get());
factory_receiver_ =
std::make_unique<mojo::Receiver<mojom::ProxyResolvingSocketFactory>>(
factory_impl_.get(), factory_remote_.BindNewPipeAndPassReceiver());
}
// Reads |num_bytes| from |handle| or reads until an error occurs. Returns the
// bytes read as a string.
std::string Read(mojo::ScopedDataPipeConsumerHandle* handle,
size_t num_bytes) {
std::string received_contents;
while (received_contents.size() < num_bytes) {
base::RunLoop().RunUntilIdle();
std::string buffer(num_bytes - received_contents.size(), '\0');
size_t actually_read_bytes = 0;
MojoResult result = handle->get().ReadData(
MOJO_READ_DATA_FLAG_NONE, base::as_writable_byte_span(buffer),
actually_read_bytes);
if (result == MOJO_RESULT_SHOULD_WAIT)
continue;
if (result != MOJO_RESULT_OK)
return received_contents;
received_contents.append(
std::string_view(buffer).substr(0, actually_read_bytes));
}
return received_contents;
}
int CreateSocketSync(
mojo::PendingReceiver<mojom::ProxyResolvingSocket> receiver,
mojo::PendingRemote<mojom::SocketObserver> socket_observer,
net::IPEndPoint* peer_addr_out,
const GURL& url,
mojo::ScopedDataPipeConsumerHandle* receive_pipe_handle_out,
mojo::ScopedDataPipeProducerHandle* send_pipe_handle_out) {
base::RunLoop run_loop;
int net_error = net::ERR_FAILED;
network::mojom::ProxyResolvingSocketOptionsPtr options =
network::mojom::ProxyResolvingSocketOptions::New();
options->use_tls = use_tls_;
factory_remote_->CreateProxyResolvingSocket(
url, net::NetworkAnonymizationKey(), std::move(options),
net::MutableNetworkTrafficAnnotationTag(TRAFFIC_ANNOTATION_FOR_TESTS),
std::move(receiver), std::move(socket_observer),
base::BindLambdaForTesting(
[&](int result, const std::optional<net::IPEndPoint>& local_addr,
const std::optional<net::IPEndPoint>& peer_addr,
mojo::ScopedDataPipeConsumerHandle receive_pipe_handle,
mojo::ScopedDataPipeProducerHandle send_pipe_handle) {
net_error = result;
if (net_error == net::OK)
EXPECT_NE(0, local_addr.value().port());
if (peer_addr_out && peer_addr)
*peer_addr_out = peer_addr.value();
*receive_pipe_handle_out = std::move(receive_pipe_handle);
*send_pipe_handle_out = std::move(send_pipe_handle);
run_loop.Quit();
}));
run_loop.Run();
return net_error;
}
net::MockClientSocketFactory* mock_client_socket_factory() {
return mock_client_socket_factory_.get();
}
bool use_tls() const { return use_tls_; }
mojom::ProxyResolvingSocketFactory* factory() {
return factory_remote_.get();
}
private:
const bool use_tls_;
base::test::TaskEnvironment task_environment_;
std::unique_ptr<net::MockClientSocketFactory> mock_client_socket_factory_;
std::unique_ptr<net::URLRequestContext> context_;
mojo::Remote<mojom::ProxyResolvingSocketFactory> factory_remote_;
std::unique_ptr<mojo::Receiver<mojom::ProxyResolvingSocketFactory>>
factory_receiver_;
std::unique_ptr<ProxyResolvingSocketFactoryMojo> factory_impl_;
};
class ProxyResolvingSocketTest : public ProxyResolvingSocketTestBase,
public testing::TestWithParam<bool> {
public:
ProxyResolvingSocketTest() : ProxyResolvingSocketTestBase(GetParam()) {}
ProxyResolvingSocketTest(const ProxyResolvingSocketTest&) = delete;
ProxyResolvingSocketTest& operator=(const ProxyResolvingSocketTest&) = delete;
~ProxyResolvingSocketTest() override {}
};
INSTANTIATE_TEST_SUITE_P(All,
ProxyResolvingSocketTest,
::testing::Bool());
// Tests that the connection is established to the proxy.
TEST_P(ProxyResolvingSocketTest, ConnectToProxy) {
const GURL kDestination("https://example.com:443");
const int kProxyPort = 8009;
const int kDirectPort = 443;
for (bool is_direct : {true, false}) {
net::MockClientSocketFactory socket_factory;
std::unique_ptr<net::URLRequestContext> context;
if (is_direct) {
Init("DIRECT");
} else {
Init(base::StringPrintf("PROXY myproxy.com:%d", kProxyPort));
}
// Note that this read is not consumed when |!is_direct|.
net::MockRead reads[] = {net::MockRead("HTTP/1.1 200 Success\r\n\r\n"),
net::MockRead(net::ASYNC, net::OK)};
// Note that this write is not consumed when |is_direct|.
net::MockWrite writes[] = {
net::MockWrite("CONNECT example.com:443 HTTP/1.1\r\n"
"Host: example.com:443\r\n"
"Proxy-Connection: keep-alive\r\n\r\n")};
net::SSLSocketDataProvider ssl_socket(net::ASYNC, net::OK);
mock_client_socket_factory()->AddSSLSocketDataProvider(&ssl_socket);
net::StaticSocketDataProvider socket_data(reads, writes);
net::IPEndPoint remote_addr(net::IPAddress(127, 0, 0, 1),
is_direct ? kDirectPort : kProxyPort);
socket_data.set_connect_data(
net::MockConnect(net::ASYNC, net::OK, remote_addr));
mock_client_socket_factory()->AddSocketDataProvider(&socket_data);
mojo::PendingRemote<mojom::ProxyResolvingSocket> socket;
mojo::ScopedDataPipeConsumerHandle client_socket_receive_handle;
mojo::ScopedDataPipeProducerHandle client_socket_send_handle;
net::IPEndPoint actual_remote_addr;
EXPECT_EQ(net::OK, CreateSocketSync(socket.InitWithNewPipeAndPassReceiver(),
mojo::NullRemote() /* socket_observer*/,
&actual_remote_addr, kDestination,
&client_socket_receive_handle,
&client_socket_send_handle));
// Consume all read data.
base::RunLoop().RunUntilIdle();
if (!is_direct) {
EXPECT_EQ(net::IPEndPoint(), actual_remote_addr);
EXPECT_TRUE(socket_data.AllReadDataConsumed());
EXPECT_TRUE(socket_data.AllWriteDataConsumed());
} else {
EXPECT_EQ(remote_addr.ToString(), actual_remote_addr.ToString());
EXPECT_TRUE(socket_data.AllReadDataConsumed());
EXPECT_FALSE(socket_data.AllWriteDataConsumed());
}
EXPECT_EQ(use_tls(), ssl_socket.ConnectDataConsumed());
}
}
TEST_P(ProxyResolvingSocketTest, ConnectError) {
const struct TestData {
// Whether the error is encountered synchronously as opposed to
// asynchronously.
bool is_error_sync;
// Whether it is using a direct connection as opposed to a proxy connection.
bool is_direct;
} kTestCases[] = {
{true, true}, {true, false}, {false, true}, {false, false},
};
const GURL kDestination("https://example.com:443");
for (auto test : kTestCases) {
std::unique_ptr<net::URLRequestContext> context;
if (test.is_direct) {
Init("DIRECT");
} else {
Init("PROXY myproxy.com:89");
}
net::StaticSocketDataProvider socket_data;
socket_data.set_connect_data(net::MockConnect(
test.is_error_sync ? net::SYNCHRONOUS : net::ASYNC, net::ERR_FAILED));
mock_client_socket_factory()->AddSocketDataProvider(&socket_data);
mojo::PendingRemote<mojom::ProxyResolvingSocket> socket;
mojo::ScopedDataPipeConsumerHandle client_socket_receive_handle;
mojo::ScopedDataPipeProducerHandle client_socket_send_handle;
int status = CreateSocketSync(socket.InitWithNewPipeAndPassReceiver(),
mojo::NullRemote() /* socket_observer*/,
nullptr /* peer_addr_out */, kDestination,
&client_socket_receive_handle,
&client_socket_send_handle);
if (test.is_direct) {
EXPECT_EQ(net::ERR_FAILED, status);
} else {
EXPECT_EQ(net::ERR_PROXY_CONNECTION_FAILED, status);
}
EXPECT_TRUE(socket_data.AllReadDataConsumed());
EXPECT_TRUE(socket_data.AllWriteDataConsumed());
}
}
// Tests writing to and reading from a mojom::ProxyResolvingSocket.
TEST_P(ProxyResolvingSocketTest, BasicReadWrite) {
Init("DIRECT");
mojo::PendingRemote<mojom::ProxyResolvingSocket> socket;
constexpr std::string_view kTestMsg = "abcdefghij";
constexpr size_t kMsgSize = kTestMsg.size();
constexpr int kNumIterations = 3;
std::vector<net::MockRead> reads;
std::vector<net::MockWrite> writes;
int sequence_number = 0;
for (int j = 0; j < kNumIterations; ++j) {
for (size_t i = 0; i < kMsgSize; ++i) {
reads.emplace_back(net::ASYNC, sequence_number++, kTestMsg.substr(i, 1));
}
if (j == kNumIterations - 1) {
reads.emplace_back(net::ASYNC, net::OK, sequence_number++);
}
for (size_t i = 0; i < kMsgSize; ++i) {
writes.emplace_back(net::ASYNC, sequence_number++, kTestMsg.substr(i, 1));
}
}
net::StaticSocketDataProvider data_provider(reads, writes);
data_provider.set_connect_data(net::MockConnect(net::SYNCHRONOUS, net::OK));
mock_client_socket_factory()->AddSocketDataProvider(&data_provider);
net::SSLSocketDataProvider ssl_data(net::ASYNC, net::OK);
mock_client_socket_factory()->AddSSLSocketDataProvider(&ssl_data);
mojo::ScopedDataPipeConsumerHandle client_socket_receive_handle;
mojo::ScopedDataPipeProducerHandle client_socket_send_handle;
const GURL kDestination("http://example.com");
EXPECT_EQ(net::OK, CreateSocketSync(socket.InitWithNewPipeAndPassReceiver(),
mojo::NullRemote() /* socket_observer */,
nullptr /* peer_addr_out */, kDestination,
&client_socket_receive_handle,
&client_socket_send_handle));
// Loop kNumIterations times to test that writes can follow reads, and reads
// can follow writes.
for (int j = 0; j < kNumIterations; ++j) {
// Reading kMsgSize should coalesce the 1-byte mock reads.
EXPECT_EQ(kTestMsg, Read(&client_socket_receive_handle, kMsgSize));
// Write multiple times.
for (size_t i = 0; i < kMsgSize; ++i) {
size_t actually_written_bytes = 0;
EXPECT_EQ(MOJO_RESULT_OK,
client_socket_send_handle->WriteData(
base::as_byte_span(kTestMsg).subspan(i, 1u),
MOJO_WRITE_DATA_FLAG_NONE, actually_written_bytes));
// Flush the 1 byte write.
base::RunLoop().RunUntilIdle();
}
}
EXPECT_TRUE(data_provider.AllReadDataConsumed());
EXPECT_TRUE(data_provider.AllWriteDataConsumed());
EXPECT_EQ(use_tls(), ssl_data.ConnectDataConsumed());
}
// Tests that exercise logic related to mojo.
class ProxyResolvingSocketMojoTest : public ProxyResolvingSocketTestBase,
public testing::Test {
public:
ProxyResolvingSocketMojoTest() : ProxyResolvingSocketTestBase(false) {}
ProxyResolvingSocketMojoTest(const ProxyResolvingSocketMojoTest&) = delete;
ProxyResolvingSocketMojoTest& operator=(const ProxyResolvingSocketMojoTest&) =
delete;
~ProxyResolvingSocketMojoTest() override {}
};
// Tests that when ProxyResolvingSocket remote is destroyed but not the
// ProxyResolvingSocketFactory, the connect callback is not dropped.
// Regression test for https://crbug.com/862608.
TEST_F(ProxyResolvingSocketMojoTest, SocketDestroyedBeforeConnectCompletes) {
Init("DIRECT");
std::vector<net::MockRead> reads;
std::vector<net::MockWrite> writes;
net::StaticSocketDataProvider data_provider(reads, writes);
data_provider.set_connect_data(net::MockConnect(net::ASYNC, net::OK));
mock_client_socket_factory()->AddSocketDataProvider(&data_provider);
const GURL kDestination("http://example.com");
mojo::PendingRemote<mojom::ProxyResolvingSocket> socket;
base::RunLoop run_loop;
int net_error = net::OK;
factory()->CreateProxyResolvingSocket(
kDestination, net::NetworkAnonymizationKey(), nullptr,
net::MutableNetworkTrafficAnnotationTag(TRAFFIC_ANNOTATION_FOR_TESTS),
socket.InitWithNewPipeAndPassReceiver(),
mojo::NullRemote() /* observer */,
base::BindLambdaForTesting(
[&](int result, const std::optional<net::IPEndPoint>& local_addr,
const std::optional<net::IPEndPoint>& peer_addr,
mojo::ScopedDataPipeConsumerHandle receive_pipe_handle,
mojo::ScopedDataPipeProducerHandle send_pipe_handle) {
net_error = result;
}));
socket.reset();
base::RunLoop().RunUntilIdle();
EXPECT_EQ(net::ERR_ABORTED, net_error);
}
TEST_F(ProxyResolvingSocketMojoTest, SocketObserver) {
Init("DIRECT");
const char kMsg[] = "message!";
const char kMsgLen = strlen(kMsg);
std::vector<net::MockRead> reads = {
net::MockRead(kMsg),
net::MockRead(net::ASYNC, net::ERR_CONNECTION_ABORTED)};
std::vector<net::MockWrite> writes = {
net::MockWrite(net::ASYNC, net::ERR_TIMED_OUT)};
net::StaticSocketDataProvider data_provider(reads, writes);
data_provider.set_connect_data(net::MockConnect(net::ASYNC, net::OK));
mock_client_socket_factory()->AddSocketDataProvider(&data_provider);
const GURL kDestination("http://example.com");
mojo::PendingRemote<mojom::ProxyResolvingSocket> socket;
mojo::ScopedDataPipeConsumerHandle client_socket_receive_handle;
mojo::ScopedDataPipeProducerHandle client_socket_send_handle;
TestSocketObserver test_observer;
int status = CreateSocketSync(
socket.InitWithNewPipeAndPassReceiver(),
test_observer.GetObserverRemote(), nullptr /* peer_addr_out */,
kDestination, &client_socket_receive_handle, &client_socket_send_handle);
EXPECT_EQ(net::OK, status);
EXPECT_EQ(kMsg, Read(&client_socket_receive_handle, kMsgLen));
EXPECT_EQ(net::ERR_CONNECTION_ABORTED, test_observer.WaitForReadError());
EXPECT_TRUE(mojo::BlockingCopyFromString(kMsg, client_socket_send_handle));
EXPECT_EQ(net::ERR_TIMED_OUT, test_observer.WaitForWriteError());
EXPECT_TRUE(data_provider.AllReadDataConsumed());
EXPECT_TRUE(data_provider.AllWriteDataConsumed());
}
} // namespace network
|