3 #include "repository.h"
5 #include "submodule-config.h"
11 #include "run-command.h"
14 #include "string-list.h"
15 #include "oid-array.h"
16 #include "argv-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(const 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
,
196 key
= xstrfmt("submodule.%s.ignore", submodule
->name
);
197 if (repo_config_get_string_const(the_repository
, key
, &ignore
))
198 ignore
= submodule
->ignore
;
202 handle_ignore_submodules_arg(diffopt
, ignore
);
203 else if (is_gitmodules_unmerged(the_repository
->index
))
204 diffopt
->flags
.ignore_submodules
= 1;
208 /* Cheap function that only determines if we're interested in submodules at all */
209 int git_default_submodule_config(const char *var
, const char *value
, void *cb
)
211 if (!strcmp(var
, "submodule.recurse")) {
212 int v
= git_config_bool(var
, value
) ?
213 RECURSE_SUBMODULES_ON
: RECURSE_SUBMODULES_OFF
;
214 config_update_recurse_submodules
= v
;
219 int option_parse_recurse_submodules_worktree_updater(const struct option
*opt
,
220 const char *arg
, int unset
)
223 config_update_recurse_submodules
= RECURSE_SUBMODULES_OFF
;
227 config_update_recurse_submodules
=
228 parse_update_recurse_submodules_arg(opt
->long_name
,
231 config_update_recurse_submodules
= RECURSE_SUBMODULES_ON
;
237 * Determine if a submodule has been initialized at a given 'path'
239 int is_submodule_active(struct repository
*repo
, const char *path
)
244 const struct string_list
*sl
;
245 const struct submodule
*module
;
247 module
= submodule_from_path(repo
, &null_oid
, path
);
249 /* early return if there isn't a path->module mapping */
253 /* submodule.<name>.active is set */
254 key
= xstrfmt("submodule.%s.active", module
->name
);
255 if (!repo_config_get_bool(repo
, key
, &ret
)) {
261 /* submodule.active is set */
262 sl
= repo_config_get_value_multi(repo
, "submodule.active");
265 struct argv_array args
= ARGV_ARRAY_INIT
;
266 const struct string_list_item
*item
;
268 for_each_string_list_item(item
, sl
) {
269 argv_array_push(&args
, item
->string
);
272 parse_pathspec(&ps
, 0, 0, NULL
, args
.argv
);
273 ret
= match_pathspec(repo
->index
, &ps
, path
, strlen(path
), 0, NULL
, 1);
275 argv_array_clear(&args
);
280 /* fallback to checking if the URL is set */
281 key
= xstrfmt("submodule.%s.url", module
->name
);
282 ret
= !repo_config_get_string(repo
, key
, &value
);
289 int is_submodule_populated_gently(const char *path
, int *return_error_code
)
292 char *gitdir
= xstrfmt("%s/.git", path
);
294 if (resolve_gitdir_gently(gitdir
, return_error_code
))
302 * Dies if the provided 'prefix' corresponds to an unpopulated submodule
304 void die_in_unpopulated_submodule(const struct index_state
*istate
,
312 prefixlen
= strlen(prefix
);
314 for (i
= 0; i
< istate
->cache_nr
; i
++) {
315 struct cache_entry
*ce
= istate
->cache
[i
];
316 int ce_len
= ce_namelen(ce
);
318 if (!S_ISGITLINK(ce
->ce_mode
))
320 if (prefixlen
<= ce_len
)
322 if (strncmp(ce
->name
, prefix
, ce_len
))
324 if (prefix
[ce_len
] != '/')
327 die(_("in unpopulated submodule '%s'"), ce
->name
);
332 * Dies if any paths in the provided pathspec descends into a submodule
334 void die_path_inside_submodule(const struct index_state
*istate
,
335 const struct pathspec
*ps
)
339 for (i
= 0; i
< istate
->cache_nr
; i
++) {
340 struct cache_entry
*ce
= istate
->cache
[i
];
341 int ce_len
= ce_namelen(ce
);
343 if (!S_ISGITLINK(ce
->ce_mode
))
346 for (j
= 0; j
< ps
->nr
; j
++) {
347 const struct pathspec_item
*item
= &ps
->items
[j
];
349 if (item
->len
<= ce_len
)
351 if (item
->match
[ce_len
] != '/')
353 if (strncmp(ce
->name
, item
->match
, ce_len
))
355 if (item
->len
== ce_len
+ 1)
358 die(_("Pathspec '%s' is in submodule '%.*s'"),
359 item
->original
, ce_len
, ce
->name
);
364 enum submodule_update_type
parse_submodule_update_type(const char *value
)
366 if (!strcmp(value
, "none"))
367 return SM_UPDATE_NONE
;
368 else if (!strcmp(value
, "checkout"))
369 return SM_UPDATE_CHECKOUT
;
370 else if (!strcmp(value
, "rebase"))
371 return SM_UPDATE_REBASE
;
372 else if (!strcmp(value
, "merge"))
373 return SM_UPDATE_MERGE
;
374 else if (*value
== '!')
375 return SM_UPDATE_COMMAND
;
377 return SM_UPDATE_UNSPECIFIED
;
380 int parse_submodule_update_strategy(const char *value
,
381 struct submodule_update_strategy
*dst
)
383 enum submodule_update_type type
;
385 free((void*)dst
->command
);
388 type
= parse_submodule_update_type(value
);
389 if (type
== SM_UPDATE_UNSPECIFIED
)
393 if (type
== SM_UPDATE_COMMAND
)
394 dst
->command
= xstrdup(value
+ 1);
399 const char *submodule_strategy_to_string(const struct submodule_update_strategy
*s
)
401 struct strbuf sb
= STRBUF_INIT
;
403 case SM_UPDATE_CHECKOUT
:
405 case SM_UPDATE_MERGE
:
407 case SM_UPDATE_REBASE
:
411 case SM_UPDATE_UNSPECIFIED
:
413 case SM_UPDATE_COMMAND
:
414 strbuf_addf(&sb
, "!%s", s
->command
);
415 return strbuf_detach(&sb
, NULL
);
420 void handle_ignore_submodules_arg(struct diff_options
*diffopt
,
423 diffopt
->flags
.ignore_submodules
= 0;
424 diffopt
->flags
.ignore_untracked_in_submodules
= 0;
425 diffopt
->flags
.ignore_dirty_submodules
= 0;
427 if (!strcmp(arg
, "all"))
428 diffopt
->flags
.ignore_submodules
= 1;
429 else if (!strcmp(arg
, "untracked"))
430 diffopt
->flags
.ignore_untracked_in_submodules
= 1;
431 else if (!strcmp(arg
, "dirty"))
432 diffopt
->flags
.ignore_dirty_submodules
= 1;
433 else if (strcmp(arg
, "none"))
434 die(_("bad --ignore-submodules argument: %s"), arg
);
436 * Please update _git_status() in git-completion.bash when you
441 static int prepare_submodule_summary(struct rev_info
*rev
, const char *path
,
442 struct commit
*left
, struct commit
*right
,
443 struct commit_list
*merge_bases
)
445 struct commit_list
*list
;
447 repo_init_revisions(the_repository
, rev
, NULL
);
448 setup_revisions(0, NULL
, rev
, NULL
);
450 rev
->first_parent_only
= 1;
451 left
->object
.flags
|= SYMMETRIC_LEFT
;
452 add_pending_object(rev
, &left
->object
, path
);
453 add_pending_object(rev
, &right
->object
, path
);
454 for (list
= merge_bases
; list
; list
= list
->next
) {
455 list
->item
->object
.flags
|= UNINTERESTING
;
456 add_pending_object(rev
, &list
->item
->object
,
457 oid_to_hex(&list
->item
->object
.oid
));
459 return prepare_revision_walk(rev
);
462 static void print_submodule_summary(struct repository
*r
, struct rev_info
*rev
, struct diff_options
*o
)
464 static const char format
[] = " %m %s";
465 struct strbuf sb
= STRBUF_INIT
;
466 struct commit
*commit
;
468 while ((commit
= get_revision(rev
))) {
469 struct pretty_print_context ctx
= {0};
470 ctx
.date_mode
= rev
->date_mode
;
471 ctx
.output_encoding
= get_log_output_encoding();
472 strbuf_setlen(&sb
, 0);
473 repo_format_commit_message(r
, commit
, format
, &sb
,
475 strbuf_addch(&sb
, '\n');
476 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
477 diff_emit_submodule_del(o
, sb
.buf
);
479 diff_emit_submodule_add(o
, sb
.buf
);
484 static void prepare_submodule_repo_env_no_git_dir(struct argv_array
*out
)
486 const char * const *var
;
488 for (var
= local_repo_env
; *var
; var
++) {
489 if (strcmp(*var
, CONFIG_DATA_ENVIRONMENT
))
490 argv_array_push(out
, *var
);
494 void prepare_submodule_repo_env(struct argv_array
*out
)
496 prepare_submodule_repo_env_no_git_dir(out
);
497 argv_array_pushf(out
, "%s=%s", GIT_DIR_ENVIRONMENT
,
498 DEFAULT_GIT_DIR_ENVIRONMENT
);
501 static void prepare_submodule_repo_env_in_gitdir(struct argv_array
*out
)
503 prepare_submodule_repo_env_no_git_dir(out
);
504 argv_array_pushf(out
, "%s=.", GIT_DIR_ENVIRONMENT
);
508 * Initialize a repository struct for a submodule based on the provided 'path'.
510 * Unlike repo_submodule_init, this tolerates submodules not present
511 * in .gitmodules. This function exists only to preserve historical behavior,
513 * Returns the repository struct on success,
514 * NULL when the submodule is not present.
516 static struct repository
*open_submodule(const char *path
)
518 struct strbuf sb
= STRBUF_INIT
;
519 struct repository
*out
= xmalloc(sizeof(*out
));
521 if (submodule_to_gitdir(&sb
, path
) || repo_init(out
, sb
.buf
, NULL
)) {
527 /* Mark it as a submodule */
528 out
->submodule_prefix
= xstrdup(path
);
535 * Helper function to display the submodule header line prior to the full
538 * If it can locate the submodule git directory it will create a repository
539 * handle for the submodule and lookup both the left and right commits and
540 * put them into the left and right pointers.
542 static void show_submodule_header(struct diff_options
*o
,
544 struct object_id
*one
, struct object_id
*two
,
545 unsigned dirty_submodule
,
546 struct repository
*sub
,
547 struct commit
**left
, struct commit
**right
,
548 struct commit_list
**merge_bases
)
550 const char *message
= NULL
;
551 struct strbuf sb
= STRBUF_INIT
;
552 int fast_forward
= 0, fast_backward
= 0;
554 if (dirty_submodule
& DIRTY_SUBMODULE_UNTRACKED
)
555 diff_emit_submodule_untracked(o
, path
);
557 if (dirty_submodule
& DIRTY_SUBMODULE_MODIFIED
)
558 diff_emit_submodule_modified(o
, path
);
560 if (is_null_oid(one
))
561 message
= "(new submodule)";
562 else if (is_null_oid(two
))
563 message
= "(submodule deleted)";
567 message
= "(commits not present)";
572 * Attempt to lookup the commit references, and determine if this is
573 * a fast forward or fast backwards update.
575 *left
= lookup_commit_reference(sub
, one
);
576 *right
= lookup_commit_reference(sub
, two
);
579 * Warn about missing commits in the submodule project, but only if
582 if ((!is_null_oid(one
) && !*left
) ||
583 (!is_null_oid(two
) && !*right
))
584 message
= "(commits not present)";
586 *merge_bases
= repo_get_merge_bases(sub
, *left
, *right
);
588 if ((*merge_bases
)->item
== *left
)
590 else if ((*merge_bases
)->item
== *right
)
594 if (oideq(one
, two
)) {
600 strbuf_addf(&sb
, "Submodule %s ", path
);
601 strbuf_add_unique_abbrev(&sb
, one
, DEFAULT_ABBREV
);
602 strbuf_addstr(&sb
, (fast_backward
|| fast_forward
) ? ".." : "...");
603 strbuf_add_unique_abbrev(&sb
, two
, DEFAULT_ABBREV
);
605 strbuf_addf(&sb
, " %s\n", message
);
607 strbuf_addf(&sb
, "%s:\n", fast_backward
? " (rewind)" : "");
608 diff_emit_submodule_header(o
, sb
.buf
);
613 void show_submodule_summary(struct diff_options
*o
, const char *path
,
614 struct object_id
*one
, struct object_id
*two
,
615 unsigned dirty_submodule
)
618 struct commit
*left
= NULL
, *right
= NULL
;
619 struct commit_list
*merge_bases
= NULL
;
620 struct repository
*sub
;
622 sub
= open_submodule(path
);
623 show_submodule_header(o
, path
, one
, two
, dirty_submodule
,
624 sub
, &left
, &right
, &merge_bases
);
627 * If we don't have both a left and a right pointer, there is no
628 * reason to try and display a summary. The header line should contain
629 * all the information the user needs.
631 if (!left
|| !right
|| !sub
)
634 /* Treat revision walker failure the same as missing commits */
635 if (prepare_submodule_summary(&rev
, path
, left
, right
, merge_bases
)) {
636 diff_emit_submodule_error(o
, "(revision walker failed)\n");
640 print_submodule_summary(sub
, &rev
, o
);
644 free_commit_list(merge_bases
);
645 clear_commit_marks(left
, ~0);
646 clear_commit_marks(right
, ~0);
653 void show_submodule_inline_diff(struct diff_options
*o
, const char *path
,
654 struct object_id
*one
, struct object_id
*two
,
655 unsigned dirty_submodule
)
657 const struct object_id
*old_oid
= the_hash_algo
->empty_tree
, *new_oid
= the_hash_algo
->empty_tree
;
658 struct commit
*left
= NULL
, *right
= NULL
;
659 struct commit_list
*merge_bases
= NULL
;
660 struct child_process cp
= CHILD_PROCESS_INIT
;
661 struct strbuf sb
= STRBUF_INIT
;
662 struct repository
*sub
;
664 sub
= open_submodule(path
);
665 show_submodule_header(o
, path
, one
, two
, dirty_submodule
,
666 sub
, &left
, &right
, &merge_bases
);
668 /* We need a valid left and right commit to display a difference */
669 if (!(left
|| is_null_oid(one
)) ||
670 !(right
|| is_null_oid(two
)))
683 /* TODO: other options may need to be passed here. */
684 argv_array_pushl(&cp
.args
, "diff", "--submodule=diff", NULL
);
685 argv_array_pushf(&cp
.args
, "--color=%s", want_color(o
->use_color
) ?
688 if (o
->flags
.reverse_diff
) {
689 argv_array_pushf(&cp
.args
, "--src-prefix=%s%s/",
691 argv_array_pushf(&cp
.args
, "--dst-prefix=%s%s/",
694 argv_array_pushf(&cp
.args
, "--src-prefix=%s%s/",
696 argv_array_pushf(&cp
.args
, "--dst-prefix=%s%s/",
699 argv_array_push(&cp
.args
, oid_to_hex(old_oid
));
701 * If the submodule has modified content, we will diff against the
702 * work tree, under the assumption that the user has asked for the
703 * diff format and wishes to actually see all differences even if they
704 * haven't yet been committed to the submodule yet.
706 if (!(dirty_submodule
& DIRTY_SUBMODULE_MODIFIED
))
707 argv_array_push(&cp
.args
, oid_to_hex(new_oid
));
709 prepare_submodule_repo_env(&cp
.env_array
);
710 if (start_command(&cp
))
711 diff_emit_submodule_error(o
, "(diff failed)\n");
713 while (strbuf_getwholeline_fd(&sb
, cp
.out
, '\n') != EOF
)
714 diff_emit_submodule_pipethrough(o
, sb
.buf
, sb
.len
);
716 if (finish_command(&cp
))
717 diff_emit_submodule_error(o
, "(diff failed)\n");
722 free_commit_list(merge_bases
);
724 clear_commit_marks(left
, ~0);
726 clear_commit_marks(right
, ~0);
733 int should_update_submodules(void)
735 return config_update_recurse_submodules
== RECURSE_SUBMODULES_ON
;
738 const struct submodule
*submodule_from_ce(const struct cache_entry
*ce
)
740 if (!S_ISGITLINK(ce
->ce_mode
))
743 if (!should_update_submodules())
746 return submodule_from_path(the_repository
, &null_oid
, ce
->name
);
749 static struct oid_array
*submodule_commits(struct string_list
*submodules
,
752 struct string_list_item
*item
;
754 item
= string_list_insert(submodules
, name
);
756 return (struct oid_array
*) item
->util
;
758 /* NEEDSWORK: should we have oid_array_init()? */
759 item
->util
= xcalloc(1, sizeof(struct oid_array
));
760 return (struct oid_array
*) item
->util
;
763 struct collect_changed_submodules_cb_data
{
764 struct repository
*repo
;
765 struct string_list
*changed
;
766 const struct object_id
*commit_oid
;
770 * this would normally be two functions: default_name_from_path() and
771 * path_from_default_name(). Since the default name is the same as
772 * the submodule path we can get away with just one function which only
773 * checks whether there is a submodule in the working directory at that
776 static const char *default_name_or_path(const char *path_or_name
)
780 if (!is_submodule_populated_gently(path_or_name
, &error_code
))
786 static void collect_changed_submodules_cb(struct diff_queue_struct
*q
,
787 struct diff_options
*options
,
790 struct collect_changed_submodules_cb_data
*me
= data
;
791 struct string_list
*changed
= me
->changed
;
792 const struct object_id
*commit_oid
= me
->commit_oid
;
795 for (i
= 0; i
< q
->nr
; i
++) {
796 struct diff_filepair
*p
= q
->queue
[i
];
797 struct oid_array
*commits
;
798 const struct submodule
*submodule
;
801 if (!S_ISGITLINK(p
->two
->mode
))
804 submodule
= submodule_from_path(me
->repo
,
805 commit_oid
, p
->two
->path
);
807 name
= submodule
->name
;
809 name
= default_name_or_path(p
->two
->path
);
810 /* make sure name does not collide with existing one */
812 submodule
= submodule_from_name(me
->repo
,
815 warning(_("Submodule in commit %s at path: "
816 "'%s' collides with a submodule named "
817 "the same. Skipping it."),
818 oid_to_hex(commit_oid
), p
->two
->path
);
826 commits
= submodule_commits(changed
, name
);
827 oid_array_append(commits
, &p
->two
->oid
);
832 * Collect the paths of submodules in 'changed' which have changed based on
833 * the revisions as specified in 'argv'. Each entry in 'changed' will also
834 * have a corresponding 'struct oid_array' (in the 'util' field) which lists
835 * what the submodule pointers were updated to during the change.
837 static void collect_changed_submodules(struct repository
*r
,
838 struct string_list
*changed
,
839 struct argv_array
*argv
)
842 const struct commit
*commit
;
844 repo_init_revisions(r
, &rev
, NULL
);
845 setup_revisions(argv
->argc
, argv
->argv
, &rev
, NULL
);
846 if (prepare_revision_walk(&rev
))
847 die(_("revision walk setup failed"));
849 while ((commit
= get_revision(&rev
))) {
850 struct rev_info diff_rev
;
851 struct collect_changed_submodules_cb_data data
;
853 data
.changed
= changed
;
854 data
.commit_oid
= &commit
->object
.oid
;
856 repo_init_revisions(r
, &diff_rev
, NULL
);
857 diff_rev
.diffopt
.output_format
|= DIFF_FORMAT_CALLBACK
;
858 diff_rev
.diffopt
.format_callback
= collect_changed_submodules_cb
;
859 diff_rev
.diffopt
.format_callback_data
= &data
;
860 diff_tree_combined_merge(commit
, 1, &diff_rev
);
863 reset_revision_walk();
866 static void free_submodules_oids(struct string_list
*submodules
)
868 struct string_list_item
*item
;
869 for_each_string_list_item(item
, submodules
)
870 oid_array_clear((struct oid_array
*) item
->util
);
871 string_list_clear(submodules
, 1);
874 static int has_remote(const char *refname
, const struct object_id
*oid
,
875 int flags
, void *cb_data
)
880 static int append_oid_to_argv(const struct object_id
*oid
, void *data
)
882 struct argv_array
*argv
= data
;
883 argv_array_push(argv
, oid_to_hex(oid
));
887 struct has_commit_data
{
888 struct repository
*repo
;
893 static int check_has_commit(const struct object_id
*oid
, void *data
)
895 struct has_commit_data
*cb
= data
;
897 enum object_type type
= oid_object_info(cb
->repo
, oid
, NULL
);
904 * Object is missing or invalid. If invalid, an error message
905 * has already been printed.
910 die(_("submodule entry '%s' (%s) is a %s, not a commit"),
911 cb
->path
, oid_to_hex(oid
), type_name(type
));
915 static int submodule_has_commits(struct repository
*r
,
917 struct oid_array
*commits
)
919 struct has_commit_data has_commit
= { r
, 1, path
};
922 * Perform a cheap, but incorrect check for the existence of 'commits'.
923 * This is done by adding the submodule's object store to the in-core
924 * object store, and then querying for each commit's existence. If we
925 * do not have the commit object anywhere, there is no chance we have
926 * it in the object store of the correct submodule and have it
927 * reachable from a ref, so we can fail early without spawning rev-list
928 * which is expensive.
930 if (add_submodule_odb(path
))
933 oid_array_for_each_unique(commits
, check_has_commit
, &has_commit
);
935 if (has_commit
.result
) {
937 * Even if the submodule is checked out and the commit is
938 * present, make sure it exists in the submodule's object store
939 * and that it is reachable from a ref.
941 struct child_process cp
= CHILD_PROCESS_INIT
;
942 struct strbuf out
= STRBUF_INIT
;
944 argv_array_pushl(&cp
.args
, "rev-list", "-n", "1", NULL
);
945 oid_array_for_each_unique(commits
, append_oid_to_argv
, &cp
.args
);
946 argv_array_pushl(&cp
.args
, "--not", "--all", NULL
);
948 prepare_submodule_repo_env(&cp
.env_array
);
953 if (capture_command(&cp
, &out
, GIT_MAX_HEXSZ
+ 1) || out
.len
)
954 has_commit
.result
= 0;
956 strbuf_release(&out
);
959 return has_commit
.result
;
962 static int submodule_needs_pushing(struct repository
*r
,
964 struct oid_array
*commits
)
966 if (!submodule_has_commits(r
, path
, commits
))
968 * NOTE: We do consider it safe to return "no" here. The
969 * correct answer would be "We do not know" instead of
970 * "No push needed", but it is quite hard to change
971 * the submodule pointer without having the submodule
972 * around. If a user did however change the submodules
973 * without having the submodule around, this indicates
974 * an expert who knows what they are doing or a
975 * maintainer integrating work from other people. In
976 * both cases it should be safe to skip this check.
980 if (for_each_remote_ref_submodule(path
, has_remote
, NULL
) > 0) {
981 struct child_process cp
= CHILD_PROCESS_INIT
;
982 struct strbuf buf
= STRBUF_INIT
;
983 int needs_pushing
= 0;
985 argv_array_push(&cp
.args
, "rev-list");
986 oid_array_for_each_unique(commits
, append_oid_to_argv
, &cp
.args
);
987 argv_array_pushl(&cp
.args
, "--not", "--remotes", "-n", "1" , NULL
);
989 prepare_submodule_repo_env(&cp
.env_array
);
994 if (start_command(&cp
))
995 die(_("Could not run 'git rev-list <commits> --not --remotes -n 1' command in submodule %s"),
997 if (strbuf_read(&buf
, cp
.out
, the_hash_algo
->hexsz
+ 1))
1001 strbuf_release(&buf
);
1002 return needs_pushing
;
1008 int find_unpushed_submodules(struct repository
*r
,
1009 struct oid_array
*commits
,
1010 const char *remotes_name
,
1011 struct string_list
*needs_pushing
)
1013 struct string_list submodules
= STRING_LIST_INIT_DUP
;
1014 struct string_list_item
*name
;
1015 struct argv_array argv
= ARGV_ARRAY_INIT
;
1017 /* argv.argv[0] will be ignored by setup_revisions */
1018 argv_array_push(&argv
, "find_unpushed_submodules");
1019 oid_array_for_each_unique(commits
, append_oid_to_argv
, &argv
);
1020 argv_array_push(&argv
, "--not");
1021 argv_array_pushf(&argv
, "--remotes=%s", remotes_name
);
1023 collect_changed_submodules(r
, &submodules
, &argv
);
1025 for_each_string_list_item(name
, &submodules
) {
1026 struct oid_array
*commits
= name
->util
;
1027 const struct submodule
*submodule
;
1028 const char *path
= NULL
;
1030 submodule
= submodule_from_name(r
, &null_oid
, name
->string
);
1032 path
= submodule
->path
;
1034 path
= default_name_or_path(name
->string
);
1039 if (submodule_needs_pushing(r
, path
, commits
))
1040 string_list_insert(needs_pushing
, path
);
1043 free_submodules_oids(&submodules
);
1044 argv_array_clear(&argv
);
1046 return needs_pushing
->nr
;
1049 static int push_submodule(const char *path
,
1050 const struct remote
*remote
,
1051 const struct refspec
*rs
,
1052 const struct string_list
*push_options
,
1055 if (for_each_remote_ref_submodule(path
, has_remote
, NULL
) > 0) {
1056 struct child_process cp
= CHILD_PROCESS_INIT
;
1057 argv_array_push(&cp
.args
, "push");
1059 argv_array_push(&cp
.args
, "--dry-run");
1061 if (push_options
&& push_options
->nr
) {
1062 const struct string_list_item
*item
;
1063 for_each_string_list_item(item
, push_options
)
1064 argv_array_pushf(&cp
.args
, "--push-option=%s",
1068 if (remote
->origin
!= REMOTE_UNCONFIGURED
) {
1070 argv_array_push(&cp
.args
, remote
->name
);
1071 for (i
= 0; i
< rs
->raw_nr
; i
++)
1072 argv_array_push(&cp
.args
, rs
->raw
[i
]);
1075 prepare_submodule_repo_env(&cp
.env_array
);
1079 if (run_command(&cp
))
1088 * Perform a check in the submodule to see if the remote and refspec work.
1089 * Die if the submodule can't be pushed.
1091 static void submodule_push_check(const char *path
, const char *head
,
1092 const struct remote
*remote
,
1093 const struct refspec
*rs
)
1095 struct child_process cp
= CHILD_PROCESS_INIT
;
1098 argv_array_push(&cp
.args
, "submodule--helper");
1099 argv_array_push(&cp
.args
, "push-check");
1100 argv_array_push(&cp
.args
, head
);
1101 argv_array_push(&cp
.args
, remote
->name
);
1103 for (i
= 0; i
< rs
->raw_nr
; i
++)
1104 argv_array_push(&cp
.args
, rs
->raw
[i
]);
1106 prepare_submodule_repo_env(&cp
.env_array
);
1113 * Simply indicate if 'submodule--helper push-check' failed.
1114 * More detailed error information will be provided by the
1117 if (run_command(&cp
))
1118 die(_("process for submodule '%s' failed"), path
);
1121 int push_unpushed_submodules(struct repository
*r
,
1122 struct oid_array
*commits
,
1123 const struct remote
*remote
,
1124 const struct refspec
*rs
,
1125 const struct string_list
*push_options
,
1129 struct string_list needs_pushing
= STRING_LIST_INIT_DUP
;
1131 if (!find_unpushed_submodules(r
, commits
,
1132 remote
->name
, &needs_pushing
))
1136 * Verify that the remote and refspec can be propagated to all
1137 * submodules. This check can be skipped if the remote and refspec
1138 * won't be propagated due to the remote being unconfigured (e.g. a URL
1139 * instead of a remote name).
1141 if (remote
->origin
!= REMOTE_UNCONFIGURED
) {
1143 struct object_id head_oid
;
1145 head
= resolve_refdup("HEAD", 0, &head_oid
, NULL
);
1147 die(_("Failed to resolve HEAD as a valid ref."));
1149 for (i
= 0; i
< needs_pushing
.nr
; i
++)
1150 submodule_push_check(needs_pushing
.items
[i
].string
,
1155 /* Actually push the submodules */
1156 for (i
= 0; i
< needs_pushing
.nr
; i
++) {
1157 const char *path
= needs_pushing
.items
[i
].string
;
1158 fprintf(stderr
, _("Pushing submodule '%s'\n"), path
);
1159 if (!push_submodule(path
, remote
, rs
,
1160 push_options
, dry_run
)) {
1161 fprintf(stderr
, _("Unable to push submodule '%s'\n"), path
);
1166 string_list_clear(&needs_pushing
, 0);
1171 static int append_oid_to_array(const char *ref
, const struct object_id
*oid
,
1172 int flags
, void *data
)
1174 struct oid_array
*array
= data
;
1175 oid_array_append(array
, oid
);
1179 void check_for_new_submodule_commits(struct object_id
*oid
)
1181 if (!initialized_fetch_ref_tips
) {
1182 for_each_ref(append_oid_to_array
, &ref_tips_before_fetch
);
1183 initialized_fetch_ref_tips
= 1;
1186 oid_array_append(&ref_tips_after_fetch
, oid
);
1189 static void calculate_changed_submodule_paths(struct repository
*r
,
1190 struct string_list
*changed_submodule_names
)
1192 struct argv_array argv
= ARGV_ARRAY_INIT
;
1193 struct string_list_item
*name
;
1195 /* No need to check if there are no submodules configured */
1196 if (!submodule_from_path(r
, NULL
, NULL
))
1199 argv_array_push(&argv
, "--"); /* argv[0] program name */
1200 oid_array_for_each_unique(&ref_tips_after_fetch
,
1201 append_oid_to_argv
, &argv
);
1202 argv_array_push(&argv
, "--not");
1203 oid_array_for_each_unique(&ref_tips_before_fetch
,
1204 append_oid_to_argv
, &argv
);
1207 * Collect all submodules (whether checked out or not) for which new
1208 * commits have been recorded upstream in "changed_submodule_names".
1210 collect_changed_submodules(r
, changed_submodule_names
, &argv
);
1212 for_each_string_list_item(name
, changed_submodule_names
) {
1213 struct oid_array
*commits
= name
->util
;
1214 const struct submodule
*submodule
;
1215 const char *path
= NULL
;
1217 submodule
= submodule_from_name(r
, &null_oid
, name
->string
);
1219 path
= submodule
->path
;
1221 path
= default_name_or_path(name
->string
);
1226 if (submodule_has_commits(r
, path
, commits
)) {
1227 oid_array_clear(commits
);
1228 *name
->string
= '\0';
1232 string_list_remove_empty_items(changed_submodule_names
, 1);
1234 argv_array_clear(&argv
);
1235 oid_array_clear(&ref_tips_before_fetch
);
1236 oid_array_clear(&ref_tips_after_fetch
);
1237 initialized_fetch_ref_tips
= 0;
1240 int submodule_touches_in_range(struct repository
*r
,
1241 struct object_id
*excl_oid
,
1242 struct object_id
*incl_oid
)
1244 struct string_list subs
= STRING_LIST_INIT_DUP
;
1245 struct argv_array args
= ARGV_ARRAY_INIT
;
1248 /* No need to check if there are no submodules configured */
1249 if (!submodule_from_path(r
, NULL
, NULL
))
1252 argv_array_push(&args
, "--"); /* args[0] program name */
1253 argv_array_push(&args
, oid_to_hex(incl_oid
));
1254 if (!is_null_oid(excl_oid
)) {
1255 argv_array_push(&args
, "--not");
1256 argv_array_push(&args
, oid_to_hex(excl_oid
));
1259 collect_changed_submodules(r
, &subs
, &args
);
1262 argv_array_clear(&args
);
1264 free_submodules_oids(&subs
);
1268 struct submodule_parallel_fetch
{
1270 struct argv_array args
;
1271 struct repository
*r
;
1273 int command_line_option
;
1278 struct string_list changed_submodule_names
;
1280 /* Pending fetches by OIDs */
1281 struct fetch_task
**oid_fetch_tasks
;
1282 int oid_fetch_tasks_nr
, oid_fetch_tasks_alloc
;
1284 struct strbuf submodules_with_errors
;
1286 #define SPF_INIT {0, ARGV_ARRAY_INIT, NULL, NULL, 0, 0, 0, 0, \
1287 STRING_LIST_INIT_DUP, \
1288 NULL, 0, 0, STRBUF_INIT}
1290 static int get_fetch_recurse_config(const struct submodule
*submodule
,
1291 struct submodule_parallel_fetch
*spf
)
1293 if (spf
->command_line_option
!= RECURSE_SUBMODULES_DEFAULT
)
1294 return spf
->command_line_option
;
1300 int fetch_recurse
= submodule
->fetch_recurse
;
1301 key
= xstrfmt("submodule.%s.fetchRecurseSubmodules", submodule
->name
);
1302 if (!repo_config_get_string_const(spf
->r
, key
, &value
)) {
1303 fetch_recurse
= parse_fetch_recurse_submodules_arg(key
, value
);
1307 if (fetch_recurse
!= RECURSE_SUBMODULES_NONE
)
1308 /* local config overrules everything except commandline */
1309 return fetch_recurse
;
1312 return spf
->default_option
;
1316 * Fetch in progress (if callback data) or
1317 * pending (if in oid_fetch_tasks in struct submodule_parallel_fetch)
1320 struct repository
*repo
;
1321 const struct submodule
*sub
;
1322 unsigned free_sub
: 1; /* Do we need to free the submodule? */
1324 struct oid_array
*commits
; /* Ensure these commits are fetched */
1328 * When a submodule is not defined in .gitmodules, we cannot access it
1329 * via the regular submodule-config. Create a fake submodule, which we can
1332 static const struct submodule
*get_non_gitmodules_submodule(const char *path
)
1334 struct submodule
*ret
= NULL
;
1335 const char *name
= default_name_or_path(path
);
1340 ret
= xmalloc(sizeof(*ret
));
1341 memset(ret
, 0, sizeof(*ret
));
1345 return (const struct submodule
*) ret
;
1348 static struct fetch_task
*fetch_task_create(struct repository
*r
,
1351 struct fetch_task
*task
= xmalloc(sizeof(*task
));
1352 memset(task
, 0, sizeof(*task
));
1354 task
->sub
= submodule_from_path(r
, &null_oid
, path
);
1357 * No entry in .gitmodules? Technically not a submodule,
1358 * but historically we supported repositories that happen to be
1359 * in-place where a gitlink is. Keep supporting them.
1361 task
->sub
= get_non_gitmodules_submodule(path
);
1373 static void fetch_task_release(struct fetch_task
*p
)
1376 free((void*)p
->sub
);
1381 repo_clear(p
->repo
);
1382 FREE_AND_NULL(p
->repo
);
1385 static struct repository
*get_submodule_repo_for(struct repository
*r
,
1386 const struct submodule
*sub
)
1388 struct repository
*ret
= xmalloc(sizeof(*ret
));
1390 if (repo_submodule_init(ret
, r
, sub
)) {
1392 * No entry in .gitmodules? Technically not a submodule,
1393 * but historically we supported repositories that happen to be
1394 * in-place where a gitlink is. Keep supporting them.
1396 struct strbuf gitdir
= STRBUF_INIT
;
1397 strbuf_repo_worktree_path(&gitdir
, r
, "%s/.git", sub
->path
);
1398 if (repo_init(ret
, gitdir
.buf
, NULL
)) {
1399 strbuf_release(&gitdir
);
1403 strbuf_release(&gitdir
);
1409 static int get_next_submodule(struct child_process
*cp
,
1410 struct strbuf
*err
, void *data
, void **task_cb
)
1412 struct submodule_parallel_fetch
*spf
= data
;
1414 for (; spf
->count
< spf
->r
->index
->cache_nr
; spf
->count
++) {
1415 const struct cache_entry
*ce
= spf
->r
->index
->cache
[spf
->count
];
1416 const char *default_argv
;
1417 struct fetch_task
*task
;
1419 if (!S_ISGITLINK(ce
->ce_mode
))
1422 task
= fetch_task_create(spf
->r
, ce
->name
);
1426 switch (get_fetch_recurse_config(task
->sub
, spf
))
1429 case RECURSE_SUBMODULES_DEFAULT
:
1430 case RECURSE_SUBMODULES_ON_DEMAND
:
1432 !string_list_lookup(
1433 &spf
->changed_submodule_names
,
1436 default_argv
= "on-demand";
1438 case RECURSE_SUBMODULES_ON
:
1439 default_argv
= "yes";
1441 case RECURSE_SUBMODULES_OFF
:
1445 task
->repo
= get_submodule_repo_for(spf
->r
, task
->sub
);
1447 struct strbuf submodule_prefix
= STRBUF_INIT
;
1448 child_process_init(cp
);
1449 cp
->dir
= task
->repo
->gitdir
;
1450 prepare_submodule_repo_env_in_gitdir(&cp
->env_array
);
1453 strbuf_addf(err
, _("Fetching submodule %s%s\n"),
1454 spf
->prefix
, ce
->name
);
1455 argv_array_init(&cp
->args
);
1456 argv_array_pushv(&cp
->args
, spf
->args
.argv
);
1457 argv_array_push(&cp
->args
, default_argv
);
1458 argv_array_push(&cp
->args
, "--submodule-prefix");
1460 strbuf_addf(&submodule_prefix
, "%s%s/",
1463 argv_array_push(&cp
->args
, submodule_prefix
.buf
);
1468 strbuf_release(&submodule_prefix
);
1472 fetch_task_release(task
);
1476 * An empty directory is normal,
1477 * the submodule is not initialized
1479 if (S_ISGITLINK(ce
->ce_mode
) &&
1480 !is_empty_dir(ce
->name
)) {
1483 _("Could not access submodule '%s'\n"),
1489 if (spf
->oid_fetch_tasks_nr
) {
1490 struct fetch_task
*task
=
1491 spf
->oid_fetch_tasks
[spf
->oid_fetch_tasks_nr
- 1];
1492 struct strbuf submodule_prefix
= STRBUF_INIT
;
1493 spf
->oid_fetch_tasks_nr
--;
1495 strbuf_addf(&submodule_prefix
, "%s%s/",
1496 spf
->prefix
, task
->sub
->path
);
1498 child_process_init(cp
);
1499 prepare_submodule_repo_env_in_gitdir(&cp
->env_array
);
1501 cp
->dir
= task
->repo
->gitdir
;
1503 argv_array_init(&cp
->args
);
1504 argv_array_pushv(&cp
->args
, spf
->args
.argv
);
1505 argv_array_push(&cp
->args
, "on-demand");
1506 argv_array_push(&cp
->args
, "--submodule-prefix");
1507 argv_array_push(&cp
->args
, submodule_prefix
.buf
);
1509 /* NEEDSWORK: have get_default_remote from submodule--helper */
1510 argv_array_push(&cp
->args
, "origin");
1511 oid_array_for_each_unique(task
->commits
,
1512 append_oid_to_argv
, &cp
->args
);
1515 strbuf_release(&submodule_prefix
);
1522 static int fetch_start_failure(struct strbuf
*err
,
1523 void *cb
, void *task_cb
)
1525 struct submodule_parallel_fetch
*spf
= cb
;
1526 struct fetch_task
*task
= task_cb
;
1530 fetch_task_release(task
);
1534 static int commit_missing_in_sub(const struct object_id
*oid
, void *data
)
1536 struct repository
*subrepo
= data
;
1538 enum object_type type
= oid_object_info(subrepo
, oid
, NULL
);
1540 return type
!= OBJ_COMMIT
;
1543 static int fetch_finish(int retvalue
, struct strbuf
*err
,
1544 void *cb
, void *task_cb
)
1546 struct submodule_parallel_fetch
*spf
= cb
;
1547 struct fetch_task
*task
= task_cb
;
1549 struct string_list_item
*it
;
1550 struct oid_array
*commits
;
1552 if (!task
|| !task
->sub
)
1553 BUG("callback cookie bogus");
1557 * NEEDSWORK: This indicates that the overall fetch
1558 * failed, even though there may be a subsequent fetch
1559 * by commit hash that might work. It may be a good
1560 * idea to not indicate failure in this case, and only
1561 * indicate failure if the subsequent fetch fails.
1565 strbuf_addf(&spf
->submodules_with_errors
, "\t%s\n",
1569 /* Is this the second time we process this submodule? */
1573 it
= string_list_lookup(&spf
->changed_submodule_names
, task
->sub
->name
);
1575 /* Could be an unchanged submodule, not contained in the list */
1579 oid_array_filter(commits
,
1580 commit_missing_in_sub
,
1583 /* Are there commits we want, but do not exist? */
1585 task
->commits
= commits
;
1586 ALLOC_GROW(spf
->oid_fetch_tasks
,
1587 spf
->oid_fetch_tasks_nr
+ 1,
1588 spf
->oid_fetch_tasks_alloc
);
1589 spf
->oid_fetch_tasks
[spf
->oid_fetch_tasks_nr
] = task
;
1590 spf
->oid_fetch_tasks_nr
++;
1595 fetch_task_release(task
);
1600 int fetch_populated_submodules(struct repository
*r
,
1601 const struct argv_array
*options
,
1602 const char *prefix
, int command_line_option
,
1604 int quiet
, int max_parallel_jobs
)
1607 struct submodule_parallel_fetch spf
= SPF_INIT
;
1610 spf
.command_line_option
= command_line_option
;
1611 spf
.default_option
= default_option
;
1613 spf
.prefix
= prefix
;
1618 if (repo_read_index(r
) < 0)
1619 die(_("index file corrupt"));
1621 argv_array_push(&spf
.args
, "fetch");
1622 for (i
= 0; i
< options
->argc
; i
++)
1623 argv_array_push(&spf
.args
, options
->argv
[i
]);
1624 argv_array_push(&spf
.args
, "--recurse-submodules-default");
1625 /* default value, "--submodule-prefix" and its value are added later */
1627 calculate_changed_submodule_paths(r
, &spf
.changed_submodule_names
);
1628 string_list_sort(&spf
.changed_submodule_names
);
1629 run_processes_parallel_tr2(max_parallel_jobs
,
1631 fetch_start_failure
,
1634 "submodule", "parallel/fetch");
1636 if (spf
.submodules_with_errors
.len
> 0)
1637 fprintf(stderr
, _("Errors during submodule fetch:\n%s"),
1638 spf
.submodules_with_errors
.buf
);
1641 argv_array_clear(&spf
.args
);
1643 free_submodules_oids(&spf
.changed_submodule_names
);
1647 unsigned is_submodule_modified(const char *path
, int ignore_untracked
)
1649 struct child_process cp
= CHILD_PROCESS_INIT
;
1650 struct strbuf buf
= STRBUF_INIT
;
1652 unsigned dirty_submodule
= 0;
1653 const char *git_dir
;
1654 int ignore_cp_exit_code
= 0;
1656 strbuf_addf(&buf
, "%s/.git", path
);
1657 git_dir
= read_gitfile(buf
.buf
);
1660 if (!is_git_directory(git_dir
)) {
1661 if (is_directory(git_dir
))
1662 die(_("'%s' not recognized as a git repository"), git_dir
);
1663 strbuf_release(&buf
);
1664 /* The submodule is not checked out, so it is not modified */
1669 argv_array_pushl(&cp
.args
, "status", "--porcelain=2", NULL
);
1670 if (ignore_untracked
)
1671 argv_array_push(&cp
.args
, "-uno");
1673 prepare_submodule_repo_env(&cp
.env_array
);
1678 if (start_command(&cp
))
1679 die(_("Could not run 'git status --porcelain=2' in submodule %s"), path
);
1681 fp
= xfdopen(cp
.out
, "r");
1682 while (strbuf_getwholeline(&buf
, fp
, '\n') != EOF
) {
1683 /* regular untracked files */
1684 if (buf
.buf
[0] == '?')
1685 dirty_submodule
|= DIRTY_SUBMODULE_UNTRACKED
;
1687 if (buf
.buf
[0] == 'u' ||
1688 buf
.buf
[0] == '1' ||
1689 buf
.buf
[0] == '2') {
1690 /* T = line type, XY = status, SSSS = submodule state */
1691 if (buf
.len
< strlen("T XY SSSS"))
1692 BUG("invalid status --porcelain=2 line %s",
1695 if (buf
.buf
[5] == 'S' && buf
.buf
[8] == 'U')
1696 /* nested untracked file */
1697 dirty_submodule
|= DIRTY_SUBMODULE_UNTRACKED
;
1699 if (buf
.buf
[0] == 'u' ||
1700 buf
.buf
[0] == '2' ||
1701 memcmp(buf
.buf
+ 5, "S..U", 4))
1703 dirty_submodule
|= DIRTY_SUBMODULE_MODIFIED
;
1706 if ((dirty_submodule
& DIRTY_SUBMODULE_MODIFIED
) &&
1707 ((dirty_submodule
& DIRTY_SUBMODULE_UNTRACKED
) ||
1708 ignore_untracked
)) {
1710 * We're not interested in any further information from
1711 * the child any more, neither output nor its exit code.
1713 ignore_cp_exit_code
= 1;
1719 if (finish_command(&cp
) && !ignore_cp_exit_code
)
1720 die(_("'git status --porcelain=2' failed in submodule %s"), path
);
1722 strbuf_release(&buf
);
1723 return dirty_submodule
;
1726 int submodule_uses_gitfile(const char *path
)
1728 struct child_process cp
= CHILD_PROCESS_INIT
;
1729 const char *argv
[] = {
1737 struct strbuf buf
= STRBUF_INIT
;
1738 const char *git_dir
;
1740 strbuf_addf(&buf
, "%s/.git", path
);
1741 git_dir
= read_gitfile(buf
.buf
);
1743 strbuf_release(&buf
);
1746 strbuf_release(&buf
);
1748 /* Now test that all nested submodules use a gitfile too */
1750 prepare_submodule_repo_env(&cp
.env_array
);
1756 if (run_command(&cp
))
1763 * Check if it is a bad idea to remove a submodule, i.e. if we'd lose data
1766 * Return 1 if we'd lose data, return 0 if the removal is fine,
1767 * and negative values for errors.
1769 int bad_to_remove_submodule(const char *path
, unsigned flags
)
1772 struct child_process cp
= CHILD_PROCESS_INIT
;
1773 struct strbuf buf
= STRBUF_INIT
;
1776 if (!file_exists(path
) || is_empty_dir(path
))
1779 if (!submodule_uses_gitfile(path
))
1782 argv_array_pushl(&cp
.args
, "status", "--porcelain",
1783 "--ignore-submodules=none", NULL
);
1785 if (flags
& SUBMODULE_REMOVAL_IGNORE_UNTRACKED
)
1786 argv_array_push(&cp
.args
, "-uno");
1788 argv_array_push(&cp
.args
, "-uall");
1790 if (!(flags
& SUBMODULE_REMOVAL_IGNORE_IGNORED_UNTRACKED
))
1791 argv_array_push(&cp
.args
, "--ignored");
1793 prepare_submodule_repo_env(&cp
.env_array
);
1798 if (start_command(&cp
)) {
1799 if (flags
& SUBMODULE_REMOVAL_DIE_ON_ERROR
)
1800 die(_("could not start 'git status' in submodule '%s'"),
1806 len
= strbuf_read(&buf
, cp
.out
, 1024);
1811 if (finish_command(&cp
)) {
1812 if (flags
& SUBMODULE_REMOVAL_DIE_ON_ERROR
)
1813 die(_("could not run 'git status' in submodule '%s'"),
1818 strbuf_release(&buf
);
1822 void submodule_unset_core_worktree(const struct submodule
*sub
)
1824 char *config_path
= xstrfmt("%s/modules/%s/config",
1825 get_git_dir(), sub
->name
);
1827 if (git_config_set_in_file_gently(config_path
, "core.worktree", NULL
))
1828 warning(_("Could not unset core.worktree setting in submodule '%s'"),
1834 static const char *get_super_prefix_or_empty(void)
1836 const char *s
= get_super_prefix();
1842 static int submodule_has_dirty_index(const struct submodule
*sub
)
1844 struct child_process cp
= CHILD_PROCESS_INIT
;
1846 prepare_submodule_repo_env(&cp
.env_array
);
1849 argv_array_pushl(&cp
.args
, "diff-index", "--quiet",
1850 "--cached", "HEAD", NULL
);
1854 if (start_command(&cp
))
1855 die(_("could not recurse into submodule '%s'"), sub
->path
);
1857 return finish_command(&cp
);
1860 static void submodule_reset_index(const char *path
)
1862 struct child_process cp
= CHILD_PROCESS_INIT
;
1863 prepare_submodule_repo_env(&cp
.env_array
);
1869 argv_array_pushf(&cp
.args
, "--super-prefix=%s%s/",
1870 get_super_prefix_or_empty(), path
);
1871 argv_array_pushl(&cp
.args
, "read-tree", "-u", "--reset", NULL
);
1873 argv_array_push(&cp
.args
, empty_tree_oid_hex());
1875 if (run_command(&cp
))
1876 die(_("could not reset submodule index"));
1880 * Moves a submodule at a given path from a given head to another new head.
1881 * For edge cases (a submodule coming into existence or removing a submodule)
1882 * pass NULL for old or new respectively.
1884 int submodule_move_head(const char *path
,
1885 const char *old_head
,
1886 const char *new_head
,
1890 struct child_process cp
= CHILD_PROCESS_INIT
;
1891 const struct submodule
*sub
;
1892 int *error_code_ptr
, error_code
;
1894 if (!is_submodule_active(the_repository
, path
))
1897 if (flags
& SUBMODULE_MOVE_HEAD_FORCE
)
1899 * Pass non NULL pointer to is_submodule_populated_gently
1900 * to prevent die()-ing. We'll use connect_work_tree_and_git_dir
1901 * to fixup the submodule in the force case later.
1903 error_code_ptr
= &error_code
;
1905 error_code_ptr
= NULL
;
1907 if (old_head
&& !is_submodule_populated_gently(path
, error_code_ptr
))
1910 sub
= submodule_from_path(the_repository
, &null_oid
, path
);
1913 BUG("could not get submodule information for '%s'", path
);
1915 if (old_head
&& !(flags
& SUBMODULE_MOVE_HEAD_FORCE
)) {
1916 /* Check if the submodule has a dirty index. */
1917 if (submodule_has_dirty_index(sub
))
1918 return error(_("submodule '%s' has dirty index"), path
);
1921 if (!(flags
& SUBMODULE_MOVE_HEAD_DRY_RUN
)) {
1923 if (!submodule_uses_gitfile(path
))
1924 absorb_git_dir_into_superproject(path
,
1925 ABSORB_GITDIR_RECURSE_SUBMODULES
);
1927 char *gitdir
= xstrfmt("%s/modules/%s",
1928 get_git_dir(), sub
->name
);
1929 connect_work_tree_and_git_dir(path
, gitdir
, 0);
1932 /* make sure the index is clean as well */
1933 submodule_reset_index(path
);
1936 if (old_head
&& (flags
& SUBMODULE_MOVE_HEAD_FORCE
)) {
1937 char *gitdir
= xstrfmt("%s/modules/%s",
1938 get_git_dir(), sub
->name
);
1939 connect_work_tree_and_git_dir(path
, gitdir
, 1);
1944 prepare_submodule_repo_env(&cp
.env_array
);
1950 argv_array_pushf(&cp
.args
, "--super-prefix=%s%s/",
1951 get_super_prefix_or_empty(), path
);
1952 argv_array_pushl(&cp
.args
, "read-tree", "--recurse-submodules", NULL
);
1954 if (flags
& SUBMODULE_MOVE_HEAD_DRY_RUN
)
1955 argv_array_push(&cp
.args
, "-n");
1957 argv_array_push(&cp
.args
, "-u");
1959 if (flags
& SUBMODULE_MOVE_HEAD_FORCE
)
1960 argv_array_push(&cp
.args
, "--reset");
1962 argv_array_push(&cp
.args
, "-m");
1964 if (!(flags
& SUBMODULE_MOVE_HEAD_FORCE
))
1965 argv_array_push(&cp
.args
, old_head
? old_head
: empty_tree_oid_hex());
1967 argv_array_push(&cp
.args
, new_head
? new_head
: empty_tree_oid_hex());
1969 if (run_command(&cp
)) {
1970 ret
= error(_("Submodule '%s' could not be updated."), path
);
1974 if (!(flags
& SUBMODULE_MOVE_HEAD_DRY_RUN
)) {
1976 child_process_init(&cp
);
1977 /* also set the HEAD accordingly */
1982 prepare_submodule_repo_env(&cp
.env_array
);
1983 argv_array_pushl(&cp
.args
, "update-ref", "HEAD",
1984 "--no-deref", new_head
, NULL
);
1986 if (run_command(&cp
)) {
1991 struct strbuf sb
= STRBUF_INIT
;
1993 strbuf_addf(&sb
, "%s/.git", path
);
1994 unlink_or_warn(sb
.buf
);
1995 strbuf_release(&sb
);
1997 if (is_empty_dir(path
))
1998 rmdir_or_warn(path
);
2000 submodule_unset_core_worktree(sub
);
2007 int validate_submodule_git_dir(char *git_dir
, const char *submodule_name
)
2009 size_t len
= strlen(git_dir
), suffix_len
= strlen(submodule_name
);
2013 if (len
<= suffix_len
|| (p
= git_dir
+ len
- suffix_len
)[-1] != '/' ||
2014 strcmp(p
, submodule_name
))
2015 BUG("submodule name '%s' not a suffix of git dir '%s'",
2016 submodule_name
, git_dir
);
2019 * We prevent the contents of sibling submodules' git directories to
2022 * Example: having a submodule named `hippo` and another one named
2023 * `hippo/hooks` would result in the git directories
2024 * `.git/modules/hippo/` and `.git/modules/hippo/hooks/`, respectively,
2025 * but the latter directory is already designated to contain the hooks
2029 if (is_dir_sep(*p
)) {
2033 if (is_git_directory(git_dir
))
2038 return error(_("submodule git dir '%s' is "
2039 "inside git dir '%.*s'"),
2041 (int)(p
- git_dir
), git_dir
);
2049 * Embeds a single submodules git directory into the superprojects git dir,
2052 static void relocate_single_git_dir_into_superproject(const char *path
)
2054 char *old_git_dir
= NULL
, *real_old_git_dir
= NULL
, *real_new_git_dir
= NULL
;
2056 const struct submodule
*sub
;
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
);
2089 free(real_old_git_dir
);
2090 free(real_new_git_dir
);
2094 * Migrate the git directory of the submodule given by path from
2095 * having its git directory within the working tree to the git dir nested
2096 * in its superprojects git dir under modules/.
2098 void absorb_git_dir_into_superproject(const char *path
,
2102 const char *sub_git_dir
;
2103 struct strbuf gitdir
= STRBUF_INIT
;
2104 strbuf_addf(&gitdir
, "%s/.git", path
);
2105 sub_git_dir
= resolve_gitdir_gently(gitdir
.buf
, &err_code
);
2107 /* Not populated? */
2109 const struct submodule
*sub
;
2111 if (err_code
== READ_GITFILE_ERR_STAT_FAILED
) {
2112 /* unpopulated as expected */
2113 strbuf_release(&gitdir
);
2117 if (err_code
!= READ_GITFILE_ERR_NOT_A_REPO
)
2118 /* We don't know what broke here. */
2119 read_gitfile_error_die(err_code
, path
, NULL
);
2122 * Maybe populated, but no git directory was found?
2123 * This can happen if the superproject is a submodule
2124 * itself and was just absorbed. The absorption of the
2125 * superproject did not rewrite the git file links yet,
2128 sub
= submodule_from_path(the_repository
, &null_oid
, path
);
2130 die(_("could not lookup name for submodule '%s'"), path
);
2131 connect_work_tree_and_git_dir(path
,
2132 git_path("modules/%s", sub
->name
), 0);
2134 /* Is it already absorbed into the superprojects git dir? */
2135 char *real_sub_git_dir
= real_pathdup(sub_git_dir
, 1);
2136 char *real_common_git_dir
= real_pathdup(get_git_common_dir(), 1);
2138 if (!starts_with(real_sub_git_dir
, real_common_git_dir
))
2139 relocate_single_git_dir_into_superproject(path
);
2141 free(real_sub_git_dir
);
2142 free(real_common_git_dir
);
2144 strbuf_release(&gitdir
);
2146 if (flags
& ABSORB_GITDIR_RECURSE_SUBMODULES
) {
2147 struct child_process cp
= CHILD_PROCESS_INIT
;
2148 struct strbuf sb
= STRBUF_INIT
;
2150 if (flags
& ~ABSORB_GITDIR_RECURSE_SUBMODULES
)
2151 BUG("we don't know how to pass the flags down?");
2153 strbuf_addstr(&sb
, get_super_prefix_or_empty());
2154 strbuf_addstr(&sb
, path
);
2155 strbuf_addch(&sb
, '/');
2160 argv_array_pushl(&cp
.args
, "--super-prefix", sb
.buf
,
2161 "submodule--helper",
2162 "absorb-git-dirs", NULL
);
2163 prepare_submodule_repo_env(&cp
.env_array
);
2164 if (run_command(&cp
))
2165 die(_("could not recurse into submodule '%s'"), path
);
2167 strbuf_release(&sb
);
2171 int get_superproject_working_tree(struct strbuf
*buf
)
2173 struct child_process cp
= CHILD_PROCESS_INIT
;
2174 struct strbuf sb
= STRBUF_INIT
;
2175 struct strbuf one_up
= STRBUF_INIT
;
2176 const char *cwd
= xgetcwd();
2178 const char *subpath
;
2182 if (!is_inside_work_tree())
2185 * We might have a superproject, but it is harder
2190 if (!strbuf_realpath(&one_up
, "../", 0))
2193 subpath
= relative_path(cwd
, one_up
.buf
, &sb
);
2194 strbuf_release(&one_up
);
2196 prepare_submodule_repo_env(&cp
.env_array
);
2197 argv_array_pop(&cp
.env_array
);
2199 argv_array_pushl(&cp
.args
, "--literal-pathspecs", "-C", "..",
2200 "ls-files", "-z", "--stage", "--full-name", "--",
2209 if (start_command(&cp
))
2210 die(_("could not start ls-files in .."));
2212 len
= strbuf_read(&sb
, cp
.out
, PATH_MAX
);
2215 if (starts_with(sb
.buf
, "160000")) {
2217 int cwd_len
= strlen(cwd
);
2218 char *super_sub
, *super_wt
;
2221 * There is a superproject having this repo as a submodule.
2222 * The format is <mode> SP <hash> SP <stage> TAB <full name> \0,
2223 * We're only interested in the name after the tab.
2225 super_sub
= strchr(sb
.buf
, '\t') + 1;
2226 super_sub_len
= strlen(super_sub
);
2228 if (super_sub_len
> cwd_len
||
2229 strcmp(&cwd
[cwd_len
- super_sub_len
], super_sub
))
2230 BUG("returned path string doesn't match cwd?");
2232 super_wt
= xstrdup(cwd
);
2233 super_wt
[cwd_len
- super_sub_len
] = '\0';
2235 strbuf_realpath(buf
, super_wt
, 1);
2239 strbuf_release(&sb
);
2241 code
= finish_command(&cp
);
2244 /* '../' is not a git repository */
2246 if (code
== 0 && len
== 0)
2247 /* There is an unrelated git repository at '../' */
2250 die(_("ls-tree returned unexpected return code %d"), code
);
2256 * Put the gitdir for a submodule (given relative to the main
2257 * repository worktree) into `buf`, or return -1 on error.
2259 int submodule_to_gitdir(struct strbuf
*buf
, const char *submodule
)
2261 const struct submodule
*sub
;
2262 const char *git_dir
;
2266 strbuf_addstr(buf
, submodule
);
2267 strbuf_complete(buf
, '/');
2268 strbuf_addstr(buf
, ".git");
2270 git_dir
= read_gitfile(buf
->buf
);
2273 strbuf_addstr(buf
, git_dir
);
2275 if (!is_git_directory(buf
->buf
)) {
2276 sub
= submodule_from_path(the_repository
, &null_oid
, submodule
);
2282 strbuf_git_path(buf
, "%s/%s", "modules", sub
->name
);