http.con commit http: avoid empty error messages for some curl errors (be22d92)
   1#include "http.h"
   2#include "pack.h"
   3#include "sideband.h"
   4#include "run-command.h"
   5#include "url.h"
   6
   7int data_received;
   8int active_requests;
   9int http_is_verbose;
  10size_t http_post_buffer = 16 * LARGE_PACKET_MAX;
  11
  12#if LIBCURL_VERSION_NUM >= 0x070a06
  13#define LIBCURL_CAN_HANDLE_AUTH_ANY
  14#endif
  15
  16static int min_curl_sessions = 1;
  17static int curl_session_count;
  18#ifdef USE_CURL_MULTI
  19static int max_requests = -1;
  20static CURLM *curlm;
  21#endif
  22#ifndef NO_CURL_EASY_DUPHANDLE
  23static CURL *curl_default;
  24#endif
  25
  26#define PREV_BUF_SIZE 4096
  27#define RANGE_HEADER_SIZE 30
  28
  29char curl_errorstr[CURL_ERROR_SIZE];
  30
  31static int curl_ssl_verify = -1;
  32static const char *ssl_cert;
  33#if LIBCURL_VERSION_NUM >= 0x070903
  34static const char *ssl_key;
  35#endif
  36#if LIBCURL_VERSION_NUM >= 0x070908
  37static const char *ssl_capath;
  38#endif
  39static const char *ssl_cainfo;
  40static long curl_low_speed_limit = -1;
  41static long curl_low_speed_time = -1;
  42static int curl_ftp_no_epsv;
  43static const char *curl_http_proxy;
  44static char *user_name, *user_pass;
  45static const char *user_agent;
  46
  47#if LIBCURL_VERSION_NUM >= 0x071700
  48/* Use CURLOPT_KEYPASSWD as is */
  49#elif LIBCURL_VERSION_NUM >= 0x070903
  50#define CURLOPT_KEYPASSWD CURLOPT_SSLKEYPASSWD
  51#else
  52#define CURLOPT_KEYPASSWD CURLOPT_SSLCERTPASSWD
  53#endif
  54
  55static char *ssl_cert_password;
  56static int ssl_cert_password_required;
  57
  58static struct curl_slist *pragma_header;
  59static struct curl_slist *no_pragma_header;
  60
  61static struct active_request_slot *active_queue_head;
  62
  63size_t fread_buffer(char *ptr, size_t eltsize, size_t nmemb, void *buffer_)
  64{
  65        size_t size = eltsize * nmemb;
  66        struct buffer *buffer = buffer_;
  67
  68        if (size > buffer->buf.len - buffer->posn)
  69                size = buffer->buf.len - buffer->posn;
  70        memcpy(ptr, buffer->buf.buf + buffer->posn, size);
  71        buffer->posn += size;
  72
  73        return size;
  74}
  75
  76#ifndef NO_CURL_IOCTL
  77curlioerr ioctl_buffer(CURL *handle, int cmd, void *clientp)
  78{
  79        struct buffer *buffer = clientp;
  80
  81        switch (cmd) {
  82        case CURLIOCMD_NOP:
  83                return CURLIOE_OK;
  84
  85        case CURLIOCMD_RESTARTREAD:
  86                buffer->posn = 0;
  87                return CURLIOE_OK;
  88
  89        default:
  90                return CURLIOE_UNKNOWNCMD;
  91        }
  92}
  93#endif
  94
  95size_t fwrite_buffer(char *ptr, size_t eltsize, size_t nmemb, void *buffer_)
  96{
  97        size_t size = eltsize * nmemb;
  98        struct strbuf *buffer = buffer_;
  99
 100        strbuf_add(buffer, ptr, size);
 101        data_received++;
 102        return size;
 103}
 104
 105size_t fwrite_null(char *ptr, size_t eltsize, size_t nmemb, void *strbuf)
 106{
 107        data_received++;
 108        return eltsize * nmemb;
 109}
 110
 111#ifdef USE_CURL_MULTI
 112static void process_curl_messages(void)
 113{
 114        int num_messages;
 115        struct active_request_slot *slot;
 116        CURLMsg *curl_message = curl_multi_info_read(curlm, &num_messages);
 117
 118        while (curl_message != NULL) {
 119                if (curl_message->msg == CURLMSG_DONE) {
 120                        int curl_result = curl_message->data.result;
 121                        slot = active_queue_head;
 122                        while (slot != NULL &&
 123                               slot->curl != curl_message->easy_handle)
 124                                slot = slot->next;
 125                        if (slot != NULL) {
 126                                curl_multi_remove_handle(curlm, slot->curl);
 127                                slot->curl_result = curl_result;
 128                                finish_active_slot(slot);
 129                        } else {
 130                                fprintf(stderr, "Received DONE message for unknown request!\n");
 131                        }
 132                } else {
 133                        fprintf(stderr, "Unknown CURL message received: %d\n",
 134                                (int)curl_message->msg);
 135                }
 136                curl_message = curl_multi_info_read(curlm, &num_messages);
 137        }
 138}
 139#endif
 140
 141static int http_options(const char *var, const char *value, void *cb)
 142{
 143        if (!strcmp("http.sslverify", var)) {
 144                curl_ssl_verify = git_config_bool(var, value);
 145                return 0;
 146        }
 147        if (!strcmp("http.sslcert", var))
 148                return git_config_string(&ssl_cert, var, value);
 149#if LIBCURL_VERSION_NUM >= 0x070903
 150        if (!strcmp("http.sslkey", var))
 151                return git_config_string(&ssl_key, var, value);
 152#endif
 153#if LIBCURL_VERSION_NUM >= 0x070908
 154        if (!strcmp("http.sslcapath", var))
 155                return git_config_string(&ssl_capath, var, value);
 156#endif
 157        if (!strcmp("http.sslcainfo", var))
 158                return git_config_string(&ssl_cainfo, var, value);
 159        if (!strcmp("http.sslcertpasswordprotected", var)) {
 160                if (git_config_bool(var, value))
 161                        ssl_cert_password_required = 1;
 162                return 0;
 163        }
 164        if (!strcmp("http.minsessions", var)) {
 165                min_curl_sessions = git_config_int(var, value);
 166#ifndef USE_CURL_MULTI
 167                if (min_curl_sessions > 1)
 168                        min_curl_sessions = 1;
 169#endif
 170                return 0;
 171        }
 172#ifdef USE_CURL_MULTI
 173        if (!strcmp("http.maxrequests", var)) {
 174                max_requests = git_config_int(var, value);
 175                return 0;
 176        }
 177#endif
 178        if (!strcmp("http.lowspeedlimit", var)) {
 179                curl_low_speed_limit = (long)git_config_int(var, value);
 180                return 0;
 181        }
 182        if (!strcmp("http.lowspeedtime", var)) {
 183                curl_low_speed_time = (long)git_config_int(var, value);
 184                return 0;
 185        }
 186
 187        if (!strcmp("http.noepsv", var)) {
 188                curl_ftp_no_epsv = git_config_bool(var, value);
 189                return 0;
 190        }
 191        if (!strcmp("http.proxy", var))
 192                return git_config_string(&curl_http_proxy, var, value);
 193
 194        if (!strcmp("http.postbuffer", var)) {
 195                http_post_buffer = git_config_int(var, value);
 196                if (http_post_buffer < LARGE_PACKET_MAX)
 197                        http_post_buffer = LARGE_PACKET_MAX;
 198                return 0;
 199        }
 200
 201        if (!strcmp("http.useragent", var))
 202                return git_config_string(&user_agent, var, value);
 203
 204        /* Fall back on the default ones */
 205        return git_default_config(var, value, cb);
 206}
 207
 208static void init_curl_http_auth(CURL *result)
 209{
 210        if (user_name) {
 211                struct strbuf up = STRBUF_INIT;
 212                if (!user_pass)
 213                        user_pass = xstrdup(git_getpass("Password: "));
 214                strbuf_addf(&up, "%s:%s", user_name, user_pass);
 215                curl_easy_setopt(result, CURLOPT_USERPWD,
 216                                 strbuf_detach(&up, NULL));
 217        }
 218}
 219
 220static int has_cert_password(void)
 221{
 222        if (ssl_cert_password != NULL)
 223                return 1;
 224        if (ssl_cert == NULL || ssl_cert_password_required != 1)
 225                return 0;
 226        /* Only prompt the user once. */
 227        ssl_cert_password_required = -1;
 228        ssl_cert_password = git_getpass("Certificate Password: ");
 229        if (ssl_cert_password != NULL) {
 230                ssl_cert_password = xstrdup(ssl_cert_password);
 231                return 1;
 232        } else
 233                return 0;
 234}
 235
 236static CURL *get_curl_handle(void)
 237{
 238        CURL *result = curl_easy_init();
 239
 240        if (!curl_ssl_verify) {
 241                curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 0);
 242                curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 0);
 243        } else {
 244                /* Verify authenticity of the peer's certificate */
 245                curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 1);
 246                /* The name in the cert must match whom we tried to connect */
 247                curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 2);
 248        }
 249
 250#if LIBCURL_VERSION_NUM >= 0x070907
 251        curl_easy_setopt(result, CURLOPT_NETRC, CURL_NETRC_OPTIONAL);
 252#endif
 253#ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
 254        curl_easy_setopt(result, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
 255#endif
 256
 257        init_curl_http_auth(result);
 258
 259        if (ssl_cert != NULL)
 260                curl_easy_setopt(result, CURLOPT_SSLCERT, ssl_cert);
 261        if (has_cert_password())
 262                curl_easy_setopt(result, CURLOPT_KEYPASSWD, ssl_cert_password);
 263#if LIBCURL_VERSION_NUM >= 0x070903
 264        if (ssl_key != NULL)
 265                curl_easy_setopt(result, CURLOPT_SSLKEY, ssl_key);
 266#endif
 267#if LIBCURL_VERSION_NUM >= 0x070908
 268        if (ssl_capath != NULL)
 269                curl_easy_setopt(result, CURLOPT_CAPATH, ssl_capath);
 270#endif
 271        if (ssl_cainfo != NULL)
 272                curl_easy_setopt(result, CURLOPT_CAINFO, ssl_cainfo);
 273        curl_easy_setopt(result, CURLOPT_FAILONERROR, 1);
 274
 275        if (curl_low_speed_limit > 0 && curl_low_speed_time > 0) {
 276                curl_easy_setopt(result, CURLOPT_LOW_SPEED_LIMIT,
 277                                 curl_low_speed_limit);
 278                curl_easy_setopt(result, CURLOPT_LOW_SPEED_TIME,
 279                                 curl_low_speed_time);
 280        }
 281
 282        curl_easy_setopt(result, CURLOPT_FOLLOWLOCATION, 1);
 283#if LIBCURL_VERSION_NUM >= 0x071301
 284        curl_easy_setopt(result, CURLOPT_POSTREDIR, CURL_REDIR_POST_ALL);
 285#elif LIBCURL_VERSION_NUM >= 0x071101
 286        curl_easy_setopt(result, CURLOPT_POST301, 1);
 287#endif
 288
 289        if (getenv("GIT_CURL_VERBOSE"))
 290                curl_easy_setopt(result, CURLOPT_VERBOSE, 1);
 291
 292        curl_easy_setopt(result, CURLOPT_USERAGENT,
 293                user_agent ? user_agent : GIT_HTTP_USER_AGENT);
 294
 295        if (curl_ftp_no_epsv)
 296                curl_easy_setopt(result, CURLOPT_FTP_USE_EPSV, 0);
 297
 298        if (curl_http_proxy)
 299                curl_easy_setopt(result, CURLOPT_PROXY, curl_http_proxy);
 300
 301        return result;
 302}
 303
 304static void http_auth_init(const char *url)
 305{
 306        char *at, *colon, *cp, *slash, *decoded;
 307        int len;
 308
 309        cp = strstr(url, "://");
 310        if (!cp)
 311                return;
 312
 313        /*
 314         * Ok, the URL looks like "proto://something".  Which one?
 315         * "proto://<user>:<pass>@<host>/...",
 316         * "proto://<user>@<host>/...", or just
 317         * "proto://<host>/..."?
 318         */
 319        cp += 3;
 320        at = strchr(cp, '@');
 321        colon = strchr(cp, ':');
 322        slash = strchrnul(cp, '/');
 323        if (!at || slash <= at)
 324                return; /* No credentials */
 325        if (!colon || at <= colon) {
 326                /* Only username */
 327                len = at - cp;
 328                user_name = xmalloc(len + 1);
 329                memcpy(user_name, cp, len);
 330                user_name[len] = '\0';
 331                decoded = url_decode(user_name);
 332                free(user_name);
 333                user_name = decoded;
 334                user_pass = NULL;
 335        } else {
 336                len = colon - cp;
 337                user_name = xmalloc(len + 1);
 338                memcpy(user_name, cp, len);
 339                user_name[len] = '\0';
 340                decoded = url_decode(user_name);
 341                free(user_name);
 342                user_name = decoded;
 343                len = at - (colon + 1);
 344                user_pass = xmalloc(len + 1);
 345                memcpy(user_pass, colon + 1, len);
 346                user_pass[len] = '\0';
 347                decoded = url_decode(user_pass);
 348                free(user_pass);
 349                user_pass = decoded;
 350        }
 351}
 352
 353static void set_from_env(const char **var, const char *envname)
 354{
 355        const char *val = getenv(envname);
 356        if (val)
 357                *var = val;
 358}
 359
 360void http_init(struct remote *remote)
 361{
 362        char *low_speed_limit;
 363        char *low_speed_time;
 364
 365        http_is_verbose = 0;
 366
 367        git_config(http_options, NULL);
 368
 369        curl_global_init(CURL_GLOBAL_ALL);
 370
 371        if (remote && remote->http_proxy)
 372                curl_http_proxy = xstrdup(remote->http_proxy);
 373
 374        pragma_header = curl_slist_append(pragma_header, "Pragma: no-cache");
 375        no_pragma_header = curl_slist_append(no_pragma_header, "Pragma:");
 376
 377#ifdef USE_CURL_MULTI
 378        {
 379                char *http_max_requests = getenv("GIT_HTTP_MAX_REQUESTS");
 380                if (http_max_requests != NULL)
 381                        max_requests = atoi(http_max_requests);
 382        }
 383
 384        curlm = curl_multi_init();
 385        if (curlm == NULL) {
 386                fprintf(stderr, "Error creating curl multi handle.\n");
 387                exit(1);
 388        }
 389#endif
 390
 391        if (getenv("GIT_SSL_NO_VERIFY"))
 392                curl_ssl_verify = 0;
 393
 394        set_from_env(&ssl_cert, "GIT_SSL_CERT");
 395#if LIBCURL_VERSION_NUM >= 0x070903
 396        set_from_env(&ssl_key, "GIT_SSL_KEY");
 397#endif
 398#if LIBCURL_VERSION_NUM >= 0x070908
 399        set_from_env(&ssl_capath, "GIT_SSL_CAPATH");
 400#endif
 401        set_from_env(&ssl_cainfo, "GIT_SSL_CAINFO");
 402
 403        set_from_env(&user_agent, "GIT_HTTP_USER_AGENT");
 404
 405        low_speed_limit = getenv("GIT_HTTP_LOW_SPEED_LIMIT");
 406        if (low_speed_limit != NULL)
 407                curl_low_speed_limit = strtol(low_speed_limit, NULL, 10);
 408        low_speed_time = getenv("GIT_HTTP_LOW_SPEED_TIME");
 409        if (low_speed_time != NULL)
 410                curl_low_speed_time = strtol(low_speed_time, NULL, 10);
 411
 412        if (curl_ssl_verify == -1)
 413                curl_ssl_verify = 1;
 414
 415        curl_session_count = 0;
 416#ifdef USE_CURL_MULTI
 417        if (max_requests < 1)
 418                max_requests = DEFAULT_MAX_REQUESTS;
 419#endif
 420
 421        if (getenv("GIT_CURL_FTP_NO_EPSV"))
 422                curl_ftp_no_epsv = 1;
 423
 424        if (remote && remote->url && remote->url[0]) {
 425                http_auth_init(remote->url[0]);
 426                if (!ssl_cert_password_required &&
 427                    getenv("GIT_SSL_CERT_PASSWORD_PROTECTED") &&
 428                    !prefixcmp(remote->url[0], "https://"))
 429                        ssl_cert_password_required = 1;
 430        }
 431
 432#ifndef NO_CURL_EASY_DUPHANDLE
 433        curl_default = get_curl_handle();
 434#endif
 435}
 436
 437void http_cleanup(void)
 438{
 439        struct active_request_slot *slot = active_queue_head;
 440
 441        while (slot != NULL) {
 442                struct active_request_slot *next = slot->next;
 443                if (slot->curl != NULL) {
 444#ifdef USE_CURL_MULTI
 445                        curl_multi_remove_handle(curlm, slot->curl);
 446#endif
 447                        curl_easy_cleanup(slot->curl);
 448                }
 449                free(slot);
 450                slot = next;
 451        }
 452        active_queue_head = NULL;
 453
 454#ifndef NO_CURL_EASY_DUPHANDLE
 455        curl_easy_cleanup(curl_default);
 456#endif
 457
 458#ifdef USE_CURL_MULTI
 459        curl_multi_cleanup(curlm);
 460#endif
 461        curl_global_cleanup();
 462
 463        curl_slist_free_all(pragma_header);
 464        pragma_header = NULL;
 465
 466        curl_slist_free_all(no_pragma_header);
 467        no_pragma_header = NULL;
 468
 469        if (curl_http_proxy) {
 470                free((void *)curl_http_proxy);
 471                curl_http_proxy = NULL;
 472        }
 473
 474        if (ssl_cert_password != NULL) {
 475                memset(ssl_cert_password, 0, strlen(ssl_cert_password));
 476                free(ssl_cert_password);
 477                ssl_cert_password = NULL;
 478        }
 479        ssl_cert_password_required = 0;
 480}
 481
 482struct active_request_slot *get_active_slot(void)
 483{
 484        struct active_request_slot *slot = active_queue_head;
 485        struct active_request_slot *newslot;
 486
 487#ifdef USE_CURL_MULTI
 488        int num_transfers;
 489
 490        /* Wait for a slot to open up if the queue is full */
 491        while (active_requests >= max_requests) {
 492                curl_multi_perform(curlm, &num_transfers);
 493                if (num_transfers < active_requests)
 494                        process_curl_messages();
 495        }
 496#endif
 497
 498        while (slot != NULL && slot->in_use)
 499                slot = slot->next;
 500
 501        if (slot == NULL) {
 502                newslot = xmalloc(sizeof(*newslot));
 503                newslot->curl = NULL;
 504                newslot->in_use = 0;
 505                newslot->next = NULL;
 506
 507                slot = active_queue_head;
 508                if (slot == NULL) {
 509                        active_queue_head = newslot;
 510                } else {
 511                        while (slot->next != NULL)
 512                                slot = slot->next;
 513                        slot->next = newslot;
 514                }
 515                slot = newslot;
 516        }
 517
 518        if (slot->curl == NULL) {
 519#ifdef NO_CURL_EASY_DUPHANDLE
 520                slot->curl = get_curl_handle();
 521#else
 522                slot->curl = curl_easy_duphandle(curl_default);
 523#endif
 524                curl_session_count++;
 525        }
 526
 527        active_requests++;
 528        slot->in_use = 1;
 529        slot->local = NULL;
 530        slot->results = NULL;
 531        slot->finished = NULL;
 532        slot->callback_data = NULL;
 533        slot->callback_func = NULL;
 534        curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, pragma_header);
 535        curl_easy_setopt(slot->curl, CURLOPT_ERRORBUFFER, curl_errorstr);
 536        curl_easy_setopt(slot->curl, CURLOPT_CUSTOMREQUEST, NULL);
 537        curl_easy_setopt(slot->curl, CURLOPT_READFUNCTION, NULL);
 538        curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, NULL);
 539        curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, NULL);
 540        curl_easy_setopt(slot->curl, CURLOPT_UPLOAD, 0);
 541        curl_easy_setopt(slot->curl, CURLOPT_HTTPGET, 1);
 542
 543        return slot;
 544}
 545
 546int start_active_slot(struct active_request_slot *slot)
 547{
 548#ifdef USE_CURL_MULTI
 549        CURLMcode curlm_result = curl_multi_add_handle(curlm, slot->curl);
 550        int num_transfers;
 551
 552        if (curlm_result != CURLM_OK &&
 553            curlm_result != CURLM_CALL_MULTI_PERFORM) {
 554                active_requests--;
 555                slot->in_use = 0;
 556                return 0;
 557        }
 558
 559        /*
 560         * We know there must be something to do, since we just added
 561         * something.
 562         */
 563        curl_multi_perform(curlm, &num_transfers);
 564#endif
 565        return 1;
 566}
 567
 568#ifdef USE_CURL_MULTI
 569struct fill_chain {
 570        void *data;
 571        int (*fill)(void *);
 572        struct fill_chain *next;
 573};
 574
 575static struct fill_chain *fill_cfg;
 576
 577void add_fill_function(void *data, int (*fill)(void *))
 578{
 579        struct fill_chain *new = xmalloc(sizeof(*new));
 580        struct fill_chain **linkp = &fill_cfg;
 581        new->data = data;
 582        new->fill = fill;
 583        new->next = NULL;
 584        while (*linkp)
 585                linkp = &(*linkp)->next;
 586        *linkp = new;
 587}
 588
 589void fill_active_slots(void)
 590{
 591        struct active_request_slot *slot = active_queue_head;
 592
 593        while (active_requests < max_requests) {
 594                struct fill_chain *fill;
 595                for (fill = fill_cfg; fill; fill = fill->next)
 596                        if (fill->fill(fill->data))
 597                                break;
 598
 599                if (!fill)
 600                        break;
 601        }
 602
 603        while (slot != NULL) {
 604                if (!slot->in_use && slot->curl != NULL
 605                        && curl_session_count > min_curl_sessions) {
 606                        curl_easy_cleanup(slot->curl);
 607                        slot->curl = NULL;
 608                        curl_session_count--;
 609                }
 610                slot = slot->next;
 611        }
 612}
 613
 614void step_active_slots(void)
 615{
 616        int num_transfers;
 617        CURLMcode curlm_result;
 618
 619        do {
 620                curlm_result = curl_multi_perform(curlm, &num_transfers);
 621        } while (curlm_result == CURLM_CALL_MULTI_PERFORM);
 622        if (num_transfers < active_requests) {
 623                process_curl_messages();
 624                fill_active_slots();
 625        }
 626}
 627#endif
 628
 629void run_active_slot(struct active_request_slot *slot)
 630{
 631#ifdef USE_CURL_MULTI
 632        long last_pos = 0;
 633        long current_pos;
 634        fd_set readfds;
 635        fd_set writefds;
 636        fd_set excfds;
 637        int max_fd;
 638        struct timeval select_timeout;
 639        int finished = 0;
 640
 641        slot->finished = &finished;
 642        while (!finished) {
 643                data_received = 0;
 644                step_active_slots();
 645
 646                if (!data_received && slot->local != NULL) {
 647                        current_pos = ftell(slot->local);
 648                        if (current_pos > last_pos)
 649                                data_received++;
 650                        last_pos = current_pos;
 651                }
 652
 653                if (slot->in_use && !data_received) {
 654                        max_fd = 0;
 655                        FD_ZERO(&readfds);
 656                        FD_ZERO(&writefds);
 657                        FD_ZERO(&excfds);
 658                        select_timeout.tv_sec = 0;
 659                        select_timeout.tv_usec = 50000;
 660                        select(max_fd, &readfds, &writefds,
 661                               &excfds, &select_timeout);
 662                }
 663        }
 664#else
 665        while (slot->in_use) {
 666                slot->curl_result = curl_easy_perform(slot->curl);
 667                finish_active_slot(slot);
 668        }
 669#endif
 670}
 671
 672static void closedown_active_slot(struct active_request_slot *slot)
 673{
 674        active_requests--;
 675        slot->in_use = 0;
 676}
 677
 678static void release_active_slot(struct active_request_slot *slot)
 679{
 680        closedown_active_slot(slot);
 681        if (slot->curl && curl_session_count > min_curl_sessions) {
 682#ifdef USE_CURL_MULTI
 683                curl_multi_remove_handle(curlm, slot->curl);
 684#endif
 685                curl_easy_cleanup(slot->curl);
 686                slot->curl = NULL;
 687                curl_session_count--;
 688        }
 689#ifdef USE_CURL_MULTI
 690        fill_active_slots();
 691#endif
 692}
 693
 694void finish_active_slot(struct active_request_slot *slot)
 695{
 696        closedown_active_slot(slot);
 697        curl_easy_getinfo(slot->curl, CURLINFO_HTTP_CODE, &slot->http_code);
 698
 699        if (slot->finished != NULL)
 700                (*slot->finished) = 1;
 701
 702        /* Store slot results so they can be read after the slot is reused */
 703        if (slot->results != NULL) {
 704                slot->results->curl_result = slot->curl_result;
 705                slot->results->http_code = slot->http_code;
 706        }
 707
 708        /* Run callback if appropriate */
 709        if (slot->callback_func != NULL)
 710                slot->callback_func(slot->callback_data);
 711}
 712
 713void finish_all_active_slots(void)
 714{
 715        struct active_request_slot *slot = active_queue_head;
 716
 717        while (slot != NULL)
 718                if (slot->in_use) {
 719                        run_active_slot(slot);
 720                        slot = active_queue_head;
 721                } else {
 722                        slot = slot->next;
 723                }
 724}
 725
 726/* Helpers for modifying and creating URLs */
 727static inline int needs_quote(int ch)
 728{
 729        if (((ch >= 'A') && (ch <= 'Z'))
 730                        || ((ch >= 'a') && (ch <= 'z'))
 731                        || ((ch >= '0') && (ch <= '9'))
 732                        || (ch == '/')
 733                        || (ch == '-')
 734                        || (ch == '.'))
 735                return 0;
 736        return 1;
 737}
 738
 739static inline int hex(int v)
 740{
 741        if (v < 10)
 742                return '0' + v;
 743        else
 744                return 'A' + v - 10;
 745}
 746
 747static char *quote_ref_url(const char *base, const char *ref)
 748{
 749        struct strbuf buf = STRBUF_INIT;
 750        const char *cp;
 751        int ch;
 752
 753        end_url_with_slash(&buf, base);
 754
 755        for (cp = ref; (ch = *cp) != 0; cp++)
 756                if (needs_quote(ch))
 757                        strbuf_addf(&buf, "%%%02x", ch);
 758                else
 759                        strbuf_addch(&buf, *cp);
 760
 761        return strbuf_detach(&buf, NULL);
 762}
 763
 764void append_remote_object_url(struct strbuf *buf, const char *url,
 765                              const char *hex,
 766                              int only_two_digit_prefix)
 767{
 768        end_url_with_slash(buf, url);
 769
 770        strbuf_addf(buf, "objects/%.*s/", 2, hex);
 771        if (!only_two_digit_prefix)
 772                strbuf_addf(buf, "%s", hex+2);
 773}
 774
 775char *get_remote_object_url(const char *url, const char *hex,
 776                            int only_two_digit_prefix)
 777{
 778        struct strbuf buf = STRBUF_INIT;
 779        append_remote_object_url(&buf, url, hex, only_two_digit_prefix);
 780        return strbuf_detach(&buf, NULL);
 781}
 782
 783/* http_request() targets */
 784#define HTTP_REQUEST_STRBUF     0
 785#define HTTP_REQUEST_FILE       1
 786
 787static int http_request(const char *url, void *result, int target, int options)
 788{
 789        struct active_request_slot *slot;
 790        struct slot_results results;
 791        struct curl_slist *headers = NULL;
 792        struct strbuf buf = STRBUF_INIT;
 793        int ret;
 794
 795        slot = get_active_slot();
 796        slot->results = &results;
 797        curl_easy_setopt(slot->curl, CURLOPT_HTTPGET, 1);
 798
 799        if (result == NULL) {
 800                curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 1);
 801        } else {
 802                curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 0);
 803                curl_easy_setopt(slot->curl, CURLOPT_FILE, result);
 804
 805                if (target == HTTP_REQUEST_FILE) {
 806                        long posn = ftell(result);
 807                        curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION,
 808                                         fwrite);
 809                        if (posn > 0) {
 810                                strbuf_addf(&buf, "Range: bytes=%ld-", posn);
 811                                headers = curl_slist_append(headers, buf.buf);
 812                                strbuf_reset(&buf);
 813                        }
 814                        slot->local = result;
 815                } else
 816                        curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION,
 817                                         fwrite_buffer);
 818        }
 819
 820        strbuf_addstr(&buf, "Pragma:");
 821        if (options & HTTP_NO_CACHE)
 822                strbuf_addstr(&buf, " no-cache");
 823
 824        headers = curl_slist_append(headers, buf.buf);
 825
 826        curl_easy_setopt(slot->curl, CURLOPT_URL, url);
 827        curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, headers);
 828
 829        if (start_active_slot(slot)) {
 830                run_active_slot(slot);
 831                if (results.curl_result == CURLE_OK)
 832                        ret = HTTP_OK;
 833                else if (missing_target(&results))
 834                        ret = HTTP_MISSING_TARGET;
 835                else if (results.http_code == 401) {
 836                        if (user_name) {
 837                                ret = HTTP_NOAUTH;
 838                        } else {
 839                                /*
 840                                 * git_getpass is needed here because its very likely stdin/stdout are
 841                                 * pipes to our parent process.  So we instead need to use /dev/tty,
 842                                 * but that is non-portable.  Using git_getpass() can at least be stubbed
 843                                 * on other platforms with a different implementation if/when necessary.
 844                                 */
 845                                user_name = xstrdup(git_getpass("Username: "));
 846                                init_curl_http_auth(slot->curl);
 847                                ret = HTTP_REAUTH;
 848                        }
 849                } else {
 850                        if (!curl_errorstr[0])
 851                                strlcpy(curl_errorstr,
 852                                        curl_easy_strerror(results.curl_result),
 853                                        sizeof(curl_errorstr));
 854                        ret = HTTP_ERROR;
 855                }
 856        } else {
 857                error("Unable to start HTTP request for %s", url);
 858                ret = HTTP_START_FAILED;
 859        }
 860
 861        slot->local = NULL;
 862        curl_slist_free_all(headers);
 863        strbuf_release(&buf);
 864
 865        return ret;
 866}
 867
 868int http_get_strbuf(const char *url, struct strbuf *result, int options)
 869{
 870        int http_ret = http_request(url, result, HTTP_REQUEST_STRBUF, options);
 871        if (http_ret == HTTP_REAUTH) {
 872                http_ret = http_request(url, result, HTTP_REQUEST_STRBUF, options);
 873        }
 874        return http_ret;
 875}
 876
 877/*
 878 * Downloads an url and stores the result in the given file.
 879 *
 880 * If a previous interrupted download is detected (i.e. a previous temporary
 881 * file is still around) the download is resumed.
 882 */
 883static int http_get_file(const char *url, const char *filename, int options)
 884{
 885        int ret;
 886        struct strbuf tmpfile = STRBUF_INIT;
 887        FILE *result;
 888
 889        strbuf_addf(&tmpfile, "%s.temp", filename);
 890        result = fopen(tmpfile.buf, "a");
 891        if (! result) {
 892                error("Unable to open local file %s", tmpfile.buf);
 893                ret = HTTP_ERROR;
 894                goto cleanup;
 895        }
 896
 897        ret = http_request(url, result, HTTP_REQUEST_FILE, options);
 898        fclose(result);
 899
 900        if ((ret == HTTP_OK) && move_temp_to_file(tmpfile.buf, filename))
 901                ret = HTTP_ERROR;
 902cleanup:
 903        strbuf_release(&tmpfile);
 904        return ret;
 905}
 906
 907int http_error(const char *url, int ret)
 908{
 909        /* http_request has already handled HTTP_START_FAILED. */
 910        if (ret != HTTP_START_FAILED)
 911                error("%s while accessing %s", curl_errorstr, url);
 912
 913        return ret;
 914}
 915
 916int http_fetch_ref(const char *base, struct ref *ref)
 917{
 918        char *url;
 919        struct strbuf buffer = STRBUF_INIT;
 920        int ret = -1;
 921
 922        url = quote_ref_url(base, ref->name);
 923        if (http_get_strbuf(url, &buffer, HTTP_NO_CACHE) == HTTP_OK) {
 924                strbuf_rtrim(&buffer);
 925                if (buffer.len == 40)
 926                        ret = get_sha1_hex(buffer.buf, ref->old_sha1);
 927                else if (!prefixcmp(buffer.buf, "ref: ")) {
 928                        ref->symref = xstrdup(buffer.buf + 5);
 929                        ret = 0;
 930                }
 931        }
 932
 933        strbuf_release(&buffer);
 934        free(url);
 935        return ret;
 936}
 937
 938/* Helpers for fetching packs */
 939static char *fetch_pack_index(unsigned char *sha1, const char *base_url)
 940{
 941        char *url, *tmp;
 942        struct strbuf buf = STRBUF_INIT;
 943
 944        if (http_is_verbose)
 945                fprintf(stderr, "Getting index for pack %s\n", sha1_to_hex(sha1));
 946
 947        end_url_with_slash(&buf, base_url);
 948        strbuf_addf(&buf, "objects/pack/pack-%s.idx", sha1_to_hex(sha1));
 949        url = strbuf_detach(&buf, NULL);
 950
 951        strbuf_addf(&buf, "%s.temp", sha1_pack_index_name(sha1));
 952        tmp = strbuf_detach(&buf, NULL);
 953
 954        if (http_get_file(url, tmp, 0) != HTTP_OK) {
 955                error("Unable to get pack index %s\n", url);
 956                free(tmp);
 957                tmp = NULL;
 958        }
 959
 960        free(url);
 961        return tmp;
 962}
 963
 964static int fetch_and_setup_pack_index(struct packed_git **packs_head,
 965        unsigned char *sha1, const char *base_url)
 966{
 967        struct packed_git *new_pack;
 968        char *tmp_idx = NULL;
 969        int ret;
 970
 971        if (has_pack_index(sha1)) {
 972                new_pack = parse_pack_index(sha1, NULL);
 973                if (!new_pack)
 974                        return -1; /* parse_pack_index() already issued error message */
 975                goto add_pack;
 976        }
 977
 978        tmp_idx = fetch_pack_index(sha1, base_url);
 979        if (!tmp_idx)
 980                return -1;
 981
 982        new_pack = parse_pack_index(sha1, tmp_idx);
 983        if (!new_pack) {
 984                unlink(tmp_idx);
 985                free(tmp_idx);
 986
 987                return -1; /* parse_pack_index() already issued error message */
 988        }
 989
 990        ret = verify_pack_index(new_pack);
 991        if (!ret) {
 992                close_pack_index(new_pack);
 993                ret = move_temp_to_file(tmp_idx, sha1_pack_index_name(sha1));
 994        }
 995        free(tmp_idx);
 996        if (ret)
 997                return -1;
 998
 999add_pack:
1000        new_pack->next = *packs_head;
1001        *packs_head = new_pack;
1002        return 0;
1003}
1004
1005int http_get_info_packs(const char *base_url, struct packed_git **packs_head)
1006{
1007        int ret = 0, i = 0;
1008        char *url, *data;
1009        struct strbuf buf = STRBUF_INIT;
1010        unsigned char sha1[20];
1011
1012        end_url_with_slash(&buf, base_url);
1013        strbuf_addstr(&buf, "objects/info/packs");
1014        url = strbuf_detach(&buf, NULL);
1015
1016        ret = http_get_strbuf(url, &buf, HTTP_NO_CACHE);
1017        if (ret != HTTP_OK)
1018                goto cleanup;
1019
1020        data = buf.buf;
1021        while (i < buf.len) {
1022                switch (data[i]) {
1023                case 'P':
1024                        i++;
1025                        if (i + 52 <= buf.len &&
1026                            !prefixcmp(data + i, " pack-") &&
1027                            !prefixcmp(data + i + 46, ".pack\n")) {
1028                                get_sha1_hex(data + i + 6, sha1);
1029                                fetch_and_setup_pack_index(packs_head, sha1,
1030                                                      base_url);
1031                                i += 51;
1032                                break;
1033                        }
1034                default:
1035                        while (i < buf.len && data[i] != '\n')
1036                                i++;
1037                }
1038                i++;
1039        }
1040
1041cleanup:
1042        free(url);
1043        return ret;
1044}
1045
1046void release_http_pack_request(struct http_pack_request *preq)
1047{
1048        if (preq->packfile != NULL) {
1049                fclose(preq->packfile);
1050                preq->packfile = NULL;
1051                preq->slot->local = NULL;
1052        }
1053        if (preq->range_header != NULL) {
1054                curl_slist_free_all(preq->range_header);
1055                preq->range_header = NULL;
1056        }
1057        preq->slot = NULL;
1058        free(preq->url);
1059}
1060
1061int finish_http_pack_request(struct http_pack_request *preq)
1062{
1063        struct packed_git **lst;
1064        struct packed_git *p = preq->target;
1065        char *tmp_idx;
1066        struct child_process ip;
1067        const char *ip_argv[8];
1068
1069        close_pack_index(p);
1070
1071        fclose(preq->packfile);
1072        preq->packfile = NULL;
1073        preq->slot->local = NULL;
1074
1075        lst = preq->lst;
1076        while (*lst != p)
1077                lst = &((*lst)->next);
1078        *lst = (*lst)->next;
1079
1080        tmp_idx = xstrdup(preq->tmpfile);
1081        strcpy(tmp_idx + strlen(tmp_idx) - strlen(".pack.temp"),
1082               ".idx.temp");
1083
1084        ip_argv[0] = "index-pack";
1085        ip_argv[1] = "-o";
1086        ip_argv[2] = tmp_idx;
1087        ip_argv[3] = preq->tmpfile;
1088        ip_argv[4] = NULL;
1089
1090        memset(&ip, 0, sizeof(ip));
1091        ip.argv = ip_argv;
1092        ip.git_cmd = 1;
1093        ip.no_stdin = 1;
1094        ip.no_stdout = 1;
1095
1096        if (run_command(&ip)) {
1097                unlink(preq->tmpfile);
1098                unlink(tmp_idx);
1099                free(tmp_idx);
1100                return -1;
1101        }
1102
1103        unlink(sha1_pack_index_name(p->sha1));
1104
1105        if (move_temp_to_file(preq->tmpfile, sha1_pack_name(p->sha1))
1106         || move_temp_to_file(tmp_idx, sha1_pack_index_name(p->sha1))) {
1107                free(tmp_idx);
1108                return -1;
1109        }
1110
1111        install_packed_git(p);
1112        free(tmp_idx);
1113        return 0;
1114}
1115
1116struct http_pack_request *new_http_pack_request(
1117        struct packed_git *target, const char *base_url)
1118{
1119        long prev_posn = 0;
1120        char range[RANGE_HEADER_SIZE];
1121        struct strbuf buf = STRBUF_INIT;
1122        struct http_pack_request *preq;
1123
1124        preq = xmalloc(sizeof(*preq));
1125        preq->target = target;
1126        preq->range_header = NULL;
1127
1128        end_url_with_slash(&buf, base_url);
1129        strbuf_addf(&buf, "objects/pack/pack-%s.pack",
1130                sha1_to_hex(target->sha1));
1131        preq->url = strbuf_detach(&buf, NULL);
1132
1133        snprintf(preq->tmpfile, sizeof(preq->tmpfile), "%s.temp",
1134                sha1_pack_name(target->sha1));
1135        preq->packfile = fopen(preq->tmpfile, "a");
1136        if (!preq->packfile) {
1137                error("Unable to open local file %s for pack",
1138                      preq->tmpfile);
1139                goto abort;
1140        }
1141
1142        preq->slot = get_active_slot();
1143        preq->slot->local = preq->packfile;
1144        curl_easy_setopt(preq->slot->curl, CURLOPT_FILE, preq->packfile);
1145        curl_easy_setopt(preq->slot->curl, CURLOPT_WRITEFUNCTION, fwrite);
1146        curl_easy_setopt(preq->slot->curl, CURLOPT_URL, preq->url);
1147        curl_easy_setopt(preq->slot->curl, CURLOPT_HTTPHEADER,
1148                no_pragma_header);
1149
1150        /*
1151         * If there is data present from a previous transfer attempt,
1152         * resume where it left off
1153         */
1154        prev_posn = ftell(preq->packfile);
1155        if (prev_posn>0) {
1156                if (http_is_verbose)
1157                        fprintf(stderr,
1158                                "Resuming fetch of pack %s at byte %ld\n",
1159                                sha1_to_hex(target->sha1), prev_posn);
1160                sprintf(range, "Range: bytes=%ld-", prev_posn);
1161                preq->range_header = curl_slist_append(NULL, range);
1162                curl_easy_setopt(preq->slot->curl, CURLOPT_HTTPHEADER,
1163                        preq->range_header);
1164        }
1165
1166        return preq;
1167
1168abort:
1169        free(preq->url);
1170        free(preq);
1171        return NULL;
1172}
1173
1174/* Helpers for fetching objects (loose) */
1175static size_t fwrite_sha1_file(char *ptr, size_t eltsize, size_t nmemb,
1176                               void *data)
1177{
1178        unsigned char expn[4096];
1179        size_t size = eltsize * nmemb;
1180        int posn = 0;
1181        struct http_object_request *freq =
1182                (struct http_object_request *)data;
1183        do {
1184                ssize_t retval = xwrite(freq->localfile,
1185                                        (char *) ptr + posn, size - posn);
1186                if (retval < 0)
1187                        return posn;
1188                posn += retval;
1189        } while (posn < size);
1190
1191        freq->stream.avail_in = size;
1192        freq->stream.next_in = (void *)ptr;
1193        do {
1194                freq->stream.next_out = expn;
1195                freq->stream.avail_out = sizeof(expn);
1196                freq->zret = git_inflate(&freq->stream, Z_SYNC_FLUSH);
1197                git_SHA1_Update(&freq->c, expn,
1198                                sizeof(expn) - freq->stream.avail_out);
1199        } while (freq->stream.avail_in && freq->zret == Z_OK);
1200        data_received++;
1201        return size;
1202}
1203
1204struct http_object_request *new_http_object_request(const char *base_url,
1205        unsigned char *sha1)
1206{
1207        char *hex = sha1_to_hex(sha1);
1208        char *filename;
1209        char prevfile[PATH_MAX];
1210        int prevlocal;
1211        char prev_buf[PREV_BUF_SIZE];
1212        ssize_t prev_read = 0;
1213        long prev_posn = 0;
1214        char range[RANGE_HEADER_SIZE];
1215        struct curl_slist *range_header = NULL;
1216        struct http_object_request *freq;
1217
1218        freq = xmalloc(sizeof(*freq));
1219        hashcpy(freq->sha1, sha1);
1220        freq->localfile = -1;
1221
1222        filename = sha1_file_name(sha1);
1223        snprintf(freq->tmpfile, sizeof(freq->tmpfile),
1224                 "%s.temp", filename);
1225
1226        snprintf(prevfile, sizeof(prevfile), "%s.prev", filename);
1227        unlink_or_warn(prevfile);
1228        rename(freq->tmpfile, prevfile);
1229        unlink_or_warn(freq->tmpfile);
1230
1231        if (freq->localfile != -1)
1232                error("fd leakage in start: %d", freq->localfile);
1233        freq->localfile = open(freq->tmpfile,
1234                               O_WRONLY | O_CREAT | O_EXCL, 0666);
1235        /*
1236         * This could have failed due to the "lazy directory creation";
1237         * try to mkdir the last path component.
1238         */
1239        if (freq->localfile < 0 && errno == ENOENT) {
1240                char *dir = strrchr(freq->tmpfile, '/');
1241                if (dir) {
1242                        *dir = 0;
1243                        mkdir(freq->tmpfile, 0777);
1244                        *dir = '/';
1245                }
1246                freq->localfile = open(freq->tmpfile,
1247                                       O_WRONLY | O_CREAT | O_EXCL, 0666);
1248        }
1249
1250        if (freq->localfile < 0) {
1251                error("Couldn't create temporary file %s: %s",
1252                      freq->tmpfile, strerror(errno));
1253                goto abort;
1254        }
1255
1256        memset(&freq->stream, 0, sizeof(freq->stream));
1257
1258        git_inflate_init(&freq->stream);
1259
1260        git_SHA1_Init(&freq->c);
1261
1262        freq->url = get_remote_object_url(base_url, hex, 0);
1263
1264        /*
1265         * If a previous temp file is present, process what was already
1266         * fetched.
1267         */
1268        prevlocal = open(prevfile, O_RDONLY);
1269        if (prevlocal != -1) {
1270                do {
1271                        prev_read = xread(prevlocal, prev_buf, PREV_BUF_SIZE);
1272                        if (prev_read>0) {
1273                                if (fwrite_sha1_file(prev_buf,
1274                                                     1,
1275                                                     prev_read,
1276                                                     freq) == prev_read) {
1277                                        prev_posn += prev_read;
1278                                } else {
1279                                        prev_read = -1;
1280                                }
1281                        }
1282                } while (prev_read > 0);
1283                close(prevlocal);
1284        }
1285        unlink_or_warn(prevfile);
1286
1287        /*
1288         * Reset inflate/SHA1 if there was an error reading the previous temp
1289         * file; also rewind to the beginning of the local file.
1290         */
1291        if (prev_read == -1) {
1292                memset(&freq->stream, 0, sizeof(freq->stream));
1293                git_inflate_init(&freq->stream);
1294                git_SHA1_Init(&freq->c);
1295                if (prev_posn>0) {
1296                        prev_posn = 0;
1297                        lseek(freq->localfile, 0, SEEK_SET);
1298                        if (ftruncate(freq->localfile, 0) < 0) {
1299                                error("Couldn't truncate temporary file %s: %s",
1300                                          freq->tmpfile, strerror(errno));
1301                                goto abort;
1302                        }
1303                }
1304        }
1305
1306        freq->slot = get_active_slot();
1307
1308        curl_easy_setopt(freq->slot->curl, CURLOPT_FILE, freq);
1309        curl_easy_setopt(freq->slot->curl, CURLOPT_WRITEFUNCTION, fwrite_sha1_file);
1310        curl_easy_setopt(freq->slot->curl, CURLOPT_ERRORBUFFER, freq->errorstr);
1311        curl_easy_setopt(freq->slot->curl, CURLOPT_URL, freq->url);
1312        curl_easy_setopt(freq->slot->curl, CURLOPT_HTTPHEADER, no_pragma_header);
1313
1314        /*
1315         * If we have successfully processed data from a previous fetch
1316         * attempt, only fetch the data we don't already have.
1317         */
1318        if (prev_posn>0) {
1319                if (http_is_verbose)
1320                        fprintf(stderr,
1321                                "Resuming fetch of object %s at byte %ld\n",
1322                                hex, prev_posn);
1323                sprintf(range, "Range: bytes=%ld-", prev_posn);
1324                range_header = curl_slist_append(range_header, range);
1325                curl_easy_setopt(freq->slot->curl,
1326                                 CURLOPT_HTTPHEADER, range_header);
1327        }
1328
1329        return freq;
1330
1331abort:
1332        free(filename);
1333        free(freq->url);
1334        free(freq);
1335        return NULL;
1336}
1337
1338void process_http_object_request(struct http_object_request *freq)
1339{
1340        if (freq->slot == NULL)
1341                return;
1342        freq->curl_result = freq->slot->curl_result;
1343        freq->http_code = freq->slot->http_code;
1344        freq->slot = NULL;
1345}
1346
1347int finish_http_object_request(struct http_object_request *freq)
1348{
1349        struct stat st;
1350
1351        close(freq->localfile);
1352        freq->localfile = -1;
1353
1354        process_http_object_request(freq);
1355
1356        if (freq->http_code == 416) {
1357                warning("requested range invalid; we may already have all the data.");
1358        } else if (freq->curl_result != CURLE_OK) {
1359                if (stat(freq->tmpfile, &st) == 0)
1360                        if (st.st_size == 0)
1361                                unlink_or_warn(freq->tmpfile);
1362                return -1;
1363        }
1364
1365        git_inflate_end(&freq->stream);
1366        git_SHA1_Final(freq->real_sha1, &freq->c);
1367        if (freq->zret != Z_STREAM_END) {
1368                unlink_or_warn(freq->tmpfile);
1369                return -1;
1370        }
1371        if (hashcmp(freq->sha1, freq->real_sha1)) {
1372                unlink_or_warn(freq->tmpfile);
1373                return -1;
1374        }
1375        freq->rename =
1376                move_temp_to_file(freq->tmpfile, sha1_file_name(freq->sha1));
1377
1378        return freq->rename;
1379}
1380
1381void abort_http_object_request(struct http_object_request *freq)
1382{
1383        unlink_or_warn(freq->tmpfile);
1384
1385        release_http_object_request(freq);
1386}
1387
1388void release_http_object_request(struct http_object_request *freq)
1389{
1390        if (freq->localfile != -1) {
1391                close(freq->localfile);
1392                freq->localfile = -1;
1393        }
1394        if (freq->url != NULL) {
1395                free(freq->url);
1396                freq->url = NULL;
1397        }
1398        if (freq->slot != NULL) {
1399                freq->slot->callback_func = NULL;
1400                freq->slot->callback_data = NULL;
1401                release_active_slot(freq->slot);
1402                freq->slot = NULL;
1403        }
1404}