Skip to content

Commit

Permalink
http2: update checks for adding rst_stream to pending list
Browse files Browse the repository at this point in the history
http2: add checks to update the pending list if stream received in scope
  • Loading branch information
kumarak committed Jul 19, 2021
1 parent f3ea45e commit 59497fb
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions src/node_http2.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2196,15 +2196,24 @@ void Http2Stream::SubmitRstStream(const uint32_t code) {
CHECK(!this->is_destroyed());
code_ = code;

// If RST_STREAM is submitted with the cancel code, don't force purge the
// currently sending data. Instead add it to the pending stream list to
// avoid prioritizing over other operations.
// If RST_STREAM frame is received and stream is not writable
// because it is busy reading data, don't try force purging it.
// Instead add the stream to pending stream list and process
// the pending data when it is safe to do so. This is to avoid
// double free error due to unwanted behavior of nghttp2.
// Ref:/~https://github.com/nodejs/node/issues/38964
if (code_ == NGHTTP2_CANCEL) {

// Add stream to the pending list if it is received with scope
// below in the stack. The pending list may not get processed
// if RST_STREAM received is not in scope and added to the list
// causing endpoint to hang.
if (session_->is_in_scope() &&
!is_writable() && is_reading()) {
session_->AddPendingRstStream(id_);
return;
}


// If possible, force a purge of any currently pending data here to make sure
// it is sent before closing the stream. If it returns non-zero then we need
// to wait until the current write finishes and try again to avoid nghttp2
Expand Down

0 comments on commit 59497fb

Please sign in to comment.