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