3 #include "repository.h"
5 #include "submodule-config.h"
8 #include "object-store.h"
9 #include "parse-options.h"
12 * submodule cache lookup structure
13 * There is one shared set of 'struct submodule' entries which can be
14 * looked up by their sha1 blob id of the .gitmodules file and either
15 * using path or name as key.
16 * for_path stores submodule entries with path as key
17 * for_name stores submodule entries with name as key
19 struct submodule_cache
{
20 struct hashmap for_path
;
21 struct hashmap for_name
;
22 unsigned initialized
:1;
23 unsigned gitmodules_read
:1;
27 * thin wrapper struct needed to insert 'struct submodule' entries to
30 struct submodule_entry
{
31 struct hashmap_entry ent
;
32 struct submodule
*config
;
40 static int config_path_cmp(const void *unused_cmp_data
,
41 const struct hashmap_entry
*eptr
,
42 const struct hashmap_entry
*entry_or_key
,
43 const void *unused_keydata
)
45 const struct submodule_entry
*a
, *b
;
47 a
= container_of(eptr
, const struct submodule_entry
, ent
);
48 b
= container_of(entry_or_key
, const struct submodule_entry
, ent
);
50 return strcmp(a
->config
->path
, b
->config
->path
) ||
51 !oideq(&a
->config
->gitmodules_oid
, &b
->config
->gitmodules_oid
);
54 static int config_name_cmp(const void *unused_cmp_data
,
55 const struct hashmap_entry
*eptr
,
56 const struct hashmap_entry
*entry_or_key
,
57 const void *unused_keydata
)
59 const struct submodule_entry
*a
, *b
;
61 a
= container_of(eptr
, const struct submodule_entry
, ent
);
62 b
= container_of(entry_or_key
, const struct submodule_entry
, ent
);
64 return strcmp(a
->config
->name
, b
->config
->name
) ||
65 !oideq(&a
->config
->gitmodules_oid
, &b
->config
->gitmodules_oid
);
68 static struct submodule_cache
*submodule_cache_alloc(void)
70 return xcalloc(1, sizeof(struct submodule_cache
));
73 static void submodule_cache_init(struct submodule_cache
*cache
)
75 hashmap_init(&cache
->for_path
, config_path_cmp
, NULL
, 0);
76 hashmap_init(&cache
->for_name
, config_name_cmp
, NULL
, 0);
77 cache
->initialized
= 1;
80 static void free_one_config(struct submodule_entry
*entry
)
82 free((void *) entry
->config
->path
);
83 free((void *) entry
->config
->name
);
84 free((void *) entry
->config
->branch
);
85 free((void *) entry
->config
->update_strategy
.command
);
89 static void submodule_cache_clear(struct submodule_cache
*cache
)
91 struct hashmap_iter iter
;
92 struct submodule_entry
*entry
;
94 if (!cache
->initialized
)
98 * We iterate over the name hash here to be symmetric with the
99 * allocation of struct submodule entries. Each is allocated by
100 * their .gitmodules blob sha1 and submodule name.
102 hashmap_for_each_entry(&cache
->for_name
, &iter
, entry
,
103 ent
/* member name */)
104 free_one_config(entry
);
106 hashmap_free_entries(&cache
->for_path
, struct submodule_entry
, ent
);
107 hashmap_free_entries(&cache
->for_name
, struct submodule_entry
, ent
);
108 cache
->initialized
= 0;
109 cache
->gitmodules_read
= 0;
112 void submodule_cache_free(struct submodule_cache
*cache
)
114 submodule_cache_clear(cache
);
118 static unsigned int hash_oid_string(const struct object_id
*oid
,
121 return memhash(oid
->hash
, the_hash_algo
->rawsz
) + strhash(string
);
124 static void cache_put_path(struct submodule_cache
*cache
,
125 struct submodule
*submodule
)
127 unsigned int hash
= hash_oid_string(&submodule
->gitmodules_oid
,
129 struct submodule_entry
*e
= xmalloc(sizeof(*e
));
130 hashmap_entry_init(&e
->ent
, hash
);
131 e
->config
= submodule
;
132 hashmap_put(&cache
->for_path
, &e
->ent
);
135 static void cache_remove_path(struct submodule_cache
*cache
,
136 struct submodule
*submodule
)
138 unsigned int hash
= hash_oid_string(&submodule
->gitmodules_oid
,
140 struct submodule_entry e
;
141 struct submodule_entry
*removed
;
142 hashmap_entry_init(&e
.ent
, hash
);
143 e
.config
= submodule
;
144 removed
= hashmap_remove_entry(&cache
->for_path
, &e
, ent
, NULL
);
148 static void cache_add(struct submodule_cache
*cache
,
149 struct submodule
*submodule
)
151 unsigned int hash
= hash_oid_string(&submodule
->gitmodules_oid
,
153 struct submodule_entry
*e
= xmalloc(sizeof(*e
));
154 hashmap_entry_init(&e
->ent
, hash
);
155 e
->config
= submodule
;
156 hashmap_add(&cache
->for_name
, &e
->ent
);
159 static const struct submodule
*cache_lookup_path(struct submodule_cache
*cache
,
160 const struct object_id
*gitmodules_oid
, const char *path
)
162 struct submodule_entry
*entry
;
163 unsigned int hash
= hash_oid_string(gitmodules_oid
, path
);
164 struct submodule_entry key
;
165 struct submodule key_config
;
167 oidcpy(&key_config
.gitmodules_oid
, gitmodules_oid
);
168 key_config
.path
= path
;
170 hashmap_entry_init(&key
.ent
, hash
);
171 key
.config
= &key_config
;
173 entry
= hashmap_get_entry(&cache
->for_path
, &key
, ent
, NULL
);
175 return entry
->config
;
179 static struct submodule
*cache_lookup_name(struct submodule_cache
*cache
,
180 const struct object_id
*gitmodules_oid
, const char *name
)
182 struct submodule_entry
*entry
;
183 unsigned int hash
= hash_oid_string(gitmodules_oid
, name
);
184 struct submodule_entry key
;
185 struct submodule key_config
;
187 oidcpy(&key_config
.gitmodules_oid
, gitmodules_oid
);
188 key_config
.name
= name
;
190 hashmap_entry_init(&key
.ent
, hash
);
191 key
.config
= &key_config
;
193 entry
= hashmap_get_entry(&cache
->for_name
, &key
, ent
, NULL
);
195 return entry
->config
;
199 int check_submodule_name(const char *name
)
201 /* Disallow empty names */
206 * Look for '..' as a path component. Check both '/' and '\\' as
207 * separators rather than is_dir_sep(), because we want the name rules
208 * to be consistent across platforms.
210 goto in_component
; /* always start inside component */
213 if (c
== '/' || c
== '\\') {
215 if (name
[0] == '.' && name
[1] == '.' &&
216 (!name
[2] || name
[2] == '/' || name
[2] == '\\'))
224 static int name_and_item_from_var(const char *var
, struct strbuf
*name
,
227 const char *subsection
, *key
;
228 int subsection_len
, parse
;
229 parse
= parse_config_key(var
, "submodule", &subsection
,
230 &subsection_len
, &key
);
231 if (parse
< 0 || !subsection
)
234 strbuf_add(name
, subsection
, subsection_len
);
235 if (check_submodule_name(name
->buf
) < 0) {
236 warning(_("ignoring suspicious submodule name: %s"), name
->buf
);
237 strbuf_release(name
);
241 strbuf_addstr(item
, key
);
246 static struct submodule
*lookup_or_create_by_name(struct submodule_cache
*cache
,
247 const struct object_id
*gitmodules_oid
, const char *name
)
249 struct submodule
*submodule
;
250 struct strbuf name_buf
= STRBUF_INIT
;
252 submodule
= cache_lookup_name(cache
, gitmodules_oid
, name
);
256 submodule
= xmalloc(sizeof(*submodule
));
258 strbuf_addstr(&name_buf
, name
);
259 submodule
->name
= strbuf_detach(&name_buf
, NULL
);
261 submodule
->path
= NULL
;
262 submodule
->url
= NULL
;
263 submodule
->update_strategy
.type
= SM_UPDATE_UNSPECIFIED
;
264 submodule
->update_strategy
.command
= NULL
;
265 submodule
->fetch_recurse
= RECURSE_SUBMODULES_NONE
;
266 submodule
->ignore
= NULL
;
267 submodule
->branch
= NULL
;
268 submodule
->recommend_shallow
= -1;
270 oidcpy(&submodule
->gitmodules_oid
, gitmodules_oid
);
272 cache_add(cache
, submodule
);
277 static int parse_fetch_recurse(const char *opt
, const char *arg
,
280 switch (git_parse_maybe_bool(arg
)) {
282 return RECURSE_SUBMODULES_ON
;
284 return RECURSE_SUBMODULES_OFF
;
286 if (!strcmp(arg
, "on-demand"))
287 return RECURSE_SUBMODULES_ON_DEMAND
;
289 * Please update $__git_fetch_recurse_submodules in
290 * git-completion.bash when you add new options.
293 die("bad %s argument: %s", opt
, arg
);
295 return RECURSE_SUBMODULES_ERROR
;
299 int parse_submodule_fetchjobs(const char *var
, const char *value
)
301 int fetchjobs
= git_config_int(var
, value
);
303 die(_("negative values not allowed for submodule.fetchjobs"));
307 int parse_fetch_recurse_submodules_arg(const char *opt
, const char *arg
)
309 return parse_fetch_recurse(opt
, arg
, 1);
312 int option_fetch_parse_recurse_submodules(const struct option
*opt
,
313 const char *arg
, int unset
)
323 *v
= RECURSE_SUBMODULES_OFF
;
326 *v
= parse_fetch_recurse_submodules_arg(opt
->long_name
, arg
);
328 *v
= RECURSE_SUBMODULES_ON
;
333 static int parse_update_recurse(const char *opt
, const char *arg
,
336 switch (git_parse_maybe_bool(arg
)) {
338 return RECURSE_SUBMODULES_ON
;
340 return RECURSE_SUBMODULES_OFF
;
343 die("bad %s argument: %s", opt
, arg
);
344 return RECURSE_SUBMODULES_ERROR
;
348 int parse_update_recurse_submodules_arg(const char *opt
, const char *arg
)
350 return parse_update_recurse(opt
, arg
, 1);
353 static int parse_push_recurse(const char *opt
, const char *arg
,
356 switch (git_parse_maybe_bool(arg
)) {
358 /* There's no simple "on" value when pushing */
360 die("bad %s argument: %s", opt
, arg
);
362 return RECURSE_SUBMODULES_ERROR
;
364 return RECURSE_SUBMODULES_OFF
;
366 if (!strcmp(arg
, "on-demand"))
367 return RECURSE_SUBMODULES_ON_DEMAND
;
368 else if (!strcmp(arg
, "check"))
369 return RECURSE_SUBMODULES_CHECK
;
370 else if (!strcmp(arg
, "only"))
371 return RECURSE_SUBMODULES_ONLY
;
373 * Please update $__git_push_recurse_submodules in
374 * git-completion.bash when you add new modes.
376 else if (die_on_error
)
377 die("bad %s argument: %s", opt
, arg
);
379 return RECURSE_SUBMODULES_ERROR
;
383 int parse_push_recurse_submodules_arg(const char *opt
, const char *arg
)
385 return parse_push_recurse(opt
, arg
, 1);
388 static void warn_multiple_config(const struct object_id
*treeish_name
,
389 const char *name
, const char *option
)
391 const char *commit_string
= "WORKTREE";
393 commit_string
= oid_to_hex(treeish_name
);
394 warning("%s:.gitmodules, multiple configurations found for "
395 "'submodule.%s.%s'. Skipping second one!",
396 commit_string
, name
, option
);
399 static void warn_command_line_option(const char *var
, const char *value
)
401 warning(_("ignoring '%s' which may be interpreted as"
402 " a command-line option: %s"), var
, value
);
405 struct parse_config_parameter
{
406 struct submodule_cache
*cache
;
407 const struct object_id
*treeish_name
;
408 const struct object_id
*gitmodules_oid
;
412 static int parse_config(const char *var
, const char *value
, void *data
)
414 struct parse_config_parameter
*me
= data
;
415 struct submodule
*submodule
;
416 struct strbuf name
= STRBUF_INIT
, item
= STRBUF_INIT
;
419 /* this also ensures that we only parse submodule entries */
420 if (!name_and_item_from_var(var
, &name
, &item
))
423 submodule
= lookup_or_create_by_name(me
->cache
,
427 if (!strcmp(item
.buf
, "path")) {
429 ret
= config_error_nonbool(var
);
430 else if (looks_like_command_line_option(value
))
431 warn_command_line_option(var
, value
);
432 else if (!me
->overwrite
&& submodule
->path
)
433 warn_multiple_config(me
->treeish_name
, submodule
->name
,
437 cache_remove_path(me
->cache
, submodule
);
438 free((void *) submodule
->path
);
439 submodule
->path
= xstrdup(value
);
440 cache_put_path(me
->cache
, submodule
);
442 } else if (!strcmp(item
.buf
, "fetchrecursesubmodules")) {
443 /* when parsing worktree configurations we can die early */
444 int die_on_error
= is_null_oid(me
->gitmodules_oid
);
445 if (!me
->overwrite
&&
446 submodule
->fetch_recurse
!= RECURSE_SUBMODULES_NONE
)
447 warn_multiple_config(me
->treeish_name
, submodule
->name
,
448 "fetchrecursesubmodules");
450 submodule
->fetch_recurse
= parse_fetch_recurse(
453 } else if (!strcmp(item
.buf
, "ignore")) {
455 ret
= config_error_nonbool(var
);
456 else if (!me
->overwrite
&& submodule
->ignore
)
457 warn_multiple_config(me
->treeish_name
, submodule
->name
,
459 else if (strcmp(value
, "untracked") &&
460 strcmp(value
, "dirty") &&
461 strcmp(value
, "all") &&
462 strcmp(value
, "none"))
463 warning("Invalid parameter '%s' for config option "
464 "'submodule.%s.ignore'", value
, name
.buf
);
466 free((void *) submodule
->ignore
);
467 submodule
->ignore
= xstrdup(value
);
469 } else if (!strcmp(item
.buf
, "url")) {
471 ret
= config_error_nonbool(var
);
472 } else if (looks_like_command_line_option(value
)) {
473 warn_command_line_option(var
, value
);
474 } else if (!me
->overwrite
&& submodule
->url
) {
475 warn_multiple_config(me
->treeish_name
, submodule
->name
,
478 free((void *) submodule
->url
);
479 submodule
->url
= xstrdup(value
);
481 } else if (!strcmp(item
.buf
, "update")) {
483 ret
= config_error_nonbool(var
);
484 else if (!me
->overwrite
&&
485 submodule
->update_strategy
.type
!= SM_UPDATE_UNSPECIFIED
)
486 warn_multiple_config(me
->treeish_name
, submodule
->name
,
488 else if (parse_submodule_update_strategy(value
,
489 &submodule
->update_strategy
) < 0)
490 die(_("invalid value for %s"), var
);
491 } else if (!strcmp(item
.buf
, "shallow")) {
492 if (!me
->overwrite
&& submodule
->recommend_shallow
!= -1)
493 warn_multiple_config(me
->treeish_name
, submodule
->name
,
496 submodule
->recommend_shallow
=
497 git_config_bool(var
, value
);
498 } else if (!strcmp(item
.buf
, "branch")) {
499 if (!me
->overwrite
&& submodule
->branch
)
500 warn_multiple_config(me
->treeish_name
, submodule
->name
,
503 free((void *)submodule
->branch
);
504 submodule
->branch
= xstrdup(value
);
508 strbuf_release(&name
);
509 strbuf_release(&item
);
514 static int gitmodule_oid_from_commit(const struct object_id
*treeish_name
,
515 struct object_id
*gitmodules_oid
,
520 if (is_null_oid(treeish_name
)) {
521 oidclr(gitmodules_oid
);
525 strbuf_addf(rev
, "%s:.gitmodules", oid_to_hex(treeish_name
));
526 if (get_oid(rev
->buf
, gitmodules_oid
) >= 0)
532 /* This does a lookup of a submodule configuration by name or by path
533 * (key) with on-demand reading of the appropriate .gitmodules from
536 static const struct submodule
*config_from(struct submodule_cache
*cache
,
537 const struct object_id
*treeish_name
, const char *key
,
538 enum lookup_type lookup_type
)
540 struct strbuf rev
= STRBUF_INIT
;
541 unsigned long config_size
;
543 struct object_id oid
;
544 enum object_type type
;
545 const struct submodule
*submodule
= NULL
;
546 struct parse_config_parameter parameter
;
549 * If any parameter except the cache is a NULL pointer just
550 * return the first submodule. Can be used to check whether
551 * there are any submodules parsed.
553 if (!treeish_name
|| !key
) {
554 struct hashmap_iter iter
;
555 struct submodule_entry
*entry
;
557 entry
= hashmap_iter_first_entry(&cache
->for_name
, &iter
,
558 struct submodule_entry
,
559 ent
/* member name */);
562 return entry
->config
;
565 if (!gitmodule_oid_from_commit(treeish_name
, &oid
, &rev
))
568 switch (lookup_type
) {
570 submodule
= cache_lookup_name(cache
, &oid
, key
);
573 submodule
= cache_lookup_path(cache
, &oid
, key
);
579 config
= read_object_file(&oid
, &type
, &config_size
);
580 if (!config
|| type
!= OBJ_BLOB
)
583 /* fill the submodule config into the cache */
584 parameter
.cache
= cache
;
585 parameter
.treeish_name
= treeish_name
;
586 parameter
.gitmodules_oid
= &oid
;
587 parameter
.overwrite
= 0;
588 git_config_from_mem(parse_config
, CONFIG_ORIGIN_SUBMODULE_BLOB
, rev
.buf
,
589 config
, config_size
, ¶meter
, NULL
);
590 strbuf_release(&rev
);
593 switch (lookup_type
) {
595 return cache_lookup_name(cache
, &oid
, key
);
597 return cache_lookup_path(cache
, &oid
, key
);
603 strbuf_release(&rev
);
608 static void submodule_cache_check_init(struct repository
*repo
)
610 if (repo
->submodule_cache
&& repo
->submodule_cache
->initialized
)
613 if (!repo
->submodule_cache
)
614 repo
->submodule_cache
= submodule_cache_alloc();
616 submodule_cache_init(repo
->submodule_cache
);
620 * Note: This function is private for a reason, the '.gitmodules' file should
621 * not be used as as a mechanism to retrieve arbitrary configuration stored in
624 * Runs the provided config function on the '.gitmodules' file found in the
627 static void config_from_gitmodules(config_fn_t fn
, struct repository
*repo
, void *data
)
629 if (repo
->worktree
) {
630 struct git_config_source config_source
= { 0 };
631 const struct config_options opts
= { 0 };
632 struct object_id oid
;
636 file
= repo_worktree_path(repo
, GITMODULES_FILE
);
637 if (file_exists(file
)) {
638 config_source
.file
= file
;
639 } else if (repo_get_oid(repo
, GITMODULES_INDEX
, &oid
) >= 0 ||
640 repo_get_oid(repo
, GITMODULES_HEAD
, &oid
) >= 0) {
641 config_source
.blob
= oidstr
= xstrdup(oid_to_hex(&oid
));
642 if (repo
!= the_repository
)
643 add_to_alternates_memory(repo
->objects
->odb
->path
);
648 config_with_options(fn
, data
, &config_source
, &opts
);
656 static int gitmodules_cb(const char *var
, const char *value
, void *data
)
658 struct repository
*repo
= data
;
659 struct parse_config_parameter parameter
;
661 parameter
.cache
= repo
->submodule_cache
;
662 parameter
.treeish_name
= NULL
;
663 parameter
.gitmodules_oid
= &null_oid
;
664 parameter
.overwrite
= 1;
666 return parse_config(var
, value
, ¶meter
);
669 void repo_read_gitmodules(struct repository
*repo
)
671 submodule_cache_check_init(repo
);
673 if (repo_read_index(repo
) < 0)
676 if (!is_gitmodules_unmerged(repo
->index
))
677 config_from_gitmodules(gitmodules_cb
, repo
, repo
);
679 repo
->submodule_cache
->gitmodules_read
= 1;
682 void gitmodules_config_oid(const struct object_id
*commit_oid
)
684 struct strbuf rev
= STRBUF_INIT
;
685 struct object_id oid
;
687 submodule_cache_check_init(the_repository
);
689 if (gitmodule_oid_from_commit(commit_oid
, &oid
, &rev
)) {
690 git_config_from_blob_oid(gitmodules_cb
, rev
.buf
,
691 &oid
, the_repository
);
693 strbuf_release(&rev
);
695 the_repository
->submodule_cache
->gitmodules_read
= 1;
698 static void gitmodules_read_check(struct repository
*repo
)
700 submodule_cache_check_init(repo
);
702 /* read the repo's .gitmodules file if it hasn't been already */
703 if (!repo
->submodule_cache
->gitmodules_read
)
704 repo_read_gitmodules(repo
);
707 const struct submodule
*submodule_from_name(struct repository
*r
,
708 const struct object_id
*treeish_name
,
711 gitmodules_read_check(r
);
712 return config_from(r
->submodule_cache
, treeish_name
, name
, lookup_name
);
715 const struct submodule
*submodule_from_path(struct repository
*r
,
716 const struct object_id
*treeish_name
,
719 gitmodules_read_check(r
);
720 return config_from(r
->submodule_cache
, treeish_name
, path
, lookup_path
);
723 void submodule_free(struct repository
*r
)
725 if (r
->submodule_cache
)
726 submodule_cache_clear(r
->submodule_cache
);
729 static int config_print_callback(const char *var
, const char *value
, void *cb_data
)
731 char *wanted_key
= cb_data
;
733 if (!strcmp(wanted_key
, var
))
734 printf("%s\n", value
);
739 int print_config_from_gitmodules(struct repository
*repo
, const char *key
)
744 ret
= git_config_parse_key(key
, &store_key
, NULL
);
746 return CONFIG_INVALID_KEY
;
748 config_from_gitmodules(config_print_callback
, repo
, store_key
);
754 int config_set_in_gitmodules_file_gently(const char *key
, const char *value
)
758 ret
= git_config_set_in_file_gently(GITMODULES_FILE
, key
, value
);
760 /* Maybe the user already did that, don't error out here */
761 warning(_("Could not update .gitmodules entry %s"), key
);
766 struct fetch_config
{
768 int *recurse_submodules
;
771 static int gitmodules_fetch_config(const char *var
, const char *value
, void *cb
)
773 struct fetch_config
*config
= cb
;
774 if (!strcmp(var
, "submodule.fetchjobs")) {
775 *(config
->max_children
) = parse_submodule_fetchjobs(var
, value
);
777 } else if (!strcmp(var
, "fetch.recursesubmodules")) {
778 *(config
->recurse_submodules
) = parse_fetch_recurse_submodules_arg(var
, value
);
785 void fetch_config_from_gitmodules(int *max_children
, int *recurse_submodules
)
787 struct fetch_config config
= {
788 .max_children
= max_children
,
789 .recurse_submodules
= recurse_submodules
791 config_from_gitmodules(gitmodules_fetch_config
, the_repository
, &config
);
794 static int gitmodules_update_clone_config(const char *var
, const char *value
,
798 if (!strcmp(var
, "submodule.fetchjobs"))
799 *max_jobs
= parse_submodule_fetchjobs(var
, value
);
803 void update_clone_config_from_gitmodules(int *max_jobs
)
805 config_from_gitmodules(gitmodules_update_clone_config
, the_repository
, &max_jobs
);