]> git.ipfire.org Git - thirdparty/git.git/blame - submodule.c
submodule--helper: convert "{update,clone}" to their own "--super-prefix"
[thirdparty/git.git] / submodule.c
CommitLineData
e724197f 1
752c0c24 2#include "cache.h"
69aba532 3#include "repository.h"
b2141fc1 4#include "config.h"
851e18c3 5#include "submodule-config.h"
752c0c24
JS
6#include "submodule.h"
7#include "dir.h"
8#include "diff.h"
9#include "commit.h"
10#include "revision.h"
ee6fc514 11#include "run-command.h"
c7e1a736 12#include "diffcore.h"
68d03e4a 13#include "refs.h"
aee9c7d6 14#include "string-list.h"
fe299ec5 15#include "oid-array.h"
dbbcd44f 16#include "strvec.h"
5fee9952 17#include "blob.h"
fe85ee6e 18#include "thread-utils.h"
4638728c 19#include "quote.h"
06bf4ad1 20#include "remote.h"
f6f85861 21#include "worktree.h"
046b4823 22#include "parse-options.h"
0d4a1321 23#include "object-store.h"
64043556 24#include "commit-reach.h"
2a69ff09 25#include "shallow.h"
aee9c7d6 26
d7a3803f 27static int config_update_recurse_submodules = RECURSE_SUBMODULES_OFF;
6859de45 28static int initialized_fetch_ref_tips;
910650d2 29static struct oid_array ref_tips_before_fetch;
30static struct oid_array ref_tips_after_fetch;
6859de45 31
d4e98b58 32/*
34e2ba04
BW
33 * Check if the .gitmodules file is unmerged. Parsing of the .gitmodules file
34 * will be disabled because we can't guess what might be configured in
35 * .gitmodules unless the user resolves the conflict.
d4e98b58 36 */
847a9e5d 37int is_gitmodules_unmerged(struct index_state *istate)
34e2ba04
BW
38{
39 int pos = index_name_pos(istate, GITMODULES_FILE, strlen(GITMODULES_FILE));
40 if (pos < 0) { /* .gitmodules not found or isn't merged */
41 pos = -1 - pos;
42 if (istate->cache_nr > pos) { /* there is a .gitmodules */
43 const struct cache_entry *ce = istate->cache[pos];
44 if (ce_namelen(ce) == strlen(GITMODULES_FILE) &&
45 !strcmp(ce->name, GITMODULES_FILE))
46 return 1;
47 }
48 }
49
50 return 0;
51}
752c0c24 52
b5c259f2
AO
53/*
54 * Check if the .gitmodules file is safe to write.
55 *
56 * Writing to the .gitmodules file requires that the file exists in the
57 * working tree or, if it doesn't, that a brand new .gitmodules file is going
58 * to be created (i.e. it's neither in the index nor in the current branch).
59 *
60 * It is not safe to write to .gitmodules if it's not in the working tree but
61 * it is in the index or in the current branch, because writing new values
62 * (and staging them) would blindly overwrite ALL the old content.
63 */
64int is_writing_gitmodules_ok(void)
65{
66 struct object_id oid;
67 return file_exists(GITMODULES_FILE) ||
68 (get_oid(GITMODULES_INDEX, &oid) < 0 && get_oid(GITMODULES_HEAD, &oid) < 0);
69}
70
5fee9952 71/*
91b83480
BW
72 * Check if the .gitmodules file has unstaged modifications. This must be
73 * checked before allowing modifications to the .gitmodules file with the
74 * intention to stage them later, because when continuing we would stage the
75 * modifications the user didn't stage herself too. That might change in a
76 * future version when we learn to stage the changes we do ourselves without
77 * staging any previous modifications.
5fee9952 78 */
7da9aba4 79int is_staging_gitmodules_ok(struct index_state *istate)
5fee9952 80{
91b83480
BW
81 int pos = index_name_pos(istate, GITMODULES_FILE, strlen(GITMODULES_FILE));
82
83 if ((pos >= 0) && (pos < istate->cache_nr)) {
84 struct stat st;
85 if (lstat(GITMODULES_FILE, &st) == 0 &&
7edee329 86 ie_modified(istate, istate->cache[pos], &st, 0) & DATA_CHANGED)
91b83480
BW
87 return 0;
88 }
89
90 return 1;
5fee9952
JL
91}
92
2e2d4040
NTND
93static int for_each_remote_ref_submodule(const char *submodule,
94 each_ref_fn fn, void *cb_data)
95{
96 return refs_for_each_remote_ref(get_submodule_ref_store(submodule),
97 fn, cb_data);
98}
99
0656781f
JL
100/*
101 * Try to update the "path" entry in the "submodule.<name>" section of the
102 * .gitmodules file. Return 0 only if a .gitmodules file was found, a section
103 * with the correct path=<oldpath> setting was found and we could update it.
104 */
105int update_path_in_gitmodules(const char *oldpath, const char *newpath)
106{
107 struct strbuf entry = STRBUF_INIT;
851e18c3 108 const struct submodule *submodule;
45f5ef3d 109 int ret;
0656781f 110
4c0eeafe 111 if (!file_exists(GITMODULES_FILE)) /* Do nothing without .gitmodules */
0656781f
JL
112 return -1;
113
68f08b4b 114 if (is_gitmodules_unmerged(the_repository->index))
0656781f
JL
115 die(_("Cannot change unmerged .gitmodules, resolve merge conflicts first"));
116
14228447 117 submodule = submodule_from_path(the_repository, null_oid(), oldpath);
851e18c3 118 if (!submodule || !submodule->name) {
0656781f
JL
119 warning(_("Could not find section in .gitmodules where path=%s"), oldpath);
120 return -1;
121 }
122 strbuf_addstr(&entry, "submodule.");
851e18c3 123 strbuf_addstr(&entry, submodule->name);
0656781f 124 strbuf_addstr(&entry, ".path");
45f5ef3d 125 ret = config_set_in_gitmodules_file_gently(entry.buf, newpath);
0656781f 126 strbuf_release(&entry);
45f5ef3d 127 return ret;
0656781f
JL
128}
129
95c16418
JL
130/*
131 * Try to remove the "submodule.<name>" section from .gitmodules where the given
132 * path is configured. Return 0 only if a .gitmodules file was found, a section
133 * with the correct path=<path> setting was found and we could remove it.
134 */
135int remove_path_from_gitmodules(const char *path)
136{
137 struct strbuf sect = STRBUF_INIT;
851e18c3 138 const struct submodule *submodule;
95c16418 139
4c0eeafe 140 if (!file_exists(GITMODULES_FILE)) /* Do nothing without .gitmodules */
95c16418
JL
141 return -1;
142
68f08b4b 143 if (is_gitmodules_unmerged(the_repository->index))
95c16418
JL
144 die(_("Cannot change unmerged .gitmodules, resolve merge conflicts first"));
145
14228447 146 submodule = submodule_from_path(the_repository, null_oid(), path);
851e18c3 147 if (!submodule || !submodule->name) {
95c16418
JL
148 warning(_("Could not find section in .gitmodules where path=%s"), path);
149 return -1;
150 }
151 strbuf_addstr(&sect, "submodule.");
851e18c3 152 strbuf_addstr(&sect, submodule->name);
4c0eeafe 153 if (git_config_rename_section_in_file(GITMODULES_FILE, sect.buf, NULL) < 0) {
95c16418
JL
154 /* Maybe the user already did that, don't error out here */
155 warning(_("Could not remove .gitmodules entry for %s"), path);
156 strbuf_release(&sect);
157 return -1;
158 }
159 strbuf_release(&sect);
160 return 0;
161}
162
3b8317a9 163void stage_updated_gitmodules(struct index_state *istate)
5fee9952 164{
3b8317a9 165 if (add_file_to_index(istate, GITMODULES_FILE, 0))
5fee9952
JL
166 die(_("staging updated .gitmodules failed"));
167}
168
a35e03de
JT
169static struct string_list added_submodule_odb_paths = STRING_LIST_INIT_NODUP;
170
8d33c3af
JT
171void add_submodule_odb_by_path(const char *path)
172{
173 string_list_insert(&added_submodule_odb_paths, xstrdup(path));
174}
175
a35e03de
JT
176int register_all_submodule_odb_as_alternates(void)
177{
178 int i;
179 int ret = added_submodule_odb_paths.nr;
180
181 for (i = 0; i < added_submodule_odb_paths.nr; i++)
182 add_to_alternates_memory(added_submodule_odb_paths.items[i].string);
183 if (ret) {
184 string_list_clear(&added_submodule_odb_paths, 0);
71ef66d7
JT
185 trace2_data_intmax("submodule", the_repository,
186 "register_all_submodule_odb_as_alternates/registered", ret);
a35e03de
JT
187 if (git_env_bool("GIT_TEST_FATAL_REGISTER_SUBMODULE_ODB", 0))
188 BUG("register_all_submodule_odb_as_alternates() called");
189 }
190 return ret;
191}
192
aee9c7d6
JL
193void set_diffopt_flags_from_submodule_config(struct diff_options *diffopt,
194 const char *path)
195{
3b8fb393 196 const struct submodule *submodule = submodule_from_path(the_repository,
14228447 197 null_oid(),
198 path);
851e18c3 199 if (submodule) {
fdfa9e97
BW
200 const char *ignore;
201 char *key;
aee9c7d6 202
fdfa9e97 203 key = xstrfmt("submodule.%s.ignore", submodule->name);
f1de981e 204 if (repo_config_get_string_tmp(the_repository, key, &ignore))
fdfa9e97
BW
205 ignore = submodule->ignore;
206 free(key);
302ad7a9 207
fdfa9e97
BW
208 if (ignore)
209 handle_ignore_submodules_arg(diffopt, ignore);
68f08b4b 210 else if (is_gitmodules_unmerged(the_repository->index))
0d1e0e78 211 diffopt->flags.ignore_submodules = 1;
046b4823
SB
212 }
213}
214
215/* Cheap function that only determines if we're interested in submodules at all */
783a86c1 216int git_default_submodule_config(const char *var, const char *value,
5cf88fd8 217 void *cb UNUSED)
046b4823
SB
218{
219 if (!strcmp(var, "submodule.recurse")) {
220 int v = git_config_bool(var, value) ?
221 RECURSE_SUBMODULES_ON : RECURSE_SUBMODULES_OFF;
222 config_update_recurse_submodules = v;
223 }
224 return 0;
1d789d08
SB
225}
226
d7a3803f
SB
227int option_parse_recurse_submodules_worktree_updater(const struct option *opt,
228 const char *arg, int unset)
229{
230 if (unset) {
231 config_update_recurse_submodules = RECURSE_SUBMODULES_OFF;
232 return 0;
233 }
234 if (arg)
235 config_update_recurse_submodules =
236 parse_update_recurse_submodules_arg(opt->long_name,
237 arg);
238 else
239 config_update_recurse_submodules = RECURSE_SUBMODULES_ON;
240
241 return 0;
242}
243
f9f42560
BW
244/*
245 * Determine if a submodule has been initialized at a given 'path'
246 */
a452128a
AR
247/*
248 * NEEDSWORK: Emit a warning if submodule.active exists, but is valueless,
249 * ie, the config looks like: "[submodule] active\n".
250 * Since that is an invalid pathspec, we should inform the user.
251 */
961b130d
GC
252int is_tree_submodule_active(struct repository *repo,
253 const struct object_id *treeish_name,
254 const char *path)
f9f42560
BW
255{
256 int ret = 0;
a086f921
BW
257 char *key = NULL;
258 char *value = NULL;
259 const struct string_list *sl;
627d9342
BW
260 const struct submodule *module;
261
961b130d 262 module = submodule_from_path(repo, treeish_name, path);
f9f42560 263
a086f921
BW
264 /* early return if there isn't a path->module mapping */
265 if (!module)
266 return 0;
f9f42560 267
a086f921
BW
268 /* submodule.<name>.active is set */
269 key = xstrfmt("submodule.%s.active", module->name);
627d9342 270 if (!repo_config_get_bool(repo, key, &ret)) {
a086f921
BW
271 free(key);
272 return ret;
273 }
274 free(key);
f9f42560 275
a086f921 276 /* submodule.active is set */
627d9342 277 sl = repo_config_get_value_multi(repo, "submodule.active");
a086f921
BW
278 if (sl) {
279 struct pathspec ps;
c972bf4c 280 struct strvec args = STRVEC_INIT;
a086f921 281 const struct string_list_item *item;
f9f42560 282
a086f921 283 for_each_string_list_item(item, sl) {
c972bf4c 284 strvec_push(&args, item->string);
a086f921
BW
285 }
286
d70a9eb6 287 parse_pathspec(&ps, 0, 0, NULL, args.v);
68f08b4b 288 ret = match_pathspec(repo->index, &ps, path, strlen(path), 0, NULL, 1);
a086f921 289
c972bf4c 290 strvec_clear(&args);
a086f921
BW
291 clear_pathspec(&ps);
292 return ret;
f9f42560
BW
293 }
294
a086f921
BW
295 /* fallback to checking if the URL is set */
296 key = xstrfmt("submodule.%s.url", module->name);
627d9342 297 ret = !repo_config_get_string(repo, key, &value);
a086f921
BW
298
299 free(value);
300 free(key);
f9f42560
BW
301 return ret;
302}
303
961b130d
GC
304int is_submodule_active(struct repository *repo, const char *path)
305{
306 return is_tree_submodule_active(repo, null_oid(), path);
307}
308
15cdc647 309int is_submodule_populated_gently(const char *path, int *return_error_code)
5688c28d
BW
310{
311 int ret = 0;
312 char *gitdir = xstrfmt("%s/.git", path);
313
15cdc647 314 if (resolve_gitdir_gently(gitdir, return_error_code))
5688c28d
BW
315 ret = 1;
316
317 free(gitdir);
318 return ret;
319}
320
bdab9721
BW
321/*
322 * Dies if the provided 'prefix' corresponds to an unpopulated submodule
323 */
847a9e5d 324void die_in_unpopulated_submodule(struct index_state *istate,
bdab9721
BW
325 const char *prefix)
326{
327 int i, prefixlen;
328
329 if (!prefix)
330 return;
331
332 prefixlen = strlen(prefix);
333
334 for (i = 0; i < istate->cache_nr; i++) {
335 struct cache_entry *ce = istate->cache[i];
336 int ce_len = ce_namelen(ce);
337
338 if (!S_ISGITLINK(ce->ce_mode))
339 continue;
340 if (prefixlen <= ce_len)
341 continue;
342 if (strncmp(ce->name, prefix, ce_len))
343 continue;
344 if (prefix[ce_len] != '/')
345 continue;
346
347 die(_("in unpopulated submodule '%s'"), ce->name);
348 }
349}
350
c08397e3
BW
351/*
352 * Dies if any paths in the provided pathspec descends into a submodule
353 */
847a9e5d 354void die_path_inside_submodule(struct index_state *istate,
c08397e3
BW
355 const struct pathspec *ps)
356{
357 int i, j;
358
359 for (i = 0; i < istate->cache_nr; i++) {
360 struct cache_entry *ce = istate->cache[i];
361 int ce_len = ce_namelen(ce);
362
363 if (!S_ISGITLINK(ce->ce_mode))
364 continue;
365
366 for (j = 0; j < ps->nr ; j++) {
367 const struct pathspec_item *item = &ps->items[j];
368
369 if (item->len <= ce_len)
370 continue;
371 if (item->match[ce_len] != '/')
372 continue;
373 if (strncmp(ce->name, item->match, ce_len))
374 continue;
375 if (item->len == ce_len + 1)
376 continue;
377
378 die(_("Pathspec '%s' is in submodule '%.*s'"),
379 item->original, ce_len, ce->name);
380 }
381 }
382}
383
ec6141a0 384enum submodule_update_type parse_submodule_update_type(const char *value)
ea2fa5a3 385{
ea2fa5a3 386 if (!strcmp(value, "none"))
ec6141a0 387 return SM_UPDATE_NONE;
ea2fa5a3 388 else if (!strcmp(value, "checkout"))
ec6141a0 389 return SM_UPDATE_CHECKOUT;
ea2fa5a3 390 else if (!strcmp(value, "rebase"))
ec6141a0 391 return SM_UPDATE_REBASE;
ea2fa5a3 392 else if (!strcmp(value, "merge"))
ec6141a0
BW
393 return SM_UPDATE_MERGE;
394 else if (*value == '!')
395 return SM_UPDATE_COMMAND;
396 else
397 return SM_UPDATE_UNSPECIFIED;
398}
399
400int parse_submodule_update_strategy(const char *value,
401 struct submodule_update_strategy *dst)
402{
403 enum submodule_update_type type;
404
405 free((void*)dst->command);
406 dst->command = NULL;
407
408 type = parse_submodule_update_type(value);
409 if (type == SM_UPDATE_UNSPECIFIED)
ea2fa5a3 410 return -1;
ec6141a0
BW
411
412 dst->type = type;
413 if (type == SM_UPDATE_COMMAND)
414 dst->command = xstrdup(value + 1);
415
ea2fa5a3
SB
416 return 0;
417}
418
b9dd63ff 419const char *submodule_update_type_to_string(enum submodule_update_type type)
3604242f 420{
b9dd63ff 421 switch (type) {
3604242f
SB
422 case SM_UPDATE_CHECKOUT:
423 return "checkout";
424 case SM_UPDATE_MERGE:
425 return "merge";
426 case SM_UPDATE_REBASE:
427 return "rebase";
428 case SM_UPDATE_NONE:
429 return "none";
430 case SM_UPDATE_UNSPECIFIED:
3604242f 431 case SM_UPDATE_COMMAND:
b9dd63ff
ÆAB
432 BUG("init_submodule() should handle type %d", type);
433 default:
434 BUG("unexpected update strategy type: %d", type);
3604242f 435 }
3604242f
SB
436}
437
46a958b3
JL
438void handle_ignore_submodules_arg(struct diff_options *diffopt,
439 const char *arg)
440{
8ef93124 441 diffopt->flags.ignore_submodule_set = 1;
0d1e0e78
BW
442 diffopt->flags.ignore_submodules = 0;
443 diffopt->flags.ignore_untracked_in_submodules = 0;
444 diffopt->flags.ignore_dirty_submodules = 0;
be4f2b40 445
46a958b3 446 if (!strcmp(arg, "all"))
0d1e0e78 447 diffopt->flags.ignore_submodules = 1;
46a958b3 448 else if (!strcmp(arg, "untracked"))
0d1e0e78 449 diffopt->flags.ignore_untracked_in_submodules = 1;
46a958b3 450 else if (!strcmp(arg, "dirty"))
0d1e0e78 451 diffopt->flags.ignore_dirty_submodules = 1;
aee9c7d6 452 else if (strcmp(arg, "none"))
a4ffbbbb 453 die(_("bad --ignore-submodules argument: %s"), arg);
5a59a230
NTND
454 /*
455 * Please update _git_status() in git-completion.bash when you
456 * add new options
457 */
46a958b3
JL
458}
459
4831c23f
JH
460static int prepare_submodule_diff_summary(struct repository *r, struct rev_info *rev,
461 const char *path,
462 struct commit *left, struct commit *right,
463 struct commit_list *merge_bases)
808a95dc 464{
8e6df650 465 struct commit_list *list;
808a95dc 466
85a1ec2c 467 repo_init_revisions(r, rev, NULL);
808a95dc
JN
468 setup_revisions(0, NULL, rev, NULL);
469 rev->left_right = 1;
470 rev->first_parent_only = 1;
471 left->object.flags |= SYMMETRIC_LEFT;
472 add_pending_object(rev, &left->object, path);
473 add_pending_object(rev, &right->object, path);
808a95dc
JN
474 for (list = merge_bases; list; list = list->next) {
475 list->item->object.flags |= UNINTERESTING;
476 add_pending_object(rev, &list->item->object,
f2fd0760 477 oid_to_hex(&list->item->object.oid));
808a95dc
JN
478 }
479 return prepare_revision_walk(rev);
480}
481
180b154b 482static void print_submodule_diff_summary(struct repository *r, struct rev_info *rev, struct diff_options *o)
808a95dc
JN
483{
484 static const char format[] = " %m %s";
485 struct strbuf sb = STRBUF_INIT;
486 struct commit *commit;
487
488 while ((commit = get_revision(rev))) {
489 struct pretty_print_context ctx = {0};
490 ctx.date_mode = rev->date_mode;
ecaee805 491 ctx.output_encoding = get_log_output_encoding();
808a95dc 492 strbuf_setlen(&sb, 0);
605f0ec1
SB
493 repo_format_commit_message(r, commit, format, &sb,
494 &ctx);
808a95dc 495 strbuf_addch(&sb, '\n');
f3597138
SB
496 if (commit->object.flags & SYMMETRIC_LEFT)
497 diff_emit_submodule_del(o, sb.buf);
498 else
499 diff_emit_submodule_add(o, sb.buf);
808a95dc
JN
500 }
501 strbuf_release(&sb);
502}
503
c972bf4c 504void prepare_submodule_repo_env(struct strvec *out)
6cd5757c 505{
d1fa9435 506 prepare_other_repo_env(out, DEFAULT_GIT_DIR_ENVIRONMENT);
6cd5757c
SB
507}
508
c972bf4c 509static void prepare_submodule_repo_env_in_gitdir(struct strvec *out)
a62387b3 510{
d1fa9435 511 prepare_other_repo_env(out, ".");
a62387b3
SB
512}
513
605f0ec1
SB
514/*
515 * Initialize a repository struct for a submodule based on the provided 'path'.
516 *
605f0ec1
SB
517 * Returns the repository struct on success,
518 * NULL when the submodule is not present.
8e6df650 519 */
605f0ec1
SB
520static struct repository *open_submodule(const char *path)
521{
522 struct strbuf sb = STRBUF_INIT;
523 struct repository *out = xmalloc(sizeof(*out));
524
525 if (submodule_to_gitdir(&sb, path) || repo_init(out, sb.buf, NULL)) {
526 strbuf_release(&sb);
527 free(out);
528 return NULL;
529 }
530
531 /* Mark it as a submodule */
532 out->submodule_prefix = xstrdup(path);
533
534 strbuf_release(&sb);
535 return out;
536}
537
538/*
539 * Helper function to display the submodule header line prior to the full
540 * summary output.
541 *
542 * If it can locate the submodule git directory it will create a repository
543 * handle for the submodule and lookup both the left and right commits and
544 * put them into the left and right pointers.
8e6df650 545 */
605f0ec1
SB
546static void show_submodule_header(struct diff_options *o,
547 const char *path,
602a283a 548 struct object_id *one, struct object_id *two,
f3597138 549 unsigned dirty_submodule,
605f0ec1 550 struct repository *sub,
8e6df650
JK
551 struct commit **left, struct commit **right,
552 struct commit_list **merge_bases)
752c0c24 553{
752c0c24
JS
554 const char *message = NULL;
555 struct strbuf sb = STRBUF_INIT;
752c0c24
JS
556 int fast_forward = 0, fast_backward = 0;
557
c7e1a736 558 if (dirty_submodule & DIRTY_SUBMODULE_UNTRACKED)
f3597138
SB
559 diff_emit_submodule_untracked(o, path);
560
c7e1a736 561 if (dirty_submodule & DIRTY_SUBMODULE_MODIFIED)
f3597138 562 diff_emit_submodule_modified(o, path);
c7e1a736 563
8e6df650
JK
564 if (is_null_oid(one))
565 message = "(new submodule)";
566 else if (is_null_oid(two))
567 message = "(submodule deleted)";
568
605f0ec1 569 if (!sub) {
8e6df650 570 if (!message)
2d94dd2f 571 message = "(commits not present)";
8e6df650
JK
572 goto output_header;
573 }
574
575 /*
576 * Attempt to lookup the commit references, and determine if this is
577 * a fast forward or fast backwards update.
578 */
605f0ec1
SB
579 *left = lookup_commit_reference(sub, one);
580 *right = lookup_commit_reference(sub, two);
8e6df650
JK
581
582 /*
583 * Warn about missing commits in the submodule project, but only if
584 * they aren't null.
585 */
586 if ((!is_null_oid(one) && !*left) ||
587 (!is_null_oid(two) && !*right))
588 message = "(commits not present)";
589
605f0ec1 590 *merge_bases = repo_get_merge_bases(sub, *left, *right);
8e6df650
JK
591 if (*merge_bases) {
592 if ((*merge_bases)->item == *left)
593 fast_forward = 1;
594 else if ((*merge_bases)->item == *right)
595 fast_backward = 1;
596 }
597
4a7e27e9 598 if (oideq(one, two)) {
c7e1a736
JL
599 strbuf_release(&sb);
600 return;
601 }
602
8e6df650 603output_header:
f3597138 604 strbuf_addf(&sb, "Submodule %s ", path);
30e677e0 605 strbuf_add_unique_abbrev(&sb, one, DEFAULT_ABBREV);
a94bb683 606 strbuf_addstr(&sb, (fast_backward || fast_forward) ? ".." : "...");
30e677e0 607 strbuf_add_unique_abbrev(&sb, two, DEFAULT_ABBREV);
752c0c24 608 if (message)
f3597138 609 strbuf_addf(&sb, " %s\n", message);
752c0c24 610 else
f3597138
SB
611 strbuf_addf(&sb, "%s:\n", fast_backward ? " (rewind)" : "");
612 diff_emit_submodule_header(o, sb.buf);
752c0c24 613
752c0c24
JS
614 strbuf_release(&sb);
615}
ee6fc514 616
180b154b 617void show_submodule_diff_summary(struct diff_options *o, const char *path,
8e6df650 618 struct object_id *one, struct object_id *two,
f3597138 619 unsigned dirty_submodule)
8e6df650 620{
f196c1e9 621 struct rev_info rev = REV_INFO_INIT;
8e6df650
JK
622 struct commit *left = NULL, *right = NULL;
623 struct commit_list *merge_bases = NULL;
605f0ec1 624 struct repository *sub;
8e6df650 625
605f0ec1 626 sub = open_submodule(path);
f3597138 627 show_submodule_header(o, path, one, two, dirty_submodule,
605f0ec1 628 sub, &left, &right, &merge_bases);
8e6df650
JK
629
630 /*
631 * If we don't have both a left and a right pointer, there is no
632 * reason to try and display a summary. The header line should contain
633 * all the information the user needs.
634 */
605f0ec1 635 if (!left || !right || !sub)
8e6df650
JK
636 goto out;
637
638 /* Treat revision walker failure the same as missing commits */
4831c23f 639 if (prepare_submodule_diff_summary(sub, &rev, path, left, right, merge_bases)) {
f3597138 640 diff_emit_submodule_error(o, "(revision walker failed)\n");
8e6df650
JK
641 goto out;
642 }
643
180b154b 644 print_submodule_diff_summary(sub, &rev, o);
8e6df650
JK
645
646out:
bf20fe4c 647 free_commit_list(merge_bases);
f196c1e9 648 release_revisions(&rev);
8e6df650
JK
649 clear_commit_marks(left, ~0);
650 clear_commit_marks(right, ~0);
605f0ec1
SB
651 if (sub) {
652 repo_clear(sub);
653 free(sub);
654 }
8e6df650
JK
655}
656
f3597138 657void show_submodule_inline_diff(struct diff_options *o, const char *path,
fd47ae6a 658 struct object_id *one, struct object_id *two,
f3597138 659 unsigned dirty_submodule)
fd47ae6a 660{
bc099914 661 const struct object_id *old_oid = the_hash_algo->empty_tree, *new_oid = the_hash_algo->empty_tree;
fd47ae6a
JK
662 struct commit *left = NULL, *right = NULL;
663 struct commit_list *merge_bases = NULL;
fd47ae6a 664 struct child_process cp = CHILD_PROCESS_INIT;
f3597138 665 struct strbuf sb = STRBUF_INIT;
605f0ec1 666 struct repository *sub;
fd47ae6a 667
605f0ec1 668 sub = open_submodule(path);
f3597138 669 show_submodule_header(o, path, one, two, dirty_submodule,
605f0ec1 670 sub, &left, &right, &merge_bases);
fd47ae6a
JK
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)
bc099914 678 old_oid = one;
fd47ae6a 679 if (right)
bc099914 680 new_oid = two;
fd47ae6a 681
fd47ae6a
JK
682 cp.git_cmd = 1;
683 cp.dir = path;
f3597138 684 cp.out = -1;
fd47ae6a
JK
685 cp.no_stdin = 1;
686
687 /* TODO: other options may need to be passed here. */
c972bf4c
JK
688 strvec_pushl(&cp.args, "diff", "--submodule=diff", NULL);
689 strvec_pushf(&cp.args, "--color=%s", want_color(o->use_color) ?
f3597138 690 "always" : "never");
5a522142 691
0d1e0e78 692 if (o->flags.reverse_diff) {
c972bf4c 693 strvec_pushf(&cp.args, "--src-prefix=%s%s/",
f6d8942b 694 o->b_prefix, path);
c972bf4c 695 strvec_pushf(&cp.args, "--dst-prefix=%s%s/",
f6d8942b 696 o->a_prefix, path);
fd47ae6a 697 } else {
c972bf4c 698 strvec_pushf(&cp.args, "--src-prefix=%s%s/",
f6d8942b 699 o->a_prefix, path);
c972bf4c 700 strvec_pushf(&cp.args, "--dst-prefix=%s%s/",
f6d8942b 701 o->b_prefix, path);
fd47ae6a 702 }
c972bf4c 703 strvec_push(&cp.args, oid_to_hex(old_oid));
fd47ae6a
JK
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))
c972bf4c 711 strvec_push(&cp.args, oid_to_hex(new_oid));
fd47ae6a 712
29fda24d 713 prepare_submodule_repo_env(&cp.env);
f1c0368d
DT
714
715 if (!is_directory(path)) {
716 /* fall back to absorbed git dir, if any */
717 if (!sub)
718 goto done;
719 cp.dir = sub->gitdir;
29fda24d
ÆAB
720 strvec_push(&cp.env, GIT_DIR_ENVIRONMENT "=.");
721 strvec_push(&cp.env, GIT_WORK_TREE_ENVIRONMENT "=.");
f1c0368d
DT
722 }
723
67f61efb 724 if (start_command(&cp)) {
f3597138 725 diff_emit_submodule_error(o, "(diff failed)\n");
67f61efb
DT
726 goto done;
727 }
f3597138
SB
728
729 while (strbuf_getwholeline_fd(&sb, cp.out, '\n') != EOF)
730 diff_emit_submodule_pipethrough(o, sb.buf, sb.len);
731
732 if (finish_command(&cp))
733 diff_emit_submodule_error(o, "(diff failed)\n");
fd47ae6a
JK
734
735done:
f3597138 736 strbuf_release(&sb);
bf20fe4c 737 free_commit_list(merge_bases);
fd47ae6a
JK
738 if (left)
739 clear_commit_marks(left, ~0);
740 if (right)
741 clear_commit_marks(right, ~0);
605f0ec1
SB
742 if (sub) {
743 repo_clear(sub);
744 free(sub);
745 }
fd47ae6a
JK
746}
747
84f8925e
SB
748int should_update_submodules(void)
749{
750 return config_update_recurse_submodules == RECURSE_SUBMODULES_ON;
751}
752
753const struct submodule *submodule_from_ce(const struct cache_entry *ce)
754{
755 if (!S_ISGITLINK(ce->ce_mode))
756 return NULL;
757
758 if (!should_update_submodules())
759 return NULL;
760
14228447 761 return submodule_from_path(the_repository, null_oid(), ce->name);
84f8925e
SB
762}
763
aacc5c1a 764
c68f8375 765struct collect_changed_submodules_cb_data {
6245b98b 766 struct repository *repo;
c68f8375
HV
767 struct string_list *changed;
768 const struct object_id *commit_oid;
769};
770
771/*
772 * this would normally be two functions: default_name_from_path() and
773 * path_from_default_name(). Since the default name is the same as
774 * the submodule path we can get away with just one function which only
775 * checks whether there is a submodule in the working directory at that
776 * location.
777 */
778static const char *default_name_or_path(const char *path_or_name)
779{
780 int error_code;
781
782 if (!is_submodule_populated_gently(path_or_name, &error_code))
783 return NULL;
784
785 return path_or_name;
786}
787
6e1e0c99
GC
788/*
789 * Holds relevant information for a changed submodule. Used as the .util
b90d9f76
GC
790 * member of the changed submodule name string_list_item.
791 *
792 * (super_oid, path) allows the submodule config to be read from _some_
793 * .gitmodules file. We store this information the first time we find a
794 * superproject commit that points to the submodule, but this is
795 * arbitrary - we can choose any (super_oid, path) that matches the
796 * submodule's name.
797 *
798 * NEEDSWORK: Storing an arbitrary commit is undesirable because we can't
799 * guarantee that we're reading the commit that the user would expect. A better
800 * scheme would be to just fetch a submodule by its name. This requires two
801 * steps:
802 * - Create a function that behaves like repo_submodule_init(), but accepts a
803 * submodule name instead of treeish_name and path. This should be easy
804 * because repo_submodule_init() internally uses the submodule's name.
805 *
806 * - Replace most instances of 'struct submodule' (which is the .gitmodules
807 * config) with just the submodule name. This is OK because we expect
808 * submodule settings to be stored in .git/config (via "git submodule init"),
809 * not .gitmodules. This also lets us delete get_non_gitmodules_submodule(),
810 * which constructs a bogus 'struct submodule' for the sake of giving a
811 * placeholder name to a gitlink.
6e1e0c99
GC
812 */
813struct changed_submodule_data {
b90d9f76
GC
814 /*
815 * The first superproject commit in the rev walk that points to
816 * the submodule.
817 */
818 const struct object_id *super_oid;
819 /*
820 * Path to the submodule in the superproject commit referenced
821 * by 'super_oid'.
822 */
823 char *path;
6e1e0c99
GC
824 /* The submodule commits that have changed in the rev walk. */
825 struct oid_array new_commits;
826};
827
828static void changed_submodule_data_clear(struct changed_submodule_data *cs_data)
829{
830 oid_array_clear(&cs_data->new_commits);
b90d9f76 831 free(cs_data->path);
6e1e0c99
GC
832}
833
aacc5c1a
BW
834static void collect_changed_submodules_cb(struct diff_queue_struct *q,
835 struct diff_options *options,
836 void *data)
837{
c68f8375
HV
838 struct collect_changed_submodules_cb_data *me = data;
839 struct string_list *changed = me->changed;
840 const struct object_id *commit_oid = me->commit_oid;
aacc5c1a 841 int i;
aacc5c1a
BW
842
843 for (i = 0; i < q->nr; i++) {
844 struct diff_filepair *p = q->queue[i];
c68f8375
HV
845 const struct submodule *submodule;
846 const char *name;
1e5dd3a1 847 struct string_list_item *item;
6e1e0c99 848 struct changed_submodule_data *cs_data;
c68f8375 849
aacc5c1a
BW
850 if (!S_ISGITLINK(p->two->mode))
851 continue;
852
6245b98b 853 submodule = submodule_from_path(me->repo,
3b8fb393 854 commit_oid, p->two->path);
c68f8375
HV
855 if (submodule)
856 name = submodule->name;
857 else {
858 name = default_name_or_path(p->two->path);
859 /* make sure name does not collide with existing one */
5fc84755 860 if (name)
6245b98b 861 submodule = submodule_from_name(me->repo,
5fc84755 862 commit_oid, name);
c68f8375 863 if (submodule) {
a4ffbbbb 864 warning(_("Submodule in commit %s at path: "
c68f8375 865 "'%s' collides with a submodule named "
a4ffbbbb 866 "the same. Skipping it."),
5fc84755 867 oid_to_hex(commit_oid), p->two->path);
c68f8375
HV
868 name = NULL;
869 }
aacc5c1a 870 }
c68f8375
HV
871
872 if (!name)
873 continue;
874
1e5dd3a1 875 item = string_list_insert(changed, name);
b90d9f76
GC
876 if (item->util)
877 cs_data = item->util;
878 else {
6e1e0c99 879 item->util = xcalloc(1, sizeof(struct changed_submodule_data));
b90d9f76
GC
880 cs_data = item->util;
881 cs_data->super_oid = commit_oid;
882 cs_data->path = xstrdup(p->two->path);
883 }
6e1e0c99 884 oid_array_append(&cs_data->new_commits, &p->two->oid);
aacc5c1a
BW
885 }
886}
887
888/*
889 * Collect the paths of submodules in 'changed' which have changed based on
890 * the revisions as specified in 'argv'. Each entry in 'changed' will also
891 * have a corresponding 'struct oid_array' (in the 'util' field) which lists
892 * what the submodule pointers were updated to during the change.
893 */
6245b98b 894static void collect_changed_submodules(struct repository *r,
174d131f 895 struct string_list *changed,
c972bf4c 896 struct strvec *argv)
aacc5c1a
BW
897{
898 struct rev_info rev;
899 const struct commit *commit;
a462bee5
OS
900 int save_warning;
901 struct setup_revision_opt s_r_opt = {
902 .assume_dashdash = 1,
903 };
aacc5c1a 904
a462bee5
OS
905 save_warning = warn_on_object_refname_ambiguity;
906 warn_on_object_refname_ambiguity = 0;
6245b98b 907 repo_init_revisions(r, &rev, NULL);
a462bee5
OS
908 setup_revisions(argv->nr, argv->v, &rev, &s_r_opt);
909 warn_on_object_refname_ambiguity = save_warning;
aacc5c1a 910 if (prepare_revision_walk(&rev))
a4ffbbbb 911 die(_("revision walk setup failed"));
aacc5c1a
BW
912
913 while ((commit = get_revision(&rev))) {
914 struct rev_info diff_rev;
c68f8375 915 struct collect_changed_submodules_cb_data data;
6245b98b 916 data.repo = r;
c68f8375
HV
917 data.changed = changed;
918 data.commit_oid = &commit->object.oid;
aacc5c1a 919
6245b98b 920 repo_init_revisions(r, &diff_rev, NULL);
aacc5c1a
BW
921 diff_rev.diffopt.output_format |= DIFF_FORMAT_CALLBACK;
922 diff_rev.diffopt.format_callback = collect_changed_submodules_cb;
c68f8375 923 diff_rev.diffopt.format_callback_data = &data;
d01141de
SO
924 diff_rev.dense_combined_merges = 1;
925 diff_tree_combined_merge(commit, &diff_rev);
2108fe4a 926 release_revisions(&diff_rev);
aacc5c1a
BW
927 }
928
929 reset_revision_walk();
2108fe4a 930 release_revisions(&rev);
aacc5c1a
BW
931}
932
6e1e0c99 933static void free_submodules_data(struct string_list *submodules)
aacc5c1a
BW
934{
935 struct string_list_item *item;
936 for_each_string_list_item(item, submodules)
6e1e0c99
GC
937 changed_submodule_data_clear(item->util);
938
aacc5c1a
BW
939 string_list_clear(submodules, 1);
940}
941
5cf88fd8
ÆAB
942static int has_remote(const char *refname UNUSED,
943 const struct object_id *oid UNUSED,
944 int flags UNUSED, void *cb_data UNUSED)
d2b17b32
FG
945{
946 return 1;
947}
948
1b7ba794 949static int append_oid_to_argv(const struct object_id *oid, void *data)
d2b17b32 950{
c972bf4c
JK
951 struct strvec *argv = data;
952 strvec_push(argv, oid_to_hex(oid));
9cfa1c26
HV
953 return 0;
954}
955
3c96aa97 956struct has_commit_data {
6245b98b 957 struct repository *repo;
3c96aa97
SB
958 int result;
959 const char *path;
7c2f8cc5 960 const struct object_id *super_oid;
3c96aa97
SB
961};
962
1b7ba794 963static int check_has_commit(const struct object_id *oid, void *data)
d2b17b32 964{
3c96aa97 965 struct has_commit_data *cb = data;
13a2f620
JT
966 struct repository subrepo;
967 enum object_type type;
5b6607d2 968
7c2f8cc5 969 if (repo_submodule_init(&subrepo, cb->repo, cb->path, cb->super_oid)) {
13a2f620 970 cb->result = 0;
5fff35d8
GC
971 /* subrepo failed to init, so don't clean it up. */
972 return 0;
13a2f620
JT
973 }
974
975 type = oid_object_info(&subrepo, oid, NULL);
5b6607d2 976
3c96aa97
SB
977 switch (type) {
978 case OBJ_COMMIT:
13a2f620 979 goto cleanup;
3c96aa97
SB
980 case OBJ_BAD:
981 /*
982 * Object is missing or invalid. If invalid, an error message
983 * has already been printed.
984 */
985 cb->result = 0;
13a2f620 986 goto cleanup;
3c96aa97
SB
987 default:
988 die(_("submodule entry '%s' (%s) is a %s, not a commit"),
debca9d2 989 cb->path, oid_to_hex(oid), type_name(type));
3c96aa97 990 }
13a2f620
JT
991cleanup:
992 repo_clear(&subrepo);
993 return 0;
5b6607d2
HV
994}
995
6245b98b
NTND
996static int submodule_has_commits(struct repository *r,
997 const char *path,
7c2f8cc5 998 const struct object_id *super_oid,
6245b98b 999 struct oid_array *commits)
5b6607d2 1000{
7c2f8cc5
GC
1001 struct has_commit_data has_commit = {
1002 .repo = r,
1003 .result = 1,
1004 .path = path,
1005 .super_oid = super_oid
1006 };
5b6607d2 1007
910650d2 1008 oid_array_for_each_unique(commits, check_has_commit, &has_commit);
7c8d2b00 1009
3c96aa97 1010 if (has_commit.result) {
7c8d2b00
BW
1011 /*
1012 * Even if the submodule is checked out and the commit is
1013 * present, make sure it exists in the submodule's object store
1014 * and that it is reachable from a ref.
1015 */
1016 struct child_process cp = CHILD_PROCESS_INIT;
1017 struct strbuf out = STRBUF_INIT;
1018
c972bf4c 1019 strvec_pushl(&cp.args, "rev-list", "-n", "1", NULL);
7c8d2b00 1020 oid_array_for_each_unique(commits, append_oid_to_argv, &cp.args);
c972bf4c 1021 strvec_pushl(&cp.args, "--not", "--all", NULL);
7c8d2b00 1022
29fda24d 1023 prepare_submodule_repo_env(&cp.env);
7c8d2b00
BW
1024 cp.git_cmd = 1;
1025 cp.no_stdin = 1;
1026 cp.dir = path;
1027
1028 if (capture_command(&cp, &out, GIT_MAX_HEXSZ + 1) || out.len)
3c96aa97 1029 has_commit.result = 0;
7c8d2b00
BW
1030
1031 strbuf_release(&out);
1032 }
1033
3c96aa97 1034 return has_commit.result;
5b6607d2
HV
1035}
1036
6245b98b
NTND
1037static int submodule_needs_pushing(struct repository *r,
1038 const char *path,
1039 struct oid_array *commits)
5b6607d2 1040{
7c2f8cc5 1041 if (!submodule_has_commits(r, path, null_oid(), commits))
250ab24a
HV
1042 /*
1043 * NOTE: We do consider it safe to return "no" here. The
1044 * correct answer would be "We do not know" instead of
1045 * "No push needed", but it is quite hard to change
1046 * the submodule pointer without having the submodule
1047 * around. If a user did however change the submodules
1048 * without having the submodule around, this indicates
1049 * an expert who knows what they are doing or a
1050 * maintainer integrating work from other people. In
1051 * both cases it should be safe to skip this check.
1052 */
d2b17b32
FG
1053 return 0;
1054
1055 if (for_each_remote_ref_submodule(path, has_remote, NULL) > 0) {
d3180279 1056 struct child_process cp = CHILD_PROCESS_INIT;
d2b17b32
FG
1057 struct strbuf buf = STRBUF_INIT;
1058 int needs_pushing = 0;
1059
c972bf4c 1060 strvec_push(&cp.args, "rev-list");
910650d2 1061 oid_array_for_each_unique(commits, append_oid_to_argv, &cp.args);
c972bf4c 1062 strvec_pushl(&cp.args, "--not", "--remotes", "-n", "1" , NULL);
5b6607d2 1063
29fda24d 1064 prepare_submodule_repo_env(&cp.env);
d2b17b32
FG
1065 cp.git_cmd = 1;
1066 cp.no_stdin = 1;
1067 cp.out = -1;
1068 cp.dir = path;
1069 if (start_command(&cp))
a4ffbbbb 1070 die(_("Could not run 'git rev-list <commits> --not --remotes -n 1' command in submodule %s"),
5b6607d2 1071 path);
db1ba2a2 1072 if (strbuf_read(&buf, cp.out, the_hash_algo->hexsz + 1))
d2b17b32
FG
1073 needs_pushing = 1;
1074 finish_command(&cp);
1075 close(cp.out);
1076 strbuf_release(&buf);
1077 return needs_pushing;
1078 }
1079
1080 return 0;
1081}
1082
6245b98b 1083int find_unpushed_submodules(struct repository *r,
174d131f
NTND
1084 struct oid_array *commits,
1085 const char *remotes_name,
1086 struct string_list *needs_pushing)
d2b17b32 1087{
14739447 1088 struct string_list submodules = STRING_LIST_INIT_DUP;
c68f8375 1089 struct string_list_item *name;
c972bf4c 1090 struct strvec argv = STRVEC_INIT;
a762e51e 1091
d70a9eb6 1092 /* argv.v[0] will be ignored by setup_revisions */
c972bf4c 1093 strvec_push(&argv, "find_unpushed_submodules");
910650d2 1094 oid_array_for_each_unique(commits, append_oid_to_argv, &argv);
c972bf4c
JK
1095 strvec_push(&argv, "--not");
1096 strvec_pushf(&argv, "--remotes=%s", remotes_name);
9cfa1c26 1097
6245b98b 1098 collect_changed_submodules(r, &submodules, &argv);
d2b17b32 1099
c68f8375 1100 for_each_string_list_item(name, &submodules) {
6e1e0c99 1101 struct changed_submodule_data *cs_data = name->util;
c68f8375
HV
1102 const struct submodule *submodule;
1103 const char *path = NULL;
1104
14228447 1105 submodule = submodule_from_name(r, null_oid(), name->string);
c68f8375
HV
1106 if (submodule)
1107 path = submodule->path;
1108 else
1109 path = default_name_or_path(name->string);
1110
1111 if (!path)
1112 continue;
5b6607d2 1113
6e1e0c99 1114 if (submodule_needs_pushing(r, path, &cs_data->new_commits))
aacc5c1a 1115 string_list_insert(needs_pushing, path);
14739447 1116 }
610b2337 1117
6e1e0c99 1118 free_submodules_data(&submodules);
c972bf4c 1119 strvec_clear(&argv);
d2b17b32 1120
a762e51e 1121 return needs_pushing->nr;
d2b17b32
FG
1122}
1123
2a90556d 1124static int push_submodule(const char *path,
06bf4ad1 1125 const struct remote *remote,
60fba4bf 1126 const struct refspec *rs,
2a90556d
BW
1127 const struct string_list *push_options,
1128 int dry_run)
eb21c732 1129{
eb21c732 1130 if (for_each_remote_ref_submodule(path, has_remote, NULL) > 0) {
d3180279 1131 struct child_process cp = CHILD_PROCESS_INIT;
c972bf4c 1132 strvec_push(&cp.args, "push");
e62f779a
JT
1133 /*
1134 * When recursing into a submodule, treat any "only" configurations as "on-
1135 * demand", since "only" would not work (we need all submodules to be pushed
1136 * in order to be able to push the superproject).
1137 */
1138 strvec_push(&cp.args, "--recurse-submodules=only-is-on-demand");
0301c821 1139 if (dry_run)
c972bf4c 1140 strvec_push(&cp.args, "--dry-run");
eb21c732 1141
2a90556d
BW
1142 if (push_options && push_options->nr) {
1143 const struct string_list_item *item;
1144 for_each_string_list_item(item, push_options)
c972bf4c 1145 strvec_pushf(&cp.args, "--push-option=%s",
f6d8942b 1146 item->string);
2a90556d 1147 }
06bf4ad1
BW
1148
1149 if (remote->origin != REMOTE_UNCONFIGURED) {
1150 int i;
c972bf4c 1151 strvec_push(&cp.args, remote->name);
60fba4bf 1152 for (i = 0; i < rs->raw_nr; i++)
c972bf4c 1153 strvec_push(&cp.args, rs->raw[i]);
06bf4ad1
BW
1154 }
1155
29fda24d 1156 prepare_submodule_repo_env(&cp.env);
eb21c732
HV
1157 cp.git_cmd = 1;
1158 cp.no_stdin = 1;
1159 cp.dir = path;
1160 if (run_command(&cp))
1161 return 0;
1162 close(cp.out);
1163 }
1164
1165 return 1;
1166}
1167
06bf4ad1
BW
1168/*
1169 * Perform a check in the submodule to see if the remote and refspec work.
1170 * Die if the submodule can't be pushed.
1171 */
c7be7201
BW
1172static void submodule_push_check(const char *path, const char *head,
1173 const struct remote *remote,
60fba4bf 1174 const struct refspec *rs)
06bf4ad1
BW
1175{
1176 struct child_process cp = CHILD_PROCESS_INIT;
1177 int i;
1178
c972bf4c
JK
1179 strvec_push(&cp.args, "submodule--helper");
1180 strvec_push(&cp.args, "push-check");
1181 strvec_push(&cp.args, head);
1182 strvec_push(&cp.args, remote->name);
06bf4ad1 1183
60fba4bf 1184 for (i = 0; i < rs->raw_nr; i++)
c972bf4c 1185 strvec_push(&cp.args, rs->raw[i]);
06bf4ad1 1186
29fda24d 1187 prepare_submodule_repo_env(&cp.env);
06bf4ad1
BW
1188 cp.git_cmd = 1;
1189 cp.no_stdin = 1;
1190 cp.no_stdout = 1;
1191 cp.dir = path;
1192
1193 /*
1194 * Simply indicate if 'submodule--helper push-check' failed.
1195 * More detailed error information will be provided by the
1196 * child process.
1197 */
1198 if (run_command(&cp))
a4ffbbbb 1199 die(_("process for submodule '%s' failed"), path);
06bf4ad1
BW
1200}
1201
6245b98b 1202int push_unpushed_submodules(struct repository *r,
174d131f 1203 struct oid_array *commits,
06bf4ad1 1204 const struct remote *remote,
60fba4bf 1205 const struct refspec *rs,
2a90556d 1206 const struct string_list *push_options,
0301c821 1207 int dry_run)
eb21c732
HV
1208{
1209 int i, ret = 1;
f93d7c6f 1210 struct string_list needs_pushing = STRING_LIST_INIT_DUP;
eb21c732 1211
6245b98b 1212 if (!find_unpushed_submodules(r, commits,
174d131f 1213 remote->name, &needs_pushing))
eb21c732
HV
1214 return 1;
1215
06bf4ad1
BW
1216 /*
1217 * Verify that the remote and refspec can be propagated to all
1218 * submodules. This check can be skipped if the remote and refspec
1219 * won't be propagated due to the remote being unconfigured (e.g. a URL
1220 * instead of a remote name).
1221 */
c7be7201
BW
1222 if (remote->origin != REMOTE_UNCONFIGURED) {
1223 char *head;
1224 struct object_id head_oid;
1225
0f2dc722 1226 head = resolve_refdup("HEAD", 0, &head_oid, NULL);
c7be7201
BW
1227 if (!head)
1228 die(_("Failed to resolve HEAD as a valid ref."));
1229
06bf4ad1
BW
1230 for (i = 0; i < needs_pushing.nr; i++)
1231 submodule_push_check(needs_pushing.items[i].string,
60fba4bf 1232 head, remote, rs);
c7be7201
BW
1233 free(head);
1234 }
06bf4ad1
BW
1235
1236 /* Actually push the submodules */
eb21c732
HV
1237 for (i = 0; i < needs_pushing.nr; i++) {
1238 const char *path = needs_pushing.items[i].string;
a4ffbbbb 1239 fprintf(stderr, _("Pushing submodule '%s'\n"), path);
60fba4bf 1240 if (!push_submodule(path, remote, rs,
06bf4ad1 1241 push_options, dry_run)) {
a4ffbbbb 1242 fprintf(stderr, _("Unable to push submodule '%s'\n"), path);
eb21c732
HV
1243 ret = 0;
1244 }
1245 }
1246
1247 string_list_clear(&needs_pushing, 0);
1248
1249 return ret;
1250}
1251
5cf88fd8 1252static int append_oid_to_array(const char *ref UNUSED,
63e14ee2 1253 const struct object_id *oid,
5cf88fd8 1254 int flags UNUSED, void *data)
6859de45 1255{
419fd786
BW
1256 struct oid_array *array = data;
1257 oid_array_append(array, oid);
6859de45
JK
1258 return 0;
1259}
1260
2eb80bcd 1261void check_for_new_submodule_commits(struct object_id *oid)
6859de45
JK
1262{
1263 if (!initialized_fetch_ref_tips) {
419fd786 1264 for_each_ref(append_oid_to_array, &ref_tips_before_fetch);
6859de45
JK
1265 initialized_fetch_ref_tips = 1;
1266 }
1267
910650d2 1268 oid_array_append(&ref_tips_after_fetch, oid);
6859de45
JK
1269}
1270
b90d9f76
GC
1271/*
1272 * Returns 1 if there is at least one submodule gitdir in
1273 * $GIT_DIR/modules and 0 otherwise. This follows
1274 * submodule_name_to_gitdir(), which looks for submodules in
1275 * $GIT_DIR/modules, not $GIT_COMMON_DIR.
1276 *
1277 * A submodule can be moved to $GIT_DIR/modules manually by running "git
1278 * submodule absorbgitdirs", or it may be initialized there by "git
1279 * submodule update".
1280 */
1281static int repo_has_absorbed_submodules(struct repository *r)
1282{
1283 int ret;
1284 struct strbuf buf = STRBUF_INIT;
1285
1286 strbuf_repo_git_path(&buf, r, "modules/");
1287 ret = file_exists(buf.buf) && !is_empty_dir(buf.buf);
1288 strbuf_release(&buf);
1289 return ret;
1290}
1291
16dd6fe1
SB
1292static void calculate_changed_submodule_paths(struct repository *r,
1293 struct string_list *changed_submodule_names)
88a21979 1294{
c972bf4c 1295 struct strvec argv = STRVEC_INIT;
bcd73372 1296 struct string_list_item *name;
88a21979 1297
b90d9f76
GC
1298 /* No need to check if no submodules would be fetched */
1299 if (!submodule_from_path(r, NULL, NULL) &&
1300 !repo_has_absorbed_submodules(r))
18322bad
JL
1301 return;
1302
c972bf4c 1303 strvec_push(&argv, "--"); /* argv[0] program name */
910650d2 1304 oid_array_for_each_unique(&ref_tips_after_fetch,
d1a8460c 1305 append_oid_to_argv, &argv);
c972bf4c 1306 strvec_push(&argv, "--not");
910650d2 1307 oid_array_for_each_unique(&ref_tips_before_fetch,
d1a8460c 1308 append_oid_to_argv, &argv);
88a21979
JL
1309
1310 /*
1311 * Collect all submodules (whether checked out or not) for which new
c68f8375 1312 * commits have been recorded upstream in "changed_submodule_names".
88a21979 1313 */
bcd73372 1314 collect_changed_submodules(r, changed_submodule_names, &argv);
aacc5c1a 1315
bcd73372 1316 for_each_string_list_item(name, changed_submodule_names) {
6e1e0c99 1317 struct changed_submodule_data *cs_data = name->util;
c68f8375
HV
1318 const struct submodule *submodule;
1319 const char *path = NULL;
1320
14228447 1321 submodule = submodule_from_name(r, null_oid(), name->string);
c68f8375
HV
1322 if (submodule)
1323 path = submodule->path;
1324 else
1325 path = default_name_or_path(name->string);
1326
1327 if (!path)
1328 continue;
aacc5c1a 1329
6e1e0c99
GC
1330 if (submodule_has_commits(r, path, null_oid(), &cs_data->new_commits)) {
1331 changed_submodule_data_clear(cs_data);
bcd73372
SB
1332 *name->string = '\0';
1333 }
88a21979 1334 }
6859de45 1335
bcd73372
SB
1336 string_list_remove_empty_items(changed_submodule_names, 1);
1337
c972bf4c 1338 strvec_clear(&argv);
910650d2 1339 oid_array_clear(&ref_tips_before_fetch);
1340 oid_array_clear(&ref_tips_after_fetch);
6859de45 1341 initialized_fetch_ref_tips = 0;
88a21979
JL
1342}
1343
6245b98b 1344int submodule_touches_in_range(struct repository *r,
174d131f 1345 struct object_id *excl_oid,
a6d7eb2c
SB
1346 struct object_id *incl_oid)
1347{
1348 struct string_list subs = STRING_LIST_INIT_DUP;
c972bf4c 1349 struct strvec args = STRVEC_INIT;
a6d7eb2c
SB
1350 int ret;
1351
a6d7eb2c 1352 /* No need to check if there are no submodules configured */
6245b98b 1353 if (!submodule_from_path(r, NULL, NULL))
a6d7eb2c
SB
1354 return 0;
1355
c972bf4c
JK
1356 strvec_push(&args, "--"); /* args[0] program name */
1357 strvec_push(&args, oid_to_hex(incl_oid));
4d36f88b 1358 if (!is_null_oid(excl_oid)) {
c972bf4c
JK
1359 strvec_push(&args, "--not");
1360 strvec_push(&args, oid_to_hex(excl_oid));
4d36f88b 1361 }
a6d7eb2c 1362
6245b98b 1363 collect_changed_submodules(r, &subs, &args);
a6d7eb2c
SB
1364 ret = subs.nr;
1365
c972bf4c 1366 strvec_clear(&args);
a6d7eb2c 1367
6e1e0c99 1368 free_submodules_data(&subs);
a6d7eb2c
SB
1369 return ret;
1370}
1371
fe85ee6e 1372struct submodule_parallel_fetch {
b90d9f76
GC
1373 /*
1374 * The index of the last index entry processed by
1375 * get_fetch_task_from_index().
1376 */
1377 int index_count;
1378 /*
1379 * The index of the last string_list entry processed by
1380 * get_fetch_task_from_changed().
1381 */
1382 int changed_count;
c972bf4c 1383 struct strvec args;
e724197f 1384 struct repository *r;
fe85ee6e
SB
1385 const char *prefix;
1386 int command_line_option;
8fa29159 1387 int default_option;
fe85ee6e
SB
1388 int quiet;
1389 int result;
16dd6fe1 1390
b90d9f76
GC
1391 /*
1392 * Names of submodules that have new commits. Generated by
1393 * walking the newly fetched superproject commits.
1394 */
16dd6fe1 1395 struct string_list changed_submodule_names;
b90d9f76
GC
1396 /*
1397 * Names of submodules that have already been processed. Lets us
1398 * avoid fetching the same submodule more than once.
1399 */
1400 struct string_list seen_submodule_names;
be76c212
SB
1401
1402 /* Pending fetches by OIDs */
1403 struct fetch_task **oid_fetch_tasks;
1404 int oid_fetch_tasks_nr, oid_fetch_tasks_alloc;
02225408
ES
1405
1406 struct strbuf submodules_with_errors;
fe85ee6e 1407};
f69a6e4f
ÆAB
1408#define SPF_INIT { \
1409 .args = STRVEC_INIT, \
1410 .changed_submodule_names = STRING_LIST_INIT_DUP, \
b90d9f76 1411 .seen_submodule_names = STRING_LIST_INIT_DUP, \
f69a6e4f
ÆAB
1412 .submodules_with_errors = STRBUF_INIT, \
1413}
fe85ee6e 1414
4b4acedd
HV
1415static int get_fetch_recurse_config(const struct submodule *submodule,
1416 struct submodule_parallel_fetch *spf)
1417{
1418 if (spf->command_line_option != RECURSE_SUBMODULES_DEFAULT)
1419 return spf->command_line_option;
1420
1421 if (submodule) {
1422 char *key;
1423 const char *value;
1424
1425 int fetch_recurse = submodule->fetch_recurse;
1426 key = xstrfmt("submodule.%s.fetchRecurseSubmodules", submodule->name);
f1de981e 1427 if (!repo_config_get_string_tmp(spf->r, key, &value)) {
4b4acedd
HV
1428 fetch_recurse = parse_fetch_recurse_submodules_arg(key, value);
1429 }
1430 free(key);
1431
1432 if (fetch_recurse != RECURSE_SUBMODULES_NONE)
1433 /* local config overrules everything except commandline */
1434 return fetch_recurse;
1435 }
1436
1437 return spf->default_option;
1438}
1439
be76c212
SB
1440/*
1441 * Fetch in progress (if callback data) or
1442 * pending (if in oid_fetch_tasks in struct submodule_parallel_fetch)
1443 */
1444struct fetch_task {
1445 struct repository *repo;
1446 const struct submodule *sub;
1447 unsigned free_sub : 1; /* Do we need to free the submodule? */
73bc90d7 1448 const char *default_argv; /* The default fetch mode. */
b90d9f76 1449 struct strvec git_args; /* Args for the child git process. */
be76c212
SB
1450
1451 struct oid_array *commits; /* Ensure these commits are fetched */
1452};
1453
1454/**
1455 * When a submodule is not defined in .gitmodules, we cannot access it
1456 * via the regular submodule-config. Create a fake submodule, which we can
1457 * work on.
1458 */
1459static const struct submodule *get_non_gitmodules_submodule(const char *path)
1460{
1461 struct submodule *ret = NULL;
1462 const char *name = default_name_or_path(path);
1463
1464 if (!name)
1465 return NULL;
1466
1467 ret = xmalloc(sizeof(*ret));
1468 memset(ret, 0, sizeof(*ret));
1469 ret->path = name;
1470 ret->name = name;
1471
1472 return (const struct submodule *) ret;
1473}
1474
be76c212
SB
1475static void fetch_task_release(struct fetch_task *p)
1476{
1477 if (p->free_sub)
1478 free((void*)p->sub);
1479 p->free_sub = 0;
1480 p->sub = NULL;
1481
1482 if (p->repo)
1483 repo_clear(p->repo);
1484 FREE_AND_NULL(p->repo);
b90d9f76
GC
1485
1486 strvec_clear(&p->git_args);
be76c212
SB
1487}
1488
26f80ccf 1489static struct repository *get_submodule_repo_for(struct repository *r,
7c2f8cc5
GC
1490 const char *path,
1491 const struct object_id *treeish_name)
26f80ccf
SB
1492{
1493 struct repository *ret = xmalloc(sizeof(*ret));
1494
7c2f8cc5 1495 if (repo_submodule_init(ret, r, path, treeish_name)) {
5df5106e
JT
1496 free(ret);
1497 return NULL;
26f80ccf
SB
1498 }
1499
1500 return ret;
1501}
1502
5370b91f
GC
1503static struct fetch_task *fetch_task_create(struct submodule_parallel_fetch *spf,
1504 const char *path,
1505 const struct object_id *treeish_name)
1506{
1507 struct fetch_task *task = xmalloc(sizeof(*task));
1508 memset(task, 0, sizeof(*task));
1509
1510 task->sub = submodule_from_path(spf->r, treeish_name, path);
1511
1512 if (!task->sub) {
1513 /*
1514 * No entry in .gitmodules? Technically not a submodule,
1515 * but historically we supported repositories that happen to be
1516 * in-place where a gitlink is. Keep supporting them.
1517 */
1518 task->sub = get_non_gitmodules_submodule(path);
1519 if (!task->sub)
1520 goto cleanup;
1521
1522 task->free_sub = 1;
1523 }
1524
b90d9f76
GC
1525 if (string_list_lookup(&spf->seen_submodule_names, task->sub->name))
1526 goto cleanup;
1527
5370b91f
GC
1528 switch (get_fetch_recurse_config(task->sub, spf))
1529 {
1530 default:
1531 case RECURSE_SUBMODULES_DEFAULT:
1532 case RECURSE_SUBMODULES_ON_DEMAND:
1533 if (!task->sub ||
1534 !string_list_lookup(
1535 &spf->changed_submodule_names,
1536 task->sub->name))
1537 goto cleanup;
1538 task->default_argv = "on-demand";
1539 break;
1540 case RECURSE_SUBMODULES_ON:
1541 task->default_argv = "yes";
1542 break;
1543 case RECURSE_SUBMODULES_OFF:
1544 goto cleanup;
1545 }
1546
1547 task->repo = get_submodule_repo_for(spf->r, path, treeish_name);
1548
1549 return task;
1550
1551 cleanup:
1552 fetch_task_release(task);
1553 free(task);
1554 return NULL;
1555}
1556
73bc90d7 1557static struct fetch_task *
b90d9f76
GC
1558get_fetch_task_from_index(struct submodule_parallel_fetch *spf,
1559 struct strbuf *err)
7dce19d3 1560{
b90d9f76
GC
1561 for (; spf->index_count < spf->r->index->cache_nr; spf->index_count++) {
1562 const struct cache_entry *ce =
1563 spf->r->index->cache[spf->index_count];
be76c212 1564 struct fetch_task *task;
7dce19d3
JL
1565
1566 if (!S_ISGITLINK(ce->ce_mode))
1567 continue;
1568
5370b91f 1569 task = fetch_task_create(spf, ce->name, null_oid());
be76c212
SB
1570 if (!task)
1571 continue;
492c6c46 1572
be76c212 1573 if (task->repo) {
fe85ee6e 1574 if (!spf->quiet)
a4ffbbbb 1575 strbuf_addf(err, _("Fetching submodule %s%s\n"),
fe85ee6e 1576 spf->prefix, ce->name);
26f80ccf 1577
b90d9f76 1578 spf->index_count++;
73bc90d7 1579 return task;
26f80ccf 1580 } else {
505a2765 1581 struct strbuf empty_submodule_path = STRBUF_INIT;
be76c212
SB
1582
1583 fetch_task_release(task);
1584 free(task);
1585
26f80ccf
SB
1586 /*
1587 * An empty directory is normal,
1588 * the submodule is not initialized
1589 */
505a2765
PK
1590 strbuf_addf(&empty_submodule_path, "%s/%s/",
1591 spf->r->worktree,
1592 ce->name);
26f80ccf 1593 if (S_ISGITLINK(ce->ce_mode) &&
505a2765 1594 !is_empty_dir(empty_submodule_path.buf)) {
26f80ccf
SB
1595 spf->result = 1;
1596 strbuf_addf(err,
303b3c1c 1597 _("Could not access submodule '%s'\n"),
26f80ccf
SB
1598 ce->name);
1599 }
505a2765 1600 strbuf_release(&empty_submodule_path);
fe85ee6e 1601 }
7dce19d3 1602 }
73bc90d7
GC
1603 return NULL;
1604}
1605
b90d9f76
GC
1606static struct fetch_task *
1607get_fetch_task_from_changed(struct submodule_parallel_fetch *spf,
1608 struct strbuf *err)
1609{
1610 for (; spf->changed_count < spf->changed_submodule_names.nr;
1611 spf->changed_count++) {
1612 struct string_list_item item =
1613 spf->changed_submodule_names.items[spf->changed_count];
1614 struct changed_submodule_data *cs_data = item.util;
1615 struct fetch_task *task;
1616
1617 if (!is_tree_submodule_active(spf->r, cs_data->super_oid,cs_data->path))
1618 continue;
1619
1620 task = fetch_task_create(spf, cs_data->path,
1621 cs_data->super_oid);
1622 if (!task)
1623 continue;
1624
1625 if (!task->repo) {
1626 strbuf_addf(err, _("Could not access submodule '%s' at commit %s\n"),
1627 cs_data->path,
1628 find_unique_abbrev(cs_data->super_oid, DEFAULT_ABBREV));
1629
1630 fetch_task_release(task);
1631 free(task);
1632 continue;
1633 }
1634
1635 if (!spf->quiet)
1636 strbuf_addf(err,
1637 _("Fetching submodule %s%s at commit %s\n"),
1638 spf->prefix, task->sub->path,
1639 find_unique_abbrev(cs_data->super_oid,
1640 DEFAULT_ABBREV));
1641
1642 spf->changed_count++;
1643 /*
1644 * NEEDSWORK: Submodules set/unset a value for
1645 * core.worktree when they are populated/unpopulated by
1646 * "git checkout" (and similar commands, see
1647 * submodule_move_head() and
1648 * connect_work_tree_and_git_dir()), but if the
1649 * submodule is unpopulated in another way (e.g. "git
1650 * rm", "rm -r"), core.worktree will still be set even
1651 * though the directory doesn't exist, and the child
1652 * process will crash while trying to chdir into the
1653 * nonexistent directory.
1654 *
1655 * In this case, we know that the submodule has no
1656 * working tree, so we can work around this by
1657 * setting "--work-tree=." (--bare does not work because
1658 * worktree settings take precedence over bare-ness).
1659 * However, this is not necessarily true in other cases,
1660 * so a generalized solution is still necessary.
1661 *
1662 * Possible solutions:
1663 * - teach "git [add|rm]" to unset core.worktree and
1664 * discourage users from removing submodules without
1665 * using a Git command.
1666 * - teach submodule child processes to ignore stale
1667 * core.worktree values.
1668 */
1669 strvec_push(&task->git_args, "--work-tree=.");
1670 return task;
1671 }
1672 return NULL;
1673}
1674
73bc90d7
GC
1675static int get_next_submodule(struct child_process *cp, struct strbuf *err,
1676 void *data, void **task_cb)
1677{
1678 struct submodule_parallel_fetch *spf = data;
b90d9f76
GC
1679 struct fetch_task *task =
1680 get_fetch_task_from_index(spf, err);
1681 if (!task)
1682 task = get_fetch_task_from_changed(spf, err);
73bc90d7
GC
1683
1684 if (task) {
1685 struct strbuf submodule_prefix = STRBUF_INIT;
1686
1687 child_process_init(cp);
1688 cp->dir = task->repo->gitdir;
29fda24d 1689 prepare_submodule_repo_env_in_gitdir(&cp->env);
73bc90d7
GC
1690 cp->git_cmd = 1;
1691 strvec_init(&cp->args);
b90d9f76
GC
1692 if (task->git_args.nr)
1693 strvec_pushv(&cp->args, task->git_args.v);
73bc90d7
GC
1694 strvec_pushv(&cp->args, spf->args.v);
1695 strvec_push(&cp->args, task->default_argv);
1696 strvec_push(&cp->args, "--submodule-prefix");
1697
1698 strbuf_addf(&submodule_prefix, "%s%s/",
1699 spf->prefix,
1700 task->sub->path);
1701 strvec_push(&cp->args, submodule_prefix.buf);
1702 *task_cb = task;
1703
1704 strbuf_release(&submodule_prefix);
b90d9f76 1705 string_list_insert(&spf->seen_submodule_names, task->sub->name);
73bc90d7
GC
1706 return 1;
1707 }
be76c212
SB
1708
1709 if (spf->oid_fetch_tasks_nr) {
1710 struct fetch_task *task =
1711 spf->oid_fetch_tasks[spf->oid_fetch_tasks_nr - 1];
1712 struct strbuf submodule_prefix = STRBUF_INIT;
1713 spf->oid_fetch_tasks_nr--;
1714
1715 strbuf_addf(&submodule_prefix, "%s%s/",
1716 spf->prefix, task->sub->path);
1717
1718 child_process_init(cp);
29fda24d 1719 prepare_submodule_repo_env_in_gitdir(&cp->env);
be76c212
SB
1720 cp->git_cmd = 1;
1721 cp->dir = task->repo->gitdir;
1722
c972bf4c 1723 strvec_init(&cp->args);
d70a9eb6 1724 strvec_pushv(&cp->args, spf->args.v);
c972bf4c
JK
1725 strvec_push(&cp->args, "on-demand");
1726 strvec_push(&cp->args, "--submodule-prefix");
1727 strvec_push(&cp->args, submodule_prefix.buf);
be76c212
SB
1728
1729 /* NEEDSWORK: have get_default_remote from submodule--helper */
c972bf4c 1730 strvec_push(&cp->args, "origin");
be76c212
SB
1731 oid_array_for_each_unique(task->commits,
1732 append_oid_to_argv, &cp->args);
1733
1734 *task_cb = task;
7dce19d3 1735 strbuf_release(&submodule_prefix);
be76c212 1736 return 1;
7dce19d3 1737 }
be76c212 1738
fe85ee6e
SB
1739 return 0;
1740}
1741
2a73b3da 1742static int fetch_start_failure(struct strbuf *err,
fe85ee6e
SB
1743 void *cb, void *task_cb)
1744{
1745 struct submodule_parallel_fetch *spf = cb;
be76c212 1746 struct fetch_task *task = task_cb;
fe85ee6e
SB
1747
1748 spf->result = 1;
1749
be76c212 1750 fetch_task_release(task);
fe85ee6e
SB
1751 return 0;
1752}
1753
be76c212
SB
1754static int commit_missing_in_sub(const struct object_id *oid, void *data)
1755{
1756 struct repository *subrepo = data;
1757
1758 enum object_type type = oid_object_info(subrepo, oid, NULL);
1759
1760 return type != OBJ_COMMIT;
1761}
1762
2a73b3da
SB
1763static int fetch_finish(int retvalue, struct strbuf *err,
1764 void *cb, void *task_cb)
fe85ee6e
SB
1765{
1766 struct submodule_parallel_fetch *spf = cb;
be76c212
SB
1767 struct fetch_task *task = task_cb;
1768
1769 struct string_list_item *it;
6e1e0c99 1770 struct changed_submodule_data *cs_data;
fe85ee6e 1771
02225408
ES
1772 if (!task || !task->sub)
1773 BUG("callback cookie bogus");
1774
1775 if (retvalue) {
bd5e567d
JT
1776 /*
1777 * NEEDSWORK: This indicates that the overall fetch
1778 * failed, even though there may be a subsequent fetch
1779 * by commit hash that might work. It may be a good
1780 * idea to not indicate failure in this case, and only
1781 * indicate failure if the subsequent fetch fails.
1782 */
fe85ee6e
SB
1783 spf->result = 1;
1784
02225408
ES
1785 strbuf_addf(&spf->submodules_with_errors, "\t%s\n",
1786 task->sub->name);
1787 }
be76c212
SB
1788
1789 /* Is this the second time we process this submodule? */
1790 if (task->commits)
1791 goto out;
1792
1793 it = string_list_lookup(&spf->changed_submodule_names, task->sub->name);
1794 if (!it)
1795 /* Could be an unchanged submodule, not contained in the list */
1796 goto out;
1797
6e1e0c99
GC
1798 cs_data = it->util;
1799 oid_array_filter(&cs_data->new_commits,
be76c212
SB
1800 commit_missing_in_sub,
1801 task->repo);
1802
1803 /* Are there commits we want, but do not exist? */
6e1e0c99
GC
1804 if (cs_data->new_commits.nr) {
1805 task->commits = &cs_data->new_commits;
be76c212
SB
1806 ALLOC_GROW(spf->oid_fetch_tasks,
1807 spf->oid_fetch_tasks_nr + 1,
1808 spf->oid_fetch_tasks_alloc);
1809 spf->oid_fetch_tasks[spf->oid_fetch_tasks_nr] = task;
1810 spf->oid_fetch_tasks_nr++;
1811 return 0;
1812 }
1813
1814out:
1815 fetch_task_release(task);
1816
fe85ee6e
SB
1817 return 0;
1818}
1819
b90d9f76
GC
1820int fetch_submodules(struct repository *r,
1821 const struct strvec *options,
1822 const char *prefix, int command_line_option,
1823 int default_option,
1824 int quiet, int max_parallel_jobs)
fe85ee6e
SB
1825{
1826 int i;
fe85ee6e 1827 struct submodule_parallel_fetch spf = SPF_INIT;
36d69bf7
ÆAB
1828 const struct run_process_parallel_opts opts = {
1829 .tr2_category = "submodule",
1830 .tr2_label = "parallel/fetch",
1831
1832 .processes = max_parallel_jobs,
1833
1834 .get_next_task = get_next_submodule,
1835 .start_failure = fetch_start_failure,
1836 .task_finished = fetch_finish,
1837 .data = &spf,
1838 };
fe85ee6e 1839
e724197f 1840 spf.r = r;
fe85ee6e 1841 spf.command_line_option = command_line_option;
8fa29159 1842 spf.default_option = default_option;
fe85ee6e
SB
1843 spf.quiet = quiet;
1844 spf.prefix = prefix;
1845
e724197f 1846 if (!r->worktree)
fe85ee6e
SB
1847 goto out;
1848
e724197f 1849 if (repo_read_index(r) < 0)
a4ffbbbb 1850 die(_("index file corrupt"));
fe85ee6e 1851
c972bf4c 1852 strvec_push(&spf.args, "fetch");
d70a9eb6
JK
1853 for (i = 0; i < options->nr; i++)
1854 strvec_push(&spf.args, options->v[i]);
c972bf4c 1855 strvec_push(&spf.args, "--recurse-submodules-default");
fe85ee6e
SB
1856 /* default value, "--submodule-prefix" and its value are added later */
1857
16dd6fe1
SB
1858 calculate_changed_submodule_paths(r, &spf.changed_submodule_names);
1859 string_list_sort(&spf.changed_submodule_names);
36d69bf7 1860 run_processes_parallel(&opts);
fe85ee6e 1861
02225408
ES
1862 if (spf.submodules_with_errors.len > 0)
1863 fprintf(stderr, _("Errors during submodule fetch:\n%s"),
1864 spf.submodules_with_errors.buf);
1865
1866
c972bf4c 1867 strvec_clear(&spf.args);
88a21979 1868out:
6e1e0c99 1869 free_submodules_data(&spf.changed_submodule_names);
fe85ee6e 1870 return spf.result;
7dce19d3
JL
1871}
1872
3bfc4504 1873unsigned is_submodule_modified(const char *path, int ignore_untracked)
ee6fc514 1874{
d3180279 1875 struct child_process cp = CHILD_PROCESS_INIT;
ee6fc514 1876 struct strbuf buf = STRBUF_INIT;
af6865a7 1877 FILE *fp;
c7e1a736 1878 unsigned dirty_submodule = 0;
eee49b6c 1879 const char *git_dir;
af6865a7 1880 int ignore_cp_exit_code = 0;
ee6fc514 1881
eee49b6c 1882 strbuf_addf(&buf, "%s/.git", path);
13d6ec91 1883 git_dir = read_gitfile(buf.buf);
eee49b6c
JL
1884 if (!git_dir)
1885 git_dir = buf.buf;
5c896f7c
SB
1886 if (!is_git_directory(git_dir)) {
1887 if (is_directory(git_dir))
1888 die(_("'%s' not recognized as a git repository"), git_dir);
ee6fc514
JL
1889 strbuf_release(&buf);
1890 /* The submodule is not checked out, so it is not modified */
1891 return 0;
ee6fc514
JL
1892 }
1893 strbuf_reset(&buf);
1894
c972bf4c 1895 strvec_pushl(&cp.args, "status", "--porcelain=2", NULL);
3bfc4504 1896 if (ignore_untracked)
c972bf4c 1897 strvec_push(&cp.args, "-uno");
3bfc4504 1898
29fda24d 1899 prepare_submodule_repo_env(&cp.env);
ee6fc514
JL
1900 cp.git_cmd = 1;
1901 cp.no_stdin = 1;
1902 cp.out = -1;
eee49b6c 1903 cp.dir = path;
ee6fc514 1904 if (start_command(&cp))
a4ffbbbb 1905 die(_("Could not run 'git status --porcelain=2' in submodule %s"), path);
ee6fc514 1906
af6865a7
SB
1907 fp = xfdopen(cp.out, "r");
1908 while (strbuf_getwholeline(&buf, fp, '\n') != EOF) {
fcecf0b9
SB
1909 /* regular untracked files */
1910 if (buf.buf[0] == '?')
c7e1a736 1911 dirty_submodule |= DIRTY_SUBMODULE_UNTRACKED;
40069d6e
SB
1912
1913 if (buf.buf[0] == 'u' ||
1914 buf.buf[0] == '1' ||
1915 buf.buf[0] == '2') {
1916 /* T = line type, XY = status, SSSS = submodule state */
1917 if (buf.len < strlen("T XY SSSS"))
033abf97 1918 BUG("invalid status --porcelain=2 line %s",
40069d6e
SB
1919 buf.buf);
1920
1921 if (buf.buf[5] == 'S' && buf.buf[8] == 'U')
1922 /* nested untracked file */
1923 dirty_submodule |= DIRTY_SUBMODULE_UNTRACKED;
1924
1925 if (buf.buf[0] == 'u' ||
1926 buf.buf[0] == '2' ||
1927 memcmp(buf.buf + 5, "S..U", 4))
1928 /* other change */
1929 dirty_submodule |= DIRTY_SUBMODULE_MODIFIED;
c7e1a736 1930 }
64f9a946
SB
1931
1932 if ((dirty_submodule & DIRTY_SUBMODULE_MODIFIED) &&
1933 ((dirty_submodule & DIRTY_SUBMODULE_UNTRACKED) ||
af6865a7
SB
1934 ignore_untracked)) {
1935 /*
1936 * We're not interested in any further information from
1937 * the child any more, neither output nor its exit code.
1938 */
1939 ignore_cp_exit_code = 1;
c7e1a736 1940 break;
af6865a7 1941 }
c7e1a736 1942 }
af6865a7 1943 fclose(fp);
ee6fc514 1944
af6865a7 1945 if (finish_command(&cp) && !ignore_cp_exit_code)
a4ffbbbb 1946 die(_("'git status --porcelain=2' failed in submodule %s"), path);
ee6fc514 1947
ee6fc514 1948 strbuf_release(&buf);
c7e1a736 1949 return dirty_submodule;
ee6fc514 1950}
68d03e4a 1951
293ab15e
JL
1952int submodule_uses_gitfile(const char *path)
1953{
d3180279 1954 struct child_process cp = CHILD_PROCESS_INIT;
293ab15e
JL
1955 struct strbuf buf = STRBUF_INIT;
1956 const char *git_dir;
1957
1958 strbuf_addf(&buf, "%s/.git", path);
1959 git_dir = read_gitfile(buf.buf);
1960 if (!git_dir) {
1961 strbuf_release(&buf);
1962 return 0;
1963 }
1964 strbuf_release(&buf);
1965
1966 /* Now test that all nested submodules use a gitfile too */
afbdba39
JH
1967 strvec_pushl(&cp.args,
1968 "submodule", "foreach", "--quiet", "--recursive",
1969 "test -f .git", NULL);
1970
29fda24d 1971 prepare_submodule_repo_env(&cp.env);
293ab15e
JL
1972 cp.git_cmd = 1;
1973 cp.no_stdin = 1;
1974 cp.no_stderr = 1;
1975 cp.no_stdout = 1;
1976 cp.dir = path;
1977 if (run_command(&cp))
1978 return 0;
1979
1980 return 1;
1981}
1982
83b76966
SB
1983/*
1984 * Check if it is a bad idea to remove a submodule, i.e. if we'd lose data
1985 * when doing so.
1986 *
1987 * Return 1 if we'd lose data, return 0 if the removal is fine,
1988 * and negative values for errors.
1989 */
1990int bad_to_remove_submodule(const char *path, unsigned flags)
293ab15e 1991{
293ab15e 1992 ssize_t len;
d3180279 1993 struct child_process cp = CHILD_PROCESS_INIT;
293ab15e 1994 struct strbuf buf = STRBUF_INIT;
83b76966 1995 int ret = 0;
293ab15e 1996
dbe44faa 1997 if (!file_exists(path) || is_empty_dir(path))
83b76966 1998 return 0;
293ab15e
JL
1999
2000 if (!submodule_uses_gitfile(path))
83b76966 2001 return 1;
293ab15e 2002
c972bf4c 2003 strvec_pushl(&cp.args, "status", "--porcelain",
f6d8942b 2004 "--ignore-submodules=none", NULL);
83b76966
SB
2005
2006 if (flags & SUBMODULE_REMOVAL_IGNORE_UNTRACKED)
c972bf4c 2007 strvec_push(&cp.args, "-uno");
83b76966 2008 else
c972bf4c 2009 strvec_push(&cp.args, "-uall");
83b76966
SB
2010
2011 if (!(flags & SUBMODULE_REMOVAL_IGNORE_IGNORED_UNTRACKED))
c972bf4c 2012 strvec_push(&cp.args, "--ignored");
293ab15e 2013
29fda24d 2014 prepare_submodule_repo_env(&cp.env);
293ab15e
JL
2015 cp.git_cmd = 1;
2016 cp.no_stdin = 1;
2017 cp.out = -1;
2018 cp.dir = path;
83b76966
SB
2019 if (start_command(&cp)) {
2020 if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR)
35ad44cb 2021 die(_("could not start 'git status' in submodule '%s'"),
83b76966
SB
2022 path);
2023 ret = -1;
2024 goto out;
2025 }
293ab15e
JL
2026
2027 len = strbuf_read(&buf, cp.out, 1024);
2028 if (len > 2)
83b76966 2029 ret = 1;
293ab15e
JL
2030 close(cp.out);
2031
83b76966
SB
2032 if (finish_command(&cp)) {
2033 if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR)
35ad44cb 2034 die(_("could not run 'git status' in submodule '%s'"),
83b76966
SB
2035 path);
2036 ret = -1;
2037 }
2038out:
293ab15e 2039 strbuf_release(&buf);
83b76966 2040 return ret;
293ab15e
JL
2041}
2042
898c2e65
SB
2043void submodule_unset_core_worktree(const struct submodule *sub)
2044{
ce125d43 2045 struct strbuf config_path = STRBUF_INIT;
898c2e65 2046
ce125d43
JT
2047 submodule_name_to_gitdir(&config_path, the_repository, sub->name);
2048 strbuf_addstr(&config_path, "/config");
2049
2050 if (git_config_set_in_file_gently(config_path.buf, "core.worktree", NULL))
898c2e65
SB
2051 warning(_("Could not unset core.worktree setting in submodule '%s'"),
2052 sub->path);
2053
ce125d43 2054 strbuf_release(&config_path);
898c2e65
SB
2055}
2056
202275b9
SB
2057static const char *get_super_prefix_or_empty(void)
2058{
2059 const char *s = get_super_prefix();
2060 if (!s)
2061 s = "";
2062 return s;
2063}
2064
6e3c1595
SB
2065static int submodule_has_dirty_index(const struct submodule *sub)
2066{
2067 struct child_process cp = CHILD_PROCESS_INIT;
2068
29fda24d 2069 prepare_submodule_repo_env(&cp.env);
6e3c1595
SB
2070
2071 cp.git_cmd = 1;
c972bf4c 2072 strvec_pushl(&cp.args, "diff-index", "--quiet",
f6d8942b 2073 "--cached", "HEAD", NULL);
6e3c1595
SB
2074 cp.no_stdin = 1;
2075 cp.no_stdout = 1;
2076 cp.dir = sub->path;
2077 if (start_command(&cp))
a4ffbbbb 2078 die(_("could not recurse into submodule '%s'"), sub->path);
6e3c1595
SB
2079
2080 return finish_command(&cp);
2081}
2082
2083static void submodule_reset_index(const char *path)
2084{
2085 struct child_process cp = CHILD_PROCESS_INIT;
29fda24d 2086 prepare_submodule_repo_env(&cp.env);
6e3c1595
SB
2087
2088 cp.git_cmd = 1;
2089 cp.no_stdin = 1;
2090 cp.dir = path;
2091
c972bf4c 2092 strvec_pushf(&cp.args, "--super-prefix=%s%s/",
f6d8942b 2093 get_super_prefix_or_empty(), path);
94b7f156 2094 /* TODO: determine if this might overwright untracked files */
c972bf4c 2095 strvec_pushl(&cp.args, "read-tree", "-u", "--reset", NULL);
6e3c1595 2096
c972bf4c 2097 strvec_push(&cp.args, empty_tree_oid_hex());
6e3c1595
SB
2098
2099 if (run_command(&cp))
a4ffbbbb 2100 die(_("could not reset submodule index"));
6e3c1595
SB
2101}
2102
2103/**
2104 * Moves a submodule at a given path from a given head to another new head.
2105 * For edge cases (a submodule coming into existence or removing a submodule)
2106 * pass NULL for old or new respectively.
2107 */
2108int submodule_move_head(const char *path,
bc099914
BW
2109 const char *old_head,
2110 const char *new_head,
6e3c1595
SB
2111 unsigned flags)
2112{
2113 int ret = 0;
2114 struct child_process cp = CHILD_PROCESS_INIT;
2115 const struct submodule *sub;
f2d48994 2116 int *error_code_ptr, error_code;
6e3c1595 2117
627d9342 2118 if (!is_submodule_active(the_repository, path))
823bab09
SB
2119 return 0;
2120
f2d48994
SB
2121 if (flags & SUBMODULE_MOVE_HEAD_FORCE)
2122 /*
2123 * Pass non NULL pointer to is_submodule_populated_gently
2124 * to prevent die()-ing. We'll use connect_work_tree_and_git_dir
2125 * to fixup the submodule in the force case later.
2126 */
2127 error_code_ptr = &error_code;
2128 else
2129 error_code_ptr = NULL;
2130
bc099914 2131 if (old_head && !is_submodule_populated_gently(path, error_code_ptr))
f2d48994 2132 return 0;
6e3c1595 2133
14228447 2134 sub = submodule_from_path(the_repository, null_oid(), path);
6e3c1595
SB
2135
2136 if (!sub)
033abf97 2137 BUG("could not get submodule information for '%s'", path);
6e3c1595 2138
bc099914 2139 if (old_head && !(flags & SUBMODULE_MOVE_HEAD_FORCE)) {
6e3c1595
SB
2140 /* Check if the submodule has a dirty index. */
2141 if (submodule_has_dirty_index(sub))
2142 return error(_("submodule '%s' has dirty index"), path);
2143 }
2144
2145 if (!(flags & SUBMODULE_MOVE_HEAD_DRY_RUN)) {
bc099914 2146 if (old_head) {
6e3c1595 2147 if (!submodule_uses_gitfile(path))
f0a5e5ad
ÆAB
2148 absorb_git_dir_into_superproject(path,
2149 get_super_prefix());
6e3c1595 2150 } else {
ce125d43
JT
2151 struct strbuf gitdir = STRBUF_INIT;
2152 submodule_name_to_gitdir(&gitdir, the_repository,
2153 sub->name);
2154 connect_work_tree_and_git_dir(path, gitdir.buf, 0);
2155 strbuf_release(&gitdir);
6e3c1595
SB
2156
2157 /* make sure the index is clean as well */
2158 submodule_reset_index(path);
2159 }
f2d48994 2160
bc099914 2161 if (old_head && (flags & SUBMODULE_MOVE_HEAD_FORCE)) {
ce125d43
JT
2162 struct strbuf gitdir = STRBUF_INIT;
2163 submodule_name_to_gitdir(&gitdir, the_repository,
2164 sub->name);
2165 connect_work_tree_and_git_dir(path, gitdir.buf, 1);
2166 strbuf_release(&gitdir);
f2d48994 2167 }
6e3c1595
SB
2168 }
2169
29fda24d 2170 prepare_submodule_repo_env(&cp.env);
6e3c1595
SB
2171
2172 cp.git_cmd = 1;
2173 cp.no_stdin = 1;
2174 cp.dir = path;
2175
c972bf4c 2176 strvec_pushf(&cp.args, "--super-prefix=%s%s/",
f6d8942b 2177 get_super_prefix_or_empty(), path);
c972bf4c 2178 strvec_pushl(&cp.args, "read-tree", "--recurse-submodules", NULL);
6e3c1595
SB
2179
2180 if (flags & SUBMODULE_MOVE_HEAD_DRY_RUN)
c972bf4c 2181 strvec_push(&cp.args, "-n");
6e3c1595 2182 else
c972bf4c 2183 strvec_push(&cp.args, "-u");
6e3c1595
SB
2184
2185 if (flags & SUBMODULE_MOVE_HEAD_FORCE)
c972bf4c 2186 strvec_push(&cp.args, "--reset");
6e3c1595 2187 else
c972bf4c 2188 strvec_push(&cp.args, "-m");
6e3c1595 2189
7dcc1f4d 2190 if (!(flags & SUBMODULE_MOVE_HEAD_FORCE))
c972bf4c 2191 strvec_push(&cp.args, old_head ? old_head : empty_tree_oid_hex());
7dcc1f4d 2192
c972bf4c 2193 strvec_push(&cp.args, new_head ? new_head : empty_tree_oid_hex());
6e3c1595
SB
2194
2195 if (run_command(&cp)) {
ba95d4e4 2196 ret = error(_("Submodule '%s' could not be updated."), path);
6e3c1595
SB
2197 goto out;
2198 }
2199
2200 if (!(flags & SUBMODULE_MOVE_HEAD_DRY_RUN)) {
bc099914 2201 if (new_head) {
a17062cf 2202 child_process_init(&cp);
6e3c1595 2203 /* also set the HEAD accordingly */
a17062cf
SB
2204 cp.git_cmd = 1;
2205 cp.no_stdin = 1;
2206 cp.dir = path;
6e3c1595 2207
29fda24d 2208 prepare_submodule_repo_env(&cp.env);
c972bf4c 2209 strvec_pushl(&cp.args, "update-ref", "HEAD",
f6d8942b 2210 "--no-deref", new_head, NULL);
6e3c1595 2211
a17062cf 2212 if (run_command(&cp)) {
6e3c1595
SB
2213 ret = -1;
2214 goto out;
2215 }
2216 } else {
2217 struct strbuf sb = STRBUF_INIT;
2218
2219 strbuf_addf(&sb, "%s/.git", path);
2220 unlink_or_warn(sb.buf);
2221 strbuf_release(&sb);
2222
2223 if (is_empty_dir(path))
2224 rmdir_or_warn(path);
898c2e65
SB
2225
2226 submodule_unset_core_worktree(sub);
6e3c1595
SB
2227 }
2228 }
2229out:
2230 return ret;
2231}
2232
a8dee3ca
JS
2233int validate_submodule_git_dir(char *git_dir, const char *submodule_name)
2234{
2235 size_t len = strlen(git_dir), suffix_len = strlen(submodule_name);
2236 char *p;
2237 int ret = 0;
2238
2239 if (len <= suffix_len || (p = git_dir + len - suffix_len)[-1] != '/' ||
2240 strcmp(p, submodule_name))
2241 BUG("submodule name '%s' not a suffix of git dir '%s'",
2242 submodule_name, git_dir);
2243
2244 /*
2245 * We prevent the contents of sibling submodules' git directories to
2246 * clash.
2247 *
2248 * Example: having a submodule named `hippo` and another one named
2249 * `hippo/hooks` would result in the git directories
2250 * `.git/modules/hippo/` and `.git/modules/hippo/hooks/`, respectively,
2251 * but the latter directory is already designated to contain the hooks
2252 * of the former.
2253 */
2254 for (; *p; p++) {
2255 if (is_dir_sep(*p)) {
2256 char c = *p;
2257
2258 *p = '\0';
2259 if (is_git_directory(git_dir))
2260 ret = -1;
2261 *p = c;
2262
2263 if (ret < 0)
2264 return error(_("submodule git dir '%s' is "
2265 "inside git dir '%.*s'"),
2266 git_dir,
2267 (int)(p - git_dir), git_dir);
2268 }
2269 }
2270
2271 return 0;
2272}
2273
f6f85861
SB
2274/*
2275 * Embeds a single submodules git directory into the superprojects git dir,
2276 * non recursively.
2277 */
bb61a962
ÆAB
2278static void relocate_single_git_dir_into_superproject(const char *path,
2279 const char *super_prefix)
f6f85861
SB
2280{
2281 char *old_git_dir = NULL, *real_old_git_dir = NULL, *real_new_git_dir = NULL;
ce125d43 2282 struct strbuf new_gitdir = STRBUF_INIT;
f6f85861
SB
2283 const struct submodule *sub;
2284
2285 if (submodule_uses_worktrees(path))
2286 die(_("relocate_gitdir for submodule '%s' with "
2287 "more than one worktree not supported"), path);
2288
2289 old_git_dir = xstrfmt("%s/.git", path);
2290 if (read_gitfile(old_git_dir))
2291 /* If it is an actual gitfile, it doesn't need migration. */
2292 return;
2293
ce83eadd 2294 real_old_git_dir = real_pathdup(old_git_dir, 1);
f6f85861 2295
14228447 2296 sub = submodule_from_path(the_repository, null_oid(), path);
f6f85861
SB
2297 if (!sub)
2298 die(_("could not lookup name for submodule '%s'"), path);
2299
ce125d43
JT
2300 submodule_name_to_gitdir(&new_gitdir, the_repository, sub->name);
2301 if (validate_submodule_git_dir(new_gitdir.buf, sub->name) < 0)
a8dee3ca
JS
2302 die(_("refusing to move '%s' into an existing git dir"),
2303 real_old_git_dir);
ce125d43
JT
2304 if (safe_create_leading_directories_const(new_gitdir.buf) < 0)
2305 die(_("could not create directory '%s'"), new_gitdir.buf);
2306 real_new_git_dir = real_pathdup(new_gitdir.buf, 1);
f6f85861 2307
f6f85861 2308 fprintf(stderr, _("Migrating git directory of '%s%s' from\n'%s' to\n'%s'\n"),
bb61a962 2309 super_prefix ? super_prefix : "", path,
f6f85861
SB
2310 real_old_git_dir, real_new_git_dir);
2311
2312 relocate_gitdir(path, real_old_git_dir, real_new_git_dir);
2313
2314 free(old_git_dir);
2315 free(real_old_git_dir);
2316 free(real_new_git_dir);
ce125d43 2317 strbuf_release(&new_gitdir);
f6f85861
SB
2318}
2319
f0a5e5ad
ÆAB
2320static void absorb_git_dir_into_superproject_recurse(const char *path,
2321 const char *super_prefix)
46e87b54
ÆAB
2322{
2323
2324 struct child_process cp = CHILD_PROCESS_INIT;
2325
2326 cp.dir = path;
2327 cp.git_cmd = 1;
2328 cp.no_stdin = 1;
46e87b54
ÆAB
2329 strvec_pushl(&cp.args, "submodule--helper",
2330 "absorbgitdirs", NULL);
bb61a962
ÆAB
2331 strvec_pushf(&cp.args, "--super-prefix=%s%s/", super_prefix ?
2332 super_prefix : "", path);
2333
46e87b54
ÆAB
2334 prepare_submodule_repo_env(&cp.env);
2335 if (run_command(&cp))
2336 die(_("could not recurse into submodule '%s'"), path);
2337}
2338
f6f85861
SB
2339/*
2340 * Migrate the git directory of the submodule given by path from
2341 * having its git directory within the working tree to the git dir nested
2342 * in its superprojects git dir under modules/.
2343 */
f0a5e5ad
ÆAB
2344void absorb_git_dir_into_superproject(const char *path,
2345 const char *super_prefix)
f6f85861 2346{
ec9629b3
SB
2347 int err_code;
2348 const char *sub_git_dir;
f6f85861 2349 struct strbuf gitdir = STRBUF_INIT;
f6f85861 2350 strbuf_addf(&gitdir, "%s/.git", path);
ec9629b3 2351 sub_git_dir = resolve_gitdir_gently(gitdir.buf, &err_code);
f6f85861
SB
2352
2353 /* Not populated? */
ec9629b3 2354 if (!sub_git_dir) {
ec9629b3 2355 const struct submodule *sub;
ce125d43 2356 struct strbuf sub_gitdir = STRBUF_INIT;
ec9629b3
SB
2357
2358 if (err_code == READ_GITFILE_ERR_STAT_FAILED) {
2359 /* unpopulated as expected */
2360 strbuf_release(&gitdir);
2361 return;
2362 }
2363
2364 if (err_code != READ_GITFILE_ERR_NOT_A_REPO)
2365 /* We don't know what broke here. */
2366 read_gitfile_error_die(err_code, path, NULL);
2367
2368 /*
2369 * Maybe populated, but no git directory was found?
2370 * This can happen if the superproject is a submodule
2371 * itself and was just absorbed. The absorption of the
2372 * superproject did not rewrite the git file links yet,
2373 * fix it now.
2374 */
14228447 2375 sub = submodule_from_path(the_repository, null_oid(), path);
ec9629b3
SB
2376 if (!sub)
2377 die(_("could not lookup name for submodule '%s'"), path);
ce125d43
JT
2378 submodule_name_to_gitdir(&sub_gitdir, the_repository, sub->name);
2379 connect_work_tree_and_git_dir(path, sub_gitdir.buf, 0);
2380 strbuf_release(&sub_gitdir);
ec9629b3
SB
2381 } else {
2382 /* Is it already absorbed into the superprojects git dir? */
ce83eadd
JS
2383 char *real_sub_git_dir = real_pathdup(sub_git_dir, 1);
2384 char *real_common_git_dir = real_pathdup(get_git_common_dir(), 1);
f6f85861 2385
ec9629b3 2386 if (!starts_with(real_sub_git_dir, real_common_git_dir))
bb61a962 2387 relocate_single_git_dir_into_superproject(path, super_prefix);
ec9629b3
SB
2388
2389 free(real_sub_git_dir);
2390 free(real_common_git_dir);
2391 }
2392 strbuf_release(&gitdir);
f6f85861 2393
f0a5e5ad 2394 absorb_git_dir_into_superproject_recurse(path, super_prefix);
f6f85861 2395}
bf0231c6 2396
49d3c4b4 2397int get_superproject_working_tree(struct strbuf *buf)
bf0231c6
SB
2398{
2399 struct child_process cp = CHILD_PROCESS_INIT;
2400 struct strbuf sb = STRBUF_INIT;
4530a85b 2401 struct strbuf one_up = STRBUF_INIT;
bc57ba1d 2402 char *cwd = xgetcwd();
49d3c4b4 2403 int ret = 0;
bf0231c6
SB
2404 const char *subpath;
2405 int code;
2406 ssize_t len;
2407
2408 if (!is_inside_work_tree())
2409 /*
2410 * FIXME:
2411 * We might have a superproject, but it is harder
2412 * to determine.
2413 */
49d3c4b4 2414 return 0;
bf0231c6 2415
4530a85b 2416 if (!strbuf_realpath(&one_up, "../", 0))
49d3c4b4 2417 return 0;
bf0231c6 2418
4530a85b
AM
2419 subpath = relative_path(cwd, one_up.buf, &sb);
2420 strbuf_release(&one_up);
bf0231c6 2421
29fda24d
ÆAB
2422 prepare_submodule_repo_env(&cp.env);
2423 strvec_pop(&cp.env);
bf0231c6 2424
c972bf4c 2425 strvec_pushl(&cp.args, "--literal-pathspecs", "-C", "..",
f6d8942b
JK
2426 "ls-files", "-z", "--stage", "--full-name", "--",
2427 subpath, NULL);
bf0231c6
SB
2428 strbuf_reset(&sb);
2429
2430 cp.no_stdin = 1;
2431 cp.no_stderr = 1;
2432 cp.out = -1;
2433 cp.git_cmd = 1;
2434
2435 if (start_command(&cp))
2436 die(_("could not start ls-files in .."));
2437
2438 len = strbuf_read(&sb, cp.out, PATH_MAX);
2439 close(cp.out);
2440
2441 if (starts_with(sb.buf, "160000")) {
2442 int super_sub_len;
2443 int cwd_len = strlen(cwd);
2444 char *super_sub, *super_wt;
2445
2446 /*
2447 * There is a superproject having this repo as a submodule.
2448 * The format is <mode> SP <hash> SP <stage> TAB <full name> \0,
2449 * We're only interested in the name after the tab.
2450 */
2451 super_sub = strchr(sb.buf, '\t') + 1;
c5cbb27c 2452 super_sub_len = strlen(super_sub);
bf0231c6
SB
2453
2454 if (super_sub_len > cwd_len ||
2455 strcmp(&cwd[cwd_len - super_sub_len], super_sub))
c3c3486b 2456 BUG("returned path string doesn't match cwd?");
bf0231c6
SB
2457
2458 super_wt = xstrdup(cwd);
2459 super_wt[cwd_len - super_sub_len] = '\0';
2460
49d3c4b4
AM
2461 strbuf_realpath(buf, super_wt, 1);
2462 ret = 1;
bf0231c6
SB
2463 free(super_wt);
2464 }
bc57ba1d 2465 free(cwd);
bf0231c6
SB
2466 strbuf_release(&sb);
2467
2468 code = finish_command(&cp);
2469
2470 if (code == 128)
2471 /* '../' is not a git repository */
49d3c4b4 2472 return 0;
bf0231c6
SB
2473 if (code == 0 && len == 0)
2474 /* There is an unrelated git repository at '../' */
49d3c4b4 2475 return 0;
bf0231c6
SB
2476 if (code)
2477 die(_("ls-tree returned unexpected return code %d"), code);
2478
2479 return ret;
2480}
bbbb7de7 2481
3ce08548
HWN
2482/*
2483 * Put the gitdir for a submodule (given relative to the main
2484 * repository worktree) into `buf`, or return -1 on error.
2485 */
bbbb7de7
NTND
2486int submodule_to_gitdir(struct strbuf *buf, const char *submodule)
2487{
2488 const struct submodule *sub;
2489 const char *git_dir;
2490 int ret = 0;
2491
2492 strbuf_reset(buf);
2493 strbuf_addstr(buf, submodule);
2494 strbuf_complete(buf, '/');
2495 strbuf_addstr(buf, ".git");
2496
2497 git_dir = read_gitfile(buf->buf);
2498 if (git_dir) {
2499 strbuf_reset(buf);
2500 strbuf_addstr(buf, git_dir);
2501 }
2502 if (!is_git_directory(buf->buf)) {
14228447 2503 sub = submodule_from_path(the_repository, null_oid(),
2504 submodule);
bbbb7de7
NTND
2505 if (!sub) {
2506 ret = -1;
2507 goto cleanup;
2508 }
2509 strbuf_reset(buf);
ce125d43 2510 submodule_name_to_gitdir(buf, the_repository, sub->name);
bbbb7de7
NTND
2511 }
2512
2513cleanup:
2514 return ret;
2515}
ce125d43
JT
2516
2517void submodule_name_to_gitdir(struct strbuf *buf, struct repository *r,
2518 const char *submodule_name)
2519{
2520 /*
2521 * NEEDSWORK: The current way of mapping a submodule's name to
2522 * its location in .git/modules/ has problems with some naming
2523 * schemes. For example, if a submodule is named "foo" and
2524 * another is named "foo/bar" (whether present in the same
2525 * superproject commit or not - the problem will arise if both
2526 * superproject commits have been checked out at any point in
2527 * time), or if two submodule names only have different cases in
2528 * a case-insensitive filesystem.
2529 *
2530 * There are several solutions, including encoding the path in
2531 * some way, introducing a submodule.<name>.gitdir config in
2532 * .git/config (not .gitmodules) that allows overriding what the
2533 * gitdir of a submodule would be (and teach Git, upon noticing
2534 * a clash, to automatically determine a non-clashing name and
2535 * to write such a config), or introducing a
2536 * submodule.<name>.gitdir config in .gitmodules that repo
2537 * administrators can explicitly set. Nothing has been decided,
2538 * so for now, just append the name at the end of the path.
2539 */
2540 strbuf_repo_git_path(buf, r, "modules/");
2541 strbuf_addstr(buf, submodule_name);
2542}