Skip to content

Don't count start line toward header size limit#21272

Merged
halter73 merged 1 commit into
masterfrom
halter73/header-size
Apr 28, 2020
Merged

Don't count start line toward header size limit#21272
halter73 merged 1 commit into
masterfrom
halter73/header-size

Conversation

@halter73
Copy link
Copy Markdown
Member

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:

for (var index = 0; index < text.Length; index++)
{
var ch = text[index];
writer.Write(ch);
await writer.FlushAsync().ConfigureAwait(false);
// Re-add delay to help find socket input consumption bugs more consistently
//await Task.Delay(TimeSpan.FromMilliseconds(5));
}

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

@halter73 halter73 added bug This issue describes a behavior which is not expected - a bug. area-servers feature-kestrel labels Apr 27, 2020
@halter73 halter73 requested a review from Tratcher April 27, 2020 23:31
Copy link
Copy Markdown
Member

@benaadams benaadams left a 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?

@halter73
Copy link
Copy Markdown
Member Author

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.


#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
Copy link
Copy Markdown
Member

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.

Copy link
Copy Markdown
Member Author

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.

@halter73 halter73 merged commit 5ac720a into master Apr 28, 2020
@halter73 halter73 deleted the halter73/header-size branch April 28, 2020 17:36
@amcasey amcasey added area-networking Includes servers, yarp, json patch, bedrock, websockets, http client factory, and http abstractions and removed area-runtime labels Jun 2, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area-networking Includes servers, yarp, json patch, bedrock, websockets, http client factory, and http abstractions bug This issue describes a behavior which is not expected - a bug. feature-kestrel

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants