2 * Handle git attributes. See gitattributes(5) for a description of
3 * the file syntax, and attr.h for a description of the API.
5 * One basic design decision here is that we are not going to support
6 * an insanely large number of attributes.
9 #include "git-compat-util.h"
12 #include "environment.h"
20 #include "read-cache-ll.h"
22 #include "object-store-ll.h"
24 #include "thread-utils.h"
25 #include "tree-walk.h"
26 #include "object-name.h"
28 const char git_attr__true
[] = "(builtin)true";
29 const char git_attr__false
[] = "\0(builtin)false";
30 static const char git_attr__unknown
[] = "(builtin)unknown";
31 #define ATTR__TRUE git_attr__true
32 #define ATTR__FALSE git_attr__false
33 #define ATTR__UNSET NULL
34 #define ATTR__UNKNOWN git_attr__unknown
37 unsigned int attr_nr
; /* unique attribute number */
38 char name
[FLEX_ARRAY
]; /* attribute name */
41 const char *git_attr_name(const struct git_attr
*attr
)
48 pthread_mutex_t mutex
;
51 static inline void hashmap_lock(struct attr_hashmap
*map
)
53 pthread_mutex_lock(&map
->mutex
);
56 static inline void hashmap_unlock(struct attr_hashmap
*map
)
58 pthread_mutex_unlock(&map
->mutex
);
61 /* The container for objects stored in "struct attr_hashmap" */
62 struct attr_hash_entry
{
63 struct hashmap_entry ent
;
64 const char *key
; /* the key; memory should be owned by value */
65 size_t keylen
; /* length of the key */
66 void *value
; /* the stored value */
69 /* attr_hashmap comparison function */
70 static int attr_hash_entry_cmp(const void *cmp_data UNUSED
,
71 const struct hashmap_entry
*eptr
,
72 const struct hashmap_entry
*entry_or_key
,
73 const void *keydata UNUSED
)
75 const struct attr_hash_entry
*a
, *b
;
77 a
= container_of(eptr
, const struct attr_hash_entry
, ent
);
78 b
= container_of(entry_or_key
, const struct attr_hash_entry
, ent
);
79 return (a
->keylen
!= b
->keylen
) || strncmp(a
->key
, b
->key
, a
->keylen
);
83 * The global dictionary of all interned attributes. This
84 * is a singleton object which is shared between threads.
85 * Access to this dictionary must be surrounded with a mutex.
87 static struct attr_hashmap g_attr_hashmap
= {
88 .map
= HASHMAP_INIT(attr_hash_entry_cmp
, NULL
),
92 * Retrieve the 'value' stored in a hashmap given the provided 'key'.
93 * If there is no matching entry, return NULL.
95 static void *attr_hashmap_get(struct attr_hashmap
*map
,
96 const char *key
, size_t keylen
)
98 struct attr_hash_entry k
;
99 struct attr_hash_entry
*e
;
101 hashmap_entry_init(&k
.ent
, memhash(key
, keylen
));
104 e
= hashmap_get_entry(&map
->map
, &k
, ent
, NULL
);
106 return e
? e
->value
: NULL
;
109 /* Add 'value' to a hashmap based on the provided 'key'. */
110 static void attr_hashmap_add(struct attr_hashmap
*map
,
111 const char *key
, size_t keylen
,
114 struct attr_hash_entry
*e
;
116 e
= xmalloc(sizeof(struct attr_hash_entry
));
117 hashmap_entry_init(&e
->ent
, memhash(key
, keylen
));
122 hashmap_add(&map
->map
, &e
->ent
);
125 struct all_attrs_item
{
126 const struct git_attr
*attr
;
129 * If 'macro' is non-NULL, indicates that 'attr' is a macro based on
130 * the current attribute stack and contains a pointer to the match_attr
131 * definition of the macro
133 const struct match_attr
*macro
;
137 * Reallocate and reinitialize the array of all attributes (which is used in
138 * the attribute collection process) in 'check' based on the global dictionary
141 static void all_attrs_init(struct attr_hashmap
*map
, struct attr_check
*check
)
148 size
= hashmap_get_size(&map
->map
);
149 if (size
< check
->all_attrs_nr
)
150 BUG("interned attributes shouldn't be deleted");
153 * If the number of attributes in the global dictionary has increased
154 * (or this attr_check instance doesn't have an initialized all_attrs
155 * field), reallocate the provided attr_check instance's all_attrs
156 * field and fill each entry with its corresponding git_attr.
158 if (size
!= check
->all_attrs_nr
) {
159 struct attr_hash_entry
*e
;
160 struct hashmap_iter iter
;
162 REALLOC_ARRAY(check
->all_attrs
, size
);
163 check
->all_attrs_nr
= size
;
165 hashmap_for_each_entry(&map
->map
, &iter
, e
,
166 ent
/* member name */) {
167 const struct git_attr
*a
= e
->value
;
168 check
->all_attrs
[a
->attr_nr
].attr
= a
;
175 * Re-initialize every entry in check->all_attrs.
176 * This re-initialization can live outside of the locked region since
177 * the attribute dictionary is no longer being accessed.
179 for (i
= 0; i
< check
->all_attrs_nr
; i
++) {
180 check
->all_attrs
[i
].value
= ATTR__UNKNOWN
;
181 check
->all_attrs
[i
].macro
= NULL
;
185 static int attr_name_valid(const char *name
, size_t namelen
)
188 * Attribute name cannot begin with '-' and must consist of
189 * characters from [-A-Za-z0-9_.].
191 if (namelen
<= 0 || *name
== '-')
195 if (! (ch
== '-' || ch
== '.' || ch
== '_' ||
196 ('0' <= ch
&& ch
<= '9') ||
197 ('a' <= ch
&& ch
<= 'z') ||
198 ('A' <= ch
&& ch
<= 'Z')) )
204 static void report_invalid_attr(const char *name
, size_t len
,
205 const char *src
, int lineno
)
207 struct strbuf err
= STRBUF_INIT
;
208 strbuf_addf(&err
, _("%.*s is not a valid attribute name"),
210 fprintf(stderr
, "%s: %s:%d\n", err
.buf
, src
, lineno
);
211 strbuf_release(&err
);
215 * Given a 'name', lookup and return the corresponding attribute in the global
216 * dictionary. If no entry is found, create a new attribute and store it in
219 static const struct git_attr
*git_attr_internal(const char *name
, size_t namelen
)
223 if (!attr_name_valid(name
, namelen
))
226 hashmap_lock(&g_attr_hashmap
);
228 a
= attr_hashmap_get(&g_attr_hashmap
, name
, namelen
);
231 FLEX_ALLOC_MEM(a
, name
, name
, namelen
);
232 a
->attr_nr
= hashmap_get_size(&g_attr_hashmap
.map
);
234 attr_hashmap_add(&g_attr_hashmap
, a
->name
, namelen
, a
);
235 if (a
->attr_nr
!= hashmap_get_size(&g_attr_hashmap
.map
) - 1)
236 die(_("unable to add additional attribute"));
239 hashmap_unlock(&g_attr_hashmap
);
244 const struct git_attr
*git_attr(const char *name
)
246 return git_attr_internal(name
, strlen(name
));
249 /* What does a matched pattern decide? */
251 const struct git_attr
*attr
;
259 unsigned flags
; /* PATTERN_FLAG_* */
263 * One rule, as from a .gitattributes file.
265 * If is_macro is true, then u.attr is a pointer to the git_attr being
268 * If is_macro is false, then u.pat is the filename pattern to which the
271 * In either case, num_attr is the number of attributes affected by
272 * this rule, and state is an array listing them. The attributes are
273 * listed as they appear in the file (macros unexpanded).
278 const struct git_attr
*attr
;
282 struct attr_state state
[FLEX_ARRAY
];
285 static const char blank
[] = " \t\r\n";
287 /* Flags usable in read_attr() and parse_attr_line() family of functions. */
288 #define READ_ATTR_MACRO_OK (1<<0)
289 #define READ_ATTR_NOFOLLOW (1<<1)
292 * Parse a whitespace-delimited attribute state (i.e., "attr",
293 * "-attr", "!attr", or "attr=value") from the string starting at src.
294 * If e is not NULL, write the results to *e. Return a pointer to the
295 * remainder of the string (with leading whitespace removed), or NULL
296 * if there was an error.
298 static const char *parse_attr(const char *src
, int lineno
, const char *cp
,
299 struct attr_state
*e
)
301 const char *ep
, *equals
;
304 ep
= cp
+ strcspn(cp
, blank
);
305 equals
= strchr(cp
, '=');
306 if (equals
&& ep
< equals
)
313 if (*cp
== '-' || *cp
== '!') {
317 if (!attr_name_valid(cp
, len
)) {
318 report_invalid_attr(cp
, len
, src
, lineno
);
323 * As this function is always called twice, once with
324 * e == NULL in the first pass and then e != NULL in
325 * the second pass, no need for attr_name_valid()
328 if (*cp
== '-' || *cp
== '!') {
329 e
->setto
= (*cp
== '-') ? ATTR__FALSE
: ATTR__UNSET
;
334 e
->setto
= ATTR__TRUE
;
336 e
->setto
= xmemdupz(equals
+ 1, ep
- equals
- 1);
338 e
->attr
= git_attr_internal(cp
, len
);
340 return ep
+ strspn(ep
, blank
);
343 static struct match_attr
*parse_attr_line(const char *line
, const char *src
,
344 int lineno
, unsigned flags
)
346 size_t namelen
, num_attr
, i
;
347 const char *cp
, *name
, *states
;
348 struct match_attr
*res
= NULL
;
350 struct strbuf pattern
= STRBUF_INIT
;
352 cp
= line
+ strspn(line
, blank
);
353 if (!*cp
|| *cp
== '#')
357 if (strlen(line
) >= ATTR_MAX_LINE_LENGTH
) {
358 warning(_("ignoring overly long attributes line %d"), lineno
);
362 if (*cp
== '"' && !unquote_c_style(&pattern
, name
, &states
)) {
364 namelen
= pattern
.len
;
366 namelen
= strcspn(name
, blank
);
367 states
= name
+ namelen
;
370 if (strlen(ATTRIBUTE_MACRO_PREFIX
) < namelen
&&
371 starts_with(name
, ATTRIBUTE_MACRO_PREFIX
)) {
372 if (!(flags
& READ_ATTR_MACRO_OK
)) {
373 fprintf_ln(stderr
, _("%s not allowed: %s:%d"),
378 name
+= strlen(ATTRIBUTE_MACRO_PREFIX
);
379 name
+= strspn(name
, blank
);
380 namelen
= strcspn(name
, blank
);
381 if (!attr_name_valid(name
, namelen
)) {
382 report_invalid_attr(name
, namelen
, src
, lineno
);
389 states
+= strspn(states
, blank
);
391 /* First pass to count the attr_states */
392 for (cp
= states
, num_attr
= 0; *cp
; num_attr
++) {
393 cp
= parse_attr(src
, lineno
, cp
, NULL
);
398 res
= xcalloc(1, st_add3(sizeof(*res
),
399 st_mult(sizeof(struct attr_state
), num_attr
),
400 is_macro
? 0 : namelen
+ 1));
402 res
->u
.attr
= git_attr_internal(name
, namelen
);
404 char *p
= (char *)&(res
->state
[num_attr
]);
405 memcpy(p
, name
, namelen
);
406 res
->u
.pat
.pattern
= p
;
407 parse_path_pattern(&res
->u
.pat
.pattern
,
408 &res
->u
.pat
.patternlen
,
410 &res
->u
.pat
.nowildcardlen
);
411 if (res
->u
.pat
.flags
& PATTERN_FLAG_NEGATIVE
) {
412 warning(_("Negative patterns are ignored in git attributes\n"
413 "Use '\\!' for literal leading exclamation."));
417 res
->is_macro
= is_macro
;
418 res
->num_attr
= num_attr
;
420 /* Second pass to fill the attr_states */
421 for (cp
= states
, i
= 0; *cp
; i
++) {
422 cp
= parse_attr(src
, lineno
, cp
, &(res
->state
[i
]));
425 strbuf_release(&pattern
);
429 strbuf_release(&pattern
);
435 * Like info/exclude and .gitignore, the attribute information can
436 * come from many places.
438 * (1) .gitattributes file of the same directory;
439 * (2) .gitattributes file of the parent directory if (1) does not have
440 * any match; this goes recursively upwards, just like .gitignore.
441 * (3) $GIT_DIR/info/attributes, which overrides both of the above.
443 * In the same file, later entries override the earlier match, so in the
444 * global list, we would have entries from info/attributes the earliest
445 * (reading the file from top to bottom), .gitattributes of the root
446 * directory (again, reading the file from top to bottom) down to the
447 * current directory, and then scan the list backwards to find the first match.
448 * This is exactly the same as what is_excluded() does in dir.c to deal with
449 * .gitignore file and info/excludes file as a fallback.
453 struct attr_stack
*prev
;
456 unsigned num_matches
;
458 struct match_attr
**attrs
;
461 static void attr_stack_free(struct attr_stack
*e
)
465 for (i
= 0; i
< e
->num_matches
; i
++) {
466 struct match_attr
*a
= e
->attrs
[i
];
469 for (j
= 0; j
< a
->num_attr
; j
++) {
470 const char *setto
= a
->state
[j
].setto
;
471 if (setto
== ATTR__TRUE
||
472 setto
== ATTR__FALSE
||
473 setto
== ATTR__UNSET
||
474 setto
== ATTR__UNKNOWN
)
477 free((char *) setto
);
485 static void drop_attr_stack(struct attr_stack
**stack
)
488 struct attr_stack
*elem
= *stack
;
490 attr_stack_free(elem
);
494 /* List of all attr_check structs; access should be surrounded by mutex */
495 static struct check_vector
{
498 struct attr_check
**checks
;
499 pthread_mutex_t mutex
;
502 static inline void vector_lock(void)
504 pthread_mutex_lock(&check_vector
.mutex
);
507 static inline void vector_unlock(void)
509 pthread_mutex_unlock(&check_vector
.mutex
);
512 static void check_vector_add(struct attr_check
*c
)
516 ALLOC_GROW(check_vector
.checks
,
519 check_vector
.checks
[check_vector
.nr
++] = c
;
524 static void check_vector_remove(struct attr_check
*check
)
531 for (i
= 0; i
< check_vector
.nr
; i
++)
532 if (check_vector
.checks
[i
] == check
)
535 if (i
>= check_vector
.nr
)
536 BUG("no entry found");
538 /* shift entries over */
539 for (; i
< check_vector
.nr
- 1; i
++)
540 check_vector
.checks
[i
] = check_vector
.checks
[i
+ 1];
547 /* Iterate through all attr_check instances and drop their stacks */
548 static void drop_all_attr_stacks(void)
554 for (i
= 0; i
< check_vector
.nr
; i
++) {
555 drop_attr_stack(&check_vector
.checks
[i
]->stack
);
561 struct attr_check
*attr_check_alloc(void)
563 struct attr_check
*c
= xcalloc(1, sizeof(struct attr_check
));
565 /* save pointer to the check struct */
571 struct attr_check
*attr_check_initl(const char *one
, ...)
573 struct attr_check
*check
;
578 va_start(params
, one
);
579 for (cnt
= 1; (param
= va_arg(params
, const char *)) != NULL
; cnt
++)
583 check
= attr_check_alloc();
586 CALLOC_ARRAY(check
->items
, cnt
);
588 check
->items
[0].attr
= git_attr(one
);
589 va_start(params
, one
);
590 for (cnt
= 1; cnt
< check
->nr
; cnt
++) {
591 const struct git_attr
*attr
;
592 param
= va_arg(params
, const char *);
594 BUG("counted %d != ended at %d",
596 attr
= git_attr(param
);
598 BUG("%s: not a valid attribute name", param
);
599 check
->items
[cnt
].attr
= attr
;
605 struct attr_check
*attr_check_dup(const struct attr_check
*check
)
607 struct attr_check
*ret
;
612 ret
= attr_check_alloc();
615 ret
->alloc
= check
->alloc
;
616 DUP_ARRAY(ret
->items
, check
->items
, ret
->nr
);
621 struct attr_check_item
*attr_check_append(struct attr_check
*check
,
622 const struct git_attr
*attr
)
624 struct attr_check_item
*item
;
626 ALLOC_GROW(check
->items
, check
->nr
+ 1, check
->alloc
);
627 item
= &check
->items
[check
->nr
++];
632 void attr_check_reset(struct attr_check
*check
)
637 void attr_check_clear(struct attr_check
*check
)
639 FREE_AND_NULL(check
->items
);
643 FREE_AND_NULL(check
->all_attrs
);
644 check
->all_attrs_nr
= 0;
646 drop_attr_stack(&check
->stack
);
649 void attr_check_free(struct attr_check
*check
)
652 /* Remove check from the check vector */
653 check_vector_remove(check
);
655 attr_check_clear(check
);
660 static const char *builtin_attr
[] = {
661 "[attr]binary -diff -merge -text",
665 static void handle_attr_line(struct attr_stack
*res
,
671 struct match_attr
*a
;
673 a
= parse_attr_line(line
, src
, lineno
, flags
);
676 ALLOC_GROW_BY(res
->attrs
, res
->num_matches
, 1, res
->alloc
);
677 res
->attrs
[res
->num_matches
- 1] = a
;
680 static struct attr_stack
*read_attr_from_array(const char **list
)
682 struct attr_stack
*res
;
686 CALLOC_ARRAY(res
, 1);
687 while ((line
= *(list
++)) != NULL
)
688 handle_attr_line(res
, line
, "[builtin]", ++lineno
,
694 * Callers into the attribute system assume there is a single, system-wide
695 * global state where attributes are read from and when the state is flipped by
696 * calling git_attr_set_direction(), the stack frames that have been
697 * constructed need to be discarded so that subsequent calls into the
698 * attribute system will lazily read from the right place. Since changing
699 * direction causes a global paradigm shift, it should not ever be called while
700 * another thread could potentially be calling into the attribute system.
702 static enum git_attr_direction direction
;
704 void git_attr_set_direction(enum git_attr_direction new_direction
)
706 if (is_bare_repository() && new_direction
!= GIT_ATTR_INDEX
)
707 BUG("non-INDEX attr direction in a bare repo");
709 if (new_direction
!= direction
)
710 drop_all_attr_stacks();
712 direction
= new_direction
;
715 static struct attr_stack
*read_attr_from_file(const char *path
, unsigned flags
)
717 struct strbuf buf
= STRBUF_INIT
;
720 struct attr_stack
*res
;
724 if (flags
& READ_ATTR_NOFOLLOW
)
725 fd
= open_nofollow(path
, O_RDONLY
);
727 fd
= open(path
, O_RDONLY
);
730 warn_on_fopen_errors(path
);
733 fp
= xfdopen(fd
, "r");
734 if (fstat(fd
, &st
)) {
735 warning_errno(_("cannot fstat gitattributes file '%s'"), path
);
739 if (st
.st_size
>= ATTR_MAX_FILE_SIZE
) {
740 warning(_("ignoring overly large gitattributes file '%s'"), path
);
745 CALLOC_ARRAY(res
, 1);
746 while (strbuf_getline(&buf
, fp
) != EOF
) {
747 if (!lineno
&& starts_with(buf
.buf
, utf8_bom
))
748 strbuf_remove(&buf
, 0, strlen(utf8_bom
));
749 handle_attr_line(res
, buf
.buf
, path
, ++lineno
, flags
);
753 strbuf_release(&buf
);
757 static struct attr_stack
*read_attr_from_buf(char *buf
, const char *path
,
760 struct attr_stack
*res
;
767 CALLOC_ARRAY(res
, 1);
768 for (sp
= buf
; *sp
;) {
772 ep
= strchrnul(sp
, '\n');
773 more
= (*ep
== '\n');
775 handle_attr_line(res
, sp
, path
, ++lineno
, flags
);
783 static struct attr_stack
*read_attr_from_blob(struct index_state
*istate
,
784 const struct object_id
*tree_oid
,
785 const char *path
, unsigned flags
)
787 struct object_id oid
;
789 enum object_type type
;
796 if (get_tree_entry(istate
->repo
, tree_oid
, path
, &oid
, &mode
))
799 buf
= repo_read_object_file(istate
->repo
, &oid
, &type
, &sz
);
800 if (!buf
|| type
!= OBJ_BLOB
) {
805 return read_attr_from_buf(buf
, path
, flags
);
808 static struct attr_stack
*read_attr_from_index(struct index_state
*istate
,
809 const char *path
, unsigned flags
)
818 * The .gitattributes file only applies to files within its
819 * parent directory. In the case of cone-mode sparse-checkout,
820 * the .gitattributes file is sparse if and only if all paths
821 * within that directory are also sparse. Thus, don't load the
822 * .gitattributes file since it will not matter.
824 * In the case of a sparse index, it is critical that we don't go
825 * looking for a .gitattributes file, as doing so would cause the
828 if (!path_in_cone_mode_sparse_checkout(path
, istate
))
831 buf
= read_blob_data_from_index(istate
, path
, &size
);
834 if (size
>= ATTR_MAX_FILE_SIZE
) {
835 warning(_("ignoring overly large gitattributes blob '%s'"), path
);
839 return read_attr_from_buf(buf
, path
, flags
);
842 static struct attr_stack
*read_attr(struct index_state
*istate
,
843 const struct object_id
*tree_oid
,
844 const char *path
, unsigned flags
)
846 struct attr_stack
*res
= NULL
;
848 if (direction
== GIT_ATTR_INDEX
) {
849 res
= read_attr_from_index(istate
, path
, flags
);
850 } else if (tree_oid
) {
851 res
= read_attr_from_blob(istate
, tree_oid
, path
, flags
);
852 } else if (!is_bare_repository()) {
853 if (direction
== GIT_ATTR_CHECKOUT
) {
854 res
= read_attr_from_index(istate
, path
, flags
);
856 res
= read_attr_from_file(path
, flags
);
857 } else if (direction
== GIT_ATTR_CHECKIN
) {
858 res
= read_attr_from_file(path
, flags
);
861 * There is no checked out .gitattributes file
862 * there, but we might have it in the index.
863 * We allow operation in a sparsely checked out
864 * work tree, so read from it.
866 res
= read_attr_from_index(istate
, path
, flags
);
871 CALLOC_ARRAY(res
, 1);
875 static const char *git_etc_gitattributes(void)
877 static const char *system_wide
;
879 system_wide
= system_path(ETC_GITATTRIBUTES
);
883 static const char *get_home_gitattributes(void)
885 if (!git_attributes_file
)
886 git_attributes_file
= xdg_config_home("attributes");
888 return git_attributes_file
;
891 static int git_attr_system(void)
893 return !git_env_bool("GIT_ATTR_NOSYSTEM", 0);
896 static GIT_PATH_FUNC(git_path_info_attributes
, INFOATTRIBUTES_FILE
)
898 static void push_stack(struct attr_stack
**attr_stack_p
,
899 struct attr_stack
*elem
, char *origin
, size_t originlen
)
902 elem
->origin
= origin
;
904 elem
->originlen
= originlen
;
905 elem
->prev
= *attr_stack_p
;
906 *attr_stack_p
= elem
;
910 static void bootstrap_attr_stack(struct index_state
*istate
,
911 const struct object_id
*tree_oid
,
912 struct attr_stack
**stack
)
914 struct attr_stack
*e
;
915 unsigned flags
= READ_ATTR_MACRO_OK
;
921 e
= read_attr_from_array(builtin_attr
);
922 push_stack(stack
, e
, NULL
, 0);
924 /* system-wide frame */
925 if (git_attr_system()) {
926 e
= read_attr_from_file(git_etc_gitattributes(), flags
);
927 push_stack(stack
, e
, NULL
, 0);
931 if (get_home_gitattributes()) {
932 e
= read_attr_from_file(get_home_gitattributes(), flags
);
933 push_stack(stack
, e
, NULL
, 0);
937 e
= read_attr(istate
, tree_oid
, GITATTRIBUTES_FILE
, flags
| READ_ATTR_NOFOLLOW
);
938 push_stack(stack
, e
, xstrdup(""), 0);
941 if (startup_info
->have_repository
)
942 e
= read_attr_from_file(git_path_info_attributes(), flags
);
947 push_stack(stack
, e
, NULL
, 0);
950 static void prepare_attr_stack(struct index_state
*istate
,
951 const struct object_id
*tree_oid
,
952 const char *path
, int dirlen
,
953 struct attr_stack
**stack
)
955 struct attr_stack
*info
;
956 struct strbuf pathbuf
= STRBUF_INIT
;
959 * At the bottom of the attribute stack is the built-in
960 * set of attribute definitions, followed by the contents
961 * of $(prefix)/etc/gitattributes and a file specified by
962 * core.attributesfile. Then, contents from
963 * .gitattributes files from directories closer to the
964 * root to the ones in deeper directories are pushed
965 * to the stack. Finally, at the very top of the stack
966 * we always keep the contents of $GIT_DIR/info/attributes.
968 * When checking, we use entries from near the top of the
969 * stack, preferring $GIT_DIR/info/attributes, then
970 * .gitattributes in deeper directories to shallower ones,
971 * and finally use the built-in set as the default.
973 bootstrap_attr_stack(istate
, tree_oid
, stack
);
976 * Pop the "info" one that is always at the top of the stack.
982 * Pop the ones from directories that are not the prefix of
983 * the path we are checking. Break out of the loop when we see
984 * the root one (whose origin is an empty string "") or the builtin
985 * one (whose origin is NULL) without popping it.
987 while ((*stack
)->origin
) {
988 int namelen
= (*stack
)->originlen
;
989 struct attr_stack
*elem
;
992 if (namelen
<= dirlen
&&
993 !strncmp(elem
->origin
, path
, namelen
) &&
994 (!namelen
|| path
[namelen
] == '/'))
998 attr_stack_free(elem
);
1002 * bootstrap_attr_stack() should have added, and the
1003 * above loop should have stopped before popping, the
1004 * root element whose attr_stack->origin is set to an
1007 assert((*stack
)->origin
);
1009 strbuf_addstr(&pathbuf
, (*stack
)->origin
);
1010 /* Build up to the directory 'path' is in */
1011 while (pathbuf
.len
< dirlen
) {
1012 size_t len
= pathbuf
.len
;
1013 struct attr_stack
*next
;
1016 /* Skip path-separator */
1017 if (len
< dirlen
&& is_dir_sep(path
[len
]))
1019 /* Find the end of the next component */
1020 while (len
< dirlen
&& !is_dir_sep(path
[len
]))
1023 if (pathbuf
.len
> 0)
1024 strbuf_addch(&pathbuf
, '/');
1025 strbuf_add(&pathbuf
, path
+ pathbuf
.len
, (len
- pathbuf
.len
));
1026 strbuf_addf(&pathbuf
, "/%s", GITATTRIBUTES_FILE
);
1028 next
= read_attr(istate
, tree_oid
, pathbuf
.buf
, READ_ATTR_NOFOLLOW
);
1030 /* reset the pathbuf to not include "/.gitattributes" */
1031 strbuf_setlen(&pathbuf
, len
);
1033 origin
= xstrdup(pathbuf
.buf
);
1034 push_stack(stack
, next
, origin
, len
);
1038 * Finally push the "info" one at the top of the stack.
1040 push_stack(stack
, info
, NULL
, 0);
1042 strbuf_release(&pathbuf
);
1045 static int path_matches(const char *pathname
, int pathlen
,
1046 int basename_offset
,
1047 const struct pattern
*pat
,
1048 const char *base
, int baselen
)
1050 const char *pattern
= pat
->pattern
;
1051 int prefix
= pat
->nowildcardlen
;
1052 int isdir
= (pathlen
&& pathname
[pathlen
- 1] == '/');
1054 if ((pat
->flags
& PATTERN_FLAG_MUSTBEDIR
) && !isdir
)
1057 if (pat
->flags
& PATTERN_FLAG_NODIR
) {
1058 return match_basename(pathname
+ basename_offset
,
1059 pathlen
- basename_offset
- isdir
,
1061 pat
->patternlen
, pat
->flags
);
1063 return match_pathname(pathname
, pathlen
- isdir
,
1065 pattern
, prefix
, pat
->patternlen
);
1068 static int macroexpand_one(struct all_attrs_item
*all_attrs
, int nr
, int rem
);
1070 static int fill_one(struct all_attrs_item
*all_attrs
,
1071 const struct match_attr
*a
, int rem
)
1075 for (i
= a
->num_attr
; rem
> 0 && i
> 0; i
--) {
1076 const struct git_attr
*attr
= a
->state
[i
- 1].attr
;
1077 const char **n
= &(all_attrs
[attr
->attr_nr
].value
);
1078 const char *v
= a
->state
[i
- 1].setto
;
1080 if (*n
== ATTR__UNKNOWN
) {
1083 rem
= macroexpand_one(all_attrs
, attr
->attr_nr
, rem
);
1089 static int fill(const char *path
, int pathlen
, int basename_offset
,
1090 const struct attr_stack
*stack
,
1091 struct all_attrs_item
*all_attrs
, int rem
)
1093 for (; rem
> 0 && stack
; stack
= stack
->prev
) {
1095 const char *base
= stack
->origin
? stack
->origin
: "";
1097 for (i
= stack
->num_matches
; 0 < rem
&& 0 < i
; i
--) {
1098 const struct match_attr
*a
= stack
->attrs
[i
- 1];
1101 if (path_matches(path
, pathlen
, basename_offset
,
1102 &a
->u
.pat
, base
, stack
->originlen
))
1103 rem
= fill_one(all_attrs
, a
, rem
);
1110 static int macroexpand_one(struct all_attrs_item
*all_attrs
, int nr
, int rem
)
1112 const struct all_attrs_item
*item
= &all_attrs
[nr
];
1114 if (item
->macro
&& item
->value
== ATTR__TRUE
)
1115 return fill_one(all_attrs
, item
->macro
, rem
);
1121 * Marks the attributes which are macros based on the attribute stack.
1122 * This prevents having to search through the attribute stack each time
1123 * a macro needs to be expanded during the fill stage.
1125 static void determine_macros(struct all_attrs_item
*all_attrs
,
1126 const struct attr_stack
*stack
)
1128 for (; stack
; stack
= stack
->prev
) {
1130 for (i
= stack
->num_matches
; i
> 0; i
--) {
1131 const struct match_attr
*ma
= stack
->attrs
[i
- 1];
1133 unsigned int n
= ma
->u
.attr
->attr_nr
;
1134 if (!all_attrs
[n
].macro
) {
1135 all_attrs
[n
].macro
= ma
;
1143 * Collect attributes for path into the array pointed to by check->all_attrs.
1144 * If check->check_nr is non-zero, only attributes in check[] are collected.
1145 * Otherwise all attributes are collected.
1147 static void collect_some_attrs(struct index_state
*istate
,
1148 const struct object_id
*tree_oid
,
1149 const char *path
, struct attr_check
*check
)
1151 int pathlen
, rem
, dirlen
;
1152 const char *cp
, *last_slash
= NULL
;
1153 int basename_offset
;
1155 for (cp
= path
; *cp
; cp
++) {
1156 if (*cp
== '/' && cp
[1])
1159 pathlen
= cp
- path
;
1161 basename_offset
= last_slash
+ 1 - path
;
1162 dirlen
= last_slash
- path
;
1164 basename_offset
= 0;
1168 prepare_attr_stack(istate
, tree_oid
, path
, dirlen
, &check
->stack
);
1169 all_attrs_init(&g_attr_hashmap
, check
);
1170 determine_macros(check
->all_attrs
, check
->stack
);
1172 rem
= check
->all_attrs_nr
;
1173 fill(path
, pathlen
, basename_offset
, check
->stack
, check
->all_attrs
, rem
);
1176 static const char *default_attr_source_tree_object_name
;
1178 void set_git_attr_source(const char *tree_object_name
)
1180 default_attr_source_tree_object_name
= xstrdup(tree_object_name
);
1183 static void compute_default_attr_source(struct object_id
*attr_source
)
1185 if (!default_attr_source_tree_object_name
)
1186 default_attr_source_tree_object_name
= getenv(GIT_ATTR_SOURCE_ENVIRONMENT
);
1188 if (!default_attr_source_tree_object_name
|| !is_null_oid(attr_source
))
1191 if (repo_get_oid_treeish(the_repository
, default_attr_source_tree_object_name
, attr_source
))
1192 die(_("bad --attr-source or GIT_ATTR_SOURCE"));
1195 static struct object_id
*default_attr_source(void)
1197 static struct object_id attr_source
;
1199 if (is_null_oid(&attr_source
))
1200 compute_default_attr_source(&attr_source
);
1201 if (is_null_oid(&attr_source
))
1203 return &attr_source
;
1206 void git_check_attr(struct index_state
*istate
,
1208 struct attr_check
*check
)
1211 const struct object_id
*tree_oid
= default_attr_source();
1213 collect_some_attrs(istate
, tree_oid
, path
, check
);
1215 for (i
= 0; i
< check
->nr
; i
++) {
1216 unsigned int n
= check
->items
[i
].attr
->attr_nr
;
1217 const char *value
= check
->all_attrs
[n
].value
;
1218 if (value
== ATTR__UNKNOWN
)
1219 value
= ATTR__UNSET
;
1220 check
->items
[i
].value
= value
;
1224 void git_all_attrs(struct index_state
*istate
,
1225 const char *path
, struct attr_check
*check
)
1228 const struct object_id
*tree_oid
= default_attr_source();
1230 attr_check_reset(check
);
1231 collect_some_attrs(istate
, tree_oid
, path
, check
);
1233 for (i
= 0; i
< check
->all_attrs_nr
; i
++) {
1234 const char *name
= check
->all_attrs
[i
].attr
->name
;
1235 const char *value
= check
->all_attrs
[i
].value
;
1236 struct attr_check_item
*item
;
1237 if (value
== ATTR__UNSET
|| value
== ATTR__UNKNOWN
)
1239 item
= attr_check_append(check
, git_attr(name
));
1240 item
->value
= value
;
1244 void attr_start(void)
1246 pthread_mutex_init(&g_attr_hashmap
.mutex
, NULL
);
1247 pthread_mutex_init(&check_vector
.mutex
, NULL
);