Bug 66023 - Getting requestbody as inputstream fails when upgrading to h2c
Summary: Getting requestbody as inputstream fails when upgrading to h2c
Status: RESOLVED FIXED
Alias: None
Product: Tomcat 9
Classification: Unclassified
Component: Servlet (show other bugs)
Version: 9.0.62
Hardware: PC All
: P2 normal (vote)
Target Milestone: -----
Assignee: Tomcat Developers Mailing List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-04-22 07:29 UTC by inaldt
Modified: 2022-05-06 15:20 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description inaldt 2022-04-22 07:29:34 UTC
See here
https://github.com/bclozel/h2c-tomcat/tree/spring-boot-30771
for a sample app demonstrating the issue. (It's a pure Tomcat application - no Spring Boot)

Summary: when processing a POST request that asks for an h2c-upgrade, reading the requestbody as an inputstream results in a NullPointerException.
Comment 1 Remy Maucherat 2022-04-22 08:21:48 UTC
An upgrade with a request body is clearly not supposed to happen with Tomcat. It's actually likely not allowed since after sending the 101 back, the request is supposed to be of the new protocol, so the request "body" will have to be HTTP/2. Clearly that's not possible (if the upgrade does not happen, for example) so it is correct that this is not allowed.

The likely solution would be to avoid upgrading when there's a request body.
Comment 2 bclozel 2022-04-22 09:11:26 UTC
Also, see https://bz.apache.org/bugzilla/show_bug.cgi?id=65726 which fixed a similar issue in the past.
Comment 3 Mark Thomas 2022-04-24 09:18:06 UTC
My reading of RFC 7230 is that when using upgrade the entire request is sent via HTTP/1.1, the upgrade happens and then the response is returned via the upgraded protocol.

This is going to require buffering the request body so it is going to be subject to the maxSavePostSize limit.

I would have expected this to 'just work' after the fix for bug 65726. I'll take a look at what is going on.
Comment 4 Remy Maucherat 2022-04-24 09:25:14 UTC
Ok, the spec is not as clear as I would expect.

OTOH, upgrading is optional, and this has some resource use and could make some legitimate POSTs to fail (if they are over maxSavePostSize). Is it really worth it ? Shouldn't we simply skip upgrading if there's a request body ?
Comment 5 Remy Maucherat 2022-04-26 14:42:30 UTC
It doesn't work because, although a SavedRequestInputFilter is set using setInputBuffer on the Request, the available() method uses an action to check the internal buffer, which now goes to the new processor (for HTTP/2 it's a StreamProcessor) while only Http11Processor has the correct behavior for the callback. So some additional "fix" is needed, maybe intercept the callback in Request.action to provide the correct result for available when a SavedRequestInputFilter is set (rather than delegate to the hook as usual). However, I don't like the fix and there might be other similar cases.

Since overall this buffering may be very inefficient, I would prefer choosing to not upgrade when a request body is present.
Comment 6 Mark Thomas 2022-04-28 20:11:31 UTC
Interesting.

I expanded the current upgrade with request body tests to use GET and POST and they still passed. Switching to a Reader triggered the issue because that triggers a call to available() and - as Rémy pointed out - that is where things go wrong.

I agree with Rémy's comments on efficiency but I want to see what a patch to fix this would look like before deciding on whether I think we should support this or not. My starting point is that I would like to support it if practical.
Comment 7 Mark Thomas 2022-04-29 10:18:18 UTC
I've committed a fix for 10.1.x. I'll give folks a chance to review it before I think about back-porting it.
Comment 8 Mark Thomas 2022-05-06 15:20:33 UTC
Fixed in:
- 10.1.x for 10.1.0-M15 onwards
- 10.0.x for 10.0.21 onwards
- 9.0.x for 9.0.63 onwards
- 8.5.x for 8.5.79 onwards