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