]> git.ipfire.org Git - thirdparty/git.git/blame - dir.c
dir: convert directory_exists_in_index to take index
[thirdparty/git.git] / dir.c
CommitLineData
453ec4bd
LT
1/*
2 * This handles recursive filename detection with exclude
3 * files, index knowledge etc..
4 *
95a68344
AS
5 * See Documentation/technical/api-directory-listing.txt
6 *
453ec4bd
LT
7 * Copyright (C) Linus Torvalds, 2005-2006
8 * Junio Hamano, 2005-2006
9 */
12cd0bf9 10#define NO_THE_INDEX_COMPATIBILITY_MACROS
453ec4bd
LT
11#include "cache.h"
12#include "dir.h"
b0db7046 13#include "attr.h"
09595258 14#include "refs.h"
237ec6e4 15#include "wildmatch.h"
64acde94 16#include "pathspec.h"
dde843e7 17#include "utf8.h"
83c094ad
NTND
18#include "varint.h"
19#include "ewah/ewok.h"
453ec4bd 20
defd7c7b
KB
21/*
22 * Tells read_directory_recursive how a file or directory should be treated.
23 * Values are ordered by significance, e.g. if a directory contains both
24 * excluded and untracked files, it is listed as untracked because
25 * path_untracked > path_excluded.
26 */
27enum path_treatment {
28 path_none = 0,
29 path_recurse,
30 path_excluded,
31 path_untracked
32};
33
cf7c6148
NTND
34/*
35 * Support data structure for our opendir/readdir/closedir wrappers
36 */
37struct cached_dir {
38 DIR *fdir;
39 struct untracked_cache_dir *untracked;
91a2288b
NTND
40 int nr_files;
41 int nr_dirs;
42
cf7c6148 43 struct dirent *de;
91a2288b
NTND
44 const char *file;
45 struct untracked_cache_dir *ucd;
cf7c6148
NTND
46};
47
defd7c7b 48static enum path_treatment read_directory_recursive(struct dir_struct *dir,
0dcb8d7f 49 const char *path, int len, struct untracked_cache_dir *untracked,
e1b8c7bd 50 int check_only, const struct pathspec *pathspec);
caa6b782 51static int get_dtype(struct dirent *de, const char *path, int len);
09595258 52
ba0897e6 53int fspathcmp(const char *a, const char *b)
8cf2a84e
JJ
54{
55 return ignore_case ? strcasecmp(a, b) : strcmp(a, b);
56}
57
ba0897e6 58int fspathncmp(const char *a, const char *b, size_t count)
8cf2a84e
JJ
59{
60 return ignore_case ? strncasecmp(a, b, count) : strncmp(a, b, count);
61}
62
1f26ce61
CB
63int git_fnmatch(const struct pathspec_item *item,
64 const char *pattern, const char *string,
65 int prefix)
5d74762d 66{
5d74762d 67 if (prefix > 0) {
93d93537 68 if (ps_strncmp(item, pattern, string, prefix))
eb07894f 69 return WM_NOMATCH;
5d74762d
NTND
70 pattern += prefix;
71 string += prefix;
72 }
bd30c2e4 73 if (item->flags & PATHSPEC_ONESTAR) {
8c6abbcd
NTND
74 int pattern_len = strlen(++pattern);
75 int string_len = strlen(string);
76 return string_len < pattern_len ||
93d93537
NTND
77 ps_strcmp(item, pattern,
78 string + string_len - pattern_len);
8c6abbcd 79 }
bd30c2e4 80 if (item->magic & PATHSPEC_GLOB)
93d93537
NTND
81 return wildmatch(pattern, string,
82 WM_PATHNAME |
83 (item->magic & PATHSPEC_ICASE ? WM_CASEFOLD : 0),
84 NULL);
bd30c2e4
NTND
85 else
86 /* wildmatch has not learned no FNM_PATHNAME mode yet */
eb07894f
NTND
87 return wildmatch(pattern, string,
88 item->magic & PATHSPEC_ICASE ? WM_CASEFOLD : 0,
89 NULL);
5d74762d
NTND
90}
91
0b6e56df
JH
92static int fnmatch_icase_mem(const char *pattern, int patternlen,
93 const char *string, int stringlen,
94 int flags)
95{
96 int match_status;
97 struct strbuf pat_buf = STRBUF_INIT;
98 struct strbuf str_buf = STRBUF_INIT;
99 const char *use_pat = pattern;
100 const char *use_str = string;
101
102 if (pattern[patternlen]) {
103 strbuf_add(&pat_buf, pattern, patternlen);
104 use_pat = pat_buf.buf;
105 }
106 if (string[stringlen]) {
107 strbuf_add(&str_buf, string, stringlen);
108 use_str = str_buf.buf;
109 }
110
f30366b2
JH
111 if (ignore_case)
112 flags |= WM_CASEFOLD;
113 match_status = wildmatch(use_pat, use_str, flags, NULL);
0b6e56df
JH
114
115 strbuf_release(&pat_buf);
116 strbuf_release(&str_buf);
117
118 return match_status;
119}
120
827f4d6c 121static size_t common_prefix_len(const struct pathspec *pathspec)
3c6a370b 122{
827f4d6c 123 int n;
4a085b16 124 size_t max = 0;
3c6a370b 125
93d93537
NTND
126 /*
127 * ":(icase)path" is treated as a pathspec full of
128 * wildcard. In other words, only prefix is considered common
129 * prefix. If the pathspec is abc/foo abc/bar, running in
130 * subdir xyz, the common prefix is still xyz, not xuz/abc as
131 * in non-:(icase).
132 */
5c6933d2
NTND
133 GUARD_PATHSPEC(pathspec,
134 PATHSPEC_FROMTOP |
135 PATHSPEC_MAXDEPTH |
bd30c2e4 136 PATHSPEC_LITERAL |
93d93537 137 PATHSPEC_GLOB |
ef79b1f8 138 PATHSPEC_ICASE |
b0db7046
BW
139 PATHSPEC_EXCLUDE |
140 PATHSPEC_ATTR);
4a085b16 141
827f4d6c 142 for (n = 0; n < pathspec->nr; n++) {
93d93537 143 size_t i = 0, len = 0, item_len;
ef79b1f8
NTND
144 if (pathspec->items[n].magic & PATHSPEC_EXCLUDE)
145 continue;
93d93537
NTND
146 if (pathspec->items[n].magic & PATHSPEC_ICASE)
147 item_len = pathspec->items[n].prefix;
148 else
149 item_len = pathspec->items[n].nowildcard_len;
150 while (i < item_len && (n == 0 || i < max)) {
827f4d6c
NTND
151 char c = pathspec->items[n].match[i];
152 if (c != pathspec->items[0].match[i])
4a085b16
JH
153 break;
154 if (c == '/')
155 len = i + 1;
827f4d6c 156 i++;
4a085b16 157 }
827f4d6c 158 if (n == 0 || len < max) {
4a085b16
JH
159 max = len;
160 if (!max)
161 break;
162 }
3c6a370b 163 }
4a085b16 164 return max;
3c6a370b
LT
165}
166
f950eb95
CB
167/*
168 * Returns a copy of the longest leading path common among all
169 * pathspecs.
170 */
827f4d6c 171char *common_prefix(const struct pathspec *pathspec)
f950eb95
CB
172{
173 unsigned long len = common_prefix_len(pathspec);
174
827f4d6c 175 return len ? xmemdupz(pathspec->items[0].match, len) : NULL;
f950eb95
CB
176}
177
7327d3d1 178int fill_directory(struct dir_struct *dir, const struct pathspec *pathspec)
1d8842d9 179{
bec5ab89 180 const char *prefix;
966de302 181 size_t prefix_len;
1d8842d9
LT
182
183 /*
184 * Calculate common prefix for the pathspec, and
185 * use that to optimize the directory walk
186 */
bec5ab89
RS
187 prefix_len = common_prefix_len(pathspec);
188 prefix = prefix_len ? pathspec->items[0].match : "";
1d8842d9
LT
189
190 /* Read the directory and prune it */
966de302
BW
191 read_directory(dir, prefix, prefix_len, pathspec);
192
966de302 193 return prefix_len;
1d8842d9
LT
194}
195
bc96cc87
NTND
196int within_depth(const char *name, int namelen,
197 int depth, int max_depth)
198{
199 const char *cp = name, *cpe = name + namelen;
200
201 while (cp < cpe) {
202 if (*cp++ != '/')
203 continue;
204 depth++;
205 if (depth > max_depth)
206 return 0;
207 }
208 return 1;
209}
210
75a6315f
BW
211#define DO_MATCH_EXCLUDE (1<<0)
212#define DO_MATCH_DIRECTORY (1<<1)
213#define DO_MATCH_SUBMODULE (1<<2)
42b0874a 214
b0db7046
BW
215static int match_attrs(const char *name, int namelen,
216 const struct pathspec_item *item)
217{
218 int i;
219
220 git_check_attr(name, item->attr_check);
221 for (i = 0; i < item->attr_match_nr; i++) {
222 const char *value;
223 int matched;
224 enum attr_match_mode match_mode;
225
226 value = item->attr_check->items[i].value;
227 match_mode = item->attr_match[i].match_mode;
228
229 if (ATTR_TRUE(value))
230 matched = (match_mode == MATCH_SET);
231 else if (ATTR_FALSE(value))
232 matched = (match_mode == MATCH_UNSET);
233 else if (ATTR_UNSET(value))
234 matched = (match_mode == MATCH_UNSPECIFIED);
235 else
236 matched = (match_mode == MATCH_VALUE &&
237 !strcmp(item->attr_match[i].value, value));
238 if (!matched)
239 return 0;
240 }
241
242 return 1;
243}
244
61cf2820
NTND
245/*
246 * Does 'match' match the given name?
247 * A match is found if
248 *
249 * (1) the 'match' string is leading directory of 'name', or
250 * (2) the 'match' string is a wildcard and matches 'name', or
251 * (3) the 'match' string is exactly the same as 'name'.
252 *
253 * and the return value tells which case it was.
254 *
255 * It returns 0 when there is no match.
256 */
257static int match_pathspec_item(const struct pathspec_item *item, int prefix,
42b0874a 258 const char *name, int namelen, unsigned flags)
61cf2820
NTND
259{
260 /* name/namelen has prefix cut off by caller */
261 const char *match = item->match + prefix;
262 int matchlen = item->len - prefix;
263
93d93537
NTND
264 /*
265 * The normal call pattern is:
266 * 1. prefix = common_prefix_len(ps);
267 * 2. prune something, or fill_directory
854b0959 268 * 3. match_pathspec()
93d93537
NTND
269 *
270 * 'prefix' at #1 may be shorter than the command's prefix and
271 * it's ok for #2 to match extra files. Those extras will be
272 * trimmed at #3.
273 *
274 * Suppose the pathspec is 'foo' and '../bar' running from
275 * subdir 'xyz'. The common prefix at #1 will be empty, thanks
276 * to "../". We may have xyz/foo _and_ XYZ/foo after #2. The
277 * user does not want XYZ/foo, only the "foo" part should be
278 * case-insensitive. We need to filter out XYZ/foo here. In
279 * other words, we do not trust the caller on comparing the
280 * prefix part when :(icase) is involved. We do exact
281 * comparison ourselves.
282 *
283 * Normally the caller (common_prefix_len() in fact) does
284 * _exact_ matching on name[-prefix+1..-1] and we do not need
285 * to check that part. Be defensive and check it anyway, in
286 * case common_prefix_len is changed, or a new caller is
287 * introduced that does not use common_prefix_len.
288 *
289 * If the penalty turns out too high when prefix is really
290 * long, maybe change it to
291 * strncmp(match, name, item->prefix - prefix)
292 */
293 if (item->prefix && (item->magic & PATHSPEC_ICASE) &&
294 strncmp(item->match, name - prefix, item->prefix))
295 return 0;
296
b0db7046
BW
297 if (item->attr_match_nr && !match_attrs(name, namelen, item))
298 return 0;
299
61cf2820
NTND
300 /* If the match was just the prefix, we matched */
301 if (!*match)
302 return MATCHED_RECURSIVELY;
303
93d93537 304 if (matchlen <= namelen && !ps_strncmp(item, match, name, matchlen)) {
61cf2820
NTND
305 if (matchlen == namelen)
306 return MATCHED_EXACTLY;
307
308 if (match[matchlen-1] == '/' || name[matchlen] == '/')
309 return MATCHED_RECURSIVELY;
68690fdd
NTND
310 } else if ((flags & DO_MATCH_DIRECTORY) &&
311 match[matchlen - 1] == '/' &&
312 namelen == matchlen - 1 &&
313 !ps_strncmp(item, match, name, namelen))
314 return MATCHED_EXACTLY;
61cf2820 315
5d74762d 316 if (item->nowildcard_len < item->len &&
bd30c2e4 317 !git_fnmatch(item, match, name,
8c6abbcd 318 item->nowildcard_len - prefix))
61cf2820
NTND
319 return MATCHED_FNMATCH;
320
75a6315f
BW
321 /* Perform checks to see if "name" is a super set of the pathspec */
322 if (flags & DO_MATCH_SUBMODULE) {
323 /* name is a literal prefix of the pathspec */
324 if ((namelen < matchlen) &&
325 (match[namelen] == '/') &&
326 !ps_strncmp(item, match, name, namelen))
327 return MATCHED_RECURSIVELY;
328
329 /* name" doesn't match up to the first wild character */
330 if (item->nowildcard_len < item->len &&
331 ps_strncmp(item, match, name,
332 item->nowildcard_len - prefix))
333 return 0;
334
335 /*
336 * Here is where we would perform a wildmatch to check if
337 * "name" can be matched as a directory (or a prefix) against
338 * the pathspec. Since wildmatch doesn't have this capability
339 * at the present we have to punt and say that it is a match,
340 * potentially returning a false positive
341 * The submodules themselves will be able to perform more
342 * accurate matching to determine if the pathspec matches.
343 */
344 return MATCHED_RECURSIVELY;
345 }
346
61cf2820
NTND
347 return 0;
348}
349
350/*
52ed1894
AS
351 * Given a name and a list of pathspecs, returns the nature of the
352 * closest (i.e. most specific) match of the name to any of the
353 * pathspecs.
354 *
355 * The caller typically calls this multiple times with the same
356 * pathspec and seen[] array but with different name/namelen
357 * (e.g. entries from the index) and is interested in seeing if and
358 * how each pathspec matches all the names it calls this function
359 * with. A mark is left in the seen[] array for each pathspec element
360 * indicating the closest type of match that element achieved, so if
361 * seen[n] remains zero after multiple invocations, that means the nth
362 * pathspec did not match any names, which could indicate that the
363 * user mistyped the nth pathspec.
61cf2820 364 */
854b0959
NTND
365static int do_match_pathspec(const struct pathspec *ps,
366 const char *name, int namelen,
367 int prefix, char *seen,
42b0874a 368 unsigned flags)
61cf2820 369{
42b0874a 370 int i, retval = 0, exclude = flags & DO_MATCH_EXCLUDE;
61cf2820 371
5c6933d2
NTND
372 GUARD_PATHSPEC(ps,
373 PATHSPEC_FROMTOP |
374 PATHSPEC_MAXDEPTH |
bd30c2e4 375 PATHSPEC_LITERAL |
93d93537 376 PATHSPEC_GLOB |
ef79b1f8 377 PATHSPEC_ICASE |
b0db7046
BW
378 PATHSPEC_EXCLUDE |
379 PATHSPEC_ATTR);
8f4f8f45 380
61cf2820 381 if (!ps->nr) {
6330a171
NTND
382 if (!ps->recursive ||
383 !(ps->magic & PATHSPEC_MAXDEPTH) ||
384 ps->max_depth == -1)
61cf2820
NTND
385 return MATCHED_RECURSIVELY;
386
387 if (within_depth(name, namelen, 0, ps->max_depth))
388 return MATCHED_EXACTLY;
389 else
390 return 0;
391 }
392
393 name += prefix;
394 namelen -= prefix;
395
396 for (i = ps->nr - 1; i >= 0; i--) {
397 int how;
ef79b1f8
NTND
398
399 if ((!exclude && ps->items[i].magic & PATHSPEC_EXCLUDE) ||
400 ( exclude && !(ps->items[i].magic & PATHSPEC_EXCLUDE)))
401 continue;
402
61cf2820
NTND
403 if (seen && seen[i] == MATCHED_EXACTLY)
404 continue;
ef79b1f8
NTND
405 /*
406 * Make exclude patterns optional and never report
407 * "pathspec ':(exclude)foo' matches no files"
408 */
409 if (seen && ps->items[i].magic & PATHSPEC_EXCLUDE)
410 seen[i] = MATCHED_FNMATCH;
42b0874a
NTND
411 how = match_pathspec_item(ps->items+i, prefix, name,
412 namelen, flags);
6330a171
NTND
413 if (ps->recursive &&
414 (ps->magic & PATHSPEC_MAXDEPTH) &&
415 ps->max_depth != -1 &&
61cf2820
NTND
416 how && how != MATCHED_FNMATCH) {
417 int len = ps->items[i].len;
418 if (name[len] == '/')
419 len++;
420 if (within_depth(name+len, namelen-len, 0, ps->max_depth))
421 how = MATCHED_EXACTLY;
422 else
423 how = 0;
424 }
425 if (how) {
426 if (retval < how)
427 retval = how;
428 if (seen && seen[i] < how)
429 seen[i] = how;
430 }
431 }
432 return retval;
433}
434
854b0959
NTND
435int match_pathspec(const struct pathspec *ps,
436 const char *name, int namelen,
ae8d0824 437 int prefix, char *seen, int is_dir)
ef79b1f8
NTND
438{
439 int positive, negative;
ae8d0824 440 unsigned flags = is_dir ? DO_MATCH_DIRECTORY : 0;
42b0874a
NTND
441 positive = do_match_pathspec(ps, name, namelen,
442 prefix, seen, flags);
ef79b1f8
NTND
443 if (!(ps->magic & PATHSPEC_EXCLUDE) || !positive)
444 return positive;
42b0874a
NTND
445 negative = do_match_pathspec(ps, name, namelen,
446 prefix, seen,
447 flags | DO_MATCH_EXCLUDE);
ef79b1f8
NTND
448 return negative ? 0 : positive;
449}
450
75a6315f
BW
451/**
452 * Check if a submodule is a superset of the pathspec
453 */
454int submodule_path_match(const struct pathspec *ps,
455 const char *submodule_name,
456 char *seen)
457{
458 int matched = do_match_pathspec(ps, submodule_name,
459 strlen(submodule_name),
460 0, seen,
461 DO_MATCH_DIRECTORY |
462 DO_MATCH_SUBMODULE);
463 return matched;
464}
465
777c55a6
JH
466int report_path_error(const char *ps_matched,
467 const struct pathspec *pathspec,
468 const char *prefix)
469{
470 /*
471 * Make sure all pathspec matched; otherwise it is an error.
472 */
777c55a6
JH
473 int num, errors = 0;
474 for (num = 0; num < pathspec->nr; num++) {
475 int other, found_dup;
476
477 if (ps_matched[num])
478 continue;
479 /*
480 * The caller might have fed identical pathspec
481 * twice. Do not barf on such a mistake.
482 * FIXME: parse_pathspec should have eliminated
483 * duplicate pathspec.
484 */
485 for (found_dup = other = 0;
486 !found_dup && other < pathspec->nr;
487 other++) {
488 if (other == num || !ps_matched[other])
489 continue;
490 if (!strcmp(pathspec->items[other].original,
491 pathspec->items[num].original))
492 /*
493 * Ok, we have a match already.
494 */
495 found_dup = 1;
496 }
497 if (found_dup)
498 continue;
499
500 error("pathspec '%s' did not match any file(s) known to git.",
501 pathspec->items[num].original);
502 errors++;
503 }
777c55a6
JH
504 return errors;
505}
506
fcd631ed
NTND
507/*
508 * Return the length of the "simple" part of a path match limiter.
509 */
87323bda 510int simple_length(const char *match)
fcd631ed
NTND
511{
512 int len = -1;
513
514 for (;;) {
515 unsigned char c = *match++;
516 len++;
517 if (c == '\0' || is_glob_special(c))
518 return len;
519 }
520}
521
87323bda 522int no_wildcard(const char *string)
68492fc7 523{
fcd631ed 524 return string[simple_length(string)] == '\0';
68492fc7
LK
525}
526
82dce998
NTND
527void parse_exclude_pattern(const char **pattern,
528 int *patternlen,
f8708998 529 unsigned *flags,
82dce998 530 int *nowildcardlen)
84460eec
NTND
531{
532 const char *p = *pattern;
533 size_t i, len;
534
535 *flags = 0;
536 if (*p == '!') {
537 *flags |= EXC_FLAG_NEGATIVE;
538 p++;
539 }
540 len = strlen(p);
541 if (len && p[len - 1] == '/') {
542 len--;
543 *flags |= EXC_FLAG_MUSTBEDIR;
544 }
545 for (i = 0; i < len; i++) {
546 if (p[i] == '/')
547 break;
548 }
549 if (i == len)
550 *flags |= EXC_FLAG_NODIR;
551 *nowildcardlen = simple_length(p);
552 /*
553 * we should have excluded the trailing slash from 'p' too,
554 * but that's one more allocation. Instead just make sure
555 * nowildcardlen does not exceed real patternlen
556 */
557 if (*nowildcardlen > len)
558 *nowildcardlen = len;
559 if (*p == '*' && no_wildcard(p + 1))
560 *flags |= EXC_FLAG_ENDSWITH;
561 *pattern = p;
562 *patternlen = len;
563}
564
453ec4bd 565void add_exclude(const char *string, const char *base,
c04318e4 566 int baselen, struct exclude_list *el, int srcpos)
453ec4bd 567{
d6b8fc30 568 struct exclude *x;
84460eec 569 int patternlen;
f8708998 570 unsigned flags;
84460eec 571 int nowildcardlen;
453ec4bd 572
84460eec
NTND
573 parse_exclude_pattern(&string, &patternlen, &flags, &nowildcardlen);
574 if (flags & EXC_FLAG_MUSTBEDIR) {
96ffc06f 575 FLEXPTR_ALLOC_MEM(x, pattern, string, patternlen);
d6b8fc30
JH
576 } else {
577 x = xmalloc(sizeof(*x));
578 x->pattern = string;
579 }
84460eec
NTND
580 x->patternlen = patternlen;
581 x->nowildcardlen = nowildcardlen;
453ec4bd
LT
582 x->base = base;
583 x->baselen = baselen;
d6b8fc30 584 x->flags = flags;
c04318e4 585 x->srcpos = srcpos;
840fc334
AS
586 ALLOC_GROW(el->excludes, el->nr + 1, el->alloc);
587 el->excludes[el->nr++] = x;
c04318e4 588 x->el = el;
453ec4bd
LT
589}
590
6f52b741
BW
591static void *read_skip_worktree_file_from_index(const struct index_state *istate,
592 const char *path, size_t *size,
55fe6f51 593 struct sha1_stat *sha1_stat)
c28b3d6e
NTND
594{
595 int pos, len;
596 unsigned long sz;
597 enum object_type type;
598 void *data;
c28b3d6e
NTND
599
600 len = strlen(path);
6f52b741 601 pos = index_name_pos(istate, path, len);
c28b3d6e
NTND
602 if (pos < 0)
603 return NULL;
6f52b741 604 if (!ce_skip_worktree(istate->cache[pos]))
c28b3d6e 605 return NULL;
6f52b741 606 data = read_sha1_file(istate->cache[pos]->oid.hash, &type, &sz);
c28b3d6e
NTND
607 if (!data || type != OBJ_BLOB) {
608 free(data);
609 return NULL;
610 }
611 *size = xsize_t(sz);
55fe6f51
NTND
612 if (sha1_stat) {
613 memset(&sha1_stat->stat, 0, sizeof(sha1_stat->stat));
6f52b741 614 hashcpy(sha1_stat->sha1, istate->cache[pos]->oid.hash);
55fe6f51 615 }
c28b3d6e
NTND
616 return data;
617}
618
f6198812
AS
619/*
620 * Frees memory within el which was allocated for exclude patterns and
621 * the file buffer. Does not free el itself.
622 */
623void clear_exclude_list(struct exclude_list *el)
0fd0e241
NTND
624{
625 int i;
626
5cee3493 627 for (i = 0; i < el->nr; i++)
0fd0e241
NTND
628 free(el->excludes[i]);
629 free(el->excludes);
c082df24 630 free(el->filebuf);
0fd0e241 631
2653a8c6 632 memset(el, 0, sizeof(*el));
0fd0e241
NTND
633}
634
7e2e4b37 635static void trim_trailing_spaces(char *buf)
16402b99 636{
e61a6c1d
PB
637 char *p, *last_space = NULL;
638
639 for (p = buf; *p; p++)
640 switch (*p) {
641 case ' ':
642 if (!last_space)
643 last_space = p;
644 break;
645 case '\\':
646 p++;
647 if (!*p)
648 return;
649 /* fallthrough */
650 default:
651 last_space = NULL;
652 }
653
654 if (last_space)
655 *last_space = '\0';
16402b99
NTND
656}
657
0dcb8d7f
NTND
658/*
659 * Given a subdirectory name and "dir" of the current directory,
660 * search the subdir in "dir" and return it, or create a new one if it
661 * does not exist in "dir".
662 *
663 * If "name" has the trailing slash, it'll be excluded in the search.
664 */
665static struct untracked_cache_dir *lookup_untracked(struct untracked_cache *uc,
666 struct untracked_cache_dir *dir,
667 const char *name, int len)
668{
669 int first, last;
670 struct untracked_cache_dir *d;
671 if (!dir)
672 return NULL;
673 if (len && name[len - 1] == '/')
674 len--;
675 first = 0;
676 last = dir->dirs_nr;
677 while (last > first) {
678 int cmp, next = (last + first) >> 1;
679 d = dir->dirs[next];
680 cmp = strncmp(name, d->name, len);
681 if (!cmp && strlen(d->name) > len)
682 cmp = -1;
683 if (!cmp)
684 return d;
685 if (cmp < 0) {
686 last = next;
687 continue;
688 }
689 first = next+1;
690 }
691
692 uc->dir_created++;
96ffc06f 693 FLEX_ALLOC_MEM(d, name, name, len);
0dcb8d7f
NTND
694
695 ALLOC_GROW(dir->dirs, dir->dirs_nr + 1, dir->dirs_alloc);
696 memmove(dir->dirs + first + 1, dir->dirs + first,
697 (dir->dirs_nr - first) * sizeof(*dir->dirs));
698 dir->dirs_nr++;
699 dir->dirs[first] = d;
700 return d;
701}
702
ccad261f
NTND
703static void do_invalidate_gitignore(struct untracked_cache_dir *dir)
704{
705 int i;
706 dir->valid = 0;
707 dir->untracked_nr = 0;
708 for (i = 0; i < dir->dirs_nr; i++)
709 do_invalidate_gitignore(dir->dirs[i]);
710}
711
712static void invalidate_gitignore(struct untracked_cache *uc,
713 struct untracked_cache_dir *dir)
714{
715 uc->gitignore_invalidated++;
716 do_invalidate_gitignore(dir);
717}
718
91a2288b
NTND
719static void invalidate_directory(struct untracked_cache *uc,
720 struct untracked_cache_dir *dir)
721{
26cb0182 722 int i;
91a2288b
NTND
723 uc->dir_invalidated++;
724 dir->valid = 0;
725 dir->untracked_nr = 0;
26cb0182
NTND
726 for (i = 0; i < dir->dirs_nr; i++)
727 dir->dirs[i]->recurse = 0;
91a2288b
NTND
728}
729
55fe6f51
NTND
730/*
731 * Given a file with name "fname", read it (either from disk, or from
732 * the index if "check_index" is non-zero), parse it and store the
733 * exclude rules in "el".
734 *
735 * If "ss" is not NULL, compute SHA-1 of the exclude file and fill
736 * stat data from disk (only valid if add_excludes returns zero). If
737 * ss_valid is non-zero, "ss" must contain good value as input.
738 */
739static int add_excludes(const char *fname, const char *base, int baselen,
740 struct exclude_list *el, int check_index,
741 struct sha1_stat *sha1_stat)
453ec4bd 742{
c470701a 743 struct stat st;
c04318e4 744 int fd, i, lineno = 1;
9d14017a 745 size_t size = 0;
453ec4bd
LT
746 char *buf, *entry;
747
748 fd = open(fname, O_RDONLY);
c28b3d6e 749 if (fd < 0 || fstat(fd, &st) < 0) {
69660731 750 if (errno != ENOENT)
55b38a48 751 warn_on_inaccessible(fname);
c28b3d6e
NTND
752 if (0 <= fd)
753 close(fd);
754 if (!check_index ||
6f52b741 755 (buf = read_skip_worktree_file_from_index(&the_index, fname, &size, sha1_stat)) == NULL)
c28b3d6e 756 return -1;
45d76f17
NTND
757 if (size == 0) {
758 free(buf);
759 return 0;
760 }
761 if (buf[size-1] != '\n') {
50a6c8ef 762 buf = xrealloc(buf, st_add(size, 1));
45d76f17
NTND
763 buf[size++] = '\n';
764 }
d961baa8 765 } else {
c28b3d6e
NTND
766 size = xsize_t(st.st_size);
767 if (size == 0) {
55fe6f51
NTND
768 if (sha1_stat) {
769 fill_stat_data(&sha1_stat->stat, &st);
770 hashcpy(sha1_stat->sha1, EMPTY_BLOB_SHA1_BIN);
771 sha1_stat->valid = 1;
772 }
c28b3d6e
NTND
773 close(fd);
774 return 0;
775 }
3733e694 776 buf = xmallocz(size);
c28b3d6e 777 if (read_in_full(fd, buf, size) != size) {
45d76f17 778 free(buf);
c28b3d6e
NTND
779 close(fd);
780 return -1;
781 }
45d76f17 782 buf[size++] = '\n';
c28b3d6e 783 close(fd);
55fe6f51
NTND
784 if (sha1_stat) {
785 int pos;
786 if (sha1_stat->valid &&
ed4efab1 787 !match_stat_data_racy(&the_index, &sha1_stat->stat, &st))
55fe6f51
NTND
788 ; /* no content change, ss->sha1 still good */
789 else if (check_index &&
12cd0bf9
BW
790 (pos = index_name_pos(&the_index, fname, strlen(fname))) >= 0 &&
791 !ce_stage(the_index.cache[pos]) &&
792 ce_uptodate(the_index.cache[pos]) &&
55fe6f51 793 !would_convert_to_git(fname))
99d1a986 794 hashcpy(sha1_stat->sha1,
12cd0bf9 795 the_index.cache[pos]->oid.hash);
55fe6f51
NTND
796 else
797 hash_sha1_file(buf, size, "blob", sha1_stat->sha1);
798 fill_stat_data(&sha1_stat->stat, &st);
799 sha1_stat->valid = 1;
800 }
6ba78238 801 }
453ec4bd 802
c082df24 803 el->filebuf = buf;
245e1c19 804
dde843e7
JH
805 if (skip_utf8_bom(&buf, size))
806 size -= buf - el->filebuf;
807
453ec4bd 808 entry = buf;
245e1c19 809
45d76f17
NTND
810 for (i = 0; i < size; i++) {
811 if (buf[i] == '\n') {
453ec4bd
LT
812 if (entry != buf + i && entry[0] != '#') {
813 buf[i - (i && buf[i-1] == '\r')] = 0;
7e2e4b37 814 trim_trailing_spaces(entry);
c04318e4 815 add_exclude(entry, base, baselen, el, lineno);
453ec4bd 816 }
c04318e4 817 lineno++;
453ec4bd
LT
818 entry = buf + i + 1;
819 }
820 }
821 return 0;
453ec4bd
LT
822}
823
55fe6f51
NTND
824int add_excludes_from_file_to_list(const char *fname, const char *base,
825 int baselen, struct exclude_list *el,
826 int check_index)
827{
828 return add_excludes(fname, base, baselen, el, check_index, NULL);
829}
830
c04318e4
AS
831struct exclude_list *add_exclude_list(struct dir_struct *dir,
832 int group_type, const char *src)
c082df24
AS
833{
834 struct exclude_list *el;
835 struct exclude_list_group *group;
836
837 group = &dir->exclude_list_group[group_type];
838 ALLOC_GROW(group->el, group->nr + 1, group->alloc);
839 el = &group->el[group->nr++];
840 memset(el, 0, sizeof(*el));
c04318e4 841 el->src = src;
c082df24
AS
842 return el;
843}
844
845/*
846 * Used to set up core.excludesfile and .git/info/exclude lists.
847 */
0dcb8d7f
NTND
848static void add_excludes_from_file_1(struct dir_struct *dir, const char *fname,
849 struct sha1_stat *sha1_stat)
453ec4bd 850{
c082df24 851 struct exclude_list *el;
ccad261f
NTND
852 /*
853 * catch setup_standard_excludes() that's called before
854 * dir->untracked is assigned. That function behaves
855 * differently when dir->untracked is non-NULL.
856 */
857 if (!dir->untracked)
858 dir->unmanaged_exclude_files++;
c04318e4 859 el = add_exclude_list(dir, EXC_FILE, fname);
0dcb8d7f 860 if (add_excludes(fname, "", 0, el, 0, sha1_stat) < 0)
453ec4bd
LT
861 die("cannot use %s as an exclude file", fname);
862}
863
0dcb8d7f
NTND
864void add_excludes_from_file(struct dir_struct *dir, const char *fname)
865{
ccad261f 866 dir->unmanaged_exclude_files++; /* see validate_untracked_cache() */
0dcb8d7f
NTND
867 add_excludes_from_file_1(dir, fname, NULL);
868}
869
82dce998
NTND
870int match_basename(const char *basename, int basenamelen,
871 const char *pattern, int prefix, int patternlen,
f8708998 872 unsigned flags)
593cb880
NTND
873{
874 if (prefix == patternlen) {
0b6e56df 875 if (patternlen == basenamelen &&
ba0897e6 876 !fspathncmp(pattern, basename, basenamelen))
593cb880
NTND
877 return 1;
878 } else if (flags & EXC_FLAG_ENDSWITH) {
0b6e56df 879 /* "*literal" matching against "fooliteral" */
593cb880 880 if (patternlen - 1 <= basenamelen &&
ba0897e6 881 !fspathncmp(pattern + 1,
0b6e56df
JH
882 basename + basenamelen - (patternlen - 1),
883 patternlen - 1))
593cb880
NTND
884 return 1;
885 } else {
0b6e56df
JH
886 if (fnmatch_icase_mem(pattern, patternlen,
887 basename, basenamelen,
888 0) == 0)
593cb880
NTND
889 return 1;
890 }
891 return 0;
892}
893
82dce998
NTND
894int match_pathname(const char *pathname, int pathlen,
895 const char *base, int baselen,
896 const char *pattern, int prefix, int patternlen,
f8708998 897 unsigned flags)
b5592632
NTND
898{
899 const char *name;
900 int namelen;
901
902 /*
903 * match with FNM_PATHNAME; the pattern has base implicitly
904 * in front of it.
905 */
906 if (*pattern == '/') {
907 pattern++;
982ac873 908 patternlen--;
b5592632
NTND
909 prefix--;
910 }
911
912 /*
913 * baselen does not count the trailing slash. base[] may or
914 * may not end with a trailing slash though.
915 */
916 if (pathlen < baselen + 1 ||
917 (baselen && pathname[baselen] != '/') ||
ba0897e6 918 fspathncmp(pathname, base, baselen))
b5592632
NTND
919 return 0;
920
921 namelen = baselen ? pathlen - baselen - 1 : pathlen;
922 name = pathname + pathlen - namelen;
923
924 if (prefix) {
925 /*
926 * if the non-wildcard part is longer than the
927 * remaining pathname, surely it cannot match.
928 */
929 if (prefix > namelen)
930 return 0;
931
ba0897e6 932 if (fspathncmp(pattern, name, prefix))
b5592632
NTND
933 return 0;
934 pattern += prefix;
ab3aebc1 935 patternlen -= prefix;
b5592632
NTND
936 name += prefix;
937 namelen -= prefix;
ab3aebc1
JK
938
939 /*
940 * If the whole pattern did not have a wildcard,
941 * then our prefix match is all we need; we
942 * do not need to call fnmatch at all.
943 */
5cee3493 944 if (!patternlen && !namelen)
ab3aebc1 945 return 1;
b5592632
NTND
946 }
947
ab3aebc1
JK
948 return fnmatch_icase_mem(pattern, patternlen,
949 name, namelen,
f30366b2 950 WM_PATHNAME) == 0;
b5592632
NTND
951}
952
578cd7c3
AS
953/*
954 * Scan the given exclude list in reverse to see whether pathname
955 * should be ignored. The first match (i.e. the last on the list), if
956 * any, determines the fate. Returns the exclude_list element which
957 * matched, or NULL for undecided.
453ec4bd 958 */
578cd7c3
AS
959static struct exclude *last_exclude_matching_from_list(const char *pathname,
960 int pathlen,
961 const char *basename,
962 int *dtype,
963 struct exclude_list *el)
453ec4bd 964{
e6efecc4 965 struct exclude *exc = NULL; /* undecided */
5cee3493 966 int i;
453ec4bd 967
35a94d44 968 if (!el->nr)
578cd7c3 969 return NULL; /* undefined */
d6b8fc30 970
35a94d44
NTND
971 for (i = el->nr - 1; 0 <= i; i--) {
972 struct exclude *x = el->excludes[i];
b5592632 973 const char *exclude = x->pattern;
b5592632 974 int prefix = x->nowildcardlen;
35a94d44
NTND
975
976 if (x->flags & EXC_FLAG_MUSTBEDIR) {
977 if (*dtype == DT_UNKNOWN)
978 *dtype = get_dtype(NULL, pathname, pathlen);
979 if (*dtype != DT_DIR)
980 continue;
981 }
d6b8fc30 982
35a94d44 983 if (x->flags & EXC_FLAG_NODIR) {
593cb880
NTND
984 if (match_basename(basename,
985 pathlen - (basename - pathname),
986 exclude, prefix, x->patternlen,
e6efecc4
NTND
987 x->flags)) {
988 exc = x;
989 break;
990 }
35a94d44
NTND
991 continue;
992 }
993
b5592632
NTND
994 assert(x->baselen == 0 || x->base[x->baselen - 1] == '/');
995 if (match_pathname(pathname, pathlen,
996 x->base, x->baselen ? x->baselen - 1 : 0,
e6efecc4
NTND
997 exclude, prefix, x->patternlen, x->flags)) {
998 exc = x;
999 break;
1000 }
453ec4bd 1001 }
e6efecc4 1002 return exc;
578cd7c3
AS
1003}
1004
1005/*
1006 * Scan the list and let the last match determine the fate.
1007 * Return 1 for exclude, 0 for include and -1 for undecided.
1008 */
1009int is_excluded_from_list(const char *pathname,
1010 int pathlen, const char *basename, int *dtype,
1011 struct exclude_list *el)
1012{
1013 struct exclude *exclude;
1014 exclude = last_exclude_matching_from_list(pathname, pathlen, basename, dtype, el);
1015 if (exclude)
1016 return exclude->flags & EXC_FLAG_NEGATIVE ? 0 : 1;
453ec4bd
LT
1017 return -1; /* undecided */
1018}
1019
46aa2f95
KB
1020static struct exclude *last_exclude_matching_from_lists(struct dir_struct *dir,
1021 const char *pathname, int pathlen, const char *basename,
1022 int *dtype_p)
1023{
1024 int i, j;
1025 struct exclude_list_group *group;
1026 struct exclude *exclude;
1027 for (i = EXC_CMDL; i <= EXC_FILE; i++) {
1028 group = &dir->exclude_list_group[i];
1029 for (j = group->nr - 1; j >= 0; j--) {
1030 exclude = last_exclude_matching_from_list(
1031 pathname, pathlen, basename, dtype_p,
1032 &group->el[j]);
1033 if (exclude)
1034 return exclude;
1035 }
1036 }
1037 return NULL;
1038}
1039
6cd5c582
KB
1040/*
1041 * Loads the per-directory exclude list for the substring of base
1042 * which has a char length of baselen.
1043 */
1044static void prep_exclude(struct dir_struct *dir, const char *base, int baselen)
1045{
1046 struct exclude_list_group *group;
1047 struct exclude_list *el;
1048 struct exclude_stack *stk = NULL;
0dcb8d7f 1049 struct untracked_cache_dir *untracked;
6cd5c582
KB
1050 int current;
1051
6cd5c582
KB
1052 group = &dir->exclude_list_group[EXC_DIRS];
1053
d961baa8
NTND
1054 /*
1055 * Pop the exclude lists from the EXCL_DIRS exclude_list_group
6cd5c582 1056 * which originate from directories not in the prefix of the
d961baa8
NTND
1057 * path being checked.
1058 */
6cd5c582
KB
1059 while ((stk = dir->exclude_stack) != NULL) {
1060 if (stk->baselen <= baselen &&
aceb9429 1061 !strncmp(dir->basebuf.buf, base, stk->baselen))
6cd5c582
KB
1062 break;
1063 el = &group->el[dir->exclude_stack->exclude_ix];
1064 dir->exclude_stack = stk->prev;
95c6f271 1065 dir->exclude = NULL;
aceb9429 1066 free((char *)el->src); /* see strbuf_detach() below */
6cd5c582
KB
1067 clear_exclude_list(el);
1068 free(stk);
1069 group->nr--;
1070 }
1071
95c6f271
KB
1072 /* Skip traversing into sub directories if the parent is excluded */
1073 if (dir->exclude)
1074 return;
1075
aceb9429
NTND
1076 /*
1077 * Lazy initialization. All call sites currently just
1078 * memset(dir, 0, sizeof(*dir)) before use. Changing all of
1079 * them seems lots of work for little benefit.
1080 */
1081 if (!dir->basebuf.buf)
1082 strbuf_init(&dir->basebuf, PATH_MAX);
1083
6cd5c582
KB
1084 /* Read from the parent directories and push them down. */
1085 current = stk ? stk->baselen : -1;
aceb9429 1086 strbuf_setlen(&dir->basebuf, current < 0 ? 0 : current);
0dcb8d7f
NTND
1087 if (dir->untracked)
1088 untracked = stk ? stk->ucd : dir->untracked->root;
1089 else
1090 untracked = NULL;
1091
6cd5c582 1092 while (current < baselen) {
6cd5c582 1093 const char *cp;
0dcb8d7f 1094 struct sha1_stat sha1_stat;
6cd5c582 1095
03e11a71 1096 stk = xcalloc(1, sizeof(*stk));
6cd5c582
KB
1097 if (current < 0) {
1098 cp = base;
1099 current = 0;
d961baa8 1100 } else {
6cd5c582
KB
1101 cp = strchr(base + current + 1, '/');
1102 if (!cp)
1103 die("oops in prep_exclude");
1104 cp++;
0dcb8d7f
NTND
1105 untracked =
1106 lookup_untracked(dir->untracked, untracked,
1107 base + current,
1108 cp - base - current);
6cd5c582
KB
1109 }
1110 stk->prev = dir->exclude_stack;
1111 stk->baselen = cp - base;
95c6f271 1112 stk->exclude_ix = group->nr;
0dcb8d7f 1113 stk->ucd = untracked;
95c6f271 1114 el = add_exclude_list(dir, EXC_DIRS, NULL);
aceb9429
NTND
1115 strbuf_add(&dir->basebuf, base + current, stk->baselen - current);
1116 assert(stk->baselen == dir->basebuf.len);
95c6f271
KB
1117
1118 /* Abort if the directory is excluded */
1119 if (stk->baselen) {
1120 int dt = DT_DIR;
aceb9429 1121 dir->basebuf.buf[stk->baselen - 1] = 0;
95c6f271 1122 dir->exclude = last_exclude_matching_from_lists(dir,
aceb9429
NTND
1123 dir->basebuf.buf, stk->baselen - 1,
1124 dir->basebuf.buf + current, &dt);
1125 dir->basebuf.buf[stk->baselen - 1] = '/';
c3c327de
KB
1126 if (dir->exclude &&
1127 dir->exclude->flags & EXC_FLAG_NEGATIVE)
1128 dir->exclude = NULL;
95c6f271 1129 if (dir->exclude) {
95c6f271
KB
1130 dir->exclude_stack = stk;
1131 return;
1132 }
1133 }
1134
aceb9429 1135 /* Try to read per-directory file */
0dcb8d7f
NTND
1136 hashclr(sha1_stat.sha1);
1137 sha1_stat.valid = 0;
27b099ae
NTND
1138 if (dir->exclude_per_dir &&
1139 /*
1140 * If we know that no files have been added in
1141 * this directory (i.e. valid_cached_dir() has
1142 * been executed and set untracked->valid) ..
1143 */
1144 (!untracked || !untracked->valid ||
1145 /*
1146 * .. and .gitignore does not exist before
7687252f
DT
1147 * (i.e. null exclude_sha1). Then we can skip
1148 * loading .gitignore, which would result in
1149 * ENOENT anyway.
27b099ae
NTND
1150 */
1151 !is_null_sha1(untracked->exclude_sha1))) {
95c6f271
KB
1152 /*
1153 * dir->basebuf gets reused by the traversal, but we
1154 * need fname to remain unchanged to ensure the src
1155 * member of each struct exclude correctly
1156 * back-references its source file. Other invocations
1157 * of add_exclude_list provide stable strings, so we
aceb9429 1158 * strbuf_detach() and free() here in the caller.
95c6f271 1159 */
aceb9429
NTND
1160 struct strbuf sb = STRBUF_INIT;
1161 strbuf_addbuf(&sb, &dir->basebuf);
1162 strbuf_addstr(&sb, dir->exclude_per_dir);
1163 el->src = strbuf_detach(&sb, NULL);
0dcb8d7f
NTND
1164 add_excludes(el->src, el->src, stk->baselen, el, 1,
1165 untracked ? &sha1_stat : NULL);
1166 }
5ebf79ad
NTND
1167 /*
1168 * NEEDSWORK: when untracked cache is enabled, prep_exclude()
1169 * will first be called in valid_cached_dir() then maybe many
1170 * times more in last_exclude_matching(). When the cache is
1171 * used, last_exclude_matching() will not be called and
1172 * reading .gitignore content will be a waste.
1173 *
1174 * So when it's called by valid_cached_dir() and we can get
1175 * .gitignore SHA-1 from the index (i.e. .gitignore is not
1176 * modified on work tree), we could delay reading the
1177 * .gitignore content until we absolutely need it in
1178 * last_exclude_matching(). Be careful about ignore rule
1179 * order, though, if you do that.
1180 */
1181 if (untracked &&
1182 hashcmp(sha1_stat.sha1, untracked->exclude_sha1)) {
1183 invalidate_gitignore(dir->untracked, untracked);
0dcb8d7f 1184 hashcpy(untracked->exclude_sha1, sha1_stat.sha1);
95c6f271 1185 }
6cd5c582
KB
1186 dir->exclude_stack = stk;
1187 current = stk->baselen;
1188 }
aceb9429 1189 strbuf_setlen(&dir->basebuf, baselen);
6cd5c582
KB
1190}
1191
f4cd69a6
AS
1192/*
1193 * Loads the exclude lists for the directory containing pathname, then
1194 * scans all exclude lists to determine whether pathname is excluded.
1195 * Returns the exclude_list element which matched, or NULL for
1196 * undecided.
1197 */
b07bc8c8 1198struct exclude *last_exclude_matching(struct dir_struct *dir,
f4cd69a6
AS
1199 const char *pathname,
1200 int *dtype_p)
453ec4bd
LT
1201{
1202 int pathlen = strlen(pathname);
68492fc7
LK
1203 const char *basename = strrchr(pathname, '/');
1204 basename = (basename) ? basename+1 : pathname;
453ec4bd 1205
63d285c8 1206 prep_exclude(dir, pathname, basename-pathname);
c082df24 1207
95c6f271
KB
1208 if (dir->exclude)
1209 return dir->exclude;
1210
46aa2f95
KB
1211 return last_exclude_matching_from_lists(dir, pathname, pathlen,
1212 basename, dtype_p);
f4cd69a6
AS
1213}
1214
1215/*
1216 * Loads the exclude lists for the directory containing pathname, then
1217 * scans all exclude lists to determine whether pathname is excluded.
1218 * Returns 1 if true, otherwise 0.
1219 */
b07bc8c8 1220int is_excluded(struct dir_struct *dir, const char *pathname, int *dtype_p)
f4cd69a6
AS
1221{
1222 struct exclude *exclude =
1223 last_exclude_matching(dir, pathname, dtype_p);
1224 if (exclude)
1225 return exclude->flags & EXC_FLAG_NEGATIVE ? 0 : 1;
453ec4bd
LT
1226 return 0;
1227}
1228
f3fa1838
JH
1229static struct dir_entry *dir_entry_new(const char *pathname, int len)
1230{
453ec4bd
LT
1231 struct dir_entry *ent;
1232
96ffc06f 1233 FLEX_ALLOC_MEM(ent, name, pathname, len);
453ec4bd 1234 ent->len = len;
4d06f8ac 1235 return ent;
453ec4bd
LT
1236}
1237
159b3212 1238static struct dir_entry *dir_add_name(struct dir_struct *dir, const char *pathname, int len)
6815e569 1239{
12cd0bf9 1240 if (index_file_exists(&the_index, pathname, len, ignore_case))
6815e569
JK
1241 return NULL;
1242
25fd2f7a 1243 ALLOC_GROW(dir->entries, dir->nr+1, dir->alloc);
6815e569
JK
1244 return dir->entries[dir->nr++] = dir_entry_new(pathname, len);
1245}
1246
108da0db 1247struct dir_entry *dir_add_ignored(struct dir_struct *dir, const char *pathname, int len)
2abd31b0 1248{
12cd0bf9 1249 if (!index_name_is_other(&the_index, pathname, len))
2abd31b0
JK
1250 return NULL;
1251
25fd2f7a 1252 ALLOC_GROW(dir->ignored, dir->ignored_nr+1, dir->ignored_alloc);
2abd31b0
JK
1253 return dir->ignored[dir->ignored_nr++] = dir_entry_new(pathname, len);
1254}
1255
09595258
LT
1256enum exist_status {
1257 index_nonexistent = 0,
1258 index_directory,
4b05548f 1259 index_gitdir
09595258
LT
1260};
1261
5102c617 1262/*
71261027 1263 * Do not use the alphabetically sorted index to look up
5102c617 1264 * the directory name; instead, use the case insensitive
ebbd7439 1265 * directory hash.
5102c617 1266 */
ae520e36
BW
1267static enum exist_status directory_exists_in_index_icase(struct index_state *istate,
1268 const char *dirname, int len)
5102c617 1269{
41284eb0 1270 struct cache_entry *ce;
5102c617 1271
ae520e36 1272 if (index_dir_exists(istate, dirname, len))
5102c617
JJ
1273 return index_directory;
1274
ae520e36 1275 ce = index_file_exists(istate, dirname, len, ignore_case);
41284eb0 1276 if (ce && S_ISGITLINK(ce->ce_mode))
5102c617
JJ
1277 return index_gitdir;
1278
5102c617
JJ
1279 return index_nonexistent;
1280}
1281
09595258
LT
1282/*
1283 * The index sorts alphabetically by entry name, which
1284 * means that a gitlink sorts as '\0' at the end, while
1285 * a directory (which is defined not as an entry, but as
1286 * the files it contains) will sort with the '/' at the
1287 * end.
1288 */
ae520e36
BW
1289static enum exist_status directory_exists_in_index(struct index_state *istate,
1290 const char *dirname, int len)
453ec4bd 1291{
5102c617
JJ
1292 int pos;
1293
1294 if (ignore_case)
ae520e36 1295 return directory_exists_in_index_icase(istate, dirname, len);
5102c617 1296
ae520e36 1297 pos = index_name_pos(istate, dirname, len);
09595258
LT
1298 if (pos < 0)
1299 pos = -pos-1;
ae520e36
BW
1300 while (pos < istate->cache_nr) {
1301 const struct cache_entry *ce = istate->cache[pos++];
09595258
LT
1302 unsigned char endchar;
1303
1304 if (strncmp(ce->name, dirname, len))
1305 break;
1306 endchar = ce->name[len];
1307 if (endchar > '/')
1308 break;
1309 if (endchar == '/')
1310 return index_directory;
7a51ed66 1311 if (!endchar && S_ISGITLINK(ce->ce_mode))
09595258
LT
1312 return index_gitdir;
1313 }
1314 return index_nonexistent;
1315}
1316
1317/*
1318 * When we find a directory when traversing the filesystem, we
1319 * have three distinct cases:
1320 *
1321 * - ignore it
1322 * - see it as a directory
1323 * - recurse into it
1324 *
1325 * and which one we choose depends on a combination of existing
1326 * git index contents and the flags passed into the directory
1327 * traversal routine.
1328 *
1329 * Case 1: If we *already* have entries in the index under that
5bd8e2d8
KB
1330 * directory name, we always recurse into the directory to see
1331 * all the files.
09595258
LT
1332 *
1333 * Case 2: If we *already* have that directory name as a gitlink,
1334 * we always continue to see it as a gitlink, regardless of whether
1335 * there is an actual git directory there or not (it might not
1336 * be checked out as a subproject!)
1337 *
1338 * Case 3: if we didn't have it in the index previously, we
1339 * have a few sub-cases:
1340 *
1341 * (a) if "show_other_directories" is true, we show it as
1342 * just a directory, unless "hide_empty_directories" is
defd7c7b
KB
1343 * also true, in which case we need to check if it contains any
1344 * untracked and / or ignored files.
09595258 1345 * (b) if it looks like a git directory, and we don't have
302b9282 1346 * 'no_gitlinks' set we treat it as a gitlink, and show it
09595258
LT
1347 * as a directory.
1348 * (c) otherwise, we recurse into it.
1349 */
defd7c7b 1350static enum path_treatment treat_directory(struct dir_struct *dir,
0dcb8d7f 1351 struct untracked_cache_dir *untracked,
2e5910f2 1352 const char *dirname, int len, int baselen, int exclude,
e1b8c7bd 1353 const struct pathspec *pathspec)
09595258
LT
1354{
1355 /* The "len-1" is to strip the final '/' */
ae520e36 1356 switch (directory_exists_in_index(&the_index, dirname, len-1)) {
09595258 1357 case index_directory:
defd7c7b 1358 return path_recurse;
09595258
LT
1359
1360 case index_gitdir:
26c986e1 1361 return path_none;
09595258
LT
1362
1363 case index_nonexistent:
7c4c97c0 1364 if (dir->flags & DIR_SHOW_OTHER_DIRECTORIES)
09595258 1365 break;
7c4c97c0 1366 if (!(dir->flags & DIR_NO_GITLINKS)) {
09595258
LT
1367 unsigned char sha1[20];
1368 if (resolve_gitlink_ref(dirname, "HEAD", sha1) == 0)
defd7c7b 1369 return path_untracked;
09595258 1370 }
defd7c7b 1371 return path_recurse;
09595258
LT
1372 }
1373
1374 /* This is the "show_other_directories" case */
721ac4ed 1375
184d2a8e 1376 if (!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))
defd7c7b
KB
1377 return exclude ? path_excluded : path_untracked;
1378
2e5910f2
DT
1379 untracked = lookup_untracked(dir->untracked, untracked,
1380 dirname + baselen, len - baselen);
0dcb8d7f 1381 return read_directory_recursive(dir, dirname, len,
e1b8c7bd 1382 untracked, 1, pathspec);
453ec4bd
LT
1383}
1384
9fc42d60
LT
1385/*
1386 * This is an inexact early pruning of any recursive directory
1387 * reading - if the path cannot possibly be in the pathspec,
1388 * return true, and we'll skip it early.
1389 */
e1b8c7bd
BW
1390static int simplify_away(const char *path, int pathlen,
1391 const struct pathspec *pathspec)
9fc42d60 1392{
e1b8c7bd 1393 int i;
9fc42d60 1394
e1b8c7bd
BW
1395 if (!pathspec || !pathspec->nr)
1396 return 0;
1397
1398 GUARD_PATHSPEC(pathspec,
1399 PATHSPEC_FROMTOP |
1400 PATHSPEC_MAXDEPTH |
1401 PATHSPEC_LITERAL |
1402 PATHSPEC_GLOB |
1403 PATHSPEC_ICASE |
b0db7046
BW
1404 PATHSPEC_EXCLUDE |
1405 PATHSPEC_ATTR);
e1b8c7bd
BW
1406
1407 for (i = 0; i < pathspec->nr; i++) {
1408 const struct pathspec_item *item = &pathspec->items[i];
1409 int len = item->nowildcard_len;
1410
1411 if (len > pathlen)
1412 len = pathlen;
1413 if (!ps_strncmp(item, item->match, path, len))
1414 return 0;
9fc42d60 1415 }
e1b8c7bd
BW
1416
1417 return 1;
9fc42d60
LT
1418}
1419
29209cbe
JK
1420/*
1421 * This function tells us whether an excluded path matches a
1422 * list of "interesting" pathspecs. That is, whether a path matched
1423 * by any of the pathspecs could possibly be ignored by excluding
1424 * the specified path. This can happen if:
1425 *
1426 * 1. the path is mentioned explicitly in the pathspec
1427 *
1428 * 2. the path is a directory prefix of some element in the
1429 * pathspec
1430 */
e1b8c7bd
BW
1431static int exclude_matches_pathspec(const char *path, int pathlen,
1432 const struct pathspec *pathspec)
1433{
1434 int i;
1435
1436 if (!pathspec || !pathspec->nr)
1437 return 0;
1438
1439 GUARD_PATHSPEC(pathspec,
1440 PATHSPEC_FROMTOP |
1441 PATHSPEC_MAXDEPTH |
1442 PATHSPEC_LITERAL |
1443 PATHSPEC_GLOB |
1444 PATHSPEC_ICASE |
1445 PATHSPEC_EXCLUDE);
1446
1447 for (i = 0; i < pathspec->nr; i++) {
1448 const struct pathspec_item *item = &pathspec->items[i];
1449 int len = item->nowildcard_len;
1450
1451 if (len == pathlen &&
1452 !ps_strncmp(item, item->match, path, pathlen))
1453 return 1;
1454 if (len > pathlen &&
1455 item->match[pathlen] == '/' &&
1456 !ps_strncmp(item, item->match, path, pathlen))
1457 return 1;
e96980ef
JK
1458 }
1459 return 0;
1460}
1461
443e061a
LT
1462static int get_index_dtype(const char *path, int len)
1463{
1464 int pos;
9c5e6c80 1465 const struct cache_entry *ce;
443e061a 1466
12cd0bf9 1467 ce = index_file_exists(&the_index, path, len, 0);
443e061a
LT
1468 if (ce) {
1469 if (!ce_uptodate(ce))
1470 return DT_UNKNOWN;
1471 if (S_ISGITLINK(ce->ce_mode))
1472 return DT_DIR;
1473 /*
1474 * Nobody actually cares about the
1475 * difference between DT_LNK and DT_REG
1476 */
1477 return DT_REG;
1478 }
1479
1480 /* Try to look it up as a directory */
12cd0bf9 1481 pos = index_name_pos(&the_index, path, len);
443e061a
LT
1482 if (pos >= 0)
1483 return DT_UNKNOWN;
1484 pos = -pos-1;
12cd0bf9
BW
1485 while (pos < the_index.cache_nr) {
1486 ce = the_index.cache[pos++];
443e061a
LT
1487 if (strncmp(ce->name, path, len))
1488 break;
1489 if (ce->name[len] > '/')
1490 break;
1491 if (ce->name[len] < '/')
1492 continue;
1493 if (!ce_uptodate(ce))
1494 break; /* continue? */
1495 return DT_DIR;
1496 }
1497 return DT_UNKNOWN;
1498}
1499
caa6b782 1500static int get_dtype(struct dirent *de, const char *path, int len)
07134421 1501{
6831a88a 1502 int dtype = de ? DTYPE(de) : DT_UNKNOWN;
07134421
LT
1503 struct stat st;
1504
1505 if (dtype != DT_UNKNOWN)
1506 return dtype;
443e061a
LT
1507 dtype = get_index_dtype(path, len);
1508 if (dtype != DT_UNKNOWN)
1509 return dtype;
1510 if (lstat(path, &st))
07134421
LT
1511 return dtype;
1512 if (S_ISREG(st.st_mode))
1513 return DT_REG;
1514 if (S_ISDIR(st.st_mode))
1515 return DT_DIR;
1516 if (S_ISLNK(st.st_mode))
1517 return DT_LNK;
1518 return dtype;
1519}
1520
16e2cfa9 1521static enum path_treatment treat_one_path(struct dir_struct *dir,
0dcb8d7f 1522 struct untracked_cache_dir *untracked,
49dc2cc2 1523 struct strbuf *path,
2e5910f2 1524 int baselen,
e1b8c7bd 1525 const struct pathspec *pathspec,
16e2cfa9 1526 int dtype, struct dirent *de)
53cc5356 1527{
8aaf8d77 1528 int exclude;
12cd0bf9 1529 int has_path_in_index = !!index_file_exists(&the_index, path->buf, path->len, ignore_case);
2eac2a4c 1530
8aaf8d77
KB
1531 if (dtype == DT_UNKNOWN)
1532 dtype = get_dtype(de, path->buf, path->len);
1533
1534 /* Always exclude indexed files */
2eac2a4c 1535 if (dtype != DT_DIR && has_path_in_index)
defd7c7b 1536 return path_none;
8aaf8d77 1537
2eac2a4c
JH
1538 /*
1539 * When we are looking at a directory P in the working tree,
1540 * there are three cases:
1541 *
1542 * (1) P exists in the index. Everything inside the directory P in
1543 * the working tree needs to go when P is checked out from the
1544 * index.
1545 *
1546 * (2) P does not exist in the index, but there is P/Q in the index.
1547 * We know P will stay a directory when we check out the contents
1548 * of the index, but we do not know yet if there is a directory
1549 * P/Q in the working tree to be killed, so we need to recurse.
1550 *
1551 * (3) P does not exist in the index, and there is no P/Q in the index
1552 * to require P to be a directory, either. Only in this case, we
1553 * know that everything inside P will not be killed without
1554 * recursing.
1555 */
1556 if ((dir->flags & DIR_COLLECT_KILLED_ONLY) &&
1557 (dtype == DT_DIR) &&
de372b1b 1558 !has_path_in_index &&
ae520e36 1559 (directory_exists_in_index(&the_index, path->buf, path->len) == index_nonexistent))
de372b1b 1560 return path_none;
8aaf8d77
KB
1561
1562 exclude = is_excluded(dir, path->buf, &dtype);
53cc5356
JH
1563
1564 /*
1565 * Excluded? If we don't explicitly want to show
1566 * ignored files, ignore it
1567 */
0aaf62b6 1568 if (exclude && !(dir->flags & (DIR_SHOW_IGNORED|DIR_SHOW_IGNORED_TOO)))
defd7c7b 1569 return path_excluded;
53cc5356 1570
53cc5356
JH
1571 switch (dtype) {
1572 default:
defd7c7b 1573 return path_none;
53cc5356 1574 case DT_DIR:
49dc2cc2 1575 strbuf_addch(path, '/');
2e5910f2 1576 return treat_directory(dir, untracked, path->buf, path->len,
e1b8c7bd 1577 baselen, exclude, pathspec);
53cc5356
JH
1578 case DT_REG:
1579 case DT_LNK:
defd7c7b 1580 return exclude ? path_excluded : path_untracked;
53cc5356 1581 }
53cc5356
JH
1582}
1583
91a2288b
NTND
1584static enum path_treatment treat_path_fast(struct dir_struct *dir,
1585 struct untracked_cache_dir *untracked,
1586 struct cached_dir *cdir,
1587 struct strbuf *path,
1588 int baselen,
e1b8c7bd 1589 const struct pathspec *pathspec)
91a2288b
NTND
1590{
1591 strbuf_setlen(path, baselen);
1592 if (!cdir->ucd) {
1593 strbuf_addstr(path, cdir->file);
1594 return path_untracked;
1595 }
1596 strbuf_addstr(path, cdir->ucd->name);
1597 /* treat_one_path() does this before it calls treat_directory() */
00b6c178 1598 strbuf_complete(path, '/');
91a2288b
NTND
1599 if (cdir->ucd->check_only)
1600 /*
1601 * check_only is set as a result of treat_directory() getting
1602 * to its bottom. Verify again the same set of directories
1603 * with check_only set.
1604 */
1605 return read_directory_recursive(dir, path->buf, path->len,
e1b8c7bd 1606 cdir->ucd, 1, pathspec);
91a2288b
NTND
1607 /*
1608 * We get path_recurse in the first run when
1609 * directory_exists_in_index() returns index_nonexistent. We
1610 * are sure that new changes in the index does not impact the
1611 * outcome. Return now.
1612 */
1613 return path_recurse;
1614}
1615
16e2cfa9 1616static enum path_treatment treat_path(struct dir_struct *dir,
0dcb8d7f 1617 struct untracked_cache_dir *untracked,
cf7c6148 1618 struct cached_dir *cdir,
49dc2cc2 1619 struct strbuf *path,
16e2cfa9 1620 int baselen,
e1b8c7bd 1621 const struct pathspec *pathspec)
16e2cfa9
JH
1622{
1623 int dtype;
cf7c6148 1624 struct dirent *de = cdir->de;
16e2cfa9 1625
91a2288b
NTND
1626 if (!de)
1627 return treat_path_fast(dir, untracked, cdir, path,
e1b8c7bd 1628 baselen, pathspec);
16e2cfa9 1629 if (is_dot_or_dotdot(de->d_name) || !strcmp(de->d_name, ".git"))
defd7c7b 1630 return path_none;
49dc2cc2
RS
1631 strbuf_setlen(path, baselen);
1632 strbuf_addstr(path, de->d_name);
e1b8c7bd 1633 if (simplify_away(path->buf, path->len, pathspec))
defd7c7b 1634 return path_none;
16e2cfa9
JH
1635
1636 dtype = DTYPE(de);
e1b8c7bd 1637 return treat_one_path(dir, untracked, path, baselen, pathspec, dtype, de);
0dcb8d7f
NTND
1638}
1639
1640static void add_untracked(struct untracked_cache_dir *dir, const char *name)
1641{
1642 if (!dir)
1643 return;
1644 ALLOC_GROW(dir->untracked, dir->untracked_nr + 1,
1645 dir->untracked_alloc);
1646 dir->untracked[dir->untracked_nr++] = xstrdup(name);
16e2cfa9
JH
1647}
1648
91a2288b
NTND
1649static int valid_cached_dir(struct dir_struct *dir,
1650 struct untracked_cache_dir *untracked,
1651 struct strbuf *path,
1652 int check_only)
1653{
1654 struct stat st;
1655
1656 if (!untracked)
1657 return 0;
1658
1659 if (stat(path->len ? path->buf : ".", &st)) {
1660 invalidate_directory(dir->untracked, untracked);
1661 memset(&untracked->stat_data, 0, sizeof(untracked->stat_data));
1662 return 0;
1663 }
1664 if (!untracked->valid ||
ed4efab1 1665 match_stat_data_racy(&the_index, &untracked->stat_data, &st)) {
91a2288b
NTND
1666 if (untracked->valid)
1667 invalidate_directory(dir->untracked, untracked);
1668 fill_stat_data(&untracked->stat_data, &st);
1669 return 0;
1670 }
1671
1672 if (untracked->check_only != !!check_only) {
1673 invalidate_directory(dir->untracked, untracked);
1674 return 0;
1675 }
1676
1677 /*
1678 * prep_exclude will be called eventually on this directory,
1679 * but it's called much later in last_exclude_matching(). We
1680 * need it now to determine the validity of the cache for this
1681 * path. The next calls will be nearly no-op, the way
1682 * prep_exclude() is designed.
1683 */
1684 if (path->len && path->buf[path->len - 1] != '/') {
1685 strbuf_addch(path, '/');
1686 prep_exclude(dir, path->buf, path->len);
1687 strbuf_setlen(path, path->len - 1);
1688 } else
1689 prep_exclude(dir, path->buf, path->len);
1690
1691 /* hopefully prep_exclude() haven't invalidated this entry... */
1692 return untracked->valid;
1693}
1694
cf7c6148
NTND
1695static int open_cached_dir(struct cached_dir *cdir,
1696 struct dir_struct *dir,
1697 struct untracked_cache_dir *untracked,
1698 struct strbuf *path,
1699 int check_only)
1700{
1701 memset(cdir, 0, sizeof(*cdir));
1702 cdir->untracked = untracked;
91a2288b
NTND
1703 if (valid_cached_dir(dir, untracked, path, check_only))
1704 return 0;
cf7c6148 1705 cdir->fdir = opendir(path->len ? path->buf : ".");
91a2288b
NTND
1706 if (dir->untracked)
1707 dir->untracked->dir_opened++;
cf7c6148
NTND
1708 if (!cdir->fdir)
1709 return -1;
1710 return 0;
1711}
1712
1713static int read_cached_dir(struct cached_dir *cdir)
1714{
1715 if (cdir->fdir) {
1716 cdir->de = readdir(cdir->fdir);
1717 if (!cdir->de)
1718 return -1;
1719 return 0;
1720 }
91a2288b
NTND
1721 while (cdir->nr_dirs < cdir->untracked->dirs_nr) {
1722 struct untracked_cache_dir *d = cdir->untracked->dirs[cdir->nr_dirs];
26cb0182
NTND
1723 if (!d->recurse) {
1724 cdir->nr_dirs++;
1725 continue;
1726 }
91a2288b
NTND
1727 cdir->ucd = d;
1728 cdir->nr_dirs++;
1729 return 0;
1730 }
1731 cdir->ucd = NULL;
1732 if (cdir->nr_files < cdir->untracked->untracked_nr) {
1733 struct untracked_cache_dir *d = cdir->untracked;
1734 cdir->file = d->untracked[cdir->nr_files++];
1735 return 0;
1736 }
cf7c6148
NTND
1737 return -1;
1738}
1739
1740static void close_cached_dir(struct cached_dir *cdir)
1741{
1742 if (cdir->fdir)
1743 closedir(cdir->fdir);
91a2288b
NTND
1744 /*
1745 * We have gone through this directory and found no untracked
1746 * entries. Mark it valid.
1747 */
26cb0182 1748 if (cdir->untracked) {
91a2288b 1749 cdir->untracked->valid = 1;
26cb0182
NTND
1750 cdir->untracked->recurse = 1;
1751 }
16e2cfa9
JH
1752}
1753
453ec4bd
LT
1754/*
1755 * Read a directory tree. We currently ignore anything but
1756 * directories, regular files and symlinks. That's because git
1757 * doesn't handle them at all yet. Maybe that will change some
1758 * day.
1759 *
1760 * Also, we ignore the name ".git" (even if it is not a directory).
1761 * That likely will not change.
defd7c7b
KB
1762 *
1763 * Returns the most significant path_treatment value encountered in the scan.
453ec4bd 1764 */
defd7c7b 1765static enum path_treatment read_directory_recursive(struct dir_struct *dir,
53cc5356 1766 const char *base, int baselen,
0dcb8d7f 1767 struct untracked_cache_dir *untracked, int check_only,
e1b8c7bd 1768 const struct pathspec *pathspec)
453ec4bd 1769{
cf7c6148 1770 struct cached_dir cdir;
defd7c7b 1771 enum path_treatment state, subdir_state, dir_state = path_none;
bef36921 1772 struct strbuf path = STRBUF_INIT;
453ec4bd 1773
bef36921 1774 strbuf_add(&path, base, baselen);
02cb6753 1775
cf7c6148 1776 if (open_cached_dir(&cdir, dir, untracked, &path, check_only))
1528d247
RS
1777 goto out;
1778
0dcb8d7f
NTND
1779 if (untracked)
1780 untracked->check_only = !!check_only;
1781
cf7c6148 1782 while (!read_cached_dir(&cdir)) {
defd7c7b 1783 /* check how the file or directory should be treated */
e1b8c7bd
BW
1784 state = treat_path(dir, untracked, &cdir, &path,
1785 baselen, pathspec);
0dcb8d7f 1786
defd7c7b
KB
1787 if (state > dir_state)
1788 dir_state = state;
1789
1790 /* recurse into subdir if instructed by treat_path */
1791 if (state == path_recurse) {
0dcb8d7f
NTND
1792 struct untracked_cache_dir *ud;
1793 ud = lookup_untracked(dir->untracked, untracked,
1794 path.buf + baselen,
1795 path.len - baselen);
1796 subdir_state =
e1b8c7bd
BW
1797 read_directory_recursive(dir, path.buf,
1798 path.len, ud,
1799 check_only, pathspec);
defd7c7b
KB
1800 if (subdir_state > dir_state)
1801 dir_state = subdir_state;
1802 }
1803
1804 if (check_only) {
1805 /* abort early if maximum state has been reached */
0dcb8d7f 1806 if (dir_state == path_untracked) {
91a2288b 1807 if (cdir.fdir)
0dcb8d7f 1808 add_untracked(untracked, path.buf + baselen);
defd7c7b 1809 break;
0dcb8d7f 1810 }
defd7c7b 1811 /* skip the dir_add_* part */
02cb6753 1812 continue;
453ec4bd 1813 }
defd7c7b
KB
1814
1815 /* add the path to the appropriate result list */
1816 switch (state) {
1817 case path_excluded:
1818 if (dir->flags & DIR_SHOW_IGNORED)
1819 dir_add_name(dir, path.buf, path.len);
0aaf62b6
KB
1820 else if ((dir->flags & DIR_SHOW_IGNORED_TOO) ||
1821 ((dir->flags & DIR_COLLECT_IGNORED) &&
1822 exclude_matches_pathspec(path.buf, path.len,
e1b8c7bd 1823 pathspec)))
0aaf62b6 1824 dir_add_ignored(dir, path.buf, path.len);
defd7c7b
KB
1825 break;
1826
1827 case path_untracked:
0dcb8d7f
NTND
1828 if (dir->flags & DIR_SHOW_IGNORED)
1829 break;
1830 dir_add_name(dir, path.buf, path.len);
91a2288b 1831 if (cdir.fdir)
0dcb8d7f 1832 add_untracked(untracked, path.buf + baselen);
1528d247 1833 break;
defd7c7b
KB
1834
1835 default:
1836 break;
1837 }
453ec4bd 1838 }
cf7c6148 1839 close_cached_dir(&cdir);
1528d247 1840 out:
bef36921 1841 strbuf_release(&path);
453ec4bd 1842
defd7c7b 1843 return dir_state;
453ec4bd
LT
1844}
1845
1846static int cmp_name(const void *p1, const void *p2)
1847{
1848 const struct dir_entry *e1 = *(const struct dir_entry **)p1;
1849 const struct dir_entry *e2 = *(const struct dir_entry **)p2;
1850
ccdd4a0f 1851 return name_compare(e1->name, e1->len, e2->name, e2->len);
453ec4bd
LT
1852}
1853
48ffef96
JH
1854static int treat_leading_path(struct dir_struct *dir,
1855 const char *path, int len,
e1b8c7bd 1856 const struct pathspec *pathspec)
48ffef96 1857{
49dc2cc2
RS
1858 struct strbuf sb = STRBUF_INIT;
1859 int baselen, rc = 0;
48ffef96 1860 const char *cp;
be8a84c5 1861 int old_flags = dir->flags;
48ffef96
JH
1862
1863 while (len && path[len - 1] == '/')
1864 len--;
1865 if (!len)
1866 return 1;
1867 baselen = 0;
be8a84c5 1868 dir->flags &= ~DIR_SHOW_OTHER_DIRECTORIES;
48ffef96
JH
1869 while (1) {
1870 cp = path + baselen + !!baselen;
1871 cp = memchr(cp, '/', path + len - cp);
1872 if (!cp)
1873 baselen = len;
1874 else
1875 baselen = cp - path;
49dc2cc2
RS
1876 strbuf_setlen(&sb, 0);
1877 strbuf_add(&sb, path, baselen);
1878 if (!is_directory(sb.buf))
1879 break;
e1b8c7bd 1880 if (simplify_away(sb.buf, sb.len, pathspec))
49dc2cc2 1881 break;
e1b8c7bd 1882 if (treat_one_path(dir, NULL, &sb, baselen, pathspec,
defd7c7b 1883 DT_DIR, NULL) == path_none)
49dc2cc2
RS
1884 break; /* do not recurse into it */
1885 if (len <= baselen) {
1886 rc = 1;
1887 break; /* finished checking */
1888 }
48ffef96 1889 }
49dc2cc2 1890 strbuf_release(&sb);
be8a84c5 1891 dir->flags = old_flags;
49dc2cc2 1892 return rc;
48ffef96
JH
1893}
1894
1e8fef60
NTND
1895static const char *get_ident_string(void)
1896{
1897 static struct strbuf sb = STRBUF_INIT;
1898 struct utsname uts;
1899
1900 if (sb.len)
1901 return sb.buf;
100e4337 1902 if (uname(&uts) < 0)
1e8fef60 1903 die_errno(_("failed to get kernel name and information"));
0e0f7618
CC
1904 strbuf_addf(&sb, "Location %s, system %s", get_git_work_tree(),
1905 uts.sysname);
1e8fef60
NTND
1906 return sb.buf;
1907}
1908
1909static int ident_in_untracked(const struct untracked_cache *uc)
1910{
0e0f7618
CC
1911 /*
1912 * Previous git versions may have saved many NUL separated
1913 * strings in the "ident" field, but it is insane to manage
1914 * many locations, so just take care of the first one.
1915 */
1e8fef60 1916
0e0f7618 1917 return !strcmp(uc->ident.buf, get_ident_string());
1e8fef60
NTND
1918}
1919
0e0f7618 1920static void set_untracked_ident(struct untracked_cache *uc)
1e8fef60 1921{
0e0f7618 1922 strbuf_reset(&uc->ident);
1e8fef60 1923 strbuf_addstr(&uc->ident, get_ident_string());
0e0f7618
CC
1924
1925 /*
1926 * This strbuf used to contain a list of NUL separated
1927 * strings, so save NUL too for backward compatibility.
1928 */
1e8fef60
NTND
1929 strbuf_addch(&uc->ident, 0);
1930}
1931
4a4ca479
CC
1932static void new_untracked_cache(struct index_state *istate)
1933{
1934 struct untracked_cache *uc = xcalloc(1, sizeof(*uc));
1935 strbuf_init(&uc->ident, 100);
1936 uc->exclude_per_dir = ".gitignore";
1937 /* should be the same flags used by git-status */
1938 uc->dir_flags = DIR_SHOW_OTHER_DIRECTORIES | DIR_HIDE_EMPTY_DIRECTORIES;
0e0f7618 1939 set_untracked_ident(uc);
4a4ca479 1940 istate->untracked = uc;
0e0f7618 1941 istate->cache_changed |= UNTRACKED_CHANGED;
4a4ca479
CC
1942}
1943
1944void add_untracked_cache(struct index_state *istate)
1945{
1946 if (!istate->untracked) {
1947 new_untracked_cache(istate);
0e0f7618
CC
1948 } else {
1949 if (!ident_in_untracked(istate->untracked)) {
1950 free_untracked_cache(istate->untracked);
1951 new_untracked_cache(istate);
1952 }
1953 }
4a4ca479
CC
1954}
1955
07b29bfd
CC
1956void remove_untracked_cache(struct index_state *istate)
1957{
1958 if (istate->untracked) {
1959 free_untracked_cache(istate->untracked);
1960 istate->untracked = NULL;
1961 istate->cache_changed |= UNTRACKED_CHANGED;
1962 }
1963}
1964
ccad261f
NTND
1965static struct untracked_cache_dir *validate_untracked_cache(struct dir_struct *dir,
1966 int base_len,
1967 const struct pathspec *pathspec)
1968{
1969 struct untracked_cache_dir *root;
1970
76e6b090 1971 if (!dir->untracked || getenv("GIT_DISABLE_UNTRACKED_CACHE"))
ccad261f
NTND
1972 return NULL;
1973
1974 /*
1975 * We only support $GIT_DIR/info/exclude and core.excludesfile
1976 * as the global ignore rule files. Any other additions
1977 * (e.g. from command line) invalidate the cache. This
1978 * condition also catches running setup_standard_excludes()
1979 * before setting dir->untracked!
1980 */
1981 if (dir->unmanaged_exclude_files)
1982 return NULL;
1983
1984 /*
1985 * Optimize for the main use case only: whole-tree git
1986 * status. More work involved in treat_leading_path() if we
1987 * use cache on just a subset of the worktree. pathspec
1988 * support could make the matter even worse.
1989 */
1990 if (base_len || (pathspec && pathspec->nr))
1991 return NULL;
1992
1993 /* Different set of flags may produce different results */
1994 if (dir->flags != dir->untracked->dir_flags ||
1995 /*
1996 * See treat_directory(), case index_nonexistent. Without
1997 * this flag, we may need to also cache .git file content
1998 * for the resolve_gitlink_ref() call, which we don't.
1999 */
2000 !(dir->flags & DIR_SHOW_OTHER_DIRECTORIES) ||
2001 /* We don't support collecting ignore files */
2002 (dir->flags & (DIR_SHOW_IGNORED | DIR_SHOW_IGNORED_TOO |
2003 DIR_COLLECT_IGNORED)))
2004 return NULL;
2005
2006 /*
2007 * If we use .gitignore in the cache and now you change it to
2008 * .gitexclude, everything will go wrong.
2009 */
2010 if (dir->exclude_per_dir != dir->untracked->exclude_per_dir &&
2011 strcmp(dir->exclude_per_dir, dir->untracked->exclude_per_dir))
2012 return NULL;
2013
2014 /*
2015 * EXC_CMDL is not considered in the cache. If people set it,
2016 * skip the cache.
2017 */
2018 if (dir->exclude_list_group[EXC_CMDL].nr)
2019 return NULL;
2020
1e8fef60 2021 if (!ident_in_untracked(dir->untracked)) {
0e0f7618 2022 warning(_("Untracked cache is disabled on this system or location."));
1e8fef60
NTND
2023 return NULL;
2024 }
2025
ccad261f
NTND
2026 if (!dir->untracked->root) {
2027 const int len = sizeof(*dir->untracked->root);
2028 dir->untracked->root = xmalloc(len);
2029 memset(dir->untracked->root, 0, len);
2030 }
2031
2032 /* Validate $GIT_DIR/info/exclude and core.excludesfile */
2033 root = dir->untracked->root;
2034 if (hashcmp(dir->ss_info_exclude.sha1,
2035 dir->untracked->ss_info_exclude.sha1)) {
2036 invalidate_gitignore(dir->untracked, root);
2037 dir->untracked->ss_info_exclude = dir->ss_info_exclude;
2038 }
2039 if (hashcmp(dir->ss_excludes_file.sha1,
2040 dir->untracked->ss_excludes_file.sha1)) {
2041 invalidate_gitignore(dir->untracked, root);
2042 dir->untracked->ss_excludes_file = dir->ss_excludes_file;
2043 }
26cb0182
NTND
2044
2045 /* Make sure this directory is not dropped out at saving phase */
2046 root->recurse = 1;
ccad261f
NTND
2047 return root;
2048}
2049
e1b8c7bd
BW
2050int read_directory(struct dir_struct *dir, const char *path,
2051 int len, const struct pathspec *pathspec)
9fc42d60 2052{
ccad261f 2053 struct untracked_cache_dir *untracked;
b4189aa8 2054
dba2e203 2055 if (has_symlink_leading_path(path, len))
725b0605
JH
2056 return dir->nr;
2057
ccad261f
NTND
2058 untracked = validate_untracked_cache(dir, len, pathspec);
2059 if (!untracked)
2060 /*
2061 * make sure untracked cache code path is disabled,
2062 * e.g. prep_exclude()
2063 */
2064 dir->untracked = NULL;
e1b8c7bd
BW
2065 if (!len || treat_leading_path(dir, path, len, pathspec))
2066 read_directory_recursive(dir, path, len, untracked, 0, pathspec);
9ed0d8d6
RS
2067 QSORT(dir->entries, dir->nr, cmp_name);
2068 QSORT(dir->ignored, dir->ignored_nr, cmp_name);
c9ccb5d3
NTND
2069 if (dir->untracked) {
2070 static struct trace_key trace_untracked_stats = TRACE_KEY_INIT(UNTRACKED_STATS);
2071 trace_printf_key(&trace_untracked_stats,
2072 "node creation: %u\n"
2073 "gitignore invalidation: %u\n"
2074 "directory invalidation: %u\n"
2075 "opendir: %u\n",
2076 dir->untracked->dir_created,
2077 dir->untracked->gitignore_invalidated,
2078 dir->untracked->dir_invalidated,
2079 dir->untracked->dir_opened);
1bbb3dba
NTND
2080 if (dir->untracked == the_index.untracked &&
2081 (dir->untracked->dir_opened ||
2082 dir->untracked->gitignore_invalidated ||
2083 dir->untracked->dir_invalidated))
2084 the_index.cache_changed |= UNTRACKED_CHANGED;
2085 if (dir->untracked != the_index.untracked) {
2086 free(dir->untracked);
2087 dir->untracked = NULL;
2088 }
c9ccb5d3 2089 }
453ec4bd
LT
2090 return dir->nr;
2091}
c91f0d92 2092
686a4a06 2093int file_exists(const char *f)
c91f0d92 2094{
686a4a06 2095 struct stat sb;
a50f9fc5 2096 return lstat(f, &sb) == 0;
c91f0d92 2097}
e6636747 2098
63ec5e1f
JS
2099static int cmp_icase(char a, char b)
2100{
2101 if (a == b)
2102 return 0;
2103 if (ignore_case)
2104 return toupper(a) - toupper(b);
2105 return a - b;
2106}
2107
e6636747 2108/*
9b125da4
NTND
2109 * Given two normalized paths (a trailing slash is ok), if subdir is
2110 * outside dir, return -1. Otherwise return the offset in subdir that
2111 * can be used as relative path to dir.
e6636747 2112 */
9b125da4 2113int dir_inside_of(const char *subdir, const char *dir)
e6636747 2114{
9b125da4 2115 int offset = 0;
e6636747 2116
9b125da4 2117 assert(dir && subdir && *dir && *subdir);
e6636747 2118
63ec5e1f 2119 while (*dir && *subdir && !cmp_icase(*dir, *subdir)) {
e6636747 2120 dir++;
9b125da4
NTND
2121 subdir++;
2122 offset++;
490544b1 2123 }
9b125da4
NTND
2124
2125 /* hel[p]/me vs hel[l]/yeah */
2126 if (*dir && *subdir)
2127 return -1;
2128
2129 if (!*subdir)
2130 return !*dir ? offset : -1; /* same dir */
2131
2132 /* foo/[b]ar vs foo/[] */
2133 if (is_dir_sep(dir[-1]))
2134 return is_dir_sep(subdir[-1]) ? offset : -1;
2135
2136 /* foo[/]bar vs foo[] */
2137 return is_dir_sep(*subdir) ? offset + 1 : -1;
e6636747
JS
2138}
2139
2140int is_inside_dir(const char *dir)
2141{
56b9f6e7
RS
2142 char *cwd;
2143 int rc;
2144
b892913d
NTND
2145 if (!dir)
2146 return 0;
56b9f6e7
RS
2147
2148 cwd = xgetcwd();
2149 rc = (dir_inside_of(cwd, dir) >= 0);
2150 free(cwd);
2151 return rc;
e6636747 2152}
7155b727 2153
55892d23
AP
2154int is_empty_dir(const char *path)
2155{
2156 DIR *dir = opendir(path);
2157 struct dirent *e;
2158 int ret = 1;
2159
2160 if (!dir)
2161 return 0;
2162
2163 while ((e = readdir(dir)) != NULL)
2164 if (!is_dot_or_dotdot(e->d_name)) {
2165 ret = 0;
2166 break;
2167 }
2168
2169 closedir(dir);
2170 return ret;
2171}
2172
ae2f203e 2173static int remove_dir_recurse(struct strbuf *path, int flag, int *kept_up)
7155b727 2174{
a0f4afbe 2175 DIR *dir;
7155b727 2176 struct dirent *e;
ae2f203e 2177 int ret = 0, original_len = path->len, len, kept_down = 0;
a0f4afbe 2178 int only_empty = (flag & REMOVE_DIR_EMPTY_ONLY);
c844a803 2179 int keep_toplevel = (flag & REMOVE_DIR_KEEP_TOPLEVEL);
a0f4afbe 2180 unsigned char submodule_head[20];
7155b727 2181
a0f4afbe 2182 if ((flag & REMOVE_DIR_KEEP_NESTED_GIT) &&
ae2f203e 2183 !resolve_gitlink_ref(path->buf, "HEAD", submodule_head)) {
a0f4afbe 2184 /* Do not descend and nuke a nested git work tree. */
ae2f203e
JH
2185 if (kept_up)
2186 *kept_up = 1;
a0f4afbe 2187 return 0;
ae2f203e 2188 }
a0f4afbe 2189
ae2f203e 2190 flag &= ~REMOVE_DIR_KEEP_TOPLEVEL;
a0f4afbe 2191 dir = opendir(path->buf);
c844a803 2192 if (!dir) {
863808cd
MH
2193 if (errno == ENOENT)
2194 return keep_toplevel ? -1 : 0;
2195 else if (errno == EACCES && !keep_toplevel)
ecb2c282
MH
2196 /*
2197 * An empty dir could be removable even if it
2198 * is unreadable:
2199 */
c844a803
JH
2200 return rmdir(path->buf);
2201 else
2202 return -1;
2203 }
00b6c178 2204 strbuf_complete(path, '/');
7155b727
JS
2205
2206 len = path->len;
2207 while ((e = readdir(dir)) != NULL) {
2208 struct stat st;
8ca12c0d
AP
2209 if (is_dot_or_dotdot(e->d_name))
2210 continue;
7155b727
JS
2211
2212 strbuf_setlen(path, len);
2213 strbuf_addstr(path, e->d_name);
863808cd
MH
2214 if (lstat(path->buf, &st)) {
2215 if (errno == ENOENT)
2216 /*
2217 * file disappeared, which is what we
2218 * wanted anyway
2219 */
2220 continue;
2221 /* fall thru */
2222 } else if (S_ISDIR(st.st_mode)) {
ae2f203e 2223 if (!remove_dir_recurse(path, flag, &kept_down))
7155b727 2224 continue; /* happy */
863808cd
MH
2225 } else if (!only_empty &&
2226 (!unlink(path->buf) || errno == ENOENT)) {
7155b727 2227 continue; /* happy, too */
863808cd 2228 }
7155b727
JS
2229
2230 /* path too long, stat fails, or non-directory still exists */
2231 ret = -1;
2232 break;
2233 }
2234 closedir(dir);
2235
2236 strbuf_setlen(path, original_len);
ae2f203e 2237 if (!ret && !keep_toplevel && !kept_down)
863808cd 2238 ret = (!rmdir(path->buf) || errno == ENOENT) ? 0 : -1;
ae2f203e
JH
2239 else if (kept_up)
2240 /*
2241 * report the uplevel that it is not an error that we
2242 * did not rmdir() our directory.
2243 */
2244 *kept_up = !ret;
7155b727
JS
2245 return ret;
2246}
039bc64e 2247
ae2f203e
JH
2248int remove_dir_recursively(struct strbuf *path, int flag)
2249{
2250 return remove_dir_recurse(path, flag, NULL);
2251}
2252
f932729c
JK
2253static GIT_PATH_FUNC(git_path_info_exclude, "info/exclude")
2254
039bc64e
JH
2255void setup_standard_excludes(struct dir_struct *dir)
2256{
039bc64e 2257 dir->exclude_per_dir = ".gitignore";
099d2d86
JH
2258
2259 /* core.excludefile defaulting to $XDG_HOME/git/ignore */
2845ce7f
PT
2260 if (!excludes_file)
2261 excludes_file = xdg_config_home("ignore");
4698c8fe 2262 if (excludes_file && !access_or_warn(excludes_file, R_OK, 0))
38ccaf93
JH
2263 add_excludes_from_file_1(dir, excludes_file,
2264 dir->untracked ? &dir->ss_excludes_file : NULL);
099d2d86
JH
2265
2266 /* per repository user preference */
f0056f64
JK
2267 if (startup_info->have_repository) {
2268 const char *path = git_path_info_exclude();
2269 if (!access_or_warn(path, R_OK, 0))
2270 add_excludes_from_file_1(dir, path,
2271 dir->untracked ? &dir->ss_info_exclude : NULL);
2272 }
039bc64e 2273}
4a92d1bf
AR
2274
2275int remove_path(const char *name)
2276{
2277 char *slash;
2278
9a6728d4 2279 if (unlink(name) && errno != ENOENT && errno != ENOTDIR)
4a92d1bf
AR
2280 return -1;
2281
2282 slash = strrchr(name, '/');
2283 if (slash) {
2284 char *dirs = xstrdup(name);
2285 slash = dirs + (slash - name);
2286 do {
2287 *slash = '\0';
3fc0d131 2288 } while (rmdir(dirs) == 0 && (slash = strrchr(dirs, '/')));
4a92d1bf
AR
2289 free(dirs);
2290 }
2291 return 0;
2292}
2293
270be816
AS
2294/*
2295 * Frees memory within dir which was allocated for exclude lists and
2296 * the exclude_stack. Does not free dir itself.
2297 */
2298void clear_directory(struct dir_struct *dir)
2299{
2300 int i, j;
2301 struct exclude_list_group *group;
2302 struct exclude_list *el;
2303 struct exclude_stack *stk;
2304
2305 for (i = EXC_CMDL; i <= EXC_FILE; i++) {
2306 group = &dir->exclude_list_group[i];
2307 for (j = 0; j < group->nr; j++) {
2308 el = &group->el[j];
2309 if (i == EXC_DIRS)
2310 free((char *)el->src);
2311 clear_exclude_list(el);
2312 }
2313 free(group->el);
2314 }
2315
2316 stk = dir->exclude_stack;
2317 while (stk) {
2318 struct exclude_stack *prev = stk->prev;
2319 free(stk);
2320 stk = prev;
2321 }
aceb9429 2322 strbuf_release(&dir->basebuf);
270be816 2323}
83c094ad
NTND
2324
2325struct ondisk_untracked_cache {
2326 struct stat_data info_exclude_stat;
2327 struct stat_data excludes_file_stat;
2328 uint32_t dir_flags;
2329 unsigned char info_exclude_sha1[20];
2330 unsigned char excludes_file_sha1[20];
2331 char exclude_per_dir[FLEX_ARRAY];
2332};
2333
2334#define ouc_size(len) (offsetof(struct ondisk_untracked_cache, exclude_per_dir) + len + 1)
2335
2336struct write_data {
2337 int index; /* number of written untracked_cache_dir */
2338 struct ewah_bitmap *check_only; /* from untracked_cache_dir */
2339 struct ewah_bitmap *valid; /* from untracked_cache_dir */
2340 struct ewah_bitmap *sha1_valid; /* set if exclude_sha1 is not null */
2341 struct strbuf out;
2342 struct strbuf sb_stat;
2343 struct strbuf sb_sha1;
2344};
2345
2346static void stat_data_to_disk(struct stat_data *to, const struct stat_data *from)
2347{
2348 to->sd_ctime.sec = htonl(from->sd_ctime.sec);
2349 to->sd_ctime.nsec = htonl(from->sd_ctime.nsec);
2350 to->sd_mtime.sec = htonl(from->sd_mtime.sec);
2351 to->sd_mtime.nsec = htonl(from->sd_mtime.nsec);
2352 to->sd_dev = htonl(from->sd_dev);
2353 to->sd_ino = htonl(from->sd_ino);
2354 to->sd_uid = htonl(from->sd_uid);
2355 to->sd_gid = htonl(from->sd_gid);
2356 to->sd_size = htonl(from->sd_size);
2357}
2358
2359static void write_one_dir(struct untracked_cache_dir *untracked,
2360 struct write_data *wd)
2361{
2362 struct stat_data stat_data;
2363 struct strbuf *out = &wd->out;
2364 unsigned char intbuf[16];
2365 unsigned int intlen, value;
2366 int i = wd->index++;
2367
2368 /*
2369 * untracked_nr should be reset whenever valid is clear, but
2370 * for safety..
2371 */
2372 if (!untracked->valid) {
2373 untracked->untracked_nr = 0;
2374 untracked->check_only = 0;
2375 }
2376
2377 if (untracked->check_only)
2378 ewah_set(wd->check_only, i);
2379 if (untracked->valid) {
2380 ewah_set(wd->valid, i);
2381 stat_data_to_disk(&stat_data, &untracked->stat_data);
2382 strbuf_add(&wd->sb_stat, &stat_data, sizeof(stat_data));
2383 }
2384 if (!is_null_sha1(untracked->exclude_sha1)) {
2385 ewah_set(wd->sha1_valid, i);
2386 strbuf_add(&wd->sb_sha1, untracked->exclude_sha1, 20);
2387 }
2388
2389 intlen = encode_varint(untracked->untracked_nr, intbuf);
2390 strbuf_add(out, intbuf, intlen);
2391
2392 /* skip non-recurse directories */
2393 for (i = 0, value = 0; i < untracked->dirs_nr; i++)
2394 if (untracked->dirs[i]->recurse)
2395 value++;
2396 intlen = encode_varint(value, intbuf);
2397 strbuf_add(out, intbuf, intlen);
2398
2399 strbuf_add(out, untracked->name, strlen(untracked->name) + 1);
2400
2401 for (i = 0; i < untracked->untracked_nr; i++)
2402 strbuf_add(out, untracked->untracked[i],
2403 strlen(untracked->untracked[i]) + 1);
2404
2405 for (i = 0; i < untracked->dirs_nr; i++)
2406 if (untracked->dirs[i]->recurse)
2407 write_one_dir(untracked->dirs[i], wd);
2408}
2409
2410void write_untracked_extension(struct strbuf *out, struct untracked_cache *untracked)
2411{
2412 struct ondisk_untracked_cache *ouc;
2413 struct write_data wd;
2414 unsigned char varbuf[16];
e0b83735
JK
2415 int varint_len;
2416 size_t len = strlen(untracked->exclude_per_dir);
2417
2418 FLEX_ALLOC_MEM(ouc, exclude_per_dir, untracked->exclude_per_dir, len);
83c094ad
NTND
2419 stat_data_to_disk(&ouc->info_exclude_stat, &untracked->ss_info_exclude.stat);
2420 stat_data_to_disk(&ouc->excludes_file_stat, &untracked->ss_excludes_file.stat);
2421 hashcpy(ouc->info_exclude_sha1, untracked->ss_info_exclude.sha1);
2422 hashcpy(ouc->excludes_file_sha1, untracked->ss_excludes_file.sha1);
2423 ouc->dir_flags = htonl(untracked->dir_flags);
1e8fef60
NTND
2424
2425 varint_len = encode_varint(untracked->ident.len, varbuf);
2426 strbuf_add(out, varbuf, varint_len);
8109984d 2427 strbuf_addbuf(out, &untracked->ident);
1e8fef60 2428
83c094ad
NTND
2429 strbuf_add(out, ouc, ouc_size(len));
2430 free(ouc);
2431 ouc = NULL;
2432
2433 if (!untracked->root) {
2434 varint_len = encode_varint(0, varbuf);
2435 strbuf_add(out, varbuf, varint_len);
2436 return;
2437 }
2438
2439 wd.index = 0;
2440 wd.check_only = ewah_new();
2441 wd.valid = ewah_new();
2442 wd.sha1_valid = ewah_new();
2443 strbuf_init(&wd.out, 1024);
2444 strbuf_init(&wd.sb_stat, 1024);
2445 strbuf_init(&wd.sb_sha1, 1024);
2446 write_one_dir(untracked->root, &wd);
2447
2448 varint_len = encode_varint(wd.index, varbuf);
2449 strbuf_add(out, varbuf, varint_len);
2450 strbuf_addbuf(out, &wd.out);
2451 ewah_serialize_strbuf(wd.valid, out);
2452 ewah_serialize_strbuf(wd.check_only, out);
2453 ewah_serialize_strbuf(wd.sha1_valid, out);
2454 strbuf_addbuf(out, &wd.sb_stat);
2455 strbuf_addbuf(out, &wd.sb_sha1);
2456 strbuf_addch(out, '\0'); /* safe guard for string lists */
2457
2458 ewah_free(wd.valid);
2459 ewah_free(wd.check_only);
2460 ewah_free(wd.sha1_valid);
2461 strbuf_release(&wd.out);
2462 strbuf_release(&wd.sb_stat);
2463 strbuf_release(&wd.sb_sha1);
2464}
f9e6c649
NTND
2465
2466static void free_untracked(struct untracked_cache_dir *ucd)
2467{
2468 int i;
2469 if (!ucd)
2470 return;
2471 for (i = 0; i < ucd->dirs_nr; i++)
2472 free_untracked(ucd->dirs[i]);
2473 for (i = 0; i < ucd->untracked_nr; i++)
2474 free(ucd->untracked[i]);
2475 free(ucd->untracked);
2476 free(ucd->dirs);
2477 free(ucd);
2478}
2479
2480void free_untracked_cache(struct untracked_cache *uc)
2481{
2482 if (uc)
2483 free_untracked(uc->root);
2484 free(uc);
2485}
2486
2487struct read_data {
2488 int index;
2489 struct untracked_cache_dir **ucd;
2490 struct ewah_bitmap *check_only;
2491 struct ewah_bitmap *valid;
2492 struct ewah_bitmap *sha1_valid;
2493 const unsigned char *data;
2494 const unsigned char *end;
2495};
2496
2497static void stat_data_from_disk(struct stat_data *to, const struct stat_data *from)
2498{
2499 to->sd_ctime.sec = get_be32(&from->sd_ctime.sec);
2500 to->sd_ctime.nsec = get_be32(&from->sd_ctime.nsec);
2501 to->sd_mtime.sec = get_be32(&from->sd_mtime.sec);
2502 to->sd_mtime.nsec = get_be32(&from->sd_mtime.nsec);
2503 to->sd_dev = get_be32(&from->sd_dev);
2504 to->sd_ino = get_be32(&from->sd_ino);
2505 to->sd_uid = get_be32(&from->sd_uid);
2506 to->sd_gid = get_be32(&from->sd_gid);
2507 to->sd_size = get_be32(&from->sd_size);
2508}
2509
2510static int read_one_dir(struct untracked_cache_dir **untracked_,
2511 struct read_data *rd)
2512{
2513 struct untracked_cache_dir ud, *untracked;
2514 const unsigned char *next, *data = rd->data, *end = rd->end;
2515 unsigned int value;
2516 int i, len;
2517
2518 memset(&ud, 0, sizeof(ud));
2519
2520 next = data;
2521 value = decode_varint(&next);
2522 if (next > end)
2523 return -1;
2524 ud.recurse = 1;
2525 ud.untracked_alloc = value;
2526 ud.untracked_nr = value;
2527 if (ud.untracked_nr)
b32fa95f 2528 ALLOC_ARRAY(ud.untracked, ud.untracked_nr);
f9e6c649
NTND
2529 data = next;
2530
2531 next = data;
2532 ud.dirs_alloc = ud.dirs_nr = decode_varint(&next);
2533 if (next > end)
2534 return -1;
b32fa95f 2535 ALLOC_ARRAY(ud.dirs, ud.dirs_nr);
f9e6c649
NTND
2536 data = next;
2537
2538 len = strlen((const char *)data);
2539 next = data + len + 1;
2540 if (next > rd->end)
2541 return -1;
50a6c8ef 2542 *untracked_ = untracked = xmalloc(st_add(sizeof(*untracked), len));
f9e6c649
NTND
2543 memcpy(untracked, &ud, sizeof(ud));
2544 memcpy(untracked->name, data, len + 1);
2545 data = next;
2546
2547 for (i = 0; i < untracked->untracked_nr; i++) {
2548 len = strlen((const char *)data);
2549 next = data + len + 1;
2550 if (next > rd->end)
2551 return -1;
2552 untracked->untracked[i] = xstrdup((const char*)data);
2553 data = next;
2554 }
2555
2556 rd->ucd[rd->index++] = untracked;
2557 rd->data = data;
2558
2559 for (i = 0; i < untracked->dirs_nr; i++) {
2560 len = read_one_dir(untracked->dirs + i, rd);
2561 if (len < 0)
2562 return -1;
2563 }
2564 return 0;
2565}
2566
2567static void set_check_only(size_t pos, void *cb)
2568{
2569 struct read_data *rd = cb;
2570 struct untracked_cache_dir *ud = rd->ucd[pos];
2571 ud->check_only = 1;
2572}
2573
2574static void read_stat(size_t pos, void *cb)
2575{
2576 struct read_data *rd = cb;
2577 struct untracked_cache_dir *ud = rd->ucd[pos];
2578 if (rd->data + sizeof(struct stat_data) > rd->end) {
2579 rd->data = rd->end + 1;
2580 return;
2581 }
2582 stat_data_from_disk(&ud->stat_data, (struct stat_data *)rd->data);
2583 rd->data += sizeof(struct stat_data);
2584 ud->valid = 1;
2585}
2586
2587static void read_sha1(size_t pos, void *cb)
2588{
2589 struct read_data *rd = cb;
2590 struct untracked_cache_dir *ud = rd->ucd[pos];
2591 if (rd->data + 20 > rd->end) {
2592 rd->data = rd->end + 1;
2593 return;
2594 }
2595 hashcpy(ud->exclude_sha1, rd->data);
2596 rd->data += 20;
2597}
2598
2599static void load_sha1_stat(struct sha1_stat *sha1_stat,
2600 const struct stat_data *stat,
2601 const unsigned char *sha1)
2602{
2603 stat_data_from_disk(&sha1_stat->stat, stat);
2604 hashcpy(sha1_stat->sha1, sha1);
2605 sha1_stat->valid = 1;
2606}
2607
2608struct untracked_cache *read_untracked_extension(const void *data, unsigned long sz)
2609{
2610 const struct ondisk_untracked_cache *ouc;
2611 struct untracked_cache *uc;
2612 struct read_data rd;
2613 const unsigned char *next = data, *end = (const unsigned char *)data + sz;
1e8fef60
NTND
2614 const char *ident;
2615 int ident_len, len;
f9e6c649
NTND
2616
2617 if (sz <= 1 || end[-1] != '\0')
2618 return NULL;
2619 end--;
2620
1e8fef60
NTND
2621 ident_len = decode_varint(&next);
2622 if (next + ident_len > end)
2623 return NULL;
2624 ident = (const char *)next;
2625 next += ident_len;
2626
f9e6c649
NTND
2627 ouc = (const struct ondisk_untracked_cache *)next;
2628 if (next + ouc_size(0) > end)
2629 return NULL;
2630
2631 uc = xcalloc(1, sizeof(*uc));
1e8fef60
NTND
2632 strbuf_init(&uc->ident, ident_len);
2633 strbuf_add(&uc->ident, ident, ident_len);
f9e6c649
NTND
2634 load_sha1_stat(&uc->ss_info_exclude, &ouc->info_exclude_stat,
2635 ouc->info_exclude_sha1);
2636 load_sha1_stat(&uc->ss_excludes_file, &ouc->excludes_file_stat,
2637 ouc->excludes_file_sha1);
2638 uc->dir_flags = get_be32(&ouc->dir_flags);
2639 uc->exclude_per_dir = xstrdup(ouc->exclude_per_dir);
2640 /* NUL after exclude_per_dir is covered by sizeof(*ouc) */
2641 next += ouc_size(strlen(ouc->exclude_per_dir));
2642 if (next >= end)
2643 goto done2;
2644
2645 len = decode_varint(&next);
2646 if (next > end || len == 0)
2647 goto done2;
2648
2649 rd.valid = ewah_new();
2650 rd.check_only = ewah_new();
2651 rd.sha1_valid = ewah_new();
2652 rd.data = next;
2653 rd.end = end;
2654 rd.index = 0;
b32fa95f 2655 ALLOC_ARRAY(rd.ucd, len);
f9e6c649
NTND
2656
2657 if (read_one_dir(&uc->root, &rd) || rd.index != len)
2658 goto done;
2659
2660 next = rd.data;
2661 len = ewah_read_mmap(rd.valid, next, end - next);
2662 if (len < 0)
2663 goto done;
2664
2665 next += len;
2666 len = ewah_read_mmap(rd.check_only, next, end - next);
2667 if (len < 0)
2668 goto done;
2669
2670 next += len;
2671 len = ewah_read_mmap(rd.sha1_valid, next, end - next);
2672 if (len < 0)
2673 goto done;
2674
2675 ewah_each_bit(rd.check_only, set_check_only, &rd);
2676 rd.data = next + len;
2677 ewah_each_bit(rd.valid, read_stat, &rd);
2678 ewah_each_bit(rd.sha1_valid, read_sha1, &rd);
2679 next = rd.data;
2680
2681done:
2682 free(rd.ucd);
2683 ewah_free(rd.valid);
2684 ewah_free(rd.check_only);
2685 ewah_free(rd.sha1_valid);
2686done2:
2687 if (next != end) {
2688 free_untracked_cache(uc);
2689 uc = NULL;
2690 }
2691 return uc;
2692}
e931371a 2693
73f9145f
NTND
2694static void invalidate_one_directory(struct untracked_cache *uc,
2695 struct untracked_cache_dir *ucd)
2696{
2697 uc->dir_invalidated++;
2698 ucd->valid = 0;
2699 ucd->untracked_nr = 0;
2700}
2701
2702/*
2703 * Normally when an entry is added or removed from a directory,
2704 * invalidating that directory is enough. No need to touch its
2705 * ancestors. When a directory is shown as "foo/bar/" in git-status
2706 * however, deleting or adding an entry may have cascading effect.
2707 *
2708 * Say the "foo/bar/file" has become untracked, we need to tell the
2709 * untracked_cache_dir of "foo" that "bar/" is not an untracked
2710 * directory any more (because "bar" is managed by foo as an untracked
2711 * "file").
2712 *
2713 * Similarly, if "foo/bar/file" moves from untracked to tracked and it
2714 * was the last untracked entry in the entire "foo", we should show
2715 * "foo/" instead. Which means we have to invalidate past "bar" up to
2716 * "foo".
2717 *
2718 * This function traverses all directories from root to leaf. If there
2719 * is a chance of one of the above cases happening, we invalidate back
2720 * to root. Otherwise we just invalidate the leaf. There may be a more
2721 * sophisticated way than checking for SHOW_OTHER_DIRECTORIES to
2722 * detect these cases and avoid unnecessary invalidation, for example,
2723 * checking for the untracked entry named "bar/" in "foo", but for now
2724 * stick to something safe and simple.
2725 */
2726static int invalidate_one_component(struct untracked_cache *uc,
2727 struct untracked_cache_dir *dir,
2728 const char *path, int len)
2729{
2730 const char *rest = strchr(path, '/');
2731
2732 if (rest) {
2733 int component_len = rest - path;
2734 struct untracked_cache_dir *d =
2735 lookup_untracked(uc, dir, path, component_len);
2736 int ret =
2737 invalidate_one_component(uc, d, rest + 1,
2738 len - (component_len + 1));
2739 if (ret)
2740 invalidate_one_directory(uc, dir);
2741 return ret;
2742 }
2743
2744 invalidate_one_directory(uc, dir);
2745 return uc->dir_flags & DIR_SHOW_OTHER_DIRECTORIES;
2746}
2747
e931371a
NTND
2748void untracked_cache_invalidate_path(struct index_state *istate,
2749 const char *path)
2750{
e931371a
NTND
2751 if (!istate->untracked || !istate->untracked->root)
2752 return;
73f9145f
NTND
2753 invalidate_one_component(istate->untracked, istate->untracked->root,
2754 path, strlen(path));
e931371a
NTND
2755}
2756
2757void untracked_cache_remove_from_index(struct index_state *istate,
2758 const char *path)
2759{
2760 untracked_cache_invalidate_path(istate, path);
2761}
2762
2763void untracked_cache_add_to_index(struct index_state *istate,
2764 const char *path)
2765{
2766 untracked_cache_invalidate_path(istate, path);
2767}
47e83eb3
SB
2768
2769/* Update gitfile and core.worktree setting to connect work tree and git dir */
2770void connect_work_tree_and_git_dir(const char *work_tree_, const char *git_dir_)
2771{
365444a6
SB
2772 struct strbuf gitfile_sb = STRBUF_INIT;
2773 struct strbuf cfg_sb = STRBUF_INIT;
47e83eb3 2774 struct strbuf rel_path = STRBUF_INIT;
365444a6 2775 char *git_dir, *work_tree;
47e83eb3 2776
365444a6
SB
2777 /* Prepare .git file */
2778 strbuf_addf(&gitfile_sb, "%s/.git", work_tree_);
2779 if (safe_create_leading_directories_const(gitfile_sb.buf))
2780 die(_("could not create directories for %s"), gitfile_sb.buf);
2781
2782 /* Prepare config file */
2783 strbuf_addf(&cfg_sb, "%s/config", git_dir_);
2784 if (safe_create_leading_directories_const(cfg_sb.buf))
2785 die(_("could not create directories for %s"), cfg_sb.buf);
47e83eb3 2786
e394fa01
JH
2787 git_dir = real_pathdup(git_dir_, 1);
2788 work_tree = real_pathdup(work_tree_, 1);
365444a6
SB
2789
2790 /* Write .git file */
2791 write_file(gitfile_sb.buf, "gitdir: %s",
2792 relative_path(git_dir, work_tree, &rel_path));
47e83eb3 2793 /* Update core.worktree setting */
365444a6 2794 git_config_set_in_file(cfg_sb.buf, "core.worktree",
47e83eb3
SB
2795 relative_path(work_tree, git_dir, &rel_path));
2796
365444a6
SB
2797 strbuf_release(&gitfile_sb);
2798 strbuf_release(&cfg_sb);
47e83eb3
SB
2799 strbuf_release(&rel_path);
2800 free(work_tree);
2801 free(git_dir);
2802}
f6f85861
SB
2803
2804/*
2805 * Migrate the git directory of the given path from old_git_dir to new_git_dir.
2806 */
2807void relocate_gitdir(const char *path, const char *old_git_dir, const char *new_git_dir)
2808{
2809 if (rename(old_git_dir, new_git_dir) < 0)
2810 die_errno(_("could not migrate git directory from '%s' to '%s'"),
2811 old_git_dir, new_git_dir);
2812
2813 connect_work_tree_and_git_dir(path, new_git_dir);
2814}