]> git.ipfire.org Git - thirdparty/git.git/blame - attr.c
rerere forget path: forget recorded resolution
[thirdparty/git.git] / attr.c
CommitLineData
06f33c17 1#define NO_THE_INDEX_COMPATIBILITY_MACROS
d0bfd026
JH
2#include "cache.h"
3#include "attr.h"
4
a5e92abd
JH
5const char git_attr__true[] = "(builtin)true";
6const char git_attr__false[] = "\0(builtin)false";
7static const char git_attr__unknown[] = "(builtin)unknown";
8#define ATTR__TRUE git_attr__true
9#define ATTR__FALSE git_attr__false
10#define ATTR__UNSET NULL
11#define ATTR__UNKNOWN git_attr__unknown
515106fa 12
d0bfd026
JH
13/*
14 * The basic design decision here is that we are not going to have
15 * insanely large number of attributes.
16 *
17 * This is a randomly chosen prime.
18 */
19#define HASHSIZE 257
20
21#ifndef DEBUG_ATTR
22#define DEBUG_ATTR 0
23#endif
24
25struct git_attr {
26 struct git_attr *next;
27 unsigned h;
f48fd688 28 int attr_nr;
d0bfd026
JH
29 char name[FLEX_ARRAY];
30};
f48fd688 31static int attr_nr;
d0bfd026 32
f48fd688 33static struct git_attr_check *check_all_attr;
d0bfd026
JH
34static struct git_attr *(git_attr_hash[HASHSIZE]);
35
36static unsigned hash_name(const char *name, int namelen)
37{
48fb7deb 38 unsigned val = 0, c;
d0bfd026
JH
39
40 while (namelen--) {
41 c = *name++;
42 val = ((val << 7) | (val >> 22)) ^ c;
43 }
44 return val;
45}
46
e4aee10a
JH
47static int invalid_attr_name(const char *name, int namelen)
48{
49 /*
50 * Attribute name cannot begin with '-' and from
51 * [-A-Za-z0-9_.]. We'd specifically exclude '=' for now,
52 * as we might later want to allow non-binary value for
53 * attributes, e.g. "*.svg merge=special-merge-program-for-svg"
54 */
55 if (*name == '-')
56 return -1;
57 while (namelen--) {
58 char ch = *name++;
59 if (! (ch == '-' || ch == '.' || ch == '_' ||
60 ('0' <= ch && ch <= '9') ||
61 ('a' <= ch && ch <= 'z') ||
62 ('A' <= ch && ch <= 'Z')) )
63 return -1;
64 }
65 return 0;
66}
67
d0bfd026
JH
68struct git_attr *git_attr(const char *name, int len)
69{
70 unsigned hval = hash_name(name, len);
71 unsigned pos = hval % HASHSIZE;
72 struct git_attr *a;
73
74 for (a = git_attr_hash[pos]; a; a = a->next) {
75 if (a->h == hval &&
76 !memcmp(a->name, name, len) && !a->name[len])
77 return a;
78 }
79
e4aee10a
JH
80 if (invalid_attr_name(name, len))
81 return NULL;
82
d0bfd026
JH
83 a = xmalloc(sizeof(*a) + len + 1);
84 memcpy(a->name, name, len);
85 a->name[len] = 0;
86 a->h = hval;
87 a->next = git_attr_hash[pos];
f48fd688 88 a->attr_nr = attr_nr++;
d0bfd026 89 git_attr_hash[pos] = a;
f48fd688
JH
90
91 check_all_attr = xrealloc(check_all_attr,
92 sizeof(*check_all_attr) * attr_nr);
93 check_all_attr[a->attr_nr].attr = a;
515106fa 94 check_all_attr[a->attr_nr].value = ATTR__UNKNOWN;
d0bfd026
JH
95 return a;
96}
97
98/*
99 * .gitattributes file is one line per record, each of which is
100 *
101 * (1) glob pattern.
102 * (2) whitespace
103 * (3) whitespace separated list of attribute names, each of which
515106fa
JH
104 * could be prefixed with '-' to mean "set to false", '!' to mean
105 * "unset".
d0bfd026
JH
106 */
107
515106fa 108/* What does a matched pattern decide? */
d0bfd026 109struct attr_state {
d0bfd026 110 struct git_attr *attr;
a5e92abd 111 const char *setto;
d0bfd026
JH
112};
113
114struct match_attr {
f48fd688
JH
115 union {
116 char *pattern;
117 struct git_attr *attr;
118 } u;
119 char is_macro;
d0bfd026
JH
120 unsigned num_attr;
121 struct attr_state state[FLEX_ARRAY];
122};
123
124static const char blank[] = " \t\r\n";
125
515106fa
JH
126static const char *parse_attr(const char *src, int lineno, const char *cp,
127 int *num_attr, struct match_attr *res)
128{
129 const char *ep, *equals;
130 int len;
131
132 ep = cp + strcspn(cp, blank);
133 equals = strchr(cp, '=');
134 if (equals && ep < equals)
135 equals = NULL;
136 if (equals)
137 len = equals - cp;
138 else
139 len = ep - cp;
140 if (!res) {
141 if (*cp == '-' || *cp == '!') {
142 cp++;
143 len--;
144 }
145 if (invalid_attr_name(cp, len)) {
146 fprintf(stderr,
147 "%.*s is not a valid attribute name: %s:%d\n",
148 len, cp, src, lineno);
149 return NULL;
150 }
151 } else {
152 struct attr_state *e;
153
154 e = &(res->state[*num_attr]);
155 if (*cp == '-' || *cp == '!') {
156 e->setto = (*cp == '-') ? ATTR__FALSE : ATTR__UNSET;
157 cp++;
158 len--;
159 }
160 else if (!equals)
161 e->setto = ATTR__TRUE;
162 else {
182af834 163 e->setto = xmemdupz(equals + 1, ep - equals - 1);
515106fa
JH
164 }
165 e->attr = git_attr(cp, len);
166 }
167 (*num_attr)++;
168 return ep + strspn(ep, blank);
169}
170
f48fd688
JH
171static struct match_attr *parse_attr_line(const char *line, const char *src,
172 int lineno, int macro_ok)
d0bfd026
JH
173{
174 int namelen;
175 int num_attr;
176 const char *cp, *name;
515106fa 177 struct match_attr *res = NULL;
d0bfd026 178 int pass;
f48fd688 179 int is_macro;
d0bfd026
JH
180
181 cp = line + strspn(line, blank);
182 if (!*cp || *cp == '#')
183 return NULL;
184 name = cp;
185 namelen = strcspn(name, blank);
f48fd688
JH
186 if (strlen(ATTRIBUTE_MACRO_PREFIX) < namelen &&
187 !prefixcmp(name, ATTRIBUTE_MACRO_PREFIX)) {
188 if (!macro_ok) {
189 fprintf(stderr, "%s not allowed: %s:%d\n",
190 name, src, lineno);
191 return NULL;
192 }
193 is_macro = 1;
194 name += strlen(ATTRIBUTE_MACRO_PREFIX);
195 name += strspn(name, blank);
196 namelen = strcspn(name, blank);
e4aee10a
JH
197 if (invalid_attr_name(name, namelen)) {
198 fprintf(stderr,
199 "%.*s is not a valid attribute name: %s:%d\n",
200 namelen, name, src, lineno);
201 return NULL;
202 }
f48fd688
JH
203 }
204 else
205 is_macro = 0;
d0bfd026
JH
206
207 for (pass = 0; pass < 2; pass++) {
208 /* pass 0 counts and allocates, pass 1 fills */
209 num_attr = 0;
210 cp = name + namelen;
211 cp = cp + strspn(cp, blank);
d7b0a093 212 while (*cp) {
515106fa 213 cp = parse_attr(src, lineno, cp, &num_attr, res);
d7b0a093
SP
214 if (!cp)
215 return NULL;
216 }
d0bfd026
JH
217 if (pass)
218 break;
219 res = xcalloc(1,
220 sizeof(*res) +
221 sizeof(struct attr_state) * num_attr +
f48fd688 222 (is_macro ? 0 : namelen + 1));
515106fa 223 if (is_macro)
f48fd688
JH
224 res->u.attr = git_attr(name, namelen);
225 else {
4b25d091 226 res->u.pattern = (char *)&(res->state[num_attr]);
f48fd688
JH
227 memcpy(res->u.pattern, name, namelen);
228 res->u.pattern[namelen] = 0;
229 }
230 res->is_macro = is_macro;
d0bfd026
JH
231 res->num_attr = num_attr;
232 }
233 return res;
234}
235
236/*
237 * Like info/exclude and .gitignore, the attribute information can
238 * come from many places.
239 *
240 * (1) .gitattribute file of the same directory;
515106fa
JH
241 * (2) .gitattribute file of the parent directory if (1) does not have
242 * any match; this goes recursively upwards, just like .gitignore.
243 * (3) $GIT_DIR/info/attributes, which overrides both of the above.
d0bfd026
JH
244 *
245 * In the same file, later entries override the earlier match, so in the
246 * global list, we would have entries from info/attributes the earliest
247 * (reading the file from top to bottom), .gitattribute of the root
248 * directory (again, reading the file from top to bottom) down to the
249 * current directory, and then scan the list backwards to find the first match.
250 * This is exactly the same as what excluded() does in dir.c to deal with
251 * .gitignore
252 */
253
254static struct attr_stack {
255 struct attr_stack *prev;
256 char *origin;
257 unsigned num_matches;
a4413118 258 unsigned alloc;
d0bfd026
JH
259 struct match_attr **attrs;
260} *attr_stack;
261
262static void free_attr_elem(struct attr_stack *e)
263{
264 int i;
265 free(e->origin);
515106fa
JH
266 for (i = 0; i < e->num_matches; i++) {
267 struct match_attr *a = e->attrs[i];
268 int j;
269 for (j = 0; j < a->num_attr; j++) {
a5e92abd 270 const char *setto = a->state[j].setto;
515106fa
JH
271 if (setto == ATTR__TRUE ||
272 setto == ATTR__FALSE ||
273 setto == ATTR__UNSET ||
274 setto == ATTR__UNKNOWN)
275 ;
276 else
4b25d091 277 free((char *) setto);
515106fa
JH
278 }
279 free(a);
280 }
d0bfd026
JH
281 free(e);
282}
283
284static const char *builtin_attr[] = {
e4aee10a 285 "[attr]binary -diff -crlf",
d0bfd026
JH
286 NULL,
287};
288
a4413118
JH
289static void handle_attr_line(struct attr_stack *res,
290 const char *line,
291 const char *src,
292 int lineno,
293 int macro_ok)
294{
295 struct match_attr *a;
296
297 a = parse_attr_line(line, src, lineno, macro_ok);
298 if (!a)
299 return;
300 if (res->alloc <= res->num_matches) {
301 res->alloc = alloc_nr(res->num_matches);
302 res->attrs = xrealloc(res->attrs,
303 sizeof(struct match_attr *) *
304 res->alloc);
305 }
306 res->attrs[res->num_matches++] = a;
307}
308
d0bfd026
JH
309static struct attr_stack *read_attr_from_array(const char **list)
310{
311 struct attr_stack *res;
312 const char *line;
f48fd688 313 int lineno = 0;
d0bfd026
JH
314
315 res = xcalloc(1, sizeof(*res));
a4413118
JH
316 while ((line = *(list++)) != NULL)
317 handle_attr_line(res, line, "[builtin]", ++lineno, 1);
d0bfd026
JH
318 return res;
319}
320
06f33c17
JH
321static enum git_attr_direction direction;
322static struct index_state *use_index;
323
f48fd688 324static struct attr_stack *read_attr_from_file(const char *path, int macro_ok)
d0bfd026 325{
a4413118 326 FILE *fp = fopen(path, "r");
d0bfd026
JH
327 struct attr_stack *res;
328 char buf[2048];
f48fd688 329 int lineno = 0;
d0bfd026 330
d0bfd026 331 if (!fp)
a4413118
JH
332 return NULL;
333 res = xcalloc(1, sizeof(*res));
334 while (fgets(buf, sizeof(buf), fp))
335 handle_attr_line(res, buf, path, ++lineno, macro_ok);
336 fclose(fp);
337 return res;
338}
d0bfd026 339
1a9d7e9b
JH
340static void *read_index_data(const char *path)
341{
342 int pos, len;
343 unsigned long sz;
344 enum object_type type;
345 void *data;
06f33c17 346 struct index_state *istate = use_index ? use_index : &the_index;
1a9d7e9b
JH
347
348 len = strlen(path);
06f33c17 349 pos = index_name_pos(istate, path, len);
1a9d7e9b
JH
350 if (pos < 0) {
351 /*
352 * We might be in the middle of a merge, in which
353 * case we would read stage #2 (ours).
354 */
355 int i;
356 for (i = -pos - 1;
06f33c17
JH
357 (pos < 0 && i < istate->cache_nr &&
358 !strcmp(istate->cache[i]->name, path));
1a9d7e9b 359 i++)
06f33c17 360 if (ce_stage(istate->cache[i]) == 2)
1a9d7e9b
JH
361 pos = i;
362 }
363 if (pos < 0)
364 return NULL;
06f33c17 365 data = read_sha1_file(istate->cache[pos]->sha1, &type, &sz);
1a9d7e9b
JH
366 if (!data || type != OBJ_BLOB) {
367 free(data);
368 return NULL;
369 }
370 return data;
371}
372
06f33c17 373static struct attr_stack *read_attr_from_index(const char *path, int macro_ok)
a4413118
JH
374{
375 struct attr_stack *res;
1a9d7e9b
JH
376 char *buf, *sp;
377 int lineno = 0;
f48fd688 378
1a9d7e9b
JH
379 buf = read_index_data(path);
380 if (!buf)
06f33c17 381 return NULL;
1a9d7e9b 382
06f33c17 383 res = xcalloc(1, sizeof(*res));
1a9d7e9b
JH
384 for (sp = buf; *sp; ) {
385 char *ep;
386 int more;
387 for (ep = sp; *ep && *ep != '\n'; ep++)
388 ;
389 more = (*ep == '\n');
390 *ep = '\0';
391 handle_attr_line(res, sp, path, ++lineno, macro_ok);
392 sp = ep + more;
393 }
394 free(buf);
d0bfd026
JH
395 return res;
396}
397
06f33c17
JH
398static struct attr_stack *read_attr(const char *path, int macro_ok)
399{
400 struct attr_stack *res;
401
402 if (direction == GIT_ATTR_CHECKOUT) {
403 res = read_attr_from_index(path, macro_ok);
404 if (!res)
405 res = read_attr_from_file(path, macro_ok);
406 }
4191e80a 407 else if (direction == GIT_ATTR_CHECKIN) {
06f33c17
JH
408 res = read_attr_from_file(path, macro_ok);
409 if (!res)
410 /*
411 * There is no checked out .gitattributes file there, but
412 * we might have it in the index. We allow operation in a
413 * sparsely checked out work tree, so read from it.
414 */
415 res = read_attr_from_index(path, macro_ok);
416 }
4191e80a
NTND
417 else
418 res = read_attr_from_index(path, macro_ok);
06f33c17
JH
419 if (!res)
420 res = xcalloc(1, sizeof(*res));
421 return res;
422}
423
d0bfd026
JH
424#if DEBUG_ATTR
425static void debug_info(const char *what, struct attr_stack *elem)
426{
427 fprintf(stderr, "%s: %s\n", what, elem->origin ? elem->origin : "()");
428}
cf94ccda 429static void debug_set(const char *what, const char *match, struct git_attr *attr, const void *v)
f48fd688 430{
515106fa
JH
431 const char *value = v;
432
433 if (ATTR_TRUE(value))
434 value = "set";
435 else if (ATTR_FALSE(value))
436 value = "unset";
437 else if (ATTR_UNSET(value))
438 value = "unspecified";
439
440 fprintf(stderr, "%s: %s => %s (%s)\n",
441 what, attr->name, (char *) value, match);
f48fd688 442}
d0bfd026
JH
443#define debug_push(a) debug_info("push", (a))
444#define debug_pop(a) debug_info("pop", (a))
445#else
446#define debug_push(a) do { ; } while (0)
447#define debug_pop(a) do { ; } while (0)
f48fd688 448#define debug_set(a,b,c,d) do { ; } while (0)
d0bfd026
JH
449#endif
450
06f33c17
JH
451static void drop_attr_stack(void)
452{
453 while (attr_stack) {
454 struct attr_stack *elem = attr_stack;
455 attr_stack = elem->prev;
456 free_attr_elem(elem);
457 }
458}
459
f48fd688
JH
460static void bootstrap_attr_stack(void)
461{
462 if (!attr_stack) {
463 struct attr_stack *elem;
464
465 elem = read_attr_from_array(builtin_attr);
466 elem->origin = NULL;
467 elem->prev = attr_stack;
468 attr_stack = elem;
469
4191e80a 470 if (!is_bare_repository() || direction == GIT_ATTR_INDEX) {
2d35d556
RS
471 elem = read_attr(GITATTRIBUTES_FILE, 1);
472 elem->origin = strdup("");
473 elem->prev = attr_stack;
474 attr_stack = elem;
475 debug_push(elem);
476 }
f48fd688
JH
477
478 elem = read_attr_from_file(git_path(INFOATTRIBUTES_FILE), 1);
a4413118
JH
479 if (!elem)
480 elem = xcalloc(1, sizeof(*elem));
f48fd688
JH
481 elem->origin = NULL;
482 elem->prev = attr_stack;
483 attr_stack = elem;
484 }
485}
486
d0bfd026
JH
487static void prepare_attr_stack(const char *path, int dirlen)
488{
489 struct attr_stack *elem, *info;
490 int len;
f66cf96d
DP
491 struct strbuf pathbuf;
492
493 strbuf_init(&pathbuf, dirlen+2+strlen(GITATTRIBUTES_FILE));
d0bfd026
JH
494
495 /*
496 * At the bottom of the attribute stack is the built-in
497 * set of attribute definitions. Then, contents from
498 * .gitattribute files from directories closer to the
499 * root to the ones in deeper directories are pushed
500 * to the stack. Finally, at the very top of the stack
501 * we always keep the contents of $GIT_DIR/info/attributes.
502 *
503 * When checking, we use entries from near the top of the
504 * stack, preferring $GIT_DIR/info/attributes, then
505 * .gitattributes in deeper directories to shallower ones,
506 * and finally use the built-in set as the default.
507 */
f48fd688
JH
508 if (!attr_stack)
509 bootstrap_attr_stack();
d0bfd026
JH
510
511 /*
512 * Pop the "info" one that is always at the top of the stack.
513 */
514 info = attr_stack;
515 attr_stack = info->prev;
516
517 /*
518 * Pop the ones from directories that are not the prefix of
519 * the path we are checking.
520 */
521 while (attr_stack && attr_stack->origin) {
522 int namelen = strlen(attr_stack->origin);
523
524 elem = attr_stack;
525 if (namelen <= dirlen &&
526 !strncmp(elem->origin, path, namelen))
527 break;
528
529 debug_pop(elem);
530 attr_stack = elem->prev;
531 free_attr_elem(elem);
532 }
533
534 /*
535 * Read from parent directories and push them down
536 */
4191e80a 537 if (!is_bare_repository() || direction == GIT_ATTR_INDEX) {
2d35d556
RS
538 while (1) {
539 char *cp;
540
541 len = strlen(attr_stack->origin);
542 if (dirlen <= len)
543 break;
f66cf96d
DP
544 strbuf_reset(&pathbuf);
545 strbuf_add(&pathbuf, path, dirlen);
546 strbuf_addch(&pathbuf, '/');
547 cp = strchr(pathbuf.buf + len + 1, '/');
2d35d556 548 strcpy(cp + 1, GITATTRIBUTES_FILE);
f66cf96d 549 elem = read_attr(pathbuf.buf, 0);
2d35d556 550 *cp = '\0';
f66cf96d 551 elem->origin = strdup(pathbuf.buf);
2d35d556
RS
552 elem->prev = attr_stack;
553 attr_stack = elem;
554 debug_push(elem);
555 }
d0bfd026
JH
556 }
557
d4c98565
RS
558 strbuf_release(&pathbuf);
559
d0bfd026
JH
560 /*
561 * Finally push the "info" one at the top of the stack.
562 */
563 info->prev = attr_stack;
564 attr_stack = info;
565}
566
567static int path_matches(const char *pathname, int pathlen,
568 const char *pattern,
569 const char *base, int baselen)
570{
571 if (!strchr(pattern, '/')) {
572 /* match basename */
573 const char *basename = strrchr(pathname, '/');
574 basename = basename ? basename + 1 : pathname;
575 return (fnmatch(pattern, basename, 0) == 0);
576 }
577 /*
578 * match with FNM_PATHNAME; the pattern has base implicitly
579 * in front of it.
580 */
581 if (*pattern == '/')
582 pattern++;
583 if (pathlen < baselen ||
cf94ccda 584 (baselen && pathname[baselen] != '/') ||
d0bfd026
JH
585 strncmp(pathname, base, baselen))
586 return 0;
82881b38
MO
587 if (baselen != 0)
588 baselen++;
589 return fnmatch(pattern, pathname + baselen, FNM_PATHNAME) == 0;
d0bfd026
JH
590}
591
515106fa
JH
592static int fill_one(const char *what, struct match_attr *a, int rem)
593{
594 struct git_attr_check *check = check_all_attr;
595 int i;
596
597 for (i = 0; 0 < rem && i < a->num_attr; i++) {
598 struct git_attr *attr = a->state[i].attr;
a5e92abd
JH
599 const char **n = &(check[attr->attr_nr].value);
600 const char *v = a->state[i].setto;
515106fa
JH
601
602 if (*n == ATTR__UNKNOWN) {
603 debug_set(what, a->u.pattern, attr, v);
604 *n = v;
605 rem--;
606 }
607 }
608 return rem;
609}
610
f48fd688 611static int fill(const char *path, int pathlen, struct attr_stack *stk, int rem)
d0bfd026 612{
515106fa 613 int i;
d0bfd026
JH
614 const char *base = stk->origin ? stk->origin : "";
615
616 for (i = stk->num_matches - 1; 0 < rem && 0 <= i; i--) {
617 struct match_attr *a = stk->attrs[i];
f48fd688
JH
618 if (a->is_macro)
619 continue;
d0bfd026 620 if (path_matches(path, pathlen,
515106fa
JH
621 a->u.pattern, base, strlen(base)))
622 rem = fill_one("fill", a, rem);
d0bfd026
JH
623 }
624 return rem;
625}
626
f48fd688
JH
627static int macroexpand(struct attr_stack *stk, int rem)
628{
515106fa 629 int i;
f48fd688
JH
630 struct git_attr_check *check = check_all_attr;
631
632 for (i = stk->num_matches - 1; 0 < rem && 0 <= i; i--) {
633 struct match_attr *a = stk->attrs[i];
634 if (!a->is_macro)
635 continue;
515106fa 636 if (check[a->u.attr->attr_nr].value != ATTR__TRUE)
f48fd688 637 continue;
515106fa 638 rem = fill_one("expand", a, rem);
f48fd688
JH
639 }
640 return rem;
641}
642
d0bfd026
JH
643int git_checkattr(const char *path, int num, struct git_attr_check *check)
644{
645 struct attr_stack *stk;
646 const char *cp;
647 int dirlen, pathlen, i, rem;
648
f48fd688
JH
649 bootstrap_attr_stack();
650 for (i = 0; i < attr_nr; i++)
515106fa 651 check_all_attr[i].value = ATTR__UNKNOWN;
d0bfd026
JH
652
653 pathlen = strlen(path);
654 cp = strrchr(path, '/');
655 if (!cp)
656 dirlen = 0;
657 else
658 dirlen = cp - path;
659 prepare_attr_stack(path, dirlen);
f48fd688
JH
660 rem = attr_nr;
661 for (stk = attr_stack; 0 < rem && stk; stk = stk->prev)
662 rem = fill(path, pathlen, stk, rem);
663
d0bfd026 664 for (stk = attr_stack; 0 < rem && stk; stk = stk->prev)
f48fd688
JH
665 rem = macroexpand(stk, rem);
666
515106fa 667 for (i = 0; i < num; i++) {
a5e92abd 668 const char *value = check_all_attr[check[i].attr->attr_nr].value;
515106fa
JH
669 if (value == ATTR__UNKNOWN)
670 value = ATTR__UNSET;
671 check[i].value = value;
672 }
f48fd688 673
d0bfd026
JH
674 return 0;
675}
06f33c17
JH
676
677void git_attr_set_direction(enum git_attr_direction new, struct index_state *istate)
678{
679 enum git_attr_direction old = direction;
4191e80a
NTND
680
681 if (is_bare_repository() && new != GIT_ATTR_INDEX)
682 die("BUG: non-INDEX attr direction in a bare repo");
683
06f33c17
JH
684 direction = new;
685 if (new != old)
686 drop_attr_stack();
687 use_index = istate;
688}