Skip to content

Commit 07f91e5

Browse files
peffdscho
authored andcommitted
http: support CURLOPT_PROTOCOLS_STR
The CURLOPT_PROTOCOLS (and matching CURLOPT_REDIR_PROTOCOLS) flag was deprecated in curl 7.85.0, and using it generate compiler warnings as of curl 7.87.0. The path forward is to use CURLOPT_PROTOCOLS_STR, but we can't just do so unilaterally, as it was only introduced less than a year ago in 7.85.0. Until that version becomes ubiquitous, we have to either disable the deprecation warning or conditionally use the "STR" variant on newer versions of libcurl. This patch switches to the new variant, which is nice for two reasons: - we don't have to worry that silencing curl's deprecation warnings might cause us to miss other more useful ones - we'd eventually want to move to the new variant anyway, so this gets us set up (albeit with some extra ugly boilerplate for the conditional) There are a lot of ways to split up the two cases. One way would be to abstract the storage type (strbuf versus a long), how to append (strbuf_addstr vs bitwise OR), how to initialize, which CURLOPT to use, and so on. But the resulting code looks pretty magical: GIT_CURL_PROTOCOL_TYPE allowed = GIT_CURL_PROTOCOL_TYPE_INIT; if (...http is allowed...) GIT_CURL_PROTOCOL_APPEND(&allowed, "http", CURLOPT_HTTP); and you end up with more "#define GIT_CURL_PROTOCOL_TYPE" macros than actual code. On the other end of the spectrum, we could just implement two separate functions, one that handles a string list and one that handles bits. But then we end up repeating our list of protocols (http, https, ftp, ftp). This patch takes the middle ground. The run-time code is always there to handle both types, and we just choose which one to feed to curl. Signed-off-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]> Signed-off-by: Johannes Schindelin <[email protected]>
1 parent b0e3e2d commit 07f91e5

File tree

1 file changed

+44
-13
lines changed

1 file changed

+44
-13
lines changed

http.c

Lines changed: 44 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -808,20 +808,37 @@ void setup_curl_trace(CURL *handle)
808808
}
809809

810810
#ifdef CURLPROTO_HTTP
811-
static long get_curl_allowed_protocols(int from_user)
811+
static void proto_list_append(struct strbuf *list, const char *proto)
812812
{
813-
long allowed_protocols = 0;
813+
if (!list)
814+
return;
815+
if (list->len)
816+
strbuf_addch(list, ',');
817+
strbuf_addstr(list, proto);
818+
}
819+
820+
static long get_curl_allowed_protocols(int from_user, struct strbuf *list)
821+
{
822+
long bits = 0;
814823

815-
if (is_transport_allowed("http", from_user))
816-
allowed_protocols |= CURLPROTO_HTTP;
817-
if (is_transport_allowed("https", from_user))
818-
allowed_protocols |= CURLPROTO_HTTPS;
819-
if (is_transport_allowed("ftp", from_user))
820-
allowed_protocols |= CURLPROTO_FTP;
821-
if (is_transport_allowed("ftps", from_user))
822-
allowed_protocols |= CURLPROTO_FTPS;
824+
if (is_transport_allowed("http", from_user)) {
825+
bits |= CURLPROTO_HTTP;
826+
proto_list_append(list, "http");
827+
}
828+
if (is_transport_allowed("https", from_user)) {
829+
bits |= CURLPROTO_HTTPS;
830+
proto_list_append(list, "https");
831+
}
832+
if (is_transport_allowed("ftp", from_user)) {
833+
bits |= CURLPROTO_FTP;
834+
proto_list_append(list, "ftp");
835+
}
836+
if (is_transport_allowed("ftps", from_user)) {
837+
bits |= CURLPROTO_FTPS;
838+
proto_list_append(list, "ftps");
839+
}
823840

824-
return allowed_protocols;
841+
return bits;
825842
}
826843
#endif
827844

@@ -979,10 +996,24 @@ static CURL *get_curl_handle(void)
979996
curl_easy_setopt(result, CURLOPT_POST301, 1);
980997
#endif
981998
#ifdef CURLPROTO_HTTP
999+
#if LIBCURL_VERSION_NUM >= 0x075500
1000+
{
1001+
struct strbuf buf = STRBUF_INIT;
1002+
1003+
get_curl_allowed_protocols(0, &buf);
1004+
curl_easy_setopt(result, CURLOPT_REDIR_PROTOCOLS_STR, buf.buf);
1005+
strbuf_reset(&buf);
1006+
1007+
get_curl_allowed_protocols(-1, &buf);
1008+
curl_easy_setopt(result, CURLOPT_PROTOCOLS_STR, buf.buf);
1009+
strbuf_release(&buf);
1010+
}
1011+
#else
9821012
curl_easy_setopt(result, CURLOPT_REDIR_PROTOCOLS,
983-
get_curl_allowed_protocols(0));
1013+
get_curl_allowed_protocols(0, NULL));
9841014
curl_easy_setopt(result, CURLOPT_PROTOCOLS,
985-
get_curl_allowed_protocols(-1));
1015+
get_curl_allowed_protocols(-1, NULL));
1016+
#endif
9861017
#else
9871018
warning(_("Protocol restrictions not supported with cURL < 7.19.4"));
9881019
#endif

0 commit comments

Comments
 (0)