]> git.ipfire.org Git - thirdparty/git.git/blame - submodule.c
submodule: add repo_read_gitmodules
[thirdparty/git.git] / submodule.c
CommitLineData
752c0c24 1#include "cache.h"
69aba532 2#include "repository.h"
b2141fc1 3#include "config.h"
851e18c3 4#include "submodule-config.h"
752c0c24
JS
5#include "submodule.h"
6#include "dir.h"
7#include "diff.h"
8#include "commit.h"
9#include "revision.h"
ee6fc514 10#include "run-command.h"
c7e1a736 11#include "diffcore.h"
68d03e4a 12#include "refs.h"
aee9c7d6 13#include "string-list.h"
6859de45 14#include "sha1-array.h"
c1189cae 15#include "argv-array.h"
5fee9952 16#include "blob.h"
fe85ee6e 17#include "thread-utils.h"
4638728c 18#include "quote.h"
06bf4ad1 19#include "remote.h"
f6f85861 20#include "worktree.h"
046b4823 21#include "parse-options.h"
aee9c7d6 22
88a21979 23static int config_fetch_recurse_submodules = RECURSE_SUBMODULES_ON_DEMAND;
d7a3803f 24static int config_update_recurse_submodules = RECURSE_SUBMODULES_OFF;
a028a193 25static int parallel_jobs = 1;
a6bb78c3 26static struct string_list changed_submodule_paths = STRING_LIST_INIT_DUP;
6859de45 27static int initialized_fetch_ref_tips;
910650d2 28static struct oid_array ref_tips_before_fetch;
29static struct oid_array ref_tips_after_fetch;
6859de45 30
d4e98b58
JL
31/*
32 * The following flag is set if the .gitmodules file is unmerged. We then
33 * disable recursion for all submodules where .git/config doesn't have a
34 * matching config entry because we can't guess what might be configured in
35 * .gitmodules unless the user resolves the conflict. When a command line
36 * option is given (which always overrides configuration) this flag will be
37 * ignored.
38 */
39static int gitmodules_is_unmerged;
752c0c24 40
5fee9952
JL
41/*
42 * This flag is set if the .gitmodules file had unstaged modifications on
43 * startup. This must be checked before allowing modifications to the
44 * .gitmodules file with the intention to stage them later, because when
45 * continuing we would stage the modifications the user didn't stage herself
46 * too. That might change in a future version when we learn to stage the
47 * changes we do ourselves without staging any previous modifications.
48 */
49static int gitmodules_is_modified;
50
5fee9952
JL
51int is_staging_gitmodules_ok(void)
52{
53 return !gitmodules_is_modified;
54}
55
0656781f
JL
56/*
57 * Try to update the "path" entry in the "submodule.<name>" section of the
58 * .gitmodules file. Return 0 only if a .gitmodules file was found, a section
59 * with the correct path=<oldpath> setting was found and we could update it.
60 */
61int update_path_in_gitmodules(const char *oldpath, const char *newpath)
62{
63 struct strbuf entry = STRBUF_INIT;
851e18c3 64 const struct submodule *submodule;
0656781f
JL
65
66 if (!file_exists(".gitmodules")) /* Do nothing without .gitmodules */
67 return -1;
68
69 if (gitmodules_is_unmerged)
70 die(_("Cannot change unmerged .gitmodules, resolve merge conflicts first"));
71
851e18c3
HV
72 submodule = submodule_from_path(null_sha1, oldpath);
73 if (!submodule || !submodule->name) {
0656781f
JL
74 warning(_("Could not find section in .gitmodules where path=%s"), oldpath);
75 return -1;
76 }
77 strbuf_addstr(&entry, "submodule.");
851e18c3 78 strbuf_addstr(&entry, submodule->name);
0656781f 79 strbuf_addstr(&entry, ".path");
30598ad0 80 if (git_config_set_in_file_gently(".gitmodules", entry.buf, newpath) < 0) {
0656781f
JL
81 /* Maybe the user already did that, don't error out here */
82 warning(_("Could not update .gitmodules entry %s"), entry.buf);
83 strbuf_release(&entry);
84 return -1;
85 }
86 strbuf_release(&entry);
87 return 0;
88}
89
95c16418
JL
90/*
91 * Try to remove the "submodule.<name>" section from .gitmodules where the given
92 * path is configured. Return 0 only if a .gitmodules file was found, a section
93 * with the correct path=<path> setting was found and we could remove it.
94 */
95int remove_path_from_gitmodules(const char *path)
96{
97 struct strbuf sect = STRBUF_INIT;
851e18c3 98 const struct submodule *submodule;
95c16418
JL
99
100 if (!file_exists(".gitmodules")) /* Do nothing without .gitmodules */
101 return -1;
102
103 if (gitmodules_is_unmerged)
104 die(_("Cannot change unmerged .gitmodules, resolve merge conflicts first"));
105
851e18c3
HV
106 submodule = submodule_from_path(null_sha1, path);
107 if (!submodule || !submodule->name) {
95c16418
JL
108 warning(_("Could not find section in .gitmodules where path=%s"), path);
109 return -1;
110 }
111 strbuf_addstr(&sect, "submodule.");
851e18c3 112 strbuf_addstr(&sect, submodule->name);
95c16418
JL
113 if (git_config_rename_section_in_file(".gitmodules", sect.buf, NULL) < 0) {
114 /* Maybe the user already did that, don't error out here */
115 warning(_("Could not remove .gitmodules entry for %s"), path);
116 strbuf_release(&sect);
117 return -1;
118 }
119 strbuf_release(&sect);
120 return 0;
121}
122
5fee9952
JL
123void stage_updated_gitmodules(void)
124{
bc8d6b9b 125 if (add_file_to_cache(".gitmodules", 0))
5fee9952
JL
126 die(_("staging updated .gitmodules failed"));
127}
128
cb58c932 129static int add_submodule_odb(const char *path)
752c0c24
JS
130{
131 struct strbuf objects_directory = STRBUF_INIT;
de7a7960 132 int ret = 0;
752c0c24 133
99b43a61
JK
134 ret = strbuf_git_path_submodule(&objects_directory, path, "objects/");
135 if (ret)
136 goto done;
de7a7960
JL
137 if (!is_directory(objects_directory.buf)) {
138 ret = -1;
139 goto done;
140 }
a5b34d21 141 add_to_alternates_memory(objects_directory.buf);
de7a7960
JL
142done:
143 strbuf_release(&objects_directory);
144 return ret;
752c0c24
JS
145}
146
aee9c7d6
JL
147void set_diffopt_flags_from_submodule_config(struct diff_options *diffopt,
148 const char *path)
149{
851e18c3
HV
150 const struct submodule *submodule = submodule_from_path(null_sha1, path);
151 if (submodule) {
152 if (submodule->ignore)
153 handle_ignore_submodules_arg(diffopt, submodule->ignore);
d4e98b58
JL
154 else if (gitmodules_is_unmerged)
155 DIFF_OPT_SET(diffopt, IGNORE_SUBMODULES);
aee9c7d6
JL
156 }
157}
158
1d789d08
SB
159/* For loading from the .gitmodules file. */
160static int git_modules_config(const char *var, const char *value, void *cb)
302ad7a9 161{
a028a193
SB
162 if (!strcmp(var, "submodule.fetchjobs")) {
163 parallel_jobs = git_config_int(var, value);
164 if (parallel_jobs < 0)
165 die(_("negative values not allowed for submodule.fetchJobs"));
166 return 0;
167 } else if (starts_with(var, "submodule."))
302ad7a9 168 return parse_submodule_config_option(var, value);
be254a0e 169 else if (!strcmp(var, "fetch.recursesubmodules")) {
1fb25502 170 config_fetch_recurse_submodules = parse_fetch_recurse_submodules_arg(var, value);
be254a0e
JL
171 return 0;
172 }
302ad7a9
JL
173 return 0;
174}
175
046b4823 176/* Loads all submodule settings from the config. */
1d789d08
SB
177int submodule_config(const char *var, const char *value, void *cb)
178{
046b4823
SB
179 if (!strcmp(var, "submodule.recurse")) {
180 int v = git_config_bool(var, value) ?
181 RECURSE_SUBMODULES_ON : RECURSE_SUBMODULES_OFF;
182 config_update_recurse_submodules = v;
183 return 0;
184 } else {
185 return git_modules_config(var, value, cb);
186 }
187}
188
189/* Cheap function that only determines if we're interested in submodules at all */
190int git_default_submodule_config(const char *var, const char *value, void *cb)
191{
192 if (!strcmp(var, "submodule.recurse")) {
193 int v = git_config_bool(var, value) ?
194 RECURSE_SUBMODULES_ON : RECURSE_SUBMODULES_OFF;
195 config_update_recurse_submodules = v;
196 }
197 return 0;
1d789d08
SB
198}
199
d7a3803f
SB
200int option_parse_recurse_submodules_worktree_updater(const struct option *opt,
201 const char *arg, int unset)
202{
203 if (unset) {
204 config_update_recurse_submodules = RECURSE_SUBMODULES_OFF;
205 return 0;
206 }
207 if (arg)
208 config_update_recurse_submodules =
209 parse_update_recurse_submodules_arg(opt->long_name,
210 arg);
211 else
212 config_update_recurse_submodules = RECURSE_SUBMODULES_ON;
213
214 return 0;
215}
216
217void load_submodule_cache(void)
218{
219 if (config_update_recurse_submodules == RECURSE_SUBMODULES_OFF)
220 return;
221
222 gitmodules_config();
223 git_config(submodule_config, NULL);
224}
225
302ad7a9
JL
226void gitmodules_config(void)
227{
228 const char *work_tree = get_git_work_tree();
229 if (work_tree) {
230 struct strbuf gitmodules_path = STRBUF_INIT;
d4e98b58 231 int pos;
302ad7a9
JL
232 strbuf_addstr(&gitmodules_path, work_tree);
233 strbuf_addstr(&gitmodules_path, "/.gitmodules");
d4e98b58
JL
234 if (read_cache() < 0)
235 die("index file corrupt");
236 pos = cache_name_pos(".gitmodules", 11);
237 if (pos < 0) { /* .gitmodules not found or isn't merged */
238 pos = -1 - pos;
239 if (active_nr > pos) { /* there is a .gitmodules */
240 const struct cache_entry *ce = active_cache[pos];
241 if (ce_namelen(ce) == 11 &&
242 !memcmp(ce->name, ".gitmodules", 11))
243 gitmodules_is_unmerged = 1;
244 }
5fee9952
JL
245 } else if (pos < active_nr) {
246 struct stat st;
247 if (lstat(".gitmodules", &st) == 0 &&
248 ce_match_stat(active_cache[pos], &st, 0) & DATA_CHANGED)
249 gitmodules_is_modified = 1;
d4e98b58
JL
250 }
251
252 if (!gitmodules_is_unmerged)
1d789d08
SB
253 git_config_from_file(git_modules_config,
254 gitmodules_path.buf, NULL);
302ad7a9
JL
255 strbuf_release(&gitmodules_path);
256 }
257}
258
69aba532
BW
259static int gitmodules_cb(const char *var, const char *value, void *data)
260{
261 struct repository *repo = data;
262 return submodule_config_option(repo, var, value);
263}
264
265void repo_read_gitmodules(struct repository *repo)
266{
267 char *gitmodules_path = repo_worktree_path(repo, ".gitmodules");
268
269 git_config_from_file(gitmodules_cb, gitmodules_path, repo);
270 free(gitmodules_path);
271}
272
9ebf689a
BW
273void gitmodules_config_sha1(const unsigned char *commit_sha1)
274{
275 struct strbuf rev = STRBUF_INIT;
276 unsigned char sha1[20];
277
278 if (gitmodule_sha1_from_commit(commit_sha1, sha1, &rev)) {
1d789d08 279 git_config_from_blob_sha1(git_modules_config, rev.buf,
9ebf689a
BW
280 sha1, NULL);
281 }
282 strbuf_release(&rev);
283}
284
f9f42560 285/*
a086f921
BW
286 * NEEDSWORK: With the addition of different configuration options to determine
287 * if a submodule is of interests, the validity of this function's name comes
288 * into question. Once the dust has settled and more concrete terminology is
289 * decided upon, come up with a more proper name for this function. One
290 * potential candidate could be 'is_submodule_active()'.
291 *
f9f42560
BW
292 * Determine if a submodule has been initialized at a given 'path'
293 */
294int is_submodule_initialized(const char *path)
295{
296 int ret = 0;
a086f921
BW
297 char *key = NULL;
298 char *value = NULL;
299 const struct string_list *sl;
300 const struct submodule *module = submodule_from_path(null_sha1, path);
f9f42560 301
a086f921
BW
302 /* early return if there isn't a path->module mapping */
303 if (!module)
304 return 0;
f9f42560 305
a086f921
BW
306 /* submodule.<name>.active is set */
307 key = xstrfmt("submodule.%s.active", module->name);
308 if (!git_config_get_bool(key, &ret)) {
309 free(key);
310 return ret;
311 }
312 free(key);
f9f42560 313
a086f921
BW
314 /* submodule.active is set */
315 sl = git_config_get_value_multi("submodule.active");
316 if (sl) {
317 struct pathspec ps;
318 struct argv_array args = ARGV_ARRAY_INIT;
319 const struct string_list_item *item;
f9f42560 320
a086f921
BW
321 for_each_string_list_item(item, sl) {
322 argv_array_push(&args, item->string);
323 }
324
325 parse_pathspec(&ps, 0, 0, NULL, args.argv);
326 ret = match_pathspec(&ps, path, strlen(path), 0, NULL, 1);
327
328 argv_array_clear(&args);
329 clear_pathspec(&ps);
330 return ret;
f9f42560
BW
331 }
332
a086f921
BW
333 /* fallback to checking if the URL is set */
334 key = xstrfmt("submodule.%s.url", module->name);
335 ret = !git_config_get_string(key, &value);
336
337 free(value);
338 free(key);
f9f42560
BW
339 return ret;
340}
341
15cdc647 342int is_submodule_populated_gently(const char *path, int *return_error_code)
5688c28d
BW
343{
344 int ret = 0;
345 char *gitdir = xstrfmt("%s/.git", path);
346
15cdc647 347 if (resolve_gitdir_gently(gitdir, return_error_code))
5688c28d
BW
348 ret = 1;
349
350 free(gitdir);
351 return ret;
352}
353
bdab9721
BW
354/*
355 * Dies if the provided 'prefix' corresponds to an unpopulated submodule
356 */
357void die_in_unpopulated_submodule(const struct index_state *istate,
358 const char *prefix)
359{
360 int i, prefixlen;
361
362 if (!prefix)
363 return;
364
365 prefixlen = strlen(prefix);
366
367 for (i = 0; i < istate->cache_nr; i++) {
368 struct cache_entry *ce = istate->cache[i];
369 int ce_len = ce_namelen(ce);
370
371 if (!S_ISGITLINK(ce->ce_mode))
372 continue;
373 if (prefixlen <= ce_len)
374 continue;
375 if (strncmp(ce->name, prefix, ce_len))
376 continue;
377 if (prefix[ce_len] != '/')
378 continue;
379
380 die(_("in unpopulated submodule '%s'"), ce->name);
381 }
382}
383
c08397e3
BW
384/*
385 * Dies if any paths in the provided pathspec descends into a submodule
386 */
387void die_path_inside_submodule(const struct index_state *istate,
388 const struct pathspec *ps)
389{
390 int i, j;
391
392 for (i = 0; i < istate->cache_nr; i++) {
393 struct cache_entry *ce = istate->cache[i];
394 int ce_len = ce_namelen(ce);
395
396 if (!S_ISGITLINK(ce->ce_mode))
397 continue;
398
399 for (j = 0; j < ps->nr ; j++) {
400 const struct pathspec_item *item = &ps->items[j];
401
402 if (item->len <= ce_len)
403 continue;
404 if (item->match[ce_len] != '/')
405 continue;
406 if (strncmp(ce->name, item->match, ce_len))
407 continue;
408 if (item->len == ce_len + 1)
409 continue;
410
411 die(_("Pathspec '%s' is in submodule '%.*s'"),
412 item->original, ce_len, ce->name);
413 }
414 }
415}
416
ea2fa5a3
SB
417int parse_submodule_update_strategy(const char *value,
418 struct submodule_update_strategy *dst)
419{
420 free((void*)dst->command);
421 dst->command = NULL;
422 if (!strcmp(value, "none"))
423 dst->type = SM_UPDATE_NONE;
424 else if (!strcmp(value, "checkout"))
425 dst->type = SM_UPDATE_CHECKOUT;
426 else if (!strcmp(value, "rebase"))
427 dst->type = SM_UPDATE_REBASE;
428 else if (!strcmp(value, "merge"))
429 dst->type = SM_UPDATE_MERGE;
430 else if (skip_prefix(value, "!", &value)) {
431 dst->type = SM_UPDATE_COMMAND;
432 dst->command = xstrdup(value);
433 } else
434 return -1;
435 return 0;
436}
437
3604242f
SB
438const char *submodule_strategy_to_string(const struct submodule_update_strategy *s)
439{
440 struct strbuf sb = STRBUF_INIT;
441 switch (s->type) {
442 case SM_UPDATE_CHECKOUT:
443 return "checkout";
444 case SM_UPDATE_MERGE:
445 return "merge";
446 case SM_UPDATE_REBASE:
447 return "rebase";
448 case SM_UPDATE_NONE:
449 return "none";
450 case SM_UPDATE_UNSPECIFIED:
451 return NULL;
452 case SM_UPDATE_COMMAND:
453 strbuf_addf(&sb, "!%s", s->command);
454 return strbuf_detach(&sb, NULL);
455 }
456 return NULL;
457}
458
46a958b3
JL
459void handle_ignore_submodules_arg(struct diff_options *diffopt,
460 const char *arg)
461{
be4f2b40
JS
462 DIFF_OPT_CLR(diffopt, IGNORE_SUBMODULES);
463 DIFF_OPT_CLR(diffopt, IGNORE_UNTRACKED_IN_SUBMODULES);
464 DIFF_OPT_CLR(diffopt, IGNORE_DIRTY_SUBMODULES);
465
46a958b3
JL
466 if (!strcmp(arg, "all"))
467 DIFF_OPT_SET(diffopt, IGNORE_SUBMODULES);
468 else if (!strcmp(arg, "untracked"))
469 DIFF_OPT_SET(diffopt, IGNORE_UNTRACKED_IN_SUBMODULES);
470 else if (!strcmp(arg, "dirty"))
471 DIFF_OPT_SET(diffopt, IGNORE_DIRTY_SUBMODULES);
aee9c7d6 472 else if (strcmp(arg, "none"))
46a958b3
JL
473 die("bad --ignore-submodules argument: %s", arg);
474}
475
808a95dc
JN
476static int prepare_submodule_summary(struct rev_info *rev, const char *path,
477 struct commit *left, struct commit *right,
8e6df650 478 struct commit_list *merge_bases)
808a95dc 479{
8e6df650 480 struct commit_list *list;
808a95dc
JN
481
482 init_revisions(rev, NULL);
483 setup_revisions(0, NULL, rev, NULL);
484 rev->left_right = 1;
485 rev->first_parent_only = 1;
486 left->object.flags |= SYMMETRIC_LEFT;
487 add_pending_object(rev, &left->object, path);
488 add_pending_object(rev, &right->object, path);
808a95dc
JN
489 for (list = merge_bases; list; list = list->next) {
490 list->item->object.flags |= UNINTERESTING;
491 add_pending_object(rev, &list->item->object,
f2fd0760 492 oid_to_hex(&list->item->object.oid));
808a95dc
JN
493 }
494 return prepare_revision_walk(rev);
495}
496
497static void print_submodule_summary(struct rev_info *rev, FILE *f,
0f33a067 498 const char *line_prefix,
808a95dc
JN
499 const char *del, const char *add, const char *reset)
500{
501 static const char format[] = " %m %s";
502 struct strbuf sb = STRBUF_INIT;
503 struct commit *commit;
504
505 while ((commit = get_revision(rev))) {
506 struct pretty_print_context ctx = {0};
507 ctx.date_mode = rev->date_mode;
ecaee805 508 ctx.output_encoding = get_log_output_encoding();
808a95dc 509 strbuf_setlen(&sb, 0);
0f33a067 510 strbuf_addstr(&sb, line_prefix);
808a95dc
JN
511 if (commit->object.flags & SYMMETRIC_LEFT) {
512 if (del)
513 strbuf_addstr(&sb, del);
514 }
515 else if (add)
516 strbuf_addstr(&sb, add);
517 format_commit_message(commit, format, &sb, &ctx);
518 if (reset)
519 strbuf_addstr(&sb, reset);
520 strbuf_addch(&sb, '\n');
521 fprintf(f, "%s", sb.buf);
522 }
523 strbuf_release(&sb);
524}
525
6cd5757c
SB
526static void prepare_submodule_repo_env_no_git_dir(struct argv_array *out)
527{
528 const char * const *var;
529
530 for (var = local_repo_env; *var; var++) {
531 if (strcmp(*var, CONFIG_DATA_ENVIRONMENT))
532 argv_array_push(out, *var);
533 }
534}
535
536void prepare_submodule_repo_env(struct argv_array *out)
537{
538 prepare_submodule_repo_env_no_git_dir(out);
539 argv_array_pushf(out, "%s=%s", GIT_DIR_ENVIRONMENT,
540 DEFAULT_GIT_DIR_ENVIRONMENT);
541}
542
8e6df650
JK
543/* Helper function to display the submodule header line prior to the full
544 * summary output. If it can locate the submodule objects directory it will
545 * attempt to lookup both the left and right commits and put them into the
546 * left and right pointers.
547 */
548static void show_submodule_header(FILE *f, const char *path,
0f33a067 549 const char *line_prefix,
602a283a 550 struct object_id *one, struct object_id *two,
4e215131 551 unsigned dirty_submodule, const char *meta,
8e6df650
JK
552 const char *reset,
553 struct commit **left, struct commit **right,
554 struct commit_list **merge_bases)
752c0c24 555{
752c0c24
JS
556 const char *message = NULL;
557 struct strbuf sb = STRBUF_INIT;
752c0c24
JS
558 int fast_forward = 0, fast_backward = 0;
559
c7e1a736 560 if (dirty_submodule & DIRTY_SUBMODULE_UNTRACKED)
0f33a067
JK
561 fprintf(f, "%sSubmodule %s contains untracked content\n",
562 line_prefix, path);
c7e1a736 563 if (dirty_submodule & DIRTY_SUBMODULE_MODIFIED)
0f33a067
JK
564 fprintf(f, "%sSubmodule %s contains modified content\n",
565 line_prefix, path);
c7e1a736 566
8e6df650
JK
567 if (is_null_oid(one))
568 message = "(new submodule)";
569 else if (is_null_oid(two))
570 message = "(submodule deleted)";
571
572 if (add_submodule_odb(path)) {
573 if (!message)
574 message = "(not initialized)";
575 goto output_header;
576 }
577
578 /*
579 * Attempt to lookup the commit references, and determine if this is
580 * a fast forward or fast backwards update.
581 */
bc83266a 582 *left = lookup_commit_reference(one);
583 *right = lookup_commit_reference(two);
8e6df650
JK
584
585 /*
586 * Warn about missing commits in the submodule project, but only if
587 * they aren't null.
588 */
589 if ((!is_null_oid(one) && !*left) ||
590 (!is_null_oid(two) && !*right))
591 message = "(commits not present)";
592
593 *merge_bases = get_merge_bases(*left, *right);
594 if (*merge_bases) {
595 if ((*merge_bases)->item == *left)
596 fast_forward = 1;
597 else if ((*merge_bases)->item == *right)
598 fast_backward = 1;
599 }
600
602a283a 601 if (!oidcmp(one, two)) {
c7e1a736
JL
602 strbuf_release(&sb);
603 return;
604 }
605
8e6df650 606output_header:
a94bb683 607 strbuf_addf(&sb, "%s%sSubmodule %s ", line_prefix, meta, path);
69e65449 608 strbuf_add_unique_abbrev(&sb, one->hash, DEFAULT_ABBREV);
a94bb683 609 strbuf_addstr(&sb, (fast_backward || fast_forward) ? ".." : "...");
f0798e6c 610 strbuf_add_unique_abbrev(&sb, two->hash, DEFAULT_ABBREV);
752c0c24 611 if (message)
4e215131 612 strbuf_addf(&sb, " %s%s\n", message, reset);
752c0c24 613 else
4e215131 614 strbuf_addf(&sb, "%s:%s\n", fast_backward ? " (rewind)" : "", reset);
752c0c24
JS
615 fwrite(sb.buf, sb.len, 1, f);
616
752c0c24
JS
617 strbuf_release(&sb);
618}
ee6fc514 619
8e6df650
JK
620void show_submodule_summary(FILE *f, const char *path,
621 const char *line_prefix,
622 struct object_id *one, struct object_id *two,
623 unsigned dirty_submodule, const char *meta,
624 const char *del, const char *add, const char *reset)
625{
626 struct rev_info rev;
627 struct commit *left = NULL, *right = NULL;
628 struct commit_list *merge_bases = NULL;
629
630 show_submodule_header(f, path, line_prefix, one, two, dirty_submodule,
631 meta, reset, &left, &right, &merge_bases);
632
633 /*
634 * If we don't have both a left and a right pointer, there is no
635 * reason to try and display a summary. The header line should contain
636 * all the information the user needs.
637 */
638 if (!left || !right)
639 goto out;
640
641 /* Treat revision walker failure the same as missing commits */
642 if (prepare_submodule_summary(&rev, path, left, right, merge_bases)) {
643 fprintf(f, "%s(revision walker failed)\n", line_prefix);
644 goto out;
645 }
646
647 print_submodule_summary(&rev, f, line_prefix, del, add, reset);
648
649out:
650 if (merge_bases)
651 free_commit_list(merge_bases);
652 clear_commit_marks(left, ~0);
653 clear_commit_marks(right, ~0);
654}
655
fd47ae6a
JK
656void show_submodule_inline_diff(FILE *f, const char *path,
657 const char *line_prefix,
658 struct object_id *one, struct object_id *two,
659 unsigned dirty_submodule, const char *meta,
660 const char *del, const char *add, const char *reset,
661 const struct diff_options *o)
662{
663 const struct object_id *old = &empty_tree_oid, *new = &empty_tree_oid;
664 struct commit *left = NULL, *right = NULL;
665 struct commit_list *merge_bases = NULL;
666 struct strbuf submodule_dir = STRBUF_INIT;
667 struct child_process cp = CHILD_PROCESS_INIT;
668
669 show_submodule_header(f, path, line_prefix, one, two, dirty_submodule,
670 meta, reset, &left, &right, &merge_bases);
671
672 /* We need a valid left and right commit to display a difference */
673 if (!(left || is_null_oid(one)) ||
674 !(right || is_null_oid(two)))
675 goto done;
676
677 if (left)
678 old = one;
679 if (right)
680 new = two;
681
682 fflush(f);
683 cp.git_cmd = 1;
684 cp.dir = path;
685 cp.out = dup(fileno(f));
686 cp.no_stdin = 1;
687
688 /* TODO: other options may need to be passed here. */
5a522142
SB
689 argv_array_pushl(&cp.args, "diff", "--submodule=diff", NULL);
690
fd47ae6a
JK
691 argv_array_pushf(&cp.args, "--line-prefix=%s", line_prefix);
692 if (DIFF_OPT_TST(o, REVERSE_DIFF)) {
693 argv_array_pushf(&cp.args, "--src-prefix=%s%s/",
694 o->b_prefix, path);
695 argv_array_pushf(&cp.args, "--dst-prefix=%s%s/",
696 o->a_prefix, path);
697 } else {
698 argv_array_pushf(&cp.args, "--src-prefix=%s%s/",
699 o->a_prefix, path);
700 argv_array_pushf(&cp.args, "--dst-prefix=%s%s/",
701 o->b_prefix, path);
702 }
703 argv_array_push(&cp.args, oid_to_hex(old));
704 /*
705 * If the submodule has modified content, we will diff against the
706 * work tree, under the assumption that the user has asked for the
707 * diff format and wishes to actually see all differences even if they
708 * haven't yet been committed to the submodule yet.
709 */
710 if (!(dirty_submodule & DIRTY_SUBMODULE_MODIFIED))
711 argv_array_push(&cp.args, oid_to_hex(new));
712
17b254cd 713 prepare_submodule_repo_env(&cp.env_array);
fd47ae6a
JK
714 if (run_command(&cp))
715 fprintf(f, "(diff failed)\n");
716
717done:
718 strbuf_release(&submodule_dir);
719 if (merge_bases)
720 free_commit_list(merge_bases);
721 if (left)
722 clear_commit_marks(left, ~0);
723 if (right)
724 clear_commit_marks(right, ~0);
725}
726
be254a0e
JL
727void set_config_fetch_recurse_submodules(int value)
728{
729 config_fetch_recurse_submodules = value;
730}
731
84f8925e
SB
732int should_update_submodules(void)
733{
734 return config_update_recurse_submodules == RECURSE_SUBMODULES_ON;
735}
736
737const struct submodule *submodule_from_ce(const struct cache_entry *ce)
738{
739 if (!S_ISGITLINK(ce->ce_mode))
740 return NULL;
741
742 if (!should_update_submodules())
743 return NULL;
744
745 return submodule_from_path(null_sha1, ce->name);
746}
747
aacc5c1a
BW
748static struct oid_array *submodule_commits(struct string_list *submodules,
749 const char *path)
750{
751 struct string_list_item *item;
752
753 item = string_list_insert(submodules, path);
754 if (item->util)
755 return (struct oid_array *) item->util;
756
757 /* NEEDSWORK: should we have oid_array_init()? */
758 item->util = xcalloc(1, sizeof(struct oid_array));
759 return (struct oid_array *) item->util;
760}
761
762static void collect_changed_submodules_cb(struct diff_queue_struct *q,
763 struct diff_options *options,
764 void *data)
765{
766 int i;
767 struct string_list *changed = data;
768
769 for (i = 0; i < q->nr; i++) {
770 struct diff_filepair *p = q->queue[i];
771 struct oid_array *commits;
772 if (!S_ISGITLINK(p->two->mode))
773 continue;
774
775 if (S_ISGITLINK(p->one->mode)) {
776 /*
777 * NEEDSWORK: We should honor the name configured in
778 * the .gitmodules file of the commit we are examining
779 * here to be able to correctly follow submodules
780 * being moved around.
781 */
782 commits = submodule_commits(changed, p->two->path);
783 oid_array_append(commits, &p->two->oid);
784 } else {
785 /* Submodule is new or was moved here */
786 /*
787 * NEEDSWORK: When the .git directories of submodules
788 * live inside the superprojects .git directory some
789 * day we should fetch new submodules directly into
790 * that location too when config or options request
791 * that so they can be checked out from there.
792 */
793 continue;
794 }
795 }
796}
797
798/*
799 * Collect the paths of submodules in 'changed' which have changed based on
800 * the revisions as specified in 'argv'. Each entry in 'changed' will also
801 * have a corresponding 'struct oid_array' (in the 'util' field) which lists
802 * what the submodule pointers were updated to during the change.
803 */
804static void collect_changed_submodules(struct string_list *changed,
805 struct argv_array *argv)
806{
807 struct rev_info rev;
808 const struct commit *commit;
809
810 init_revisions(&rev, NULL);
811 setup_revisions(argv->argc, argv->argv, &rev, NULL);
812 if (prepare_revision_walk(&rev))
813 die("revision walk setup failed");
814
815 while ((commit = get_revision(&rev))) {
816 struct rev_info diff_rev;
817
818 init_revisions(&diff_rev, NULL);
819 diff_rev.diffopt.output_format |= DIFF_FORMAT_CALLBACK;
820 diff_rev.diffopt.format_callback = collect_changed_submodules_cb;
821 diff_rev.diffopt.format_callback_data = changed;
822 diff_tree_combined_merge(commit, 1, &diff_rev);
823 }
824
825 reset_revision_walk();
826}
827
828static void free_submodules_oids(struct string_list *submodules)
829{
830 struct string_list_item *item;
831 for_each_string_list_item(item, submodules)
832 oid_array_clear((struct oid_array *) item->util);
833 string_list_clear(submodules, 1);
834}
835
7290ef58
MH
836static int has_remote(const char *refname, const struct object_id *oid,
837 int flags, void *cb_data)
d2b17b32
FG
838{
839 return 1;
840}
841
1b7ba794 842static int append_oid_to_argv(const struct object_id *oid, void *data)
d2b17b32 843{
9cfa1c26 844 struct argv_array *argv = data;
1b7ba794 845 argv_array_push(argv, oid_to_hex(oid));
9cfa1c26
HV
846 return 0;
847}
848
1b7ba794 849static int check_has_commit(const struct object_id *oid, void *data)
d2b17b32 850{
5b6607d2
HV
851 int *has_commit = data;
852
bc83266a 853 if (!lookup_commit_reference(oid))
5b6607d2
HV
854 *has_commit = 0;
855
856 return 0;
857}
858
910650d2 859static int submodule_has_commits(const char *path, struct oid_array *commits)
5b6607d2
HV
860{
861 int has_commit = 1;
862
7c8d2b00
BW
863 /*
864 * Perform a cheap, but incorrect check for the existance of 'commits'.
865 * This is done by adding the submodule's object store to the in-core
866 * object store, and then querying for each commit's existance. If we
867 * do not have the commit object anywhere, there is no chance we have
868 * it in the object store of the correct submodule and have it
869 * reachable from a ref, so we can fail early without spawning rev-list
870 * which is expensive.
871 */
5b6607d2
HV
872 if (add_submodule_odb(path))
873 return 0;
874
910650d2 875 oid_array_for_each_unique(commits, check_has_commit, &has_commit);
7c8d2b00
BW
876
877 if (has_commit) {
878 /*
879 * Even if the submodule is checked out and the commit is
880 * present, make sure it exists in the submodule's object store
881 * and that it is reachable from a ref.
882 */
883 struct child_process cp = CHILD_PROCESS_INIT;
884 struct strbuf out = STRBUF_INIT;
885
886 argv_array_pushl(&cp.args, "rev-list", "-n", "1", NULL);
887 oid_array_for_each_unique(commits, append_oid_to_argv, &cp.args);
888 argv_array_pushl(&cp.args, "--not", "--all", NULL);
889
890 prepare_submodule_repo_env(&cp.env_array);
891 cp.git_cmd = 1;
892 cp.no_stdin = 1;
893 cp.dir = path;
894
895 if (capture_command(&cp, &out, GIT_MAX_HEXSZ + 1) || out.len)
896 has_commit = 0;
897
898 strbuf_release(&out);
899 }
900
5b6607d2
HV
901 return has_commit;
902}
903
910650d2 904static int submodule_needs_pushing(const char *path, struct oid_array *commits)
5b6607d2
HV
905{
906 if (!submodule_has_commits(path, commits))
250ab24a
HV
907 /*
908 * NOTE: We do consider it safe to return "no" here. The
909 * correct answer would be "We do not know" instead of
910 * "No push needed", but it is quite hard to change
911 * the submodule pointer without having the submodule
912 * around. If a user did however change the submodules
913 * without having the submodule around, this indicates
914 * an expert who knows what they are doing or a
915 * maintainer integrating work from other people. In
916 * both cases it should be safe to skip this check.
917 */
d2b17b32
FG
918 return 0;
919
920 if (for_each_remote_ref_submodule(path, has_remote, NULL) > 0) {
d3180279 921 struct child_process cp = CHILD_PROCESS_INIT;
d2b17b32
FG
922 struct strbuf buf = STRBUF_INIT;
923 int needs_pushing = 0;
924
5b6607d2 925 argv_array_push(&cp.args, "rev-list");
910650d2 926 oid_array_for_each_unique(commits, append_oid_to_argv, &cp.args);
5b6607d2
HV
927 argv_array_pushl(&cp.args, "--not", "--remotes", "-n", "1" , NULL);
928
c12e8656 929 prepare_submodule_repo_env(&cp.env_array);
d2b17b32
FG
930 cp.git_cmd = 1;
931 cp.no_stdin = 1;
932 cp.out = -1;
933 cp.dir = path;
934 if (start_command(&cp))
5b6607d2
HV
935 die("Could not run 'git rev-list <commits> --not --remotes -n 1' command in submodule %s",
936 path);
d2b17b32
FG
937 if (strbuf_read(&buf, cp.out, 41))
938 needs_pushing = 1;
939 finish_command(&cp);
940 close(cp.out);
941 strbuf_release(&buf);
942 return needs_pushing;
943 }
944
945 return 0;
946}
947
910650d2 948int find_unpushed_submodules(struct oid_array *commits,
a762e51e 949 const char *remotes_name, struct string_list *needs_pushing)
d2b17b32 950{
14739447
HV
951 struct string_list submodules = STRING_LIST_INIT_DUP;
952 struct string_list_item *submodule;
9cfa1c26 953 struct argv_array argv = ARGV_ARRAY_INIT;
a762e51e 954
9cfa1c26
HV
955 /* argv.argv[0] will be ignored by setup_revisions */
956 argv_array_push(&argv, "find_unpushed_submodules");
910650d2 957 oid_array_for_each_unique(commits, append_oid_to_argv, &argv);
9cfa1c26
HV
958 argv_array_push(&argv, "--not");
959 argv_array_pushf(&argv, "--remotes=%s", remotes_name);
960
aacc5c1a 961 collect_changed_submodules(&submodules, &argv);
d2b17b32 962
14739447 963 for_each_string_list_item(submodule, &submodules) {
aacc5c1a
BW
964 struct oid_array *commits = submodule->util;
965 const char *path = submodule->string;
5b6607d2 966
aacc5c1a
BW
967 if (submodule_needs_pushing(path, commits))
968 string_list_insert(needs_pushing, path);
14739447 969 }
610b2337
BW
970
971 free_submodules_oids(&submodules);
aacc5c1a 972 argv_array_clear(&argv);
d2b17b32 973
a762e51e 974 return needs_pushing->nr;
d2b17b32
FG
975}
976
2a90556d 977static int push_submodule(const char *path,
06bf4ad1
BW
978 const struct remote *remote,
979 const char **refspec, int refspec_nr,
2a90556d
BW
980 const struct string_list *push_options,
981 int dry_run)
eb21c732
HV
982{
983 if (add_submodule_odb(path))
984 return 1;
985
986 if (for_each_remote_ref_submodule(path, has_remote, NULL) > 0) {
d3180279 987 struct child_process cp = CHILD_PROCESS_INIT;
0301c821
BW
988 argv_array_push(&cp.args, "push");
989 if (dry_run)
990 argv_array_push(&cp.args, "--dry-run");
eb21c732 991
2a90556d
BW
992 if (push_options && push_options->nr) {
993 const struct string_list_item *item;
994 for_each_string_list_item(item, push_options)
995 argv_array_pushf(&cp.args, "--push-option=%s",
996 item->string);
997 }
06bf4ad1
BW
998
999 if (remote->origin != REMOTE_UNCONFIGURED) {
1000 int i;
1001 argv_array_push(&cp.args, remote->name);
1002 for (i = 0; i < refspec_nr; i++)
1003 argv_array_push(&cp.args, refspec[i]);
1004 }
1005
c12e8656 1006 prepare_submodule_repo_env(&cp.env_array);
eb21c732
HV
1007 cp.git_cmd = 1;
1008 cp.no_stdin = 1;
1009 cp.dir = path;
1010 if (run_command(&cp))
1011 return 0;
1012 close(cp.out);
1013 }
1014
1015 return 1;
1016}
1017
06bf4ad1
BW
1018/*
1019 * Perform a check in the submodule to see if the remote and refspec work.
1020 * Die if the submodule can't be pushed.
1021 */
1022static void submodule_push_check(const char *path, const struct remote *remote,
1023 const char **refspec, int refspec_nr)
1024{
1025 struct child_process cp = CHILD_PROCESS_INIT;
1026 int i;
1027
1028 argv_array_push(&cp.args, "submodule--helper");
1029 argv_array_push(&cp.args, "push-check");
1030 argv_array_push(&cp.args, remote->name);
1031
1032 for (i = 0; i < refspec_nr; i++)
1033 argv_array_push(&cp.args, refspec[i]);
1034
1035 prepare_submodule_repo_env(&cp.env_array);
1036 cp.git_cmd = 1;
1037 cp.no_stdin = 1;
1038 cp.no_stdout = 1;
1039 cp.dir = path;
1040
1041 /*
1042 * Simply indicate if 'submodule--helper push-check' failed.
1043 * More detailed error information will be provided by the
1044 * child process.
1045 */
1046 if (run_command(&cp))
1047 die("process for submodule '%s' failed", path);
1048}
1049
910650d2 1050int push_unpushed_submodules(struct oid_array *commits,
06bf4ad1
BW
1051 const struct remote *remote,
1052 const char **refspec, int refspec_nr,
2a90556d 1053 const struct string_list *push_options,
0301c821 1054 int dry_run)
eb21c732
HV
1055{
1056 int i, ret = 1;
f93d7c6f 1057 struct string_list needs_pushing = STRING_LIST_INIT_DUP;
eb21c732 1058
06bf4ad1 1059 if (!find_unpushed_submodules(commits, remote->name, &needs_pushing))
eb21c732
HV
1060 return 1;
1061
06bf4ad1
BW
1062 /*
1063 * Verify that the remote and refspec can be propagated to all
1064 * submodules. This check can be skipped if the remote and refspec
1065 * won't be propagated due to the remote being unconfigured (e.g. a URL
1066 * instead of a remote name).
1067 */
1068 if (remote->origin != REMOTE_UNCONFIGURED)
1069 for (i = 0; i < needs_pushing.nr; i++)
1070 submodule_push_check(needs_pushing.items[i].string,
1071 remote, refspec, refspec_nr);
1072
1073 /* Actually push the submodules */
eb21c732
HV
1074 for (i = 0; i < needs_pushing.nr; i++) {
1075 const char *path = needs_pushing.items[i].string;
1076 fprintf(stderr, "Pushing submodule '%s'\n", path);
06bf4ad1
BW
1077 if (!push_submodule(path, remote, refspec, refspec_nr,
1078 push_options, dry_run)) {
eb21c732
HV
1079 fprintf(stderr, "Unable to push submodule '%s'\n", path);
1080 ret = 0;
1081 }
1082 }
1083
1084 string_list_clear(&needs_pushing, 0);
1085
1086 return ret;
1087}
1088
419fd786
BW
1089static int append_oid_to_array(const char *ref, const struct object_id *oid,
1090 int flags, void *data)
6859de45 1091{
419fd786
BW
1092 struct oid_array *array = data;
1093 oid_array_append(array, oid);
6859de45
JK
1094 return 0;
1095}
1096
2eb80bcd 1097void check_for_new_submodule_commits(struct object_id *oid)
6859de45
JK
1098{
1099 if (!initialized_fetch_ref_tips) {
419fd786 1100 for_each_ref(append_oid_to_array, &ref_tips_before_fetch);
6859de45
JK
1101 initialized_fetch_ref_tips = 1;
1102 }
1103
910650d2 1104 oid_array_append(&ref_tips_after_fetch, oid);
6859de45
JK
1105}
1106
6859de45 1107static void calculate_changed_submodule_paths(void)
88a21979 1108{
c1189cae 1109 struct argv_array argv = ARGV_ARRAY_INIT;
aacc5c1a
BW
1110 struct string_list changed_submodules = STRING_LIST_INIT_DUP;
1111 const struct string_list_item *item;
88a21979 1112
18322bad 1113 /* No need to check if there are no submodules configured */
851e18c3 1114 if (!submodule_from_path(NULL, NULL))
18322bad
JL
1115 return;
1116
c1189cae 1117 argv_array_push(&argv, "--"); /* argv[0] program name */
910650d2 1118 oid_array_for_each_unique(&ref_tips_after_fetch,
d1a8460c 1119 append_oid_to_argv, &argv);
c1189cae 1120 argv_array_push(&argv, "--not");
910650d2 1121 oid_array_for_each_unique(&ref_tips_before_fetch,
d1a8460c 1122 append_oid_to_argv, &argv);
88a21979
JL
1123
1124 /*
1125 * Collect all submodules (whether checked out or not) for which new
1126 * commits have been recorded upstream in "changed_submodule_paths".
1127 */
aacc5c1a
BW
1128 collect_changed_submodules(&changed_submodules, &argv);
1129
1130 for_each_string_list_item(item, &changed_submodules) {
1131 struct oid_array *commits = item->util;
1132 const char *path = item->string;
1133
1134 if (!submodule_has_commits(path, commits))
1135 string_list_append(&changed_submodule_paths, path);
88a21979 1136 }
6859de45 1137
aacc5c1a 1138 free_submodules_oids(&changed_submodules);
c1189cae 1139 argv_array_clear(&argv);
910650d2 1140 oid_array_clear(&ref_tips_before_fetch);
1141 oid_array_clear(&ref_tips_after_fetch);
6859de45 1142 initialized_fetch_ref_tips = 0;
88a21979
JL
1143}
1144
fe85ee6e
SB
1145struct submodule_parallel_fetch {
1146 int count;
1147 struct argv_array args;
1148 const char *work_tree;
1149 const char *prefix;
1150 int command_line_option;
1151 int quiet;
1152 int result;
1153};
1154#define SPF_INIT {0, ARGV_ARRAY_INIT, NULL, NULL, 0, 0, 0}
1155
1156static int get_next_submodule(struct child_process *cp,
1157 struct strbuf *err, void *data, void **task_cb)
7dce19d3 1158{
fe85ee6e
SB
1159 int ret = 0;
1160 struct submodule_parallel_fetch *spf = data;
6859de45 1161
fe85ee6e 1162 for (; spf->count < active_nr; spf->count++) {
7dce19d3
JL
1163 struct strbuf submodule_path = STRBUF_INIT;
1164 struct strbuf submodule_git_dir = STRBUF_INIT;
1165 struct strbuf submodule_prefix = STRBUF_INIT;
fe85ee6e 1166 const struct cache_entry *ce = active_cache[spf->count];
851e18c3
HV
1167 const char *git_dir, *default_argv;
1168 const struct submodule *submodule;
7dce19d3
JL
1169
1170 if (!S_ISGITLINK(ce->ce_mode))
1171 continue;
1172
851e18c3
HV
1173 submodule = submodule_from_path(null_sha1, ce->name);
1174 if (!submodule)
1175 submodule = submodule_from_name(null_sha1, ce->name);
7dce19d3 1176
88a21979 1177 default_argv = "yes";
fe85ee6e 1178 if (spf->command_line_option == RECURSE_SUBMODULES_DEFAULT) {
851e18c3
HV
1179 if (submodule &&
1180 submodule->fetch_recurse !=
1181 RECURSE_SUBMODULES_NONE) {
1182 if (submodule->fetch_recurse ==
1183 RECURSE_SUBMODULES_OFF)
c1a3c364 1184 continue;
851e18c3
HV
1185 if (submodule->fetch_recurse ==
1186 RECURSE_SUBMODULES_ON_DEMAND) {
bf42b384
JL
1187 if (!unsorted_string_list_lookup(&changed_submodule_paths, ce->name))
1188 continue;
1189 default_argv = "on-demand";
1190 }
c1a3c364 1191 } else {
d4e98b58
JL
1192 if ((config_fetch_recurse_submodules == RECURSE_SUBMODULES_OFF) ||
1193 gitmodules_is_unmerged)
c1a3c364 1194 continue;
88a21979
JL
1195 if (config_fetch_recurse_submodules == RECURSE_SUBMODULES_ON_DEMAND) {
1196 if (!unsorted_string_list_lookup(&changed_submodule_paths, ce->name))
1197 continue;
1198 default_argv = "on-demand";
1199 }
c1a3c364 1200 }
fe85ee6e 1201 } else if (spf->command_line_option == RECURSE_SUBMODULES_ON_DEMAND) {
8f0700dd
JL
1202 if (!unsorted_string_list_lookup(&changed_submodule_paths, ce->name))
1203 continue;
1204 default_argv = "on-demand";
be254a0e
JL
1205 }
1206
fe85ee6e 1207 strbuf_addf(&submodule_path, "%s/%s", spf->work_tree, ce->name);
7dce19d3 1208 strbuf_addf(&submodule_git_dir, "%s/.git", submodule_path.buf);
fe85ee6e 1209 strbuf_addf(&submodule_prefix, "%s%s/", spf->prefix, ce->name);
13d6ec91 1210 git_dir = read_gitfile(submodule_git_dir.buf);
7dce19d3
JL
1211 if (!git_dir)
1212 git_dir = submodule_git_dir.buf;
1213 if (is_directory(git_dir)) {
fe85ee6e
SB
1214 child_process_init(cp);
1215 cp->dir = strbuf_detach(&submodule_path, NULL);
c12e8656 1216 prepare_submodule_repo_env(&cp->env_array);
fe85ee6e
SB
1217 cp->git_cmd = 1;
1218 if (!spf->quiet)
1219 strbuf_addf(err, "Fetching submodule %s%s\n",
1220 spf->prefix, ce->name);
1221 argv_array_init(&cp->args);
1222 argv_array_pushv(&cp->args, spf->args.argv);
1223 argv_array_push(&cp->args, default_argv);
1224 argv_array_push(&cp->args, "--submodule-prefix");
1225 argv_array_push(&cp->args, submodule_prefix.buf);
1226 ret = 1;
7dce19d3
JL
1227 }
1228 strbuf_release(&submodule_path);
1229 strbuf_release(&submodule_git_dir);
1230 strbuf_release(&submodule_prefix);
fe85ee6e
SB
1231 if (ret) {
1232 spf->count++;
1233 return 1;
1234 }
7dce19d3 1235 }
fe85ee6e
SB
1236 return 0;
1237}
1238
2a73b3da 1239static int fetch_start_failure(struct strbuf *err,
fe85ee6e
SB
1240 void *cb, void *task_cb)
1241{
1242 struct submodule_parallel_fetch *spf = cb;
1243
1244 spf->result = 1;
1245
1246 return 0;
1247}
1248
2a73b3da
SB
1249static int fetch_finish(int retvalue, struct strbuf *err,
1250 void *cb, void *task_cb)
fe85ee6e
SB
1251{
1252 struct submodule_parallel_fetch *spf = cb;
1253
1254 if (retvalue)
1255 spf->result = 1;
1256
1257 return 0;
1258}
1259
1260int fetch_populated_submodules(const struct argv_array *options,
1261 const char *prefix, int command_line_option,
62104ba1 1262 int quiet, int max_parallel_jobs)
fe85ee6e
SB
1263{
1264 int i;
fe85ee6e
SB
1265 struct submodule_parallel_fetch spf = SPF_INIT;
1266
1267 spf.work_tree = get_git_work_tree();
1268 spf.command_line_option = command_line_option;
1269 spf.quiet = quiet;
1270 spf.prefix = prefix;
1271
1272 if (!spf.work_tree)
1273 goto out;
1274
1275 if (read_cache() < 0)
1276 die("index file corrupt");
1277
1278 argv_array_push(&spf.args, "fetch");
1279 for (i = 0; i < options->argc; i++)
1280 argv_array_push(&spf.args, options->argv[i]);
1281 argv_array_push(&spf.args, "--recurse-submodules-default");
1282 /* default value, "--submodule-prefix" and its value are added later */
1283
a028a193
SB
1284 if (max_parallel_jobs < 0)
1285 max_parallel_jobs = parallel_jobs;
1286
fe85ee6e
SB
1287 calculate_changed_submodule_paths();
1288 run_processes_parallel(max_parallel_jobs,
1289 get_next_submodule,
1290 fetch_start_failure,
1291 fetch_finish,
1292 &spf);
1293
1294 argv_array_clear(&spf.args);
88a21979
JL
1295out:
1296 string_list_clear(&changed_submodule_paths, 1);
fe85ee6e 1297 return spf.result;
7dce19d3
JL
1298}
1299
3bfc4504 1300unsigned is_submodule_modified(const char *path, int ignore_untracked)
ee6fc514 1301{
d3180279 1302 struct child_process cp = CHILD_PROCESS_INIT;
ee6fc514 1303 struct strbuf buf = STRBUF_INIT;
af6865a7 1304 FILE *fp;
c7e1a736 1305 unsigned dirty_submodule = 0;
eee49b6c 1306 const char *git_dir;
af6865a7 1307 int ignore_cp_exit_code = 0;
ee6fc514 1308
eee49b6c 1309 strbuf_addf(&buf, "%s/.git", path);
13d6ec91 1310 git_dir = read_gitfile(buf.buf);
eee49b6c
JL
1311 if (!git_dir)
1312 git_dir = buf.buf;
5c896f7c
SB
1313 if (!is_git_directory(git_dir)) {
1314 if (is_directory(git_dir))
1315 die(_("'%s' not recognized as a git repository"), git_dir);
ee6fc514
JL
1316 strbuf_release(&buf);
1317 /* The submodule is not checked out, so it is not modified */
1318 return 0;
ee6fc514
JL
1319 }
1320 strbuf_reset(&buf);
1321
fcecf0b9 1322 argv_array_pushl(&cp.args, "status", "--porcelain=2", NULL);
3bfc4504 1323 if (ignore_untracked)
d0d7fed1 1324 argv_array_push(&cp.args, "-uno");
3bfc4504 1325
c12e8656 1326 prepare_submodule_repo_env(&cp.env_array);
ee6fc514
JL
1327 cp.git_cmd = 1;
1328 cp.no_stdin = 1;
1329 cp.out = -1;
eee49b6c 1330 cp.dir = path;
ee6fc514 1331 if (start_command(&cp))
fcecf0b9 1332 die("Could not run 'git status --porcelain=2' in submodule %s", path);
ee6fc514 1333
af6865a7
SB
1334 fp = xfdopen(cp.out, "r");
1335 while (strbuf_getwholeline(&buf, fp, '\n') != EOF) {
fcecf0b9
SB
1336 /* regular untracked files */
1337 if (buf.buf[0] == '?')
c7e1a736 1338 dirty_submodule |= DIRTY_SUBMODULE_UNTRACKED;
40069d6e
SB
1339
1340 if (buf.buf[0] == 'u' ||
1341 buf.buf[0] == '1' ||
1342 buf.buf[0] == '2') {
1343 /* T = line type, XY = status, SSSS = submodule state */
1344 if (buf.len < strlen("T XY SSSS"))
1345 die("BUG: invalid status --porcelain=2 line %s",
1346 buf.buf);
1347
1348 if (buf.buf[5] == 'S' && buf.buf[8] == 'U')
1349 /* nested untracked file */
1350 dirty_submodule |= DIRTY_SUBMODULE_UNTRACKED;
1351
1352 if (buf.buf[0] == 'u' ||
1353 buf.buf[0] == '2' ||
1354 memcmp(buf.buf + 5, "S..U", 4))
1355 /* other change */
1356 dirty_submodule |= DIRTY_SUBMODULE_MODIFIED;
c7e1a736 1357 }
64f9a946
SB
1358
1359 if ((dirty_submodule & DIRTY_SUBMODULE_MODIFIED) &&
1360 ((dirty_submodule & DIRTY_SUBMODULE_UNTRACKED) ||
af6865a7
SB
1361 ignore_untracked)) {
1362 /*
1363 * We're not interested in any further information from
1364 * the child any more, neither output nor its exit code.
1365 */
1366 ignore_cp_exit_code = 1;
c7e1a736 1367 break;
af6865a7 1368 }
c7e1a736 1369 }
af6865a7 1370 fclose(fp);
ee6fc514 1371
af6865a7 1372 if (finish_command(&cp) && !ignore_cp_exit_code)
fcecf0b9 1373 die("'git status --porcelain=2' failed in submodule %s", path);
ee6fc514 1374
ee6fc514 1375 strbuf_release(&buf);
c7e1a736 1376 return dirty_submodule;
ee6fc514 1377}
68d03e4a 1378
293ab15e
JL
1379int submodule_uses_gitfile(const char *path)
1380{
d3180279 1381 struct child_process cp = CHILD_PROCESS_INIT;
293ab15e
JL
1382 const char *argv[] = {
1383 "submodule",
1384 "foreach",
1385 "--quiet",
1386 "--recursive",
1387 "test -f .git",
1388 NULL,
1389 };
1390 struct strbuf buf = STRBUF_INIT;
1391 const char *git_dir;
1392
1393 strbuf_addf(&buf, "%s/.git", path);
1394 git_dir = read_gitfile(buf.buf);
1395 if (!git_dir) {
1396 strbuf_release(&buf);
1397 return 0;
1398 }
1399 strbuf_release(&buf);
1400
1401 /* Now test that all nested submodules use a gitfile too */
293ab15e 1402 cp.argv = argv;
c12e8656 1403 prepare_submodule_repo_env(&cp.env_array);
293ab15e
JL
1404 cp.git_cmd = 1;
1405 cp.no_stdin = 1;
1406 cp.no_stderr = 1;
1407 cp.no_stdout = 1;
1408 cp.dir = path;
1409 if (run_command(&cp))
1410 return 0;
1411
1412 return 1;
1413}
1414
83b76966
SB
1415/*
1416 * Check if it is a bad idea to remove a submodule, i.e. if we'd lose data
1417 * when doing so.
1418 *
1419 * Return 1 if we'd lose data, return 0 if the removal is fine,
1420 * and negative values for errors.
1421 */
1422int bad_to_remove_submodule(const char *path, unsigned flags)
293ab15e 1423{
293ab15e 1424 ssize_t len;
d3180279 1425 struct child_process cp = CHILD_PROCESS_INIT;
293ab15e 1426 struct strbuf buf = STRBUF_INIT;
83b76966 1427 int ret = 0;
293ab15e 1428
dbe44faa 1429 if (!file_exists(path) || is_empty_dir(path))
83b76966 1430 return 0;
293ab15e
JL
1431
1432 if (!submodule_uses_gitfile(path))
83b76966 1433 return 1;
293ab15e 1434
83b76966 1435 argv_array_pushl(&cp.args, "status", "--porcelain",
5a1c824f 1436 "--ignore-submodules=none", NULL);
83b76966
SB
1437
1438 if (flags & SUBMODULE_REMOVAL_IGNORE_UNTRACKED)
1439 argv_array_push(&cp.args, "-uno");
1440 else
1441 argv_array_push(&cp.args, "-uall");
1442
1443 if (!(flags & SUBMODULE_REMOVAL_IGNORE_IGNORED_UNTRACKED))
1444 argv_array_push(&cp.args, "--ignored");
293ab15e 1445
c12e8656 1446 prepare_submodule_repo_env(&cp.env_array);
293ab15e
JL
1447 cp.git_cmd = 1;
1448 cp.no_stdin = 1;
1449 cp.out = -1;
1450 cp.dir = path;
83b76966
SB
1451 if (start_command(&cp)) {
1452 if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR)
35ad44cb 1453 die(_("could not start 'git status' in submodule '%s'"),
83b76966
SB
1454 path);
1455 ret = -1;
1456 goto out;
1457 }
293ab15e
JL
1458
1459 len = strbuf_read(&buf, cp.out, 1024);
1460 if (len > 2)
83b76966 1461 ret = 1;
293ab15e
JL
1462 close(cp.out);
1463
83b76966
SB
1464 if (finish_command(&cp)) {
1465 if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR)
35ad44cb 1466 die(_("could not run 'git status' in submodule '%s'"),
83b76966
SB
1467 path);
1468 ret = -1;
1469 }
1470out:
293ab15e 1471 strbuf_release(&buf);
83b76966 1472 return ret;
293ab15e
JL
1473}
1474
202275b9
SB
1475static const char *get_super_prefix_or_empty(void)
1476{
1477 const char *s = get_super_prefix();
1478 if (!s)
1479 s = "";
1480 return s;
1481}
1482
6e3c1595
SB
1483static int submodule_has_dirty_index(const struct submodule *sub)
1484{
1485 struct child_process cp = CHILD_PROCESS_INIT;
1486
da27bc81 1487 prepare_submodule_repo_env(&cp.env_array);
6e3c1595
SB
1488
1489 cp.git_cmd = 1;
1490 argv_array_pushl(&cp.args, "diff-index", "--quiet",
1491 "--cached", "HEAD", NULL);
1492 cp.no_stdin = 1;
1493 cp.no_stdout = 1;
1494 cp.dir = sub->path;
1495 if (start_command(&cp))
1496 die("could not recurse into submodule '%s'", sub->path);
1497
1498 return finish_command(&cp);
1499}
1500
1501static void submodule_reset_index(const char *path)
1502{
1503 struct child_process cp = CHILD_PROCESS_INIT;
da27bc81 1504 prepare_submodule_repo_env(&cp.env_array);
6e3c1595
SB
1505
1506 cp.git_cmd = 1;
1507 cp.no_stdin = 1;
1508 cp.dir = path;
1509
1510 argv_array_pushf(&cp.args, "--super-prefix=%s%s/",
1511 get_super_prefix_or_empty(), path);
1512 argv_array_pushl(&cp.args, "read-tree", "-u", "--reset", NULL);
1513
1514 argv_array_push(&cp.args, EMPTY_TREE_SHA1_HEX);
1515
1516 if (run_command(&cp))
1517 die("could not reset submodule index");
1518}
1519
1520/**
1521 * Moves a submodule at a given path from a given head to another new head.
1522 * For edge cases (a submodule coming into existence or removing a submodule)
1523 * pass NULL for old or new respectively.
1524 */
1525int submodule_move_head(const char *path,
1526 const char *old,
1527 const char *new,
1528 unsigned flags)
1529{
1530 int ret = 0;
1531 struct child_process cp = CHILD_PROCESS_INIT;
1532 const struct submodule *sub;
f2d48994 1533 int *error_code_ptr, error_code;
6e3c1595 1534
823bab09
SB
1535 if (!is_submodule_initialized(path))
1536 return 0;
1537
f2d48994
SB
1538 if (flags & SUBMODULE_MOVE_HEAD_FORCE)
1539 /*
1540 * Pass non NULL pointer to is_submodule_populated_gently
1541 * to prevent die()-ing. We'll use connect_work_tree_and_git_dir
1542 * to fixup the submodule in the force case later.
1543 */
1544 error_code_ptr = &error_code;
1545 else
1546 error_code_ptr = NULL;
1547
1548 if (old && !is_submodule_populated_gently(path, error_code_ptr))
1549 return 0;
6e3c1595
SB
1550
1551 sub = submodule_from_path(null_sha1, path);
1552
1553 if (!sub)
1554 die("BUG: could not get submodule information for '%s'", path);
1555
1556 if (old && !(flags & SUBMODULE_MOVE_HEAD_FORCE)) {
1557 /* Check if the submodule has a dirty index. */
1558 if (submodule_has_dirty_index(sub))
1559 return error(_("submodule '%s' has dirty index"), path);
1560 }
1561
1562 if (!(flags & SUBMODULE_MOVE_HEAD_DRY_RUN)) {
1563 if (old) {
1564 if (!submodule_uses_gitfile(path))
1565 absorb_git_dir_into_superproject("", path,
1566 ABSORB_GITDIR_RECURSE_SUBMODULES);
1567 } else {
f2d48994 1568 char *gitdir = xstrfmt("%s/modules/%s",
6e3c1595 1569 get_git_common_dir(), sub->name);
f2d48994
SB
1570 connect_work_tree_and_git_dir(path, gitdir);
1571 free(gitdir);
6e3c1595
SB
1572
1573 /* make sure the index is clean as well */
1574 submodule_reset_index(path);
1575 }
f2d48994
SB
1576
1577 if (old && (flags & SUBMODULE_MOVE_HEAD_FORCE)) {
1578 char *gitdir = xstrfmt("%s/modules/%s",
1579 get_git_common_dir(), sub->name);
1580 connect_work_tree_and_git_dir(path, gitdir);
1581 free(gitdir);
1582 }
6e3c1595
SB
1583 }
1584
da27bc81 1585 prepare_submodule_repo_env(&cp.env_array);
6e3c1595
SB
1586
1587 cp.git_cmd = 1;
1588 cp.no_stdin = 1;
1589 cp.dir = path;
1590
1591 argv_array_pushf(&cp.args, "--super-prefix=%s%s/",
1592 get_super_prefix_or_empty(), path);
218c8837 1593 argv_array_pushl(&cp.args, "read-tree", "--recurse-submodules", NULL);
6e3c1595
SB
1594
1595 if (flags & SUBMODULE_MOVE_HEAD_DRY_RUN)
1596 argv_array_push(&cp.args, "-n");
1597 else
1598 argv_array_push(&cp.args, "-u");
1599
1600 if (flags & SUBMODULE_MOVE_HEAD_FORCE)
1601 argv_array_push(&cp.args, "--reset");
1602 else
1603 argv_array_push(&cp.args, "-m");
1604
1605 argv_array_push(&cp.args, old ? old : EMPTY_TREE_SHA1_HEX);
1606 argv_array_push(&cp.args, new ? new : EMPTY_TREE_SHA1_HEX);
1607
1608 if (run_command(&cp)) {
1609 ret = -1;
1610 goto out;
1611 }
1612
1613 if (!(flags & SUBMODULE_MOVE_HEAD_DRY_RUN)) {
1614 if (new) {
a17062cf 1615 child_process_init(&cp);
6e3c1595 1616 /* also set the HEAD accordingly */
a17062cf
SB
1617 cp.git_cmd = 1;
1618 cp.no_stdin = 1;
1619 cp.dir = path;
6e3c1595 1620
218c8837 1621 prepare_submodule_repo_env(&cp.env_array);
a17062cf 1622 argv_array_pushl(&cp.args, "update-ref", "HEAD", new, NULL);
6e3c1595 1623
a17062cf 1624 if (run_command(&cp)) {
6e3c1595
SB
1625 ret = -1;
1626 goto out;
1627 }
1628 } else {
1629 struct strbuf sb = STRBUF_INIT;
1630
1631 strbuf_addf(&sb, "%s/.git", path);
1632 unlink_or_warn(sb.buf);
1633 strbuf_release(&sb);
1634
1635 if (is_empty_dir(path))
1636 rmdir_or_warn(path);
1637 }
1638 }
1639out:
1640 return ret;
1641}
1642
68d03e4a
HV
1643static int find_first_merges(struct object_array *result, const char *path,
1644 struct commit *a, struct commit *b)
1645{
1646 int i, j;
3826902d 1647 struct object_array merges = OBJECT_ARRAY_INIT;
68d03e4a
HV
1648 struct commit *commit;
1649 int contains_another;
1650
1651 char merged_revision[42];
1652 const char *rev_args[] = { "rev-list", "--merges", "--ancestry-path",
1653 "--all", merged_revision, NULL };
1654 struct rev_info revs;
1655 struct setup_revision_opt rev_opts;
1656
68d03e4a
HV
1657 memset(result, 0, sizeof(struct object_array));
1658 memset(&rev_opts, 0, sizeof(rev_opts));
1659
1660 /* get all revisions that merge commit a */
1a168e5c 1661 xsnprintf(merged_revision, sizeof(merged_revision), "^%s",
f2fd0760 1662 oid_to_hex(&a->object.oid));
68d03e4a
HV
1663 init_revisions(&revs, NULL);
1664 rev_opts.submodule = path;
94c0cc8f 1665 setup_revisions(ARRAY_SIZE(rev_args)-1, rev_args, &revs, &rev_opts);
68d03e4a
HV
1666
1667 /* save all revisions from the above list that contain b */
1668 if (prepare_revision_walk(&revs))
1669 die("revision walk setup failed");
1670 while ((commit = get_revision(&revs)) != NULL) {
1671 struct object *o = &(commit->object);
a20efee9 1672 if (in_merge_bases(b, commit))
68d03e4a
HV
1673 add_object_array(o, NULL, &merges);
1674 }
bcc0a3ea 1675 reset_revision_walk();
68d03e4a
HV
1676
1677 /* Now we've got all merges that contain a and b. Prune all
1678 * merges that contain another found merge and save them in
1679 * result.
1680 */
1681 for (i = 0; i < merges.nr; i++) {
1682 struct commit *m1 = (struct commit *) merges.objects[i].item;
1683
1684 contains_another = 0;
1685 for (j = 0; j < merges.nr; j++) {
1686 struct commit *m2 = (struct commit *) merges.objects[j].item;
a20efee9 1687 if (i != j && in_merge_bases(m2, m1)) {
68d03e4a
HV
1688 contains_another = 1;
1689 break;
1690 }
1691 }
1692
1693 if (!contains_another)
5de0c015 1694 add_object_array(merges.objects[i].item, NULL, result);
68d03e4a
HV
1695 }
1696
1697 free(merges.objects);
1698 return result->nr;
1699}
1700
1701static void print_commit(struct commit *commit)
1702{
1703 struct strbuf sb = STRBUF_INIT;
1704 struct pretty_print_context ctx = {0};
a5481a6c 1705 ctx.date_mode.type = DATE_NORMAL;
68d03e4a
HV
1706 format_commit_message(commit, " %h: %m %s", &sb, &ctx);
1707 fprintf(stderr, "%s\n", sb.buf);
1708 strbuf_release(&sb);
1709}
1710
1711#define MERGE_WARNING(path, msg) \
1712 warning("Failed to merge submodule %s (%s)", path, msg);
1713
71f35d5c 1714int merge_submodule(struct object_id *result, const char *path,
1715 const struct object_id *base, const struct object_id *a,
1716 const struct object_id *b, int search)
68d03e4a
HV
1717{
1718 struct commit *commit_base, *commit_a, *commit_b;
1719 int parent_count;
1720 struct object_array merges;
1721
1722 int i;
1723
1724 /* store a in result in case we fail */
71f35d5c 1725 oidcpy(result, a);
68d03e4a
HV
1726
1727 /* we can not handle deletion conflicts */
71f35d5c 1728 if (is_null_oid(base))
68d03e4a 1729 return 0;
71f35d5c 1730 if (is_null_oid(a))
68d03e4a 1731 return 0;
71f35d5c 1732 if (is_null_oid(b))
68d03e4a
HV
1733 return 0;
1734
1735 if (add_submodule_odb(path)) {
1736 MERGE_WARNING(path, "not checked out");
1737 return 0;
1738 }
1739
1740 if (!(commit_base = lookup_commit_reference(base)) ||
1741 !(commit_a = lookup_commit_reference(a)) ||
1742 !(commit_b = lookup_commit_reference(b))) {
1743 MERGE_WARNING(path, "commits not present");
1744 return 0;
1745 }
1746
1747 /* check whether both changes are forward */
a20efee9
JH
1748 if (!in_merge_bases(commit_base, commit_a) ||
1749 !in_merge_bases(commit_base, commit_b)) {
68d03e4a
HV
1750 MERGE_WARNING(path, "commits don't follow merge-base");
1751 return 0;
1752 }
1753
1754 /* Case #1: a is contained in b or vice versa */
a20efee9 1755 if (in_merge_bases(commit_a, commit_b)) {
71f35d5c 1756 oidcpy(result, b);
68d03e4a
HV
1757 return 1;
1758 }
a20efee9 1759 if (in_merge_bases(commit_b, commit_a)) {
71f35d5c 1760 oidcpy(result, a);
68d03e4a
HV
1761 return 1;
1762 }
1763
1764 /*
1765 * Case #2: There are one or more merges that contain a and b in
1766 * the submodule. If there is only one, then present it as a
1767 * suggestion to the user, but leave it marked unmerged so the
1768 * user needs to confirm the resolution.
1769 */
1770
80988783
BK
1771 /* Skip the search if makes no sense to the calling context. */
1772 if (!search)
1773 return 0;
1774
68d03e4a
HV
1775 /* find commit which merges them */
1776 parent_count = find_first_merges(&merges, path, commit_a, commit_b);
1777 switch (parent_count) {
1778 case 0:
1779 MERGE_WARNING(path, "merge following commits not found");
1780 break;
1781
1782 case 1:
1783 MERGE_WARNING(path, "not fast-forward");
1784 fprintf(stderr, "Found a possible merge resolution "
1785 "for the submodule:\n");
1786 print_commit((struct commit *) merges.objects[0].item);
1787 fprintf(stderr,
1788 "If this is correct simply add it to the index "
1789 "for example\n"
1790 "by using:\n\n"
1791 " git update-index --cacheinfo 160000 %s \"%s\"\n\n"
1792 "which will accept this suggestion.\n",
f2fd0760 1793 oid_to_hex(&merges.objects[0].item->oid), path);
68d03e4a
HV
1794 break;
1795
1796 default:
1797 MERGE_WARNING(path, "multiple merges found");
1798 for (i = 0; i < merges.nr; i++)
1799 print_commit((struct commit *) merges.objects[i].item);
1800 }
1801
1802 free(merges.objects);
1803 return 0;
1804}
a88c915d 1805
a028a193
SB
1806int parallel_submodules(void)
1807{
1808 return parallel_jobs;
1809}
e059388f 1810
f6f85861
SB
1811/*
1812 * Embeds a single submodules git directory into the superprojects git dir,
1813 * non recursively.
1814 */
1815static void relocate_single_git_dir_into_superproject(const char *prefix,
1816 const char *path)
1817{
1818 char *old_git_dir = NULL, *real_old_git_dir = NULL, *real_new_git_dir = NULL;
1819 const char *new_git_dir;
1820 const struct submodule *sub;
1821
1822 if (submodule_uses_worktrees(path))
1823 die(_("relocate_gitdir for submodule '%s' with "
1824 "more than one worktree not supported"), path);
1825
1826 old_git_dir = xstrfmt("%s/.git", path);
1827 if (read_gitfile(old_git_dir))
1828 /* If it is an actual gitfile, it doesn't need migration. */
1829 return;
1830
ce83eadd 1831 real_old_git_dir = real_pathdup(old_git_dir, 1);
f6f85861
SB
1832
1833 sub = submodule_from_path(null_sha1, path);
1834 if (!sub)
1835 die(_("could not lookup name for submodule '%s'"), path);
1836
1837 new_git_dir = git_path("modules/%s", sub->name);
1838 if (safe_create_leading_directories_const(new_git_dir) < 0)
1839 die(_("could not create directory '%s'"), new_git_dir);
ce83eadd 1840 real_new_git_dir = real_pathdup(new_git_dir, 1);
f6f85861 1841
f6f85861 1842 fprintf(stderr, _("Migrating git directory of '%s%s' from\n'%s' to\n'%s'\n"),
202275b9 1843 get_super_prefix_or_empty(), path,
f6f85861
SB
1844 real_old_git_dir, real_new_git_dir);
1845
1846 relocate_gitdir(path, real_old_git_dir, real_new_git_dir);
1847
1848 free(old_git_dir);
1849 free(real_old_git_dir);
1850 free(real_new_git_dir);
1851}
1852
1853/*
1854 * Migrate the git directory of the submodule given by path from
1855 * having its git directory within the working tree to the git dir nested
1856 * in its superprojects git dir under modules/.
1857 */
1858void absorb_git_dir_into_superproject(const char *prefix,
1859 const char *path,
1860 unsigned flags)
1861{
ec9629b3
SB
1862 int err_code;
1863 const char *sub_git_dir;
f6f85861 1864 struct strbuf gitdir = STRBUF_INIT;
f6f85861 1865 strbuf_addf(&gitdir, "%s/.git", path);
ec9629b3 1866 sub_git_dir = resolve_gitdir_gently(gitdir.buf, &err_code);
f6f85861
SB
1867
1868 /* Not populated? */
ec9629b3 1869 if (!sub_git_dir) {
ec9629b3
SB
1870 const struct submodule *sub;
1871
1872 if (err_code == READ_GITFILE_ERR_STAT_FAILED) {
1873 /* unpopulated as expected */
1874 strbuf_release(&gitdir);
1875 return;
1876 }
1877
1878 if (err_code != READ_GITFILE_ERR_NOT_A_REPO)
1879 /* We don't know what broke here. */
1880 read_gitfile_error_die(err_code, path, NULL);
1881
1882 /*
1883 * Maybe populated, but no git directory was found?
1884 * This can happen if the superproject is a submodule
1885 * itself and was just absorbed. The absorption of the
1886 * superproject did not rewrite the git file links yet,
1887 * fix it now.
1888 */
1889 sub = submodule_from_path(null_sha1, path);
1890 if (!sub)
1891 die(_("could not lookup name for submodule '%s'"), path);
365444a6
SB
1892 connect_work_tree_and_git_dir(path,
1893 git_path("modules/%s", sub->name));
ec9629b3
SB
1894 } else {
1895 /* Is it already absorbed into the superprojects git dir? */
ce83eadd
JS
1896 char *real_sub_git_dir = real_pathdup(sub_git_dir, 1);
1897 char *real_common_git_dir = real_pathdup(get_git_common_dir(), 1);
f6f85861 1898
ec9629b3
SB
1899 if (!starts_with(real_sub_git_dir, real_common_git_dir))
1900 relocate_single_git_dir_into_superproject(prefix, path);
1901
1902 free(real_sub_git_dir);
1903 free(real_common_git_dir);
1904 }
1905 strbuf_release(&gitdir);
f6f85861
SB
1906
1907 if (flags & ABSORB_GITDIR_RECURSE_SUBMODULES) {
1908 struct child_process cp = CHILD_PROCESS_INIT;
1909 struct strbuf sb = STRBUF_INIT;
1910
1911 if (flags & ~ABSORB_GITDIR_RECURSE_SUBMODULES)
1912 die("BUG: we don't know how to pass the flags down?");
1913
202275b9 1914 strbuf_addstr(&sb, get_super_prefix_or_empty());
f6f85861
SB
1915 strbuf_addstr(&sb, path);
1916 strbuf_addch(&sb, '/');
1917
1918 cp.dir = path;
1919 cp.git_cmd = 1;
1920 cp.no_stdin = 1;
1921 argv_array_pushl(&cp.args, "--super-prefix", sb.buf,
1922 "submodule--helper",
1923 "absorb-git-dirs", NULL);
1924 prepare_submodule_repo_env(&cp.env_array);
1925 if (run_command(&cp))
1926 die(_("could not recurse into submodule '%s'"), path);
1927
1928 strbuf_release(&sb);
1929 }
f6f85861 1930}
bf0231c6
SB
1931
1932const char *get_superproject_working_tree(void)
1933{
1934 struct child_process cp = CHILD_PROCESS_INIT;
1935 struct strbuf sb = STRBUF_INIT;
1936 const char *one_up = real_path_if_valid("../");
1937 const char *cwd = xgetcwd();
1938 const char *ret = NULL;
1939 const char *subpath;
1940 int code;
1941 ssize_t len;
1942
1943 if (!is_inside_work_tree())
1944 /*
1945 * FIXME:
1946 * We might have a superproject, but it is harder
1947 * to determine.
1948 */
1949 return NULL;
1950
1951 if (!one_up)
1952 return NULL;
1953
1954 subpath = relative_path(cwd, one_up, &sb);
1955
1956 prepare_submodule_repo_env(&cp.env_array);
1957 argv_array_pop(&cp.env_array);
1958
1959 argv_array_pushl(&cp.args, "--literal-pathspecs", "-C", "..",
1960 "ls-files", "-z", "--stage", "--full-name", "--",
1961 subpath, NULL);
1962 strbuf_reset(&sb);
1963
1964 cp.no_stdin = 1;
1965 cp.no_stderr = 1;
1966 cp.out = -1;
1967 cp.git_cmd = 1;
1968
1969 if (start_command(&cp))
1970 die(_("could not start ls-files in .."));
1971
1972 len = strbuf_read(&sb, cp.out, PATH_MAX);
1973 close(cp.out);
1974
1975 if (starts_with(sb.buf, "160000")) {
1976 int super_sub_len;
1977 int cwd_len = strlen(cwd);
1978 char *super_sub, *super_wt;
1979
1980 /*
1981 * There is a superproject having this repo as a submodule.
1982 * The format is <mode> SP <hash> SP <stage> TAB <full name> \0,
1983 * We're only interested in the name after the tab.
1984 */
1985 super_sub = strchr(sb.buf, '\t') + 1;
1986 super_sub_len = sb.buf + sb.len - super_sub - 1;
1987
1988 if (super_sub_len > cwd_len ||
1989 strcmp(&cwd[cwd_len - super_sub_len], super_sub))
1990 die (_("BUG: returned path string doesn't match cwd?"));
1991
1992 super_wt = xstrdup(cwd);
1993 super_wt[cwd_len - super_sub_len] = '\0';
1994
1995 ret = real_path(super_wt);
1996 free(super_wt);
1997 }
1998 strbuf_release(&sb);
1999
2000 code = finish_command(&cp);
2001
2002 if (code == 128)
2003 /* '../' is not a git repository */
2004 return NULL;
2005 if (code == 0 && len == 0)
2006 /* There is an unrelated git repository at '../' */
2007 return NULL;
2008 if (code)
2009 die(_("ls-tree returned unexpected return code %d"), code);
2010
2011 return ret;
2012}
bbbb7de7
NTND
2013
2014int submodule_to_gitdir(struct strbuf *buf, const char *submodule)
2015{
2016 const struct submodule *sub;
2017 const char *git_dir;
2018 int ret = 0;
2019
2020 strbuf_reset(buf);
2021 strbuf_addstr(buf, submodule);
2022 strbuf_complete(buf, '/');
2023 strbuf_addstr(buf, ".git");
2024
2025 git_dir = read_gitfile(buf->buf);
2026 if (git_dir) {
2027 strbuf_reset(buf);
2028 strbuf_addstr(buf, git_dir);
2029 }
2030 if (!is_git_directory(buf->buf)) {
2031 gitmodules_config();
2032 sub = submodule_from_path(null_sha1, submodule);
2033 if (!sub) {
2034 ret = -1;
2035 goto cleanup;
2036 }
2037 strbuf_reset(buf);
2038 strbuf_git_path(buf, "%s/%s", "modules", sub->name);
2039 }
2040
2041cleanup:
2042 return ret;
2043}