blob: 58dfbde9ae5883f755e88809faf3871859024730 [file] [log] [blame]
Elijah Newrend812c3b2023-04-11 00:41:56 -07001#include "git-compat-util.h"
Elijah Newren36bf1952023-02-24 00:09:24 +00002#include "alloc.h"
Antonio Ospite76e9bdc2018-10-25 18:18:12 +02003#include "dir.h"
Elijah Newren32a8f512023-03-21 06:26:03 +00004#include "environment.h"
Elijah Newrenf394e092023-03-21 06:25:54 +00005#include "gettext.h"
Elijah Newren41771fa2023-02-24 00:09:27 +00006#include "hex.h"
Brandon Williamsbf12fcd2017-06-22 11:43:44 -07007#include "repository.h"
Brandon Williamsb2141fc2017-06-14 11:07:36 -07008#include "config.h"
Heiko Voigt959b5452015-08-17 17:21:57 -07009#include "submodule-config.h"
10#include "submodule.h"
11#include "strbuf.h"
Elijah Newrendabab1d2023-04-11 00:41:49 -070012#include "object-name.h"
Stefan Bellercbd53a22018-05-15 16:42:15 -070013#include "object-store.h"
Stefan Beller886dc152017-06-23 12:13:00 -070014#include "parse-options.h"
Elijah Newrene3d2f202023-04-22 20:17:27 +000015#include "thread-utils.h"
Glen Choo961b1302022-01-28 16:04:45 -080016#include "tree-walk.h"
Heiko Voigt959b5452015-08-17 17:21:57 -070017
18/*
19 * submodule cache lookup structure
20 * There is one shared set of 'struct submodule' entries which can be
Robert P. J. Day5aea9fe2018-02-13 19:09:31 -050021 * looked up by their sha1 blob id of the .gitmodules file and either
Heiko Voigt959b5452015-08-17 17:21:57 -070022 * using path or name as key.
23 * for_path stores submodule entries with path as key
24 * for_name stores submodule entries with name as key
25 */
26struct submodule_cache {
27 struct hashmap for_path;
28 struct hashmap for_name;
Brandon Williamsbf12fcd2017-06-22 11:43:44 -070029 unsigned initialized:1;
Brandon Williamsff6f1f52017-08-03 11:19:58 -070030 unsigned gitmodules_read:1;
Heiko Voigt959b5452015-08-17 17:21:57 -070031};
32
33/*
34 * thin wrapper struct needed to insert 'struct submodule' entries to
35 * the hashmap
36 */
37struct submodule_entry {
38 struct hashmap_entry ent;
39 struct submodule *config;
40};
41
42enum lookup_type {
43 lookup_name,
44 lookup_path
45};
46
Ævar Arnfjörð Bjarmason5cf88fd2022-08-25 19:09:48 +020047static int config_path_cmp(const void *cmp_data UNUSED,
Eric Wong939af162019-10-06 23:30:37 +000048 const struct hashmap_entry *eptr,
49 const struct hashmap_entry *entry_or_key,
Ævar Arnfjörð Bjarmason5cf88fd2022-08-25 19:09:48 +020050 const void *keydata UNUSED)
Heiko Voigt959b5452015-08-17 17:21:57 -070051{
Eric Wong939af162019-10-06 23:30:37 +000052 const struct submodule_entry *a, *b;
53
54 a = container_of(eptr, const struct submodule_entry, ent);
55 b = container_of(entry_or_key, const struct submodule_entry, ent);
Stefan Beller152cbdc2017-06-30 17:28:36 -070056
Heiko Voigt959b5452015-08-17 17:21:57 -070057 return strcmp(a->config->path, b->config->path) ||
Jeff King9001dc22018-08-28 17:22:48 -040058 !oideq(&a->config->gitmodules_oid, &b->config->gitmodules_oid);
Heiko Voigt959b5452015-08-17 17:21:57 -070059}
60
Ævar Arnfjörð Bjarmason5cf88fd2022-08-25 19:09:48 +020061static int config_name_cmp(const void *cmp_data UNUSED,
Eric Wong939af162019-10-06 23:30:37 +000062 const struct hashmap_entry *eptr,
63 const struct hashmap_entry *entry_or_key,
Ævar Arnfjörð Bjarmason5cf88fd2022-08-25 19:09:48 +020064 const void *keydata UNUSED)
Heiko Voigt959b5452015-08-17 17:21:57 -070065{
Eric Wong939af162019-10-06 23:30:37 +000066 const struct submodule_entry *a, *b;
67
68 a = container_of(eptr, const struct submodule_entry, ent);
69 b = container_of(entry_or_key, const struct submodule_entry, ent);
Stefan Beller152cbdc2017-06-30 17:28:36 -070070
Heiko Voigt959b5452015-08-17 17:21:57 -070071 return strcmp(a->config->name, b->config->name) ||
Jeff King9001dc22018-08-28 17:22:48 -040072 !oideq(&a->config->gitmodules_oid, &b->config->gitmodules_oid);
Heiko Voigt959b5452015-08-17 17:21:57 -070073}
74
Brandon Williamsbf12fcd2017-06-22 11:43:44 -070075static struct submodule_cache *submodule_cache_alloc(void)
76{
77 return xcalloc(1, sizeof(struct submodule_cache));
78}
79
80static void submodule_cache_init(struct submodule_cache *cache)
Heiko Voigt959b5452015-08-17 17:21:57 -070081{
Stefan Beller152cbdc2017-06-30 17:28:36 -070082 hashmap_init(&cache->for_path, config_path_cmp, NULL, 0);
83 hashmap_init(&cache->for_name, config_name_cmp, NULL, 0);
Brandon Williamsbf12fcd2017-06-22 11:43:44 -070084 cache->initialized = 1;
Heiko Voigt959b5452015-08-17 17:21:57 -070085}
86
87static void free_one_config(struct submodule_entry *entry)
88{
89 free((void *) entry->config->path);
90 free((void *) entry->config->name);
Stefan Bellerb5944f32016-07-28 17:44:07 -070091 free((void *) entry->config->branch);
Stefan Bellerea2fa5a2016-02-29 18:07:11 -080092 free((void *) entry->config->update_strategy.command);
Heiko Voigt959b5452015-08-17 17:21:57 -070093 free(entry->config);
94}
95
Brandon Williamsbf12fcd2017-06-22 11:43:44 -070096static void submodule_cache_clear(struct submodule_cache *cache)
Heiko Voigt959b5452015-08-17 17:21:57 -070097{
98 struct hashmap_iter iter;
99 struct submodule_entry *entry;
100
Brandon Williamsbf12fcd2017-06-22 11:43:44 -0700101 if (!cache->initialized)
102 return;
103
Heiko Voigt959b5452015-08-17 17:21:57 -0700104 /*
105 * We iterate over the name hash here to be symmetric with the
106 * allocation of struct submodule entries. Each is allocated by
Robert P. J. Day5aea9fe2018-02-13 19:09:31 -0500107 * their .gitmodules blob sha1 and submodule name.
Heiko Voigt959b5452015-08-17 17:21:57 -0700108 */
Eric Wong87571c32019-10-06 23:30:38 +0000109 hashmap_for_each_entry(&cache->for_name, &iter, entry,
Eric Wong23dee692019-10-06 23:30:41 +0000110 ent /* member name */)
Heiko Voigt959b5452015-08-17 17:21:57 -0700111 free_one_config(entry);
112
Elijah Newren6da1a252020-11-02 18:55:05 +0000113 hashmap_clear_and_free(&cache->for_path, struct submodule_entry, ent);
114 hashmap_clear_and_free(&cache->for_name, struct submodule_entry, ent);
Brandon Williamsbf12fcd2017-06-22 11:43:44 -0700115 cache->initialized = 0;
Brandon Williamsff6f1f52017-08-03 11:19:58 -0700116 cache->gitmodules_read = 0;
Brandon Williamsbf12fcd2017-06-22 11:43:44 -0700117}
118
119void submodule_cache_free(struct submodule_cache *cache)
120{
121 submodule_cache_clear(cache);
122 free(cache);
Heiko Voigt959b5452015-08-17 17:21:57 -0700123}
124
brian m. carlson34caab02018-05-02 00:25:42 +0000125static unsigned int hash_oid_string(const struct object_id *oid,
126 const char *string)
Heiko Voigt959b5452015-08-17 17:21:57 -0700127{
brian m. carlson34caab02018-05-02 00:25:42 +0000128 return memhash(oid->hash, the_hash_algo->rawsz) + strhash(string);
Heiko Voigt959b5452015-08-17 17:21:57 -0700129}
130
131static void cache_put_path(struct submodule_cache *cache,
132 struct submodule *submodule)
133{
brian m. carlson34caab02018-05-02 00:25:42 +0000134 unsigned int hash = hash_oid_string(&submodule->gitmodules_oid,
135 submodule->path);
Heiko Voigt959b5452015-08-17 17:21:57 -0700136 struct submodule_entry *e = xmalloc(sizeof(*e));
Eric Wongd22245a2019-10-06 23:30:27 +0000137 hashmap_entry_init(&e->ent, hash);
Heiko Voigt959b5452015-08-17 17:21:57 -0700138 e->config = submodule;
Eric Wong26b455f2019-10-06 23:30:32 +0000139 hashmap_put(&cache->for_path, &e->ent);
Heiko Voigt959b5452015-08-17 17:21:57 -0700140}
141
142static void cache_remove_path(struct submodule_cache *cache,
143 struct submodule *submodule)
144{
brian m. carlson34caab02018-05-02 00:25:42 +0000145 unsigned int hash = hash_oid_string(&submodule->gitmodules_oid,
146 submodule->path);
Heiko Voigt959b5452015-08-17 17:21:57 -0700147 struct submodule_entry e;
148 struct submodule_entry *removed;
Eric Wongd22245a2019-10-06 23:30:27 +0000149 hashmap_entry_init(&e.ent, hash);
Heiko Voigt959b5452015-08-17 17:21:57 -0700150 e.config = submodule;
Eric Wong404ab782019-10-06 23:30:42 +0000151 removed = hashmap_remove_entry(&cache->for_path, &e, ent, NULL);
Heiko Voigt959b5452015-08-17 17:21:57 -0700152 free(removed);
153}
154
155static void cache_add(struct submodule_cache *cache,
156 struct submodule *submodule)
157{
brian m. carlson34caab02018-05-02 00:25:42 +0000158 unsigned int hash = hash_oid_string(&submodule->gitmodules_oid,
159 submodule->name);
Heiko Voigt959b5452015-08-17 17:21:57 -0700160 struct submodule_entry *e = xmalloc(sizeof(*e));
Eric Wongd22245a2019-10-06 23:30:27 +0000161 hashmap_entry_init(&e->ent, hash);
Heiko Voigt959b5452015-08-17 17:21:57 -0700162 e->config = submodule;
Eric Wongb94e5c12019-10-06 23:30:29 +0000163 hashmap_add(&cache->for_name, &e->ent);
Heiko Voigt959b5452015-08-17 17:21:57 -0700164}
165
166static const struct submodule *cache_lookup_path(struct submodule_cache *cache,
brian m. carlson34caab02018-05-02 00:25:42 +0000167 const struct object_id *gitmodules_oid, const char *path)
Heiko Voigt959b5452015-08-17 17:21:57 -0700168{
169 struct submodule_entry *entry;
brian m. carlson34caab02018-05-02 00:25:42 +0000170 unsigned int hash = hash_oid_string(gitmodules_oid, path);
Heiko Voigt959b5452015-08-17 17:21:57 -0700171 struct submodule_entry key;
172 struct submodule key_config;
173
brian m. carlson34caab02018-05-02 00:25:42 +0000174 oidcpy(&key_config.gitmodules_oid, gitmodules_oid);
Heiko Voigt959b5452015-08-17 17:21:57 -0700175 key_config.path = path;
176
Eric Wongd22245a2019-10-06 23:30:27 +0000177 hashmap_entry_init(&key.ent, hash);
Heiko Voigt959b5452015-08-17 17:21:57 -0700178 key.config = &key_config;
179
Eric Wong404ab782019-10-06 23:30:42 +0000180 entry = hashmap_get_entry(&cache->for_path, &key, ent, NULL);
Heiko Voigt959b5452015-08-17 17:21:57 -0700181 if (entry)
182 return entry->config;
183 return NULL;
184}
185
186static struct submodule *cache_lookup_name(struct submodule_cache *cache,
brian m. carlson34caab02018-05-02 00:25:42 +0000187 const struct object_id *gitmodules_oid, const char *name)
Heiko Voigt959b5452015-08-17 17:21:57 -0700188{
189 struct submodule_entry *entry;
brian m. carlson34caab02018-05-02 00:25:42 +0000190 unsigned int hash = hash_oid_string(gitmodules_oid, name);
Heiko Voigt959b5452015-08-17 17:21:57 -0700191 struct submodule_entry key;
192 struct submodule key_config;
193
brian m. carlson34caab02018-05-02 00:25:42 +0000194 oidcpy(&key_config.gitmodules_oid, gitmodules_oid);
Heiko Voigt959b5452015-08-17 17:21:57 -0700195 key_config.name = name;
196
Eric Wongd22245a2019-10-06 23:30:27 +0000197 hashmap_entry_init(&key.ent, hash);
Heiko Voigt959b5452015-08-17 17:21:57 -0700198 key.config = &key_config;
199
Eric Wong404ab782019-10-06 23:30:42 +0000200 entry = hashmap_get_entry(&cache->for_name, &key, ent, NULL);
Heiko Voigt959b5452015-08-17 17:21:57 -0700201 if (entry)
202 return entry->config;
203 return NULL;
204}
205
Jeff King0383bbb2018-04-30 03:25:25 -0400206int check_submodule_name(const char *name)
207{
208 /* Disallow empty names */
209 if (!*name)
210 return -1;
211
212 /*
Ævar Arnfjörð Bjarmason9fd512c2022-05-16 20:10:59 +0000213 * Look for '..' as a path component. Check is_xplatform_dir_sep() as
Jeff King0383bbb2018-04-30 03:25:25 -0400214 * separators rather than is_dir_sep(), because we want the name rules
215 * to be consistent across platforms.
216 */
217 goto in_component; /* always start inside component */
218 while (*name) {
219 char c = *name++;
Ævar Arnfjörð Bjarmason9fd512c2022-05-16 20:10:59 +0000220 if (is_xplatform_dir_sep(c)) {
Jeff King0383bbb2018-04-30 03:25:25 -0400221in_component:
222 if (name[0] == '.' && name[1] == '.' &&
Ævar Arnfjörð Bjarmason9fd512c2022-05-16 20:10:59 +0000223 (!name[2] || is_xplatform_dir_sep(name[2])))
Jeff King0383bbb2018-04-30 03:25:25 -0400224 return -1;
225 }
226 }
227
228 return 0;
229}
230
Heiko Voigt959b5452015-08-17 17:21:57 -0700231static int name_and_item_from_var(const char *var, struct strbuf *name,
232 struct strbuf *item)
233{
234 const char *subsection, *key;
Jeff Kingf5914f42020-04-10 15:44:28 -0400235 size_t subsection_len;
236 int parse;
Heiko Voigt959b5452015-08-17 17:21:57 -0700237 parse = parse_config_key(var, "submodule", &subsection,
238 &subsection_len, &key);
239 if (parse < 0 || !subsection)
240 return 0;
241
242 strbuf_add(name, subsection, subsection_len);
Jeff King0383bbb2018-04-30 03:25:25 -0400243 if (check_submodule_name(name->buf) < 0) {
244 warning(_("ignoring suspicious submodule name: %s"), name->buf);
245 strbuf_release(name);
246 return 0;
247 }
248
Heiko Voigt959b5452015-08-17 17:21:57 -0700249 strbuf_addstr(item, key);
250
251 return 1;
252}
253
254static struct submodule *lookup_or_create_by_name(struct submodule_cache *cache,
brian m. carlson34caab02018-05-02 00:25:42 +0000255 const struct object_id *gitmodules_oid, const char *name)
Heiko Voigt959b5452015-08-17 17:21:57 -0700256{
257 struct submodule *submodule;
258 struct strbuf name_buf = STRBUF_INIT;
259
brian m. carlson34caab02018-05-02 00:25:42 +0000260 submodule = cache_lookup_name(cache, gitmodules_oid, name);
Heiko Voigt959b5452015-08-17 17:21:57 -0700261 if (submodule)
262 return submodule;
263
264 submodule = xmalloc(sizeof(*submodule));
265
266 strbuf_addstr(&name_buf, name);
267 submodule->name = strbuf_detach(&name_buf, NULL);
268
269 submodule->path = NULL;
270 submodule->url = NULL;
Stefan Bellerea2fa5a2016-02-29 18:07:11 -0800271 submodule->update_strategy.type = SM_UPDATE_UNSPECIFIED;
272 submodule->update_strategy.command = NULL;
Heiko Voigt959b5452015-08-17 17:21:57 -0700273 submodule->fetch_recurse = RECURSE_SUBMODULES_NONE;
274 submodule->ignore = NULL;
Stefan Bellerb5944f32016-07-28 17:44:07 -0700275 submodule->branch = NULL;
Stefan Beller37f52e92016-05-26 14:59:42 -0700276 submodule->recommend_shallow = -1;
Heiko Voigt959b5452015-08-17 17:21:57 -0700277
brian m. carlson34caab02018-05-02 00:25:42 +0000278 oidcpy(&submodule->gitmodules_oid, gitmodules_oid);
Heiko Voigt959b5452015-08-17 17:21:57 -0700279
280 cache_add(cache, submodule);
281
282 return submodule;
283}
284
Heiko Voigt027771f2015-08-17 17:22:00 -0700285static int parse_fetch_recurse(const char *opt, const char *arg,
286 int die_on_error)
287{
Martin Ågren89576612017-08-07 20:20:49 +0200288 switch (git_parse_maybe_bool(arg)) {
Heiko Voigt027771f2015-08-17 17:22:00 -0700289 case 1:
290 return RECURSE_SUBMODULES_ON;
291 case 0:
292 return RECURSE_SUBMODULES_OFF;
293 default:
294 if (!strcmp(arg, "on-demand"))
295 return RECURSE_SUBMODULES_ON_DEMAND;
Nguyễn Thái Ngọc Duy5a59a232019-02-16 18:24:41 +0700296 /*
297 * Please update $__git_fetch_recurse_submodules in
298 * git-completion.bash when you add new options.
299 */
Heiko Voigt027771f2015-08-17 17:22:00 -0700300 if (die_on_error)
301 die("bad %s argument: %s", opt, arg);
302 else
303 return RECURSE_SUBMODULES_ERROR;
304 }
305}
306
Brandon Williamsf20e7c12017-08-02 12:49:18 -0700307int parse_submodule_fetchjobs(const char *var, const char *value)
308{
309 int fetchjobs = git_config_int(var, value);
310 if (fetchjobs < 0)
Jiang Xinb4eda052022-06-17 18:03:09 +0800311 die(_("negative values not allowed for submodule.fetchJobs"));
Ævar Arnfjörð Bjarmason51243f92022-10-12 23:02:24 +0200312 if (!fetchjobs)
313 fetchjobs = online_cpus();
Brandon Williamsf20e7c12017-08-02 12:49:18 -0700314 return fetchjobs;
315}
316
Heiko Voigt027771f2015-08-17 17:22:00 -0700317int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg)
318{
319 return parse_fetch_recurse(opt, arg, 1);
320}
321
Stefan Beller886dc152017-06-23 12:13:00 -0700322int option_fetch_parse_recurse_submodules(const struct option *opt,
323 const char *arg, int unset)
324{
325 int *v;
326
327 if (!opt->value)
328 return -1;
329
330 v = opt->value;
331
332 if (unset) {
333 *v = RECURSE_SUBMODULES_OFF;
334 } else {
335 if (arg)
336 *v = parse_fetch_recurse_submodules_arg(opt->long_name, arg);
337 else
338 *v = RECURSE_SUBMODULES_ON;
339 }
340 return 0;
341}
342
Stefan Bellerd601fd02017-03-14 14:46:32 -0700343static int parse_update_recurse(const char *opt, const char *arg,
344 int die_on_error)
345{
Junio C Hamanobdfcdef2017-08-22 10:29:03 -0700346 switch (git_parse_maybe_bool(arg)) {
Stefan Bellerd601fd02017-03-14 14:46:32 -0700347 case 1:
348 return RECURSE_SUBMODULES_ON;
349 case 0:
350 return RECURSE_SUBMODULES_OFF;
351 default:
352 if (die_on_error)
353 die("bad %s argument: %s", opt, arg);
354 return RECURSE_SUBMODULES_ERROR;
355 }
356}
357
358int parse_update_recurse_submodules_arg(const char *opt, const char *arg)
359{
360 return parse_update_recurse(opt, arg, 1);
361}
362
Mike Croweb33a15b2015-11-17 11:05:56 +0000363static int parse_push_recurse(const char *opt, const char *arg,
364 int die_on_error)
365{
Martin Ågren89576612017-08-07 20:20:49 +0200366 switch (git_parse_maybe_bool(arg)) {
Mike Croweb33a15b2015-11-17 11:05:56 +0000367 case 1:
368 /* There's no simple "on" value when pushing */
369 if (die_on_error)
370 die("bad %s argument: %s", opt, arg);
371 else
372 return RECURSE_SUBMODULES_ERROR;
373 case 0:
374 return RECURSE_SUBMODULES_OFF;
375 default:
376 if (!strcmp(arg, "on-demand"))
377 return RECURSE_SUBMODULES_ON_DEMAND;
378 else if (!strcmp(arg, "check"))
379 return RECURSE_SUBMODULES_CHECK;
Brandon Williams6c656c32016-12-19 10:25:32 -0800380 else if (!strcmp(arg, "only"))
381 return RECURSE_SUBMODULES_ONLY;
Nguyễn Thái Ngọc Duy5a59a232019-02-16 18:24:41 +0700382 /*
383 * Please update $__git_push_recurse_submodules in
384 * git-completion.bash when you add new modes.
385 */
Mike Croweb33a15b2015-11-17 11:05:56 +0000386 else if (die_on_error)
387 die("bad %s argument: %s", opt, arg);
388 else
389 return RECURSE_SUBMODULES_ERROR;
390 }
391}
392
393int parse_push_recurse_submodules_arg(const char *opt, const char *arg)
394{
395 return parse_push_recurse(opt, arg, 1);
396}
397
brian m. carlson34caab02018-05-02 00:25:42 +0000398static void warn_multiple_config(const struct object_id *treeish_name,
Heiko Voigt959b5452015-08-17 17:21:57 -0700399 const char *name, const char *option)
400{
401 const char *commit_string = "WORKTREE";
Stefan Beller73c293b2016-11-22 12:14:37 -0800402 if (treeish_name)
brian m. carlson34caab02018-05-02 00:25:42 +0000403 commit_string = oid_to_hex(treeish_name);
Heiko Voigt959b5452015-08-17 17:21:57 -0700404 warning("%s:.gitmodules, multiple configurations found for "
405 "'submodule.%s.%s'. Skipping second one!",
406 commit_string, name, option);
407}
408
Jeff Kingf6adec42018-09-24 04:36:30 -0400409static void warn_command_line_option(const char *var, const char *value)
410{
411 warning(_("ignoring '%s' which may be interpreted as"
412 " a command-line option: %s"), var, value);
413}
414
Heiko Voigt959b5452015-08-17 17:21:57 -0700415struct parse_config_parameter {
416 struct submodule_cache *cache;
brian m. carlson34caab02018-05-02 00:25:42 +0000417 const struct object_id *treeish_name;
418 const struct object_id *gitmodules_oid;
Heiko Voigt959b5452015-08-17 17:21:57 -0700419 int overwrite;
420};
421
Jonathan Niedere904deb2019-12-05 01:28:28 -0800422/*
423 * Parse a config item from .gitmodules.
424 *
425 * This does not handle submodule-related configuration from the main
426 * config store (.git/config, etc). Callers are responsible for
427 * checking for overrides in the main config store when appropriate.
428 */
Heiko Voigt959b5452015-08-17 17:21:57 -0700429static int parse_config(const char *var, const char *value, void *data)
430{
431 struct parse_config_parameter *me = data;
432 struct submodule *submodule;
433 struct strbuf name = STRBUF_INIT, item = STRBUF_INIT;
434 int ret = 0;
435
436 /* this also ensures that we only parse submodule entries */
437 if (!name_and_item_from_var(var, &name, &item))
438 return 0;
439
Stefan Beller147875f2015-10-12 10:58:58 -0700440 submodule = lookup_or_create_by_name(me->cache,
brian m. carlson34caab02018-05-02 00:25:42 +0000441 me->gitmodules_oid,
Stefan Beller147875f2015-10-12 10:58:58 -0700442 name.buf);
Heiko Voigt959b5452015-08-17 17:21:57 -0700443
444 if (!strcmp(item.buf, "path")) {
Stefan Beller147875f2015-10-12 10:58:58 -0700445 if (!value)
Heiko Voigt959b5452015-08-17 17:21:57 -0700446 ret = config_error_nonbool(var);
Jeff King273c6142018-09-24 04:39:55 -0400447 else if (looks_like_command_line_option(value))
448 warn_command_line_option(var, value);
Stefan Bellerf73da112016-02-29 18:07:12 -0800449 else if (!me->overwrite && submodule->path)
Stefan Beller73c293b2016-11-22 12:14:37 -0800450 warn_multiple_config(me->treeish_name, submodule->name,
Heiko Voigt959b5452015-08-17 17:21:57 -0700451 "path");
Stefan Beller147875f2015-10-12 10:58:58 -0700452 else {
453 if (submodule->path)
454 cache_remove_path(me->cache, submodule);
455 free((void *) submodule->path);
456 submodule->path = xstrdup(value);
457 cache_put_path(me->cache, submodule);
Heiko Voigt959b5452015-08-17 17:21:57 -0700458 }
Heiko Voigt959b5452015-08-17 17:21:57 -0700459 } else if (!strcmp(item.buf, "fetchrecursesubmodules")) {
Heiko Voigt027771f2015-08-17 17:22:00 -0700460 /* when parsing worktree configurations we can die early */
brian m. carlson34caab02018-05-02 00:25:42 +0000461 int die_on_error = is_null_oid(me->gitmodules_oid);
Heiko Voigt959b5452015-08-17 17:21:57 -0700462 if (!me->overwrite &&
Stefan Beller147875f2015-10-12 10:58:58 -0700463 submodule->fetch_recurse != RECURSE_SUBMODULES_NONE)
Stefan Beller73c293b2016-11-22 12:14:37 -0800464 warn_multiple_config(me->treeish_name, submodule->name,
Heiko Voigt959b5452015-08-17 17:21:57 -0700465 "fetchrecursesubmodules");
Stefan Beller147875f2015-10-12 10:58:58 -0700466 else
467 submodule->fetch_recurse = parse_fetch_recurse(
468 var, value,
Heiko Voigt027771f2015-08-17 17:22:00 -0700469 die_on_error);
Heiko Voigt959b5452015-08-17 17:21:57 -0700470 } else if (!strcmp(item.buf, "ignore")) {
Stefan Beller147875f2015-10-12 10:58:58 -0700471 if (!value)
472 ret = config_error_nonbool(var);
Stefan Bellerf73da112016-02-29 18:07:12 -0800473 else if (!me->overwrite && submodule->ignore)
Stefan Beller73c293b2016-11-22 12:14:37 -0800474 warn_multiple_config(me->treeish_name, submodule->name,
Heiko Voigt959b5452015-08-17 17:21:57 -0700475 "ignore");
Stefan Beller147875f2015-10-12 10:58:58 -0700476 else if (strcmp(value, "untracked") &&
477 strcmp(value, "dirty") &&
478 strcmp(value, "all") &&
479 strcmp(value, "none"))
Heiko Voigt959b5452015-08-17 17:21:57 -0700480 warning("Invalid parameter '%s' for config option "
Stefan Beller5ea30482017-03-14 15:14:40 -0700481 "'submodule.%s.ignore'", value, name.buf);
Stefan Beller147875f2015-10-12 10:58:58 -0700482 else {
483 free((void *) submodule->ignore);
484 submodule->ignore = xstrdup(value);
Heiko Voigt959b5452015-08-17 17:21:57 -0700485 }
Heiko Voigt959b5452015-08-17 17:21:57 -0700486 } else if (!strcmp(item.buf, "url")) {
Heiko Voigt959b5452015-08-17 17:21:57 -0700487 if (!value) {
488 ret = config_error_nonbool(var);
Jeff Kingf6adec42018-09-24 04:36:30 -0400489 } else if (looks_like_command_line_option(value)) {
490 warn_command_line_option(var, value);
Stefan Bellerf73da112016-02-29 18:07:12 -0800491 } else if (!me->overwrite && submodule->url) {
Stefan Beller73c293b2016-11-22 12:14:37 -0800492 warn_multiple_config(me->treeish_name, submodule->name,
Heiko Voigt959b5452015-08-17 17:21:57 -0700493 "url");
Stefan Beller147875f2015-10-12 10:58:58 -0700494 } else {
495 free((void *) submodule->url);
496 submodule->url = xstrdup(value);
Heiko Voigt959b5452015-08-17 17:21:57 -0700497 }
Stefan Bellerea2fa5a2016-02-29 18:07:11 -0800498 } else if (!strcmp(item.buf, "update")) {
499 if (!value)
500 ret = config_error_nonbool(var);
501 else if (!me->overwrite &&
502 submodule->update_strategy.type != SM_UPDATE_UNSPECIFIED)
Stefan Beller73c293b2016-11-22 12:14:37 -0800503 warn_multiple_config(me->treeish_name, submodule->name,
Stefan Bellerea2fa5a2016-02-29 18:07:11 -0800504 "update");
505 else if (parse_submodule_update_strategy(value,
Jonathan Niedere904deb2019-12-05 01:28:28 -0800506 &submodule->update_strategy) < 0 ||
507 submodule->update_strategy.type == SM_UPDATE_COMMAND)
Jean-Noël Avila1a8aea82022-01-31 22:07:47 +0000508 die(_("invalid value for '%s'"), var);
Stefan Beller37f52e92016-05-26 14:59:42 -0700509 } else if (!strcmp(item.buf, "shallow")) {
510 if (!me->overwrite && submodule->recommend_shallow != -1)
Stefan Beller73c293b2016-11-22 12:14:37 -0800511 warn_multiple_config(me->treeish_name, submodule->name,
Stefan Beller37f52e92016-05-26 14:59:42 -0700512 "shallow");
Stefan Bellerb5944f32016-07-28 17:44:07 -0700513 else
Stefan Beller37f52e92016-05-26 14:59:42 -0700514 submodule->recommend_shallow =
515 git_config_bool(var, value);
Stefan Bellerb5944f32016-07-28 17:44:07 -0700516 } else if (!strcmp(item.buf, "branch")) {
517 if (!me->overwrite && submodule->branch)
Stefan Beller73c293b2016-11-22 12:14:37 -0800518 warn_multiple_config(me->treeish_name, submodule->name,
Stefan Bellerb5944f32016-07-28 17:44:07 -0700519 "branch");
520 else {
521 free((void *)submodule->branch);
522 submodule->branch = xstrdup(value);
Stefan Beller37f52e92016-05-26 14:59:42 -0700523 }
Heiko Voigt959b5452015-08-17 17:21:57 -0700524 }
525
Heiko Voigt959b5452015-08-17 17:21:57 -0700526 strbuf_release(&name);
527 strbuf_release(&item);
528
529 return ret;
530}
531
Brandon Williams1b796ac2017-08-03 11:19:57 -0700532static int gitmodule_oid_from_commit(const struct object_id *treeish_name,
533 struct object_id *gitmodules_oid,
534 struct strbuf *rev)
Heiko Voigt959b5452015-08-17 17:21:57 -0700535{
Heiko Voigt959b5452015-08-17 17:21:57 -0700536 int ret = 0;
537
brian m. carlsoncd73de42017-07-13 23:49:20 +0000538 if (is_null_oid(treeish_name)) {
539 oidclr(gitmodules_oid);
Heiko Voigt959b5452015-08-17 17:21:57 -0700540 return 1;
541 }
542
brian m. carlsoncd73de42017-07-13 23:49:20 +0000543 strbuf_addf(rev, "%s:.gitmodules", oid_to_hex(treeish_name));
Ævar Arnfjörð Bjarmasond850b7a2023-03-28 15:58:46 +0200544 if (repo_get_oid(the_repository, rev->buf, gitmodules_oid) >= 0)
Heiko Voigt959b5452015-08-17 17:21:57 -0700545 ret = 1;
546
Heiko Voigt959b5452015-08-17 17:21:57 -0700547 return ret;
548}
549
550/* This does a lookup of a submodule configuration by name or by path
551 * (key) with on-demand reading of the appropriate .gitmodules from
552 * revisions.
553 */
554static const struct submodule *config_from(struct submodule_cache *cache,
brian m. carlsoncd73de42017-07-13 23:49:20 +0000555 const struct object_id *treeish_name, const char *key,
Heiko Voigt959b5452015-08-17 17:21:57 -0700556 enum lookup_type lookup_type)
557{
558 struct strbuf rev = STRBUF_INIT;
559 unsigned long config_size;
Heiko Voigt0918e252016-07-28 14:49:47 +0200560 char *config = NULL;
brian m. carlsoncd73de42017-07-13 23:49:20 +0000561 struct object_id oid;
Heiko Voigt959b5452015-08-17 17:21:57 -0700562 enum object_type type;
563 const struct submodule *submodule = NULL;
564 struct parse_config_parameter parameter;
565
566 /*
567 * If any parameter except the cache is a NULL pointer just
568 * return the first submodule. Can be used to check whether
569 * there are any submodules parsed.
570 */
Stefan Beller73c293b2016-11-22 12:14:37 -0800571 if (!treeish_name || !key) {
Heiko Voigt959b5452015-08-17 17:21:57 -0700572 struct hashmap_iter iter;
573 struct submodule_entry *entry;
574
Eric Wong87571c32019-10-06 23:30:38 +0000575 entry = hashmap_iter_first_entry(&cache->for_name, &iter,
576 struct submodule_entry,
577 ent /* member name */);
Heiko Voigt959b5452015-08-17 17:21:57 -0700578 if (!entry)
579 return NULL;
580 return entry->config;
581 }
582
brian m. carlsoncd73de42017-07-13 23:49:20 +0000583 if (!gitmodule_oid_from_commit(treeish_name, &oid, &rev))
Heiko Voigt0918e252016-07-28 14:49:47 +0200584 goto out;
Heiko Voigt959b5452015-08-17 17:21:57 -0700585
586 switch (lookup_type) {
587 case lookup_name:
brian m. carlson34caab02018-05-02 00:25:42 +0000588 submodule = cache_lookup_name(cache, &oid, key);
Heiko Voigt959b5452015-08-17 17:21:57 -0700589 break;
590 case lookup_path:
brian m. carlson34caab02018-05-02 00:25:42 +0000591 submodule = cache_lookup_path(cache, &oid, key);
Heiko Voigt959b5452015-08-17 17:21:57 -0700592 break;
593 }
594 if (submodule)
Heiko Voigt0918e252016-07-28 14:49:47 +0200595 goto out;
Heiko Voigt959b5452015-08-17 17:21:57 -0700596
Ævar Arnfjörð Bjarmasonbc726bd2023-03-28 15:58:50 +0200597 config = repo_read_object_file(the_repository, &oid, &type,
598 &config_size);
Heiko Voigt0918e252016-07-28 14:49:47 +0200599 if (!config || type != OBJ_BLOB)
600 goto out;
Heiko Voigt959b5452015-08-17 17:21:57 -0700601
602 /* fill the submodule config into the cache */
603 parameter.cache = cache;
brian m. carlson34caab02018-05-02 00:25:42 +0000604 parameter.treeish_name = treeish_name;
605 parameter.gitmodules_oid = &oid;
Heiko Voigt959b5452015-08-17 17:21:57 -0700606 parameter.overwrite = 0;
Vasco Almeida1b8132d2016-07-28 13:14:03 +0000607 git_config_from_mem(parse_config, CONFIG_ORIGIN_SUBMODULE_BLOB, rev.buf,
Jeff King4574f1a2018-06-28 18:05:24 -0400608 config, config_size, &parameter, NULL);
Heiko Voigt514dea92016-07-28 14:49:11 +0200609 strbuf_release(&rev);
Heiko Voigt959b5452015-08-17 17:21:57 -0700610 free(config);
611
612 switch (lookup_type) {
613 case lookup_name:
brian m. carlson34caab02018-05-02 00:25:42 +0000614 return cache_lookup_name(cache, &oid, key);
Heiko Voigt959b5452015-08-17 17:21:57 -0700615 case lookup_path:
brian m. carlson34caab02018-05-02 00:25:42 +0000616 return cache_lookup_path(cache, &oid, key);
Heiko Voigt959b5452015-08-17 17:21:57 -0700617 default:
618 return NULL;
619 }
Heiko Voigt0918e252016-07-28 14:49:47 +0200620
621out:
622 strbuf_release(&rev);
623 free(config);
624 return submodule;
Heiko Voigt959b5452015-08-17 17:21:57 -0700625}
626
Brandon Williamsbf12fcd2017-06-22 11:43:44 -0700627static void submodule_cache_check_init(struct repository *repo)
Heiko Voigt959b5452015-08-17 17:21:57 -0700628{
Brandon Williamsbf12fcd2017-06-22 11:43:44 -0700629 if (repo->submodule_cache && repo->submodule_cache->initialized)
Heiko Voigt959b5452015-08-17 17:21:57 -0700630 return;
631
Brandon Williamsbf12fcd2017-06-22 11:43:44 -0700632 if (!repo->submodule_cache)
633 repo->submodule_cache = submodule_cache_alloc();
634
635 submodule_cache_init(repo->submodule_cache);
Heiko Voigt959b5452015-08-17 17:21:57 -0700636}
637
Antonio Ospitedb64d112018-06-26 12:47:10 +0200638/*
639 * Note: This function is private for a reason, the '.gitmodules' file should
ryenus571fb962019-12-15 15:12:24 +0000640 * not be used as a mechanism to retrieve arbitrary configuration stored in
Antonio Ospitedb64d112018-06-26 12:47:10 +0200641 * the repository.
642 *
643 * Runs the provided config function on the '.gitmodules' file found in the
644 * working directory.
645 */
646static void config_from_gitmodules(config_fn_t fn, struct repository *repo, void *data)
647{
648 if (repo->worktree) {
Matthew Rogers9a83d082020-02-10 00:30:58 +0000649 struct git_config_source config_source = {
650 0, .scope = CONFIG_SCOPE_SUBMODULE
651 };
Antonio Ospite76e9bdc2018-10-25 18:18:12 +0200652 const struct config_options opts = { 0 };
653 struct object_id oid;
654 char *file;
Nguyễn Thái Ngọc Duyd9b8b8f2019-04-16 16:33:38 +0700655 char *oidstr = NULL;
Antonio Ospite76e9bdc2018-10-25 18:18:12 +0200656
657 file = repo_worktree_path(repo, GITMODULES_FILE);
658 if (file_exists(file)) {
659 config_source.file = file;
Nguyễn Thái Ngọc Duyd9b8b8f2019-04-16 16:33:38 +0700660 } else if (repo_get_oid(repo, GITMODULES_INDEX, &oid) >= 0 ||
661 repo_get_oid(repo, GITMODULES_HEAD, &oid) >= 0) {
Jonathan Tane3e8bf02021-08-16 14:09:57 -0700662 config_source.repo = repo;
Nguyễn Thái Ngọc Duyd9b8b8f2019-04-16 16:33:38 +0700663 config_source.blob = oidstr = xstrdup(oid_to_hex(&oid));
664 if (repo != the_repository)
Jonathan Tane3e8bf02021-08-16 14:09:57 -0700665 add_submodule_odb_by_path(repo->objects->odb->path);
Antonio Ospite76e9bdc2018-10-25 18:18:12 +0200666 } else {
667 goto out;
668 }
669
670 config_with_options(fn, data, &config_source, &opts);
671
672out:
Nguyễn Thái Ngọc Duyd9b8b8f2019-04-16 16:33:38 +0700673 free(oidstr);
Antonio Ospitedb64d112018-06-26 12:47:10 +0200674 free(file);
675 }
676}
677
Brandon Williams1b796ac2017-08-03 11:19:57 -0700678static int gitmodules_cb(const char *var, const char *value, void *data)
Heiko Voigt851e18c2015-08-17 17:21:59 -0700679{
Brandon Williams1b796ac2017-08-03 11:19:57 -0700680 struct repository *repo = data;
Heiko Voigt851e18c2015-08-17 17:21:59 -0700681 struct parse_config_parameter parameter;
Brandon Williamsbf12fcd2017-06-22 11:43:44 -0700682
Brandon Williamsbf12fcd2017-06-22 11:43:44 -0700683 parameter.cache = repo->submodule_cache;
Stefan Beller73c293b2016-11-22 12:14:37 -0800684 parameter.treeish_name = NULL;
brian m. carlson14228442021-04-26 01:02:56 +0000685 parameter.gitmodules_oid = null_oid();
Heiko Voigt851e18c2015-08-17 17:21:59 -0700686 parameter.overwrite = 1;
687
Heiko Voigt851e18c2015-08-17 17:21:59 -0700688 return parse_config(var, value, &parameter);
689}
690
Matheus Tavaresd7992422020-01-15 23:39:55 -0300691void repo_read_gitmodules(struct repository *repo, int skip_if_read)
Brandon Williamsbf12fcd2017-06-22 11:43:44 -0700692{
Brandon Williamsff6f1f52017-08-03 11:19:58 -0700693 submodule_cache_check_init(repo);
694
Matheus Tavaresd7992422020-01-15 23:39:55 -0300695 if (repo->submodule_cache->gitmodules_read && skip_if_read)
696 return;
697
Antonio Ospitedb64d112018-06-26 12:47:10 +0200698 if (repo_read_index(repo) < 0)
699 return;
Brandon Williams1b796ac2017-08-03 11:19:57 -0700700
Antonio Ospitedb64d112018-06-26 12:47:10 +0200701 if (!is_gitmodules_unmerged(repo->index))
702 config_from_gitmodules(gitmodules_cb, repo, repo);
Brandon Williamsff6f1f52017-08-03 11:19:58 -0700703
704 repo->submodule_cache->gitmodules_read = 1;
Brandon Williams1b796ac2017-08-03 11:19:57 -0700705}
706
707void gitmodules_config_oid(const struct object_id *commit_oid)
708{
709 struct strbuf rev = STRBUF_INIT;
710 struct object_id oid;
711
Brandon Williamsff6f1f52017-08-03 11:19:58 -0700712 submodule_cache_check_init(the_repository);
713
Brandon Williams1b796ac2017-08-03 11:19:57 -0700714 if (gitmodule_oid_from_commit(commit_oid, &oid, &rev)) {
715 git_config_from_blob_oid(gitmodules_cb, rev.buf,
Jonathan Tane3e8bf02021-08-16 14:09:57 -0700716 the_repository, &oid, the_repository);
Brandon Williams1b796ac2017-08-03 11:19:57 -0700717 }
718 strbuf_release(&rev);
Brandon Williamsff6f1f52017-08-03 11:19:58 -0700719
720 the_repository->submodule_cache->gitmodules_read = 1;
721}
722
Stefan Beller3b8fb392018-03-28 15:35:29 -0700723const struct submodule *submodule_from_name(struct repository *r,
724 const struct object_id *treeish_name,
Heiko Voigt959b5452015-08-17 17:21:57 -0700725 const char *name)
726{
Matheus Tavaresd7992422020-01-15 23:39:55 -0300727 repo_read_gitmodules(r, 1);
Stefan Beller3b8fb392018-03-28 15:35:29 -0700728 return config_from(r->submodule_cache, treeish_name, name, lookup_name);
Heiko Voigt959b5452015-08-17 17:21:57 -0700729}
730
Stefan Beller3b8fb392018-03-28 15:35:29 -0700731const struct submodule *submodule_from_path(struct repository *r,
732 const struct object_id *treeish_name,
Heiko Voigt959b5452015-08-17 17:21:57 -0700733 const char *path)
734{
Matheus Tavaresd7992422020-01-15 23:39:55 -0300735 repo_read_gitmodules(r, 1);
Stefan Beller3b8fb392018-03-28 15:35:29 -0700736 return config_from(r->submodule_cache, treeish_name, path, lookup_path);
Brandon Williamsbf12fcd2017-06-22 11:43:44 -0700737}
738
Glen Choo961b1302022-01-28 16:04:45 -0800739/**
740 * Used internally by submodules_of_tree(). Recurses into 'treeish_name'
741 * and appends submodule entries to 'out'. The submodule_cache expects
742 * a root-level treeish_name and paths, so keep track of these values
743 * with 'root_tree' and 'prefix'.
744 */
745static void traverse_tree_submodules(struct repository *r,
746 const struct object_id *root_tree,
747 char *prefix,
748 const struct object_id *treeish_name,
749 struct submodule_entry_list *out)
750{
751 struct tree_desc tree;
752 struct submodule_tree_entry *st_entry;
753 struct name_entry *name_entry;
754 char *tree_path = NULL;
755
756 name_entry = xmalloc(sizeof(*name_entry));
757
758 fill_tree_descriptor(r, &tree, treeish_name);
759 while (tree_entry(&tree, name_entry)) {
760 if (prefix)
761 tree_path =
762 mkpathdup("%s/%s", prefix, name_entry->path);
763 else
764 tree_path = xstrdup(name_entry->path);
765
766 if (S_ISGITLINK(name_entry->mode) &&
767 is_tree_submodule_active(r, root_tree, tree_path)) {
Johannes Schindelinf5355922022-06-15 23:35:39 +0000768 ALLOC_GROW(out->entries, out->entry_nr + 1,
769 out->entry_alloc);
770 st_entry = &out->entries[out->entry_nr++];
771
Glen Choo961b1302022-01-28 16:04:45 -0800772 st_entry->name_entry = xmalloc(sizeof(*st_entry->name_entry));
773 *st_entry->name_entry = *name_entry;
774 st_entry->submodule =
775 submodule_from_path(r, root_tree, tree_path);
776 st_entry->repo = xmalloc(sizeof(*st_entry->repo));
777 if (repo_submodule_init(st_entry->repo, r, tree_path,
778 root_tree))
779 FREE_AND_NULL(st_entry->repo);
780
Glen Choo961b1302022-01-28 16:04:45 -0800781 } else if (S_ISDIR(name_entry->mode))
782 traverse_tree_submodules(r, root_tree, tree_path,
783 &name_entry->oid, out);
784 free(tree_path);
785 }
786}
787
788void submodules_of_tree(struct repository *r,
789 const struct object_id *treeish_name,
790 struct submodule_entry_list *out)
791{
792 CALLOC_ARRAY(out->entries, 0);
793 out->entry_nr = 0;
794 out->entry_alloc = 0;
795
796 traverse_tree_submodules(r, treeish_name, NULL, treeish_name, out);
797}
798
Stefan Bellerf793b892018-03-28 15:35:28 -0700799void submodule_free(struct repository *r)
Brandon Williamsbf12fcd2017-06-22 11:43:44 -0700800{
Stefan Bellerf793b892018-03-28 15:35:28 -0700801 if (r->submodule_cache)
802 submodule_cache_clear(r->submodule_cache);
Heiko Voigt959b5452015-08-17 17:21:57 -0700803}
Antonio Ospitead136372018-06-26 12:47:05 +0200804
Antonio Ospitebcbc7802018-10-05 15:05:52 +0200805static int config_print_callback(const char *var, const char *value, void *cb_data)
806{
807 char *wanted_key = cb_data;
808
809 if (!strcmp(wanted_key, var))
810 printf("%s\n", value);
811
812 return 0;
813}
814
815int print_config_from_gitmodules(struct repository *repo, const char *key)
816{
817 int ret;
818 char *store_key;
819
820 ret = git_config_parse_key(key, &store_key, NULL);
821 if (ret < 0)
822 return CONFIG_INVALID_KEY;
823
824 config_from_gitmodules(config_print_callback, repo, store_key);
825
826 free(store_key);
827 return 0;
828}
829
Antonio Ospite45f5ef32018-10-05 15:05:53 +0200830int config_set_in_gitmodules_file_gently(const char *key, const char *value)
831{
832 int ret;
833
834 ret = git_config_set_in_file_gently(GITMODULES_FILE, key, value);
835 if (ret < 0)
836 /* Maybe the user already did that, don't error out here */
837 warning(_("Could not update .gitmodules entry %s"), key);
838
839 return ret;
840}
841
Antonio Ospite71a69532018-06-26 12:47:06 +0200842struct fetch_config {
843 int *max_children;
844 int *recurse_submodules;
845};
846
847static int gitmodules_fetch_config(const char *var, const char *value, void *cb)
848{
849 struct fetch_config *config = cb;
850 if (!strcmp(var, "submodule.fetchjobs")) {
Jonathan Tane5b94212020-08-17 21:01:33 -0700851 if (config->max_children)
852 *(config->max_children) =
853 parse_submodule_fetchjobs(var, value);
Antonio Ospite71a69532018-06-26 12:47:06 +0200854 return 0;
855 } else if (!strcmp(var, "fetch.recursesubmodules")) {
Jonathan Tane5b94212020-08-17 21:01:33 -0700856 if (config->recurse_submodules)
857 *(config->recurse_submodules) =
858 parse_fetch_recurse_submodules_arg(var, value);
Antonio Ospite71a69532018-06-26 12:47:06 +0200859 return 0;
860 }
861
862 return 0;
863}
864
865void fetch_config_from_gitmodules(int *max_children, int *recurse_submodules)
866{
867 struct fetch_config config = {
868 .max_children = max_children,
869 .recurse_submodules = recurse_submodules
870 };
Antonio Ospite9a0fb3e2018-06-26 12:47:09 +0200871 config_from_gitmodules(gitmodules_fetch_config, the_repository, &config);
Antonio Ospite71a69532018-06-26 12:47:06 +0200872}
Antonio Ospite05744992018-06-26 12:47:07 +0200873
874static int gitmodules_update_clone_config(const char *var, const char *value,
875 void *cb)
876{
877 int *max_jobs = cb;
878 if (!strcmp(var, "submodule.fetchjobs"))
879 *max_jobs = parse_submodule_fetchjobs(var, value);
880 return 0;
881}
882
883void update_clone_config_from_gitmodules(int *max_jobs)
884{
Antonio Ospite9a0fb3e2018-06-26 12:47:09 +0200885 config_from_gitmodules(gitmodules_update_clone_config, the_repository, &max_jobs);
Antonio Ospite05744992018-06-26 12:47:07 +0200886}