-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Don't count start line toward header size limit #21272
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
Conversation
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.
Would await Task.Yield()
work rather than Task.Delay
?
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. |
@@ -127,9 +127,7 @@ public async Task TakeMessageHeadersThrowsWhenHeadersExceedTotalSizeLimit() | |||
await _application.Output.WriteAsync(Encoding.ASCII.GetBytes($"{headerLine}\r\n")); | |||
var readableBuffer = (await _transport.Input.ReadAsync()).Buffer; | |||
|
|||
#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 |
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.
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.
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.
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.
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