-
-
Notifications
You must be signed in to change notification settings - Fork 280
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
Fix for invalid header panic corrected #695
Merged
seanmonstar
merged 6 commits into
hyperium:master
from
f0rki:invalid-header-panic-corrected
Jun 22, 2023
Merged
Fix for invalid header panic corrected #695
seanmonstar
merged 6 commits into
hyperium:master
from
f0rki:invalid-header-panic-corrected
Jun 22, 2023
Conversation
This file contains 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
…ake_request` function return a Result" This reverts commit 66c36c4.
… pseudo-header in the informational range of status codes Signed-off-by: Michael Rodler <[email protected]> Co-Authored-By: f0rki <[email protected]> Reviewed-by: Daniele Ahmed <[email protected]>
f0rki
changed the title
Invalid header panic corrected
Fix for invalid header panic corrected
Jun 15, 2023
82marbag
reviewed
Jun 15, 2023
82marbag
reviewed
Jun 16, 2023
Co-authored-by: 82marbag <[email protected]>
f0rki
force-pushed
the
invalid-header-panic-corrected
branch
from
June 16, 2023 14:20
a528d64
to
07397f4
Compare
f0rki
force-pushed
the
invalid-header-panic-corrected
branch
from
June 16, 2023 14:20
07397f4
to
54f965a
Compare
seanmonstar
reviewed
Jun 16, 2023
seanmonstar
approved these changes
Jun 22, 2023
0xE282B0
pushed a commit
to 0xE282B0/h2
that referenced
this pull request
Jan 11, 2024
* Revert "fix panic on receiving invalid headers frame by making the `take_request` function return a Result" This reverts commit 66c36c4. * proper fix for the panic in server receiving a request with a :status pseudo-header in the informational range of status codes --------- Signed-off-by: Michael Rodler <[email protected]> Co-authored-by: Michael Rodler <[email protected]> Co-authored-by: Daniele Ahmed <[email protected]>
0xE282B0
pushed a commit
to 0xE282B0/h2
that referenced
this pull request
Jan 11, 2024
* Revert "fix panic on receiving invalid headers frame by making the `take_request` function return a Result" This reverts commit 66c36c4. * proper fix for the panic in server receiving a request with a :status pseudo-header in the informational range of status codes --------- Signed-off-by: Michael Rodler <[email protected]> Co-authored-by: Michael Rodler <[email protected]> Co-authored-by: Daniele Ahmed <[email protected]>
0xE282B0
pushed a commit
to 0xE282B0/h2
that referenced
this pull request
Jan 16, 2024
* Revert "fix panic on receiving invalid headers frame by making the `take_request` function return a Result" This reverts commit 66c36c4. * proper fix for the panic in server receiving a request with a :status pseudo-header in the informational range of status codes --------- Signed-off-by: Michael Rodler <[email protected]> Co-authored-by: Michael Rodler <[email protected]> Co-authored-by: Daniele Ahmed <[email protected]> Signed-off-by: Sven Pfennig <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Corrected fix in #690 - the root cause was that informational header frames are ignored, even if received by the server. However, the stream was still scheduled in
pending_accept
. This then triggers thetake_request
, while nothing is put in thepending_recv
queue, which then causes the panic.