From: Patrick Steinhardt <ps@pks.im>
To: Daniel Stenberg <daniel@haxx.se>
Cc: git@vger.kernel.org
Subject: Re: curl 8.10.0 regression breaks uploads with HTTP/2 and http.postbuffer
Date: Fri, 13 Sep 2024 10:20:59 +0200 [thread overview]
Message-ID: <ZuP168QTTMiv_DxH@pks.im> (raw)
In-Reply-To: <565691o1-3451-o06o-2594-2750r90nqq6p@unkk.fr>
On Fri, Sep 13, 2024 at 09:49:27AM +0200, Daniel Stenberg wrote:
> On Fri, 13 Sep 2024, Patrick Steinhardt wrote:
>
> > In a nutshell:
>
> Thanks, this is helpful.
>
> > - We then clone a repository from Apache with http.postbuffer=65536,
> > which makes us use a small buffer when POSTing data via curl. We
> > typically use 1MB buffers, and when changing it back to 1MB instead
> > of 65kB the test works just fine.
>
> Is this a git buffer size or is this a value you tell libcurl in an option
> to set a buffer size?
I'm not all that familiar with the "remote-curl.c" remote helper in Git,
so let me try to figure out things as we go.
- The code that sets up the POST buffer is `stateless_connect()`. The
buffer is allocated by ourselves.
- We then execute `post_rpc()` in a loop until we see EOF.
- `post_rpc()` itself is doing all the work to set up the curl handle,
mostly via calls to `curl_easy_setopt()`.
- In there we hit the `large_request` code path. We set up
CURLOPT_READFUNCTION and CURLOPT_SEEKFUNCTION. The callback that
uses our buffer is the one set up via CURLOPT_READFUNCTION, which is
`rpc_out()`.
Whether or not we hit `large_request` depends on out POST buffer size.
We first try to read all the data we want to send into the buffer, and
if it fits we send it out in a single call to curl by setting up
CURLOPT_POSTFIELDS and CURLOPT_POSTFIELDSIZE_LARGE. If it doesn't fit
into the buffer, which is the case for in this testcase, we instead use
the callbacks to write data via curl.
> > I've appended two curl traces, the working one with 1MB buffers and the
> > failing one with 65kB buffers. I hope that helps.
>
> How are you feeding the data to libcurl? (callback or by setting the
> postfields option?) I noticed that in the working case log, the POST
> requests always have a content-length header while the failing case log
> shows that header lacking in the final POST request.
>
> Is that on purpose?
>
> libcurl should still handle it fine, it might just be a clue for me to
> narrow down my search.
I think so. We're using a "chunked" transfer encoding in the
`large_request` case and do not yet know how much data we are about to
send. We'll only figure that out as we go.
Patrick
next prev parent reply other threads:[~2024-09-13 8:21 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-13 5:16 curl 8.10.0 regression breaks uploads with HTTP/2 and http.postbuffer Patrick Steinhardt
2024-09-13 6:11 ` Daniel Stenberg
2024-09-13 6:15 ` Daniel Stenberg
2024-09-13 6:36 ` Patrick Steinhardt
2024-09-13 7:49 ` Daniel Stenberg
2024-09-13 8:20 ` Patrick Steinhardt [this message]
2024-09-13 11:04 ` Daniel Stenberg
2024-09-13 11:21 ` Patrick Steinhardt
2024-09-19 19:11 ` Junio C Hamano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZuP168QTTMiv_DxH@pks.im \
--to=ps@pks.im \
--cc=daniel@haxx.se \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).