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