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