2 #include "repository.h"
4 #include "submodule-config.h"
7 #include "parse-options.h"
10 * submodule cache lookup structure
11 * There is one shared set of 'struct submodule' entries which can be
12 * looked up by their sha1 blob id of the .gitmodules file and either
13 * using path or name as key.
14 * for_path stores submodule entries with path as key
15 * for_name stores submodule entries with name as key
17 struct submodule_cache {
18 struct hashmap for_path;
19 struct hashmap for_name;
20 unsigned initialized:1;
21 unsigned gitmodules_read:1;
25 * thin wrapper struct needed to insert 'struct submodule' entries to
28 struct submodule_entry {
29 struct hashmap_entry ent;
30 struct submodule *config;
38 static int config_path_cmp(const void *unused_cmp_data,
40 const void *entry_or_key,
41 const void *unused_keydata)
43 const struct submodule_entry *a = entry;
44 const struct submodule_entry *b = entry_or_key;
46 return strcmp(a->config->path, b->config->path) ||
47 oidcmp(&a->config->gitmodules_oid, &b->config->gitmodules_oid);
50 static int config_name_cmp(const void *unused_cmp_data,
52 const void *entry_or_key,
53 const void *unused_keydata)
55 const struct submodule_entry *a = entry;
56 const struct submodule_entry *b = entry_or_key;
58 return strcmp(a->config->name, b->config->name) ||
59 oidcmp(&a->config->gitmodules_oid, &b->config->gitmodules_oid);
62 static struct submodule_cache *submodule_cache_alloc(void)
64 return xcalloc(1, sizeof(struct submodule_cache));
67 static void submodule_cache_init(struct submodule_cache *cache)
69 hashmap_init(&cache->for_path, config_path_cmp, NULL, 0);
70 hashmap_init(&cache->for_name, config_name_cmp, NULL, 0);
71 cache->initialized = 1;
74 static void free_one_config(struct submodule_entry *entry)
76 free((void *) entry->config->path);
77 free((void *) entry->config->name);
78 free((void *) entry->config->branch);
79 free((void *) entry->config->update_strategy.command);
83 static void submodule_cache_clear(struct submodule_cache *cache)
85 struct hashmap_iter iter;
86 struct submodule_entry *entry;
88 if (!cache->initialized)
92 * We iterate over the name hash here to be symmetric with the
93 * allocation of struct submodule entries. Each is allocated by
94 * their .gitmodules blob sha1 and submodule name.
96 hashmap_iter_init(&cache->for_name, &iter);
97 while ((entry = hashmap_iter_next(&iter)))
98 free_one_config(entry);
100 hashmap_free(&cache->for_path, 1);
101 hashmap_free(&cache->for_name, 1);
102 cache->initialized = 0;
103 cache->gitmodules_read = 0;
106 void submodule_cache_free(struct submodule_cache *cache)
108 submodule_cache_clear(cache);
112 static unsigned int hash_oid_string(const struct object_id *oid,
115 return memhash(oid->hash, the_hash_algo->rawsz) + strhash(string);
118 static void cache_put_path(struct submodule_cache *cache,
119 struct submodule *submodule)
121 unsigned int hash = hash_oid_string(&submodule->gitmodules_oid,
123 struct submodule_entry *e = xmalloc(sizeof(*e));
124 hashmap_entry_init(e, hash);
125 e->config = submodule;
126 hashmap_put(&cache->for_path, e);
129 static void cache_remove_path(struct submodule_cache *cache,
130 struct submodule *submodule)
132 unsigned int hash = hash_oid_string(&submodule->gitmodules_oid,
134 struct submodule_entry e;
135 struct submodule_entry *removed;
136 hashmap_entry_init(&e, hash);
137 e.config = submodule;
138 removed = hashmap_remove(&cache->for_path, &e, NULL);
142 static void cache_add(struct submodule_cache *cache,
143 struct submodule *submodule)
145 unsigned int hash = hash_oid_string(&submodule->gitmodules_oid,
147 struct submodule_entry *e = xmalloc(sizeof(*e));
148 hashmap_entry_init(e, hash);
149 e->config = submodule;
150 hashmap_add(&cache->for_name, e);
153 static const struct submodule *cache_lookup_path(struct submodule_cache *cache,
154 const struct object_id *gitmodules_oid, const char *path)
156 struct submodule_entry *entry;
157 unsigned int hash = hash_oid_string(gitmodules_oid, path);
158 struct submodule_entry key;
159 struct submodule key_config;
161 oidcpy(&key_config.gitmodules_oid, gitmodules_oid);
162 key_config.path = path;
164 hashmap_entry_init(&key, hash);
165 key.config = &key_config;
167 entry = hashmap_get(&cache->for_path, &key, NULL);
169 return entry->config;
173 static struct submodule *cache_lookup_name(struct submodule_cache *cache,
174 const struct object_id *gitmodules_oid, const char *name)
176 struct submodule_entry *entry;
177 unsigned int hash = hash_oid_string(gitmodules_oid, name);
178 struct submodule_entry key;
179 struct submodule key_config;
181 oidcpy(&key_config.gitmodules_oid, gitmodules_oid);
182 key_config.name = name;
184 hashmap_entry_init(&key, hash);
185 key.config = &key_config;
187 entry = hashmap_get(&cache->for_name, &key, NULL);
189 return entry->config;
193 int check_submodule_name(const char *name)
195 /* Disallow empty names */
200 * Look for '..' as a path component. Check both '/' and '\\' as
201 * separators rather than is_dir_sep(), because we want the name rules
202 * to be consistent across platforms.
204 goto in_component; /* always start inside component */
207 if (c == '/' || c == '\\') {
209 if (name[0] == '.' && name[1] == '.' &&
210 (!name[2] || name[2] == '/' || name[2] == '\\'))
218 static int name_and_item_from_var(const char *var, struct strbuf *name,
221 const char *subsection, *key;
222 int subsection_len, parse;
223 parse = parse_config_key(var, "submodule", &subsection,
224 &subsection_len, &key);
225 if (parse < 0 || !subsection)
228 strbuf_add(name, subsection, subsection_len);
229 if (check_submodule_name(name->buf) < 0) {
230 warning(_("ignoring suspicious submodule name: %s"), name->buf);
231 strbuf_release(name);
235 strbuf_addstr(item, key);
240 static struct submodule *lookup_or_create_by_name(struct submodule_cache *cache,
241 const struct object_id *gitmodules_oid, const char *name)
243 struct submodule *submodule;
244 struct strbuf name_buf = STRBUF_INIT;
246 submodule = cache_lookup_name(cache, gitmodules_oid, name);
250 submodule = xmalloc(sizeof(*submodule));
252 strbuf_addstr(&name_buf, name);
253 submodule->name = strbuf_detach(&name_buf, NULL);
255 submodule->path = NULL;
256 submodule->url = NULL;
257 submodule->update_strategy.type = SM_UPDATE_UNSPECIFIED;
258 submodule->update_strategy.command = NULL;
259 submodule->fetch_recurse = RECURSE_SUBMODULES_NONE;
260 submodule->ignore = NULL;
261 submodule->branch = NULL;
262 submodule->recommend_shallow = -1;
264 oidcpy(&submodule->gitmodules_oid, gitmodules_oid);
266 cache_add(cache, submodule);
271 static int parse_fetch_recurse(const char *opt, const char *arg,
274 switch (git_parse_maybe_bool(arg)) {
276 return RECURSE_SUBMODULES_ON;
278 return RECURSE_SUBMODULES_OFF;
280 if (!strcmp(arg, "on-demand"))
281 return RECURSE_SUBMODULES_ON_DEMAND;
284 die("bad %s argument: %s", opt, arg);
286 return RECURSE_SUBMODULES_ERROR;
290 int parse_submodule_fetchjobs(const char *var, const char *value)
292 int fetchjobs = git_config_int(var, value);
294 die(_("negative values not allowed for submodule.fetchjobs"));
298 int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg)
300 return parse_fetch_recurse(opt, arg, 1);
303 int option_fetch_parse_recurse_submodules(const struct option *opt,
304 const char *arg, int unset)
314 *v = RECURSE_SUBMODULES_OFF;
317 *v = parse_fetch_recurse_submodules_arg(opt->long_name, arg);
319 *v = RECURSE_SUBMODULES_ON;
324 static int parse_update_recurse(const char *opt, const char *arg,
327 switch (git_parse_maybe_bool(arg)) {
329 return RECURSE_SUBMODULES_ON;
331 return RECURSE_SUBMODULES_OFF;
334 die("bad %s argument: %s", opt, arg);
335 return RECURSE_SUBMODULES_ERROR;
339 int parse_update_recurse_submodules_arg(const char *opt, const char *arg)
341 return parse_update_recurse(opt, arg, 1);
344 static int parse_push_recurse(const char *opt, const char *arg,
347 switch (git_parse_maybe_bool(arg)) {
349 /* There's no simple "on" value when pushing */
351 die("bad %s argument: %s", opt, arg);
353 return RECURSE_SUBMODULES_ERROR;
355 return RECURSE_SUBMODULES_OFF;
357 if (!strcmp(arg, "on-demand"))
358 return RECURSE_SUBMODULES_ON_DEMAND;
359 else if (!strcmp(arg, "check"))
360 return RECURSE_SUBMODULES_CHECK;
361 else if (!strcmp(arg, "only"))
362 return RECURSE_SUBMODULES_ONLY;
363 else if (die_on_error)
364 die("bad %s argument: %s", opt, arg);
366 return RECURSE_SUBMODULES_ERROR;
370 int parse_push_recurse_submodules_arg(const char *opt, const char *arg)
372 return parse_push_recurse(opt, arg, 1);
375 static void warn_multiple_config(const struct object_id *treeish_name,
376 const char *name, const char *option)
378 const char *commit_string = "WORKTREE";
380 commit_string = oid_to_hex(treeish_name);
381 warning("%s:.gitmodules, multiple configurations found for "
382 "'submodule.%s.%s'. Skipping second one!",
383 commit_string, name, option);
386 struct parse_config_parameter {
387 struct submodule_cache *cache;
388 const struct object_id *treeish_name;
389 const struct object_id *gitmodules_oid;
393 static int parse_config(const char *var, const char *value, void *data)
395 struct parse_config_parameter *me = data;
396 struct submodule *submodule;
397 struct strbuf name = STRBUF_INIT, item = STRBUF_INIT;
400 /* this also ensures that we only parse submodule entries */
401 if (!name_and_item_from_var(var, &name, &item))
404 submodule = lookup_or_create_by_name(me->cache,
408 if (!strcmp(item.buf, "path")) {
410 ret = config_error_nonbool(var);
411 else if (!me->overwrite && submodule->path)
412 warn_multiple_config(me->treeish_name, submodule->name,
416 cache_remove_path(me->cache, submodule);
417 free((void *) submodule->path);
418 submodule->path = xstrdup(value);
419 cache_put_path(me->cache, submodule);
421 } else if (!strcmp(item.buf, "fetchrecursesubmodules")) {
422 /* when parsing worktree configurations we can die early */
423 int die_on_error = is_null_oid(me->gitmodules_oid);
424 if (!me->overwrite &&
425 submodule->fetch_recurse != RECURSE_SUBMODULES_NONE)
426 warn_multiple_config(me->treeish_name, submodule->name,
427 "fetchrecursesubmodules");
429 submodule->fetch_recurse = parse_fetch_recurse(
432 } else if (!strcmp(item.buf, "ignore")) {
434 ret = config_error_nonbool(var);
435 else if (!me->overwrite && submodule->ignore)
436 warn_multiple_config(me->treeish_name, submodule->name,
438 else if (strcmp(value, "untracked") &&
439 strcmp(value, "dirty") &&
440 strcmp(value, "all") &&
441 strcmp(value, "none"))
442 warning("Invalid parameter '%s' for config option "
443 "'submodule.%s.ignore'", value, name.buf);
445 free((void *) submodule->ignore);
446 submodule->ignore = xstrdup(value);
448 } else if (!strcmp(item.buf, "url")) {
450 ret = config_error_nonbool(var);
451 } else if (!me->overwrite && submodule->url) {
452 warn_multiple_config(me->treeish_name, submodule->name,
455 free((void *) submodule->url);
456 submodule->url = xstrdup(value);
458 } else if (!strcmp(item.buf, "update")) {
460 ret = config_error_nonbool(var);
461 else if (!me->overwrite &&
462 submodule->update_strategy.type != SM_UPDATE_UNSPECIFIED)
463 warn_multiple_config(me->treeish_name, submodule->name,
465 else if (parse_submodule_update_strategy(value,
466 &submodule->update_strategy) < 0)
467 die(_("invalid value for %s"), var);
468 } else if (!strcmp(item.buf, "shallow")) {
469 if (!me->overwrite && submodule->recommend_shallow != -1)
470 warn_multiple_config(me->treeish_name, submodule->name,
473 submodule->recommend_shallow =
474 git_config_bool(var, value);
475 } else if (!strcmp(item.buf, "branch")) {
476 if (!me->overwrite && submodule->branch)
477 warn_multiple_config(me->treeish_name, submodule->name,
480 free((void *)submodule->branch);
481 submodule->branch = xstrdup(value);
485 strbuf_release(&name);
486 strbuf_release(&item);
491 static int gitmodule_oid_from_commit(const struct object_id *treeish_name,
492 struct object_id *gitmodules_oid,
497 if (is_null_oid(treeish_name)) {
498 oidclr(gitmodules_oid);
502 strbuf_addf(rev, "%s:.gitmodules", oid_to_hex(treeish_name));
503 if (get_oid(rev->buf, gitmodules_oid) >= 0)
509 /* This does a lookup of a submodule configuration by name or by path
510 * (key) with on-demand reading of the appropriate .gitmodules from
513 static const struct submodule *config_from(struct submodule_cache *cache,
514 const struct object_id *treeish_name, const char *key,
515 enum lookup_type lookup_type)
517 struct strbuf rev = STRBUF_INIT;
518 unsigned long config_size;
520 struct object_id oid;
521 enum object_type type;
522 const struct submodule *submodule = NULL;
523 struct parse_config_parameter parameter;
526 * If any parameter except the cache is a NULL pointer just
527 * return the first submodule. Can be used to check whether
528 * there are any submodules parsed.
530 if (!treeish_name || !key) {
531 struct hashmap_iter iter;
532 struct submodule_entry *entry;
534 entry = hashmap_iter_first(&cache->for_name, &iter);
537 return entry->config;
540 if (!gitmodule_oid_from_commit(treeish_name, &oid, &rev))
543 switch (lookup_type) {
545 submodule = cache_lookup_name(cache, &oid, key);
548 submodule = cache_lookup_path(cache, &oid, key);
554 config = read_object_file(&oid, &type, &config_size);
555 if (!config || type != OBJ_BLOB)
558 /* fill the submodule config into the cache */
559 parameter.cache = cache;
560 parameter.treeish_name = treeish_name;
561 parameter.gitmodules_oid = &oid;
562 parameter.overwrite = 0;
563 git_config_from_mem(parse_config, CONFIG_ORIGIN_SUBMODULE_BLOB, rev.buf,
564 config, config_size, ¶meter);
565 strbuf_release(&rev);
568 switch (lookup_type) {
570 return cache_lookup_name(cache, &oid, key);
572 return cache_lookup_path(cache, &oid, key);
578 strbuf_release(&rev);
583 static void submodule_cache_check_init(struct repository *repo)
585 if (repo->submodule_cache && repo->submodule_cache->initialized)
588 if (!repo->submodule_cache)
589 repo->submodule_cache = submodule_cache_alloc();
591 submodule_cache_init(repo->submodule_cache);
594 static int gitmodules_cb(const char *var, const char *value, void *data)
596 struct repository *repo = data;
597 struct parse_config_parameter parameter;
599 parameter.cache = repo->submodule_cache;
600 parameter.treeish_name = NULL;
601 parameter.gitmodules_oid = &null_oid;
602 parameter.overwrite = 1;
604 return parse_config(var, value, ¶meter);
607 void repo_read_gitmodules(struct repository *repo)
609 submodule_cache_check_init(repo);
611 if (repo->worktree) {
614 if (repo_read_index(repo) < 0)
617 gitmodules = repo_worktree_path(repo, GITMODULES_FILE);
619 if (!is_gitmodules_unmerged(repo->index))
620 git_config_from_file(gitmodules_cb, gitmodules, repo);
625 repo->submodule_cache->gitmodules_read = 1;
628 void gitmodules_config_oid(const struct object_id *commit_oid)
630 struct strbuf rev = STRBUF_INIT;
631 struct object_id oid;
633 submodule_cache_check_init(the_repository);
635 if (gitmodule_oid_from_commit(commit_oid, &oid, &rev)) {
636 git_config_from_blob_oid(gitmodules_cb, rev.buf,
637 &oid, the_repository);
639 strbuf_release(&rev);
641 the_repository->submodule_cache->gitmodules_read = 1;
644 static void gitmodules_read_check(struct repository *repo)
646 submodule_cache_check_init(repo);
648 /* read the repo's .gitmodules file if it hasn't been already */
649 if (!repo->submodule_cache->gitmodules_read)
650 repo_read_gitmodules(repo);
653 const struct submodule *submodule_from_name(struct repository *r,
654 const struct object_id *treeish_name,
657 gitmodules_read_check(r);
658 return config_from(r->submodule_cache, treeish_name, name, lookup_name);
661 const struct submodule *submodule_from_path(struct repository *r,
662 const struct object_id *treeish_name,
665 gitmodules_read_check(r);
666 return config_from(r->submodule_cache, treeish_name, path, lookup_path);
669 void submodule_free(struct repository *r)
671 if (r->submodule_cache)
672 submodule_cache_clear(r->submodule_cache);
676 * Note: This function is private for a reason, the '.gitmodules' file should
677 * not be used as as a mechanism to retrieve arbitrary configuration stored in
680 * Runs the provided config function on the '.gitmodules' file found in the
683 static void config_from_gitmodules(config_fn_t fn, struct repository *repo, void *data)
685 if (repo->worktree) {
686 char *file = repo_worktree_path(repo, GITMODULES_FILE);
687 git_config_from_file(fn, file, data);
692 struct fetch_config {
694 int *recurse_submodules;
697 static int gitmodules_fetch_config(const char *var, const char *value, void *cb)
699 struct fetch_config *config = cb;
700 if (!strcmp(var, "submodule.fetchjobs")) {
701 *(config->max_children) = parse_submodule_fetchjobs(var, value);
703 } else if (!strcmp(var, "fetch.recursesubmodules")) {
704 *(config->recurse_submodules) = parse_fetch_recurse_submodules_arg(var, value);
711 void fetch_config_from_gitmodules(int *max_children, int *recurse_submodules)
713 struct fetch_config config = {
714 .max_children = max_children,
715 .recurse_submodules = recurse_submodules
717 config_from_gitmodules(gitmodules_fetch_config, the_repository, &config);
720 static int gitmodules_update_clone_config(const char *var, const char *value,
724 if (!strcmp(var, "submodule.fetchjobs"))
725 *max_jobs = parse_submodule_fetchjobs(var, value);
729 void update_clone_config_from_gitmodules(int *max_jobs)
731 config_from_gitmodules(gitmodules_update_clone_config, the_repository, &max_jobs);