Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b327d33
n-api: add version to wasm registration
devsnek Jun 25, 2020
95eecd5
doc: improve paragraph in esm.md
Trott Jun 26, 2020
90d5f35
doc: make minor improvements to paragraph in child_process.md
Trott Jun 26, 2020
da8a1ef
zlib: remove redundant variable in zlibBufferOnEnd
puzpuzpuz Jun 26, 2020
9e135ac
wasi: add reactor support
devsnek Jun 25, 2020
c23d2fd
src: allow embedders to disable esm loader
codebytere Jun 26, 2020
cb673e1
2020-06-30, Version 12.18.2 'Erbium' (LTS)
BethGriggs Jun 26, 2020
b613933
test: update test-child-process-spawn-loop for Python 3
richardlau Jun 26, 2020
68634d2
quic: remove redundant cast
gengjiawen Jun 27, 2020
204f20f
quic: minor cleanups in quic_buffer
jasnell Jun 26, 2020
8f4b4f2
stream: destroy wrapped streams on error
ronag Jun 28, 2020
312a4f3
net: fix bufferSize
ronag Jun 27, 2020
0edeeec
net: doc deprecate bufferSize
ronag Jun 28, 2020
eb8fc2b
2020-06-30, Version 14.5.0 (Current)
codebytere Jun 28, 2020
e20beaf
meta: fixup CODEOWNERS so it hopefully works
jasnell Jul 1, 2020
73a51bb
quic: cleanups in JS API
jasnell Jun 27, 2020
d603418
quic: cleanups for QuicSocket
jasnell Jun 30, 2020
def8e76
quic: fixup set_final_size
jasnell Jun 30, 2020
3bae2d5
quic: consolidate onSessionClose and onSessionSilentClose
jasnell Jun 30, 2020
b1fab88
quic: remove unused callback function
jasnell Jun 30, 2020
2afc1ab
quic: fixup constant exports, export all protocol error codes
jasnell Jun 30, 2020
b5fe31e
quic: avoid using private JS fields for now
jasnell Jun 30, 2020
31d6d9d
quic: reduce duplication of code
jasnell Jun 30, 2020
584fc7e
doc: clarify ambiguous rdev description
Trott Jun 28, 2020
8ff8c68
doc: clarify O_EXCL text in fs.md
Trott Jun 28, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
quic: cleanups for QuicSocket
PR-URL: #34137
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: David Carlier <devnexen@gmail.com>
  • Loading branch information
