Skip to content

Commit 22e3222

Browse files
committed
Merge pull request #2535 from dscho/schannel-revoke-best-effort
Introduce and use the new "best effort" strategy for Secure Channel revoke checking
2 parents 615ac2c + e791e30 commit 22e3222

File tree

2 files changed

+29
-9
lines changed

2 files changed

+29
-9
lines changed

Documentation/config/http.txt

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -189,11 +189,13 @@ http.sslBackend::
189189

190190
http.schannelCheckRevoke::
191191
Used to enforce or disable certificate revocation checks in cURL
192-
when http.sslBackend is set to "schannel". Defaults to `true` if
193-
unset. Only necessary to disable this if Git consistently errors
194-
and the message is about checking the revocation status of a
195-
certificate. This option is ignored if cURL lacks support for
196-
setting the relevant SSL option at runtime.
192+
when http.sslBackend is set to "schannel" via "true" and "false",
193+
respectively. Another accepted value is "best-effort" (the default)
194+
in which case revocation checks are performed, but errors due to
195+
revocation list distribution points that are offline are silently
196+
ignored, as well as errors due to certificates missing revocation
197+
list distribution points. This option is ignored if cURL lacks
198+
support for setting the relevant SSL option at runtime.
197199

198200
http.schannelUseSSLCAInfo::
199201
As of cURL v7.60.0, the Secure Channel backend can use the

http.c

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,13 @@ static char *cached_accept_language;
136136

137137
static char *http_ssl_backend;
138138

139-
static int http_schannel_check_revoke = 1;
139+
static int http_schannel_check_revoke_mode =
140+
#ifdef CURLSSLOPT_REVOKE_BEST_EFFORT
141+
CURLSSLOPT_REVOKE_BEST_EFFORT;
142+
#else
143+
CURLSSLOPT_NO_REVOKE;
144+
#endif
145+
140146
/*
141147
* With the backend being set to `schannel`, setting sslCAinfo would override
142148
* the Certificate Store in cURL v7.60.0 and later, which is not what we want
@@ -285,7 +291,19 @@ static int http_options(const char *var, const char *value, void *cb)
285291
}
286292

287293
if (!strcmp("http.schannelcheckrevoke", var)) {
288-
http_schannel_check_revoke = git_config_bool(var, value);
294+
if (value && !strcmp(value, "best-effort")) {
295+
http_schannel_check_revoke_mode =
296+
#ifdef CURLSSLOPT_REVOKE_BEST_EFFORT
297+
CURLSSLOPT_REVOKE_BEST_EFFORT;
298+
#else
299+
CURLSSLOPT_NO_REVOKE;
300+
warning(_("%s=%s unsupported by current cURL"),
301+
var, value);
302+
#endif
303+
} else
304+
http_schannel_check_revoke_mode =
305+
(git_config_bool(var, value) ?
306+
0 : CURLSSLOPT_NO_REVOKE);
289307
return 0;
290308
}
291309

@@ -869,9 +887,9 @@ static CURL *get_curl_handle(void)
869887
#endif
870888

871889
if (http_ssl_backend && !strcmp("schannel", http_ssl_backend) &&
872-
!http_schannel_check_revoke) {
890+
http_schannel_check_revoke_mode) {
873891
#ifdef GIT_CURL_HAVE_CURLSSLOPT_NO_REVOKE
874-
curl_easy_setopt(result, CURLOPT_SSL_OPTIONS, CURLSSLOPT_NO_REVOKE);
892+
curl_easy_setopt(result, CURLOPT_SSL_OPTIONS, http_schannel_check_revoke_mode);
875893
#else
876894
warning(_("CURLSSLOPT_NO_REVOKE not supported with cURL < 7.44.0"));
877895
#endif

0 commit comments

Comments
 (0)