-
Notifications
You must be signed in to change notification settings - Fork 10.2k
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
Don't send body in HEAD response when using PipeWriter.Advance before headers flushed #59725
base: main
Are you sure you want to change the base?
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.
Copilot reviewed 5 out of 6 changed files in this pull request and generated no comments.
Files not reviewed (1)
- src/Servers/Kestrel/Core/src/Internal/Http/IHttpOutputProducer.cs: Evaluated as low risk
@@ -1471,7 +1534,7 @@ public async Task HeadResponseBodyNotWrittenWithSyncWrite() | |||
await using (var server = new TestServer(async httpContext => | |||
{ | |||
httpContext.Response.ContentLength = 12; | |||
await httpContext.Response.BodyWriter.WriteAsync(new Memory<byte>(Encoding.ASCII.GetBytes("hello, world"), 0, 12)); | |||
httpContext.Response.Body.Write(Encoding.ASCII.GetBytes("hello, world"), 0, 12); |
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.
#7110 removed the sync write which this test and HeadResponseBodyNotWrittenWithSyncWrite
above were explicitly testing.
} | ||
} | ||
} | ||
|
||
[Fact] | ||
public async Task HeadResponseBodyNotWrittenWithAsyncWrite() | ||
public async Task HeadResponseHeadersWrittenWithAsyncWriteBeforeAppCompletes() |
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.
aspnet/KestrelHttpServer#1204 changed some of the HEAD response tests to only check the response headers are flushed and doesn't fully check that the body doesn't exist. So split the test into two for the flushed headers check, and the lack of body check.
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.
LGTM, interesting find!
Bug exposed/introduced by #8199
Fixes #59691
Reason this hasn't been found in the >5 years since the bug was introduced is that it requires using
PipeWriter.GetMemory(...)
+PipeWriter.Advance(...)
before flushing the headers and using a HEAD request at the same time. This is very uncommon except for in .NET 9 where we made writing JSON responses use thePipeWriter
which uses theGetMemory
+Advance
path.The fix is to pass the
canWriteBody
parameter toWriteDataWrittenBeforeHeaders
and only copy the bytes from previousGetMemory
+Advance
calls to the body ifcanWriteBody
is true.One additional change we might want to consider here, is removing the
Transfer-Encoding: chunked
header from the HEAD response. We have TransferEncodingNotSetOnHeadResponse and ManuallySettingTransferEncodingThrowsForHeadResponse which show us explicitly not letting the transfer encoding exist on a HEAD response, however according to the RFC 7231 section 4.3.2And https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Transfer-Encoding
Both of which indicate it is perfectly fine to include the Transfer-Encoding header.
Looking at the history of why we added this restriction to Kestrel, we find aspnet/KestrelHttpServer#952 which was about a browser request hanging when accessing an endpoint that responded with another non-body response in the form of a 304 and we just added the restriction to HEAD response as well since it is a non-body response.