-
-
Notifications
You must be signed in to change notification settings - Fork 36.7k
quic: improve stream cleanup & lookup #65944
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
pimterry
wants to merge
1
commit into
nodejs:main
Choose a base branch
from
pimterry:nghttp3-stream-caching
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1579,13 +1579,15 @@ struct Session::Impl final : public MemoryRetainer { | |
| void* user_data, | ||
| void* stream_user_data) { | ||
| NGTCP2_CALLBACK_SCOPE(session) | ||
| // If the peer closes a stream, we return the credit to allow a new one: | ||
| session->ExtendMaxStreams(stream_id); | ||
| if (!session->has_application()) return NGTCP2_SUCCESS; | ||
| auto* stream = Stream::From(stream_user_data); | ||
| if (stream == nullptr) return NGTCP2_SUCCESS; | ||
| if (flags & NGTCP2_STREAM_CLOSE_FLAG_APP_ERROR_CODE_SET) { | ||
| session->application().ReceiveStreamClose( | ||
| stream, QuicError::ForApplication(app_error_code)); | ||
| stream_id, stream, QuicError::ForApplication(app_error_code)); | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A comment here explaining that we're passing |
||
| } else { | ||
| session->application().ReceiveStreamClose(stream); | ||
| session->application().ReceiveStreamClose(stream_id, stream); | ||
| } | ||
| return NGTCP2_SUCCESS; | ||
| } | ||
|
|
@@ -3320,17 +3322,11 @@ void Session::AddStream(BaseObjectPtr<Stream> stream, | |
| void Session::RemoveStream(stream_id id) { | ||
| DCHECK(!is_destroyed()); | ||
| Debug(this, "Removing stream %" PRIi64 " from session", id); | ||
| if (!is_in_draining_period() && !is_in_closing_period() && | ||
| !ngtcp2_conn_is_local_stream(*this, id)) { | ||
| if (ngtcp2_is_bidi_stream(id)) { | ||
| ngtcp2_conn_extend_max_streams_bidi(*this, 1); | ||
| } else { | ||
| ngtcp2_conn_extend_max_streams_uni(*this, 1); | ||
| } | ||
| } | ||
|
|
||
| ngtcp2_conn_set_stream_user_data(*this, id, nullptr); | ||
|
|
||
| if (has_application()) application().StreamRemoved(id); | ||
|
|
||
| // Note that removing the stream from the streams map likely releases | ||
| // the last BaseObjectPtr holding onto the Stream instance, at which | ||
| // point it will be freed. If there are other BaseObjectPtr instances | ||
|
|
@@ -3479,14 +3475,15 @@ bool Session::OpenUnidirectionalStream(stream_id* id) { | |
| return ngtcp2_conn_open_uni_stream(*this, id, nullptr) == 0; | ||
| } | ||
|
|
||
| void Session::ExtendMaxStreams(Direction direction, uint64_t max) { | ||
| switch (direction) { | ||
| case Direction::BIDIRECTIONAL: | ||
| ngtcp2_conn_extend_max_streams_bidi(*this, static_cast<size_t>(max)); | ||
| break; | ||
| case Direction::UNIDIRECTIONAL: | ||
| ngtcp2_conn_extend_max_streams_uni(*this, static_cast<size_t>(max)); | ||
| break; | ||
| void Session::ExtendMaxStreams(stream_id id) { | ||
| // MAX_STREAMS only limits what the peer opens, and there is nothing to | ||
| // grant once the connection is going away. | ||
| if (is_in_draining_period() || is_in_closing_period()) return; | ||
| if (ngtcp2_conn_is_local_stream(*this, id)) return; | ||
| if (ngtcp2_is_bidi_stream(id)) { | ||
| ngtcp2_conn_extend_max_streams_bidi(*this, 1); | ||
| } else { | ||
| ngtcp2_conn_extend_max_streams_uni(*this, 1); | ||
| } | ||
| } | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: let's add a comment here explaining briefly the conditions in whch
streamcan benullptr