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