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