builtin / fetch.con commit fetch: fix regression with transport helpers (f80d922)
   1/*
   2 * "git fetch"
   3 */
   4#include "cache.h"
   5#include "config.h"
   6#include "repository.h"
   7#include "refs.h"
   8#include "refspec.h"
   9#include "object-store.h"
  10#include "commit.h"
  11#include "builtin.h"
  12#include "string-list.h"
  13#include "remote.h"
  14#include "transport.h"
  15#include "run-command.h"
  16#include "parse-options.h"
  17#include "sigchain.h"
  18#include "submodule-config.h"
  19#include "submodule.h"
  20#include "connected.h"
  21#include "argv-array.h"
  22#include "utf8.h"
  23#include "packfile.h"
  24#include "list-objects-filter-options.h"
  25#include "commit-reach.h"
  26
  27static const char * const builtin_fetch_usage[] = {
  28        N_("git fetch [<options>] [<repository> [<refspec>...]]"),
  29        N_("git fetch [<options>] <group>"),
  30        N_("git fetch --multiple [<options>] [(<repository> | <group>)...]"),
  31        N_("git fetch --all [<options>]"),
  32        NULL
  33};
  34
  35enum {
  36        TAGS_UNSET = 0,
  37        TAGS_DEFAULT = 1,
  38        TAGS_SET = 2
  39};
  40
  41static int fetch_prune_config = -1; /* unspecified */
  42static int prune = -1; /* unspecified */
  43#define PRUNE_BY_DEFAULT 0 /* do we prune by default? */
  44
  45static int fetch_prune_tags_config = -1; /* unspecified */
  46static int prune_tags = -1; /* unspecified */
  47#define PRUNE_TAGS_BY_DEFAULT 0 /* do we prune tags by default? */
  48
  49static int all, append, dry_run, force, keep, multiple, update_head_ok, verbosity, deepen_relative;
  50static int progress = -1;
  51static int tags = TAGS_DEFAULT, unshallow, update_shallow, deepen;
  52static int max_children = 1;
  53static enum transport_family family;
  54static const char *depth;
  55static const char *deepen_since;
  56static const char *upload_pack;
  57static struct string_list deepen_not = STRING_LIST_INIT_NODUP;
  58static struct strbuf default_rla = STRBUF_INIT;
  59static struct transport *gtransport;
  60static struct transport *gsecondary;
  61static const char *submodule_prefix = "";
  62static int recurse_submodules = RECURSE_SUBMODULES_DEFAULT;
  63static int recurse_submodules_default = RECURSE_SUBMODULES_ON_DEMAND;
  64static int shown_url = 0;
  65static struct refspec refmap = REFSPEC_INIT_FETCH;
  66static struct list_objects_filter_options filter_options;
  67static struct string_list server_options = STRING_LIST_INIT_DUP;
  68static struct string_list negotiation_tip = STRING_LIST_INIT_NODUP;
  69
  70static int git_fetch_config(const char *k, const char *v, void *cb)
  71{
  72        if (!strcmp(k, "fetch.prune")) {
  73                fetch_prune_config = git_config_bool(k, v);
  74                return 0;
  75        }
  76
  77        if (!strcmp(k, "fetch.prunetags")) {
  78                fetch_prune_tags_config = git_config_bool(k, v);
  79                return 0;
  80        }
  81
  82        if (!strcmp(k, "submodule.recurse")) {
  83                int r = git_config_bool(k, v) ?
  84                        RECURSE_SUBMODULES_ON : RECURSE_SUBMODULES_OFF;
  85                recurse_submodules = r;
  86        }
  87
  88        if (!strcmp(k, "submodule.fetchjobs")) {
  89                max_children = parse_submodule_fetchjobs(k, v);
  90                return 0;
  91        } else if (!strcmp(k, "fetch.recursesubmodules")) {
  92                recurse_submodules = parse_fetch_recurse_submodules_arg(k, v);
  93                return 0;
  94        }
  95
  96        return git_default_config(k, v, cb);
  97}
  98
  99static int parse_refmap_arg(const struct option *opt, const char *arg, int unset)
 100{
 101        /*
 102         * "git fetch --refmap='' origin foo"
 103         * can be used to tell the command not to store anywhere
 104         */
 105        refspec_append(&refmap, arg);
 106
 107        return 0;
 108}
 109
 110static struct option builtin_fetch_options[] = {
 111        OPT__VERBOSITY(&verbosity),
 112        OPT_BOOL(0, "all", &all,
 113                 N_("fetch from all remotes")),
 114        OPT_BOOL('a', "append", &append,
 115                 N_("append to .git/FETCH_HEAD instead of overwriting")),
 116        OPT_STRING(0, "upload-pack", &upload_pack, N_("path"),
 117                   N_("path to upload pack on remote end")),
 118        OPT__FORCE(&force, N_("force overwrite of local reference"), 0),
 119        OPT_BOOL('m', "multiple", &multiple,
 120                 N_("fetch from multiple remotes")),
 121        OPT_SET_INT('t', "tags", &tags,
 122                    N_("fetch all tags and associated objects"), TAGS_SET),
 123        OPT_SET_INT('n', NULL, &tags,
 124                    N_("do not fetch all tags (--no-tags)"), TAGS_UNSET),
 125        OPT_INTEGER('j', "jobs", &max_children,
 126                    N_("number of submodules fetched in parallel")),
 127        OPT_BOOL('p', "prune", &prune,
 128                 N_("prune remote-tracking branches no longer on remote")),
 129        OPT_BOOL('P', "prune-tags", &prune_tags,
 130                 N_("prune local tags no longer on remote and clobber changed tags")),
 131        { OPTION_CALLBACK, 0, "recurse-submodules", &recurse_submodules, N_("on-demand"),
 132                    N_("control recursive fetching of submodules"),
 133                    PARSE_OPT_OPTARG, option_fetch_parse_recurse_submodules },
 134        OPT_BOOL(0, "dry-run", &dry_run,
 135                 N_("dry run")),
 136        OPT_BOOL('k', "keep", &keep, N_("keep downloaded pack")),
 137        OPT_BOOL('u', "update-head-ok", &update_head_ok,
 138                    N_("allow updating of HEAD ref")),
 139        OPT_BOOL(0, "progress", &progress, N_("force progress reporting")),
 140        OPT_STRING(0, "depth", &depth, N_("depth"),
 141                   N_("deepen history of shallow clone")),
 142        OPT_STRING(0, "shallow-since", &deepen_since, N_("time"),
 143                   N_("deepen history of shallow repository based on time")),
 144        OPT_STRING_LIST(0, "shallow-exclude", &deepen_not, N_("revision"),
 145                        N_("deepen history of shallow clone, excluding rev")),
 146        OPT_INTEGER(0, "deepen", &deepen_relative,
 147                    N_("deepen history of shallow clone")),
 148        OPT_SET_INT_F(0, "unshallow", &unshallow,
 149                      N_("convert to a complete repository"),
 150                      1, PARSE_OPT_NONEG),
 151        { OPTION_STRING, 0, "submodule-prefix", &submodule_prefix, N_("dir"),
 152                   N_("prepend this to submodule path output"), PARSE_OPT_HIDDEN },
 153        { OPTION_CALLBACK, 0, "recurse-submodules-default",
 154                   &recurse_submodules_default, N_("on-demand"),
 155                   N_("default for recursive fetching of submodules "
 156                      "(lower priority than config files)"),
 157                   PARSE_OPT_HIDDEN, option_fetch_parse_recurse_submodules },
 158        OPT_BOOL(0, "update-shallow", &update_shallow,
 159                 N_("accept refs that update .git/shallow")),
 160        { OPTION_CALLBACK, 0, "refmap", NULL, N_("refmap"),
 161          N_("specify fetch refmap"), PARSE_OPT_NONEG, parse_refmap_arg },
 162        OPT_STRING_LIST('o', "server-option", &server_options, N_("server-specific"), N_("option to transmit")),
 163        OPT_SET_INT('4', "ipv4", &family, N_("use IPv4 addresses only"),
 164                        TRANSPORT_FAMILY_IPV4),
 165        OPT_SET_INT('6', "ipv6", &family, N_("use IPv6 addresses only"),
 166                        TRANSPORT_FAMILY_IPV6),
 167        OPT_STRING_LIST(0, "negotiation-tip", &negotiation_tip, N_("revision"),
 168                        N_("report that we have only objects reachable from this object")),
 169        OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options),
 170        OPT_END()
 171};
 172
 173static void unlock_pack(void)
 174{
 175        if (gtransport)
 176                transport_unlock_pack(gtransport);
 177        if (gsecondary)
 178                transport_unlock_pack(gsecondary);
 179}
 180
 181static void unlock_pack_on_signal(int signo)
 182{
 183        unlock_pack();
 184        sigchain_pop(signo);
 185        raise(signo);
 186}
 187
 188static void add_merge_config(struct ref **head,
 189                           const struct ref *remote_refs,
 190                           struct branch *branch,
 191                           struct ref ***tail)
 192{
 193        int i;
 194
 195        for (i = 0; i < branch->merge_nr; i++) {
 196                struct ref *rm, **old_tail = *tail;
 197                struct refspec_item refspec;
 198
 199                for (rm = *head; rm; rm = rm->next) {
 200                        if (branch_merge_matches(branch, i, rm->name)) {
 201                                rm->fetch_head_status = FETCH_HEAD_MERGE;
 202                                break;
 203                        }
 204                }
 205                if (rm)
 206                        continue;
 207
 208                /*
 209                 * Not fetched to a remote-tracking branch?  We need to fetch
 210                 * it anyway to allow this branch's "branch.$name.merge"
 211                 * to be honored by 'git pull', but we do not have to
 212                 * fail if branch.$name.merge is misconfigured to point
 213                 * at a nonexisting branch.  If we were indeed called by
 214                 * 'git pull', it will notice the misconfiguration because
 215                 * there is no entry in the resulting FETCH_HEAD marked
 216                 * for merging.
 217                 */
 218                memset(&refspec, 0, sizeof(refspec));
 219                refspec.src = branch->merge[i]->src;
 220                get_fetch_map(remote_refs, &refspec, tail, 1);
 221                for (rm = *old_tail; rm; rm = rm->next)
 222                        rm->fetch_head_status = FETCH_HEAD_MERGE;
 223        }
 224}
 225
 226static int will_fetch(struct ref **head, const unsigned char *sha1)
 227{
 228        struct ref *rm = *head;
 229        while (rm) {
 230                if (hasheq(rm->old_oid.hash, sha1))
 231                        return 1;
 232                rm = rm->next;
 233        }
 234        return 0;
 235}
 236
 237struct refname_hash_entry {
 238        struct hashmap_entry ent; /* must be the first member */
 239        struct object_id oid;
 240        int ignore;
 241        char refname[FLEX_ARRAY];
 242};
 243
 244static int refname_hash_entry_cmp(const void *hashmap_cmp_fn_data,
 245                                  const void *e1_,
 246                                  const void *e2_,
 247                                  const void *keydata)
 248{
 249        const struct refname_hash_entry *e1 = e1_;
 250        const struct refname_hash_entry *e2 = e2_;
 251
 252        return strcmp(e1->refname, keydata ? keydata : e2->refname);
 253}
 254
 255static struct refname_hash_entry *refname_hash_add(struct hashmap *map,
 256                                                   const char *refname,
 257                                                   const struct object_id *oid)
 258{
 259        struct refname_hash_entry *ent;
 260        size_t len = strlen(refname);
 261
 262        FLEX_ALLOC_MEM(ent, refname, refname, len);
 263        hashmap_entry_init(ent, strhash(refname));
 264        oidcpy(&ent->oid, oid);
 265        hashmap_add(map, ent);
 266        return ent;
 267}
 268
 269static int add_one_refname(const char *refname,
 270                           const struct object_id *oid,
 271                           int flag, void *cbdata)
 272{
 273        struct hashmap *refname_map = cbdata;
 274
 275        (void) refname_hash_add(refname_map, refname, oid);
 276        return 0;
 277}
 278
 279static void refname_hash_init(struct hashmap *map)
 280{
 281        hashmap_init(map, refname_hash_entry_cmp, NULL, 0);
 282}
 283
 284static int refname_hash_exists(struct hashmap *map, const char *refname)
 285{
 286        return !!hashmap_get_from_hash(map, strhash(refname), refname);
 287}
 288
 289static void clear_item(struct refname_hash_entry *item)
 290{
 291        item->ignore = 1;
 292}
 293
 294static void find_non_local_tags(const struct ref *refs,
 295                                struct ref **head,
 296                                struct ref ***tail)
 297{
 298        struct hashmap existing_refs;
 299        struct hashmap remote_refs;
 300        struct string_list remote_refs_list = STRING_LIST_INIT_NODUP;
 301        struct string_list_item *remote_ref_item;
 302        const struct ref *ref;
 303        struct refname_hash_entry *item = NULL;
 304
 305        refname_hash_init(&existing_refs);
 306        refname_hash_init(&remote_refs);
 307
 308        for_each_ref(add_one_refname, &existing_refs);
 309        for (ref = refs; ref; ref = ref->next) {
 310                if (!starts_with(ref->name, "refs/tags/"))
 311                        continue;
 312
 313                /*
 314                 * The peeled ref always follows the matching base
 315                 * ref, so if we see a peeled ref that we don't want
 316                 * to fetch then we can mark the ref entry in the list
 317                 * as one to ignore by setting util to NULL.
 318                 */
 319                if (ends_with(ref->name, "^{}")) {
 320                        if (item &&
 321                            !has_object_file_with_flags(&ref->old_oid,
 322                                                        OBJECT_INFO_QUICK) &&
 323                            !will_fetch(head, ref->old_oid.hash) &&
 324                            !has_sha1_file_with_flags(item->oid.hash,
 325                                                      OBJECT_INFO_QUICK) &&
 326                            !will_fetch(head, item->oid.hash))
 327                                clear_item(item);
 328                        item = NULL;
 329                        continue;
 330                }
 331
 332                /*
 333                 * If item is non-NULL here, then we previously saw a
 334                 * ref not followed by a peeled reference, so we need
 335                 * to check if it is a lightweight tag that we want to
 336                 * fetch.
 337                 */
 338                if (item &&
 339                    !has_sha1_file_with_flags(item->oid.hash, OBJECT_INFO_QUICK) &&
 340                    !will_fetch(head, item->oid.hash))
 341                        clear_item(item);
 342
 343                item = NULL;
 344
 345                /* skip duplicates and refs that we already have */
 346                if (refname_hash_exists(&remote_refs, ref->name) ||
 347                    refname_hash_exists(&existing_refs, ref->name))
 348                        continue;
 349
 350                item = refname_hash_add(&remote_refs, ref->name, &ref->old_oid);
 351                string_list_insert(&remote_refs_list, ref->name);
 352        }
 353        hashmap_free(&existing_refs, 1);
 354
 355        /*
 356         * We may have a final lightweight tag that needs to be
 357         * checked to see if it needs fetching.
 358         */
 359        if (item &&
 360            !has_sha1_file_with_flags(item->oid.hash, OBJECT_INFO_QUICK) &&
 361            !will_fetch(head, item->oid.hash))
 362                clear_item(item);
 363
 364        /*
 365         * For all the tags in the remote_refs_list,
 366         * add them to the list of refs to be fetched
 367         */
 368        for_each_string_list_item(remote_ref_item, &remote_refs_list) {
 369                const char *refname = remote_ref_item->string;
 370                struct ref *rm;
 371
 372                item = hashmap_get_from_hash(&remote_refs, strhash(refname), refname);
 373                if (!item)
 374                        BUG("unseen remote ref?");
 375
 376                /* Unless we have already decided to ignore this item... */
 377                if (item->ignore)
 378                        continue;
 379
 380                rm = alloc_ref(item->refname);
 381                rm->peer_ref = alloc_ref(item->refname);
 382                oidcpy(&rm->old_oid, &item->oid);
 383                **tail = rm;
 384                *tail = &rm->next;
 385        }
 386        hashmap_free(&remote_refs, 1);
 387        string_list_clear(&remote_refs_list, 0);
 388}
 389
 390static struct ref *get_ref_map(struct remote *remote,
 391                               const struct ref *remote_refs,
 392                               struct refspec *rs,
 393                               int tags, int *autotags)
 394{
 395        int i;
 396        struct ref *rm;
 397        struct ref *ref_map = NULL;
 398        struct ref **tail = &ref_map;
 399
 400        /* opportunistically-updated references: */
 401        struct ref *orefs = NULL, **oref_tail = &orefs;
 402
 403        struct hashmap existing_refs;
 404
 405        if (rs->nr) {
 406                struct refspec *fetch_refspec;
 407
 408                for (i = 0; i < rs->nr; i++) {
 409                        get_fetch_map(remote_refs, &rs->items[i], &tail, 0);
 410                        if (rs->items[i].dst && rs->items[i].dst[0])
 411                                *autotags = 1;
 412                }
 413                /* Merge everything on the command line (but not --tags) */
 414                for (rm = ref_map; rm; rm = rm->next)
 415                        rm->fetch_head_status = FETCH_HEAD_MERGE;
 416
 417                /*
 418                 * For any refs that we happen to be fetching via
 419                 * command-line arguments, the destination ref might
 420                 * have been missing or have been different than the
 421                 * remote-tracking ref that would be derived from the
 422                 * configured refspec.  In these cases, we want to
 423                 * take the opportunity to update their configured
 424                 * remote-tracking reference.  However, we do not want
 425                 * to mention these entries in FETCH_HEAD at all, as
 426                 * they would simply be duplicates of existing
 427                 * entries, so we set them FETCH_HEAD_IGNORE below.
 428                 *
 429                 * We compute these entries now, based only on the
 430                 * refspecs specified on the command line.  But we add
 431                 * them to the list following the refspecs resulting
 432                 * from the tags option so that one of the latter,
 433                 * which has FETCH_HEAD_NOT_FOR_MERGE, is not removed
 434                 * by ref_remove_duplicates() in favor of one of these
 435                 * opportunistic entries with FETCH_HEAD_IGNORE.
 436                 */
 437                if (refmap.nr)
 438                        fetch_refspec = &refmap;
 439                else
 440                        fetch_refspec = &remote->fetch;
 441
 442                for (i = 0; i < fetch_refspec->nr; i++)
 443                        get_fetch_map(ref_map, &fetch_refspec->items[i], &oref_tail, 1);
 444        } else if (refmap.nr) {
 445                die("--refmap option is only meaningful with command-line refspec(s).");
 446        } else {
 447                /* Use the defaults */
 448                struct branch *branch = branch_get(NULL);
 449                int has_merge = branch_has_merge_config(branch);
 450                if (remote &&
 451                    (remote->fetch.nr ||
 452                     /* Note: has_merge implies non-NULL branch->remote_name */
 453                     (has_merge && !strcmp(branch->remote_name, remote->name)))) {
 454                        for (i = 0; i < remote->fetch.nr; i++) {
 455                                get_fetch_map(remote_refs, &remote->fetch.items[i], &tail, 0);
 456                                if (remote->fetch.items[i].dst &&
 457                                    remote->fetch.items[i].dst[0])
 458                                        *autotags = 1;
 459                                if (!i && !has_merge && ref_map &&
 460                                    !remote->fetch.items[0].pattern)
 461                                        ref_map->fetch_head_status = FETCH_HEAD_MERGE;
 462                        }
 463                        /*
 464                         * if the remote we're fetching from is the same
 465                         * as given in branch.<name>.remote, we add the
 466                         * ref given in branch.<name>.merge, too.
 467                         *
 468                         * Note: has_merge implies non-NULL branch->remote_name
 469                         */
 470                        if (has_merge &&
 471                            !strcmp(branch->remote_name, remote->name))
 472                                add_merge_config(&ref_map, remote_refs, branch, &tail);
 473                } else {
 474                        ref_map = get_remote_ref(remote_refs, "HEAD");
 475                        if (!ref_map)
 476                                die(_("Couldn't find remote ref HEAD"));
 477                        ref_map->fetch_head_status = FETCH_HEAD_MERGE;
 478                        tail = &ref_map->next;
 479                }
 480        }
 481
 482        if (tags == TAGS_SET)
 483                /* also fetch all tags */
 484                get_fetch_map(remote_refs, tag_refspec, &tail, 0);
 485        else if (tags == TAGS_DEFAULT && *autotags)
 486                find_non_local_tags(remote_refs, &ref_map, &tail);
 487
 488        /* Now append any refs to be updated opportunistically: */
 489        *tail = orefs;
 490        for (rm = orefs; rm; rm = rm->next) {
 491                rm->fetch_head_status = FETCH_HEAD_IGNORE;
 492                tail = &rm->next;
 493        }
 494
 495        ref_map = ref_remove_duplicates(ref_map);
 496
 497        refname_hash_init(&existing_refs);
 498        for_each_ref(add_one_refname, &existing_refs);
 499
 500        for (rm = ref_map; rm; rm = rm->next) {
 501                if (rm->peer_ref) {
 502                        const char *refname = rm->peer_ref->name;
 503                        struct refname_hash_entry *peer_item;
 504
 505                        peer_item = hashmap_get_from_hash(&existing_refs,
 506                                                          strhash(refname),
 507                                                          refname);
 508                        if (peer_item) {
 509                                struct object_id *old_oid = &peer_item->oid;
 510                                oidcpy(&rm->peer_ref->old_oid, old_oid);
 511                        }
 512                }
 513        }
 514        hashmap_free(&existing_refs, 1);
 515
 516        return ref_map;
 517}
 518
 519#define STORE_REF_ERROR_OTHER 1
 520#define STORE_REF_ERROR_DF_CONFLICT 2
 521
 522static int s_update_ref(const char *action,
 523                        struct ref *ref,
 524                        int check_old)
 525{
 526        char *msg;
 527        char *rla = getenv("GIT_REFLOG_ACTION");
 528        struct ref_transaction *transaction;
 529        struct strbuf err = STRBUF_INIT;
 530        int ret, df_conflict = 0;
 531
 532        if (dry_run)
 533                return 0;
 534        if (!rla)
 535                rla = default_rla.buf;
 536        msg = xstrfmt("%s: %s", rla, action);
 537
 538        transaction = ref_transaction_begin(&err);
 539        if (!transaction ||
 540            ref_transaction_update(transaction, ref->name,
 541                                   &ref->new_oid,
 542                                   check_old ? &ref->old_oid : NULL,
 543                                   0, msg, &err))
 544                goto fail;
 545
 546        ret = ref_transaction_commit(transaction, &err);
 547        if (ret) {
 548                df_conflict = (ret == TRANSACTION_NAME_CONFLICT);
 549                goto fail;
 550        }
 551
 552        ref_transaction_free(transaction);
 553        strbuf_release(&err);
 554        free(msg);
 555        return 0;
 556fail:
 557        ref_transaction_free(transaction);
 558        error("%s", err.buf);
 559        strbuf_release(&err);
 560        free(msg);
 561        return df_conflict ? STORE_REF_ERROR_DF_CONFLICT
 562                           : STORE_REF_ERROR_OTHER;
 563}
 564
 565static int refcol_width = 10;
 566static int compact_format;
 567
 568static void adjust_refcol_width(const struct ref *ref)
 569{
 570        int max, rlen, llen, len;
 571
 572        /* uptodate lines are only shown on high verbosity level */
 573        if (!verbosity && oideq(&ref->peer_ref->old_oid, &ref->old_oid))
 574                return;
 575
 576        max    = term_columns();
 577        rlen   = utf8_strwidth(prettify_refname(ref->name));
 578
 579        llen   = utf8_strwidth(prettify_refname(ref->peer_ref->name));
 580
 581        /*
 582         * rough estimation to see if the output line is too long and
 583         * should not be counted (we can't do precise calculation
 584         * anyway because we don't know if the error explanation part
 585         * will be printed in update_local_ref)
 586         */
 587        if (compact_format) {
 588                llen = 0;
 589                max = max * 2 / 3;
 590        }
 591        len = 21 /* flag and summary */ + rlen + 4 /* -> */ + llen;
 592        if (len >= max)
 593                return;
 594
 595        /*
 596         * Not precise calculation for compact mode because '*' can
 597         * appear on the left hand side of '->' and shrink the column
 598         * back.
 599         */
 600        if (refcol_width < rlen)
 601                refcol_width = rlen;
 602}
 603
 604static void prepare_format_display(struct ref *ref_map)
 605{
 606        struct ref *rm;
 607        const char *format = "full";
 608
 609        git_config_get_string_const("fetch.output", &format);
 610        if (!strcasecmp(format, "full"))
 611                compact_format = 0;
 612        else if (!strcasecmp(format, "compact"))
 613                compact_format = 1;
 614        else
 615                die(_("configuration fetch.output contains invalid value %s"),
 616                    format);
 617
 618        for (rm = ref_map; rm; rm = rm->next) {
 619                if (rm->status == REF_STATUS_REJECT_SHALLOW ||
 620                    !rm->peer_ref ||
 621                    !strcmp(rm->name, "HEAD"))
 622                        continue;
 623
 624                adjust_refcol_width(rm);
 625        }
 626}
 627
 628static void print_remote_to_local(struct strbuf *display,
 629                                  const char *remote, const char *local)
 630{
 631        strbuf_addf(display, "%-*s -> %s", refcol_width, remote, local);
 632}
 633
 634static int find_and_replace(struct strbuf *haystack,
 635                            const char *needle,
 636                            const char *placeholder)
 637{
 638        const char *p = strstr(haystack->buf, needle);
 639        int plen, nlen;
 640
 641        if (!p)
 642                return 0;
 643
 644        if (p > haystack->buf && p[-1] != '/')
 645                return 0;
 646
 647        plen = strlen(p);
 648        nlen = strlen(needle);
 649        if (plen > nlen && p[nlen] != '/')
 650                return 0;
 651
 652        strbuf_splice(haystack, p - haystack->buf, nlen,
 653                      placeholder, strlen(placeholder));
 654        return 1;
 655}
 656
 657static void print_compact(struct strbuf *display,
 658                          const char *remote, const char *local)
 659{
 660        struct strbuf r = STRBUF_INIT;
 661        struct strbuf l = STRBUF_INIT;
 662
 663        if (!strcmp(remote, local)) {
 664                strbuf_addf(display, "%-*s -> *", refcol_width, remote);
 665                return;
 666        }
 667
 668        strbuf_addstr(&r, remote);
 669        strbuf_addstr(&l, local);
 670
 671        if (!find_and_replace(&r, local, "*"))
 672                find_and_replace(&l, remote, "*");
 673        print_remote_to_local(display, r.buf, l.buf);
 674
 675        strbuf_release(&r);
 676        strbuf_release(&l);
 677}
 678
 679static void format_display(struct strbuf *display, char code,
 680                           const char *summary, const char *error,
 681                           const char *remote, const char *local,
 682                           int summary_width)
 683{
 684        int width = (summary_width + strlen(summary) - gettext_width(summary));
 685
 686        strbuf_addf(display, "%c %-*s ", code, width, summary);
 687        if (!compact_format)
 688                print_remote_to_local(display, remote, local);
 689        else
 690                print_compact(display, remote, local);
 691        if (error)
 692                strbuf_addf(display, "  (%s)", error);
 693}
 694
 695static int update_local_ref(struct ref *ref,
 696                            const char *remote,
 697                            const struct ref *remote_ref,
 698                            struct strbuf *display,
 699                            int summary_width)
 700{
 701        struct commit *current = NULL, *updated;
 702        enum object_type type;
 703        struct branch *current_branch = branch_get(NULL);
 704        const char *pretty_ref = prettify_refname(ref->name);
 705
 706        type = oid_object_info(the_repository, &ref->new_oid, NULL);
 707        if (type < 0)
 708                die(_("object %s not found"), oid_to_hex(&ref->new_oid));
 709
 710        if (oideq(&ref->old_oid, &ref->new_oid)) {
 711                if (verbosity > 0)
 712                        format_display(display, '=', _("[up to date]"), NULL,
 713                                       remote, pretty_ref, summary_width);
 714                return 0;
 715        }
 716
 717        if (current_branch &&
 718            !strcmp(ref->name, current_branch->name) &&
 719            !(update_head_ok || is_bare_repository()) &&
 720            !is_null_oid(&ref->old_oid)) {
 721                /*
 722                 * If this is the head, and it's not okay to update
 723                 * the head, and the old value of the head isn't empty...
 724                 */
 725                format_display(display, '!', _("[rejected]"),
 726                               _("can't fetch in current branch"),
 727                               remote, pretty_ref, summary_width);
 728                return 1;
 729        }
 730
 731        if (!is_null_oid(&ref->old_oid) &&
 732            starts_with(ref->name, "refs/tags/")) {
 733                if (force || ref->force) {
 734                        int r;
 735                        r = s_update_ref("updating tag", ref, 0);
 736                        format_display(display, r ? '!' : 't', _("[tag update]"),
 737                                       r ? _("unable to update local ref") : NULL,
 738                                       remote, pretty_ref, summary_width);
 739                        return r;
 740                } else {
 741                        format_display(display, '!', _("[rejected]"), _("would clobber existing tag"),
 742                                       remote, pretty_ref, summary_width);
 743                        return 1;
 744                }
 745        }
 746
 747        current = lookup_commit_reference_gently(the_repository,
 748                                                 &ref->old_oid, 1);
 749        updated = lookup_commit_reference_gently(the_repository,
 750                                                 &ref->new_oid, 1);
 751        if (!current || !updated) {
 752                const char *msg;
 753                const char *what;
 754                int r;
 755                /*
 756                 * Nicely describe the new ref we're fetching.
 757                 * Base this on the remote's ref name, as it's
 758                 * more likely to follow a standard layout.
 759                 */
 760                const char *name = remote_ref ? remote_ref->name : "";
 761                if (starts_with(name, "refs/tags/")) {
 762                        msg = "storing tag";
 763                        what = _("[new tag]");
 764                } else if (starts_with(name, "refs/heads/")) {
 765                        msg = "storing head";
 766                        what = _("[new branch]");
 767                } else {
 768                        msg = "storing ref";
 769                        what = _("[new ref]");
 770                }
 771
 772                if ((recurse_submodules != RECURSE_SUBMODULES_OFF) &&
 773                    (recurse_submodules != RECURSE_SUBMODULES_ON))
 774                        check_for_new_submodule_commits(&ref->new_oid);
 775                r = s_update_ref(msg, ref, 0);
 776                format_display(display, r ? '!' : '*', what,
 777                               r ? _("unable to update local ref") : NULL,
 778                               remote, pretty_ref, summary_width);
 779                return r;
 780        }
 781
 782        if (in_merge_bases(current, updated)) {
 783                struct strbuf quickref = STRBUF_INIT;
 784                int r;
 785                strbuf_add_unique_abbrev(&quickref, &current->object.oid, DEFAULT_ABBREV);
 786                strbuf_addstr(&quickref, "..");
 787                strbuf_add_unique_abbrev(&quickref, &ref->new_oid, DEFAULT_ABBREV);
 788                if ((recurse_submodules != RECURSE_SUBMODULES_OFF) &&
 789                    (recurse_submodules != RECURSE_SUBMODULES_ON))
 790                        check_for_new_submodule_commits(&ref->new_oid);
 791                r = s_update_ref("fast-forward", ref, 1);
 792                format_display(display, r ? '!' : ' ', quickref.buf,
 793                               r ? _("unable to update local ref") : NULL,
 794                               remote, pretty_ref, summary_width);
 795                strbuf_release(&quickref);
 796                return r;
 797        } else if (force || ref->force) {
 798                struct strbuf quickref = STRBUF_INIT;
 799                int r;
 800                strbuf_add_unique_abbrev(&quickref, &current->object.oid, DEFAULT_ABBREV);
 801                strbuf_addstr(&quickref, "...");
 802                strbuf_add_unique_abbrev(&quickref, &ref->new_oid, DEFAULT_ABBREV);
 803                if ((recurse_submodules != RECURSE_SUBMODULES_OFF) &&
 804                    (recurse_submodules != RECURSE_SUBMODULES_ON))
 805                        check_for_new_submodule_commits(&ref->new_oid);
 806                r = s_update_ref("forced-update", ref, 1);
 807                format_display(display, r ? '!' : '+', quickref.buf,
 808                               r ? _("unable to update local ref") : _("forced update"),
 809                               remote, pretty_ref, summary_width);
 810                strbuf_release(&quickref);
 811                return r;
 812        } else {
 813                format_display(display, '!', _("[rejected]"), _("non-fast-forward"),
 814                               remote, pretty_ref, summary_width);
 815                return 1;
 816        }
 817}
 818
 819static int iterate_ref_map(void *cb_data, struct object_id *oid)
 820{
 821        struct ref **rm = cb_data;
 822        struct ref *ref = *rm;
 823
 824        while (ref && ref->status == REF_STATUS_REJECT_SHALLOW)
 825                ref = ref->next;
 826        if (!ref)
 827                return -1; /* end of the list */
 828        *rm = ref->next;
 829        oidcpy(oid, &ref->old_oid);
 830        return 0;
 831}
 832
 833static int store_updated_refs(const char *raw_url, const char *remote_name,
 834                              int connectivity_checked, struct ref *ref_map)
 835{
 836        FILE *fp;
 837        struct commit *commit;
 838        int url_len, i, rc = 0;
 839        struct strbuf note = STRBUF_INIT;
 840        const char *what, *kind;
 841        struct ref *rm;
 842        char *url;
 843        const char *filename = dry_run ? "/dev/null" : git_path_fetch_head(the_repository);
 844        int want_status;
 845        int summary_width = transport_summary_width(ref_map);
 846
 847        fp = fopen(filename, "a");
 848        if (!fp)
 849                return error_errno(_("cannot open %s"), filename);
 850
 851        if (raw_url)
 852                url = transport_anonymize_url(raw_url);
 853        else
 854                url = xstrdup("foreign");
 855
 856        if (!connectivity_checked) {
 857                rm = ref_map;
 858                if (check_connected(iterate_ref_map, &rm, NULL)) {
 859                        rc = error(_("%s did not send all necessary objects\n"), url);
 860                        goto abort;
 861                }
 862        }
 863
 864        prepare_format_display(ref_map);
 865
 866        /*
 867         * We do a pass for each fetch_head_status type in their enum order, so
 868         * merged entries are written before not-for-merge. That lets readers
 869         * use FETCH_HEAD as a refname to refer to the ref to be merged.
 870         */
 871        for (want_status = FETCH_HEAD_MERGE;
 872             want_status <= FETCH_HEAD_IGNORE;
 873             want_status++) {
 874                for (rm = ref_map; rm; rm = rm->next) {
 875                        struct ref *ref = NULL;
 876                        const char *merge_status_marker = "";
 877
 878                        if (rm->status == REF_STATUS_REJECT_SHALLOW) {
 879                                if (want_status == FETCH_HEAD_MERGE)
 880                                        warning(_("reject %s because shallow roots are not allowed to be updated"),
 881                                                rm->peer_ref ? rm->peer_ref->name : rm->name);
 882                                continue;
 883                        }
 884
 885                        commit = lookup_commit_reference_gently(the_repository,
 886                                                                &rm->old_oid,
 887                                                                1);
 888                        if (!commit)
 889                                rm->fetch_head_status = FETCH_HEAD_NOT_FOR_MERGE;
 890
 891                        if (rm->fetch_head_status != want_status)
 892                                continue;
 893
 894                        if (rm->peer_ref) {
 895                                ref = alloc_ref(rm->peer_ref->name);
 896                                oidcpy(&ref->old_oid, &rm->peer_ref->old_oid);
 897                                oidcpy(&ref->new_oid, &rm->old_oid);
 898                                ref->force = rm->peer_ref->force;
 899                        }
 900
 901
 902                        if (!strcmp(rm->name, "HEAD")) {
 903                                kind = "";
 904                                what = "";
 905                        }
 906                        else if (starts_with(rm->name, "refs/heads/")) {
 907                                kind = "branch";
 908                                what = rm->name + 11;
 909                        }
 910                        else if (starts_with(rm->name, "refs/tags/")) {
 911                                kind = "tag";
 912                                what = rm->name + 10;
 913                        }
 914                        else if (starts_with(rm->name, "refs/remotes/")) {
 915                                kind = "remote-tracking branch";
 916                                what = rm->name + 13;
 917                        }
 918                        else {
 919                                kind = "";
 920                                what = rm->name;
 921                        }
 922
 923                        url_len = strlen(url);
 924                        for (i = url_len - 1; url[i] == '/' && 0 <= i; i--)
 925                                ;
 926                        url_len = i + 1;
 927                        if (4 < i && !strncmp(".git", url + i - 3, 4))
 928                                url_len = i - 3;
 929
 930                        strbuf_reset(&note);
 931                        if (*what) {
 932                                if (*kind)
 933                                        strbuf_addf(&note, "%s ", kind);
 934                                strbuf_addf(&note, "'%s' of ", what);
 935                        }
 936                        switch (rm->fetch_head_status) {
 937                        case FETCH_HEAD_NOT_FOR_MERGE:
 938                                merge_status_marker = "not-for-merge";
 939                                /* fall-through */
 940                        case FETCH_HEAD_MERGE:
 941                                fprintf(fp, "%s\t%s\t%s",
 942                                        oid_to_hex(&rm->old_oid),
 943                                        merge_status_marker,
 944                                        note.buf);
 945                                for (i = 0; i < url_len; ++i)
 946                                        if ('\n' == url[i])
 947                                                fputs("\\n", fp);
 948                                        else
 949                                                fputc(url[i], fp);
 950                                fputc('\n', fp);
 951                                break;
 952                        default:
 953                                /* do not write anything to FETCH_HEAD */
 954                                break;
 955                        }
 956
 957                        strbuf_reset(&note);
 958                        if (ref) {
 959                                rc |= update_local_ref(ref, what, rm, &note,
 960                                                       summary_width);
 961                                free(ref);
 962                        } else
 963                                format_display(&note, '*',
 964                                               *kind ? kind : "branch", NULL,
 965                                               *what ? what : "HEAD",
 966                                               "FETCH_HEAD", summary_width);
 967                        if (note.len) {
 968                                if (verbosity >= 0 && !shown_url) {
 969                                        fprintf(stderr, _("From %.*s\n"),
 970                                                        url_len, url);
 971                                        shown_url = 1;
 972                                }
 973                                if (verbosity >= 0)
 974                                        fprintf(stderr, " %s\n", note.buf);
 975                        }
 976                }
 977        }
 978
 979        if (rc & STORE_REF_ERROR_DF_CONFLICT)
 980                error(_("some local refs could not be updated; try running\n"
 981                      " 'git remote prune %s' to remove any old, conflicting "
 982                      "branches"), remote_name);
 983
 984 abort:
 985        strbuf_release(&note);
 986        free(url);
 987        fclose(fp);
 988        return rc;
 989}
 990
 991/*
 992 * We would want to bypass the object transfer altogether if
 993 * everything we are going to fetch already exists and is connected
 994 * locally.
 995 */
 996static int quickfetch(struct ref *ref_map)
 997{
 998        struct ref *rm = ref_map;
 999        struct check_connected_options opt = CHECK_CONNECTED_INIT;
1000
1001        /*
1002         * If we are deepening a shallow clone we already have these
1003         * objects reachable.  Running rev-list here will return with
1004         * a good (0) exit status and we'll bypass the fetch that we
1005         * really need to perform.  Claiming failure now will ensure
1006         * we perform the network exchange to deepen our history.
1007         */
1008        if (deepen)
1009                return -1;
1010        opt.quiet = 1;
1011        return check_connected(iterate_ref_map, &rm, &opt);
1012}
1013
1014static int fetch_refs(struct transport *transport, struct ref *ref_map)
1015{
1016        int ret = quickfetch(ref_map);
1017        if (ret)
1018                ret = transport_fetch_refs(transport, ref_map);
1019        if (!ret)
1020                /*
1021                 * Keep the new pack's ".keep" file around to allow the caller
1022                 * time to update refs to reference the new objects.
1023                 */
1024                return 0;
1025        transport_unlock_pack(transport);
1026        return ret;
1027}
1028
1029/* Update local refs based on the ref values fetched from a remote */
1030static int consume_refs(struct transport *transport, struct ref *ref_map)
1031{
1032        int connectivity_checked = transport->smart_options
1033                ? transport->smart_options->connectivity_checked : 0;
1034        int ret = store_updated_refs(transport->url,
1035                                     transport->remote->name,
1036                                     connectivity_checked,
1037                                     ref_map);
1038        transport_unlock_pack(transport);
1039        return ret;
1040}
1041
1042static int prune_refs(struct refspec *rs, struct ref *ref_map,
1043                      const char *raw_url)
1044{
1045        int url_len, i, result = 0;
1046        struct ref *ref, *stale_refs = get_stale_heads(rs, ref_map);
1047        char *url;
1048        int summary_width = transport_summary_width(stale_refs);
1049        const char *dangling_msg = dry_run
1050                ? _("   (%s will become dangling)")
1051                : _("   (%s has become dangling)");
1052
1053        if (raw_url)
1054                url = transport_anonymize_url(raw_url);
1055        else
1056                url = xstrdup("foreign");
1057
1058        url_len = strlen(url);
1059        for (i = url_len - 1; url[i] == '/' && 0 <= i; i--)
1060                ;
1061
1062        url_len = i + 1;
1063        if (4 < i && !strncmp(".git", url + i - 3, 4))
1064                url_len = i - 3;
1065
1066        if (!dry_run) {
1067                struct string_list refnames = STRING_LIST_INIT_NODUP;
1068
1069                for (ref = stale_refs; ref; ref = ref->next)
1070                        string_list_append(&refnames, ref->name);
1071
1072                result = delete_refs("fetch: prune", &refnames, 0);
1073                string_list_clear(&refnames, 0);
1074        }
1075
1076        if (verbosity >= 0) {
1077                for (ref = stale_refs; ref; ref = ref->next) {
1078                        struct strbuf sb = STRBUF_INIT;
1079                        if (!shown_url) {
1080                                fprintf(stderr, _("From %.*s\n"), url_len, url);
1081                                shown_url = 1;
1082                        }
1083                        format_display(&sb, '-', _("[deleted]"), NULL,
1084                                       _("(none)"), prettify_refname(ref->name),
1085                                       summary_width);
1086                        fprintf(stderr, " %s\n",sb.buf);
1087                        strbuf_release(&sb);
1088                        warn_dangling_symref(stderr, dangling_msg, ref->name);
1089                }
1090        }
1091
1092        free(url);
1093        free_refs(stale_refs);
1094        return result;
1095}
1096
1097static void check_not_current_branch(struct ref *ref_map)
1098{
1099        struct branch *current_branch = branch_get(NULL);
1100
1101        if (is_bare_repository() || !current_branch)
1102                return;
1103
1104        for (; ref_map; ref_map = ref_map->next)
1105                if (ref_map->peer_ref && !strcmp(current_branch->refname,
1106                                        ref_map->peer_ref->name))
1107                        die(_("Refusing to fetch into current branch %s "
1108                            "of non-bare repository"), current_branch->refname);
1109}
1110
1111static int truncate_fetch_head(void)
1112{
1113        const char *filename = git_path_fetch_head(the_repository);
1114        FILE *fp = fopen_for_writing(filename);
1115
1116        if (!fp)
1117                return error_errno(_("cannot open %s"), filename);
1118        fclose(fp);
1119        return 0;
1120}
1121
1122static void set_option(struct transport *transport, const char *name, const char *value)
1123{
1124        int r = transport_set_option(transport, name, value);
1125        if (r < 0)
1126                die(_("Option \"%s\" value \"%s\" is not valid for %s"),
1127                    name, value, transport->url);
1128        if (r > 0)
1129                warning(_("Option \"%s\" is ignored for %s\n"),
1130                        name, transport->url);
1131}
1132
1133
1134static int add_oid(const char *refname, const struct object_id *oid, int flags,
1135                   void *cb_data)
1136{
1137        struct oid_array *oids = cb_data;
1138
1139        oid_array_append(oids, oid);
1140        return 0;
1141}
1142
1143static void add_negotiation_tips(struct git_transport_options *smart_options)
1144{
1145        struct oid_array *oids = xcalloc(1, sizeof(*oids));
1146        int i;
1147
1148        for (i = 0; i < negotiation_tip.nr; i++) {
1149                const char *s = negotiation_tip.items[i].string;
1150                int old_nr;
1151                if (!has_glob_specials(s)) {
1152                        struct object_id oid;
1153                        if (get_oid(s, &oid))
1154                                die("%s is not a valid object", s);
1155                        oid_array_append(oids, &oid);
1156                        continue;
1157                }
1158                old_nr = oids->nr;
1159                for_each_glob_ref(add_oid, s, oids);
1160                if (old_nr == oids->nr)
1161                        warning("Ignoring --negotiation-tip=%s because it does not match any refs",
1162                                s);
1163        }
1164        smart_options->negotiation_tips = oids;
1165}
1166
1167static struct transport *prepare_transport(struct remote *remote, int deepen)
1168{
1169        struct transport *transport;
1170        transport = transport_get(remote, NULL);
1171        transport_set_verbosity(transport, verbosity, progress);
1172        transport->family = family;
1173        if (upload_pack)
1174                set_option(transport, TRANS_OPT_UPLOADPACK, upload_pack);
1175        if (keep)
1176                set_option(transport, TRANS_OPT_KEEP, "yes");
1177        if (depth)
1178                set_option(transport, TRANS_OPT_DEPTH, depth);
1179        if (deepen && deepen_since)
1180                set_option(transport, TRANS_OPT_DEEPEN_SINCE, deepen_since);
1181        if (deepen && deepen_not.nr)
1182                set_option(transport, TRANS_OPT_DEEPEN_NOT,
1183                           (const char *)&deepen_not);
1184        if (deepen_relative)
1185                set_option(transport, TRANS_OPT_DEEPEN_RELATIVE, "yes");
1186        if (update_shallow)
1187                set_option(transport, TRANS_OPT_UPDATE_SHALLOW, "yes");
1188        if (filter_options.choice) {
1189                set_option(transport, TRANS_OPT_LIST_OBJECTS_FILTER,
1190                           filter_options.filter_spec);
1191                set_option(transport, TRANS_OPT_FROM_PROMISOR, "1");
1192        }
1193        if (negotiation_tip.nr) {
1194                if (transport->smart_options)
1195                        add_negotiation_tips(transport->smart_options);
1196                else
1197                        warning("Ignoring --negotiation-tip because the protocol does not support it.");
1198        }
1199        return transport;
1200}
1201
1202static void backfill_tags(struct transport *transport, struct ref *ref_map)
1203{
1204        int cannot_reuse;
1205
1206        /*
1207         * Once we have set TRANS_OPT_DEEPEN_SINCE, we can't unset it
1208         * when remote helper is used (setting it to an empty string
1209         * is not unsetting). We could extend the remote helper
1210         * protocol for that, but for now, just force a new connection
1211         * without deepen-since. Similar story for deepen-not.
1212         */
1213        cannot_reuse = transport->cannot_reuse ||
1214                deepen_since || deepen_not.nr;
1215        if (cannot_reuse) {
1216                gsecondary = prepare_transport(transport->remote, 0);
1217                transport = gsecondary;
1218        }
1219
1220        transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, NULL);
1221        transport_set_option(transport, TRANS_OPT_DEPTH, "0");
1222        transport_set_option(transport, TRANS_OPT_DEEPEN_RELATIVE, NULL);
1223        if (!fetch_refs(transport, ref_map))
1224                consume_refs(transport, ref_map);
1225
1226        if (gsecondary) {
1227                transport_disconnect(gsecondary);
1228                gsecondary = NULL;
1229        }
1230}
1231
1232static int do_fetch(struct transport *transport,
1233                    struct refspec *rs)
1234{
1235        struct ref *ref_map;
1236        int autotags = (transport->remote->fetch_tags == 1);
1237        int retcode = 0;
1238        const struct ref *remote_refs;
1239        struct argv_array ref_prefixes = ARGV_ARRAY_INIT;
1240
1241        if (tags == TAGS_DEFAULT) {
1242                if (transport->remote->fetch_tags == 2)
1243                        tags = TAGS_SET;
1244                if (transport->remote->fetch_tags == -1)
1245                        tags = TAGS_UNSET;
1246        }
1247
1248        /* if not appending, truncate FETCH_HEAD */
1249        if (!append && !dry_run) {
1250                retcode = truncate_fetch_head();
1251                if (retcode)
1252                        goto cleanup;
1253        }
1254
1255        if (rs->nr)
1256                refspec_ref_prefixes(rs, &ref_prefixes);
1257        else if (transport->remote && transport->remote->fetch.nr)
1258                refspec_ref_prefixes(&transport->remote->fetch, &ref_prefixes);
1259
1260        if (ref_prefixes.argc &&
1261            (tags == TAGS_SET || (tags == TAGS_DEFAULT))) {
1262                argv_array_push(&ref_prefixes, "refs/tags/");
1263        }
1264
1265        remote_refs = transport_get_remote_refs(transport, &ref_prefixes);
1266        argv_array_clear(&ref_prefixes);
1267
1268        ref_map = get_ref_map(transport->remote, remote_refs, rs,
1269                              tags, &autotags);
1270        if (!update_head_ok)
1271                check_not_current_branch(ref_map);
1272
1273        if (tags == TAGS_DEFAULT && autotags)
1274                transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
1275        if (prune) {
1276                /*
1277                 * We only prune based on refspecs specified
1278                 * explicitly (via command line or configuration); we
1279                 * don't care whether --tags was specified.
1280                 */
1281                if (rs->nr) {
1282                        prune_refs(rs, ref_map, transport->url);
1283                } else {
1284                        prune_refs(&transport->remote->fetch,
1285                                   ref_map,
1286                                   transport->url);
1287                }
1288        }
1289        if (fetch_refs(transport, ref_map) || consume_refs(transport, ref_map)) {
1290                free_refs(ref_map);
1291                retcode = 1;
1292                goto cleanup;
1293        }
1294        free_refs(ref_map);
1295
1296        /* if neither --no-tags nor --tags was specified, do automated tag
1297         * following ... */
1298        if (tags == TAGS_DEFAULT && autotags) {
1299                struct ref **tail = &ref_map;
1300                ref_map = NULL;
1301                find_non_local_tags(remote_refs, &ref_map, &tail);
1302                if (ref_map)
1303                        backfill_tags(transport, ref_map);
1304                free_refs(ref_map);
1305        }
1306
1307 cleanup:
1308        return retcode;
1309}
1310
1311static int get_one_remote_for_fetch(struct remote *remote, void *priv)
1312{
1313        struct string_list *list = priv;
1314        if (!remote->skip_default_update)
1315                string_list_append(list, remote->name);
1316        return 0;
1317}
1318
1319struct remote_group_data {
1320        const char *name;
1321        struct string_list *list;
1322};
1323
1324static int get_remote_group(const char *key, const char *value, void *priv)
1325{
1326        struct remote_group_data *g = priv;
1327
1328        if (skip_prefix(key, "remotes.", &key) && !strcmp(key, g->name)) {
1329                /* split list by white space */
1330                while (*value) {
1331                        size_t wordlen = strcspn(value, " \t\n");
1332
1333                        if (wordlen >= 1)
1334                                string_list_append_nodup(g->list,
1335                                                   xstrndup(value, wordlen));
1336                        value += wordlen + (value[wordlen] != '\0');
1337                }
1338        }
1339
1340        return 0;
1341}
1342
1343static int add_remote_or_group(const char *name, struct string_list *list)
1344{
1345        int prev_nr = list->nr;
1346        struct remote_group_data g;
1347        g.name = name; g.list = list;
1348
1349        git_config(get_remote_group, &g);
1350        if (list->nr == prev_nr) {
1351                struct remote *remote = remote_get(name);
1352                if (!remote_is_configured(remote, 0))
1353                        return 0;
1354                string_list_append(list, remote->name);
1355        }
1356        return 1;
1357}
1358
1359static void add_options_to_argv(struct argv_array *argv)
1360{
1361        if (dry_run)
1362                argv_array_push(argv, "--dry-run");
1363        if (prune != -1)
1364                argv_array_push(argv, prune ? "--prune" : "--no-prune");
1365        if (prune_tags != -1)
1366                argv_array_push(argv, prune_tags ? "--prune-tags" : "--no-prune-tags");
1367        if (update_head_ok)
1368                argv_array_push(argv, "--update-head-ok");
1369        if (force)
1370                argv_array_push(argv, "--force");
1371        if (keep)
1372                argv_array_push(argv, "--keep");
1373        if (recurse_submodules == RECURSE_SUBMODULES_ON)
1374                argv_array_push(argv, "--recurse-submodules");
1375        else if (recurse_submodules == RECURSE_SUBMODULES_ON_DEMAND)
1376                argv_array_push(argv, "--recurse-submodules=on-demand");
1377        if (tags == TAGS_SET)
1378                argv_array_push(argv, "--tags");
1379        else if (tags == TAGS_UNSET)
1380                argv_array_push(argv, "--no-tags");
1381        if (verbosity >= 2)
1382                argv_array_push(argv, "-v");
1383        if (verbosity >= 1)
1384                argv_array_push(argv, "-v");
1385        else if (verbosity < 0)
1386                argv_array_push(argv, "-q");
1387
1388}
1389
1390static int fetch_multiple(struct string_list *list)
1391{
1392        int i, result = 0;
1393        struct argv_array argv = ARGV_ARRAY_INIT;
1394
1395        if (!append && !dry_run) {
1396                int errcode = truncate_fetch_head();
1397                if (errcode)
1398                        return errcode;
1399        }
1400
1401        argv_array_pushl(&argv, "fetch", "--append", NULL);
1402        add_options_to_argv(&argv);
1403
1404        for (i = 0; i < list->nr; i++) {
1405                const char *name = list->items[i].string;
1406                argv_array_push(&argv, name);
1407                if (verbosity >= 0)
1408                        printf(_("Fetching %s\n"), name);
1409                if (run_command_v_opt(argv.argv, RUN_GIT_CMD)) {
1410                        error(_("Could not fetch %s"), name);
1411                        result = 1;
1412                }
1413                argv_array_pop(&argv);
1414        }
1415
1416        argv_array_clear(&argv);
1417        return result;
1418}
1419
1420/*
1421 * Fetching from the promisor remote should use the given filter-spec
1422 * or inherit the default filter-spec from the config.
1423 */
1424static inline void fetch_one_setup_partial(struct remote *remote)
1425{
1426        /*
1427         * Explicit --no-filter argument overrides everything, regardless
1428         * of any prior partial clones and fetches.
1429         */
1430        if (filter_options.no_filter)
1431                return;
1432
1433        /*
1434         * If no prior partial clone/fetch and the current fetch DID NOT
1435         * request a partial-fetch, do a normal fetch.
1436         */
1437        if (!repository_format_partial_clone && !filter_options.choice)
1438                return;
1439
1440        /*
1441         * If this is the FIRST partial-fetch request, we enable partial
1442         * on this repo and remember the given filter-spec as the default
1443         * for subsequent fetches to this remote.
1444         */
1445        if (!repository_format_partial_clone && filter_options.choice) {
1446                partial_clone_register(remote->name, &filter_options);
1447                return;
1448        }
1449
1450        /*
1451         * We are currently limited to only ONE promisor remote and only
1452         * allow partial-fetches from the promisor remote.
1453         */
1454        if (strcmp(remote->name, repository_format_partial_clone)) {
1455                if (filter_options.choice)
1456                        die(_("--filter can only be used with the remote configured in core.partialClone"));
1457                return;
1458        }
1459
1460        /*
1461         * Do a partial-fetch from the promisor remote using either the
1462         * explicitly given filter-spec or inherit the filter-spec from
1463         * the config.
1464         */
1465        if (!filter_options.choice)
1466                partial_clone_get_default_filter_spec(&filter_options);
1467        return;
1468}
1469
1470static int fetch_one(struct remote *remote, int argc, const char **argv, int prune_tags_ok)
1471{
1472        struct refspec rs = REFSPEC_INIT_FETCH;
1473        int i;
1474        int exit_code;
1475        int maybe_prune_tags;
1476        int remote_via_config = remote_is_configured(remote, 0);
1477
1478        if (!remote)
1479                die(_("No remote repository specified.  Please, specify either a URL or a\n"
1480                    "remote name from which new revisions should be fetched."));
1481
1482        gtransport = prepare_transport(remote, 1);
1483
1484        if (prune < 0) {
1485                /* no command line request */
1486                if (0 <= remote->prune)
1487                        prune = remote->prune;
1488                else if (0 <= fetch_prune_config)
1489                        prune = fetch_prune_config;
1490                else
1491                        prune = PRUNE_BY_DEFAULT;
1492        }
1493
1494        if (prune_tags < 0) {
1495                /* no command line request */
1496                if (0 <= remote->prune_tags)
1497                        prune_tags = remote->prune_tags;
1498                else if (0 <= fetch_prune_tags_config)
1499                        prune_tags = fetch_prune_tags_config;
1500                else
1501                        prune_tags = PRUNE_TAGS_BY_DEFAULT;
1502        }
1503
1504        maybe_prune_tags = prune_tags_ok && prune_tags;
1505        if (maybe_prune_tags && remote_via_config)
1506                refspec_append(&remote->fetch, TAG_REFSPEC);
1507
1508        if (maybe_prune_tags && (argc || !remote_via_config))
1509                refspec_append(&rs, TAG_REFSPEC);
1510
1511        for (i = 0; i < argc; i++) {
1512                if (!strcmp(argv[i], "tag")) {
1513                        char *tag;
1514                        i++;
1515                        if (i >= argc)
1516                                die(_("You need to specify a tag name."));
1517
1518                        tag = xstrfmt("refs/tags/%s:refs/tags/%s",
1519                                      argv[i], argv[i]);
1520                        refspec_append(&rs, tag);
1521                        free(tag);
1522                } else {
1523                        refspec_append(&rs, argv[i]);
1524                }
1525        }
1526
1527        if (server_options.nr)
1528                gtransport->server_options = &server_options;
1529
1530        sigchain_push_common(unlock_pack_on_signal);
1531        atexit(unlock_pack);
1532        exit_code = do_fetch(gtransport, &rs);
1533        refspec_clear(&rs);
1534        transport_disconnect(gtransport);
1535        gtransport = NULL;
1536        return exit_code;
1537}
1538
1539int cmd_fetch(int argc, const char **argv, const char *prefix)
1540{
1541        int i;
1542        struct string_list list = STRING_LIST_INIT_DUP;
1543        struct remote *remote = NULL;
1544        int result = 0;
1545        int prune_tags_ok = 1;
1546        struct argv_array argv_gc_auto = ARGV_ARRAY_INIT;
1547
1548        packet_trace_identity("fetch");
1549
1550        fetch_if_missing = 0;
1551
1552        /* Record the command line for the reflog */
1553        strbuf_addstr(&default_rla, "fetch");
1554        for (i = 1; i < argc; i++)
1555                strbuf_addf(&default_rla, " %s", argv[i]);
1556
1557        fetch_config_from_gitmodules(&max_children, &recurse_submodules);
1558        git_config(git_fetch_config, NULL);
1559
1560        argc = parse_options(argc, argv, prefix,
1561                             builtin_fetch_options, builtin_fetch_usage, 0);
1562
1563        if (deepen_relative) {
1564                if (deepen_relative < 0)
1565                        die(_("Negative depth in --deepen is not supported"));
1566                if (depth)
1567                        die(_("--deepen and --depth are mutually exclusive"));
1568                depth = xstrfmt("%d", deepen_relative);
1569        }
1570        if (unshallow) {
1571                if (depth)
1572                        die(_("--depth and --unshallow cannot be used together"));
1573                else if (!is_repository_shallow(the_repository))
1574                        die(_("--unshallow on a complete repository does not make sense"));
1575                else
1576                        depth = xstrfmt("%d", INFINITE_DEPTH);
1577        }
1578
1579        /* no need to be strict, transport_set_option() will validate it again */
1580        if (depth && atoi(depth) < 1)
1581                die(_("depth %s is not a positive number"), depth);
1582        if (depth || deepen_since || deepen_not.nr)
1583                deepen = 1;
1584
1585        if (filter_options.choice && !repository_format_partial_clone)
1586                die("--filter can only be used when extensions.partialClone is set");
1587
1588        if (all) {
1589                if (argc == 1)
1590                        die(_("fetch --all does not take a repository argument"));
1591                else if (argc > 1)
1592                        die(_("fetch --all does not make sense with refspecs"));
1593                (void) for_each_remote(get_one_remote_for_fetch, &list);
1594        } else if (argc == 0) {
1595                /* No arguments -- use default remote */
1596                remote = remote_get(NULL);
1597        } else if (multiple) {
1598                /* All arguments are assumed to be remotes or groups */
1599                for (i = 0; i < argc; i++)
1600                        if (!add_remote_or_group(argv[i], &list))
1601                                die(_("No such remote or remote group: %s"), argv[i]);
1602        } else {
1603                /* Single remote or group */
1604                (void) add_remote_or_group(argv[0], &list);
1605                if (list.nr > 1) {
1606                        /* More than one remote */
1607                        if (argc > 1)
1608                                die(_("Fetching a group and specifying refspecs does not make sense"));
1609                } else {
1610                        /* Zero or one remotes */
1611                        remote = remote_get(argv[0]);
1612                        prune_tags_ok = (argc == 1);
1613                        argc--;
1614                        argv++;
1615                }
1616        }
1617
1618        if (remote) {
1619                if (filter_options.choice || repository_format_partial_clone)
1620                        fetch_one_setup_partial(remote);
1621                result = fetch_one(remote, argc, argv, prune_tags_ok);
1622        } else {
1623                if (filter_options.choice)
1624                        die(_("--filter can only be used with the remote configured in core.partialClone"));
1625                /* TODO should this also die if we have a previous partial-clone? */
1626                result = fetch_multiple(&list);
1627        }
1628
1629        if (!result && (recurse_submodules != RECURSE_SUBMODULES_OFF)) {
1630                struct argv_array options = ARGV_ARRAY_INIT;
1631
1632                add_options_to_argv(&options);
1633                result = fetch_populated_submodules(the_repository,
1634                                                    &options,
1635                                                    submodule_prefix,
1636                                                    recurse_submodules,
1637                                                    recurse_submodules_default,
1638                                                    verbosity < 0,
1639                                                    max_children);
1640                argv_array_clear(&options);
1641        }
1642
1643        string_list_clear(&list, 0);
1644
1645        close_all_packs(the_repository->objects);
1646
1647        argv_array_pushl(&argv_gc_auto, "gc", "--auto", NULL);
1648        if (verbosity < 0)
1649                argv_array_push(&argv_gc_auto, "--quiet");
1650        run_command_v_opt(argv_gc_auto.argv, RUN_GIT_CMD);
1651        argv_array_clear(&argv_gc_auto);
1652
1653        return result;
1654}