builtin / submodule--helper.con commit Merge branch 'ab/get-short-oid' (ab48bc0)
   1#include "builtin.h"
   2#include "repository.h"
   3#include "cache.h"
   4#include "config.h"
   5#include "parse-options.h"
   6#include "quote.h"
   7#include "pathspec.h"
   8#include "dir.h"
   9#include "submodule.h"
  10#include "submodule-config.h"
  11#include "string-list.h"
  12#include "run-command.h"
  13#include "remote.h"
  14#include "refs.h"
  15#include "connect.h"
  16#include "revision.h"
  17#include "diffcore.h"
  18#include "diff.h"
  19#include "object-store.h"
  20
  21#define OPT_QUIET (1 << 0)
  22#define OPT_CACHED (1 << 1)
  23#define OPT_RECURSIVE (1 << 2)
  24#define OPT_FORCE (1 << 3)
  25
  26typedef void (*each_submodule_fn)(const struct cache_entry *list_item,
  27                                  void *cb_data);
  28
  29static char *get_default_remote(void)
  30{
  31        char *dest = NULL, *ret;
  32        struct strbuf sb = STRBUF_INIT;
  33        const char *refname = resolve_ref_unsafe("HEAD", 0, NULL, NULL);
  34
  35        if (!refname)
  36                die(_("No such ref: %s"), "HEAD");
  37
  38        /* detached HEAD */
  39        if (!strcmp(refname, "HEAD"))
  40                return xstrdup("origin");
  41
  42        if (!skip_prefix(refname, "refs/heads/", &refname))
  43                die(_("Expecting a full ref name, got %s"), refname);
  44
  45        strbuf_addf(&sb, "branch.%s.remote", refname);
  46        if (git_config_get_string(sb.buf, &dest))
  47                ret = xstrdup("origin");
  48        else
  49                ret = dest;
  50
  51        strbuf_release(&sb);
  52        return ret;
  53}
  54
  55static int print_default_remote(int argc, const char **argv, const char *prefix)
  56{
  57        const char *remote;
  58
  59        if (argc != 1)
  60                die(_("submodule--helper print-default-remote takes no arguments"));
  61
  62        remote = get_default_remote();
  63        if (remote)
  64                printf("%s\n", remote);
  65
  66        return 0;
  67}
  68
  69static int starts_with_dot_slash(const char *str)
  70{
  71        return str[0] == '.' && is_dir_sep(str[1]);
  72}
  73
  74static int starts_with_dot_dot_slash(const char *str)
  75{
  76        return str[0] == '.' && str[1] == '.' && is_dir_sep(str[2]);
  77}
  78
  79/*
  80 * Returns 1 if it was the last chop before ':'.
  81 */
  82static int chop_last_dir(char **remoteurl, int is_relative)
  83{
  84        char *rfind = find_last_dir_sep(*remoteurl);
  85        if (rfind) {
  86                *rfind = '\0';
  87                return 0;
  88        }
  89
  90        rfind = strrchr(*remoteurl, ':');
  91        if (rfind) {
  92                *rfind = '\0';
  93                return 1;
  94        }
  95
  96        if (is_relative || !strcmp(".", *remoteurl))
  97                die(_("cannot strip one component off url '%s'"),
  98                        *remoteurl);
  99
 100        free(*remoteurl);
 101        *remoteurl = xstrdup(".");
 102        return 0;
 103}
 104
 105/*
 106 * The `url` argument is the URL that navigates to the submodule origin
 107 * repo. When relative, this URL is relative to the superproject origin
 108 * URL repo. The `up_path` argument, if specified, is the relative
 109 * path that navigates from the submodule working tree to the superproject
 110 * working tree. Returns the origin URL of the submodule.
 111 *
 112 * Return either an absolute URL or filesystem path (if the superproject
 113 * origin URL is an absolute URL or filesystem path, respectively) or a
 114 * relative file system path (if the superproject origin URL is a relative
 115 * file system path).
 116 *
 117 * When the output is a relative file system path, the path is either
 118 * relative to the submodule working tree, if up_path is specified, or to
 119 * the superproject working tree otherwise.
 120 *
 121 * NEEDSWORK: This works incorrectly on the domain and protocol part.
 122 * remote_url      url              outcome          expectation
 123 * http://a.com/b  ../c             http://a.com/c   as is
 124 * http://a.com/b/ ../c             http://a.com/c   same as previous line, but
 125 *                                                   ignore trailing slash in url
 126 * http://a.com/b  ../../c          http://c         error out
 127 * http://a.com/b  ../../../c       http:/c          error out
 128 * http://a.com/b  ../../../../c    http:c           error out
 129 * http://a.com/b  ../../../../../c    .:c           error out
 130 * NEEDSWORK: Given how chop_last_dir() works, this function is broken
 131 * when a local part has a colon in its path component, too.
 132 */
 133static char *relative_url(const char *remote_url,
 134                                const char *url,
 135                                const char *up_path)
 136{
 137        int is_relative = 0;
 138        int colonsep = 0;
 139        char *out;
 140        char *remoteurl = xstrdup(remote_url);
 141        struct strbuf sb = STRBUF_INIT;
 142        size_t len = strlen(remoteurl);
 143
 144        if (is_dir_sep(remoteurl[len-1]))
 145                remoteurl[len-1] = '\0';
 146
 147        if (!url_is_local_not_ssh(remoteurl) || is_absolute_path(remoteurl))
 148                is_relative = 0;
 149        else {
 150                is_relative = 1;
 151                /*
 152                 * Prepend a './' to ensure all relative
 153                 * remoteurls start with './' or '../'
 154                 */
 155                if (!starts_with_dot_slash(remoteurl) &&
 156                    !starts_with_dot_dot_slash(remoteurl)) {
 157                        strbuf_reset(&sb);
 158                        strbuf_addf(&sb, "./%s", remoteurl);
 159                        free(remoteurl);
 160                        remoteurl = strbuf_detach(&sb, NULL);
 161                }
 162        }
 163        /*
 164         * When the url starts with '../', remove that and the
 165         * last directory in remoteurl.
 166         */
 167        while (url) {
 168                if (starts_with_dot_dot_slash(url)) {
 169                        url += 3;
 170                        colonsep |= chop_last_dir(&remoteurl, is_relative);
 171                } else if (starts_with_dot_slash(url))
 172                        url += 2;
 173                else
 174                        break;
 175        }
 176        strbuf_reset(&sb);
 177        strbuf_addf(&sb, "%s%s%s", remoteurl, colonsep ? ":" : "/", url);
 178        if (ends_with(url, "/"))
 179                strbuf_setlen(&sb, sb.len - 1);
 180        free(remoteurl);
 181
 182        if (starts_with_dot_slash(sb.buf))
 183                out = xstrdup(sb.buf + 2);
 184        else
 185                out = xstrdup(sb.buf);
 186        strbuf_reset(&sb);
 187
 188        if (!up_path || !is_relative)
 189                return out;
 190
 191        strbuf_addf(&sb, "%s%s", up_path, out);
 192        free(out);
 193        return strbuf_detach(&sb, NULL);
 194}
 195
 196static int resolve_relative_url(int argc, const char **argv, const char *prefix)
 197{
 198        char *remoteurl = NULL;
 199        char *remote = get_default_remote();
 200        const char *up_path = NULL;
 201        char *res;
 202        const char *url;
 203        struct strbuf sb = STRBUF_INIT;
 204
 205        if (argc != 2 && argc != 3)
 206                die("resolve-relative-url only accepts one or two arguments");
 207
 208        url = argv[1];
 209        strbuf_addf(&sb, "remote.%s.url", remote);
 210        free(remote);
 211
 212        if (git_config_get_string(sb.buf, &remoteurl))
 213                /* the repository is its own authoritative upstream */
 214                remoteurl = xgetcwd();
 215
 216        if (argc == 3)
 217                up_path = argv[2];
 218
 219        res = relative_url(remoteurl, url, up_path);
 220        puts(res);
 221        free(res);
 222        free(remoteurl);
 223        return 0;
 224}
 225
 226static int resolve_relative_url_test(int argc, const char **argv, const char *prefix)
 227{
 228        char *remoteurl, *res;
 229        const char *up_path, *url;
 230
 231        if (argc != 4)
 232                die("resolve-relative-url-test only accepts three arguments: <up_path> <remoteurl> <url>");
 233
 234        up_path = argv[1];
 235        remoteurl = xstrdup(argv[2]);
 236        url = argv[3];
 237
 238        if (!strcmp(up_path, "(null)"))
 239                up_path = NULL;
 240
 241        res = relative_url(remoteurl, url, up_path);
 242        puts(res);
 243        free(res);
 244        free(remoteurl);
 245        return 0;
 246}
 247
 248/* the result should be freed by the caller. */
 249static char *get_submodule_displaypath(const char *path, const char *prefix)
 250{
 251        const char *super_prefix = get_super_prefix();
 252
 253        if (prefix && super_prefix) {
 254                BUG("cannot have prefix '%s' and superprefix '%s'",
 255                    prefix, super_prefix);
 256        } else if (prefix) {
 257                struct strbuf sb = STRBUF_INIT;
 258                char *displaypath = xstrdup(relative_path(path, prefix, &sb));
 259                strbuf_release(&sb);
 260                return displaypath;
 261        } else if (super_prefix) {
 262                return xstrfmt("%s%s", super_prefix, path);
 263        } else {
 264                return xstrdup(path);
 265        }
 266}
 267
 268static char *compute_rev_name(const char *sub_path, const char* object_id)
 269{
 270        struct strbuf sb = STRBUF_INIT;
 271        const char ***d;
 272
 273        static const char *describe_bare[] = { NULL };
 274
 275        static const char *describe_tags[] = { "--tags", NULL };
 276
 277        static const char *describe_contains[] = { "--contains", NULL };
 278
 279        static const char *describe_all_always[] = { "--all", "--always", NULL };
 280
 281        static const char **describe_argv[] = { describe_bare, describe_tags,
 282                                                describe_contains,
 283                                                describe_all_always, NULL };
 284
 285        for (d = describe_argv; *d; d++) {
 286                struct child_process cp = CHILD_PROCESS_INIT;
 287                prepare_submodule_repo_env(&cp.env_array);
 288                cp.dir = sub_path;
 289                cp.git_cmd = 1;
 290                cp.no_stderr = 1;
 291
 292                argv_array_push(&cp.args, "describe");
 293                argv_array_pushv(&cp.args, *d);
 294                argv_array_push(&cp.args, object_id);
 295
 296                if (!capture_command(&cp, &sb, 0)) {
 297                        strbuf_strip_suffix(&sb, "\n");
 298                        return strbuf_detach(&sb, NULL);
 299                }
 300        }
 301
 302        strbuf_release(&sb);
 303        return NULL;
 304}
 305
 306struct module_list {
 307        const struct cache_entry **entries;
 308        int alloc, nr;
 309};
 310#define MODULE_LIST_INIT { NULL, 0, 0 }
 311
 312static int module_list_compute(int argc, const char **argv,
 313                               const char *prefix,
 314                               struct pathspec *pathspec,
 315                               struct module_list *list)
 316{
 317        int i, result = 0;
 318        char *ps_matched = NULL;
 319        parse_pathspec(pathspec, 0,
 320                       PATHSPEC_PREFER_FULL,
 321                       prefix, argv);
 322
 323        if (pathspec->nr)
 324                ps_matched = xcalloc(pathspec->nr, 1);
 325
 326        if (read_cache() < 0)
 327                die(_("index file corrupt"));
 328
 329        for (i = 0; i < active_nr; i++) {
 330                const struct cache_entry *ce = active_cache[i];
 331
 332                if (!match_pathspec(pathspec, ce->name, ce_namelen(ce),
 333                                    0, ps_matched, 1) ||
 334                    !S_ISGITLINK(ce->ce_mode))
 335                        continue;
 336
 337                ALLOC_GROW(list->entries, list->nr + 1, list->alloc);
 338                list->entries[list->nr++] = ce;
 339                while (i + 1 < active_nr &&
 340                       !strcmp(ce->name, active_cache[i + 1]->name))
 341                        /*
 342                         * Skip entries with the same name in different stages
 343                         * to make sure an entry is returned only once.
 344                         */
 345                        i++;
 346        }
 347
 348        if (ps_matched && report_path_error(ps_matched, pathspec, prefix))
 349                result = -1;
 350
 351        free(ps_matched);
 352
 353        return result;
 354}
 355
 356static void module_list_active(struct module_list *list)
 357{
 358        int i;
 359        struct module_list active_modules = MODULE_LIST_INIT;
 360
 361        for (i = 0; i < list->nr; i++) {
 362                const struct cache_entry *ce = list->entries[i];
 363
 364                if (!is_submodule_active(the_repository, ce->name))
 365                        continue;
 366
 367                ALLOC_GROW(active_modules.entries,
 368                           active_modules.nr + 1,
 369                           active_modules.alloc);
 370                active_modules.entries[active_modules.nr++] = ce;
 371        }
 372
 373        free(list->entries);
 374        *list = active_modules;
 375}
 376
 377static char *get_up_path(const char *path)
 378{
 379        int i;
 380        struct strbuf sb = STRBUF_INIT;
 381
 382        for (i = count_slashes(path); i; i--)
 383                strbuf_addstr(&sb, "../");
 384
 385        /*
 386         * Check if 'path' ends with slash or not
 387         * for having the same output for dir/sub_dir
 388         * and dir/sub_dir/
 389         */
 390        if (!is_dir_sep(path[strlen(path) - 1]))
 391                strbuf_addstr(&sb, "../");
 392
 393        return strbuf_detach(&sb, NULL);
 394}
 395
 396static int module_list(int argc, const char **argv, const char *prefix)
 397{
 398        int i;
 399        struct pathspec pathspec;
 400        struct module_list list = MODULE_LIST_INIT;
 401
 402        struct option module_list_options[] = {
 403                OPT_STRING(0, "prefix", &prefix,
 404                           N_("path"),
 405                           N_("alternative anchor for relative paths")),
 406                OPT_END()
 407        };
 408
 409        const char *const git_submodule_helper_usage[] = {
 410                N_("git submodule--helper list [--prefix=<path>] [<path>...]"),
 411                NULL
 412        };
 413
 414        argc = parse_options(argc, argv, prefix, module_list_options,
 415                             git_submodule_helper_usage, 0);
 416
 417        if (module_list_compute(argc, argv, prefix, &pathspec, &list) < 0)
 418                return 1;
 419
 420        for (i = 0; i < list.nr; i++) {
 421                const struct cache_entry *ce = list.entries[i];
 422
 423                if (ce_stage(ce))
 424                        printf("%06o %s U\t", ce->ce_mode, sha1_to_hex(null_sha1));
 425                else
 426                        printf("%06o %s %d\t", ce->ce_mode,
 427                               oid_to_hex(&ce->oid), ce_stage(ce));
 428
 429                fprintf(stdout, "%s\n", ce->name);
 430        }
 431        return 0;
 432}
 433
 434static void for_each_listed_submodule(const struct module_list *list,
 435                                      each_submodule_fn fn, void *cb_data)
 436{
 437        int i;
 438        for (i = 0; i < list->nr; i++)
 439                fn(list->entries[i], cb_data);
 440}
 441
 442struct init_cb {
 443        const char *prefix;
 444        unsigned int flags;
 445};
 446
 447#define INIT_CB_INIT { NULL, 0 }
 448
 449static void init_submodule(const char *path, const char *prefix,
 450                           unsigned int flags)
 451{
 452        const struct submodule *sub;
 453        struct strbuf sb = STRBUF_INIT;
 454        char *upd = NULL, *url = NULL, *displaypath;
 455
 456        displaypath = get_submodule_displaypath(path, prefix);
 457
 458        sub = submodule_from_path(the_repository, &null_oid, path);
 459
 460        if (!sub)
 461                die(_("No url found for submodule path '%s' in .gitmodules"),
 462                        displaypath);
 463
 464        /*
 465         * NEEDSWORK: In a multi-working-tree world, this needs to be
 466         * set in the per-worktree config.
 467         *
 468         * Set active flag for the submodule being initialized
 469         */
 470        if (!is_submodule_active(the_repository, path)) {
 471                strbuf_addf(&sb, "submodule.%s.active", sub->name);
 472                git_config_set_gently(sb.buf, "true");
 473                strbuf_reset(&sb);
 474        }
 475
 476        /*
 477         * Copy url setting when it is not set yet.
 478         * To look up the url in .git/config, we must not fall back to
 479         * .gitmodules, so look it up directly.
 480         */
 481        strbuf_addf(&sb, "submodule.%s.url", sub->name);
 482        if (git_config_get_string(sb.buf, &url)) {
 483                if (!sub->url)
 484                        die(_("No url found for submodule path '%s' in .gitmodules"),
 485                                displaypath);
 486
 487                url = xstrdup(sub->url);
 488
 489                /* Possibly a url relative to parent */
 490                if (starts_with_dot_dot_slash(url) ||
 491                    starts_with_dot_slash(url)) {
 492                        char *remoteurl, *relurl;
 493                        char *remote = get_default_remote();
 494                        struct strbuf remotesb = STRBUF_INIT;
 495                        strbuf_addf(&remotesb, "remote.%s.url", remote);
 496                        free(remote);
 497
 498                        if (git_config_get_string(remotesb.buf, &remoteurl)) {
 499                                warning(_("could not lookup configuration '%s'. Assuming this repository is its own authoritative upstream."), remotesb.buf);
 500                                remoteurl = xgetcwd();
 501                        }
 502                        relurl = relative_url(remoteurl, url, NULL);
 503                        strbuf_release(&remotesb);
 504                        free(remoteurl);
 505                        free(url);
 506                        url = relurl;
 507                }
 508
 509                if (git_config_set_gently(sb.buf, url))
 510                        die(_("Failed to register url for submodule path '%s'"),
 511                            displaypath);
 512                if (!(flags & OPT_QUIET))
 513                        fprintf(stderr,
 514                                _("Submodule '%s' (%s) registered for path '%s'\n"),
 515                                sub->name, url, displaypath);
 516        }
 517        strbuf_reset(&sb);
 518
 519        /* Copy "update" setting when it is not set yet */
 520        strbuf_addf(&sb, "submodule.%s.update", sub->name);
 521        if (git_config_get_string(sb.buf, &upd) &&
 522            sub->update_strategy.type != SM_UPDATE_UNSPECIFIED) {
 523                if (sub->update_strategy.type == SM_UPDATE_COMMAND) {
 524                        fprintf(stderr, _("warning: command update mode suggested for submodule '%s'\n"),
 525                                sub->name);
 526                        upd = xstrdup("none");
 527                } else
 528                        upd = xstrdup(submodule_strategy_to_string(&sub->update_strategy));
 529
 530                if (git_config_set_gently(sb.buf, upd))
 531                        die(_("Failed to register update mode for submodule path '%s'"), displaypath);
 532        }
 533        strbuf_release(&sb);
 534        free(displaypath);
 535        free(url);
 536        free(upd);
 537}
 538
 539static void init_submodule_cb(const struct cache_entry *list_item, void *cb_data)
 540{
 541        struct init_cb *info = cb_data;
 542        init_submodule(list_item->name, info->prefix, info->flags);
 543}
 544
 545static int module_init(int argc, const char **argv, const char *prefix)
 546{
 547        struct init_cb info = INIT_CB_INIT;
 548        struct pathspec pathspec;
 549        struct module_list list = MODULE_LIST_INIT;
 550        int quiet = 0;
 551
 552        struct option module_init_options[] = {
 553                OPT__QUIET(&quiet, N_("Suppress output for initializing a submodule")),
 554                OPT_END()
 555        };
 556
 557        const char *const git_submodule_helper_usage[] = {
 558                N_("git submodule--helper init [<path>]"),
 559                NULL
 560        };
 561
 562        argc = parse_options(argc, argv, prefix, module_init_options,
 563                             git_submodule_helper_usage, 0);
 564
 565        if (module_list_compute(argc, argv, prefix, &pathspec, &list) < 0)
 566                return 1;
 567
 568        /*
 569         * If there are no path args and submodule.active is set then,
 570         * by default, only initialize 'active' modules.
 571         */
 572        if (!argc && git_config_get_value_multi("submodule.active"))
 573                module_list_active(&list);
 574
 575        info.prefix = prefix;
 576        if (quiet)
 577                info.flags |= OPT_QUIET;
 578
 579        for_each_listed_submodule(&list, init_submodule_cb, &info);
 580
 581        return 0;
 582}
 583
 584struct status_cb {
 585        const char *prefix;
 586        unsigned int flags;
 587};
 588
 589#define STATUS_CB_INIT { NULL, 0 }
 590
 591static void print_status(unsigned int flags, char state, const char *path,
 592                         const struct object_id *oid, const char *displaypath)
 593{
 594        if (flags & OPT_QUIET)
 595                return;
 596
 597        printf("%c%s %s", state, oid_to_hex(oid), displaypath);
 598
 599        if (state == ' ' || state == '+') {
 600                const char *name = compute_rev_name(path, oid_to_hex(oid));
 601
 602                if (name)
 603                        printf(" (%s)", name);
 604        }
 605
 606        printf("\n");
 607}
 608
 609static int handle_submodule_head_ref(const char *refname,
 610                                     const struct object_id *oid, int flags,
 611                                     void *cb_data)
 612{
 613        struct object_id *output = cb_data;
 614        if (oid)
 615                oidcpy(output, oid);
 616
 617        return 0;
 618}
 619
 620static void status_submodule(const char *path, const struct object_id *ce_oid,
 621                             unsigned int ce_flags, const char *prefix,
 622                             unsigned int flags)
 623{
 624        char *displaypath;
 625        struct argv_array diff_files_args = ARGV_ARRAY_INIT;
 626        struct rev_info rev;
 627        int diff_files_result;
 628
 629        if (!submodule_from_path(the_repository, &null_oid, path))
 630                die(_("no submodule mapping found in .gitmodules for path '%s'"),
 631                      path);
 632
 633        displaypath = get_submodule_displaypath(path, prefix);
 634
 635        if ((CE_STAGEMASK & ce_flags) >> CE_STAGESHIFT) {
 636                print_status(flags, 'U', path, &null_oid, displaypath);
 637                goto cleanup;
 638        }
 639
 640        if (!is_submodule_active(the_repository, path)) {
 641                print_status(flags, '-', path, ce_oid, displaypath);
 642                goto cleanup;
 643        }
 644
 645        argv_array_pushl(&diff_files_args, "diff-files",
 646                         "--ignore-submodules=dirty", "--quiet", "--",
 647                         path, NULL);
 648
 649        git_config(git_diff_basic_config, NULL);
 650        init_revisions(&rev, prefix);
 651        rev.abbrev = 0;
 652        diff_files_args.argc = setup_revisions(diff_files_args.argc,
 653                                               diff_files_args.argv,
 654                                               &rev, NULL);
 655        diff_files_result = run_diff_files(&rev, 0);
 656
 657        if (!diff_result_code(&rev.diffopt, diff_files_result)) {
 658                print_status(flags, ' ', path, ce_oid,
 659                             displaypath);
 660        } else if (!(flags & OPT_CACHED)) {
 661                struct object_id oid;
 662                struct ref_store *refs = get_submodule_ref_store(path);
 663
 664                if (!refs) {
 665                        print_status(flags, '-', path, ce_oid, displaypath);
 666                        goto cleanup;
 667                }
 668                if (refs_head_ref(refs, handle_submodule_head_ref, &oid))
 669                        die(_("could not resolve HEAD ref inside the "
 670                              "submodule '%s'"), path);
 671
 672                print_status(flags, '+', path, &oid, displaypath);
 673        } else {
 674                print_status(flags, '+', path, ce_oid, displaypath);
 675        }
 676
 677        if (flags & OPT_RECURSIVE) {
 678                struct child_process cpr = CHILD_PROCESS_INIT;
 679
 680                cpr.git_cmd = 1;
 681                cpr.dir = path;
 682                prepare_submodule_repo_env(&cpr.env_array);
 683
 684                argv_array_push(&cpr.args, "--super-prefix");
 685                argv_array_pushf(&cpr.args, "%s/", displaypath);
 686                argv_array_pushl(&cpr.args, "submodule--helper", "status",
 687                                 "--recursive", NULL);
 688
 689                if (flags & OPT_CACHED)
 690                        argv_array_push(&cpr.args, "--cached");
 691
 692                if (flags & OPT_QUIET)
 693                        argv_array_push(&cpr.args, "--quiet");
 694
 695                if (run_command(&cpr))
 696                        die(_("failed to recurse into submodule '%s'"), path);
 697        }
 698
 699cleanup:
 700        argv_array_clear(&diff_files_args);
 701        free(displaypath);
 702}
 703
 704static void status_submodule_cb(const struct cache_entry *list_item,
 705                                void *cb_data)
 706{
 707        struct status_cb *info = cb_data;
 708        status_submodule(list_item->name, &list_item->oid, list_item->ce_flags,
 709                         info->prefix, info->flags);
 710}
 711
 712static int module_status(int argc, const char **argv, const char *prefix)
 713{
 714        struct status_cb info = STATUS_CB_INIT;
 715        struct pathspec pathspec;
 716        struct module_list list = MODULE_LIST_INIT;
 717        int quiet = 0;
 718
 719        struct option module_status_options[] = {
 720                OPT__QUIET(&quiet, N_("Suppress submodule status output")),
 721                OPT_BIT(0, "cached", &info.flags, N_("Use commit stored in the index instead of the one stored in the submodule HEAD"), OPT_CACHED),
 722                OPT_BIT(0, "recursive", &info.flags, N_("recurse into nested submodules"), OPT_RECURSIVE),
 723                OPT_END()
 724        };
 725
 726        const char *const git_submodule_helper_usage[] = {
 727                N_("git submodule status [--quiet] [--cached] [--recursive] [<path>...]"),
 728                NULL
 729        };
 730
 731        argc = parse_options(argc, argv, prefix, module_status_options,
 732                             git_submodule_helper_usage, 0);
 733
 734        if (module_list_compute(argc, argv, prefix, &pathspec, &list) < 0)
 735                return 1;
 736
 737        info.prefix = prefix;
 738        if (quiet)
 739                info.flags |= OPT_QUIET;
 740
 741        for_each_listed_submodule(&list, status_submodule_cb, &info);
 742
 743        return 0;
 744}
 745
 746static int module_name(int argc, const char **argv, const char *prefix)
 747{
 748        const struct submodule *sub;
 749
 750        if (argc != 2)
 751                usage(_("git submodule--helper name <path>"));
 752
 753        sub = submodule_from_path(the_repository, &null_oid, argv[1]);
 754
 755        if (!sub)
 756                die(_("no submodule mapping found in .gitmodules for path '%s'"),
 757                    argv[1]);
 758
 759        printf("%s\n", sub->name);
 760
 761        return 0;
 762}
 763
 764struct sync_cb {
 765        const char *prefix;
 766        unsigned int flags;
 767};
 768
 769#define SYNC_CB_INIT { NULL, 0 }
 770
 771static void sync_submodule(const char *path, const char *prefix,
 772                           unsigned int flags)
 773{
 774        const struct submodule *sub;
 775        char *remote_key = NULL;
 776        char *sub_origin_url, *super_config_url, *displaypath;
 777        struct strbuf sb = STRBUF_INIT;
 778        struct child_process cp = CHILD_PROCESS_INIT;
 779        char *sub_config_path = NULL;
 780
 781        if (!is_submodule_active(the_repository, path))
 782                return;
 783
 784        sub = submodule_from_path(the_repository, &null_oid, path);
 785
 786        if (sub && sub->url) {
 787                if (starts_with_dot_dot_slash(sub->url) ||
 788                    starts_with_dot_slash(sub->url)) {
 789                        char *remote_url, *up_path;
 790                        char *remote = get_default_remote();
 791                        strbuf_addf(&sb, "remote.%s.url", remote);
 792
 793                        if (git_config_get_string(sb.buf, &remote_url))
 794                                remote_url = xgetcwd();
 795
 796                        up_path = get_up_path(path);
 797                        sub_origin_url = relative_url(remote_url, sub->url, up_path);
 798                        super_config_url = relative_url(remote_url, sub->url, NULL);
 799
 800                        free(remote);
 801                        free(up_path);
 802                        free(remote_url);
 803                } else {
 804                        sub_origin_url = xstrdup(sub->url);
 805                        super_config_url = xstrdup(sub->url);
 806                }
 807        } else {
 808                sub_origin_url = xstrdup("");
 809                super_config_url = xstrdup("");
 810        }
 811
 812        displaypath = get_submodule_displaypath(path, prefix);
 813
 814        if (!(flags & OPT_QUIET))
 815                printf(_("Synchronizing submodule url for '%s'\n"),
 816                         displaypath);
 817
 818        strbuf_reset(&sb);
 819        strbuf_addf(&sb, "submodule.%s.url", sub->name);
 820        if (git_config_set_gently(sb.buf, super_config_url))
 821                die(_("failed to register url for submodule path '%s'"),
 822                      displaypath);
 823
 824        if (!is_submodule_populated_gently(path, NULL))
 825                goto cleanup;
 826
 827        prepare_submodule_repo_env(&cp.env_array);
 828        cp.git_cmd = 1;
 829        cp.dir = path;
 830        argv_array_pushl(&cp.args, "submodule--helper",
 831                         "print-default-remote", NULL);
 832
 833        strbuf_reset(&sb);
 834        if (capture_command(&cp, &sb, 0))
 835                die(_("failed to get the default remote for submodule '%s'"),
 836                      path);
 837
 838        strbuf_strip_suffix(&sb, "\n");
 839        remote_key = xstrfmt("remote.%s.url", sb.buf);
 840
 841        strbuf_reset(&sb);
 842        submodule_to_gitdir(&sb, path);
 843        strbuf_addstr(&sb, "/config");
 844
 845        if (git_config_set_in_file_gently(sb.buf, remote_key, sub_origin_url))
 846                die(_("failed to update remote for submodule '%s'"),
 847                      path);
 848
 849        if (flags & OPT_RECURSIVE) {
 850                struct child_process cpr = CHILD_PROCESS_INIT;
 851
 852                cpr.git_cmd = 1;
 853                cpr.dir = path;
 854                prepare_submodule_repo_env(&cpr.env_array);
 855
 856                argv_array_push(&cpr.args, "--super-prefix");
 857                argv_array_pushf(&cpr.args, "%s/", displaypath);
 858                argv_array_pushl(&cpr.args, "submodule--helper", "sync",
 859                                 "--recursive", NULL);
 860
 861                if (flags & OPT_QUIET)
 862                        argv_array_push(&cpr.args, "--quiet");
 863
 864                if (run_command(&cpr))
 865                        die(_("failed to recurse into submodule '%s'"),
 866                              path);
 867        }
 868
 869cleanup:
 870        free(super_config_url);
 871        free(sub_origin_url);
 872        strbuf_release(&sb);
 873        free(remote_key);
 874        free(displaypath);
 875        free(sub_config_path);
 876}
 877
 878static void sync_submodule_cb(const struct cache_entry *list_item, void *cb_data)
 879{
 880        struct sync_cb *info = cb_data;
 881        sync_submodule(list_item->name, info->prefix, info->flags);
 882
 883}
 884
 885static int module_sync(int argc, const char **argv, const char *prefix)
 886{
 887        struct sync_cb info = SYNC_CB_INIT;
 888        struct pathspec pathspec;
 889        struct module_list list = MODULE_LIST_INIT;
 890        int quiet = 0;
 891        int recursive = 0;
 892
 893        struct option module_sync_options[] = {
 894                OPT__QUIET(&quiet, N_("Suppress output of synchronizing submodule url")),
 895                OPT_BOOL(0, "recursive", &recursive,
 896                        N_("Recurse into nested submodules")),
 897                OPT_END()
 898        };
 899
 900        const char *const git_submodule_helper_usage[] = {
 901                N_("git submodule--helper sync [--quiet] [--recursive] [<path>]"),
 902                NULL
 903        };
 904
 905        argc = parse_options(argc, argv, prefix, module_sync_options,
 906                             git_submodule_helper_usage, 0);
 907
 908        if (module_list_compute(argc, argv, prefix, &pathspec, &list) < 0)
 909                return 1;
 910
 911        info.prefix = prefix;
 912        if (quiet)
 913                info.flags |= OPT_QUIET;
 914        if (recursive)
 915                info.flags |= OPT_RECURSIVE;
 916
 917        for_each_listed_submodule(&list, sync_submodule_cb, &info);
 918
 919        return 0;
 920}
 921
 922struct deinit_cb {
 923        const char *prefix;
 924        unsigned int flags;
 925};
 926#define DEINIT_CB_INIT { NULL, 0 }
 927
 928static void deinit_submodule(const char *path, const char *prefix,
 929                             unsigned int flags)
 930{
 931        const struct submodule *sub;
 932        char *displaypath = NULL;
 933        struct child_process cp_config = CHILD_PROCESS_INIT;
 934        struct strbuf sb_config = STRBUF_INIT;
 935        char *sub_git_dir = xstrfmt("%s/.git", path);
 936
 937        sub = submodule_from_path(the_repository, &null_oid, path);
 938
 939        if (!sub || !sub->name)
 940                goto cleanup;
 941
 942        displaypath = get_submodule_displaypath(path, prefix);
 943
 944        /* remove the submodule work tree (unless the user already did it) */
 945        if (is_directory(path)) {
 946                struct strbuf sb_rm = STRBUF_INIT;
 947                const char *format;
 948
 949                /*
 950                 * protect submodules containing a .git directory
 951                 * NEEDSWORK: instead of dying, automatically call
 952                 * absorbgitdirs and (possibly) warn.
 953                 */
 954                if (is_directory(sub_git_dir))
 955                        die(_("Submodule work tree '%s' contains a .git "
 956                              "directory (use 'rm -rf' if you really want "
 957                              "to remove it including all of its history)"),
 958                            displaypath);
 959
 960                if (!(flags & OPT_FORCE)) {
 961                        struct child_process cp_rm = CHILD_PROCESS_INIT;
 962                        cp_rm.git_cmd = 1;
 963                        argv_array_pushl(&cp_rm.args, "rm", "-qn",
 964                                         path, NULL);
 965
 966                        if (run_command(&cp_rm))
 967                                die(_("Submodule work tree '%s' contains local "
 968                                      "modifications; use '-f' to discard them"),
 969                                      displaypath);
 970                }
 971
 972                strbuf_addstr(&sb_rm, path);
 973
 974                if (!remove_dir_recursively(&sb_rm, 0))
 975                        format = _("Cleared directory '%s'\n");
 976                else
 977                        format = _("Could not remove submodule work tree '%s'\n");
 978
 979                if (!(flags & OPT_QUIET))
 980                        printf(format, displaypath);
 981
 982                strbuf_release(&sb_rm);
 983        }
 984
 985        if (mkdir(path, 0777))
 986                printf(_("could not create empty submodule directory %s"),
 987                      displaypath);
 988
 989        cp_config.git_cmd = 1;
 990        argv_array_pushl(&cp_config.args, "config", "--get-regexp", NULL);
 991        argv_array_pushf(&cp_config.args, "submodule.%s\\.", sub->name);
 992
 993        /* remove the .git/config entries (unless the user already did it) */
 994        if (!capture_command(&cp_config, &sb_config, 0) && sb_config.len) {
 995                char *sub_key = xstrfmt("submodule.%s", sub->name);
 996                /*
 997                 * remove the whole section so we have a clean state when
 998                 * the user later decides to init this submodule again
 999                 */
1000                git_config_rename_section_in_file(NULL, sub_key, NULL);
1001                if (!(flags & OPT_QUIET))
1002                        printf(_("Submodule '%s' (%s) unregistered for path '%s'\n"),
1003                                 sub->name, sub->url, displaypath);
1004                free(sub_key);
1005        }
1006
1007cleanup:
1008        free(displaypath);
1009        free(sub_git_dir);
1010        strbuf_release(&sb_config);
1011}
1012
1013static void deinit_submodule_cb(const struct cache_entry *list_item,
1014                                void *cb_data)
1015{
1016        struct deinit_cb *info = cb_data;
1017        deinit_submodule(list_item->name, info->prefix, info->flags);
1018}
1019
1020static int module_deinit(int argc, const char **argv, const char *prefix)
1021{
1022        struct deinit_cb info = DEINIT_CB_INIT;
1023        struct pathspec pathspec;
1024        struct module_list list = MODULE_LIST_INIT;
1025        int quiet = 0;
1026        int force = 0;
1027        int all = 0;
1028
1029        struct option module_deinit_options[] = {
1030                OPT__QUIET(&quiet, N_("Suppress submodule status output")),
1031                OPT__FORCE(&force, N_("Remove submodule working trees even if they contain local changes"), 0),
1032                OPT_BOOL(0, "all", &all, N_("Unregister all submodules")),
1033                OPT_END()
1034        };
1035
1036        const char *const git_submodule_helper_usage[] = {
1037                N_("git submodule deinit [--quiet] [-f | --force] [--all | [--] [<path>...]]"),
1038                NULL
1039        };
1040
1041        argc = parse_options(argc, argv, prefix, module_deinit_options,
1042                             git_submodule_helper_usage, 0);
1043
1044        if (all && argc) {
1045                error("pathspec and --all are incompatible");
1046                usage_with_options(git_submodule_helper_usage,
1047                                   module_deinit_options);
1048        }
1049
1050        if (!argc && !all)
1051                die(_("Use '--all' if you really want to deinitialize all submodules"));
1052
1053        if (module_list_compute(argc, argv, prefix, &pathspec, &list) < 0)
1054                return 1;
1055
1056        info.prefix = prefix;
1057        if (quiet)
1058                info.flags |= OPT_QUIET;
1059        if (force)
1060                info.flags |= OPT_FORCE;
1061
1062        for_each_listed_submodule(&list, deinit_submodule_cb, &info);
1063
1064        return 0;
1065}
1066
1067static int clone_submodule(const char *path, const char *gitdir, const char *url,
1068                           const char *depth, struct string_list *reference, int dissociate,
1069                           int quiet, int progress)
1070{
1071        struct child_process cp = CHILD_PROCESS_INIT;
1072
1073        argv_array_push(&cp.args, "clone");
1074        argv_array_push(&cp.args, "--no-checkout");
1075        if (quiet)
1076                argv_array_push(&cp.args, "--quiet");
1077        if (progress)
1078                argv_array_push(&cp.args, "--progress");
1079        if (depth && *depth)
1080                argv_array_pushl(&cp.args, "--depth", depth, NULL);
1081        if (reference->nr) {
1082                struct string_list_item *item;
1083                for_each_string_list_item(item, reference)
1084                        argv_array_pushl(&cp.args, "--reference",
1085                                         item->string, NULL);
1086        }
1087        if (dissociate)
1088                argv_array_push(&cp.args, "--dissociate");
1089        if (gitdir && *gitdir)
1090                argv_array_pushl(&cp.args, "--separate-git-dir", gitdir, NULL);
1091
1092        argv_array_push(&cp.args, url);
1093        argv_array_push(&cp.args, path);
1094
1095        cp.git_cmd = 1;
1096        prepare_submodule_repo_env(&cp.env_array);
1097        cp.no_stdin = 1;
1098
1099        return run_command(&cp);
1100}
1101
1102struct submodule_alternate_setup {
1103        const char *submodule_name;
1104        enum SUBMODULE_ALTERNATE_ERROR_MODE {
1105                SUBMODULE_ALTERNATE_ERROR_DIE,
1106                SUBMODULE_ALTERNATE_ERROR_INFO,
1107                SUBMODULE_ALTERNATE_ERROR_IGNORE
1108        } error_mode;
1109        struct string_list *reference;
1110};
1111#define SUBMODULE_ALTERNATE_SETUP_INIT { NULL, \
1112        SUBMODULE_ALTERNATE_ERROR_IGNORE, NULL }
1113
1114static int add_possible_reference_from_superproject(
1115                struct alternate_object_database *alt, void *sas_cb)
1116{
1117        struct submodule_alternate_setup *sas = sas_cb;
1118
1119        /*
1120         * If the alternate object store is another repository, try the
1121         * standard layout with .git/(modules/<name>)+/objects
1122         */
1123        if (ends_with(alt->path, "/objects")) {
1124                char *sm_alternate;
1125                struct strbuf sb = STRBUF_INIT;
1126                struct strbuf err = STRBUF_INIT;
1127                strbuf_add(&sb, alt->path, strlen(alt->path) - strlen("objects"));
1128
1129                /*
1130                 * We need to end the new path with '/' to mark it as a dir,
1131                 * otherwise a submodule name containing '/' will be broken
1132                 * as the last part of a missing submodule reference would
1133                 * be taken as a file name.
1134                 */
1135                strbuf_addf(&sb, "modules/%s/", sas->submodule_name);
1136
1137                sm_alternate = compute_alternate_path(sb.buf, &err);
1138                if (sm_alternate) {
1139                        string_list_append(sas->reference, xstrdup(sb.buf));
1140                        free(sm_alternate);
1141                } else {
1142                        switch (sas->error_mode) {
1143                        case SUBMODULE_ALTERNATE_ERROR_DIE:
1144                                die(_("submodule '%s' cannot add alternate: %s"),
1145                                    sas->submodule_name, err.buf);
1146                        case SUBMODULE_ALTERNATE_ERROR_INFO:
1147                                fprintf(stderr, _("submodule '%s' cannot add alternate: %s"),
1148                                        sas->submodule_name, err.buf);
1149                        case SUBMODULE_ALTERNATE_ERROR_IGNORE:
1150                                ; /* nothing */
1151                        }
1152                }
1153                strbuf_release(&sb);
1154        }
1155
1156        return 0;
1157}
1158
1159static void prepare_possible_alternates(const char *sm_name,
1160                struct string_list *reference)
1161{
1162        char *sm_alternate = NULL, *error_strategy = NULL;
1163        struct submodule_alternate_setup sas = SUBMODULE_ALTERNATE_SETUP_INIT;
1164
1165        git_config_get_string("submodule.alternateLocation", &sm_alternate);
1166        if (!sm_alternate)
1167                return;
1168
1169        git_config_get_string("submodule.alternateErrorStrategy", &error_strategy);
1170
1171        if (!error_strategy)
1172                error_strategy = xstrdup("die");
1173
1174        sas.submodule_name = sm_name;
1175        sas.reference = reference;
1176        if (!strcmp(error_strategy, "die"))
1177                sas.error_mode = SUBMODULE_ALTERNATE_ERROR_DIE;
1178        else if (!strcmp(error_strategy, "info"))
1179                sas.error_mode = SUBMODULE_ALTERNATE_ERROR_INFO;
1180        else if (!strcmp(error_strategy, "ignore"))
1181                sas.error_mode = SUBMODULE_ALTERNATE_ERROR_IGNORE;
1182        else
1183                die(_("Value '%s' for submodule.alternateErrorStrategy is not recognized"), error_strategy);
1184
1185        if (!strcmp(sm_alternate, "superproject"))
1186                foreach_alt_odb(add_possible_reference_from_superproject, &sas);
1187        else if (!strcmp(sm_alternate, "no"))
1188                ; /* do nothing */
1189        else
1190                die(_("Value '%s' for submodule.alternateLocation is not recognized"), sm_alternate);
1191
1192        free(sm_alternate);
1193        free(error_strategy);
1194}
1195
1196static int module_clone(int argc, const char **argv, const char *prefix)
1197{
1198        const char *name = NULL, *url = NULL, *depth = NULL;
1199        int quiet = 0;
1200        int progress = 0;
1201        char *p, *path = NULL, *sm_gitdir;
1202        struct strbuf sb = STRBUF_INIT;
1203        struct string_list reference = STRING_LIST_INIT_NODUP;
1204        int dissociate = 0;
1205        char *sm_alternate = NULL, *error_strategy = NULL;
1206
1207        struct option module_clone_options[] = {
1208                OPT_STRING(0, "prefix", &prefix,
1209                           N_("path"),
1210                           N_("alternative anchor for relative paths")),
1211                OPT_STRING(0, "path", &path,
1212                           N_("path"),
1213                           N_("where the new submodule will be cloned to")),
1214                OPT_STRING(0, "name", &name,
1215                           N_("string"),
1216                           N_("name of the new submodule")),
1217                OPT_STRING(0, "url", &url,
1218                           N_("string"),
1219                           N_("url where to clone the submodule from")),
1220                OPT_STRING_LIST(0, "reference", &reference,
1221                           N_("repo"),
1222                           N_("reference repository")),
1223                OPT_BOOL(0, "dissociate", &dissociate,
1224                           N_("use --reference only while cloning")),
1225                OPT_STRING(0, "depth", &depth,
1226                           N_("string"),
1227                           N_("depth for shallow clones")),
1228                OPT__QUIET(&quiet, "Suppress output for cloning a submodule"),
1229                OPT_BOOL(0, "progress", &progress,
1230                           N_("force cloning progress")),
1231                OPT_END()
1232        };
1233
1234        const char *const git_submodule_helper_usage[] = {
1235                N_("git submodule--helper clone [--prefix=<path>] [--quiet] "
1236                   "[--reference <repository>] [--name <name>] [--depth <depth>] "
1237                   "--url <url> --path <path>"),
1238                NULL
1239        };
1240
1241        argc = parse_options(argc, argv, prefix, module_clone_options,
1242                             git_submodule_helper_usage, 0);
1243
1244        if (argc || !url || !path || !*path)
1245                usage_with_options(git_submodule_helper_usage,
1246                                   module_clone_options);
1247
1248        strbuf_addf(&sb, "%s/modules/%s", get_git_dir(), name);
1249        sm_gitdir = absolute_pathdup(sb.buf);
1250        strbuf_reset(&sb);
1251
1252        if (!is_absolute_path(path)) {
1253                strbuf_addf(&sb, "%s/%s", get_git_work_tree(), path);
1254                path = strbuf_detach(&sb, NULL);
1255        } else
1256                path = xstrdup(path);
1257
1258        if (!file_exists(sm_gitdir)) {
1259                if (safe_create_leading_directories_const(sm_gitdir) < 0)
1260                        die(_("could not create directory '%s'"), sm_gitdir);
1261
1262                prepare_possible_alternates(name, &reference);
1263
1264                if (clone_submodule(path, sm_gitdir, url, depth, &reference, dissociate,
1265                                    quiet, progress))
1266                        die(_("clone of '%s' into submodule path '%s' failed"),
1267                            url, path);
1268        } else {
1269                if (safe_create_leading_directories_const(path) < 0)
1270                        die(_("could not create directory '%s'"), path);
1271                strbuf_addf(&sb, "%s/index", sm_gitdir);
1272                unlink_or_warn(sb.buf);
1273                strbuf_reset(&sb);
1274        }
1275
1276        connect_work_tree_and_git_dir(path, sm_gitdir, 0);
1277
1278        p = git_pathdup_submodule(path, "config");
1279        if (!p)
1280                die(_("could not get submodule directory for '%s'"), path);
1281
1282        /* setup alternateLocation and alternateErrorStrategy in the cloned submodule if needed */
1283        git_config_get_string("submodule.alternateLocation", &sm_alternate);
1284        if (sm_alternate)
1285                git_config_set_in_file(p, "submodule.alternateLocation",
1286                                           sm_alternate);
1287        git_config_get_string("submodule.alternateErrorStrategy", &error_strategy);
1288        if (error_strategy)
1289                git_config_set_in_file(p, "submodule.alternateErrorStrategy",
1290                                           error_strategy);
1291
1292        free(sm_alternate);
1293        free(error_strategy);
1294
1295        strbuf_release(&sb);
1296        free(sm_gitdir);
1297        free(path);
1298        free(p);
1299        return 0;
1300}
1301
1302struct submodule_update_clone {
1303        /* index into 'list', the list of submodules to look into for cloning */
1304        int current;
1305        struct module_list list;
1306        unsigned warn_if_uninitialized : 1;
1307
1308        /* update parameter passed via commandline */
1309        struct submodule_update_strategy update;
1310
1311        /* configuration parameters which are passed on to the children */
1312        int progress;
1313        int quiet;
1314        int recommend_shallow;
1315        struct string_list references;
1316        int dissociate;
1317        const char *depth;
1318        const char *recursive_prefix;
1319        const char *prefix;
1320
1321        /* Machine-readable status lines to be consumed by git-submodule.sh */
1322        struct string_list projectlines;
1323
1324        /* If we want to stop as fast as possible and return an error */
1325        unsigned quickstop : 1;
1326
1327        /* failed clones to be retried again */
1328        const struct cache_entry **failed_clones;
1329        int failed_clones_nr, failed_clones_alloc;
1330};
1331#define SUBMODULE_UPDATE_CLONE_INIT {0, MODULE_LIST_INIT, 0, \
1332        SUBMODULE_UPDATE_STRATEGY_INIT, 0, 0, -1, STRING_LIST_INIT_DUP, 0, \
1333        NULL, NULL, NULL, \
1334        STRING_LIST_INIT_DUP, 0, NULL, 0, 0}
1335
1336
1337static void next_submodule_warn_missing(struct submodule_update_clone *suc,
1338                struct strbuf *out, const char *displaypath)
1339{
1340        /*
1341         * Only mention uninitialized submodules when their
1342         * paths have been specified.
1343         */
1344        if (suc->warn_if_uninitialized) {
1345                strbuf_addf(out,
1346                        _("Submodule path '%s' not initialized"),
1347                        displaypath);
1348                strbuf_addch(out, '\n');
1349                strbuf_addstr(out,
1350                        _("Maybe you want to use 'update --init'?"));
1351                strbuf_addch(out, '\n');
1352        }
1353}
1354
1355/**
1356 * Determine whether 'ce' needs to be cloned. If so, prepare the 'child' to
1357 * run the clone. Returns 1 if 'ce' needs to be cloned, 0 otherwise.
1358 */
1359static int prepare_to_clone_next_submodule(const struct cache_entry *ce,
1360                                           struct child_process *child,
1361                                           struct submodule_update_clone *suc,
1362                                           struct strbuf *out)
1363{
1364        const struct submodule *sub = NULL;
1365        const char *url = NULL;
1366        const char *update_string;
1367        enum submodule_update_type update_type;
1368        char *key;
1369        struct strbuf displaypath_sb = STRBUF_INIT;
1370        struct strbuf sb = STRBUF_INIT;
1371        const char *displaypath = NULL;
1372        int needs_cloning = 0;
1373
1374        if (ce_stage(ce)) {
1375                if (suc->recursive_prefix)
1376                        strbuf_addf(&sb, "%s/%s", suc->recursive_prefix, ce->name);
1377                else
1378                        strbuf_addstr(&sb, ce->name);
1379                strbuf_addf(out, _("Skipping unmerged submodule %s"), sb.buf);
1380                strbuf_addch(out, '\n');
1381                goto cleanup;
1382        }
1383
1384        sub = submodule_from_path(the_repository, &null_oid, ce->name);
1385
1386        if (suc->recursive_prefix)
1387                displaypath = relative_path(suc->recursive_prefix,
1388                                            ce->name, &displaypath_sb);
1389        else
1390                displaypath = ce->name;
1391
1392        if (!sub) {
1393                next_submodule_warn_missing(suc, out, displaypath);
1394                goto cleanup;
1395        }
1396
1397        key = xstrfmt("submodule.%s.update", sub->name);
1398        if (!repo_config_get_string_const(the_repository, key, &update_string)) {
1399                update_type = parse_submodule_update_type(update_string);
1400        } else {
1401                update_type = sub->update_strategy.type;
1402        }
1403        free(key);
1404
1405        if (suc->update.type == SM_UPDATE_NONE
1406            || (suc->update.type == SM_UPDATE_UNSPECIFIED
1407                && update_type == SM_UPDATE_NONE)) {
1408                strbuf_addf(out, _("Skipping submodule '%s'"), displaypath);
1409                strbuf_addch(out, '\n');
1410                goto cleanup;
1411        }
1412
1413        /* Check if the submodule has been initialized. */
1414        if (!is_submodule_active(the_repository, ce->name)) {
1415                next_submodule_warn_missing(suc, out, displaypath);
1416                goto cleanup;
1417        }
1418
1419        strbuf_reset(&sb);
1420        strbuf_addf(&sb, "submodule.%s.url", sub->name);
1421        if (repo_config_get_string_const(the_repository, sb.buf, &url))
1422                url = sub->url;
1423
1424        strbuf_reset(&sb);
1425        strbuf_addf(&sb, "%s/.git", ce->name);
1426        needs_cloning = !file_exists(sb.buf);
1427
1428        strbuf_reset(&sb);
1429        strbuf_addf(&sb, "%06o %s %d %d\t%s\n", ce->ce_mode,
1430                        oid_to_hex(&ce->oid), ce_stage(ce),
1431                        needs_cloning, ce->name);
1432        string_list_append(&suc->projectlines, sb.buf);
1433
1434        if (!needs_cloning)
1435                goto cleanup;
1436
1437        child->git_cmd = 1;
1438        child->no_stdin = 1;
1439        child->stdout_to_stderr = 1;
1440        child->err = -1;
1441        argv_array_push(&child->args, "submodule--helper");
1442        argv_array_push(&child->args, "clone");
1443        if (suc->progress)
1444                argv_array_push(&child->args, "--progress");
1445        if (suc->quiet)
1446                argv_array_push(&child->args, "--quiet");
1447        if (suc->prefix)
1448                argv_array_pushl(&child->args, "--prefix", suc->prefix, NULL);
1449        if (suc->recommend_shallow && sub->recommend_shallow == 1)
1450                argv_array_push(&child->args, "--depth=1");
1451        argv_array_pushl(&child->args, "--path", sub->path, NULL);
1452        argv_array_pushl(&child->args, "--name", sub->name, NULL);
1453        argv_array_pushl(&child->args, "--url", url, NULL);
1454        if (suc->references.nr) {
1455                struct string_list_item *item;
1456                for_each_string_list_item(item, &suc->references)
1457                        argv_array_pushl(&child->args, "--reference", item->string, NULL);
1458        }
1459        if (suc->dissociate)
1460                argv_array_push(&child->args, "--dissociate");
1461        if (suc->depth)
1462                argv_array_push(&child->args, suc->depth);
1463
1464cleanup:
1465        strbuf_reset(&displaypath_sb);
1466        strbuf_reset(&sb);
1467
1468        return needs_cloning;
1469}
1470
1471static int update_clone_get_next_task(struct child_process *child,
1472                                      struct strbuf *err,
1473                                      void *suc_cb,
1474                                      void **idx_task_cb)
1475{
1476        struct submodule_update_clone *suc = suc_cb;
1477        const struct cache_entry *ce;
1478        int index;
1479
1480        for (; suc->current < suc->list.nr; suc->current++) {
1481                ce = suc->list.entries[suc->current];
1482                if (prepare_to_clone_next_submodule(ce, child, suc, err)) {
1483                        int *p = xmalloc(sizeof(*p));
1484                        *p = suc->current;
1485                        *idx_task_cb = p;
1486                        suc->current++;
1487                        return 1;
1488                }
1489        }
1490
1491        /*
1492         * The loop above tried cloning each submodule once, now try the
1493         * stragglers again, which we can imagine as an extension of the
1494         * entry list.
1495         */
1496        index = suc->current - suc->list.nr;
1497        if (index < suc->failed_clones_nr) {
1498                int *p;
1499                ce = suc->failed_clones[index];
1500                if (!prepare_to_clone_next_submodule(ce, child, suc, err)) {
1501                        suc->current ++;
1502                        strbuf_addstr(err, "BUG: submodule considered for "
1503                                           "cloning, doesn't need cloning "
1504                                           "any more?\n");
1505                        return 0;
1506                }
1507                p = xmalloc(sizeof(*p));
1508                *p = suc->current;
1509                *idx_task_cb = p;
1510                suc->current ++;
1511                return 1;
1512        }
1513
1514        return 0;
1515}
1516
1517static int update_clone_start_failure(struct strbuf *err,
1518                                      void *suc_cb,
1519                                      void *idx_task_cb)
1520{
1521        struct submodule_update_clone *suc = suc_cb;
1522        suc->quickstop = 1;
1523        return 1;
1524}
1525
1526static int update_clone_task_finished(int result,
1527                                      struct strbuf *err,
1528                                      void *suc_cb,
1529                                      void *idx_task_cb)
1530{
1531        const struct cache_entry *ce;
1532        struct submodule_update_clone *suc = suc_cb;
1533
1534        int *idxP = idx_task_cb;
1535        int idx = *idxP;
1536        free(idxP);
1537
1538        if (!result)
1539                return 0;
1540
1541        if (idx < suc->list.nr) {
1542                ce  = suc->list.entries[idx];
1543                strbuf_addf(err, _("Failed to clone '%s'. Retry scheduled"),
1544                            ce->name);
1545                strbuf_addch(err, '\n');
1546                ALLOC_GROW(suc->failed_clones,
1547                           suc->failed_clones_nr + 1,
1548                           suc->failed_clones_alloc);
1549                suc->failed_clones[suc->failed_clones_nr++] = ce;
1550                return 0;
1551        } else {
1552                idx -= suc->list.nr;
1553                ce  = suc->failed_clones[idx];
1554                strbuf_addf(err, _("Failed to clone '%s' a second time, aborting"),
1555                            ce->name);
1556                strbuf_addch(err, '\n');
1557                suc->quickstop = 1;
1558                return 1;
1559        }
1560
1561        return 0;
1562}
1563
1564static int gitmodules_update_clone_config(const char *var, const char *value,
1565                                          void *cb)
1566{
1567        int *max_jobs = cb;
1568        if (!strcmp(var, "submodule.fetchjobs"))
1569                *max_jobs = parse_submodule_fetchjobs(var, value);
1570        return 0;
1571}
1572
1573static int update_clone(int argc, const char **argv, const char *prefix)
1574{
1575        const char *update = NULL;
1576        int max_jobs = 1;
1577        struct string_list_item *item;
1578        struct pathspec pathspec;
1579        struct submodule_update_clone suc = SUBMODULE_UPDATE_CLONE_INIT;
1580
1581        struct option module_update_clone_options[] = {
1582                OPT_STRING(0, "prefix", &prefix,
1583                           N_("path"),
1584                           N_("path into the working tree")),
1585                OPT_STRING(0, "recursive-prefix", &suc.recursive_prefix,
1586                           N_("path"),
1587                           N_("path into the working tree, across nested "
1588                              "submodule boundaries")),
1589                OPT_STRING(0, "update", &update,
1590                           N_("string"),
1591                           N_("rebase, merge, checkout or none")),
1592                OPT_STRING_LIST(0, "reference", &suc.references, N_("repo"),
1593                           N_("reference repository")),
1594                OPT_BOOL(0, "dissociate", &suc.dissociate,
1595                           N_("use --reference only while cloning")),
1596                OPT_STRING(0, "depth", &suc.depth, "<depth>",
1597                           N_("Create a shallow clone truncated to the "
1598                              "specified number of revisions")),
1599                OPT_INTEGER('j', "jobs", &max_jobs,
1600                            N_("parallel jobs")),
1601                OPT_BOOL(0, "recommend-shallow", &suc.recommend_shallow,
1602                            N_("whether the initial clone should follow the shallow recommendation")),
1603                OPT__QUIET(&suc.quiet, N_("don't print cloning progress")),
1604                OPT_BOOL(0, "progress", &suc.progress,
1605                            N_("force cloning progress")),
1606                OPT_END()
1607        };
1608
1609        const char *const git_submodule_helper_usage[] = {
1610                N_("git submodule--helper update_clone [--prefix=<path>] [<path>...]"),
1611                NULL
1612        };
1613        suc.prefix = prefix;
1614
1615        config_from_gitmodules(gitmodules_update_clone_config, &max_jobs);
1616        git_config(gitmodules_update_clone_config, &max_jobs);
1617
1618        argc = parse_options(argc, argv, prefix, module_update_clone_options,
1619                             git_submodule_helper_usage, 0);
1620
1621        if (update)
1622                if (parse_submodule_update_strategy(update, &suc.update) < 0)
1623                        die(_("bad value for update parameter"));
1624
1625        if (module_list_compute(argc, argv, prefix, &pathspec, &suc.list) < 0)
1626                return 1;
1627
1628        if (pathspec.nr)
1629                suc.warn_if_uninitialized = 1;
1630
1631        run_processes_parallel(max_jobs,
1632                               update_clone_get_next_task,
1633                               update_clone_start_failure,
1634                               update_clone_task_finished,
1635                               &suc);
1636
1637        /*
1638         * We saved the output and put it out all at once now.
1639         * That means:
1640         * - the listener does not have to interleave their (checkout)
1641         *   work with our fetching.  The writes involved in a
1642         *   checkout involve more straightforward sequential I/O.
1643         * - the listener can avoid doing any work if fetching failed.
1644         */
1645        if (suc.quickstop)
1646                return 1;
1647
1648        for_each_string_list_item(item, &suc.projectlines)
1649                fprintf(stdout, "%s", item->string);
1650
1651        return 0;
1652}
1653
1654static int resolve_relative_path(int argc, const char **argv, const char *prefix)
1655{
1656        struct strbuf sb = STRBUF_INIT;
1657        if (argc != 3)
1658                die("submodule--helper relative-path takes exactly 2 arguments, got %d", argc);
1659
1660        printf("%s", relative_path(argv[1], argv[2], &sb));
1661        strbuf_release(&sb);
1662        return 0;
1663}
1664
1665static const char *remote_submodule_branch(const char *path)
1666{
1667        const struct submodule *sub;
1668        const char *branch = NULL;
1669        char *key;
1670
1671        sub = submodule_from_path(the_repository, &null_oid, path);
1672        if (!sub)
1673                return NULL;
1674
1675        key = xstrfmt("submodule.%s.branch", sub->name);
1676        if (repo_config_get_string_const(the_repository, key, &branch))
1677                branch = sub->branch;
1678        free(key);
1679
1680        if (!branch)
1681                return "master";
1682
1683        if (!strcmp(branch, ".")) {
1684                const char *refname = resolve_ref_unsafe("HEAD", 0, NULL, NULL);
1685
1686                if (!refname)
1687                        die(_("No such ref: %s"), "HEAD");
1688
1689                /* detached HEAD */
1690                if (!strcmp(refname, "HEAD"))
1691                        die(_("Submodule (%s) branch configured to inherit "
1692                              "branch from superproject, but the superproject "
1693                              "is not on any branch"), sub->name);
1694
1695                if (!skip_prefix(refname, "refs/heads/", &refname))
1696                        die(_("Expecting a full ref name, got %s"), refname);
1697                return refname;
1698        }
1699
1700        return branch;
1701}
1702
1703static int resolve_remote_submodule_branch(int argc, const char **argv,
1704                const char *prefix)
1705{
1706        const char *ret;
1707        struct strbuf sb = STRBUF_INIT;
1708        if (argc != 2)
1709                die("submodule--helper remote-branch takes exactly one arguments, got %d", argc);
1710
1711        ret = remote_submodule_branch(argv[1]);
1712        if (!ret)
1713                die("submodule %s doesn't exist", argv[1]);
1714
1715        printf("%s", ret);
1716        strbuf_release(&sb);
1717        return 0;
1718}
1719
1720static int push_check(int argc, const char **argv, const char *prefix)
1721{
1722        struct remote *remote;
1723        const char *superproject_head;
1724        char *head;
1725        int detached_head = 0;
1726        struct object_id head_oid;
1727
1728        if (argc < 3)
1729                die("submodule--helper push-check requires at least 2 arguments");
1730
1731        /*
1732         * superproject's resolved head ref.
1733         * if HEAD then the superproject is in a detached head state, otherwise
1734         * it will be the resolved head ref.
1735         */
1736        superproject_head = argv[1];
1737        argv++;
1738        argc--;
1739        /* Get the submodule's head ref and determine if it is detached */
1740        head = resolve_refdup("HEAD", 0, &head_oid, NULL);
1741        if (!head)
1742                die(_("Failed to resolve HEAD as a valid ref."));
1743        if (!strcmp(head, "HEAD"))
1744                detached_head = 1;
1745
1746        /*
1747         * The remote must be configured.
1748         * This is to avoid pushing to the exact same URL as the parent.
1749         */
1750        remote = pushremote_get(argv[1]);
1751        if (!remote || remote->origin == REMOTE_UNCONFIGURED)
1752                die("remote '%s' not configured", argv[1]);
1753
1754        /* Check the refspec */
1755        if (argc > 2) {
1756                int i, refspec_nr = argc - 2;
1757                struct ref *local_refs = get_local_heads();
1758                struct refspec *refspec = parse_push_refspec(refspec_nr,
1759                                                             argv + 2);
1760
1761                for (i = 0; i < refspec_nr; i++) {
1762                        struct refspec *rs = refspec + i;
1763
1764                        if (rs->pattern || rs->matching)
1765                                continue;
1766
1767                        /* LHS must match a single ref */
1768                        switch (count_refspec_match(rs->src, local_refs, NULL)) {
1769                        case 1:
1770                                break;
1771                        case 0:
1772                                /*
1773                                 * If LHS matches 'HEAD' then we need to ensure
1774                                 * that it matches the same named branch
1775                                 * checked out in the superproject.
1776                                 */
1777                                if (!strcmp(rs->src, "HEAD")) {
1778                                        if (!detached_head &&
1779                                            !strcmp(head, superproject_head))
1780                                                break;
1781                                        die("HEAD does not match the named branch in the superproject");
1782                                }
1783                                /* fallthrough */
1784                        default:
1785                                die("src refspec '%s' must name a ref",
1786                                    rs->src);
1787                        }
1788                }
1789                free_refspec(refspec_nr, refspec);
1790        }
1791        free(head);
1792
1793        return 0;
1794}
1795
1796static int absorb_git_dirs(int argc, const char **argv, const char *prefix)
1797{
1798        int i;
1799        struct pathspec pathspec;
1800        struct module_list list = MODULE_LIST_INIT;
1801        unsigned flags = ABSORB_GITDIR_RECURSE_SUBMODULES;
1802
1803        struct option embed_gitdir_options[] = {
1804                OPT_STRING(0, "prefix", &prefix,
1805                           N_("path"),
1806                           N_("path into the working tree")),
1807                OPT_BIT(0, "--recursive", &flags, N_("recurse into submodules"),
1808                        ABSORB_GITDIR_RECURSE_SUBMODULES),
1809                OPT_END()
1810        };
1811
1812        const char *const git_submodule_helper_usage[] = {
1813                N_("git submodule--helper embed-git-dir [<path>...]"),
1814                NULL
1815        };
1816
1817        argc = parse_options(argc, argv, prefix, embed_gitdir_options,
1818                             git_submodule_helper_usage, 0);
1819
1820        if (module_list_compute(argc, argv, prefix, &pathspec, &list) < 0)
1821                return 1;
1822
1823        for (i = 0; i < list.nr; i++)
1824                absorb_git_dir_into_superproject(prefix,
1825                                list.entries[i]->name, flags);
1826
1827        return 0;
1828}
1829
1830static int is_active(int argc, const char **argv, const char *prefix)
1831{
1832        if (argc != 2)
1833                die("submodule--helper is-active takes exactly 1 argument");
1834
1835        return !is_submodule_active(the_repository, argv[1]);
1836}
1837
1838/*
1839 * Exit non-zero if any of the submodule names given on the command line is
1840 * invalid. If no names are given, filter stdin to print only valid names
1841 * (which is primarily intended for testing).
1842 */
1843static int check_name(int argc, const char **argv, const char *prefix)
1844{
1845        if (argc > 1) {
1846                while (*++argv) {
1847                        if (check_submodule_name(*argv) < 0)
1848                                return 1;
1849                }
1850        } else {
1851                struct strbuf buf = STRBUF_INIT;
1852                while (strbuf_getline(&buf, stdin) != EOF) {
1853                        if (!check_submodule_name(buf.buf))
1854                                printf("%s\n", buf.buf);
1855                }
1856                strbuf_release(&buf);
1857        }
1858        return 0;
1859}
1860
1861#define SUPPORT_SUPER_PREFIX (1<<0)
1862
1863struct cmd_struct {
1864        const char *cmd;
1865        int (*fn)(int, const char **, const char *);
1866        unsigned option;
1867};
1868
1869static struct cmd_struct commands[] = {
1870        {"list", module_list, 0},
1871        {"name", module_name, 0},
1872        {"clone", module_clone, 0},
1873        {"update-clone", update_clone, 0},
1874        {"relative-path", resolve_relative_path, 0},
1875        {"resolve-relative-url", resolve_relative_url, 0},
1876        {"resolve-relative-url-test", resolve_relative_url_test, 0},
1877        {"init", module_init, SUPPORT_SUPER_PREFIX},
1878        {"status", module_status, SUPPORT_SUPER_PREFIX},
1879        {"print-default-remote", print_default_remote, 0},
1880        {"sync", module_sync, SUPPORT_SUPER_PREFIX},
1881        {"deinit", module_deinit, 0},
1882        {"remote-branch", resolve_remote_submodule_branch, 0},
1883        {"push-check", push_check, 0},
1884        {"absorb-git-dirs", absorb_git_dirs, SUPPORT_SUPER_PREFIX},
1885        {"is-active", is_active, 0},
1886        {"check-name", check_name, 0},
1887};
1888
1889int cmd_submodule__helper(int argc, const char **argv, const char *prefix)
1890{
1891        int i;
1892        if (argc < 2 || !strcmp(argv[1], "-h"))
1893                usage("git submodule--helper <command>");
1894
1895        for (i = 0; i < ARRAY_SIZE(commands); i++) {
1896                if (!strcmp(argv[1], commands[i].cmd)) {
1897                        if (get_super_prefix() &&
1898                            !(commands[i].option & SUPPORT_SUPER_PREFIX))
1899                                die(_("%s doesn't support --super-prefix"),
1900                                    commands[i].cmd);
1901                        return commands[i].fn(argc - 1, argv + 1, prefix);
1902                }
1903        }
1904
1905        die(_("'%s' is not a valid submodule--helper "
1906              "subcommand"), argv[1]);
1907}