transport-helper.con commit fetch, upload-pack: --deepen=N extends shallow boundary by N commits (cccf74e)
   1#include "cache.h"
   2#include "transport.h"
   3#include "quote.h"
   4#include "run-command.h"
   5#include "commit.h"
   6#include "diff.h"
   7#include "revision.h"
   8#include "remote.h"
   9#include "string-list.h"
  10#include "thread-utils.h"
  11#include "sigchain.h"
  12#include "argv-array.h"
  13#include "refs.h"
  14
  15static int debug;
  16
  17struct helper_data {
  18        const char *name;
  19        struct child_process *helper;
  20        FILE *out;
  21        unsigned fetch : 1,
  22                import : 1,
  23                bidi_import : 1,
  24                export : 1,
  25                option : 1,
  26                push : 1,
  27                connect : 1,
  28                signed_tags : 1,
  29                check_connectivity : 1,
  30                no_disconnect_req : 1,
  31                no_private_update : 1;
  32        char *export_marks;
  33        char *import_marks;
  34        /* These go from remote name (as in "list") to private name */
  35        struct refspec *refspecs;
  36        int refspec_nr;
  37        /* Transport options for fetch-pack/send-pack (should one of
  38         * those be invoked).
  39         */
  40        struct git_transport_options transport_options;
  41};
  42
  43static void sendline(struct helper_data *helper, struct strbuf *buffer)
  44{
  45        if (debug)
  46                fprintf(stderr, "Debug: Remote helper: -> %s", buffer->buf);
  47        if (write_in_full(helper->helper->in, buffer->buf, buffer->len)
  48                != buffer->len)
  49                die_errno("Full write to remote helper failed");
  50}
  51
  52static int recvline_fh(FILE *helper, struct strbuf *buffer, const char *name)
  53{
  54        strbuf_reset(buffer);
  55        if (debug)
  56                fprintf(stderr, "Debug: Remote helper: Waiting...\n");
  57        if (strbuf_getline(buffer, helper) == EOF) {
  58                if (debug)
  59                        fprintf(stderr, "Debug: Remote helper quit.\n");
  60                return 1;
  61        }
  62
  63        if (debug)
  64                fprintf(stderr, "Debug: Remote helper: <- %s\n", buffer->buf);
  65        return 0;
  66}
  67
  68static int recvline(struct helper_data *helper, struct strbuf *buffer)
  69{
  70        return recvline_fh(helper->out, buffer, helper->name);
  71}
  72
  73static void write_constant(int fd, const char *str)
  74{
  75        if (debug)
  76                fprintf(stderr, "Debug: Remote helper: -> %s", str);
  77        if (write_in_full(fd, str, strlen(str)) != strlen(str))
  78                die_errno("Full write to remote helper failed");
  79}
  80
  81static const char *remove_ext_force(const char *url)
  82{
  83        if (url) {
  84                const char *colon = strchr(url, ':');
  85                if (colon && colon[1] == ':')
  86                        return colon + 2;
  87        }
  88        return url;
  89}
  90
  91static void do_take_over(struct transport *transport)
  92{
  93        struct helper_data *data;
  94        data = (struct helper_data *)transport->data;
  95        transport_take_over(transport, data->helper);
  96        fclose(data->out);
  97        free(data);
  98}
  99
 100static void standard_options(struct transport *t);
 101
 102static struct child_process *get_helper(struct transport *transport)
 103{
 104        struct helper_data *data = transport->data;
 105        struct strbuf buf = STRBUF_INIT;
 106        struct child_process *helper;
 107        const char **refspecs = NULL;
 108        int refspec_nr = 0;
 109        int refspec_alloc = 0;
 110        int duped;
 111        int code;
 112
 113        if (data->helper)
 114                return data->helper;
 115
 116        helper = xmalloc(sizeof(*helper));
 117        child_process_init(helper);
 118        helper->in = -1;
 119        helper->out = -1;
 120        helper->err = 0;
 121        argv_array_pushf(&helper->args, "git-remote-%s", data->name);
 122        argv_array_push(&helper->args, transport->remote->name);
 123        argv_array_push(&helper->args, remove_ext_force(transport->url));
 124        helper->git_cmd = 0;
 125        helper->silent_exec_failure = 1;
 126
 127        argv_array_pushf(&helper->env_array, "%s=%s", GIT_DIR_ENVIRONMENT,
 128                         get_git_dir());
 129
 130        code = start_command(helper);
 131        if (code < 0 && errno == ENOENT)
 132                die("Unable to find remote helper for '%s'", data->name);
 133        else if (code != 0)
 134                exit(code);
 135
 136        data->helper = helper;
 137        data->no_disconnect_req = 0;
 138
 139        /*
 140         * Open the output as FILE* so strbuf_getline_*() family of
 141         * functions can be used.
 142         * Do this with duped fd because fclose() will close the fd,
 143         * and stuff like taking over will require the fd to remain.
 144         */
 145        duped = dup(helper->out);
 146        if (duped < 0)
 147                die_errno("Can't dup helper output fd");
 148        data->out = xfdopen(duped, "r");
 149
 150        write_constant(helper->in, "capabilities\n");
 151
 152        while (1) {
 153                const char *capname, *arg;
 154                int mandatory = 0;
 155                if (recvline(data, &buf))
 156                        exit(128);
 157
 158                if (!*buf.buf)
 159                        break;
 160
 161                if (*buf.buf == '*') {
 162                        capname = buf.buf + 1;
 163                        mandatory = 1;
 164                } else
 165                        capname = buf.buf;
 166
 167                if (debug)
 168                        fprintf(stderr, "Debug: Got cap %s\n", capname);
 169                if (!strcmp(capname, "fetch"))
 170                        data->fetch = 1;
 171                else if (!strcmp(capname, "option"))
 172                        data->option = 1;
 173                else if (!strcmp(capname, "push"))
 174                        data->push = 1;
 175                else if (!strcmp(capname, "import"))
 176                        data->import = 1;
 177                else if (!strcmp(capname, "bidi-import"))
 178                        data->bidi_import = 1;
 179                else if (!strcmp(capname, "export"))
 180                        data->export = 1;
 181                else if (!strcmp(capname, "check-connectivity"))
 182                        data->check_connectivity = 1;
 183                else if (!data->refspecs && skip_prefix(capname, "refspec ", &arg)) {
 184                        ALLOC_GROW(refspecs,
 185                                   refspec_nr + 1,
 186                                   refspec_alloc);
 187                        refspecs[refspec_nr++] = xstrdup(arg);
 188                } else if (!strcmp(capname, "connect")) {
 189                        data->connect = 1;
 190                } else if (!strcmp(capname, "signed-tags")) {
 191                        data->signed_tags = 1;
 192                } else if (skip_prefix(capname, "export-marks ", &arg)) {
 193                        data->export_marks = xstrdup(arg);
 194                } else if (skip_prefix(capname, "import-marks ", &arg)) {
 195                        data->import_marks = xstrdup(arg);
 196                } else if (starts_with(capname, "no-private-update")) {
 197                        data->no_private_update = 1;
 198                } else if (mandatory) {
 199                        die("Unknown mandatory capability %s. This remote "
 200                            "helper probably needs newer version of Git.",
 201                            capname);
 202                }
 203        }
 204        if (refspecs) {
 205                int i;
 206                data->refspec_nr = refspec_nr;
 207                data->refspecs = parse_fetch_refspec(refspec_nr, refspecs);
 208                for (i = 0; i < refspec_nr; i++)
 209                        free((char *)refspecs[i]);
 210                free(refspecs);
 211        } else if (data->import || data->bidi_import || data->export) {
 212                warning("This remote helper should implement refspec capability.");
 213        }
 214        strbuf_release(&buf);
 215        if (debug)
 216                fprintf(stderr, "Debug: Capabilities complete.\n");
 217        standard_options(transport);
 218        return data->helper;
 219}
 220
 221static int disconnect_helper(struct transport *transport)
 222{
 223        struct helper_data *data = transport->data;
 224        int res = 0;
 225
 226        if (data->helper) {
 227                if (debug)
 228                        fprintf(stderr, "Debug: Disconnecting.\n");
 229                if (!data->no_disconnect_req) {
 230                        /*
 231                         * Ignore write errors; there's nothing we can do,
 232                         * since we're about to close the pipe anyway. And the
 233                         * most likely error is EPIPE due to the helper dying
 234                         * to report an error itself.
 235                         */
 236                        sigchain_push(SIGPIPE, SIG_IGN);
 237                        xwrite(data->helper->in, "\n", 1);
 238                        sigchain_pop(SIGPIPE);
 239                }
 240                close(data->helper->in);
 241                close(data->helper->out);
 242                fclose(data->out);
 243                res = finish_command(data->helper);
 244                free(data->helper);
 245                data->helper = NULL;
 246        }
 247        return res;
 248}
 249
 250static const char *unsupported_options[] = {
 251        TRANS_OPT_UPLOADPACK,
 252        TRANS_OPT_RECEIVEPACK,
 253        TRANS_OPT_THIN,
 254        TRANS_OPT_KEEP
 255        };
 256
 257static const char *boolean_options[] = {
 258        TRANS_OPT_THIN,
 259        TRANS_OPT_KEEP,
 260        TRANS_OPT_FOLLOWTAGS,
 261        TRANS_OPT_DEEPEN_RELATIVE
 262        };
 263
 264static int strbuf_set_helper_option(struct helper_data *data,
 265                                    struct strbuf *buf)
 266{
 267        int ret;
 268
 269        sendline(data, buf);
 270        if (recvline(data, buf))
 271                exit(128);
 272
 273        if (!strcmp(buf->buf, "ok"))
 274                ret = 0;
 275        else if (starts_with(buf->buf, "error"))
 276                ret = -1;
 277        else if (!strcmp(buf->buf, "unsupported"))
 278                ret = 1;
 279        else {
 280                warning("%s unexpectedly said: '%s'", data->name, buf->buf);
 281                ret = 1;
 282        }
 283        return ret;
 284}
 285
 286static int string_list_set_helper_option(struct helper_data *data,
 287                                         const char *name,
 288                                         struct string_list *list)
 289{
 290        struct strbuf buf = STRBUF_INIT;
 291        int i, ret = 0;
 292
 293        for (i = 0; i < list->nr; i++) {
 294                strbuf_addf(&buf, "option %s ", name);
 295                quote_c_style(list->items[i].string, &buf, NULL, 0);
 296                strbuf_addch(&buf, '\n');
 297
 298                if ((ret = strbuf_set_helper_option(data, &buf)))
 299                        break;
 300                strbuf_reset(&buf);
 301        }
 302        strbuf_release(&buf);
 303        return ret;
 304}
 305
 306static int set_helper_option(struct transport *transport,
 307                          const char *name, const char *value)
 308{
 309        struct helper_data *data = transport->data;
 310        struct strbuf buf = STRBUF_INIT;
 311        int i, ret, is_bool = 0;
 312
 313        get_helper(transport);
 314
 315        if (!data->option)
 316                return 1;
 317
 318        if (!strcmp(name, "deepen-not"))
 319                return string_list_set_helper_option(data, name,
 320                                                     (struct string_list *)value);
 321
 322        for (i = 0; i < ARRAY_SIZE(unsupported_options); i++) {
 323                if (!strcmp(name, unsupported_options[i]))
 324                        return 1;
 325        }
 326
 327        for (i = 0; i < ARRAY_SIZE(boolean_options); i++) {
 328                if (!strcmp(name, boolean_options[i])) {
 329                        is_bool = 1;
 330                        break;
 331                }
 332        }
 333
 334        strbuf_addf(&buf, "option %s ", name);
 335        if (is_bool)
 336                strbuf_addstr(&buf, value ? "true" : "false");
 337        else
 338                quote_c_style(value, &buf, NULL, 0);
 339        strbuf_addch(&buf, '\n');
 340
 341        ret = strbuf_set_helper_option(data, &buf);
 342        strbuf_release(&buf);
 343        return ret;
 344}
 345
 346static void standard_options(struct transport *t)
 347{
 348        char buf[16];
 349        int n;
 350        int v = t->verbose;
 351
 352        set_helper_option(t, "progress", t->progress ? "true" : "false");
 353
 354        n = snprintf(buf, sizeof(buf), "%d", v + 1);
 355        if (n >= sizeof(buf))
 356                die("impossibly large verbosity value");
 357        set_helper_option(t, "verbosity", buf);
 358}
 359
 360static int release_helper(struct transport *transport)
 361{
 362        int res = 0;
 363        struct helper_data *data = transport->data;
 364        free_refspec(data->refspec_nr, data->refspecs);
 365        data->refspecs = NULL;
 366        res = disconnect_helper(transport);
 367        free(transport->data);
 368        return res;
 369}
 370
 371static int fetch_with_fetch(struct transport *transport,
 372                            int nr_heads, struct ref **to_fetch)
 373{
 374        struct helper_data *data = transport->data;
 375        int i;
 376        struct strbuf buf = STRBUF_INIT;
 377
 378        for (i = 0; i < nr_heads; i++) {
 379                const struct ref *posn = to_fetch[i];
 380                if (posn->status & REF_STATUS_UPTODATE)
 381                        continue;
 382
 383                strbuf_addf(&buf, "fetch %s %s\n",
 384                            oid_to_hex(&posn->old_oid),
 385                            posn->symref ? posn->symref : posn->name);
 386        }
 387
 388        strbuf_addch(&buf, '\n');
 389        sendline(data, &buf);
 390
 391        while (1) {
 392                if (recvline(data, &buf))
 393                        exit(128);
 394
 395                if (starts_with(buf.buf, "lock ")) {
 396                        const char *name = buf.buf + 5;
 397                        if (transport->pack_lockfile)
 398                                warning("%s also locked %s", data->name, name);
 399                        else
 400                                transport->pack_lockfile = xstrdup(name);
 401                }
 402                else if (data->check_connectivity &&
 403                         data->transport_options.check_self_contained_and_connected &&
 404                         !strcmp(buf.buf, "connectivity-ok"))
 405                        data->transport_options.self_contained_and_connected = 1;
 406                else if (!buf.len)
 407                        break;
 408                else
 409                        warning("%s unexpectedly said: '%s'", data->name, buf.buf);
 410        }
 411        strbuf_release(&buf);
 412        return 0;
 413}
 414
 415static int get_importer(struct transport *transport, struct child_process *fastimport)
 416{
 417        struct child_process *helper = get_helper(transport);
 418        struct helper_data *data = transport->data;
 419        int cat_blob_fd, code;
 420        child_process_init(fastimport);
 421        fastimport->in = helper->out;
 422        argv_array_push(&fastimport->args, "fast-import");
 423        argv_array_push(&fastimport->args, debug ? "--stats" : "--quiet");
 424
 425        if (data->bidi_import) {
 426                cat_blob_fd = xdup(helper->in);
 427                argv_array_pushf(&fastimport->args, "--cat-blob-fd=%d", cat_blob_fd);
 428        }
 429        fastimport->git_cmd = 1;
 430
 431        code = start_command(fastimport);
 432        return code;
 433}
 434
 435static int get_exporter(struct transport *transport,
 436                        struct child_process *fastexport,
 437                        struct string_list *revlist_args)
 438{
 439        struct helper_data *data = transport->data;
 440        struct child_process *helper = get_helper(transport);
 441        int i;
 442
 443        child_process_init(fastexport);
 444
 445        /* we need to duplicate helper->in because we want to use it after
 446         * fastexport is done with it. */
 447        fastexport->out = dup(helper->in);
 448        argv_array_push(&fastexport->args, "fast-export");
 449        argv_array_push(&fastexport->args, "--use-done-feature");
 450        argv_array_push(&fastexport->args, data->signed_tags ?
 451                "--signed-tags=verbatim" : "--signed-tags=warn-strip");
 452        if (data->export_marks)
 453                argv_array_pushf(&fastexport->args, "--export-marks=%s.tmp", data->export_marks);
 454        if (data->import_marks)
 455                argv_array_pushf(&fastexport->args, "--import-marks=%s", data->import_marks);
 456
 457        for (i = 0; i < revlist_args->nr; i++)
 458                argv_array_push(&fastexport->args, revlist_args->items[i].string);
 459
 460        fastexport->git_cmd = 1;
 461        return start_command(fastexport);
 462}
 463
 464static int fetch_with_import(struct transport *transport,
 465                             int nr_heads, struct ref **to_fetch)
 466{
 467        struct child_process fastimport;
 468        struct helper_data *data = transport->data;
 469        int i;
 470        struct ref *posn;
 471        struct strbuf buf = STRBUF_INIT;
 472
 473        get_helper(transport);
 474
 475        if (get_importer(transport, &fastimport))
 476                die("Couldn't run fast-import");
 477
 478        for (i = 0; i < nr_heads; i++) {
 479                posn = to_fetch[i];
 480                if (posn->status & REF_STATUS_UPTODATE)
 481                        continue;
 482
 483                strbuf_addf(&buf, "import %s\n",
 484                            posn->symref ? posn->symref : posn->name);
 485                sendline(data, &buf);
 486                strbuf_reset(&buf);
 487        }
 488
 489        write_constant(data->helper->in, "\n");
 490        /*
 491         * remote-helpers that advertise the bidi-import capability are required to
 492         * buffer the complete batch of import commands until this newline before
 493         * sending data to fast-import.
 494         * These helpers read back data from fast-import on their stdin, which could
 495         * be mixed with import commands, otherwise.
 496         */
 497
 498        if (finish_command(&fastimport))
 499                die("Error while running fast-import");
 500
 501        /*
 502         * The fast-import stream of a remote helper that advertises
 503         * the "refspec" capability writes to the refs named after the
 504         * right hand side of the first refspec matching each ref we
 505         * were fetching.
 506         *
 507         * (If no "refspec" capability was specified, for historical
 508         * reasons we default to the equivalent of *:*.)
 509         *
 510         * Store the result in to_fetch[i].old_sha1.  Callers such
 511         * as "git fetch" can use the value to write feedback to the
 512         * terminal, populate FETCH_HEAD, and determine what new value
 513         * should be written to peer_ref if the update is a
 514         * fast-forward or this is a forced update.
 515         */
 516        for (i = 0; i < nr_heads; i++) {
 517                char *private, *name;
 518                posn = to_fetch[i];
 519                if (posn->status & REF_STATUS_UPTODATE)
 520                        continue;
 521                name = posn->symref ? posn->symref : posn->name;
 522                if (data->refspecs)
 523                        private = apply_refspecs(data->refspecs, data->refspec_nr, name);
 524                else
 525                        private = xstrdup(name);
 526                if (private) {
 527                        if (read_ref(private, posn->old_oid.hash) < 0)
 528                                die("Could not read ref %s", private);
 529                        free(private);
 530                }
 531        }
 532        strbuf_release(&buf);
 533        return 0;
 534}
 535
 536static int process_connect_service(struct transport *transport,
 537                                   const char *name, const char *exec)
 538{
 539        struct helper_data *data = transport->data;
 540        struct strbuf cmdbuf = STRBUF_INIT;
 541        struct child_process *helper;
 542        int r, duped, ret = 0;
 543        FILE *input;
 544
 545        helper = get_helper(transport);
 546
 547        /*
 548         * Yes, dup the pipe another time, as we need unbuffered version
 549         * of input pipe as FILE*. fclose() closes the underlying fd and
 550         * stream buffering only can be changed before first I/O operation
 551         * on it.
 552         */
 553        duped = dup(helper->out);
 554        if (duped < 0)
 555                die_errno("Can't dup helper output fd");
 556        input = xfdopen(duped, "r");
 557        setvbuf(input, NULL, _IONBF, 0);
 558
 559        /*
 560         * Handle --upload-pack and friends. This is fire and forget...
 561         * just warn if it fails.
 562         */
 563        if (strcmp(name, exec)) {
 564                r = set_helper_option(transport, "servpath", exec);
 565                if (r > 0)
 566                        warning("Setting remote service path not supported by protocol.");
 567                else if (r < 0)
 568                        warning("Invalid remote service path.");
 569        }
 570
 571        if (data->connect)
 572                strbuf_addf(&cmdbuf, "connect %s\n", name);
 573        else
 574                goto exit;
 575
 576        sendline(data, &cmdbuf);
 577        if (recvline_fh(input, &cmdbuf, name))
 578                exit(128);
 579
 580        if (!strcmp(cmdbuf.buf, "")) {
 581                data->no_disconnect_req = 1;
 582                if (debug)
 583                        fprintf(stderr, "Debug: Smart transport connection "
 584                                "ready.\n");
 585                ret = 1;
 586        } else if (!strcmp(cmdbuf.buf, "fallback")) {
 587                if (debug)
 588                        fprintf(stderr, "Debug: Falling back to dumb "
 589                                "transport.\n");
 590        } else
 591                die("Unknown response to connect: %s",
 592                        cmdbuf.buf);
 593
 594exit:
 595        fclose(input);
 596        return ret;
 597}
 598
 599static int process_connect(struct transport *transport,
 600                                     int for_push)
 601{
 602        struct helper_data *data = transport->data;
 603        const char *name;
 604        const char *exec;
 605
 606        name = for_push ? "git-receive-pack" : "git-upload-pack";
 607        if (for_push)
 608                exec = data->transport_options.receivepack;
 609        else
 610                exec = data->transport_options.uploadpack;
 611
 612        return process_connect_service(transport, name, exec);
 613}
 614
 615static int connect_helper(struct transport *transport, const char *name,
 616                   const char *exec, int fd[2])
 617{
 618        struct helper_data *data = transport->data;
 619
 620        /* Get_helper so connect is inited. */
 621        get_helper(transport);
 622        if (!data->connect)
 623                die("Operation not supported by protocol.");
 624
 625        if (!process_connect_service(transport, name, exec))
 626                die("Can't connect to subservice %s.", name);
 627
 628        fd[0] = data->helper->out;
 629        fd[1] = data->helper->in;
 630        return 0;
 631}
 632
 633static int fetch(struct transport *transport,
 634                 int nr_heads, struct ref **to_fetch)
 635{
 636        struct helper_data *data = transport->data;
 637        int i, count;
 638
 639        if (process_connect(transport, 0)) {
 640                do_take_over(transport);
 641                return transport->fetch(transport, nr_heads, to_fetch);
 642        }
 643
 644        count = 0;
 645        for (i = 0; i < nr_heads; i++)
 646                if (!(to_fetch[i]->status & REF_STATUS_UPTODATE))
 647                        count++;
 648
 649        if (!count)
 650                return 0;
 651
 652        if (data->check_connectivity &&
 653            data->transport_options.check_self_contained_and_connected)
 654                set_helper_option(transport, "check-connectivity", "true");
 655
 656        if (transport->cloning)
 657                set_helper_option(transport, "cloning", "true");
 658
 659        if (data->transport_options.update_shallow)
 660                set_helper_option(transport, "update-shallow", "true");
 661
 662        if (data->fetch)
 663                return fetch_with_fetch(transport, nr_heads, to_fetch);
 664
 665        if (data->import)
 666                return fetch_with_import(transport, nr_heads, to_fetch);
 667
 668        return -1;
 669}
 670
 671static int push_update_ref_status(struct strbuf *buf,
 672                                   struct ref **ref,
 673                                   struct ref *remote_refs)
 674{
 675        char *refname, *msg;
 676        int status, forced = 0;
 677
 678        if (starts_with(buf->buf, "ok ")) {
 679                status = REF_STATUS_OK;
 680                refname = buf->buf + 3;
 681        } else if (starts_with(buf->buf, "error ")) {
 682                status = REF_STATUS_REMOTE_REJECT;
 683                refname = buf->buf + 6;
 684        } else
 685                die("expected ok/error, helper said '%s'", buf->buf);
 686
 687        msg = strchr(refname, ' ');
 688        if (msg) {
 689                struct strbuf msg_buf = STRBUF_INIT;
 690                const char *end;
 691
 692                *msg++ = '\0';
 693                if (!unquote_c_style(&msg_buf, msg, &end))
 694                        msg = strbuf_detach(&msg_buf, NULL);
 695                else
 696                        msg = xstrdup(msg);
 697                strbuf_release(&msg_buf);
 698
 699                if (!strcmp(msg, "no match")) {
 700                        status = REF_STATUS_NONE;
 701                        free(msg);
 702                        msg = NULL;
 703                }
 704                else if (!strcmp(msg, "up to date")) {
 705                        status = REF_STATUS_UPTODATE;
 706                        free(msg);
 707                        msg = NULL;
 708                }
 709                else if (!strcmp(msg, "non-fast forward")) {
 710                        status = REF_STATUS_REJECT_NONFASTFORWARD;
 711                        free(msg);
 712                        msg = NULL;
 713                }
 714                else if (!strcmp(msg, "already exists")) {
 715                        status = REF_STATUS_REJECT_ALREADY_EXISTS;
 716                        free(msg);
 717                        msg = NULL;
 718                }
 719                else if (!strcmp(msg, "fetch first")) {
 720                        status = REF_STATUS_REJECT_FETCH_FIRST;
 721                        free(msg);
 722                        msg = NULL;
 723                }
 724                else if (!strcmp(msg, "needs force")) {
 725                        status = REF_STATUS_REJECT_NEEDS_FORCE;
 726                        free(msg);
 727                        msg = NULL;
 728                }
 729                else if (!strcmp(msg, "stale info")) {
 730                        status = REF_STATUS_REJECT_STALE;
 731                        free(msg);
 732                        msg = NULL;
 733                }
 734                else if (!strcmp(msg, "forced update")) {
 735                        forced = 1;
 736                        free(msg);
 737                        msg = NULL;
 738                }
 739        }
 740
 741        if (*ref)
 742                *ref = find_ref_by_name(*ref, refname);
 743        if (!*ref)
 744                *ref = find_ref_by_name(remote_refs, refname);
 745        if (!*ref) {
 746                warning("helper reported unexpected status of %s", refname);
 747                return 1;
 748        }
 749
 750        if ((*ref)->status != REF_STATUS_NONE) {
 751                /*
 752                 * Earlier, the ref was marked not to be pushed, so ignore the ref
 753                 * status reported by the remote helper if the latter is 'no match'.
 754                 */
 755                if (status == REF_STATUS_NONE)
 756                        return 1;
 757        }
 758
 759        (*ref)->status = status;
 760        (*ref)->forced_update |= forced;
 761        (*ref)->remote_status = msg;
 762        return !(status == REF_STATUS_OK);
 763}
 764
 765static int push_update_refs_status(struct helper_data *data,
 766                                    struct ref *remote_refs,
 767                                    int flags)
 768{
 769        struct strbuf buf = STRBUF_INIT;
 770        struct ref *ref = remote_refs;
 771        int ret = 0;
 772
 773        for (;;) {
 774                char *private;
 775
 776                if (recvline(data, &buf)) {
 777                        ret = 1;
 778                        break;
 779                }
 780
 781                if (!buf.len)
 782                        break;
 783
 784                if (push_update_ref_status(&buf, &ref, remote_refs))
 785                        continue;
 786
 787                if (flags & TRANSPORT_PUSH_DRY_RUN || !data->refspecs || data->no_private_update)
 788                        continue;
 789
 790                /* propagate back the update to the remote namespace */
 791                private = apply_refspecs(data->refspecs, data->refspec_nr, ref->name);
 792                if (!private)
 793                        continue;
 794                update_ref("update by helper", private, ref->new_oid.hash, NULL, 0, 0);
 795                free(private);
 796        }
 797        strbuf_release(&buf);
 798        return ret;
 799}
 800
 801static void set_common_push_options(struct transport *transport,
 802                                   const char *name, int flags)
 803{
 804        if (flags & TRANSPORT_PUSH_DRY_RUN) {
 805                if (set_helper_option(transport, "dry-run", "true") != 0)
 806                        die("helper %s does not support dry-run", name);
 807        } else if (flags & TRANSPORT_PUSH_CERT_ALWAYS) {
 808                if (set_helper_option(transport, TRANS_OPT_PUSH_CERT, "true") != 0)
 809                        die("helper %s does not support --signed", name);
 810        } else if (flags & TRANSPORT_PUSH_CERT_IF_ASKED) {
 811                if (set_helper_option(transport, TRANS_OPT_PUSH_CERT, "if-asked") != 0)
 812                        die("helper %s does not support --signed=if-asked", name);
 813        }
 814}
 815
 816static int push_refs_with_push(struct transport *transport,
 817                               struct ref *remote_refs, int flags)
 818{
 819        int force_all = flags & TRANSPORT_PUSH_FORCE;
 820        int mirror = flags & TRANSPORT_PUSH_MIRROR;
 821        struct helper_data *data = transport->data;
 822        struct strbuf buf = STRBUF_INIT;
 823        struct ref *ref;
 824        struct string_list cas_options = STRING_LIST_INIT_DUP;
 825        struct string_list_item *cas_option;
 826
 827        get_helper(transport);
 828        if (!data->push)
 829                return 1;
 830
 831        for (ref = remote_refs; ref; ref = ref->next) {
 832                if (!ref->peer_ref && !mirror)
 833                        continue;
 834
 835                /* Check for statuses set by set_ref_status_for_push() */
 836                switch (ref->status) {
 837                case REF_STATUS_REJECT_NONFASTFORWARD:
 838                case REF_STATUS_REJECT_STALE:
 839                case REF_STATUS_REJECT_ALREADY_EXISTS:
 840                case REF_STATUS_UPTODATE:
 841                        continue;
 842                default:
 843                        ; /* do nothing */
 844                }
 845
 846                if (force_all)
 847                        ref->force = 1;
 848
 849                strbuf_addstr(&buf, "push ");
 850                if (!ref->deletion) {
 851                        if (ref->force)
 852                                strbuf_addch(&buf, '+');
 853                        if (ref->peer_ref)
 854                                strbuf_addstr(&buf, ref->peer_ref->name);
 855                        else
 856                                strbuf_addstr(&buf, oid_to_hex(&ref->new_oid));
 857                }
 858                strbuf_addch(&buf, ':');
 859                strbuf_addstr(&buf, ref->name);
 860                strbuf_addch(&buf, '\n');
 861
 862                /*
 863                 * The "--force-with-lease" options without explicit
 864                 * values to expect have already been expanded into
 865                 * the ref->old_oid_expect[] field; we can ignore
 866                 * transport->smart_options->cas altogether and instead
 867                 * can enumerate them from the refs.
 868                 */
 869                if (ref->expect_old_sha1) {
 870                        struct strbuf cas = STRBUF_INIT;
 871                        strbuf_addf(&cas, "%s:%s",
 872                                    ref->name, oid_to_hex(&ref->old_oid_expect));
 873                        string_list_append(&cas_options, strbuf_detach(&cas, NULL));
 874                }
 875        }
 876        if (buf.len == 0) {
 877                string_list_clear(&cas_options, 0);
 878                return 0;
 879        }
 880
 881        for_each_string_list_item(cas_option, &cas_options)
 882                set_helper_option(transport, "cas", cas_option->string);
 883        set_common_push_options(transport, data->name, flags);
 884
 885        strbuf_addch(&buf, '\n');
 886        sendline(data, &buf);
 887        strbuf_release(&buf);
 888
 889        return push_update_refs_status(data, remote_refs, flags);
 890}
 891
 892static int push_refs_with_export(struct transport *transport,
 893                struct ref *remote_refs, int flags)
 894{
 895        struct ref *ref;
 896        struct child_process *helper, exporter;
 897        struct helper_data *data = transport->data;
 898        struct string_list revlist_args = STRING_LIST_INIT_DUP;
 899        struct strbuf buf = STRBUF_INIT;
 900
 901        if (!data->refspecs)
 902                die("remote-helper doesn't support push; refspec needed");
 903
 904        set_common_push_options(transport, data->name, flags);
 905        if (flags & TRANSPORT_PUSH_FORCE) {
 906                if (set_helper_option(transport, "force", "true") != 0)
 907                        warning("helper %s does not support 'force'", data->name);
 908        }
 909
 910        helper = get_helper(transport);
 911
 912        write_constant(helper->in, "export\n");
 913
 914        for (ref = remote_refs; ref; ref = ref->next) {
 915                char *private;
 916                struct object_id oid;
 917
 918                private = apply_refspecs(data->refspecs, data->refspec_nr, ref->name);
 919                if (private && !get_sha1(private, oid.hash)) {
 920                        strbuf_addf(&buf, "^%s", private);
 921                        string_list_append(&revlist_args, strbuf_detach(&buf, NULL));
 922                        oidcpy(&ref->old_oid, &oid);
 923                }
 924                free(private);
 925
 926                if (ref->peer_ref) {
 927                        if (strcmp(ref->name, ref->peer_ref->name)) {
 928                                if (!ref->deletion) {
 929                                        const char *name;
 930                                        int flag;
 931
 932                                        /* Follow symbolic refs (mainly for HEAD). */
 933                                        name = resolve_ref_unsafe(
 934                                                 ref->peer_ref->name,
 935                                                 RESOLVE_REF_READING,
 936                                                 oid.hash, &flag);
 937                                        if (!name || !(flag & REF_ISSYMREF))
 938                                                name = ref->peer_ref->name;
 939
 940                                        strbuf_addf(&buf, "%s:%s", name, ref->name);
 941                                } else
 942                                        strbuf_addf(&buf, ":%s", ref->name);
 943
 944                                string_list_append(&revlist_args, "--refspec");
 945                                string_list_append(&revlist_args, buf.buf);
 946                                strbuf_release(&buf);
 947                        }
 948                        if (!ref->deletion)
 949                                string_list_append(&revlist_args, ref->peer_ref->name);
 950                }
 951        }
 952
 953        if (get_exporter(transport, &exporter, &revlist_args))
 954                die("Couldn't run fast-export");
 955
 956        string_list_clear(&revlist_args, 1);
 957
 958        if (finish_command(&exporter))
 959                die("Error while running fast-export");
 960        if (push_update_refs_status(data, remote_refs, flags))
 961                return 1;
 962
 963        if (data->export_marks) {
 964                strbuf_addf(&buf, "%s.tmp", data->export_marks);
 965                rename(buf.buf, data->export_marks);
 966                strbuf_release(&buf);
 967        }
 968
 969        return 0;
 970}
 971
 972static int push_refs(struct transport *transport,
 973                struct ref *remote_refs, int flags)
 974{
 975        struct helper_data *data = transport->data;
 976
 977        if (process_connect(transport, 1)) {
 978                do_take_over(transport);
 979                return transport->push_refs(transport, remote_refs, flags);
 980        }
 981
 982        if (!remote_refs) {
 983                fprintf(stderr, "No refs in common and none specified; doing nothing.\n"
 984                        "Perhaps you should specify a branch such as 'master'.\n");
 985                return 0;
 986        }
 987
 988        if (data->push)
 989                return push_refs_with_push(transport, remote_refs, flags);
 990
 991        if (data->export)
 992                return push_refs_with_export(transport, remote_refs, flags);
 993
 994        return -1;
 995}
 996
 997
 998static int has_attribute(const char *attrs, const char *attr) {
 999        int len;
1000        if (!attrs)
1001                return 0;
1002
1003        len = strlen(attr);
1004        for (;;) {
1005                const char *space = strchrnul(attrs, ' ');
1006                if (len == space - attrs && !strncmp(attrs, attr, len))
1007                        return 1;
1008                if (!*space)
1009                        return 0;
1010                attrs = space + 1;
1011        }
1012}
1013
1014static struct ref *get_refs_list(struct transport *transport, int for_push)
1015{
1016        struct helper_data *data = transport->data;
1017        struct child_process *helper;
1018        struct ref *ret = NULL;
1019        struct ref **tail = &ret;
1020        struct ref *posn;
1021        struct strbuf buf = STRBUF_INIT;
1022
1023        helper = get_helper(transport);
1024
1025        if (process_connect(transport, for_push)) {
1026                do_take_over(transport);
1027                return transport->get_refs_list(transport, for_push);
1028        }
1029
1030        if (data->push && for_push)
1031                write_str_in_full(helper->in, "list for-push\n");
1032        else
1033                write_str_in_full(helper->in, "list\n");
1034
1035        while (1) {
1036                char *eov, *eon;
1037                if (recvline(data, &buf))
1038                        exit(128);
1039
1040                if (!*buf.buf)
1041                        break;
1042
1043                eov = strchr(buf.buf, ' ');
1044                if (!eov)
1045                        die("Malformed response in ref list: %s", buf.buf);
1046                eon = strchr(eov + 1, ' ');
1047                *eov = '\0';
1048                if (eon)
1049                        *eon = '\0';
1050                *tail = alloc_ref(eov + 1);
1051                if (buf.buf[0] == '@')
1052                        (*tail)->symref = xstrdup(buf.buf + 1);
1053                else if (buf.buf[0] != '?')
1054                        get_oid_hex(buf.buf, &(*tail)->old_oid);
1055                if (eon) {
1056                        if (has_attribute(eon + 1, "unchanged")) {
1057                                (*tail)->status |= REF_STATUS_UPTODATE;
1058                                if (read_ref((*tail)->name,
1059                                             (*tail)->old_oid.hash) < 0)
1060                                        die(N_("Could not read ref %s"),
1061                                            (*tail)->name);
1062                        }
1063                }
1064                tail = &((*tail)->next);
1065        }
1066        if (debug)
1067                fprintf(stderr, "Debug: Read ref listing.\n");
1068        strbuf_release(&buf);
1069
1070        for (posn = ret; posn; posn = posn->next)
1071                resolve_remote_symref(posn, ret);
1072
1073        return ret;
1074}
1075
1076int transport_helper_init(struct transport *transport, const char *name)
1077{
1078        struct helper_data *data = xcalloc(1, sizeof(*data));
1079        data->name = name;
1080
1081        transport_check_allowed(name);
1082
1083        if (getenv("GIT_TRANSPORT_HELPER_DEBUG"))
1084                debug = 1;
1085
1086        transport->data = data;
1087        transport->set_option = set_helper_option;
1088        transport->get_refs_list = get_refs_list;
1089        transport->fetch = fetch;
1090        transport->push_refs = push_refs;
1091        transport->disconnect = release_helper;
1092        transport->connect = connect_helper;
1093        transport->smart_options = &(data->transport_options);
1094        return 0;
1095}
1096
1097/*
1098 * Linux pipes can buffer 65536 bytes at once (and most platforms can
1099 * buffer less), so attempt reads and writes with up to that size.
1100 */
1101#define BUFFERSIZE 65536
1102/* This should be enough to hold debugging message. */
1103#define PBUFFERSIZE 8192
1104
1105/* Print bidirectional transfer loop debug message. */
1106__attribute__((format (printf, 1, 2)))
1107static void transfer_debug(const char *fmt, ...)
1108{
1109        va_list args;
1110        char msgbuf[PBUFFERSIZE];
1111        static int debug_enabled = -1;
1112
1113        if (debug_enabled < 0)
1114                debug_enabled = getenv("GIT_TRANSLOOP_DEBUG") ? 1 : 0;
1115        if (!debug_enabled)
1116                return;
1117
1118        va_start(args, fmt);
1119        vsnprintf(msgbuf, PBUFFERSIZE, fmt, args);
1120        va_end(args);
1121        fprintf(stderr, "Transfer loop debugging: %s\n", msgbuf);
1122}
1123
1124/* Stream state: More data may be coming in this direction. */
1125#define SSTATE_TRANSFERING 0
1126/*
1127 * Stream state: No more data coming in this direction, flushing rest of
1128 * data.
1129 */
1130#define SSTATE_FLUSHING 1
1131/* Stream state: Transfer in this direction finished. */
1132#define SSTATE_FINISHED 2
1133
1134#define STATE_NEEDS_READING(state) ((state) <= SSTATE_TRANSFERING)
1135#define STATE_NEEDS_WRITING(state) ((state) <= SSTATE_FLUSHING)
1136#define STATE_NEEDS_CLOSING(state) ((state) == SSTATE_FLUSHING)
1137
1138/* Unidirectional transfer. */
1139struct unidirectional_transfer {
1140        /* Source */
1141        int src;
1142        /* Destination */
1143        int dest;
1144        /* Is source socket? */
1145        int src_is_sock;
1146        /* Is destination socket? */
1147        int dest_is_sock;
1148        /* Transfer state (TRANSFERRING/FLUSHING/FINISHED) */
1149        int state;
1150        /* Buffer. */
1151        char buf[BUFFERSIZE];
1152        /* Buffer used. */
1153        size_t bufuse;
1154        /* Name of source. */
1155        const char *src_name;
1156        /* Name of destination. */
1157        const char *dest_name;
1158};
1159
1160/* Closes the target (for writing) if transfer has finished. */
1161static void udt_close_if_finished(struct unidirectional_transfer *t)
1162{
1163        if (STATE_NEEDS_CLOSING(t->state) && !t->bufuse) {
1164                t->state = SSTATE_FINISHED;
1165                if (t->dest_is_sock)
1166                        shutdown(t->dest, SHUT_WR);
1167                else
1168                        close(t->dest);
1169                transfer_debug("Closed %s.", t->dest_name);
1170        }
1171}
1172
1173/*
1174 * Tries to read read data from source into buffer. If buffer is full,
1175 * no data is read. Returns 0 on success, -1 on error.
1176 */
1177static int udt_do_read(struct unidirectional_transfer *t)
1178{
1179        ssize_t bytes;
1180
1181        if (t->bufuse == BUFFERSIZE)
1182                return 0;       /* No space for more. */
1183
1184        transfer_debug("%s is readable", t->src_name);
1185        bytes = read(t->src, t->buf + t->bufuse, BUFFERSIZE - t->bufuse);
1186        if (bytes < 0 && errno != EWOULDBLOCK && errno != EAGAIN &&
1187                errno != EINTR) {
1188                error("read(%s) failed: %s", t->src_name, strerror(errno));
1189                return -1;
1190        } else if (bytes == 0) {
1191                transfer_debug("%s EOF (with %i bytes in buffer)",
1192                        t->src_name, (int)t->bufuse);
1193                t->state = SSTATE_FLUSHING;
1194        } else if (bytes > 0) {
1195                t->bufuse += bytes;
1196                transfer_debug("Read %i bytes from %s (buffer now at %i)",
1197                        (int)bytes, t->src_name, (int)t->bufuse);
1198        }
1199        return 0;
1200}
1201
1202/* Tries to write data from buffer into destination. If buffer is empty,
1203 * no data is written. Returns 0 on success, -1 on error.
1204 */
1205static int udt_do_write(struct unidirectional_transfer *t)
1206{
1207        ssize_t bytes;
1208
1209        if (t->bufuse == 0)
1210                return 0;       /* Nothing to write. */
1211
1212        transfer_debug("%s is writable", t->dest_name);
1213        bytes = xwrite(t->dest, t->buf, t->bufuse);
1214        if (bytes < 0 && errno != EWOULDBLOCK) {
1215                error("write(%s) failed: %s", t->dest_name, strerror(errno));
1216                return -1;
1217        } else if (bytes > 0) {
1218                t->bufuse -= bytes;
1219                if (t->bufuse)
1220                        memmove(t->buf, t->buf + bytes, t->bufuse);
1221                transfer_debug("Wrote %i bytes to %s (buffer now at %i)",
1222                        (int)bytes, t->dest_name, (int)t->bufuse);
1223        }
1224        return 0;
1225}
1226
1227
1228/* State of bidirectional transfer loop. */
1229struct bidirectional_transfer_state {
1230        /* Direction from program to git. */
1231        struct unidirectional_transfer ptg;
1232        /* Direction from git to program. */
1233        struct unidirectional_transfer gtp;
1234};
1235
1236static void *udt_copy_task_routine(void *udt)
1237{
1238        struct unidirectional_transfer *t = (struct unidirectional_transfer *)udt;
1239        while (t->state != SSTATE_FINISHED) {
1240                if (STATE_NEEDS_READING(t->state))
1241                        if (udt_do_read(t))
1242                                return NULL;
1243                if (STATE_NEEDS_WRITING(t->state))
1244                        if (udt_do_write(t))
1245                                return NULL;
1246                if (STATE_NEEDS_CLOSING(t->state))
1247                        udt_close_if_finished(t);
1248        }
1249        return udt;     /* Just some non-NULL value. */
1250}
1251
1252#ifndef NO_PTHREADS
1253
1254/*
1255 * Join thread, with appropriate errors on failure. Name is name for the
1256 * thread (for error messages). Returns 0 on success, 1 on failure.
1257 */
1258static int tloop_join(pthread_t thread, const char *name)
1259{
1260        int err;
1261        void *tret;
1262        err = pthread_join(thread, &tret);
1263        if (!tret) {
1264                error("%s thread failed", name);
1265                return 1;
1266        }
1267        if (err) {
1268                error("%s thread failed to join: %s", name, strerror(err));
1269                return 1;
1270        }
1271        return 0;
1272}
1273
1274/*
1275 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1276 * -1 on failure.
1277 */
1278static int tloop_spawnwait_tasks(struct bidirectional_transfer_state *s)
1279{
1280        pthread_t gtp_thread;
1281        pthread_t ptg_thread;
1282        int err;
1283        int ret = 0;
1284        err = pthread_create(&gtp_thread, NULL, udt_copy_task_routine,
1285                &s->gtp);
1286        if (err)
1287                die("Can't start thread for copying data: %s", strerror(err));
1288        err = pthread_create(&ptg_thread, NULL, udt_copy_task_routine,
1289                &s->ptg);
1290        if (err)
1291                die("Can't start thread for copying data: %s", strerror(err));
1292
1293        ret |= tloop_join(gtp_thread, "Git to program copy");
1294        ret |= tloop_join(ptg_thread, "Program to git copy");
1295        return ret;
1296}
1297#else
1298
1299/* Close the source and target (for writing) for transfer. */
1300static void udt_kill_transfer(struct unidirectional_transfer *t)
1301{
1302        t->state = SSTATE_FINISHED;
1303        /*
1304         * Socket read end left open isn't a disaster if nobody
1305         * attempts to read from it (mingw compat headers do not
1306         * have SHUT_RD)...
1307         *
1308         * We can't fully close the socket since otherwise gtp
1309         * task would first close the socket it sends data to
1310         * while closing the ptg file descriptors.
1311         */
1312        if (!t->src_is_sock)
1313                close(t->src);
1314        if (t->dest_is_sock)
1315                shutdown(t->dest, SHUT_WR);
1316        else
1317                close(t->dest);
1318}
1319
1320/*
1321 * Join process, with appropriate errors on failure. Name is name for the
1322 * process (for error messages). Returns 0 on success, 1 on failure.
1323 */
1324static int tloop_join(pid_t pid, const char *name)
1325{
1326        int tret;
1327        if (waitpid(pid, &tret, 0) < 0) {
1328                error("%s process failed to wait: %s", name, strerror(errno));
1329                return 1;
1330        }
1331        if (!WIFEXITED(tret) || WEXITSTATUS(tret)) {
1332                error("%s process failed", name);
1333                return 1;
1334        }
1335        return 0;
1336}
1337
1338/*
1339 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1340 * -1 on failure.
1341 */
1342static int tloop_spawnwait_tasks(struct bidirectional_transfer_state *s)
1343{
1344        pid_t pid1, pid2;
1345        int ret = 0;
1346
1347        /* Fork thread #1: git to program. */
1348        pid1 = fork();
1349        if (pid1 < 0)
1350                die_errno("Can't start thread for copying data");
1351        else if (pid1 == 0) {
1352                udt_kill_transfer(&s->ptg);
1353                exit(udt_copy_task_routine(&s->gtp) ? 0 : 1);
1354        }
1355
1356        /* Fork thread #2: program to git. */
1357        pid2 = fork();
1358        if (pid2 < 0)
1359                die_errno("Can't start thread for copying data");
1360        else if (pid2 == 0) {
1361                udt_kill_transfer(&s->gtp);
1362                exit(udt_copy_task_routine(&s->ptg) ? 0 : 1);
1363        }
1364
1365        /*
1366         * Close both streams in parent as to not interfere with
1367         * end of file detection and wait for both tasks to finish.
1368         */
1369        udt_kill_transfer(&s->gtp);
1370        udt_kill_transfer(&s->ptg);
1371        ret |= tloop_join(pid1, "Git to program copy");
1372        ret |= tloop_join(pid2, "Program to git copy");
1373        return ret;
1374}
1375#endif
1376
1377/*
1378 * Copies data from stdin to output and from input to stdout simultaneously.
1379 * Additionally filtering through given filter. If filter is NULL, uses
1380 * identity filter.
1381 */
1382int bidirectional_transfer_loop(int input, int output)
1383{
1384        struct bidirectional_transfer_state state;
1385
1386        /* Fill the state fields. */
1387        state.ptg.src = input;
1388        state.ptg.dest = 1;
1389        state.ptg.src_is_sock = (input == output);
1390        state.ptg.dest_is_sock = 0;
1391        state.ptg.state = SSTATE_TRANSFERING;
1392        state.ptg.bufuse = 0;
1393        state.ptg.src_name = "remote input";
1394        state.ptg.dest_name = "stdout";
1395
1396        state.gtp.src = 0;
1397        state.gtp.dest = output;
1398        state.gtp.src_is_sock = 0;
1399        state.gtp.dest_is_sock = (input == output);
1400        state.gtp.state = SSTATE_TRANSFERING;
1401        state.gtp.bufuse = 0;
1402        state.gtp.src_name = "stdin";
1403        state.gtp.dest_name = "remote output";
1404
1405        return tloop_spawnwait_tasks(&state);
1406}