blob: b561445329204f20a326cf7f7a5b897ca28d0934 [file] [log] [blame]
Brandon Williamse7241972017-12-12 11:53:52 -08001
Johannes Schindelin752c0c22009-10-19 14:38:32 +02002#include "cache.h"
Brandon Williams69aba532017-06-22 11:43:45 -07003#include "repository.h"
Brandon Williamsb2141fc2017-06-14 11:07:36 -07004#include "config.h"
Heiko Voigt851e18c2015-08-17 17:21:59 -07005#include "submodule-config.h"
Johannes Schindelin752c0c22009-10-19 14:38:32 +02006#include "submodule.h"
7#include "dir.h"
8#include "diff.h"
9#include "commit.h"
10#include "revision.h"
Jens Lehmannee6fc512010-01-16 18:42:24 +010011#include "run-command.h"
Jens Lehmannc7e1a732010-03-04 22:20:33 +010012#include "diffcore.h"
Heiko Voigt68d03e42010-07-07 15:39:13 +020013#include "refs.h"
Jens Lehmannaee9c7d2010-08-06 00:39:25 +020014#include "string-list.h"
Jeff Kingfe299ec2020-03-30 10:03:46 -040015#include "oid-array.h"
Jeff Kingdbbcd442020-07-28 16:23:39 -040016#include "strvec.h"
Jens Lehmann5fee9952013-07-30 21:50:34 +020017#include "blob.h"
Stefan Bellerfe85ee62015-12-15 16:04:11 -080018#include "thread-utils.h"
Jeff King46387282016-04-28 09:38:20 -040019#include "quote.h"
Brandon Williams06bf4ad2017-04-05 10:47:19 -070020#include "remote.h"
Stefan Bellerf6f85862016-12-12 11:04:35 -080021#include "worktree.h"
Stefan Beller046b4822017-05-31 17:30:47 -070022#include "parse-options.h"
Stefan Beller0d4a1322018-03-23 18:20:56 +010023#include "object-store.h"
Derrick Stolee64043552018-07-20 16:33:04 +000024#include "commit-reach.h"
Jens Lehmannaee9c7d2010-08-06 00:39:25 +020025
Stefan Bellerd7a38032017-05-26 12:10:12 -070026static int config_update_recurse_submodules = RECURSE_SUBMODULES_OFF;
Jeff King6859de42011-09-12 15:56:52 -040027static int initialized_fetch_ref_tips;
brian m. carlson910650d2017-03-31 01:40:00 +000028static struct oid_array ref_tips_before_fetch;
29static struct oid_array ref_tips_after_fetch;
Jeff King6859de42011-09-12 15:56:52 -040030
Jens Lehmannd4e98b52011-05-14 18:26:58 +020031/*
Brandon Williams34e2ba02017-08-02 12:49:21 -070032 * 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.
Jens Lehmannd4e98b52011-05-14 18:26:58 +020035 */
Brandon Williams34e2ba02017-08-02 12:49:21 -070036int 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}
Johannes Schindelin752c0c22009-10-19 14:38:32 +020051
Jens Lehmann5fee9952013-07-30 21:50:34 +020052/*
Antonio Ospiteb5c259f2018-10-05 15:05:59 +020053 * Check if the .gitmodules file is safe to write.
54 *
55 * Writing to the .gitmodules file requires that the file exists in the
56 * working tree or, if it doesn't, that a brand new .gitmodules file is going
57 * to be created (i.e. it's neither in the index nor in the current branch).
58 *
59 * It is not safe to write to .gitmodules if it's not in the working tree but
60 * it is in the index or in the current branch, because writing new values
61 * (and staging them) would blindly overwrite ALL the old content.
62 */
63int is_writing_gitmodules_ok(void)
64{
65 struct object_id oid;
66 return file_exists(GITMODULES_FILE) ||
67 (get_oid(GITMODULES_INDEX, &oid) < 0 && get_oid(GITMODULES_HEAD, &oid) < 0);
68}
69
70/*
Brandon Williams91b83482017-08-02 12:49:20 -070071 * 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.
Jens Lehmann5fee9952013-07-30 21:50:34 +020077 */
Brandon Williams7da9aba2017-12-12 11:53:51 -080078int is_staging_gitmodules_ok(struct index_state *istate)
Jens Lehmann5fee9952013-07-30 21:50:34 +020079{
Brandon Williams91b83482017-08-02 12:49:20 -070080 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 &&
David Turner7edee322020-01-27 13:58:56 -050085 ie_modified(istate, istate->cache[pos], &st, 0) & DATA_CHANGED)
Brandon Williams91b83482017-08-02 12:49:20 -070086 return 0;
87 }
88
89 return 1;
Jens Lehmann5fee9952013-07-30 21:50:34 +020090}
91
Nguyễn Thái Ngọc Duy2e2d4042017-08-23 19:36:57 +070092static 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
Jens Lehmann06567812013-08-06 21:15:11 +020099/*
100 * Try to update the "path" entry in the "submodule.<name>" section of the
101 * .gitmodules file. Return 0 only if a .gitmodules file was found, a section
102 * with the correct path=<oldpath> setting was found and we could update it.
103 */
104int update_path_in_gitmodules(const char *oldpath, const char *newpath)
105{
106 struct strbuf entry = STRBUF_INIT;
Heiko Voigt851e18c2015-08-17 17:21:59 -0700107 const struct submodule *submodule;
Antonio Ospite45f5ef32018-10-05 15:05:53 +0200108 int ret;
Jens Lehmann06567812013-08-06 21:15:11 +0200109
Brandon Williams4c0eeaf2017-08-02 12:49:16 -0700110 if (!file_exists(GITMODULES_FILE)) /* Do nothing without .gitmodules */
Jens Lehmann06567812013-08-06 21:15:11 +0200111 return -1;
112
Nguyễn Thái Ngọc Duy68f08b42018-08-13 18:14:31 +0200113 if (is_gitmodules_unmerged(the_repository->index))
Jens Lehmann06567812013-08-06 21:15:11 +0200114 die(_("Cannot change unmerged .gitmodules, resolve merge conflicts first"));
115
Stefan Beller3b8fb392018-03-28 15:35:29 -0700116 submodule = submodule_from_path(the_repository, &null_oid, oldpath);
Heiko Voigt851e18c2015-08-17 17:21:59 -0700117 if (!submodule || !submodule->name) {
Jens Lehmann06567812013-08-06 21:15:11 +0200118 warning(_("Could not find section in .gitmodules where path=%s"), oldpath);
119 return -1;
120 }
121 strbuf_addstr(&entry, "submodule.");
Heiko Voigt851e18c2015-08-17 17:21:59 -0700122 strbuf_addstr(&entry, submodule->name);
Jens Lehmann06567812013-08-06 21:15:11 +0200123 strbuf_addstr(&entry, ".path");
Antonio Ospite45f5ef32018-10-05 15:05:53 +0200124 ret = config_set_in_gitmodules_file_gently(entry.buf, newpath);
Jens Lehmann06567812013-08-06 21:15:11 +0200125 strbuf_release(&entry);
Antonio Ospite45f5ef32018-10-05 15:05:53 +0200126 return ret;
Jens Lehmann06567812013-08-06 21:15:11 +0200127}
128
Jens Lehmann95c16412013-08-06 21:15:25 +0200129/*
130 * Try to remove the "submodule.<name>" section from .gitmodules where the given
131 * path is configured. Return 0 only if a .gitmodules file was found, a section
132 * with the correct path=<path> setting was found and we could remove it.
133 */
134int remove_path_from_gitmodules(const char *path)
135{
136 struct strbuf sect = STRBUF_INIT;
Heiko Voigt851e18c2015-08-17 17:21:59 -0700137 const struct submodule *submodule;
Jens Lehmann95c16412013-08-06 21:15:25 +0200138
Brandon Williams4c0eeaf2017-08-02 12:49:16 -0700139 if (!file_exists(GITMODULES_FILE)) /* Do nothing without .gitmodules */
Jens Lehmann95c16412013-08-06 21:15:25 +0200140 return -1;
141
Nguyễn Thái Ngọc Duy68f08b42018-08-13 18:14:31 +0200142 if (is_gitmodules_unmerged(the_repository->index))
Jens Lehmann95c16412013-08-06 21:15:25 +0200143 die(_("Cannot change unmerged .gitmodules, resolve merge conflicts first"));
144
Stefan Beller3b8fb392018-03-28 15:35:29 -0700145 submodule = submodule_from_path(the_repository, &null_oid, path);
Heiko Voigt851e18c2015-08-17 17:21:59 -0700146 if (!submodule || !submodule->name) {
Jens Lehmann95c16412013-08-06 21:15:25 +0200147 warning(_("Could not find section in .gitmodules where path=%s"), path);
148 return -1;
149 }
150 strbuf_addstr(&sect, "submodule.");
Heiko Voigt851e18c2015-08-17 17:21:59 -0700151 strbuf_addstr(&sect, submodule->name);
Brandon Williams4c0eeaf2017-08-02 12:49:16 -0700152 if (git_config_rename_section_in_file(GITMODULES_FILE, sect.buf, NULL) < 0) {
Jens Lehmann95c16412013-08-06 21:15:25 +0200153 /* 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
Brandon Williams3b8317a2017-12-12 11:53:50 -0800162void stage_updated_gitmodules(struct index_state *istate)
Jens Lehmann5fee9952013-07-30 21:50:34 +0200163{
Brandon Williams3b8317a2017-12-12 11:53:50 -0800164 if (add_file_to_index(istate, GITMODULES_FILE, 0))
Jens Lehmann5fee9952013-07-30 21:50:34 +0200165 die(_("staging updated .gitmodules failed"));
166}
167
Stefan Beller18cfc082018-05-15 13:00:28 -0700168/* TODO: remove this function, use repo_submodule_init instead. */
169int add_submodule_odb(const char *path)
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200170{
171 struct strbuf objects_directory = STRBUF_INIT;
Jens Lehmannde7a7962010-01-31 17:43:49 +0100172 int ret = 0;
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200173
Jacob Keller99b43a62016-08-31 16:27:22 -0700174 ret = strbuf_git_path_submodule(&objects_directory, path, "objects/");
175 if (ret)
176 goto done;
Jens Lehmannde7a7962010-01-31 17:43:49 +0100177 if (!is_directory(objects_directory.buf)) {
178 ret = -1;
179 goto done;
180 }
Jeff Kinga5b34d22016-10-03 16:35:03 -0400181 add_to_alternates_memory(objects_directory.buf);
Jens Lehmannde7a7962010-01-31 17:43:49 +0100182done:
183 strbuf_release(&objects_directory);
184 return ret;
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200185}
186
Jens Lehmannaee9c7d2010-08-06 00:39:25 +0200187void set_diffopt_flags_from_submodule_config(struct diff_options *diffopt,
188 const char *path)
189{
Stefan Beller3b8fb392018-03-28 15:35:29 -0700190 const struct submodule *submodule = submodule_from_path(the_repository,
191 &null_oid, path);
Heiko Voigt851e18c2015-08-17 17:21:59 -0700192 if (submodule) {
Brandon Williamsfdfa9e92017-08-03 11:19:52 -0700193 const char *ignore;
194 char *key;
195
196 key = xstrfmt("submodule.%s.ignore", submodule->name);
Jeff Kingf1de9812020-08-14 12:17:36 -0400197 if (repo_config_get_string_tmp(the_repository, key, &ignore))
Brandon Williamsfdfa9e92017-08-03 11:19:52 -0700198 ignore = submodule->ignore;
199 free(key);
200
201 if (ignore)
202 handle_ignore_submodules_arg(diffopt, ignore);
Nguyễn Thái Ngọc Duy68f08b42018-08-13 18:14:31 +0200203 else if (is_gitmodules_unmerged(the_repository->index))
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700204 diffopt->flags.ignore_submodules = 1;
Jens Lehmannaee9c7d2010-08-06 00:39:25 +0200205 }
206}
207
Stefan Beller046b4822017-05-31 17:30:47 -0700208/* Cheap function that only determines if we're interested in submodules at all */
209int git_default_submodule_config(const char *var, const char *value, void *cb)
210{
211 if (!strcmp(var, "submodule.recurse")) {
212 int v = git_config_bool(var, value) ?
213 RECURSE_SUBMODULES_ON : RECURSE_SUBMODULES_OFF;
214 config_update_recurse_submodules = v;
215 }
216 return 0;
Stefan Beller1d789d02017-05-26 12:10:13 -0700217}
218
Stefan Bellerd7a38032017-05-26 12:10:12 -0700219int 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
Brandon Williams5688c282016-12-16 11:03:16 -0800236/*
Brandon Williamsf9f42562016-12-16 11:03:17 -0800237 * Determine if a submodule has been initialized at a given 'path'
238 */
Brandon Williams627d9342017-06-22 11:43:46 -0700239int is_submodule_active(struct repository *repo, const char *path)
Brandon Williamsf9f42562016-12-16 11:03:17 -0800240{
241 int ret = 0;
Brandon Williamsa086f922017-03-17 15:38:01 -0700242 char *key = NULL;
243 char *value = NULL;
244 const struct string_list *sl;
Brandon Williams627d9342017-06-22 11:43:46 -0700245 const struct submodule *module;
246
Stefan Beller0c89fdd2018-03-28 15:35:30 -0700247 module = submodule_from_path(repo, &null_oid, path);
Brandon Williamsf9f42562016-12-16 11:03:17 -0800248
Brandon Williamsa086f922017-03-17 15:38:01 -0700249 /* early return if there isn't a path->module mapping */
250 if (!module)
251 return 0;
Brandon Williamsf9f42562016-12-16 11:03:17 -0800252
Brandon Williamsa086f922017-03-17 15:38:01 -0700253 /* submodule.<name>.active is set */
254 key = xstrfmt("submodule.%s.active", module->name);
Brandon Williams627d9342017-06-22 11:43:46 -0700255 if (!repo_config_get_bool(repo, key, &ret)) {
Brandon Williamsf9f42562016-12-16 11:03:17 -0800256 free(key);
Brandon Williamsa086f922017-03-17 15:38:01 -0700257 return ret;
258 }
259 free(key);
260
261 /* submodule.active is set */
Brandon Williams627d9342017-06-22 11:43:46 -0700262 sl = repo_config_get_value_multi(repo, "submodule.active");
Brandon Williamsa086f922017-03-17 15:38:01 -0700263 if (sl) {
264 struct pathspec ps;
Jeff Kingc972bf42020-07-28 16:25:12 -0400265 struct strvec args = STRVEC_INIT;
Brandon Williamsa086f922017-03-17 15:38:01 -0700266 const struct string_list_item *item;
267
268 for_each_string_list_item(item, sl) {
Jeff Kingc972bf42020-07-28 16:25:12 -0400269 strvec_push(&args, item->string);
Brandon Williamsa086f922017-03-17 15:38:01 -0700270 }
271
Jeff Kingd70a9eb2020-07-28 20:37:20 -0400272 parse_pathspec(&ps, 0, 0, NULL, args.v);
Nguyễn Thái Ngọc Duy68f08b42018-08-13 18:14:31 +0200273 ret = match_pathspec(repo->index, &ps, path, strlen(path), 0, NULL, 1);
Brandon Williamsa086f922017-03-17 15:38:01 -0700274
Jeff Kingc972bf42020-07-28 16:25:12 -0400275 strvec_clear(&args);
Brandon Williamsa086f922017-03-17 15:38:01 -0700276 clear_pathspec(&ps);
277 return ret;
Brandon Williamsf9f42562016-12-16 11:03:17 -0800278 }
279
Brandon Williamsa086f922017-03-17 15:38:01 -0700280 /* fallback to checking if the URL is set */
281 key = xstrfmt("submodule.%s.url", module->name);
Brandon Williams627d9342017-06-22 11:43:46 -0700282 ret = !repo_config_get_string(repo, key, &value);
Brandon Williamsa086f922017-03-17 15:38:01 -0700283
284 free(value);
285 free(key);
Brandon Williamsf9f42562016-12-16 11:03:17 -0800286 return ret;
287}
288
Stefan Beller15cdc642017-03-14 14:46:31 -0700289int is_submodule_populated_gently(const char *path, int *return_error_code)
Brandon Williams5688c282016-12-16 11:03:16 -0800290{
291 int ret = 0;
292 char *gitdir = xstrfmt("%s/.git", path);
293
Stefan Beller15cdc642017-03-14 14:46:31 -0700294 if (resolve_gitdir_gently(gitdir, return_error_code))
Brandon Williams5688c282016-12-16 11:03:16 -0800295 ret = 1;
296
297 free(gitdir);
298 return ret;
299}
300
Brandon Williamsbdab9722017-05-09 12:17:59 -0700301/*
302 * Dies if the provided 'prefix' corresponds to an unpopulated submodule
303 */
304void die_in_unpopulated_submodule(const struct index_state *istate,
305 const char *prefix)
306{
307 int i, prefixlen;
308
309 if (!prefix)
310 return;
311
312 prefixlen = strlen(prefix);
313
314 for (i = 0; i < istate->cache_nr; i++) {
315 struct cache_entry *ce = istate->cache[i];
316 int ce_len = ce_namelen(ce);
317
318 if (!S_ISGITLINK(ce->ce_mode))
319 continue;
320 if (prefixlen <= ce_len)
321 continue;
322 if (strncmp(ce->name, prefix, ce_len))
323 continue;
324 if (prefix[ce_len] != '/')
325 continue;
326
327 die(_("in unpopulated submodule '%s'"), ce->name);
328 }
329}
330
Brandon Williamsc08397e2017-05-11 15:04:24 -0700331/*
332 * Dies if any paths in the provided pathspec descends into a submodule
333 */
334void die_path_inside_submodule(const struct index_state *istate,
335 const struct pathspec *ps)
336{
337 int i, j;
338
339 for (i = 0; i < istate->cache_nr; i++) {
340 struct cache_entry *ce = istate->cache[i];
341 int ce_len = ce_namelen(ce);
342
343 if (!S_ISGITLINK(ce->ce_mode))
344 continue;
345
346 for (j = 0; j < ps->nr ; j++) {
347 const struct pathspec_item *item = &ps->items[j];
348
349 if (item->len <= ce_len)
350 continue;
351 if (item->match[ce_len] != '/')
352 continue;
353 if (strncmp(ce->name, item->match, ce_len))
354 continue;
355 if (item->len == ce_len + 1)
356 continue;
357
358 die(_("Pathspec '%s' is in submodule '%.*s'"),
359 item->original, ce_len, ce->name);
360 }
361 }
362}
363
Brandon Williamsec6141a2017-08-03 11:19:50 -0700364enum 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
Stefan Bellerea2fa5a2016-02-29 18:07:11 -0800380int parse_submodule_update_strategy(const char *value,
381 struct submodule_update_strategy *dst)
382{
Brandon Williamsec6141a2017-08-03 11:19:50 -0700383 enum submodule_update_type type;
384
Stefan Bellerea2fa5a2016-02-29 18:07:11 -0800385 free((void*)dst->command);
386 dst->command = NULL;
Brandon Williamsec6141a2017-08-03 11:19:50 -0700387
388 type = parse_submodule_update_type(value);
389 if (type == SM_UPDATE_UNSPECIFIED)
Stefan Bellerea2fa5a2016-02-29 18:07:11 -0800390 return -1;
Brandon Williamsec6141a2017-08-03 11:19:50 -0700391
392 dst->type = type;
393 if (type == SM_UPDATE_COMMAND)
394 dst->command = xstrdup(value + 1);
395
Stefan Bellerea2fa5a2016-02-29 18:07:11 -0800396 return 0;
397}
398
Stefan Beller36042422016-04-15 17:50:13 -0700399const 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
Jens Lehmann46a958b2010-06-25 16:56:47 +0200420void handle_ignore_submodules_arg(struct diff_options *diffopt,
421 const char *arg)
422{
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700423 diffopt->flags.ignore_submodules = 0;
424 diffopt->flags.ignore_untracked_in_submodules = 0;
425 diffopt->flags.ignore_dirty_submodules = 0;
Johannes Schindelinbe4f2b42010-08-05 10:49:55 +0200426
Jens Lehmann46a958b2010-06-25 16:56:47 +0200427 if (!strcmp(arg, "all"))
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700428 diffopt->flags.ignore_submodules = 1;
Jens Lehmann46a958b2010-06-25 16:56:47 +0200429 else if (!strcmp(arg, "untracked"))
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700430 diffopt->flags.ignore_untracked_in_submodules = 1;
Jens Lehmann46a958b2010-06-25 16:56:47 +0200431 else if (!strcmp(arg, "dirty"))
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700432 diffopt->flags.ignore_dirty_submodules = 1;
Jens Lehmannaee9c7d2010-08-06 00:39:25 +0200433 else if (strcmp(arg, "none"))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +0100434 die(_("bad --ignore-submodules argument: %s"), arg);
Nguyễn Thái Ngọc Duy5a59a232019-02-16 18:24:41 +0700435 /*
436 * Please update _git_status() in git-completion.bash when you
437 * add new options
438 */
Jens Lehmann46a958b2010-06-25 16:56:47 +0200439}
440
Junio C Hamano4831c232020-09-18 17:58:05 -0700441static int prepare_submodule_diff_summary(struct repository *r, struct rev_info *rev,
442 const char *path,
443 struct commit *left, struct commit *right,
444 struct commit_list *merge_bases)
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500445{
Jacob Keller8e6df652016-08-31 16:27:24 -0700446 struct commit_list *list;
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500447
Michael Forney85a1ec22020-06-23 13:56:59 -0700448 repo_init_revisions(r, rev, NULL);
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500449 setup_revisions(0, NULL, rev, NULL);
450 rev->left_right = 1;
451 rev->first_parent_only = 1;
452 left->object.flags |= SYMMETRIC_LEFT;
453 add_pending_object(rev, &left->object, path);
454 add_pending_object(rev, &right->object, path);
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500455 for (list = merge_bases; list; list = list->next) {
456 list->item->object.flags |= UNINTERESTING;
457 add_pending_object(rev, &list->item->object,
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000458 oid_to_hex(&list->item->object.oid));
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500459 }
460 return prepare_revision_walk(rev);
461}
462
Shourya Shukla180b1542020-08-13 01:14:02 +0530463static void print_submodule_diff_summary(struct repository *r, struct rev_info *rev, struct diff_options *o)
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500464{
465 static const char format[] = " %m %s";
466 struct strbuf sb = STRBUF_INIT;
467 struct commit *commit;
468
469 while ((commit = get_revision(rev))) {
470 struct pretty_print_context ctx = {0};
471 ctx.date_mode = rev->date_mode;
Alexey Shumkinecaee802013-06-26 14:19:50 +0400472 ctx.output_encoding = get_log_output_encoding();
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500473 strbuf_setlen(&sb, 0);
Stefan Beller605f0ec2018-12-14 16:09:37 -0800474 repo_format_commit_message(r, commit, format, &sb,
475 &ctx);
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500476 strbuf_addch(&sb, '\n');
Stefan Bellerf3597132017-06-29 17:07:00 -0700477 if (commit->object.flags & SYMMETRIC_LEFT)
478 diff_emit_submodule_del(o, sb.buf);
479 else
480 diff_emit_submodule_add(o, sb.buf);
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500481 }
482 strbuf_release(&sb);
483}
484
Jeff Kingc972bf42020-07-28 16:25:12 -0400485static void prepare_submodule_repo_env_no_git_dir(struct strvec *out)
Stefan Beller6cd57572017-03-14 14:46:35 -0700486{
487 const char * const *var;
488
489 for (var = local_repo_env; *var; var++) {
490 if (strcmp(*var, CONFIG_DATA_ENVIRONMENT))
Jeff Kingc972bf42020-07-28 16:25:12 -0400491 strvec_push(out, *var);
Stefan Beller6cd57572017-03-14 14:46:35 -0700492 }
493}
494
Jeff Kingc972bf42020-07-28 16:25:12 -0400495void prepare_submodule_repo_env(struct strvec *out)
Stefan Beller6cd57572017-03-14 14:46:35 -0700496{
497 prepare_submodule_repo_env_no_git_dir(out);
Jeff Kingc972bf42020-07-28 16:25:12 -0400498 strvec_pushf(out, "%s=%s", GIT_DIR_ENVIRONMENT,
Jeff Kingf6d89422020-07-28 16:26:31 -0400499 DEFAULT_GIT_DIR_ENVIRONMENT);
Stefan Beller6cd57572017-03-14 14:46:35 -0700500}
501
Jeff Kingc972bf42020-07-28 16:25:12 -0400502static void prepare_submodule_repo_env_in_gitdir(struct strvec *out)
Stefan Bellera62387b2018-11-28 16:27:55 -0800503{
504 prepare_submodule_repo_env_no_git_dir(out);
Jeff Kingc972bf42020-07-28 16:25:12 -0400505 strvec_pushf(out, "%s=.", GIT_DIR_ENVIRONMENT);
Stefan Bellera62387b2018-11-28 16:27:55 -0800506}
507
Stefan Beller605f0ec2018-12-14 16:09:37 -0800508/*
509 * Initialize a repository struct for a submodule based on the provided 'path'.
510 *
511 * Unlike repo_submodule_init, this tolerates submodules not present
512 * in .gitmodules. This function exists only to preserve historical behavior,
513 *
514 * Returns the repository struct on success,
515 * NULL when the submodule is not present.
Jacob Keller8e6df652016-08-31 16:27:24 -0700516 */
Stefan Beller605f0ec2018-12-14 16:09:37 -0800517static struct repository *open_submodule(const char *path)
518{
519 struct strbuf sb = STRBUF_INIT;
520 struct repository *out = xmalloc(sizeof(*out));
521
522 if (submodule_to_gitdir(&sb, path) || repo_init(out, sb.buf, NULL)) {
523 strbuf_release(&sb);
524 free(out);
525 return NULL;
526 }
527
528 /* Mark it as a submodule */
529 out->submodule_prefix = xstrdup(path);
530
531 strbuf_release(&sb);
532 return out;
533}
534
535/*
536 * Helper function to display the submodule header line prior to the full
537 * summary output.
538 *
539 * If it can locate the submodule git directory it will create a repository
540 * handle for the submodule and lookup both the left and right commits and
541 * put them into the left and right pointers.
542 */
543static void show_submodule_header(struct diff_options *o,
544 const char *path,
Jacob Keller602a2832016-08-31 16:27:23 -0700545 struct object_id *one, struct object_id *two,
Stefan Bellerf3597132017-06-29 17:07:00 -0700546 unsigned dirty_submodule,
Stefan Beller605f0ec2018-12-14 16:09:37 -0800547 struct repository *sub,
Jacob Keller8e6df652016-08-31 16:27:24 -0700548 struct commit **left, struct commit **right,
549 struct commit_list **merge_bases)
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200550{
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200551 const char *message = NULL;
552 struct strbuf sb = STRBUF_INIT;
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200553 int fast_forward = 0, fast_backward = 0;
554
Jens Lehmannc7e1a732010-03-04 22:20:33 +0100555 if (dirty_submodule & DIRTY_SUBMODULE_UNTRACKED)
Stefan Bellerf3597132017-06-29 17:07:00 -0700556 diff_emit_submodule_untracked(o, path);
557
Jens Lehmannc7e1a732010-03-04 22:20:33 +0100558 if (dirty_submodule & DIRTY_SUBMODULE_MODIFIED)
Stefan Bellerf3597132017-06-29 17:07:00 -0700559 diff_emit_submodule_modified(o, path);
Jens Lehmannc7e1a732010-03-04 22:20:33 +0100560
Jacob Keller8e6df652016-08-31 16:27:24 -0700561 if (is_null_oid(one))
562 message = "(new submodule)";
563 else if (is_null_oid(two))
564 message = "(submodule deleted)";
565
Stefan Beller605f0ec2018-12-14 16:09:37 -0800566 if (!sub) {
Jacob Keller8e6df652016-08-31 16:27:24 -0700567 if (!message)
Stefan Beller2d94dd22017-09-26 11:27:56 -0700568 message = "(commits not present)";
Jacob Keller8e6df652016-08-31 16:27:24 -0700569 goto output_header;
570 }
571
572 /*
573 * Attempt to lookup the commit references, and determine if this is
574 * a fast forward or fast backwards update.
575 */
Stefan Beller605f0ec2018-12-14 16:09:37 -0800576 *left = lookup_commit_reference(sub, one);
577 *right = lookup_commit_reference(sub, two);
Jacob Keller8e6df652016-08-31 16:27:24 -0700578
579 /*
580 * Warn about missing commits in the submodule project, but only if
581 * they aren't null.
582 */
583 if ((!is_null_oid(one) && !*left) ||
584 (!is_null_oid(two) && !*right))
585 message = "(commits not present)";
586
Stefan Beller605f0ec2018-12-14 16:09:37 -0800587 *merge_bases = repo_get_merge_bases(sub, *left, *right);
Jacob Keller8e6df652016-08-31 16:27:24 -0700588 if (*merge_bases) {
589 if ((*merge_bases)->item == *left)
590 fast_forward = 1;
591 else if ((*merge_bases)->item == *right)
592 fast_backward = 1;
593 }
594
Jeff King4a7e27e2018-08-28 17:22:40 -0400595 if (oideq(one, two)) {
Jens Lehmannc7e1a732010-03-04 22:20:33 +0100596 strbuf_release(&sb);
597 return;
598 }
599
Jacob Keller8e6df652016-08-31 16:27:24 -0700600output_header:
Stefan Bellerf3597132017-06-29 17:07:00 -0700601 strbuf_addf(&sb, "Submodule %s ", path);
brian m. carlson30e677e2018-03-12 02:27:28 +0000602 strbuf_add_unique_abbrev(&sb, one, DEFAULT_ABBREV);
René Scharfea94bb682016-10-08 17:38:47 +0200603 strbuf_addstr(&sb, (fast_backward || fast_forward) ? ".." : "...");
brian m. carlson30e677e2018-03-12 02:27:28 +0000604 strbuf_add_unique_abbrev(&sb, two, DEFAULT_ABBREV);
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200605 if (message)
Stefan Bellerf3597132017-06-29 17:07:00 -0700606 strbuf_addf(&sb, " %s\n", message);
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200607 else
Stefan Bellerf3597132017-06-29 17:07:00 -0700608 strbuf_addf(&sb, "%s:\n", fast_backward ? " (rewind)" : "");
609 diff_emit_submodule_header(o, sb.buf);
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200610
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200611 strbuf_release(&sb);
612}
Jens Lehmannee6fc512010-01-16 18:42:24 +0100613
Shourya Shukla180b1542020-08-13 01:14:02 +0530614void show_submodule_diff_summary(struct diff_options *o, const char *path,
Jacob Keller8e6df652016-08-31 16:27:24 -0700615 struct object_id *one, struct object_id *two,
Stefan Bellerf3597132017-06-29 17:07:00 -0700616 unsigned dirty_submodule)
Jacob Keller8e6df652016-08-31 16:27:24 -0700617{
618 struct rev_info rev;
619 struct commit *left = NULL, *right = NULL;
620 struct commit_list *merge_bases = NULL;
Stefan Beller605f0ec2018-12-14 16:09:37 -0800621 struct repository *sub;
Jacob Keller8e6df652016-08-31 16:27:24 -0700622
Stefan Beller605f0ec2018-12-14 16:09:37 -0800623 sub = open_submodule(path);
Stefan Bellerf3597132017-06-29 17:07:00 -0700624 show_submodule_header(o, path, one, two, dirty_submodule,
Stefan Beller605f0ec2018-12-14 16:09:37 -0800625 sub, &left, &right, &merge_bases);
Jacob Keller8e6df652016-08-31 16:27:24 -0700626
627 /*
628 * If we don't have both a left and a right pointer, there is no
629 * reason to try and display a summary. The header line should contain
630 * all the information the user needs.
631 */
Stefan Beller605f0ec2018-12-14 16:09:37 -0800632 if (!left || !right || !sub)
Jacob Keller8e6df652016-08-31 16:27:24 -0700633 goto out;
634
635 /* Treat revision walker failure the same as missing commits */
Junio C Hamano4831c232020-09-18 17:58:05 -0700636 if (prepare_submodule_diff_summary(sub, &rev, path, left, right, merge_bases)) {
Stefan Bellerf3597132017-06-29 17:07:00 -0700637 diff_emit_submodule_error(o, "(revision walker failed)\n");
Jacob Keller8e6df652016-08-31 16:27:24 -0700638 goto out;
639 }
640
Shourya Shukla180b1542020-08-13 01:14:02 +0530641 print_submodule_diff_summary(sub, &rev, o);
Jacob Keller8e6df652016-08-31 16:27:24 -0700642
643out:
644 if (merge_bases)
645 free_commit_list(merge_bases);
646 clear_commit_marks(left, ~0);
647 clear_commit_marks(right, ~0);
Stefan Beller605f0ec2018-12-14 16:09:37 -0800648 if (sub) {
649 repo_clear(sub);
650 free(sub);
651 }
Jacob Keller8e6df652016-08-31 16:27:24 -0700652}
653
Stefan Bellerf3597132017-06-29 17:07:00 -0700654void show_submodule_inline_diff(struct diff_options *o, const char *path,
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700655 struct object_id *one, struct object_id *two,
Stefan Bellerf3597132017-06-29 17:07:00 -0700656 unsigned dirty_submodule)
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700657{
Brandon Williamsbc099912018-02-14 10:59:49 -0800658 const struct object_id *old_oid = the_hash_algo->empty_tree, *new_oid = the_hash_algo->empty_tree;
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700659 struct commit *left = NULL, *right = NULL;
660 struct commit_list *merge_bases = NULL;
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700661 struct child_process cp = CHILD_PROCESS_INIT;
Stefan Bellerf3597132017-06-29 17:07:00 -0700662 struct strbuf sb = STRBUF_INIT;
Stefan Beller605f0ec2018-12-14 16:09:37 -0800663 struct repository *sub;
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700664
Stefan Beller605f0ec2018-12-14 16:09:37 -0800665 sub = open_submodule(path);
Stefan Bellerf3597132017-06-29 17:07:00 -0700666 show_submodule_header(o, path, one, two, dirty_submodule,
Stefan Beller605f0ec2018-12-14 16:09:37 -0800667 sub, &left, &right, &merge_bases);
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700668
669 /* We need a valid left and right commit to display a difference */
670 if (!(left || is_null_oid(one)) ||
671 !(right || is_null_oid(two)))
672 goto done;
673
674 if (left)
Brandon Williamsbc099912018-02-14 10:59:49 -0800675 old_oid = one;
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700676 if (right)
Brandon Williamsbc099912018-02-14 10:59:49 -0800677 new_oid = two;
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700678
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700679 cp.git_cmd = 1;
680 cp.dir = path;
Stefan Bellerf3597132017-06-29 17:07:00 -0700681 cp.out = -1;
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700682 cp.no_stdin = 1;
683
684 /* TODO: other options may need to be passed here. */
Jeff Kingc972bf42020-07-28 16:25:12 -0400685 strvec_pushl(&cp.args, "diff", "--submodule=diff", NULL);
686 strvec_pushf(&cp.args, "--color=%s", want_color(o->use_color) ?
Stefan Bellerf3597132017-06-29 17:07:00 -0700687 "always" : "never");
Stefan Beller5a522142017-05-04 14:43:55 -0700688
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700689 if (o->flags.reverse_diff) {
Jeff Kingc972bf42020-07-28 16:25:12 -0400690 strvec_pushf(&cp.args, "--src-prefix=%s%s/",
Jeff Kingf6d89422020-07-28 16:26:31 -0400691 o->b_prefix, path);
Jeff Kingc972bf42020-07-28 16:25:12 -0400692 strvec_pushf(&cp.args, "--dst-prefix=%s%s/",
Jeff Kingf6d89422020-07-28 16:26:31 -0400693 o->a_prefix, path);
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700694 } else {
Jeff Kingc972bf42020-07-28 16:25:12 -0400695 strvec_pushf(&cp.args, "--src-prefix=%s%s/",
Jeff Kingf6d89422020-07-28 16:26:31 -0400696 o->a_prefix, path);
Jeff Kingc972bf42020-07-28 16:25:12 -0400697 strvec_pushf(&cp.args, "--dst-prefix=%s%s/",
Jeff Kingf6d89422020-07-28 16:26:31 -0400698 o->b_prefix, path);
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700699 }
Jeff Kingc972bf42020-07-28 16:25:12 -0400700 strvec_push(&cp.args, oid_to_hex(old_oid));
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700701 /*
702 * If the submodule has modified content, we will diff against the
703 * work tree, under the assumption that the user has asked for the
704 * diff format and wishes to actually see all differences even if they
705 * haven't yet been committed to the submodule yet.
706 */
707 if (!(dirty_submodule & DIRTY_SUBMODULE_MODIFIED))
Jeff Kingc972bf42020-07-28 16:25:12 -0400708 strvec_push(&cp.args, oid_to_hex(new_oid));
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700709
Stefan Beller17b254c2017-03-31 16:17:32 -0700710 prepare_submodule_repo_env(&cp.env_array);
Stefan Bellerf3597132017-06-29 17:07:00 -0700711 if (start_command(&cp))
712 diff_emit_submodule_error(o, "(diff failed)\n");
713
714 while (strbuf_getwholeline_fd(&sb, cp.out, '\n') != EOF)
715 diff_emit_submodule_pipethrough(o, sb.buf, sb.len);
716
717 if (finish_command(&cp))
718 diff_emit_submodule_error(o, "(diff failed)\n");
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700719
720done:
Stefan Bellerf3597132017-06-29 17:07:00 -0700721 strbuf_release(&sb);
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700722 if (merge_bases)
723 free_commit_list(merge_bases);
724 if (left)
725 clear_commit_marks(left, ~0);
726 if (right)
727 clear_commit_marks(right, ~0);
Stefan Beller605f0ec2018-12-14 16:09:37 -0800728 if (sub) {
729 repo_clear(sub);
730 free(sub);
731 }
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700732}
733
Stefan Beller84f89252017-03-14 14:46:34 -0700734int should_update_submodules(void)
735{
736 return config_update_recurse_submodules == RECURSE_SUBMODULES_ON;
737}
738
739const struct submodule *submodule_from_ce(const struct cache_entry *ce)
740{
741 if (!S_ISGITLINK(ce->ce_mode))
742 return NULL;
743
744 if (!should_update_submodules())
745 return NULL;
746
Stefan Beller3b8fb392018-03-28 15:35:29 -0700747 return submodule_from_path(the_repository, &null_oid, ce->name);
Stefan Beller84f89252017-03-14 14:46:34 -0700748}
749
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700750static struct oid_array *submodule_commits(struct string_list *submodules,
Heiko Voigtc68f8372017-10-16 15:58:27 +0200751 const char *name)
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700752{
753 struct string_list_item *item;
754
Heiko Voigtc68f8372017-10-16 15:58:27 +0200755 item = string_list_insert(submodules, name);
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700756 if (item->util)
757 return (struct oid_array *) item->util;
758
759 /* NEEDSWORK: should we have oid_array_init()? */
760 item->util = xcalloc(1, sizeof(struct oid_array));
761 return (struct oid_array *) item->util;
762}
763
Heiko Voigtc68f8372017-10-16 15:58:27 +0200764struct collect_changed_submodules_cb_data {
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200765 struct repository *repo;
Heiko Voigtc68f8372017-10-16 15:58:27 +0200766 struct string_list *changed;
767 const struct object_id *commit_oid;
768};
769
770/*
771 * this would normally be two functions: default_name_from_path() and
772 * path_from_default_name(). Since the default name is the same as
773 * the submodule path we can get away with just one function which only
774 * checks whether there is a submodule in the working directory at that
775 * location.
776 */
777static const char *default_name_or_path(const char *path_or_name)
778{
779 int error_code;
780
781 if (!is_submodule_populated_gently(path_or_name, &error_code))
782 return NULL;
783
784 return path_or_name;
785}
786
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700787static void collect_changed_submodules_cb(struct diff_queue_struct *q,
788 struct diff_options *options,
789 void *data)
790{
Heiko Voigtc68f8372017-10-16 15:58:27 +0200791 struct collect_changed_submodules_cb_data *me = data;
792 struct string_list *changed = me->changed;
793 const struct object_id *commit_oid = me->commit_oid;
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700794 int i;
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700795
796 for (i = 0; i < q->nr; i++) {
797 struct diff_filepair *p = q->queue[i];
798 struct oid_array *commits;
Heiko Voigtc68f8372017-10-16 15:58:27 +0200799 const struct submodule *submodule;
800 const char *name;
801
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700802 if (!S_ISGITLINK(p->two->mode))
803 continue;
804
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200805 submodule = submodule_from_path(me->repo,
Stefan Beller3b8fb392018-03-28 15:35:29 -0700806 commit_oid, p->two->path);
Heiko Voigtc68f8372017-10-16 15:58:27 +0200807 if (submodule)
808 name = submodule->name;
809 else {
810 name = default_name_or_path(p->two->path);
811 /* make sure name does not collide with existing one */
Stefan Beller5fc84752018-06-14 10:31:07 -0700812 if (name)
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200813 submodule = submodule_from_name(me->repo,
Stefan Beller5fc84752018-06-14 10:31:07 -0700814 commit_oid, name);
Heiko Voigtc68f8372017-10-16 15:58:27 +0200815 if (submodule) {
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +0100816 warning(_("Submodule in commit %s at path: "
Heiko Voigtc68f8372017-10-16 15:58:27 +0200817 "'%s' collides with a submodule named "
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +0100818 "the same. Skipping it."),
Stefan Beller5fc84752018-06-14 10:31:07 -0700819 oid_to_hex(commit_oid), p->two->path);
Heiko Voigtc68f8372017-10-16 15:58:27 +0200820 name = NULL;
821 }
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700822 }
Heiko Voigtc68f8372017-10-16 15:58:27 +0200823
824 if (!name)
825 continue;
826
827 commits = submodule_commits(changed, name);
828 oid_array_append(commits, &p->two->oid);
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700829 }
830}
831
832/*
833 * Collect the paths of submodules in 'changed' which have changed based on
834 * the revisions as specified in 'argv'. Each entry in 'changed' will also
835 * have a corresponding 'struct oid_array' (in the 'util' field) which lists
836 * what the submodule pointers were updated to during the change.
837 */
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200838static void collect_changed_submodules(struct repository *r,
Nguyễn Thái Ngọc Duy174d1312018-09-21 17:57:35 +0200839 struct string_list *changed,
Jeff Kingc972bf42020-07-28 16:25:12 -0400840 struct strvec *argv)
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700841{
842 struct rev_info rev;
843 const struct commit *commit;
Orgad Shaneha462bee2020-09-06 20:53:55 +0000844 int save_warning;
845 struct setup_revision_opt s_r_opt = {
846 .assume_dashdash = 1,
847 };
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700848
Orgad Shaneha462bee2020-09-06 20:53:55 +0000849 save_warning = warn_on_object_refname_ambiguity;
850 warn_on_object_refname_ambiguity = 0;
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200851 repo_init_revisions(r, &rev, NULL);
Orgad Shaneha462bee2020-09-06 20:53:55 +0000852 setup_revisions(argv->nr, argv->v, &rev, &s_r_opt);
853 warn_on_object_refname_ambiguity = save_warning;
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700854 if (prepare_revision_walk(&rev))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +0100855 die(_("revision walk setup failed"));
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700856
857 while ((commit = get_revision(&rev))) {
858 struct rev_info diff_rev;
Heiko Voigtc68f8372017-10-16 15:58:27 +0200859 struct collect_changed_submodules_cb_data data;
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200860 data.repo = r;
Heiko Voigtc68f8372017-10-16 15:58:27 +0200861 data.changed = changed;
862 data.commit_oid = &commit->object.oid;
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700863
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200864 repo_init_revisions(r, &diff_rev, NULL);
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700865 diff_rev.diffopt.output_format |= DIFF_FORMAT_CALLBACK;
866 diff_rev.diffopt.format_callback = collect_changed_submodules_cb;
Heiko Voigtc68f8372017-10-16 15:58:27 +0200867 diff_rev.diffopt.format_callback_data = &data;
Sergey Organovd01141d2020-09-29 14:31:22 +0300868 diff_rev.dense_combined_merges = 1;
869 diff_tree_combined_merge(commit, &diff_rev);
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700870 }
871
872 reset_revision_walk();
873}
874
875static void free_submodules_oids(struct string_list *submodules)
876{
877 struct string_list_item *item;
878 for_each_string_list_item(item, submodules)
879 oid_array_clear((struct oid_array *) item->util);
880 string_list_clear(submodules, 1);
881}
882
Michael Haggerty7290ef52015-05-25 18:39:07 +0000883static int has_remote(const char *refname, const struct object_id *oid,
884 int flags, void *cb_data)
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +0200885{
886 return 1;
887}
888
brian m. carlson1b7ba792017-03-31 01:39:59 +0000889static int append_oid_to_argv(const struct object_id *oid, void *data)
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +0200890{
Jeff Kingc972bf42020-07-28 16:25:12 -0400891 struct strvec *argv = data;
892 strvec_push(argv, oid_to_hex(oid));
Heiko Voigt9cfa1c22016-11-16 16:11:05 +0100893 return 0;
894}
895
Stefan Beller3c96aa92017-09-12 10:30:27 -0700896struct has_commit_data {
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200897 struct repository *repo;
Stefan Beller3c96aa92017-09-12 10:30:27 -0700898 int result;
899 const char *path;
900};
901
brian m. carlson1b7ba792017-03-31 01:39:59 +0000902static int check_has_commit(const struct object_id *oid, void *data)
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +0200903{
Stefan Beller3c96aa92017-09-12 10:30:27 -0700904 struct has_commit_data *cb = data;
Heiko Voigt5b6607d2016-11-16 16:11:06 +0100905
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200906 enum object_type type = oid_object_info(cb->repo, oid, NULL);
Heiko Voigt5b6607d2016-11-16 16:11:06 +0100907
Stefan Beller3c96aa92017-09-12 10:30:27 -0700908 switch (type) {
909 case OBJ_COMMIT:
910 return 0;
911 case OBJ_BAD:
912 /*
913 * Object is missing or invalid. If invalid, an error message
914 * has already been printed.
915 */
916 cb->result = 0;
917 return 0;
918 default:
919 die(_("submodule entry '%s' (%s) is a %s, not a commit"),
Brandon Williamsdebca9d2018-02-14 10:59:24 -0800920 cb->path, oid_to_hex(oid), type_name(type));
Stefan Beller3c96aa92017-09-12 10:30:27 -0700921 }
Heiko Voigt5b6607d2016-11-16 16:11:06 +0100922}
923
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200924static int submodule_has_commits(struct repository *r,
925 const char *path,
926 struct oid_array *commits)
Heiko Voigt5b6607d2016-11-16 16:11:06 +0100927{
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200928 struct has_commit_data has_commit = { r, 1, path };
Heiko Voigt5b6607d2016-11-16 16:11:06 +0100929
Brandon Williams7c8d2b02017-05-01 18:02:38 -0700930 /*
Ville Skyttä64127572017-06-25 13:20:41 +0300931 * Perform a cheap, but incorrect check for the existence of 'commits'.
Brandon Williams7c8d2b02017-05-01 18:02:38 -0700932 * This is done by adding the submodule's object store to the in-core
Ville Skyttä64127572017-06-25 13:20:41 +0300933 * object store, and then querying for each commit's existence. If we
Brandon Williams7c8d2b02017-05-01 18:02:38 -0700934 * do not have the commit object anywhere, there is no chance we have
935 * it in the object store of the correct submodule and have it
936 * reachable from a ref, so we can fail early without spawning rev-list
937 * which is expensive.
938 */
Heiko Voigt5b6607d2016-11-16 16:11:06 +0100939 if (add_submodule_odb(path))
940 return 0;
941
brian m. carlson910650d2017-03-31 01:40:00 +0000942 oid_array_for_each_unique(commits, check_has_commit, &has_commit);
Brandon Williams7c8d2b02017-05-01 18:02:38 -0700943
Stefan Beller3c96aa92017-09-12 10:30:27 -0700944 if (has_commit.result) {
Brandon Williams7c8d2b02017-05-01 18:02:38 -0700945 /*
946 * Even if the submodule is checked out and the commit is
947 * present, make sure it exists in the submodule's object store
948 * and that it is reachable from a ref.
949 */
950 struct child_process cp = CHILD_PROCESS_INIT;
951 struct strbuf out = STRBUF_INIT;
952
Jeff Kingc972bf42020-07-28 16:25:12 -0400953 strvec_pushl(&cp.args, "rev-list", "-n", "1", NULL);
Brandon Williams7c8d2b02017-05-01 18:02:38 -0700954 oid_array_for_each_unique(commits, append_oid_to_argv, &cp.args);
Jeff Kingc972bf42020-07-28 16:25:12 -0400955 strvec_pushl(&cp.args, "--not", "--all", NULL);
Brandon Williams7c8d2b02017-05-01 18:02:38 -0700956
957 prepare_submodule_repo_env(&cp.env_array);
958 cp.git_cmd = 1;
959 cp.no_stdin = 1;
960 cp.dir = path;
961
962 if (capture_command(&cp, &out, GIT_MAX_HEXSZ + 1) || out.len)
Stefan Beller3c96aa92017-09-12 10:30:27 -0700963 has_commit.result = 0;
Brandon Williams7c8d2b02017-05-01 18:02:38 -0700964
965 strbuf_release(&out);
966 }
967
Stefan Beller3c96aa92017-09-12 10:30:27 -0700968 return has_commit.result;
Heiko Voigt5b6607d2016-11-16 16:11:06 +0100969}
970
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200971static int submodule_needs_pushing(struct repository *r,
972 const char *path,
973 struct oid_array *commits)
Heiko Voigt5b6607d2016-11-16 16:11:06 +0100974{
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200975 if (!submodule_has_commits(r, path, commits))
Heiko Voigt250ab242016-11-16 16:11:07 +0100976 /*
977 * NOTE: We do consider it safe to return "no" here. The
978 * correct answer would be "We do not know" instead of
979 * "No push needed", but it is quite hard to change
980 * the submodule pointer without having the submodule
981 * around. If a user did however change the submodules
982 * without having the submodule around, this indicates
983 * an expert who knows what they are doing or a
984 * maintainer integrating work from other people. In
985 * both cases it should be safe to skip this check.
986 */
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +0200987 return 0;
988
989 if (for_each_remote_ref_submodule(path, has_remote, NULL) > 0) {
René Scharfed3180272014-08-19 21:09:35 +0200990 struct child_process cp = CHILD_PROCESS_INIT;
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +0200991 struct strbuf buf = STRBUF_INIT;
992 int needs_pushing = 0;
993
Jeff Kingc972bf42020-07-28 16:25:12 -0400994 strvec_push(&cp.args, "rev-list");
brian m. carlson910650d2017-03-31 01:40:00 +0000995 oid_array_for_each_unique(commits, append_oid_to_argv, &cp.args);
Jeff Kingc972bf42020-07-28 16:25:12 -0400996 strvec_pushl(&cp.args, "--not", "--remotes", "-n", "1" , NULL);
Heiko Voigt5b6607d2016-11-16 16:11:06 +0100997
Jeff Kingc12e8652016-04-28 09:39:15 -0400998 prepare_submodule_repo_env(&cp.env_array);
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +0200999 cp.git_cmd = 1;
1000 cp.no_stdin = 1;
1001 cp.out = -1;
1002 cp.dir = path;
1003 if (start_command(&cp))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001004 die(_("Could not run 'git rev-list <commits> --not --remotes -n 1' command in submodule %s"),
Heiko Voigt5b6607d2016-11-16 16:11:06 +01001005 path);
brian m. carlsondb1ba2a2019-02-19 00:04:59 +00001006 if (strbuf_read(&buf, cp.out, the_hash_algo->hexsz + 1))
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001007 needs_pushing = 1;
1008 finish_command(&cp);
1009 close(cp.out);
1010 strbuf_release(&buf);
1011 return needs_pushing;
1012 }
1013
1014 return 0;
1015}
1016
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001017int find_unpushed_submodules(struct repository *r,
Nguyễn Thái Ngọc Duy174d1312018-09-21 17:57:35 +02001018 struct oid_array *commits,
1019 const char *remotes_name,
1020 struct string_list *needs_pushing)
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001021{
Heiko Voigt14739442016-11-16 16:11:04 +01001022 struct string_list submodules = STRING_LIST_INIT_DUP;
Heiko Voigtc68f8372017-10-16 15:58:27 +02001023 struct string_list_item *name;
Jeff Kingc972bf42020-07-28 16:25:12 -04001024 struct strvec argv = STRVEC_INIT;
Heiko Voigta762e512012-03-29 09:21:23 +02001025
Jeff Kingd70a9eb2020-07-28 20:37:20 -04001026 /* argv.v[0] will be ignored by setup_revisions */
Jeff Kingc972bf42020-07-28 16:25:12 -04001027 strvec_push(&argv, "find_unpushed_submodules");
brian m. carlson910650d2017-03-31 01:40:00 +00001028 oid_array_for_each_unique(commits, append_oid_to_argv, &argv);
Jeff Kingc972bf42020-07-28 16:25:12 -04001029 strvec_push(&argv, "--not");
1030 strvec_pushf(&argv, "--remotes=%s", remotes_name);
Heiko Voigt9cfa1c22016-11-16 16:11:05 +01001031
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001032 collect_changed_submodules(r, &submodules, &argv);
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001033
Heiko Voigtc68f8372017-10-16 15:58:27 +02001034 for_each_string_list_item(name, &submodules) {
1035 struct oid_array *commits = name->util;
1036 const struct submodule *submodule;
1037 const char *path = NULL;
1038
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001039 submodule = submodule_from_name(r, &null_oid, name->string);
Heiko Voigtc68f8372017-10-16 15:58:27 +02001040 if (submodule)
1041 path = submodule->path;
1042 else
1043 path = default_name_or_path(name->string);
1044
1045 if (!path)
1046 continue;
Heiko Voigt5b6607d2016-11-16 16:11:06 +01001047
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001048 if (submodule_needs_pushing(r, path, commits))
Brandon Williamsaacc5c12017-05-01 18:02:39 -07001049 string_list_insert(needs_pushing, path);
Heiko Voigt14739442016-11-16 16:11:04 +01001050 }
Brandon Williams610b2332017-04-28 16:53:58 -07001051
1052 free_submodules_oids(&submodules);
Jeff Kingc972bf42020-07-28 16:25:12 -04001053 strvec_clear(&argv);
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001054
Heiko Voigta762e512012-03-29 09:21:23 +02001055 return needs_pushing->nr;
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001056}
1057
Brandon Williams2a905562017-04-05 10:47:16 -07001058static int push_submodule(const char *path,
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001059 const struct remote *remote,
Brandon Williams60fba4b2018-05-16 15:58:23 -07001060 const struct refspec *rs,
Brandon Williams2a905562017-04-05 10:47:16 -07001061 const struct string_list *push_options,
1062 int dry_run)
Heiko Voigteb21c732012-03-29 09:21:24 +02001063{
Heiko Voigteb21c732012-03-29 09:21:24 +02001064 if (for_each_remote_ref_submodule(path, has_remote, NULL) > 0) {
René Scharfed3180272014-08-19 21:09:35 +02001065 struct child_process cp = CHILD_PROCESS_INIT;
Jeff Kingc972bf42020-07-28 16:25:12 -04001066 strvec_push(&cp.args, "push");
Brandon Williams0301c822016-11-17 10:46:04 -08001067 if (dry_run)
Jeff Kingc972bf42020-07-28 16:25:12 -04001068 strvec_push(&cp.args, "--dry-run");
Heiko Voigteb21c732012-03-29 09:21:24 +02001069
Brandon Williams2a905562017-04-05 10:47:16 -07001070 if (push_options && push_options->nr) {
1071 const struct string_list_item *item;
1072 for_each_string_list_item(item, push_options)
Jeff Kingc972bf42020-07-28 16:25:12 -04001073 strvec_pushf(&cp.args, "--push-option=%s",
Jeff Kingf6d89422020-07-28 16:26:31 -04001074 item->string);
Brandon Williams2a905562017-04-05 10:47:16 -07001075 }
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001076
1077 if (remote->origin != REMOTE_UNCONFIGURED) {
1078 int i;
Jeff Kingc972bf42020-07-28 16:25:12 -04001079 strvec_push(&cp.args, remote->name);
Brandon Williams60fba4b2018-05-16 15:58:23 -07001080 for (i = 0; i < rs->raw_nr; i++)
Jeff Kingc972bf42020-07-28 16:25:12 -04001081 strvec_push(&cp.args, rs->raw[i]);
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001082 }
1083
Jeff Kingc12e8652016-04-28 09:39:15 -04001084 prepare_submodule_repo_env(&cp.env_array);
Heiko Voigteb21c732012-03-29 09:21:24 +02001085 cp.git_cmd = 1;
1086 cp.no_stdin = 1;
1087 cp.dir = path;
1088 if (run_command(&cp))
1089 return 0;
1090 close(cp.out);
1091 }
1092
1093 return 1;
1094}
1095
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001096/*
1097 * Perform a check in the submodule to see if the remote and refspec work.
1098 * Die if the submodule can't be pushed.
1099 */
Brandon Williamsc7be7202017-07-20 10:40:37 -07001100static void submodule_push_check(const char *path, const char *head,
1101 const struct remote *remote,
Brandon Williams60fba4b2018-05-16 15:58:23 -07001102 const struct refspec *rs)
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001103{
1104 struct child_process cp = CHILD_PROCESS_INIT;
1105 int i;
1106
Jeff Kingc972bf42020-07-28 16:25:12 -04001107 strvec_push(&cp.args, "submodule--helper");
1108 strvec_push(&cp.args, "push-check");
1109 strvec_push(&cp.args, head);
1110 strvec_push(&cp.args, remote->name);
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001111
Brandon Williams60fba4b2018-05-16 15:58:23 -07001112 for (i = 0; i < rs->raw_nr; i++)
Jeff Kingc972bf42020-07-28 16:25:12 -04001113 strvec_push(&cp.args, rs->raw[i]);
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001114
1115 prepare_submodule_repo_env(&cp.env_array);
1116 cp.git_cmd = 1;
1117 cp.no_stdin = 1;
1118 cp.no_stdout = 1;
1119 cp.dir = path;
1120
1121 /*
1122 * Simply indicate if 'submodule--helper push-check' failed.
1123 * More detailed error information will be provided by the
1124 * child process.
1125 */
1126 if (run_command(&cp))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001127 die(_("process for submodule '%s' failed"), path);
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001128}
1129
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001130int push_unpushed_submodules(struct repository *r,
Nguyễn Thái Ngọc Duy174d1312018-09-21 17:57:35 +02001131 struct oid_array *commits,
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001132 const struct remote *remote,
Brandon Williams60fba4b2018-05-16 15:58:23 -07001133 const struct refspec *rs,
Brandon Williams2a905562017-04-05 10:47:16 -07001134 const struct string_list *push_options,
Brandon Williams0301c822016-11-17 10:46:04 -08001135 int dry_run)
Heiko Voigteb21c732012-03-29 09:21:24 +02001136{
1137 int i, ret = 1;
Tanay Abhraf93d7c62014-07-18 02:19:00 -07001138 struct string_list needs_pushing = STRING_LIST_INIT_DUP;
Heiko Voigteb21c732012-03-29 09:21:24 +02001139
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001140 if (!find_unpushed_submodules(r, commits,
Nguyễn Thái Ngọc Duy174d1312018-09-21 17:57:35 +02001141 remote->name, &needs_pushing))
Heiko Voigteb21c732012-03-29 09:21:24 +02001142 return 1;
1143
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001144 /*
1145 * Verify that the remote and refspec can be propagated to all
1146 * submodules. This check can be skipped if the remote and refspec
1147 * won't be propagated due to the remote being unconfigured (e.g. a URL
1148 * instead of a remote name).
1149 */
Brandon Williamsc7be7202017-07-20 10:40:37 -07001150 if (remote->origin != REMOTE_UNCONFIGURED) {
1151 char *head;
1152 struct object_id head_oid;
1153
brian m. carlson0f2dc722017-10-15 22:06:55 +00001154 head = resolve_refdup("HEAD", 0, &head_oid, NULL);
Brandon Williamsc7be7202017-07-20 10:40:37 -07001155 if (!head)
1156 die(_("Failed to resolve HEAD as a valid ref."));
1157
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001158 for (i = 0; i < needs_pushing.nr; i++)
1159 submodule_push_check(needs_pushing.items[i].string,
Brandon Williams60fba4b2018-05-16 15:58:23 -07001160 head, remote, rs);
Brandon Williamsc7be7202017-07-20 10:40:37 -07001161 free(head);
1162 }
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001163
1164 /* Actually push the submodules */
Heiko Voigteb21c732012-03-29 09:21:24 +02001165 for (i = 0; i < needs_pushing.nr; i++) {
1166 const char *path = needs_pushing.items[i].string;
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001167 fprintf(stderr, _("Pushing submodule '%s'\n"), path);
Brandon Williams60fba4b2018-05-16 15:58:23 -07001168 if (!push_submodule(path, remote, rs,
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001169 push_options, dry_run)) {
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001170 fprintf(stderr, _("Unable to push submodule '%s'\n"), path);
Heiko Voigteb21c732012-03-29 09:21:24 +02001171 ret = 0;
1172 }
1173 }
1174
1175 string_list_clear(&needs_pushing, 0);
1176
1177 return ret;
1178}
1179
Brandon Williams419fd782017-04-28 16:53:57 -07001180static int append_oid_to_array(const char *ref, const struct object_id *oid,
1181 int flags, void *data)
Jeff King6859de42011-09-12 15:56:52 -04001182{
Brandon Williams419fd782017-04-28 16:53:57 -07001183 struct oid_array *array = data;
1184 oid_array_append(array, oid);
Jeff King6859de42011-09-12 15:56:52 -04001185 return 0;
1186}
1187
brian m. carlson2eb80bc2017-03-26 16:01:35 +00001188void check_for_new_submodule_commits(struct object_id *oid)
Jens Lehmann88a21972011-03-06 23:10:46 +01001189{
Jeff King6859de42011-09-12 15:56:52 -04001190 if (!initialized_fetch_ref_tips) {
Brandon Williams419fd782017-04-28 16:53:57 -07001191 for_each_ref(append_oid_to_array, &ref_tips_before_fetch);
Jeff King6859de42011-09-12 15:56:52 -04001192 initialized_fetch_ref_tips = 1;
1193 }
1194
brian m. carlson910650d2017-03-31 01:40:00 +00001195 oid_array_append(&ref_tips_after_fetch, oid);
Jeff King6859de42011-09-12 15:56:52 -04001196}
1197
Stefan Beller16dd6fe2018-11-28 16:27:51 -08001198static void calculate_changed_submodule_paths(struct repository *r,
1199 struct string_list *changed_submodule_names)
Jeff King6859de42011-09-12 15:56:52 -04001200{
Jeff Kingc972bf42020-07-28 16:25:12 -04001201 struct strvec argv = STRVEC_INIT;
Stefan Bellerbcd73372018-11-28 16:27:52 -08001202 struct string_list_item *name;
Jens Lehmann88a21972011-03-06 23:10:46 +01001203
Jens Lehmann18322ba2011-09-09 20:22:03 +02001204 /* No need to check if there are no submodules configured */
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001205 if (!submodule_from_path(r, NULL, NULL))
Jens Lehmann18322ba2011-09-09 20:22:03 +02001206 return;
1207
Jeff Kingc972bf42020-07-28 16:25:12 -04001208 strvec_push(&argv, "--"); /* argv[0] program name */
brian m. carlson910650d2017-03-31 01:40:00 +00001209 oid_array_for_each_unique(&ref_tips_after_fetch,
Brandon Williamsd1a84602017-04-28 16:53:59 -07001210 append_oid_to_argv, &argv);
Jeff Kingc972bf42020-07-28 16:25:12 -04001211 strvec_push(&argv, "--not");
brian m. carlson910650d2017-03-31 01:40:00 +00001212 oid_array_for_each_unique(&ref_tips_before_fetch,
Brandon Williamsd1a84602017-04-28 16:53:59 -07001213 append_oid_to_argv, &argv);
Jens Lehmann88a21972011-03-06 23:10:46 +01001214
1215 /*
1216 * Collect all submodules (whether checked out or not) for which new
Heiko Voigtc68f8372017-10-16 15:58:27 +02001217 * commits have been recorded upstream in "changed_submodule_names".
Jens Lehmann88a21972011-03-06 23:10:46 +01001218 */
Stefan Bellerbcd73372018-11-28 16:27:52 -08001219 collect_changed_submodules(r, changed_submodule_names, &argv);
Brandon Williamsaacc5c12017-05-01 18:02:39 -07001220
Stefan Bellerbcd73372018-11-28 16:27:52 -08001221 for_each_string_list_item(name, changed_submodule_names) {
Heiko Voigtc68f8372017-10-16 15:58:27 +02001222 struct oid_array *commits = name->util;
1223 const struct submodule *submodule;
1224 const char *path = NULL;
1225
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001226 submodule = submodule_from_name(r, &null_oid, name->string);
Heiko Voigtc68f8372017-10-16 15:58:27 +02001227 if (submodule)
1228 path = submodule->path;
1229 else
1230 path = default_name_or_path(name->string);
1231
1232 if (!path)
1233 continue;
Brandon Williamsaacc5c12017-05-01 18:02:39 -07001234
Stefan Bellerbcd73372018-11-28 16:27:52 -08001235 if (submodule_has_commits(r, path, commits)) {
1236 oid_array_clear(commits);
1237 *name->string = '\0';
1238 }
Jens Lehmann88a21972011-03-06 23:10:46 +01001239 }
Jeff King6859de42011-09-12 15:56:52 -04001240
Stefan Bellerbcd73372018-11-28 16:27:52 -08001241 string_list_remove_empty_items(changed_submodule_names, 1);
1242
Jeff Kingc972bf42020-07-28 16:25:12 -04001243 strvec_clear(&argv);
brian m. carlson910650d2017-03-31 01:40:00 +00001244 oid_array_clear(&ref_tips_before_fetch);
1245 oid_array_clear(&ref_tips_after_fetch);
Jeff King6859de42011-09-12 15:56:52 -04001246 initialized_fetch_ref_tips = 0;
Jens Lehmann88a21972011-03-06 23:10:46 +01001247}
1248
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001249int submodule_touches_in_range(struct repository *r,
Nguyễn Thái Ngọc Duy174d1312018-09-21 17:57:35 +02001250 struct object_id *excl_oid,
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001251 struct object_id *incl_oid)
1252{
1253 struct string_list subs = STRING_LIST_INIT_DUP;
Jeff Kingc972bf42020-07-28 16:25:12 -04001254 struct strvec args = STRVEC_INIT;
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001255 int ret;
1256
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001257 /* No need to check if there are no submodules configured */
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001258 if (!submodule_from_path(r, NULL, NULL))
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001259 return 0;
1260
Jeff Kingc972bf42020-07-28 16:25:12 -04001261 strvec_push(&args, "--"); /* args[0] program name */
1262 strvec_push(&args, oid_to_hex(incl_oid));
Jonathan Tan4d36f882018-05-24 13:47:29 -07001263 if (!is_null_oid(excl_oid)) {
Jeff Kingc972bf42020-07-28 16:25:12 -04001264 strvec_push(&args, "--not");
1265 strvec_push(&args, oid_to_hex(excl_oid));
Jonathan Tan4d36f882018-05-24 13:47:29 -07001266 }
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001267
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001268 collect_changed_submodules(r, &subs, &args);
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001269 ret = subs.nr;
1270
Jeff Kingc972bf42020-07-28 16:25:12 -04001271 strvec_clear(&args);
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001272
1273 free_submodules_oids(&subs);
1274 return ret;
1275}
1276
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001277struct submodule_parallel_fetch {
1278 int count;
Jeff Kingc972bf42020-07-28 16:25:12 -04001279 struct strvec args;
Brandon Williamse7241972017-12-12 11:53:52 -08001280 struct repository *r;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001281 const char *prefix;
1282 int command_line_option;
Brandon Williams8fa29152017-08-02 12:49:19 -07001283 int default_option;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001284 int quiet;
1285 int result;
Stefan Beller16dd6fe2018-11-28 16:27:51 -08001286
1287 struct string_list changed_submodule_names;
Stefan Bellerbe76c212018-12-06 13:26:55 -08001288
1289 /* Pending fetches by OIDs */
1290 struct fetch_task **oid_fetch_tasks;
1291 int oid_fetch_tasks_nr, oid_fetch_tasks_alloc;
Emily Shaffer02225402020-01-16 14:20:12 -08001292
1293 struct strbuf submodules_with_errors;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001294};
Jeff Kingc972bf42020-07-28 16:25:12 -04001295#define SPF_INIT {0, STRVEC_INIT, NULL, NULL, 0, 0, 0, 0, \
Stefan Bellerbe76c212018-12-06 13:26:55 -08001296 STRING_LIST_INIT_DUP, \
Emily Shaffer02225402020-01-16 14:20:12 -08001297 NULL, 0, 0, STRBUF_INIT}
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001298
Heiko Voigt4b4aced2017-10-16 15:59:05 +02001299static int get_fetch_recurse_config(const struct submodule *submodule,
1300 struct submodule_parallel_fetch *spf)
1301{
1302 if (spf->command_line_option != RECURSE_SUBMODULES_DEFAULT)
1303 return spf->command_line_option;
1304
1305 if (submodule) {
1306 char *key;
1307 const char *value;
1308
1309 int fetch_recurse = submodule->fetch_recurse;
1310 key = xstrfmt("submodule.%s.fetchRecurseSubmodules", submodule->name);
Jeff Kingf1de9812020-08-14 12:17:36 -04001311 if (!repo_config_get_string_tmp(spf->r, key, &value)) {
Heiko Voigt4b4aced2017-10-16 15:59:05 +02001312 fetch_recurse = parse_fetch_recurse_submodules_arg(key, value);
1313 }
1314 free(key);
1315
1316 if (fetch_recurse != RECURSE_SUBMODULES_NONE)
1317 /* local config overrules everything except commandline */
1318 return fetch_recurse;
1319 }
1320
1321 return spf->default_option;
1322}
1323
Stefan Bellerbe76c212018-12-06 13:26:55 -08001324/*
1325 * Fetch in progress (if callback data) or
1326 * pending (if in oid_fetch_tasks in struct submodule_parallel_fetch)
1327 */
1328struct fetch_task {
1329 struct repository *repo;
1330 const struct submodule *sub;
1331 unsigned free_sub : 1; /* Do we need to free the submodule? */
1332
1333 struct oid_array *commits; /* Ensure these commits are fetched */
1334};
1335
1336/**
1337 * When a submodule is not defined in .gitmodules, we cannot access it
1338 * via the regular submodule-config. Create a fake submodule, which we can
1339 * work on.
1340 */
1341static const struct submodule *get_non_gitmodules_submodule(const char *path)
1342{
1343 struct submodule *ret = NULL;
1344 const char *name = default_name_or_path(path);
1345
1346 if (!name)
1347 return NULL;
1348
1349 ret = xmalloc(sizeof(*ret));
1350 memset(ret, 0, sizeof(*ret));
1351 ret->path = name;
1352 ret->name = name;
1353
1354 return (const struct submodule *) ret;
1355}
1356
1357static struct fetch_task *fetch_task_create(struct repository *r,
1358 const char *path)
1359{
1360 struct fetch_task *task = xmalloc(sizeof(*task));
1361 memset(task, 0, sizeof(*task));
1362
1363 task->sub = submodule_from_path(r, &null_oid, path);
1364 if (!task->sub) {
1365 /*
1366 * No entry in .gitmodules? Technically not a submodule,
1367 * but historically we supported repositories that happen to be
1368 * in-place where a gitlink is. Keep supporting them.
1369 */
1370 task->sub = get_non_gitmodules_submodule(path);
1371 if (!task->sub) {
1372 free(task);
1373 return NULL;
1374 }
1375
1376 task->free_sub = 1;
1377 }
1378
1379 return task;
1380}
1381
1382static void fetch_task_release(struct fetch_task *p)
1383{
1384 if (p->free_sub)
1385 free((void*)p->sub);
1386 p->free_sub = 0;
1387 p->sub = NULL;
1388
1389 if (p->repo)
1390 repo_clear(p->repo);
1391 FREE_AND_NULL(p->repo);
1392}
1393
Stefan Beller26f80cc2018-11-28 16:27:54 -08001394static struct repository *get_submodule_repo_for(struct repository *r,
1395 const struct submodule *sub)
1396{
1397 struct repository *ret = xmalloc(sizeof(*ret));
1398
1399 if (repo_submodule_init(ret, r, sub)) {
1400 /*
1401 * No entry in .gitmodules? Technically not a submodule,
1402 * but historically we supported repositories that happen to be
1403 * in-place where a gitlink is. Keep supporting them.
1404 */
1405 struct strbuf gitdir = STRBUF_INIT;
1406 strbuf_repo_worktree_path(&gitdir, r, "%s/.git", sub->path);
1407 if (repo_init(ret, gitdir.buf, NULL)) {
1408 strbuf_release(&gitdir);
1409 free(ret);
1410 return NULL;
1411 }
1412 strbuf_release(&gitdir);
1413 }
1414
1415 return ret;
1416}
1417
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001418static int get_next_submodule(struct child_process *cp,
1419 struct strbuf *err, void *data, void **task_cb)
Jens Lehmann7dce19d2010-11-12 13:54:52 +01001420{
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001421 struct submodule_parallel_fetch *spf = data;
Jens Lehmann7dce19d2010-11-12 13:54:52 +01001422
Brandon Williamse7241972017-12-12 11:53:52 -08001423 for (; spf->count < spf->r->index->cache_nr; spf->count++) {
Brandon Williamse7241972017-12-12 11:53:52 -08001424 const struct cache_entry *ce = spf->r->index->cache[spf->count];
Stefan Beller26f80cc2018-11-28 16:27:54 -08001425 const char *default_argv;
Stefan Bellerbe76c212018-12-06 13:26:55 -08001426 struct fetch_task *task;
Jens Lehmann7dce19d2010-11-12 13:54:52 +01001427
1428 if (!S_ISGITLINK(ce->ce_mode))
1429 continue;
1430
Stefan Bellerbe76c212018-12-06 13:26:55 -08001431 task = fetch_task_create(spf->r, ce->name);
1432 if (!task)
1433 continue;
Brandon Williams492c6c42017-08-03 11:19:51 -07001434
Stefan Bellerbe76c212018-12-06 13:26:55 -08001435 switch (get_fetch_recurse_config(task->sub, spf))
Heiko Voigt4b4aced2017-10-16 15:59:05 +02001436 {
1437 default:
1438 case RECURSE_SUBMODULES_DEFAULT:
1439 case RECURSE_SUBMODULES_ON_DEMAND:
Stefan Bellerbe76c212018-12-06 13:26:55 -08001440 if (!task->sub ||
Stefan Beller08a297b2018-11-28 16:27:50 -08001441 !string_list_lookup(
Stefan Beller16dd6fe2018-11-28 16:27:51 -08001442 &spf->changed_submodule_names,
Stefan Bellerbe76c212018-12-06 13:26:55 -08001443 task->sub->name))
Jens Lehmann8f0700d2011-03-06 23:11:21 +01001444 continue;
1445 default_argv = "on-demand";
Heiko Voigt4b4aced2017-10-16 15:59:05 +02001446 break;
1447 case RECURSE_SUBMODULES_ON:
1448 default_argv = "yes";
1449 break;
1450 case RECURSE_SUBMODULES_OFF:
1451 continue;
Jens Lehmannbe254a02010-11-11 00:55:02 +01001452 }
1453
Stefan Bellerbe76c212018-12-06 13:26:55 -08001454 task->repo = get_submodule_repo_for(spf->r, task->sub);
1455 if (task->repo) {
1456 struct strbuf submodule_prefix = STRBUF_INIT;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001457 child_process_init(cp);
Stefan Bellerbe76c212018-12-06 13:26:55 -08001458 cp->dir = task->repo->gitdir;
Stefan Bellera62387b2018-11-28 16:27:55 -08001459 prepare_submodule_repo_env_in_gitdir(&cp->env_array);
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001460 cp->git_cmd = 1;
1461 if (!spf->quiet)
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001462 strbuf_addf(err, _("Fetching submodule %s%s\n"),
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001463 spf->prefix, ce->name);
Jeff Kingc972bf42020-07-28 16:25:12 -04001464 strvec_init(&cp->args);
Jeff Kingd70a9eb2020-07-28 20:37:20 -04001465 strvec_pushv(&cp->args, spf->args.v);
Jeff Kingc972bf42020-07-28 16:25:12 -04001466 strvec_push(&cp->args, default_argv);
1467 strvec_push(&cp->args, "--submodule-prefix");
Stefan Bellerbe76c212018-12-06 13:26:55 -08001468
1469 strbuf_addf(&submodule_prefix, "%s%s/",
1470 spf->prefix,
1471 task->sub->path);
Jeff Kingc972bf42020-07-28 16:25:12 -04001472 strvec_push(&cp->args, submodule_prefix.buf);
Stefan Beller26f80cc2018-11-28 16:27:54 -08001473
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001474 spf->count++;
Stefan Bellerbe76c212018-12-06 13:26:55 -08001475 *task_cb = task;
1476
1477 strbuf_release(&submodule_prefix);
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001478 return 1;
Stefan Beller26f80cc2018-11-28 16:27:54 -08001479 } else {
Peter Kaestle505a2762020-12-09 11:58:44 +01001480 struct strbuf empty_submodule_path = STRBUF_INIT;
Stefan Bellerbe76c212018-12-06 13:26:55 -08001481
1482 fetch_task_release(task);
1483 free(task);
1484
Stefan Beller26f80cc2018-11-28 16:27:54 -08001485 /*
1486 * An empty directory is normal,
1487 * the submodule is not initialized
1488 */
Peter Kaestle505a2762020-12-09 11:58:44 +01001489 strbuf_addf(&empty_submodule_path, "%s/%s/",
1490 spf->r->worktree,
1491 ce->name);
Stefan Beller26f80cc2018-11-28 16:27:54 -08001492 if (S_ISGITLINK(ce->ce_mode) &&
Peter Kaestle505a2762020-12-09 11:58:44 +01001493 !is_empty_dir(empty_submodule_path.buf)) {
Stefan Beller26f80cc2018-11-28 16:27:54 -08001494 spf->result = 1;
1495 strbuf_addf(err,
Emily Shaffer303b3c12020-02-06 16:48:33 -08001496 _("Could not access submodule '%s'\n"),
Stefan Beller26f80cc2018-11-28 16:27:54 -08001497 ce->name);
1498 }
Peter Kaestle505a2762020-12-09 11:58:44 +01001499 strbuf_release(&empty_submodule_path);
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001500 }
Jens Lehmann7dce19d2010-11-12 13:54:52 +01001501 }
Stefan Bellerbe76c212018-12-06 13:26:55 -08001502
1503 if (spf->oid_fetch_tasks_nr) {
1504 struct fetch_task *task =
1505 spf->oid_fetch_tasks[spf->oid_fetch_tasks_nr - 1];
1506 struct strbuf submodule_prefix = STRBUF_INIT;
1507 spf->oid_fetch_tasks_nr--;
1508
1509 strbuf_addf(&submodule_prefix, "%s%s/",
1510 spf->prefix, task->sub->path);
1511
1512 child_process_init(cp);
1513 prepare_submodule_repo_env_in_gitdir(&cp->env_array);
1514 cp->git_cmd = 1;
1515 cp->dir = task->repo->gitdir;
1516
Jeff Kingc972bf42020-07-28 16:25:12 -04001517 strvec_init(&cp->args);
Jeff Kingd70a9eb2020-07-28 20:37:20 -04001518 strvec_pushv(&cp->args, spf->args.v);
Jeff Kingc972bf42020-07-28 16:25:12 -04001519 strvec_push(&cp->args, "on-demand");
1520 strvec_push(&cp->args, "--submodule-prefix");
1521 strvec_push(&cp->args, submodule_prefix.buf);
Stefan Bellerbe76c212018-12-06 13:26:55 -08001522
1523 /* NEEDSWORK: have get_default_remote from submodule--helper */
Jeff Kingc972bf42020-07-28 16:25:12 -04001524 strvec_push(&cp->args, "origin");
Stefan Bellerbe76c212018-12-06 13:26:55 -08001525 oid_array_for_each_unique(task->commits,
1526 append_oid_to_argv, &cp->args);
1527
1528 *task_cb = task;
1529 strbuf_release(&submodule_prefix);
1530 return 1;
1531 }
1532
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001533 return 0;
1534}
1535
Stefan Beller2a73b3d2016-02-29 13:57:06 -08001536static int fetch_start_failure(struct strbuf *err,
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001537 void *cb, void *task_cb)
1538{
1539 struct submodule_parallel_fetch *spf = cb;
Stefan Bellerbe76c212018-12-06 13:26:55 -08001540 struct fetch_task *task = task_cb;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001541
1542 spf->result = 1;
1543
Stefan Bellerbe76c212018-12-06 13:26:55 -08001544 fetch_task_release(task);
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001545 return 0;
1546}
1547
Stefan Bellerbe76c212018-12-06 13:26:55 -08001548static int commit_missing_in_sub(const struct object_id *oid, void *data)
1549{
1550 struct repository *subrepo = data;
1551
1552 enum object_type type = oid_object_info(subrepo, oid, NULL);
1553
1554 return type != OBJ_COMMIT;
1555}
1556
Stefan Beller2a73b3d2016-02-29 13:57:06 -08001557static int fetch_finish(int retvalue, struct strbuf *err,
1558 void *cb, void *task_cb)
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001559{
1560 struct submodule_parallel_fetch *spf = cb;
Stefan Bellerbe76c212018-12-06 13:26:55 -08001561 struct fetch_task *task = task_cb;
1562
1563 struct string_list_item *it;
1564 struct oid_array *commits;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001565
Emily Shaffer02225402020-01-16 14:20:12 -08001566 if (!task || !task->sub)
1567 BUG("callback cookie bogus");
1568
1569 if (retvalue) {
Jonathan Tanbd5e5672019-03-13 10:57:38 -07001570 /*
1571 * NEEDSWORK: This indicates that the overall fetch
1572 * failed, even though there may be a subsequent fetch
1573 * by commit hash that might work. It may be a good
1574 * idea to not indicate failure in this case, and only
1575 * indicate failure if the subsequent fetch fails.
1576 */
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001577 spf->result = 1;
1578
Emily Shaffer02225402020-01-16 14:20:12 -08001579 strbuf_addf(&spf->submodules_with_errors, "\t%s\n",
1580 task->sub->name);
1581 }
Stefan Bellerbe76c212018-12-06 13:26:55 -08001582
1583 /* Is this the second time we process this submodule? */
1584 if (task->commits)
1585 goto out;
1586
1587 it = string_list_lookup(&spf->changed_submodule_names, task->sub->name);
1588 if (!it)
1589 /* Could be an unchanged submodule, not contained in the list */
1590 goto out;
1591
1592 commits = it->util;
1593 oid_array_filter(commits,
1594 commit_missing_in_sub,
1595 task->repo);
1596
1597 /* Are there commits we want, but do not exist? */
1598 if (commits->nr) {
1599 task->commits = commits;
1600 ALLOC_GROW(spf->oid_fetch_tasks,
1601 spf->oid_fetch_tasks_nr + 1,
1602 spf->oid_fetch_tasks_alloc);
1603 spf->oid_fetch_tasks[spf->oid_fetch_tasks_nr] = task;
1604 spf->oid_fetch_tasks_nr++;
1605 return 0;
1606 }
1607
1608out:
1609 fetch_task_release(task);
1610
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001611 return 0;
1612}
1613
Brandon Williamse7241972017-12-12 11:53:52 -08001614int fetch_populated_submodules(struct repository *r,
Jeff Kingc972bf42020-07-28 16:25:12 -04001615 const struct strvec *options,
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001616 const char *prefix, int command_line_option,
Brandon Williams8fa29152017-08-02 12:49:19 -07001617 int default_option,
Stefan Beller62104ba2015-12-15 16:04:12 -08001618 int quiet, int max_parallel_jobs)
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001619{
1620 int i;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001621 struct submodule_parallel_fetch spf = SPF_INIT;
1622
Brandon Williamse7241972017-12-12 11:53:52 -08001623 spf.r = r;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001624 spf.command_line_option = command_line_option;
Brandon Williams8fa29152017-08-02 12:49:19 -07001625 spf.default_option = default_option;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001626 spf.quiet = quiet;
1627 spf.prefix = prefix;
1628
Brandon Williamse7241972017-12-12 11:53:52 -08001629 if (!r->worktree)
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001630 goto out;
1631
Brandon Williamse7241972017-12-12 11:53:52 -08001632 if (repo_read_index(r) < 0)
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001633 die(_("index file corrupt"));
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001634
Jeff Kingc972bf42020-07-28 16:25:12 -04001635 strvec_push(&spf.args, "fetch");
Jeff Kingd70a9eb2020-07-28 20:37:20 -04001636 for (i = 0; i < options->nr; i++)
1637 strvec_push(&spf.args, options->v[i]);
Jeff Kingc972bf42020-07-28 16:25:12 -04001638 strvec_push(&spf.args, "--recurse-submodules-default");
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001639 /* default value, "--submodule-prefix" and its value are added later */
1640
Stefan Beller16dd6fe2018-11-28 16:27:51 -08001641 calculate_changed_submodule_paths(r, &spf.changed_submodule_names);
1642 string_list_sort(&spf.changed_submodule_names);
Jeff Hostetleree4512e2019-02-22 14:25:01 -08001643 run_processes_parallel_tr2(max_parallel_jobs,
1644 get_next_submodule,
1645 fetch_start_failure,
1646 fetch_finish,
1647 &spf,
1648 "submodule", "parallel/fetch");
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001649
Emily Shaffer02225402020-01-16 14:20:12 -08001650 if (spf.submodules_with_errors.len > 0)
1651 fprintf(stderr, _("Errors during submodule fetch:\n%s"),
1652 spf.submodules_with_errors.buf);
1653
1654
Jeff Kingc972bf42020-07-28 16:25:12 -04001655 strvec_clear(&spf.args);
Jens Lehmann88a21972011-03-06 23:10:46 +01001656out:
Stefan Bellerbcd73372018-11-28 16:27:52 -08001657 free_submodules_oids(&spf.changed_submodule_names);
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001658 return spf.result;
Jens Lehmann7dce19d2010-11-12 13:54:52 +01001659}
1660
Jens Lehmann3bfc4502010-03-13 23:00:27 +01001661unsigned is_submodule_modified(const char *path, int ignore_untracked)
Jens Lehmannee6fc512010-01-16 18:42:24 +01001662{
René Scharfed3180272014-08-19 21:09:35 +02001663 struct child_process cp = CHILD_PROCESS_INIT;
Jens Lehmannee6fc512010-01-16 18:42:24 +01001664 struct strbuf buf = STRBUF_INIT;
Stefan Belleraf6865a2017-03-24 17:36:06 -07001665 FILE *fp;
Jens Lehmannc7e1a732010-03-04 22:20:33 +01001666 unsigned dirty_submodule = 0;
Jens Lehmanneee49b62010-04-10 19:01:12 +02001667 const char *git_dir;
Stefan Belleraf6865a2017-03-24 17:36:06 -07001668 int ignore_cp_exit_code = 0;
Jens Lehmannee6fc512010-01-16 18:42:24 +01001669
Jens Lehmanneee49b62010-04-10 19:01:12 +02001670 strbuf_addf(&buf, "%s/.git", path);
Junio C Hamano13d6ec92011-08-22 14:04:56 -07001671 git_dir = read_gitfile(buf.buf);
Jens Lehmanneee49b62010-04-10 19:01:12 +02001672 if (!git_dir)
1673 git_dir = buf.buf;
Stefan Beller5c896f72017-03-24 17:36:08 -07001674 if (!is_git_directory(git_dir)) {
1675 if (is_directory(git_dir))
1676 die(_("'%s' not recognized as a git repository"), git_dir);
Jens Lehmannee6fc512010-01-16 18:42:24 +01001677 strbuf_release(&buf);
1678 /* The submodule is not checked out, so it is not modified */
1679 return 0;
Jens Lehmannee6fc512010-01-16 18:42:24 +01001680 }
1681 strbuf_reset(&buf);
1682
Jeff Kingc972bf42020-07-28 16:25:12 -04001683 strvec_pushl(&cp.args, "status", "--porcelain=2", NULL);
Jens Lehmann3bfc4502010-03-13 23:00:27 +01001684 if (ignore_untracked)
Jeff Kingc972bf42020-07-28 16:25:12 -04001685 strvec_push(&cp.args, "-uno");
Jens Lehmann3bfc4502010-03-13 23:00:27 +01001686
Jeff Kingc12e8652016-04-28 09:39:15 -04001687 prepare_submodule_repo_env(&cp.env_array);
Jens Lehmannee6fc512010-01-16 18:42:24 +01001688 cp.git_cmd = 1;
1689 cp.no_stdin = 1;
1690 cp.out = -1;
Jens Lehmanneee49b62010-04-10 19:01:12 +02001691 cp.dir = path;
Jens Lehmannee6fc512010-01-16 18:42:24 +01001692 if (start_command(&cp))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001693 die(_("Could not run 'git status --porcelain=2' in submodule %s"), path);
Jens Lehmannee6fc512010-01-16 18:42:24 +01001694
Stefan Belleraf6865a2017-03-24 17:36:06 -07001695 fp = xfdopen(cp.out, "r");
1696 while (strbuf_getwholeline(&buf, fp, '\n') != EOF) {
Stefan Bellerfcecf0b2017-03-24 17:36:07 -07001697 /* regular untracked files */
1698 if (buf.buf[0] == '?')
Jens Lehmannc7e1a732010-03-04 22:20:33 +01001699 dirty_submodule |= DIRTY_SUBMODULE_UNTRACKED;
Jens Lehmannee6fc512010-01-16 18:42:24 +01001700
Stefan Beller40069d62017-03-29 15:26:16 -07001701 if (buf.buf[0] == 'u' ||
1702 buf.buf[0] == '1' ||
1703 buf.buf[0] == '2') {
1704 /* T = line type, XY = status, SSSS = submodule state */
1705 if (buf.len < strlen("T XY SSSS"))
Johannes Schindelin033abf92018-05-02 11:38:39 +02001706 BUG("invalid status --porcelain=2 line %s",
Stefan Beller40069d62017-03-29 15:26:16 -07001707 buf.buf);
1708
1709 if (buf.buf[5] == 'S' && buf.buf[8] == 'U')
1710 /* nested untracked file */
1711 dirty_submodule |= DIRTY_SUBMODULE_UNTRACKED;
1712
1713 if (buf.buf[0] == 'u' ||
1714 buf.buf[0] == '2' ||
1715 memcmp(buf.buf + 5, "S..U", 4))
1716 /* other change */
1717 dirty_submodule |= DIRTY_SUBMODULE_MODIFIED;
1718 }
Stefan Beller64f9a942017-03-24 17:36:05 -07001719
1720 if ((dirty_submodule & DIRTY_SUBMODULE_MODIFIED) &&
1721 ((dirty_submodule & DIRTY_SUBMODULE_UNTRACKED) ||
Stefan Belleraf6865a2017-03-24 17:36:06 -07001722 ignore_untracked)) {
1723 /*
1724 * We're not interested in any further information from
1725 * the child any more, neither output nor its exit code.
1726 */
1727 ignore_cp_exit_code = 1;
Stefan Beller64f9a942017-03-24 17:36:05 -07001728 break;
Stefan Belleraf6865a2017-03-24 17:36:06 -07001729 }
Jens Lehmannee6fc512010-01-16 18:42:24 +01001730 }
Stefan Belleraf6865a2017-03-24 17:36:06 -07001731 fclose(fp);
Jens Lehmannee6fc512010-01-16 18:42:24 +01001732
Stefan Belleraf6865a2017-03-24 17:36:06 -07001733 if (finish_command(&cp) && !ignore_cp_exit_code)
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001734 die(_("'git status --porcelain=2' failed in submodule %s"), path);
Jens Lehmannee6fc512010-01-16 18:42:24 +01001735
Jens Lehmannee6fc512010-01-16 18:42:24 +01001736 strbuf_release(&buf);
Jens Lehmannc7e1a732010-03-04 22:20:33 +01001737 return dirty_submodule;
Jens Lehmannee6fc512010-01-16 18:42:24 +01001738}
Heiko Voigt68d03e42010-07-07 15:39:13 +02001739
Jens Lehmann293ab152012-09-26 20:21:13 +02001740int submodule_uses_gitfile(const char *path)
1741{
René Scharfed3180272014-08-19 21:09:35 +02001742 struct child_process cp = CHILD_PROCESS_INIT;
Jens Lehmann293ab152012-09-26 20:21:13 +02001743 struct strbuf buf = STRBUF_INIT;
1744 const char *git_dir;
1745
1746 strbuf_addf(&buf, "%s/.git", path);
1747 git_dir = read_gitfile(buf.buf);
1748 if (!git_dir) {
1749 strbuf_release(&buf);
1750 return 0;
1751 }
1752 strbuf_release(&buf);
1753
1754 /* Now test that all nested submodules use a gitfile too */
Junio C Hamanoafbdba32020-08-26 15:25:03 -07001755 strvec_pushl(&cp.args,
1756 "submodule", "foreach", "--quiet", "--recursive",
1757 "test -f .git", NULL);
1758
Jeff Kingc12e8652016-04-28 09:39:15 -04001759 prepare_submodule_repo_env(&cp.env_array);
Jens Lehmann293ab152012-09-26 20:21:13 +02001760 cp.git_cmd = 1;
1761 cp.no_stdin = 1;
1762 cp.no_stderr = 1;
1763 cp.no_stdout = 1;
1764 cp.dir = path;
1765 if (run_command(&cp))
1766 return 0;
1767
1768 return 1;
1769}
1770
Stefan Beller83b76962016-12-20 15:20:11 -08001771/*
1772 * Check if it is a bad idea to remove a submodule, i.e. if we'd lose data
1773 * when doing so.
1774 *
1775 * Return 1 if we'd lose data, return 0 if the removal is fine,
1776 * and negative values for errors.
1777 */
1778int bad_to_remove_submodule(const char *path, unsigned flags)
Jens Lehmann293ab152012-09-26 20:21:13 +02001779{
Jens Lehmann293ab152012-09-26 20:21:13 +02001780 ssize_t len;
René Scharfed3180272014-08-19 21:09:35 +02001781 struct child_process cp = CHILD_PROCESS_INIT;
Jens Lehmann293ab152012-09-26 20:21:13 +02001782 struct strbuf buf = STRBUF_INIT;
Stefan Beller83b76962016-12-20 15:20:11 -08001783 int ret = 0;
Jens Lehmann293ab152012-09-26 20:21:13 +02001784
René Scharfedbe44fa2015-05-19 23:44:23 +02001785 if (!file_exists(path) || is_empty_dir(path))
Jens Lehmann293ab152012-09-26 20:21:13 +02001786 return 0;
1787
Stefan Beller83b76962016-12-20 15:20:11 -08001788 if (!submodule_uses_gitfile(path))
1789 return 1;
1790
Jeff Kingc972bf42020-07-28 16:25:12 -04001791 strvec_pushl(&cp.args, "status", "--porcelain",
Jeff Kingf6d89422020-07-28 16:26:31 -04001792 "--ignore-submodules=none", NULL);
Stefan Beller83b76962016-12-20 15:20:11 -08001793
1794 if (flags & SUBMODULE_REMOVAL_IGNORE_UNTRACKED)
Jeff Kingc972bf42020-07-28 16:25:12 -04001795 strvec_push(&cp.args, "-uno");
Stefan Beller83b76962016-12-20 15:20:11 -08001796 else
Jeff Kingc972bf42020-07-28 16:25:12 -04001797 strvec_push(&cp.args, "-uall");
Stefan Beller83b76962016-12-20 15:20:11 -08001798
1799 if (!(flags & SUBMODULE_REMOVAL_IGNORE_IGNORED_UNTRACKED))
Jeff Kingc972bf42020-07-28 16:25:12 -04001800 strvec_push(&cp.args, "--ignored");
Stefan Beller83b76962016-12-20 15:20:11 -08001801
Jeff Kingc12e8652016-04-28 09:39:15 -04001802 prepare_submodule_repo_env(&cp.env_array);
Jens Lehmann293ab152012-09-26 20:21:13 +02001803 cp.git_cmd = 1;
1804 cp.no_stdin = 1;
1805 cp.out = -1;
1806 cp.dir = path;
Stefan Beller83b76962016-12-20 15:20:11 -08001807 if (start_command(&cp)) {
1808 if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR)
Ralf Thielow35ad44c2017-04-13 18:40:45 +02001809 die(_("could not start 'git status' in submodule '%s'"),
Stefan Beller83b76962016-12-20 15:20:11 -08001810 path);
1811 ret = -1;
1812 goto out;
1813 }
Jens Lehmann293ab152012-09-26 20:21:13 +02001814
1815 len = strbuf_read(&buf, cp.out, 1024);
1816 if (len > 2)
Stefan Beller83b76962016-12-20 15:20:11 -08001817 ret = 1;
Jens Lehmann293ab152012-09-26 20:21:13 +02001818 close(cp.out);
1819
Stefan Beller83b76962016-12-20 15:20:11 -08001820 if (finish_command(&cp)) {
1821 if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR)
Ralf Thielow35ad44c2017-04-13 18:40:45 +02001822 die(_("could not run 'git status' in submodule '%s'"),
Stefan Beller83b76962016-12-20 15:20:11 -08001823 path);
1824 ret = -1;
1825 }
1826out:
Jens Lehmann293ab152012-09-26 20:21:13 +02001827 strbuf_release(&buf);
Stefan Beller83b76962016-12-20 15:20:11 -08001828 return ret;
Jens Lehmann293ab152012-09-26 20:21:13 +02001829}
1830
Stefan Beller898c2e62018-12-14 15:59:43 -08001831void submodule_unset_core_worktree(const struct submodule *sub)
1832{
1833 char *config_path = xstrfmt("%s/modules/%s/config",
Philippe Blaina9472af2020-01-21 15:01:17 +00001834 get_git_dir(), sub->name);
Stefan Beller898c2e62018-12-14 15:59:43 -08001835
1836 if (git_config_set_in_file_gently(config_path, "core.worktree", NULL))
1837 warning(_("Could not unset core.worktree setting in submodule '%s'"),
1838 sub->path);
1839
1840 free(config_path);
1841}
1842
Stefan Beller202275b2017-03-14 14:46:36 -07001843static const char *get_super_prefix_or_empty(void)
1844{
1845 const char *s = get_super_prefix();
1846 if (!s)
1847 s = "";
1848 return s;
1849}
1850
Stefan Beller6e3c1592017-03-14 14:46:37 -07001851static int submodule_has_dirty_index(const struct submodule *sub)
1852{
1853 struct child_process cp = CHILD_PROCESS_INIT;
1854
Stefan Bellerda27bc82017-05-02 12:32:13 -07001855 prepare_submodule_repo_env(&cp.env_array);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001856
1857 cp.git_cmd = 1;
Jeff Kingc972bf42020-07-28 16:25:12 -04001858 strvec_pushl(&cp.args, "diff-index", "--quiet",
Jeff Kingf6d89422020-07-28 16:26:31 -04001859 "--cached", "HEAD", NULL);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001860 cp.no_stdin = 1;
1861 cp.no_stdout = 1;
1862 cp.dir = sub->path;
1863 if (start_command(&cp))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001864 die(_("could not recurse into submodule '%s'"), sub->path);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001865
1866 return finish_command(&cp);
1867}
1868
1869static void submodule_reset_index(const char *path)
1870{
1871 struct child_process cp = CHILD_PROCESS_INIT;
Stefan Bellerda27bc82017-05-02 12:32:13 -07001872 prepare_submodule_repo_env(&cp.env_array);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001873
1874 cp.git_cmd = 1;
1875 cp.no_stdin = 1;
1876 cp.dir = path;
1877
Jeff Kingc972bf42020-07-28 16:25:12 -04001878 strvec_pushf(&cp.args, "--super-prefix=%s%s/",
Jeff Kingf6d89422020-07-28 16:26:31 -04001879 get_super_prefix_or_empty(), path);
Jeff Kingc972bf42020-07-28 16:25:12 -04001880 strvec_pushl(&cp.args, "read-tree", "-u", "--reset", NULL);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001881
Jeff Kingc972bf42020-07-28 16:25:12 -04001882 strvec_push(&cp.args, empty_tree_oid_hex());
Stefan Beller6e3c1592017-03-14 14:46:37 -07001883
1884 if (run_command(&cp))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001885 die(_("could not reset submodule index"));
Stefan Beller6e3c1592017-03-14 14:46:37 -07001886}
1887
1888/**
1889 * Moves a submodule at a given path from a given head to another new head.
1890 * For edge cases (a submodule coming into existence or removing a submodule)
1891 * pass NULL for old or new respectively.
1892 */
1893int submodule_move_head(const char *path,
Brandon Williamsbc099912018-02-14 10:59:49 -08001894 const char *old_head,
1895 const char *new_head,
Stefan Beller6e3c1592017-03-14 14:46:37 -07001896 unsigned flags)
1897{
1898 int ret = 0;
1899 struct child_process cp = CHILD_PROCESS_INIT;
1900 const struct submodule *sub;
Stefan Bellerf2d48992017-04-18 14:37:24 -07001901 int *error_code_ptr, error_code;
Stefan Beller6e3c1592017-03-14 14:46:37 -07001902
Brandon Williams627d9342017-06-22 11:43:46 -07001903 if (!is_submodule_active(the_repository, path))
Stefan Beller823bab02017-04-18 14:37:23 -07001904 return 0;
1905
Stefan Bellerf2d48992017-04-18 14:37:24 -07001906 if (flags & SUBMODULE_MOVE_HEAD_FORCE)
1907 /*
1908 * Pass non NULL pointer to is_submodule_populated_gently
1909 * to prevent die()-ing. We'll use connect_work_tree_and_git_dir
1910 * to fixup the submodule in the force case later.
1911 */
1912 error_code_ptr = &error_code;
1913 else
1914 error_code_ptr = NULL;
1915
Brandon Williamsbc099912018-02-14 10:59:49 -08001916 if (old_head && !is_submodule_populated_gently(path, error_code_ptr))
Stefan Bellerf2d48992017-04-18 14:37:24 -07001917 return 0;
Stefan Beller6e3c1592017-03-14 14:46:37 -07001918
Stefan Beller3b8fb392018-03-28 15:35:29 -07001919 sub = submodule_from_path(the_repository, &null_oid, path);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001920
1921 if (!sub)
Johannes Schindelin033abf92018-05-02 11:38:39 +02001922 BUG("could not get submodule information for '%s'", path);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001923
Brandon Williamsbc099912018-02-14 10:59:49 -08001924 if (old_head && !(flags & SUBMODULE_MOVE_HEAD_FORCE)) {
Stefan Beller6e3c1592017-03-14 14:46:37 -07001925 /* Check if the submodule has a dirty index. */
1926 if (submodule_has_dirty_index(sub))
1927 return error(_("submodule '%s' has dirty index"), path);
1928 }
1929
1930 if (!(flags & SUBMODULE_MOVE_HEAD_DRY_RUN)) {
Brandon Williamsbc099912018-02-14 10:59:49 -08001931 if (old_head) {
Stefan Beller6e3c1592017-03-14 14:46:37 -07001932 if (!submodule_uses_gitfile(path))
Jeff Kingcf7a9012019-05-09 17:27:31 -04001933 absorb_git_dir_into_superproject(path,
Stefan Beller6e3c1592017-03-14 14:46:37 -07001934 ABSORB_GITDIR_RECURSE_SUBMODULES);
1935 } else {
Stefan Bellerf2d48992017-04-18 14:37:24 -07001936 char *gitdir = xstrfmt("%s/modules/%s",
Philippe Blaina9472af2020-01-21 15:01:17 +00001937 get_git_dir(), sub->name);
Stefan Bellerda62f782018-03-28 15:35:31 -07001938 connect_work_tree_and_git_dir(path, gitdir, 0);
Stefan Bellerf2d48992017-04-18 14:37:24 -07001939 free(gitdir);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001940
1941 /* make sure the index is clean as well */
1942 submodule_reset_index(path);
1943 }
Stefan Bellerf2d48992017-04-18 14:37:24 -07001944
Brandon Williamsbc099912018-02-14 10:59:49 -08001945 if (old_head && (flags & SUBMODULE_MOVE_HEAD_FORCE)) {
Stefan Bellerf2d48992017-04-18 14:37:24 -07001946 char *gitdir = xstrfmt("%s/modules/%s",
Philippe Blaina9472af2020-01-21 15:01:17 +00001947 get_git_dir(), sub->name);
Stefan Bellerda62f782018-03-28 15:35:31 -07001948 connect_work_tree_and_git_dir(path, gitdir, 1);
Stefan Bellerf2d48992017-04-18 14:37:24 -07001949 free(gitdir);
1950 }
Stefan Beller6e3c1592017-03-14 14:46:37 -07001951 }
1952
Stefan Bellerda27bc82017-05-02 12:32:13 -07001953 prepare_submodule_repo_env(&cp.env_array);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001954
1955 cp.git_cmd = 1;
1956 cp.no_stdin = 1;
1957 cp.dir = path;
1958
Jeff Kingc972bf42020-07-28 16:25:12 -04001959 strvec_pushf(&cp.args, "--super-prefix=%s%s/",
Jeff Kingf6d89422020-07-28 16:26:31 -04001960 get_super_prefix_or_empty(), path);
Jeff Kingc972bf42020-07-28 16:25:12 -04001961 strvec_pushl(&cp.args, "read-tree", "--recurse-submodules", NULL);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001962
1963 if (flags & SUBMODULE_MOVE_HEAD_DRY_RUN)
Jeff Kingc972bf42020-07-28 16:25:12 -04001964 strvec_push(&cp.args, "-n");
Stefan Beller6e3c1592017-03-14 14:46:37 -07001965 else
Jeff Kingc972bf42020-07-28 16:25:12 -04001966 strvec_push(&cp.args, "-u");
Stefan Beller6e3c1592017-03-14 14:46:37 -07001967
1968 if (flags & SUBMODULE_MOVE_HEAD_FORCE)
Jeff Kingc972bf42020-07-28 16:25:12 -04001969 strvec_push(&cp.args, "--reset");
Stefan Beller6e3c1592017-03-14 14:46:37 -07001970 else
Jeff Kingc972bf42020-07-28 16:25:12 -04001971 strvec_push(&cp.args, "-m");
Stefan Beller6e3c1592017-03-14 14:46:37 -07001972
Stefan Beller7dcc1f42018-01-05 12:03:04 -08001973 if (!(flags & SUBMODULE_MOVE_HEAD_FORCE))
Jeff Kingc972bf42020-07-28 16:25:12 -04001974 strvec_push(&cp.args, old_head ? old_head : empty_tree_oid_hex());
Stefan Beller7dcc1f42018-01-05 12:03:04 -08001975
Jeff Kingc972bf42020-07-28 16:25:12 -04001976 strvec_push(&cp.args, new_head ? new_head : empty_tree_oid_hex());
Stefan Beller6e3c1592017-03-14 14:46:37 -07001977
1978 if (run_command(&cp)) {
Stefan Bellerba95d4e2018-06-20 15:32:53 -07001979 ret = error(_("Submodule '%s' could not be updated."), path);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001980 goto out;
1981 }
1982
1983 if (!(flags & SUBMODULE_MOVE_HEAD_DRY_RUN)) {
Brandon Williamsbc099912018-02-14 10:59:49 -08001984 if (new_head) {
Stefan Bellera17062c2017-05-02 12:32:12 -07001985 child_process_init(&cp);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001986 /* also set the HEAD accordingly */
Stefan Bellera17062c2017-05-02 12:32:12 -07001987 cp.git_cmd = 1;
1988 cp.no_stdin = 1;
1989 cp.dir = path;
Stefan Beller6e3c1592017-03-14 14:46:37 -07001990
Stefan Beller218c8832017-05-02 12:32:14 -07001991 prepare_submodule_repo_env(&cp.env_array);
Jeff Kingc972bf42020-07-28 16:25:12 -04001992 strvec_pushl(&cp.args, "update-ref", "HEAD",
Jeff Kingf6d89422020-07-28 16:26:31 -04001993 "--no-deref", new_head, NULL);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001994
Stefan Bellera17062c2017-05-02 12:32:12 -07001995 if (run_command(&cp)) {
Stefan Beller6e3c1592017-03-14 14:46:37 -07001996 ret = -1;
1997 goto out;
1998 }
1999 } else {
2000 struct strbuf sb = STRBUF_INIT;
2001
2002 strbuf_addf(&sb, "%s/.git", path);
2003 unlink_or_warn(sb.buf);
2004 strbuf_release(&sb);
2005
2006 if (is_empty_dir(path))
2007 rmdir_or_warn(path);
Stefan Beller898c2e62018-12-14 15:59:43 -08002008
2009 submodule_unset_core_worktree(sub);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002010 }
2011 }
2012out:
2013 return ret;
2014}
2015
Johannes Schindelina8dee3c2019-10-01 23:27:18 +02002016int validate_submodule_git_dir(char *git_dir, const char *submodule_name)
2017{
2018 size_t len = strlen(git_dir), suffix_len = strlen(submodule_name);
2019 char *p;
2020 int ret = 0;
2021
2022 if (len <= suffix_len || (p = git_dir + len - suffix_len)[-1] != '/' ||
2023 strcmp(p, submodule_name))
2024 BUG("submodule name '%s' not a suffix of git dir '%s'",
2025 submodule_name, git_dir);
2026
2027 /*
2028 * We prevent the contents of sibling submodules' git directories to
2029 * clash.
2030 *
2031 * Example: having a submodule named `hippo` and another one named
2032 * `hippo/hooks` would result in the git directories
2033 * `.git/modules/hippo/` and `.git/modules/hippo/hooks/`, respectively,
2034 * but the latter directory is already designated to contain the hooks
2035 * of the former.
2036 */
2037 for (; *p; p++) {
2038 if (is_dir_sep(*p)) {
2039 char c = *p;
2040
2041 *p = '\0';
2042 if (is_git_directory(git_dir))
2043 ret = -1;
2044 *p = c;
2045
2046 if (ret < 0)
2047 return error(_("submodule git dir '%s' is "
2048 "inside git dir '%.*s'"),
2049 git_dir,
2050 (int)(p - git_dir), git_dir);
2051 }
2052 }
2053
2054 return 0;
2055}
2056
Stefan Bellerf6f85862016-12-12 11:04:35 -08002057/*
2058 * Embeds a single submodules git directory into the superprojects git dir,
2059 * non recursively.
2060 */
Jeff Kingcf7a9012019-05-09 17:27:31 -04002061static void relocate_single_git_dir_into_superproject(const char *path)
Stefan Bellerf6f85862016-12-12 11:04:35 -08002062{
2063 char *old_git_dir = NULL, *real_old_git_dir = NULL, *real_new_git_dir = NULL;
Johannes Schindelina8dee3c2019-10-01 23:27:18 +02002064 char *new_git_dir;
Stefan Bellerf6f85862016-12-12 11:04:35 -08002065 const struct submodule *sub;
2066
2067 if (submodule_uses_worktrees(path))
2068 die(_("relocate_gitdir for submodule '%s' with "
2069 "more than one worktree not supported"), path);
2070
2071 old_git_dir = xstrfmt("%s/.git", path);
2072 if (read_gitfile(old_git_dir))
2073 /* If it is an actual gitfile, it doesn't need migration. */
2074 return;
2075
Johannes Schindelince83ead2017-03-08 16:43:40 +01002076 real_old_git_dir = real_pathdup(old_git_dir, 1);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002077
Stefan Beller3b8fb392018-03-28 15:35:29 -07002078 sub = submodule_from_path(the_repository, &null_oid, path);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002079 if (!sub)
2080 die(_("could not lookup name for submodule '%s'"), path);
2081
Johannes Schindelina8dee3c2019-10-01 23:27:18 +02002082 new_git_dir = git_pathdup("modules/%s", sub->name);
2083 if (validate_submodule_git_dir(new_git_dir, sub->name) < 0)
2084 die(_("refusing to move '%s' into an existing git dir"),
2085 real_old_git_dir);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002086 if (safe_create_leading_directories_const(new_git_dir) < 0)
2087 die(_("could not create directory '%s'"), new_git_dir);
Johannes Schindelince83ead2017-03-08 16:43:40 +01002088 real_new_git_dir = real_pathdup(new_git_dir, 1);
Johannes Schindelina8dee3c2019-10-01 23:27:18 +02002089 free(new_git_dir);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002090
Stefan Bellerf6f85862016-12-12 11:04:35 -08002091 fprintf(stderr, _("Migrating git directory of '%s%s' from\n'%s' to\n'%s'\n"),
Stefan Beller202275b2017-03-14 14:46:36 -07002092 get_super_prefix_or_empty(), path,
Stefan Bellerf6f85862016-12-12 11:04:35 -08002093 real_old_git_dir, real_new_git_dir);
2094
2095 relocate_gitdir(path, real_old_git_dir, real_new_git_dir);
2096
2097 free(old_git_dir);
2098 free(real_old_git_dir);
2099 free(real_new_git_dir);
2100}
2101
2102/*
2103 * Migrate the git directory of the submodule given by path from
2104 * having its git directory within the working tree to the git dir nested
2105 * in its superprojects git dir under modules/.
2106 */
Jeff Kingcf7a9012019-05-09 17:27:31 -04002107void absorb_git_dir_into_superproject(const char *path,
Stefan Bellerf6f85862016-12-12 11:04:35 -08002108 unsigned flags)
2109{
Stefan Bellerec9629b2017-01-25 15:04:50 -08002110 int err_code;
2111 const char *sub_git_dir;
Stefan Bellerf6f85862016-12-12 11:04:35 -08002112 struct strbuf gitdir = STRBUF_INIT;
Stefan Bellerf6f85862016-12-12 11:04:35 -08002113 strbuf_addf(&gitdir, "%s/.git", path);
Stefan Bellerec9629b2017-01-25 15:04:50 -08002114 sub_git_dir = resolve_gitdir_gently(gitdir.buf, &err_code);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002115
2116 /* Not populated? */
Stefan Bellerec9629b2017-01-25 15:04:50 -08002117 if (!sub_git_dir) {
Stefan Bellerec9629b2017-01-25 15:04:50 -08002118 const struct submodule *sub;
Stefan Bellerf6f85862016-12-12 11:04:35 -08002119
Stefan Bellerec9629b2017-01-25 15:04:50 -08002120 if (err_code == READ_GITFILE_ERR_STAT_FAILED) {
2121 /* unpopulated as expected */
2122 strbuf_release(&gitdir);
2123 return;
2124 }
2125
2126 if (err_code != READ_GITFILE_ERR_NOT_A_REPO)
2127 /* We don't know what broke here. */
2128 read_gitfile_error_die(err_code, path, NULL);
2129
2130 /*
2131 * Maybe populated, but no git directory was found?
2132 * This can happen if the superproject is a submodule
2133 * itself and was just absorbed. The absorption of the
2134 * superproject did not rewrite the git file links yet,
2135 * fix it now.
2136 */
Stefan Beller3b8fb392018-03-28 15:35:29 -07002137 sub = submodule_from_path(the_repository, &null_oid, path);
Stefan Bellerec9629b2017-01-25 15:04:50 -08002138 if (!sub)
2139 die(_("could not lookup name for submodule '%s'"), path);
Stefan Beller365444a2017-03-14 14:46:24 -07002140 connect_work_tree_and_git_dir(path,
Stefan Bellerda62f782018-03-28 15:35:31 -07002141 git_path("modules/%s", sub->name), 0);
Stefan Bellerec9629b2017-01-25 15:04:50 -08002142 } else {
2143 /* Is it already absorbed into the superprojects git dir? */
Johannes Schindelince83ead2017-03-08 16:43:40 +01002144 char *real_sub_git_dir = real_pathdup(sub_git_dir, 1);
2145 char *real_common_git_dir = real_pathdup(get_git_common_dir(), 1);
Stefan Bellerec9629b2017-01-25 15:04:50 -08002146
2147 if (!starts_with(real_sub_git_dir, real_common_git_dir))
Jeff Kingcf7a9012019-05-09 17:27:31 -04002148 relocate_single_git_dir_into_superproject(path);
Stefan Bellerec9629b2017-01-25 15:04:50 -08002149
2150 free(real_sub_git_dir);
2151 free(real_common_git_dir);
2152 }
2153 strbuf_release(&gitdir);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002154
2155 if (flags & ABSORB_GITDIR_RECURSE_SUBMODULES) {
2156 struct child_process cp = CHILD_PROCESS_INIT;
2157 struct strbuf sb = STRBUF_INIT;
2158
2159 if (flags & ~ABSORB_GITDIR_RECURSE_SUBMODULES)
Johannes Schindelin033abf92018-05-02 11:38:39 +02002160 BUG("we don't know how to pass the flags down?");
Stefan Bellerf6f85862016-12-12 11:04:35 -08002161
Stefan Beller202275b2017-03-14 14:46:36 -07002162 strbuf_addstr(&sb, get_super_prefix_or_empty());
Stefan Bellerf6f85862016-12-12 11:04:35 -08002163 strbuf_addstr(&sb, path);
2164 strbuf_addch(&sb, '/');
2165
2166 cp.dir = path;
2167 cp.git_cmd = 1;
2168 cp.no_stdin = 1;
Jeff Kingc972bf42020-07-28 16:25:12 -04002169 strvec_pushl(&cp.args, "--super-prefix", sb.buf,
Jeff Kingf6d89422020-07-28 16:26:31 -04002170 "submodule--helper",
2171 "absorb-git-dirs", NULL);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002172 prepare_submodule_repo_env(&cp.env_array);
2173 if (run_command(&cp))
2174 die(_("could not recurse into submodule '%s'"), path);
2175
2176 strbuf_release(&sb);
2177 }
Stefan Bellerf6f85862016-12-12 11:04:35 -08002178}
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002179
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002180int get_superproject_working_tree(struct strbuf *buf)
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002181{
2182 struct child_process cp = CHILD_PROCESS_INIT;
2183 struct strbuf sb = STRBUF_INIT;
Alexandr Miloslavskiy4530a852020-03-10 13:11:23 +00002184 struct strbuf one_up = STRBUF_INIT;
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002185 const char *cwd = xgetcwd();
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002186 int ret = 0;
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002187 const char *subpath;
2188 int code;
2189 ssize_t len;
2190
2191 if (!is_inside_work_tree())
2192 /*
2193 * FIXME:
2194 * We might have a superproject, but it is harder
2195 * to determine.
2196 */
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002197 return 0;
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002198
Alexandr Miloslavskiy4530a852020-03-10 13:11:23 +00002199 if (!strbuf_realpath(&one_up, "../", 0))
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002200 return 0;
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002201
Alexandr Miloslavskiy4530a852020-03-10 13:11:23 +00002202 subpath = relative_path(cwd, one_up.buf, &sb);
2203 strbuf_release(&one_up);
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002204
2205 prepare_submodule_repo_env(&cp.env_array);
Jeff Kingc972bf42020-07-28 16:25:12 -04002206 strvec_pop(&cp.env_array);
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002207
Jeff Kingc972bf42020-07-28 16:25:12 -04002208 strvec_pushl(&cp.args, "--literal-pathspecs", "-C", "..",
Jeff Kingf6d89422020-07-28 16:26:31 -04002209 "ls-files", "-z", "--stage", "--full-name", "--",
2210 subpath, NULL);
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002211 strbuf_reset(&sb);
2212
2213 cp.no_stdin = 1;
2214 cp.no_stderr = 1;
2215 cp.out = -1;
2216 cp.git_cmd = 1;
2217
2218 if (start_command(&cp))
2219 die(_("could not start ls-files in .."));
2220
2221 len = strbuf_read(&sb, cp.out, PATH_MAX);
2222 close(cp.out);
2223
2224 if (starts_with(sb.buf, "160000")) {
2225 int super_sub_len;
2226 int cwd_len = strlen(cwd);
2227 char *super_sub, *super_wt;
2228
2229 /*
2230 * There is a superproject having this repo as a submodule.
2231 * The format is <mode> SP <hash> SP <stage> TAB <full name> \0,
2232 * We're only interested in the name after the tab.
2233 */
2234 super_sub = strchr(sb.buf, '\t') + 1;
Sam McKelviec5cbb272018-09-27 11:10:54 -07002235 super_sub_len = strlen(super_sub);
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002236
2237 if (super_sub_len > cwd_len ||
2238 strcmp(&cwd[cwd_len - super_sub_len], super_sub))
Johannes Schindelinc3c34862018-05-02 11:38:41 +02002239 BUG("returned path string doesn't match cwd?");
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002240
2241 super_wt = xstrdup(cwd);
2242 super_wt[cwd_len - super_sub_len] = '\0';
2243
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002244 strbuf_realpath(buf, super_wt, 1);
2245 ret = 1;
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002246 free(super_wt);
2247 }
2248 strbuf_release(&sb);
2249
2250 code = finish_command(&cp);
2251
2252 if (code == 128)
2253 /* '../' is not a git repository */
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002254 return 0;
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002255 if (code == 0 && len == 0)
2256 /* There is an unrelated git repository at '../' */
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002257 return 0;
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002258 if (code)
2259 die(_("ls-tree returned unexpected return code %d"), code);
2260
2261 return ret;
2262}
Nguyễn Thái Ngọc Duybbbb7de2017-03-26 09:42:30 +07002263
Han-Wen Nienhuys3ce08542017-09-25 17:59:26 +02002264/*
2265 * Put the gitdir for a submodule (given relative to the main
2266 * repository worktree) into `buf`, or return -1 on error.
2267 */
Nguyễn Thái Ngọc Duybbbb7de2017-03-26 09:42:30 +07002268int submodule_to_gitdir(struct strbuf *buf, const char *submodule)
2269{
2270 const struct submodule *sub;
2271 const char *git_dir;
2272 int ret = 0;
2273
2274 strbuf_reset(buf);
2275 strbuf_addstr(buf, submodule);
2276 strbuf_complete(buf, '/');
2277 strbuf_addstr(buf, ".git");
2278
2279 git_dir = read_gitfile(buf->buf);
2280 if (git_dir) {
2281 strbuf_reset(buf);
2282 strbuf_addstr(buf, git_dir);
2283 }
2284 if (!is_git_directory(buf->buf)) {
Stefan Beller3b8fb392018-03-28 15:35:29 -07002285 sub = submodule_from_path(the_repository, &null_oid, submodule);
Nguyễn Thái Ngọc Duybbbb7de2017-03-26 09:42:30 +07002286 if (!sub) {
2287 ret = -1;
2288 goto cleanup;
2289 }
2290 strbuf_reset(buf);
2291 strbuf_git_path(buf, "%s/%s", "modules", sub->name);
2292 }
2293
2294cleanup:
2295 return ret;
2296}