jasnell committed Jul 1, 2020
commit d6034186d661ab69f33af81f8ce649375dafadd7
1 change: 0 additions & 1 deletion src/env.h
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,6 @@ constexpr size_t kFsStatsBufferLength =
#if defined(NODE_EXPERIMENTAL_QUIC) && NODE_EXPERIMENTAL_QUIC
# define QUIC_ENVIRONMENT_STRONG_PERSISTENT_VALUES(V) \
V(quic_on_socket_close_function, v8::Function) \
V(quic_on_socket_error_function, v8::Function) \
V(quic_on_socket_server_busy_function, v8::Function) \
V(quic_on_session_cert_function, v8::Function) \
V(quic_on_session_client_hello_function, v8::Function) \
Expand Down
2 changes: 1 addition & 1 deletion src/quic/node_quic_session.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2323,7 +2323,7 @@ bool QuicSession::set_socket(QuicSocket* socket, bool nat_rebinding) {
socket->ReceiveStart();

// Step 4: Update ngtcp2
auto& local_address = socket->local_address();
auto local_address = socket->local_address();
if (nat_rebinding) {
ngtcp2_addr addr;
ngtcp2_addr_init(
Expand Down
8 changes: 2 additions & 6 deletions src/quic/node_quic_socket-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ void QuicSocket::AssociateStatelessResetToken(
token_map_[token] = session;
}

const SocketAddress& QuicSocket::local_address() {
CHECK(preferred_endpoint_);
SocketAddress QuicSocket::local_address() const {
DCHECK(preferred_endpoint_);
return preferred_endpoint_->local_address();
}

Expand Down Expand Up @@ -221,10 +221,6 @@ void QuicSocket::AddEndpoint(
endpoint_->ReceiveStart();
}

void QuicSocket::SessionReady(BaseObjectPtr<QuicSession> session) {
listener_->OnSessionReady(session);
}

} // namespace quic
} // namespace node

Expand Down
101 changes: 64 additions & 37 deletions src/quic/node_quic_socket.cc
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ bool IsShortHeader(
}
} // namespace

QuicPacket::QuicPacket(const char* diagnostic_label, size_t len) :
data_{0},
len_(len),
diagnostic_label_(diagnostic_label) {
QuicPacket::QuicPacket(const char* diagnostic_label, size_t len)
: data_{0},
len_(len),
diagnostic_label_(diagnostic_label) {
CHECK_LE(len, MAX_PKTLEN);
}

Expand All @@ -100,8 +100,6 @@ const char* QuicPacket::diagnostic_label() const {
diagnostic_label_ : "unspecified";
}

void QuicPacket::MemoryInfo(MemoryTracker* tracker) const {}

QuicSocketListener::~QuicSocketListener() {
if (socket_)
socket_->RemoveListener(this);
Expand Down Expand Up @@ -174,10 +172,10 @@ QuicEndpoint::QuicEndpoint(
QuicState* quic_state,
Local<Object> wrap,
QuicSocket* listener,
Local<Object> udp_wrap) :
BaseObject(quic_state->env(), wrap),
listener_(listener),
quic_state_(quic_state) {
Local<Object> udp_wrap)
: BaseObject(quic_state->env(), wrap),
listener_(listener),
quic_state_(quic_state) {
MakeWeak();
udp_ = static_cast<UDPWrapBase*>(
udp_wrap->GetAlignedPointerFromInternalField(
Expand All @@ -187,7 +185,9 @@ QuicEndpoint::QuicEndpoint(
strong_ptr_.reset(udp_->GetAsyncWrap());
}

void QuicEndpoint::MemoryInfo(MemoryTracker* tracker) const {}
QuicEndpoint::~QuicEndpoint() {
udp_->set_listener(nullptr);
}

uv_buf_t QuicEndpoint::OnAlloc(size_t suggested_size) {
return AllocatedBuffer::AllocateManaged(env(), suggested_size).release();
Expand Down Expand Up @@ -229,6 +229,14 @@ void QuicEndpoint::OnAfterBind() {
listener_->OnBind(this);
}

template <typename Fn>
void QuicSocketStatsTraits::ToString(const QuicSocket& ptr, Fn&& add_field) {
#define V(_n, name, label) \
add_field(label, ptr.GetStat(&QuicSocketStats::name));
SOCKET_STATS(V)
#undef V
}

QuicSocket::QuicSocket(
QuicState* quic_state,
Local<Object> wrap,
Expand All @@ -240,17 +248,17 @@ QuicSocket::QuicSocket(
QlogMode qlog,
const uint8_t* session_reset_secret,
bool disable_stateless_reset)
: AsyncWrap(quic_state->env(), wrap, AsyncWrap::PROVIDER_QUICSOCKET),
StatsBase(quic_state->env(), wrap),
alloc_info_(MakeAllocator()),
options_(options),
max_connections_(max_connections),
max_connections_per_host_(max_connections_per_host),
max_stateless_resets_per_host_(max_stateless_resets_per_host),
retry_token_expiration_(retry_token_expiration),
qlog_(qlog),
server_alpn_(NGHTTP3_ALPN_H3),
quic_state_(quic_state) {
: AsyncWrap(quic_state->env(), wrap, AsyncWrap::PROVIDER_QUICSOCKET),
StatsBase(quic_state->env(), wrap),
alloc_info_(MakeAllocator()),
options_(options),
max_connections_(max_connections),
max_connections_per_host_(max_connections_per_host),
max_stateless_resets_per_host_(max_stateless_resets_per_host),
retry_token_expiration_(retry_token_expiration),
qlog_(qlog),
server_alpn_(NGHTTP3_ALPN_H3),
quic_state_(quic_state) {
MakeWeak();
PushListener(&default_listener_);

Expand Down Expand Up @@ -279,15 +287,13 @@ QuicSocket::~QuicSocket() {
if (listener == listener_)
RemoveListener(listener_);

DebugStats();
}
// In a clean shutdown, all QuicSessions associated with the QuicSocket
// would have been destroyed explicitly. However, if the QuicSocket is
// garbage collected / freed before Destroy having been called, there
// may be sessions remaining. This is not really a good thing.
Debug(this, "Destroying with %d sessions remaining", sessions_.size());

template <typename Fn>
void QuicSocketStatsTraits::ToString(const QuicSocket& ptr, Fn&& add_field) {
#define V(_n, name, label) \
add_field(label, ptr.GetStat(&QuicSocketStats::name));
SOCKET_STATS(V)
#undef V
DebugStats();
}

void QuicSocket::MemoryInfo(MemoryTracker* tracker) const {
Expand All @@ -310,7 +316,6 @@ void QuicSocket::Listen(
const std::string& alpn,
uint32_t options) {
CHECK(sc);
CHECK(!server_secure_context_);
CHECK(!is_flag_set(QUICSOCKET_FLAGS_SERVER_LISTENING));
Debug(this, "Starting to listen");
server_session_config_.Set(quic_state(), preferred_address);
Expand All @@ -323,6 +328,7 @@ void QuicSocket::Listen(
}

void QuicSocket::OnError(QuicEndpoint* endpoint, ssize_t error) {
// TODO(@jasnell): What should we do with the endpoint?
Debug(this, "Reading data from UDP socket failed. Error %" PRId64, error);
listener_->OnError(error);
}
Expand All @@ -341,7 +347,7 @@ void QuicSocket::OnEndpointDone(QuicEndpoint* endpoint) {
}

void QuicSocket::OnBind(QuicEndpoint* endpoint) {
const SocketAddress& local_address = endpoint->local_address();
SocketAddress local_address = endpoint->local_address();
bound_endpoints_[local_address] =
BaseObjectWeakPtr<QuicEndpoint>(endpoint);
Debug(this, "Endpoint %s bound", local_address);
Expand Down Expand Up @@ -545,6 +551,13 @@ void QuicSocket::OnReceive(
IncrementStat(&QuicSocketStats::packets_ignored);
return;
}

// The QuicSession was destroyed while it was being set up. There's
// no further processing we can do here.
if (session->is_destroyed()) {
IncrementStat(&QuicSocketStats::packets_ignored);
return;
}
}

CHECK(session);
Expand Down Expand Up @@ -683,6 +696,8 @@ bool QuicSocket::SendRetry(
}

// Shutdown a connection prematurely, before a QuicSession is created.
// This should only be called t the start of a session before the crypto
// keys have been established.
void QuicSocket::ImmediateConnectionClose(
const QuicCID& scid,
const QuicCID& dcid,
Expand Down Expand Up @@ -819,16 +834,28 @@ BaseObjectPtr<QuicSession> QuicSocket::AcceptInitialPacket(

listener_->OnSessionReady(session);

// It's possible that the session was destroyed while processing
// the ready callback. If it was, then we need to send an early
// CONNECTION_CLOSE.
if (session->is_destroyed()) {
ImmediateConnectionClose(
QuicCID(hd.scid),
QuicCID(hd.dcid),
local_addr,
remote_addr,
NGTCP2_CONNECTION_REFUSED);
}

return session;
}

QuicSocket::SendWrap::SendWrap(
QuicState* quic_state,
Local<Object> req_wrap_obj,
size_t total_length)
: ReqWrap(quic_state->env(), req_wrap_obj, PROVIDER_QUICSOCKET),
total_length_(total_length),
quic_state_(quic_state) {
: ReqWrap(quic_state->env(), req_wrap_obj, PROVIDER_QUICSOCKET),
total_length_(total_length),
quic_state_(quic_state) {
}

std::string QuicSocket::SendWrap::MemoryInfoName() const {
Expand Down Expand Up @@ -1093,7 +1120,7 @@ void QuicSocketStopListening(const FunctionCallbackInfo<Value>& args) {
socket->StopListening();
}

void QuicSocketset_server_busy(const FunctionCallbackInfo<Value>& args) {
void QuicSocketSetServerBusy(const FunctionCallbackInfo<Value>& args) {
QuicSocket* socket;
ASSIGN_OR_RETURN_UNWRAP(&socket, args.Holder());
CHECK_EQ(args.Length(), 1);
Expand Down Expand Up @@ -1164,7 +1191,7 @@ void QuicSocket::Initialize(
QuicSocketSetDiagnosticPacketLoss);
env->SetProtoMethod(socket,
"setServerBusy",
QuicSocketset_server_busy);
QuicSocketSetServerBusy);
env->SetProtoMethod(socket,
"stopListening",
QuicSocketStopListening);
Expand Down
Loading