2018-01-20 20:15:45 +03:00
|
|
|
// Copyright 2018 The Chromium Authors. All rights reserved.
|
|
|
|
// Copyright 2018 klzgrad <kizdiv@gmail.com>. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "net/tools/naive/naive_connection.h"
|
|
|
|
|
2018-12-08 08:51:40 +03:00
|
|
|
#include <cstring>
|
2018-01-20 20:15:45 +03:00
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
#include "base/bind.h"
|
|
|
|
#include "base/callback_helpers.h"
|
|
|
|
#include "base/logging.h"
|
2018-12-08 08:51:40 +03:00
|
|
|
#include "base/rand_util.h"
|
2018-01-20 20:15:45 +03:00
|
|
|
#include "net/base/io_buffer.h"
|
|
|
|
#include "net/base/net_errors.h"
|
|
|
|
#include "net/base/privacy_mode.h"
|
|
|
|
#include "net/http/http_network_session.h"
|
|
|
|
#include "net/proxy_resolution/proxy_config.h"
|
|
|
|
#include "net/proxy_resolution/proxy_info.h"
|
|
|
|
#include "net/proxy_resolution/proxy_list.h"
|
|
|
|
#include "net/proxy_resolution/proxy_resolution_service.h"
|
|
|
|
#include "net/socket/client_socket_handle.h"
|
|
|
|
#include "net/socket/client_socket_pool_manager.h"
|
|
|
|
#include "net/socket/stream_socket.h"
|
|
|
|
#include "net/spdy/spdy_session.h"
|
|
|
|
|
|
|
|
namespace net {
|
|
|
|
|
|
|
|
namespace {
|
2018-12-08 08:51:40 +03:00
|
|
|
constexpr int kBufferSize = 64 * 1024;
|
|
|
|
constexpr int kFirstPaddings = 4;
|
|
|
|
constexpr int kPaddingHeaderSize = 3;
|
|
|
|
constexpr int kMaxPaddingSize = 255;
|
2018-01-20 20:15:45 +03:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
NaiveConnection::NaiveConnection(
|
|
|
|
unsigned int id,
|
2018-12-27 17:28:26 +03:00
|
|
|
Protocol protocol,
|
|
|
|
bool use_proxy,
|
2018-12-08 08:51:40 +03:00
|
|
|
Direction pad_direction,
|
2018-01-20 20:15:45 +03:00
|
|
|
std::unique_ptr<StreamSocket> accepted_socket,
|
|
|
|
const NetworkTrafficAnnotationTag& traffic_annotation)
|
|
|
|
: id_(id),
|
2018-12-27 17:28:26 +03:00
|
|
|
protocol_(protocol),
|
|
|
|
use_proxy_(use_proxy),
|
2018-12-08 08:51:40 +03:00
|
|
|
pad_direction_(pad_direction),
|
2018-01-20 20:15:45 +03:00
|
|
|
next_state_(STATE_NONE),
|
|
|
|
client_socket_(std::move(accepted_socket)),
|
|
|
|
server_socket_handle_(std::make_unique<ClientSocketHandle>()),
|
|
|
|
sockets_{client_socket_.get(), nullptr},
|
|
|
|
errors_{OK, OK},
|
|
|
|
write_pending_{false, false},
|
|
|
|
early_pull_pending_(false),
|
|
|
|
can_push_to_server_(false),
|
|
|
|
early_pull_result_(ERR_IO_PENDING),
|
2018-12-08 08:51:40 +03:00
|
|
|
num_paddings_{0, 0},
|
|
|
|
read_padding_state_(STATE_READ_PAYLOAD_LENGTH_1),
|
2018-01-20 20:15:45 +03:00
|
|
|
full_duplex_(false),
|
|
|
|
time_func_(&base::TimeTicks::Now),
|
|
|
|
traffic_annotation_(traffic_annotation),
|
|
|
|
weak_ptr_factory_(this) {
|
|
|
|
io_callback_ = base::BindRepeating(&NaiveConnection::OnIOComplete,
|
|
|
|
weak_ptr_factory_.GetWeakPtr());
|
|
|
|
}
|
|
|
|
|
2018-12-27 17:28:26 +03:00
|
|
|
NaiveConnection::NaiveConnection(
|
|
|
|
unsigned int id,
|
|
|
|
Direction pad_direction,
|
|
|
|
quic::QuicNaiveServerStream* quic_stream,
|
|
|
|
const quic::QuicHeaderList& quic_headers,
|
|
|
|
const NetworkTrafficAnnotationTag& traffic_annotation)
|
|
|
|
: id_(id),
|
|
|
|
protocol_(kQuic),
|
|
|
|
use_proxy_(false),
|
|
|
|
pad_direction_(kNone),
|
|
|
|
next_state_(STATE_NONE),
|
|
|
|
client_socket_(nullptr),
|
|
|
|
client_quic_stream_(stream),
|
|
|
|
client_quic_headers_(client_quic_headers),
|
|
|
|
server_socket_handle_(std::make_unique<ClientSocketHandle>()),
|
|
|
|
sockets_{nullptr, nullptr},
|
|
|
|
errors_{OK, OK},
|
|
|
|
write_pending_{false, false},
|
|
|
|
early_pull_pending_(false),
|
|
|
|
can_push_to_server_(false),
|
|
|
|
early_pull_result_(ERR_IO_PENDING),
|
|
|
|
num_paddings_{0, 0},
|
|
|
|
read_padding_state_(STATE_READ_PAYLOAD_LENGTH_1),
|
|
|
|
full_duplex_(false),
|
|
|
|
time_func_(&base::TimeTicks::Now),
|
|
|
|
traffic_annotation_(traffic_annotation),
|
|
|
|
weak_ptr_factory_(this) {}
|
|
|
|
|
2018-01-20 20:15:45 +03:00
|
|
|
NaiveConnection::~NaiveConnection() {
|
|
|
|
Disconnect();
|
|
|
|
}
|
|
|
|
|
|
|
|
int NaiveConnection::Connect(CompletionOnceCallback callback) {
|
2018-12-27 17:28:26 +03:00
|
|
|
DCHECK(client_socket_ || protocol == kQuic);
|
2018-01-20 20:15:45 +03:00
|
|
|
DCHECK_EQ(next_state_, STATE_NONE);
|
|
|
|
DCHECK(!connect_callback_);
|
|
|
|
|
|
|
|
if (full_duplex_)
|
|
|
|
return OK;
|
|
|
|
|
2018-12-27 17:28:26 +03:00
|
|
|
if (protocol_ != kQuic) {
|
|
|
|
next_state_ = STATE_CONNECT_CLIENT;
|
|
|
|
} else {
|
|
|
|
next_state_ = STATE_CONNECT_SERVER;
|
|
|
|
}
|
2018-01-20 20:15:45 +03:00
|
|
|
|
|
|
|
int rv = DoLoop(OK);
|
|
|
|
if (rv == ERR_IO_PENDING) {
|
|
|
|
connect_callback_ = std::move(callback);
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2018-12-27 17:28:26 +03:00
|
|
|
void NaiveConnection::OnReadData() {
|
|
|
|
DCHECK_EQ(protocol_, kQuic);
|
|
|
|
if (!client_quic_stream_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void NaiveConnection::OnDeleteStream() {
|
|
|
|
DCHECK_EQ(protocol_, kQuic);
|
|
|
|
client_quic_stream_ = nullptr;
|
|
|
|
}
|
|
|
|
|
2018-01-20 20:15:45 +03:00
|
|
|
void NaiveConnection::Disconnect() {
|
|
|
|
full_duplex_ = false;
|
|
|
|
// Closes server side first because latency is higher.
|
|
|
|
if (server_socket_handle_->socket())
|
|
|
|
server_socket_handle_->socket()->Disconnect();
|
2018-12-27 17:28:26 +03:00
|
|
|
if (protocol_ != kQuic) {
|
|
|
|
client_socket_->Disconnect();
|
|
|
|
} else if (client_quic_stream_) {
|
|
|
|
client_quic_stream_->Reset(quic::QUIC_STREAM_NO_ERROR);
|
|
|
|
client_quic_stream_ = nullptr;
|
|
|
|
}
|
2018-01-20 20:15:45 +03:00
|
|
|
|
|
|
|
next_state_ = STATE_NONE;
|
|
|
|
connect_callback_.Reset();
|
|
|
|
run_callback_.Reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NaiveConnection::DoCallback(int result) {
|
|
|
|
DCHECK_NE(result, ERR_IO_PENDING);
|
|
|
|
DCHECK(connect_callback_);
|
|
|
|
|
|
|
|
// Since Run() may result in Read being called,
|
|
|
|
// clear connect_callback_ up front.
|
|
|
|
std::move(connect_callback_).Run(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NaiveConnection::OnIOComplete(int result) {
|
|
|
|
DCHECK_NE(next_state_, STATE_NONE);
|
|
|
|
int rv = DoLoop(result);
|
|
|
|
if (rv != ERR_IO_PENDING) {
|
|
|
|
DoCallback(rv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int NaiveConnection::DoLoop(int last_io_result) {
|
|
|
|
DCHECK_NE(next_state_, STATE_NONE);
|
|
|
|
int rv = last_io_result;
|
|
|
|
do {
|
|
|
|
State state = next_state_;
|
|
|
|
next_state_ = STATE_NONE;
|
|
|
|
switch (state) {
|
|
|
|
case STATE_CONNECT_CLIENT:
|
|
|
|
DCHECK_EQ(rv, OK);
|
|
|
|
rv = DoConnectClient();
|
|
|
|
break;
|
|
|
|
case STATE_CONNECT_CLIENT_COMPLETE:
|
|
|
|
rv = DoConnectClientComplete(rv);
|
|
|
|
break;
|
|
|
|
case STATE_CONNECT_SERVER:
|
|
|
|
DCHECK_EQ(rv, OK);
|
|
|
|
rv = DoConnectServer();
|
|
|
|
break;
|
|
|
|
case STATE_CONNECT_SERVER_COMPLETE:
|
|
|
|
rv = DoConnectServerComplete(rv);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
NOTREACHED() << "bad state";
|
|
|
|
rv = ERR_UNEXPECTED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (rv != ERR_IO_PENDING && next_state_ != STATE_NONE);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
int NaiveConnection::DoConnectClient() {
|
|
|
|
next_state_ = STATE_CONNECT_CLIENT_COMPLETE;
|
|
|
|
|
|
|
|
return client_socket_->Connect(io_callback_);
|
|
|
|
}
|
|
|
|
|
|
|
|
int NaiveConnection::DoConnectClientComplete(int result) {
|
|
|
|
if (result < 0)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
early_pull_pending_ = true;
|
|
|
|
Pull(kClient, kServer);
|
|
|
|
if (early_pull_result_ != ERR_IO_PENDING) {
|
|
|
|
// Pull has completed synchronously.
|
|
|
|
if (early_pull_result_ <= 0) {
|
|
|
|
return early_pull_result_ ? early_pull_result_ : ERR_CONNECTION_CLOSED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
next_state_ = STATE_CONNECT_SERVER;
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int NaiveConnection::DoConnectServer() {
|
|
|
|
next_state_ = STATE_CONNECT_SERVER_COMPLETE;
|
|
|
|
|
2018-12-27 17:28:26 +03:00
|
|
|
// Ignores socket limit set by socket pool for this type of socket.
|
|
|
|
constexpr int request_load_flags = LOAD_IGNORE_LIMITS;
|
|
|
|
constexpr RequestPriority request_priority = MAXIMUM_PRIORITY;
|
|
|
|
|
|
|
|
ProxyInfo proxy_info;
|
|
|
|
SSLConfig server_ssl_config;
|
|
|
|
SSLConfig proxy_ssl_config;
|
|
|
|
|
|
|
|
if (use_proxy_) {
|
|
|
|
const auto& proxy_config = session_->proxy_resolution_service()->config();
|
|
|
|
DCHECK(proxy_config);
|
|
|
|
const ProxyList& proxy_list =
|
|
|
|
proxy_config.value().value().proxy_rules().single_proxies;
|
|
|
|
if (proxy_list.IsEmpty())
|
|
|
|
return ERR_MANDATORY_PROXY_CONFIGURATION_FAILED;
|
|
|
|
proxy_info.UseProxyList(proxy_list);
|
|
|
|
proxy_info.set_traffic_annotation(
|
|
|
|
net::MutableNetworkTrafficAnnotationTag(traffic_annotation_));
|
|
|
|
|
|
|
|
HttpRequestInfo req_info;
|
|
|
|
session_->GetSSLConfig(req_info, &server_ssl_config, &proxy_ssl_config);
|
|
|
|
proxy_ssl_config.disable_cert_verification_network_fetches = true;
|
|
|
|
} else {
|
|
|
|
proxy_info.UseDirect();
|
|
|
|
}
|
|
|
|
|
|
|
|
HostPortPair request_endpoint;
|
|
|
|
if (protocol_ == kSocks5) {
|
|
|
|
const auto* socket = static_cast<const Socks5ServerSocket*>(client_socket_.get());
|
|
|
|
request_endpoint = socket->request_endpoint();
|
|
|
|
} else if (protocol_ == kHttp) {
|
|
|
|
const auto* socket = static_cast<const HttpProxySocket*>(client_socket_.get());
|
|
|
|
request_endpoint = socket->request_endpoint();
|
|
|
|
} else if (protocol_ == kQuic) {
|
|
|
|
// client_quic_headers is cleared after OnReadHeaders.
|
|
|
|
// This function is synchronous inside NaiveProxy::OnReadHeaders so
|
|
|
|
// client_quic_headers is ok to be a reference.
|
|
|
|
for (const auto& p : client_quic_headers) {
|
|
|
|
const auto& name = p.first;
|
|
|
|
const auto& value = p.second;
|
|
|
|
if (name == ":method" && value != "CONNECT") {
|
|
|
|
LOG(ERROR) << "Connection " << id_ << " method not supported " << value;
|
|
|
|
return ERR_METHOD_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
if (name == ":authority") {
|
|
|
|
request_endpoint = HostPortPair::FromString(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
spdy::SpdyHeaderBlock headers;
|
|
|
|
headers[":status"] = "200";
|
|
|
|
client_quic_stream_->WriteHeaders(std::move(headers), /*fin=*/false, nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (request_endpoint.IsEmpty()) {
|
|
|
|
LOG(ERROR) << "Connection " << id_ << " to invalid origin";
|
|
|
|
return ERR_ADDRESS_INVALID;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG(INFO) << "Connection " << id_ << " to "
|
|
|
|
<< request_endpoint.ToString();
|
|
|
|
|
|
|
|
auto quic_version = quic::QUIC_VERSION_UNSUPPORTED;
|
|
|
|
if (proxy_info.is_quic()) {
|
|
|
|
quic_version = quic::QUIC_VERSION_43;
|
|
|
|
}
|
|
|
|
|
|
|
|
return InitSocketHandleForRawConnect2(
|
|
|
|
request_endpoint, session_, request_load_flags, request_priority,
|
|
|
|
proxy_info, quic_version, server_ssl_config, proxy_ssl_config,
|
|
|
|
PRIVACY_MODE_DISABLED, net_log_, server_socket_handle_.get(), callback);
|
2018-01-20 20:15:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int NaiveConnection::DoConnectServerComplete(int result) {
|
|
|
|
if (result < 0)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
DCHECK(server_socket_handle_->socket());
|
|
|
|
sockets_[kServer] = server_socket_handle_->socket();
|
|
|
|
|
|
|
|
full_duplex_ = true;
|
|
|
|
next_state_ = STATE_NONE;
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int NaiveConnection::Run(CompletionOnceCallback callback) {
|
2018-12-27 17:28:26 +03:00
|
|
|
DCHECK(sockets_[kClient] || protocol_ == kQuic);
|
2018-01-20 20:15:45 +03:00
|
|
|
DCHECK(sockets_[kServer]);
|
|
|
|
DCHECK_EQ(next_state_, STATE_NONE);
|
|
|
|
DCHECK(!connect_callback_);
|
|
|
|
|
|
|
|
if (errors_[kClient] != OK)
|
|
|
|
return errors_[kClient];
|
|
|
|
if (errors_[kServer] != OK)
|
|
|
|
return errors_[kServer];
|
|
|
|
|
|
|
|
run_callback_ = std::move(callback);
|
|
|
|
|
|
|
|
bytes_passed_without_yielding_[kClient] = 0;
|
|
|
|
bytes_passed_without_yielding_[kServer] = 0;
|
|
|
|
|
|
|
|
yield_after_time_[kClient] =
|
|
|
|
time_func_() +
|
|
|
|
base::TimeDelta::FromMilliseconds(kYieldAfterDurationMilliseconds);
|
|
|
|
yield_after_time_[kServer] = yield_after_time_[kClient];
|
|
|
|
|
|
|
|
can_push_to_server_ = true;
|
2018-12-27 17:28:26 +03:00
|
|
|
if (!early_pull_pending_ && protocol_ != kQuic) {
|
2018-01-20 20:15:45 +03:00
|
|
|
DCHECK_GT(early_pull_result_, 0);
|
|
|
|
Push(kClient, kServer, early_pull_result_);
|
|
|
|
}
|
|
|
|
Pull(kServer, kClient);
|
|
|
|
|
|
|
|
return ERR_IO_PENDING;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NaiveConnection::Pull(Direction from, Direction to) {
|
|
|
|
if (errors_[kClient] < 0 || errors_[kServer] < 0)
|
|
|
|
return;
|
|
|
|
|
2018-12-08 08:51:40 +03:00
|
|
|
int read_size = kBufferSize;
|
|
|
|
if (from == pad_direction_ && num_paddings_[from] < kFirstPaddings) {
|
|
|
|
auto* buffer = new GrowableIOBuffer;
|
|
|
|
buffer->SetCapacity(kBufferSize);
|
|
|
|
buffer->set_offset(kPaddingHeaderSize);
|
|
|
|
read_buffers_[from] = buffer;
|
|
|
|
read_size = kBufferSize - kPaddingHeaderSize - kMaxPaddingSize;
|
|
|
|
} else {
|
|
|
|
read_buffers_[from] = new IOBuffer(kBufferSize);
|
|
|
|
}
|
|
|
|
|
2018-01-20 20:15:45 +03:00
|
|
|
DCHECK(sockets_[from]);
|
|
|
|
int rv = sockets_[from]->Read(
|
2018-12-08 08:51:40 +03:00
|
|
|
read_buffers_[from].get(), read_size,
|
2018-01-20 20:15:45 +03:00
|
|
|
base::BindRepeating(&NaiveConnection::OnPullComplete,
|
|
|
|
weak_ptr_factory_.GetWeakPtr(), from, to));
|
|
|
|
|
|
|
|
if (from == kClient && early_pull_pending_)
|
|
|
|
early_pull_result_ = rv;
|
|
|
|
|
|
|
|
if (rv != ERR_IO_PENDING)
|
|
|
|
OnPullComplete(from, to, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NaiveConnection::Push(Direction from, Direction to, int size) {
|
2018-12-08 08:51:40 +03:00
|
|
|
int write_size = size;
|
|
|
|
int write_offset = 0;
|
|
|
|
if (from == pad_direction_ && num_paddings_[from] < kFirstPaddings) {
|
|
|
|
// Adds padding.
|
|
|
|
++num_paddings_[from];
|
|
|
|
int padding_size = base::RandInt(0, kMaxPaddingSize);
|
|
|
|
auto* buffer = static_cast<GrowableIOBuffer*>(read_buffers_[from].get());
|
|
|
|
buffer->set_offset(0);
|
|
|
|
uint8_t* p = reinterpret_cast<uint8_t*>(buffer->data());
|
|
|
|
p[0] = size / 256;
|
|
|
|
p[1] = size % 256;
|
|
|
|
p[2] = padding_size;
|
|
|
|
std::memset(p + kPaddingHeaderSize + size, 0, padding_size);
|
|
|
|
write_size = kPaddingHeaderSize + size + padding_size;
|
|
|
|
} else if (to == pad_direction_ && num_paddings_[from] < kFirstPaddings) {
|
|
|
|
// Removes padding.
|
|
|
|
const char* p = read_buffers_[from]->data();
|
|
|
|
bool trivial_padding = false;
|
|
|
|
if (read_padding_state_ == STATE_READ_PAYLOAD_LENGTH_1 &&
|
|
|
|
size >= kPaddingHeaderSize) {
|
|
|
|
int payload_size =
|
|
|
|
static_cast<uint8_t>(p[0]) * 256 + static_cast<uint8_t>(p[1]);
|
|
|
|
int padding_size = static_cast<uint8_t>(p[2]);
|
|
|
|
if (size == kPaddingHeaderSize + payload_size + padding_size) {
|
|
|
|
write_size = payload_size;
|
|
|
|
write_offset = kPaddingHeaderSize;
|
|
|
|
++num_paddings_[from];
|
|
|
|
trivial_padding = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!trivial_padding) {
|
|
|
|
auto* unpadded_buffer = new IOBuffer(kBufferSize);
|
|
|
|
char* unpadded_ptr = unpadded_buffer->data();
|
|
|
|
for (int i = 0; i < size;) {
|
|
|
|
if (num_paddings_[from] >= kFirstPaddings &&
|
|
|
|
read_padding_state_ == STATE_READ_PAYLOAD_LENGTH_1) {
|
|
|
|
std::memcpy(unpadded_ptr, p + i, size - i);
|
|
|
|
unpadded_ptr += size - i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
int copy_size;
|
|
|
|
switch (read_padding_state_) {
|
|
|
|
case STATE_READ_PAYLOAD_LENGTH_1:
|
|
|
|
payload_length_ = static_cast<uint8_t>(p[i]);
|
|
|
|
++i;
|
|
|
|
read_padding_state_ = STATE_READ_PAYLOAD_LENGTH_2;
|
|
|
|
break;
|
|
|
|
case STATE_READ_PAYLOAD_LENGTH_2:
|
|
|
|
payload_length_ =
|
|
|
|
payload_length_ * 256 + static_cast<uint8_t>(p[i]);
|
|
|
|
++i;
|
|
|
|
read_padding_state_ = STATE_READ_PADDING_LENGTH;
|
|
|
|
break;
|
|
|
|
case STATE_READ_PADDING_LENGTH:
|
|
|
|
padding_length_ = static_cast<uint8_t>(p[i]);
|
|
|
|
++i;
|
|
|
|
read_padding_state_ = STATE_READ_PAYLOAD;
|
|
|
|
break;
|
|
|
|
case STATE_READ_PAYLOAD:
|
|
|
|
if (payload_length_ <= size - i) {
|
|
|
|
copy_size = payload_length_;
|
|
|
|
read_padding_state_ = STATE_READ_PADDING;
|
|
|
|
} else {
|
|
|
|
copy_size = size - i;
|
|
|
|
}
|
|
|
|
std::memcpy(unpadded_ptr, p + i, copy_size);
|
|
|
|
unpadded_ptr += copy_size;
|
|
|
|
i += copy_size;
|
|
|
|
payload_length_ -= copy_size;
|
|
|
|
break;
|
|
|
|
case STATE_READ_PADDING:
|
|
|
|
if (padding_length_ <= size - i) {
|
|
|
|
copy_size = padding_length_;
|
|
|
|
read_padding_state_ = STATE_READ_PAYLOAD_LENGTH_1;
|
|
|
|
++num_paddings_[from];
|
|
|
|
} else {
|
|
|
|
copy_size = size - i;
|
|
|
|
}
|
|
|
|
i += copy_size;
|
|
|
|
padding_length_ -= copy_size;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
write_size = unpadded_ptr - unpadded_buffer->data();
|
|
|
|
read_buffers_[from] = unpadded_buffer;
|
|
|
|
}
|
|
|
|
if (write_size == 0) {
|
|
|
|
OnPushComplete(from, to, OK);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
write_buffers_[to] = new DrainableIOBuffer(read_buffers_[from].get(),
|
|
|
|
write_offset + write_size);
|
|
|
|
if (write_offset) {
|
|
|
|
write_buffers_[to]->DidConsume(write_offset);
|
|
|
|
}
|
2018-01-20 20:15:45 +03:00
|
|
|
write_pending_[to] = true;
|
|
|
|
DCHECK(sockets_[to]);
|
|
|
|
int rv = sockets_[to]->Write(
|
2018-12-08 08:51:40 +03:00
|
|
|
write_buffers_[to].get(), write_size,
|
2018-01-20 20:15:45 +03:00
|
|
|
base::BindRepeating(&NaiveConnection::OnPushComplete,
|
|
|
|
weak_ptr_factory_.GetWeakPtr(), from, to),
|
|
|
|
traffic_annotation_);
|
|
|
|
|
|
|
|
if (rv != ERR_IO_PENDING)
|
|
|
|
OnPushComplete(from, to, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NaiveConnection::Disconnect(Direction side) {
|
|
|
|
if (sockets_[side]) {
|
|
|
|
sockets_[side]->Disconnect();
|
|
|
|
sockets_[side] = nullptr;
|
|
|
|
write_pending_[side] = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool NaiveConnection::IsConnected(Direction side) {
|
|
|
|
return sockets_[side];
|
|
|
|
}
|
|
|
|
|
|
|
|
void NaiveConnection::OnBothDisconnected() {
|
|
|
|
if (run_callback_) {
|
|
|
|
int error = OK;
|
|
|
|
if (errors_[kClient] != ERR_CONNECTION_CLOSED && errors_[kClient] < 0)
|
|
|
|
error = errors_[kClient];
|
|
|
|
if (errors_[kServer] != ERR_CONNECTION_CLOSED && errors_[kClient] < 0)
|
|
|
|
error = errors_[kServer];
|
|
|
|
std::move(run_callback_).Run(error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void NaiveConnection::OnPullError(Direction from, Direction to, int error) {
|
|
|
|
DCHECK_LT(error, 0);
|
|
|
|
|
|
|
|
errors_[from] = error;
|
|
|
|
Disconnect(from);
|
|
|
|
|
|
|
|
if (!write_pending_[to])
|
|
|
|
Disconnect(to);
|
|
|
|
|
|
|
|
if (!IsConnected(from) && !IsConnected(to))
|
|
|
|
OnBothDisconnected();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NaiveConnection::OnPushError(Direction from, Direction to, int error) {
|
|
|
|
DCHECK_LE(error, 0);
|
|
|
|
DCHECK(!write_pending_[to]);
|
|
|
|
|
|
|
|
if (error < 0) {
|
|
|
|
errors_[to] = error;
|
|
|
|
Disconnect(kServer);
|
|
|
|
Disconnect(kClient);
|
|
|
|
} else if (!IsConnected(from)) {
|
|
|
|
Disconnect(to);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!IsConnected(from) && !IsConnected(to))
|
|
|
|
OnBothDisconnected();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NaiveConnection::OnPullComplete(Direction from, Direction to, int result) {
|
|
|
|
if (from == kClient && early_pull_pending_) {
|
|
|
|
early_pull_pending_ = false;
|
|
|
|
early_pull_result_ = result;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result <= 0) {
|
|
|
|
OnPullError(from, to, result ? result : ERR_CONNECTION_CLOSED);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (from == kClient && !can_push_to_server_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
Push(from, to, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NaiveConnection::OnPushComplete(Direction from, Direction to, int result) {
|
2018-12-08 08:51:40 +03:00
|
|
|
if (result >= 0 && write_buffers_[to] != nullptr) {
|
2018-01-20 20:15:45 +03:00
|
|
|
bytes_passed_without_yielding_[from] += result;
|
|
|
|
write_buffers_[to]->DidConsume(result);
|
|
|
|
int size = write_buffers_[to]->BytesRemaining();
|
|
|
|
if (size > 0) {
|
|
|
|
Push(from, to, size);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
write_pending_[to] = false;
|
|
|
|
// Checks for termination even if result is OK.
|
|
|
|
OnPushError(from, to, result >= 0 ? OK : result);
|
|
|
|
|
|
|
|
if (bytes_passed_without_yielding_[from] > kYieldAfterBytesRead ||
|
|
|
|
time_func_() > yield_after_time_[from]) {
|
|
|
|
bytes_passed_without_yielding_[from] = 0;
|
|
|
|
yield_after_time_[from] =
|
|
|
|
time_func_() +
|
|
|
|
base::TimeDelta::FromMilliseconds(kYieldAfterDurationMilliseconds);
|
|
|
|
base::ThreadTaskRunnerHandle::Get()->PostTask(
|
|
|
|
FROM_HERE,
|
|
|
|
base::BindRepeating(&NaiveConnection::Pull,
|
|
|
|
weak_ptr_factory_.GetWeakPtr(), from, to));
|
|
|
|
} else {
|
|
|
|
Pull(from, to);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace net
|