Don't count start line toward header size limit#21272
Merged
Merged
Conversation
benaadams
approved these changes
Apr 27, 2020
Member
benaadams
left a comment
There was a problem hiding this comment.
Would await Task.Yield() work rather than Task.Delay?
Member
Author
That seems to work pretty well. It still reliably repros the issue, without making the test runs take much longer at all (< 10% difference). Probably want to rewrite ContentLengthReadAsyncSingleBytesAtATime before doing this though. |
Tratcher
approved these changes
Apr 28, 2020
|
|
||
| #pragma warning disable CS0618 // Type or member is obsolete | ||
| var exception = Assert.Throws<BadHttpRequestException>(() => TakeMessageHeaders(readableBuffer, trailers: false, out _consumed, out _examined)); | ||
| #pragma warning restore CS0618 // Type or member is obsolete |
Member
There was a problem hiding this comment.
Please tell me you kept at least some of the old pragmas? We need something that verifies the old exception is still the one thrown.
Member
Author
There was a problem hiding this comment.
There's still one pragma in this test class because it's checking some internal property. I didn't even touch the other test classes.
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
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.
At first I thought this regression was caused the recent PR to make header parsing safe, but it looks like it was actually introduced prior to our 3.0 release by #8076. @anurse
This issue only occurs when start line and the headers are received separately, and the total length of the request headers in bytes is close enough to the limit that counting the start line towards it pushes it over. So pretty rare.
We have a bunch tests where the length of the request headers is close enough to the limit that the start line pushes it over, but before this there were no tests that guaranteed that the headers are received separately. After seeing the existing tests repro once locally, I was able to get it to reliably repro by uncommenting the following:
aspnetcore/src/Servers/Kestrel/shared/test/StreamBackedTestConnection.cs
Lines 81 to 88 in be76a03
That's not the type of thing we'd want to keep uncommented all the time though since that would slow down test runs about 10x.
@benaadams