blob: 7797e5a4dbb051ca37467a33e670621fdc81dd9d [file] [log] [blame]
Brandon Williamse7241972017-12-12 11:53:52 -08001
Johannes Schindelin752c0c22009-10-19 14:38:32 +02002#include "cache.h"
Brandon Williams69aba532017-06-22 11:43:45 -07003#include "repository.h"
Brandon Williamsb2141fc2017-06-14 11:07:36 -07004#include "config.h"
Heiko Voigt851e18c2015-08-17 17:21:59 -07005#include "submodule-config.h"
Johannes Schindelin752c0c22009-10-19 14:38:32 +02006#include "submodule.h"
7#include "dir.h"
8#include "diff.h"
9#include "commit.h"
10#include "revision.h"
Jens Lehmannee6fc512010-01-16 18:42:24 +010011#include "run-command.h"
Jens Lehmannc7e1a732010-03-04 22:20:33 +010012#include "diffcore.h"
Heiko Voigt68d03e42010-07-07 15:39:13 +020013#include "refs.h"
Jens Lehmannaee9c7d2010-08-06 00:39:25 +020014#include "string-list.h"
Jeff Kingfe299ec2020-03-30 10:03:46 -040015#include "oid-array.h"
Jeff Kingdbbcd442020-07-28 16:23:39 -040016#include "strvec.h"
Jens Lehmann5fee9952013-07-30 21:50:34 +020017#include "blob.h"
Stefan Bellerfe85ee62015-12-15 16:04:11 -080018#include "thread-utils.h"
Jeff King46387282016-04-28 09:38:20 -040019#include "quote.h"
Brandon Williams06bf4ad2017-04-05 10:47:19 -070020#include "remote.h"
Stefan Bellerf6f85862016-12-12 11:04:35 -080021#include "worktree.h"
Stefan Beller046b4822017-05-31 17:30:47 -070022#include "parse-options.h"
Stefan Beller0d4a1322018-03-23 18:20:56 +010023#include "object-store.h"
Derrick Stolee64043552018-07-20 16:33:04 +000024#include "commit-reach.h"
Jens Lehmannaee9c7d2010-08-06 00:39:25 +020025
Stefan Bellerd7a38032017-05-26 12:10:12 -070026static int config_update_recurse_submodules = RECURSE_SUBMODULES_OFF;
Jeff King6859de42011-09-12 15:56:52 -040027static int initialized_fetch_ref_tips;
brian m. carlson910650d2017-03-31 01:40:00 +000028static struct oid_array ref_tips_before_fetch;
29static struct oid_array ref_tips_after_fetch;
Jeff King6859de42011-09-12 15:56:52 -040030
Jens Lehmannd4e98b52011-05-14 18:26:58 +020031/*
Brandon Williams34e2ba02017-08-02 12:49:21 -070032 * Check if the .gitmodules file is unmerged. Parsing of the .gitmodules file
33 * will be disabled because we can't guess what might be configured in
34 * .gitmodules unless the user resolves the conflict.
Jens Lehmannd4e98b52011-05-14 18:26:58 +020035 */
Derrick Stolee847a9e52021-04-01 01:49:39 +000036int is_gitmodules_unmerged(struct index_state *istate)
Brandon Williams34e2ba02017-08-02 12:49:21 -070037{
38 int pos = index_name_pos(istate, GITMODULES_FILE, strlen(GITMODULES_FILE));
39 if (pos < 0) { /* .gitmodules not found or isn't merged */
40 pos = -1 - pos;
41 if (istate->cache_nr > pos) { /* there is a .gitmodules */
42 const struct cache_entry *ce = istate->cache[pos];
43 if (ce_namelen(ce) == strlen(GITMODULES_FILE) &&
44 !strcmp(ce->name, GITMODULES_FILE))
45 return 1;
46 }
47 }
48
49 return 0;
50}
Johannes Schindelin752c0c22009-10-19 14:38:32 +020051
Jens Lehmann5fee9952013-07-30 21:50:34 +020052/*
Antonio Ospiteb5c259f2018-10-05 15:05:59 +020053 * Check if the .gitmodules file is safe to write.
54 *
55 * Writing to the .gitmodules file requires that the file exists in the
56 * working tree or, if it doesn't, that a brand new .gitmodules file is going
57 * to be created (i.e. it's neither in the index nor in the current branch).
58 *
59 * It is not safe to write to .gitmodules if it's not in the working tree but
60 * it is in the index or in the current branch, because writing new values
61 * (and staging them) would blindly overwrite ALL the old content.
62 */
63int is_writing_gitmodules_ok(void)
64{
65 struct object_id oid;
66 return file_exists(GITMODULES_FILE) ||
67 (get_oid(GITMODULES_INDEX, &oid) < 0 && get_oid(GITMODULES_HEAD, &oid) < 0);
68}
69
70/*
Brandon Williams91b83482017-08-02 12:49:20 -070071 * Check if the .gitmodules file has unstaged modifications. This must be
72 * checked before allowing modifications to the .gitmodules file with the
73 * intention to stage them later, because when continuing we would stage the
74 * modifications the user didn't stage herself too. That might change in a
75 * future version when we learn to stage the changes we do ourselves without
76 * staging any previous modifications.
Jens Lehmann5fee9952013-07-30 21:50:34 +020077 */
Brandon Williams7da9aba2017-12-12 11:53:51 -080078int is_staging_gitmodules_ok(struct index_state *istate)
Jens Lehmann5fee9952013-07-30 21:50:34 +020079{
Brandon Williams91b83482017-08-02 12:49:20 -070080 int pos = index_name_pos(istate, GITMODULES_FILE, strlen(GITMODULES_FILE));
81
82 if ((pos >= 0) && (pos < istate->cache_nr)) {
83 struct stat st;
84 if (lstat(GITMODULES_FILE, &st) == 0 &&
David Turner7edee322020-01-27 13:58:56 -050085 ie_modified(istate, istate->cache[pos], &st, 0) & DATA_CHANGED)
Brandon Williams91b83482017-08-02 12:49:20 -070086 return 0;
87 }
88
89 return 1;
Jens Lehmann5fee9952013-07-30 21:50:34 +020090}
91
Nguyễn Thái Ngọc Duy2e2d4042017-08-23 19:36:57 +070092static int for_each_remote_ref_submodule(const char *submodule,
93 each_ref_fn fn, void *cb_data)
94{
95 return refs_for_each_remote_ref(get_submodule_ref_store(submodule),
96 fn, cb_data);
97}
98
Jens Lehmann06567812013-08-06 21:15:11 +020099/*
100 * Try to update the "path" entry in the "submodule.<name>" section of the
101 * .gitmodules file. Return 0 only if a .gitmodules file was found, a section
102 * with the correct path=<oldpath> setting was found and we could update it.
103 */
104int update_path_in_gitmodules(const char *oldpath, const char *newpath)
105{
106 struct strbuf entry = STRBUF_INIT;
Heiko Voigt851e18c2015-08-17 17:21:59 -0700107 const struct submodule *submodule;
Antonio Ospite45f5ef32018-10-05 15:05:53 +0200108 int ret;
Jens Lehmann06567812013-08-06 21:15:11 +0200109
Brandon Williams4c0eeaf2017-08-02 12:49:16 -0700110 if (!file_exists(GITMODULES_FILE)) /* Do nothing without .gitmodules */
Jens Lehmann06567812013-08-06 21:15:11 +0200111 return -1;
112
Nguyễn Thái Ngọc Duy68f08b42018-08-13 18:14:31 +0200113 if (is_gitmodules_unmerged(the_repository->index))
Jens Lehmann06567812013-08-06 21:15:11 +0200114 die(_("Cannot change unmerged .gitmodules, resolve merge conflicts first"));
115
brian m. carlson14228442021-04-26 01:02:56 +0000116 submodule = submodule_from_path(the_repository, null_oid(), oldpath);
Heiko Voigt851e18c2015-08-17 17:21:59 -0700117 if (!submodule || !submodule->name) {
Jens Lehmann06567812013-08-06 21:15:11 +0200118 warning(_("Could not find section in .gitmodules where path=%s"), oldpath);
119 return -1;
120 }
121 strbuf_addstr(&entry, "submodule.");
Heiko Voigt851e18c2015-08-17 17:21:59 -0700122 strbuf_addstr(&entry, submodule->name);
Jens Lehmann06567812013-08-06 21:15:11 +0200123 strbuf_addstr(&entry, ".path");
Antonio Ospite45f5ef32018-10-05 15:05:53 +0200124 ret = config_set_in_gitmodules_file_gently(entry.buf, newpath);
Jens Lehmann06567812013-08-06 21:15:11 +0200125 strbuf_release(&entry);
Antonio Ospite45f5ef32018-10-05 15:05:53 +0200126 return ret;
Jens Lehmann06567812013-08-06 21:15:11 +0200127}
128
Jens Lehmann95c16412013-08-06 21:15:25 +0200129/*
130 * Try to remove the "submodule.<name>" section from .gitmodules where the given
131 * path is configured. Return 0 only if a .gitmodules file was found, a section
132 * with the correct path=<path> setting was found and we could remove it.
133 */
134int remove_path_from_gitmodules(const char *path)
135{
136 struct strbuf sect = STRBUF_INIT;
Heiko Voigt851e18c2015-08-17 17:21:59 -0700137 const struct submodule *submodule;
Jens Lehmann95c16412013-08-06 21:15:25 +0200138
Brandon Williams4c0eeaf2017-08-02 12:49:16 -0700139 if (!file_exists(GITMODULES_FILE)) /* Do nothing without .gitmodules */
Jens Lehmann95c16412013-08-06 21:15:25 +0200140 return -1;
141
Nguyễn Thái Ngọc Duy68f08b42018-08-13 18:14:31 +0200142 if (is_gitmodules_unmerged(the_repository->index))
Jens Lehmann95c16412013-08-06 21:15:25 +0200143 die(_("Cannot change unmerged .gitmodules, resolve merge conflicts first"));
144
brian m. carlson14228442021-04-26 01:02:56 +0000145 submodule = submodule_from_path(the_repository, null_oid(), path);
Heiko Voigt851e18c2015-08-17 17:21:59 -0700146 if (!submodule || !submodule->name) {
Jens Lehmann95c16412013-08-06 21:15:25 +0200147 warning(_("Could not find section in .gitmodules where path=%s"), path);
148 return -1;
149 }
150 strbuf_addstr(&sect, "submodule.");
Heiko Voigt851e18c2015-08-17 17:21:59 -0700151 strbuf_addstr(&sect, submodule->name);
Brandon Williams4c0eeaf2017-08-02 12:49:16 -0700152 if (git_config_rename_section_in_file(GITMODULES_FILE, sect.buf, NULL) < 0) {
Jens Lehmann95c16412013-08-06 21:15:25 +0200153 /* Maybe the user already did that, don't error out here */
154 warning(_("Could not remove .gitmodules entry for %s"), path);
155 strbuf_release(&sect);
156 return -1;
157 }
158 strbuf_release(&sect);
159 return 0;
160}
161
Brandon Williams3b8317a2017-12-12 11:53:50 -0800162void stage_updated_gitmodules(struct index_state *istate)
Jens Lehmann5fee9952013-07-30 21:50:34 +0200163{
Brandon Williams3b8317a2017-12-12 11:53:50 -0800164 if (add_file_to_index(istate, GITMODULES_FILE, 0))
Jens Lehmann5fee9952013-07-30 21:50:34 +0200165 die(_("staging updated .gitmodules failed"));
166}
167
Jonathan Tana35e03d2021-08-16 14:09:51 -0700168static struct string_list added_submodule_odb_paths = STRING_LIST_INIT_NODUP;
169
Stefan Beller18cfc082018-05-15 13:00:28 -0700170/* TODO: remove this function, use repo_submodule_init instead. */
171int add_submodule_odb(const char *path)
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200172{
173 struct strbuf objects_directory = STRBUF_INIT;
Jens Lehmannde7a7962010-01-31 17:43:49 +0100174 int ret = 0;
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200175
Jacob Keller99b43a62016-08-31 16:27:22 -0700176 ret = strbuf_git_path_submodule(&objects_directory, path, "objects/");
177 if (ret)
178 goto done;
Jens Lehmannde7a7962010-01-31 17:43:49 +0100179 if (!is_directory(objects_directory.buf)) {
180 ret = -1;
181 goto done;
182 }
Jonathan Tana35e03d2021-08-16 14:09:51 -0700183 string_list_insert(&added_submodule_odb_paths,
184 strbuf_detach(&objects_directory, NULL));
Jens Lehmannde7a7962010-01-31 17:43:49 +0100185done:
186 strbuf_release(&objects_directory);
187 return ret;
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200188}
189
Jonathan Tan8d33c3a2021-08-16 14:09:52 -0700190void add_submodule_odb_by_path(const char *path)
191{
192 string_list_insert(&added_submodule_odb_paths, xstrdup(path));
193}
194
Jonathan Tana35e03d2021-08-16 14:09:51 -0700195int register_all_submodule_odb_as_alternates(void)
196{
197 int i;
198 int ret = added_submodule_odb_paths.nr;
199
200 for (i = 0; i < added_submodule_odb_paths.nr; i++)
201 add_to_alternates_memory(added_submodule_odb_paths.items[i].string);
202 if (ret) {
203 string_list_clear(&added_submodule_odb_paths, 0);
Jonathan Tan71ef66d2021-10-08 14:08:20 -0700204 trace2_data_intmax("submodule", the_repository,
205 "register_all_submodule_odb_as_alternates/registered", ret);
Jonathan Tana35e03d2021-08-16 14:09:51 -0700206 if (git_env_bool("GIT_TEST_FATAL_REGISTER_SUBMODULE_ODB", 0))
207 BUG("register_all_submodule_odb_as_alternates() called");
208 }
209 return ret;
210}
211
Jens Lehmannaee9c7d2010-08-06 00:39:25 +0200212void set_diffopt_flags_from_submodule_config(struct diff_options *diffopt,
213 const char *path)
214{
Stefan Beller3b8fb392018-03-28 15:35:29 -0700215 const struct submodule *submodule = submodule_from_path(the_repository,
brian m. carlson14228442021-04-26 01:02:56 +0000216 null_oid(),
217 path);
Heiko Voigt851e18c2015-08-17 17:21:59 -0700218 if (submodule) {
Brandon Williamsfdfa9e92017-08-03 11:19:52 -0700219 const char *ignore;
220 char *key;
221
222 key = xstrfmt("submodule.%s.ignore", submodule->name);
Jeff Kingf1de9812020-08-14 12:17:36 -0400223 if (repo_config_get_string_tmp(the_repository, key, &ignore))
Brandon Williamsfdfa9e92017-08-03 11:19:52 -0700224 ignore = submodule->ignore;
225 free(key);
226
227 if (ignore)
228 handle_ignore_submodules_arg(diffopt, ignore);
Nguyễn Thái Ngọc Duy68f08b42018-08-13 18:14:31 +0200229 else if (is_gitmodules_unmerged(the_repository->index))
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700230 diffopt->flags.ignore_submodules = 1;
Jens Lehmannaee9c7d2010-08-06 00:39:25 +0200231 }
232}
233
Stefan Beller046b4822017-05-31 17:30:47 -0700234/* Cheap function that only determines if we're interested in submodules at all */
235int git_default_submodule_config(const char *var, const char *value, void *cb)
236{
237 if (!strcmp(var, "submodule.recurse")) {
238 int v = git_config_bool(var, value) ?
239 RECURSE_SUBMODULES_ON : RECURSE_SUBMODULES_OFF;
240 config_update_recurse_submodules = v;
241 }
242 return 0;
Stefan Beller1d789d02017-05-26 12:10:13 -0700243}
244
Stefan Bellerd7a38032017-05-26 12:10:12 -0700245int option_parse_recurse_submodules_worktree_updater(const struct option *opt,
246 const char *arg, int unset)
247{
248 if (unset) {
249 config_update_recurse_submodules = RECURSE_SUBMODULES_OFF;
250 return 0;
251 }
252 if (arg)
253 config_update_recurse_submodules =
254 parse_update_recurse_submodules_arg(opt->long_name,
255 arg);
256 else
257 config_update_recurse_submodules = RECURSE_SUBMODULES_ON;
258
259 return 0;
260}
261
Brandon Williams5688c282016-12-16 11:03:16 -0800262/*
Brandon Williamsf9f42562016-12-16 11:03:17 -0800263 * Determine if a submodule has been initialized at a given 'path'
264 */
Atharva Raykara4521282021-08-06 19:34:31 +0530265/*
266 * NEEDSWORK: Emit a warning if submodule.active exists, but is valueless,
267 * ie, the config looks like: "[submodule] active\n".
268 * Since that is an invalid pathspec, we should inform the user.
269 */
Glen Choo961b1302022-01-28 16:04:45 -0800270int is_tree_submodule_active(struct repository *repo,
271 const struct object_id *treeish_name,
272 const char *path)
Brandon Williamsf9f42562016-12-16 11:03:17 -0800273{
274 int ret = 0;
Brandon Williamsa086f922017-03-17 15:38:01 -0700275 char *key = NULL;
276 char *value = NULL;
277 const struct string_list *sl;
Brandon Williams627d9342017-06-22 11:43:46 -0700278 const struct submodule *module;
279
Glen Choo961b1302022-01-28 16:04:45 -0800280 module = submodule_from_path(repo, treeish_name, path);
Brandon Williamsf9f42562016-12-16 11:03:17 -0800281
Brandon Williamsa086f922017-03-17 15:38:01 -0700282 /* early return if there isn't a path->module mapping */
283 if (!module)
284 return 0;
Brandon Williamsf9f42562016-12-16 11:03:17 -0800285
Brandon Williamsa086f922017-03-17 15:38:01 -0700286 /* submodule.<name>.active is set */
287 key = xstrfmt("submodule.%s.active", module->name);
Brandon Williams627d9342017-06-22 11:43:46 -0700288 if (!repo_config_get_bool(repo, key, &ret)) {
Brandon Williamsf9f42562016-12-16 11:03:17 -0800289 free(key);
Brandon Williamsa086f922017-03-17 15:38:01 -0700290 return ret;
291 }
292 free(key);
293
294 /* submodule.active is set */
Brandon Williams627d9342017-06-22 11:43:46 -0700295 sl = repo_config_get_value_multi(repo, "submodule.active");
Brandon Williamsa086f922017-03-17 15:38:01 -0700296 if (sl) {
297 struct pathspec ps;
Jeff Kingc972bf42020-07-28 16:25:12 -0400298 struct strvec args = STRVEC_INIT;
Brandon Williamsa086f922017-03-17 15:38:01 -0700299 const struct string_list_item *item;
300
301 for_each_string_list_item(item, sl) {
Jeff Kingc972bf42020-07-28 16:25:12 -0400302 strvec_push(&args, item->string);
Brandon Williamsa086f922017-03-17 15:38:01 -0700303 }
304
Jeff Kingd70a9eb2020-07-28 20:37:20 -0400305 parse_pathspec(&ps, 0, 0, NULL, args.v);
Nguyễn Thái Ngọc Duy68f08b42018-08-13 18:14:31 +0200306 ret = match_pathspec(repo->index, &ps, path, strlen(path), 0, NULL, 1);
Brandon Williamsa086f922017-03-17 15:38:01 -0700307
Jeff Kingc972bf42020-07-28 16:25:12 -0400308 strvec_clear(&args);
Brandon Williamsa086f922017-03-17 15:38:01 -0700309 clear_pathspec(&ps);
310 return ret;
Brandon Williamsf9f42562016-12-16 11:03:17 -0800311 }
312
Brandon Williamsa086f922017-03-17 15:38:01 -0700313 /* fallback to checking if the URL is set */
314 key = xstrfmt("submodule.%s.url", module->name);
Brandon Williams627d9342017-06-22 11:43:46 -0700315 ret = !repo_config_get_string(repo, key, &value);
Brandon Williamsa086f922017-03-17 15:38:01 -0700316
317 free(value);
318 free(key);
Brandon Williamsf9f42562016-12-16 11:03:17 -0800319 return ret;
320}
321
Glen Choo961b1302022-01-28 16:04:45 -0800322int is_submodule_active(struct repository *repo, const char *path)
323{
324 return is_tree_submodule_active(repo, null_oid(), path);
325}
326
Stefan Beller15cdc642017-03-14 14:46:31 -0700327int is_submodule_populated_gently(const char *path, int *return_error_code)
Brandon Williams5688c282016-12-16 11:03:16 -0800328{
329 int ret = 0;
330 char *gitdir = xstrfmt("%s/.git", path);
331
Stefan Beller15cdc642017-03-14 14:46:31 -0700332 if (resolve_gitdir_gently(gitdir, return_error_code))
Brandon Williams5688c282016-12-16 11:03:16 -0800333 ret = 1;
334
335 free(gitdir);
336 return ret;
337}
338
Brandon Williamsbdab9722017-05-09 12:17:59 -0700339/*
340 * Dies if the provided 'prefix' corresponds to an unpopulated submodule
341 */
Derrick Stolee847a9e52021-04-01 01:49:39 +0000342void die_in_unpopulated_submodule(struct index_state *istate,
Brandon Williamsbdab9722017-05-09 12:17:59 -0700343 const char *prefix)
344{
345 int i, prefixlen;
346
347 if (!prefix)
348 return;
349
350 prefixlen = strlen(prefix);
351
352 for (i = 0; i < istate->cache_nr; i++) {
353 struct cache_entry *ce = istate->cache[i];
354 int ce_len = ce_namelen(ce);
355
356 if (!S_ISGITLINK(ce->ce_mode))
357 continue;
358 if (prefixlen <= ce_len)
359 continue;
360 if (strncmp(ce->name, prefix, ce_len))
361 continue;
362 if (prefix[ce_len] != '/')
363 continue;
364
365 die(_("in unpopulated submodule '%s'"), ce->name);
366 }
367}
368
Brandon Williamsc08397e2017-05-11 15:04:24 -0700369/*
370 * Dies if any paths in the provided pathspec descends into a submodule
371 */
Derrick Stolee847a9e52021-04-01 01:49:39 +0000372void die_path_inside_submodule(struct index_state *istate,
Brandon Williamsc08397e2017-05-11 15:04:24 -0700373 const struct pathspec *ps)
374{
375 int i, j;
376
377 for (i = 0; i < istate->cache_nr; i++) {
378 struct cache_entry *ce = istate->cache[i];
379 int ce_len = ce_namelen(ce);
380
381 if (!S_ISGITLINK(ce->ce_mode))
382 continue;
383
384 for (j = 0; j < ps->nr ; j++) {
385 const struct pathspec_item *item = &ps->items[j];
386
387 if (item->len <= ce_len)
388 continue;
389 if (item->match[ce_len] != '/')
390 continue;
391 if (strncmp(ce->name, item->match, ce_len))
392 continue;
393 if (item->len == ce_len + 1)
394 continue;
395
396 die(_("Pathspec '%s' is in submodule '%.*s'"),
397 item->original, ce_len, ce->name);
398 }
399 }
400}
401
Brandon Williamsec6141a2017-08-03 11:19:50 -0700402enum submodule_update_type parse_submodule_update_type(const char *value)
403{
404 if (!strcmp(value, "none"))
405 return SM_UPDATE_NONE;
406 else if (!strcmp(value, "checkout"))
407 return SM_UPDATE_CHECKOUT;
408 else if (!strcmp(value, "rebase"))
409 return SM_UPDATE_REBASE;
410 else if (!strcmp(value, "merge"))
411 return SM_UPDATE_MERGE;
412 else if (*value == '!')
413 return SM_UPDATE_COMMAND;
414 else
415 return SM_UPDATE_UNSPECIFIED;
416}
417
Stefan Bellerea2fa5a2016-02-29 18:07:11 -0800418int parse_submodule_update_strategy(const char *value,
419 struct submodule_update_strategy *dst)
420{
Brandon Williamsec6141a2017-08-03 11:19:50 -0700421 enum submodule_update_type type;
422
Stefan Bellerea2fa5a2016-02-29 18:07:11 -0800423 free((void*)dst->command);
424 dst->command = NULL;
Brandon Williamsec6141a2017-08-03 11:19:50 -0700425
426 type = parse_submodule_update_type(value);
427 if (type == SM_UPDATE_UNSPECIFIED)
Stefan Bellerea2fa5a2016-02-29 18:07:11 -0800428 return -1;
Brandon Williamsec6141a2017-08-03 11:19:50 -0700429
430 dst->type = type;
431 if (type == SM_UPDATE_COMMAND)
432 dst->command = xstrdup(value + 1);
433
Stefan Bellerea2fa5a2016-02-29 18:07:11 -0800434 return 0;
435}
436
Stefan Beller36042422016-04-15 17:50:13 -0700437const char *submodule_strategy_to_string(const struct submodule_update_strategy *s)
438{
439 struct strbuf sb = STRBUF_INIT;
440 switch (s->type) {
441 case SM_UPDATE_CHECKOUT:
442 return "checkout";
443 case SM_UPDATE_MERGE:
444 return "merge";
445 case SM_UPDATE_REBASE:
446 return "rebase";
447 case SM_UPDATE_NONE:
448 return "none";
449 case SM_UPDATE_UNSPECIFIED:
450 return NULL;
451 case SM_UPDATE_COMMAND:
452 strbuf_addf(&sb, "!%s", s->command);
453 return strbuf_detach(&sb, NULL);
454 }
455 return NULL;
456}
457
Jens Lehmann46a958b2010-06-25 16:56:47 +0200458void handle_ignore_submodules_arg(struct diff_options *diffopt,
459 const char *arg)
460{
Sangeeta Jain8ef93122020-11-10 14:09:00 +0530461 diffopt->flags.ignore_submodule_set = 1;
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700462 diffopt->flags.ignore_submodules = 0;
463 diffopt->flags.ignore_untracked_in_submodules = 0;
464 diffopt->flags.ignore_dirty_submodules = 0;
Johannes Schindelinbe4f2b42010-08-05 10:49:55 +0200465
Jens Lehmann46a958b2010-06-25 16:56:47 +0200466 if (!strcmp(arg, "all"))
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700467 diffopt->flags.ignore_submodules = 1;
Jens Lehmann46a958b2010-06-25 16:56:47 +0200468 else if (!strcmp(arg, "untracked"))
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700469 diffopt->flags.ignore_untracked_in_submodules = 1;
Jens Lehmann46a958b2010-06-25 16:56:47 +0200470 else if (!strcmp(arg, "dirty"))
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700471 diffopt->flags.ignore_dirty_submodules = 1;
Jens Lehmannaee9c7d2010-08-06 00:39:25 +0200472 else if (strcmp(arg, "none"))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +0100473 die(_("bad --ignore-submodules argument: %s"), arg);
Nguyễn Thái Ngọc Duy5a59a232019-02-16 18:24:41 +0700474 /*
475 * Please update _git_status() in git-completion.bash when you
476 * add new options
477 */
Jens Lehmann46a958b2010-06-25 16:56:47 +0200478}
479
Junio C Hamano4831c232020-09-18 17:58:05 -0700480static int prepare_submodule_diff_summary(struct repository *r, struct rev_info *rev,
481 const char *path,
482 struct commit *left, struct commit *right,
483 struct commit_list *merge_bases)
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500484{
Jacob Keller8e6df652016-08-31 16:27:24 -0700485 struct commit_list *list;
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500486
Michael Forney85a1ec22020-06-23 13:56:59 -0700487 repo_init_revisions(r, rev, NULL);
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500488 setup_revisions(0, NULL, rev, NULL);
489 rev->left_right = 1;
490 rev->first_parent_only = 1;
491 left->object.flags |= SYMMETRIC_LEFT;
492 add_pending_object(rev, &left->object, path);
493 add_pending_object(rev, &right->object, path);
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500494 for (list = merge_bases; list; list = list->next) {
495 list->item->object.flags |= UNINTERESTING;
496 add_pending_object(rev, &list->item->object,
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000497 oid_to_hex(&list->item->object.oid));
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500498 }
499 return prepare_revision_walk(rev);
500}
501
Shourya Shukla180b1542020-08-13 01:14:02 +0530502static void print_submodule_diff_summary(struct repository *r, struct rev_info *rev, struct diff_options *o)
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500503{
504 static const char format[] = " %m %s";
505 struct strbuf sb = STRBUF_INIT;
506 struct commit *commit;
507
508 while ((commit = get_revision(rev))) {
509 struct pretty_print_context ctx = {0};
510 ctx.date_mode = rev->date_mode;
Alexey Shumkinecaee802013-06-26 14:19:50 +0400511 ctx.output_encoding = get_log_output_encoding();
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500512 strbuf_setlen(&sb, 0);
Stefan Beller605f0ec2018-12-14 16:09:37 -0800513 repo_format_commit_message(r, commit, format, &sb,
514 &ctx);
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500515 strbuf_addch(&sb, '\n');
Stefan Bellerf3597132017-06-29 17:07:00 -0700516 if (commit->object.flags & SYMMETRIC_LEFT)
517 diff_emit_submodule_del(o, sb.buf);
518 else
519 diff_emit_submodule_add(o, sb.buf);
Jonathan Nieder808a95d2011-03-16 02:14:11 -0500520 }
521 strbuf_release(&sb);
522}
523
Jeff Kingc972bf42020-07-28 16:25:12 -0400524void prepare_submodule_repo_env(struct strvec *out)
Stefan Beller6cd57572017-03-14 14:46:35 -0700525{
Jonathan Tand1fa9432021-06-17 10:13:25 -0700526 prepare_other_repo_env(out, DEFAULT_GIT_DIR_ENVIRONMENT);
Stefan Beller6cd57572017-03-14 14:46:35 -0700527}
528
Jeff Kingc972bf42020-07-28 16:25:12 -0400529static void prepare_submodule_repo_env_in_gitdir(struct strvec *out)
Stefan Bellera62387b2018-11-28 16:27:55 -0800530{
Jonathan Tand1fa9432021-06-17 10:13:25 -0700531 prepare_other_repo_env(out, ".");
Stefan Bellera62387b2018-11-28 16:27:55 -0800532}
533
Stefan Beller605f0ec2018-12-14 16:09:37 -0800534/*
535 * Initialize a repository struct for a submodule based on the provided 'path'.
536 *
Stefan Beller605f0ec2018-12-14 16:09:37 -0800537 * Returns the repository struct on success,
538 * NULL when the submodule is not present.
Jacob Keller8e6df652016-08-31 16:27:24 -0700539 */
Stefan Beller605f0ec2018-12-14 16:09:37 -0800540static struct repository *open_submodule(const char *path)
541{
542 struct strbuf sb = STRBUF_INIT;
543 struct repository *out = xmalloc(sizeof(*out));
544
545 if (submodule_to_gitdir(&sb, path) || repo_init(out, sb.buf, NULL)) {
546 strbuf_release(&sb);
547 free(out);
548 return NULL;
549 }
550
551 /* Mark it as a submodule */
552 out->submodule_prefix = xstrdup(path);
553
554 strbuf_release(&sb);
555 return out;
556}
557
558/*
559 * Helper function to display the submodule header line prior to the full
560 * summary output.
561 *
562 * If it can locate the submodule git directory it will create a repository
563 * handle for the submodule and lookup both the left and right commits and
564 * put them into the left and right pointers.
565 */
566static void show_submodule_header(struct diff_options *o,
567 const char *path,
Jacob Keller602a2832016-08-31 16:27:23 -0700568 struct object_id *one, struct object_id *two,
Stefan Bellerf3597132017-06-29 17:07:00 -0700569 unsigned dirty_submodule,
Stefan Beller605f0ec2018-12-14 16:09:37 -0800570 struct repository *sub,
Jacob Keller8e6df652016-08-31 16:27:24 -0700571 struct commit **left, struct commit **right,
572 struct commit_list **merge_bases)
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200573{
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200574 const char *message = NULL;
575 struct strbuf sb = STRBUF_INIT;
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200576 int fast_forward = 0, fast_backward = 0;
577
Jens Lehmannc7e1a732010-03-04 22:20:33 +0100578 if (dirty_submodule & DIRTY_SUBMODULE_UNTRACKED)
Stefan Bellerf3597132017-06-29 17:07:00 -0700579 diff_emit_submodule_untracked(o, path);
580
Jens Lehmannc7e1a732010-03-04 22:20:33 +0100581 if (dirty_submodule & DIRTY_SUBMODULE_MODIFIED)
Stefan Bellerf3597132017-06-29 17:07:00 -0700582 diff_emit_submodule_modified(o, path);
Jens Lehmannc7e1a732010-03-04 22:20:33 +0100583
Jacob Keller8e6df652016-08-31 16:27:24 -0700584 if (is_null_oid(one))
585 message = "(new submodule)";
586 else if (is_null_oid(two))
587 message = "(submodule deleted)";
588
Stefan Beller605f0ec2018-12-14 16:09:37 -0800589 if (!sub) {
Jacob Keller8e6df652016-08-31 16:27:24 -0700590 if (!message)
Stefan Beller2d94dd22017-09-26 11:27:56 -0700591 message = "(commits not present)";
Jacob Keller8e6df652016-08-31 16:27:24 -0700592 goto output_header;
593 }
594
595 /*
596 * Attempt to lookup the commit references, and determine if this is
597 * a fast forward or fast backwards update.
598 */
Stefan Beller605f0ec2018-12-14 16:09:37 -0800599 *left = lookup_commit_reference(sub, one);
600 *right = lookup_commit_reference(sub, two);
Jacob Keller8e6df652016-08-31 16:27:24 -0700601
602 /*
603 * Warn about missing commits in the submodule project, but only if
604 * they aren't null.
605 */
606 if ((!is_null_oid(one) && !*left) ||
607 (!is_null_oid(two) && !*right))
608 message = "(commits not present)";
609
Stefan Beller605f0ec2018-12-14 16:09:37 -0800610 *merge_bases = repo_get_merge_bases(sub, *left, *right);
Jacob Keller8e6df652016-08-31 16:27:24 -0700611 if (*merge_bases) {
612 if ((*merge_bases)->item == *left)
613 fast_forward = 1;
614 else if ((*merge_bases)->item == *right)
615 fast_backward = 1;
616 }
617
Jeff King4a7e27e2018-08-28 17:22:40 -0400618 if (oideq(one, two)) {
Jens Lehmannc7e1a732010-03-04 22:20:33 +0100619 strbuf_release(&sb);
620 return;
621 }
622
Jacob Keller8e6df652016-08-31 16:27:24 -0700623output_header:
Stefan Bellerf3597132017-06-29 17:07:00 -0700624 strbuf_addf(&sb, "Submodule %s ", path);
brian m. carlson30e677e2018-03-12 02:27:28 +0000625 strbuf_add_unique_abbrev(&sb, one, DEFAULT_ABBREV);
René Scharfea94bb682016-10-08 17:38:47 +0200626 strbuf_addstr(&sb, (fast_backward || fast_forward) ? ".." : "...");
brian m. carlson30e677e2018-03-12 02:27:28 +0000627 strbuf_add_unique_abbrev(&sb, two, DEFAULT_ABBREV);
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200628 if (message)
Stefan Bellerf3597132017-06-29 17:07:00 -0700629 strbuf_addf(&sb, " %s\n", message);
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200630 else
Stefan Bellerf3597132017-06-29 17:07:00 -0700631 strbuf_addf(&sb, "%s:\n", fast_backward ? " (rewind)" : "");
632 diff_emit_submodule_header(o, sb.buf);
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200633
Johannes Schindelin752c0c22009-10-19 14:38:32 +0200634 strbuf_release(&sb);
635}
Jens Lehmannee6fc512010-01-16 18:42:24 +0100636
Shourya Shukla180b1542020-08-13 01:14:02 +0530637void show_submodule_diff_summary(struct diff_options *o, const char *path,
Jacob Keller8e6df652016-08-31 16:27:24 -0700638 struct object_id *one, struct object_id *two,
Stefan Bellerf3597132017-06-29 17:07:00 -0700639 unsigned dirty_submodule)
Jacob Keller8e6df652016-08-31 16:27:24 -0700640{
641 struct rev_info rev;
642 struct commit *left = NULL, *right = NULL;
643 struct commit_list *merge_bases = NULL;
Stefan Beller605f0ec2018-12-14 16:09:37 -0800644 struct repository *sub;
Jacob Keller8e6df652016-08-31 16:27:24 -0700645
Stefan Beller605f0ec2018-12-14 16:09:37 -0800646 sub = open_submodule(path);
Stefan Bellerf3597132017-06-29 17:07:00 -0700647 show_submodule_header(o, path, one, two, dirty_submodule,
Stefan Beller605f0ec2018-12-14 16:09:37 -0800648 sub, &left, &right, &merge_bases);
Jacob Keller8e6df652016-08-31 16:27:24 -0700649
650 /*
651 * If we don't have both a left and a right pointer, there is no
652 * reason to try and display a summary. The header line should contain
653 * all the information the user needs.
654 */
Stefan Beller605f0ec2018-12-14 16:09:37 -0800655 if (!left || !right || !sub)
Jacob Keller8e6df652016-08-31 16:27:24 -0700656 goto out;
657
658 /* Treat revision walker failure the same as missing commits */
Junio C Hamano4831c232020-09-18 17:58:05 -0700659 if (prepare_submodule_diff_summary(sub, &rev, path, left, right, merge_bases)) {
Stefan Bellerf3597132017-06-29 17:07:00 -0700660 diff_emit_submodule_error(o, "(revision walker failed)\n");
Jacob Keller8e6df652016-08-31 16:27:24 -0700661 goto out;
662 }
663
Shourya Shukla180b1542020-08-13 01:14:02 +0530664 print_submodule_diff_summary(sub, &rev, o);
Jacob Keller8e6df652016-08-31 16:27:24 -0700665
666out:
Ævar Arnfjörð Bjarmasonbf20fe42022-04-13 22:01:34 +0200667 free_commit_list(merge_bases);
Jacob Keller8e6df652016-08-31 16:27:24 -0700668 clear_commit_marks(left, ~0);
669 clear_commit_marks(right, ~0);
Stefan Beller605f0ec2018-12-14 16:09:37 -0800670 if (sub) {
671 repo_clear(sub);
672 free(sub);
673 }
Jacob Keller8e6df652016-08-31 16:27:24 -0700674}
675
Stefan Bellerf3597132017-06-29 17:07:00 -0700676void show_submodule_inline_diff(struct diff_options *o, const char *path,
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700677 struct object_id *one, struct object_id *two,
Stefan Bellerf3597132017-06-29 17:07:00 -0700678 unsigned dirty_submodule)
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700679{
Brandon Williamsbc099912018-02-14 10:59:49 -0800680 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 -0700681 struct commit *left = NULL, *right = NULL;
682 struct commit_list *merge_bases = NULL;
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700683 struct child_process cp = CHILD_PROCESS_INIT;
Stefan Bellerf3597132017-06-29 17:07:00 -0700684 struct strbuf sb = STRBUF_INIT;
Stefan Beller605f0ec2018-12-14 16:09:37 -0800685 struct repository *sub;
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700686
Stefan Beller605f0ec2018-12-14 16:09:37 -0800687 sub = open_submodule(path);
Stefan Bellerf3597132017-06-29 17:07:00 -0700688 show_submodule_header(o, path, one, two, dirty_submodule,
Stefan Beller605f0ec2018-12-14 16:09:37 -0800689 sub, &left, &right, &merge_bases);
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700690
691 /* We need a valid left and right commit to display a difference */
692 if (!(left || is_null_oid(one)) ||
693 !(right || is_null_oid(two)))
694 goto done;
695
696 if (left)
Brandon Williamsbc099912018-02-14 10:59:49 -0800697 old_oid = one;
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700698 if (right)
Brandon Williamsbc099912018-02-14 10:59:49 -0800699 new_oid = two;
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700700
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700701 cp.git_cmd = 1;
702 cp.dir = path;
Stefan Bellerf3597132017-06-29 17:07:00 -0700703 cp.out = -1;
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700704 cp.no_stdin = 1;
705
706 /* TODO: other options may need to be passed here. */
Jeff Kingc972bf42020-07-28 16:25:12 -0400707 strvec_pushl(&cp.args, "diff", "--submodule=diff", NULL);
708 strvec_pushf(&cp.args, "--color=%s", want_color(o->use_color) ?
Stefan Bellerf3597132017-06-29 17:07:00 -0700709 "always" : "never");
Stefan Beller5a522142017-05-04 14:43:55 -0700710
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700711 if (o->flags.reverse_diff) {
Jeff Kingc972bf42020-07-28 16:25:12 -0400712 strvec_pushf(&cp.args, "--src-prefix=%s%s/",
Jeff Kingf6d89422020-07-28 16:26:31 -0400713 o->b_prefix, path);
Jeff Kingc972bf42020-07-28 16:25:12 -0400714 strvec_pushf(&cp.args, "--dst-prefix=%s%s/",
Jeff Kingf6d89422020-07-28 16:26:31 -0400715 o->a_prefix, path);
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700716 } else {
Jeff Kingc972bf42020-07-28 16:25:12 -0400717 strvec_pushf(&cp.args, "--src-prefix=%s%s/",
Jeff Kingf6d89422020-07-28 16:26:31 -0400718 o->a_prefix, path);
Jeff Kingc972bf42020-07-28 16:25:12 -0400719 strvec_pushf(&cp.args, "--dst-prefix=%s%s/",
Jeff Kingf6d89422020-07-28 16:26:31 -0400720 o->b_prefix, path);
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700721 }
Jeff Kingc972bf42020-07-28 16:25:12 -0400722 strvec_push(&cp.args, oid_to_hex(old_oid));
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700723 /*
724 * If the submodule has modified content, we will diff against the
725 * work tree, under the assumption that the user has asked for the
726 * diff format and wishes to actually see all differences even if they
727 * haven't yet been committed to the submodule yet.
728 */
729 if (!(dirty_submodule & DIRTY_SUBMODULE_MODIFIED))
Jeff Kingc972bf42020-07-28 16:25:12 -0400730 strvec_push(&cp.args, oid_to_hex(new_oid));
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700731
Stefan Beller17b254c2017-03-31 16:17:32 -0700732 prepare_submodule_repo_env(&cp.env_array);
David Turnerf1c03682021-08-31 09:12:56 -0400733
734 if (!is_directory(path)) {
735 /* fall back to absorbed git dir, if any */
736 if (!sub)
737 goto done;
738 cp.dir = sub->gitdir;
739 strvec_push(&cp.env_array, GIT_DIR_ENVIRONMENT "=.");
740 strvec_push(&cp.env_array, GIT_WORK_TREE_ENVIRONMENT "=.");
741 }
742
David Turner67f61ef2021-08-31 09:12:57 -0400743 if (start_command(&cp)) {
Stefan Bellerf3597132017-06-29 17:07:00 -0700744 diff_emit_submodule_error(o, "(diff failed)\n");
David Turner67f61ef2021-08-31 09:12:57 -0400745 goto done;
746 }
Stefan Bellerf3597132017-06-29 17:07:00 -0700747
748 while (strbuf_getwholeline_fd(&sb, cp.out, '\n') != EOF)
749 diff_emit_submodule_pipethrough(o, sb.buf, sb.len);
750
751 if (finish_command(&cp))
752 diff_emit_submodule_error(o, "(diff failed)\n");
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700753
754done:
Stefan Bellerf3597132017-06-29 17:07:00 -0700755 strbuf_release(&sb);
Ævar Arnfjörð Bjarmasonbf20fe42022-04-13 22:01:34 +0200756 free_commit_list(merge_bases);
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700757 if (left)
758 clear_commit_marks(left, ~0);
759 if (right)
760 clear_commit_marks(right, ~0);
Stefan Beller605f0ec2018-12-14 16:09:37 -0800761 if (sub) {
762 repo_clear(sub);
763 free(sub);
764 }
Jacob Kellerfd47ae62016-08-31 16:27:25 -0700765}
766
Stefan Beller84f89252017-03-14 14:46:34 -0700767int should_update_submodules(void)
768{
769 return config_update_recurse_submodules == RECURSE_SUBMODULES_ON;
770}
771
772const struct submodule *submodule_from_ce(const struct cache_entry *ce)
773{
774 if (!S_ISGITLINK(ce->ce_mode))
775 return NULL;
776
777 if (!should_update_submodules())
778 return NULL;
779
brian m. carlson14228442021-04-26 01:02:56 +0000780 return submodule_from_path(the_repository, null_oid(), ce->name);
Stefan Beller84f89252017-03-14 14:46:34 -0700781}
782
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700783static struct oid_array *submodule_commits(struct string_list *submodules,
Heiko Voigtc68f8372017-10-16 15:58:27 +0200784 const char *name)
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700785{
786 struct string_list_item *item;
787
Heiko Voigtc68f8372017-10-16 15:58:27 +0200788 item = string_list_insert(submodules, name);
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700789 if (item->util)
790 return (struct oid_array *) item->util;
791
792 /* NEEDSWORK: should we have oid_array_init()? */
793 item->util = xcalloc(1, sizeof(struct oid_array));
794 return (struct oid_array *) item->util;
795}
796
Heiko Voigtc68f8372017-10-16 15:58:27 +0200797struct collect_changed_submodules_cb_data {
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200798 struct repository *repo;
Heiko Voigtc68f8372017-10-16 15:58:27 +0200799 struct string_list *changed;
800 const struct object_id *commit_oid;
801};
802
803/*
804 * this would normally be two functions: default_name_from_path() and
805 * path_from_default_name(). Since the default name is the same as
806 * the submodule path we can get away with just one function which only
807 * checks whether there is a submodule in the working directory at that
808 * location.
809 */
810static const char *default_name_or_path(const char *path_or_name)
811{
812 int error_code;
813
814 if (!is_submodule_populated_gently(path_or_name, &error_code))
815 return NULL;
816
817 return path_or_name;
818}
819
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700820static void collect_changed_submodules_cb(struct diff_queue_struct *q,
821 struct diff_options *options,
822 void *data)
823{
Heiko Voigtc68f8372017-10-16 15:58:27 +0200824 struct collect_changed_submodules_cb_data *me = data;
825 struct string_list *changed = me->changed;
826 const struct object_id *commit_oid = me->commit_oid;
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700827 int i;
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700828
829 for (i = 0; i < q->nr; i++) {
830 struct diff_filepair *p = q->queue[i];
831 struct oid_array *commits;
Heiko Voigtc68f8372017-10-16 15:58:27 +0200832 const struct submodule *submodule;
833 const char *name;
834
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700835 if (!S_ISGITLINK(p->two->mode))
836 continue;
837
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200838 submodule = submodule_from_path(me->repo,
Stefan Beller3b8fb392018-03-28 15:35:29 -0700839 commit_oid, p->two->path);
Heiko Voigtc68f8372017-10-16 15:58:27 +0200840 if (submodule)
841 name = submodule->name;
842 else {
843 name = default_name_or_path(p->two->path);
844 /* make sure name does not collide with existing one */
Stefan Beller5fc84752018-06-14 10:31:07 -0700845 if (name)
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200846 submodule = submodule_from_name(me->repo,
Stefan Beller5fc84752018-06-14 10:31:07 -0700847 commit_oid, name);
Heiko Voigtc68f8372017-10-16 15:58:27 +0200848 if (submodule) {
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +0100849 warning(_("Submodule in commit %s at path: "
Heiko Voigtc68f8372017-10-16 15:58:27 +0200850 "'%s' collides with a submodule named "
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +0100851 "the same. Skipping it."),
Stefan Beller5fc84752018-06-14 10:31:07 -0700852 oid_to_hex(commit_oid), p->two->path);
Heiko Voigtc68f8372017-10-16 15:58:27 +0200853 name = NULL;
854 }
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700855 }
Heiko Voigtc68f8372017-10-16 15:58:27 +0200856
857 if (!name)
858 continue;
859
860 commits = submodule_commits(changed, name);
861 oid_array_append(commits, &p->two->oid);
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700862 }
863}
864
865/*
866 * Collect the paths of submodules in 'changed' which have changed based on
867 * the revisions as specified in 'argv'. Each entry in 'changed' will also
868 * have a corresponding 'struct oid_array' (in the 'util' field) which lists
869 * what the submodule pointers were updated to during the change.
870 */
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200871static void collect_changed_submodules(struct repository *r,
Nguyễn Thái Ngọc Duy174d1312018-09-21 17:57:35 +0200872 struct string_list *changed,
Jeff Kingc972bf42020-07-28 16:25:12 -0400873 struct strvec *argv)
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700874{
875 struct rev_info rev;
876 const struct commit *commit;
Orgad Shaneha462bee2020-09-06 20:53:55 +0000877 int save_warning;
878 struct setup_revision_opt s_r_opt = {
879 .assume_dashdash = 1,
880 };
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700881
Orgad Shaneha462bee2020-09-06 20:53:55 +0000882 save_warning = warn_on_object_refname_ambiguity;
883 warn_on_object_refname_ambiguity = 0;
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200884 repo_init_revisions(r, &rev, NULL);
Orgad Shaneha462bee2020-09-06 20:53:55 +0000885 setup_revisions(argv->nr, argv->v, &rev, &s_r_opt);
886 warn_on_object_refname_ambiguity = save_warning;
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700887 if (prepare_revision_walk(&rev))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +0100888 die(_("revision walk setup failed"));
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700889
890 while ((commit = get_revision(&rev))) {
891 struct rev_info diff_rev;
Heiko Voigtc68f8372017-10-16 15:58:27 +0200892 struct collect_changed_submodules_cb_data data;
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200893 data.repo = r;
Heiko Voigtc68f8372017-10-16 15:58:27 +0200894 data.changed = changed;
895 data.commit_oid = &commit->object.oid;
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700896
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200897 repo_init_revisions(r, &diff_rev, NULL);
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700898 diff_rev.diffopt.output_format |= DIFF_FORMAT_CALLBACK;
899 diff_rev.diffopt.format_callback = collect_changed_submodules_cb;
Heiko Voigtc68f8372017-10-16 15:58:27 +0200900 diff_rev.diffopt.format_callback_data = &data;
Sergey Organovd01141d2020-09-29 14:31:22 +0300901 diff_rev.dense_combined_merges = 1;
902 diff_tree_combined_merge(commit, &diff_rev);
Brandon Williamsaacc5c12017-05-01 18:02:39 -0700903 }
904
905 reset_revision_walk();
906}
907
908static void free_submodules_oids(struct string_list *submodules)
909{
910 struct string_list_item *item;
911 for_each_string_list_item(item, submodules)
912 oid_array_clear((struct oid_array *) item->util);
913 string_list_clear(submodules, 1);
914}
915
Michael Haggerty7290ef52015-05-25 18:39:07 +0000916static int has_remote(const char *refname, const struct object_id *oid,
917 int flags, void *cb_data)
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +0200918{
919 return 1;
920}
921
brian m. carlson1b7ba792017-03-31 01:39:59 +0000922static int append_oid_to_argv(const struct object_id *oid, void *data)
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +0200923{
Jeff Kingc972bf42020-07-28 16:25:12 -0400924 struct strvec *argv = data;
925 strvec_push(argv, oid_to_hex(oid));
Heiko Voigt9cfa1c22016-11-16 16:11:05 +0100926 return 0;
927}
928
Stefan Beller3c96aa92017-09-12 10:30:27 -0700929struct has_commit_data {
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200930 struct repository *repo;
Stefan Beller3c96aa92017-09-12 10:30:27 -0700931 int result;
932 const char *path;
933};
934
brian m. carlson1b7ba792017-03-31 01:39:59 +0000935static int check_has_commit(const struct object_id *oid, void *data)
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +0200936{
Stefan Beller3c96aa92017-09-12 10:30:27 -0700937 struct has_commit_data *cb = data;
Jonathan Tan13a2f622021-10-08 14:08:19 -0700938 struct repository subrepo;
939 enum object_type type;
Heiko Voigt5b6607d2016-11-16 16:11:06 +0100940
Jonathan Tan13a2f622021-10-08 14:08:19 -0700941 if (repo_submodule_init(&subrepo, cb->repo, cb->path, null_oid())) {
942 cb->result = 0;
943 goto cleanup;
944 }
945
946 type = oid_object_info(&subrepo, oid, NULL);
Heiko Voigt5b6607d2016-11-16 16:11:06 +0100947
Stefan Beller3c96aa92017-09-12 10:30:27 -0700948 switch (type) {
949 case OBJ_COMMIT:
Jonathan Tan13a2f622021-10-08 14:08:19 -0700950 goto cleanup;
Stefan Beller3c96aa92017-09-12 10:30:27 -0700951 case OBJ_BAD:
952 /*
953 * Object is missing or invalid. If invalid, an error message
954 * has already been printed.
955 */
956 cb->result = 0;
Jonathan Tan13a2f622021-10-08 14:08:19 -0700957 goto cleanup;
Stefan Beller3c96aa92017-09-12 10:30:27 -0700958 default:
959 die(_("submodule entry '%s' (%s) is a %s, not a commit"),
Brandon Williamsdebca9d2018-02-14 10:59:24 -0800960 cb->path, oid_to_hex(oid), type_name(type));
Stefan Beller3c96aa92017-09-12 10:30:27 -0700961 }
Jonathan Tan13a2f622021-10-08 14:08:19 -0700962cleanup:
963 repo_clear(&subrepo);
964 return 0;
Heiko Voigt5b6607d2016-11-16 16:11:06 +0100965}
966
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200967static int submodule_has_commits(struct repository *r,
968 const char *path,
969 struct oid_array *commits)
Heiko Voigt5b6607d2016-11-16 16:11:06 +0100970{
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +0200971 struct has_commit_data has_commit = { r, 1, path };
Heiko Voigt5b6607d2016-11-16 16:11:06 +0100972
Brandon Williams7c8d2b02017-05-01 18:02:38 -0700973 /*
Ville Skyttä64127572017-06-25 13:20:41 +0300974 * Perform a cheap, but incorrect check for the existence of 'commits'.
Brandon Williams7c8d2b02017-05-01 18:02:38 -0700975 * This is done by adding the submodule's object store to the in-core
Ville Skyttä64127572017-06-25 13:20:41 +0300976 * object store, and then querying for each commit's existence. If we
Brandon Williams7c8d2b02017-05-01 18:02:38 -0700977 * do not have the commit object anywhere, there is no chance we have
978 * it in the object store of the correct submodule and have it
979 * reachable from a ref, so we can fail early without spawning rev-list
980 * which is expensive.
981 */
Heiko Voigt5b6607d2016-11-16 16:11:06 +0100982 if (add_submodule_odb(path))
983 return 0;
984
brian m. carlson910650d2017-03-31 01:40:00 +0000985 oid_array_for_each_unique(commits, check_has_commit, &has_commit);
Brandon Williams7c8d2b02017-05-01 18:02:38 -0700986
Stefan Beller3c96aa92017-09-12 10:30:27 -0700987 if (has_commit.result) {
Brandon Williams7c8d2b02017-05-01 18:02:38 -0700988 /*
989 * Even if the submodule is checked out and the commit is
990 * present, make sure it exists in the submodule's object store
991 * and that it is reachable from a ref.
992 */
993 struct child_process cp = CHILD_PROCESS_INIT;
994 struct strbuf out = STRBUF_INIT;
995
Jeff Kingc972bf42020-07-28 16:25:12 -0400996 strvec_pushl(&cp.args, "rev-list", "-n", "1", NULL);
Brandon Williams7c8d2b02017-05-01 18:02:38 -0700997 oid_array_for_each_unique(commits, append_oid_to_argv, &cp.args);
Jeff Kingc972bf42020-07-28 16:25:12 -0400998 strvec_pushl(&cp.args, "--not", "--all", NULL);
Brandon Williams7c8d2b02017-05-01 18:02:38 -0700999
1000 prepare_submodule_repo_env(&cp.env_array);
1001 cp.git_cmd = 1;
1002 cp.no_stdin = 1;
1003 cp.dir = path;
1004
1005 if (capture_command(&cp, &out, GIT_MAX_HEXSZ + 1) || out.len)
Stefan Beller3c96aa92017-09-12 10:30:27 -07001006 has_commit.result = 0;
Brandon Williams7c8d2b02017-05-01 18:02:38 -07001007
1008 strbuf_release(&out);
1009 }
1010
Stefan Beller3c96aa92017-09-12 10:30:27 -07001011 return has_commit.result;
Heiko Voigt5b6607d2016-11-16 16:11:06 +01001012}
1013
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001014static int submodule_needs_pushing(struct repository *r,
1015 const char *path,
1016 struct oid_array *commits)
Heiko Voigt5b6607d2016-11-16 16:11:06 +01001017{
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001018 if (!submodule_has_commits(r, path, commits))
Heiko Voigt250ab242016-11-16 16:11:07 +01001019 /*
1020 * NOTE: We do consider it safe to return "no" here. The
1021 * correct answer would be "We do not know" instead of
1022 * "No push needed", but it is quite hard to change
1023 * the submodule pointer without having the submodule
1024 * around. If a user did however change the submodules
1025 * without having the submodule around, this indicates
1026 * an expert who knows what they are doing or a
1027 * maintainer integrating work from other people. In
1028 * both cases it should be safe to skip this check.
1029 */
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001030 return 0;
1031
1032 if (for_each_remote_ref_submodule(path, has_remote, NULL) > 0) {
René Scharfed3180272014-08-19 21:09:35 +02001033 struct child_process cp = CHILD_PROCESS_INIT;
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001034 struct strbuf buf = STRBUF_INIT;
1035 int needs_pushing = 0;
1036
Jeff Kingc972bf42020-07-28 16:25:12 -04001037 strvec_push(&cp.args, "rev-list");
brian m. carlson910650d2017-03-31 01:40:00 +00001038 oid_array_for_each_unique(commits, append_oid_to_argv, &cp.args);
Jeff Kingc972bf42020-07-28 16:25:12 -04001039 strvec_pushl(&cp.args, "--not", "--remotes", "-n", "1" , NULL);
Heiko Voigt5b6607d2016-11-16 16:11:06 +01001040
Jeff Kingc12e8652016-04-28 09:39:15 -04001041 prepare_submodule_repo_env(&cp.env_array);
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001042 cp.git_cmd = 1;
1043 cp.no_stdin = 1;
1044 cp.out = -1;
1045 cp.dir = path;
1046 if (start_command(&cp))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001047 die(_("Could not run 'git rev-list <commits> --not --remotes -n 1' command in submodule %s"),
Heiko Voigt5b6607d2016-11-16 16:11:06 +01001048 path);
brian m. carlsondb1ba2a2019-02-19 00:04:59 +00001049 if (strbuf_read(&buf, cp.out, the_hash_algo->hexsz + 1))
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001050 needs_pushing = 1;
1051 finish_command(&cp);
1052 close(cp.out);
1053 strbuf_release(&buf);
1054 return needs_pushing;
1055 }
1056
1057 return 0;
1058}
1059
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001060int find_unpushed_submodules(struct repository *r,
Nguyễn Thái Ngọc Duy174d1312018-09-21 17:57:35 +02001061 struct oid_array *commits,
1062 const char *remotes_name,
1063 struct string_list *needs_pushing)
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001064{
Heiko Voigt14739442016-11-16 16:11:04 +01001065 struct string_list submodules = STRING_LIST_INIT_DUP;
Heiko Voigtc68f8372017-10-16 15:58:27 +02001066 struct string_list_item *name;
Jeff Kingc972bf42020-07-28 16:25:12 -04001067 struct strvec argv = STRVEC_INIT;
Heiko Voigta762e512012-03-29 09:21:23 +02001068
Jeff Kingd70a9eb2020-07-28 20:37:20 -04001069 /* argv.v[0] will be ignored by setup_revisions */
Jeff Kingc972bf42020-07-28 16:25:12 -04001070 strvec_push(&argv, "find_unpushed_submodules");
brian m. carlson910650d2017-03-31 01:40:00 +00001071 oid_array_for_each_unique(commits, append_oid_to_argv, &argv);
Jeff Kingc972bf42020-07-28 16:25:12 -04001072 strvec_push(&argv, "--not");
1073 strvec_pushf(&argv, "--remotes=%s", remotes_name);
Heiko Voigt9cfa1c22016-11-16 16:11:05 +01001074
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001075 collect_changed_submodules(r, &submodules, &argv);
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001076
Heiko Voigtc68f8372017-10-16 15:58:27 +02001077 for_each_string_list_item(name, &submodules) {
1078 struct oid_array *commits = name->util;
1079 const struct submodule *submodule;
1080 const char *path = NULL;
1081
brian m. carlson14228442021-04-26 01:02:56 +00001082 submodule = submodule_from_name(r, null_oid(), name->string);
Heiko Voigtc68f8372017-10-16 15:58:27 +02001083 if (submodule)
1084 path = submodule->path;
1085 else
1086 path = default_name_or_path(name->string);
1087
1088 if (!path)
1089 continue;
Heiko Voigt5b6607d2016-11-16 16:11:06 +01001090
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001091 if (submodule_needs_pushing(r, path, commits))
Brandon Williamsaacc5c12017-05-01 18:02:39 -07001092 string_list_insert(needs_pushing, path);
Heiko Voigt14739442016-11-16 16:11:04 +01001093 }
Brandon Williams610b2332017-04-28 16:53:58 -07001094
1095 free_submodules_oids(&submodules);
Jeff Kingc972bf42020-07-28 16:25:12 -04001096 strvec_clear(&argv);
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001097
Heiko Voigta762e512012-03-29 09:21:23 +02001098 return needs_pushing->nr;
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +02001099}
1100
Brandon Williams2a905562017-04-05 10:47:16 -07001101static int push_submodule(const char *path,
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001102 const struct remote *remote,
Brandon Williams60fba4b2018-05-16 15:58:23 -07001103 const struct refspec *rs,
Brandon Williams2a905562017-04-05 10:47:16 -07001104 const struct string_list *push_options,
1105 int dry_run)
Heiko Voigteb21c732012-03-29 09:21:24 +02001106{
Heiko Voigteb21c732012-03-29 09:21:24 +02001107 if (for_each_remote_ref_submodule(path, has_remote, NULL) > 0) {
René Scharfed3180272014-08-19 21:09:35 +02001108 struct child_process cp = CHILD_PROCESS_INIT;
Jeff Kingc972bf42020-07-28 16:25:12 -04001109 strvec_push(&cp.args, "push");
Brandon Williams0301c822016-11-17 10:46:04 -08001110 if (dry_run)
Jeff Kingc972bf42020-07-28 16:25:12 -04001111 strvec_push(&cp.args, "--dry-run");
Heiko Voigteb21c732012-03-29 09:21:24 +02001112
Brandon Williams2a905562017-04-05 10:47:16 -07001113 if (push_options && push_options->nr) {
1114 const struct string_list_item *item;
1115 for_each_string_list_item(item, push_options)
Jeff Kingc972bf42020-07-28 16:25:12 -04001116 strvec_pushf(&cp.args, "--push-option=%s",
Jeff Kingf6d89422020-07-28 16:26:31 -04001117 item->string);
Brandon Williams2a905562017-04-05 10:47:16 -07001118 }
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001119
1120 if (remote->origin != REMOTE_UNCONFIGURED) {
1121 int i;
Jeff Kingc972bf42020-07-28 16:25:12 -04001122 strvec_push(&cp.args, remote->name);
Brandon Williams60fba4b2018-05-16 15:58:23 -07001123 for (i = 0; i < rs->raw_nr; i++)
Jeff Kingc972bf42020-07-28 16:25:12 -04001124 strvec_push(&cp.args, rs->raw[i]);
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001125 }
1126
Jeff Kingc12e8652016-04-28 09:39:15 -04001127 prepare_submodule_repo_env(&cp.env_array);
Heiko Voigteb21c732012-03-29 09:21:24 +02001128 cp.git_cmd = 1;
1129 cp.no_stdin = 1;
1130 cp.dir = path;
1131 if (run_command(&cp))
1132 return 0;
1133 close(cp.out);
1134 }
1135
1136 return 1;
1137}
1138
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001139/*
1140 * Perform a check in the submodule to see if the remote and refspec work.
1141 * Die if the submodule can't be pushed.
1142 */
Brandon Williamsc7be7202017-07-20 10:40:37 -07001143static void submodule_push_check(const char *path, const char *head,
1144 const struct remote *remote,
Brandon Williams60fba4b2018-05-16 15:58:23 -07001145 const struct refspec *rs)
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001146{
1147 struct child_process cp = CHILD_PROCESS_INIT;
1148 int i;
1149
Jeff Kingc972bf42020-07-28 16:25:12 -04001150 strvec_push(&cp.args, "submodule--helper");
1151 strvec_push(&cp.args, "push-check");
1152 strvec_push(&cp.args, head);
1153 strvec_push(&cp.args, remote->name);
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001154
Brandon Williams60fba4b2018-05-16 15:58:23 -07001155 for (i = 0; i < rs->raw_nr; i++)
Jeff Kingc972bf42020-07-28 16:25:12 -04001156 strvec_push(&cp.args, rs->raw[i]);
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001157
1158 prepare_submodule_repo_env(&cp.env_array);
1159 cp.git_cmd = 1;
1160 cp.no_stdin = 1;
1161 cp.no_stdout = 1;
1162 cp.dir = path;
1163
1164 /*
1165 * Simply indicate if 'submodule--helper push-check' failed.
1166 * More detailed error information will be provided by the
1167 * child process.
1168 */
1169 if (run_command(&cp))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001170 die(_("process for submodule '%s' failed"), path);
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001171}
1172
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001173int push_unpushed_submodules(struct repository *r,
Nguyễn Thái Ngọc Duy174d1312018-09-21 17:57:35 +02001174 struct oid_array *commits,
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001175 const struct remote *remote,
Brandon Williams60fba4b2018-05-16 15:58:23 -07001176 const struct refspec *rs,
Brandon Williams2a905562017-04-05 10:47:16 -07001177 const struct string_list *push_options,
Brandon Williams0301c822016-11-17 10:46:04 -08001178 int dry_run)
Heiko Voigteb21c732012-03-29 09:21:24 +02001179{
1180 int i, ret = 1;
Tanay Abhraf93d7c62014-07-18 02:19:00 -07001181 struct string_list needs_pushing = STRING_LIST_INIT_DUP;
Heiko Voigteb21c732012-03-29 09:21:24 +02001182
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001183 if (!find_unpushed_submodules(r, commits,
Nguyễn Thái Ngọc Duy174d1312018-09-21 17:57:35 +02001184 remote->name, &needs_pushing))
Heiko Voigteb21c732012-03-29 09:21:24 +02001185 return 1;
1186
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001187 /*
1188 * Verify that the remote and refspec can be propagated to all
1189 * submodules. This check can be skipped if the remote and refspec
1190 * won't be propagated due to the remote being unconfigured (e.g. a URL
1191 * instead of a remote name).
1192 */
Brandon Williamsc7be7202017-07-20 10:40:37 -07001193 if (remote->origin != REMOTE_UNCONFIGURED) {
1194 char *head;
1195 struct object_id head_oid;
1196
brian m. carlson0f2dc722017-10-15 22:06:55 +00001197 head = resolve_refdup("HEAD", 0, &head_oid, NULL);
Brandon Williamsc7be7202017-07-20 10:40:37 -07001198 if (!head)
1199 die(_("Failed to resolve HEAD as a valid ref."));
1200
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001201 for (i = 0; i < needs_pushing.nr; i++)
1202 submodule_push_check(needs_pushing.items[i].string,
Brandon Williams60fba4b2018-05-16 15:58:23 -07001203 head, remote, rs);
Brandon Williamsc7be7202017-07-20 10:40:37 -07001204 free(head);
1205 }
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001206
1207 /* Actually push the submodules */
Heiko Voigteb21c732012-03-29 09:21:24 +02001208 for (i = 0; i < needs_pushing.nr; i++) {
1209 const char *path = needs_pushing.items[i].string;
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001210 fprintf(stderr, _("Pushing submodule '%s'\n"), path);
Brandon Williams60fba4b2018-05-16 15:58:23 -07001211 if (!push_submodule(path, remote, rs,
Brandon Williams06bf4ad2017-04-05 10:47:19 -07001212 push_options, dry_run)) {
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001213 fprintf(stderr, _("Unable to push submodule '%s'\n"), path);
Heiko Voigteb21c732012-03-29 09:21:24 +02001214 ret = 0;
1215 }
1216 }
1217
1218 string_list_clear(&needs_pushing, 0);
1219
1220 return ret;
1221}
1222
Brandon Williams419fd782017-04-28 16:53:57 -07001223static int append_oid_to_array(const char *ref, const struct object_id *oid,
1224 int flags, void *data)
Jeff King6859de42011-09-12 15:56:52 -04001225{
Brandon Williams419fd782017-04-28 16:53:57 -07001226 struct oid_array *array = data;
1227 oid_array_append(array, oid);
Jeff King6859de42011-09-12 15:56:52 -04001228 return 0;
1229}
1230
brian m. carlson2eb80bc2017-03-26 16:01:35 +00001231void check_for_new_submodule_commits(struct object_id *oid)
Jens Lehmann88a21972011-03-06 23:10:46 +01001232{
Jeff King6859de42011-09-12 15:56:52 -04001233 if (!initialized_fetch_ref_tips) {
Brandon Williams419fd782017-04-28 16:53:57 -07001234 for_each_ref(append_oid_to_array, &ref_tips_before_fetch);
Jeff King6859de42011-09-12 15:56:52 -04001235 initialized_fetch_ref_tips = 1;
1236 }
1237
brian m. carlson910650d2017-03-31 01:40:00 +00001238 oid_array_append(&ref_tips_after_fetch, oid);
Jeff King6859de42011-09-12 15:56:52 -04001239}
1240
Stefan Beller16dd6fe2018-11-28 16:27:51 -08001241static void calculate_changed_submodule_paths(struct repository *r,
1242 struct string_list *changed_submodule_names)
Jeff King6859de42011-09-12 15:56:52 -04001243{
Jeff Kingc972bf42020-07-28 16:25:12 -04001244 struct strvec argv = STRVEC_INIT;
Stefan Bellerbcd73372018-11-28 16:27:52 -08001245 struct string_list_item *name;
Jens Lehmann88a21972011-03-06 23:10:46 +01001246
Jens Lehmann18322ba2011-09-09 20:22:03 +02001247 /* No need to check if there are no submodules configured */
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001248 if (!submodule_from_path(r, NULL, NULL))
Jens Lehmann18322ba2011-09-09 20:22:03 +02001249 return;
1250
Jeff Kingc972bf42020-07-28 16:25:12 -04001251 strvec_push(&argv, "--"); /* argv[0] program name */
brian m. carlson910650d2017-03-31 01:40:00 +00001252 oid_array_for_each_unique(&ref_tips_after_fetch,
Brandon Williamsd1a84602017-04-28 16:53:59 -07001253 append_oid_to_argv, &argv);
Jeff Kingc972bf42020-07-28 16:25:12 -04001254 strvec_push(&argv, "--not");
brian m. carlson910650d2017-03-31 01:40:00 +00001255 oid_array_for_each_unique(&ref_tips_before_fetch,
Brandon Williamsd1a84602017-04-28 16:53:59 -07001256 append_oid_to_argv, &argv);
Jens Lehmann88a21972011-03-06 23:10:46 +01001257
1258 /*
1259 * Collect all submodules (whether checked out or not) for which new
Heiko Voigtc68f8372017-10-16 15:58:27 +02001260 * commits have been recorded upstream in "changed_submodule_names".
Jens Lehmann88a21972011-03-06 23:10:46 +01001261 */
Stefan Bellerbcd73372018-11-28 16:27:52 -08001262 collect_changed_submodules(r, changed_submodule_names, &argv);
Brandon Williamsaacc5c12017-05-01 18:02:39 -07001263
Stefan Bellerbcd73372018-11-28 16:27:52 -08001264 for_each_string_list_item(name, changed_submodule_names) {
Heiko Voigtc68f8372017-10-16 15:58:27 +02001265 struct oid_array *commits = name->util;
1266 const struct submodule *submodule;
1267 const char *path = NULL;
1268
brian m. carlson14228442021-04-26 01:02:56 +00001269 submodule = submodule_from_name(r, null_oid(), name->string);
Heiko Voigtc68f8372017-10-16 15:58:27 +02001270 if (submodule)
1271 path = submodule->path;
1272 else
1273 path = default_name_or_path(name->string);
1274
1275 if (!path)
1276 continue;
Brandon Williamsaacc5c12017-05-01 18:02:39 -07001277
Stefan Bellerbcd73372018-11-28 16:27:52 -08001278 if (submodule_has_commits(r, path, commits)) {
1279 oid_array_clear(commits);
1280 *name->string = '\0';
1281 }
Jens Lehmann88a21972011-03-06 23:10:46 +01001282 }
Jeff King6859de42011-09-12 15:56:52 -04001283
Stefan Bellerbcd73372018-11-28 16:27:52 -08001284 string_list_remove_empty_items(changed_submodule_names, 1);
1285
Jeff Kingc972bf42020-07-28 16:25:12 -04001286 strvec_clear(&argv);
brian m. carlson910650d2017-03-31 01:40:00 +00001287 oid_array_clear(&ref_tips_before_fetch);
1288 oid_array_clear(&ref_tips_after_fetch);
Jeff King6859de42011-09-12 15:56:52 -04001289 initialized_fetch_ref_tips = 0;
Jens Lehmann88a21972011-03-06 23:10:46 +01001290}
1291
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001292int submodule_touches_in_range(struct repository *r,
Nguyễn Thái Ngọc Duy174d1312018-09-21 17:57:35 +02001293 struct object_id *excl_oid,
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001294 struct object_id *incl_oid)
1295{
1296 struct string_list subs = STRING_LIST_INIT_DUP;
Jeff Kingc972bf42020-07-28 16:25:12 -04001297 struct strvec args = STRVEC_INIT;
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001298 int ret;
1299
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001300 /* No need to check if there are no submodules configured */
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001301 if (!submodule_from_path(r, NULL, NULL))
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001302 return 0;
1303
Jeff Kingc972bf42020-07-28 16:25:12 -04001304 strvec_push(&args, "--"); /* args[0] program name */
1305 strvec_push(&args, oid_to_hex(incl_oid));
Jonathan Tan4d36f882018-05-24 13:47:29 -07001306 if (!is_null_oid(excl_oid)) {
Jeff Kingc972bf42020-07-28 16:25:12 -04001307 strvec_push(&args, "--not");
1308 strvec_push(&args, oid_to_hex(excl_oid));
Jonathan Tan4d36f882018-05-24 13:47:29 -07001309 }
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001310
Nguyễn Thái Ngọc Duy6245b982018-10-19 19:34:43 +02001311 collect_changed_submodules(r, &subs, &args);
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001312 ret = subs.nr;
1313
Jeff Kingc972bf42020-07-28 16:25:12 -04001314 strvec_clear(&args);
Stefan Bellera6d7eb22017-06-23 12:13:02 -07001315
1316 free_submodules_oids(&subs);
1317 return ret;
1318}
1319
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001320struct submodule_parallel_fetch {
1321 int count;
Jeff Kingc972bf42020-07-28 16:25:12 -04001322 struct strvec args;
Brandon Williamse7241972017-12-12 11:53:52 -08001323 struct repository *r;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001324 const char *prefix;
1325 int command_line_option;
Brandon Williams8fa29152017-08-02 12:49:19 -07001326 int default_option;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001327 int quiet;
1328 int result;
Stefan Beller16dd6fe2018-11-28 16:27:51 -08001329
1330 struct string_list changed_submodule_names;
Stefan Bellerbe76c212018-12-06 13:26:55 -08001331
1332 /* Pending fetches by OIDs */
1333 struct fetch_task **oid_fetch_tasks;
1334 int oid_fetch_tasks_nr, oid_fetch_tasks_alloc;
Emily Shaffer02225402020-01-16 14:20:12 -08001335
1336 struct strbuf submodules_with_errors;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001337};
Ævar Arnfjörð Bjarmasonf69a6e42021-09-27 14:54:27 +02001338#define SPF_INIT { \
1339 .args = STRVEC_INIT, \
1340 .changed_submodule_names = STRING_LIST_INIT_DUP, \
1341 .submodules_with_errors = STRBUF_INIT, \
1342}
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001343
Heiko Voigt4b4aced2017-10-16 15:59:05 +02001344static int get_fetch_recurse_config(const struct submodule *submodule,
1345 struct submodule_parallel_fetch *spf)
1346{
1347 if (spf->command_line_option != RECURSE_SUBMODULES_DEFAULT)
1348 return spf->command_line_option;
1349
1350 if (submodule) {
1351 char *key;
1352 const char *value;
1353
1354 int fetch_recurse = submodule->fetch_recurse;
1355 key = xstrfmt("submodule.%s.fetchRecurseSubmodules", submodule->name);
Jeff Kingf1de9812020-08-14 12:17:36 -04001356 if (!repo_config_get_string_tmp(spf->r, key, &value)) {
Heiko Voigt4b4aced2017-10-16 15:59:05 +02001357 fetch_recurse = parse_fetch_recurse_submodules_arg(key, value);
1358 }
1359 free(key);
1360
1361 if (fetch_recurse != RECURSE_SUBMODULES_NONE)
1362 /* local config overrules everything except commandline */
1363 return fetch_recurse;
1364 }
1365
1366 return spf->default_option;
1367}
1368
Stefan Bellerbe76c212018-12-06 13:26:55 -08001369/*
1370 * Fetch in progress (if callback data) or
1371 * pending (if in oid_fetch_tasks in struct submodule_parallel_fetch)
1372 */
1373struct fetch_task {
1374 struct repository *repo;
1375 const struct submodule *sub;
1376 unsigned free_sub : 1; /* Do we need to free the submodule? */
1377
1378 struct oid_array *commits; /* Ensure these commits are fetched */
1379};
1380
1381/**
1382 * When a submodule is not defined in .gitmodules, we cannot access it
1383 * via the regular submodule-config. Create a fake submodule, which we can
1384 * work on.
1385 */
1386static const struct submodule *get_non_gitmodules_submodule(const char *path)
1387{
1388 struct submodule *ret = NULL;
1389 const char *name = default_name_or_path(path);
1390
1391 if (!name)
1392 return NULL;
1393
1394 ret = xmalloc(sizeof(*ret));
1395 memset(ret, 0, sizeof(*ret));
1396 ret->path = name;
1397 ret->name = name;
1398
1399 return (const struct submodule *) ret;
1400}
1401
1402static struct fetch_task *fetch_task_create(struct repository *r,
1403 const char *path)
1404{
1405 struct fetch_task *task = xmalloc(sizeof(*task));
1406 memset(task, 0, sizeof(*task));
1407
brian m. carlson14228442021-04-26 01:02:56 +00001408 task->sub = submodule_from_path(r, null_oid(), path);
Stefan Bellerbe76c212018-12-06 13:26:55 -08001409 if (!task->sub) {
1410 /*
1411 * No entry in .gitmodules? Technically not a submodule,
1412 * but historically we supported repositories that happen to be
1413 * in-place where a gitlink is. Keep supporting them.
1414 */
1415 task->sub = get_non_gitmodules_submodule(path);
1416 if (!task->sub) {
1417 free(task);
1418 return NULL;
1419 }
1420
1421 task->free_sub = 1;
1422 }
1423
1424 return task;
1425}
1426
1427static void fetch_task_release(struct fetch_task *p)
1428{
1429 if (p->free_sub)
1430 free((void*)p->sub);
1431 p->free_sub = 0;
1432 p->sub = NULL;
1433
1434 if (p->repo)
1435 repo_clear(p->repo);
1436 FREE_AND_NULL(p->repo);
1437}
1438
Stefan Beller26f80cc2018-11-28 16:27:54 -08001439static struct repository *get_submodule_repo_for(struct repository *r,
Jonathan Tan8eb8dcf2021-09-09 11:47:28 -07001440 const char *path)
Stefan Beller26f80cc2018-11-28 16:27:54 -08001441{
1442 struct repository *ret = xmalloc(sizeof(*ret));
1443
Jonathan Tan8eb8dcf2021-09-09 11:47:28 -07001444 if (repo_submodule_init(ret, r, path, null_oid())) {
Jonathan Tan5df51062021-09-09 11:47:27 -07001445 free(ret);
1446 return NULL;
Stefan Beller26f80cc2018-11-28 16:27:54 -08001447 }
1448
1449 return ret;
1450}
1451
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001452static int get_next_submodule(struct child_process *cp,
1453 struct strbuf *err, void *data, void **task_cb)
Jens Lehmann7dce19d2010-11-12 13:54:52 +01001454{
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001455 struct submodule_parallel_fetch *spf = data;
Jens Lehmann7dce19d2010-11-12 13:54:52 +01001456
Brandon Williamse7241972017-12-12 11:53:52 -08001457 for (; spf->count < spf->r->index->cache_nr; spf->count++) {
Brandon Williamse7241972017-12-12 11:53:52 -08001458 const struct cache_entry *ce = spf->r->index->cache[spf->count];
Stefan Beller26f80cc2018-11-28 16:27:54 -08001459 const char *default_argv;
Stefan Bellerbe76c212018-12-06 13:26:55 -08001460 struct fetch_task *task;
Jens Lehmann7dce19d2010-11-12 13:54:52 +01001461
1462 if (!S_ISGITLINK(ce->ce_mode))
1463 continue;
1464
Stefan Bellerbe76c212018-12-06 13:26:55 -08001465 task = fetch_task_create(spf->r, ce->name);
1466 if (!task)
1467 continue;
Brandon Williams492c6c42017-08-03 11:19:51 -07001468
Stefan Bellerbe76c212018-12-06 13:26:55 -08001469 switch (get_fetch_recurse_config(task->sub, spf))
Heiko Voigt4b4aced2017-10-16 15:59:05 +02001470 {
1471 default:
1472 case RECURSE_SUBMODULES_DEFAULT:
1473 case RECURSE_SUBMODULES_ON_DEMAND:
Stefan Bellerbe76c212018-12-06 13:26:55 -08001474 if (!task->sub ||
Stefan Beller08a297b2018-11-28 16:27:50 -08001475 !string_list_lookup(
Stefan Beller16dd6fe2018-11-28 16:27:51 -08001476 &spf->changed_submodule_names,
Stefan Bellerbe76c212018-12-06 13:26:55 -08001477 task->sub->name))
Jens Lehmann8f0700d2011-03-06 23:11:21 +01001478 continue;
1479 default_argv = "on-demand";
Heiko Voigt4b4aced2017-10-16 15:59:05 +02001480 break;
1481 case RECURSE_SUBMODULES_ON:
1482 default_argv = "yes";
1483 break;
1484 case RECURSE_SUBMODULES_OFF:
1485 continue;
Jens Lehmannbe254a02010-11-11 00:55:02 +01001486 }
1487
Jonathan Tan8eb8dcf2021-09-09 11:47:28 -07001488 task->repo = get_submodule_repo_for(spf->r, task->sub->path);
Stefan Bellerbe76c212018-12-06 13:26:55 -08001489 if (task->repo) {
1490 struct strbuf submodule_prefix = STRBUF_INIT;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001491 child_process_init(cp);
Stefan Bellerbe76c212018-12-06 13:26:55 -08001492 cp->dir = task->repo->gitdir;
Stefan Bellera62387b2018-11-28 16:27:55 -08001493 prepare_submodule_repo_env_in_gitdir(&cp->env_array);
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001494 cp->git_cmd = 1;
1495 if (!spf->quiet)
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001496 strbuf_addf(err, _("Fetching submodule %s%s\n"),
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001497 spf->prefix, ce->name);
Jeff Kingc972bf42020-07-28 16:25:12 -04001498 strvec_init(&cp->args);
Jeff Kingd70a9eb2020-07-28 20:37:20 -04001499 strvec_pushv(&cp->args, spf->args.v);
Jeff Kingc972bf42020-07-28 16:25:12 -04001500 strvec_push(&cp->args, default_argv);
1501 strvec_push(&cp->args, "--submodule-prefix");
Stefan Bellerbe76c212018-12-06 13:26:55 -08001502
1503 strbuf_addf(&submodule_prefix, "%s%s/",
1504 spf->prefix,
1505 task->sub->path);
Jeff Kingc972bf42020-07-28 16:25:12 -04001506 strvec_push(&cp->args, submodule_prefix.buf);
Stefan Beller26f80cc2018-11-28 16:27:54 -08001507
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001508 spf->count++;
Stefan Bellerbe76c212018-12-06 13:26:55 -08001509 *task_cb = task;
1510
1511 strbuf_release(&submodule_prefix);
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001512 return 1;
Stefan Beller26f80cc2018-11-28 16:27:54 -08001513 } else {
Peter Kaestle505a2762020-12-09 11:58:44 +01001514 struct strbuf empty_submodule_path = STRBUF_INIT;
Stefan Bellerbe76c212018-12-06 13:26:55 -08001515
1516 fetch_task_release(task);
1517 free(task);
1518
Stefan Beller26f80cc2018-11-28 16:27:54 -08001519 /*
1520 * An empty directory is normal,
1521 * the submodule is not initialized
1522 */
Peter Kaestle505a2762020-12-09 11:58:44 +01001523 strbuf_addf(&empty_submodule_path, "%s/%s/",
1524 spf->r->worktree,
1525 ce->name);
Stefan Beller26f80cc2018-11-28 16:27:54 -08001526 if (S_ISGITLINK(ce->ce_mode) &&
Peter Kaestle505a2762020-12-09 11:58:44 +01001527 !is_empty_dir(empty_submodule_path.buf)) {
Stefan Beller26f80cc2018-11-28 16:27:54 -08001528 spf->result = 1;
1529 strbuf_addf(err,
Emily Shaffer303b3c12020-02-06 16:48:33 -08001530 _("Could not access submodule '%s'\n"),
Stefan Beller26f80cc2018-11-28 16:27:54 -08001531 ce->name);
1532 }
Peter Kaestle505a2762020-12-09 11:58:44 +01001533 strbuf_release(&empty_submodule_path);
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001534 }
Jens Lehmann7dce19d2010-11-12 13:54:52 +01001535 }
Stefan Bellerbe76c212018-12-06 13:26:55 -08001536
1537 if (spf->oid_fetch_tasks_nr) {
1538 struct fetch_task *task =
1539 spf->oid_fetch_tasks[spf->oid_fetch_tasks_nr - 1];
1540 struct strbuf submodule_prefix = STRBUF_INIT;
1541 spf->oid_fetch_tasks_nr--;
1542
1543 strbuf_addf(&submodule_prefix, "%s%s/",
1544 spf->prefix, task->sub->path);
1545
1546 child_process_init(cp);
1547 prepare_submodule_repo_env_in_gitdir(&cp->env_array);
1548 cp->git_cmd = 1;
1549 cp->dir = task->repo->gitdir;
1550
Jeff Kingc972bf42020-07-28 16:25:12 -04001551 strvec_init(&cp->args);
Jeff Kingd70a9eb2020-07-28 20:37:20 -04001552 strvec_pushv(&cp->args, spf->args.v);
Jeff Kingc972bf42020-07-28 16:25:12 -04001553 strvec_push(&cp->args, "on-demand");
1554 strvec_push(&cp->args, "--submodule-prefix");
1555 strvec_push(&cp->args, submodule_prefix.buf);
Stefan Bellerbe76c212018-12-06 13:26:55 -08001556
1557 /* NEEDSWORK: have get_default_remote from submodule--helper */
Jeff Kingc972bf42020-07-28 16:25:12 -04001558 strvec_push(&cp->args, "origin");
Stefan Bellerbe76c212018-12-06 13:26:55 -08001559 oid_array_for_each_unique(task->commits,
1560 append_oid_to_argv, &cp->args);
1561
1562 *task_cb = task;
1563 strbuf_release(&submodule_prefix);
1564 return 1;
1565 }
1566
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001567 return 0;
1568}
1569
Stefan Beller2a73b3d2016-02-29 13:57:06 -08001570static int fetch_start_failure(struct strbuf *err,
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001571 void *cb, void *task_cb)
1572{
1573 struct submodule_parallel_fetch *spf = cb;
Stefan Bellerbe76c212018-12-06 13:26:55 -08001574 struct fetch_task *task = task_cb;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001575
1576 spf->result = 1;
1577
Stefan Bellerbe76c212018-12-06 13:26:55 -08001578 fetch_task_release(task);
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001579 return 0;
1580}
1581
Stefan Bellerbe76c212018-12-06 13:26:55 -08001582static int commit_missing_in_sub(const struct object_id *oid, void *data)
1583{
1584 struct repository *subrepo = data;
1585
1586 enum object_type type = oid_object_info(subrepo, oid, NULL);
1587
1588 return type != OBJ_COMMIT;
1589}
1590
Stefan Beller2a73b3d2016-02-29 13:57:06 -08001591static int fetch_finish(int retvalue, struct strbuf *err,
1592 void *cb, void *task_cb)
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001593{
1594 struct submodule_parallel_fetch *spf = cb;
Stefan Bellerbe76c212018-12-06 13:26:55 -08001595 struct fetch_task *task = task_cb;
1596
1597 struct string_list_item *it;
1598 struct oid_array *commits;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001599
Emily Shaffer02225402020-01-16 14:20:12 -08001600 if (!task || !task->sub)
1601 BUG("callback cookie bogus");
1602
1603 if (retvalue) {
Jonathan Tanbd5e5672019-03-13 10:57:38 -07001604 /*
1605 * NEEDSWORK: This indicates that the overall fetch
1606 * failed, even though there may be a subsequent fetch
1607 * by commit hash that might work. It may be a good
1608 * idea to not indicate failure in this case, and only
1609 * indicate failure if the subsequent fetch fails.
1610 */
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001611 spf->result = 1;
1612
Emily Shaffer02225402020-01-16 14:20:12 -08001613 strbuf_addf(&spf->submodules_with_errors, "\t%s\n",
1614 task->sub->name);
1615 }
Stefan Bellerbe76c212018-12-06 13:26:55 -08001616
1617 /* Is this the second time we process this submodule? */
1618 if (task->commits)
1619 goto out;
1620
1621 it = string_list_lookup(&spf->changed_submodule_names, task->sub->name);
1622 if (!it)
1623 /* Could be an unchanged submodule, not contained in the list */
1624 goto out;
1625
1626 commits = it->util;
1627 oid_array_filter(commits,
1628 commit_missing_in_sub,
1629 task->repo);
1630
1631 /* Are there commits we want, but do not exist? */
1632 if (commits->nr) {
1633 task->commits = commits;
1634 ALLOC_GROW(spf->oid_fetch_tasks,
1635 spf->oid_fetch_tasks_nr + 1,
1636 spf->oid_fetch_tasks_alloc);
1637 spf->oid_fetch_tasks[spf->oid_fetch_tasks_nr] = task;
1638 spf->oid_fetch_tasks_nr++;
1639 return 0;
1640 }
1641
1642out:
1643 fetch_task_release(task);
1644
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001645 return 0;
1646}
1647
Brandon Williamse7241972017-12-12 11:53:52 -08001648int fetch_populated_submodules(struct repository *r,
Jeff Kingc972bf42020-07-28 16:25:12 -04001649 const struct strvec *options,
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001650 const char *prefix, int command_line_option,
Brandon Williams8fa29152017-08-02 12:49:19 -07001651 int default_option,
Stefan Beller62104ba2015-12-15 16:04:12 -08001652 int quiet, int max_parallel_jobs)
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001653{
1654 int i;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001655 struct submodule_parallel_fetch spf = SPF_INIT;
1656
Brandon Williamse7241972017-12-12 11:53:52 -08001657 spf.r = r;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001658 spf.command_line_option = command_line_option;
Brandon Williams8fa29152017-08-02 12:49:19 -07001659 spf.default_option = default_option;
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001660 spf.quiet = quiet;
1661 spf.prefix = prefix;
1662
Brandon Williamse7241972017-12-12 11:53:52 -08001663 if (!r->worktree)
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001664 goto out;
1665
Brandon Williamse7241972017-12-12 11:53:52 -08001666 if (repo_read_index(r) < 0)
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001667 die(_("index file corrupt"));
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001668
Jeff Kingc972bf42020-07-28 16:25:12 -04001669 strvec_push(&spf.args, "fetch");
Jeff Kingd70a9eb2020-07-28 20:37:20 -04001670 for (i = 0; i < options->nr; i++)
1671 strvec_push(&spf.args, options->v[i]);
Jeff Kingc972bf42020-07-28 16:25:12 -04001672 strvec_push(&spf.args, "--recurse-submodules-default");
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001673 /* default value, "--submodule-prefix" and its value are added later */
1674
Stefan Beller16dd6fe2018-11-28 16:27:51 -08001675 calculate_changed_submodule_paths(r, &spf.changed_submodule_names);
1676 string_list_sort(&spf.changed_submodule_names);
Jeff Hostetleree4512e2019-02-22 14:25:01 -08001677 run_processes_parallel_tr2(max_parallel_jobs,
1678 get_next_submodule,
1679 fetch_start_failure,
1680 fetch_finish,
1681 &spf,
1682 "submodule", "parallel/fetch");
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001683
Emily Shaffer02225402020-01-16 14:20:12 -08001684 if (spf.submodules_with_errors.len > 0)
1685 fprintf(stderr, _("Errors during submodule fetch:\n%s"),
1686 spf.submodules_with_errors.buf);
1687
1688
Jeff Kingc972bf42020-07-28 16:25:12 -04001689 strvec_clear(&spf.args);
Jens Lehmann88a21972011-03-06 23:10:46 +01001690out:
Stefan Bellerbcd73372018-11-28 16:27:52 -08001691 free_submodules_oids(&spf.changed_submodule_names);
Stefan Bellerfe85ee62015-12-15 16:04:11 -08001692 return spf.result;
Jens Lehmann7dce19d2010-11-12 13:54:52 +01001693}
1694
Jens Lehmann3bfc4502010-03-13 23:00:27 +01001695unsigned is_submodule_modified(const char *path, int ignore_untracked)
Jens Lehmannee6fc512010-01-16 18:42:24 +01001696{
René Scharfed3180272014-08-19 21:09:35 +02001697 struct child_process cp = CHILD_PROCESS_INIT;
Jens Lehmannee6fc512010-01-16 18:42:24 +01001698 struct strbuf buf = STRBUF_INIT;
Stefan Belleraf6865a2017-03-24 17:36:06 -07001699 FILE *fp;
Jens Lehmannc7e1a732010-03-04 22:20:33 +01001700 unsigned dirty_submodule = 0;
Jens Lehmanneee49b62010-04-10 19:01:12 +02001701 const char *git_dir;
Stefan Belleraf6865a2017-03-24 17:36:06 -07001702 int ignore_cp_exit_code = 0;
Jens Lehmannee6fc512010-01-16 18:42:24 +01001703
Jens Lehmanneee49b62010-04-10 19:01:12 +02001704 strbuf_addf(&buf, "%s/.git", path);
Junio C Hamano13d6ec92011-08-22 14:04:56 -07001705 git_dir = read_gitfile(buf.buf);
Jens Lehmanneee49b62010-04-10 19:01:12 +02001706 if (!git_dir)
1707 git_dir = buf.buf;
Stefan Beller5c896f72017-03-24 17:36:08 -07001708 if (!is_git_directory(git_dir)) {
1709 if (is_directory(git_dir))
1710 die(_("'%s' not recognized as a git repository"), git_dir);
Jens Lehmannee6fc512010-01-16 18:42:24 +01001711 strbuf_release(&buf);
1712 /* The submodule is not checked out, so it is not modified */
1713 return 0;
Jens Lehmannee6fc512010-01-16 18:42:24 +01001714 }
1715 strbuf_reset(&buf);
1716
Jeff Kingc972bf42020-07-28 16:25:12 -04001717 strvec_pushl(&cp.args, "status", "--porcelain=2", NULL);
Jens Lehmann3bfc4502010-03-13 23:00:27 +01001718 if (ignore_untracked)
Jeff Kingc972bf42020-07-28 16:25:12 -04001719 strvec_push(&cp.args, "-uno");
Jens Lehmann3bfc4502010-03-13 23:00:27 +01001720
Jeff Kingc12e8652016-04-28 09:39:15 -04001721 prepare_submodule_repo_env(&cp.env_array);
Jens Lehmannee6fc512010-01-16 18:42:24 +01001722 cp.git_cmd = 1;
1723 cp.no_stdin = 1;
1724 cp.out = -1;
Jens Lehmanneee49b62010-04-10 19:01:12 +02001725 cp.dir = path;
Jens Lehmannee6fc512010-01-16 18:42:24 +01001726 if (start_command(&cp))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001727 die(_("Could not run 'git status --porcelain=2' in submodule %s"), path);
Jens Lehmannee6fc512010-01-16 18:42:24 +01001728
Stefan Belleraf6865a2017-03-24 17:36:06 -07001729 fp = xfdopen(cp.out, "r");
1730 while (strbuf_getwholeline(&buf, fp, '\n') != EOF) {
Stefan Bellerfcecf0b2017-03-24 17:36:07 -07001731 /* regular untracked files */
1732 if (buf.buf[0] == '?')
Jens Lehmannc7e1a732010-03-04 22:20:33 +01001733 dirty_submodule |= DIRTY_SUBMODULE_UNTRACKED;
Jens Lehmannee6fc512010-01-16 18:42:24 +01001734
Stefan Beller40069d62017-03-29 15:26:16 -07001735 if (buf.buf[0] == 'u' ||
1736 buf.buf[0] == '1' ||
1737 buf.buf[0] == '2') {
1738 /* T = line type, XY = status, SSSS = submodule state */
1739 if (buf.len < strlen("T XY SSSS"))
Johannes Schindelin033abf92018-05-02 11:38:39 +02001740 BUG("invalid status --porcelain=2 line %s",
Stefan Beller40069d62017-03-29 15:26:16 -07001741 buf.buf);
1742
1743 if (buf.buf[5] == 'S' && buf.buf[8] == 'U')
1744 /* nested untracked file */
1745 dirty_submodule |= DIRTY_SUBMODULE_UNTRACKED;
1746
1747 if (buf.buf[0] == 'u' ||
1748 buf.buf[0] == '2' ||
1749 memcmp(buf.buf + 5, "S..U", 4))
1750 /* other change */
1751 dirty_submodule |= DIRTY_SUBMODULE_MODIFIED;
1752 }
Stefan Beller64f9a942017-03-24 17:36:05 -07001753
1754 if ((dirty_submodule & DIRTY_SUBMODULE_MODIFIED) &&
1755 ((dirty_submodule & DIRTY_SUBMODULE_UNTRACKED) ||
Stefan Belleraf6865a2017-03-24 17:36:06 -07001756 ignore_untracked)) {
1757 /*
1758 * We're not interested in any further information from
1759 * the child any more, neither output nor its exit code.
1760 */
1761 ignore_cp_exit_code = 1;
Stefan Beller64f9a942017-03-24 17:36:05 -07001762 break;
Stefan Belleraf6865a2017-03-24 17:36:06 -07001763 }
Jens Lehmannee6fc512010-01-16 18:42:24 +01001764 }
Stefan Belleraf6865a2017-03-24 17:36:06 -07001765 fclose(fp);
Jens Lehmannee6fc512010-01-16 18:42:24 +01001766
Stefan Belleraf6865a2017-03-24 17:36:06 -07001767 if (finish_command(&cp) && !ignore_cp_exit_code)
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001768 die(_("'git status --porcelain=2' failed in submodule %s"), path);
Jens Lehmannee6fc512010-01-16 18:42:24 +01001769
Jens Lehmannee6fc512010-01-16 18:42:24 +01001770 strbuf_release(&buf);
Jens Lehmannc7e1a732010-03-04 22:20:33 +01001771 return dirty_submodule;
Jens Lehmannee6fc512010-01-16 18:42:24 +01001772}
Heiko Voigt68d03e42010-07-07 15:39:13 +02001773
Jens Lehmann293ab152012-09-26 20:21:13 +02001774int submodule_uses_gitfile(const char *path)
1775{
René Scharfed3180272014-08-19 21:09:35 +02001776 struct child_process cp = CHILD_PROCESS_INIT;
Jens Lehmann293ab152012-09-26 20:21:13 +02001777 struct strbuf buf = STRBUF_INIT;
1778 const char *git_dir;
1779
1780 strbuf_addf(&buf, "%s/.git", path);
1781 git_dir = read_gitfile(buf.buf);
1782 if (!git_dir) {
1783 strbuf_release(&buf);
1784 return 0;
1785 }
1786 strbuf_release(&buf);
1787
1788 /* Now test that all nested submodules use a gitfile too */
Junio C Hamanoafbdba32020-08-26 15:25:03 -07001789 strvec_pushl(&cp.args,
1790 "submodule", "foreach", "--quiet", "--recursive",
1791 "test -f .git", NULL);
1792
Jeff Kingc12e8652016-04-28 09:39:15 -04001793 prepare_submodule_repo_env(&cp.env_array);
Jens Lehmann293ab152012-09-26 20:21:13 +02001794 cp.git_cmd = 1;
1795 cp.no_stdin = 1;
1796 cp.no_stderr = 1;
1797 cp.no_stdout = 1;
1798 cp.dir = path;
1799 if (run_command(&cp))
1800 return 0;
1801
1802 return 1;
1803}
1804
Stefan Beller83b76962016-12-20 15:20:11 -08001805/*
1806 * Check if it is a bad idea to remove a submodule, i.e. if we'd lose data
1807 * when doing so.
1808 *
1809 * Return 1 if we'd lose data, return 0 if the removal is fine,
1810 * and negative values for errors.
1811 */
1812int bad_to_remove_submodule(const char *path, unsigned flags)
Jens Lehmann293ab152012-09-26 20:21:13 +02001813{
Jens Lehmann293ab152012-09-26 20:21:13 +02001814 ssize_t len;
René Scharfed3180272014-08-19 21:09:35 +02001815 struct child_process cp = CHILD_PROCESS_INIT;
Jens Lehmann293ab152012-09-26 20:21:13 +02001816 struct strbuf buf = STRBUF_INIT;
Stefan Beller83b76962016-12-20 15:20:11 -08001817 int ret = 0;
Jens Lehmann293ab152012-09-26 20:21:13 +02001818
René Scharfedbe44fa2015-05-19 23:44:23 +02001819 if (!file_exists(path) || is_empty_dir(path))
Jens Lehmann293ab152012-09-26 20:21:13 +02001820 return 0;
1821
Stefan Beller83b76962016-12-20 15:20:11 -08001822 if (!submodule_uses_gitfile(path))
1823 return 1;
1824
Jeff Kingc972bf42020-07-28 16:25:12 -04001825 strvec_pushl(&cp.args, "status", "--porcelain",
Jeff Kingf6d89422020-07-28 16:26:31 -04001826 "--ignore-submodules=none", NULL);
Stefan Beller83b76962016-12-20 15:20:11 -08001827
1828 if (flags & SUBMODULE_REMOVAL_IGNORE_UNTRACKED)
Jeff Kingc972bf42020-07-28 16:25:12 -04001829 strvec_push(&cp.args, "-uno");
Stefan Beller83b76962016-12-20 15:20:11 -08001830 else
Jeff Kingc972bf42020-07-28 16:25:12 -04001831 strvec_push(&cp.args, "-uall");
Stefan Beller83b76962016-12-20 15:20:11 -08001832
1833 if (!(flags & SUBMODULE_REMOVAL_IGNORE_IGNORED_UNTRACKED))
Jeff Kingc972bf42020-07-28 16:25:12 -04001834 strvec_push(&cp.args, "--ignored");
Stefan Beller83b76962016-12-20 15:20:11 -08001835
Jeff Kingc12e8652016-04-28 09:39:15 -04001836 prepare_submodule_repo_env(&cp.env_array);
Jens Lehmann293ab152012-09-26 20:21:13 +02001837 cp.git_cmd = 1;
1838 cp.no_stdin = 1;
1839 cp.out = -1;
1840 cp.dir = path;
Stefan Beller83b76962016-12-20 15:20:11 -08001841 if (start_command(&cp)) {
1842 if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR)
Ralf Thielow35ad44c2017-04-13 18:40:45 +02001843 die(_("could not start 'git status' in submodule '%s'"),
Stefan Beller83b76962016-12-20 15:20:11 -08001844 path);
1845 ret = -1;
1846 goto out;
1847 }
Jens Lehmann293ab152012-09-26 20:21:13 +02001848
1849 len = strbuf_read(&buf, cp.out, 1024);
1850 if (len > 2)
Stefan Beller83b76962016-12-20 15:20:11 -08001851 ret = 1;
Jens Lehmann293ab152012-09-26 20:21:13 +02001852 close(cp.out);
1853
Stefan Beller83b76962016-12-20 15:20:11 -08001854 if (finish_command(&cp)) {
1855 if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR)
Ralf Thielow35ad44c2017-04-13 18:40:45 +02001856 die(_("could not run 'git status' in submodule '%s'"),
Stefan Beller83b76962016-12-20 15:20:11 -08001857 path);
1858 ret = -1;
1859 }
1860out:
Jens Lehmann293ab152012-09-26 20:21:13 +02001861 strbuf_release(&buf);
Stefan Beller83b76962016-12-20 15:20:11 -08001862 return ret;
Jens Lehmann293ab152012-09-26 20:21:13 +02001863}
1864
Stefan Beller898c2e62018-12-14 15:59:43 -08001865void submodule_unset_core_worktree(const struct submodule *sub)
1866{
Jonathan Tance125d42021-09-15 11:59:19 -07001867 struct strbuf config_path = STRBUF_INIT;
Stefan Beller898c2e62018-12-14 15:59:43 -08001868
Jonathan Tance125d42021-09-15 11:59:19 -07001869 submodule_name_to_gitdir(&config_path, the_repository, sub->name);
1870 strbuf_addstr(&config_path, "/config");
1871
1872 if (git_config_set_in_file_gently(config_path.buf, "core.worktree", NULL))
Stefan Beller898c2e62018-12-14 15:59:43 -08001873 warning(_("Could not unset core.worktree setting in submodule '%s'"),
1874 sub->path);
1875
Jonathan Tance125d42021-09-15 11:59:19 -07001876 strbuf_release(&config_path);
Stefan Beller898c2e62018-12-14 15:59:43 -08001877}
1878
Stefan Beller202275b2017-03-14 14:46:36 -07001879static const char *get_super_prefix_or_empty(void)
1880{
1881 const char *s = get_super_prefix();
1882 if (!s)
1883 s = "";
1884 return s;
1885}
1886
Stefan Beller6e3c1592017-03-14 14:46:37 -07001887static int submodule_has_dirty_index(const struct submodule *sub)
1888{
1889 struct child_process cp = CHILD_PROCESS_INIT;
1890
Stefan Bellerda27bc82017-05-02 12:32:13 -07001891 prepare_submodule_repo_env(&cp.env_array);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001892
1893 cp.git_cmd = 1;
Jeff Kingc972bf42020-07-28 16:25:12 -04001894 strvec_pushl(&cp.args, "diff-index", "--quiet",
Jeff Kingf6d89422020-07-28 16:26:31 -04001895 "--cached", "HEAD", NULL);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001896 cp.no_stdin = 1;
1897 cp.no_stdout = 1;
1898 cp.dir = sub->path;
1899 if (start_command(&cp))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001900 die(_("could not recurse into submodule '%s'"), sub->path);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001901
1902 return finish_command(&cp);
1903}
1904
1905static void submodule_reset_index(const char *path)
1906{
1907 struct child_process cp = CHILD_PROCESS_INIT;
Stefan Bellerda27bc82017-05-02 12:32:13 -07001908 prepare_submodule_repo_env(&cp.env_array);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001909
1910 cp.git_cmd = 1;
1911 cp.no_stdin = 1;
1912 cp.dir = path;
1913
Jeff Kingc972bf42020-07-28 16:25:12 -04001914 strvec_pushf(&cp.args, "--super-prefix=%s%s/",
Jeff Kingf6d89422020-07-28 16:26:31 -04001915 get_super_prefix_or_empty(), path);
Elijah Newren94b7f152021-09-27 16:33:47 +00001916 /* TODO: determine if this might overwright untracked files */
Jeff Kingc972bf42020-07-28 16:25:12 -04001917 strvec_pushl(&cp.args, "read-tree", "-u", "--reset", NULL);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001918
Jeff Kingc972bf42020-07-28 16:25:12 -04001919 strvec_push(&cp.args, empty_tree_oid_hex());
Stefan Beller6e3c1592017-03-14 14:46:37 -07001920
1921 if (run_command(&cp))
Ralf Thielowa4ffbbb2020-01-15 19:07:01 +01001922 die(_("could not reset submodule index"));
Stefan Beller6e3c1592017-03-14 14:46:37 -07001923}
1924
1925/**
1926 * Moves a submodule at a given path from a given head to another new head.
1927 * For edge cases (a submodule coming into existence or removing a submodule)
1928 * pass NULL for old or new respectively.
1929 */
1930int submodule_move_head(const char *path,
Brandon Williamsbc099912018-02-14 10:59:49 -08001931 const char *old_head,
1932 const char *new_head,
Stefan Beller6e3c1592017-03-14 14:46:37 -07001933 unsigned flags)
1934{
1935 int ret = 0;
1936 struct child_process cp = CHILD_PROCESS_INIT;
1937 const struct submodule *sub;
Stefan Bellerf2d48992017-04-18 14:37:24 -07001938 int *error_code_ptr, error_code;
Stefan Beller6e3c1592017-03-14 14:46:37 -07001939
Brandon Williams627d9342017-06-22 11:43:46 -07001940 if (!is_submodule_active(the_repository, path))
Stefan Beller823bab02017-04-18 14:37:23 -07001941 return 0;
1942
Stefan Bellerf2d48992017-04-18 14:37:24 -07001943 if (flags & SUBMODULE_MOVE_HEAD_FORCE)
1944 /*
1945 * Pass non NULL pointer to is_submodule_populated_gently
1946 * to prevent die()-ing. We'll use connect_work_tree_and_git_dir
1947 * to fixup the submodule in the force case later.
1948 */
1949 error_code_ptr = &error_code;
1950 else
1951 error_code_ptr = NULL;
1952
Brandon Williamsbc099912018-02-14 10:59:49 -08001953 if (old_head && !is_submodule_populated_gently(path, error_code_ptr))
Stefan Bellerf2d48992017-04-18 14:37:24 -07001954 return 0;
Stefan Beller6e3c1592017-03-14 14:46:37 -07001955
brian m. carlson14228442021-04-26 01:02:56 +00001956 sub = submodule_from_path(the_repository, null_oid(), path);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001957
1958 if (!sub)
Johannes Schindelin033abf92018-05-02 11:38:39 +02001959 BUG("could not get submodule information for '%s'", path);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001960
Brandon Williamsbc099912018-02-14 10:59:49 -08001961 if (old_head && !(flags & SUBMODULE_MOVE_HEAD_FORCE)) {
Stefan Beller6e3c1592017-03-14 14:46:37 -07001962 /* Check if the submodule has a dirty index. */
1963 if (submodule_has_dirty_index(sub))
1964 return error(_("submodule '%s' has dirty index"), path);
1965 }
1966
1967 if (!(flags & SUBMODULE_MOVE_HEAD_DRY_RUN)) {
Brandon Williamsbc099912018-02-14 10:59:49 -08001968 if (old_head) {
Stefan Beller6e3c1592017-03-14 14:46:37 -07001969 if (!submodule_uses_gitfile(path))
Jeff Kingcf7a9012019-05-09 17:27:31 -04001970 absorb_git_dir_into_superproject(path,
Stefan Beller6e3c1592017-03-14 14:46:37 -07001971 ABSORB_GITDIR_RECURSE_SUBMODULES);
1972 } else {
Jonathan Tance125d42021-09-15 11:59:19 -07001973 struct strbuf gitdir = STRBUF_INIT;
1974 submodule_name_to_gitdir(&gitdir, the_repository,
1975 sub->name);
1976 connect_work_tree_and_git_dir(path, gitdir.buf, 0);
1977 strbuf_release(&gitdir);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001978
1979 /* make sure the index is clean as well */
1980 submodule_reset_index(path);
1981 }
Stefan Bellerf2d48992017-04-18 14:37:24 -07001982
Brandon Williamsbc099912018-02-14 10:59:49 -08001983 if (old_head && (flags & SUBMODULE_MOVE_HEAD_FORCE)) {
Jonathan Tance125d42021-09-15 11:59:19 -07001984 struct strbuf gitdir = STRBUF_INIT;
1985 submodule_name_to_gitdir(&gitdir, the_repository,
1986 sub->name);
1987 connect_work_tree_and_git_dir(path, gitdir.buf, 1);
1988 strbuf_release(&gitdir);
Stefan Bellerf2d48992017-04-18 14:37:24 -07001989 }
Stefan Beller6e3c1592017-03-14 14:46:37 -07001990 }
1991
Stefan Bellerda27bc82017-05-02 12:32:13 -07001992 prepare_submodule_repo_env(&cp.env_array);
Stefan Beller6e3c1592017-03-14 14:46:37 -07001993
1994 cp.git_cmd = 1;
1995 cp.no_stdin = 1;
1996 cp.dir = path;
1997
Jeff Kingc972bf42020-07-28 16:25:12 -04001998 strvec_pushf(&cp.args, "--super-prefix=%s%s/",
Jeff Kingf6d89422020-07-28 16:26:31 -04001999 get_super_prefix_or_empty(), path);
Jeff Kingc972bf42020-07-28 16:25:12 -04002000 strvec_pushl(&cp.args, "read-tree", "--recurse-submodules", NULL);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002001
2002 if (flags & SUBMODULE_MOVE_HEAD_DRY_RUN)
Jeff Kingc972bf42020-07-28 16:25:12 -04002003 strvec_push(&cp.args, "-n");
Stefan Beller6e3c1592017-03-14 14:46:37 -07002004 else
Jeff Kingc972bf42020-07-28 16:25:12 -04002005 strvec_push(&cp.args, "-u");
Stefan Beller6e3c1592017-03-14 14:46:37 -07002006
2007 if (flags & SUBMODULE_MOVE_HEAD_FORCE)
Jeff Kingc972bf42020-07-28 16:25:12 -04002008 strvec_push(&cp.args, "--reset");
Stefan Beller6e3c1592017-03-14 14:46:37 -07002009 else
Jeff Kingc972bf42020-07-28 16:25:12 -04002010 strvec_push(&cp.args, "-m");
Stefan Beller6e3c1592017-03-14 14:46:37 -07002011
Stefan Beller7dcc1f42018-01-05 12:03:04 -08002012 if (!(flags & SUBMODULE_MOVE_HEAD_FORCE))
Jeff Kingc972bf42020-07-28 16:25:12 -04002013 strvec_push(&cp.args, old_head ? old_head : empty_tree_oid_hex());
Stefan Beller7dcc1f42018-01-05 12:03:04 -08002014
Jeff Kingc972bf42020-07-28 16:25:12 -04002015 strvec_push(&cp.args, new_head ? new_head : empty_tree_oid_hex());
Stefan Beller6e3c1592017-03-14 14:46:37 -07002016
2017 if (run_command(&cp)) {
Stefan Bellerba95d4e2018-06-20 15:32:53 -07002018 ret = error(_("Submodule '%s' could not be updated."), path);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002019 goto out;
2020 }
2021
2022 if (!(flags & SUBMODULE_MOVE_HEAD_DRY_RUN)) {
Brandon Williamsbc099912018-02-14 10:59:49 -08002023 if (new_head) {
Stefan Bellera17062c2017-05-02 12:32:12 -07002024 child_process_init(&cp);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002025 /* also set the HEAD accordingly */
Stefan Bellera17062c2017-05-02 12:32:12 -07002026 cp.git_cmd = 1;
2027 cp.no_stdin = 1;
2028 cp.dir = path;
Stefan Beller6e3c1592017-03-14 14:46:37 -07002029
Stefan Beller218c8832017-05-02 12:32:14 -07002030 prepare_submodule_repo_env(&cp.env_array);
Jeff Kingc972bf42020-07-28 16:25:12 -04002031 strvec_pushl(&cp.args, "update-ref", "HEAD",
Jeff Kingf6d89422020-07-28 16:26:31 -04002032 "--no-deref", new_head, NULL);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002033
Stefan Bellera17062c2017-05-02 12:32:12 -07002034 if (run_command(&cp)) {
Stefan Beller6e3c1592017-03-14 14:46:37 -07002035 ret = -1;
2036 goto out;
2037 }
2038 } else {
2039 struct strbuf sb = STRBUF_INIT;
2040
2041 strbuf_addf(&sb, "%s/.git", path);
2042 unlink_or_warn(sb.buf);
2043 strbuf_release(&sb);
2044
2045 if (is_empty_dir(path))
2046 rmdir_or_warn(path);
Stefan Beller898c2e62018-12-14 15:59:43 -08002047
2048 submodule_unset_core_worktree(sub);
Stefan Beller6e3c1592017-03-14 14:46:37 -07002049 }
2050 }
2051out:
2052 return ret;
2053}
2054
Johannes Schindelina8dee3c2019-10-01 23:27:18 +02002055int validate_submodule_git_dir(char *git_dir, const char *submodule_name)
2056{
2057 size_t len = strlen(git_dir), suffix_len = strlen(submodule_name);
2058 char *p;
2059 int ret = 0;
2060
2061 if (len <= suffix_len || (p = git_dir + len - suffix_len)[-1] != '/' ||
2062 strcmp(p, submodule_name))
2063 BUG("submodule name '%s' not a suffix of git dir '%s'",
2064 submodule_name, git_dir);
2065
2066 /*
2067 * We prevent the contents of sibling submodules' git directories to
2068 * clash.
2069 *
2070 * Example: having a submodule named `hippo` and another one named
2071 * `hippo/hooks` would result in the git directories
2072 * `.git/modules/hippo/` and `.git/modules/hippo/hooks/`, respectively,
2073 * but the latter directory is already designated to contain the hooks
2074 * of the former.
2075 */
2076 for (; *p; p++) {
2077 if (is_dir_sep(*p)) {
2078 char c = *p;
2079
2080 *p = '\0';
2081 if (is_git_directory(git_dir))
2082 ret = -1;
2083 *p = c;
2084
2085 if (ret < 0)
2086 return error(_("submodule git dir '%s' is "
2087 "inside git dir '%.*s'"),
2088 git_dir,
2089 (int)(p - git_dir), git_dir);
2090 }
2091 }
2092
2093 return 0;
2094}
2095
Stefan Bellerf6f85862016-12-12 11:04:35 -08002096/*
2097 * Embeds a single submodules git directory into the superprojects git dir,
2098 * non recursively.
2099 */
Jeff Kingcf7a9012019-05-09 17:27:31 -04002100static void relocate_single_git_dir_into_superproject(const char *path)
Stefan Bellerf6f85862016-12-12 11:04:35 -08002101{
2102 char *old_git_dir = NULL, *real_old_git_dir = NULL, *real_new_git_dir = NULL;
Jonathan Tance125d42021-09-15 11:59:19 -07002103 struct strbuf new_gitdir = STRBUF_INIT;
Stefan Bellerf6f85862016-12-12 11:04:35 -08002104 const struct submodule *sub;
2105
2106 if (submodule_uses_worktrees(path))
2107 die(_("relocate_gitdir for submodule '%s' with "
2108 "more than one worktree not supported"), path);
2109
2110 old_git_dir = xstrfmt("%s/.git", path);
2111 if (read_gitfile(old_git_dir))
2112 /* If it is an actual gitfile, it doesn't need migration. */
2113 return;
2114
Johannes Schindelince83ead2017-03-08 16:43:40 +01002115 real_old_git_dir = real_pathdup(old_git_dir, 1);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002116
brian m. carlson14228442021-04-26 01:02:56 +00002117 sub = submodule_from_path(the_repository, null_oid(), path);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002118 if (!sub)
2119 die(_("could not lookup name for submodule '%s'"), path);
2120
Jonathan Tance125d42021-09-15 11:59:19 -07002121 submodule_name_to_gitdir(&new_gitdir, the_repository, sub->name);
2122 if (validate_submodule_git_dir(new_gitdir.buf, sub->name) < 0)
Johannes Schindelina8dee3c2019-10-01 23:27:18 +02002123 die(_("refusing to move '%s' into an existing git dir"),
2124 real_old_git_dir);
Jonathan Tance125d42021-09-15 11:59:19 -07002125 if (safe_create_leading_directories_const(new_gitdir.buf) < 0)
2126 die(_("could not create directory '%s'"), new_gitdir.buf);
2127 real_new_git_dir = real_pathdup(new_gitdir.buf, 1);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002128
Stefan Bellerf6f85862016-12-12 11:04:35 -08002129 fprintf(stderr, _("Migrating git directory of '%s%s' from\n'%s' to\n'%s'\n"),
Stefan Beller202275b2017-03-14 14:46:36 -07002130 get_super_prefix_or_empty(), path,
Stefan Bellerf6f85862016-12-12 11:04:35 -08002131 real_old_git_dir, real_new_git_dir);
2132
2133 relocate_gitdir(path, real_old_git_dir, real_new_git_dir);
2134
2135 free(old_git_dir);
2136 free(real_old_git_dir);
2137 free(real_new_git_dir);
Jonathan Tance125d42021-09-15 11:59:19 -07002138 strbuf_release(&new_gitdir);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002139}
2140
2141/*
2142 * Migrate the git directory of the submodule given by path from
2143 * having its git directory within the working tree to the git dir nested
2144 * in its superprojects git dir under modules/.
2145 */
Jeff Kingcf7a9012019-05-09 17:27:31 -04002146void absorb_git_dir_into_superproject(const char *path,
Stefan Bellerf6f85862016-12-12 11:04:35 -08002147 unsigned flags)
2148{
Stefan Bellerec9629b2017-01-25 15:04:50 -08002149 int err_code;
2150 const char *sub_git_dir;
Stefan Bellerf6f85862016-12-12 11:04:35 -08002151 struct strbuf gitdir = STRBUF_INIT;
Stefan Bellerf6f85862016-12-12 11:04:35 -08002152 strbuf_addf(&gitdir, "%s/.git", path);
Stefan Bellerec9629b2017-01-25 15:04:50 -08002153 sub_git_dir = resolve_gitdir_gently(gitdir.buf, &err_code);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002154
2155 /* Not populated? */
Stefan Bellerec9629b2017-01-25 15:04:50 -08002156 if (!sub_git_dir) {
Stefan Bellerec9629b2017-01-25 15:04:50 -08002157 const struct submodule *sub;
Jonathan Tance125d42021-09-15 11:59:19 -07002158 struct strbuf sub_gitdir = STRBUF_INIT;
Stefan Bellerf6f85862016-12-12 11:04:35 -08002159
Stefan Bellerec9629b2017-01-25 15:04:50 -08002160 if (err_code == READ_GITFILE_ERR_STAT_FAILED) {
2161 /* unpopulated as expected */
2162 strbuf_release(&gitdir);
2163 return;
2164 }
2165
2166 if (err_code != READ_GITFILE_ERR_NOT_A_REPO)
2167 /* We don't know what broke here. */
2168 read_gitfile_error_die(err_code, path, NULL);
2169
2170 /*
2171 * Maybe populated, but no git directory was found?
2172 * This can happen if the superproject is a submodule
2173 * itself and was just absorbed. The absorption of the
2174 * superproject did not rewrite the git file links yet,
2175 * fix it now.
2176 */
brian m. carlson14228442021-04-26 01:02:56 +00002177 sub = submodule_from_path(the_repository, null_oid(), path);
Stefan Bellerec9629b2017-01-25 15:04:50 -08002178 if (!sub)
2179 die(_("could not lookup name for submodule '%s'"), path);
Jonathan Tance125d42021-09-15 11:59:19 -07002180 submodule_name_to_gitdir(&sub_gitdir, the_repository, sub->name);
2181 connect_work_tree_and_git_dir(path, sub_gitdir.buf, 0);
2182 strbuf_release(&sub_gitdir);
Stefan Bellerec9629b2017-01-25 15:04:50 -08002183 } else {
2184 /* Is it already absorbed into the superprojects git dir? */
Johannes Schindelince83ead2017-03-08 16:43:40 +01002185 char *real_sub_git_dir = real_pathdup(sub_git_dir, 1);
2186 char *real_common_git_dir = real_pathdup(get_git_common_dir(), 1);
Stefan Bellerec9629b2017-01-25 15:04:50 -08002187
2188 if (!starts_with(real_sub_git_dir, real_common_git_dir))
Jeff Kingcf7a9012019-05-09 17:27:31 -04002189 relocate_single_git_dir_into_superproject(path);
Stefan Bellerec9629b2017-01-25 15:04:50 -08002190
2191 free(real_sub_git_dir);
2192 free(real_common_git_dir);
2193 }
2194 strbuf_release(&gitdir);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002195
2196 if (flags & ABSORB_GITDIR_RECURSE_SUBMODULES) {
2197 struct child_process cp = CHILD_PROCESS_INIT;
2198 struct strbuf sb = STRBUF_INIT;
2199
2200 if (flags & ~ABSORB_GITDIR_RECURSE_SUBMODULES)
Johannes Schindelin033abf92018-05-02 11:38:39 +02002201 BUG("we don't know how to pass the flags down?");
Stefan Bellerf6f85862016-12-12 11:04:35 -08002202
Stefan Beller202275b2017-03-14 14:46:36 -07002203 strbuf_addstr(&sb, get_super_prefix_or_empty());
Stefan Bellerf6f85862016-12-12 11:04:35 -08002204 strbuf_addstr(&sb, path);
2205 strbuf_addch(&sb, '/');
2206
2207 cp.dir = path;
2208 cp.git_cmd = 1;
2209 cp.no_stdin = 1;
Jeff Kingc972bf42020-07-28 16:25:12 -04002210 strvec_pushl(&cp.args, "--super-prefix", sb.buf,
Jeff Kingf6d89422020-07-28 16:26:31 -04002211 "submodule--helper",
2212 "absorb-git-dirs", NULL);
Stefan Bellerf6f85862016-12-12 11:04:35 -08002213 prepare_submodule_repo_env(&cp.env_array);
2214 if (run_command(&cp))
2215 die(_("could not recurse into submodule '%s'"), path);
2216
2217 strbuf_release(&sb);
2218 }
Stefan Bellerf6f85862016-12-12 11:04:35 -08002219}
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002220
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002221int get_superproject_working_tree(struct strbuf *buf)
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002222{
2223 struct child_process cp = CHILD_PROCESS_INIT;
2224 struct strbuf sb = STRBUF_INIT;
Alexandr Miloslavskiy4530a852020-03-10 13:11:23 +00002225 struct strbuf one_up = STRBUF_INIT;
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002226 const char *cwd = xgetcwd();
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002227 int ret = 0;
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002228 const char *subpath;
2229 int code;
2230 ssize_t len;
2231
2232 if (!is_inside_work_tree())
2233 /*
2234 * FIXME:
2235 * We might have a superproject, but it is harder
2236 * to determine.
2237 */
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002238 return 0;
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002239
Alexandr Miloslavskiy4530a852020-03-10 13:11:23 +00002240 if (!strbuf_realpath(&one_up, "../", 0))
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002241 return 0;
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002242
Alexandr Miloslavskiy4530a852020-03-10 13:11:23 +00002243 subpath = relative_path(cwd, one_up.buf, &sb);
2244 strbuf_release(&one_up);
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002245
2246 prepare_submodule_repo_env(&cp.env_array);
Jeff Kingc972bf42020-07-28 16:25:12 -04002247 strvec_pop(&cp.env_array);
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002248
Jeff Kingc972bf42020-07-28 16:25:12 -04002249 strvec_pushl(&cp.args, "--literal-pathspecs", "-C", "..",
Jeff Kingf6d89422020-07-28 16:26:31 -04002250 "ls-files", "-z", "--stage", "--full-name", "--",
2251 subpath, NULL);
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002252 strbuf_reset(&sb);
2253
2254 cp.no_stdin = 1;
2255 cp.no_stderr = 1;
2256 cp.out = -1;
2257 cp.git_cmd = 1;
2258
2259 if (start_command(&cp))
2260 die(_("could not start ls-files in .."));
2261
2262 len = strbuf_read(&sb, cp.out, PATH_MAX);
2263 close(cp.out);
2264
2265 if (starts_with(sb.buf, "160000")) {
2266 int super_sub_len;
2267 int cwd_len = strlen(cwd);
2268 char *super_sub, *super_wt;
2269
2270 /*
2271 * There is a superproject having this repo as a submodule.
2272 * The format is <mode> SP <hash> SP <stage> TAB <full name> \0,
2273 * We're only interested in the name after the tab.
2274 */
2275 super_sub = strchr(sb.buf, '\t') + 1;
Sam McKelviec5cbb272018-09-27 11:10:54 -07002276 super_sub_len = strlen(super_sub);
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002277
2278 if (super_sub_len > cwd_len ||
2279 strcmp(&cwd[cwd_len - super_sub_len], super_sub))
Johannes Schindelinc3c34862018-05-02 11:38:41 +02002280 BUG("returned path string doesn't match cwd?");
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002281
2282 super_wt = xstrdup(cwd);
2283 super_wt[cwd_len - super_sub_len] = '\0';
2284
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002285 strbuf_realpath(buf, super_wt, 1);
2286 ret = 1;
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002287 free(super_wt);
2288 }
2289 strbuf_release(&sb);
2290
2291 code = finish_command(&cp);
2292
2293 if (code == 128)
2294 /* '../' is not a git repository */
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002295 return 0;
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002296 if (code == 0 && len == 0)
2297 /* There is an unrelated git repository at '../' */
Alexandr Miloslavskiy49d3c4b2020-03-10 13:11:24 +00002298 return 0;
Stefan Bellerbf0231c2017-03-08 15:07:42 -08002299 if (code)
2300 die(_("ls-tree returned unexpected return code %d"), code);
2301
2302 return ret;
2303}
Nguyễn Thái Ngọc Duybbbb7de2017-03-26 09:42:30 +07002304
Han-Wen Nienhuys3ce08542017-09-25 17:59:26 +02002305/*
2306 * Put the gitdir for a submodule (given relative to the main
2307 * repository worktree) into `buf`, or return -1 on error.
2308 */
Nguyễn Thái Ngọc Duybbbb7de2017-03-26 09:42:30 +07002309int submodule_to_gitdir(struct strbuf *buf, const char *submodule)
2310{
2311 const struct submodule *sub;
2312 const char *git_dir;
2313 int ret = 0;
2314
2315 strbuf_reset(buf);
2316 strbuf_addstr(buf, submodule);
2317 strbuf_complete(buf, '/');
2318 strbuf_addstr(buf, ".git");
2319
2320 git_dir = read_gitfile(buf->buf);
2321 if (git_dir) {
2322 strbuf_reset(buf);
2323 strbuf_addstr(buf, git_dir);
2324 }
2325 if (!is_git_directory(buf->buf)) {
brian m. carlson14228442021-04-26 01:02:56 +00002326 sub = submodule_from_path(the_repository, null_oid(),
2327 submodule);
Nguyễn Thái Ngọc Duybbbb7de2017-03-26 09:42:30 +07002328 if (!sub) {
2329 ret = -1;
2330 goto cleanup;
2331 }
2332 strbuf_reset(buf);
Jonathan Tance125d42021-09-15 11:59:19 -07002333 submodule_name_to_gitdir(buf, the_repository, sub->name);
Nguyễn Thái Ngọc Duybbbb7de2017-03-26 09:42:30 +07002334 }
2335
2336cleanup:
2337 return ret;
2338}
Jonathan Tance125d42021-09-15 11:59:19 -07002339
2340void submodule_name_to_gitdir(struct strbuf *buf, struct repository *r,
2341 const char *submodule_name)
2342{
2343 /*
2344 * NEEDSWORK: The current way of mapping a submodule's name to
2345 * its location in .git/modules/ has problems with some naming
2346 * schemes. For example, if a submodule is named "foo" and
2347 * another is named "foo/bar" (whether present in the same
2348 * superproject commit or not - the problem will arise if both
2349 * superproject commits have been checked out at any point in
2350 * time), or if two submodule names only have different cases in
2351 * a case-insensitive filesystem.
2352 *
2353 * There are several solutions, including encoding the path in
2354 * some way, introducing a submodule.<name>.gitdir config in
2355 * .git/config (not .gitmodules) that allows overriding what the
2356 * gitdir of a submodule would be (and teach Git, upon noticing
2357 * a clash, to automatically determine a non-clashing name and
2358 * to write such a config), or introducing a
2359 * submodule.<name>.gitdir config in .gitmodules that repo
2360 * administrators can explicitly set. Nothing has been decided,
2361 * so for now, just append the name at the end of the path.
2362 */
2363 strbuf_repo_git_path(buf, r, "modules/");
2364 strbuf_addstr(buf, submodule_name);
2365}