]> git.ipfire.org Git - thirdparty/git.git/blame - attr.c
attr.c: complete a sentence in a comment
[thirdparty/git.git] / attr.c
CommitLineData
86ab7f0c
MH
1/*
2 * Handle git attributes. See gitattributes(5) for a description of
3 * the file syntax, and Documentation/technical/api-gitattributes.txt
4 * for a description of the API.
5 *
6 * One basic design decision here is that we are not going to support
7 * an insanely large number of attributes.
8 */
9
06f33c17 10#define NO_THE_INDEX_COMPATIBILITY_MACROS
d0bfd026 11#include "cache.h"
6df42ab9 12#include "exec_cmd.h"
d0bfd026 13#include "attr.h"
6eba6210 14#include "dir.h"
27547e5f 15#include "utf8.h"
d0bfd026 16
a5e92abd
JH
17const char git_attr__true[] = "(builtin)true";
18const char git_attr__false[] = "\0(builtin)false";
19static const char git_attr__unknown[] = "(builtin)unknown";
20#define ATTR__TRUE git_attr__true
21#define ATTR__FALSE git_attr__false
22#define ATTR__UNSET NULL
23#define ATTR__UNKNOWN git_attr__unknown
515106fa 24
86ab7f0c 25/* This is a randomly chosen prime. */
d0bfd026
JH
26#define HASHSIZE 257
27
28#ifndef DEBUG_ATTR
29#define DEBUG_ATTR 0
30#endif
31
32struct git_attr {
33 struct git_attr *next;
34 unsigned h;
f48fd688 35 int attr_nr;
fad32bcd 36 int maybe_macro;
06a604e6 37 int maybe_real;
d0bfd026
JH
38 char name[FLEX_ARRAY];
39};
f48fd688 40static int attr_nr;
06a604e6 41static int cannot_trust_maybe_real;
d0bfd026 42
f48fd688 43static struct git_attr_check *check_all_attr;
d0bfd026
JH
44static struct git_attr *(git_attr_hash[HASHSIZE]);
45
352404ac
MH
46char *git_attr_name(struct git_attr *attr)
47{
48 return attr->name;
49}
50
d0bfd026
JH
51static unsigned hash_name(const char *name, int namelen)
52{
48fb7deb 53 unsigned val = 0, c;
d0bfd026
JH
54
55 while (namelen--) {
56 c = *name++;
57 val = ((val << 7) | (val >> 22)) ^ c;
58 }
59 return val;
60}
61
e4aee10a
JH
62static int invalid_attr_name(const char *name, int namelen)
63{
64 /*
d42453ab
MH
65 * Attribute name cannot begin with '-' and must consist of
66 * characters from [-A-Za-z0-9_.].
e4aee10a 67 */
c0b13b21 68 if (namelen <= 0 || *name == '-')
e4aee10a
JH
69 return -1;
70 while (namelen--) {
71 char ch = *name++;
72 if (! (ch == '-' || ch == '.' || ch == '_' ||
73 ('0' <= ch && ch <= '9') ||
74 ('a' <= ch && ch <= 'z') ||
75 ('A' <= ch && ch <= 'Z')) )
76 return -1;
77 }
78 return 0;
79}
80
7fb0eaa2 81static struct git_attr *git_attr_internal(const char *name, int len)
d0bfd026
JH
82{
83 unsigned hval = hash_name(name, len);
84 unsigned pos = hval % HASHSIZE;
85 struct git_attr *a;
86
87 for (a = git_attr_hash[pos]; a; a = a->next) {
88 if (a->h == hval &&
89 !memcmp(a->name, name, len) && !a->name[len])
90 return a;
91 }
92
e4aee10a
JH
93 if (invalid_attr_name(name, len))
94 return NULL;
95
96ffc06f 96 FLEX_ALLOC_MEM(a, name, name, len);
d0bfd026
JH
97 a->h = hval;
98 a->next = git_attr_hash[pos];
f48fd688 99 a->attr_nr = attr_nr++;
fad32bcd 100 a->maybe_macro = 0;
06a604e6 101 a->maybe_real = 0;
d0bfd026 102 git_attr_hash[pos] = a;
f48fd688 103
2756ca43 104 REALLOC_ARRAY(check_all_attr, attr_nr);
f48fd688 105 check_all_attr[a->attr_nr].attr = a;
515106fa 106 check_all_attr[a->attr_nr].value = ATTR__UNKNOWN;
d0bfd026
JH
107 return a;
108}
109
7fb0eaa2
JH
110struct git_attr *git_attr(const char *name)
111{
112 return git_attr_internal(name, strlen(name));
113}
114
515106fa 115/* What does a matched pattern decide? */
d0bfd026 116struct attr_state {
d0bfd026 117 struct git_attr *attr;
a5e92abd 118 const char *setto;
d0bfd026
JH
119};
120
82dce998
NTND
121struct pattern {
122 const char *pattern;
123 int patternlen;
124 int nowildcardlen;
f8708998 125 unsigned flags; /* EXC_FLAG_* */
82dce998
NTND
126};
127
ba845b75
MH
128/*
129 * One rule, as from a .gitattributes file.
130 *
131 * If is_macro is true, then u.attr is a pointer to the git_attr being
132 * defined.
133 *
4894f4ff
JH
134 * If is_macro is false, then u.pat is the filename pattern to which the
135 * rule applies.
ba845b75
MH
136 *
137 * In either case, num_attr is the number of attributes affected by
138 * this rule, and state is an array listing them. The attributes are
139 * listed as they appear in the file (macros unexpanded).
140 */
d0bfd026 141struct match_attr {
f48fd688 142 union {
82dce998 143 struct pattern pat;
f48fd688
JH
144 struct git_attr *attr;
145 } u;
146 char is_macro;
d0bfd026
JH
147 unsigned num_attr;
148 struct attr_state state[FLEX_ARRAY];
149};
150
151static const char blank[] = " \t\r\n";
152
d1751298
MH
153/*
154 * Parse a whitespace-delimited attribute state (i.e., "attr",
155 * "-attr", "!attr", or "attr=value") from the string starting at src.
156 * If e is not NULL, write the results to *e. Return a pointer to the
157 * remainder of the string (with leading whitespace removed), or NULL
158 * if there was an error.
159 */
515106fa 160static const char *parse_attr(const char *src, int lineno, const char *cp,
d1751298 161 struct attr_state *e)
515106fa
JH
162{
163 const char *ep, *equals;
164 int len;
165
166 ep = cp + strcspn(cp, blank);
167 equals = strchr(cp, '=');
168 if (equals && ep < equals)
169 equals = NULL;
170 if (equals)
171 len = equals - cp;
172 else
173 len = ep - cp;
d1751298 174 if (!e) {
515106fa
JH
175 if (*cp == '-' || *cp == '!') {
176 cp++;
177 len--;
178 }
179 if (invalid_attr_name(cp, len)) {
180 fprintf(stderr,
181 "%.*s is not a valid attribute name: %s:%d\n",
182 len, cp, src, lineno);
183 return NULL;
184 }
185 } else {
5a884019
JH
186 /*
187 * As this function is always called twice, once with
188 * e == NULL in the first pass and then e != NULL in
189 * the second pass, no need for invalid_attr_name()
190 * check here.
191 */
515106fa
JH
192 if (*cp == '-' || *cp == '!') {
193 e->setto = (*cp == '-') ? ATTR__FALSE : ATTR__UNSET;
194 cp++;
195 len--;
196 }
197 else if (!equals)
198 e->setto = ATTR__TRUE;
199 else {
182af834 200 e->setto = xmemdupz(equals + 1, ep - equals - 1);
515106fa 201 }
7fb0eaa2 202 e->attr = git_attr_internal(cp, len);
515106fa 203 }
515106fa
JH
204 return ep + strspn(ep, blank);
205}
206
f48fd688
JH
207static struct match_attr *parse_attr_line(const char *line, const char *src,
208 int lineno, int macro_ok)
d0bfd026
JH
209{
210 int namelen;
d68e1c18 211 int num_attr, i;
85c4a0d0 212 const char *cp, *name, *states;
515106fa 213 struct match_attr *res = NULL;
f48fd688 214 int is_macro;
d0bfd026
JH
215
216 cp = line + strspn(line, blank);
217 if (!*cp || *cp == '#')
218 return NULL;
219 name = cp;
220 namelen = strcspn(name, blank);
f48fd688 221 if (strlen(ATTRIBUTE_MACRO_PREFIX) < namelen &&
59556548 222 starts_with(name, ATTRIBUTE_MACRO_PREFIX)) {
f48fd688
JH
223 if (!macro_ok) {
224 fprintf(stderr, "%s not allowed: %s:%d\n",
225 name, src, lineno);
226 return NULL;
227 }
228 is_macro = 1;
229 name += strlen(ATTRIBUTE_MACRO_PREFIX);
230 name += strspn(name, blank);
231 namelen = strcspn(name, blank);
e4aee10a
JH
232 if (invalid_attr_name(name, namelen)) {
233 fprintf(stderr,
234 "%.*s is not a valid attribute name: %s:%d\n",
235 namelen, name, src, lineno);
236 return NULL;
237 }
f48fd688
JH
238 }
239 else
240 is_macro = 0;
d0bfd026 241
85c4a0d0
MH
242 states = name + namelen;
243 states += strspn(states, blank);
244
d68e1c18
MH
245 /* First pass to count the attr_states */
246 for (cp = states, num_attr = 0; *cp; num_attr++) {
247 cp = parse_attr(src, lineno, cp, NULL);
248 if (!cp)
249 return NULL;
d0bfd026 250 }
d68e1c18
MH
251
252 res = xcalloc(1,
253 sizeof(*res) +
254 sizeof(struct attr_state) * num_attr +
255 (is_macro ? 0 : namelen + 1));
fad32bcd 256 if (is_macro) {
d68e1c18 257 res->u.attr = git_attr_internal(name, namelen);
fad32bcd
NTND
258 res->u.attr->maybe_macro = 1;
259 } else {
82dce998
NTND
260 char *p = (char *)&(res->state[num_attr]);
261 memcpy(p, name, namelen);
262 res->u.pat.pattern = p;
263 parse_exclude_pattern(&res->u.pat.pattern,
264 &res->u.pat.patternlen,
265 &res->u.pat.flags,
266 &res->u.pat.nowildcardlen);
8b1bd024
TR
267 if (res->u.pat.flags & EXC_FLAG_NEGATIVE) {
268 warning(_("Negative patterns are ignored in git attributes\n"
269 "Use '\\!' for literal leading exclamation."));
270 return NULL;
271 }
d0bfd026 272 }
d68e1c18
MH
273 res->is_macro = is_macro;
274 res->num_attr = num_attr;
275
276 /* Second pass to fill the attr_states */
277 for (cp = states, i = 0; *cp; i++) {
278 cp = parse_attr(src, lineno, cp, &(res->state[i]));
06a604e6
NTND
279 if (!is_macro)
280 res->state[i].attr->maybe_real = 1;
281 if (res->state[i].attr->maybe_macro)
282 cannot_trust_maybe_real = 1;
d68e1c18
MH
283 }
284
d0bfd026
JH
285 return res;
286}
287
288/*
289 * Like info/exclude and .gitignore, the attribute information can
290 * come from many places.
291 *
292 * (1) .gitattribute file of the same directory;
515106fa
JH
293 * (2) .gitattribute file of the parent directory if (1) does not have
294 * any match; this goes recursively upwards, just like .gitignore.
295 * (3) $GIT_DIR/info/attributes, which overrides both of the above.
d0bfd026
JH
296 *
297 * In the same file, later entries override the earlier match, so in the
298 * global list, we would have entries from info/attributes the earliest
299 * (reading the file from top to bottom), .gitattribute of the root
300 * directory (again, reading the file from top to bottom) down to the
301 * current directory, and then scan the list backwards to find the first match.
6d24e7a8 302 * This is exactly the same as what is_excluded() does in dir.c to deal with
6f416cba 303 * .gitignore file and info/excludes file as a fallback.
d0bfd026
JH
304 */
305
306static struct attr_stack {
307 struct attr_stack *prev;
308 char *origin;
cd6a0b26 309 size_t originlen;
d0bfd026 310 unsigned num_matches;
a4413118 311 unsigned alloc;
d0bfd026
JH
312 struct match_attr **attrs;
313} *attr_stack;
314
315static void free_attr_elem(struct attr_stack *e)
316{
317 int i;
318 free(e->origin);
515106fa
JH
319 for (i = 0; i < e->num_matches; i++) {
320 struct match_attr *a = e->attrs[i];
321 int j;
322 for (j = 0; j < a->num_attr; j++) {
a5e92abd 323 const char *setto = a->state[j].setto;
515106fa
JH
324 if (setto == ATTR__TRUE ||
325 setto == ATTR__FALSE ||
326 setto == ATTR__UNSET ||
327 setto == ATTR__UNKNOWN)
328 ;
329 else
4b25d091 330 free((char *) setto);
515106fa
JH
331 }
332 free(a);
333 }
37475f97 334 free(e->attrs);
d0bfd026
JH
335 free(e);
336}
337
338static const char *builtin_attr[] = {
155a4b71 339 "[attr]binary -diff -merge -text",
d0bfd026
JH
340 NULL,
341};
342
a4413118
JH
343static void handle_attr_line(struct attr_stack *res,
344 const char *line,
345 const char *src,
346 int lineno,
347 int macro_ok)
348{
349 struct match_attr *a;
350
351 a = parse_attr_line(line, src, lineno, macro_ok);
352 if (!a)
353 return;
3a7fa03d 354 ALLOC_GROW(res->attrs, res->num_matches + 1, res->alloc);
a4413118
JH
355 res->attrs[res->num_matches++] = a;
356}
357
d0bfd026
JH
358static struct attr_stack *read_attr_from_array(const char **list)
359{
360 struct attr_stack *res;
361 const char *line;
f48fd688 362 int lineno = 0;
d0bfd026
JH
363
364 res = xcalloc(1, sizeof(*res));
a4413118
JH
365 while ((line = *(list++)) != NULL)
366 handle_attr_line(res, line, "[builtin]", ++lineno, 1);
d0bfd026
JH
367 return res;
368}
369
06f33c17
JH
370static enum git_attr_direction direction;
371static struct index_state *use_index;
372
f48fd688 373static struct attr_stack *read_attr_from_file(const char *path, int macro_ok)
d0bfd026 374{
a4413118 375 FILE *fp = fopen(path, "r");
d0bfd026
JH
376 struct attr_stack *res;
377 char buf[2048];
f48fd688 378 int lineno = 0;
d0bfd026 379
11e50b27 380 if (!fp) {
8e950dab 381 if (errno != ENOENT && errno != ENOTDIR)
55b38a48 382 warn_on_inaccessible(path);
a4413118 383 return NULL;
11e50b27 384 }
a4413118 385 res = xcalloc(1, sizeof(*res));
27547e5f
JH
386 while (fgets(buf, sizeof(buf), fp)) {
387 char *bufp = buf;
388 if (!lineno)
389 skip_utf8_bom(&bufp, strlen(bufp));
390 handle_attr_line(res, bufp, path, ++lineno, macro_ok);
391 }
a4413118
JH
392 fclose(fp);
393 return res;
394}
d0bfd026 395
06f33c17 396static struct attr_stack *read_attr_from_index(const char *path, int macro_ok)
a4413118
JH
397{
398 struct attr_stack *res;
1a9d7e9b
JH
399 char *buf, *sp;
400 int lineno = 0;
f48fd688 401
ff366825 402 buf = read_blob_data_from_index(use_index ? use_index : &the_index, path, NULL);
1a9d7e9b 403 if (!buf)
06f33c17 404 return NULL;
1a9d7e9b 405
06f33c17 406 res = xcalloc(1, sizeof(*res));
1a9d7e9b
JH
407 for (sp = buf; *sp; ) {
408 char *ep;
409 int more;
263434f2
JH
410
411 ep = strchrnul(sp, '\n');
1a9d7e9b
JH
412 more = (*ep == '\n');
413 *ep = '\0';
414 handle_attr_line(res, sp, path, ++lineno, macro_ok);
415 sp = ep + more;
416 }
417 free(buf);
d0bfd026
JH
418 return res;
419}
420
06f33c17
JH
421static struct attr_stack *read_attr(const char *path, int macro_ok)
422{
423 struct attr_stack *res;
424
425 if (direction == GIT_ATTR_CHECKOUT) {
426 res = read_attr_from_index(path, macro_ok);
427 if (!res)
428 res = read_attr_from_file(path, macro_ok);
429 }
4191e80a 430 else if (direction == GIT_ATTR_CHECKIN) {
06f33c17
JH
431 res = read_attr_from_file(path, macro_ok);
432 if (!res)
433 /*
434 * There is no checked out .gitattributes file there, but
435 * we might have it in the index. We allow operation in a
436 * sparsely checked out work tree, so read from it.
437 */
438 res = read_attr_from_index(path, macro_ok);
439 }
4191e80a
NTND
440 else
441 res = read_attr_from_index(path, macro_ok);
06f33c17
JH
442 if (!res)
443 res = xcalloc(1, sizeof(*res));
444 return res;
445}
446
d0bfd026
JH
447#if DEBUG_ATTR
448static void debug_info(const char *what, struct attr_stack *elem)
449{
450 fprintf(stderr, "%s: %s\n", what, elem->origin ? elem->origin : "()");
451}
cf94ccda 452static void debug_set(const char *what, const char *match, struct git_attr *attr, const void *v)
f48fd688 453{
515106fa
JH
454 const char *value = v;
455
456 if (ATTR_TRUE(value))
457 value = "set";
458 else if (ATTR_FALSE(value))
459 value = "unset";
460 else if (ATTR_UNSET(value))
461 value = "unspecified";
462
463 fprintf(stderr, "%s: %s => %s (%s)\n",
464 what, attr->name, (char *) value, match);
f48fd688 465}
d0bfd026
JH
466#define debug_push(a) debug_info("push", (a))
467#define debug_pop(a) debug_info("pop", (a))
468#else
469#define debug_push(a) do { ; } while (0)
470#define debug_pop(a) do { ; } while (0)
f48fd688 471#define debug_set(a,b,c,d) do { ; } while (0)
d0bfd026
JH
472#endif
473
06f33c17
JH
474static void drop_attr_stack(void)
475{
476 while (attr_stack) {
477 struct attr_stack *elem = attr_stack;
478 attr_stack = elem->prev;
479 free_attr_elem(elem);
480 }
481}
482
c5147722 483static const char *git_etc_gitattributes(void)
6df42ab9
PO
484{
485 static const char *system_wide;
486 if (!system_wide)
487 system_wide = system_path(ETC_GITATTRIBUTES);
488 return system_wide;
489}
490
c5147722 491static int git_attr_system(void)
6df42ab9
PO
492{
493 return !git_env_bool("GIT_ATTR_NOSYSTEM", 0);
494}
495
f932729c
JK
496static GIT_PATH_FUNC(git_path_info_attributes, INFOATTRIBUTES_FILE)
497
f48fd688
JH
498static void bootstrap_attr_stack(void)
499{
909ca7b9 500 struct attr_stack *elem;
f48fd688 501
909ca7b9
JH
502 if (attr_stack)
503 return;
f48fd688 504
909ca7b9
JH
505 elem = read_attr_from_array(builtin_attr);
506 elem->origin = NULL;
507 elem->prev = attr_stack;
508 attr_stack = elem;
6df42ab9 509
909ca7b9
JH
510 if (git_attr_system()) {
511 elem = read_attr_from_file(git_etc_gitattributes(), 1);
512 if (elem) {
513 elem->origin = NULL;
514 elem->prev = attr_stack;
515 attr_stack = elem;
6df42ab9 516 }
909ca7b9 517 }
6df42ab9 518
2527bbce
PT
519 if (!git_attributes_file)
520 git_attributes_file = xdg_config_home("attributes");
f0c1c15c
JK
521 if (git_attributes_file) {
522 elem = read_attr_from_file(git_attributes_file, 1);
523 if (elem) {
524 elem->origin = NULL;
525 elem->prev = attr_stack;
526 attr_stack = elem;
527 }
909ca7b9 528 }
f48fd688 529
909ca7b9
JH
530 if (!is_bare_repository() || direction == GIT_ATTR_INDEX) {
531 elem = read_attr(GITATTRIBUTES_FILE, 1);
6c65b5ea 532 elem->origin = xstrdup("");
cd6a0b26 533 elem->originlen = 0;
f48fd688
JH
534 elem->prev = attr_stack;
535 attr_stack = elem;
909ca7b9 536 debug_push(elem);
f48fd688 537 }
909ca7b9 538
f0056f64
JK
539 if (startup_info->have_repository)
540 elem = read_attr_from_file(git_path_info_attributes(), 1);
541 else
542 elem = NULL;
543
909ca7b9
JH
544 if (!elem)
545 elem = xcalloc(1, sizeof(*elem));
546 elem->origin = NULL;
547 elem->prev = attr_stack;
548 attr_stack = elem;
f48fd688
JH
549}
550
9db9eecf 551static void prepare_attr_stack(const char *path, int dirlen)
d0bfd026
JH
552{
553 struct attr_stack *elem, *info;
9db9eecf 554 int len;
a8727017
MH
555 const char *cp;
556
d0bfd026
JH
557 /*
558 * At the bottom of the attribute stack is the built-in
6df42ab9
PO
559 * set of attribute definitions, followed by the contents
560 * of $(prefix)/etc/gitattributes and a file specified by
561 * core.attributesfile. Then, contents from
d0bfd026
JH
562 * .gitattribute files from directories closer to the
563 * root to the ones in deeper directories are pushed
564 * to the stack. Finally, at the very top of the stack
565 * we always keep the contents of $GIT_DIR/info/attributes.
566 *
567 * When checking, we use entries from near the top of the
568 * stack, preferring $GIT_DIR/info/attributes, then
569 * .gitattributes in deeper directories to shallower ones,
570 * and finally use the built-in set as the default.
571 */
7373eab4 572 bootstrap_attr_stack();
d0bfd026
JH
573
574 /*
575 * Pop the "info" one that is always at the top of the stack.
576 */
577 info = attr_stack;
578 attr_stack = info->prev;
579
580 /*
581 * Pop the ones from directories that are not the prefix of
c432ef99
JH
582 * the path we are checking. Break out of the loop when we see
583 * the root one (whose origin is an empty string "") or the builtin
584 * one (whose origin is NULL) without popping it.
d0bfd026 585 */
77f7f822 586 while (attr_stack->origin) {
d0bfd026
JH
587 int namelen = strlen(attr_stack->origin);
588
589 elem = attr_stack;
590 if (namelen <= dirlen &&
1afca444
JK
591 !strncmp(elem->origin, path, namelen) &&
592 (!namelen || path[namelen] == '/'))
d0bfd026
JH
593 break;
594
595 debug_pop(elem);
596 attr_stack = elem->prev;
597 free_attr_elem(elem);
598 }
599
600 /*
601 * Read from parent directories and push them down
602 */
4191e80a 603 if (!is_bare_repository() || direction == GIT_ATTR_INDEX) {
c432ef99
JH
604 /*
605 * bootstrap_attr_stack() should have added, and the
606 * above loop should have stopped before popping, the
607 * root element whose attr_stack->origin is set to an
608 * empty string.
609 */
97410b27 610 struct strbuf pathbuf = STRBUF_INIT;
2d35d556 611
c432ef99 612 assert(attr_stack->origin);
97410b27 613 while (1) {
2d35d556
RS
614 len = strlen(attr_stack->origin);
615 if (dirlen <= len)
616 break;
97410b27
BC
617 cp = memchr(path + len + 1, '/', dirlen - len - 1);
618 if (!cp)
619 cp = path + dirlen;
620 strbuf_add(&pathbuf, path, cp - path);
f66cf96d 621 strbuf_addch(&pathbuf, '/');
97410b27 622 strbuf_addstr(&pathbuf, GITATTRIBUTES_FILE);
f66cf96d 623 elem = read_attr(pathbuf.buf, 0);
97410b27 624 strbuf_setlen(&pathbuf, cp - path);
cd6a0b26 625 elem->origin = strbuf_detach(&pathbuf, &elem->originlen);
2d35d556
RS
626 elem->prev = attr_stack;
627 attr_stack = elem;
628 debug_push(elem);
629 }
d0bfd026 630
97410b27
BC
631 strbuf_release(&pathbuf);
632 }
d4c98565 633
d0bfd026
JH
634 /*
635 * Finally push the "info" one at the top of the stack.
636 */
637 info->prev = attr_stack;
638 attr_stack = info;
639}
640
641static int path_matches(const char *pathname, int pathlen,
bd2f371d 642 int basename_offset,
82dce998 643 const struct pattern *pat,
d0bfd026
JH
644 const char *base, int baselen)
645{
82dce998
NTND
646 const char *pattern = pat->pattern;
647 int prefix = pat->nowildcardlen;
dc09e9ec 648 int isdir = (pathlen && pathname[pathlen - 1] == '/');
82dce998 649
dc09e9ec 650 if ((pat->flags & EXC_FLAG_MUSTBEDIR) && !isdir)
94bc671a
JNA
651 return 0;
652
82dce998 653 if (pat->flags & EXC_FLAG_NODIR) {
bd2f371d 654 return match_basename(pathname + basename_offset,
dc09e9ec 655 pathlen - basename_offset - isdir,
82dce998
NTND
656 pattern, prefix,
657 pat->patternlen, pat->flags);
d0bfd026 658 }
dc09e9ec 659 return match_pathname(pathname, pathlen - isdir,
82dce998
NTND
660 base, baselen,
661 pattern, prefix, pat->patternlen, pat->flags);
d0bfd026
JH
662}
663
ec775c41
HG
664static int macroexpand_one(int attr_nr, int rem);
665
515106fa
JH
666static int fill_one(const char *what, struct match_attr *a, int rem)
667{
668 struct git_attr_check *check = check_all_attr;
669 int i;
670
969f9d73 671 for (i = a->num_attr - 1; 0 < rem && 0 <= i; i--) {
515106fa 672 struct git_attr *attr = a->state[i].attr;
a5e92abd
JH
673 const char **n = &(check[attr->attr_nr].value);
674 const char *v = a->state[i].setto;
515106fa
JH
675
676 if (*n == ATTR__UNKNOWN) {
426c27b7 677 debug_set(what,
712efb1a 678 a->is_macro ? a->u.attr->name : a->u.pat.pattern,
426c27b7 679 attr, v);
515106fa
JH
680 *n = v;
681 rem--;
ec775c41 682 rem = macroexpand_one(attr->attr_nr, rem);
515106fa
JH
683 }
684 }
685 return rem;
686}
687
bd2f371d 688static int fill(const char *path, int pathlen, int basename_offset,
4742d136 689 struct attr_stack *stk, int rem)
d0bfd026 690{
515106fa 691 int i;
d0bfd026
JH
692 const char *base = stk->origin ? stk->origin : "";
693
694 for (i = stk->num_matches - 1; 0 < rem && 0 <= i; i--) {
695 struct match_attr *a = stk->attrs[i];
f48fd688
JH
696 if (a->is_macro)
697 continue;
bd2f371d 698 if (path_matches(path, pathlen, basename_offset,
82dce998 699 &a->u.pat, base, stk->originlen))
515106fa 700 rem = fill_one("fill", a, rem);
d0bfd026
JH
701 }
702 return rem;
703}
704
aa7710e0 705static int macroexpand_one(int nr, int rem)
f48fd688 706{
ec775c41
HG
707 struct attr_stack *stk;
708 struct match_attr *a = NULL;
515106fa 709 int i;
f48fd688 710
fad32bcd
NTND
711 if (check_all_attr[nr].value != ATTR__TRUE ||
712 !check_all_attr[nr].attr->maybe_macro)
ec775c41
HG
713 return rem;
714
715 for (stk = attr_stack; !a && stk; stk = stk->prev)
716 for (i = stk->num_matches - 1; !a && 0 <= i; i--) {
717 struct match_attr *ma = stk->attrs[i];
718 if (!ma->is_macro)
719 continue;
aa7710e0 720 if (ma->u.attr->attr_nr == nr)
ec775c41
HG
721 a = ma;
722 }
723
724 if (a)
515106fa 725 rem = fill_one("expand", a, rem);
ec775c41 726
f48fd688
JH
727 return rem;
728}
729
2d721744 730/*
06a604e6
NTND
731 * Collect attributes for path into the array pointed to by
732 * check_all_attr. If num is non-zero, only attributes in check[] are
733 * collected. Otherwise all attributes are collected.
2d721744 734 */
06a604e6
NTND
735static void collect_some_attrs(const char *path, int num,
736 struct git_attr_check *check)
737
d0bfd026
JH
738{
739 struct attr_stack *stk;
9db9eecf 740 int i, pathlen, rem, dirlen;
bd2f371d
JH
741 const char *cp, *last_slash = NULL;
742 int basename_offset;
9db9eecf
NTND
743
744 for (cp = path; *cp; cp++) {
745 if (*cp == '/' && cp[1])
746 last_slash = cp;
747 }
748 pathlen = cp - path;
749 if (last_slash) {
bd2f371d 750 basename_offset = last_slash + 1 - path;
9db9eecf
NTND
751 dirlen = last_slash - path;
752 } else {
bd2f371d 753 basename_offset = 0;
9db9eecf
NTND
754 dirlen = 0;
755 }
d0bfd026 756
9db9eecf 757 prepare_attr_stack(path, dirlen);
f48fd688 758 for (i = 0; i < attr_nr; i++)
515106fa 759 check_all_attr[i].value = ATTR__UNKNOWN;
06a604e6
NTND
760 if (num && !cannot_trust_maybe_real) {
761 rem = 0;
762 for (i = 0; i < num; i++) {
763 if (!check[i].attr->maybe_real) {
764 struct git_attr_check *c;
765 c = check_all_attr + check[i].attr->attr_nr;
766 c->value = ATTR__UNSET;
767 rem++;
768 }
769 }
770 if (rem == num)
771 return;
772 }
d0bfd026 773
f48fd688
JH
774 rem = attr_nr;
775 for (stk = attr_stack; 0 < rem && stk; stk = stk->prev)
bd2f371d 776 rem = fill(path, pathlen, basename_offset, stk, rem);
2d721744
MH
777}
778
d932f4eb 779int git_check_attr(const char *path, int num, struct git_attr_check *check)
2d721744
MH
780{
781 int i;
782
06a604e6 783 collect_some_attrs(path, num, check);
f48fd688 784
515106fa 785 for (i = 0; i < num; i++) {
a5e92abd 786 const char *value = check_all_attr[check[i].attr->attr_nr].value;
515106fa
JH
787 if (value == ATTR__UNKNOWN)
788 value = ATTR__UNSET;
789 check[i].value = value;
790 }
f48fd688 791
d0bfd026
JH
792 return 0;
793}
06f33c17 794
ee548df3
MH
795int git_all_attrs(const char *path, int *num, struct git_attr_check **check)
796{
797 int i, count, j;
798
06a604e6 799 collect_some_attrs(path, 0, NULL);
ee548df3
MH
800
801 /* Count the number of attributes that are set. */
802 count = 0;
803 for (i = 0; i < attr_nr; i++) {
804 const char *value = check_all_attr[i].value;
805 if (value != ATTR__UNSET && value != ATTR__UNKNOWN)
806 ++count;
807 }
808 *num = count;
b32fa95f 809 ALLOC_ARRAY(*check, count);
ee548df3
MH
810 j = 0;
811 for (i = 0; i < attr_nr; i++) {
812 const char *value = check_all_attr[i].value;
813 if (value != ATTR__UNSET && value != ATTR__UNKNOWN) {
814 (*check)[j].attr = check_all_attr[i].attr;
815 (*check)[j].value = value;
816 ++j;
817 }
818 }
819
820 return 0;
821}
822
06f33c17
JH
823void git_attr_set_direction(enum git_attr_direction new, struct index_state *istate)
824{
825 enum git_attr_direction old = direction;
4191e80a
NTND
826
827 if (is_bare_repository() && new != GIT_ATTR_INDEX)
828 die("BUG: non-INDEX attr direction in a bare repo");
829
06f33c17
JH
830 direction = new;
831 if (new != old)
832 drop_attr_stack();
833 use_index = istate;
834}