1 #include "git-compat-util.h"
5 #include "run-command.h"
8 #include "credential.h"
14 size_t http_post_buffer
= 16 * LARGE_PACKET_MAX
;
16 #if LIBCURL_VERSION_NUM >= 0x070a06
17 #define LIBCURL_CAN_HANDLE_AUTH_ANY
20 static int min_curl_sessions
= 1;
21 static int curl_session_count
;
23 static int max_requests
= -1;
26 #ifndef NO_CURL_EASY_DUPHANDLE
27 static CURL
*curl_default
;
30 #define PREV_BUF_SIZE 4096
31 #define RANGE_HEADER_SIZE 30
33 char curl_errorstr
[CURL_ERROR_SIZE
];
35 static int curl_ssl_verify
= -1;
36 static int curl_ssl_try
;
37 static const char *ssl_cert
;
38 static const char *ssl_cipherlist
;
39 #if LIBCURL_VERSION_NUM >= 0x070903
40 static const char *ssl_key
;
42 #if LIBCURL_VERSION_NUM >= 0x070908
43 static const char *ssl_capath
;
45 static const char *ssl_cainfo
;
46 static long curl_low_speed_limit
= -1;
47 static long curl_low_speed_time
= -1;
48 static int curl_ftp_no_epsv
;
49 static const char *curl_http_proxy
;
50 static const char *curl_cookie_file
;
51 static int curl_save_cookies
;
52 struct credential http_auth
= CREDENTIAL_INIT
;
53 static int http_proactive_auth
;
54 static const char *user_agent
;
56 #if LIBCURL_VERSION_NUM >= 0x071700
57 /* Use CURLOPT_KEYPASSWD as is */
58 #elif LIBCURL_VERSION_NUM >= 0x070903
59 #define CURLOPT_KEYPASSWD CURLOPT_SSLKEYPASSWD
61 #define CURLOPT_KEYPASSWD CURLOPT_SSLCERTPASSWD
64 static struct credential cert_auth
= CREDENTIAL_INIT
;
65 static int ssl_cert_password_required
;
66 #ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
67 static unsigned long http_auth_methods
= CURLAUTH_ANY
;
70 static struct curl_slist
*pragma_header
;
71 static struct curl_slist
*no_pragma_header
;
73 static struct active_request_slot
*active_queue_head
;
75 size_t fread_buffer(char *ptr
, size_t eltsize
, size_t nmemb
, void *buffer_
)
77 size_t size
= eltsize
* nmemb
;
78 struct buffer
*buffer
= buffer_
;
80 if (size
> buffer
->buf
.len
- buffer
->posn
)
81 size
= buffer
->buf
.len
- buffer
->posn
;
82 memcpy(ptr
, buffer
->buf
.buf
+ buffer
->posn
, size
);
89 curlioerr
ioctl_buffer(CURL
*handle
, int cmd
, void *clientp
)
91 struct buffer
*buffer
= clientp
;
97 case CURLIOCMD_RESTARTREAD
:
102 return CURLIOE_UNKNOWNCMD
;
107 size_t fwrite_buffer(char *ptr
, size_t eltsize
, size_t nmemb
, void *buffer_
)
109 size_t size
= eltsize
* nmemb
;
110 struct strbuf
*buffer
= buffer_
;
112 strbuf_add(buffer
, ptr
, size
);
116 size_t fwrite_null(char *ptr
, size_t eltsize
, size_t nmemb
, void *strbuf
)
118 return eltsize
* nmemb
;
121 #ifdef USE_CURL_MULTI
122 static void process_curl_messages(void)
125 struct active_request_slot
*slot
;
126 CURLMsg
*curl_message
= curl_multi_info_read(curlm
, &num_messages
);
128 while (curl_message
!= NULL
) {
129 if (curl_message
->msg
== CURLMSG_DONE
) {
130 int curl_result
= curl_message
->data
.result
;
131 slot
= active_queue_head
;
132 while (slot
!= NULL
&&
133 slot
->curl
!= curl_message
->easy_handle
)
136 curl_multi_remove_handle(curlm
, slot
->curl
);
137 slot
->curl_result
= curl_result
;
138 finish_active_slot(slot
);
140 fprintf(stderr
, "Received DONE message for unknown request!\n");
143 fprintf(stderr
, "Unknown CURL message received: %d\n",
144 (int)curl_message
->msg
);
146 curl_message
= curl_multi_info_read(curlm
, &num_messages
);
151 static int http_options(const char *var
, const char *value
, void *cb
)
153 if (!strcmp("http.sslverify", var
)) {
154 curl_ssl_verify
= git_config_bool(var
, value
);
157 if (!strcmp("http.sslcipherlist", var
))
158 return git_config_string(&ssl_cipherlist
, var
, value
);
159 if (!strcmp("http.sslcert", var
))
160 return git_config_string(&ssl_cert
, var
, value
);
161 #if LIBCURL_VERSION_NUM >= 0x070903
162 if (!strcmp("http.sslkey", var
))
163 return git_config_string(&ssl_key
, var
, value
);
165 #if LIBCURL_VERSION_NUM >= 0x070908
166 if (!strcmp("http.sslcapath", var
))
167 return git_config_string(&ssl_capath
, var
, value
);
169 if (!strcmp("http.sslcainfo", var
))
170 return git_config_string(&ssl_cainfo
, var
, value
);
171 if (!strcmp("http.sslcertpasswordprotected", var
)) {
172 ssl_cert_password_required
= git_config_bool(var
, value
);
175 if (!strcmp("http.ssltry", var
)) {
176 curl_ssl_try
= git_config_bool(var
, value
);
179 if (!strcmp("http.minsessions", var
)) {
180 min_curl_sessions
= git_config_int(var
, value
);
181 #ifndef USE_CURL_MULTI
182 if (min_curl_sessions
> 1)
183 min_curl_sessions
= 1;
187 #ifdef USE_CURL_MULTI
188 if (!strcmp("http.maxrequests", var
)) {
189 max_requests
= git_config_int(var
, value
);
193 if (!strcmp("http.lowspeedlimit", var
)) {
194 curl_low_speed_limit
= (long)git_config_int(var
, value
);
197 if (!strcmp("http.lowspeedtime", var
)) {
198 curl_low_speed_time
= (long)git_config_int(var
, value
);
202 if (!strcmp("http.noepsv", var
)) {
203 curl_ftp_no_epsv
= git_config_bool(var
, value
);
206 if (!strcmp("http.proxy", var
))
207 return git_config_string(&curl_http_proxy
, var
, value
);
209 if (!strcmp("http.cookiefile", var
))
210 return git_config_string(&curl_cookie_file
, var
, value
);
211 if (!strcmp("http.savecookies", var
)) {
212 curl_save_cookies
= git_config_bool(var
, value
);
216 if (!strcmp("http.postbuffer", var
)) {
217 http_post_buffer
= git_config_int(var
, value
);
218 if (http_post_buffer
< LARGE_PACKET_MAX
)
219 http_post_buffer
= LARGE_PACKET_MAX
;
223 if (!strcmp("http.useragent", var
))
224 return git_config_string(&user_agent
, var
, value
);
226 /* Fall back on the default ones */
227 return git_default_config(var
, value
, cb
);
230 static void init_curl_http_auth(CURL
*result
)
232 if (!http_auth
.username
)
235 credential_fill(&http_auth
);
237 #if LIBCURL_VERSION_NUM >= 0x071301
238 curl_easy_setopt(result
, CURLOPT_USERNAME
, http_auth
.username
);
239 curl_easy_setopt(result
, CURLOPT_PASSWORD
, http_auth
.password
);
242 static struct strbuf up
= STRBUF_INIT
;
244 * Note that we assume we only ever have a single set of
245 * credentials in a given program run, so we do not have
246 * to worry about updating this buffer, only setting its
250 strbuf_addf(&up
, "%s:%s",
251 http_auth
.username
, http_auth
.password
);
252 curl_easy_setopt(result
, CURLOPT_USERPWD
, up
.buf
);
257 static int has_cert_password(void)
259 if (ssl_cert
== NULL
|| ssl_cert_password_required
!= 1)
261 if (!cert_auth
.password
) {
262 cert_auth
.protocol
= xstrdup("cert");
263 cert_auth
.username
= xstrdup("");
264 cert_auth
.path
= xstrdup(ssl_cert
);
265 credential_fill(&cert_auth
);
270 #if LIBCURL_VERSION_NUM >= 0x071900
271 static void set_curl_keepalive(CURL
*c
)
273 curl_easy_setopt(c
, CURLOPT_TCP_KEEPALIVE
, 1);
276 #elif LIBCURL_VERSION_NUM >= 0x071000
277 static int sockopt_callback(void *client
, curl_socket_t fd
, curlsocktype type
)
281 socklen_t len
= (socklen_t
)sizeof(ka
);
283 if (type
!= CURLSOCKTYPE_IPCXN
)
286 rc
= setsockopt(fd
, SOL_SOCKET
, SO_KEEPALIVE
, (void *)&ka
, len
);
288 warning("unable to set SO_KEEPALIVE on socket %s",
291 return 0; /* CURL_SOCKOPT_OK only exists since curl 7.21.5 */
294 static void set_curl_keepalive(CURL
*c
)
296 curl_easy_setopt(c
, CURLOPT_SOCKOPTFUNCTION
, sockopt_callback
);
300 static void set_curl_keepalive(CURL
*c
)
302 /* not supported on older curl versions */
306 static CURL
*get_curl_handle(void)
308 CURL
*result
= curl_easy_init();
311 die("curl_easy_init failed");
313 if (!curl_ssl_verify
) {
314 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYPEER
, 0);
315 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYHOST
, 0);
317 /* Verify authenticity of the peer's certificate */
318 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYPEER
, 1);
319 /* The name in the cert must match whom we tried to connect */
320 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYHOST
, 2);
323 #if LIBCURL_VERSION_NUM >= 0x070907
324 curl_easy_setopt(result
, CURLOPT_NETRC
, CURL_NETRC_OPTIONAL
);
326 #ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
327 curl_easy_setopt(result
, CURLOPT_HTTPAUTH
, CURLAUTH_ANY
);
330 if (http_proactive_auth
)
331 init_curl_http_auth(result
);
333 if (getenv("GIT_SSL_CIPHER_LIST"))
334 ssl_cipherlist
= getenv("GIT_SSL_CIPHER_LIST");
336 if (ssl_cipherlist
!= NULL
&& *ssl_cipherlist
)
337 curl_easy_setopt(result
, CURLOPT_SSL_CIPHER_LIST
,
340 if (ssl_cert
!= NULL
)
341 curl_easy_setopt(result
, CURLOPT_SSLCERT
, ssl_cert
);
342 if (has_cert_password())
343 curl_easy_setopt(result
, CURLOPT_KEYPASSWD
, cert_auth
.password
);
344 #if LIBCURL_VERSION_NUM >= 0x070903
346 curl_easy_setopt(result
, CURLOPT_SSLKEY
, ssl_key
);
348 #if LIBCURL_VERSION_NUM >= 0x070908
349 if (ssl_capath
!= NULL
)
350 curl_easy_setopt(result
, CURLOPT_CAPATH
, ssl_capath
);
352 if (ssl_cainfo
!= NULL
)
353 curl_easy_setopt(result
, CURLOPT_CAINFO
, ssl_cainfo
);
355 if (curl_low_speed_limit
> 0 && curl_low_speed_time
> 0) {
356 curl_easy_setopt(result
, CURLOPT_LOW_SPEED_LIMIT
,
357 curl_low_speed_limit
);
358 curl_easy_setopt(result
, CURLOPT_LOW_SPEED_TIME
,
359 curl_low_speed_time
);
362 curl_easy_setopt(result
, CURLOPT_FOLLOWLOCATION
, 1);
363 #if LIBCURL_VERSION_NUM >= 0x071301
364 curl_easy_setopt(result
, CURLOPT_POSTREDIR
, CURL_REDIR_POST_ALL
);
365 #elif LIBCURL_VERSION_NUM >= 0x071101
366 curl_easy_setopt(result
, CURLOPT_POST301
, 1);
369 if (getenv("GIT_CURL_VERBOSE"))
370 curl_easy_setopt(result
, CURLOPT_VERBOSE
, 1);
372 curl_easy_setopt(result
, CURLOPT_USERAGENT
,
373 user_agent
? user_agent
: git_user_agent());
375 if (curl_ftp_no_epsv
)
376 curl_easy_setopt(result
, CURLOPT_FTP_USE_EPSV
, 0);
378 #ifdef CURLOPT_USE_SSL
380 curl_easy_setopt(result
, CURLOPT_USE_SSL
, CURLUSESSL_TRY
);
383 if (curl_http_proxy
) {
384 curl_easy_setopt(result
, CURLOPT_PROXY
, curl_http_proxy
);
385 curl_easy_setopt(result
, CURLOPT_PROXYAUTH
, CURLAUTH_ANY
);
388 set_curl_keepalive(result
);
393 static void set_from_env(const char **var
, const char *envname
)
395 const char *val
= getenv(envname
);
400 void http_init(struct remote
*remote
, const char *url
, int proactive_auth
)
402 char *low_speed_limit
;
403 char *low_speed_time
;
404 char *normalized_url
;
405 struct urlmatch_config config
= { STRING_LIST_INIT_DUP
};
407 config
.section
= "http";
409 config
.collect_fn
= http_options
;
410 config
.cascade_fn
= git_default_config
;
414 normalized_url
= url_normalize(url
, &config
.url
);
416 git_config(urlmatch_config_entry
, &config
);
417 free(normalized_url
);
419 if (curl_global_init(CURL_GLOBAL_ALL
) != CURLE_OK
)
420 die("curl_global_init failed");
422 http_proactive_auth
= proactive_auth
;
424 if (remote
&& remote
->http_proxy
)
425 curl_http_proxy
= xstrdup(remote
->http_proxy
);
427 pragma_header
= curl_slist_append(pragma_header
, "Pragma: no-cache");
428 no_pragma_header
= curl_slist_append(no_pragma_header
, "Pragma:");
430 #ifdef USE_CURL_MULTI
432 char *http_max_requests
= getenv("GIT_HTTP_MAX_REQUESTS");
433 if (http_max_requests
!= NULL
)
434 max_requests
= atoi(http_max_requests
);
437 curlm
= curl_multi_init();
439 die("curl_multi_init failed");
442 if (getenv("GIT_SSL_NO_VERIFY"))
445 set_from_env(&ssl_cert
, "GIT_SSL_CERT");
446 #if LIBCURL_VERSION_NUM >= 0x070903
447 set_from_env(&ssl_key
, "GIT_SSL_KEY");
449 #if LIBCURL_VERSION_NUM >= 0x070908
450 set_from_env(&ssl_capath
, "GIT_SSL_CAPATH");
452 set_from_env(&ssl_cainfo
, "GIT_SSL_CAINFO");
454 set_from_env(&user_agent
, "GIT_HTTP_USER_AGENT");
456 low_speed_limit
= getenv("GIT_HTTP_LOW_SPEED_LIMIT");
457 if (low_speed_limit
!= NULL
)
458 curl_low_speed_limit
= strtol(low_speed_limit
, NULL
, 10);
459 low_speed_time
= getenv("GIT_HTTP_LOW_SPEED_TIME");
460 if (low_speed_time
!= NULL
)
461 curl_low_speed_time
= strtol(low_speed_time
, NULL
, 10);
463 if (curl_ssl_verify
== -1)
466 curl_session_count
= 0;
467 #ifdef USE_CURL_MULTI
468 if (max_requests
< 1)
469 max_requests
= DEFAULT_MAX_REQUESTS
;
472 if (getenv("GIT_CURL_FTP_NO_EPSV"))
473 curl_ftp_no_epsv
= 1;
476 credential_from_url(&http_auth
, url
);
477 if (!ssl_cert_password_required
&&
478 getenv("GIT_SSL_CERT_PASSWORD_PROTECTED") &&
479 starts_with(url
, "https://"))
480 ssl_cert_password_required
= 1;
483 #ifndef NO_CURL_EASY_DUPHANDLE
484 curl_default
= get_curl_handle();
488 void http_cleanup(void)
490 struct active_request_slot
*slot
= active_queue_head
;
492 while (slot
!= NULL
) {
493 struct active_request_slot
*next
= slot
->next
;
494 if (slot
->curl
!= NULL
) {
495 #ifdef USE_CURL_MULTI
496 curl_multi_remove_handle(curlm
, slot
->curl
);
498 curl_easy_cleanup(slot
->curl
);
503 active_queue_head
= NULL
;
505 #ifndef NO_CURL_EASY_DUPHANDLE
506 curl_easy_cleanup(curl_default
);
509 #ifdef USE_CURL_MULTI
510 curl_multi_cleanup(curlm
);
512 curl_global_cleanup();
514 curl_slist_free_all(pragma_header
);
515 pragma_header
= NULL
;
517 curl_slist_free_all(no_pragma_header
);
518 no_pragma_header
= NULL
;
520 if (curl_http_proxy
) {
521 free((void *)curl_http_proxy
);
522 curl_http_proxy
= NULL
;
525 if (cert_auth
.password
!= NULL
) {
526 memset(cert_auth
.password
, 0, strlen(cert_auth
.password
));
527 free(cert_auth
.password
);
528 cert_auth
.password
= NULL
;
530 ssl_cert_password_required
= 0;
533 struct active_request_slot
*get_active_slot(void)
535 struct active_request_slot
*slot
= active_queue_head
;
536 struct active_request_slot
*newslot
;
538 #ifdef USE_CURL_MULTI
541 /* Wait for a slot to open up if the queue is full */
542 while (active_requests
>= max_requests
) {
543 curl_multi_perform(curlm
, &num_transfers
);
544 if (num_transfers
< active_requests
)
545 process_curl_messages();
549 while (slot
!= NULL
&& slot
->in_use
)
553 newslot
= xmalloc(sizeof(*newslot
));
554 newslot
->curl
= NULL
;
556 newslot
->next
= NULL
;
558 slot
= active_queue_head
;
560 active_queue_head
= newslot
;
562 while (slot
->next
!= NULL
)
564 slot
->next
= newslot
;
569 if (slot
->curl
== NULL
) {
570 #ifdef NO_CURL_EASY_DUPHANDLE
571 slot
->curl
= get_curl_handle();
573 slot
->curl
= curl_easy_duphandle(curl_default
);
575 curl_session_count
++;
580 slot
->results
= NULL
;
581 slot
->finished
= NULL
;
582 slot
->callback_data
= NULL
;
583 slot
->callback_func
= NULL
;
584 curl_easy_setopt(slot
->curl
, CURLOPT_COOKIEFILE
, curl_cookie_file
);
585 if (curl_save_cookies
)
586 curl_easy_setopt(slot
->curl
, CURLOPT_COOKIEJAR
, curl_cookie_file
);
587 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, pragma_header
);
588 curl_easy_setopt(slot
->curl
, CURLOPT_ERRORBUFFER
, curl_errorstr
);
589 curl_easy_setopt(slot
->curl
, CURLOPT_CUSTOMREQUEST
, NULL
);
590 curl_easy_setopt(slot
->curl
, CURLOPT_READFUNCTION
, NULL
);
591 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, NULL
);
592 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, NULL
);
593 curl_easy_setopt(slot
->curl
, CURLOPT_UPLOAD
, 0);
594 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPGET
, 1);
595 curl_easy_setopt(slot
->curl
, CURLOPT_FAILONERROR
, 1);
596 #ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
597 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPAUTH
, http_auth_methods
);
599 if (http_auth
.password
)
600 init_curl_http_auth(slot
->curl
);
605 int start_active_slot(struct active_request_slot
*slot
)
607 #ifdef USE_CURL_MULTI
608 CURLMcode curlm_result
= curl_multi_add_handle(curlm
, slot
->curl
);
611 if (curlm_result
!= CURLM_OK
&&
612 curlm_result
!= CURLM_CALL_MULTI_PERFORM
) {
619 * We know there must be something to do, since we just added
622 curl_multi_perform(curlm
, &num_transfers
);
627 #ifdef USE_CURL_MULTI
631 struct fill_chain
*next
;
634 static struct fill_chain
*fill_cfg
;
636 void add_fill_function(void *data
, int (*fill
)(void *))
638 struct fill_chain
*new = xmalloc(sizeof(*new));
639 struct fill_chain
**linkp
= &fill_cfg
;
644 linkp
= &(*linkp
)->next
;
648 void fill_active_slots(void)
650 struct active_request_slot
*slot
= active_queue_head
;
652 while (active_requests
< max_requests
) {
653 struct fill_chain
*fill
;
654 for (fill
= fill_cfg
; fill
; fill
= fill
->next
)
655 if (fill
->fill(fill
->data
))
662 while (slot
!= NULL
) {
663 if (!slot
->in_use
&& slot
->curl
!= NULL
664 && curl_session_count
> min_curl_sessions
) {
665 curl_easy_cleanup(slot
->curl
);
667 curl_session_count
--;
673 void step_active_slots(void)
676 CURLMcode curlm_result
;
679 curlm_result
= curl_multi_perform(curlm
, &num_transfers
);
680 } while (curlm_result
== CURLM_CALL_MULTI_PERFORM
);
681 if (num_transfers
< active_requests
) {
682 process_curl_messages();
688 void run_active_slot(struct active_request_slot
*slot
)
690 #ifdef USE_CURL_MULTI
695 struct timeval select_timeout
;
698 slot
->finished
= &finished
;
703 #if LIBCURL_VERSION_NUM >= 0x070f04
705 curl_multi_timeout(curlm
, &curl_timeout
);
706 if (curl_timeout
== 0) {
708 } else if (curl_timeout
== -1) {
709 select_timeout
.tv_sec
= 0;
710 select_timeout
.tv_usec
= 50000;
712 select_timeout
.tv_sec
= curl_timeout
/ 1000;
713 select_timeout
.tv_usec
= (curl_timeout
% 1000) * 1000;
716 select_timeout
.tv_sec
= 0;
717 select_timeout
.tv_usec
= 50000;
724 curl_multi_fdset(curlm
, &readfds
, &writefds
, &excfds
, &max_fd
);
727 * It can happen that curl_multi_timeout returns a pathologically
728 * long timeout when curl_multi_fdset returns no file descriptors
729 * to read. See commit message for more details.
732 (select_timeout
.tv_sec
> 0 ||
733 select_timeout
.tv_usec
> 50000)) {
734 select_timeout
.tv_sec
= 0;
735 select_timeout
.tv_usec
= 50000;
738 select(max_fd
+1, &readfds
, &writefds
, &excfds
, &select_timeout
);
742 while (slot
->in_use
) {
743 slot
->curl_result
= curl_easy_perform(slot
->curl
);
744 finish_active_slot(slot
);
749 static void closedown_active_slot(struct active_request_slot
*slot
)
755 static void release_active_slot(struct active_request_slot
*slot
)
757 closedown_active_slot(slot
);
758 if (slot
->curl
&& curl_session_count
> min_curl_sessions
) {
759 #ifdef USE_CURL_MULTI
760 curl_multi_remove_handle(curlm
, slot
->curl
);
762 curl_easy_cleanup(slot
->curl
);
764 curl_session_count
--;
766 #ifdef USE_CURL_MULTI
771 void finish_active_slot(struct active_request_slot
*slot
)
773 closedown_active_slot(slot
);
774 curl_easy_getinfo(slot
->curl
, CURLINFO_HTTP_CODE
, &slot
->http_code
);
776 if (slot
->finished
!= NULL
)
777 (*slot
->finished
) = 1;
779 /* Store slot results so they can be read after the slot is reused */
780 if (slot
->results
!= NULL
) {
781 slot
->results
->curl_result
= slot
->curl_result
;
782 slot
->results
->http_code
= slot
->http_code
;
783 #if LIBCURL_VERSION_NUM >= 0x070a08
784 curl_easy_getinfo(slot
->curl
, CURLINFO_HTTPAUTH_AVAIL
,
785 &slot
->results
->auth_avail
);
787 slot
->results
->auth_avail
= 0;
791 /* Run callback if appropriate */
792 if (slot
->callback_func
!= NULL
)
793 slot
->callback_func(slot
->callback_data
);
796 void finish_all_active_slots(void)
798 struct active_request_slot
*slot
= active_queue_head
;
802 run_active_slot(slot
);
803 slot
= active_queue_head
;
809 /* Helpers for modifying and creating URLs */
810 static inline int needs_quote(int ch
)
812 if (((ch
>= 'A') && (ch
<= 'Z'))
813 || ((ch
>= 'a') && (ch
<= 'z'))
814 || ((ch
>= '0') && (ch
<= '9'))
822 static char *quote_ref_url(const char *base
, const char *ref
)
824 struct strbuf buf
= STRBUF_INIT
;
828 end_url_with_slash(&buf
, base
);
830 for (cp
= ref
; (ch
= *cp
) != 0; cp
++)
832 strbuf_addf(&buf
, "%%%02x", ch
);
834 strbuf_addch(&buf
, *cp
);
836 return strbuf_detach(&buf
, NULL
);
839 void append_remote_object_url(struct strbuf
*buf
, const char *url
,
841 int only_two_digit_prefix
)
843 end_url_with_slash(buf
, url
);
845 strbuf_addf(buf
, "objects/%.*s/", 2, hex
);
846 if (!only_two_digit_prefix
)
847 strbuf_addf(buf
, "%s", hex
+2);
850 char *get_remote_object_url(const char *url
, const char *hex
,
851 int only_two_digit_prefix
)
853 struct strbuf buf
= STRBUF_INIT
;
854 append_remote_object_url(&buf
, url
, hex
, only_two_digit_prefix
);
855 return strbuf_detach(&buf
, NULL
);
858 int handle_curl_result(struct slot_results
*results
)
861 * If we see a failing http code with CURLE_OK, we have turned off
862 * FAILONERROR (to keep the server's custom error response), and should
863 * translate the code into failure here.
865 if (results
->curl_result
== CURLE_OK
&&
866 results
->http_code
>= 400) {
867 results
->curl_result
= CURLE_HTTP_RETURNED_ERROR
;
869 * Normally curl will already have put the "reason phrase"
870 * from the server into curl_errorstr; unfortunately without
871 * FAILONERROR it is lost, so we can give only the numeric
874 snprintf(curl_errorstr
, sizeof(curl_errorstr
),
875 "The requested URL returned error: %ld",
879 if (results
->curl_result
== CURLE_OK
) {
880 credential_approve(&http_auth
);
882 } else if (missing_target(results
))
883 return HTTP_MISSING_TARGET
;
884 else if (results
->http_code
== 401) {
885 if (http_auth
.username
&& http_auth
.password
) {
886 credential_reject(&http_auth
);
889 #ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
890 http_auth_methods
&= ~CURLAUTH_GSSNEGOTIATE
;
895 #if LIBCURL_VERSION_NUM >= 0x070c00
896 if (!curl_errorstr
[0])
897 strlcpy(curl_errorstr
,
898 curl_easy_strerror(results
->curl_result
),
899 sizeof(curl_errorstr
));
905 int run_one_slot(struct active_request_slot
*slot
,
906 struct slot_results
*results
)
908 slot
->results
= results
;
909 if (!start_active_slot(slot
)) {
910 snprintf(curl_errorstr
, sizeof(curl_errorstr
),
911 "failed to start HTTP request");
912 return HTTP_START_FAILED
;
915 run_active_slot(slot
);
916 return handle_curl_result(results
);
919 static CURLcode
curlinfo_strbuf(CURL
*curl
, CURLINFO info
, struct strbuf
*buf
)
925 ret
= curl_easy_getinfo(curl
, info
, &ptr
);
927 strbuf_addstr(buf
, ptr
);
932 * Check for and extract a content-type parameter. "raw"
933 * should be positioned at the start of the potential
934 * parameter, with any whitespace already removed.
936 * "name" is the name of the parameter. The value is appended
939 static int extract_param(const char *raw
, const char *name
,
942 size_t len
= strlen(name
);
944 if (strncasecmp(raw
, name
, len
))
952 while (*raw
&& !isspace(*raw
) && *raw
!= ';')
953 strbuf_addch(out
, *raw
++);
958 * Extract a normalized version of the content type, with any
959 * spaces suppressed, all letters lowercased, and no trailing ";"
962 * Note that we will silently remove even invalid whitespace. For
963 * example, "text / plain" is specifically forbidden by RFC 2616,
964 * but "text/plain" is the only reasonable output, and this keeps
967 * If the "charset" argument is not NULL, store the value of any
968 * charset parameter there.
971 * "TEXT/PLAIN; charset=utf-8" -> "text/plain", "utf-8"
972 * "text / plain" -> "text/plain"
974 static void extract_content_type(struct strbuf
*raw
, struct strbuf
*type
,
975 struct strbuf
*charset
)
980 strbuf_grow(type
, raw
->len
);
981 for (p
= raw
->buf
; *p
; p
++) {
988 strbuf_addch(type
, tolower(*p
));
994 strbuf_reset(charset
);
996 while (isspace(*p
) || *p
== ';')
998 if (!extract_param(p
, "charset", charset
))
1000 while (*p
&& !isspace(*p
))
1004 if (!charset
->len
&& starts_with(type
->buf
, "text/"))
1005 strbuf_addstr(charset
, "ISO-8859-1");
1009 /* http_request() targets */
1010 #define HTTP_REQUEST_STRBUF 0
1011 #define HTTP_REQUEST_FILE 1
1013 static int http_request(const char *url
,
1014 void *result
, int target
,
1015 const struct http_get_options
*options
)
1017 struct active_request_slot
*slot
;
1018 struct slot_results results
;
1019 struct curl_slist
*headers
= NULL
;
1020 struct strbuf buf
= STRBUF_INIT
;
1023 slot
= get_active_slot();
1024 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPGET
, 1);
1026 if (result
== NULL
) {
1027 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 1);
1029 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
1030 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, result
);
1032 if (target
== HTTP_REQUEST_FILE
) {
1033 long posn
= ftell(result
);
1034 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
,
1037 strbuf_addf(&buf
, "Range: bytes=%ld-", posn
);
1038 headers
= curl_slist_append(headers
, buf
.buf
);
1042 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
,
1046 strbuf_addstr(&buf
, "Pragma:");
1047 if (options
&& options
->no_cache
)
1048 strbuf_addstr(&buf
, " no-cache");
1049 if (options
&& options
->keep_error
)
1050 curl_easy_setopt(slot
->curl
, CURLOPT_FAILONERROR
, 0);
1052 headers
= curl_slist_append(headers
, buf
.buf
);
1054 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
1055 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, headers
);
1056 curl_easy_setopt(slot
->curl
, CURLOPT_ENCODING
, "gzip");
1058 ret
= run_one_slot(slot
, &results
);
1060 if (options
&& options
->content_type
) {
1061 struct strbuf raw
= STRBUF_INIT
;
1062 curlinfo_strbuf(slot
->curl
, CURLINFO_CONTENT_TYPE
, &raw
);
1063 extract_content_type(&raw
, options
->content_type
,
1065 strbuf_release(&raw
);
1068 if (options
&& options
->effective_url
)
1069 curlinfo_strbuf(slot
->curl
, CURLINFO_EFFECTIVE_URL
,
1070 options
->effective_url
);
1072 curl_slist_free_all(headers
);
1073 strbuf_release(&buf
);
1079 * Update the "base" url to a more appropriate value, as deduced by
1080 * redirects seen when requesting a URL starting with "url".
1082 * The "asked" parameter is a URL that we asked curl to access, and must begin
1085 * The "got" parameter is the URL that curl reported to us as where we ended
1088 * Returns 1 if we updated the base url, 0 otherwise.
1090 * Our basic strategy is to compare "base" and "asked" to find the bits
1091 * specific to our request. We then strip those bits off of "got" to yield the
1092 * new base. So for example, if our base is "http://example.com/foo.git",
1093 * and we ask for "http://example.com/foo.git/info/refs", we might end up
1094 * with "https://other.example.com/foo.git/info/refs". We would want the
1095 * new URL to become "https://other.example.com/foo.git".
1097 * Note that this assumes a sane redirect scheme. It's entirely possible
1098 * in the example above to end up at a URL that does not even end in
1099 * "info/refs". In such a case we simply punt, as there is not much we can
1100 * do (and such a scheme is unlikely to represent a real git repository,
1101 * which means we are likely about to abort anyway).
1103 static int update_url_from_redirect(struct strbuf
*base
,
1105 const struct strbuf
*got
)
1110 if (!strcmp(asked
, got
->buf
))
1113 if (!skip_prefix(asked
, base
->buf
, &tail
))
1114 die("BUG: update_url_from_redirect: %s is not a superset of %s",
1117 tail_len
= strlen(tail
);
1119 if (got
->len
< tail_len
||
1120 strcmp(tail
, got
->buf
+ got
->len
- tail_len
))
1121 return 0; /* insane redirect scheme */
1124 strbuf_add(base
, got
->buf
, got
->len
- tail_len
);
1128 static int http_request_reauth(const char *url
,
1129 void *result
, int target
,
1130 struct http_get_options
*options
)
1132 int ret
= http_request(url
, result
, target
, options
);
1134 if (options
&& options
->effective_url
&& options
->base_url
) {
1135 if (update_url_from_redirect(options
->base_url
,
1136 url
, options
->effective_url
)) {
1137 credential_from_url(&http_auth
, options
->base_url
->buf
);
1138 url
= options
->effective_url
->buf
;
1142 if (ret
!= HTTP_REAUTH
)
1146 * If we are using KEEP_ERROR, the previous request may have
1147 * put cruft into our output stream; we should clear it out before
1148 * making our next request. We only know how to do this for
1149 * the strbuf case, but that is enough to satisfy current callers.
1151 if (options
&& options
->keep_error
) {
1153 case HTTP_REQUEST_STRBUF
:
1154 strbuf_reset(result
);
1157 die("BUG: HTTP_KEEP_ERROR is only supported with strbufs");
1161 credential_fill(&http_auth
);
1163 return http_request(url
, result
, target
, options
);
1166 int http_get_strbuf(const char *url
,
1167 struct strbuf
*result
,
1168 struct http_get_options
*options
)
1170 return http_request_reauth(url
, result
, HTTP_REQUEST_STRBUF
, options
);
1174 * Downloads a URL and stores the result in the given file.
1176 * If a previous interrupted download is detected (i.e. a previous temporary
1177 * file is still around) the download is resumed.
1179 static int http_get_file(const char *url
, const char *filename
,
1180 struct http_get_options
*options
)
1183 struct strbuf tmpfile
= STRBUF_INIT
;
1186 strbuf_addf(&tmpfile
, "%s.temp", filename
);
1187 result
= fopen(tmpfile
.buf
, "a");
1189 error("Unable to open local file %s", tmpfile
.buf
);
1194 ret
= http_request_reauth(url
, result
, HTTP_REQUEST_FILE
, options
);
1197 if (ret
== HTTP_OK
&& move_temp_to_file(tmpfile
.buf
, filename
))
1200 strbuf_release(&tmpfile
);
1204 int http_fetch_ref(const char *base
, struct ref
*ref
)
1206 struct http_get_options options
= {0};
1208 struct strbuf buffer
= STRBUF_INIT
;
1211 options
.no_cache
= 1;
1213 url
= quote_ref_url(base
, ref
->name
);
1214 if (http_get_strbuf(url
, &buffer
, &options
) == HTTP_OK
) {
1215 strbuf_rtrim(&buffer
);
1216 if (buffer
.len
== 40)
1217 ret
= get_sha1_hex(buffer
.buf
, ref
->old_sha1
);
1218 else if (starts_with(buffer
.buf
, "ref: ")) {
1219 ref
->symref
= xstrdup(buffer
.buf
+ 5);
1224 strbuf_release(&buffer
);
1229 /* Helpers for fetching packs */
1230 static char *fetch_pack_index(unsigned char *sha1
, const char *base_url
)
1233 struct strbuf buf
= STRBUF_INIT
;
1235 if (http_is_verbose
)
1236 fprintf(stderr
, "Getting index for pack %s\n", sha1_to_hex(sha1
));
1238 end_url_with_slash(&buf
, base_url
);
1239 strbuf_addf(&buf
, "objects/pack/pack-%s.idx", sha1_to_hex(sha1
));
1240 url
= strbuf_detach(&buf
, NULL
);
1242 strbuf_addf(&buf
, "%s.temp", sha1_pack_index_name(sha1
));
1243 tmp
= strbuf_detach(&buf
, NULL
);
1245 if (http_get_file(url
, tmp
, NULL
) != HTTP_OK
) {
1246 error("Unable to get pack index %s", url
);
1255 static int fetch_and_setup_pack_index(struct packed_git
**packs_head
,
1256 unsigned char *sha1
, const char *base_url
)
1258 struct packed_git
*new_pack
;
1259 char *tmp_idx
= NULL
;
1262 if (has_pack_index(sha1
)) {
1263 new_pack
= parse_pack_index(sha1
, sha1_pack_index_name(sha1
));
1265 return -1; /* parse_pack_index() already issued error message */
1269 tmp_idx
= fetch_pack_index(sha1
, base_url
);
1273 new_pack
= parse_pack_index(sha1
, tmp_idx
);
1278 return -1; /* parse_pack_index() already issued error message */
1281 ret
= verify_pack_index(new_pack
);
1283 close_pack_index(new_pack
);
1284 ret
= move_temp_to_file(tmp_idx
, sha1_pack_index_name(sha1
));
1291 new_pack
->next
= *packs_head
;
1292 *packs_head
= new_pack
;
1296 int http_get_info_packs(const char *base_url
, struct packed_git
**packs_head
)
1298 struct http_get_options options
= {0};
1301 struct strbuf buf
= STRBUF_INIT
;
1302 unsigned char sha1
[20];
1304 end_url_with_slash(&buf
, base_url
);
1305 strbuf_addstr(&buf
, "objects/info/packs");
1306 url
= strbuf_detach(&buf
, NULL
);
1308 options
.no_cache
= 1;
1309 ret
= http_get_strbuf(url
, &buf
, &options
);
1314 while (i
< buf
.len
) {
1318 if (i
+ 52 <= buf
.len
&&
1319 starts_with(data
+ i
, " pack-") &&
1320 starts_with(data
+ i
+ 46, ".pack\n")) {
1321 get_sha1_hex(data
+ i
+ 6, sha1
);
1322 fetch_and_setup_pack_index(packs_head
, sha1
,
1328 while (i
< buf
.len
&& data
[i
] != '\n')
1339 void release_http_pack_request(struct http_pack_request
*preq
)
1341 if (preq
->packfile
!= NULL
) {
1342 fclose(preq
->packfile
);
1343 preq
->packfile
= NULL
;
1345 if (preq
->range_header
!= NULL
) {
1346 curl_slist_free_all(preq
->range_header
);
1347 preq
->range_header
= NULL
;
1353 int finish_http_pack_request(struct http_pack_request
*preq
)
1355 struct packed_git
**lst
;
1356 struct packed_git
*p
= preq
->target
;
1358 struct child_process ip
= CHILD_PROCESS_INIT
;
1359 const char *ip_argv
[8];
1361 close_pack_index(p
);
1363 fclose(preq
->packfile
);
1364 preq
->packfile
= NULL
;
1368 lst
= &((*lst
)->next
);
1369 *lst
= (*lst
)->next
;
1371 tmp_idx
= xstrdup(preq
->tmpfile
);
1372 strcpy(tmp_idx
+ strlen(tmp_idx
) - strlen(".pack.temp"),
1375 ip_argv
[0] = "index-pack";
1377 ip_argv
[2] = tmp_idx
;
1378 ip_argv
[3] = preq
->tmpfile
;
1386 if (run_command(&ip
)) {
1387 unlink(preq
->tmpfile
);
1393 unlink(sha1_pack_index_name(p
->sha1
));
1395 if (move_temp_to_file(preq
->tmpfile
, sha1_pack_name(p
->sha1
))
1396 || move_temp_to_file(tmp_idx
, sha1_pack_index_name(p
->sha1
))) {
1401 install_packed_git(p
);
1406 struct http_pack_request
*new_http_pack_request(
1407 struct packed_git
*target
, const char *base_url
)
1410 char range
[RANGE_HEADER_SIZE
];
1411 struct strbuf buf
= STRBUF_INIT
;
1412 struct http_pack_request
*preq
;
1414 preq
= xcalloc(1, sizeof(*preq
));
1415 preq
->target
= target
;
1417 end_url_with_slash(&buf
, base_url
);
1418 strbuf_addf(&buf
, "objects/pack/pack-%s.pack",
1419 sha1_to_hex(target
->sha1
));
1420 preq
->url
= strbuf_detach(&buf
, NULL
);
1422 snprintf(preq
->tmpfile
, sizeof(preq
->tmpfile
), "%s.temp",
1423 sha1_pack_name(target
->sha1
));
1424 preq
->packfile
= fopen(preq
->tmpfile
, "a");
1425 if (!preq
->packfile
) {
1426 error("Unable to open local file %s for pack",
1431 preq
->slot
= get_active_slot();
1432 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_FILE
, preq
->packfile
);
1433 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite
);
1434 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_URL
, preq
->url
);
1435 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_HTTPHEADER
,
1439 * If there is data present from a previous transfer attempt,
1440 * resume where it left off
1442 prev_posn
= ftell(preq
->packfile
);
1444 if (http_is_verbose
)
1446 "Resuming fetch of pack %s at byte %ld\n",
1447 sha1_to_hex(target
->sha1
), prev_posn
);
1448 sprintf(range
, "Range: bytes=%ld-", prev_posn
);
1449 preq
->range_header
= curl_slist_append(NULL
, range
);
1450 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_HTTPHEADER
,
1451 preq
->range_header
);
1462 /* Helpers for fetching objects (loose) */
1463 static size_t fwrite_sha1_file(char *ptr
, size_t eltsize
, size_t nmemb
,
1466 unsigned char expn
[4096];
1467 size_t size
= eltsize
* nmemb
;
1469 struct http_object_request
*freq
=
1470 (struct http_object_request
*)data
;
1472 ssize_t retval
= xwrite(freq
->localfile
,
1473 (char *) ptr
+ posn
, size
- posn
);
1477 } while (posn
< size
);
1479 freq
->stream
.avail_in
= size
;
1480 freq
->stream
.next_in
= (void *)ptr
;
1482 freq
->stream
.next_out
= expn
;
1483 freq
->stream
.avail_out
= sizeof(expn
);
1484 freq
->zret
= git_inflate(&freq
->stream
, Z_SYNC_FLUSH
);
1485 git_SHA1_Update(&freq
->c
, expn
,
1486 sizeof(expn
) - freq
->stream
.avail_out
);
1487 } while (freq
->stream
.avail_in
&& freq
->zret
== Z_OK
);
1491 struct http_object_request
*new_http_object_request(const char *base_url
,
1492 unsigned char *sha1
)
1494 char *hex
= sha1_to_hex(sha1
);
1495 const char *filename
;
1496 char prevfile
[PATH_MAX
];
1498 char prev_buf
[PREV_BUF_SIZE
];
1499 ssize_t prev_read
= 0;
1501 char range
[RANGE_HEADER_SIZE
];
1502 struct curl_slist
*range_header
= NULL
;
1503 struct http_object_request
*freq
;
1505 freq
= xcalloc(1, sizeof(*freq
));
1506 hashcpy(freq
->sha1
, sha1
);
1507 freq
->localfile
= -1;
1509 filename
= sha1_file_name(sha1
);
1510 snprintf(freq
->tmpfile
, sizeof(freq
->tmpfile
),
1511 "%s.temp", filename
);
1513 snprintf(prevfile
, sizeof(prevfile
), "%s.prev", filename
);
1514 unlink_or_warn(prevfile
);
1515 rename(freq
->tmpfile
, prevfile
);
1516 unlink_or_warn(freq
->tmpfile
);
1518 if (freq
->localfile
!= -1)
1519 error("fd leakage in start: %d", freq
->localfile
);
1520 freq
->localfile
= open(freq
->tmpfile
,
1521 O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
1523 * This could have failed due to the "lazy directory creation";
1524 * try to mkdir the last path component.
1526 if (freq
->localfile
< 0 && errno
== ENOENT
) {
1527 char *dir
= strrchr(freq
->tmpfile
, '/');
1530 mkdir(freq
->tmpfile
, 0777);
1533 freq
->localfile
= open(freq
->tmpfile
,
1534 O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
1537 if (freq
->localfile
< 0) {
1538 error("Couldn't create temporary file %s: %s",
1539 freq
->tmpfile
, strerror(errno
));
1543 git_inflate_init(&freq
->stream
);
1545 git_SHA1_Init(&freq
->c
);
1547 freq
->url
= get_remote_object_url(base_url
, hex
, 0);
1550 * If a previous temp file is present, process what was already
1553 prevlocal
= open(prevfile
, O_RDONLY
);
1554 if (prevlocal
!= -1) {
1556 prev_read
= xread(prevlocal
, prev_buf
, PREV_BUF_SIZE
);
1558 if (fwrite_sha1_file(prev_buf
,
1561 freq
) == prev_read
) {
1562 prev_posn
+= prev_read
;
1567 } while (prev_read
> 0);
1570 unlink_or_warn(prevfile
);
1573 * Reset inflate/SHA1 if there was an error reading the previous temp
1574 * file; also rewind to the beginning of the local file.
1576 if (prev_read
== -1) {
1577 memset(&freq
->stream
, 0, sizeof(freq
->stream
));
1578 git_inflate_init(&freq
->stream
);
1579 git_SHA1_Init(&freq
->c
);
1582 lseek(freq
->localfile
, 0, SEEK_SET
);
1583 if (ftruncate(freq
->localfile
, 0) < 0) {
1584 error("Couldn't truncate temporary file %s: %s",
1585 freq
->tmpfile
, strerror(errno
));
1591 freq
->slot
= get_active_slot();
1593 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_FILE
, freq
);
1594 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_sha1_file
);
1595 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_ERRORBUFFER
, freq
->errorstr
);
1596 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_URL
, freq
->url
);
1597 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_HTTPHEADER
, no_pragma_header
);
1600 * If we have successfully processed data from a previous fetch
1601 * attempt, only fetch the data we don't already have.
1604 if (http_is_verbose
)
1606 "Resuming fetch of object %s at byte %ld\n",
1608 sprintf(range
, "Range: bytes=%ld-", prev_posn
);
1609 range_header
= curl_slist_append(range_header
, range
);
1610 curl_easy_setopt(freq
->slot
->curl
,
1611 CURLOPT_HTTPHEADER
, range_header
);
1622 void process_http_object_request(struct http_object_request
*freq
)
1624 if (freq
->slot
== NULL
)
1626 freq
->curl_result
= freq
->slot
->curl_result
;
1627 freq
->http_code
= freq
->slot
->http_code
;
1631 int finish_http_object_request(struct http_object_request
*freq
)
1635 close(freq
->localfile
);
1636 freq
->localfile
= -1;
1638 process_http_object_request(freq
);
1640 if (freq
->http_code
== 416) {
1641 warning("requested range invalid; we may already have all the data.");
1642 } else if (freq
->curl_result
!= CURLE_OK
) {
1643 if (stat(freq
->tmpfile
, &st
) == 0)
1644 if (st
.st_size
== 0)
1645 unlink_or_warn(freq
->tmpfile
);
1649 git_inflate_end(&freq
->stream
);
1650 git_SHA1_Final(freq
->real_sha1
, &freq
->c
);
1651 if (freq
->zret
!= Z_STREAM_END
) {
1652 unlink_or_warn(freq
->tmpfile
);
1655 if (hashcmp(freq
->sha1
, freq
->real_sha1
)) {
1656 unlink_or_warn(freq
->tmpfile
);
1660 move_temp_to_file(freq
->tmpfile
, sha1_file_name(freq
->sha1
));
1662 return freq
->rename
;
1665 void abort_http_object_request(struct http_object_request
*freq
)
1667 unlink_or_warn(freq
->tmpfile
);
1669 release_http_object_request(freq
);
1672 void release_http_object_request(struct http_object_request
*freq
)
1674 if (freq
->localfile
!= -1) {
1675 close(freq
->localfile
);
1676 freq
->localfile
= -1;
1678 if (freq
->url
!= NULL
) {
1682 if (freq
->slot
!= NULL
) {
1683 freq
->slot
->callback_func
= NULL
;
1684 freq
->slot
->callback_data
= NULL
;
1685 release_active_slot(freq
->slot
);