3 #include "repository.h"
5 #include "submodule-config.h"
11 #include "run-command.h"
14 #include "string-list.h"
15 #include "oid-array.h"
18 #include "thread-utils.h"
22 #include "parse-options.h"
23 #include "object-store.h"
24 #include "commit-reach.h"
26 static int config_update_recurse_submodules = RECURSE_SUBMODULES_OFF;
27 static int initialized_fetch_ref_tips;
28 static struct oid_array ref_tips_before_fetch;
29 static struct oid_array ref_tips_after_fetch;
32 * Check if the .gitmodules file is unmerged. Parsing of the .gitmodules file
33 * will be disabled because we can't guess what might be configured in
34 * .gitmodules unless the user resolves the conflict.
36 int is_gitmodules_unmerged(struct index_state *istate)
38 int pos = index_name_pos(istate, GITMODULES_FILE, strlen(GITMODULES_FILE));
39 if (pos < 0) { /* .gitmodules not found or isn't merged */
41 if (istate->cache_nr > pos) { /* there is a .gitmodules */
42 const struct cache_entry *ce = istate->cache[pos];
43 if (ce_namelen(ce) == strlen(GITMODULES_FILE) &&
44 !strcmp(ce->name, GITMODULES_FILE))
53 * Check if the .gitmodules file is safe to write.
55 * Writing to the .gitmodules file requires that the file exists in the
56 * working tree or, if it doesn't, that a brand new .gitmodules file is going
57 * to be created (i.e. it's neither in the index nor in the current branch).
59 * It is not safe to write to .gitmodules if it's not in the working tree but
60 * it is in the index or in the current branch, because writing new values
61 * (and staging them) would blindly overwrite ALL the old content.
63 int is_writing_gitmodules_ok(void)
66 return file_exists(GITMODULES_FILE) ||
67 (get_oid(GITMODULES_INDEX, &oid) < 0 && get_oid(GITMODULES_HEAD, &oid) < 0);
71 * Check if the .gitmodules file has unstaged modifications. This must be
72 * checked before allowing modifications to the .gitmodules file with the
73 * intention to stage them later, because when continuing we would stage the
74 * modifications the user didn't stage herself too. That might change in a
75 * future version when we learn to stage the changes we do ourselves without
76 * staging any previous modifications.
78 int is_staging_gitmodules_ok(struct index_state *istate)
80 int pos = index_name_pos(istate, GITMODULES_FILE, strlen(GITMODULES_FILE));
82 if ((pos >= 0) && (pos < istate->cache_nr)) {
84 if (lstat(GITMODULES_FILE, &st) == 0 &&
85 ie_modified(istate, istate->cache[pos], &st, 0) & DATA_CHANGED)
92 static int for_each_remote_ref_submodule(const char *submodule,
93 each_ref_fn fn, void *cb_data)
95 return refs_for_each_remote_ref(get_submodule_ref_store(submodule),
100 * Try to update the "path" entry in the "submodule.<name>" section of the
101 * .gitmodules file. Return 0 only if a .gitmodules file was found, a section
102 * with the correct path=<oldpath> setting was found and we could update it.
104 int update_path_in_gitmodules(const char *oldpath, const char *newpath)
106 struct strbuf entry = STRBUF_INIT;
107 const struct submodule *submodule;
110 if (!file_exists(GITMODULES_FILE)) /* Do nothing without .gitmodules */
113 if (is_gitmodules_unmerged(the_repository->index))
114 die(_("Cannot change unmerged .gitmodules, resolve merge conflicts first"));
116 submodule = submodule_from_path(the_repository, null_oid(), oldpath);
117 if (!submodule || !submodule->name) {
118 warning(_("Could not find section in .gitmodules where path=%s"), oldpath);
121 strbuf_addstr(&entry, "submodule.");
122 strbuf_addstr(&entry, submodule->name);
123 strbuf_addstr(&entry, ".path");
124 ret = config_set_in_gitmodules_file_gently(entry.buf, newpath);
125 strbuf_release(&entry);
130 * Try to remove the "submodule.<name>" section from .gitmodules where the given
131 * path is configured. Return 0 only if a .gitmodules file was found, a section
132 * with the correct path=<path> setting was found and we could remove it.
134 int remove_path_from_gitmodules(const char *path)
136 struct strbuf sect = STRBUF_INIT;
137 const struct submodule *submodule;
139 if (!file_exists(GITMODULES_FILE)) /* Do nothing without .gitmodules */
142 if (is_gitmodules_unmerged(the_repository->index))
143 die(_("Cannot change unmerged .gitmodules, resolve merge conflicts first"));
145 submodule = submodule_from_path(the_repository, null_oid(), path);
146 if (!submodule || !submodule->name) {
147 warning(_("Could not find section in .gitmodules where path=%s"), path);
150 strbuf_addstr(§, "submodule.");
151 strbuf_addstr(§, submodule->name);
152 if (git_config_rename_section_in_file(GITMODULES_FILE, sect.buf, NULL) < 0) {
153 /* Maybe the user already did that, don't error out here */
154 warning(_("Could not remove .gitmodules entry for %s"), path);
155 strbuf_release(§);
158 strbuf_release(§);
162 void stage_updated_gitmodules(struct index_state *istate)
164 if (add_file_to_index(istate, GITMODULES_FILE, 0))
165 die(_("staging updated .gitmodules failed"));
168 /* TODO: remove this function, use repo_submodule_init instead. */
169 int add_submodule_odb(const char *path)
171 struct strbuf objects_directory = STRBUF_INIT;
174 ret = strbuf_git_path_submodule(&objects_directory, path, "objects/");
177 if (!is_directory(objects_directory.buf)) {
181 add_to_alternates_memory(objects_directory.buf);
183 strbuf_release(&objects_directory);
187 void set_diffopt_flags_from_submodule_config(struct diff_options *diffopt,
190 const struct submodule *submodule = submodule_from_path(the_repository,
197 key = xstrfmt("submodule.%s.ignore", submodule->name);
198 if (repo_config_get_string_tmp(the_repository, key, &ignore))
199 ignore = submodule->ignore;
203 handle_ignore_submodules_arg(diffopt, ignore);
204 else if (is_gitmodules_unmerged(the_repository->index))
205 diffopt->flags.ignore_submodules = 1;
209 /* Cheap function that only determines if we're interested in submodules at all */
210 int git_default_submodule_config(const char *var, const char *value, void *cb)
212 if (!strcmp(var, "submodule.recurse")) {
213 int v = git_config_bool(var, value) ?
214 RECURSE_SUBMODULES_ON : RECURSE_SUBMODULES_OFF;
215 config_update_recurse_submodules = v;
220 int option_parse_recurse_submodules_worktree_updater(const struct option *opt,
221 const char *arg, int unset)
224 config_update_recurse_submodules = RECURSE_SUBMODULES_OFF;
228 config_update_recurse_submodules =
229 parse_update_recurse_submodules_arg(opt->long_name,
232 config_update_recurse_submodules = RECURSE_SUBMODULES_ON;
238 * Determine if a submodule has been initialized at a given 'path'
240 int is_submodule_active(struct repository *repo, const char *path)
245 const struct string_list *sl;
246 const struct submodule *module;
248 module = submodule_from_path(repo, null_oid(), path);
250 /* early return if there isn't a path->module mapping */
254 /* submodule.<name>.active is set */
255 key = xstrfmt("submodule.%s.active", module->name);
256 if (!repo_config_get_bool(repo, key, &ret)) {
262 /* submodule.active is set */
263 sl = repo_config_get_value_multi(repo, "submodule.active");
266 struct strvec args = STRVEC_INIT;
267 const struct string_list_item *item;
269 for_each_string_list_item(item, sl) {
270 strvec_push(&args, item->string);
273 parse_pathspec(&ps, 0, 0, NULL, args.v);
274 ret = match_pathspec(repo->index, &ps, path, strlen(path), 0, NULL, 1);
281 /* fallback to checking if the URL is set */
282 key = xstrfmt("submodule.%s.url", module->name);
283 ret = !repo_config_get_string(repo, key, &value);
290 int is_submodule_populated_gently(const char *path, int *return_error_code)
293 char *gitdir = xstrfmt("%s/.git", path);
295 if (resolve_gitdir_gently(gitdir, return_error_code))
303 * Dies if the provided 'prefix' corresponds to an unpopulated submodule
305 void die_in_unpopulated_submodule(struct index_state *istate,
313 prefixlen = strlen(prefix);
315 for (i = 0; i < istate->cache_nr; i++) {
316 struct cache_entry *ce = istate->cache[i];
317 int ce_len = ce_namelen(ce);
319 if (!S_ISGITLINK(ce->ce_mode))
321 if (prefixlen <= ce_len)
323 if (strncmp(ce->name, prefix, ce_len))
325 if (prefix[ce_len] != '/')
328 die(_("in unpopulated submodule '%s'"), ce->name);
333 * Dies if any paths in the provided pathspec descends into a submodule
335 void die_path_inside_submodule(struct index_state *istate,
336 const struct pathspec *ps)
340 for (i = 0; i < istate->cache_nr; i++) {
341 struct cache_entry *ce = istate->cache[i];
342 int ce_len = ce_namelen(ce);
344 if (!S_ISGITLINK(ce->ce_mode))
347 for (j = 0; j < ps->nr ; j++) {
348 const struct pathspec_item *item = &ps->items[j];
350 if (item->len <= ce_len)
352 if (item->match[ce_len] != '/')
354 if (strncmp(ce->name, item->match, ce_len))
356 if (item->len == ce_len + 1)
359 die(_("Pathspec '%s' is in submodule '%.*s'"),
360 item->original, ce_len, ce->name);
365 enum submodule_update_type parse_submodule_update_type(const char *value)
367 if (!strcmp(value, "none"))
368 return SM_UPDATE_NONE;
369 else if (!strcmp(value, "checkout"))
370 return SM_UPDATE_CHECKOUT;
371 else if (!strcmp(value, "rebase"))
372 return SM_UPDATE_REBASE;
373 else if (!strcmp(value, "merge"))
374 return SM_UPDATE_MERGE;
375 else if (*value == '!')
376 return SM_UPDATE_COMMAND;
378 return SM_UPDATE_UNSPECIFIED;
381 int parse_submodule_update_strategy(const char *value,
382 struct submodule_update_strategy *dst)
384 enum submodule_update_type type;
386 free((void*)dst->command);
389 type = parse_submodule_update_type(value);
390 if (type == SM_UPDATE_UNSPECIFIED)
394 if (type == SM_UPDATE_COMMAND)
395 dst->command = xstrdup(value + 1);
400 const char *submodule_strategy_to_string(const struct submodule_update_strategy *s)
402 struct strbuf sb = STRBUF_INIT;
404 case SM_UPDATE_CHECKOUT:
406 case SM_UPDATE_MERGE:
408 case SM_UPDATE_REBASE:
412 case SM_UPDATE_UNSPECIFIED:
414 case SM_UPDATE_COMMAND:
415 strbuf_addf(&sb, "!%s", s->command);
416 return strbuf_detach(&sb, NULL);
421 void handle_ignore_submodules_arg(struct diff_options *diffopt,
424 diffopt->flags.ignore_submodule_set = 1;
425 diffopt->flags.ignore_submodules = 0;
426 diffopt->flags.ignore_untracked_in_submodules = 0;
427 diffopt->flags.ignore_dirty_submodules = 0;
429 if (!strcmp(arg, "all"))
430 diffopt->flags.ignore_submodules = 1;
431 else if (!strcmp(arg, "untracked"))
432 diffopt->flags.ignore_untracked_in_submodules = 1;
433 else if (!strcmp(arg, "dirty"))
434 diffopt->flags.ignore_dirty_submodules = 1;
435 else if (strcmp(arg, "none"))
436 die(_("bad --ignore-submodules argument: %s"), arg);
438 * Please update _git_status() in git-completion.bash when you
443 static int prepare_submodule_diff_summary(struct repository *r, struct rev_info *rev,
445 struct commit *left, struct commit *right,
446 struct commit_list *merge_bases)
448 struct commit_list *list;
450 repo_init_revisions(r, rev, NULL);
451 setup_revisions(0, NULL, rev, NULL);
453 rev->first_parent_only = 1;
454 left->object.flags |= SYMMETRIC_LEFT;
455 add_pending_object(rev, &left->object, path);
456 add_pending_object(rev, &right->object, path);
457 for (list = merge_bases; list; list = list->next) {
458 list->item->object.flags |= UNINTERESTING;
459 add_pending_object(rev, &list->item->object,
460 oid_to_hex(&list->item->object.oid));
462 return prepare_revision_walk(rev);
465 static void print_submodule_diff_summary(struct repository *r, struct rev_info *rev, struct diff_options *o)
467 static const char format[] = " %m %s";
468 struct strbuf sb = STRBUF_INIT;
469 struct commit *commit;
471 while ((commit = get_revision(rev))) {
472 struct pretty_print_context ctx = {0};
473 ctx.date_mode = rev->date_mode;
474 ctx.output_encoding = get_log_output_encoding();
475 strbuf_setlen(&sb, 0);
476 repo_format_commit_message(r, commit, format, &sb,
478 strbuf_addch(&sb, '\n');
479 if (commit->object.flags & SYMMETRIC_LEFT)
480 diff_emit_submodule_del(o, sb.buf);
482 diff_emit_submodule_add(o, sb.buf);
487 void prepare_submodule_repo_env(struct strvec *out)
489 prepare_other_repo_env(out, DEFAULT_GIT_DIR_ENVIRONMENT);
492 static void prepare_submodule_repo_env_in_gitdir(struct strvec *out)
494 prepare_other_repo_env(out, ".");
498 * Initialize a repository struct for a submodule based on the provided 'path'.
500 * Unlike repo_submodule_init, this tolerates submodules not present
501 * in .gitmodules. This function exists only to preserve historical behavior,
503 * Returns the repository struct on success,
504 * NULL when the submodule is not present.
506 static struct repository *open_submodule(const char *path)
508 struct strbuf sb = STRBUF_INIT;
509 struct repository *out = xmalloc(sizeof(*out));
511 if (submodule_to_gitdir(&sb, path) || repo_init(out, sb.buf, NULL)) {
517 /* Mark it as a submodule */
518 out->submodule_prefix = xstrdup(path);
525 * Helper function to display the submodule header line prior to the full
528 * If it can locate the submodule git directory it will create a repository
529 * handle for the submodule and lookup both the left and right commits and
530 * put them into the left and right pointers.
532 static void show_submodule_header(struct diff_options *o,
534 struct object_id *one, struct object_id *two,
535 unsigned dirty_submodule,
536 struct repository *sub,
537 struct commit **left, struct commit **right,
538 struct commit_list **merge_bases)
540 const char *message = NULL;
541 struct strbuf sb = STRBUF_INIT;
542 int fast_forward = 0, fast_backward = 0;
544 if (dirty_submodule & DIRTY_SUBMODULE_UNTRACKED)
545 diff_emit_submodule_untracked(o, path);
547 if (dirty_submodule & DIRTY_SUBMODULE_MODIFIED)
548 diff_emit_submodule_modified(o, path);
550 if (is_null_oid(one))
551 message = "(new submodule)";
552 else if (is_null_oid(two))
553 message = "(submodule deleted)";
557 message = "(commits not present)";
562 * Attempt to lookup the commit references, and determine if this is
563 * a fast forward or fast backwards update.
565 *left = lookup_commit_reference(sub, one);
566 *right = lookup_commit_reference(sub, two);
569 * Warn about missing commits in the submodule project, but only if
572 if ((!is_null_oid(one) && !*left) ||
573 (!is_null_oid(two) && !*right))
574 message = "(commits not present)";
576 *merge_bases = repo_get_merge_bases(sub, *left, *right);
578 if ((*merge_bases)->item == *left)
580 else if ((*merge_bases)->item == *right)
584 if (oideq(one, two)) {
590 strbuf_addf(&sb, "Submodule %s ", path);
591 strbuf_add_unique_abbrev(&sb, one, DEFAULT_ABBREV);
592 strbuf_addstr(&sb, (fast_backward || fast_forward) ? ".." : "...");
593 strbuf_add_unique_abbrev(&sb, two, DEFAULT_ABBREV);
595 strbuf_addf(&sb, " %s\n", message);
597 strbuf_addf(&sb, "%s:\n", fast_backward ? " (rewind)" : "");
598 diff_emit_submodule_header(o, sb.buf);
603 void show_submodule_diff_summary(struct diff_options *o, const char *path,
604 struct object_id *one, struct object_id *two,
605 unsigned dirty_submodule)
608 struct commit *left = NULL, *right = NULL;
609 struct commit_list *merge_bases = NULL;
610 struct repository *sub;
612 sub = open_submodule(path);
613 show_submodule_header(o, path, one, two, dirty_submodule,
614 sub, &left, &right, &merge_bases);
617 * If we don't have both a left and a right pointer, there is no
618 * reason to try and display a summary. The header line should contain
619 * all the information the user needs.
621 if (!left || !right || !sub)
624 /* Treat revision walker failure the same as missing commits */
625 if (prepare_submodule_diff_summary(sub, &rev, path, left, right, merge_bases)) {
626 diff_emit_submodule_error(o, "(revision walker failed)\n");
630 print_submodule_diff_summary(sub, &rev, o);
634 free_commit_list(merge_bases);
635 clear_commit_marks(left, ~0);
636 clear_commit_marks(right, ~0);
643 void show_submodule_inline_diff(struct diff_options *o, const char *path,
644 struct object_id *one, struct object_id *two,
645 unsigned dirty_submodule)
647 const struct object_id *old_oid = the_hash_algo->empty_tree, *new_oid = the_hash_algo->empty_tree;
648 struct commit *left = NULL, *right = NULL;
649 struct commit_list *merge_bases = NULL;
650 struct child_process cp = CHILD_PROCESS_INIT;
651 struct strbuf sb = STRBUF_INIT;
652 struct repository *sub;
654 sub = open_submodule(path);
655 show_submodule_header(o, path, one, two, dirty_submodule,
656 sub, &left, &right, &merge_bases);
658 /* We need a valid left and right commit to display a difference */
659 if (!(left || is_null_oid(one)) ||
660 !(right || is_null_oid(two)))
673 /* TODO: other options may need to be passed here. */
674 strvec_pushl(&cp.args, "diff", "--submodule=diff", NULL);
675 strvec_pushf(&cp.args, "--color=%s", want_color(o->use_color) ?
678 if (o->flags.reverse_diff) {
679 strvec_pushf(&cp.args, "--src-prefix=%s%s/",
681 strvec_pushf(&cp.args, "--dst-prefix=%s%s/",
684 strvec_pushf(&cp.args, "--src-prefix=%s%s/",
686 strvec_pushf(&cp.args, "--dst-prefix=%s%s/",
689 strvec_push(&cp.args, oid_to_hex(old_oid));
691 * If the submodule has modified content, we will diff against the
692 * work tree, under the assumption that the user has asked for the
693 * diff format and wishes to actually see all differences even if they
694 * haven't yet been committed to the submodule yet.
696 if (!(dirty_submodule & DIRTY_SUBMODULE_MODIFIED))
697 strvec_push(&cp.args, oid_to_hex(new_oid));
699 prepare_submodule_repo_env(&cp.env_array);
700 if (start_command(&cp))
701 diff_emit_submodule_error(o, "(diff failed)\n");
703 while (strbuf_getwholeline_fd(&sb, cp.out, '\n') != EOF)
704 diff_emit_submodule_pipethrough(o, sb.buf, sb.len);
706 if (finish_command(&cp))
707 diff_emit_submodule_error(o, "(diff failed)\n");
712 free_commit_list(merge_bases);
714 clear_commit_marks(left, ~0);
716 clear_commit_marks(right, ~0);
723 int should_update_submodules(void)
725 return config_update_recurse_submodules == RECURSE_SUBMODULES_ON;
728 const struct submodule *submodule_from_ce(const struct cache_entry *ce)
730 if (!S_ISGITLINK(ce->ce_mode))
733 if (!should_update_submodules())
736 return submodule_from_path(the_repository, null_oid(), ce->name);
739 static struct oid_array *submodule_commits(struct string_list *submodules,
742 struct string_list_item *item;
744 item = string_list_insert(submodules, name);
746 return (struct oid_array *) item->util;
748 /* NEEDSWORK: should we have oid_array_init()? */
749 item->util = xcalloc(1, sizeof(struct oid_array));
750 return (struct oid_array *) item->util;
753 struct collect_changed_submodules_cb_data {
754 struct repository *repo;
755 struct string_list *changed;
756 const struct object_id *commit_oid;
760 * this would normally be two functions: default_name_from_path() and
761 * path_from_default_name(). Since the default name is the same as
762 * the submodule path we can get away with just one function which only
763 * checks whether there is a submodule in the working directory at that
766 static const char *default_name_or_path(const char *path_or_name)
770 if (!is_submodule_populated_gently(path_or_name, &error_code))
776 static void collect_changed_submodules_cb(struct diff_queue_struct *q,
777 struct diff_options *options,
780 struct collect_changed_submodules_cb_data *me = data;
781 struct string_list *changed = me->changed;
782 const struct object_id *commit_oid = me->commit_oid;
785 for (i = 0; i < q->nr; i++) {
786 struct diff_filepair *p = q->queue[i];
787 struct oid_array *commits;
788 const struct submodule *submodule;
791 if (!S_ISGITLINK(p->two->mode))
794 submodule = submodule_from_path(me->repo,
795 commit_oid, p->two->path);
797 name = submodule->name;
799 name = default_name_or_path(p->two->path);
800 /* make sure name does not collide with existing one */
802 submodule = submodule_from_name(me->repo,
805 warning(_("Submodule in commit %s at path: "
806 "'%s' collides with a submodule named "
807 "the same. Skipping it."),
808 oid_to_hex(commit_oid), p->two->path);
816 commits = submodule_commits(changed, name);
817 oid_array_append(commits, &p->two->oid);
822 * Collect the paths of submodules in 'changed' which have changed based on
823 * the revisions as specified in 'argv'. Each entry in 'changed' will also
824 * have a corresponding 'struct oid_array' (in the 'util' field) which lists
825 * what the submodule pointers were updated to during the change.
827 static void collect_changed_submodules(struct repository *r,
828 struct string_list *changed,
832 const struct commit *commit;
834 struct setup_revision_opt s_r_opt = {
835 .assume_dashdash = 1,
838 save_warning = warn_on_object_refname_ambiguity;
839 warn_on_object_refname_ambiguity = 0;
840 repo_init_revisions(r, &rev, NULL);
841 setup_revisions(argv->nr, argv->v, &rev, &s_r_opt);
842 warn_on_object_refname_ambiguity = save_warning;
843 if (prepare_revision_walk(&rev))
844 die(_("revision walk setup failed"));
846 while ((commit = get_revision(&rev))) {
847 struct rev_info diff_rev;
848 struct collect_changed_submodules_cb_data data;
850 data.changed = changed;
851 data.commit_oid = &commit->object.oid;
853 repo_init_revisions(r, &diff_rev, NULL);
854 diff_rev.diffopt.output_format |= DIFF_FORMAT_CALLBACK;
855 diff_rev.diffopt.format_callback = collect_changed_submodules_cb;
856 diff_rev.diffopt.format_callback_data = &data;
857 diff_rev.dense_combined_merges = 1;
858 diff_tree_combined_merge(commit, &diff_rev);
861 reset_revision_walk();
864 static void free_submodules_oids(struct string_list *submodules)
866 struct string_list_item *item;
867 for_each_string_list_item(item, submodules)
868 oid_array_clear((struct oid_array *) item->util);
869 string_list_clear(submodules, 1);
872 static int has_remote(const char *refname, const struct object_id *oid,
873 int flags, void *cb_data)
878 static int append_oid_to_argv(const struct object_id *oid, void *data)
880 struct strvec *argv = data;
881 strvec_push(argv, oid_to_hex(oid));
885 struct has_commit_data {
886 struct repository *repo;
891 static int check_has_commit(const struct object_id *oid, void *data)
893 struct has_commit_data *cb = data;
895 enum object_type type = oid_object_info(cb->repo, oid, NULL);
902 * Object is missing or invalid. If invalid, an error message
903 * has already been printed.
908 die(_("submodule entry '%s' (%s) is a %s, not a commit"),
909 cb->path, oid_to_hex(oid), type_name(type));
913 static int submodule_has_commits(struct repository *r,
915 struct oid_array *commits)
917 struct has_commit_data has_commit = { r, 1, path };
920 * Perform a cheap, but incorrect check for the existence of 'commits'.
921 * This is done by adding the submodule's object store to the in-core
922 * object store, and then querying for each commit's existence. If we
923 * do not have the commit object anywhere, there is no chance we have
924 * it in the object store of the correct submodule and have it
925 * reachable from a ref, so we can fail early without spawning rev-list
926 * which is expensive.
928 if (add_submodule_odb(path))
931 oid_array_for_each_unique(commits, check_has_commit, &has_commit);
933 if (has_commit.result) {
935 * Even if the submodule is checked out and the commit is
936 * present, make sure it exists in the submodule's object store
937 * and that it is reachable from a ref.
939 struct child_process cp = CHILD_PROCESS_INIT;
940 struct strbuf out = STRBUF_INIT;
942 strvec_pushl(&cp.args, "rev-list", "-n", "1", NULL);
943 oid_array_for_each_unique(commits, append_oid_to_argv, &cp.args);
944 strvec_pushl(&cp.args, "--not", "--all", NULL);
946 prepare_submodule_repo_env(&cp.env_array);
951 if (capture_command(&cp, &out, GIT_MAX_HEXSZ + 1) || out.len)
952 has_commit.result = 0;
954 strbuf_release(&out);
957 return has_commit.result;
960 static int submodule_needs_pushing(struct repository *r,
962 struct oid_array *commits)
964 if (!submodule_has_commits(r, path, commits))
966 * NOTE: We do consider it safe to return "no" here. The
967 * correct answer would be "We do not know" instead of
968 * "No push needed", but it is quite hard to change
969 * the submodule pointer without having the submodule
970 * around. If a user did however change the submodules
971 * without having the submodule around, this indicates
972 * an expert who knows what they are doing or a
973 * maintainer integrating work from other people. In
974 * both cases it should be safe to skip this check.
978 if (for_each_remote_ref_submodule(path, has_remote, NULL) > 0) {
979 struct child_process cp = CHILD_PROCESS_INIT;
980 struct strbuf buf = STRBUF_INIT;
981 int needs_pushing = 0;
983 strvec_push(&cp.args, "rev-list");
984 oid_array_for_each_unique(commits, append_oid_to_argv, &cp.args);
985 strvec_pushl(&cp.args, "--not", "--remotes", "-n", "1" , NULL);
987 prepare_submodule_repo_env(&cp.env_array);
992 if (start_command(&cp))
993 die(_("Could not run 'git rev-list <commits> --not --remotes -n 1' command in submodule %s"),
995 if (strbuf_read(&buf, cp.out, the_hash_algo->hexsz + 1))
999 strbuf_release(&buf);
1000 return needs_pushing;
1006 int find_unpushed_submodules(struct repository *r,
1007 struct oid_array *commits,
1008 const char *remotes_name,
1009 struct string_list *needs_pushing)
1011 struct string_list submodules = STRING_LIST_INIT_DUP;
1012 struct string_list_item *name;
1013 struct strvec argv = STRVEC_INIT;
1015 /* argv.v[0] will be ignored by setup_revisions */
1016 strvec_push(&argv, "find_unpushed_submodules");
1017 oid_array_for_each_unique(commits, append_oid_to_argv, &argv);
1018 strvec_push(&argv, "--not");
1019 strvec_pushf(&argv, "--remotes=%s", remotes_name);
1021 collect_changed_submodules(r, &submodules, &argv);
1023 for_each_string_list_item(name, &submodules) {
1024 struct oid_array *commits = name->util;
1025 const struct submodule *submodule;
1026 const char *path = NULL;
1028 submodule = submodule_from_name(r, null_oid(), name->string);
1030 path = submodule->path;
1032 path = default_name_or_path(name->string);
1037 if (submodule_needs_pushing(r, path, commits))
1038 string_list_insert(needs_pushing, path);
1041 free_submodules_oids(&submodules);
1042 strvec_clear(&argv);
1044 return needs_pushing->nr;
1047 static int push_submodule(const char *path,
1048 const struct remote *remote,
1049 const struct refspec *rs,
1050 const struct string_list *push_options,
1053 if (for_each_remote_ref_submodule(path, has_remote, NULL) > 0) {
1054 struct child_process cp = CHILD_PROCESS_INIT;
1055 strvec_push(&cp.args, "push");
1057 strvec_push(&cp.args, "--dry-run");
1059 if (push_options && push_options->nr) {
1060 const struct string_list_item *item;
1061 for_each_string_list_item(item, push_options)
1062 strvec_pushf(&cp.args, "--push-option=%s",
1066 if (remote->origin != REMOTE_UNCONFIGURED) {
1068 strvec_push(&cp.args, remote->name);
1069 for (i = 0; i < rs->raw_nr; i++)
1070 strvec_push(&cp.args, rs->raw[i]);
1073 prepare_submodule_repo_env(&cp.env_array);
1077 if (run_command(&cp))
1086 * Perform a check in the submodule to see if the remote and refspec work.
1087 * Die if the submodule can't be pushed.
1089 static void submodule_push_check(const char *path, const char *head,
1090 const struct remote *remote,
1091 const struct refspec *rs)
1093 struct child_process cp = CHILD_PROCESS_INIT;
1096 strvec_push(&cp.args, "submodule--helper");
1097 strvec_push(&cp.args, "push-check");
1098 strvec_push(&cp.args, head);
1099 strvec_push(&cp.args, remote->name);
1101 for (i = 0; i < rs->raw_nr; i++)
1102 strvec_push(&cp.args, rs->raw[i]);
1104 prepare_submodule_repo_env(&cp.env_array);
1111 * Simply indicate if 'submodule--helper push-check' failed.
1112 * More detailed error information will be provided by the
1115 if (run_command(&cp))
1116 die(_("process for submodule '%s' failed"), path);
1119 int push_unpushed_submodules(struct repository *r,
1120 struct oid_array *commits,
1121 const struct remote *remote,
1122 const struct refspec *rs,
1123 const struct string_list *push_options,
1127 struct string_list needs_pushing = STRING_LIST_INIT_DUP;
1129 if (!find_unpushed_submodules(r, commits,
1130 remote->name, &needs_pushing))
1134 * Verify that the remote and refspec can be propagated to all
1135 * submodules. This check can be skipped if the remote and refspec
1136 * won't be propagated due to the remote being unconfigured (e.g. a URL
1137 * instead of a remote name).
1139 if (remote->origin != REMOTE_UNCONFIGURED) {
1141 struct object_id head_oid;
1143 head = resolve_refdup("HEAD", 0, &head_oid, NULL);
1145 die(_("Failed to resolve HEAD as a valid ref."));
1147 for (i = 0; i < needs_pushing.nr; i++)
1148 submodule_push_check(needs_pushing.items[i].string,
1153 /* Actually push the submodules */
1154 for (i = 0; i < needs_pushing.nr; i++) {
1155 const char *path = needs_pushing.items[i].string;
1156 fprintf(stderr, _("Pushing submodule '%s'\n"), path);
1157 if (!push_submodule(path, remote, rs,
1158 push_options, dry_run)) {
1159 fprintf(stderr, _("Unable to push submodule '%s'\n"), path);
1164 string_list_clear(&needs_pushing, 0);
1169 static int append_oid_to_array(const char *ref, const struct object_id *oid,
1170 int flags, void *data)
1172 struct oid_array *array = data;
1173 oid_array_append(array, oid);
1177 void check_for_new_submodule_commits(struct object_id *oid)
1179 if (!initialized_fetch_ref_tips) {
1180 for_each_ref(append_oid_to_array, &ref_tips_before_fetch);
1181 initialized_fetch_ref_tips = 1;
1184 oid_array_append(&ref_tips_after_fetch, oid);
1187 static void calculate_changed_submodule_paths(struct repository *r,
1188 struct string_list *changed_submodule_names)
1190 struct strvec argv = STRVEC_INIT;
1191 struct string_list_item *name;
1193 /* No need to check if there are no submodules configured */
1194 if (!submodule_from_path(r, NULL, NULL))
1197 strvec_push(&argv, "--"); /* argv[0] program name */
1198 oid_array_for_each_unique(&ref_tips_after_fetch,
1199 append_oid_to_argv, &argv);
1200 strvec_push(&argv, "--not");
1201 oid_array_for_each_unique(&ref_tips_before_fetch,
1202 append_oid_to_argv, &argv);
1205 * Collect all submodules (whether checked out or not) for which new
1206 * commits have been recorded upstream in "changed_submodule_names".
1208 collect_changed_submodules(r, changed_submodule_names, &argv);
1210 for_each_string_list_item(name, changed_submodule_names) {
1211 struct oid_array *commits = name->util;
1212 const struct submodule *submodule;
1213 const char *path = NULL;
1215 submodule = submodule_from_name(r, null_oid(), name->string);
1217 path = submodule->path;
1219 path = default_name_or_path(name->string);
1224 if (submodule_has_commits(r, path, commits)) {
1225 oid_array_clear(commits);
1226 *name->string = '\0';
1230 string_list_remove_empty_items(changed_submodule_names, 1);
1232 strvec_clear(&argv);
1233 oid_array_clear(&ref_tips_before_fetch);
1234 oid_array_clear(&ref_tips_after_fetch);
1235 initialized_fetch_ref_tips = 0;
1238 int submodule_touches_in_range(struct repository *r,
1239 struct object_id *excl_oid,
1240 struct object_id *incl_oid)
1242 struct string_list subs = STRING_LIST_INIT_DUP;
1243 struct strvec args = STRVEC_INIT;
1246 /* No need to check if there are no submodules configured */
1247 if (!submodule_from_path(r, NULL, NULL))
1250 strvec_push(&args, "--"); /* args[0] program name */
1251 strvec_push(&args, oid_to_hex(incl_oid));
1252 if (!is_null_oid(excl_oid)) {
1253 strvec_push(&args, "--not");
1254 strvec_push(&args, oid_to_hex(excl_oid));
1257 collect_changed_submodules(r, &subs, &args);
1260 strvec_clear(&args);
1262 free_submodules_oids(&subs);
1266 struct submodule_parallel_fetch {
1269 struct repository *r;
1271 int command_line_option;
1276 struct string_list changed_submodule_names;
1278 /* Pending fetches by OIDs */
1279 struct fetch_task **oid_fetch_tasks;
1280 int oid_fetch_tasks_nr, oid_fetch_tasks_alloc;
1282 struct strbuf submodules_with_errors;
1284 #define SPF_INIT {0, STRVEC_INIT, NULL, NULL, 0, 0, 0, 0, \
1285 STRING_LIST_INIT_DUP, \
1286 NULL, 0, 0, STRBUF_INIT}
1288 static int get_fetch_recurse_config(const struct submodule *submodule,
1289 struct submodule_parallel_fetch *spf)
1291 if (spf->command_line_option != RECURSE_SUBMODULES_DEFAULT)
1292 return spf->command_line_option;
1298 int fetch_recurse = submodule->fetch_recurse;
1299 key = xstrfmt("submodule.%s.fetchRecurseSubmodules", submodule->name);
1300 if (!repo_config_get_string_tmp(spf->r, key, &value)) {
1301 fetch_recurse = parse_fetch_recurse_submodules_arg(key, value);
1305 if (fetch_recurse != RECURSE_SUBMODULES_NONE)
1306 /* local config overrules everything except commandline */
1307 return fetch_recurse;
1310 return spf->default_option;
1314 * Fetch in progress (if callback data) or
1315 * pending (if in oid_fetch_tasks in struct submodule_parallel_fetch)
1318 struct repository *repo;
1319 const struct submodule *sub;
1320 unsigned free_sub : 1; /* Do we need to free the submodule? */
1322 struct oid_array *commits; /* Ensure these commits are fetched */
1326 * When a submodule is not defined in .gitmodules, we cannot access it
1327 * via the regular submodule-config. Create a fake submodule, which we can
1330 static const struct submodule *get_non_gitmodules_submodule(const char *path)
1332 struct submodule *ret = NULL;
1333 const char *name = default_name_or_path(path);
1338 ret = xmalloc(sizeof(*ret));
1339 memset(ret, 0, sizeof(*ret));
1343 return (const struct submodule *) ret;
1346 static struct fetch_task *fetch_task_create(struct repository *r,
1349 struct fetch_task *task = xmalloc(sizeof(*task));
1350 memset(task, 0, sizeof(*task));
1352 task->sub = submodule_from_path(r, null_oid(), path);
1355 * No entry in .gitmodules? Technically not a submodule,
1356 * but historically we supported repositories that happen to be
1357 * in-place where a gitlink is. Keep supporting them.
1359 task->sub = get_non_gitmodules_submodule(path);
1371 static void fetch_task_release(struct fetch_task *p)
1374 free((void*)p->sub);
1379 repo_clear(p->repo);
1380 FREE_AND_NULL(p->repo);
1383 static struct repository *get_submodule_repo_for(struct repository *r,
1384 const struct submodule *sub)
1386 struct repository *ret = xmalloc(sizeof(*ret));
1388 if (repo_submodule_init(ret, r, sub)) {
1390 * No entry in .gitmodules? Technically not a submodule,
1391 * but historically we supported repositories that happen to be
1392 * in-place where a gitlink is. Keep supporting them.
1394 struct strbuf gitdir = STRBUF_INIT;
1395 strbuf_repo_worktree_path(&gitdir, r, "%s/.git", sub->path);
1396 if (repo_init(ret, gitdir.buf, NULL)) {
1397 strbuf_release(&gitdir);
1401 strbuf_release(&gitdir);
1407 static int get_next_submodule(struct child_process *cp,
1408 struct strbuf *err, void *data, void **task_cb)
1410 struct submodule_parallel_fetch *spf = data;
1412 for (; spf->count < spf->r->index->cache_nr; spf->count++) {
1413 const struct cache_entry *ce = spf->r->index->cache[spf->count];
1414 const char *default_argv;
1415 struct fetch_task *task;
1417 if (!S_ISGITLINK(ce->ce_mode))
1420 task = fetch_task_create(spf->r, ce->name);
1424 switch (get_fetch_recurse_config(task->sub, spf))
1427 case RECURSE_SUBMODULES_DEFAULT:
1428 case RECURSE_SUBMODULES_ON_DEMAND:
1430 !string_list_lookup(
1431 &spf->changed_submodule_names,
1434 default_argv = "on-demand";
1436 case RECURSE_SUBMODULES_ON:
1437 default_argv = "yes";
1439 case RECURSE_SUBMODULES_OFF:
1443 task->repo = get_submodule_repo_for(spf->r, task->sub);
1445 struct strbuf submodule_prefix = STRBUF_INIT;
1446 child_process_init(cp);
1447 cp->dir = task->repo->gitdir;
1448 prepare_submodule_repo_env_in_gitdir(&cp->env_array);
1451 strbuf_addf(err, _("Fetching submodule %s%s\n"),
1452 spf->prefix, ce->name);
1453 strvec_init(&cp->args);
1454 strvec_pushv(&cp->args, spf->args.v);
1455 strvec_push(&cp->args, default_argv);
1456 strvec_push(&cp->args, "--submodule-prefix");
1458 strbuf_addf(&submodule_prefix, "%s%s/",
1461 strvec_push(&cp->args, submodule_prefix.buf);
1466 strbuf_release(&submodule_prefix);
1469 struct strbuf empty_submodule_path = STRBUF_INIT;
1471 fetch_task_release(task);
1475 * An empty directory is normal,
1476 * the submodule is not initialized
1478 strbuf_addf(&empty_submodule_path, "%s/%s/",
1481 if (S_ISGITLINK(ce->ce_mode) &&
1482 !is_empty_dir(empty_submodule_path.buf)) {
1485 _("Could not access submodule '%s'\n"),
1488 strbuf_release(&empty_submodule_path);
1492 if (spf->oid_fetch_tasks_nr) {
1493 struct fetch_task *task =
1494 spf->oid_fetch_tasks[spf->oid_fetch_tasks_nr - 1];
1495 struct strbuf submodule_prefix = STRBUF_INIT;
1496 spf->oid_fetch_tasks_nr--;
1498 strbuf_addf(&submodule_prefix, "%s%s/",
1499 spf->prefix, task->sub->path);
1501 child_process_init(cp);
1502 prepare_submodule_repo_env_in_gitdir(&cp->env_array);
1504 cp->dir = task->repo->gitdir;
1506 strvec_init(&cp->args);
1507 strvec_pushv(&cp->args, spf->args.v);
1508 strvec_push(&cp->args, "on-demand");
1509 strvec_push(&cp->args, "--submodule-prefix");
1510 strvec_push(&cp->args, submodule_prefix.buf);
1512 /* NEEDSWORK: have get_default_remote from submodule--helper */
1513 strvec_push(&cp->args, "origin");
1514 oid_array_for_each_unique(task->commits,
1515 append_oid_to_argv, &cp->args);
1518 strbuf_release(&submodule_prefix);
1525 static int fetch_start_failure(struct strbuf *err,
1526 void *cb, void *task_cb)
1528 struct submodule_parallel_fetch *spf = cb;
1529 struct fetch_task *task = task_cb;
1533 fetch_task_release(task);
1537 static int commit_missing_in_sub(const struct object_id *oid, void *data)
1539 struct repository *subrepo = data;
1541 enum object_type type = oid_object_info(subrepo, oid, NULL);
1543 return type != OBJ_COMMIT;
1546 static int fetch_finish(int retvalue, struct strbuf *err,
1547 void *cb, void *task_cb)
1549 struct submodule_parallel_fetch *spf = cb;
1550 struct fetch_task *task = task_cb;
1552 struct string_list_item *it;
1553 struct oid_array *commits;
1555 if (!task || !task->sub)
1556 BUG("callback cookie bogus");
1560 * NEEDSWORK: This indicates that the overall fetch
1561 * failed, even though there may be a subsequent fetch
1562 * by commit hash that might work. It may be a good
1563 * idea to not indicate failure in this case, and only
1564 * indicate failure if the subsequent fetch fails.
1568 strbuf_addf(&spf->submodules_with_errors, "\t%s\n",
1572 /* Is this the second time we process this submodule? */
1576 it = string_list_lookup(&spf->changed_submodule_names, task->sub->name);
1578 /* Could be an unchanged submodule, not contained in the list */
1582 oid_array_filter(commits,
1583 commit_missing_in_sub,
1586 /* Are there commits we want, but do not exist? */
1588 task->commits = commits;
1589 ALLOC_GROW(spf->oid_fetch_tasks,
1590 spf->oid_fetch_tasks_nr + 1,
1591 spf->oid_fetch_tasks_alloc);
1592 spf->oid_fetch_tasks[spf->oid_fetch_tasks_nr] = task;
1593 spf->oid_fetch_tasks_nr++;
1598 fetch_task_release(task);
1603 int fetch_populated_submodules(struct repository *r,
1604 const struct strvec *options,
1605 const char *prefix, int command_line_option,
1607 int quiet, int max_parallel_jobs)
1610 struct submodule_parallel_fetch spf = SPF_INIT;
1613 spf.command_line_option = command_line_option;
1614 spf.default_option = default_option;
1616 spf.prefix = prefix;
1621 if (repo_read_index(r) < 0)
1622 die(_("index file corrupt"));
1624 strvec_push(&spf.args, "fetch");
1625 for (i = 0; i < options->nr; i++)
1626 strvec_push(&spf.args, options->v[i]);
1627 strvec_push(&spf.args, "--recurse-submodules-default");
1628 /* default value, "--submodule-prefix" and its value are added later */
1630 calculate_changed_submodule_paths(r, &spf.changed_submodule_names);
1631 string_list_sort(&spf.changed_submodule_names);
1632 run_processes_parallel_tr2(max_parallel_jobs,
1634 fetch_start_failure,
1638 "submodule", "parallel/fetch");
1640 if (spf.submodules_with_errors.len > 0)
1641 fprintf(stderr, _("Errors during submodule fetch:\n%s"),
1642 spf.submodules_with_errors.buf);
1645 strvec_clear(&spf.args);
1647 free_submodules_oids(&spf.changed_submodule_names);
1651 unsigned is_submodule_modified(const char *path, int ignore_untracked)
1653 struct child_process cp = CHILD_PROCESS_INIT;
1654 struct strbuf buf = STRBUF_INIT;
1656 unsigned dirty_submodule = 0;
1657 const char *git_dir;
1658 int ignore_cp_exit_code = 0;
1660 strbuf_addf(&buf, "%s/.git", path);
1661 git_dir = read_gitfile(buf.buf);
1664 if (!is_git_directory(git_dir)) {
1665 if (is_directory(git_dir))
1666 die(_("'%s' not recognized as a git repository"), git_dir);
1667 strbuf_release(&buf);
1668 /* The submodule is not checked out, so it is not modified */
1673 strvec_pushl(&cp.args, "status", "--porcelain=2", NULL);
1674 if (ignore_untracked)
1675 strvec_push(&cp.args, "-uno");
1677 prepare_submodule_repo_env(&cp.env_array);
1682 if (start_command(&cp))
1683 die(_("Could not run 'git status --porcelain=2' in submodule %s"), path);
1685 fp = xfdopen(cp.out, "r");
1686 while (strbuf_getwholeline(&buf, fp, '\n') != EOF) {
1687 /* regular untracked files */
1688 if (buf.buf[0] == '?')
1689 dirty_submodule |= DIRTY_SUBMODULE_UNTRACKED;
1691 if (buf.buf[0] == 'u' ||
1692 buf.buf[0] == '1' ||
1693 buf.buf[0] == '2') {
1694 /* T = line type, XY = status, SSSS = submodule state */
1695 if (buf.len < strlen("T XY SSSS"))
1696 BUG("invalid status --porcelain=2 line %s",
1699 if (buf.buf[5] == 'S' && buf.buf[8] == 'U')
1700 /* nested untracked file */
1701 dirty_submodule |= DIRTY_SUBMODULE_UNTRACKED;
1703 if (buf.buf[0] == 'u' ||
1704 buf.buf[0] == '2' ||
1705 memcmp(buf.buf + 5, "S..U", 4))
1707 dirty_submodule |= DIRTY_SUBMODULE_MODIFIED;
1710 if ((dirty_submodule & DIRTY_SUBMODULE_MODIFIED) &&
1711 ((dirty_submodule & DIRTY_SUBMODULE_UNTRACKED) ||
1712 ignore_untracked)) {
1714 * We're not interested in any further information from
1715 * the child any more, neither output nor its exit code.
1717 ignore_cp_exit_code = 1;
1723 if (finish_command(&cp) && !ignore_cp_exit_code)
1724 die(_("'git status --porcelain=2' failed in submodule %s"), path);
1726 strbuf_release(&buf);
1727 return dirty_submodule;
1730 int submodule_uses_gitfile(const char *path)
1732 struct child_process cp = CHILD_PROCESS_INIT;
1733 struct strbuf buf = STRBUF_INIT;
1734 const char *git_dir;
1736 strbuf_addf(&buf, "%s/.git", path);
1737 git_dir = read_gitfile(buf.buf);
1739 strbuf_release(&buf);
1742 strbuf_release(&buf);
1744 /* Now test that all nested submodules use a gitfile too */
1745 strvec_pushl(&cp.args,
1746 "submodule", "foreach", "--quiet", "--recursive",
1747 "test -f .git", NULL);
1749 prepare_submodule_repo_env(&cp.env_array);
1755 if (run_command(&cp))
1762 * Check if it is a bad idea to remove a submodule, i.e. if we'd lose data
1765 * Return 1 if we'd lose data, return 0 if the removal is fine,
1766 * and negative values for errors.
1768 int bad_to_remove_submodule(const char *path, unsigned flags)
1771 struct child_process cp = CHILD_PROCESS_INIT;
1772 struct strbuf buf = STRBUF_INIT;
1775 if (!file_exists(path) || is_empty_dir(path))
1778 if (!submodule_uses_gitfile(path))
1781 strvec_pushl(&cp.args, "status", "--porcelain",
1782 "--ignore-submodules=none", NULL);
1784 if (flags & SUBMODULE_REMOVAL_IGNORE_UNTRACKED)
1785 strvec_push(&cp.args, "-uno");
1787 strvec_push(&cp.args, "-uall");
1789 if (!(flags & SUBMODULE_REMOVAL_IGNORE_IGNORED_UNTRACKED))
1790 strvec_push(&cp.args, "--ignored");
1792 prepare_submodule_repo_env(&cp.env_array);
1797 if (start_command(&cp)) {
1798 if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR)
1799 die(_("could not start 'git status' in submodule '%s'"),
1805 len = strbuf_read(&buf, cp.out, 1024);
1810 if (finish_command(&cp)) {
1811 if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR)
1812 die(_("could not run 'git status' in submodule '%s'"),
1817 strbuf_release(&buf);
1821 void submodule_unset_core_worktree(const struct submodule *sub)
1823 char *config_path = xstrfmt("%s/modules/%s/config",
1824 get_git_dir(), sub->name);
1826 if (git_config_set_in_file_gently(config_path, "core.worktree", NULL))
1827 warning(_("Could not unset core.worktree setting in submodule '%s'"),
1833 static const char *get_super_prefix_or_empty(void)
1835 const char *s = get_super_prefix();
1841 static int submodule_has_dirty_index(const struct submodule *sub)
1843 struct child_process cp = CHILD_PROCESS_INIT;
1845 prepare_submodule_repo_env(&cp.env_array);
1848 strvec_pushl(&cp.args, "diff-index", "--quiet",
1849 "--cached", "HEAD", NULL);
1853 if (start_command(&cp))
1854 die(_("could not recurse into submodule '%s'"), sub->path);
1856 return finish_command(&cp);
1859 static void submodule_reset_index(const char *path)
1861 struct child_process cp = CHILD_PROCESS_INIT;
1862 prepare_submodule_repo_env(&cp.env_array);
1868 strvec_pushf(&cp.args, "--super-prefix=%s%s/",
1869 get_super_prefix_or_empty(), path);
1870 strvec_pushl(&cp.args, "read-tree", "-u", "--reset", NULL);
1872 strvec_push(&cp.args, empty_tree_oid_hex());
1874 if (run_command(&cp))
1875 die(_("could not reset submodule index"));
1879 * Moves a submodule at a given path from a given head to another new head.
1880 * For edge cases (a submodule coming into existence or removing a submodule)
1881 * pass NULL for old or new respectively.
1883 int submodule_move_head(const char *path,
1884 const char *old_head,
1885 const char *new_head,
1889 struct child_process cp = CHILD_PROCESS_INIT;
1890 const struct submodule *sub;
1891 int *error_code_ptr, error_code;
1893 if (!is_submodule_active(the_repository, path))
1896 if (flags & SUBMODULE_MOVE_HEAD_FORCE)
1898 * Pass non NULL pointer to is_submodule_populated_gently
1899 * to prevent die()-ing. We'll use connect_work_tree_and_git_dir
1900 * to fixup the submodule in the force case later.
1902 error_code_ptr = &error_code;
1904 error_code_ptr = NULL;
1906 if (old_head && !is_submodule_populated_gently(path, error_code_ptr))
1909 sub = submodule_from_path(the_repository, null_oid(), path);
1912 BUG("could not get submodule information for '%s'", path);
1914 if (old_head && !(flags & SUBMODULE_MOVE_HEAD_FORCE)) {
1915 /* Check if the submodule has a dirty index. */
1916 if (submodule_has_dirty_index(sub))
1917 return error(_("submodule '%s' has dirty index"), path);
1920 if (!(flags & SUBMODULE_MOVE_HEAD_DRY_RUN)) {
1922 if (!submodule_uses_gitfile(path))
1923 absorb_git_dir_into_superproject(path,
1924 ABSORB_GITDIR_RECURSE_SUBMODULES);
1926 char *gitdir = xstrfmt("%s/modules/%s",
1927 get_git_dir(), sub->name);
1928 connect_work_tree_and_git_dir(path, gitdir, 0);
1931 /* make sure the index is clean as well */
1932 submodule_reset_index(path);
1935 if (old_head && (flags & SUBMODULE_MOVE_HEAD_FORCE)) {
1936 char *gitdir = xstrfmt("%s/modules/%s",
1937 get_git_dir(), sub->name);
1938 connect_work_tree_and_git_dir(path, gitdir, 1);
1943 prepare_submodule_repo_env(&cp.env_array);
1949 strvec_pushf(&cp.args, "--super-prefix=%s%s/",
1950 get_super_prefix_or_empty(), path);
1951 strvec_pushl(&cp.args, "read-tree", "--recurse-submodules", NULL);
1953 if (flags & SUBMODULE_MOVE_HEAD_DRY_RUN)
1954 strvec_push(&cp.args, "-n");
1956 strvec_push(&cp.args, "-u");
1958 if (flags & SUBMODULE_MOVE_HEAD_FORCE)
1959 strvec_push(&cp.args, "--reset");
1961 strvec_push(&cp.args, "-m");
1963 if (!(flags & SUBMODULE_MOVE_HEAD_FORCE))
1964 strvec_push(&cp.args, old_head ? old_head : empty_tree_oid_hex());
1966 strvec_push(&cp.args, new_head ? new_head : empty_tree_oid_hex());
1968 if (run_command(&cp)) {
1969 ret = error(_("Submodule '%s' could not be updated."), path);
1973 if (!(flags & SUBMODULE_MOVE_HEAD_DRY_RUN)) {
1975 child_process_init(&cp);
1976 /* also set the HEAD accordingly */
1981 prepare_submodule_repo_env(&cp.env_array);
1982 strvec_pushl(&cp.args, "update-ref", "HEAD",
1983 "--no-deref", new_head, NULL);
1985 if (run_command(&cp)) {
1990 struct strbuf sb = STRBUF_INIT;
1992 strbuf_addf(&sb, "%s/.git", path);
1993 unlink_or_warn(sb.buf);
1994 strbuf_release(&sb);
1996 if (is_empty_dir(path))
1997 rmdir_or_warn(path);
1999 submodule_unset_core_worktree(sub);
2006 int validate_submodule_git_dir(char *git_dir, const char *submodule_name)
2008 size_t len = strlen(git_dir), suffix_len = strlen(submodule_name);
2012 if (len <= suffix_len || (p = git_dir + len - suffix_len)[-1] != '/' ||
2013 strcmp(p, submodule_name))
2014 BUG("submodule name '%s' not a suffix of git dir '%s'",
2015 submodule_name, git_dir);
2018 * We prevent the contents of sibling submodules' git directories to
2021 * Example: having a submodule named `hippo` and another one named
2022 * `hippo/hooks` would result in the git directories
2023 * `.git/modules/hippo/` and `.git/modules/hippo/hooks/`, respectively,
2024 * but the latter directory is already designated to contain the hooks
2028 if (is_dir_sep(*p)) {
2032 if (is_git_directory(git_dir))
2037 return error(_("submodule git dir '%s' is "
2038 "inside git dir '%.*s'"),
2040 (int)(p - git_dir), git_dir);
2048 * Embeds a single submodules git directory into the superprojects git dir,
2051 static void relocate_single_git_dir_into_superproject(const char *path)
2053 char *old_git_dir = NULL, *real_old_git_dir = NULL, *real_new_git_dir = NULL;
2055 const struct submodule *sub;
2056 struct strbuf config_path = STRBUF_INIT, sb = STRBUF_INIT;
2058 if (submodule_uses_worktrees(path))
2059 die(_("relocate_gitdir for submodule '%s' with "
2060 "more than one worktree not supported"), path);
2062 old_git_dir = xstrfmt("%s/.git", path);
2063 if (read_gitfile(old_git_dir))
2064 /* If it is an actual gitfile, it doesn't need migration. */
2067 real_old_git_dir = real_pathdup(old_git_dir, 1);
2069 sub = submodule_from_path(the_repository, null_oid(), path);
2071 die(_("could not lookup name for submodule '%s'"), path);
2073 new_git_dir = git_pathdup("modules/%s", sub->name);
2074 if (validate_submodule_git_dir(new_git_dir, sub->name) < 0)
2075 die(_("refusing to move '%s' into an existing git dir"),
2077 if (safe_create_leading_directories_const(new_git_dir) < 0)
2078 die(_("could not create directory '%s'"), new_git_dir);
2079 real_new_git_dir = real_pathdup(new_git_dir, 1);
2082 fprintf(stderr, _("Migrating git directory of '%s%s' from\n'%s' to\n'%s'\n"),
2083 get_super_prefix_or_empty(), path,
2084 real_old_git_dir, real_new_git_dir);
2086 relocate_gitdir(path, real_old_git_dir, real_new_git_dir);
2088 /* cache pointer to superproject's gitdir */
2089 /* NEEDSWORK: this may differ if experimental.worktreeConfig is enabled */
2090 strbuf_addf(&config_path, "%s/config", real_new_git_dir);
2091 git_config_set_in_file(config_path.buf, "submodule.superprojectGitdir",
2092 relative_path(get_super_prefix_or_empty(),
2095 strbuf_release(&config_path);
2096 strbuf_release(&sb);
2098 free(real_old_git_dir);
2099 free(real_new_git_dir);
2103 * Migrate the git directory of the submodule given by path from
2104 * having its git directory within the working tree to the git dir nested
2105 * in its superprojects git dir under modules/.
2107 void absorb_git_dir_into_superproject(const char *path,
2111 const char *sub_git_dir;
2112 struct strbuf gitdir = STRBUF_INIT;
2113 strbuf_addf(&gitdir, "%s/.git", path);
2114 sub_git_dir = resolve_gitdir_gently(gitdir.buf, &err_code);
2116 /* Not populated? */
2118 const struct submodule *sub;
2120 if (err_code == READ_GITFILE_ERR_STAT_FAILED) {
2121 /* unpopulated as expected */
2122 strbuf_release(&gitdir);
2126 if (err_code != READ_GITFILE_ERR_NOT_A_REPO)
2127 /* We don't know what broke here. */
2128 read_gitfile_error_die(err_code, path, NULL);
2131 * Maybe populated, but no git directory was found?
2132 * This can happen if the superproject is a submodule
2133 * itself and was just absorbed. The absorption of the
2134 * superproject did not rewrite the git file links yet,
2137 sub = submodule_from_path(the_repository, null_oid(), path);
2139 die(_("could not lookup name for submodule '%s'"), path);
2140 connect_work_tree_and_git_dir(path,
2141 git_path("modules/%s", sub->name), 0);
2143 /* Is it already absorbed into the superprojects git dir? */
2144 char *real_sub_git_dir = real_pathdup(sub_git_dir, 1);
2145 char *real_common_git_dir = real_pathdup(get_git_common_dir(), 1);
2147 if (!starts_with(real_sub_git_dir, real_common_git_dir))
2148 relocate_single_git_dir_into_superproject(path);
2150 free(real_sub_git_dir);
2151 free(real_common_git_dir);
2153 strbuf_release(&gitdir);
2155 if (flags & ABSORB_GITDIR_RECURSE_SUBMODULES) {
2156 struct child_process cp = CHILD_PROCESS_INIT;
2157 struct strbuf sb = STRBUF_INIT;
2159 if (flags & ~ABSORB_GITDIR_RECURSE_SUBMODULES)
2160 BUG("we don't know how to pass the flags down?");
2162 strbuf_addstr(&sb, get_super_prefix_or_empty());
2163 strbuf_addstr(&sb, path);
2164 strbuf_addch(&sb, '/');
2169 strvec_pushl(&cp.args, "--super-prefix", sb.buf,
2170 "submodule--helper",
2171 "absorb-git-dirs", NULL);
2172 prepare_submodule_repo_env(&cp.env_array);
2173 if (run_command(&cp))
2174 die(_("could not recurse into submodule '%s'"), path);
2176 strbuf_release(&sb);
2180 int get_superproject_working_tree(struct strbuf *buf)
2182 struct child_process cp = CHILD_PROCESS_INIT;
2183 struct strbuf sb = STRBUF_INIT;
2184 struct strbuf one_up = STRBUF_INIT;
2185 const char *cwd = xgetcwd();
2187 const char *subpath;
2191 if (!is_inside_work_tree())
2194 * We might have a superproject, but it is harder
2199 if (!strbuf_realpath(&one_up, "../", 0))
2202 subpath = relative_path(cwd, one_up.buf, &sb);
2203 strbuf_release(&one_up);
2205 prepare_submodule_repo_env(&cp.env_array);
2206 strvec_pop(&cp.env_array);
2208 strvec_pushl(&cp.args, "--literal-pathspecs", "-C", "..",
2209 "ls-files", "-z", "--stage", "--full-name", "--",
2218 if (start_command(&cp))
2219 die(_("could not start ls-files in .."));
2221 len = strbuf_read(&sb, cp.out, PATH_MAX);
2224 if (starts_with(sb.buf, "160000")) {
2226 int cwd_len = strlen(cwd);
2227 char *super_sub, *super_wt;
2230 * There is a superproject having this repo as a submodule.
2231 * The format is <mode> SP <hash> SP <stage> TAB <full name> \0,
2232 * We're only interested in the name after the tab.
2234 super_sub = strchr(sb.buf, '\t') + 1;
2235 super_sub_len = strlen(super_sub);
2237 if (super_sub_len > cwd_len ||
2238 strcmp(&cwd[cwd_len - super_sub_len], super_sub))
2239 BUG("returned path string doesn't match cwd?");
2241 super_wt = xstrdup(cwd);
2242 super_wt[cwd_len - super_sub_len] = '\0';
2244 strbuf_realpath(buf, super_wt, 1);
2248 strbuf_release(&sb);
2250 code = finish_command(&cp);
2253 /* '../' is not a git repository */
2255 if (code == 0 && len == 0)
2256 /* There is an unrelated git repository at '../' */
2259 die(_("ls-tree returned unexpected return code %d"), code);
2265 * Put the gitdir for a submodule (given relative to the main
2266 * repository worktree) into `buf`, or return -1 on error.
2268 int submodule_to_gitdir(struct strbuf *buf, const char *submodule)
2270 const struct submodule *sub;
2271 const char *git_dir;
2275 strbuf_addstr(buf, submodule);
2276 strbuf_complete(buf, '/');
2277 strbuf_addstr(buf, ".git");
2279 git_dir = read_gitfile(buf->buf);
2282 strbuf_addstr(buf, git_dir);
2284 if (!is_git_directory(buf->buf)) {
2285 sub = submodule_from_path(the_repository, null_oid(),
2292 strbuf_git_path(buf, "%s/%s", "modules", sub->name);