Skip to content

Commit ee08d7b

Browse files
peffdscho
authored andcommitted
http: prefer CURLOPT_SEEKFUNCTION to CURLOPT_IOCTLFUNCTION
The IOCTLFUNCTION option has been deprecated, and generates a compiler warning in recent versions of curl. We can switch to using SEEKFUNCTION instead. It was added in 2008 via curl 7.18.0; our INSTALL file already indicates we require at least curl 7.19.4. But there's one catch: curl says we should use CURL_SEEKFUNC_{OK,FAIL}, and those didn't arrive until 7.19.5. One workaround would be to use a bare 0/1 here (or define our own macros). But let's just bump the minimum required version to 7.19.5. That version is only a minor version bump from our existing requirement, and is only a 2 month time bump for versions that are almost 13 years old. So it's not likely that anybody cares about the distinction. Switching means we have to rewrite the ioctl functions into seek functions. In some ways they are simpler (seeking is the only operation), but in some ways more complex (the ioctl allowed only a full rewind, but now we can seek to arbitrary offsets). Curl will only ever use SEEK_SET (per their documentation), so I didn't bother implementing anything else, since it would naturally be completely untested. This seems unlikely to change, but I added an assertion just in case. Likewise, I doubt curl will ever try to seek outside of the buffer sizes we've told it, but I erred on the defensive side here, rather than do an out-of-bounds read. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 6d54c6b commit ee08d7b

File tree

5 files changed

+26
-30
lines changed

5 files changed

+26
-30
lines changed

INSTALL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Issues of note:
139139
not need that functionality, use NO_CURL to build without
140140
it.
141141

142-
Git requires version "7.19.4" or later of "libcurl" to build
142+
Git requires version "7.19.5" or later of "libcurl" to build
143143
without NO_CURL. This version requirement may be bumped in
144144
the future.
145145

http-push.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,8 @@ static void curl_setup_http(CURL *curl, const char *url,
203203
curl_easy_setopt(curl, CURLOPT_INFILE, buffer);
204204
curl_easy_setopt(curl, CURLOPT_INFILESIZE, buffer->buf.len);
205205
curl_easy_setopt(curl, CURLOPT_READFUNCTION, fread_buffer);
206-
curl_easy_setopt(curl, CURLOPT_IOCTLFUNCTION, ioctl_buffer);
207-
curl_easy_setopt(curl, CURLOPT_IOCTLDATA, buffer);
206+
curl_easy_setopt(curl, CURLOPT_SEEKFUNCTION, seek_buffer);
207+
curl_easy_setopt(curl, CURLOPT_SEEKDATA, buffer);
208208
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_fn);
209209
curl_easy_setopt(curl, CURLOPT_NOBODY, 0);
210210
curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, custom_req);

http.c

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -165,21 +165,19 @@ size_t fread_buffer(char *ptr, size_t eltsize, size_t nmemb, void *buffer_)
165165
return size / eltsize;
166166
}
167167

168-
curlioerr ioctl_buffer(CURL *handle, int cmd, void *clientp)
168+
int seek_buffer(void *clientp, curl_off_t offset, int origin)
169169
{
170170
struct buffer *buffer = clientp;
171171

172-
switch (cmd) {
173-
case CURLIOCMD_NOP:
174-
return CURLIOE_OK;
175-
176-
case CURLIOCMD_RESTARTREAD:
177-
buffer->posn = 0;
178-
return CURLIOE_OK;
179-
180-
default:
181-
return CURLIOE_UNKNOWNCMD;
172+
if (origin != SEEK_SET)
173+
BUG("seek_buffer only handles SEEK_SET");
174+
if (offset < 0 || offset >= buffer->buf.len) {
175+
error("curl seek would be outside of buffer");
176+
return CURL_SEEKFUNC_FAIL;
182177
}
178+
179+
buffer->posn = offset;
180+
return CURL_SEEKFUNC_OK;
183181
}
184182

185183
size_t fwrite_buffer(char *ptr, size_t eltsize, size_t nmemb, void *buffer_)

http.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ struct buffer {
4040
size_t fread_buffer(char *ptr, size_t eltsize, size_t nmemb, void *strbuf);
4141
size_t fwrite_buffer(char *ptr, size_t eltsize, size_t nmemb, void *strbuf);
4242
size_t fwrite_null(char *ptr, size_t eltsize, size_t nmemb, void *strbuf);
43-
curlioerr ioctl_buffer(CURL *handle, int cmd, void *clientp);
43+
int seek_buffer(void *clientp, curl_off_t offset, int origin);
4444

4545
/* Slot lifecycle functions */
4646
struct active_request_slot *get_active_slot(void);

remote-curl.c

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -717,25 +717,23 @@ static size_t rpc_out(void *ptr, size_t eltsize,
717717
return avail;
718718
}
719719

720-
static curlioerr rpc_ioctl(CURL *handle, int cmd, void *clientp)
720+
static int rpc_seek(void *clientp, curl_off_t offset, int origin)
721721
{
722722
struct rpc_state *rpc = clientp;
723723

724-
switch (cmd) {
725-
case CURLIOCMD_NOP:
726-
return CURLIOE_OK;
724+
if (origin != SEEK_SET)
725+
BUG("rpc_seek only handles SEEK_SET, not %d", origin);
727726

728-
case CURLIOCMD_RESTARTREAD:
729-
if (rpc->initial_buffer) {
730-
rpc->pos = 0;
731-
return CURLIOE_OK;
727+
if (rpc->initial_buffer) {
728+
if (offset < 0 || offset > rpc->len) {
729+
error("curl seek would be outside of rpc buffer");
730+
return CURL_SEEKFUNC_FAIL;
732731
}
733-
error(_("unable to rewind rpc post data - try increasing http.postBuffer"));
734-
return CURLIOE_FAILRESTART;
735-
736-
default:
737-
return CURLIOE_UNKNOWNCMD;
732+
rpc->pos = offset;
733+
return CURL_SEEKFUNC_OK;
738734
}
735+
error(_("unable to rewind rpc post data - try increasing http.postBuffer"));
736+
return CURL_SEEKFUNC_FAIL;
739737
}
740738

741739
struct check_pktline_state {
@@ -959,8 +957,8 @@ static int post_rpc(struct rpc_state *rpc, int stateless_connect, int flush_rece
959957
rpc->initial_buffer = 1;
960958
curl_easy_setopt(slot->curl, CURLOPT_READFUNCTION, rpc_out);
961959
curl_easy_setopt(slot->curl, CURLOPT_INFILE, rpc);
962-
curl_easy_setopt(slot->curl, CURLOPT_IOCTLFUNCTION, rpc_ioctl);
963-
curl_easy_setopt(slot->curl, CURLOPT_IOCTLDATA, rpc);
960+
curl_easy_setopt(slot->curl, CURLOPT_SEEKFUNCTION, rpc_seek);
961+
curl_easy_setopt(slot->curl, CURLOPT_SEEKDATA, rpc);
964962
if (options.verbosity > 1) {
965963
fprintf(stderr, "POST %s (chunked)\n", rpc->service_name);
966964
fflush(stderr);

0 commit comments

Comments
 (0)