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