blob: 2e78f5134964ffc60d94ee5d3a793a3624e214ba [file] [log] [blame]
Elijah Newrena6dc3d32023-03-21 06:25:53 +00001#include "cache.h"
Elijah Newren0b027f62023-03-21 06:25:58 +00002#include "abspath.h"
Elijah Newren36bf1952023-02-24 00:09:24 +00003#include "alloc.h"
Brandon Williams69aba532017-06-22 11:43:45 -07004#include "repository.h"
Brandon Williamsb2141fc2017-06-14 11:07:36 -07005#include "config.h"
Heiko Voigt851e18c2015-08-17 17:21:59 -07006#include "submodule-config.h"
Johannes Schindelin752c0c22009-10-19 14:38:32 +02007#include "submodule.h"
8#include "dir.h"
9#include "diff.h"
10#include "commit.h"
Elijah Newren32a8f512023-03-21 06:26:03 +000011#include "environment.h"
Elijah Newrenf394e092023-03-21 06:25:54 +000012#include "gettext.h"
Elijah Newren41771fa2023-02-24 00:09:27 +000013#include "hex.h"
Johannes Schindelin752c0c22009-10-19 14:38:32 +020014#include "revision.h"
Jens Lehmannee6fc512010-01-16 18:42:24 +010015#include "run-command.h"
Jens Lehmannc7e1a732010-03-04 22:20:33 +010016#include "diffcore.h"
Heiko Voigt68d03e42010-07-07 15:39:13 +020017#include "refs.h"
Jens Lehmannaee9c7d2010-08-06 00:39:25 +020018#include "string-list.h"
Jeff Kingfe299ec2020-03-30 10:03:46 -040019#include "oid-array.h"
Jeff Kingdbbcd442020-07-28 16:23:39 -040020#include "strvec.h"
Jens Lehmann5fee9952013-07-30 21:50:34 +020021#include "blob.h"
Stefan Bellerfe85ee62015-12-15 16:04:11 -080022#include "thread-utils.h"
Jeff King46387282016-04-28 09:38:20 -040023#include "quote.h"
Brandon Williams06bf4ad2017-04-05 10:47:19 -070024#include "remote.h"
Stefan Bellerf6f85862016-12-12 11:04:35 -080025#include "worktree.h"
Stefan Beller046b4822017-05-31 17:30:47 -070026#include "parse-options.h"
Elijah Newren87bed172023-04-11 00:41:53 -070027#include "object-file.h"
Elijah Newrendabab1d2023-04-11 00:41:49 -070028#include "object-name.h"
Stefan Beller0d4a1322018-03-23 18:20:56 +010029#include "object-store.h"
Derrick Stolee64043552018-07-20 16:33:04 +000030#include "commit-reach.h"
Elijah Newrene38da482023-03-21 06:26:05 +000031#include "setup.h"
Jonathan Tan2a69ff02022-03-17 11:24:47 -070032#include "shallow.h"
Elijah Newren74ea5c92023-04-11 03:00:38 +000033#include "trace2.h"
Jens Lehmannaee9c7d2010-08-06 00:39:25 +020034
Stefan Bellerd7a38032017-05-26 12:10:12 -070035static int config_update_recurse_submodules = RECURSE_SUBMODULES_OFF;
Jeff King6859de42011-09-12 15:56:52 -040036static int initialized_fetch_ref_tips;
brian m. carlson910650d2017-03-31 01:40:00 +000037static struct oid_array ref_tips_before_fetch;
38static struct oid_array ref_tips_after_fetch;
Jeff King6859de42011-09-12 15:56:52 -040039
Jens Lehmannd4e98b52011-05-14 18:26:58 +020040/*
Brandon Williams34e2ba02017-08-02 12:49:21 -070041 * Check if the .gitmodules file is unmerged. Parsing of the .gitmodules file
42 * will be disabled because we can't guess what might be configured in
43 * .gitmodules unless the user resolves the conflict.
Jens Lehmannd4e98b52011-05-14 18:26:58 +020044 */
Derrick Stolee847a9e52021-04-01 01:49:39 +000045int is_gitmodules_unmerged(struct index_state *istate)
Brandon Williams34e2ba02017-08-02 12:49:21 -070046{
47 int pos = index_name_pos(istate, GITMODULES_FILE, strlen(GITMODULES_FILE));
48 if (pos < 0) { /* .gitmodules not found or isn't merged */
49 pos = -1 - pos;
50 if (istate->cache_nr > pos) { /* there is a .gitmodules */
51 const struct cache_entry *ce = istate->cache[pos];
52 if (ce_namelen(ce) == strlen(GITMODULES_FILE) &&
53 !strcmp(ce->name, GITMODULES_FILE))
54 return 1;
55 }
56 }
57
58 return 0;
59}
Johannes Schindelin752c0c22009-10-19 14:38:32 +020060
Jens Lehmann5fee9952013-07-30 21:50:34 +020061/*
Antonio Ospiteb5c259f2018-10-05 15:05:59 +020062 * Check if the .gitmodules file is safe to write.
63 *
64 * Writing to the .gitmodules file requires that the file exists in the
65 * working tree or, if it doesn't, that a brand new .gitmodules file is going
66 * to be created (i.e. it's neither in the index nor in the current branch).
67 *
68 * It is not safe to write to .gitmodules if it's not in the working tree but
69 * it is in the index or in the current branch, because writing new values
70 * (and staging them) would blindly overwrite ALL the old content.
71 */
72int is_writing_gitmodules_ok(void)
73{
74 struct object_id oid;
75 return file_exists(GITMODULES_FILE) ||
Ævar Arnfjörð Bjarmasond850b7a2023-03-28 15:58:46 +020076 (repo_get_oid(the_repository, GITMODULES_INDEX, &oid) < 0 && repo_get_oid(the_repository, GITMODULES_HEAD, &oid) < 0);
Antonio Ospiteb5c259f2018-10-05 15:05:59 +020077}
78
79/*
Brandon Williams91b83482017-08-02 12:49:20 -070080 * Check if the .gitmodules file has unstaged modifications. This must be
81 * checked before allowing modifications to the .gitmodules file with the
82 * intention to stage them later, because when continuing we would stage the
83 * modifications the user didn't stage herself too. That might change in a
84 * future version when we learn to stage the changes we do ourselves without
85 * staging any previous modifications.
Jens Lehmann5fee9952013-07-30 21:50:34 +020086 */
Brandon Williams7da9aba2017-12-12 11:53:51 -080087int is_staging_gitmodules_ok(struct index_state *istate)
Jens Lehmann5fee9952013-07-30 21:50:34 +020088{
Brandon Williams91b83482017-08-02 12:49:20 -070089 int pos = index_name_pos(istate, GITMODULES_FILE, strlen(GITMODULES_FILE));
90
91 if ((pos >= 0) && (pos < istate->cache_nr)) {
92 struct stat st;
93 if (lstat(GITMODULES_FILE, &st) == 0 &&
David Turner7edee322020-01-27 13:58:56 -050094 ie_modified(istate, istate->cache[pos], &st, 0) & DATA_CHANGED)
Brandon Williams91b83482017-08-02 12:49:20 -070095 return 0;
96 }
97
98 return 1;
Jens Lehmann5fee9952013-07-30 21:50:34 +020099}
100
Nguyễn Thái Ngọc Duy2e2d4042017-08-23 19:36:57 +0700101static int for_each_remote_ref_submodule(const char *submodule,
102 each_ref_fn fn, void *cb_data)
103{
104 return refs_for_each_remote_ref(get_submodule_ref_store(submodule),
105 fn, cb_data);
106}
107
Jens Lehmann06567812013-08-06 21:15:11 +0200108/*
109 * Try to update the "path" entry in the "submodule.<name>" section of the
110 * .gitmodules file. Return 0 only if a .gitmodules file was found, a section
111 * with the correct path=<oldpath> setting was found and we could update it.
112 */
113int update_path_in_gitmodules(const char *oldpath, const char *newpath)
114{
115 struct strbuf entry = STRBUF_INIT;
Heiko Voigt851e18c2015-08-17 17:21:59 -0700116 const struct submodule *submodule;
Antonio Ospite45f5ef32018-10-05 15:05:53 +0200117 int ret;
Jens Lehmann06567812013-08-06 21:15:11 +0200118
Brandon Williams4c0eeaf2017-08-02 12:49:16 -0700119 if (!file_exists(GITMODULES_FILE)) /* Do nothing without .gitmodules */
Jens Lehmann06567812013-08-06 21:15:11 +0200120 return -1;
121
Nguyễn Thái Ngọc Duy68f08b42018-08-13 18:14:31 +0200122 if (is_gitmodules_unmerged(the_repository->index))
Jens Lehmann06567812013-08-06 21:15:11 +0200123 die(_("Cannot change unmerged .gitmodules, resolve merge conflicts first"));
124
brian m. carlson14228442021-04-26 01:02:56 +0000125 submodule = submodule_from_path(the_repository, null_oid(), oldpath);
Heiko Voigt851e18c2015-08-17 17:21:59 -0700126 if (!submodule || !submodule->name) {
Jens Lehmann06567812013-08-06 21:15:11 +0200127 warning(_("Could not find section in .gitmodules where path=%s"), oldpath);
128 return -1;
129 }
130 strbuf_addstr(&entry, "submodule.");
Heiko Voigt851e18c2015-08-17 17:21:59 -0700131 strbuf_addstr(&entry, submodule->name);
Jens Lehmann06567812013-08-06 21:15:11 +0200132 strbuf_addstr(&entry, ".path");
Antonio Ospite45f5ef32018-10-05 15:05:53 +0200133 ret = config_set_in_gitmodules_file_gently(entry.buf, newpath);
Jens Lehmann06567812013-08-06 21:15:11 +0200134 strbuf_release(&entry);
Antonio Ospite45f5ef32018-10-05 15:05:53 +0200135 return ret;
Jens Lehmann06567812013-08-06 21:15:11 +0200136}
137
Jens Lehmann95c16412013-08-06 21:15:25 +0200138/*
139 * Try to remove the "submodule.<name>" section from .gitmodules where the given
140 * path is configured. Return 0 only if a .gitmodules file was found, a section
141 * with the correct path=<path> setting was found and we could remove it.
142 */
143int remove_path_from_gitmodules(const char *path)
144{
145 struct strbuf sect = STRBUF_INIT;
Heiko Voigt851e18c2015-08-17 17:21:59 -0700146 const struct submodule *submodule;
Jens Lehmann95c16412013-08-06 21:15:25 +0200147
Brandon Williams4c0eeaf2017-08-02 12:49:16 -0700148 if (!file_exists(GITMODULES_FILE)) /* Do nothing without .gitmodules */
Jens Lehmann95c16412013-08-06 21:15:25 +0200149 return -1;
150
Nguyễn Thái Ngọc Duy68f08b42018-08-13 18:14:31 +0200151 if (is_gitmodules_unmerged(the_repository->index))
Jens Lehmann95c16412013-08-06 21:15:25 +0200152 die(_("Cannot change unmerged .gitmodules, resolve merge conflicts first"));
153
brian m. carlson14228442021-04-26 01:02:56 +0000154 submodule = submodule_from_path(the_repository, null_oid(), path);
Heiko Voigt851e18c2015-08-17 17:21:59 -0700155 if (!submodule || !submodule->name) {
Jens Lehmann95c16412013-08-06 21:15:25 +0200156 warning(_("Could not find section in .gitmodules where path=%s"), path);
157 return -1;
158 }
159 strbuf_addstr(&sect, "submodule.");
Heiko Voigt851e18c2015-08-17 17:21:59 -0700160 strbuf_addstr(&sect, submodule->name);
Brandon Williams4c0eeaf2017-08-02 12:49:16 -0700161 if (git_config_rename_section_in_file(GITMODULES_FILE, sect.buf, NULL) < 0) {
Jens Lehmann95c16412013-08-06 21:15:25 +0200162 /* Maybe the user already did that, don't error out here */
163 warning(_("Could not remove .gitmodules entry for %s"), path);
164 strbuf_release(&sect);
165 return -1;
166 }
167 strbuf_release(&sect);
168 return 0;
169}
170
Brandon Williams3b8317a2017-12-12 11:53:50 -0800171void stage_updated_gitmodules(struct index_state *istate)
Jens Lehmann5fee9952013-07-30 21:50:34 +0200172{
Brandon Williams3b8317a2017-12-12 11:53:50 -0800173 if (add_file_to_index(istate, GITMODULES_FILE, 0))
Jens Lehmann5fee9952013-07-30 21:50:34 +0200174 die(_("staging updated .gitmodules failed"));
175}
176
Jonathan Tana35e03d2021-08-16 14:09:51 -0700177static struct string_list added_submodule_odb_paths = STRING_LIST_INIT_NODUP;
178
Jonathan Tan8d33c3a2021-08-16 14:09:52 -0700179void add_submodule_odb_by_path(const char *path)
180{
181 string_list_insert(&added_submodule_odb_paths, xstrdup(path));
182}
183
Jonathan Tana35e03d2021-08-16 14:09:51 -0700184int register_all_submodule_odb_as_alternates(void)
185{
186 int i;
187 int ret = added_submodule_odb_paths.nr;
188
189 for (i = 0; i < added_submodule_odb_paths.nr; i++)
190 add_to_alternates_memory(added_submodule_odb_paths.items[i].string);
191 if (ret) {
192 string_list_clear(&added_submodule_odb_paths, 0);
Jonathan Tan71ef66d2021-10-08 14:08:20 -0700193 trace2_data_intmax("submodule", the_repository,
194 "register_all_submodule_odb_as_alternates/registered", ret);
Jonathan Tana35e03d2021-08-16 14:09:51 -0700195 if (git_env_bool("GIT_TEST_FATAL_REGISTER_SUBMODULE_ODB", 0))
196 BUG("register_all_submodule_odb_as_alternates() called");
197 }
198 return ret;
199}
200
Jens Lehmannaee9c7d2010-08-06 00:39:25 +0200201void set_diffopt_flags_from_submodule_config(struct diff_options *diffopt,
202 const char *path)
203{
Stefan Beller3b8fb392018-03-28 15:35:29 -0700204 const struct submodule *submodule = submodule_from_path(the_repository,
brian m. carlson14228442021-04-26 01:02:56 +0000205 null_oid(),
206 path);
Heiko Voigt851e18c2015-08-17 17:21:59 -0700207 if (submodule) {
Brandon Williamsfdfa9e92017-08-03 11:19:52 -0700208 const char *ignore;
209 char *key;
210
211 key = xstrfmt("submodule.%s.ignore", submodule->name);
Jeff Kingf1de9812020-08-14 12:17:36 -0400212 if (repo_config_get_string_tmp(the_repository, key, &ignore))
Brandon Williamsfdfa9e92017-08-03 11:19:52 -0700213 ignore = submodule->ignore;
214 free(key);
215
216 if (ignore)
217 handle_ignore_submodules_arg(diffopt, ignore);
Nguyễn Thái Ngọc Duy68f08b42018-08-13 18:14:31 +0200218 else if (is_gitmodules_unmerged(the_repository->index))
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700219 diffopt->flags.ignore_submodules = 1;
Jens Lehmannaee9c7d2010-08-06 00:39:25 +0200220 }
221}
222
Stefan Beller046b4822017-05-31 17:30:47 -0700223/* Cheap function that only determines if we're interested in submodules at all */
Jeff King783a86c2022-08-19 06:08:44 -0400224int git_default_submodule_config(const char *var, const char *value,
Ævar Arnfjörð Bjarmason5cf88fd2022-08-25 19:09:48 +0200225 void *cb UNUSED)
Stefan Beller046b4822017-05-31 17:30:47 -0700226{
227 if (!strcmp(var, "submodule.recurse")) {
228 int v = git_config_bool(var, value) ?
229 RECURSE_SUBMODULES_ON : RECURSE_SUBMODULES_OFF;
230 config_update_recurse_submodules = v;
231 }
232 return 0;
Stefan Beller1d789d02017-05-26 12:10:13 -0700233}
234
Stefan Bellerd7a38032017-05-26 12:10:12 -0700235int option_parse_recurse_submodules_worktree_updater(const struct option *opt,
236 const char *arg, int unset)
237{
238 if (unset) {
239 config_update_recurse_submodules = RECURSE_SUBMODULES_OFF;
240 return 0;
241 }
242 if (arg)
243 config_update_recurse_submodules =
244 parse_update_recurse_submodules_arg(opt->long_name,
245 arg);
246 else
247 config_update_recurse_submodules = RECURSE_SUBMODULES_ON;
248
249 return 0;
250}
251
Brandon Williams5688c282016-12-16 11:03:16 -0800252/*
Brandon Williamsf9f42562016-12-16 11:03:17 -0800253 * Determine if a submodule has been initialized at a given 'path'
254 */
Atharva Raykara4521282021-08-06 19:34:31 +0530255/*
256 * NEEDSWORK: Emit a warning if submodule.active exists, but is valueless,
257 * ie, the config looks like: "[submodule] active\n".
258 * Since that is an invalid pathspec, we should inform the user.
259 */
Glen Choo961b1302022-01-28 16:04:45 -0800260int is_tree_submodule_active(struct repository *repo,
261 const struct object_id *treeish_name,
262 const char *path)
Brandon Williamsf9f42562016-12-16 11:03:17 -0800263{
264 int ret = 0;
Brandon Williamsa086f922017-03-17 15:38:01 -0700265 char *key = NULL;
266 char *value = NULL;
267 const struct string_list *sl;
Brandon Williams627d9342017-06-22 11:43:46 -0700268 const struct submodule *module;
269
Glen Choo961b1302022-01-28 16:04:45 -0800270 module = submodule_from_path(repo, treeish_name, path);
Brandon Williamsf9f42562016-12-16 11:03:17 -0800271
Brandon Williamsa086f922017-03-17 15:38:01 -0700272 /* early return if there isn't a path->module mapping */
273 if (!module)
274 return 0;
Brandon Williamsf9f42562016-12-16 11:03:17 -0800275
Brandon Williamsa086f922017-03-17 15:38:01 -0700276 /* submodule.<name>.active is set */
277 key = xstrfmt("submodule.%s.active", module->name);
Brandon Williams627d9342017-06-22 11:43:46 -0700278 if (!repo_config_get_bool(repo, key, &ret)) {
Brandon Williamsf9f42562016-12-16 11:03:17 -0800279 free(key);
Brandon Williamsa086f922017-03-17 15:38:01 -0700280 return ret;
281 }
282 free(key);
283
284 /* submodule.active is set */
Ævar Arnfjörð Bjarmason9e2d8842023-03-28 16:04:27 +0200285 if (!repo_config_get_string_multi(repo, "submodule.active", &sl)) {
Brandon Williamsa086f922017-03-17 15:38:01 -0700286 struct pathspec ps;
Jeff Kingc972bf42020-07-28 16:25:12 -0400287 struct strvec args = STRVEC_INIT;
Brandon Williamsa086f922017-03-17 15:38:01 -0700288 const struct string_list_item *item;
289
290 for_each_string_list_item(item, sl) {
Jeff Kingc972bf42020-07-28 16:25:12 -0400291 strvec_push(&args, item->string);
Brandon Williamsa086f922017-03-17 15:38:01 -0700292 }
293
Jeff Kingd70a9eb2020-07-28 20:37:20 -0400294 parse_pathspec(&ps, 0, 0, NULL, args.v);
Nguyễn Thái Ngọc Duy68f08b42018-08-13 18:14:31 +0200295 ret = match_pathspec(repo->index, &ps, path, strlen(path), 0, NULL, 1);
Brandon Williamsa086f922017-03-17 15:38:01 -0700296
Jeff Kingc972bf42020-07-28 16:25:12 -0400297 strvec_clear(&args);
Brandon Williamsa086f922017-03-17 15:38:01 -0700298 clear_pathspec(&ps);
299 return ret;
Brandon Williamsf9f42562016-12-16 11:03:17 -0800300 }
301
Brandon Williamsa086f922017-03-17 15:38:01 -0700302 /* fallback to checking if the URL is set */
303 key = xstrfmt("submodule.%s.url", module->name);
Brandon Williams627d9342017-06-22 11:43:46 -0700304 ret = !repo_config_get_string(repo, key, &value);
Brandon Williamsa086f922017-03-17 15:38:01 -0700305
306 free(value);
307 free(key);
Brandon Williamsf9f42562016-12-16 11:03:17 -0800308 return ret;
309}
310
Glen Choo961b1302022-01-28 16:04:45 -0800311int is_submodule_active(struct repository *repo, const char *path)
312{
313 return is_tree_submodule_active(repo, null_oid(), path);
314}
315
Stefan Beller15cdc642017-03-14 14:46:31 -0700316int is_submodule_populated_gently(const char *path, int *return_error_code)
Brandon Williams5688c282016-12-16 11:03:16 -0800317{
318 int ret = 0;
319 char *gitdir = xstrfmt("%s/.git", path);
320
Stefan Beller15cdc642017-03-14 14:46:31 -0700321 if (resolve_gitdir_gently(gitdir, return_error_code))
Brandon Williams5688c282016-12-16 11:03:16 -0800322 ret = 1;
323
324 free(gitdir);
325 return ret;
326}
327
Brandon Williamsbdab9722017-05-09 12:17:59 -0700328/*
329 * Dies if the provided 'prefix' corresponds to an unpopulated submodule
330 */
Derrick Stolee847a9e52021-04-01 01:49:39 +0000331void die_in_unpopulated_submodule(struct index_state *istate,
Brandon Williamsbdab9722017-05-09 12:17:59 -0700332 const char *prefix)
333{
334 int i, prefixlen;
335
336 if (!prefix)
337 return;
338
339 prefixlen = strlen(prefix);
340
341 for (i = 0; i < istate->cache_nr; i++) {
342 struct cache_entry *ce = istate->cache[i];
343 int ce_len = ce_namelen(ce);
344
345 if (!S_ISGITLINK(ce->ce_mode))
346 continue;
347 if (prefixlen <= ce_len)
348 continue;
349 if (strncmp(ce->name, prefix, ce_len))
350 continue;
351 if (prefix[ce_len] != '/')
352 continue;
353
354 die(_("in unpopulated submodule '%s'"), ce->name);
355 }
356}
357
Brandon Williamsc08397e2017-05-11 15:04:24 -0700358/*
359 * Dies if any paths in the provided pathspec descends into a submodule
360 */
Derrick Stolee847a9e52021-04-01 01:49:39 +0000361void die_path_inside_submodule(struct index_state *istate,
Brandon Williamsc08397e2017-05-11 15:04:24 -0700362 const struct pathspec *ps)
363{
364 int i, j;
365
366 for (i = 0; i < istate->cache_nr; i++) {
367 struct cache_entry *ce = istate->cache[i];
368 int ce_len = ce_namelen(ce);
369
370 if (!S_ISGITLINK(ce->ce_mode))
371 continue;
372
373 for (j = 0; j < ps->nr ; j++) {
374 const struct pathspec_item *item = &ps->items[j];
375
376 if (item->len <= ce_len)
377 continue;
378 if (item->match[ce_len] != '/')
379 continue;
380 if (strncmp(ce->name, item->match, ce_len))
381 continue;
382 if (item->len == ce_len + 1)
383 continue;
384
385 die(_("Pathspec '%s' is in submodule '%.*s'"),
386 item->original, ce_len, ce->name);
387 }
388 }
389}
390
Brandon Williamsec6141a2017-08-03 11:19:50 -0700391enum submodule_update_type parse_submodule_update_type(const char *value)
392{
393 if (!strcmp(value, "none"))
394 return SM_UPDATE_NONE;
395 else if (!strcmp(value, "checkout"))
396 return SM_UPDATE_CHECKOUT;
397 else if (!strcmp(value, "rebase"))
398 return SM_UPDATE_REBASE;
399 else if (!strcmp(value, "merge"))
400 return SM_UPDATE_MERGE;
401 else if (*value == '!')
402 return SM_UPDATE_COMMAND;
403 else
404 return SM_UPDATE_UNSPECIFIED;
405}
406
Stefan Bellerea2fa5a2016-02-29 18:07:11 -0800407int parse_submodule_update_strategy(const char *value,
408 struct submodule_update_strategy *dst)
409{
Brandon Williamsec6141a2017-08-03 11:19:50 -0700410 enum submodule_update_type type;
411
Stefan Bellerea2fa5a2016-02-29 18:07:11 -0800412 free((void*)dst->command);
413 dst->command = NULL;
Brandon Williamsec6141a2017-08-03 11:19:50 -0700414
415 type = parse_submodule_update_type(value);
416 if (type == SM_UPDATE_UNSPECIFIED)
Stefan Bellerea2fa5a2016-02-29 18:07:11 -0800417 return -1;
Brandon Williamsec6141a2017-08-03 11:19:50 -0700418
419 dst->type = type;
420 if (type == SM_UPDATE_COMMAND)
421 dst->command = xstrdup(value + 1);
422
Stefan Bellerea2fa5a2016-02-29 18:07:11 -0800423 return 0;
424}
425
Ævar Arnfjörð Bjarmasonb9dd63f2022-09-01 01:18:05 +0200426const char *submodule_update_type_to_string(enum submodule_update_type type)
Stefan Beller36042422016-04-15 17:50:13 -0700427{
Ævar Arnfjörð Bjarmasonb9dd63f2022-09-01 01:18:05 +0200428 switch (type) {
Stefan Beller36042422016-04-15 17:50:13 -0700429 case SM_UPDATE_CHECKOUT:
430 return "checkout";
431 case SM_UPDATE_MERGE:
432 return "merge";
433 case SM_UPDATE_REBASE:
434 return "rebase";
435 case SM_UPDATE_NONE:
436 return "none";
437 case SM_UPDATE_UNSPECIFIED:
Stefan Beller36042422016-04-15 17:50:13 -0700438 case SM_UPDATE_COMMAND:
Ævar Arnfjörð Bjarmasonb9dd63f2022-09-01 01:18:05 +0200439 BUG("init_submodule() should handle type %d", type);
440 default:
441 BUG("unexpected update strategy type: %d", type);
Stefan Beller36042422016-04-15 17:50:13 -0700442 }
Stefan Beller36042422016-04-15 17:50:13 -0700443}
444
Jens Lehmann46a958b2010-06-25 16:56:47 +0200445void handle_ignore_submodules_arg(struct diff_options *diffopt,
446 const char *arg)
447{
Sangeeta Jain8ef93122020-11-10 14:09:00 +0530448 diffopt->flags.ignore_submodule_set = 1;
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700449 diffopt->flags.ignore_submodules = 0;
450 diffopt->flags.ignore_untracked_in_submodules = 0;
451 diffopt->flags.ignore_dirty_submodules = 0;
Johannes Schindelinbe4f2b42010-08-05 10:49:55 +0200452
Jens Lehmann46a958b2010-06-25 16:56:47 +0200453 if (!strcmp(arg, "all"))
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700454 diffopt->flags.ignore_submodules = 1;
Jens Lehmann46a958b2010-06-25 16:56:47 +0200455 else if (!strcmp(arg, "untracked"))
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700456 diffopt->flags.ignore_untracked_in_submodules = 1;
Jens Lehmann46a958b2010-06-25 16:56:47 +0200457 else if (!strcmp(arg, "dirty"))
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700458 diffopt->flags.ignore_dirty_submodules = 1;
Jens Lehmannaee9c7d2010-08-06 00:39:25 +0200459 else if (strcmp(arg, "none"))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +0100460 die(_("bad --ignore-submodules argument: %s"), arg);
Nguyễn Thái Ngọc Duy5a59a232019-02-16 18:24:41 +0700461 /*
462 * Please update _git_status() in git-completion.bash when you
463 * add new options
464 */
Jens Lehmann46a958b2010-06-25 16:56:47 +0200465}
466
Junio C Hamano4831c232020-09-18 17:58:05 -0700467static int prepare_submodule_diff_summary(struct repository *r, struct rev_info *rev,
468 const char *path,
469 struct commit *left, struct commit *right,
470 struct commit_list *merge_bases)
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500471{
Jacob Keller8e6df652016-08-31 16:27:24 -0700472 struct commit_list *list;
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500473
Michael Forney85a1ec22020-06-23 13:56:59 -0700474 repo_init_revisions(r, rev, NULL);
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500475 setup_revisions(0, NULL, rev, NULL);
476 rev->left_right = 1;
477 rev->first_parent_only = 1;
478 left->object.flags |= SYMMETRIC_LEFT;
479 add_pending_object(rev, &left->object, path);
480 add_pending_object(rev, &right->object, path);
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500481 for (list = merge_bases; list; list = list->next) {
482 list->item->object.flags |= UNINTERESTING;
483 add_pending_object(rev, &list->item->object,
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000484 oid_to_hex(&list->item->object.oid));
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500485 }
486 return prepare_revision_walk(rev);
487}
488
Shourya Shukla180b1542020-08-13 01:14:02 +0530489static void print_submodule_diff_summary(struct repository *r, struct rev_info *rev, struct diff_options *o)
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500490{
491 static const char format[] = " %m %s";
492 struct strbuf sb = STRBUF_INIT;
493 struct commit *commit;
494
495 while ((commit = get_revision(rev))) {
496 struct pretty_print_context ctx = {0};
497 ctx.date_mode = rev->date_mode;
Alexey Shumkinecaee802013-06-26 14:19:50 +0400498 ctx.output_encoding = get_log_output_encoding();
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500499 strbuf_setlen(&sb, 0);
Stefan Beller605f0ec2018-12-14 16:09:37 -0800500 repo_format_commit_message(r, commit, format, &sb,
501 &ctx);
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500502 strbuf_addch(&sb, '\n');
Stefan Bellerf3597132017-06-29 17:07:00 -0700503 if (commit->object.flags & SYMMETRIC_LEFT)
504 diff_emit_submodule_del(o, sb.buf);
505 else
506 diff_emit_submodule_add(o, sb.buf);
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500507 }
508 strbuf_release(&sb);
509}
510
Jeff Kingc972bf42020-07-28 16:25:12 -0400511void prepare_submodule_repo_env(struct strvec *out)
Stefan Beller6cd57572017-03-14 14:46:35 -0700512{
Jonathan Tand1fa9432021-06-17 10:13:25 -0700513 prepare_other_repo_env(out, DEFAULT_GIT_DIR_ENVIRONMENT);
Stefan Beller6cd57572017-03-14 14:46:35 -0700514}
515
Jeff Kingc972bf42020-07-28 16:25:12 -0400516static void prepare_submodule_repo_env_in_gitdir(struct strvec *out)
Stefan Bellera62387b2018-11-28 16:27:55 -0800517{
Jonathan Tand1fa9432021-06-17 10:13:25 -0700518 prepare_other_repo_env(out, ".");
Stefan Bellera62387b2018-11-28 16:27:55 -0800519}
520
Stefan Beller605f0ec2018-12-14 16:09:37 -0800521/*
522 * Initialize a repository struct for a submodule based on the provided 'path'.
523 *
Stefan Beller605f0ec2018-12-14 16:09:37 -0800524 * Returns the repository struct on success,
525 * NULL when the submodule is not present.
Jacob Keller8e6df652016-08-31 16:27:24 -0700526 */
Stefan Beller605f0ec2018-12-14 16:09:37 -0800527static struct repository *open_submodule(const char *path)
528{
529 struct strbuf sb = STRBUF_INIT;
530 struct repository *out = xmalloc(sizeof(*out));
531
532 if (submodule_to_gitdir(&sb, path) || repo_init(out, sb.buf, NULL)) {
533 strbuf_release(&sb);
534 free(out);
535 return NULL;
536 }
537
538 /* Mark it as a submodule */
539 out->submodule_prefix = xstrdup(path);
540
541 strbuf_release(&sb);
542 return out;
543}
544
545/*
546 * Helper function to display the submodule header line prior to the full
547 * summary output.
548 *
549 * If it can locate the submodule git directory it will create a repository
550 * handle for the submodule and lookup both the left and right commits and
551 * put them into the left and right pointers.
552 */
553static void show_submodule_header(struct diff_options *o,
554 const char *path,
Jacob Keller602a2832016-08-31 16:27:23 -0700555 struct object_id *one, struct object_id *two,
Stefan Bellerf3597132017-06-29 17:07:00 -0700556 unsigned dirty_submodule,
Stefan Beller605f0ec2018-12-14 16:09:37 -0800557 struct repository *sub,
Jacob Keller8e6df652016-08-31 16:27:24 -0700558 struct commit **left, struct commit **right,
559 struct commit_list **merge_bases)
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200560{
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200561 const char *message = NULL;
562 struct strbuf sb = STRBUF_INIT;
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200563 int fast_forward = 0, fast_backward = 0;
564
Jens Lehmannc7e1a732010-03-04 22:20:33 +0100565 if (dirty_submodule & DIRTY_SUBMODULE_UNTRACKED)
Stefan Bellerf3597132017-06-29 17:07:00 -0700566 diff_emit_submodule_untracked(o, path);
567
Jens Lehmannc7e1a732010-03-04 22:20:33 +0100568 if (dirty_submodule & DIRTY_SUBMODULE_MODIFIED)
Stefan Bellerf3597132017-06-29 17:07:00 -0700569 diff_emit_submodule_modified(o, path);
Jens Lehmannc7e1a732010-03-04 22:20:33 +0100570
Jacob Keller8e6df652016-08-31 16:27:24 -0700571 if (is_null_oid(one))
572 message = "(new submodule)";
573 else if (is_null_oid(two))
574 message = "(submodule deleted)";
575
Stefan Beller605f0ec2018-12-14 16:09:37 -0800576 if (!sub) {
Jacob Keller8e6df652016-08-31 16:27:24 -0700577 if (!message)
Stefan Beller2d94dd22017-09-26 11:27:56 -0700578 message = "(commits not present)";
Jacob Keller8e6df652016-08-31 16:27:24 -0700579 goto output_header;
580 }
581
582 /*
583 * Attempt to lookup the commit references, and determine if this is
584 * a fast forward or fast backwards update.
585 */
Stefan Beller605f0ec2018-12-14 16:09:37 -0800586 *left = lookup_commit_reference(sub, one);
587 *right = lookup_commit_reference(sub, two);
Jacob Keller8e6df652016-08-31 16:27:24 -0700588
589 /*
590 * Warn about missing commits in the submodule project, but only if
591 * they aren't null.
592 */
593 if ((!is_null_oid(one) && !*left) ||
594 (!is_null_oid(two) && !*right))
595 message = "(commits not present)";
596
Stefan Beller605f0ec2018-12-14 16:09:37 -0800597 *merge_bases = repo_get_merge_bases(sub, *left, *right);
Jacob Keller8e6df652016-08-31 16:27:24 -0700598 if (*merge_bases) {
599 if ((*merge_bases)->item == *left)
600 fast_forward = 1;
601 else if ((*merge_bases)->item == *right)
602 fast_backward = 1;
603 }
604
Jeff King4a7e27e2018-08-28 17:22:40 -0400605 if (oideq(one, two)) {
Jens Lehmannc7e1a732010-03-04 22:20:33 +0100606 strbuf_release(&sb);
607 return;
608 }
609
Jacob Keller8e6df652016-08-31 16:27:24 -0700610output_header:
Stefan Bellerf3597132017-06-29 17:07:00 -0700611 strbuf_addf(&sb, "Submodule %s ", path);
brian m. carlson30e677e2018-03-12 02:27:28 +0000612 strbuf_add_unique_abbrev(&sb, one, DEFAULT_ABBREV);
René Scharfea94bb682016-10-08 17:38:47 +0200613 strbuf_addstr(&sb, (fast_backward || fast_forward) ? ".." : "...");
brian m. carlson30e677e2018-03-12 02:27:28 +0000614 strbuf_add_unique_abbrev(&sb, two, DEFAULT_ABBREV);
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200615 if (message)
Stefan Bellerf3597132017-06-29 17:07:00 -0700616 strbuf_addf(&sb, " %s\n", message);
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200617 else
Stefan Bellerf3597132017-06-29 17:07:00 -0700618 strbuf_addf(&sb, "%s:\n", fast_backward ? " (rewind)" : "");
619 diff_emit_submodule_header(o, sb.buf);
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200620
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200621 strbuf_release(&sb);
622}
Jens Lehmannee6fc512010-01-16 18:42:24 +0100623
Shourya Shukla180b1542020-08-13 01:14:02 +0530624void show_submodule_diff_summary(struct diff_options *o, const char *path,
Jacob Keller8e6df652016-08-31 16:27:24 -0700625 struct object_id *one, struct object_id *two,
Stefan Bellerf3597132017-06-29 17:07:00 -0700626 unsigned dirty_submodule)
Jacob Keller8e6df652016-08-31 16:27:24 -0700627{
Ævar Arnfjörð Bjarmasonf196c1e2022-04-13 22:01:38 +0200628 struct rev_info rev = REV_INFO_INIT;
Jacob Keller8e6df652016-08-31 16:27:24 -0700629 struct commit *left = NULL, *right = NULL;
630 struct commit_list *merge_bases = NULL;
Stefan Beller605f0ec2018-12-14 16:09:37 -0800631 struct repository *sub;
Jacob Keller8e6df652016-08-31 16:27:24 -0700632
Stefan Beller605f0ec2018-12-14 16:09:37 -0800633 sub = open_submodule(path);
Stefan Bellerf3597132017-06-29 17:07:00 -0700634 show_submodule_header(o, path, one, two, dirty_submodule,
Stefan Beller605f0ec2018-12-14 16:09:37 -0800635 sub, &left, &right, &merge_bases);
Jacob Keller8e6df652016-08-31 16:27:24 -0700636
637 /*
638 * If we don't have both a left and a right pointer, there is no
639 * reason to try and display a summary. The header line should contain
640 * all the information the user needs.
641 */
Stefan Beller605f0ec2018-12-14 16:09:37 -0800642 if (!left || !right || !sub)
Jacob Keller8e6df652016-08-31 16:27:24 -0700643 goto out;
644
645 /* Treat revision walker failure the same as missing commits */
Junio C Hamano4831c232020-09-18 17:58:05 -0700646 if (prepare_submodule_diff_summary(sub, &rev, path, left, right, merge_bases)) {
Stefan Bellerf3597132017-06-29 17:07:00 -0700647 diff_emit_submodule_error(o, "(revision walker failed)\n");
Jacob Keller8e6df652016-08-31 16:27:24 -0700648 goto out;
649 }
650
Shourya Shukla180b1542020-08-13 01:14:02 +0530651 print_submodule_diff_summary(sub, &rev, o);
Jacob Keller8e6df652016-08-31 16:27:24 -0700652
653out:
Ævar Arnfjörð Bjarmasonbf20fe42022-04-13 22:01:34 +0200654 free_commit_list(merge_bases);
Ævar Arnfjörð Bjarmasonf196c1e2022-04-13 22:01:38 +0200655 release_revisions(&rev);
Jacob Keller8e6df652016-08-31 16:27:24 -0700656 clear_commit_marks(left, ~0);
657 clear_commit_marks(right, ~0);
Stefan Beller605f0ec2018-12-14 16:09:37 -0800658 if (sub) {
659 repo_clear(sub);
660 free(sub);
661 }
Jacob Keller8e6df652016-08-31 16:27:24 -0700662}
663
Stefan Bellerf3597132017-06-29 17:07:00 -0700664void show_submodule_inline_diff(struct diff_options *o, const char *path,
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700665 struct object_id *one, struct object_id *two,
Stefan Bellerf3597132017-06-29 17:07:00 -0700666 unsigned dirty_submodule)
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700667{
Brandon Williamsbc099912018-02-14 10:59:49 -0800668 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 -0700669 struct commit *left = NULL, *right = NULL;
670 struct commit_list *merge_bases = NULL;
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700671 struct child_process cp = CHILD_PROCESS_INIT;
Stefan Bellerf3597132017-06-29 17:07:00 -0700672 struct strbuf sb = STRBUF_INIT;
Stefan Beller605f0ec2018-12-14 16:09:37 -0800673 struct repository *sub;
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700674
Stefan Beller605f0ec2018-12-14 16:09:37 -0800675 sub = open_submodule(path);
Stefan Bellerf3597132017-06-29 17:07:00 -0700676 show_submodule_header(o, path, one, two, dirty_submodule,
Stefan Beller605f0ec2018-12-14 16:09:37 -0800677 sub, &left, &right, &merge_bases);
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700678
679 /* We need a valid left and right commit to display a difference */
680 if (!(left || is_null_oid(one)) ||
681 !(right || is_null_oid(two)))
682 goto done;
683
684 if (left)
Brandon Williamsbc099912018-02-14 10:59:49 -0800685 old_oid = one;
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700686 if (right)
Brandon Williamsbc099912018-02-14 10:59:49 -0800687 new_oid = two;
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700688
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700689 cp.git_cmd = 1;
690 cp.dir = path;
Stefan Bellerf3597132017-06-29 17:07:00 -0700691 cp.out = -1;
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700692 cp.no_stdin = 1;
693
694 /* TODO: other options may need to be passed here. */
Jeff Kingc972bf42020-07-28 16:25:12 -0400695 strvec_pushl(&cp.args, "diff", "--submodule=diff", NULL);
696 strvec_pushf(&cp.args, "--color=%s", want_color(o->use_color) ?
Stefan Bellerf3597132017-06-29 17:07:00 -0700697 "always" : "never");
Stefan Beller5a522142017-05-04 14:43:55 -0700698
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700699 if (o->flags.reverse_diff) {
Jeff Kingc972bf42020-07-28 16:25:12 -0400700 strvec_pushf(&cp.args, "--src-prefix=%s%s/",
Jeff Kingf6d89422020-07-28 16:26:31 -0400701 o->b_prefix, path);
Jeff Kingc972bf42020-07-28 16:25:12 -0400702 strvec_pushf(&cp.args, "--dst-prefix=%s%s/",
Jeff Kingf6d89422020-07-28 16:26:31 -0400703 o->a_prefix, path);
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700704 } else {
Jeff Kingc972bf42020-07-28 16:25:12 -0400705 strvec_pushf(&cp.args, "--src-prefix=%s%s/",
Jeff Kingf6d89422020-07-28 16:26:31 -0400706 o->a_prefix, path);
Jeff Kingc972bf42020-07-28 16:25:12 -0400707 strvec_pushf(&cp.args, "--dst-prefix=%s%s/",
Jeff Kingf6d89422020-07-28 16:26:31 -0400708 o->b_prefix, path);
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700709 }
Jeff Kingc972bf42020-07-28 16:25:12 -0400710 strvec_push(&cp.args, oid_to_hex(old_oid));
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700711 /*
712 * If the submodule has modified content, we will diff against the
713 * work tree, under the assumption that the user has asked for the
714 * diff format and wishes to actually see all differences even if they
715 * haven't yet been committed to the submodule yet.
716 */
717 if (!(dirty_submodule & DIRTY_SUBMODULE_MODIFIED))
Jeff Kingc972bf42020-07-28 16:25:12 -0400718 strvec_push(&cp.args, oid_to_hex(new_oid));
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700719
Ævar Arnfjörð Bjarmason29fda242022-06-02 11:09:50 +0200720 prepare_submodule_repo_env(&cp.env);
David Turnerf1c03682021-08-31 09:12:56 -0400721
722 if (!is_directory(path)) {
723 /* fall back to absorbed git dir, if any */
724 if (!sub)
725 goto done;
726 cp.dir = sub->gitdir;
Ævar Arnfjörð Bjarmason29fda242022-06-02 11:09:50 +0200727 strvec_push(&cp.env, GIT_DIR_ENVIRONMENT "=.");
728 strvec_push(&cp.env, GIT_WORK_TREE_ENVIRONMENT "=.");
David Turnerf1c03682021-08-31 09:12:56 -0400729 }
730
David Turner67f61ef2021-08-31 09:12:57 -0400731 if (start_command(&cp)) {
Stefan Bellerf3597132017-06-29 17:07:00 -0700732 diff_emit_submodule_error(o, "(diff failed)\n");
David Turner67f61ef2021-08-31 09:12:57 -0400733 goto done;
734 }
Stefan Bellerf3597132017-06-29 17:07:00 -0700735
736 while (strbuf_getwholeline_fd(&sb, cp.out, '\n') != EOF)
737 diff_emit_submodule_pipethrough(o, sb.buf, sb.len);
738
739 if (finish_command(&cp))
740 diff_emit_submodule_error(o, "(diff failed)\n");
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700741
742done:
Stefan Bellerf3597132017-06-29 17:07:00 -0700743 strbuf_release(&sb);
Ævar Arnfjörð Bjarmasonbf20fe42022-04-13 22:01:34 +0200744 free_commit_list(merge_bases);
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700745 if (left)
746 clear_commit_marks(left, ~0);
747 if (right)
748 clear_commit_marks(right, ~0);
Stefan Beller605f0ec2018-12-14 16:09:37 -0800749 if (sub) {
750 repo_clear(sub);
751 free(sub);
752 }
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700753}
754
Stefan Beller84f89252017-03-14 14:46:34 -0700755int should_update_submodules(void)
756{
757 return config_update_recurse_submodules == RECURSE_SUBMODULES_ON;
758}
759
760const struct submodule *submodule_from_ce(const struct cache_entry *ce)
761{
762 if (!S_ISGITLINK(ce->ce_mode))
763 return NULL;
764
765 if (!should_update_submodules())
766 return NULL;
767
brian m. carlson14228442021-04-26 01:02:56 +0000768 return submodule_from_path(the_repository, null_oid(), ce->name);
Stefan Beller84f89252017-03-14 14:46:34 -0700769}
770
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700771
Heiko Voigtc68f8372017-10-16 15:58:27 +0200772struct collect_changed_submodules_cb_data {
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200773 struct repository *repo;
Heiko Voigtc68f8372017-10-16 15:58:27 +0200774 struct string_list *changed;
775 const struct object_id *commit_oid;
776};
777
778/*
779 * this would normally be two functions: default_name_from_path() and
780 * path_from_default_name(). Since the default name is the same as
781 * the submodule path we can get away with just one function which only
782 * checks whether there is a submodule in the working directory at that
783 * location.
784 */
785static const char *default_name_or_path(const char *path_or_name)
786{
787 int error_code;
788
789 if (!is_submodule_populated_gently(path_or_name, &error_code))
790 return NULL;
791
792 return path_or_name;
793}
794
Glen Choo6e1e0c92022-03-07 16:14:29 -0800795/*
796 * Holds relevant information for a changed submodule. Used as the .util
Glen Choob90d9f72022-03-07 16:14:32 -0800797 * member of the changed submodule name string_list_item.
798 *
799 * (super_oid, path) allows the submodule config to be read from _some_
800 * .gitmodules file. We store this information the first time we find a
801 * superproject commit that points to the submodule, but this is
802 * arbitrary - we can choose any (super_oid, path) that matches the
803 * submodule's name.
804 *
805 * NEEDSWORK: Storing an arbitrary commit is undesirable because we can't
806 * guarantee that we're reading the commit that the user would expect. A better
807 * scheme would be to just fetch a submodule by its name. This requires two
808 * steps:
809 * - Create a function that behaves like repo_submodule_init(), but accepts a
810 * submodule name instead of treeish_name and path. This should be easy
811 * because repo_submodule_init() internally uses the submodule's name.
812 *
813 * - Replace most instances of 'struct submodule' (which is the .gitmodules
814 * config) with just the submodule name. This is OK because we expect
815 * submodule settings to be stored in .git/config (via "git submodule init"),
816 * not .gitmodules. This also lets us delete get_non_gitmodules_submodule(),
817 * which constructs a bogus 'struct submodule' for the sake of giving a
818 * placeholder name to a gitlink.
Glen Choo6e1e0c92022-03-07 16:14:29 -0800819 */
820struct changed_submodule_data {
Glen Choob90d9f72022-03-07 16:14:32 -0800821 /*
822 * The first superproject commit in the rev walk that points to
823 * the submodule.
824 */
825 const struct object_id *super_oid;
826 /*
827 * Path to the submodule in the superproject commit referenced
828 * by 'super_oid'.
829 */
830 char *path;
Glen Choo6e1e0c92022-03-07 16:14:29 -0800831 /* The submodule commits that have changed in the rev walk. */
832 struct oid_array new_commits;
833};
834
835static void changed_submodule_data_clear(struct changed_submodule_data *cs_data)
836{
837 oid_array_clear(&cs_data->new_commits);
Glen Choob90d9f72022-03-07 16:14:32 -0800838 free(cs_data->path);
Glen Choo6e1e0c92022-03-07 16:14:29 -0800839}
840
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700841static void collect_changed_submodules_cb(struct diff_queue_struct *q,
Jeff King61bdc7c2022-12-13 06:13:48 -0500842 struct diff_options *options UNUSED,
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700843 void *data)
844{
Heiko Voigtc68f8372017-10-16 15:58:27 +0200845 struct collect_changed_submodules_cb_data *me = data;
846 struct string_list *changed = me->changed;
847 const struct object_id *commit_oid = me->commit_oid;
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700848 int i;
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700849
850 for (i = 0; i < q->nr; i++) {
851 struct diff_filepair *p = q->queue[i];
Heiko Voigtc68f8372017-10-16 15:58:27 +0200852 const struct submodule *submodule;
853 const char *name;
Glen Choo1e5dd3a2022-03-07 16:14:28 -0800854 struct string_list_item *item;
Glen Choo6e1e0c92022-03-07 16:14:29 -0800855 struct changed_submodule_data *cs_data;
Heiko Voigtc68f8372017-10-16 15:58:27 +0200856
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700857 if (!S_ISGITLINK(p->two->mode))
858 continue;
859
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200860 submodule = submodule_from_path(me->repo,
Stefan Beller3b8fb392018-03-28 15:35:29 -0700861 commit_oid, p->two->path);
Heiko Voigtc68f8372017-10-16 15:58:27 +0200862 if (submodule)
863 name = submodule->name;
864 else {
865 name = default_name_or_path(p->two->path);
866 /* make sure name does not collide with existing one */
Stefan Beller5fc84752018-06-14 10:31:07 -0700867 if (name)
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200868 submodule = submodule_from_name(me->repo,
Stefan Beller5fc84752018-06-14 10:31:07 -0700869 commit_oid, name);
Heiko Voigtc68f8372017-10-16 15:58:27 +0200870 if (submodule) {
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +0100871 warning(_("Submodule in commit %s at path: "
Heiko Voigtc68f8372017-10-16 15:58:27 +0200872 "'%s' collides with a submodule named "
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +0100873 "the same. Skipping it."),
Stefan Beller5fc84752018-06-14 10:31:07 -0700874 oid_to_hex(commit_oid), p->two->path);
Heiko Voigtc68f8372017-10-16 15:58:27 +0200875 name = NULL;
876 }
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700877 }
Heiko Voigtc68f8372017-10-16 15:58:27 +0200878
879 if (!name)
880 continue;
881
Glen Choo1e5dd3a2022-03-07 16:14:28 -0800882 item = string_list_insert(changed, name);
Glen Choob90d9f72022-03-07 16:14:32 -0800883 if (item->util)
884 cs_data = item->util;
885 else {
Glen Choo6e1e0c92022-03-07 16:14:29 -0800886 item->util = xcalloc(1, sizeof(struct changed_submodule_data));
Glen Choob90d9f72022-03-07 16:14:32 -0800887 cs_data = item->util;
888 cs_data->super_oid = commit_oid;
889 cs_data->path = xstrdup(p->two->path);
890 }
Glen Choo6e1e0c92022-03-07 16:14:29 -0800891 oid_array_append(&cs_data->new_commits, &p->two->oid);
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700892 }
893}
894
895/*
896 * Collect the paths of submodules in 'changed' which have changed based on
897 * the revisions as specified in 'argv'. Each entry in 'changed' will also
898 * have a corresponding 'struct oid_array' (in the 'util' field) which lists
899 * what the submodule pointers were updated to during the change.
900 */
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200901static void collect_changed_submodules(struct repository *r,
Nguyễn Thái Ngọc Duy174d1312018-09-21 17:57:35 +0200902 struct string_list *changed,
Jeff Kingc972bf42020-07-28 16:25:12 -0400903 struct strvec *argv)
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700904{
905 struct rev_info rev;
906 const struct commit *commit;
Orgad Shaneha462bee2020-09-06 20:53:55 +0000907 int save_warning;
908 struct setup_revision_opt s_r_opt = {
909 .assume_dashdash = 1,
910 };
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700911
Orgad Shaneha462bee2020-09-06 20:53:55 +0000912 save_warning = warn_on_object_refname_ambiguity;
913 warn_on_object_refname_ambiguity = 0;
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200914 repo_init_revisions(r, &rev, NULL);
Orgad Shaneha462bee2020-09-06 20:53:55 +0000915 setup_revisions(argv->nr, argv->v, &rev, &s_r_opt);
916 warn_on_object_refname_ambiguity = save_warning;
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700917 if (prepare_revision_walk(&rev))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +0100918 die(_("revision walk setup failed"));
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700919
920 while ((commit = get_revision(&rev))) {
921 struct rev_info diff_rev;
Heiko Voigtc68f8372017-10-16 15:58:27 +0200922 struct collect_changed_submodules_cb_data data;
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200923 data.repo = r;
Heiko Voigtc68f8372017-10-16 15:58:27 +0200924 data.changed = changed;
925 data.commit_oid = &commit->object.oid;
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700926
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200927 repo_init_revisions(r, &diff_rev, NULL);
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700928 diff_rev.diffopt.output_format |= DIFF_FORMAT_CALLBACK;
929 diff_rev.diffopt.format_callback = collect_changed_submodules_cb;
Heiko Voigtc68f8372017-10-16 15:58:27 +0200930 diff_rev.diffopt.format_callback_data = &data;
Sergey Organovd01141d2020-09-29 14:31:22 +0300931 diff_rev.dense_combined_merges = 1;
932 diff_tree_combined_merge(commit, &diff_rev);
Ævar Arnfjörð Bjarmason2108fe42022-04-13 22:01:36 +0200933 release_revisions(&diff_rev);
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700934 }
935
936 reset_revision_walk();
Ævar Arnfjörð Bjarmason2108fe42022-04-13 22:01:36 +0200937 release_revisions(&rev);
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700938}
939
Glen Choo6e1e0c92022-03-07 16:14:29 -0800940static void free_submodules_data(struct string_list *submodules)
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700941{
942 struct string_list_item *item;
943 for_each_string_list_item(item, submodules)
Glen Choo6e1e0c92022-03-07 16:14:29 -0800944 changed_submodule_data_clear(item->util);
945
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700946 string_list_clear(submodules, 1);
947}
948
Ævar Arnfjörð Bjarmason5cf88fd2022-08-25 19:09:48 +0200949static int has_remote(const char *refname UNUSED,
950 const struct object_id *oid UNUSED,
951 int flags UNUSED, void *cb_data UNUSED)
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +0200952{
953 return 1;
954}
955
brian m. carlson1b7ba792017-03-31 01:39:59 +0000956static int append_oid_to_argv(const struct object_id *oid, void *data)
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +0200957{
Jeff Kingc972bf42020-07-28 16:25:12 -0400958 struct strvec *argv = data;
959 strvec_push(argv, oid_to_hex(oid));
Heiko Voigt9cfa1c22016-11-16 16:11:05 +0100960 return 0;
961}
962
Stefan Beller3c96aa92017-09-12 10:30:27 -0700963struct has_commit_data {
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200964 struct repository *repo;
Stefan Beller3c96aa92017-09-12 10:30:27 -0700965 int result;
966 const char *path;
Glen Choo7c2f8cc2022-03-07 16:14:27 -0800967 const struct object_id *super_oid;
Stefan Beller3c96aa92017-09-12 10:30:27 -0700968};
969
brian m. carlson1b7ba792017-03-31 01:39:59 +0000970static int check_has_commit(const struct object_id *oid, void *data)
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +0200971{
Stefan Beller3c96aa92017-09-12 10:30:27 -0700972 struct has_commit_data *cb = data;
Jonathan Tan13a2f622021-10-08 14:08:19 -0700973 struct repository subrepo;
974 enum object_type type;
Heiko Voigt5b6607d2016-11-16 16:11:06 +0100975
Glen Choo7c2f8cc2022-03-07 16:14:27 -0800976 if (repo_submodule_init(&subrepo, cb->repo, cb->path, cb->super_oid)) {
Jonathan Tan13a2f622021-10-08 14:08:19 -0700977 cb->result = 0;
Glen Choo5fff35d2022-03-07 16:14:33 -0800978 /* subrepo failed to init, so don't clean it up. */
979 return 0;
Jonathan Tan13a2f622021-10-08 14:08:19 -0700980 }
981
982 type = oid_object_info(&subrepo, oid, NULL);
Heiko Voigt5b6607d2016-11-16 16:11:06 +0100983
Stefan Beller3c96aa92017-09-12 10:30:27 -0700984 switch (type) {
985 case OBJ_COMMIT:
Jonathan Tan13a2f622021-10-08 14:08:19 -0700986 goto cleanup;
Stefan Beller3c96aa92017-09-12 10:30:27 -0700987 case OBJ_BAD:
988 /*
989 * Object is missing or invalid. If invalid, an error message
990 * has already been printed.
991 */
992 cb->result = 0;
Jonathan Tan13a2f622021-10-08 14:08:19 -0700993 goto cleanup;
Stefan Beller3c96aa92017-09-12 10:30:27 -0700994 default:
995 die(_("submodule entry '%s' (%s) is a %s, not a commit"),
Brandon Williamsdebca9d2018-02-14 10:59:24 -0800996 cb->path, oid_to_hex(oid), type_name(type));
Stefan Beller3c96aa92017-09-12 10:30:27 -0700997 }
Jonathan Tan13a2f622021-10-08 14:08:19 -0700998cleanup:
999 repo_clear(&subrepo);
1000 return 0;
Heiko Voigt5b6607d2016-11-16 16:11:06 +01001001}
1002
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001003static int submodule_has_commits(struct repository *r,
1004 const char *path,
Glen Choo7c2f8cc2022-03-07 16:14:27 -08001005 const struct object_id *super_oid,
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001006 struct oid_array *commits)
Heiko Voigt5b6607d2016-11-16 16:11:06 +01001007{
Glen Choo7c2f8cc2022-03-07 16:14:27 -08001008 struct has_commit_data has_commit = {
1009 .repo = r,
1010 .result = 1,
1011 .path = path,
1012 .super_oid = super_oid
1013 };
Heiko Voigt5b6607d2016-11-16 16:11:06 +01001014
brian m. carlson910650d2017-03-31 01:40:00 +00001015 oid_array_for_each_unique(commits, check_has_commit, &has_commit);
Brandon Williams7c8d2b02017-05-01 18:02:38 -07001016
Stefan Beller3c96aa92017-09-12 10:30:27 -07001017 if (has_commit.result) {
Brandon Williams7c8d2b02017-05-01 18:02:38 -07001018 /*
1019 * Even if the submodule is checked out and the commit is
1020 * present, make sure it exists in the submodule's object store
1021 * and that it is reachable from a ref.
1022 */
1023 struct child_process cp = CHILD_PROCESS_INIT;
1024 struct strbuf out = STRBUF_INIT;
1025
Jeff Kingc972bf42020-07-28 16:25:12 -04001026 strvec_pushl(&cp.args, "rev-list", "-n", "1", NULL);
Brandon Williams7c8d2b02017-05-01 18:02:38 -07001027 oid_array_for_each_unique(commits, append_oid_to_argv, &cp.args);
Jeff Kingc972bf42020-07-28 16:25:12 -04001028 strvec_pushl(&cp.args, "--not", "--all", NULL);
Brandon Williams7c8d2b02017-05-01 18:02:38 -07001029
Ævar Arnfjörð Bjarmason29fda242022-06-02 11:09:50 +02001030 prepare_submodule_repo_env(&cp.env);
Brandon Williams7c8d2b02017-05-01 18:02:38 -07001031 cp.git_cmd = 1;
1032 cp.no_stdin = 1;
1033 cp.dir = path;
1034
1035 if (capture_command(&cp, &out, GIT_MAX_HEXSZ + 1) || out.len)
Stefan Beller3c96aa92017-09-12 10:30:27 -07001036 has_commit.result = 0;
Brandon Williams7c8d2b02017-05-01 18:02:38 -07001037
1038 strbuf_release(&out);
1039 }
1040
Stefan Beller3c96aa92017-09-12 10:30:27 -07001041 return has_commit.result;
Heiko Voigt5b6607d2016-11-16 16:11:06 +01001042}
1043
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001044static int submodule_needs_pushing(struct repository *r,
1045 const char *path,
1046 struct oid_array *commits)
Heiko Voigt5b6607d2016-11-16 16:11:06 +01001047{
Glen Choo7c2f8cc2022-03-07 16:14:27 -08001048 if (!submodule_has_commits(r, path, null_oid(), commits))
Heiko Voigt250ab242016-11-16 16:11:07 +01001049 /*
1050 * NOTE: We do consider it safe to return "no" here. The
1051 * correct answer would be "We do not know" instead of
1052 * "No push needed", but it is quite hard to change
1053 * the submodule pointer without having the submodule
1054 * around. If a user did however change the submodules
1055 * without having the submodule around, this indicates
1056 * an expert who knows what they are doing or a
1057 * maintainer integrating work from other people. In
1058 * both cases it should be safe to skip this check.
1059 */
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001060 return 0;
1061
1062 if (for_each_remote_ref_submodule(path, has_remote, NULL) > 0) {
René Scharfed3180272014-08-19 21:09:35 +02001063 struct child_process cp = CHILD_PROCESS_INIT;
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001064 struct strbuf buf = STRBUF_INIT;
1065 int needs_pushing = 0;
1066
Jeff Kingc972bf42020-07-28 16:25:12 -04001067 strvec_push(&cp.args, "rev-list");
brian m. carlson910650d2017-03-31 01:40:00 +00001068 oid_array_for_each_unique(commits, append_oid_to_argv, &cp.args);
Jeff Kingc972bf42020-07-28 16:25:12 -04001069 strvec_pushl(&cp.args, "--not", "--remotes", "-n", "1" , NULL);
Heiko Voigt5b6607d2016-11-16 16:11:06 +01001070
Ævar Arnfjörð Bjarmason29fda242022-06-02 11:09:50 +02001071 prepare_submodule_repo_env(&cp.env);
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001072 cp.git_cmd = 1;
1073 cp.no_stdin = 1;
1074 cp.out = -1;
1075 cp.dir = path;
1076 if (start_command(&cp))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001077 die(_("Could not run 'git rev-list <commits> --not --remotes -n 1' command in submodule %s"),
Heiko Voigt5b6607d2016-11-16 16:11:06 +01001078 path);
brian m. carlsondb1ba2a2019-02-19 00:04:59 +00001079 if (strbuf_read(&buf, cp.out, the_hash_algo->hexsz + 1))
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001080 needs_pushing = 1;
1081 finish_command(&cp);
1082 close(cp.out);
1083 strbuf_release(&buf);
1084 return needs_pushing;
1085 }
1086
1087 return 0;
1088}
1089
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001090int find_unpushed_submodules(struct repository *r,
Nguyễn Thái Ngọc Duy174d1312018-09-21 17:57:35 +02001091 struct oid_array *commits,
1092 const char *remotes_name,
1093 struct string_list *needs_pushing)
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001094{
Heiko Voigt14739442016-11-16 16:11:04 +01001095 struct string_list submodules = STRING_LIST_INIT_DUP;
Heiko Voigtc68f8372017-10-16 15:58:27 +02001096 struct string_list_item *name;
Jeff Kingc972bf42020-07-28 16:25:12 -04001097 struct strvec argv = STRVEC_INIT;
Heiko Voigta762e512012-03-29 09:21:23 +02001098
Jeff Kingd70a9eb2020-07-28 20:37:20 -04001099 /* argv.v[0] will be ignored by setup_revisions */
Jeff Kingc972bf42020-07-28 16:25:12 -04001100 strvec_push(&argv, "find_unpushed_submodules");
brian m. carlson910650d2017-03-31 01:40:00 +00001101 oid_array_for_each_unique(commits, append_oid_to_argv, &argv);
Jeff Kingc972bf42020-07-28 16:25:12 -04001102 strvec_push(&argv, "--not");
1103 strvec_pushf(&argv, "--remotes=%s", remotes_name);
Heiko Voigt9cfa1c22016-11-16 16:11:05 +01001104
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001105 collect_changed_submodules(r, &submodules, &argv);
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001106
Heiko Voigtc68f8372017-10-16 15:58:27 +02001107 for_each_string_list_item(name, &submodules) {
Glen Choo6e1e0c92022-03-07 16:14:29 -08001108 struct changed_submodule_data *cs_data = name->util;
Heiko Voigtc68f8372017-10-16 15:58:27 +02001109 const struct submodule *submodule;
1110 const char *path = NULL;
1111
brian m. carlson14228442021-04-26 01:02:56 +00001112 submodule = submodule_from_name(r, null_oid(), name->string);
Heiko Voigtc68f8372017-10-16 15:58:27 +02001113 if (submodule)
1114 path = submodule->path;
1115 else
1116 path = default_name_or_path(name->string);
1117
1118 if (!path)
1119 continue;
Heiko Voigt5b6607d2016-11-16 16:11:06 +01001120
Glen Choo6e1e0c92022-03-07 16:14:29 -08001121 if (submodule_needs_pushing(r, path, &cs_data->new_commits))
Brandon Williamsaacc5c12017-05-01 18:02:39 -07001122 string_list_insert(needs_pushing, path);
Heiko Voigt14739442016-11-16 16:11:04 +01001123 }
Brandon Williams610b2332017-04-28 16:53:58 -07001124
Glen Choo6e1e0c92022-03-07 16:14:29 -08001125 free_submodules_data(&submodules);
Jeff Kingc972bf42020-07-28 16:25:12 -04001126 strvec_clear(&argv);
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001127
Heiko Voigta762e512012-03-29 09:21:23 +02001128 return needs_pushing->nr;
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001129}
1130
Brandon Williams2a905562017-04-05 10:47:16 -07001131static int push_submodule(const char *path,
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,
1135 int dry_run)
Heiko Voigteb21c732012-03-29 09:21:24 +02001136{
Heiko Voigteb21c732012-03-29 09:21:24 +02001137 if (for_each_remote_ref_submodule(path, has_remote, NULL) > 0) {
René Scharfed3180272014-08-19 21:09:35 +02001138 struct child_process cp = CHILD_PROCESS_INIT;
Jeff Kingc972bf42020-07-28 16:25:12 -04001139 strvec_push(&cp.args, "push");
Jonathan Tane62f7792022-11-14 13:37:12 -08001140 /*
1141 * When recursing into a submodule, treat any "only" configurations as "on-
1142 * demand", since "only" would not work (we need all submodules to be pushed
1143 * in order to be able to push the superproject).
1144 */
1145 strvec_push(&cp.args, "--recurse-submodules=only-is-on-demand");
Brandon Williams0301c822016-11-17 10:46:04 -08001146 if (dry_run)
Jeff Kingc972bf42020-07-28 16:25:12 -04001147 strvec_push(&cp.args, "--dry-run");
Heiko Voigteb21c732012-03-29 09:21:24 +02001148
Brandon Williams2a905562017-04-05 10:47:16 -07001149 if (push_options && push_options->nr) {
1150 const struct string_list_item *item;
1151 for_each_string_list_item(item, push_options)
Jeff Kingc972bf42020-07-28 16:25:12 -04001152 strvec_pushf(&cp.args, "--push-option=%s",
Jeff Kingf6d89422020-07-28 16:26:31 -04001153 item->string);
Brandon Williams2a905562017-04-05 10:47:16 -07001154 }
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001155
1156 if (remote->origin != REMOTE_UNCONFIGURED) {
1157 int i;
Jeff Kingc972bf42020-07-28 16:25:12 -04001158 strvec_push(&cp.args, remote->name);
Brandon Williams60fba4b2018-05-16 15:58:23 -07001159 for (i = 0; i < rs->raw_nr; i++)
Jeff Kingc972bf42020-07-28 16:25:12 -04001160 strvec_push(&cp.args, rs->raw[i]);
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001161 }
1162
Ævar Arnfjörð Bjarmason29fda242022-06-02 11:09:50 +02001163 prepare_submodule_repo_env(&cp.env);
Heiko Voigteb21c732012-03-29 09:21:24 +02001164 cp.git_cmd = 1;
1165 cp.no_stdin = 1;
1166 cp.dir = path;
1167 if (run_command(&cp))
1168 return 0;
1169 close(cp.out);
1170 }
1171
1172 return 1;
1173}
1174
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001175/*
1176 * Perform a check in the submodule to see if the remote and refspec work.
1177 * Die if the submodule can't be pushed.
1178 */
Brandon Williamsc7be7202017-07-20 10:40:37 -07001179static void submodule_push_check(const char *path, const char *head,
1180 const struct remote *remote,
Brandon Williams60fba4b2018-05-16 15:58:23 -07001181 const struct refspec *rs)
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001182{
1183 struct child_process cp = CHILD_PROCESS_INIT;
1184 int i;
1185
Jeff Kingc972bf42020-07-28 16:25:12 -04001186 strvec_push(&cp.args, "submodule--helper");
1187 strvec_push(&cp.args, "push-check");
1188 strvec_push(&cp.args, head);
1189 strvec_push(&cp.args, remote->name);
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001190
Brandon Williams60fba4b2018-05-16 15:58:23 -07001191 for (i = 0; i < rs->raw_nr; i++)
Jeff Kingc972bf42020-07-28 16:25:12 -04001192 strvec_push(&cp.args, rs->raw[i]);
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001193
Ævar Arnfjörð Bjarmason29fda242022-06-02 11:09:50 +02001194 prepare_submodule_repo_env(&cp.env);
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001195 cp.git_cmd = 1;
1196 cp.no_stdin = 1;
1197 cp.no_stdout = 1;
1198 cp.dir = path;
1199
1200 /*
1201 * Simply indicate if 'submodule--helper push-check' failed.
1202 * More detailed error information will be provided by the
1203 * child process.
1204 */
1205 if (run_command(&cp))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001206 die(_("process for submodule '%s' failed"), path);
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001207}
1208
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001209int push_unpushed_submodules(struct repository *r,
Nguyễn Thái Ngọc Duy174d1312018-09-21 17:57:35 +02001210 struct oid_array *commits,
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001211 const struct remote *remote,
Brandon Williams60fba4b2018-05-16 15:58:23 -07001212 const struct refspec *rs,
Brandon Williams2a905562017-04-05 10:47:16 -07001213 const struct string_list *push_options,
Brandon Williams0301c822016-11-17 10:46:04 -08001214 int dry_run)
Heiko Voigteb21c732012-03-29 09:21:24 +02001215{
1216 int i, ret = 1;
Tanay Abhraf93d7c62014-07-18 02:19:00 -07001217 struct string_list needs_pushing = STRING_LIST_INIT_DUP;
Heiko Voigteb21c732012-03-29 09:21:24 +02001218
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001219 if (!find_unpushed_submodules(r, commits,
Nguyễn Thái Ngọc Duy174d1312018-09-21 17:57:35 +02001220 remote->name, &needs_pushing))
Heiko Voigteb21c732012-03-29 09:21:24 +02001221 return 1;
1222
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001223 /*
1224 * Verify that the remote and refspec can be propagated to all
1225 * submodules. This check can be skipped if the remote and refspec
1226 * won't be propagated due to the remote being unconfigured (e.g. a URL
1227 * instead of a remote name).
1228 */
Brandon Williamsc7be7202017-07-20 10:40:37 -07001229 if (remote->origin != REMOTE_UNCONFIGURED) {
1230 char *head;
1231 struct object_id head_oid;
1232
brian m. carlson0f2dc722017-10-15 22:06:55 +00001233 head = resolve_refdup("HEAD", 0, &head_oid, NULL);
Brandon Williamsc7be7202017-07-20 10:40:37 -07001234 if (!head)
1235 die(_("Failed to resolve HEAD as a valid ref."));
1236
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001237 for (i = 0; i < needs_pushing.nr; i++)
1238 submodule_push_check(needs_pushing.items[i].string,
Brandon Williams60fba4b2018-05-16 15:58:23 -07001239 head, remote, rs);
Brandon Williamsc7be7202017-07-20 10:40:37 -07001240 free(head);
1241 }
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001242
1243 /* Actually push the submodules */
Heiko Voigteb21c732012-03-29 09:21:24 +02001244 for (i = 0; i < needs_pushing.nr; i++) {
1245 const char *path = needs_pushing.items[i].string;
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001246 fprintf(stderr, _("Pushing submodule '%s'\n"), path);
Brandon Williams60fba4b2018-05-16 15:58:23 -07001247 if (!push_submodule(path, remote, rs,
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001248 push_options, dry_run)) {
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001249 fprintf(stderr, _("Unable to push submodule '%s'\n"), path);
Heiko Voigteb21c732012-03-29 09:21:24 +02001250 ret = 0;
1251 }
1252 }
1253
1254 string_list_clear(&needs_pushing, 0);
1255
1256 return ret;
1257}
1258
Ævar Arnfjörð Bjarmason5cf88fd2022-08-25 19:09:48 +02001259static int append_oid_to_array(const char *ref UNUSED,
Jeff King63e14ee2022-08-19 06:08:32 -04001260 const struct object_id *oid,
Ævar Arnfjörð Bjarmason5cf88fd2022-08-25 19:09:48 +02001261 int flags UNUSED, void *data)
Jeff King6859de42011-09-12 15:56:52 -04001262{
Brandon Williams419fd782017-04-28 16:53:57 -07001263 struct oid_array *array = data;
1264 oid_array_append(array, oid);
Jeff King6859de42011-09-12 15:56:52 -04001265 return 0;
1266}
1267
brian m. carlson2eb80bc2017-03-26 16:01:35 +00001268void check_for_new_submodule_commits(struct object_id *oid)
Jens Lehmann88a21972011-03-06 23:10:46 +01001269{
Jeff King6859de42011-09-12 15:56:52 -04001270 if (!initialized_fetch_ref_tips) {
Brandon Williams419fd782017-04-28 16:53:57 -07001271 for_each_ref(append_oid_to_array, &ref_tips_before_fetch);
Jeff King6859de42011-09-12 15:56:52 -04001272 initialized_fetch_ref_tips = 1;
1273 }
1274
brian m. carlson910650d2017-03-31 01:40:00 +00001275 oid_array_append(&ref_tips_after_fetch, oid);
Jeff King6859de42011-09-12 15:56:52 -04001276}
1277
Glen Choob90d9f72022-03-07 16:14:32 -08001278/*
1279 * Returns 1 if there is at least one submodule gitdir in
1280 * $GIT_DIR/modules and 0 otherwise. This follows
1281 * submodule_name_to_gitdir(), which looks for submodules in
1282 * $GIT_DIR/modules, not $GIT_COMMON_DIR.
1283 *
1284 * A submodule can be moved to $GIT_DIR/modules manually by running "git
1285 * submodule absorbgitdirs", or it may be initialized there by "git
1286 * submodule update".
1287 */
1288static int repo_has_absorbed_submodules(struct repository *r)
1289{
1290 int ret;
1291 struct strbuf buf = STRBUF_INIT;
1292
1293 strbuf_repo_git_path(&buf, r, "modules/");
1294 ret = file_exists(buf.buf) && !is_empty_dir(buf.buf);
1295 strbuf_release(&buf);
1296 return ret;
1297}
1298
Stefan Beller16dd6fe2018-11-28 16:27:51 -08001299static void calculate_changed_submodule_paths(struct repository *r,
1300 struct string_list *changed_submodule_names)
Jeff King6859de42011-09-12 15:56:52 -04001301{
Jeff Kingc972bf42020-07-28 16:25:12 -04001302 struct strvec argv = STRVEC_INIT;
Stefan Bellerbcd73372018-11-28 16:27:52 -08001303 struct string_list_item *name;
Jens Lehmann88a21972011-03-06 23:10:46 +01001304
Glen Choob90d9f72022-03-07 16:14:32 -08001305 /* No need to check if no submodules would be fetched */
1306 if (!submodule_from_path(r, NULL, NULL) &&
1307 !repo_has_absorbed_submodules(r))
Jens Lehmann18322ba2011-09-09 20:22:03 +02001308 return;
1309
Jeff Kingc972bf42020-07-28 16:25:12 -04001310 strvec_push(&argv, "--"); /* argv[0] program name */
brian m. carlson910650d2017-03-31 01:40:00 +00001311 oid_array_for_each_unique(&ref_tips_after_fetch,
Brandon Williamsd1a84602017-04-28 16:53:59 -07001312 append_oid_to_argv, &argv);
Jeff Kingc972bf42020-07-28 16:25:12 -04001313 strvec_push(&argv, "--not");
brian m. carlson910650d2017-03-31 01:40:00 +00001314 oid_array_for_each_unique(&ref_tips_before_fetch,
Brandon Williamsd1a84602017-04-28 16:53:59 -07001315 append_oid_to_argv, &argv);
Jens Lehmann88a21972011-03-06 23:10:46 +01001316
1317 /*
1318 * Collect all submodules (whether checked out or not) for which new
Heiko Voigtc68f8372017-10-16 15:58:27 +02001319 * commits have been recorded upstream in "changed_submodule_names".
Jens Lehmann88a21972011-03-06 23:10:46 +01001320 */
Stefan Bellerbcd73372018-11-28 16:27:52 -08001321 collect_changed_submodules(r, changed_submodule_names, &argv);
Brandon Williamsaacc5c12017-05-01 18:02:39 -07001322
Stefan Bellerbcd73372018-11-28 16:27:52 -08001323 for_each_string_list_item(name, changed_submodule_names) {
Glen Choo6e1e0c92022-03-07 16:14:29 -08001324 struct changed_submodule_data *cs_data = name->util;
Heiko Voigtc68f8372017-10-16 15:58:27 +02001325 const struct submodule *submodule;
1326 const char *path = NULL;
1327
brian m. carlson14228442021-04-26 01:02:56 +00001328 submodule = submodule_from_name(r, null_oid(), name->string);
Heiko Voigtc68f8372017-10-16 15:58:27 +02001329 if (submodule)
1330 path = submodule->path;
1331 else
1332 path = default_name_or_path(name->string);
1333
1334 if (!path)
1335 continue;
Brandon Williamsaacc5c12017-05-01 18:02:39 -07001336
Glen Choo6e1e0c92022-03-07 16:14:29 -08001337 if (submodule_has_commits(r, path, null_oid(), &cs_data->new_commits)) {
1338 changed_submodule_data_clear(cs_data);
Stefan Bellerbcd73372018-11-28 16:27:52 -08001339 *name->string = '\0';
1340 }
Jens Lehmann88a21972011-03-06 23:10:46 +01001341 }
Jeff King6859de42011-09-12 15:56:52 -04001342
Stefan Bellerbcd73372018-11-28 16:27:52 -08001343 string_list_remove_empty_items(changed_submodule_names, 1);
1344
Jeff Kingc972bf42020-07-28 16:25:12 -04001345 strvec_clear(&argv);
brian m. carlson910650d2017-03-31 01:40:00 +00001346 oid_array_clear(&ref_tips_before_fetch);
1347 oid_array_clear(&ref_tips_after_fetch);
Jeff King6859de42011-09-12 15:56:52 -04001348 initialized_fetch_ref_tips = 0;
Jens Lehmann88a21972011-03-06 23:10:46 +01001349}
1350
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001351int submodule_touches_in_range(struct repository *r,
Nguyễn Thái Ngọc Duy174d1312018-09-21 17:57:35 +02001352 struct object_id *excl_oid,
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001353 struct object_id *incl_oid)
1354{
1355 struct string_list subs = STRING_LIST_INIT_DUP;
Jeff Kingc972bf42020-07-28 16:25:12 -04001356 struct strvec args = STRVEC_INIT;
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001357 int ret;
1358
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001359 /* No need to check if there are no submodules configured */
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001360 if (!submodule_from_path(r, NULL, NULL))
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001361 return 0;
1362
Jeff Kingc972bf42020-07-28 16:25:12 -04001363 strvec_push(&args, "--"); /* args[0] program name */
1364 strvec_push(&args, oid_to_hex(incl_oid));
Jonathan Tan4d36f882018-05-24 13:47:29 -07001365 if (!is_null_oid(excl_oid)) {
Jeff Kingc972bf42020-07-28 16:25:12 -04001366 strvec_push(&args, "--not");
1367 strvec_push(&args, oid_to_hex(excl_oid));
Jonathan Tan4d36f882018-05-24 13:47:29 -07001368 }
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001369
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001370 collect_changed_submodules(r, &subs, &args);
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001371 ret = subs.nr;
1372
Jeff Kingc972bf42020-07-28 16:25:12 -04001373 strvec_clear(&args);
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001374
Glen Choo6e1e0c92022-03-07 16:14:29 -08001375 free_submodules_data(&subs);
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001376 return ret;
1377}
1378
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001379struct submodule_parallel_fetch {
Glen Choob90d9f72022-03-07 16:14:32 -08001380 /*
1381 * The index of the last index entry processed by
1382 * get_fetch_task_from_index().
1383 */
1384 int index_count;
1385 /*
1386 * The index of the last string_list entry processed by
1387 * get_fetch_task_from_changed().
1388 */
1389 int changed_count;
Jeff Kingc972bf42020-07-28 16:25:12 -04001390 struct strvec args;
Brandon Williamse7241972017-12-12 11:53:52 -08001391 struct repository *r;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001392 const char *prefix;
1393 int command_line_option;
Brandon Williams8fa29152017-08-02 12:49:19 -07001394 int default_option;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001395 int quiet;
1396 int result;
Stefan Beller16dd6fe2018-11-28 16:27:51 -08001397
Glen Choob90d9f72022-03-07 16:14:32 -08001398 /*
1399 * Names of submodules that have new commits. Generated by
1400 * walking the newly fetched superproject commits.
1401 */
Stefan Beller16dd6fe2018-11-28 16:27:51 -08001402 struct string_list changed_submodule_names;
Glen Choob90d9f72022-03-07 16:14:32 -08001403 /*
1404 * Names of submodules that have already been processed. Lets us
1405 * avoid fetching the same submodule more than once.
1406 */
1407 struct string_list seen_submodule_names;
Stefan Bellerbe76c212018-12-06 13:26:55 -08001408
1409 /* Pending fetches by OIDs */
1410 struct fetch_task **oid_fetch_tasks;
1411 int oid_fetch_tasks_nr, oid_fetch_tasks_alloc;
Emily Shaffer02225402020-01-16 14:20:12 -08001412
1413 struct strbuf submodules_with_errors;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001414};
Ævar Arnfjörð Bjarmasonf69a6e42021-09-27 14:54:27 +02001415#define SPF_INIT { \
1416 .args = STRVEC_INIT, \
1417 .changed_submodule_names = STRING_LIST_INIT_DUP, \
Glen Choob90d9f72022-03-07 16:14:32 -08001418 .seen_submodule_names = STRING_LIST_INIT_DUP, \
Ævar Arnfjörð Bjarmasonf69a6e42021-09-27 14:54:27 +02001419 .submodules_with_errors = STRBUF_INIT, \
1420}
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001421
Heiko Voigt4b4aced2017-10-16 15:59:05 +02001422static int get_fetch_recurse_config(const struct submodule *submodule,
1423 struct submodule_parallel_fetch *spf)
1424{
1425 if (spf->command_line_option != RECURSE_SUBMODULES_DEFAULT)
1426 return spf->command_line_option;
1427
1428 if (submodule) {
1429 char *key;
1430 const char *value;
1431
1432 int fetch_recurse = submodule->fetch_recurse;
1433 key = xstrfmt("submodule.%s.fetchRecurseSubmodules", submodule->name);
Jeff Kingf1de9812020-08-14 12:17:36 -04001434 if (!repo_config_get_string_tmp(spf->r, key, &value)) {
Heiko Voigt4b4aced2017-10-16 15:59:05 +02001435 fetch_recurse = parse_fetch_recurse_submodules_arg(key, value);
1436 }
1437 free(key);
1438
1439 if (fetch_recurse != RECURSE_SUBMODULES_NONE)
1440 /* local config overrules everything except commandline */
1441 return fetch_recurse;
1442 }
1443
1444 return spf->default_option;
1445}
1446
Stefan Bellerbe76c212018-12-06 13:26:55 -08001447/*
1448 * Fetch in progress (if callback data) or
1449 * pending (if in oid_fetch_tasks in struct submodule_parallel_fetch)
1450 */
1451struct fetch_task {
1452 struct repository *repo;
1453 const struct submodule *sub;
1454 unsigned free_sub : 1; /* Do we need to free the submodule? */
Glen Choo73bc90d2022-03-07 16:14:30 -08001455 const char *default_argv; /* The default fetch mode. */
Glen Choob90d9f72022-03-07 16:14:32 -08001456 struct strvec git_args; /* Args for the child git process. */
Stefan Bellerbe76c212018-12-06 13:26:55 -08001457
1458 struct oid_array *commits; /* Ensure these commits are fetched */
1459};
1460
1461/**
1462 * When a submodule is not defined in .gitmodules, we cannot access it
1463 * via the regular submodule-config. Create a fake submodule, which we can
1464 * work on.
1465 */
1466static const struct submodule *get_non_gitmodules_submodule(const char *path)
1467{
1468 struct submodule *ret = NULL;
1469 const char *name = default_name_or_path(path);
1470
1471 if (!name)
1472 return NULL;
1473
1474 ret = xmalloc(sizeof(*ret));
1475 memset(ret, 0, sizeof(*ret));
1476 ret->path = name;
1477 ret->name = name;
1478
1479 return (const struct submodule *) ret;
1480}
1481
Stefan Bellerbe76c212018-12-06 13:26:55 -08001482static void fetch_task_release(struct fetch_task *p)
1483{
1484 if (p->free_sub)
1485 free((void*)p->sub);
1486 p->free_sub = 0;
1487 p->sub = NULL;
1488
1489 if (p->repo)
1490 repo_clear(p->repo);
1491 FREE_AND_NULL(p->repo);
Glen Choob90d9f72022-03-07 16:14:32 -08001492
1493 strvec_clear(&p->git_args);
Stefan Bellerbe76c212018-12-06 13:26:55 -08001494}
1495
Stefan Beller26f80cc2018-11-28 16:27:54 -08001496static struct repository *get_submodule_repo_for(struct repository *r,
Glen Choo7c2f8cc2022-03-07 16:14:27 -08001497 const char *path,
1498 const struct object_id *treeish_name)
Stefan Beller26f80cc2018-11-28 16:27:54 -08001499{
1500 struct repository *ret = xmalloc(sizeof(*ret));
1501
Glen Choo7c2f8cc2022-03-07 16:14:27 -08001502 if (repo_submodule_init(ret, r, path, treeish_name)) {
Jonathan Tan5df51062021-09-09 11:47:27 -07001503 free(ret);
1504 return NULL;
Stefan Beller26f80cc2018-11-28 16:27:54 -08001505 }
1506
1507 return ret;
1508}
1509
Glen Choo5370b912022-03-07 16:14:31 -08001510static struct fetch_task *fetch_task_create(struct submodule_parallel_fetch *spf,
1511 const char *path,
1512 const struct object_id *treeish_name)
1513{
1514 struct fetch_task *task = xmalloc(sizeof(*task));
1515 memset(task, 0, sizeof(*task));
1516
1517 task->sub = submodule_from_path(spf->r, treeish_name, path);
1518
1519 if (!task->sub) {
1520 /*
1521 * No entry in .gitmodules? Technically not a submodule,
1522 * but historically we supported repositories that happen to be
1523 * in-place where a gitlink is. Keep supporting them.
1524 */
1525 task->sub = get_non_gitmodules_submodule(path);
1526 if (!task->sub)
1527 goto cleanup;
1528
1529 task->free_sub = 1;
1530 }
1531
Glen Choob90d9f72022-03-07 16:14:32 -08001532 if (string_list_lookup(&spf->seen_submodule_names, task->sub->name))
1533 goto cleanup;
1534
Glen Choo5370b912022-03-07 16:14:31 -08001535 switch (get_fetch_recurse_config(task->sub, spf))
1536 {
1537 default:
1538 case RECURSE_SUBMODULES_DEFAULT:
1539 case RECURSE_SUBMODULES_ON_DEMAND:
1540 if (!task->sub ||
1541 !string_list_lookup(
1542 &spf->changed_submodule_names,
1543 task->sub->name))
1544 goto cleanup;
1545 task->default_argv = "on-demand";
1546 break;
1547 case RECURSE_SUBMODULES_ON:
1548 task->default_argv = "yes";
1549 break;
1550 case RECURSE_SUBMODULES_OFF:
1551 goto cleanup;
1552 }
1553
1554 task->repo = get_submodule_repo_for(spf->r, path, treeish_name);
1555
1556 return task;
1557
1558 cleanup:
1559 fetch_task_release(task);
1560 free(task);
1561 return NULL;
1562}
1563
Glen Choo73bc90d2022-03-07 16:14:30 -08001564static struct fetch_task *
Glen Choob90d9f72022-03-07 16:14:32 -08001565get_fetch_task_from_index(struct submodule_parallel_fetch *spf,
1566 struct strbuf *err)
Jens Lehmann7dce19d2010-11-12 13:54:52 +01001567{
Glen Choob90d9f72022-03-07 16:14:32 -08001568 for (; spf->index_count < spf->r->index->cache_nr; spf->index_count++) {
1569 const struct cache_entry *ce =
1570 spf->r->index->cache[spf->index_count];
Stefan Bellerbe76c212018-12-06 13:26:55 -08001571 struct fetch_task *task;
Jens Lehmann7dce19d2010-11-12 13:54:52 +01001572
1573 if (!S_ISGITLINK(ce->ce_mode))
1574 continue;
1575
Glen Choo5370b912022-03-07 16:14:31 -08001576 task = fetch_task_create(spf, ce->name, null_oid());
Stefan Bellerbe76c212018-12-06 13:26:55 -08001577 if (!task)
1578 continue;
Brandon Williams492c6c42017-08-03 11:19:51 -07001579
Stefan Bellerbe76c212018-12-06 13:26:55 -08001580 if (task->repo) {
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001581 if (!spf->quiet)
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001582 strbuf_addf(err, _("Fetching submodule %s%s\n"),
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001583 spf->prefix, ce->name);
Stefan Beller26f80cc2018-11-28 16:27:54 -08001584
Glen Choob90d9f72022-03-07 16:14:32 -08001585 spf->index_count++;
Glen Choo73bc90d2022-03-07 16:14:30 -08001586 return task;
Stefan Beller26f80cc2018-11-28 16:27:54 -08001587 } else {
Peter Kaestle505a2762020-12-09 11:58:44 +01001588 struct strbuf empty_submodule_path = STRBUF_INIT;
Stefan Bellerbe76c212018-12-06 13:26:55 -08001589
1590 fetch_task_release(task);
1591 free(task);
1592
Stefan Beller26f80cc2018-11-28 16:27:54 -08001593 /*
1594 * An empty directory is normal,
1595 * the submodule is not initialized
1596 */
Peter Kaestle505a2762020-12-09 11:58:44 +01001597 strbuf_addf(&empty_submodule_path, "%s/%s/",
1598 spf->r->worktree,
1599 ce->name);
Stefan Beller26f80cc2018-11-28 16:27:54 -08001600 if (S_ISGITLINK(ce->ce_mode) &&
Peter Kaestle505a2762020-12-09 11:58:44 +01001601 !is_empty_dir(empty_submodule_path.buf)) {
Stefan Beller26f80cc2018-11-28 16:27:54 -08001602 spf->result = 1;
1603 strbuf_addf(err,
Emily Shaffer303b3c12020-02-06 16:48:33 -08001604 _("Could not access submodule '%s'\n"),
Stefan Beller26f80cc2018-11-28 16:27:54 -08001605 ce->name);
1606 }
Peter Kaestle505a2762020-12-09 11:58:44 +01001607 strbuf_release(&empty_submodule_path);
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001608 }
Jens Lehmann7dce19d2010-11-12 13:54:52 +01001609 }
Glen Choo73bc90d2022-03-07 16:14:30 -08001610 return NULL;
1611}
1612
Glen Choob90d9f72022-03-07 16:14:32 -08001613static struct fetch_task *
1614get_fetch_task_from_changed(struct submodule_parallel_fetch *spf,
1615 struct strbuf *err)
1616{
1617 for (; spf->changed_count < spf->changed_submodule_names.nr;
1618 spf->changed_count++) {
1619 struct string_list_item item =
1620 spf->changed_submodule_names.items[spf->changed_count];
1621 struct changed_submodule_data *cs_data = item.util;
1622 struct fetch_task *task;
1623
1624 if (!is_tree_submodule_active(spf->r, cs_data->super_oid,cs_data->path))
1625 continue;
1626
1627 task = fetch_task_create(spf, cs_data->path,
1628 cs_data->super_oid);
1629 if (!task)
1630 continue;
1631
1632 if (!task->repo) {
1633 strbuf_addf(err, _("Could not access submodule '%s' at commit %s\n"),
1634 cs_data->path,
Ævar Arnfjörð Bjarmasond850b7a2023-03-28 15:58:46 +02001635 repo_find_unique_abbrev(the_repository, cs_data->super_oid, DEFAULT_ABBREV));
Glen Choob90d9f72022-03-07 16:14:32 -08001636
1637 fetch_task_release(task);
1638 free(task);
1639 continue;
1640 }
1641
1642 if (!spf->quiet)
1643 strbuf_addf(err,
1644 _("Fetching submodule %s%s at commit %s\n"),
1645 spf->prefix, task->sub->path,
Ævar Arnfjörð Bjarmasond850b7a2023-03-28 15:58:46 +02001646 repo_find_unique_abbrev(the_repository, cs_data->super_oid,
1647 DEFAULT_ABBREV));
Glen Choob90d9f72022-03-07 16:14:32 -08001648
1649 spf->changed_count++;
1650 /*
1651 * NEEDSWORK: Submodules set/unset a value for
1652 * core.worktree when they are populated/unpopulated by
1653 * "git checkout" (and similar commands, see
1654 * submodule_move_head() and
1655 * connect_work_tree_and_git_dir()), but if the
1656 * submodule is unpopulated in another way (e.g. "git
1657 * rm", "rm -r"), core.worktree will still be set even
1658 * though the directory doesn't exist, and the child
1659 * process will crash while trying to chdir into the
1660 * nonexistent directory.
1661 *
1662 * In this case, we know that the submodule has no
1663 * working tree, so we can work around this by
1664 * setting "--work-tree=." (--bare does not work because
1665 * worktree settings take precedence over bare-ness).
1666 * However, this is not necessarily true in other cases,
1667 * so a generalized solution is still necessary.
1668 *
1669 * Possible solutions:
1670 * - teach "git [add|rm]" to unset core.worktree and
1671 * discourage users from removing submodules without
1672 * using a Git command.
1673 * - teach submodule child processes to ignore stale
1674 * core.worktree values.
1675 */
1676 strvec_push(&task->git_args, "--work-tree=.");
1677 return task;
1678 }
1679 return NULL;
1680}
1681
Glen Choo73bc90d2022-03-07 16:14:30 -08001682static int get_next_submodule(struct child_process *cp, struct strbuf *err,
1683 void *data, void **task_cb)
1684{
1685 struct submodule_parallel_fetch *spf = data;
Glen Choob90d9f72022-03-07 16:14:32 -08001686 struct fetch_task *task =
1687 get_fetch_task_from_index(spf, err);
1688 if (!task)
1689 task = get_fetch_task_from_changed(spf, err);
Glen Choo73bc90d2022-03-07 16:14:30 -08001690
1691 if (task) {
1692 struct strbuf submodule_prefix = STRBUF_INIT;
1693
1694 child_process_init(cp);
1695 cp->dir = task->repo->gitdir;
Ævar Arnfjörð Bjarmason29fda242022-06-02 11:09:50 +02001696 prepare_submodule_repo_env_in_gitdir(&cp->env);
Glen Choo73bc90d2022-03-07 16:14:30 -08001697 cp->git_cmd = 1;
1698 strvec_init(&cp->args);
Glen Choob90d9f72022-03-07 16:14:32 -08001699 if (task->git_args.nr)
1700 strvec_pushv(&cp->args, task->git_args.v);
Glen Choo73bc90d2022-03-07 16:14:30 -08001701 strvec_pushv(&cp->args, spf->args.v);
1702 strvec_push(&cp->args, task->default_argv);
1703 strvec_push(&cp->args, "--submodule-prefix");
1704
1705 strbuf_addf(&submodule_prefix, "%s%s/",
1706 spf->prefix,
1707 task->sub->path);
1708 strvec_push(&cp->args, submodule_prefix.buf);
1709 *task_cb = task;
1710
1711 strbuf_release(&submodule_prefix);
Glen Choob90d9f72022-03-07 16:14:32 -08001712 string_list_insert(&spf->seen_submodule_names, task->sub->name);
Glen Choo73bc90d2022-03-07 16:14:30 -08001713 return 1;
1714 }
Stefan Bellerbe76c212018-12-06 13:26:55 -08001715
1716 if (spf->oid_fetch_tasks_nr) {
1717 struct fetch_task *task =
1718 spf->oid_fetch_tasks[spf->oid_fetch_tasks_nr - 1];
1719 struct strbuf submodule_prefix = STRBUF_INIT;
1720 spf->oid_fetch_tasks_nr--;
1721
1722 strbuf_addf(&submodule_prefix, "%s%s/",
1723 spf->prefix, task->sub->path);
1724
1725 child_process_init(cp);
Ævar Arnfjörð Bjarmason29fda242022-06-02 11:09:50 +02001726 prepare_submodule_repo_env_in_gitdir(&cp->env);
Stefan Bellerbe76c212018-12-06 13:26:55 -08001727 cp->git_cmd = 1;
1728 cp->dir = task->repo->gitdir;
1729
Jeff Kingc972bf42020-07-28 16:25:12 -04001730 strvec_init(&cp->args);
Jeff Kingd70a9eb2020-07-28 20:37:20 -04001731 strvec_pushv(&cp->args, spf->args.v);
Jeff Kingc972bf42020-07-28 16:25:12 -04001732 strvec_push(&cp->args, "on-demand");
1733 strvec_push(&cp->args, "--submodule-prefix");
1734 strvec_push(&cp->args, submodule_prefix.buf);
Stefan Bellerbe76c212018-12-06 13:26:55 -08001735
1736 /* NEEDSWORK: have get_default_remote from submodule--helper */
Jeff Kingc972bf42020-07-28 16:25:12 -04001737 strvec_push(&cp->args, "origin");
Stefan Bellerbe76c212018-12-06 13:26:55 -08001738 oid_array_for_each_unique(task->commits,
1739 append_oid_to_argv, &cp->args);
1740
1741 *task_cb = task;
1742 strbuf_release(&submodule_prefix);
1743 return 1;
1744 }
1745
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001746 return 0;
1747}
1748
Jeff Kinga5c76b32023-02-24 01:39:46 -05001749static int fetch_start_failure(struct strbuf *err UNUSED,
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001750 void *cb, void *task_cb)
1751{
1752 struct submodule_parallel_fetch *spf = cb;
Stefan Bellerbe76c212018-12-06 13:26:55 -08001753 struct fetch_task *task = task_cb;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001754
1755 spf->result = 1;
1756
Stefan Bellerbe76c212018-12-06 13:26:55 -08001757 fetch_task_release(task);
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001758 return 0;
1759}
1760
Stefan Bellerbe76c212018-12-06 13:26:55 -08001761static int commit_missing_in_sub(const struct object_id *oid, void *data)
1762{
1763 struct repository *subrepo = data;
1764
1765 enum object_type type = oid_object_info(subrepo, oid, NULL);
1766
1767 return type != OBJ_COMMIT;
1768}
1769
Jeff Kinga5c76b32023-02-24 01:39:46 -05001770static int fetch_finish(int retvalue, struct strbuf *err UNUSED,
Stefan Beller2a73b3d2016-02-29 13:57:06 -08001771 void *cb, void *task_cb)
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001772{
1773 struct submodule_parallel_fetch *spf = cb;
Stefan Bellerbe76c212018-12-06 13:26:55 -08001774 struct fetch_task *task = task_cb;
1775
1776 struct string_list_item *it;
Glen Choo6e1e0c92022-03-07 16:14:29 -08001777 struct changed_submodule_data *cs_data;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001778
Emily Shaffer02225402020-01-16 14:20:12 -08001779 if (!task || !task->sub)
1780 BUG("callback cookie bogus");
1781
1782 if (retvalue) {
Jonathan Tanbd5e5672019-03-13 10:57:38 -07001783 /*
1784 * NEEDSWORK: This indicates that the overall fetch
1785 * failed, even though there may be a subsequent fetch
1786 * by commit hash that might work. It may be a good
1787 * idea to not indicate failure in this case, and only
1788 * indicate failure if the subsequent fetch fails.
1789 */
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001790 spf->result = 1;
1791
Emily Shaffer02225402020-01-16 14:20:12 -08001792 strbuf_addf(&spf->submodules_with_errors, "\t%s\n",
1793 task->sub->name);
1794 }
Stefan Bellerbe76c212018-12-06 13:26:55 -08001795
1796 /* Is this the second time we process this submodule? */
1797 if (task->commits)
1798 goto out;
1799
1800 it = string_list_lookup(&spf->changed_submodule_names, task->sub->name);
1801 if (!it)
1802 /* Could be an unchanged submodule, not contained in the list */
1803 goto out;
1804
Glen Choo6e1e0c92022-03-07 16:14:29 -08001805 cs_data = it->util;
1806 oid_array_filter(&cs_data->new_commits,
Stefan Bellerbe76c212018-12-06 13:26:55 -08001807 commit_missing_in_sub,
1808 task->repo);
1809
1810 /* Are there commits we want, but do not exist? */
Glen Choo6e1e0c92022-03-07 16:14:29 -08001811 if (cs_data->new_commits.nr) {
1812 task->commits = &cs_data->new_commits;
Stefan Bellerbe76c212018-12-06 13:26:55 -08001813 ALLOC_GROW(spf->oid_fetch_tasks,
1814 spf->oid_fetch_tasks_nr + 1,
1815 spf->oid_fetch_tasks_alloc);
1816 spf->oid_fetch_tasks[spf->oid_fetch_tasks_nr] = task;
1817 spf->oid_fetch_tasks_nr++;
1818 return 0;
1819 }
1820
1821out:
1822 fetch_task_release(task);
1823
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001824 return 0;
1825}
1826
Glen Choob90d9f72022-03-07 16:14:32 -08001827int fetch_submodules(struct repository *r,
1828 const struct strvec *options,
1829 const char *prefix, int command_line_option,
1830 int default_option,
1831 int quiet, int max_parallel_jobs)
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001832{
1833 int i;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001834 struct submodule_parallel_fetch spf = SPF_INIT;
Ævar Arnfjörð Bjarmason36d69bf2022-10-12 23:02:27 +02001835 const struct run_process_parallel_opts opts = {
1836 .tr2_category = "submodule",
1837 .tr2_label = "parallel/fetch",
1838
1839 .processes = max_parallel_jobs,
1840
1841 .get_next_task = get_next_submodule,
1842 .start_failure = fetch_start_failure,
1843 .task_finished = fetch_finish,
1844 .data = &spf,
1845 };
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001846
Brandon Williamse7241972017-12-12 11:53:52 -08001847 spf.r = r;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001848 spf.command_line_option = command_line_option;
Brandon Williams8fa29152017-08-02 12:49:19 -07001849 spf.default_option = default_option;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001850 spf.quiet = quiet;
1851 spf.prefix = prefix;
1852
Brandon Williamse7241972017-12-12 11:53:52 -08001853 if (!r->worktree)
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001854 goto out;
1855
Brandon Williamse7241972017-12-12 11:53:52 -08001856 if (repo_read_index(r) < 0)
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001857 die(_("index file corrupt"));
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001858
Jeff Kingc972bf42020-07-28 16:25:12 -04001859 strvec_push(&spf.args, "fetch");
Jeff Kingd70a9eb2020-07-28 20:37:20 -04001860 for (i = 0; i < options->nr; i++)
1861 strvec_push(&spf.args, options->v[i]);
Jeff Kingc972bf42020-07-28 16:25:12 -04001862 strvec_push(&spf.args, "--recurse-submodules-default");
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001863 /* default value, "--submodule-prefix" and its value are added later */
1864
Stefan Beller16dd6fe2018-11-28 16:27:51 -08001865 calculate_changed_submodule_paths(r, &spf.changed_submodule_names);
1866 string_list_sort(&spf.changed_submodule_names);
Ævar Arnfjörð Bjarmason36d69bf2022-10-12 23:02:27 +02001867 run_processes_parallel(&opts);
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001868
Emily Shaffer02225402020-01-16 14:20:12 -08001869 if (spf.submodules_with_errors.len > 0)
1870 fprintf(stderr, _("Errors during submodule fetch:\n%s"),
1871 spf.submodules_with_errors.buf);
1872
1873
Jeff Kingc972bf42020-07-28 16:25:12 -04001874 strvec_clear(&spf.args);
Jens Lehmann88a21972011-03-06 23:10:46 +01001875out:
Glen Choo6e1e0c92022-03-07 16:14:29 -08001876 free_submodules_data(&spf.changed_submodule_names);
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001877 return spf.result;
Jens Lehmann7dce19d2010-11-12 13:54:52 +01001878}
1879
Jens Lehmann3bfc4502010-03-13 23:00:27 +01001880unsigned is_submodule_modified(const char *path, int ignore_untracked)
Jens Lehmannee6fc512010-01-16 18:42:24 +01001881{
René Scharfed3180272014-08-19 21:09:35 +02001882 struct child_process cp = CHILD_PROCESS_INIT;
Jens Lehmannee6fc512010-01-16 18:42:24 +01001883 struct strbuf buf = STRBUF_INIT;
Stefan Belleraf6865a2017-03-24 17:36:06 -07001884 FILE *fp;
Jens Lehmannc7e1a732010-03-04 22:20:33 +01001885 unsigned dirty_submodule = 0;
Jens Lehmanneee49b62010-04-10 19:01:12 +02001886 const char *git_dir;
Stefan Belleraf6865a2017-03-24 17:36:06 -07001887 int ignore_cp_exit_code = 0;
Jens Lehmannee6fc512010-01-16 18:42:24 +01001888
Jens Lehmanneee49b62010-04-10 19:01:12 +02001889 strbuf_addf(&buf, "%s/.git", path);
Junio C Hamano13d6ec92011-08-22 14:04:56 -07001890 git_dir = read_gitfile(buf.buf);
Jens Lehmanneee49b62010-04-10 19:01:12 +02001891 if (!git_dir)
1892 git_dir = buf.buf;
Stefan Beller5c896f72017-03-24 17:36:08 -07001893 if (!is_git_directory(git_dir)) {
1894 if (is_directory(git_dir))
1895 die(_("'%s' not recognized as a git repository"), git_dir);
Jens Lehmannee6fc512010-01-16 18:42:24 +01001896 strbuf_release(&buf);
1897 /* The submodule is not checked out, so it is not modified */
1898 return 0;
Jens Lehmannee6fc512010-01-16 18:42:24 +01001899 }
1900 strbuf_reset(&buf);
1901
Jeff Kingc972bf42020-07-28 16:25:12 -04001902 strvec_pushl(&cp.args, "status", "--porcelain=2", NULL);
Jens Lehmann3bfc4502010-03-13 23:00:27 +01001903 if (ignore_untracked)
Jeff Kingc972bf42020-07-28 16:25:12 -04001904 strvec_push(&cp.args, "-uno");
Jens Lehmann3bfc4502010-03-13 23:00:27 +01001905
Ævar Arnfjörð Bjarmason29fda242022-06-02 11:09:50 +02001906 prepare_submodule_repo_env(&cp.env);
Jens Lehmannee6fc512010-01-16 18:42:24 +01001907 cp.git_cmd = 1;
1908 cp.no_stdin = 1;
1909 cp.out = -1;
Jens Lehmanneee49b62010-04-10 19:01:12 +02001910 cp.dir = path;
Jens Lehmannee6fc512010-01-16 18:42:24 +01001911 if (start_command(&cp))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001912 die(_("Could not run 'git status --porcelain=2' in submodule %s"), path);
Jens Lehmannee6fc512010-01-16 18:42:24 +01001913
Stefan Belleraf6865a2017-03-24 17:36:06 -07001914 fp = xfdopen(cp.out, "r");
1915 while (strbuf_getwholeline(&buf, fp, '\n') != EOF) {
Stefan Bellerfcecf0b2017-03-24 17:36:07 -07001916 /* regular untracked files */
1917 if (buf.buf[0] == '?')
Jens Lehmannc7e1a732010-03-04 22:20:33 +01001918 dirty_submodule |= DIRTY_SUBMODULE_UNTRACKED;
Jens Lehmannee6fc512010-01-16 18:42:24 +01001919
Stefan Beller40069d62017-03-29 15:26:16 -07001920 if (buf.buf[0] == 'u' ||
1921 buf.buf[0] == '1' ||
1922 buf.buf[0] == '2') {
1923 /* T = line type, XY = status, SSSS = submodule state */
1924 if (buf.len < strlen("T XY SSSS"))
Johannes Schindelin033abf92018-05-02 11:38:39 +02001925 BUG("invalid status --porcelain=2 line %s",
Stefan Beller40069d62017-03-29 15:26:16 -07001926 buf.buf);
1927
1928 if (buf.buf[5] == 'S' && buf.buf[8] == 'U')
1929 /* nested untracked file */
1930 dirty_submodule |= DIRTY_SUBMODULE_UNTRACKED;
1931
1932 if (buf.buf[0] == 'u' ||
1933 buf.buf[0] == '2' ||
1934 memcmp(buf.buf + 5, "S..U", 4))
1935 /* other change */
1936 dirty_submodule |= DIRTY_SUBMODULE_MODIFIED;
1937 }
Stefan Beller64f9a942017-03-24 17:36:05 -07001938
1939 if ((dirty_submodule & DIRTY_SUBMODULE_MODIFIED) &&
1940 ((dirty_submodule & DIRTY_SUBMODULE_UNTRACKED) ||
Stefan Belleraf6865a2017-03-24 17:36:06 -07001941 ignore_untracked)) {
1942 /*
1943 * We're not interested in any further information from
1944 * the child any more, neither output nor its exit code.
1945 */
1946 ignore_cp_exit_code = 1;
Stefan Beller64f9a942017-03-24 17:36:05 -07001947 break;
Stefan Belleraf6865a2017-03-24 17:36:06 -07001948 }
Jens Lehmannee6fc512010-01-16 18:42:24 +01001949 }
Stefan Belleraf6865a2017-03-24 17:36:06 -07001950 fclose(fp);
Jens Lehmannee6fc512010-01-16 18:42:24 +01001951
Stefan Belleraf6865a2017-03-24 17:36:06 -07001952 if (finish_command(&cp) && !ignore_cp_exit_code)
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001953 die(_("'git status --porcelain=2' failed in submodule %s"), path);
Jens Lehmannee6fc512010-01-16 18:42:24 +01001954
Jens Lehmannee6fc512010-01-16 18:42:24 +01001955 strbuf_release(&buf);
Jens Lehmannc7e1a732010-03-04 22:20:33 +01001956 return dirty_submodule;
Jens Lehmannee6fc512010-01-16 18:42:24 +01001957}
Heiko Voigt68d03e42010-07-07 15:39:13 +02001958
Jens Lehmann293ab152012-09-26 20:21:13 +02001959int submodule_uses_gitfile(const char *path)
1960{
René Scharfed3180272014-08-19 21:09:35 +02001961 struct child_process cp = CHILD_PROCESS_INIT;
Jens Lehmann293ab152012-09-26 20:21:13 +02001962 struct strbuf buf = STRBUF_INIT;
1963 const char *git_dir;
1964
1965 strbuf_addf(&buf, "%s/.git", path);
1966 git_dir = read_gitfile(buf.buf);
1967 if (!git_dir) {
1968 strbuf_release(&buf);
1969 return 0;
1970 }
1971 strbuf_release(&buf);
1972
1973 /* Now test that all nested submodules use a gitfile too */
Junio C Hamanoafbdba32020-08-26 15:25:03 -07001974 strvec_pushl(&cp.args,
1975 "submodule", "foreach", "--quiet", "--recursive",
1976 "test -f .git", NULL);
1977
Ævar Arnfjörð Bjarmason29fda242022-06-02 11:09:50 +02001978 prepare_submodule_repo_env(&cp.env);
Jens Lehmann293ab152012-09-26 20:21:13 +02001979 cp.git_cmd = 1;
1980 cp.no_stdin = 1;
1981 cp.no_stderr = 1;
1982 cp.no_stdout = 1;
1983 cp.dir = path;
1984 if (run_command(&cp))
1985 return 0;
1986
1987 return 1;
1988}
1989
Stefan Beller83b76962016-12-20 15:20:11 -08001990/*
1991 * Check if it is a bad idea to remove a submodule, i.e. if we'd lose data
1992 * when doing so.
1993 *
1994 * Return 1 if we'd lose data, return 0 if the removal is fine,
1995 * and negative values for errors.
1996 */
1997int bad_to_remove_submodule(const char *path, unsigned flags)
Jens Lehmann293ab152012-09-26 20:21:13 +02001998{
Jens Lehmann293ab152012-09-26 20:21:13 +02001999 ssize_t len;
René Scharfed3180272014-08-19 21:09:35 +02002000 struct child_process cp = CHILD_PROCESS_INIT;
Jens Lehmann293ab152012-09-26 20:21:13 +02002001 struct strbuf buf = STRBUF_INIT;
Stefan Beller83b76962016-12-20 15:20:11 -08002002 int ret = 0;
Jens Lehmann293ab152012-09-26 20:21:13 +02002003
René Scharfedbe44fa2015-05-19 23:44:23 +02002004 if (!file_exists(path) || is_empty_dir(path))
Jens Lehmann293ab152012-09-26 20:21:13 +02002005 return 0;
2006
Stefan Beller83b76962016-12-20 15:20:11 -08002007 if (!submodule_uses_gitfile(path))
2008 return 1;
2009
Jeff Kingc972bf42020-07-28 16:25:12 -04002010 strvec_pushl(&cp.args, "status", "--porcelain",
Jeff Kingf6d89422020-07-28 16:26:31 -04002011 "--ignore-submodules=none", NULL);
Stefan Beller83b76962016-12-20 15:20:11 -08002012
2013 if (flags & SUBMODULE_REMOVAL_IGNORE_UNTRACKED)
Jeff Kingc972bf42020-07-28 16:25:12 -04002014 strvec_push(&cp.args, "-uno");
Stefan Beller83b76962016-12-20 15:20:11 -08002015 else
Jeff Kingc972bf42020-07-28 16:25:12 -04002016 strvec_push(&cp.args, "-uall");
Stefan Beller83b76962016-12-20 15:20:11 -08002017
2018 if (!(flags & SUBMODULE_REMOVAL_IGNORE_IGNORED_UNTRACKED))
Jeff Kingc972bf42020-07-28 16:25:12 -04002019 strvec_push(&cp.args, "--ignored");
Stefan Beller83b76962016-12-20 15:20:11 -08002020
Ævar Arnfjörð Bjarmason29fda242022-06-02 11:09:50 +02002021 prepare_submodule_repo_env(&cp.env);
Jens Lehmann293ab152012-09-26 20:21:13 +02002022 cp.git_cmd = 1;
2023 cp.no_stdin = 1;
2024 cp.out = -1;
2025 cp.dir = path;
Stefan Beller83b76962016-12-20 15:20:11 -08002026 if (start_command(&cp)) {
2027 if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR)
Ralf Thielow35ad44c2017-04-13 18:40:45 +02002028 die(_("could not start 'git status' in submodule '%s'"),
Stefan Beller83b76962016-12-20 15:20:11 -08002029 path);
2030 ret = -1;
2031 goto out;
2032 }
Jens Lehmann293ab152012-09-26 20:21:13 +02002033
2034 len = strbuf_read(&buf, cp.out, 1024);
2035 if (len > 2)
Stefan Beller83b76962016-12-20 15:20:11 -08002036 ret = 1;
Jens Lehmann293ab152012-09-26 20:21:13 +02002037 close(cp.out);
2038
Stefan Beller83b76962016-12-20 15:20:11 -08002039 if (finish_command(&cp)) {
2040 if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR)
Ralf Thielow35ad44c2017-04-13 18:40:45 +02002041 die(_("could not run 'git status' in submodule '%s'"),
Stefan Beller83b76962016-12-20 15:20:11 -08002042 path);
2043 ret = -1;
2044 }
2045out:
Jens Lehmann293ab152012-09-26 20:21:13 +02002046 strbuf_release(&buf);
Stefan Beller83b76962016-12-20 15:20:11 -08002047 return ret;
Jens Lehmann293ab152012-09-26 20:21:13 +02002048}
2049
Stefan Beller898c2e62018-12-14 15:59:43 -08002050void submodule_unset_core_worktree(const struct submodule *sub)
2051{
Jonathan Tance125d42021-09-15 11:59:19 -07002052 struct strbuf config_path = STRBUF_INIT;
Stefan Beller898c2e62018-12-14 15:59:43 -08002053
Jonathan Tance125d42021-09-15 11:59:19 -07002054 submodule_name_to_gitdir(&config_path, the_repository, sub->name);
2055 strbuf_addstr(&config_path, "/config");
2056
2057 if (git_config_set_in_file_gently(config_path.buf, "core.worktree", NULL))
Stefan Beller898c2e62018-12-14 15:59:43 -08002058 warning(_("Could not unset core.worktree setting in submodule '%s'"),
2059 sub->path);
2060
Jonathan Tance125d42021-09-15 11:59:19 -07002061 strbuf_release(&config_path);
Stefan Beller898c2e62018-12-14 15:59:43 -08002062}
2063
Stefan Beller6e3c1592017-03-14 14:46:37 -07002064static int submodule_has_dirty_index(const struct submodule *sub)
2065{
2066 struct child_process cp = CHILD_PROCESS_INIT;
2067
Ævar Arnfjörð Bjarmason29fda242022-06-02 11:09:50 +02002068 prepare_submodule_repo_env(&cp.env);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002069
2070 cp.git_cmd = 1;
Jeff Kingc972bf42020-07-28 16:25:12 -04002071 strvec_pushl(&cp.args, "diff-index", "--quiet",
Jeff Kingf6d89422020-07-28 16:26:31 -04002072 "--cached", "HEAD", NULL);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002073 cp.no_stdin = 1;
2074 cp.no_stdout = 1;
2075 cp.dir = sub->path;
2076 if (start_command(&cp))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01002077 die(_("could not recurse into submodule '%s'"), sub->path);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002078
2079 return finish_command(&cp);
2080}
2081
Ævar Arnfjörð Bjarmason4002ec32022-12-20 13:39:56 +01002082static void submodule_reset_index(const char *path, const char *super_prefix)
Stefan Beller6e3c1592017-03-14 14:46:37 -07002083{
2084 struct child_process cp = CHILD_PROCESS_INIT;
Ævar Arnfjörð Bjarmason29fda242022-06-02 11:09:50 +02002085 prepare_submodule_repo_env(&cp.env);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002086
2087 cp.git_cmd = 1;
2088 cp.no_stdin = 1;
2089 cp.dir = path;
2090
Elijah Newren94b7f152021-09-27 16:33:47 +00002091 /* TODO: determine if this might overwright untracked files */
Jeff Kingc972bf42020-07-28 16:25:12 -04002092 strvec_pushl(&cp.args, "read-tree", "-u", "--reset", NULL);
Ævar Arnfjörð Bjarmason4002ec32022-12-20 13:39:56 +01002093 strvec_pushf(&cp.args, "--super-prefix=%s%s/",
2094 (super_prefix ? super_prefix : ""), path);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002095
Jeff Kingc972bf42020-07-28 16:25:12 -04002096 strvec_push(&cp.args, empty_tree_oid_hex());
Stefan Beller6e3c1592017-03-14 14:46:37 -07002097
2098 if (run_command(&cp))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01002099 die(_("could not reset submodule index"));
Stefan Beller6e3c1592017-03-14 14:46:37 -07002100}
2101
2102/**
2103 * Moves a submodule at a given path from a given head to another new head.
2104 * For edge cases (a submodule coming into existence or removing a submodule)
2105 * pass NULL for old or new respectively.
2106 */
Ævar Arnfjörð Bjarmason4002ec32022-12-20 13:39:56 +01002107int submodule_move_head(const char *path, const char *super_prefix,
2108 const char *old_head, const char *new_head,
2109 unsigned flags)
Stefan Beller6e3c1592017-03-14 14:46:37 -07002110{
2111 int ret = 0;
2112 struct child_process cp = CHILD_PROCESS_INIT;
2113 const struct submodule *sub;
Stefan Bellerf2d48992017-04-18 14:37:24 -07002114 int *error_code_ptr, error_code;
Stefan Beller6e3c1592017-03-14 14:46:37 -07002115
Brandon Williams627d9342017-06-22 11:43:46 -07002116 if (!is_submodule_active(the_repository, path))
Stefan Beller823bab02017-04-18 14:37:23 -07002117 return 0;
2118
Stefan Bellerf2d48992017-04-18 14:37:24 -07002119 if (flags & SUBMODULE_MOVE_HEAD_FORCE)
2120 /*
2121 * Pass non NULL pointer to is_submodule_populated_gently
2122 * to prevent die()-ing. We'll use connect_work_tree_and_git_dir
2123 * to fixup the submodule in the force case later.
2124 */
2125 error_code_ptr = &error_code;
2126 else
2127 error_code_ptr = NULL;
2128
Brandon Williamsbc099912018-02-14 10:59:49 -08002129 if (old_head && !is_submodule_populated_gently(path, error_code_ptr))
Stefan Bellerf2d48992017-04-18 14:37:24 -07002130 return 0;
Stefan Beller6e3c1592017-03-14 14:46:37 -07002131
brian m. carlson14228442021-04-26 01:02:56 +00002132 sub = submodule_from_path(the_repository, null_oid(), path);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002133
2134 if (!sub)
Johannes Schindelin033abf92018-05-02 11:38:39 +02002135 BUG("could not get submodule information for '%s'", path);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002136
Brandon Williamsbc099912018-02-14 10:59:49 -08002137 if (old_head && !(flags & SUBMODULE_MOVE_HEAD_FORCE)) {
Stefan Beller6e3c1592017-03-14 14:46:37 -07002138 /* Check if the submodule has a dirty index. */
2139 if (submodule_has_dirty_index(sub))
2140 return error(_("submodule '%s' has dirty index"), path);
2141 }
2142
2143 if (!(flags & SUBMODULE_MOVE_HEAD_DRY_RUN)) {
Brandon Williamsbc099912018-02-14 10:59:49 -08002144 if (old_head) {
Stefan Beller6e3c1592017-03-14 14:46:37 -07002145 if (!submodule_uses_gitfile(path))
Ævar Arnfjörð Bjarmasonf0a5e5a2022-12-20 13:39:50 +01002146 absorb_git_dir_into_superproject(path,
Ævar Arnfjörð Bjarmason4002ec32022-12-20 13:39:56 +01002147 super_prefix);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002148 } else {
Jonathan Tance125d42021-09-15 11:59:19 -07002149 struct strbuf gitdir = STRBUF_INIT;
2150 submodule_name_to_gitdir(&gitdir, the_repository,
2151 sub->name);
2152 connect_work_tree_and_git_dir(path, gitdir.buf, 0);
2153 strbuf_release(&gitdir);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002154
2155 /* make sure the index is clean as well */
Ævar Arnfjörð Bjarmason4002ec32022-12-20 13:39:56 +01002156 submodule_reset_index(path, super_prefix);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002157 }
Stefan Bellerf2d48992017-04-18 14:37:24 -07002158
Brandon Williamsbc099912018-02-14 10:59:49 -08002159 if (old_head && (flags & SUBMODULE_MOVE_HEAD_FORCE)) {
Jonathan Tance125d42021-09-15 11:59:19 -07002160 struct strbuf gitdir = STRBUF_INIT;
2161 submodule_name_to_gitdir(&gitdir, the_repository,
2162 sub->name);
2163 connect_work_tree_and_git_dir(path, gitdir.buf, 1);
2164 strbuf_release(&gitdir);
Stefan Bellerf2d48992017-04-18 14:37:24 -07002165 }
Stefan Beller6e3c1592017-03-14 14:46:37 -07002166 }
2167
Ævar Arnfjörð Bjarmason29fda242022-06-02 11:09:50 +02002168 prepare_submodule_repo_env(&cp.env);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002169
2170 cp.git_cmd = 1;
2171 cp.no_stdin = 1;
2172 cp.dir = path;
2173
Jeff Kingc972bf42020-07-28 16:25:12 -04002174 strvec_pushl(&cp.args, "read-tree", "--recurse-submodules", NULL);
Ævar Arnfjörð Bjarmason4002ec32022-12-20 13:39:56 +01002175 strvec_pushf(&cp.args, "--super-prefix=%s%s/",
2176 (super_prefix ? super_prefix : ""), path);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002177
2178 if (flags & SUBMODULE_MOVE_HEAD_DRY_RUN)
Jeff Kingc972bf42020-07-28 16:25:12 -04002179 strvec_push(&cp.args, "-n");
Stefan Beller6e3c1592017-03-14 14:46:37 -07002180 else
Jeff Kingc972bf42020-07-28 16:25:12 -04002181 strvec_push(&cp.args, "-u");
Stefan Beller6e3c1592017-03-14 14:46:37 -07002182
2183 if (flags & SUBMODULE_MOVE_HEAD_FORCE)
Jeff Kingc972bf42020-07-28 16:25:12 -04002184 strvec_push(&cp.args, "--reset");
Stefan Beller6e3c1592017-03-14 14:46:37 -07002185 else
Jeff Kingc972bf42020-07-28 16:25:12 -04002186 strvec_push(&cp.args, "-m");
Stefan Beller6e3c1592017-03-14 14:46:37 -07002187
Stefan Beller7dcc1f42018-01-05 12:03:04 -08002188 if (!(flags & SUBMODULE_MOVE_HEAD_FORCE))
Jeff Kingc972bf42020-07-28 16:25:12 -04002189 strvec_push(&cp.args, old_head ? old_head : empty_tree_oid_hex());
Stefan Beller7dcc1f42018-01-05 12:03:04 -08002190
Jeff Kingc972bf42020-07-28 16:25:12 -04002191 strvec_push(&cp.args, new_head ? new_head : empty_tree_oid_hex());
Stefan Beller6e3c1592017-03-14 14:46:37 -07002192
2193 if (run_command(&cp)) {
Stefan Bellerba95d4e2018-06-20 15:32:53 -07002194 ret = error(_("Submodule '%s' could not be updated."), path);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002195 goto out;
2196 }
2197
2198 if (!(flags & SUBMODULE_MOVE_HEAD_DRY_RUN)) {
Brandon Williamsbc099912018-02-14 10:59:49 -08002199 if (new_head) {
Stefan Bellera17062c2017-05-02 12:32:12 -07002200 child_process_init(&cp);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002201 /* also set the HEAD accordingly */
Stefan Bellera17062c2017-05-02 12:32:12 -07002202 cp.git_cmd = 1;
2203 cp.no_stdin = 1;
2204 cp.dir = path;
Stefan Beller6e3c1592017-03-14 14:46:37 -07002205
Ævar Arnfjörð Bjarmason29fda242022-06-02 11:09:50 +02002206 prepare_submodule_repo_env(&cp.env);
Jeff Kingc972bf42020-07-28 16:25:12 -04002207 strvec_pushl(&cp.args, "update-ref", "HEAD",
Jeff Kingf6d89422020-07-28 16:26:31 -04002208 "--no-deref", new_head, NULL);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002209
Stefan Bellera17062c2017-05-02 12:32:12 -07002210 if (run_command(&cp)) {
Stefan Beller6e3c1592017-03-14 14:46:37 -07002211 ret = -1;
2212 goto out;
2213 }
2214 } else {
2215 struct strbuf sb = STRBUF_INIT;
2216
2217 strbuf_addf(&sb, "%s/.git", path);
2218 unlink_or_warn(sb.buf);
2219 strbuf_release(&sb);
2220
2221 if (is_empty_dir(path))
2222 rmdir_or_warn(path);
Stefan Beller898c2e62018-12-14 15:59:43 -08002223
2224 submodule_unset_core_worktree(sub);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002225 }
2226 }
2227out:
2228 return ret;
2229}
2230
Johannes Schindelina8dee3c2019-10-01 23:27:18 +02002231int validate_submodule_git_dir(char *git_dir, const char *submodule_name)
2232{
2233 size_t len = strlen(git_dir), suffix_len = strlen(submodule_name);
2234 char *p;
2235 int ret = 0;
2236
2237 if (len <= suffix_len || (p = git_dir + len - suffix_len)[-1] != '/' ||
2238 strcmp(p, submodule_name))
2239 BUG("submodule name '%s' not a suffix of git dir '%s'",
2240 submodule_name, git_dir);
2241
2242 /*
2243 * We prevent the contents of sibling submodules' git directories to
2244 * clash.
2245 *
2246 * Example: having a submodule named `hippo` and another one named
2247 * `hippo/hooks` would result in the git directories
2248 * `.git/modules/hippo/` and `.git/modules/hippo/hooks/`, respectively,
2249 * but the latter directory is already designated to contain the hooks
2250 * of the former.
2251 */
2252 for (; *p; p++) {
2253 if (is_dir_sep(*p)) {
2254 char c = *p;
2255
2256 *p = '\0';
2257 if (is_git_directory(git_dir))
2258 ret = -1;
2259 *p = c;
2260
2261 if (ret < 0)
2262 return error(_("submodule git dir '%s' is "
2263 "inside git dir '%.*s'"),
2264 git_dir,
2265 (int)(p - git_dir), git_dir);
2266 }
2267 }
2268
2269 return 0;
2270}
2271
Stefan Bellerf6f85862016-12-12 11:04:35 -08002272/*
2273 * Embeds a single submodules git directory into the superprojects git dir,
2274 * non recursively.
2275 */
Ævar Arnfjörð Bjarmasonbb61a962022-12-20 13:39:51 +01002276static void relocate_single_git_dir_into_superproject(const char *path,
2277 const char *super_prefix)
Stefan Bellerf6f85862016-12-12 11:04:35 -08002278{
2279 char *old_git_dir = NULL, *real_old_git_dir = NULL, *real_new_git_dir = NULL;
Jonathan Tance125d42021-09-15 11:59:19 -07002280 struct strbuf new_gitdir = STRBUF_INIT;
Stefan Bellerf6f85862016-12-12 11:04:35 -08002281 const struct submodule *sub;
2282
2283 if (submodule_uses_worktrees(path))
2284 die(_("relocate_gitdir for submodule '%s' with "
2285 "more than one worktree not supported"), path);
2286
2287 old_git_dir = xstrfmt("%s/.git", path);
2288 if (read_gitfile(old_git_dir))
2289 /* If it is an actual gitfile, it doesn't need migration. */
2290 return;
2291
Johannes Schindelince83ead2017-03-08 16:43:40 +01002292 real_old_git_dir = real_pathdup(old_git_dir, 1);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002293
brian m. carlson14228442021-04-26 01:02:56 +00002294 sub = submodule_from_path(the_repository, null_oid(), path);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002295 if (!sub)
2296 die(_("could not lookup name for submodule '%s'"), path);
2297
Jonathan Tance125d42021-09-15 11:59:19 -07002298 submodule_name_to_gitdir(&new_gitdir, the_repository, sub->name);
2299 if (validate_submodule_git_dir(new_gitdir.buf, sub->name) < 0)
Johannes Schindelina8dee3c2019-10-01 23:27:18 +02002300 die(_("refusing to move '%s' into an existing git dir"),
2301 real_old_git_dir);
Jonathan Tance125d42021-09-15 11:59:19 -07002302 if (safe_create_leading_directories_const(new_gitdir.buf) < 0)
2303 die(_("could not create directory '%s'"), new_gitdir.buf);
2304 real_new_git_dir = real_pathdup(new_gitdir.buf, 1);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002305
Stefan Bellerf6f85862016-12-12 11:04:35 -08002306 fprintf(stderr, _("Migrating git directory of '%s%s' from\n'%s' to\n'%s'\n"),
Ævar Arnfjörð Bjarmasonbb61a962022-12-20 13:39:51 +01002307 super_prefix ? super_prefix : "", path,
Stefan Bellerf6f85862016-12-12 11:04:35 -08002308 real_old_git_dir, real_new_git_dir);
2309
2310 relocate_gitdir(path, real_old_git_dir, real_new_git_dir);
2311
2312 free(old_git_dir);
2313 free(real_old_git_dir);
2314 free(real_new_git_dir);
Jonathan Tance125d42021-09-15 11:59:19 -07002315 strbuf_release(&new_gitdir);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002316}
2317
Ævar Arnfjörð Bjarmasonf0a5e5a2022-12-20 13:39:50 +01002318static void absorb_git_dir_into_superproject_recurse(const char *path,
2319 const char *super_prefix)
Ævar Arnfjörð Bjarmason46e87b52022-11-08 15:10:36 +01002320{
2321
2322 struct child_process cp = CHILD_PROCESS_INIT;
2323
2324 cp.dir = path;
2325 cp.git_cmd = 1;
2326 cp.no_stdin = 1;
Ævar Arnfjörð Bjarmason46e87b52022-11-08 15:10:36 +01002327 strvec_pushl(&cp.args, "submodule--helper",
2328 "absorbgitdirs", NULL);
Ævar Arnfjörð Bjarmasonbb61a962022-12-20 13:39:51 +01002329 strvec_pushf(&cp.args, "--super-prefix=%s%s/", super_prefix ?
2330 super_prefix : "", path);
2331
Ævar Arnfjörð Bjarmason46e87b52022-11-08 15:10:36 +01002332 prepare_submodule_repo_env(&cp.env);
2333 if (run_command(&cp))
2334 die(_("could not recurse into submodule '%s'"), path);
2335}
2336
Stefan Bellerf6f85862016-12-12 11:04:35 -08002337/*
2338 * Migrate the git directory of the submodule given by path from
2339 * having its git directory within the working tree to the git dir nested
2340 * in its superprojects git dir under modules/.
2341 */
Ævar Arnfjörð Bjarmasonf0a5e5a2022-12-20 13:39:50 +01002342void absorb_git_dir_into_superproject(const char *path,
2343 const char *super_prefix)
Stefan Bellerf6f85862016-12-12 11:04:35 -08002344{
Stefan Bellerec9629b2017-01-25 15:04:50 -08002345 int err_code;
2346 const char *sub_git_dir;
Stefan Bellerf6f85862016-12-12 11:04:35 -08002347 struct strbuf gitdir = STRBUF_INIT;
Stefan Bellerf6f85862016-12-12 11:04:35 -08002348 strbuf_addf(&gitdir, "%s/.git", path);
Stefan Bellerec9629b2017-01-25 15:04:50 -08002349 sub_git_dir = resolve_gitdir_gently(gitdir.buf, &err_code);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002350
2351 /* Not populated? */
Stefan Bellerec9629b2017-01-25 15:04:50 -08002352 if (!sub_git_dir) {
Stefan Bellerec9629b2017-01-25 15:04:50 -08002353 const struct submodule *sub;
Jonathan Tance125d42021-09-15 11:59:19 -07002354 struct strbuf sub_gitdir = STRBUF_INIT;
Stefan Bellerf6f85862016-12-12 11:04:35 -08002355
Stefan Bellerec9629b2017-01-25 15:04:50 -08002356 if (err_code == READ_GITFILE_ERR_STAT_FAILED) {
2357 /* unpopulated as expected */
2358 strbuf_release(&gitdir);
2359 return;
2360 }
2361
2362 if (err_code != READ_GITFILE_ERR_NOT_A_REPO)
2363 /* We don't know what broke here. */
2364 read_gitfile_error_die(err_code, path, NULL);
2365
2366 /*
2367 * Maybe populated, but no git directory was found?
2368 * This can happen if the superproject is a submodule
2369 * itself and was just absorbed. The absorption of the
2370 * superproject did not rewrite the git file links yet,
2371 * fix it now.
2372 */
brian m. carlson14228442021-04-26 01:02:56 +00002373 sub = submodule_from_path(the_repository, null_oid(), path);
Stefan Bellerec9629b2017-01-25 15:04:50 -08002374 if (!sub)
2375 die(_("could not lookup name for submodule '%s'"), path);
Jonathan Tance125d42021-09-15 11:59:19 -07002376 submodule_name_to_gitdir(&sub_gitdir, the_repository, sub->name);
2377 connect_work_tree_and_git_dir(path, sub_gitdir.buf, 0);
2378 strbuf_release(&sub_gitdir);
Stefan Bellerec9629b2017-01-25 15:04:50 -08002379 } else {
2380 /* Is it already absorbed into the superprojects git dir? */
Johannes Schindelince83ead2017-03-08 16:43:40 +01002381 char *real_sub_git_dir = real_pathdup(sub_git_dir, 1);
2382 char *real_common_git_dir = real_pathdup(get_git_common_dir(), 1);
Stefan Bellerec9629b2017-01-25 15:04:50 -08002383
2384 if (!starts_with(real_sub_git_dir, real_common_git_dir))
Ævar Arnfjörð Bjarmasonbb61a962022-12-20 13:39:51 +01002385 relocate_single_git_dir_into_superproject(path, super_prefix);
Stefan Bellerec9629b2017-01-25 15:04:50 -08002386
2387 free(real_sub_git_dir);
2388 free(real_common_git_dir);
2389 }
2390 strbuf_release(&gitdir);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002391
Ævar Arnfjörð Bjarmasonf0a5e5a2022-12-20 13:39:50 +01002392 absorb_git_dir_into_superproject_recurse(path, super_prefix);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002393}
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002394
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002395int get_superproject_working_tree(struct strbuf *buf)
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002396{
2397 struct child_process cp = CHILD_PROCESS_INIT;
2398 struct strbuf sb = STRBUF_INIT;
Alexandr Miloslavskiy4530a852020-03-10 13:11:23 +00002399 struct strbuf one_up = STRBUF_INIT;
Ævar Arnfjörð Bjarmasonbc57ba12022-07-01 12:42:52 +02002400 char *cwd = xgetcwd();
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002401 int ret = 0;
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002402 const char *subpath;
2403 int code;
2404 ssize_t len;
2405
2406 if (!is_inside_work_tree())
2407 /*
2408 * FIXME:
2409 * We might have a superproject, but it is harder
2410 * to determine.
2411 */
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002412 return 0;
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002413
Alexandr Miloslavskiy4530a852020-03-10 13:11:23 +00002414 if (!strbuf_realpath(&one_up, "../", 0))
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002415 return 0;
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002416
Alexandr Miloslavskiy4530a852020-03-10 13:11:23 +00002417 subpath = relative_path(cwd, one_up.buf, &sb);
2418 strbuf_release(&one_up);
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002419
Ævar Arnfjörð Bjarmason29fda242022-06-02 11:09:50 +02002420 prepare_submodule_repo_env(&cp.env);
2421 strvec_pop(&cp.env);
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002422
Jeff Kingc972bf42020-07-28 16:25:12 -04002423 strvec_pushl(&cp.args, "--literal-pathspecs", "-C", "..",
Jeff Kingf6d89422020-07-28 16:26:31 -04002424 "ls-files", "-z", "--stage", "--full-name", "--",
2425 subpath, NULL);
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002426 strbuf_reset(&sb);
2427
2428 cp.no_stdin = 1;
2429 cp.no_stderr = 1;
2430 cp.out = -1;
2431 cp.git_cmd = 1;
2432
2433 if (start_command(&cp))
2434 die(_("could not start ls-files in .."));
2435
2436 len = strbuf_read(&sb, cp.out, PATH_MAX);
2437 close(cp.out);
2438
2439 if (starts_with(sb.buf, "160000")) {
2440 int super_sub_len;
2441 int cwd_len = strlen(cwd);
2442 char *super_sub, *super_wt;
2443
2444 /*
2445 * There is a superproject having this repo as a submodule.
2446 * The format is <mode> SP <hash> SP <stage> TAB <full name> \0,
2447 * We're only interested in the name after the tab.
2448 */
2449 super_sub = strchr(sb.buf, '\t') + 1;
Sam McKelviec5cbb272018-09-27 11:10:54 -07002450 super_sub_len = strlen(super_sub);
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002451
2452 if (super_sub_len > cwd_len ||
2453 strcmp(&cwd[cwd_len - super_sub_len], super_sub))
Johannes Schindelinc3c34862018-05-02 11:38:41 +02002454 BUG("returned path string doesn't match cwd?");
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002455
2456 super_wt = xstrdup(cwd);
2457 super_wt[cwd_len - super_sub_len] = '\0';
2458
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002459 strbuf_realpath(buf, super_wt, 1);
2460 ret = 1;
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002461 free(super_wt);
2462 }
Ævar Arnfjörð Bjarmasonbc57ba12022-07-01 12:42:52 +02002463 free(cwd);
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002464 strbuf_release(&sb);
2465
2466 code = finish_command(&cp);
2467
2468 if (code == 128)
2469 /* '../' is not a git repository */
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002470 return 0;
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002471 if (code == 0 && len == 0)
2472 /* There is an unrelated git repository at '../' */
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002473 return 0;
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002474 if (code)
2475 die(_("ls-tree returned unexpected return code %d"), code);
2476
2477 return ret;
2478}
Nguyễn Thái Ngọc Duybbbb7de2017-03-26 09:42:30 +07002479
Han-Wen Nienhuys3ce08542017-09-25 17:59:26 +02002480/*
2481 * Put the gitdir for a submodule (given relative to the main
2482 * repository worktree) into `buf`, or return -1 on error.
2483 */
Nguyễn Thái Ngọc Duybbbb7de2017-03-26 09:42:30 +07002484int submodule_to_gitdir(struct strbuf *buf, const char *submodule)
2485{
2486 const struct submodule *sub;
2487 const char *git_dir;
2488 int ret = 0;
2489
2490 strbuf_reset(buf);
2491 strbuf_addstr(buf, submodule);
2492 strbuf_complete(buf, '/');
2493 strbuf_addstr(buf, ".git");
2494
2495 git_dir = read_gitfile(buf->buf);
2496 if (git_dir) {
2497 strbuf_reset(buf);
2498 strbuf_addstr(buf, git_dir);
2499 }
2500 if (!is_git_directory(buf->buf)) {
brian m. carlson14228442021-04-26 01:02:56 +00002501 sub = submodule_from_path(the_repository, null_oid(),
2502 submodule);
Nguyễn Thái Ngọc Duybbbb7de2017-03-26 09:42:30 +07002503 if (!sub) {
2504 ret = -1;
2505 goto cleanup;
2506 }
2507 strbuf_reset(buf);
Jonathan Tance125d42021-09-15 11:59:19 -07002508 submodule_name_to_gitdir(buf, the_repository, sub->name);
Nguyễn Thái Ngọc Duybbbb7de2017-03-26 09:42:30 +07002509 }
2510
2511cleanup:
2512 return ret;
2513}
Jonathan Tance125d42021-09-15 11:59:19 -07002514
2515void submodule_name_to_gitdir(struct strbuf *buf, struct repository *r,
2516 const char *submodule_name)
2517{
2518 /*
2519 * NEEDSWORK: The current way of mapping a submodule's name to
2520 * its location in .git/modules/ has problems with some naming
2521 * schemes. For example, if a submodule is named "foo" and
2522 * another is named "foo/bar" (whether present in the same
2523 * superproject commit or not - the problem will arise if both
2524 * superproject commits have been checked out at any point in
2525 * time), or if two submodule names only have different cases in
2526 * a case-insensitive filesystem.
2527 *
2528 * There are several solutions, including encoding the path in
2529 * some way, introducing a submodule.<name>.gitdir config in
2530 * .git/config (not .gitmodules) that allows overriding what the
2531 * gitdir of a submodule would be (and teach Git, upon noticing
2532 * a clash, to automatically determine a non-clashing name and
2533 * to write such a config), or introducing a
2534 * submodule.<name>.gitdir config in .gitmodules that repo
2535 * administrators can explicitly set. Nothing has been decided,
2536 * so for now, just append the name at the end of the path.
2537 */
2538 strbuf_repo_git_path(buf, r, "modules/");
2539 strbuf_addstr(buf, submodule_name);
2540}