1 #define USE_THE_REPOSITORY_VARIABLE
3 #include "git-compat-util.h"
5 #include "repository.h"
7 #include "submodule-config.h"
12 #include "environment.h"
16 #include "run-command.h"
19 #include "string-list.h"
20 #include "oid-array.h"
22 #include "thread-utils.h"
26 #include "parse-options.h"
27 #include "object-file.h"
28 #include "object-name.h"
29 #include "object-store-ll.h"
30 #include "commit-reach.h"
31 #include "read-cache-ll.h"
35 static int config_update_recurse_submodules
= RECURSE_SUBMODULES_OFF
;
36 static int initialized_fetch_ref_tips
;
37 static struct oid_array ref_tips_before_fetch
;
38 static struct oid_array ref_tips_after_fetch
;
41 * Check if the .gitmodules file is unmerged. Parsing of the .gitmodules file
42 * will be disabled because we can't guess what might be configured in
43 * .gitmodules unless the user resolves the conflict.
45 int is_gitmodules_unmerged(struct index_state
*istate
)
47 int pos
= index_name_pos(istate
, GITMODULES_FILE
, strlen(GITMODULES_FILE
));
48 if (pos
< 0) { /* .gitmodules not found or isn't merged */
50 if (istate
->cache_nr
> pos
) { /* there is a .gitmodules */
51 const struct cache_entry
*ce
= istate
->cache
[pos
];
52 if (ce_namelen(ce
) == strlen(GITMODULES_FILE
) &&
53 !strcmp(ce
->name
, GITMODULES_FILE
))
62 * Check if the .gitmodules file is safe to write.
64 * Writing to the .gitmodules file requires that the file exists in the
65 * working tree or, if it doesn't, that a brand new .gitmodules file is going
66 * to be created (i.e. it's neither in the index nor in the current branch).
68 * It is not safe to write to .gitmodules if it's not in the working tree but
69 * it is in the index or in the current branch, because writing new values
70 * (and staging them) would blindly overwrite ALL the old content.
72 int is_writing_gitmodules_ok(void)
75 return file_exists(GITMODULES_FILE
) ||
76 (repo_get_oid(the_repository
, GITMODULES_INDEX
, &oid
) < 0 && repo_get_oid(the_repository
, GITMODULES_HEAD
, &oid
) < 0);
80 * Check if the .gitmodules file has unstaged modifications. This must be
81 * checked before allowing modifications to the .gitmodules file with the
82 * intention to stage them later, because when continuing we would stage the
83 * modifications the user didn't stage herself too. That might change in a
84 * future version when we learn to stage the changes we do ourselves without
85 * staging any previous modifications.
87 int is_staging_gitmodules_ok(struct index_state
*istate
)
89 int pos
= index_name_pos(istate
, GITMODULES_FILE
, strlen(GITMODULES_FILE
));
91 if ((pos
>= 0) && (pos
< istate
->cache_nr
)) {
93 if (lstat(GITMODULES_FILE
, &st
) == 0 &&
94 ie_modified(istate
, istate
->cache
[pos
], &st
, 0) & DATA_CHANGED
)
101 static int for_each_remote_ref_submodule(const char *submodule
,
102 each_ref_fn fn
, void *cb_data
)
104 return refs_for_each_remote_ref(repo_get_submodule_ref_store(the_repository
,
110 * Try to update the "path" entry in the "submodule.<name>" section of the
111 * .gitmodules file. Return 0 only if a .gitmodules file was found, a section
112 * with the correct path=<oldpath> setting was found and we could update it.
114 int update_path_in_gitmodules(const char *oldpath
, const char *newpath
)
116 struct strbuf entry
= STRBUF_INIT
;
117 const struct submodule
*submodule
;
120 if (!file_exists(GITMODULES_FILE
)) /* Do nothing without .gitmodules */
123 if (is_gitmodules_unmerged(the_repository
->index
))
124 die(_("Cannot change unmerged .gitmodules, resolve merge conflicts first"));
126 submodule
= submodule_from_path(the_repository
, null_oid(), oldpath
);
127 if (!submodule
|| !submodule
->name
) {
128 warning(_("Could not find section in .gitmodules where path=%s"), oldpath
);
131 strbuf_addstr(&entry
, "submodule.");
132 strbuf_addstr(&entry
, submodule
->name
);
133 strbuf_addstr(&entry
, ".path");
134 ret
= config_set_in_gitmodules_file_gently(entry
.buf
, newpath
);
135 strbuf_release(&entry
);
140 * Try to remove the "submodule.<name>" section from .gitmodules where the given
141 * path is configured. Return 0 only if a .gitmodules file was found, a section
142 * with the correct path=<path> setting was found and we could remove it.
144 int remove_path_from_gitmodules(const char *path
)
146 struct strbuf sect
= STRBUF_INIT
;
147 const struct submodule
*submodule
;
149 if (!file_exists(GITMODULES_FILE
)) /* Do nothing without .gitmodules */
152 if (is_gitmodules_unmerged(the_repository
->index
))
153 die(_("Cannot change unmerged .gitmodules, resolve merge conflicts first"));
155 submodule
= submodule_from_path(the_repository
, null_oid(), path
);
156 if (!submodule
|| !submodule
->name
) {
157 warning(_("Could not find section in .gitmodules where path=%s"), path
);
160 strbuf_addstr(§
, "submodule.");
161 strbuf_addstr(§
, submodule
->name
);
162 if (git_config_rename_section_in_file(GITMODULES_FILE
, sect
.buf
, NULL
) < 0) {
163 /* Maybe the user already did that, don't error out here */
164 warning(_("Could not remove .gitmodules entry for %s"), path
);
165 strbuf_release(§
);
168 strbuf_release(§
);
172 void stage_updated_gitmodules(struct index_state
*istate
)
174 if (add_file_to_index(istate
, GITMODULES_FILE
, 0))
175 die(_("staging updated .gitmodules failed"));
178 static struct string_list added_submodule_odb_paths
= STRING_LIST_INIT_NODUP
;
180 void add_submodule_odb_by_path(const char *path
)
182 string_list_insert(&added_submodule_odb_paths
, xstrdup(path
));
185 int register_all_submodule_odb_as_alternates(void)
188 int ret
= added_submodule_odb_paths
.nr
;
190 for (i
= 0; i
< added_submodule_odb_paths
.nr
; i
++)
191 add_to_alternates_memory(added_submodule_odb_paths
.items
[i
].string
);
193 string_list_clear(&added_submodule_odb_paths
, 0);
194 trace2_data_intmax("submodule", the_repository
,
195 "register_all_submodule_odb_as_alternates/registered", ret
);
196 if (git_env_bool("GIT_TEST_FATAL_REGISTER_SUBMODULE_ODB", 0))
197 BUG("register_all_submodule_odb_as_alternates() called");
202 void set_diffopt_flags_from_submodule_config(struct diff_options
*diffopt
,
205 const struct submodule
*submodule
= submodule_from_path(the_repository
,
212 key
= xstrfmt("submodule.%s.ignore", submodule
->name
);
213 if (repo_config_get_string_tmp(the_repository
, key
, &ignore
))
214 ignore
= submodule
->ignore
;
218 handle_ignore_submodules_arg(diffopt
, ignore
);
219 else if (is_gitmodules_unmerged(the_repository
->index
))
220 diffopt
->flags
.ignore_submodules
= 1;
224 /* Cheap function that only determines if we're interested in submodules at all */
225 int git_default_submodule_config(const char *var
, const char *value
,
228 if (!strcmp(var
, "submodule.recurse")) {
229 int v
= git_config_bool(var
, value
) ?
230 RECURSE_SUBMODULES_ON
: RECURSE_SUBMODULES_OFF
;
231 config_update_recurse_submodules
= v
;
236 int option_parse_recurse_submodules_worktree_updater(const struct option
*opt
,
237 const char *arg
, int unset
)
240 config_update_recurse_submodules
= RECURSE_SUBMODULES_OFF
;
244 config_update_recurse_submodules
=
245 parse_update_recurse_submodules_arg(opt
->long_name
,
248 config_update_recurse_submodules
= RECURSE_SUBMODULES_ON
;
254 * Determine if a submodule has been initialized at a given 'path'
257 * NEEDSWORK: Emit a warning if submodule.active exists, but is valueless,
258 * ie, the config looks like: "[submodule] active\n".
259 * Since that is an invalid pathspec, we should inform the user.
261 int is_tree_submodule_active(struct repository
*repo
,
262 const struct object_id
*treeish_name
,
268 const struct string_list
*sl
;
269 const struct submodule
*module
;
271 module
= submodule_from_path(repo
, treeish_name
, path
);
273 /* early return if there isn't a path->module mapping */
277 /* submodule.<name>.active is set */
278 key
= xstrfmt("submodule.%s.active", module
->name
);
279 if (!repo_config_get_bool(repo
, key
, &ret
)) {
285 /* submodule.active is set */
286 if (!repo_config_get_string_multi(repo
, "submodule.active", &sl
)) {
288 struct strvec args
= STRVEC_INIT
;
289 const struct string_list_item
*item
;
291 for_each_string_list_item(item
, sl
) {
292 strvec_push(&args
, item
->string
);
295 parse_pathspec(&ps
, 0, 0, NULL
, args
.v
);
296 ret
= match_pathspec(repo
->index
, &ps
, path
, strlen(path
), 0, NULL
, 1);
303 /* fallback to checking if the URL is set */
304 key
= xstrfmt("submodule.%s.url", module
->name
);
305 ret
= !repo_config_get_string(repo
, key
, &value
);
312 int is_submodule_active(struct repository
*repo
, const char *path
)
314 return is_tree_submodule_active(repo
, null_oid(), path
);
317 int is_submodule_populated_gently(const char *path
, int *return_error_code
)
320 char *gitdir
= xstrfmt("%s/.git", path
);
322 if (resolve_gitdir_gently(gitdir
, return_error_code
))
330 * Dies if the provided 'prefix' corresponds to an unpopulated submodule
332 void die_in_unpopulated_submodule(struct index_state
*istate
,
340 prefixlen
= strlen(prefix
);
342 for (i
= 0; i
< istate
->cache_nr
; i
++) {
343 struct cache_entry
*ce
= istate
->cache
[i
];
344 int ce_len
= ce_namelen(ce
);
346 if (!S_ISGITLINK(ce
->ce_mode
))
348 if (prefixlen
<= ce_len
)
350 if (strncmp(ce
->name
, prefix
, ce_len
))
352 if (prefix
[ce_len
] != '/')
355 die(_("in unpopulated submodule '%s'"), ce
->name
);
360 * Dies if any paths in the provided pathspec descends into a submodule
362 void die_path_inside_submodule(struct index_state
*istate
,
363 const struct pathspec
*ps
)
367 for (i
= 0; i
< istate
->cache_nr
; i
++) {
368 struct cache_entry
*ce
= istate
->cache
[i
];
369 int ce_len
= ce_namelen(ce
);
371 if (!S_ISGITLINK(ce
->ce_mode
))
374 for (j
= 0; j
< ps
->nr
; j
++) {
375 const struct pathspec_item
*item
= &ps
->items
[j
];
377 if (item
->len
<= ce_len
)
379 if (item
->match
[ce_len
] != '/')
381 if (strncmp(ce
->name
, item
->match
, ce_len
))
383 if (item
->len
== ce_len
+ 1)
386 die(_("Pathspec '%s' is in submodule '%.*s'"),
387 item
->original
, ce_len
, ce
->name
);
392 enum submodule_update_type
parse_submodule_update_type(const char *value
)
394 if (!strcmp(value
, "none"))
395 return SM_UPDATE_NONE
;
396 else if (!strcmp(value
, "checkout"))
397 return SM_UPDATE_CHECKOUT
;
398 else if (!strcmp(value
, "rebase"))
399 return SM_UPDATE_REBASE
;
400 else if (!strcmp(value
, "merge"))
401 return SM_UPDATE_MERGE
;
402 else if (*value
== '!')
403 return SM_UPDATE_COMMAND
;
405 return SM_UPDATE_UNSPECIFIED
;
408 int parse_submodule_update_strategy(const char *value
,
409 struct submodule_update_strategy
*dst
)
411 enum submodule_update_type type
;
413 free((void*)dst
->command
);
416 type
= parse_submodule_update_type(value
);
417 if (type
== SM_UPDATE_UNSPECIFIED
)
421 if (type
== SM_UPDATE_COMMAND
)
422 dst
->command
= xstrdup(value
+ 1);
427 const char *submodule_update_type_to_string(enum submodule_update_type type
)
430 case SM_UPDATE_CHECKOUT
:
432 case SM_UPDATE_MERGE
:
434 case SM_UPDATE_REBASE
:
438 case SM_UPDATE_UNSPECIFIED
:
439 case SM_UPDATE_COMMAND
:
440 BUG("init_submodule() should handle type %d", type
);
442 BUG("unexpected update strategy type: %d", type
);
446 void handle_ignore_submodules_arg(struct diff_options
*diffopt
,
449 diffopt
->flags
.ignore_submodule_set
= 1;
450 diffopt
->flags
.ignore_submodules
= 0;
451 diffopt
->flags
.ignore_untracked_in_submodules
= 0;
452 diffopt
->flags
.ignore_dirty_submodules
= 0;
454 if (!strcmp(arg
, "all"))
455 diffopt
->flags
.ignore_submodules
= 1;
456 else if (!strcmp(arg
, "untracked"))
457 diffopt
->flags
.ignore_untracked_in_submodules
= 1;
458 else if (!strcmp(arg
, "dirty"))
459 diffopt
->flags
.ignore_dirty_submodules
= 1;
460 else if (strcmp(arg
, "none"))
461 die(_("bad --ignore-submodules argument: %s"), arg
);
463 * Please update _git_status() in git-completion.bash when you
468 static int prepare_submodule_diff_summary(struct repository
*r
, struct rev_info
*rev
,
470 struct commit
*left
, struct commit
*right
,
471 struct commit_list
*merge_bases
)
473 struct commit_list
*list
;
475 repo_init_revisions(r
, rev
, NULL
);
476 setup_revisions(0, NULL
, rev
, NULL
);
478 rev
->first_parent_only
= 1;
479 left
->object
.flags
|= SYMMETRIC_LEFT
;
480 add_pending_object(rev
, &left
->object
, path
);
481 add_pending_object(rev
, &right
->object
, path
);
482 for (list
= merge_bases
; list
; list
= list
->next
) {
483 list
->item
->object
.flags
|= UNINTERESTING
;
484 add_pending_object(rev
, &list
->item
->object
,
485 oid_to_hex(&list
->item
->object
.oid
));
487 return prepare_revision_walk(rev
);
490 static void print_submodule_diff_summary(struct repository
*r
, struct rev_info
*rev
, struct diff_options
*o
)
492 static const char format
[] = " %m %s";
493 struct strbuf sb
= STRBUF_INIT
;
494 struct commit
*commit
;
496 while ((commit
= get_revision(rev
))) {
497 struct pretty_print_context ctx
= {0};
498 ctx
.date_mode
= rev
->date_mode
;
499 ctx
.output_encoding
= get_log_output_encoding();
500 strbuf_setlen(&sb
, 0);
501 repo_format_commit_message(r
, commit
, format
, &sb
,
503 strbuf_addch(&sb
, '\n');
504 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
505 diff_emit_submodule_del(o
, sb
.buf
);
507 diff_emit_submodule_add(o
, sb
.buf
);
512 void prepare_submodule_repo_env(struct strvec
*out
)
514 prepare_other_repo_env(out
, DEFAULT_GIT_DIR_ENVIRONMENT
);
517 static void prepare_submodule_repo_env_in_gitdir(struct strvec
*out
)
519 prepare_other_repo_env(out
, ".");
523 * Initialize a repository struct for a submodule based on the provided 'path'.
525 * Returns the repository struct on success,
526 * NULL when the submodule is not present.
528 static struct repository
*open_submodule(const char *path
)
530 struct strbuf sb
= STRBUF_INIT
;
531 struct repository
*out
= xmalloc(sizeof(*out
));
533 if (submodule_to_gitdir(&sb
, path
) || repo_init(out
, sb
.buf
, NULL
)) {
539 /* Mark it as a submodule */
540 out
->submodule_prefix
= xstrdup(path
);
547 * Helper function to display the submodule header line prior to the full
550 * If it can locate the submodule git directory it will create a repository
551 * handle for the submodule and lookup both the left and right commits and
552 * put them into the left and right pointers.
554 static void show_submodule_header(struct diff_options
*o
,
556 struct object_id
*one
, struct object_id
*two
,
557 unsigned dirty_submodule
,
558 struct repository
*sub
,
559 struct commit
**left
, struct commit
**right
,
560 struct commit_list
**merge_bases
)
562 const char *message
= NULL
;
563 struct strbuf sb
= STRBUF_INIT
;
564 int fast_forward
= 0, fast_backward
= 0;
566 if (dirty_submodule
& DIRTY_SUBMODULE_UNTRACKED
)
567 diff_emit_submodule_untracked(o
, path
);
569 if (dirty_submodule
& DIRTY_SUBMODULE_MODIFIED
)
570 diff_emit_submodule_modified(o
, path
);
572 if (is_null_oid(one
))
573 message
= "(new submodule)";
574 else if (is_null_oid(two
))
575 message
= "(submodule deleted)";
579 message
= "(commits not present)";
584 * Attempt to lookup the commit references, and determine if this is
585 * a fast forward or fast backwards update.
587 *left
= lookup_commit_reference(sub
, one
);
588 *right
= lookup_commit_reference(sub
, two
);
591 * Warn about missing commits in the submodule project, but only if
594 if ((!is_null_oid(one
) && !*left
) ||
595 (!is_null_oid(two
) && !*right
))
596 message
= "(commits not present)";
599 if (repo_get_merge_bases(sub
, *left
, *right
, merge_bases
) < 0) {
600 message
= "(corrupt repository)";
605 if ((*merge_bases
)->item
== *left
)
607 else if ((*merge_bases
)->item
== *right
)
611 if (oideq(one
, two
)) {
617 strbuf_addf(&sb
, "Submodule %s ", path
);
618 strbuf_add_unique_abbrev(&sb
, one
, DEFAULT_ABBREV
);
619 strbuf_addstr(&sb
, (fast_backward
|| fast_forward
) ? ".." : "...");
620 strbuf_add_unique_abbrev(&sb
, two
, DEFAULT_ABBREV
);
622 strbuf_addf(&sb
, " %s\n", message
);
624 strbuf_addf(&sb
, "%s:\n", fast_backward
? " (rewind)" : "");
625 diff_emit_submodule_header(o
, sb
.buf
);
630 void show_submodule_diff_summary(struct diff_options
*o
, const char *path
,
631 struct object_id
*one
, struct object_id
*two
,
632 unsigned dirty_submodule
)
634 struct rev_info rev
= REV_INFO_INIT
;
635 struct commit
*left
= NULL
, *right
= NULL
;
636 struct commit_list
*merge_bases
= NULL
;
637 struct repository
*sub
;
639 sub
= open_submodule(path
);
640 show_submodule_header(o
, path
, one
, two
, dirty_submodule
,
641 sub
, &left
, &right
, &merge_bases
);
644 * If we don't have both a left and a right pointer, there is no
645 * reason to try and display a summary. The header line should contain
646 * all the information the user needs.
648 if (!left
|| !right
|| !sub
)
651 /* Treat revision walker failure the same as missing commits */
652 if (prepare_submodule_diff_summary(sub
, &rev
, path
, left
, right
, merge_bases
)) {
653 diff_emit_submodule_error(o
, "(revision walker failed)\n");
657 print_submodule_diff_summary(sub
, &rev
, o
);
660 free_commit_list(merge_bases
);
661 release_revisions(&rev
);
662 clear_commit_marks(left
, ~0);
663 clear_commit_marks(right
, ~0);
670 void show_submodule_inline_diff(struct diff_options
*o
, const char *path
,
671 struct object_id
*one
, struct object_id
*two
,
672 unsigned dirty_submodule
)
674 const struct object_id
*old_oid
= the_hash_algo
->empty_tree
, *new_oid
= the_hash_algo
->empty_tree
;
675 struct commit
*left
= NULL
, *right
= NULL
;
676 struct commit_list
*merge_bases
= NULL
;
677 struct child_process cp
= CHILD_PROCESS_INIT
;
678 struct strbuf sb
= STRBUF_INIT
;
679 struct repository
*sub
;
681 sub
= open_submodule(path
);
682 show_submodule_header(o
, path
, one
, two
, dirty_submodule
,
683 sub
, &left
, &right
, &merge_bases
);
685 /* We need a valid left and right commit to display a difference */
686 if (!(left
|| is_null_oid(one
)) ||
687 !(right
|| is_null_oid(two
)))
700 /* TODO: other options may need to be passed here. */
701 strvec_pushl(&cp
.args
, "diff", "--submodule=diff", NULL
);
702 strvec_pushf(&cp
.args
, "--color=%s", want_color(o
->use_color
) ?
705 if (o
->flags
.reverse_diff
) {
706 strvec_pushf(&cp
.args
, "--src-prefix=%s%s/",
708 strvec_pushf(&cp
.args
, "--dst-prefix=%s%s/",
711 strvec_pushf(&cp
.args
, "--src-prefix=%s%s/",
713 strvec_pushf(&cp
.args
, "--dst-prefix=%s%s/",
716 strvec_push(&cp
.args
, oid_to_hex(old_oid
));
718 * If the submodule has modified content, we will diff against the
719 * work tree, under the assumption that the user has asked for the
720 * diff format and wishes to actually see all differences even if they
721 * haven't yet been committed to the submodule yet.
723 if (!(dirty_submodule
& DIRTY_SUBMODULE_MODIFIED
))
724 strvec_push(&cp
.args
, oid_to_hex(new_oid
));
726 prepare_submodule_repo_env(&cp
.env
);
728 if (!is_directory(path
)) {
729 /* fall back to absorbed git dir, if any */
732 cp
.dir
= sub
->gitdir
;
733 strvec_push(&cp
.env
, GIT_DIR_ENVIRONMENT
"=.");
734 strvec_push(&cp
.env
, GIT_WORK_TREE_ENVIRONMENT
"=.");
737 if (start_command(&cp
)) {
738 diff_emit_submodule_error(o
, "(diff failed)\n");
742 while (strbuf_getwholeline_fd(&sb
, cp
.out
, '\n') != EOF
)
743 diff_emit_submodule_pipethrough(o
, sb
.buf
, sb
.len
);
745 if (finish_command(&cp
))
746 diff_emit_submodule_error(o
, "(diff failed)\n");
750 free_commit_list(merge_bases
);
752 clear_commit_marks(left
, ~0);
754 clear_commit_marks(right
, ~0);
761 int should_update_submodules(void)
763 return config_update_recurse_submodules
== RECURSE_SUBMODULES_ON
;
766 const struct submodule
*submodule_from_ce(const struct cache_entry
*ce
)
768 if (!S_ISGITLINK(ce
->ce_mode
))
771 if (!should_update_submodules())
774 return submodule_from_path(the_repository
, null_oid(), ce
->name
);
778 struct collect_changed_submodules_cb_data
{
779 struct repository
*repo
;
780 struct string_list
*changed
;
781 const struct object_id
*commit_oid
;
785 * this would normally be two functions: default_name_from_path() and
786 * path_from_default_name(). Since the default name is the same as
787 * the submodule path we can get away with just one function which only
788 * checks whether there is a submodule in the working directory at that
791 static const char *default_name_or_path(const char *path_or_name
)
795 if (!is_submodule_populated_gently(path_or_name
, &error_code
))
802 * Holds relevant information for a changed submodule. Used as the .util
803 * member of the changed submodule name string_list_item.
805 * (super_oid, path) allows the submodule config to be read from _some_
806 * .gitmodules file. We store this information the first time we find a
807 * superproject commit that points to the submodule, but this is
808 * arbitrary - we can choose any (super_oid, path) that matches the
811 * NEEDSWORK: Storing an arbitrary commit is undesirable because we can't
812 * guarantee that we're reading the commit that the user would expect. A better
813 * scheme would be to just fetch a submodule by its name. This requires two
815 * - Create a function that behaves like repo_submodule_init(), but accepts a
816 * submodule name instead of treeish_name and path. This should be easy
817 * because repo_submodule_init() internally uses the submodule's name.
819 * - Replace most instances of 'struct submodule' (which is the .gitmodules
820 * config) with just the submodule name. This is OK because we expect
821 * submodule settings to be stored in .git/config (via "git submodule init"),
822 * not .gitmodules. This also lets us delete get_non_gitmodules_submodule(),
823 * which constructs a bogus 'struct submodule' for the sake of giving a
824 * placeholder name to a gitlink.
826 struct changed_submodule_data
{
828 * The first superproject commit in the rev walk that points to
831 const struct object_id
*super_oid
;
833 * Path to the submodule in the superproject commit referenced
837 /* The submodule commits that have changed in the rev walk. */
838 struct oid_array new_commits
;
841 static void changed_submodule_data_clear(struct changed_submodule_data
*cs_data
)
843 oid_array_clear(&cs_data
->new_commits
);
847 static void collect_changed_submodules_cb(struct diff_queue_struct
*q
,
848 struct diff_options
*options UNUSED
,
851 struct collect_changed_submodules_cb_data
*me
= data
;
852 struct string_list
*changed
= me
->changed
;
853 const struct object_id
*commit_oid
= me
->commit_oid
;
856 for (i
= 0; i
< q
->nr
; i
++) {
857 struct diff_filepair
*p
= q
->queue
[i
];
858 const struct submodule
*submodule
;
860 struct string_list_item
*item
;
861 struct changed_submodule_data
*cs_data
;
863 if (!S_ISGITLINK(p
->two
->mode
))
866 submodule
= submodule_from_path(me
->repo
,
867 commit_oid
, p
->two
->path
);
869 name
= submodule
->name
;
871 name
= default_name_or_path(p
->two
->path
);
872 /* make sure name does not collide with existing one */
874 submodule
= submodule_from_name(me
->repo
,
877 warning(_("Submodule in commit %s at path: "
878 "'%s' collides with a submodule named "
879 "the same. Skipping it."),
880 oid_to_hex(commit_oid
), p
->two
->path
);
888 item
= string_list_insert(changed
, name
);
890 cs_data
= item
->util
;
892 item
->util
= xcalloc(1, sizeof(struct changed_submodule_data
));
893 cs_data
= item
->util
;
894 cs_data
->super_oid
= commit_oid
;
895 cs_data
->path
= xstrdup(p
->two
->path
);
897 oid_array_append(&cs_data
->new_commits
, &p
->two
->oid
);
902 * Collect the paths of submodules in 'changed' which have changed based on
903 * the revisions as specified in 'argv'. Each entry in 'changed' will also
904 * have a corresponding 'struct oid_array' (in the 'util' field) which lists
905 * what the submodule pointers were updated to during the change.
907 static void collect_changed_submodules(struct repository
*r
,
908 struct string_list
*changed
,
912 const struct commit
*commit
;
914 struct setup_revision_opt s_r_opt
= {
915 .assume_dashdash
= 1,
918 save_warning
= warn_on_object_refname_ambiguity
;
919 warn_on_object_refname_ambiguity
= 0;
920 repo_init_revisions(r
, &rev
, NULL
);
921 setup_revisions(argv
->nr
, argv
->v
, &rev
, &s_r_opt
);
922 warn_on_object_refname_ambiguity
= save_warning
;
923 if (prepare_revision_walk(&rev
))
924 die(_("revision walk setup failed"));
926 while ((commit
= get_revision(&rev
))) {
927 struct rev_info diff_rev
;
928 struct collect_changed_submodules_cb_data data
;
930 data
.changed
= changed
;
931 data
.commit_oid
= &commit
->object
.oid
;
933 repo_init_revisions(r
, &diff_rev
, NULL
);
934 diff_rev
.diffopt
.output_format
|= DIFF_FORMAT_CALLBACK
;
935 diff_rev
.diffopt
.format_callback
= collect_changed_submodules_cb
;
936 diff_rev
.diffopt
.format_callback_data
= &data
;
937 diff_rev
.dense_combined_merges
= 1;
938 diff_tree_combined_merge(commit
, &diff_rev
);
939 release_revisions(&diff_rev
);
942 reset_revision_walk();
943 release_revisions(&rev
);
946 static void free_submodules_data(struct string_list
*submodules
)
948 struct string_list_item
*item
;
949 for_each_string_list_item(item
, submodules
)
950 changed_submodule_data_clear(item
->util
);
952 string_list_clear(submodules
, 1);
955 static int has_remote(const char *refname UNUSED
,
956 const struct object_id
*oid UNUSED
,
957 int flags UNUSED
, void *cb_data UNUSED
)
962 static int append_oid_to_argv(const struct object_id
*oid
, void *data
)
964 struct strvec
*argv
= data
;
965 strvec_push(argv
, oid_to_hex(oid
));
969 struct has_commit_data
{
970 struct repository
*repo
;
973 const struct object_id
*super_oid
;
976 static int check_has_commit(const struct object_id
*oid
, void *data
)
978 struct has_commit_data
*cb
= data
;
979 struct repository subrepo
;
980 enum object_type type
;
982 if (repo_submodule_init(&subrepo
, cb
->repo
, cb
->path
, cb
->super_oid
)) {
984 /* subrepo failed to init, so don't clean it up. */
988 type
= oid_object_info(&subrepo
, oid
, NULL
);
995 * Object is missing or invalid. If invalid, an error message
996 * has already been printed.
1001 die(_("submodule entry '%s' (%s) is a %s, not a commit"),
1002 cb
->path
, oid_to_hex(oid
), type_name(type
));
1005 repo_clear(&subrepo
);
1009 static int submodule_has_commits(struct repository
*r
,
1011 const struct object_id
*super_oid
,
1012 struct oid_array
*commits
)
1014 struct has_commit_data has_commit
= {
1018 .super_oid
= super_oid
1021 if (validate_submodule_path(path
) < 0)
1024 oid_array_for_each_unique(commits
, check_has_commit
, &has_commit
);
1026 if (has_commit
.result
) {
1028 * Even if the submodule is checked out and the commit is
1029 * present, make sure it exists in the submodule's object store
1030 * and that it is reachable from a ref.
1032 struct child_process cp
= CHILD_PROCESS_INIT
;
1033 struct strbuf out
= STRBUF_INIT
;
1035 strvec_pushl(&cp
.args
, "rev-list", "-n", "1", NULL
);
1036 oid_array_for_each_unique(commits
, append_oid_to_argv
, &cp
.args
);
1037 strvec_pushl(&cp
.args
, "--not", "--all", NULL
);
1039 prepare_submodule_repo_env(&cp
.env
);
1044 if (capture_command(&cp
, &out
, GIT_MAX_HEXSZ
+ 1) || out
.len
)
1045 has_commit
.result
= 0;
1047 strbuf_release(&out
);
1050 return has_commit
.result
;
1053 static int submodule_needs_pushing(struct repository
*r
,
1055 struct oid_array
*commits
)
1057 if (!submodule_has_commits(r
, path
, null_oid(), commits
))
1059 * NOTE: We do consider it safe to return "no" here. The
1060 * correct answer would be "We do not know" instead of
1061 * "No push needed", but it is quite hard to change
1062 * the submodule pointer without having the submodule
1063 * around. If a user did however change the submodules
1064 * without having the submodule around, this indicates
1065 * an expert who knows what they are doing or a
1066 * maintainer integrating work from other people. In
1067 * both cases it should be safe to skip this check.
1071 if (for_each_remote_ref_submodule(path
, has_remote
, NULL
) > 0) {
1072 struct child_process cp
= CHILD_PROCESS_INIT
;
1073 struct strbuf buf
= STRBUF_INIT
;
1074 int needs_pushing
= 0;
1076 strvec_push(&cp
.args
, "rev-list");
1077 oid_array_for_each_unique(commits
, append_oid_to_argv
, &cp
.args
);
1078 strvec_pushl(&cp
.args
, "--not", "--remotes", "-n", "1" , NULL
);
1080 prepare_submodule_repo_env(&cp
.env
);
1085 if (start_command(&cp
))
1086 die(_("Could not run 'git rev-list <commits> --not --remotes -n 1' command in submodule %s"),
1088 if (strbuf_read(&buf
, cp
.out
, the_hash_algo
->hexsz
+ 1))
1090 finish_command(&cp
);
1092 strbuf_release(&buf
);
1093 return needs_pushing
;
1099 int find_unpushed_submodules(struct repository
*r
,
1100 struct oid_array
*commits
,
1101 const char *remotes_name
,
1102 struct string_list
*needs_pushing
)
1104 struct string_list submodules
= STRING_LIST_INIT_DUP
;
1105 struct string_list_item
*name
;
1106 struct strvec argv
= STRVEC_INIT
;
1108 /* argv.v[0] will be ignored by setup_revisions */
1109 strvec_push(&argv
, "find_unpushed_submodules");
1110 oid_array_for_each_unique(commits
, append_oid_to_argv
, &argv
);
1111 strvec_push(&argv
, "--not");
1112 strvec_pushf(&argv
, "--remotes=%s", remotes_name
);
1114 collect_changed_submodules(r
, &submodules
, &argv
);
1116 for_each_string_list_item(name
, &submodules
) {
1117 struct changed_submodule_data
*cs_data
= name
->util
;
1118 const struct submodule
*submodule
;
1119 const char *path
= NULL
;
1121 submodule
= submodule_from_name(r
, null_oid(), name
->string
);
1123 path
= submodule
->path
;
1125 path
= default_name_or_path(name
->string
);
1130 if (submodule_needs_pushing(r
, path
, &cs_data
->new_commits
))
1131 string_list_insert(needs_pushing
, path
);
1134 free_submodules_data(&submodules
);
1135 strvec_clear(&argv
);
1137 return needs_pushing
->nr
;
1140 static int push_submodule(const char *path
,
1141 const struct remote
*remote
,
1142 const struct refspec
*rs
,
1143 const struct string_list
*push_options
,
1146 if (validate_submodule_path(path
) < 0)
1149 if (for_each_remote_ref_submodule(path
, has_remote
, NULL
) > 0) {
1150 struct child_process cp
= CHILD_PROCESS_INIT
;
1151 strvec_push(&cp
.args
, "push");
1153 * When recursing into a submodule, treat any "only" configurations as "on-
1154 * demand", since "only" would not work (we need all submodules to be pushed
1155 * in order to be able to push the superproject).
1157 strvec_push(&cp
.args
, "--recurse-submodules=only-is-on-demand");
1159 strvec_push(&cp
.args
, "--dry-run");
1161 if (push_options
&& push_options
->nr
) {
1162 const struct string_list_item
*item
;
1163 for_each_string_list_item(item
, push_options
)
1164 strvec_pushf(&cp
.args
, "--push-option=%s",
1168 if (remote
->origin
!= REMOTE_UNCONFIGURED
) {
1170 strvec_push(&cp
.args
, remote
->name
);
1171 for (i
= 0; i
< rs
->raw_nr
; i
++)
1172 strvec_push(&cp
.args
, rs
->raw
[i
]);
1175 prepare_submodule_repo_env(&cp
.env
);
1179 if (run_command(&cp
))
1188 * Perform a check in the submodule to see if the remote and refspec work.
1189 * Die if the submodule can't be pushed.
1191 static void submodule_push_check(const char *path
, const char *head
,
1192 const struct remote
*remote
,
1193 const struct refspec
*rs
)
1195 struct child_process cp
= CHILD_PROCESS_INIT
;
1198 if (validate_submodule_path(path
) < 0)
1201 strvec_push(&cp
.args
, "submodule--helper");
1202 strvec_push(&cp
.args
, "push-check");
1203 strvec_push(&cp
.args
, head
);
1204 strvec_push(&cp
.args
, remote
->name
);
1206 for (i
= 0; i
< rs
->raw_nr
; i
++)
1207 strvec_push(&cp
.args
, rs
->raw
[i
]);
1209 prepare_submodule_repo_env(&cp
.env
);
1216 * Simply indicate if 'submodule--helper push-check' failed.
1217 * More detailed error information will be provided by the
1220 if (run_command(&cp
))
1221 die(_("process for submodule '%s' failed"), path
);
1224 int push_unpushed_submodules(struct repository
*r
,
1225 struct oid_array
*commits
,
1226 const struct remote
*remote
,
1227 const struct refspec
*rs
,
1228 const struct string_list
*push_options
,
1232 struct string_list needs_pushing
= STRING_LIST_INIT_DUP
;
1234 if (!find_unpushed_submodules(r
, commits
,
1235 remote
->name
, &needs_pushing
))
1239 * Verify that the remote and refspec can be propagated to all
1240 * submodules. This check can be skipped if the remote and refspec
1241 * won't be propagated due to the remote being unconfigured (e.g. a URL
1242 * instead of a remote name).
1244 if (remote
->origin
!= REMOTE_UNCONFIGURED
) {
1246 struct object_id head_oid
;
1248 head
= refs_resolve_refdup(get_main_ref_store(the_repository
),
1249 "HEAD", 0, &head_oid
, NULL
);
1251 die(_("Failed to resolve HEAD as a valid ref."));
1253 for (i
= 0; i
< needs_pushing
.nr
; i
++)
1254 submodule_push_check(needs_pushing
.items
[i
].string
,
1259 /* Actually push the submodules */
1260 for (i
= 0; i
< needs_pushing
.nr
; i
++) {
1261 const char *path
= needs_pushing
.items
[i
].string
;
1262 fprintf(stderr
, _("Pushing submodule '%s'\n"), path
);
1263 if (!push_submodule(path
, remote
, rs
,
1264 push_options
, dry_run
)) {
1265 fprintf(stderr
, _("Unable to push submodule '%s'\n"), path
);
1270 string_list_clear(&needs_pushing
, 0);
1275 static int append_oid_to_array(const char *ref UNUSED
,
1276 const struct object_id
*oid
,
1277 int flags UNUSED
, void *data
)
1279 struct oid_array
*array
= data
;
1280 oid_array_append(array
, oid
);
1284 void check_for_new_submodule_commits(struct object_id
*oid
)
1286 if (!initialized_fetch_ref_tips
) {
1287 refs_for_each_ref(get_main_ref_store(the_repository
),
1288 append_oid_to_array
, &ref_tips_before_fetch
);
1289 initialized_fetch_ref_tips
= 1;
1292 oid_array_append(&ref_tips_after_fetch
, oid
);
1296 * Returns 1 if there is at least one submodule gitdir in
1297 * $GIT_DIR/modules and 0 otherwise. This follows
1298 * submodule_name_to_gitdir(), which looks for submodules in
1299 * $GIT_DIR/modules, not $GIT_COMMON_DIR.
1301 * A submodule can be moved to $GIT_DIR/modules manually by running "git
1302 * submodule absorbgitdirs", or it may be initialized there by "git
1303 * submodule update".
1305 static int repo_has_absorbed_submodules(struct repository
*r
)
1308 struct strbuf buf
= STRBUF_INIT
;
1310 strbuf_repo_git_path(&buf
, r
, "modules/");
1311 ret
= file_exists(buf
.buf
) && !is_empty_dir(buf
.buf
);
1312 strbuf_release(&buf
);
1316 static void calculate_changed_submodule_paths(struct repository
*r
,
1317 struct string_list
*changed_submodule_names
)
1319 struct strvec argv
= STRVEC_INIT
;
1320 struct string_list_item
*name
;
1322 /* No need to check if no submodules would be fetched */
1323 if (!submodule_from_path(r
, NULL
, NULL
) &&
1324 !repo_has_absorbed_submodules(r
))
1327 strvec_push(&argv
, "--"); /* argv[0] program name */
1328 oid_array_for_each_unique(&ref_tips_after_fetch
,
1329 append_oid_to_argv
, &argv
);
1330 strvec_push(&argv
, "--not");
1331 oid_array_for_each_unique(&ref_tips_before_fetch
,
1332 append_oid_to_argv
, &argv
);
1335 * Collect all submodules (whether checked out or not) for which new
1336 * commits have been recorded upstream in "changed_submodule_names".
1338 collect_changed_submodules(r
, changed_submodule_names
, &argv
);
1340 for_each_string_list_item(name
, changed_submodule_names
) {
1341 struct changed_submodule_data
*cs_data
= name
->util
;
1342 const struct submodule
*submodule
;
1343 const char *path
= NULL
;
1345 submodule
= submodule_from_name(r
, null_oid(), name
->string
);
1347 path
= submodule
->path
;
1349 path
= default_name_or_path(name
->string
);
1354 if (submodule_has_commits(r
, path
, null_oid(), &cs_data
->new_commits
)) {
1355 changed_submodule_data_clear(cs_data
);
1356 *name
->string
= '\0';
1360 string_list_remove_empty_items(changed_submodule_names
, 1);
1362 strvec_clear(&argv
);
1363 oid_array_clear(&ref_tips_before_fetch
);
1364 oid_array_clear(&ref_tips_after_fetch
);
1365 initialized_fetch_ref_tips
= 0;
1368 int submodule_touches_in_range(struct repository
*r
,
1369 struct object_id
*excl_oid
,
1370 struct object_id
*incl_oid
)
1372 struct string_list subs
= STRING_LIST_INIT_DUP
;
1373 struct strvec args
= STRVEC_INIT
;
1376 /* No need to check if there are no submodules configured */
1377 if (!submodule_from_path(r
, NULL
, NULL
))
1380 strvec_push(&args
, "--"); /* args[0] program name */
1381 strvec_push(&args
, oid_to_hex(incl_oid
));
1382 if (!is_null_oid(excl_oid
)) {
1383 strvec_push(&args
, "--not");
1384 strvec_push(&args
, oid_to_hex(excl_oid
));
1387 collect_changed_submodules(r
, &subs
, &args
);
1390 strvec_clear(&args
);
1392 free_submodules_data(&subs
);
1396 struct submodule_parallel_fetch
{
1398 * The index of the last index entry processed by
1399 * get_fetch_task_from_index().
1403 * The index of the last string_list entry processed by
1404 * get_fetch_task_from_changed().
1408 struct repository
*r
;
1410 int command_line_option
;
1416 * Names of submodules that have new commits. Generated by
1417 * walking the newly fetched superproject commits.
1419 struct string_list changed_submodule_names
;
1421 * Names of submodules that have already been processed. Lets us
1422 * avoid fetching the same submodule more than once.
1424 struct string_list seen_submodule_names
;
1426 /* Pending fetches by OIDs */
1427 struct fetch_task
**oid_fetch_tasks
;
1428 int oid_fetch_tasks_nr
, oid_fetch_tasks_alloc
;
1430 struct strbuf submodules_with_errors
;
1432 #define SPF_INIT { \
1433 .args = STRVEC_INIT, \
1434 .changed_submodule_names = STRING_LIST_INIT_DUP, \
1435 .seen_submodule_names = STRING_LIST_INIT_DUP, \
1436 .submodules_with_errors = STRBUF_INIT, \
1439 static int get_fetch_recurse_config(const struct submodule
*submodule
,
1440 struct submodule_parallel_fetch
*spf
)
1442 if (spf
->command_line_option
!= RECURSE_SUBMODULES_DEFAULT
)
1443 return spf
->command_line_option
;
1449 int fetch_recurse
= submodule
->fetch_recurse
;
1450 key
= xstrfmt("submodule.%s.fetchRecurseSubmodules", submodule
->name
);
1451 if (!repo_config_get_string_tmp(spf
->r
, key
, &value
)) {
1452 fetch_recurse
= parse_fetch_recurse_submodules_arg(key
, value
);
1456 if (fetch_recurse
!= RECURSE_SUBMODULES_NONE
)
1457 /* local config overrules everything except commandline */
1458 return fetch_recurse
;
1461 return spf
->default_option
;
1465 * Fetch in progress (if callback data) or
1466 * pending (if in oid_fetch_tasks in struct submodule_parallel_fetch)
1469 struct repository
*repo
;
1470 const struct submodule
*sub
;
1471 unsigned free_sub
: 1; /* Do we need to free the submodule? */
1472 const char *default_argv
; /* The default fetch mode. */
1473 struct strvec git_args
; /* Args for the child git process. */
1475 struct oid_array
*commits
; /* Ensure these commits are fetched */
1479 * When a submodule is not defined in .gitmodules, we cannot access it
1480 * via the regular submodule-config. Create a fake submodule, which we can
1483 static const struct submodule
*get_non_gitmodules_submodule(const char *path
)
1485 struct submodule
*ret
= NULL
;
1486 const char *name
= default_name_or_path(path
);
1491 ret
= xmalloc(sizeof(*ret
));
1492 memset(ret
, 0, sizeof(*ret
));
1496 return (const struct submodule
*) ret
;
1499 static void fetch_task_release(struct fetch_task
*p
)
1502 free((void*)p
->sub
);
1507 repo_clear(p
->repo
);
1508 FREE_AND_NULL(p
->repo
);
1510 strvec_clear(&p
->git_args
);
1513 static struct repository
*get_submodule_repo_for(struct repository
*r
,
1515 const struct object_id
*treeish_name
)
1517 struct repository
*ret
= xmalloc(sizeof(*ret
));
1519 if (repo_submodule_init(ret
, r
, path
, treeish_name
)) {
1527 static struct fetch_task
*fetch_task_create(struct submodule_parallel_fetch
*spf
,
1529 const struct object_id
*treeish_name
)
1531 struct fetch_task
*task
= xmalloc(sizeof(*task
));
1532 memset(task
, 0, sizeof(*task
));
1534 if (validate_submodule_path(path
) < 0)
1537 task
->sub
= submodule_from_path(spf
->r
, treeish_name
, path
);
1541 * No entry in .gitmodules? Technically not a submodule,
1542 * but historically we supported repositories that happen to be
1543 * in-place where a gitlink is. Keep supporting them.
1545 task
->sub
= get_non_gitmodules_submodule(path
);
1552 if (string_list_lookup(&spf
->seen_submodule_names
, task
->sub
->name
))
1555 switch (get_fetch_recurse_config(task
->sub
, spf
))
1558 case RECURSE_SUBMODULES_DEFAULT
:
1559 case RECURSE_SUBMODULES_ON_DEMAND
:
1561 !string_list_lookup(
1562 &spf
->changed_submodule_names
,
1565 task
->default_argv
= "on-demand";
1567 case RECURSE_SUBMODULES_ON
:
1568 task
->default_argv
= "yes";
1570 case RECURSE_SUBMODULES_OFF
:
1574 task
->repo
= get_submodule_repo_for(spf
->r
, path
, treeish_name
);
1579 fetch_task_release(task
);
1584 static struct fetch_task
*
1585 get_fetch_task_from_index(struct submodule_parallel_fetch
*spf
,
1588 for (; spf
->index_count
< spf
->r
->index
->cache_nr
; spf
->index_count
++) {
1589 const struct cache_entry
*ce
=
1590 spf
->r
->index
->cache
[spf
->index_count
];
1591 struct fetch_task
*task
;
1593 if (!S_ISGITLINK(ce
->ce_mode
))
1596 task
= fetch_task_create(spf
, ce
->name
, null_oid());
1602 strbuf_addf(err
, _("Fetching submodule %s%s\n"),
1603 spf
->prefix
, ce
->name
);
1608 struct strbuf empty_submodule_path
= STRBUF_INIT
;
1610 fetch_task_release(task
);
1614 * An empty directory is normal,
1615 * the submodule is not initialized
1617 strbuf_addf(&empty_submodule_path
, "%s/%s/",
1620 if (S_ISGITLINK(ce
->ce_mode
) &&
1621 !is_empty_dir(empty_submodule_path
.buf
)) {
1624 _("Could not access submodule '%s'\n"),
1627 strbuf_release(&empty_submodule_path
);
1633 static struct fetch_task
*
1634 get_fetch_task_from_changed(struct submodule_parallel_fetch
*spf
,
1637 for (; spf
->changed_count
< spf
->changed_submodule_names
.nr
;
1638 spf
->changed_count
++) {
1639 struct string_list_item item
=
1640 spf
->changed_submodule_names
.items
[spf
->changed_count
];
1641 struct changed_submodule_data
*cs_data
= item
.util
;
1642 struct fetch_task
*task
;
1644 if (!is_tree_submodule_active(spf
->r
, cs_data
->super_oid
,cs_data
->path
))
1647 task
= fetch_task_create(spf
, cs_data
->path
,
1648 cs_data
->super_oid
);
1653 strbuf_addf(err
, _("Could not access submodule '%s' at commit %s\n"),
1655 repo_find_unique_abbrev(the_repository
, cs_data
->super_oid
, DEFAULT_ABBREV
));
1657 fetch_task_release(task
);
1664 _("Fetching submodule %s%s at commit %s\n"),
1665 spf
->prefix
, task
->sub
->path
,
1666 repo_find_unique_abbrev(the_repository
, cs_data
->super_oid
,
1669 spf
->changed_count
++;
1671 * NEEDSWORK: Submodules set/unset a value for
1672 * core.worktree when they are populated/unpopulated by
1673 * "git checkout" (and similar commands, see
1674 * submodule_move_head() and
1675 * connect_work_tree_and_git_dir()), but if the
1676 * submodule is unpopulated in another way (e.g. "git
1677 * rm", "rm -r"), core.worktree will still be set even
1678 * though the directory doesn't exist, and the child
1679 * process will crash while trying to chdir into the
1680 * nonexistent directory.
1682 * In this case, we know that the submodule has no
1683 * working tree, so we can work around this by
1684 * setting "--work-tree=." (--bare does not work because
1685 * worktree settings take precedence over bare-ness).
1686 * However, this is not necessarily true in other cases,
1687 * so a generalized solution is still necessary.
1689 * Possible solutions:
1690 * - teach "git [add|rm]" to unset core.worktree and
1691 * discourage users from removing submodules without
1692 * using a Git command.
1693 * - teach submodule child processes to ignore stale
1694 * core.worktree values.
1696 strvec_push(&task
->git_args
, "--work-tree=.");
1702 static int get_next_submodule(struct child_process
*cp
, struct strbuf
*err
,
1703 void *data
, void **task_cb
)
1705 struct submodule_parallel_fetch
*spf
= data
;
1706 struct fetch_task
*task
=
1707 get_fetch_task_from_index(spf
, err
);
1709 task
= get_fetch_task_from_changed(spf
, err
);
1712 child_process_init(cp
);
1713 cp
->dir
= task
->repo
->gitdir
;
1714 prepare_submodule_repo_env_in_gitdir(&cp
->env
);
1716 strvec_init(&cp
->args
);
1717 if (task
->git_args
.nr
)
1718 strvec_pushv(&cp
->args
, task
->git_args
.v
);
1719 strvec_pushv(&cp
->args
, spf
->args
.v
);
1720 strvec_push(&cp
->args
, task
->default_argv
);
1721 strvec_pushf(&cp
->args
, "--submodule-prefix=%s%s/",
1722 spf
->prefix
, task
->sub
->path
);
1726 string_list_insert(&spf
->seen_submodule_names
, task
->sub
->name
);
1730 if (spf
->oid_fetch_tasks_nr
) {
1731 struct fetch_task
*task
=
1732 spf
->oid_fetch_tasks
[spf
->oid_fetch_tasks_nr
- 1];
1733 spf
->oid_fetch_tasks_nr
--;
1735 child_process_init(cp
);
1736 prepare_submodule_repo_env_in_gitdir(&cp
->env
);
1738 cp
->dir
= task
->repo
->gitdir
;
1740 strvec_init(&cp
->args
);
1741 strvec_pushv(&cp
->args
, spf
->args
.v
);
1742 strvec_push(&cp
->args
, "on-demand");
1743 strvec_pushf(&cp
->args
, "--submodule-prefix=%s%s/",
1744 spf
->prefix
, task
->sub
->path
);
1746 /* NEEDSWORK: have get_default_remote from submodule--helper */
1747 strvec_push(&cp
->args
, "origin");
1748 oid_array_for_each_unique(task
->commits
,
1749 append_oid_to_argv
, &cp
->args
);
1758 static int fetch_start_failure(struct strbuf
*err UNUSED
,
1759 void *cb
, void *task_cb
)
1761 struct submodule_parallel_fetch
*spf
= cb
;
1762 struct fetch_task
*task
= task_cb
;
1766 fetch_task_release(task
);
1770 static int commit_missing_in_sub(const struct object_id
*oid
, void *data
)
1772 struct repository
*subrepo
= data
;
1774 enum object_type type
= oid_object_info(subrepo
, oid
, NULL
);
1776 return type
!= OBJ_COMMIT
;
1779 static int fetch_finish(int retvalue
, struct strbuf
*err UNUSED
,
1780 void *cb
, void *task_cb
)
1782 struct submodule_parallel_fetch
*spf
= cb
;
1783 struct fetch_task
*task
= task_cb
;
1785 struct string_list_item
*it
;
1786 struct changed_submodule_data
*cs_data
;
1788 if (!task
|| !task
->sub
)
1789 BUG("callback cookie bogus");
1793 * NEEDSWORK: This indicates that the overall fetch
1794 * failed, even though there may be a subsequent fetch
1795 * by commit hash that might work. It may be a good
1796 * idea to not indicate failure in this case, and only
1797 * indicate failure if the subsequent fetch fails.
1801 strbuf_addf(&spf
->submodules_with_errors
, "\t%s\n",
1805 /* Is this the second time we process this submodule? */
1809 it
= string_list_lookup(&spf
->changed_submodule_names
, task
->sub
->name
);
1811 /* Could be an unchanged submodule, not contained in the list */
1815 oid_array_filter(&cs_data
->new_commits
,
1816 commit_missing_in_sub
,
1819 /* Are there commits we want, but do not exist? */
1820 if (cs_data
->new_commits
.nr
) {
1821 task
->commits
= &cs_data
->new_commits
;
1822 ALLOC_GROW(spf
->oid_fetch_tasks
,
1823 spf
->oid_fetch_tasks_nr
+ 1,
1824 spf
->oid_fetch_tasks_alloc
);
1825 spf
->oid_fetch_tasks
[spf
->oid_fetch_tasks_nr
] = task
;
1826 spf
->oid_fetch_tasks_nr
++;
1831 fetch_task_release(task
);
1836 int fetch_submodules(struct repository
*r
,
1837 const struct strvec
*options
,
1838 const char *prefix
, int command_line_option
,
1840 int quiet
, int max_parallel_jobs
)
1843 struct submodule_parallel_fetch spf
= SPF_INIT
;
1844 const struct run_process_parallel_opts opts
= {
1845 .tr2_category
= "submodule",
1846 .tr2_label
= "parallel/fetch",
1848 .processes
= max_parallel_jobs
,
1850 .get_next_task
= get_next_submodule
,
1851 .start_failure
= fetch_start_failure
,
1852 .task_finished
= fetch_finish
,
1857 spf
.command_line_option
= command_line_option
;
1858 spf
.default_option
= default_option
;
1860 spf
.prefix
= prefix
;
1865 if (repo_read_index(r
) < 0)
1866 die(_("index file corrupt"));
1868 strvec_push(&spf
.args
, "fetch");
1869 for (i
= 0; i
< options
->nr
; i
++)
1870 strvec_push(&spf
.args
, options
->v
[i
]);
1871 strvec_push(&spf
.args
, "--recurse-submodules-default");
1872 /* default value, "--submodule-prefix" and its value are added later */
1874 calculate_changed_submodule_paths(r
, &spf
.changed_submodule_names
);
1875 string_list_sort(&spf
.changed_submodule_names
);
1876 run_processes_parallel(&opts
);
1878 if (spf
.submodules_with_errors
.len
> 0)
1879 fprintf(stderr
, _("Errors during submodule fetch:\n%s"),
1880 spf
.submodules_with_errors
.buf
);
1883 strvec_clear(&spf
.args
);
1885 free_submodules_data(&spf
.changed_submodule_names
);
1889 unsigned is_submodule_modified(const char *path
, int ignore_untracked
)
1891 struct child_process cp
= CHILD_PROCESS_INIT
;
1892 struct strbuf buf
= STRBUF_INIT
;
1894 unsigned dirty_submodule
= 0;
1895 const char *git_dir
;
1896 int ignore_cp_exit_code
= 0;
1898 if (validate_submodule_path(path
) < 0)
1901 strbuf_addf(&buf
, "%s/.git", path
);
1902 git_dir
= read_gitfile(buf
.buf
);
1905 if (!is_git_directory(git_dir
)) {
1906 if (is_directory(git_dir
))
1907 die(_("'%s' not recognized as a git repository"), git_dir
);
1908 strbuf_release(&buf
);
1909 /* The submodule is not checked out, so it is not modified */
1914 strvec_pushl(&cp
.args
, "status", "--porcelain=2", NULL
);
1915 if (ignore_untracked
)
1916 strvec_push(&cp
.args
, "-uno");
1918 prepare_submodule_repo_env(&cp
.env
);
1923 if (start_command(&cp
))
1924 die(_("Could not run 'git status --porcelain=2' in submodule %s"), path
);
1926 fp
= xfdopen(cp
.out
, "r");
1927 while (strbuf_getwholeline(&buf
, fp
, '\n') != EOF
) {
1928 /* regular untracked files */
1929 if (buf
.buf
[0] == '?')
1930 dirty_submodule
|= DIRTY_SUBMODULE_UNTRACKED
;
1932 if (buf
.buf
[0] == 'u' ||
1933 buf
.buf
[0] == '1' ||
1934 buf
.buf
[0] == '2') {
1935 /* T = line type, XY = status, SSSS = submodule state */
1936 if (buf
.len
< strlen("T XY SSSS"))
1937 BUG("invalid status --porcelain=2 line %s",
1940 if (buf
.buf
[5] == 'S' && buf
.buf
[8] == 'U')
1941 /* nested untracked file */
1942 dirty_submodule
|= DIRTY_SUBMODULE_UNTRACKED
;
1944 if (buf
.buf
[0] == 'u' ||
1945 buf
.buf
[0] == '2' ||
1946 memcmp(buf
.buf
+ 5, "S..U", 4))
1948 dirty_submodule
|= DIRTY_SUBMODULE_MODIFIED
;
1951 if ((dirty_submodule
& DIRTY_SUBMODULE_MODIFIED
) &&
1952 ((dirty_submodule
& DIRTY_SUBMODULE_UNTRACKED
) ||
1953 ignore_untracked
)) {
1955 * We're not interested in any further information from
1956 * the child any more, neither output nor its exit code.
1958 ignore_cp_exit_code
= 1;
1964 if (finish_command(&cp
) && !ignore_cp_exit_code
)
1965 die(_("'git status --porcelain=2' failed in submodule %s"), path
);
1967 strbuf_release(&buf
);
1968 return dirty_submodule
;
1971 int submodule_uses_gitfile(const char *path
)
1973 struct child_process cp
= CHILD_PROCESS_INIT
;
1974 struct strbuf buf
= STRBUF_INIT
;
1975 const char *git_dir
;
1977 if (validate_submodule_path(path
) < 0)
1980 strbuf_addf(&buf
, "%s/.git", path
);
1981 git_dir
= read_gitfile(buf
.buf
);
1983 strbuf_release(&buf
);
1986 strbuf_release(&buf
);
1988 /* Now test that all nested submodules use a gitfile too */
1989 strvec_pushl(&cp
.args
,
1990 "submodule", "foreach", "--quiet", "--recursive",
1991 "test -f .git", NULL
);
1993 prepare_submodule_repo_env(&cp
.env
);
1999 if (run_command(&cp
))
2006 * Check if it is a bad idea to remove a submodule, i.e. if we'd lose data
2009 * Return 1 if we'd lose data, return 0 if the removal is fine,
2010 * and negative values for errors.
2012 int bad_to_remove_submodule(const char *path
, unsigned flags
)
2015 struct child_process cp
= CHILD_PROCESS_INIT
;
2016 struct strbuf buf
= STRBUF_INIT
;
2019 if (validate_submodule_path(path
) < 0)
2022 if (!file_exists(path
) || is_empty_dir(path
))
2025 if (!submodule_uses_gitfile(path
))
2028 strvec_pushl(&cp
.args
, "status", "--porcelain",
2029 "--ignore-submodules=none", NULL
);
2031 if (flags
& SUBMODULE_REMOVAL_IGNORE_UNTRACKED
)
2032 strvec_push(&cp
.args
, "-uno");
2034 strvec_push(&cp
.args
, "-uall");
2036 if (!(flags
& SUBMODULE_REMOVAL_IGNORE_IGNORED_UNTRACKED
))
2037 strvec_push(&cp
.args
, "--ignored");
2039 prepare_submodule_repo_env(&cp
.env
);
2044 if (start_command(&cp
)) {
2045 if (flags
& SUBMODULE_REMOVAL_DIE_ON_ERROR
)
2046 die(_("could not start 'git status' in submodule '%s'"),
2052 len
= strbuf_read(&buf
, cp
.out
, 1024);
2057 if (finish_command(&cp
)) {
2058 if (flags
& SUBMODULE_REMOVAL_DIE_ON_ERROR
)
2059 die(_("could not run 'git status' in submodule '%s'"),
2064 strbuf_release(&buf
);
2068 void submodule_unset_core_worktree(const struct submodule
*sub
)
2070 struct strbuf config_path
= STRBUF_INIT
;
2072 if (validate_submodule_path(sub
->path
) < 0)
2075 submodule_name_to_gitdir(&config_path
, the_repository
, sub
->name
);
2076 strbuf_addstr(&config_path
, "/config");
2078 if (git_config_set_in_file_gently(config_path
.buf
, "core.worktree", NULL
, NULL
))
2079 warning(_("Could not unset core.worktree setting in submodule '%s'"),
2082 strbuf_release(&config_path
);
2085 static int submodule_has_dirty_index(const struct submodule
*sub
)
2087 struct child_process cp
= CHILD_PROCESS_INIT
;
2089 if (validate_submodule_path(sub
->path
) < 0)
2092 prepare_submodule_repo_env(&cp
.env
);
2095 strvec_pushl(&cp
.args
, "diff-index", "--quiet",
2096 "--cached", "HEAD", NULL
);
2100 if (start_command(&cp
))
2101 die(_("could not recurse into submodule '%s'"), sub
->path
);
2103 return finish_command(&cp
);
2106 static void submodule_reset_index(const char *path
, const char *super_prefix
)
2108 struct child_process cp
= CHILD_PROCESS_INIT
;
2110 if (validate_submodule_path(path
) < 0)
2113 prepare_submodule_repo_env(&cp
.env
);
2119 /* TODO: determine if this might overwright untracked files */
2120 strvec_pushl(&cp
.args
, "read-tree", "-u", "--reset", NULL
);
2121 strvec_pushf(&cp
.args
, "--super-prefix=%s%s/",
2122 (super_prefix
? super_prefix
: ""), path
);
2124 strvec_push(&cp
.args
, empty_tree_oid_hex(the_repository
->hash_algo
));
2126 if (run_command(&cp
))
2127 die(_("could not reset submodule index"));
2131 * Moves a submodule at a given path from a given head to another new head.
2132 * For edge cases (a submodule coming into existence or removing a submodule)
2133 * pass NULL for old or new respectively.
2135 int submodule_move_head(const char *path
, const char *super_prefix
,
2136 const char *old_head
, const char *new_head
,
2140 struct child_process cp
= CHILD_PROCESS_INIT
;
2141 const struct submodule
*sub
;
2142 int *error_code_ptr
, error_code
;
2144 if (!is_submodule_active(the_repository
, path
))
2147 if (flags
& SUBMODULE_MOVE_HEAD_FORCE
)
2149 * Pass non NULL pointer to is_submodule_populated_gently
2150 * to prevent die()-ing. We'll use connect_work_tree_and_git_dir
2151 * to fixup the submodule in the force case later.
2153 error_code_ptr
= &error_code
;
2155 error_code_ptr
= NULL
;
2157 if (old_head
&& !is_submodule_populated_gently(path
, error_code_ptr
))
2160 sub
= submodule_from_path(the_repository
, null_oid(), path
);
2163 BUG("could not get submodule information for '%s'", path
);
2165 if (old_head
&& !(flags
& SUBMODULE_MOVE_HEAD_FORCE
)) {
2166 /* Check if the submodule has a dirty index. */
2167 if (submodule_has_dirty_index(sub
))
2168 return error(_("submodule '%s' has dirty index"), path
);
2171 if (!(flags
& SUBMODULE_MOVE_HEAD_DRY_RUN
)) {
2173 if (!submodule_uses_gitfile(path
))
2174 absorb_git_dir_into_superproject(path
,
2177 char *dotgit
= xstrfmt("%s/.git", path
);
2178 char *git_dir
= xstrdup(read_gitfile(dotgit
));
2181 if (validate_submodule_git_dir(git_dir
,
2183 die(_("refusing to create/use '%s' in "
2184 "another submodule's git dir"),
2189 struct strbuf gitdir
= STRBUF_INIT
;
2190 submodule_name_to_gitdir(&gitdir
, the_repository
,
2192 if (validate_submodule_git_dir(gitdir
.buf
,
2194 die(_("refusing to create/use '%s' in another "
2195 "submodule's git dir"),
2197 connect_work_tree_and_git_dir(path
, gitdir
.buf
, 0);
2198 strbuf_release(&gitdir
);
2200 /* make sure the index is clean as well */
2201 submodule_reset_index(path
, super_prefix
);
2204 if (old_head
&& (flags
& SUBMODULE_MOVE_HEAD_FORCE
)) {
2205 struct strbuf gitdir
= STRBUF_INIT
;
2206 submodule_name_to_gitdir(&gitdir
, the_repository
,
2208 connect_work_tree_and_git_dir(path
, gitdir
.buf
, 1);
2209 strbuf_release(&gitdir
);
2213 prepare_submodule_repo_env(&cp
.env
);
2219 strvec_pushl(&cp
.args
, "read-tree", "--recurse-submodules", NULL
);
2220 strvec_pushf(&cp
.args
, "--super-prefix=%s%s/",
2221 (super_prefix
? super_prefix
: ""), path
);
2223 if (flags
& SUBMODULE_MOVE_HEAD_DRY_RUN
)
2224 strvec_push(&cp
.args
, "-n");
2226 strvec_push(&cp
.args
, "-u");
2228 if (flags
& SUBMODULE_MOVE_HEAD_FORCE
)
2229 strvec_push(&cp
.args
, "--reset");
2231 strvec_push(&cp
.args
, "-m");
2233 if (!(flags
& SUBMODULE_MOVE_HEAD_FORCE
))
2234 strvec_push(&cp
.args
, old_head
? old_head
: empty_tree_oid_hex(the_repository
->hash_algo
));
2236 strvec_push(&cp
.args
, new_head
? new_head
: empty_tree_oid_hex(the_repository
->hash_algo
));
2238 if (run_command(&cp
)) {
2239 ret
= error(_("Submodule '%s' could not be updated."), path
);
2243 if (!(flags
& SUBMODULE_MOVE_HEAD_DRY_RUN
)) {
2245 child_process_init(&cp
);
2246 /* also set the HEAD accordingly */
2251 prepare_submodule_repo_env(&cp
.env
);
2252 strvec_pushl(&cp
.args
, "update-ref", "HEAD",
2253 "--no-deref", new_head
, NULL
);
2255 if (run_command(&cp
)) {
2260 struct strbuf sb
= STRBUF_INIT
;
2262 strbuf_addf(&sb
, "%s/.git", path
);
2263 unlink_or_warn(sb
.buf
);
2264 strbuf_release(&sb
);
2266 if (is_empty_dir(path
))
2267 rmdir_or_warn(path
);
2269 submodule_unset_core_worktree(sub
);
2276 int validate_submodule_git_dir(char *git_dir
, const char *submodule_name
)
2278 size_t len
= strlen(git_dir
), suffix_len
= strlen(submodule_name
);
2282 if (len
<= suffix_len
|| (p
= git_dir
+ len
- suffix_len
)[-1] != '/' ||
2283 strcmp(p
, submodule_name
))
2284 BUG("submodule name '%s' not a suffix of git dir '%s'",
2285 submodule_name
, git_dir
);
2288 * We prevent the contents of sibling submodules' git directories to
2291 * Example: having a submodule named `hippo` and another one named
2292 * `hippo/hooks` would result in the git directories
2293 * `.git/modules/hippo/` and `.git/modules/hippo/hooks/`, respectively,
2294 * but the latter directory is already designated to contain the hooks
2298 if (is_dir_sep(*p
)) {
2302 if (is_git_directory(git_dir
))
2307 return error(_("submodule git dir '%s' is "
2308 "inside git dir '%.*s'"),
2310 (int)(p
- git_dir
), git_dir
);
2317 int validate_submodule_path(const char *path
)
2319 char *p
= xstrdup(path
);
2324 for (i
= 0; !ret
&& p
[i
]; i
++) {
2325 if (!is_dir_sep(p
[i
]))
2330 /* allow missing components, but no symlinks */
2331 ret
= lstat(p
, &st
) || !S_ISLNK(st
.st_mode
) ? 0 : -1;
2334 error(_("expected '%.*s' in submodule path '%s' not to "
2335 "be a symbolic link"), i
, p
, p
);
2337 if (!lstat(p
, &st
) && S_ISLNK(st
.st_mode
))
2338 ret
= error(_("expected submodule path '%s' not to be a "
2339 "symbolic link"), p
);
2346 * Embeds a single submodules git directory into the superprojects git dir,
2349 static void relocate_single_git_dir_into_superproject(const char *path
,
2350 const char *super_prefix
)
2352 char *old_git_dir
= NULL
, *real_old_git_dir
= NULL
, *real_new_git_dir
= NULL
;
2353 struct strbuf new_gitdir
= STRBUF_INIT
;
2354 const struct submodule
*sub
;
2356 if (validate_submodule_path(path
) < 0)
2359 if (submodule_uses_worktrees(path
))
2360 die(_("relocate_gitdir for submodule '%s' with "
2361 "more than one worktree not supported"), path
);
2363 old_git_dir
= xstrfmt("%s/.git", path
);
2364 if (read_gitfile(old_git_dir
))
2365 /* If it is an actual gitfile, it doesn't need migration. */
2368 real_old_git_dir
= real_pathdup(old_git_dir
, 1);
2370 sub
= submodule_from_path(the_repository
, null_oid(), path
);
2372 die(_("could not lookup name for submodule '%s'"), path
);
2374 submodule_name_to_gitdir(&new_gitdir
, the_repository
, sub
->name
);
2375 if (validate_submodule_git_dir(new_gitdir
.buf
, sub
->name
) < 0)
2376 die(_("refusing to move '%s' into an existing git dir"),
2378 if (safe_create_leading_directories_const(new_gitdir
.buf
) < 0)
2379 die(_("could not create directory '%s'"), new_gitdir
.buf
);
2380 real_new_git_dir
= real_pathdup(new_gitdir
.buf
, 1);
2382 fprintf(stderr
, _("Migrating git directory of '%s%s' from\n'%s' to\n'%s'\n"),
2383 super_prefix
? super_prefix
: "", path
,
2384 real_old_git_dir
, real_new_git_dir
);
2386 relocate_gitdir(path
, real_old_git_dir
, real_new_git_dir
);
2389 free(real_old_git_dir
);
2390 free(real_new_git_dir
);
2391 strbuf_release(&new_gitdir
);
2394 static void absorb_git_dir_into_superproject_recurse(const char *path
,
2395 const char *super_prefix
)
2398 struct child_process cp
= CHILD_PROCESS_INIT
;
2400 if (validate_submodule_path(path
) < 0)
2406 strvec_pushl(&cp
.args
, "submodule--helper",
2407 "absorbgitdirs", NULL
);
2408 strvec_pushf(&cp
.args
, "--super-prefix=%s%s/", super_prefix
?
2409 super_prefix
: "", path
);
2411 prepare_submodule_repo_env(&cp
.env
);
2412 if (run_command(&cp
))
2413 die(_("could not recurse into submodule '%s'"), path
);
2417 * Migrate the git directory of the submodule given by path from
2418 * having its git directory within the working tree to the git dir nested
2419 * in its superprojects git dir under modules/.
2421 void absorb_git_dir_into_superproject(const char *path
,
2422 const char *super_prefix
)
2425 const char *sub_git_dir
;
2426 struct strbuf gitdir
= STRBUF_INIT
;
2428 if (validate_submodule_path(path
) < 0)
2431 strbuf_addf(&gitdir
, "%s/.git", path
);
2432 sub_git_dir
= resolve_gitdir_gently(gitdir
.buf
, &err_code
);
2434 /* Not populated? */
2436 const struct submodule
*sub
;
2437 struct strbuf sub_gitdir
= STRBUF_INIT
;
2439 if (err_code
== READ_GITFILE_ERR_STAT_FAILED
) {
2440 /* unpopulated as expected */
2441 strbuf_release(&gitdir
);
2445 if (err_code
!= READ_GITFILE_ERR_NOT_A_REPO
)
2446 /* We don't know what broke here. */
2447 read_gitfile_error_die(err_code
, path
, NULL
);
2450 * Maybe populated, but no git directory was found?
2451 * This can happen if the superproject is a submodule
2452 * itself and was just absorbed. The absorption of the
2453 * superproject did not rewrite the git file links yet,
2456 sub
= submodule_from_path(the_repository
, null_oid(), path
);
2458 die(_("could not lookup name for submodule '%s'"), path
);
2459 submodule_name_to_gitdir(&sub_gitdir
, the_repository
, sub
->name
);
2460 connect_work_tree_and_git_dir(path
, sub_gitdir
.buf
, 0);
2461 strbuf_release(&sub_gitdir
);
2463 /* Is it already absorbed into the superprojects git dir? */
2464 char *real_sub_git_dir
= real_pathdup(sub_git_dir
, 1);
2465 char *real_common_git_dir
= real_pathdup(get_git_common_dir(), 1);
2467 if (!starts_with(real_sub_git_dir
, real_common_git_dir
))
2468 relocate_single_git_dir_into_superproject(path
, super_prefix
);
2470 free(real_sub_git_dir
);
2471 free(real_common_git_dir
);
2473 strbuf_release(&gitdir
);
2475 absorb_git_dir_into_superproject_recurse(path
, super_prefix
);
2478 int get_superproject_working_tree(struct strbuf
*buf
)
2480 struct child_process cp
= CHILD_PROCESS_INIT
;
2481 struct strbuf sb
= STRBUF_INIT
;
2482 struct strbuf one_up
= STRBUF_INIT
;
2483 char *cwd
= xgetcwd();
2485 const char *subpath
;
2489 if (!is_inside_work_tree())
2492 * We might have a superproject, but it is harder
2497 if (!strbuf_realpath(&one_up
, "../", 0))
2500 subpath
= relative_path(cwd
, one_up
.buf
, &sb
);
2501 strbuf_release(&one_up
);
2503 prepare_submodule_repo_env(&cp
.env
);
2504 strvec_pop(&cp
.env
);
2506 strvec_pushl(&cp
.args
, "--literal-pathspecs", "-C", "..",
2507 "ls-files", "-z", "--stage", "--full-name", "--",
2516 if (start_command(&cp
))
2517 die(_("could not start ls-files in .."));
2519 len
= strbuf_read(&sb
, cp
.out
, PATH_MAX
);
2522 if (starts_with(sb
.buf
, "160000")) {
2524 int cwd_len
= strlen(cwd
);
2525 char *super_sub
, *super_wt
;
2528 * There is a superproject having this repo as a submodule.
2529 * The format is <mode> SP <hash> SP <stage> TAB <full name> \0,
2530 * We're only interested in the name after the tab.
2532 super_sub
= strchr(sb
.buf
, '\t') + 1;
2533 super_sub_len
= strlen(super_sub
);
2535 if (super_sub_len
> cwd_len
||
2536 strcmp(&cwd
[cwd_len
- super_sub_len
], super_sub
))
2537 BUG("returned path string doesn't match cwd?");
2539 super_wt
= xstrdup(cwd
);
2540 super_wt
[cwd_len
- super_sub_len
] = '\0';
2542 strbuf_realpath(buf
, super_wt
, 1);
2547 strbuf_release(&sb
);
2549 code
= finish_command(&cp
);
2552 /* '../' is not a git repository */
2554 if (code
== 0 && len
== 0)
2555 /* There is an unrelated git repository at '../' */
2558 die(_("ls-tree returned unexpected return code %d"), code
);
2564 * Put the gitdir for a submodule (given relative to the main
2565 * repository worktree) into `buf`, or return -1 on error.
2567 int submodule_to_gitdir(struct strbuf
*buf
, const char *submodule
)
2569 const struct submodule
*sub
;
2570 const char *git_dir
;
2573 if (validate_submodule_path(submodule
) < 0)
2577 strbuf_addstr(buf
, submodule
);
2578 strbuf_complete(buf
, '/');
2579 strbuf_addstr(buf
, ".git");
2581 git_dir
= read_gitfile(buf
->buf
);
2584 strbuf_addstr(buf
, git_dir
);
2586 if (!is_git_directory(buf
->buf
)) {
2587 sub
= submodule_from_path(the_repository
, null_oid(),
2594 submodule_name_to_gitdir(buf
, the_repository
, sub
->name
);
2601 void submodule_name_to_gitdir(struct strbuf
*buf
, struct repository
*r
,
2602 const char *submodule_name
)
2605 * NEEDSWORK: The current way of mapping a submodule's name to
2606 * its location in .git/modules/ has problems with some naming
2607 * schemes. For example, if a submodule is named "foo" and
2608 * another is named "foo/bar" (whether present in the same
2609 * superproject commit or not - the problem will arise if both
2610 * superproject commits have been checked out at any point in
2611 * time), or if two submodule names only have different cases in
2612 * a case-insensitive filesystem.
2614 * There are several solutions, including encoding the path in
2615 * some way, introducing a submodule.<name>.gitdir config in
2616 * .git/config (not .gitmodules) that allows overriding what the
2617 * gitdir of a submodule would be (and teach Git, upon noticing
2618 * a clash, to automatically determine a non-clashing name and
2619 * to write such a config), or introducing a
2620 * submodule.<name>.gitdir config in .gitmodules that repo
2621 * administrators can explicitly set. Nothing has been decided,
2622 * so for now, just append the name at the end of the path.
2624 strbuf_repo_git_path(buf
, r
, "modules/");
2625 strbuf_addstr(buf
, submodule_name
);