Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay K <iit.akshay@gmail.com>2021-07-17 03:28:07 +0300
committerMatteo Collina <hello@matteocollina.com>2021-07-20 14:31:27 +0300
commitc0f10006c82d2d9896a552de98ed146f9542720d (patch)
treecdcc3ccbc24d83844285be699adc0bb3fa8f8ad2 /src/node_http2.cc
parent3cbaabc4622df1b4009b9d026a1a970bdbae6e89 (diff)
http2: on receiving rst_stream with cancel code add it to pending list
PR-URL: https://github.com/nodejs/node/pull/39423 Fixes: https://github.com/nodejs/node/issues/38964 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'src/node_http2.cc')
-rw-r--r--src/node_http2.cc19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/node_http2.cc b/src/node_http2.cc
index d11bcf5eac0..625f3adb3b9 100644
--- a/src/node_http2.cc
+++ b/src/node_http2.cc
@@ -2195,6 +2195,25 @@ int Http2Stream::SubmitPriority(const Http2Priority& priority,
void Http2Stream::SubmitRstStream(const uint32_t code) {
CHECK(!this->is_destroyed());
code_ = code;
+
+ // 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
+
+ // 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