]> git.ipfire.org Git - thirdparty/git.git/blame - dir.c
treewide: remove cache.h inclusion due to git-zlib changes
[thirdparty/git.git] / dir.c
CommitLineData
453ec4bd
LT
1/*
2 * This handles recursive filename detection with exclude
3 * files, index knowledge etc..
4 *
5 * Copyright (C) Linus Torvalds, 2005-2006
6 * Junio Hamano, 2005-2006
7 */
36bf1958 8#include "git-compat-util.h"
0b027f6c 9#include "abspath.h"
36bf1958 10#include "alloc.h"
b2141fc1 11#include "config.h"
73359a9b 12#include "convert.h"
453ec4bd 13#include "dir.h"
32a8f510 14#include "environment.h"
f394e093 15#include "gettext.h"
cbd53a21 16#include "object-store.h"
b0db7046 17#include "attr.h"
09595258 18#include "refs.h"
237ec6e4 19#include "wildmatch.h"
64acde94 20#include "pathspec.h"
dde843e7 21#include "utf8.h"
83c094ad
NTND
22#include "varint.h"
23#include "ewah/ewok.h"
883e248b 24#include "fsmonitor.h"
e38da487 25#include "setup.h"
da62f786 26#include "submodule-config.h"
74ea5c95 27#include "trace2.h"
d5ebb50d 28#include "wrapper.h"
453ec4bd 29
defd7c7b
KB
30/*
31 * Tells read_directory_recursive how a file or directory should be treated.
32 * Values are ordered by significance, e.g. if a directory contains both
33 * excluded and untracked files, it is listed as untracked because
34 * path_untracked > path_excluded.
35 */
36enum path_treatment {
37 path_none = 0,
38 path_recurse,
39 path_excluded,
40 path_untracked
41};
42
cf7c6148
NTND
43/*
44 * Support data structure for our opendir/readdir/closedir wrappers
45 */
46struct cached_dir {
47 DIR *fdir;
48 struct untracked_cache_dir *untracked;
91a2288b
NTND
49 int nr_files;
50 int nr_dirs;
51
ad6f2157
JK
52 const char *d_name;
53 int d_type;
91a2288b
NTND
54 const char *file;
55 struct untracked_cache_dir *ucd;
cf7c6148
NTND
56};
57
defd7c7b 58static enum path_treatment read_directory_recursive(struct dir_struct *dir,
0ef8e169
BW
59 struct index_state *istate, const char *path, int len,
60 struct untracked_cache_dir *untracked,
5aaa7fd3 61 int check_only, int stop_at_first_file, const struct pathspec *pathspec);
ad6f2157
JK
62static int resolve_dtype(int dtype, struct index_state *istate,
63 const char *path, int len);
906fc557 64struct dirent *readdir_skip_dot_and_dotdot(DIR *dirp)
b548f0f1
EN
65{
66 struct dirent *e;
67
68 while ((e = readdir(dirp)) != NULL) {
69 if (!is_dot_or_dotdot(e->d_name))
70 break;
71 }
72 return e;
73}
74
e0556a92
PC
75int count_slashes(const char *s)
76{
77 int cnt = 0;
78 while (*s)
79 if (*s++ == '/')
80 cnt++;
81 return cnt;
82}
83
ba0897e6 84int fspathcmp(const char *a, const char *b)
8cf2a84e
JJ
85{
86 return ignore_case ? strcasecmp(a, b) : strcmp(a, b);
87}
88
cf2dc1c2
EW
89int fspatheq(const char *a, const char *b)
90{
91 return !fspathcmp(a, b);
92}
93
ba0897e6 94int fspathncmp(const char *a, const char *b, size_t count)
8cf2a84e
JJ
95{
96 return ignore_case ? strncasecmp(a, b, count) : strncmp(a, b, count);
97}
98
cf2dc1c2
EW
99unsigned int fspathhash(const char *str)
100{
101 return ignore_case ? strihash(str) : strhash(str);
102}
103
1f26ce61
CB
104int git_fnmatch(const struct pathspec_item *item,
105 const char *pattern, const char *string,
106 int prefix)
5d74762d 107{
5d74762d 108 if (prefix > 0) {
93d93537 109 if (ps_strncmp(item, pattern, string, prefix))
eb07894f 110 return WM_NOMATCH;
5d74762d
NTND
111 pattern += prefix;
112 string += prefix;
113 }
bd30c2e4 114 if (item->flags & PATHSPEC_ONESTAR) {
8c6abbcd
NTND
115 int pattern_len = strlen(++pattern);
116 int string_len = strlen(string);
117 return string_len < pattern_len ||
93d93537
NTND
118 ps_strcmp(item, pattern,
119 string + string_len - pattern_len);
8c6abbcd 120 }
bd30c2e4 121 if (item->magic & PATHSPEC_GLOB)
93d93537
NTND
122 return wildmatch(pattern, string,
123 WM_PATHNAME |
55d34269 124 (item->magic & PATHSPEC_ICASE ? WM_CASEFOLD : 0));
bd30c2e4
NTND
125 else
126 /* wildmatch has not learned no FNM_PATHNAME mode yet */
eb07894f 127 return wildmatch(pattern, string,
55d34269 128 item->magic & PATHSPEC_ICASE ? WM_CASEFOLD : 0);
5d74762d
NTND
129}
130
0b6e56df
JH
131static int fnmatch_icase_mem(const char *pattern, int patternlen,
132 const char *string, int stringlen,
133 int flags)
134{
135 int match_status;
136 struct strbuf pat_buf = STRBUF_INIT;
137 struct strbuf str_buf = STRBUF_INIT;
138 const char *use_pat = pattern;
139 const char *use_str = string;
140
141 if (pattern[patternlen]) {
142 strbuf_add(&pat_buf, pattern, patternlen);
143 use_pat = pat_buf.buf;
144 }
145 if (string[stringlen]) {
146 strbuf_add(&str_buf, string, stringlen);
147 use_str = str_buf.buf;
148 }
149
f30366b2
JH
150 if (ignore_case)
151 flags |= WM_CASEFOLD;
55d34269 152 match_status = wildmatch(use_pat, use_str, flags);
0b6e56df
JH
153
154 strbuf_release(&pat_buf);
155 strbuf_release(&str_buf);
156
157 return match_status;
158}
159
827f4d6c 160static size_t common_prefix_len(const struct pathspec *pathspec)
3c6a370b 161{
827f4d6c 162 int n;
4a085b16 163 size_t max = 0;
3c6a370b 164
93d93537
NTND
165 /*
166 * ":(icase)path" is treated as a pathspec full of
167 * wildcard. In other words, only prefix is considered common
168 * prefix. If the pathspec is abc/foo abc/bar, running in
bbbb6b0b 169 * subdir xyz, the common prefix is still xyz, not xyz/abc as
93d93537
NTND
170 * in non-:(icase).
171 */
5c6933d2
NTND
172 GUARD_PATHSPEC(pathspec,
173 PATHSPEC_FROMTOP |
174 PATHSPEC_MAXDEPTH |
bd30c2e4 175 PATHSPEC_LITERAL |
93d93537 176 PATHSPEC_GLOB |
ef79b1f8 177 PATHSPEC_ICASE |
b0db7046
BW
178 PATHSPEC_EXCLUDE |
179 PATHSPEC_ATTR);
4a085b16 180
827f4d6c 181 for (n = 0; n < pathspec->nr; n++) {
93d93537 182 size_t i = 0, len = 0, item_len;
ef79b1f8
NTND
183 if (pathspec->items[n].magic & PATHSPEC_EXCLUDE)
184 continue;
93d93537
NTND
185 if (pathspec->items[n].magic & PATHSPEC_ICASE)
186 item_len = pathspec->items[n].prefix;
187 else
188 item_len = pathspec->items[n].nowildcard_len;
189 while (i < item_len && (n == 0 || i < max)) {
827f4d6c
NTND
190 char c = pathspec->items[n].match[i];
191 if (c != pathspec->items[0].match[i])
4a085b16
JH
192 break;
193 if (c == '/')
194 len = i + 1;
827f4d6c 195 i++;
4a085b16 196 }
827f4d6c 197 if (n == 0 || len < max) {
4a085b16
JH
198 max = len;
199 if (!max)
200 break;
201 }
3c6a370b 202 }
4a085b16 203 return max;
3c6a370b
LT
204}
205
f950eb95
CB
206/*
207 * Returns a copy of the longest leading path common among all
208 * pathspecs.
209 */
827f4d6c 210char *common_prefix(const struct pathspec *pathspec)
f950eb95
CB
211{
212 unsigned long len = common_prefix_len(pathspec);
213
827f4d6c 214 return len ? xmemdupz(pathspec->items[0].match, len) : NULL;
f950eb95
CB
215}
216
0d32c183
BW
217int fill_directory(struct dir_struct *dir,
218 struct index_state *istate,
219 const struct pathspec *pathspec)
1d8842d9 220{
bec5ab89 221 const char *prefix;
966de302 222 size_t prefix_len;
1d8842d9 223
351ea1c3
EN
224 unsigned exclusive_flags = DIR_SHOW_IGNORED | DIR_SHOW_IGNORED_TOO;
225 if ((dir->flags & exclusive_flags) == exclusive_flags)
226 BUG("DIR_SHOW_IGNORED and DIR_SHOW_IGNORED_TOO are exclusive");
227
1d8842d9
LT
228 /*
229 * Calculate common prefix for the pathspec, and
230 * use that to optimize the directory walk
231 */
bec5ab89
RS
232 prefix_len = common_prefix_len(pathspec);
233 prefix = prefix_len ? pathspec->items[0].match : "";
1d8842d9
LT
234
235 /* Read the directory and prune it */
0d32c183 236 read_directory(dir, istate, prefix, prefix_len, pathspec);
966de302 237
966de302 238 return prefix_len;
1d8842d9
LT
239}
240
bc96cc87
NTND
241int within_depth(const char *name, int namelen,
242 int depth, int max_depth)
243{
244 const char *cp = name, *cpe = name + namelen;
245
246 while (cp < cpe) {
247 if (*cp++ != '/')
248 continue;
249 depth++;
250 if (depth > max_depth)
251 return 0;
252 }
253 return 1;
254}
255
578d81d0
JH
256/*
257 * Read the contents of the blob with the given OID into a buffer.
258 * Append a trailing LF to the end if the last line doesn't have one.
259 *
260 * Returns:
261 * -1 when the OID is invalid or unknown or does not refer to a blob.
262 * 0 when the blob is empty.
263 * 1 along with { data, size } of the (possibly augmented) buffer
264 * when successful.
265 *
4b33e602 266 * Optionally updates the given oid_stat with the given OID (when valid).
578d81d0 267 */
4b33e602
PO
268static int do_read_blob(const struct object_id *oid, struct oid_stat *oid_stat,
269 size_t *size_out, char **data_out)
578d81d0
JH
270{
271 enum object_type type;
272 unsigned long sz;
273 char *data;
274
275 *size_out = 0;
276 *data_out = NULL;
277
bc726bd0 278 data = repo_read_object_file(the_repository, oid, &type, &sz);
578d81d0
JH
279 if (!data || type != OBJ_BLOB) {
280 free(data);
281 return -1;
282 }
283
4b33e602
PO
284 if (oid_stat) {
285 memset(&oid_stat->stat, 0, sizeof(oid_stat->stat));
286 oidcpy(&oid_stat->oid, oid);
578d81d0
JH
287 }
288
289 if (sz == 0) {
290 free(data);
291 return 0;
292 }
293
294 if (data[sz - 1] != '\n') {
295 data = xrealloc(data, st_add(sz, 1));
296 data[sz++] = '\n';
297 }
298
299 *size_out = xsize_t(sz);
300 *data_out = data;
301
302 return 1;
303}
304
75a6315f
BW
305#define DO_MATCH_EXCLUDE (1<<0)
306#define DO_MATCH_DIRECTORY (1<<1)
a3d89d8f 307#define DO_MATCH_LEADING_PATHSPEC (1<<2)
42b0874a 308
61cf2820 309/*
29b577b9 310 * Does the given pathspec match the given name? A match is found if
61cf2820 311 *
29b577b9
EN
312 * (1) the pathspec string is leading directory of 'name' ("RECURSIVELY"), or
313 * (2) the pathspec string has a leading part matching 'name' ("LEADING"), or
314 * (3) the pathspec string is a wildcard and matches 'name' ("WILDCARD"), or
315 * (4) the pathspec string is exactly the same as 'name' ("EXACT").
61cf2820 316 *
29b577b9 317 * Return value tells which case it was (1-4), or 0 when there is no match.
61cf2820 318 *
29b577b9
EN
319 * It may be instructive to look at a small table of concrete examples
320 * to understand the differences between 1, 2, and 4:
321 *
322 * Pathspecs
323 * | a/b | a/b/ | a/b/c
324 * ------+-----------+-----------+------------
325 * a/b | EXACT | EXACT[1] | LEADING[2]
326 * Names a/b/ | RECURSIVE | EXACT | LEADING[2]
327 * a/b/c | RECURSIVE | RECURSIVE | EXACT
328 *
329 * [1] Only if DO_MATCH_DIRECTORY is passed; otherwise, this is NOT a match.
330 * [2] Only if DO_MATCH_LEADING_PATHSPEC is passed; otherwise, not a match.
61cf2820 331 */
847a9e5d 332static int match_pathspec_item(struct index_state *istate,
6d2df284 333 const struct pathspec_item *item, int prefix,
42b0874a 334 const char *name, int namelen, unsigned flags)
61cf2820
NTND
335{
336 /* name/namelen has prefix cut off by caller */
337 const char *match = item->match + prefix;
338 int matchlen = item->len - prefix;
339
93d93537
NTND
340 /*
341 * The normal call pattern is:
342 * 1. prefix = common_prefix_len(ps);
343 * 2. prune something, or fill_directory
854b0959 344 * 3. match_pathspec()
93d93537
NTND
345 *
346 * 'prefix' at #1 may be shorter than the command's prefix and
347 * it's ok for #2 to match extra files. Those extras will be
348 * trimmed at #3.
349 *
350 * Suppose the pathspec is 'foo' and '../bar' running from
351 * subdir 'xyz'. The common prefix at #1 will be empty, thanks
352 * to "../". We may have xyz/foo _and_ XYZ/foo after #2. The
353 * user does not want XYZ/foo, only the "foo" part should be
354 * case-insensitive. We need to filter out XYZ/foo here. In
355 * other words, we do not trust the caller on comparing the
356 * prefix part when :(icase) is involved. We do exact
357 * comparison ourselves.
358 *
359 * Normally the caller (common_prefix_len() in fact) does
360 * _exact_ matching on name[-prefix+1..-1] and we do not need
361 * to check that part. Be defensive and check it anyway, in
362 * case common_prefix_len is changed, or a new caller is
363 * introduced that does not use common_prefix_len.
364 *
365 * If the penalty turns out too high when prefix is really
366 * long, maybe change it to
367 * strncmp(match, name, item->prefix - prefix)
368 */
369 if (item->prefix && (item->magic & PATHSPEC_ICASE) &&
370 strncmp(item->match, name - prefix, item->prefix))
371 return 0;
372
22af33be
NTND
373 if (item->attr_match_nr &&
374 !match_pathspec_attrs(istate, name, namelen, item))
b0db7046
BW
375 return 0;
376
61cf2820
NTND
377 /* If the match was just the prefix, we matched */
378 if (!*match)
379 return MATCHED_RECURSIVELY;
380
93d93537 381 if (matchlen <= namelen && !ps_strncmp(item, match, name, matchlen)) {
61cf2820
NTND
382 if (matchlen == namelen)
383 return MATCHED_EXACTLY;
384
385 if (match[matchlen-1] == '/' || name[matchlen] == '/')
386 return MATCHED_RECURSIVELY;
68690fdd
NTND
387 } else if ((flags & DO_MATCH_DIRECTORY) &&
388 match[matchlen - 1] == '/' &&
389 namelen == matchlen - 1 &&
390 !ps_strncmp(item, match, name, namelen))
391 return MATCHED_EXACTLY;
61cf2820 392
5d74762d 393 if (item->nowildcard_len < item->len &&
bd30c2e4 394 !git_fnmatch(item, match, name,
8c6abbcd 395 item->nowildcard_len - prefix))
61cf2820
NTND
396 return MATCHED_FNMATCH;
397
29b577b9 398 /* Perform checks to see if "name" is a leading string of the pathspec */
f1f061e1
EN
399 if ( (flags & DO_MATCH_LEADING_PATHSPEC) &&
400 !(flags & DO_MATCH_EXCLUDE)) {
75a6315f 401 /* name is a literal prefix of the pathspec */
a5e916c7 402 int offset = name[namelen-1] == '/' ? 1 : 0;
75a6315f 403 if ((namelen < matchlen) &&
a5e916c7 404 (match[namelen-offset] == '/') &&
75a6315f 405 !ps_strncmp(item, match, name, namelen))
89a1f4aa 406 return MATCHED_RECURSIVELY_LEADING_PATHSPEC;
75a6315f 407
2f5d3847 408 /* name doesn't match up to the first wild character */
75a6315f
BW
409 if (item->nowildcard_len < item->len &&
410 ps_strncmp(item, match, name,
411 item->nowildcard_len - prefix))
412 return 0;
413
072a2310
EN
414 /*
415 * name has no wildcard, and it didn't match as a leading
416 * pathspec so return.
417 */
418 if (item->nowildcard_len == item->len)
419 return 0;
420
75a6315f
BW
421 /*
422 * Here is where we would perform a wildmatch to check if
423 * "name" can be matched as a directory (or a prefix) against
424 * the pathspec. Since wildmatch doesn't have this capability
425 * at the present we have to punt and say that it is a match,
426 * potentially returning a false positive
427 * The submodules themselves will be able to perform more
428 * accurate matching to determine if the pathspec matches.
429 */
89a1f4aa 430 return MATCHED_RECURSIVELY_LEADING_PATHSPEC;
75a6315f
BW
431 }
432
61cf2820
NTND
433 return 0;
434}
435
436/*
f1f061e1
EN
437 * do_match_pathspec() is meant to ONLY be called by
438 * match_pathspec_with_flags(); calling it directly risks pathspecs
439 * like ':!unwanted_path' being ignored.
440 *
52ed1894
AS
441 * Given a name and a list of pathspecs, returns the nature of the
442 * closest (i.e. most specific) match of the name to any of the
443 * pathspecs.
444 *
445 * The caller typically calls this multiple times with the same
446 * pathspec and seen[] array but with different name/namelen
447 * (e.g. entries from the index) and is interested in seeing if and
448 * how each pathspec matches all the names it calls this function
449 * with. A mark is left in the seen[] array for each pathspec element
450 * indicating the closest type of match that element achieved, so if
451 * seen[n] remains zero after multiple invocations, that means the nth
452 * pathspec did not match any names, which could indicate that the
453 * user mistyped the nth pathspec.
61cf2820 454 */
847a9e5d 455static int do_match_pathspec(struct index_state *istate,
6d2df284 456 const struct pathspec *ps,
854b0959
NTND
457 const char *name, int namelen,
458 int prefix, char *seen,
42b0874a 459 unsigned flags)
61cf2820 460{
42b0874a 461 int i, retval = 0, exclude = flags & DO_MATCH_EXCLUDE;
61cf2820 462
5c6933d2
NTND
463 GUARD_PATHSPEC(ps,
464 PATHSPEC_FROMTOP |
465 PATHSPEC_MAXDEPTH |
bd30c2e4 466 PATHSPEC_LITERAL |
93d93537 467 PATHSPEC_GLOB |
ef79b1f8 468 PATHSPEC_ICASE |
b0db7046
BW
469 PATHSPEC_EXCLUDE |
470 PATHSPEC_ATTR);
8f4f8f45 471
61cf2820 472 if (!ps->nr) {
6330a171
NTND
473 if (!ps->recursive ||
474 !(ps->magic & PATHSPEC_MAXDEPTH) ||
475 ps->max_depth == -1)
61cf2820
NTND
476 return MATCHED_RECURSIVELY;
477
478 if (within_depth(name, namelen, 0, ps->max_depth))
479 return MATCHED_EXACTLY;
480 else
481 return 0;
482 }
483
484 name += prefix;
485 namelen -= prefix;
486
487 for (i = ps->nr - 1; i >= 0; i--) {
488 int how;
ef79b1f8
NTND
489
490 if ((!exclude && ps->items[i].magic & PATHSPEC_EXCLUDE) ||
491 ( exclude && !(ps->items[i].magic & PATHSPEC_EXCLUDE)))
492 continue;
493
61cf2820
NTND
494 if (seen && seen[i] == MATCHED_EXACTLY)
495 continue;
ef79b1f8
NTND
496 /*
497 * Make exclude patterns optional and never report
498 * "pathspec ':(exclude)foo' matches no files"
499 */
500 if (seen && ps->items[i].magic & PATHSPEC_EXCLUDE)
501 seen[i] = MATCHED_FNMATCH;
6d2df284 502 how = match_pathspec_item(istate, ps->items+i, prefix, name,
42b0874a 503 namelen, flags);
6330a171
NTND
504 if (ps->recursive &&
505 (ps->magic & PATHSPEC_MAXDEPTH) &&
506 ps->max_depth != -1 &&
61cf2820
NTND
507 how && how != MATCHED_FNMATCH) {
508 int len = ps->items[i].len;
509 if (name[len] == '/')
510 len++;
511 if (within_depth(name+len, namelen-len, 0, ps->max_depth))
512 how = MATCHED_EXACTLY;
513 else
514 how = 0;
515 }
516 if (how) {
517 if (retval < how)
518 retval = how;
519 if (seen && seen[i] < how)
520 seen[i] = how;
521 }
522 }
523 return retval;
524}
525
847a9e5d 526static int match_pathspec_with_flags(struct index_state *istate,
f1f061e1
EN
527 const struct pathspec *ps,
528 const char *name, int namelen,
529 int prefix, char *seen, unsigned flags)
ef79b1f8
NTND
530{
531 int positive, negative;
6d2df284 532 positive = do_match_pathspec(istate, ps, name, namelen,
42b0874a 533 prefix, seen, flags);
ef79b1f8
NTND
534 if (!(ps->magic & PATHSPEC_EXCLUDE) || !positive)
535 return positive;
6d2df284 536 negative = do_match_pathspec(istate, ps, name, namelen,
42b0874a
NTND
537 prefix, seen,
538 flags | DO_MATCH_EXCLUDE);
ef79b1f8
NTND
539 return negative ? 0 : positive;
540}
541
847a9e5d 542int match_pathspec(struct index_state *istate,
f1f061e1
EN
543 const struct pathspec *ps,
544 const char *name, int namelen,
545 int prefix, char *seen, int is_dir)
546{
547 unsigned flags = is_dir ? DO_MATCH_DIRECTORY : 0;
548 return match_pathspec_with_flags(istate, ps, name, namelen,
549 prefix, seen, flags);
550}
551
75a6315f
BW
552/**
553 * Check if a submodule is a superset of the pathspec
554 */
847a9e5d 555int submodule_path_match(struct index_state *istate,
6d2df284 556 const struct pathspec *ps,
75a6315f
BW
557 const char *submodule_name,
558 char *seen)
559{
f1f061e1
EN
560 int matched = match_pathspec_with_flags(istate, ps, submodule_name,
561 strlen(submodule_name),
562 0, seen,
563 DO_MATCH_DIRECTORY |
564 DO_MATCH_LEADING_PATHSPEC);
75a6315f
BW
565 return matched;
566}
567
777c55a6 568int report_path_error(const char *ps_matched,
c5c33504 569 const struct pathspec *pathspec)
777c55a6
JH
570{
571 /*
572 * Make sure all pathspec matched; otherwise it is an error.
573 */
777c55a6
JH
574 int num, errors = 0;
575 for (num = 0; num < pathspec->nr; num++) {
576 int other, found_dup;
577
578 if (ps_matched[num])
579 continue;
580 /*
581 * The caller might have fed identical pathspec
582 * twice. Do not barf on such a mistake.
583 * FIXME: parse_pathspec should have eliminated
584 * duplicate pathspec.
585 */
586 for (found_dup = other = 0;
587 !found_dup && other < pathspec->nr;
588 other++) {
589 if (other == num || !ps_matched[other])
590 continue;
591 if (!strcmp(pathspec->items[other].original,
592 pathspec->items[num].original))
593 /*
594 * Ok, we have a match already.
595 */
596 found_dup = 1;
597 }
598 if (found_dup)
599 continue;
600
a80897c1 601 error(_("pathspec '%s' did not match any file(s) known to git"),
777c55a6
JH
602 pathspec->items[num].original);
603 errors++;
604 }
777c55a6
JH
605 return errors;
606}
607
fcd631ed
NTND
608/*
609 * Return the length of the "simple" part of a path match limiter.
610 */
87323bda 611int simple_length(const char *match)
fcd631ed
NTND
612{
613 int len = -1;
614
615 for (;;) {
616 unsigned char c = *match++;
617 len++;
618 if (c == '\0' || is_glob_special(c))
619 return len;
620 }
621}
622
87323bda 623int no_wildcard(const char *string)
68492fc7 624{
fcd631ed 625 return string[simple_length(string)] == '\0';
68492fc7
LK
626}
627
65edd96a 628void parse_path_pattern(const char **pattern,
82dce998 629 int *patternlen,
f8708998 630 unsigned *flags,
82dce998 631 int *nowildcardlen)
84460eec
NTND
632{
633 const char *p = *pattern;
634 size_t i, len;
635
636 *flags = 0;
637 if (*p == '!') {
4ff89ee5 638 *flags |= PATTERN_FLAG_NEGATIVE;
84460eec
NTND
639 p++;
640 }
641 len = strlen(p);
642 if (len && p[len - 1] == '/') {
643 len--;
4ff89ee5 644 *flags |= PATTERN_FLAG_MUSTBEDIR;
84460eec
NTND
645 }
646 for (i = 0; i < len; i++) {
647 if (p[i] == '/')
648 break;
649 }
650 if (i == len)
4ff89ee5 651 *flags |= PATTERN_FLAG_NODIR;
84460eec
NTND
652 *nowildcardlen = simple_length(p);
653 /*
654 * we should have excluded the trailing slash from 'p' too,
655 * but that's one more allocation. Instead just make sure
656 * nowildcardlen does not exceed real patternlen
657 */
658 if (*nowildcardlen > len)
659 *nowildcardlen = len;
660 if (*p == '*' && no_wildcard(p + 1))
4ff89ee5 661 *flags |= PATTERN_FLAG_ENDSWITH;
84460eec
NTND
662 *pattern = p;
663 *patternlen = len;
664}
665
5cf88fd8 666int pl_hashmap_cmp(const void *cmp_data UNUSED,
af09ce24
DS
667 const struct hashmap_entry *a,
668 const struct hashmap_entry *b,
5cf88fd8 669 const void *key UNUSED)
96cc8ab5
DS
670{
671 const struct pattern_entry *ee1 =
672 container_of(a, struct pattern_entry, ent);
673 const struct pattern_entry *ee2 =
674 container_of(b, struct pattern_entry, ent);
675
676 size_t min_len = ee1->patternlen <= ee2->patternlen
677 ? ee1->patternlen
678 : ee2->patternlen;
679
f7669676 680 return fspathncmp(ee1->pattern, ee2->pattern, min_len);
96cc8ab5
DS
681}
682
4f52c2ce
DS
683static char *dup_and_filter_pattern(const char *pattern)
684{
685 char *set, *read;
686 size_t count = 0;
687 char *result = xstrdup(pattern);
688
689 set = result;
690 read = result;
691
692 while (*read) {
693 /* skip escape characters (once) */
694 if (*read == '\\')
695 read++;
696
697 *set = *read;
698
699 set++;
700 read++;
701 count++;
702 }
703 *set = 0;
704
705 if (count > 2 &&
706 *(set - 1) == '*' &&
707 *(set - 2) == '/')
708 *(set - 2) = 0;
709
710 return result;
711}
712
96cc8ab5
DS
713static void add_pattern_to_hashsets(struct pattern_list *pl, struct path_pattern *given)
714{
715 struct pattern_entry *translated;
716 char *truncated;
717 char *data = NULL;
9abc60f8 718 const char *prev, *cur, *next;
96cc8ab5
DS
719
720 if (!pl->use_cone_patterns)
721 return;
722
723 if (given->flags & PATTERN_FLAG_NEGATIVE &&
724 given->flags & PATTERN_FLAG_MUSTBEDIR &&
725 !strcmp(given->pattern, "/*")) {
726 pl->full_cone = 0;
727 return;
728 }
729
730 if (!given->flags && !strcmp(given->pattern, "/*")) {
731 pl->full_cone = 1;
732 return;
733 }
734
6c11c6a1 735 if (given->patternlen < 2 ||
a3eca584 736 *given->pattern != '/' ||
9e6d3e64 737 strstr(given->pattern, "**")) {
41de0c6f
DS
738 /* Not a cone pattern. */
739 warning(_("unrecognized pattern: '%s'"), given->pattern);
740 goto clear_hashmaps;
741 }
742
5842710d
WS
743 if (!(given->flags & PATTERN_FLAG_MUSTBEDIR) &&
744 strcmp(given->pattern, "/*")) {
745 /* Not a cone pattern. */
746 warning(_("unrecognized pattern: '%s'"), given->pattern);
747 goto clear_hashmaps;
748 }
749
9abc60f8
DS
750 prev = given->pattern;
751 cur = given->pattern + 1;
752 next = given->pattern + 2;
753
754 while (*cur) {
755 /* Watch for glob characters '*', '\', '[', '?' */
756 if (!is_glob_special(*cur))
757 goto increment;
758
759 /* But only if *prev != '\\' */
760 if (*prev == '\\')
761 goto increment;
762
763 /* But allow the initial '\' */
764 if (*cur == '\\' &&
765 is_glob_special(*next))
766 goto increment;
767
768 /* But a trailing '/' then '*' is fine */
769 if (*prev == '/' &&
770 *cur == '*' &&
771 *next == 0)
772 goto increment;
773
774 /* Not a cone pattern. */
775 warning(_("unrecognized pattern: '%s'"), given->pattern);
776 goto clear_hashmaps;
777
778 increment:
779 prev++;
780 cur++;
781 next++;
782 }
783
96cc8ab5
DS
784 if (given->patternlen > 2 &&
785 !strcmp(given->pattern + given->patternlen - 2, "/*")) {
786 if (!(given->flags & PATTERN_FLAG_NEGATIVE)) {
787 /* Not a cone pattern. */
96cc8ab5
DS
788 warning(_("unrecognized pattern: '%s'"), given->pattern);
789 goto clear_hashmaps;
790 }
791
4f52c2ce 792 truncated = dup_and_filter_pattern(given->pattern);
96cc8ab5
DS
793
794 translated = xmalloc(sizeof(struct pattern_entry));
795 translated->pattern = truncated;
796 translated->patternlen = given->patternlen - 2;
797 hashmap_entry_init(&translated->ent,
74318423 798 fspathhash(translated->pattern));
96cc8ab5
DS
799
800 if (!hashmap_get_entry(&pl->recursive_hashmap,
801 translated, ent, NULL)) {
802 /* We did not see the "parent" included */
803 warning(_("unrecognized negative pattern: '%s'"),
804 given->pattern);
805 free(truncated);
806 free(translated);
807 goto clear_hashmaps;
808 }
809
810 hashmap_add(&pl->parent_hashmap, &translated->ent);
811 hashmap_remove(&pl->recursive_hashmap, &translated->ent, &data);
812 free(data);
813 return;
814 }
815
816 if (given->flags & PATTERN_FLAG_NEGATIVE) {
817 warning(_("unrecognized negative pattern: '%s'"),
818 given->pattern);
819 goto clear_hashmaps;
820 }
821
822 translated = xmalloc(sizeof(struct pattern_entry));
823
4f52c2ce 824 translated->pattern = dup_and_filter_pattern(given->pattern);
96cc8ab5
DS
825 translated->patternlen = given->patternlen;
826 hashmap_entry_init(&translated->ent,
74318423 827 fspathhash(translated->pattern));
96cc8ab5
DS
828
829 hashmap_add(&pl->recursive_hashmap, &translated->ent);
830
831 if (hashmap_get_entry(&pl->parent_hashmap, translated, ent, NULL)) {
832 /* we already included this at the parent level */
833 warning(_("your sparse-checkout file may have issues: pattern '%s' is repeated"),
834 given->pattern);
a481d437 835 goto clear_hashmaps;
96cc8ab5
DS
836 }
837
838 return;
839
840clear_hashmaps:
841 warning(_("disabling cone pattern matching"));
6da1a258
EN
842 hashmap_clear_and_free(&pl->parent_hashmap, struct pattern_entry, ent);
843 hashmap_clear_and_free(&pl->recursive_hashmap, struct pattern_entry, ent);
96cc8ab5
DS
844 pl->use_cone_patterns = 0;
845}
846
847static int hashmap_contains_path(struct hashmap *map,
848 struct strbuf *pattern)
849{
850 struct pattern_entry p;
851
852 /* Check straight mapping */
853 p.pattern = pattern->buf;
854 p.patternlen = pattern->len;
74318423 855 hashmap_entry_init(&p.ent, fspathhash(p.pattern));
96cc8ab5
DS
856 return !!hashmap_get_entry(map, &p, ent, NULL);
857}
858
859int hashmap_contains_parent(struct hashmap *map,
860 const char *path,
861 struct strbuf *buffer)
862{
863 char *slash_pos;
864
865 strbuf_setlen(buffer, 0);
866
867 if (path[0] != '/')
868 strbuf_addch(buffer, '/');
869
870 strbuf_addstr(buffer, path);
871
872 slash_pos = strrchr(buffer->buf, '/');
873
874 while (slash_pos > buffer->buf) {
875 strbuf_setlen(buffer, slash_pos - buffer->buf);
876
877 if (hashmap_contains_path(map, buffer))
878 return 1;
879
880 slash_pos = strrchr(buffer->buf, '/');
881 }
882
883 return 0;
884}
885
65edd96a 886void add_pattern(const char *string, const char *base,
caa3d554 887 int baselen, struct pattern_list *pl, int srcpos)
453ec4bd 888{
ab8db613 889 struct path_pattern *pattern;
84460eec 890 int patternlen;
f8708998 891 unsigned flags;
84460eec 892 int nowildcardlen;
453ec4bd 893
65edd96a 894 parse_path_pattern(&string, &patternlen, &flags, &nowildcardlen);
4ff89ee5 895 if (flags & PATTERN_FLAG_MUSTBEDIR) {
ab8db613 896 FLEXPTR_ALLOC_MEM(pattern, pattern, string, patternlen);
d6b8fc30 897 } else {
ab8db613
DS
898 pattern = xmalloc(sizeof(*pattern));
899 pattern->pattern = string;
d6b8fc30 900 }
ab8db613
DS
901 pattern->patternlen = patternlen;
902 pattern->nowildcardlen = nowildcardlen;
903 pattern->base = base;
904 pattern->baselen = baselen;
905 pattern->flags = flags;
906 pattern->srcpos = srcpos;
caa3d554
DS
907 ALLOC_GROW(pl->patterns, pl->nr + 1, pl->alloc);
908 pl->patterns[pl->nr++] = pattern;
909 pattern->pl = pl;
96cc8ab5
DS
910
911 add_pattern_to_hashsets(pl, pattern);
453ec4bd
LT
912}
913
847a9e5d 914static int read_skip_worktree_file_from_index(struct index_state *istate,
578d81d0 915 const char *path,
4b33e602
PO
916 size_t *size_out, char **data_out,
917 struct oid_stat *oid_stat)
c28b3d6e
NTND
918{
919 int pos, len;
c28b3d6e
NTND
920
921 len = strlen(path);
6f52b741 922 pos = index_name_pos(istate, path, len);
c28b3d6e 923 if (pos < 0)
578d81d0 924 return -1;
6f52b741 925 if (!ce_skip_worktree(istate->cache[pos]))
578d81d0
JH
926 return -1;
927
4b33e602 928 return do_read_blob(&istate->cache[pos]->oid, oid_stat, size_out, data_out);
c28b3d6e
NTND
929}
930
f6198812 931/*
caa3d554
DS
932 * Frees memory within pl which was allocated for exclude patterns and
933 * the file buffer. Does not free pl itself.
f6198812 934 */
65edd96a 935void clear_pattern_list(struct pattern_list *pl)
0fd0e241
NTND
936{
937 int i;
938
caa3d554
DS
939 for (i = 0; i < pl->nr; i++)
940 free(pl->patterns[i]);
941 free(pl->patterns);
942 free(pl->filebuf);
6da1a258
EN
943 hashmap_clear_and_free(&pl->recursive_hashmap, struct pattern_entry, ent);
944 hashmap_clear_and_free(&pl->parent_hashmap, struct pattern_entry, ent);
0fd0e241 945
caa3d554 946 memset(pl, 0, sizeof(*pl));
0fd0e241
NTND
947}
948
7e2e4b37 949static void trim_trailing_spaces(char *buf)
16402b99 950{
e61a6c1d
PB
951 char *p, *last_space = NULL;
952
953 for (p = buf; *p; p++)
954 switch (*p) {
955 case ' ':
956 if (!last_space)
957 last_space = p;
958 break;
959 case '\\':
960 p++;
961 if (!*p)
962 return;
963 /* fallthrough */
964 default:
965 last_space = NULL;
966 }
967
968 if (last_space)
969 *last_space = '\0';
16402b99
NTND
970}
971
0dcb8d7f
NTND
972/*
973 * Given a subdirectory name and "dir" of the current directory,
974 * search the subdir in "dir" and return it, or create a new one if it
975 * does not exist in "dir".
976 *
977 * If "name" has the trailing slash, it'll be excluded in the search.
978 */
979static struct untracked_cache_dir *lookup_untracked(struct untracked_cache *uc,
980 struct untracked_cache_dir *dir,
981 const char *name, int len)
982{
983 int first, last;
984 struct untracked_cache_dir *d;
985 if (!dir)
986 return NULL;
987 if (len && name[len - 1] == '/')
988 len--;
989 first = 0;
990 last = dir->dirs_nr;
991 while (last > first) {
568a05c5 992 int cmp, next = first + ((last - first) >> 1);
0dcb8d7f
NTND
993 d = dir->dirs[next];
994 cmp = strncmp(name, d->name, len);
995 if (!cmp && strlen(d->name) > len)
996 cmp = -1;
997 if (!cmp)
998 return d;
999 if (cmp < 0) {
1000 last = next;
1001 continue;
1002 }
1003 first = next+1;
1004 }
1005
1006 uc->dir_created++;
96ffc06f 1007 FLEX_ALLOC_MEM(d, name, name, len);
0dcb8d7f
NTND
1008
1009 ALLOC_GROW(dir->dirs, dir->dirs_nr + 1, dir->dirs_alloc);
f919ffeb
SG
1010 MOVE_ARRAY(dir->dirs + first + 1, dir->dirs + first,
1011 dir->dirs_nr - first);
0dcb8d7f
NTND
1012 dir->dirs_nr++;
1013 dir->dirs[first] = d;
1014 return d;
1015}
1016
ccad261f
NTND
1017static void do_invalidate_gitignore(struct untracked_cache_dir *dir)
1018{
1019 int i;
1020 dir->valid = 0;
1021 dir->untracked_nr = 0;
1022 for (i = 0; i < dir->dirs_nr; i++)
1023 do_invalidate_gitignore(dir->dirs[i]);
1024}
1025
1026static void invalidate_gitignore(struct untracked_cache *uc,
1027 struct untracked_cache_dir *dir)
1028{
1029 uc->gitignore_invalidated++;
1030 do_invalidate_gitignore(dir);
1031}
1032
91a2288b
NTND
1033static void invalidate_directory(struct untracked_cache *uc,
1034 struct untracked_cache_dir *dir)
1035{
26cb0182 1036 int i;
b6403131
NTND
1037
1038 /*
1039 * Invalidation increment here is just roughly correct. If
1040 * untracked_nr or any of dirs[].recurse is non-zero, we
1041 * should increment dir_invalidated too. But that's more
1042 * expensive to do.
1043 */
1044 if (dir->valid)
1045 uc->dir_invalidated++;
1046
91a2288b
NTND
1047 dir->valid = 0;
1048 dir->untracked_nr = 0;
26cb0182
NTND
1049 for (i = 0; i < dir->dirs_nr; i++)
1050 dir->dirs[i]->recurse = 0;
91a2288b
NTND
1051}
1052
65edd96a 1053static int add_patterns_from_buffer(char *buf, size_t size,
578d81d0 1054 const char *base, int baselen,
caa3d554 1055 struct pattern_list *pl);
578d81d0 1056
feb9b779
JK
1057/* Flags for add_patterns() */
1058#define PATTERN_NOFOLLOW (1<<0)
1059
55fe6f51
NTND
1060/*
1061 * Given a file with name "fname", read it (either from disk, or from
473e3930 1062 * an index if 'istate' is non-null), parse it and store the
caa3d554 1063 * exclude rules in "pl".
55fe6f51 1064 *
e5cf6d3d 1065 * If "oid_stat" is not NULL, compute oid of the exclude file and fill
65edd96a 1066 * stat data from disk (only valid if add_patterns returns zero). If
e5cf6d3d 1067 * oid_stat.valid is non-zero, "oid_stat" must contain good value as input.
55fe6f51 1068 */
65edd96a 1069static int add_patterns(const char *fname, const char *base, int baselen,
caa3d554 1070 struct pattern_list *pl, struct index_state *istate,
1679d60b 1071 unsigned flags, struct oid_stat *oid_stat)
453ec4bd 1072{
c470701a 1073 struct stat st;
578d81d0
JH
1074 int r;
1075 int fd;
9d14017a 1076 size_t size = 0;
578d81d0 1077 char *buf;
453ec4bd 1078
feb9b779
JK
1079 if (flags & PATTERN_NOFOLLOW)
1080 fd = open_nofollow(fname, O_RDONLY);
1081 else
1082 fd = open(fname, O_RDONLY);
1083
c28b3d6e 1084 if (fd < 0 || fstat(fd, &st) < 0) {
11dc1fcb
NTND
1085 if (fd < 0)
1086 warn_on_fopen_errors(fname);
1087 else
c28b3d6e 1088 close(fd);
578d81d0 1089 if (!istate)
c28b3d6e 1090 return -1;
578d81d0
JH
1091 r = read_skip_worktree_file_from_index(istate, fname,
1092 &size, &buf,
4b33e602 1093 oid_stat);
578d81d0
JH
1094 if (r != 1)
1095 return r;
d961baa8 1096 } else {
c28b3d6e
NTND
1097 size = xsize_t(st.st_size);
1098 if (size == 0) {
4b33e602
PO
1099 if (oid_stat) {
1100 fill_stat_data(&oid_stat->stat, &st);
ba2df751 1101 oidcpy(&oid_stat->oid, the_hash_algo->empty_blob);
4b33e602 1102 oid_stat->valid = 1;
55fe6f51 1103 }
c28b3d6e
NTND
1104 close(fd);
1105 return 0;
1106 }
3733e694 1107 buf = xmallocz(size);
c28b3d6e 1108 if (read_in_full(fd, buf, size) != size) {
45d76f17 1109 free(buf);
c28b3d6e
NTND
1110 close(fd);
1111 return -1;
1112 }
45d76f17 1113 buf[size++] = '\n';
c28b3d6e 1114 close(fd);
4b33e602 1115 if (oid_stat) {
55fe6f51 1116 int pos;
4b33e602
PO
1117 if (oid_stat->valid &&
1118 !match_stat_data_racy(istate, &oid_stat->stat, &st))
e5cf6d3d 1119 ; /* no content change, oid_stat->oid still good */
473e3930
BW
1120 else if (istate &&
1121 (pos = index_name_pos(istate, fname, strlen(fname))) >= 0 &&
1122 !ce_stage(istate->cache[pos]) &&
1123 ce_uptodate(istate->cache[pos]) &&
82b474e0 1124 !would_convert_to_git(istate, fname))
4b33e602
PO
1125 oidcpy(&oid_stat->oid,
1126 &istate->cache[pos]->oid);
55fe6f51 1127 else
2dcde20e 1128 hash_object_file(the_hash_algo, buf, size,
44439c1c 1129 OBJ_BLOB, &oid_stat->oid);
4b33e602
PO
1130 fill_stat_data(&oid_stat->stat, &st);
1131 oid_stat->valid = 1;
55fe6f51 1132 }
6ba78238 1133 }
453ec4bd 1134
65edd96a 1135 add_patterns_from_buffer(buf, size, base, baselen, pl);
578d81d0
JH
1136 return 0;
1137}
1138
65edd96a 1139static int add_patterns_from_buffer(char *buf, size_t size,
578d81d0 1140 const char *base, int baselen,
caa3d554 1141 struct pattern_list *pl)
578d81d0
JH
1142{
1143 int i, lineno = 1;
1144 char *entry;
1145
96cc8ab5
DS
1146 hashmap_init(&pl->recursive_hashmap, pl_hashmap_cmp, NULL, 0);
1147 hashmap_init(&pl->parent_hashmap, pl_hashmap_cmp, NULL, 0);
1148
caa3d554 1149 pl->filebuf = buf;
245e1c19 1150
dde843e7 1151 if (skip_utf8_bom(&buf, size))
caa3d554 1152 size -= buf - pl->filebuf;
dde843e7 1153
453ec4bd 1154 entry = buf;
245e1c19 1155
45d76f17
NTND
1156 for (i = 0; i < size; i++) {
1157 if (buf[i] == '\n') {
453ec4bd
LT
1158 if (entry != buf + i && entry[0] != '#') {
1159 buf[i - (i && buf[i-1] == '\r')] = 0;
7e2e4b37 1160 trim_trailing_spaces(entry);
65edd96a 1161 add_pattern(entry, base, baselen, pl, lineno);
453ec4bd 1162 }
c04318e4 1163 lineno++;
453ec4bd
LT
1164 entry = buf + i + 1;
1165 }
1166 }
1167 return 0;
453ec4bd
LT
1168}
1169
65edd96a 1170int add_patterns_from_file_to_list(const char *fname, const char *base,
caa3d554 1171 int baselen, struct pattern_list *pl,
1679d60b
JK
1172 struct index_state *istate,
1173 unsigned flags)
55fe6f51 1174{
1679d60b 1175 return add_patterns(fname, base, baselen, pl, istate, flags, NULL);
55fe6f51
NTND
1176}
1177
65edd96a 1178int add_patterns_from_blob_to_list(
578d81d0
JH
1179 struct object_id *oid,
1180 const char *base, int baselen,
caa3d554 1181 struct pattern_list *pl)
578d81d0
JH
1182{
1183 char *buf;
1184 size_t size;
1185 int r;
1186
1187 r = do_read_blob(oid, NULL, &size, &buf);
1188 if (r != 1)
1189 return r;
1190
65edd96a 1191 add_patterns_from_buffer(buf, size, base, baselen, pl);
578d81d0
JH
1192 return 0;
1193}
1194
65edd96a 1195struct pattern_list *add_pattern_list(struct dir_struct *dir,
c04318e4 1196 int group_type, const char *src)
c082df24 1197{
caa3d554 1198 struct pattern_list *pl;
c082df24
AS
1199 struct exclude_list_group *group;
1200
5fdf285e 1201 group = &dir->internal.exclude_list_group[group_type];
caa3d554
DS
1202 ALLOC_GROW(group->pl, group->nr + 1, group->alloc);
1203 pl = &group->pl[group->nr++];
1204 memset(pl, 0, sizeof(*pl));
1205 pl->src = src;
1206 return pl;
c082df24
AS
1207}
1208
1209/*
1210 * Used to set up core.excludesfile and .git/info/exclude lists.
1211 */
65edd96a 1212static void add_patterns_from_file_1(struct dir_struct *dir, const char *fname,
4b33e602 1213 struct oid_stat *oid_stat)
453ec4bd 1214{
caa3d554 1215 struct pattern_list *pl;
ccad261f
NTND
1216 /*
1217 * catch setup_standard_excludes() that's called before
1218 * dir->untracked is assigned. That function behaves
1219 * differently when dir->untracked is non-NULL.
1220 */
1221 if (!dir->untracked)
5fdf285e 1222 dir->internal.unmanaged_exclude_files++;
65edd96a 1223 pl = add_pattern_list(dir, EXC_FILE, fname);
1679d60b 1224 if (add_patterns(fname, "", 0, pl, NULL, 0, oid_stat) < 0)
a80897c1 1225 die(_("cannot use %s as an exclude file"), fname);
453ec4bd
LT
1226}
1227
65edd96a 1228void add_patterns_from_file(struct dir_struct *dir, const char *fname)
0dcb8d7f 1229{
5fdf285e 1230 dir->internal.unmanaged_exclude_files++; /* see validate_untracked_cache() */
65edd96a 1231 add_patterns_from_file_1(dir, fname, NULL);
0dcb8d7f
NTND
1232}
1233
82dce998
NTND
1234int match_basename(const char *basename, int basenamelen,
1235 const char *pattern, int prefix, int patternlen,
f8708998 1236 unsigned flags)
593cb880
NTND
1237{
1238 if (prefix == patternlen) {
0b6e56df 1239 if (patternlen == basenamelen &&
ba0897e6 1240 !fspathncmp(pattern, basename, basenamelen))
593cb880 1241 return 1;
4ff89ee5 1242 } else if (flags & PATTERN_FLAG_ENDSWITH) {
0b6e56df 1243 /* "*literal" matching against "fooliteral" */
593cb880 1244 if (patternlen - 1 <= basenamelen &&
ba0897e6 1245 !fspathncmp(pattern + 1,
0b6e56df
JH
1246 basename + basenamelen - (patternlen - 1),
1247 patternlen - 1))
593cb880
NTND
1248 return 1;
1249 } else {
0b6e56df
JH
1250 if (fnmatch_icase_mem(pattern, patternlen,
1251 basename, basenamelen,
1252 0) == 0)
593cb880
NTND
1253 return 1;
1254 }
1255 return 0;
1256}
1257
82dce998
NTND
1258int match_pathname(const char *pathname, int pathlen,
1259 const char *base, int baselen,
77651c03 1260 const char *pattern, int prefix, int patternlen)
b5592632
NTND
1261{
1262 const char *name;
1263 int namelen;
1264
1265 /*
1266 * match with FNM_PATHNAME; the pattern has base implicitly
1267 * in front of it.
1268 */
1269 if (*pattern == '/') {
1270 pattern++;
982ac873 1271 patternlen--;
b5592632
NTND
1272 prefix--;
1273 }
1274
1275 /*
1276 * baselen does not count the trailing slash. base[] may or
1277 * may not end with a trailing slash though.
1278 */
1279 if (pathlen < baselen + 1 ||
1280 (baselen && pathname[baselen] != '/') ||
ba0897e6 1281 fspathncmp(pathname, base, baselen))
b5592632
NTND
1282 return 0;
1283
1284 namelen = baselen ? pathlen - baselen - 1 : pathlen;
1285 name = pathname + pathlen - namelen;
1286
1287 if (prefix) {
1288 /*
1289 * if the non-wildcard part is longer than the
1290 * remaining pathname, surely it cannot match.
1291 */
1292 if (prefix > namelen)
1293 return 0;
1294
ba0897e6 1295 if (fspathncmp(pattern, name, prefix))
b5592632
NTND
1296 return 0;
1297 pattern += prefix;
ab3aebc1 1298 patternlen -= prefix;
b5592632
NTND
1299 name += prefix;
1300 namelen -= prefix;
ab3aebc1
JK
1301
1302 /*
1303 * If the whole pattern did not have a wildcard,
1304 * then our prefix match is all we need; we
1305 * do not need to call fnmatch at all.
1306 */
5ceb663e 1307 if (!patternlen && !namelen)
ab3aebc1 1308 return 1;
b5592632
NTND
1309 }
1310
ab3aebc1
JK
1311 return fnmatch_icase_mem(pattern, patternlen,
1312 name, namelen,
f30366b2 1313 WM_PATHNAME) == 0;
b5592632
NTND
1314}
1315
578cd7c3
AS
1316/*
1317 * Scan the given exclude list in reverse to see whether pathname
1318 * should be ignored. The first match (i.e. the last on the list), if
1319 * any, determines the fate. Returns the exclude_list element which
1320 * matched, or NULL for undecided.
453ec4bd 1321 */
65edd96a 1322static struct path_pattern *last_matching_pattern_from_list(const char *pathname,
578cd7c3
AS
1323 int pathlen,
1324 const char *basename,
1325 int *dtype,
caa3d554 1326 struct pattern_list *pl,
2b70e88d 1327 struct index_state *istate)
453ec4bd 1328{
ab8db613 1329 struct path_pattern *res = NULL; /* undecided */
5cee3493 1330 int i;
453ec4bd 1331
caa3d554 1332 if (!pl->nr)
578cd7c3 1333 return NULL; /* undefined */
d6b8fc30 1334
caa3d554
DS
1335 for (i = pl->nr - 1; 0 <= i; i--) {
1336 struct path_pattern *pattern = pl->patterns[i];
ab8db613
DS
1337 const char *exclude = pattern->pattern;
1338 int prefix = pattern->nowildcardlen;
35a94d44 1339
33c5d6c8
DS
1340 if (pattern->flags & PATTERN_FLAG_MUSTBEDIR) {
1341 *dtype = resolve_dtype(*dtype, istate, pathname, pathlen);
1342 if (*dtype != DT_DIR)
1343 continue;
1344 }
d6b8fc30 1345
4ff89ee5 1346 if (pattern->flags & PATTERN_FLAG_NODIR) {
593cb880
NTND
1347 if (match_basename(basename,
1348 pathlen - (basename - pathname),
ab8db613
DS
1349 exclude, prefix, pattern->patternlen,
1350 pattern->flags)) {
1351 res = pattern;
e6efecc4
NTND
1352 break;
1353 }
35a94d44
NTND
1354 continue;
1355 }
1356
ab8db613
DS
1357 assert(pattern->baselen == 0 ||
1358 pattern->base[pattern->baselen - 1] == '/');
b5592632 1359 if (match_pathname(pathname, pathlen,
ab8db613
DS
1360 pattern->base,
1361 pattern->baselen ? pattern->baselen - 1 : 0,
77651c03 1362 exclude, prefix, pattern->patternlen)) {
ab8db613 1363 res = pattern;
e6efecc4
NTND
1364 break;
1365 }
453ec4bd 1366 }
ab8db613 1367 return res;
578cd7c3
AS
1368}
1369
1370/*
468ce99b
DS
1371 * Scan the list of patterns to determine if the ordered list
1372 * of patterns matches on 'pathname'.
1373 *
1374 * Return 1 for a match, 0 for not matched and -1 for undecided.
578cd7c3 1375 */
468ce99b
DS
1376enum pattern_match_result path_matches_pattern_list(
1377 const char *pathname, int pathlen,
1378 const char *basename, int *dtype,
1379 struct pattern_list *pl,
1380 struct index_state *istate)
578cd7c3 1381{
ab8db613 1382 struct path_pattern *pattern;
96cc8ab5
DS
1383 struct strbuf parent_pathname = STRBUF_INIT;
1384 int result = NOT_MATCHED;
69bdbdb0 1385 size_t slash_pos;
96cc8ab5
DS
1386
1387 if (!pl->use_cone_patterns) {
1388 pattern = last_matching_pattern_from_list(pathname, pathlen, basename,
1389 dtype, pl, istate);
1390 if (pattern) {
1391 if (pattern->flags & PATTERN_FLAG_NEGATIVE)
1392 return NOT_MATCHED;
1393 else
1394 return MATCHED;
1395 }
1396
1397 return UNDECIDED;
1398 }
1399
1400 if (pl->full_cone)
1401 return MATCHED;
1402
1403 strbuf_addch(&parent_pathname, '/');
1404 strbuf_add(&parent_pathname, pathname, pathlen);
1405
69bdbdb0
DS
1406 /*
1407 * Directory entries are matched if and only if a file
1408 * contained immediately within them is matched. For the
1409 * case of a directory entry, modify the path to create
1410 * a fake filename within this directory, allowing us to
1411 * use the file-base matching logic in an equivalent way.
1412 */
1413 if (parent_pathname.len > 0 &&
1414 parent_pathname.buf[parent_pathname.len - 1] == '/') {
1415 slash_pos = parent_pathname.len - 1;
1416 strbuf_add(&parent_pathname, "-", 1);
1417 } else {
1418 const char *slash_ptr = strrchr(parent_pathname.buf, '/');
1419 slash_pos = slash_ptr ? slash_ptr - parent_pathname.buf : 0;
1420 }
1421
96cc8ab5
DS
1422 if (hashmap_contains_path(&pl->recursive_hashmap,
1423 &parent_pathname)) {
eb42feca 1424 result = MATCHED_RECURSIVE;
96cc8ab5 1425 goto done;
468ce99b
DS
1426 }
1427
69bdbdb0 1428 if (!slash_pos) {
96cc8ab5
DS
1429 /* include every file in root */
1430 result = MATCHED;
1431 goto done;
1432 }
1433
69bdbdb0 1434 strbuf_setlen(&parent_pathname, slash_pos);
96cc8ab5
DS
1435
1436 if (hashmap_contains_path(&pl->parent_hashmap, &parent_pathname)) {
1437 result = MATCHED;
1438 goto done;
1439 }
1440
1441 if (hashmap_contains_parent(&pl->recursive_hashmap,
1442 pathname,
1443 &parent_pathname))
eb42feca 1444 result = MATCHED_RECURSIVE;
96cc8ab5
DS
1445
1446done:
1447 strbuf_release(&parent_pathname);
1448 return result;
453ec4bd
LT
1449}
1450
02155c8c
DS
1451int init_sparse_checkout_patterns(struct index_state *istate)
1452{
1453 if (!core_apply_sparse_checkout)
1454 return 1;
1455 if (istate->sparse_checkout_patterns)
1456 return 0;
1457
1458 CALLOC_ARRAY(istate->sparse_checkout_patterns, 1);
1459
1460 if (get_sparse_checkout_patterns(istate->sparse_checkout_patterns) < 0) {
1461 FREE_AND_NULL(istate->sparse_checkout_patterns);
1462 return -1;
1463 }
1464
1465 return 0;
1466}
1467
1468static int path_in_sparse_checkout_1(const char *path,
1469 struct index_state *istate,
1470 int require_cone_mode)
1471{
02155c8c 1472 int dtype = DT_REG;
20141e32
MT
1473 enum pattern_match_result match = UNDECIDED;
1474 const char *end, *slash;
02155c8c
DS
1475
1476 /*
287fd17e
VD
1477 * We default to accepting a path if the path is empty, there are no
1478 * patterns, or the patterns are of the wrong type.
02155c8c 1479 */
287fd17e
VD
1480 if (!*path ||
1481 init_sparse_checkout_patterns(istate) ||
02155c8c
DS
1482 (require_cone_mode &&
1483 !istate->sparse_checkout_patterns->use_cone_patterns))
1484 return 1;
1485
20141e32
MT
1486 /*
1487 * If UNDECIDED, use the match from the parent dir (recursively), or
1488 * fall back to NOT_MATCHED at the topmost level. Note that cone mode
1489 * never returns UNDECIDED, so we will execute only one iteration in
1490 * this case.
1491 */
1492 for (end = path + strlen(path);
1493 end > path && match == UNDECIDED;
1494 end = slash) {
1495
1496 for (slash = end - 1; slash > path && *slash != '/'; slash--)
1497 ; /* do nothing */
1498
1499 match = path_matches_pattern_list(path, end - path,
1500 slash > path ? slash + 1 : path, &dtype,
1501 istate->sparse_checkout_patterns, istate);
1502
1503 /* We are going to match the parent dir now */
1504 dtype = DT_DIR;
1505 }
1506 return match > 0;
02155c8c
DS
1507}
1508
1509int path_in_sparse_checkout(const char *path,
1510 struct index_state *istate)
1511{
1512 return path_in_sparse_checkout_1(path, istate, 0);
1513}
1514
1515int path_in_cone_mode_sparse_checkout(const char *path,
1516 struct index_state *istate)
1517{
1518 return path_in_sparse_checkout_1(path, istate, 1);
1519}
1520
65edd96a 1521static struct path_pattern *last_matching_pattern_from_lists(
ab8db613
DS
1522 struct dir_struct *dir, struct index_state *istate,
1523 const char *pathname, int pathlen,
1524 const char *basename, int *dtype_p)
46aa2f95
KB
1525{
1526 int i, j;
1527 struct exclude_list_group *group;
ab8db613 1528 struct path_pattern *pattern;
46aa2f95 1529 for (i = EXC_CMDL; i <= EXC_FILE; i++) {
5fdf285e 1530 group = &dir->internal.exclude_list_group[i];
46aa2f95 1531 for (j = group->nr - 1; j >= 0; j--) {
65edd96a 1532 pattern = last_matching_pattern_from_list(
46aa2f95 1533 pathname, pathlen, basename, dtype_p,
caa3d554 1534 &group->pl[j], istate);
ab8db613
DS
1535 if (pattern)
1536 return pattern;
46aa2f95
KB
1537 }
1538 }
1539 return NULL;
1540}
1541
6cd5c582
KB
1542/*
1543 * Loads the per-directory exclude list for the substring of base
1544 * which has a char length of baselen.
1545 */
e799ed40
BW
1546static void prep_exclude(struct dir_struct *dir,
1547 struct index_state *istate,
1548 const char *base, int baselen)
6cd5c582
KB
1549{
1550 struct exclude_list_group *group;
caa3d554 1551 struct pattern_list *pl;
6cd5c582 1552 struct exclude_stack *stk = NULL;
0dcb8d7f 1553 struct untracked_cache_dir *untracked;
6cd5c582
KB
1554 int current;
1555
5fdf285e 1556 group = &dir->internal.exclude_list_group[EXC_DIRS];
6cd5c582 1557
d961baa8
NTND
1558 /*
1559 * Pop the exclude lists from the EXCL_DIRS exclude_list_group
6cd5c582 1560 * which originate from directories not in the prefix of the
d961baa8
NTND
1561 * path being checked.
1562 */
5fdf285e 1563 while ((stk = dir->internal.exclude_stack) != NULL) {
6cd5c582 1564 if (stk->baselen <= baselen &&
5fdf285e 1565 !strncmp(dir->internal.basebuf.buf, base, stk->baselen))
6cd5c582 1566 break;
5fdf285e
EN
1567 pl = &group->pl[dir->internal.exclude_stack->exclude_ix];
1568 dir->internal.exclude_stack = stk->prev;
1569 dir->internal.pattern = NULL;
caa3d554 1570 free((char *)pl->src); /* see strbuf_detach() below */
65edd96a 1571 clear_pattern_list(pl);
6cd5c582
KB
1572 free(stk);
1573 group->nr--;
1574 }
1575
95c6f271 1576 /* Skip traversing into sub directories if the parent is excluded */
5fdf285e 1577 if (dir->internal.pattern)
95c6f271
KB
1578 return;
1579
aceb9429
NTND
1580 /*
1581 * Lazy initialization. All call sites currently just
1582 * memset(dir, 0, sizeof(*dir)) before use. Changing all of
1583 * them seems lots of work for little benefit.
1584 */
5fdf285e
EN
1585 if (!dir->internal.basebuf.buf)
1586 strbuf_init(&dir->internal.basebuf, PATH_MAX);
aceb9429 1587
6cd5c582
KB
1588 /* Read from the parent directories and push them down. */
1589 current = stk ? stk->baselen : -1;
5fdf285e 1590 strbuf_setlen(&dir->internal.basebuf, current < 0 ? 0 : current);
0dcb8d7f
NTND
1591 if (dir->untracked)
1592 untracked = stk ? stk->ucd : dir->untracked->root;
1593 else
1594 untracked = NULL;
1595
6cd5c582 1596 while (current < baselen) {
6cd5c582 1597 const char *cp;
4b33e602 1598 struct oid_stat oid_stat;
6cd5c582 1599
ca56dadb 1600 CALLOC_ARRAY(stk, 1);
6cd5c582
KB
1601 if (current < 0) {
1602 cp = base;
1603 current = 0;
d961baa8 1604 } else {
6cd5c582
KB
1605 cp = strchr(base + current + 1, '/');
1606 if (!cp)
1607 die("oops in prep_exclude");
1608 cp++;
0dcb8d7f 1609 untracked =
5fdf285e
EN
1610 lookup_untracked(dir->untracked,
1611 untracked,
0dcb8d7f
NTND
1612 base + current,
1613 cp - base - current);
6cd5c582 1614 }
5fdf285e 1615 stk->prev = dir->internal.exclude_stack;
6cd5c582 1616 stk->baselen = cp - base;
95c6f271 1617 stk->exclude_ix = group->nr;
0dcb8d7f 1618 stk->ucd = untracked;
65edd96a 1619 pl = add_pattern_list(dir, EXC_DIRS, NULL);
5fdf285e
EN
1620 strbuf_add(&dir->internal.basebuf, base + current, stk->baselen - current);
1621 assert(stk->baselen == dir->internal.basebuf.len);
95c6f271
KB
1622
1623 /* Abort if the directory is excluded */
1624 if (stk->baselen) {
1625 int dt = DT_DIR;
5fdf285e
EN
1626 dir->internal.basebuf.buf[stk->baselen - 1] = 0;
1627 dir->internal.pattern = last_matching_pattern_from_lists(dir,
e799ed40 1628 istate,
5fdf285e
EN
1629 dir->internal.basebuf.buf, stk->baselen - 1,
1630 dir->internal.basebuf.buf + current, &dt);
1631 dir->internal.basebuf.buf[stk->baselen - 1] = '/';
1632 if (dir->internal.pattern &&
1633 dir->internal.pattern->flags & PATTERN_FLAG_NEGATIVE)
1634 dir->internal.pattern = NULL;
1635 if (dir->internal.pattern) {
1636 dir->internal.exclude_stack = stk;
95c6f271
KB
1637 return;
1638 }
1639 }
1640
aceb9429 1641 /* Try to read per-directory file */
4b33e602
PO
1642 oidclr(&oid_stat.oid);
1643 oid_stat.valid = 0;
27b099ae
NTND
1644 if (dir->exclude_per_dir &&
1645 /*
1646 * If we know that no files have been added in
1647 * this directory (i.e. valid_cached_dir() has
1648 * been executed and set untracked->valid) ..
1649 */
1650 (!untracked || !untracked->valid ||
1651 /*
1652 * .. and .gitignore does not exist before
70c369cd 1653 * (i.e. null exclude_oid). Then we can skip
7687252f
DT
1654 * loading .gitignore, which would result in
1655 * ENOENT anyway.
27b099ae 1656 */
70c369cd 1657 !is_null_oid(&untracked->exclude_oid))) {
95c6f271 1658 /*
5fdf285e
EN
1659 * dir->internal.basebuf gets reused by the traversal,
1660 * but we need fname to remain unchanged to ensure the
1661 * src member of each struct path_pattern correctly
95c6f271 1662 * back-references its source file. Other invocations
65edd96a 1663 * of add_pattern_list provide stable strings, so we
aceb9429 1664 * strbuf_detach() and free() here in the caller.
95c6f271 1665 */
aceb9429 1666 struct strbuf sb = STRBUF_INIT;
5fdf285e 1667 strbuf_addbuf(&sb, &dir->internal.basebuf);
aceb9429 1668 strbuf_addstr(&sb, dir->exclude_per_dir);
caa3d554 1669 pl->src = strbuf_detach(&sb, NULL);
65edd96a 1670 add_patterns(pl->src, pl->src, stk->baselen, pl, istate,
feb9b779 1671 PATTERN_NOFOLLOW,
4b33e602 1672 untracked ? &oid_stat : NULL);
0dcb8d7f 1673 }
5ebf79ad
NTND
1674 /*
1675 * NEEDSWORK: when untracked cache is enabled, prep_exclude()
1676 * will first be called in valid_cached_dir() then maybe many
65edd96a
DS
1677 * times more in last_matching_pattern(). When the cache is
1678 * used, last_matching_pattern() will not be called and
5ebf79ad
NTND
1679 * reading .gitignore content will be a waste.
1680 *
1681 * So when it's called by valid_cached_dir() and we can get
1682 * .gitignore SHA-1 from the index (i.e. .gitignore is not
1683 * modified on work tree), we could delay reading the
1684 * .gitignore content until we absolutely need it in
65edd96a 1685 * last_matching_pattern(). Be careful about ignore rule
5ebf79ad
NTND
1686 * order, though, if you do that.
1687 */
1688 if (untracked &&
9001dc2a 1689 !oideq(&oid_stat.oid, &untracked->exclude_oid)) {
5ebf79ad 1690 invalidate_gitignore(dir->untracked, untracked);
70c369cd 1691 oidcpy(&untracked->exclude_oid, &oid_stat.oid);
95c6f271 1692 }
5fdf285e 1693 dir->internal.exclude_stack = stk;
6cd5c582
KB
1694 current = stk->baselen;
1695 }
5fdf285e 1696 strbuf_setlen(&dir->internal.basebuf, baselen);
6cd5c582
KB
1697}
1698
f4cd69a6
AS
1699/*
1700 * Loads the exclude lists for the directory containing pathname, then
1701 * scans all exclude lists to determine whether pathname is excluded.
1702 * Returns the exclude_list element which matched, or NULL for
1703 * undecided.
1704 */
65edd96a 1705struct path_pattern *last_matching_pattern(struct dir_struct *dir,
a0bba65b
BW
1706 struct index_state *istate,
1707 const char *pathname,
1708 int *dtype_p)
453ec4bd
LT
1709{
1710 int pathlen = strlen(pathname);
68492fc7
LK
1711 const char *basename = strrchr(pathname, '/');
1712 basename = (basename) ? basename+1 : pathname;
453ec4bd 1713
a0bba65b 1714 prep_exclude(dir, istate, pathname, basename-pathname);
c082df24 1715
5fdf285e
EN
1716 if (dir->internal.pattern)
1717 return dir->internal.pattern;
95c6f271 1718
65edd96a 1719 return last_matching_pattern_from_lists(dir, istate, pathname, pathlen,
46aa2f95 1720 basename, dtype_p);
f4cd69a6
AS
1721}
1722
1723/*
1724 * Loads the exclude lists for the directory containing pathname, then
1725 * scans all exclude lists to determine whether pathname is excluded.
1726 * Returns 1 if true, otherwise 0.
1727 */
a0bba65b
BW
1728int is_excluded(struct dir_struct *dir, struct index_state *istate,
1729 const char *pathname, int *dtype_p)
f4cd69a6 1730{
ab8db613 1731 struct path_pattern *pattern =
65edd96a 1732 last_matching_pattern(dir, istate, pathname, dtype_p);
ab8db613 1733 if (pattern)
4ff89ee5 1734 return pattern->flags & PATTERN_FLAG_NEGATIVE ? 0 : 1;
453ec4bd
LT
1735 return 0;
1736}
1737
f3fa1838
JH
1738static struct dir_entry *dir_entry_new(const char *pathname, int len)
1739{
453ec4bd
LT
1740 struct dir_entry *ent;
1741
96ffc06f 1742 FLEX_ALLOC_MEM(ent, name, pathname, len);
453ec4bd 1743 ent->len = len;
4d06f8ac 1744 return ent;
453ec4bd
LT
1745}
1746
9e58beca
BW
1747static struct dir_entry *dir_add_name(struct dir_struct *dir,
1748 struct index_state *istate,
1749 const char *pathname, int len)
6815e569 1750{
9e58beca 1751 if (index_file_exists(istate, pathname, len, ignore_case))
6815e569
JK
1752 return NULL;
1753
5fdf285e 1754 ALLOC_GROW(dir->entries, dir->nr+1, dir->internal.alloc);
6815e569
JK
1755 return dir->entries[dir->nr++] = dir_entry_new(pathname, len);
1756}
1757
9e58beca
BW
1758struct dir_entry *dir_add_ignored(struct dir_struct *dir,
1759 struct index_state *istate,
1760 const char *pathname, int len)
2abd31b0 1761{
9e58beca 1762 if (!index_name_is_other(istate, pathname, len))
2abd31b0
JK
1763 return NULL;
1764
5fdf285e 1765 ALLOC_GROW(dir->ignored, dir->ignored_nr+1, dir->internal.ignored_alloc);
2abd31b0
JK
1766 return dir->ignored[dir->ignored_nr++] = dir_entry_new(pathname, len);
1767}
1768
09595258
LT
1769enum exist_status {
1770 index_nonexistent = 0,
1771 index_directory,
4b05548f 1772 index_gitdir
09595258
LT
1773};
1774
5102c617 1775/*
71261027 1776 * Do not use the alphabetically sorted index to look up
5102c617 1777 * the directory name; instead, use the case insensitive
ebbd7439 1778 * directory hash.
5102c617 1779 */
ae520e36
BW
1780static enum exist_status directory_exists_in_index_icase(struct index_state *istate,
1781 const char *dirname, int len)
5102c617 1782{
41284eb0 1783 struct cache_entry *ce;
5102c617 1784
ae520e36 1785 if (index_dir_exists(istate, dirname, len))
5102c617
JJ
1786 return index_directory;
1787
ae520e36 1788 ce = index_file_exists(istate, dirname, len, ignore_case);
41284eb0 1789 if (ce && S_ISGITLINK(ce->ce_mode))
5102c617
JJ
1790 return index_gitdir;
1791
5102c617
JJ
1792 return index_nonexistent;
1793}
1794
09595258
LT
1795/*
1796 * The index sorts alphabetically by entry name, which
1797 * means that a gitlink sorts as '\0' at the end, while
1798 * a directory (which is defined not as an entry, but as
1799 * the files it contains) will sort with the '/' at the
1800 * end.
1801 */
ae520e36
BW
1802static enum exist_status directory_exists_in_index(struct index_state *istate,
1803 const char *dirname, int len)
453ec4bd 1804{
5102c617
JJ
1805 int pos;
1806
1807 if (ignore_case)
ae520e36 1808 return directory_exists_in_index_icase(istate, dirname, len);
5102c617 1809
ae520e36 1810 pos = index_name_pos(istate, dirname, len);
09595258
LT
1811 if (pos < 0)
1812 pos = -pos-1;
ae520e36
BW
1813 while (pos < istate->cache_nr) {
1814 const struct cache_entry *ce = istate->cache[pos++];
09595258
LT
1815 unsigned char endchar;
1816
1817 if (strncmp(ce->name, dirname, len))
1818 break;
1819 endchar = ce->name[len];
1820 if (endchar > '/')
1821 break;
1822 if (endchar == '/')
1823 return index_directory;
7a51ed66 1824 if (!endchar && S_ISGITLINK(ce->ce_mode))
09595258
LT
1825 return index_gitdir;
1826 }
1827 return index_nonexistent;
1828}
1829
1830/*
1831 * When we find a directory when traversing the filesystem, we
1832 * have three distinct cases:
1833 *
1834 * - ignore it
1835 * - see it as a directory
1836 * - recurse into it
1837 *
1838 * and which one we choose depends on a combination of existing
1839 * git index contents and the flags passed into the directory
1840 * traversal routine.
1841 *
1842 * Case 1: If we *already* have entries in the index under that
5bd8e2d8
KB
1843 * directory name, we always recurse into the directory to see
1844 * all the files.
09595258
LT
1845 *
1846 * Case 2: If we *already* have that directory name as a gitlink,
1847 * we always continue to see it as a gitlink, regardless of whether
1848 * there is an actual git directory there or not (it might not
1849 * be checked out as a subproject!)
1850 *
1851 * Case 3: if we didn't have it in the index previously, we
1852 * have a few sub-cases:
1853 *
4e689d81
DS
1854 * (a) if DIR_SHOW_OTHER_DIRECTORIES flag is set, we show it as
1855 * just a directory, unless DIR_HIDE_EMPTY_DIRECTORIES is
defd7c7b
KB
1856 * also true, in which case we need to check if it contains any
1857 * untracked and / or ignored files.
4e689d81
DS
1858 * (b) if it looks like a git directory and we don't have the
1859 * DIR_NO_GITLINKS flag, then we treat it as a gitlink, and
1860 * show it as a directory.
09595258
LT
1861 * (c) otherwise, we recurse into it.
1862 */
defd7c7b 1863static enum path_treatment treat_directory(struct dir_struct *dir,
0ef8e169 1864 struct index_state *istate,
0dcb8d7f 1865 struct untracked_cache_dir *untracked,
2df179d3 1866 const char *dirname, int len, int baselen, int excluded,
e1b8c7bd 1867 const struct pathspec *pathspec)
09595258 1868{
8d92fb29
EN
1869 /*
1870 * WARNING: From this function, you can return path_recurse or you
1871 * can call read_directory_recursive() (or neither), but
1872 * you CAN'T DO BOTH.
1873 */
1874 enum path_treatment state;
7f45ab2d 1875 int matches_how = 0;
d6c9a717 1876 int check_only, stop_early;
16846444 1877 int old_ignored_nr, old_untracked_nr;
09595258 1878 /* The "len-1" is to strip the final '/' */
0bbd0e8b 1879 enum exist_status status = directory_exists_in_index(istate, dirname, len-1);
09595258 1880
0bbd0e8b
DS
1881 if (status == index_directory)
1882 return path_recurse;
1883 if (status == index_gitdir)
26c986e1 1884 return path_none;
0bbd0e8b
DS
1885 if (status != index_nonexistent)
1886 BUG("Unhandled value for directory_exists_in_index: %d\n", status);
09595258 1887
7f45ab2d
EN
1888 /*
1889 * We don't want to descend into paths that don't match the necessary
1890 * patterns. Clearly, if we don't have a pathspec, then we can't check
1891 * for matching patterns. Also, if (excluded) then we know we matched
1892 * the exclusion patterns so as an optimization we can skip checking
1893 * for matching patterns.
1894 */
1895 if (pathspec && !excluded) {
f1f061e1
EN
1896 matches_how = match_pathspec_with_flags(istate, pathspec,
1897 dirname, len,
1898 0 /* prefix */,
1899 NULL /* seen */,
1900 DO_MATCH_LEADING_PATHSPEC);
7f45ab2d
EN
1901 if (!matches_how)
1902 return path_none;
1903 }
09487f2c 1904
7f45ab2d 1905
0bbd0e8b
DS
1906 if ((dir->flags & DIR_SKIP_NESTED_GIT) ||
1907 !(dir->flags & DIR_NO_GITLINKS)) {
27128996
GG
1908 /*
1909 * Determine if `dirname` is a nested repo by confirming that:
1910 * 1) we are in a nonbare repository, and
1911 * 2) `dirname` is not an immediate parent of `the_repository->gitdir`,
1912 * which could occur if the git_dir or worktree location was
1913 * manually configured by the user; see t2205 testcases 1-3 for
1914 * examples where this matters
1915 */
d6c9a717 1916 int nested_repo;
0bbd0e8b
DS
1917 struct strbuf sb = STRBUF_INIT;
1918 strbuf_addstr(&sb, dirname);
1919 nested_repo = is_nonbare_repository_dir(&sb);
27128996
GG
1920
1921 if (nested_repo) {
1922 char *real_dirname, *real_gitdir;
1923 strbuf_addstr(&sb, ".git");
1924 real_dirname = real_pathdup(sb.buf, 1);
1925 real_gitdir = real_pathdup(the_repository->gitdir, 1);
1926
1927 nested_repo = !!strcmp(real_dirname, real_gitdir);
1928 free(real_gitdir);
1929 free(real_dirname);
1930 }
0bbd0e8b 1931 strbuf_release(&sb);
d6c9a717
GG
1932
1933 if (nested_repo) {
1934 if ((dir->flags & DIR_SKIP_NESTED_GIT) ||
1935 (matches_how == MATCHED_RECURSIVELY_LEADING_PATHSPEC))
1936 return path_none;
1937 return excluded ? path_excluded : path_untracked;
1938 }
ab282aa5 1939 }
09595258 1940
0bbd0e8b 1941 if (!(dir->flags & DIR_SHOW_OTHER_DIRECTORIES)) {
2df179d3
EN
1942 if (excluded &&
1943 (dir->flags & DIR_SHOW_IGNORED_TOO) &&
1944 (dir->flags & DIR_SHOW_IGNORED_TOO_MODE_MATCHING)) {
eec0f7f2
JM
1945
1946 /*
1947 * This is an excluded directory and we are
1948 * showing ignored paths that match an exclude
1949 * pattern. (e.g. show directory as ignored
1950 * only if it matches an exclude pattern).
1951 * This path will either be 'path_excluded`
1952 * (if we are showing empty directories or if
1953 * the directory is not empty), or will be
1954 * 'path_none' (empty directory, and we are
1955 * not showing empty directories).
1956 */
1957 if (!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))
1958 return path_excluded;
1959
1960 if (read_directory_recursive(dir, istate, dirname, len,
1961 untracked, 1, 1, pathspec) == path_excluded)
1962 return path_excluded;
1963
1964 return path_none;
1965 }
defd7c7b 1966 return path_recurse;
09595258
LT
1967 }
1968
aa6e1b21 1969 assert(dir->flags & DIR_SHOW_OTHER_DIRECTORIES);
721ac4ed 1970
8d92fb29
EN
1971 /*
1972 * If we have a pathspec which could match something _below_ this
1973 * directory (e.g. when checking 'subdir/' having a pathspec like
1974 * 'subdir/some/deep/path/file' or 'subdir/widget-*.c'), then we
1975 * need to recurse.
1976 */
7f45ab2d
EN
1977 if (matches_how == MATCHED_RECURSIVELY_LEADING_PATHSPEC)
1978 return path_recurse;
8d92fb29 1979
aa6e1b21
EN
1980 /* Special cases for where this directory is excluded/ignored */
1981 if (excluded) {
1982 /*
4e689d81 1983 * If DIR_SHOW_OTHER_DIRECTORIES is set and we're not
aa6e1b21
EN
1984 * hiding empty directories, there is no need to
1985 * recurse into an ignored directory.
1986 */
1987 if (!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))
1988 return path_excluded;
1989
1990 /*
1991 * Even if we are hiding empty directories, we can still avoid
1992 * recursing into ignored directories for DIR_SHOW_IGNORED_TOO
1993 * if DIR_SHOW_IGNORED_TOO_MODE_MATCHING is also set.
1994 */
1995 if ((dir->flags & DIR_SHOW_IGNORED_TOO) &&
1996 (dir->flags & DIR_SHOW_IGNORED_TOO_MODE_MATCHING))
1997 return path_excluded;
1998 }
1999
8d92fb29 2000 /*
aa6e1b21 2001 * Other than the path_recurse case above, we only need to
dd55fc0d 2002 * recurse into untracked directories if any of the following
aa6e1b21 2003 * bits is set:
dd55fc0d
EN
2004 * - DIR_SHOW_IGNORED (because then we need to determine if
2005 * there are ignored entries below)
2006 * - DIR_SHOW_IGNORED_TOO (same as above)
8d92fb29
EN
2007 * - DIR_HIDE_EMPTY_DIRECTORIES (because we have to determine if
2008 * the directory is empty)
2009 */
aa6e1b21 2010 if (!excluded &&
dd55fc0d
EN
2011 !(dir->flags & (DIR_SHOW_IGNORED |
2012 DIR_SHOW_IGNORED_TOO |
aa6e1b21
EN
2013 DIR_HIDE_EMPTY_DIRECTORIES))) {
2014 return path_untracked;
2015 }
8d92fb29
EN
2016
2017 /*
e6c0be92
EN
2018 * Even if we don't want to know all the paths under an untracked or
2019 * ignored directory, we may still need to go into the directory to
2020 * determine if it is empty (because with DIR_HIDE_EMPTY_DIRECTORIES,
2021 * an empty directory should be path_none instead of path_excluded or
2022 * path_untracked).
8d92fb29
EN
2023 */
2024 check_only = ((dir->flags & DIR_HIDE_EMPTY_DIRECTORIES) &&
2025 !(dir->flags & DIR_SHOW_IGNORED_TOO));
2026
2027 /*
2028 * However, there's another optimization possible as a subset of
2029 * check_only, based on the cases we have to consider:
2030 * A) Directory matches no exclude patterns:
2031 * * Directory is empty => path_none
2032 * * Directory has an untracked file under it => path_untracked
2033 * * Directory has only ignored files under it => path_excluded
2034 * B) Directory matches an exclude pattern:
2035 * * Directory is empty => path_none
2036 * * Directory has an untracked file under it => path_excluded
2037 * * Directory has only ignored files under it => path_excluded
2038 * In case A, we can exit as soon as we've found an untracked
2039 * file but otherwise have to walk all files. In case B, though,
2040 * we can stop at the first file we find under the directory.
2041 */
2042 stop_early = check_only && excluded;
2043
2044 /*
2045 * If /every/ file within an untracked directory is ignored, then
2046 * we want to treat the directory as ignored (for e.g. status
2047 * --porcelain), without listing the individual ignored files
2048 * underneath. To do so, we'll save the current ignored_nr, and
2049 * pop all the ones added after it if it turns out the entire
16846444
EN
2050 * directory is ignored. Also, when DIR_SHOW_IGNORED_TOO and
2051 * !DIR_KEEP_UNTRACKED_CONTENTS then we don't want to show
2052 * untracked paths so will need to pop all those off the last
2053 * after we traverse.
8d92fb29
EN
2054 */
2055 old_ignored_nr = dir->ignored_nr;
16846444 2056 old_untracked_nr = dir->nr;
8d92fb29
EN
2057
2058 /* Actually recurse into dirname now, we'll fixup the state later. */
2e5910f2
DT
2059 untracked = lookup_untracked(dir->untracked, untracked,
2060 dirname + baselen, len - baselen);
8d92fb29
EN
2061 state = read_directory_recursive(dir, istate, dirname, len, untracked,
2062 check_only, stop_early, pathspec);
2063
2064 /* There are a variety of reasons we may need to fixup the state... */
2065 if (state == path_excluded) {
2066 /* state == path_excluded implies all paths under
2067 * dirname were ignored...
2068 *
2069 * if running e.g. `git status --porcelain --ignored=matching`,
2070 * then we want to see the subpaths that are ignored.
2071 *
2072 * if running e.g. just `git status --porcelain`, then
2073 * we just want the directory itself to be listed as ignored
2074 * and not the individual paths underneath.
2075 */
2076 int want_ignored_subpaths =
2077 ((dir->flags & DIR_SHOW_IGNORED_TOO) &&
2078 (dir->flags & DIR_SHOW_IGNORED_TOO_MODE_MATCHING));
2079
2080 if (want_ignored_subpaths) {
2081 /*
2082 * with --ignored=matching, we want the subpaths
2083 * INSTEAD of the directory itself.
2084 */
2085 state = path_none;
2086 } else {
2087 int i;
2088 for (i = old_ignored_nr + 1; i<dir->ignored_nr; ++i)
2089 FREE_AND_NULL(dir->ignored[i]);
2090 dir->ignored_nr = old_ignored_nr;
2091 }
2092 }
5aaa7fd3
JM
2093
2094 /*
16846444
EN
2095 * We may need to ignore some of the untracked paths we found while
2096 * traversing subdirectories.
5aaa7fd3 2097 */
16846444
EN
2098 if ((dir->flags & DIR_SHOW_IGNORED_TOO) &&
2099 !(dir->flags & DIR_KEEP_UNTRACKED_CONTENTS)) {
2100 int i;
2101 for (i = old_untracked_nr + 1; i<dir->nr; ++i)
2102 FREE_AND_NULL(dir->entries[i]);
2103 dir->nr = old_untracked_nr;
2104 }
2105
5aaa7fd3 2106 /*
8d92fb29
EN
2107 * If there is nothing under the current directory and we are not
2108 * hiding empty directories, then we need to report on the
2109 * untracked or ignored status of the directory itself.
5aaa7fd3 2110 */
8d92fb29
EN
2111 if (state == path_none && !(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))
2112 state = excluded ? path_excluded : path_untracked;
2113
8d92fb29 2114 return state;
453ec4bd
LT
2115}
2116
9fc42d60
LT
2117/*
2118 * This is an inexact early pruning of any recursive directory
2119 * reading - if the path cannot possibly be in the pathspec,
2120 * return true, and we'll skip it early.
2121 */
e1b8c7bd
BW
2122static int simplify_away(const char *path, int pathlen,
2123 const struct pathspec *pathspec)
9fc42d60 2124{
e1b8c7bd 2125 int i;
9fc42d60 2126
e1b8c7bd
BW
2127 if (!pathspec || !pathspec->nr)
2128 return 0;
2129
2130 GUARD_PATHSPEC(pathspec,
2131 PATHSPEC_FROMTOP |
2132 PATHSPEC_MAXDEPTH |
2133 PATHSPEC_LITERAL |
2134 PATHSPEC_GLOB |
2135 PATHSPEC_ICASE |
b0db7046
BW
2136 PATHSPEC_EXCLUDE |
2137 PATHSPEC_ATTR);
e1b8c7bd
BW
2138
2139 for (i = 0; i < pathspec->nr; i++) {
2140 const struct pathspec_item *item = &pathspec->items[i];
2141 int len = item->nowildcard_len;
2142
2143 if (len > pathlen)
2144 len = pathlen;
2145 if (!ps_strncmp(item, item->match, path, len))
2146 return 0;
9fc42d60 2147 }
e1b8c7bd
BW
2148
2149 return 1;
9fc42d60
LT
2150}
2151
29209cbe
JK
2152/*
2153 * This function tells us whether an excluded path matches a
2154 * list of "interesting" pathspecs. That is, whether a path matched
2155 * by any of the pathspecs could possibly be ignored by excluding
2156 * the specified path. This can happen if:
2157 *
2158 * 1. the path is mentioned explicitly in the pathspec
2159 *
2160 * 2. the path is a directory prefix of some element in the
2161 * pathspec
2162 */
e1b8c7bd
BW
2163static int exclude_matches_pathspec(const char *path, int pathlen,
2164 const struct pathspec *pathspec)
2165{
2166 int i;
2167
2168 if (!pathspec || !pathspec->nr)
2169 return 0;
2170
2171 GUARD_PATHSPEC(pathspec,
2172 PATHSPEC_FROMTOP |
2173 PATHSPEC_MAXDEPTH |
2174 PATHSPEC_LITERAL |
2175 PATHSPEC_GLOB |
2176 PATHSPEC_ICASE |
2177 PATHSPEC_EXCLUDE);
2178
2179 for (i = 0; i < pathspec->nr; i++) {
2180 const struct pathspec_item *item = &pathspec->items[i];
2181 int len = item->nowildcard_len;
2182
2183 if (len == pathlen &&
2184 !ps_strncmp(item, item->match, path, pathlen))
2185 return 1;
2186 if (len > pathlen &&
2187 item->match[pathlen] == '/' &&
2188 !ps_strncmp(item, item->match, path, pathlen))
2189 return 1;
e96980ef
JK
2190 }
2191 return 0;
2192}
2193
98f2a687
BW
2194static int get_index_dtype(struct index_state *istate,
2195 const char *path, int len)
443e061a
LT
2196{
2197 int pos;
9c5e6c80 2198 const struct cache_entry *ce;
443e061a 2199
98f2a687 2200 ce = index_file_exists(istate, path, len, 0);
443e061a
LT
2201 if (ce) {
2202 if (!ce_uptodate(ce))
2203 return DT_UNKNOWN;
2204 if (S_ISGITLINK(ce->ce_mode))
2205 return DT_DIR;
2206 /*
2207 * Nobody actually cares about the
2208 * difference between DT_LNK and DT_REG
2209 */
2210 return DT_REG;
2211 }
2212
2213 /* Try to look it up as a directory */
98f2a687 2214 pos = index_name_pos(istate, path, len);
443e061a
LT
2215 if (pos >= 0)
2216 return DT_UNKNOWN;
2217 pos = -pos-1;
98f2a687
BW
2218 while (pos < istate->cache_nr) {
2219 ce = istate->cache[pos++];
443e061a
LT
2220 if (strncmp(ce->name, path, len))
2221 break;
2222 if (ce->name[len] > '/')
2223 break;
2224 if (ce->name[len] < '/')
2225 continue;
2226 if (!ce_uptodate(ce))
2227 break; /* continue? */
2228 return DT_DIR;
2229 }
2230 return DT_UNKNOWN;
2231}
2232
ad6f2157
JK
2233static int resolve_dtype(int dtype, struct index_state *istate,
2234 const char *path, int len)
07134421 2235{
07134421
LT
2236 struct stat st;
2237
2238 if (dtype != DT_UNKNOWN)
2239 return dtype;
98f2a687 2240 dtype = get_index_dtype(istate, path, len);
443e061a
LT
2241 if (dtype != DT_UNKNOWN)
2242 return dtype;
2243 if (lstat(path, &st))
07134421
LT
2244 return dtype;
2245 if (S_ISREG(st.st_mode))
2246 return DT_REG;
2247 if (S_ISDIR(st.st_mode))
2248 return DT_DIR;
2249 if (S_ISLNK(st.st_mode))
2250 return DT_LNK;
2251 return dtype;
2252}
2253
91a2288b 2254static enum path_treatment treat_path_fast(struct dir_struct *dir,
91a2288b 2255 struct cached_dir *cdir,
0ef8e169 2256 struct index_state *istate,
91a2288b
NTND
2257 struct strbuf *path,
2258 int baselen,
e1b8c7bd 2259 const struct pathspec *pathspec)
91a2288b 2260{
8d92fb29
EN
2261 /*
2262 * WARNING: From this function, you can return path_recurse or you
2263 * can call read_directory_recursive() (or neither), but
2264 * you CAN'T DO BOTH.
2265 */
91a2288b
NTND
2266 strbuf_setlen(path, baselen);
2267 if (!cdir->ucd) {
2268 strbuf_addstr(path, cdir->file);
2269 return path_untracked;
2270 }
2271 strbuf_addstr(path, cdir->ucd->name);
2272 /* treat_one_path() does this before it calls treat_directory() */
00b6c178 2273 strbuf_complete(path, '/');
91a2288b
NTND
2274 if (cdir->ucd->check_only)
2275 /*
2276 * check_only is set as a result of treat_directory() getting
2277 * to its bottom. Verify again the same set of directories
2278 * with check_only set.
2279 */
0ef8e169 2280 return read_directory_recursive(dir, istate, path->buf, path->len,
5aaa7fd3 2281 cdir->ucd, 1, 0, pathspec);
91a2288b
NTND
2282 /*
2283 * We get path_recurse in the first run when
2284 * directory_exists_in_index() returns index_nonexistent. We
2285 * are sure that new changes in the index does not impact the
2286 * outcome. Return now.
2287 */
2288 return path_recurse;
2289}
2290
16e2cfa9 2291static enum path_treatment treat_path(struct dir_struct *dir,
0dcb8d7f 2292 struct untracked_cache_dir *untracked,
cf7c6148 2293 struct cached_dir *cdir,
0ef8e169 2294 struct index_state *istate,
49dc2cc2 2295 struct strbuf *path,
16e2cfa9 2296 int baselen,
e1b8c7bd 2297 const struct pathspec *pathspec)
16e2cfa9 2298{
2df179d3 2299 int has_path_in_index, dtype, excluded;
2eac2a4c 2300
ad6f2157 2301 if (!cdir->d_name)
842385b8 2302 return treat_path_fast(dir, cdir, istate, path,
e1b8c7bd 2303 baselen, pathspec);
ad6f2157 2304 if (is_dot_or_dotdot(cdir->d_name) || !fspathcmp(cdir->d_name, ".git"))
defd7c7b 2305 return path_none;
49dc2cc2 2306 strbuf_setlen(path, baselen);
ad6f2157 2307 strbuf_addstr(path, cdir->d_name);
e1b8c7bd 2308 if (simplify_away(path->buf, path->len, pathspec))
defd7c7b 2309 return path_none;
16e2cfa9 2310
cd129eed 2311 dtype = resolve_dtype(cdir->d_type, istate, path->buf, path->len);
8aaf8d77
KB
2312
2313 /* Always exclude indexed files */
cd129eed
EN
2314 has_path_in_index = !!index_file_exists(istate, path->buf, path->len,
2315 ignore_case);
2eac2a4c 2316 if (dtype != DT_DIR && has_path_in_index)
defd7c7b 2317 return path_none;
8aaf8d77 2318
2eac2a4c
JH
2319 /*
2320 * When we are looking at a directory P in the working tree,
2321 * there are three cases:
2322 *
2323 * (1) P exists in the index. Everything inside the directory P in
2324 * the working tree needs to go when P is checked out from the
2325 * index.
2326 *
2327 * (2) P does not exist in the index, but there is P/Q in the index.
2328 * We know P will stay a directory when we check out the contents
2329 * of the index, but we do not know yet if there is a directory
2330 * P/Q in the working tree to be killed, so we need to recurse.
2331 *
2332 * (3) P does not exist in the index, and there is no P/Q in the index
2333 * to require P to be a directory, either. Only in this case, we
2334 * know that everything inside P will not be killed without
2335 * recursing.
2336 */
2337 if ((dir->flags & DIR_COLLECT_KILLED_ONLY) &&
2338 (dtype == DT_DIR) &&
de372b1b 2339 !has_path_in_index &&
0ef8e169 2340 (directory_exists_in_index(istate, path->buf, path->len) == index_nonexistent))
de372b1b 2341 return path_none;
8aaf8d77 2342
2df179d3 2343 excluded = is_excluded(dir, istate, path->buf, &dtype);
53cc5356
JH
2344
2345 /*
2346 * Excluded? If we don't explicitly want to show
2347 * ignored files, ignore it
2348 */
2df179d3 2349 if (excluded && !(dir->flags & (DIR_SHOW_IGNORED|DIR_SHOW_IGNORED_TOO)))
defd7c7b 2350 return path_excluded;
53cc5356 2351
53cc5356
JH
2352 switch (dtype) {
2353 default:
defd7c7b 2354 return path_none;
53cc5356 2355 case DT_DIR:
07966ed1 2356 /*
8d92fb29
EN
2357 * WARNING: Do not ignore/amend the return value from
2358 * treat_directory(), and especially do not change it to return
2359 * path_recurse as that can cause exponential slowdown.
2360 * Instead, modify treat_directory() to return the right value.
07966ed1 2361 */
8d92fb29
EN
2362 strbuf_addch(path, '/');
2363 return treat_directory(dir, istate, untracked,
2364 path->buf, path->len,
2365 baselen, excluded, pathspec);
53cc5356
JH
2366 case DT_REG:
2367 case DT_LNK:
95c11ecc 2368 if (pathspec &&
f1f061e1
EN
2369 !match_pathspec(istate, pathspec, path->buf, path->len,
2370 0 /* prefix */, NULL /* seen */,
2371 0 /* is_dir */))
95c11ecc 2372 return path_none;
cada7308
2373 if (excluded)
2374 return path_excluded;
95c11ecc 2375 return path_untracked;
53cc5356 2376 }
0dcb8d7f
NTND
2377}
2378
2379static void add_untracked(struct untracked_cache_dir *dir, const char *name)
2380{
2381 if (!dir)
2382 return;
2383 ALLOC_GROW(dir->untracked, dir->untracked_nr + 1,
2384 dir->untracked_alloc);
2385 dir->untracked[dir->untracked_nr++] = xstrdup(name);
16e2cfa9
JH
2386}
2387
91a2288b
NTND
2388static int valid_cached_dir(struct dir_struct *dir,
2389 struct untracked_cache_dir *untracked,
207a06ce 2390 struct index_state *istate,
91a2288b
NTND
2391 struct strbuf *path,
2392 int check_only)
2393{
2394 struct stat st;
2395
2396 if (!untracked)
2397 return 0;
2398
883e248b
BP
2399 /*
2400 * With fsmonitor, we can trust the untracked cache's valid field.
2401 */
2402 refresh_fsmonitor(istate);
2403 if (!(dir->untracked->use_fsmonitor && untracked->valid)) {
2523c4be 2404 if (lstat(path->len ? path->buf : ".", &st)) {
883e248b
BP
2405 memset(&untracked->stat_data, 0, sizeof(untracked->stat_data));
2406 return 0;
2407 }
2408 if (!untracked->valid ||
2409 match_stat_data_racy(istate, &untracked->stat_data, &st)) {
883e248b
BP
2410 fill_stat_data(&untracked->stat_data, &st);
2411 return 0;
2412 }
91a2288b
NTND
2413 }
2414
b6403131 2415 if (untracked->check_only != !!check_only)
91a2288b 2416 return 0;
91a2288b
NTND
2417
2418 /*
2419 * prep_exclude will be called eventually on this directory,
65edd96a 2420 * but it's called much later in last_matching_pattern(). We
91a2288b
NTND
2421 * need it now to determine the validity of the cache for this
2422 * path. The next calls will be nearly no-op, the way
2423 * prep_exclude() is designed.
2424 */
2425 if (path->len && path->buf[path->len - 1] != '/') {
2426 strbuf_addch(path, '/');
207a06ce 2427 prep_exclude(dir, istate, path->buf, path->len);
91a2288b
NTND
2428 strbuf_setlen(path, path->len - 1);
2429 } else
207a06ce 2430 prep_exclude(dir, istate, path->buf, path->len);
91a2288b
NTND
2431
2432 /* hopefully prep_exclude() haven't invalidated this entry... */
2433 return untracked->valid;
2434}
2435
cf7c6148
NTND
2436static int open_cached_dir(struct cached_dir *cdir,
2437 struct dir_struct *dir,
2438 struct untracked_cache_dir *untracked,
207a06ce 2439 struct index_state *istate,
cf7c6148
NTND
2440 struct strbuf *path,
2441 int check_only)
2442{
b6731550
NTND
2443 const char *c_path;
2444
cf7c6148
NTND
2445 memset(cdir, 0, sizeof(*cdir));
2446 cdir->untracked = untracked;
207a06ce 2447 if (valid_cached_dir(dir, untracked, istate, path, check_only))
91a2288b 2448 return 0;
b6731550
NTND
2449 c_path = path->len ? path->buf : ".";
2450 cdir->fdir = opendir(c_path);
2451 if (!cdir->fdir)
2452 warning_errno(_("could not open directory '%s'"), c_path);
b6403131
NTND
2453 if (dir->untracked) {
2454 invalidate_directory(dir->untracked, untracked);
91a2288b 2455 dir->untracked->dir_opened++;
b6403131 2456 }
cf7c6148
NTND
2457 if (!cdir->fdir)
2458 return -1;
2459 return 0;
2460}
2461
2462static int read_cached_dir(struct cached_dir *cdir)
2463{
ad6f2157
JK
2464 struct dirent *de;
2465
cf7c6148 2466 if (cdir->fdir) {
b548f0f1 2467 de = readdir_skip_dot_and_dotdot(cdir->fdir);
ad6f2157
JK
2468 if (!de) {
2469 cdir->d_name = NULL;
2470 cdir->d_type = DT_UNKNOWN;
cf7c6148 2471 return -1;
ad6f2157
JK
2472 }
2473 cdir->d_name = de->d_name;
2474 cdir->d_type = DTYPE(de);
cf7c6148
NTND
2475 return 0;
2476 }
91a2288b
NTND
2477 while (cdir->nr_dirs < cdir->untracked->dirs_nr) {
2478 struct untracked_cache_dir *d = cdir->untracked->dirs[cdir->nr_dirs];
26cb0182
NTND
2479 if (!d->recurse) {
2480 cdir->nr_dirs++;
2481 continue;
2482 }
91a2288b
NTND
2483 cdir->ucd = d;
2484 cdir->nr_dirs++;
2485 return 0;
2486 }
2487 cdir->ucd = NULL;
2488 if (cdir->nr_files < cdir->untracked->untracked_nr) {
2489 struct untracked_cache_dir *d = cdir->untracked;
2490 cdir->file = d->untracked[cdir->nr_files++];
2491 return 0;
2492 }
cf7c6148
NTND
2493 return -1;
2494}
2495
2496static void close_cached_dir(struct cached_dir *cdir)
2497{
2498 if (cdir->fdir)
2499 closedir(cdir->fdir);
91a2288b
NTND
2500 /*
2501 * We have gone through this directory and found no untracked
2502 * entries. Mark it valid.
2503 */
26cb0182 2504 if (cdir->untracked) {
91a2288b 2505 cdir->untracked->valid = 1;
26cb0182
NTND
2506 cdir->untracked->recurse = 1;
2507 }
16e2cfa9
JH
2508}
2509
c5c4eddd
EN
2510static void add_path_to_appropriate_result_list(struct dir_struct *dir,
2511 struct untracked_cache_dir *untracked,
2512 struct cached_dir *cdir,
2513 struct index_state *istate,
2514 struct strbuf *path,
2515 int baselen,
2516 const struct pathspec *pathspec,
2517 enum path_treatment state)
2518{
2519 /* add the path to the appropriate result list */
2520 switch (state) {
2521 case path_excluded:
2522 if (dir->flags & DIR_SHOW_IGNORED)
2523 dir_add_name(dir, istate, path->buf, path->len);
2524 else if ((dir->flags & DIR_SHOW_IGNORED_TOO) ||
2525 ((dir->flags & DIR_COLLECT_IGNORED) &&
2526 exclude_matches_pathspec(path->buf, path->len,
2527 pathspec)))
2528 dir_add_ignored(dir, istate, path->buf, path->len);
2529 break;
2530
2531 case path_untracked:
2532 if (dir->flags & DIR_SHOW_IGNORED)
2533 break;
2534 dir_add_name(dir, istate, path->buf, path->len);
2535 if (cdir->fdir)
2536 add_untracked(untracked, path->buf + baselen);
2537 break;
2538
2539 default:
2540 break;
2541 }
2542}
2543
453ec4bd
LT
2544/*
2545 * Read a directory tree. We currently ignore anything but
2546 * directories, regular files and symlinks. That's because git
2547 * doesn't handle them at all yet. Maybe that will change some
2548 * day.
2549 *
2550 * Also, we ignore the name ".git" (even if it is not a directory).
2551 * That likely will not change.
defd7c7b 2552 *
5aaa7fd3
JM
2553 * If 'stop_at_first_file' is specified, 'path_excluded' is returned
2554 * to signal that a file was found. This is the least significant value that
2555 * indicates that a file was encountered that does not depend on the order of
446f46d8 2556 * whether an untracked or excluded path was encountered first.
5aaa7fd3 2557 *
defd7c7b 2558 * Returns the most significant path_treatment value encountered in the scan.
5aaa7fd3
JM
2559 * If 'stop_at_first_file' is specified, `path_excluded` is the most
2560 * significant path_treatment value that will be returned.
453ec4bd 2561 */
5aaa7fd3 2562
defd7c7b 2563static enum path_treatment read_directory_recursive(struct dir_struct *dir,
0ef8e169
BW
2564 struct index_state *istate, const char *base, int baselen,
2565 struct untracked_cache_dir *untracked, int check_only,
5aaa7fd3 2566 int stop_at_first_file, const struct pathspec *pathspec)
453ec4bd 2567{
777b4203 2568 /*
8d92fb29
EN
2569 * WARNING: Do NOT recurse unless path_recurse is returned from
2570 * treat_path(). Recursing on any other return value
2571 * can result in exponential slowdown.
777b4203 2572 */
cf7c6148 2573 struct cached_dir cdir;
defd7c7b 2574 enum path_treatment state, subdir_state, dir_state = path_none;
bef36921 2575 struct strbuf path = STRBUF_INIT;
453ec4bd 2576
bef36921 2577 strbuf_add(&path, base, baselen);
02cb6753 2578
0ef8e169 2579 if (open_cached_dir(&cdir, dir, untracked, istate, &path, check_only))
1528d247 2580 goto out;
5fdf285e 2581 dir->internal.visited_directories++;
1528d247 2582
0dcb8d7f
NTND
2583 if (untracked)
2584 untracked->check_only = !!check_only;
2585
cf7c6148 2586 while (!read_cached_dir(&cdir)) {
defd7c7b 2587 /* check how the file or directory should be treated */
0ef8e169 2588 state = treat_path(dir, untracked, &cdir, istate, &path,
e1b8c7bd 2589 baselen, pathspec);
5fdf285e 2590 dir->internal.visited_paths++;
0dcb8d7f 2591
defd7c7b
KB
2592 if (state > dir_state)
2593 dir_state = state;
2594
2595 /* recurse into subdir if instructed by treat_path */
8d92fb29 2596 if (state == path_recurse) {
0dcb8d7f 2597 struct untracked_cache_dir *ud;
5fdf285e
EN
2598 ud = lookup_untracked(dir->untracked,
2599 untracked,
0dcb8d7f
NTND
2600 path.buf + baselen,
2601 path.len - baselen);
2602 subdir_state =
0ef8e169 2603 read_directory_recursive(dir, istate, path.buf,
e1b8c7bd 2604 path.len, ud,
5aaa7fd3 2605 check_only, stop_at_first_file, pathspec);
defd7c7b
KB
2606 if (subdir_state > dir_state)
2607 dir_state = subdir_state;
404ebced 2608
69f272b9
EN
2609 if (pathspec &&
2610 !match_pathspec(istate, pathspec, path.buf, path.len,
404ebced
EN
2611 0 /* prefix */, NULL,
2612 0 /* do NOT special case dirs */))
2613 state = path_none;
defd7c7b
KB
2614 }
2615
2616 if (check_only) {
5aaa7fd3
JM
2617 if (stop_at_first_file) {
2618 /*
2619 * If stopping at first file, then
2620 * signal that a file was found by
2621 * returning `path_excluded`. This is
2622 * to return a consistent value
2623 * regardless of whether an ignored or
2624 * excluded file happened to be
2625 * encountered 1st.
2626 *
2627 * In current usage, the
2628 * `stop_at_first_file` is passed when
2629 * an ancestor directory has matched
2630 * an exclude pattern, so any found
2631 * files will be excluded.
2632 */
2633 if (dir_state >= path_excluded) {
2634 dir_state = path_excluded;
2635 break;
2636 }
2637 }
2638
defd7c7b 2639 /* abort early if maximum state has been reached */
0dcb8d7f 2640 if (dir_state == path_untracked) {
91a2288b 2641 if (cdir.fdir)
0dcb8d7f 2642 add_untracked(untracked, path.buf + baselen);
defd7c7b 2643 break;
0dcb8d7f 2644 }
0126d141 2645 /* skip the add_path_to_appropriate_result_list() */
02cb6753 2646 continue;
453ec4bd 2647 }
defd7c7b 2648
c5c4eddd
EN
2649 add_path_to_appropriate_result_list(dir, untracked, &cdir,
2650 istate, &path, baselen,
2651 pathspec, state);
453ec4bd 2652 }
cf7c6148 2653 close_cached_dir(&cdir);
1528d247 2654 out:
bef36921 2655 strbuf_release(&path);
453ec4bd 2656
defd7c7b 2657 return dir_state;
453ec4bd
LT
2658}
2659
bbf504a9 2660int cmp_dir_entry(const void *p1, const void *p2)
453ec4bd
LT
2661{
2662 const struct dir_entry *e1 = *(const struct dir_entry **)p1;
2663 const struct dir_entry *e2 = *(const struct dir_entry **)p2;
2664
ccdd4a0f 2665 return name_compare(e1->name, e1->len, e2->name, e2->len);
453ec4bd
LT
2666}
2667
fb898888 2668/* check if *out lexically strictly contains *in */
bbf504a9 2669int check_dir_entry_contains(const struct dir_entry *out, const struct dir_entry *in)
fb898888
SL
2670{
2671 return (out->len < in->len) &&
2672 (out->name[out->len - 1] == '/') &&
2673 !memcmp(out->name, in->name, out->len);
2674}
2675
48ffef96 2676static int treat_leading_path(struct dir_struct *dir,
0ef8e169 2677 struct index_state *istate,
48ffef96 2678 const char *path, int len,
e1b8c7bd 2679 const struct pathspec *pathspec)
48ffef96 2680{
49dc2cc2 2681 struct strbuf sb = STRBUF_INIT;
ad6f2157 2682 struct strbuf subdir = STRBUF_INIT;
b9670c1f 2683 int prevlen, baselen;
48ffef96 2684 const char *cp;
b9670c1f 2685 struct cached_dir cdir;
b9670c1f
EN
2686 enum path_treatment state = path_none;
2687
2688 /*
2689 * For each directory component of path, we are going to check whether
2690 * that path is relevant given the pathspec. For example, if path is
2691 * foo/bar/baz/
2692 * then we will ask treat_path() whether we should go into foo, then
2693 * whether we should go into bar, then whether baz is relevant.
2694 * Checking each is important because e.g. if path is
2695 * .git/info/
2696 * then we need to check .git to know we shouldn't traverse it.
2697 * If the return from treat_path() is:
2698 * * path_none, for any path, we return false.
2699 * * path_recurse, for all path components, we return true
2700 * * <anything else> for some intermediate component, we make sure
2701 * to add that path to the relevant list but return false
2702 * signifying that we shouldn't recurse into it.
2703 */
48ffef96
JH
2704
2705 while (len && path[len - 1] == '/')
2706 len--;
2707 if (!len)
2708 return 1;
b9670c1f 2709
b9670c1f 2710 memset(&cdir, 0, sizeof(cdir));
ad6f2157 2711 cdir.d_type = DT_DIR;
48ffef96 2712 baselen = 0;
b9670c1f 2713 prevlen = 0;
48ffef96 2714 while (1) {
b9670c1f
EN
2715 prevlen = baselen + !!baselen;
2716 cp = path + prevlen;
48ffef96
JH
2717 cp = memchr(cp, '/', path + len - cp);
2718 if (!cp)
2719 baselen = len;
2720 else
2721 baselen = cp - path;
b9670c1f 2722 strbuf_reset(&sb);
49dc2cc2
RS
2723 strbuf_add(&sb, path, baselen);
2724 if (!is_directory(sb.buf))
2725 break;
b9670c1f
EN
2726 strbuf_reset(&sb);
2727 strbuf_add(&sb, path, prevlen);
ad6f2157
JK
2728 strbuf_reset(&subdir);
2729 strbuf_add(&subdir, path+prevlen, baselen-prevlen);
2730 cdir.d_name = subdir.buf;
8d92fb29 2731 state = treat_path(dir, NULL, &cdir, istate, &sb, prevlen, pathspec);
777b4203 2732
b9670c1f 2733 if (state != path_recurse)
49dc2cc2 2734 break; /* do not recurse into it */
b9670c1f 2735 if (len <= baselen)
49dc2cc2 2736 break; /* finished checking */
48ffef96 2737 }
b9670c1f
EN
2738 add_path_to_appropriate_result_list(dir, NULL, &cdir, istate,
2739 &sb, baselen, pathspec,
2740 state);
2741
ad6f2157 2742 strbuf_release(&subdir);
49dc2cc2 2743 strbuf_release(&sb);
b9670c1f 2744 return state == path_recurse;
48ffef96
JH
2745}
2746
1e8fef60
NTND
2747static const char *get_ident_string(void)
2748{
2749 static struct strbuf sb = STRBUF_INIT;
2750 struct utsname uts;
2751
2752 if (sb.len)
2753 return sb.buf;
100e4337 2754 if (uname(&uts) < 0)
1e8fef60 2755 die_errno(_("failed to get kernel name and information"));
0e0f7618
CC
2756 strbuf_addf(&sb, "Location %s, system %s", get_git_work_tree(),
2757 uts.sysname);
1e8fef60
NTND
2758 return sb.buf;
2759}
2760
2761static int ident_in_untracked(const struct untracked_cache *uc)
2762{
0e0f7618
CC
2763 /*
2764 * Previous git versions may have saved many NUL separated
2765 * strings in the "ident" field, but it is insane to manage
2766 * many locations, so just take care of the first one.
2767 */
1e8fef60 2768
0e0f7618 2769 return !strcmp(uc->ident.buf, get_ident_string());
1e8fef60
NTND
2770}
2771
0e0f7618 2772static void set_untracked_ident(struct untracked_cache *uc)
1e8fef60 2773{
0e0f7618 2774 strbuf_reset(&uc->ident);
1e8fef60 2775 strbuf_addstr(&uc->ident, get_ident_string());
0e0f7618
CC
2776
2777 /*
2778 * This strbuf used to contain a list of NUL separated
2779 * strings, so save NUL too for backward compatibility.
2780 */
1e8fef60
NTND
2781 strbuf_addch(&uc->ident, 0);
2782}
2783
e6a65355
TK
2784static unsigned new_untracked_cache_flags(struct index_state *istate)
2785{
2786 struct repository *repo = istate->repo;
2787 char *val;
2788
2789 /*
2790 * This logic is coordinated with the setting of these flags in
2791 * wt-status.c#wt_status_collect_untracked(), and the evaluation
2792 * of the config setting in commit.c#git_status_config()
2793 */
2794 if (!repo_config_get_string(repo, "status.showuntrackedfiles", &val) &&
2795 !strcmp(val, "all"))
2796 return 0;
2797
2798 /*
2799 * The default, if "all" is not set, is "normal" - leading us here.
2800 * If the value is "none" then it really doesn't matter.
2801 */
2802 return DIR_SHOW_OTHER_DIRECTORIES | DIR_HIDE_EMPTY_DIRECTORIES;
2803}
2804
2805static void new_untracked_cache(struct index_state *istate, int flags)
4a4ca479
CC
2806{
2807 struct untracked_cache *uc = xcalloc(1, sizeof(*uc));
2808 strbuf_init(&uc->ident, 100);
2809 uc->exclude_per_dir = ".gitignore";
e6a65355 2810 uc->dir_flags = flags >= 0 ? flags : new_untracked_cache_flags(istate);
0e0f7618 2811 set_untracked_ident(uc);
4a4ca479 2812 istate->untracked = uc;
0e0f7618 2813 istate->cache_changed |= UNTRACKED_CHANGED;
4a4ca479
CC
2814}
2815
2816void add_untracked_cache(struct index_state *istate)
2817{
2818 if (!istate->untracked) {
e6a65355 2819 new_untracked_cache(istate, -1);
0e0f7618
CC
2820 } else {
2821 if (!ident_in_untracked(istate->untracked)) {
2822 free_untracked_cache(istate->untracked);
e6a65355 2823 new_untracked_cache(istate, -1);
0e0f7618
CC
2824 }
2825 }
4a4ca479
CC
2826}
2827
07b29bfd
CC
2828void remove_untracked_cache(struct index_state *istate)
2829{
2830 if (istate->untracked) {
2831 free_untracked_cache(istate->untracked);
2832 istate->untracked = NULL;
2833 istate->cache_changed |= UNTRACKED_CHANGED;
2834 }
2835}
2836
ccad261f
NTND
2837static struct untracked_cache_dir *validate_untracked_cache(struct dir_struct *dir,
2838 int base_len,
317956d9
TK
2839 const struct pathspec *pathspec,
2840 struct index_state *istate)
ccad261f
NTND
2841{
2842 struct untracked_cache_dir *root;
026336cb 2843 static int untracked_cache_disabled = -1;
ccad261f 2844
026336cb
JH
2845 if (!dir->untracked)
2846 return NULL;
2847 if (untracked_cache_disabled < 0)
2848 untracked_cache_disabled = git_env_bool("GIT_DISABLE_UNTRACKED_CACHE", 0);
2849 if (untracked_cache_disabled)
ccad261f
NTND
2850 return NULL;
2851
2852 /*
2853 * We only support $GIT_DIR/info/exclude and core.excludesfile
2854 * as the global ignore rule files. Any other additions
2855 * (e.g. from command line) invalidate the cache. This
2856 * condition also catches running setup_standard_excludes()
2857 * before setting dir->untracked!
2858 */
5fdf285e 2859 if (dir->internal.unmanaged_exclude_files)
ccad261f
NTND
2860 return NULL;
2861
2862 /*
2863 * Optimize for the main use case only: whole-tree git
2864 * status. More work involved in treat_leading_path() if we
2865 * use cache on just a subset of the worktree. pathspec
2866 * support could make the matter even worse.
2867 */
2868 if (base_len || (pathspec && pathspec->nr))
2869 return NULL;
2870
e6a65355
TK
2871 /* We don't support collecting ignore files */
2872 if (dir->flags & (DIR_SHOW_IGNORED | DIR_SHOW_IGNORED_TOO |
2873 DIR_COLLECT_IGNORED))
ccad261f
NTND
2874 return NULL;
2875
2876 /*
2877 * If we use .gitignore in the cache and now you change it to
2878 * .gitexclude, everything will go wrong.
2879 */
2880 if (dir->exclude_per_dir != dir->untracked->exclude_per_dir &&
2881 strcmp(dir->exclude_per_dir, dir->untracked->exclude_per_dir))
2882 return NULL;
2883
2884 /*
2885 * EXC_CMDL is not considered in the cache. If people set it,
2886 * skip the cache.
2887 */
5fdf285e 2888 if (dir->internal.exclude_list_group[EXC_CMDL].nr)
ccad261f
NTND
2889 return NULL;
2890
1e8fef60 2891 if (!ident_in_untracked(dir->untracked)) {
1a07e59c 2892 warning(_("untracked cache is disabled on this system or location"));
1e8fef60
NTND
2893 return NULL;
2894 }
2895
e6a65355
TK
2896 /*
2897 * If the untracked structure we received does not have the same flags
2898 * as requested in this run, we're going to need to either discard the
2899 * existing structure (and potentially later recreate), or bypass the
2900 * untracked cache mechanism for this run.
2901 */
2902 if (dir->flags != dir->untracked->dir_flags) {
2903 /*
2904 * If the untracked structure we received does not have the same flags
2905 * as configured, then we need to reset / create a new "untracked"
2906 * structure to match the new config.
2907 *
2908 * Keeping the saved and used untracked cache consistent with the
2909 * configuration provides an opportunity for frequent users of
2910 * "git status -uall" to leverage the untracked cache by aligning their
2911 * configuration - setting "status.showuntrackedfiles" to "all" or
2912 * "normal" as appropriate.
2913 *
2914 * Previously using -uall (or setting "status.showuntrackedfiles" to
2915 * "all") was incompatible with untracked cache and *consistently*
2916 * caused surprisingly bad performance (with fscache and fsmonitor
2917 * enabled) on Windows.
2918 *
2919 * IMPROVEMENT OPPORTUNITY: If we reworked the untracked cache storage
2920 * to not be as bound up with the desired output in a given run,
2921 * and instead iterated through and stored enough information to
2922 * correctly serve both "modes", then users could get peak performance
2923 * with or without '-uall' regardless of their
2924 * "status.showuntrackedfiles" config.
2925 */
2926 if (dir->untracked->dir_flags != new_untracked_cache_flags(istate)) {
2927 free_untracked_cache(istate->untracked);
2928 new_untracked_cache(istate, dir->flags);
2929 dir->untracked = istate->untracked;
2930 }
2931 else {
2932 /*
2933 * Current untracked cache data is consistent with config, but not
2934 * usable in this request/run; just bypass untracked cache.
2935 */
2936 return NULL;
2937 }
2938 }
2939
317956d9
TK
2940 if (!dir->untracked->root) {
2941 /* Untracked cache existed but is not initialized; fix that */
6347d649 2942 FLEX_ALLOC_STR(dir->untracked->root, name, "");
317956d9
TK
2943 istate->cache_changed |= UNTRACKED_CHANGED;
2944 }
ccad261f
NTND
2945
2946 /* Validate $GIT_DIR/info/exclude and core.excludesfile */
2947 root = dir->untracked->root;
5fdf285e 2948 if (!oideq(&dir->internal.ss_info_exclude.oid,
4b33e602 2949 &dir->untracked->ss_info_exclude.oid)) {
ccad261f 2950 invalidate_gitignore(dir->untracked, root);
5fdf285e 2951 dir->untracked->ss_info_exclude = dir->internal.ss_info_exclude;
ccad261f 2952 }
5fdf285e 2953 if (!oideq(&dir->internal.ss_excludes_file.oid,
4b33e602 2954 &dir->untracked->ss_excludes_file.oid)) {
ccad261f 2955 invalidate_gitignore(dir->untracked, root);
5fdf285e 2956 dir->untracked->ss_excludes_file = dir->internal.ss_excludes_file;
ccad261f 2957 }
26cb0182
NTND
2958
2959 /* Make sure this directory is not dropped out at saving phase */
2960 root->recurse = 1;
ccad261f
NTND
2961 return root;
2962}
2963
7f9dd879
EN
2964static void emit_traversal_statistics(struct dir_struct *dir,
2965 struct repository *repo,
2966 const char *path,
2967 int path_len)
2968{
2969 if (!trace2_is_enabled())
2970 return;
2971
2972 if (!path_len) {
2973 trace2_data_string("read_directory", repo, "path", "");
2974 } else {
2975 struct strbuf tmp = STRBUF_INIT;
2976 strbuf_add(&tmp, path, path_len);
2977 trace2_data_string("read_directory", repo, "path", tmp.buf);
2978 strbuf_release(&tmp);
2979 }
2980
7fe1ffda 2981 trace2_data_intmax("read_directory", repo,
5fdf285e 2982 "directories-visited", dir->internal.visited_directories);
7fe1ffda 2983 trace2_data_intmax("read_directory", repo,
5fdf285e 2984 "paths-visited", dir->internal.visited_paths);
7fe1ffda 2985
7f9dd879
EN
2986 if (!dir->untracked)
2987 return;
2988 trace2_data_intmax("read_directory", repo,
2989 "node-creation", dir->untracked->dir_created);
2990 trace2_data_intmax("read_directory", repo,
2991 "gitignore-invalidation",
2992 dir->untracked->gitignore_invalidated);
2993 trace2_data_intmax("read_directory", repo,
2994 "directory-invalidation",
2995 dir->untracked->dir_invalidated);
2996 trace2_data_intmax("read_directory", repo,
2997 "opendir", dir->untracked->dir_opened);
2998}
2999
2c1eb104
BW
3000int read_directory(struct dir_struct *dir, struct index_state *istate,
3001 const char *path, int len, const struct pathspec *pathspec)
9fc42d60 3002{
ccad261f 3003 struct untracked_cache_dir *untracked;
b4189aa8 3004
7f9dd879 3005 trace2_region_enter("dir", "read_directory", istate->repo);
5fdf285e
EN
3006 dir->internal.visited_paths = 0;
3007 dir->internal.visited_directories = 0;
c46c406a
NTND
3008
3009 if (has_symlink_leading_path(path, len)) {
7f9dd879 3010 trace2_region_leave("dir", "read_directory", istate->repo);
725b0605 3011 return dir->nr;
c46c406a 3012 }
725b0605 3013
317956d9 3014 untracked = validate_untracked_cache(dir, len, pathspec, istate);
ccad261f
NTND
3015 if (!untracked)
3016 /*
3017 * make sure untracked cache code path is disabled,
3018 * e.g. prep_exclude()
3019 */
3020 dir->untracked = NULL;
2c1eb104 3021 if (!len || treat_leading_path(dir, istate, path, len, pathspec))
5aaa7fd3 3022 read_directory_recursive(dir, istate, path, len, untracked, 0, 0, pathspec);
bbf504a9
SL
3023 QSORT(dir->entries, dir->nr, cmp_dir_entry);
3024 QSORT(dir->ignored, dir->ignored_nr, cmp_dir_entry);
fb898888 3025
7f9dd879
EN
3026 emit_traversal_statistics(dir, istate->repo, path, len);
3027
3028 trace2_region_leave("dir", "read_directory", istate->repo);
c9ccb5d3 3029 if (dir->untracked) {
026336cb 3030 static int force_untracked_cache = -1;
026336cb
JH
3031
3032 if (force_untracked_cache < 0)
3033 force_untracked_cache =
26b89464
DS
3034 git_env_bool("GIT_FORCE_UNTRACKED_CACHE", -1);
3035 if (force_untracked_cache < 0)
3036 force_untracked_cache = (istate->repo->settings.core_untracked_cache == UNTRACKED_CACHE_WRITE);
026336cb 3037 if (force_untracked_cache &&
fc9ecbeb 3038 dir->untracked == istate->untracked &&
1bbb3dba
NTND
3039 (dir->untracked->dir_opened ||
3040 dir->untracked->gitignore_invalidated ||
3041 dir->untracked->dir_invalidated))
2c1eb104
BW
3042 istate->cache_changed |= UNTRACKED_CHANGED;
3043 if (dir->untracked != istate->untracked) {
6a83d902 3044 FREE_AND_NULL(dir->untracked);
1bbb3dba 3045 }
c9ccb5d3 3046 }
7f9dd879 3047
453ec4bd
LT
3048 return dir->nr;
3049}
c91f0d92 3050
686a4a06 3051int file_exists(const char *f)
c91f0d92 3052{
686a4a06 3053 struct stat sb;
a50f9fc5 3054 return lstat(f, &sb) == 0;
c91f0d92 3055}
e6636747 3056
0488481e
NTND
3057int repo_file_exists(struct repository *repo, const char *path)
3058{
3059 if (repo != the_repository)
3060 BUG("do not know how to check file existence in arbitrary repo");
3061
3062 return file_exists(path);
3063}
3064
63ec5e1f
JS
3065static int cmp_icase(char a, char b)
3066{
3067 if (a == b)
3068 return 0;
3069 if (ignore_case)
3070 return toupper(a) - toupper(b);
3071 return a - b;
3072}
3073
e6636747 3074/*
9b125da4
NTND
3075 * Given two normalized paths (a trailing slash is ok), if subdir is
3076 * outside dir, return -1. Otherwise return the offset in subdir that
3077 * can be used as relative path to dir.
e6636747 3078 */
9b125da4 3079int dir_inside_of(const char *subdir, const char *dir)
e6636747 3080{
9b125da4 3081 int offset = 0;
e6636747 3082
9b125da4 3083 assert(dir && subdir && *dir && *subdir);
e6636747 3084
63ec5e1f 3085 while (*dir && *subdir && !cmp_icase(*dir, *subdir)) {
e6636747 3086 dir++;
9b125da4
NTND
3087 subdir++;
3088 offset++;
490544b1 3089 }
9b125da4
NTND
3090
3091 /* hel[p]/me vs hel[l]/yeah */
3092 if (*dir && *subdir)
3093 return -1;
3094
3095 if (!*subdir)
3096 return !*dir ? offset : -1; /* same dir */
3097
3098 /* foo/[b]ar vs foo/[] */
3099 if (is_dir_sep(dir[-1]))
3100 return is_dir_sep(subdir[-1]) ? offset : -1;
3101
3102 /* foo[/]bar vs foo[] */
3103 return is_dir_sep(*subdir) ? offset + 1 : -1;
e6636747
JS
3104}
3105
3106int is_inside_dir(const char *dir)
3107{
56b9f6e7
RS
3108 char *cwd;
3109 int rc;
3110
b892913d
NTND
3111 if (!dir)
3112 return 0;
56b9f6e7
RS
3113
3114 cwd = xgetcwd();
3115 rc = (dir_inside_of(cwd, dir) >= 0);
3116 free(cwd);
3117 return rc;
e6636747 3118}
7155b727 3119
55892d23
AP
3120int is_empty_dir(const char *path)
3121{
3122 DIR *dir = opendir(path);
3123 struct dirent *e;
3124 int ret = 1;
3125
3126 if (!dir)
3127 return 0;
3128
b548f0f1
EN
3129 e = readdir_skip_dot_and_dotdot(dir);
3130 if (e)
3131 ret = 0;
55892d23
AP
3132
3133 closedir(dir);
3134 return ret;
3135}
3136
ed86301f
AR
3137char *git_url_basename(const char *repo, int is_bundle, int is_bare)
3138{
3139 const char *end = repo + strlen(repo), *start, *ptr;
3140 size_t len;
3141 char *dir;
3142
3143 /*
3144 * Skip scheme.
3145 */
3146 start = strstr(repo, "://");
afe8a907 3147 if (!start)
ed86301f
AR
3148 start = repo;
3149 else
3150 start += 3;
3151
3152 /*
3153 * Skip authentication data. The stripping does happen
3154 * greedily, such that we strip up to the last '@' inside
3155 * the host part.
3156 */
3157 for (ptr = start; ptr < end && !is_dir_sep(*ptr); ptr++) {
3158 if (*ptr == '@')
3159 start = ptr + 1;
3160 }
3161
3162 /*
3163 * Strip trailing spaces, slashes and /.git
3164 */
3165 while (start < end && (is_dir_sep(end[-1]) || isspace(end[-1])))
3166 end--;
3167 if (end - start > 5 && is_dir_sep(end[-5]) &&
3168 !strncmp(end - 4, ".git", 4)) {
3169 end -= 5;
3170 while (start < end && is_dir_sep(end[-1]))
3171 end--;
3172 }
3173
2acf4cf0
JS
3174 /*
3175 * It should not be possible to overflow `ptrdiff_t` by passing in an
3176 * insanely long URL, but GCC does not know that and will complain
3177 * without this check.
3178 */
3179 if (end - start < 0)
3180 die(_("No directory name could be guessed.\n"
3181 "Please specify a directory on the command line"));
3182
ed86301f
AR
3183 /*
3184 * Strip trailing port number if we've got only a
3185 * hostname (that is, there is no dir separator but a
3186 * colon). This check is required such that we do not
3187 * strip URI's like '/foo/bar:2222.git', which should
3188 * result in a dir '2222' being guessed due to backwards
3189 * compatibility.
3190 */
3191 if (memchr(start, '/', end - start) == NULL
3192 && memchr(start, ':', end - start) != NULL) {
3193 ptr = end;
3194 while (start < ptr && isdigit(ptr[-1]) && ptr[-1] != ':')
3195 ptr--;
3196 if (start < ptr && ptr[-1] == ':')
3197 end = ptr - 1;
3198 }
3199
3200 /*
3201 * Find last component. To remain backwards compatible we
3202 * also regard colons as path separators, such that
3203 * cloning a repository 'foo:bar.git' would result in a
3204 * directory 'bar' being guessed.
3205 */
3206 ptr = end;
3207 while (start < ptr && !is_dir_sep(ptr[-1]) && ptr[-1] != ':')
3208 ptr--;
3209 start = ptr;
3210
3211 /*
3212 * Strip .{bundle,git}.
3213 */
3214 len = end - start;
3215 strip_suffix_mem(start, &len, is_bundle ? ".bundle" : ".git");
3216
3217 if (!len || (len == 1 && *start == '/'))
3218 die(_("No directory name could be guessed.\n"
3219 "Please specify a directory on the command line"));
3220
3221 if (is_bare)
3222 dir = xstrfmt("%.*s.git", (int)len, start);
3223 else
3224 dir = xstrndup(start, len);
3225 /*
3226 * Replace sequences of 'control' characters and whitespace
3227 * with one ascii space, remove leading and trailing spaces.
3228 */
3229 if (*dir) {
3230 char *out = dir;
3231 int prev_space = 1 /* strip leading whitespace */;
3232 for (end = dir; *end; ++end) {
3233 char ch = *end;
3234 if ((unsigned char)ch < '\x20')
3235 ch = '\x20';
3236 if (isspace(ch)) {
3237 if (prev_space)
3238 continue;
3239 prev_space = 1;
3240 } else
3241 prev_space = 0;
3242 *out++ = ch;
3243 }
3244 *out = '\0';
3245 if (out > dir && prev_space)
3246 out[-1] = '\0';
3247 }
3248 return dir;
3249}
3250
3251void strip_dir_trailing_slashes(char *dir)
3252{
3253 char *end = dir + strlen(dir);
3254
3255 while (dir < end - 1 && is_dir_sep(end[-1]))
3256 end--;
3257 *end = '\0';
3258}
3259
ae2f203e 3260static int remove_dir_recurse(struct strbuf *path, int flag, int *kept_up)
7155b727 3261{
a0f4afbe 3262 DIR *dir;
7155b727 3263 struct dirent *e;
ae2f203e 3264 int ret = 0, original_len = path->len, len, kept_down = 0;
a0f4afbe 3265 int only_empty = (flag & REMOVE_DIR_EMPTY_ONLY);
c844a803 3266 int keep_toplevel = (flag & REMOVE_DIR_KEEP_TOPLEVEL);
580a5d7f 3267 int purge_original_cwd = (flag & REMOVE_DIR_PURGE_ORIGINAL_CWD);
1053fe82 3268 struct object_id submodule_head;
7155b727 3269
a0f4afbe 3270 if ((flag & REMOVE_DIR_KEEP_NESTED_GIT) &&
a98e6101 3271 !resolve_gitlink_ref(path->buf, "HEAD", &submodule_head)) {
a0f4afbe 3272 /* Do not descend and nuke a nested git work tree. */
ae2f203e
JH
3273 if (kept_up)
3274 *kept_up = 1;
a0f4afbe 3275 return 0;
ae2f203e 3276 }
a0f4afbe 3277
ae2f203e 3278 flag &= ~REMOVE_DIR_KEEP_TOPLEVEL;
a0f4afbe 3279 dir = opendir(path->buf);
c844a803 3280 if (!dir) {
863808cd
MH
3281 if (errno == ENOENT)
3282 return keep_toplevel ? -1 : 0;
3283 else if (errno == EACCES && !keep_toplevel)
ecb2c282
MH
3284 /*
3285 * An empty dir could be removable even if it
3286 * is unreadable:
3287 */
c844a803
JH
3288 return rmdir(path->buf);
3289 else
3290 return -1;
3291 }
00b6c178 3292 strbuf_complete(path, '/');
7155b727
JS
3293
3294 len = path->len;
b548f0f1 3295 while ((e = readdir_skip_dot_and_dotdot(dir)) != NULL) {
7155b727 3296 struct stat st;
7155b727
JS
3297
3298 strbuf_setlen(path, len);
3299 strbuf_addstr(path, e->d_name);
863808cd
MH
3300 if (lstat(path->buf, &st)) {
3301 if (errno == ENOENT)
3302 /*
3303 * file disappeared, which is what we
3304 * wanted anyway
3305 */
3306 continue;
15beaaa3 3307 /* fall through */
863808cd 3308 } else if (S_ISDIR(st.st_mode)) {
ae2f203e 3309 if (!remove_dir_recurse(path, flag, &kept_down))
7155b727 3310 continue; /* happy */
863808cd
MH
3311 } else if (!only_empty &&
3312 (!unlink(path->buf) || errno == ENOENT)) {
7155b727 3313 continue; /* happy, too */
863808cd 3314 }
7155b727
JS
3315
3316 /* path too long, stat fails, or non-directory still exists */
3317 ret = -1;
3318 break;
3319 }
3320 closedir(dir);
3321
3322 strbuf_setlen(path, original_len);
580a5d7f
EN
3323 if (!ret && !keep_toplevel && !kept_down) {
3324 if (!purge_original_cwd &&
3325 startup_info->original_cwd &&
3326 !strcmp(startup_info->original_cwd, path->buf))
3327 ret = -1; /* Do not remove current working directory */
3328 else
3329 ret = (!rmdir(path->buf) || errno == ENOENT) ? 0 : -1;
3330 } else if (kept_up)
ae2f203e
JH
3331 /*
3332 * report the uplevel that it is not an error that we
3333 * did not rmdir() our directory.
3334 */
3335 *kept_up = !ret;
7155b727
JS
3336 return ret;
3337}
039bc64e 3338
ae2f203e
JH
3339int remove_dir_recursively(struct strbuf *path, int flag)
3340{
3341 return remove_dir_recurse(path, flag, NULL);
3342}
3343
f932729c
JK
3344static GIT_PATH_FUNC(git_path_info_exclude, "info/exclude")
3345
039bc64e
JH
3346void setup_standard_excludes(struct dir_struct *dir)
3347{
039bc64e 3348 dir->exclude_per_dir = ".gitignore";
099d2d86 3349
51d18631 3350 /* core.excludesfile defaulting to $XDG_CONFIG_HOME/git/ignore */
2845ce7f
PT
3351 if (!excludes_file)
3352 excludes_file = xdg_config_home("ignore");
4698c8fe 3353 if (excludes_file && !access_or_warn(excludes_file, R_OK, 0))
65edd96a 3354 add_patterns_from_file_1(dir, excludes_file,
5fdf285e 3355 dir->untracked ? &dir->internal.ss_excludes_file : NULL);
099d2d86
JH
3356
3357 /* per repository user preference */
f0056f64
JK
3358 if (startup_info->have_repository) {
3359 const char *path = git_path_info_exclude();
3360 if (!access_or_warn(path, R_OK, 0))
65edd96a 3361 add_patterns_from_file_1(dir, path,
5fdf285e 3362 dir->untracked ? &dir->internal.ss_info_exclude : NULL);
f0056f64 3363 }
039bc64e 3364}
4a92d1bf 3365
dd23022a
DS
3366char *get_sparse_checkout_filename(void)
3367{
3368 return git_pathdup("info/sparse-checkout");
3369}
3370
3371int get_sparse_checkout_patterns(struct pattern_list *pl)
3372{
3373 int res;
3374 char *sparse_filename = get_sparse_checkout_filename();
3375
3376 pl->use_cone_patterns = core_sparse_checkout_cone;
1679d60b 3377 res = add_patterns_from_file_to_list(sparse_filename, "", 0, pl, NULL, 0);
dd23022a
DS
3378
3379 free(sparse_filename);
3380 return res;
3381}
3382
4a92d1bf
AR
3383int remove_path(const char *name)
3384{
3385 char *slash;
3386
c7054209 3387 if (unlink(name) && !is_missing_file_error(errno))
4a92d1bf
AR
3388 return -1;
3389
3390 slash = strrchr(name, '/');
3391 if (slash) {
3392 char *dirs = xstrdup(name);
3393 slash = dirs + (slash - name);
3394 do {
3395 *slash = '\0';
63bbe8be
EN
3396 if (startup_info->original_cwd &&
3397 !strcmp(startup_info->original_cwd, dirs))
3398 break;
3fc0d131 3399 } while (rmdir(dirs) == 0 && (slash = strrchr(dirs, '/')));
4a92d1bf
AR
3400 free(dirs);
3401 }
3402 return 0;
3403}
3404
270be816 3405/*
dad4f23c
EN
3406 * Frees memory within dir which was allocated, and resets fields for further
3407 * use. Does not free dir itself.
270be816 3408 */
eceba532 3409void dir_clear(struct dir_struct *dir)
270be816
AS
3410{
3411 int i, j;
3412 struct exclude_list_group *group;
caa3d554 3413 struct pattern_list *pl;
270be816 3414 struct exclude_stack *stk;
ce93a4c6 3415 struct dir_struct new = DIR_INIT;
270be816
AS
3416
3417 for (i = EXC_CMDL; i <= EXC_FILE; i++) {
5fdf285e 3418 group = &dir->internal.exclude_list_group[i];
270be816 3419 for (j = 0; j < group->nr; j++) {
caa3d554 3420 pl = &group->pl[j];
270be816 3421 if (i == EXC_DIRS)
caa3d554 3422 free((char *)pl->src);
65edd96a 3423 clear_pattern_list(pl);
270be816 3424 }
caa3d554 3425 free(group->pl);
270be816
AS
3426 }
3427
dad4f23c
EN
3428 for (i = 0; i < dir->ignored_nr; i++)
3429 free(dir->ignored[i]);
3430 for (i = 0; i < dir->nr; i++)
3431 free(dir->entries[i]);
3432 free(dir->ignored);
3433 free(dir->entries);
3434
5fdf285e 3435 stk = dir->internal.exclude_stack;
270be816
AS
3436 while (stk) {
3437 struct exclude_stack *prev = stk->prev;
3438 free(stk);
3439 stk = prev;
3440 }
5fdf285e 3441 strbuf_release(&dir->internal.basebuf);
dad4f23c 3442
ce93a4c6 3443 memcpy(dir, &new, sizeof(*dir));
270be816 3444}
83c094ad
NTND
3445
3446struct ondisk_untracked_cache {
3447 struct stat_data info_exclude_stat;
3448 struct stat_data excludes_file_stat;
3449 uint32_t dir_flags;
83c094ad
NTND
3450};
3451
268ba201 3452#define ouc_offset(x) offsetof(struct ondisk_untracked_cache, x)
83c094ad
NTND
3453
3454struct write_data {
3455 int index; /* number of written untracked_cache_dir */
3456 struct ewah_bitmap *check_only; /* from untracked_cache_dir */
3457 struct ewah_bitmap *valid; /* from untracked_cache_dir */
3458 struct ewah_bitmap *sha1_valid; /* set if exclude_sha1 is not null */
3459 struct strbuf out;
3460 struct strbuf sb_stat;
3461 struct strbuf sb_sha1;
3462};
3463
3464static void stat_data_to_disk(struct stat_data *to, const struct stat_data *from)
3465{
3466 to->sd_ctime.sec = htonl(from->sd_ctime.sec);
3467 to->sd_ctime.nsec = htonl(from->sd_ctime.nsec);
3468 to->sd_mtime.sec = htonl(from->sd_mtime.sec);
3469 to->sd_mtime.nsec = htonl(from->sd_mtime.nsec);
3470 to->sd_dev = htonl(from->sd_dev);
3471 to->sd_ino = htonl(from->sd_ino);
3472 to->sd_uid = htonl(from->sd_uid);
3473 to->sd_gid = htonl(from->sd_gid);
3474 to->sd_size = htonl(from->sd_size);
3475}
3476
3477static void write_one_dir(struct untracked_cache_dir *untracked,
3478 struct write_data *wd)
3479{
3480 struct stat_data stat_data;
3481 struct strbuf *out = &wd->out;
3482 unsigned char intbuf[16];
3483 unsigned int intlen, value;
3484 int i = wd->index++;
3485
3486 /*
3487 * untracked_nr should be reset whenever valid is clear, but
3488 * for safety..
3489 */
3490 if (!untracked->valid) {
3491 untracked->untracked_nr = 0;
3492 untracked->check_only = 0;
3493 }
3494
3495 if (untracked->check_only)
3496 ewah_set(wd->check_only, i);
3497 if (untracked->valid) {
3498 ewah_set(wd->valid, i);
3499 stat_data_to_disk(&stat_data, &untracked->stat_data);
3500 strbuf_add(&wd->sb_stat, &stat_data, sizeof(stat_data));
3501 }
70c369cd 3502 if (!is_null_oid(&untracked->exclude_oid)) {
83c094ad 3503 ewah_set(wd->sha1_valid, i);
70c369cd 3504 strbuf_add(&wd->sb_sha1, untracked->exclude_oid.hash,
3505 the_hash_algo->rawsz);
83c094ad
NTND
3506 }
3507
3508 intlen = encode_varint(untracked->untracked_nr, intbuf);
3509 strbuf_add(out, intbuf, intlen);
3510
3511 /* skip non-recurse directories */
3512 for (i = 0, value = 0; i < untracked->dirs_nr; i++)
3513 if (untracked->dirs[i]->recurse)
3514 value++;
3515 intlen = encode_varint(value, intbuf);
3516 strbuf_add(out, intbuf, intlen);
3517
3518 strbuf_add(out, untracked->name, strlen(untracked->name) + 1);
3519
3520 for (i = 0; i < untracked->untracked_nr; i++)
3521 strbuf_add(out, untracked->untracked[i],
3522 strlen(untracked->untracked[i]) + 1);
3523
3524 for (i = 0; i < untracked->dirs_nr; i++)
3525 if (untracked->dirs[i]->recurse)
3526 write_one_dir(untracked->dirs[i], wd);
3527}
3528
3529void write_untracked_extension(struct strbuf *out, struct untracked_cache *untracked)
3530{
3531 struct ondisk_untracked_cache *ouc;
3532 struct write_data wd;
3533 unsigned char varbuf[16];
e0b83735 3534 int varint_len;
3899b88b 3535 const unsigned hashsz = the_hash_algo->rawsz;
e0b83735 3536
ca56dadb 3537 CALLOC_ARRAY(ouc, 1);
83c094ad
NTND
3538 stat_data_to_disk(&ouc->info_exclude_stat, &untracked->ss_info_exclude.stat);
3539 stat_data_to_disk(&ouc->excludes_file_stat, &untracked->ss_excludes_file.stat);
83c094ad 3540 ouc->dir_flags = htonl(untracked->dir_flags);
1e8fef60
NTND
3541
3542 varint_len = encode_varint(untracked->ident.len, varbuf);
3543 strbuf_add(out, varbuf, varint_len);
8109984d 3544 strbuf_addbuf(out, &untracked->ident);
1e8fef60 3545
3899b88b 3546 strbuf_add(out, ouc, sizeof(*ouc));
3547 strbuf_add(out, untracked->ss_info_exclude.oid.hash, hashsz);
3548 strbuf_add(out, untracked->ss_excludes_file.oid.hash, hashsz);
3549 strbuf_add(out, untracked->exclude_per_dir, strlen(untracked->exclude_per_dir) + 1);
6a83d902 3550 FREE_AND_NULL(ouc);
83c094ad
NTND
3551
3552 if (!untracked->root) {
3553 varint_len = encode_varint(0, varbuf);
3554 strbuf_add(out, varbuf, varint_len);
3555 return;
3556 }
3557
3558 wd.index = 0;
3559 wd.check_only = ewah_new();
3560 wd.valid = ewah_new();
3561 wd.sha1_valid = ewah_new();
3562 strbuf_init(&wd.out, 1024);
3563 strbuf_init(&wd.sb_stat, 1024);
3564 strbuf_init(&wd.sb_sha1, 1024);
3565 write_one_dir(untracked->root, &wd);
3566
3567 varint_len = encode_varint(wd.index, varbuf);
3568 strbuf_add(out, varbuf, varint_len);
3569 strbuf_addbuf(out, &wd.out);
3570 ewah_serialize_strbuf(wd.valid, out);
3571 ewah_serialize_strbuf(wd.check_only, out);
3572 ewah_serialize_strbuf(wd.sha1_valid, out);
3573 strbuf_addbuf(out, &wd.sb_stat);
3574 strbuf_addbuf(out, &wd.sb_sha1);
3575 strbuf_addch(out, '\0'); /* safe guard for string lists */
3576
3577 ewah_free(wd.valid);
3578 ewah_free(wd.check_only);
3579 ewah_free(wd.sha1_valid);
3580 strbuf_release(&wd.out);
3581 strbuf_release(&wd.sb_stat);
3582 strbuf_release(&wd.sb_sha1);
3583}
f9e6c649
NTND
3584
3585static void free_untracked(struct untracked_cache_dir *ucd)
3586{
3587 int i;
3588 if (!ucd)
3589 return;
3590 for (i = 0; i < ucd->dirs_nr; i++)
3591 free_untracked(ucd->dirs[i]);
3592 for (i = 0; i < ucd->untracked_nr; i++)
3593 free(ucd->untracked[i]);
3594 free(ucd->untracked);
3595 free(ucd->dirs);
3596 free(ucd);
3597}
3598
3599void free_untracked_cache(struct untracked_cache *uc)
3600{
083fd1a2
ÆAB
3601 if (!uc)
3602 return;
3603
3604 free(uc->exclude_per_dir_to_free);
3605 strbuf_release(&uc->ident);
3606 free_untracked(uc->root);
f9e6c649
NTND
3607 free(uc);
3608}
3609
3610struct read_data {
3611 int index;
3612 struct untracked_cache_dir **ucd;
3613 struct ewah_bitmap *check_only;
3614 struct ewah_bitmap *valid;
3615 struct ewah_bitmap *sha1_valid;
3616 const unsigned char *data;
3617 const unsigned char *end;
3618};
3619
268ba201 3620static void stat_data_from_disk(struct stat_data *to, const unsigned char *data)
f9e6c649 3621{
268ba201
RS
3622 memcpy(to, data, sizeof(*to));
3623 to->sd_ctime.sec = ntohl(to->sd_ctime.sec);
3624 to->sd_ctime.nsec = ntohl(to->sd_ctime.nsec);
3625 to->sd_mtime.sec = ntohl(to->sd_mtime.sec);
3626 to->sd_mtime.nsec = ntohl(to->sd_mtime.nsec);
3627 to->sd_dev = ntohl(to->sd_dev);
3628 to->sd_ino = ntohl(to->sd_ino);
3629 to->sd_uid = ntohl(to->sd_uid);
3630 to->sd_gid = ntohl(to->sd_gid);
3631 to->sd_size = ntohl(to->sd_size);
f9e6c649
NTND
3632}
3633
3634static int read_one_dir(struct untracked_cache_dir **untracked_,
3635 struct read_data *rd)
3636{
3637 struct untracked_cache_dir ud, *untracked;
b511d6d5 3638 const unsigned char *data = rd->data, *end = rd->end;
c6909f99 3639 const unsigned char *eos;
f9e6c649 3640 unsigned int value;
08bf354d 3641 int i;
f9e6c649
NTND
3642
3643 memset(&ud, 0, sizeof(ud));
3644
b511d6d5
JK
3645 value = decode_varint(&data);
3646 if (data > end)
f9e6c649
NTND
3647 return -1;
3648 ud.recurse = 1;
3649 ud.untracked_alloc = value;
3650 ud.untracked_nr = value;
3651 if (ud.untracked_nr)
b32fa95f 3652 ALLOC_ARRAY(ud.untracked, ud.untracked_nr);
f9e6c649 3653
b511d6d5
JK
3654 ud.dirs_alloc = ud.dirs_nr = decode_varint(&data);
3655 if (data > end)
f9e6c649 3656 return -1;
b32fa95f 3657 ALLOC_ARRAY(ud.dirs, ud.dirs_nr);
f9e6c649 3658
c6909f99
JK
3659 eos = memchr(data, '\0', end - data);
3660 if (!eos || eos == end)
f9e6c649 3661 return -1;
c6909f99 3662
08bf354d 3663 *untracked_ = untracked = xmalloc(st_add3(sizeof(*untracked), eos - data, 1));
f9e6c649 3664 memcpy(untracked, &ud, sizeof(ud));
08bf354d 3665 memcpy(untracked->name, data, eos - data + 1);
b511d6d5 3666 data = eos + 1;
f9e6c649
NTND
3667
3668 for (i = 0; i < untracked->untracked_nr; i++) {
c6909f99
JK
3669 eos = memchr(data, '\0', end - data);
3670 if (!eos || eos == end)
f9e6c649 3671 return -1;
08bf354d 3672 untracked->untracked[i] = xmemdupz(data, eos - data);
b511d6d5 3673 data = eos + 1;
f9e6c649
NTND
3674 }
3675
3676 rd->ucd[rd->index++] = untracked;
3677 rd->data = data;
3678
3679 for (i = 0; i < untracked->dirs_nr; i++) {
08bf354d 3680 if (read_one_dir(untracked->dirs + i, rd) < 0)
f9e6c649
NTND
3681 return -1;
3682 }
3683 return 0;
3684}
3685
3686static void set_check_only(size_t pos, void *cb)
3687{
3688 struct read_data *rd = cb;
3689 struct untracked_cache_dir *ud = rd->ucd[pos];
3690 ud->check_only = 1;
3691}
3692
3693static void read_stat(size_t pos, void *cb)
3694{
3695 struct read_data *rd = cb;
3696 struct untracked_cache_dir *ud = rd->ucd[pos];
3697 if (rd->data + sizeof(struct stat_data) > rd->end) {
3698 rd->data = rd->end + 1;
3699 return;
3700 }
268ba201 3701 stat_data_from_disk(&ud->stat_data, rd->data);
f9e6c649
NTND
3702 rd->data += sizeof(struct stat_data);
3703 ud->valid = 1;
3704}
3705
70c369cd 3706static void read_oid(size_t pos, void *cb)
f9e6c649
NTND
3707{
3708 struct read_data *rd = cb;
3709 struct untracked_cache_dir *ud = rd->ucd[pos];
70c369cd 3710 if (rd->data + the_hash_algo->rawsz > rd->end) {
f9e6c649
NTND
3711 rd->data = rd->end + 1;
3712 return;
3713 }
92e2cab9 3714 oidread(&ud->exclude_oid, rd->data);
70c369cd 3715 rd->data += the_hash_algo->rawsz;
f9e6c649
NTND
3716}
3717
4b33e602
PO
3718static void load_oid_stat(struct oid_stat *oid_stat, const unsigned char *data,
3719 const unsigned char *sha1)
f9e6c649 3720{
4b33e602 3721 stat_data_from_disk(&oid_stat->stat, data);
92e2cab9 3722 oidread(&oid_stat->oid, sha1);
4b33e602 3723 oid_stat->valid = 1;
f9e6c649
NTND
3724}
3725
3726struct untracked_cache *read_untracked_extension(const void *data, unsigned long sz)
3727{
f9e6c649
NTND
3728 struct untracked_cache *uc;
3729 struct read_data rd;
3730 const unsigned char *next = data, *end = (const unsigned char *)data + sz;
1e8fef60 3731 const char *ident;
1140bf01
JK
3732 int ident_len;
3733 ssize_t len;
268ba201 3734 const char *exclude_per_dir;
3899b88b 3735 const unsigned hashsz = the_hash_algo->rawsz;
3736 const unsigned offset = sizeof(struct ondisk_untracked_cache);
3737 const unsigned exclude_per_dir_offset = offset + 2 * hashsz;
f9e6c649
NTND
3738
3739 if (sz <= 1 || end[-1] != '\0')
3740 return NULL;
3741 end--;
3742
1e8fef60
NTND
3743 ident_len = decode_varint(&next);
3744 if (next + ident_len > end)
3745 return NULL;
3746 ident = (const char *)next;
3747 next += ident_len;
3748
3899b88b 3749 if (next + exclude_per_dir_offset + 1 > end)
f9e6c649
NTND
3750 return NULL;
3751
ca56dadb 3752 CALLOC_ARRAY(uc, 1);
1e8fef60
NTND
3753 strbuf_init(&uc->ident, ident_len);
3754 strbuf_add(&uc->ident, ident, ident_len);
4b33e602
PO
3755 load_oid_stat(&uc->ss_info_exclude,
3756 next + ouc_offset(info_exclude_stat),
3899b88b 3757 next + offset);
4b33e602
PO
3758 load_oid_stat(&uc->ss_excludes_file,
3759 next + ouc_offset(excludes_file_stat),
3899b88b 3760 next + offset + hashsz);
268ba201 3761 uc->dir_flags = get_be32(next + ouc_offset(dir_flags));
3899b88b 3762 exclude_per_dir = (const char *)next + exclude_per_dir_offset;
083fd1a2 3763 uc->exclude_per_dir = uc->exclude_per_dir_to_free = xstrdup(exclude_per_dir);
f9e6c649 3764 /* NUL after exclude_per_dir is covered by sizeof(*ouc) */
3899b88b 3765 next += exclude_per_dir_offset + strlen(exclude_per_dir) + 1;
f9e6c649
NTND
3766 if (next >= end)
3767 goto done2;
3768
3769 len = decode_varint(&next);
3770 if (next > end || len == 0)
3771 goto done2;
3772
3773 rd.valid = ewah_new();
3774 rd.check_only = ewah_new();
3775 rd.sha1_valid = ewah_new();
3776 rd.data = next;
3777 rd.end = end;
3778 rd.index = 0;
b32fa95f 3779 ALLOC_ARRAY(rd.ucd, len);
f9e6c649
NTND
3780
3781 if (read_one_dir(&uc->root, &rd) || rd.index != len)
3782 goto done;
3783
3784 next = rd.data;
3785 len = ewah_read_mmap(rd.valid, next, end - next);
3786 if (len < 0)
3787 goto done;
3788
3789 next += len;
3790 len = ewah_read_mmap(rd.check_only, next, end - next);
3791 if (len < 0)
3792 goto done;
3793
3794 next += len;
3795 len = ewah_read_mmap(rd.sha1_valid, next, end - next);
3796 if (len < 0)
3797 goto done;
3798
3799 ewah_each_bit(rd.check_only, set_check_only, &rd);
3800 rd.data = next + len;
3801 ewah_each_bit(rd.valid, read_stat, &rd);
70c369cd 3802 ewah_each_bit(rd.sha1_valid, read_oid, &rd);
f9e6c649
NTND
3803 next = rd.data;
3804
3805done:
3806 free(rd.ucd);
3807 ewah_free(rd.valid);
3808 ewah_free(rd.check_only);
3809 ewah_free(rd.sha1_valid);
3810done2:
3811 if (next != end) {
3812 free_untracked_cache(uc);
3813 uc = NULL;
3814 }
3815 return uc;
3816}
e931371a 3817
73f9145f
NTND
3818static void invalidate_one_directory(struct untracked_cache *uc,
3819 struct untracked_cache_dir *ucd)
3820{
3821 uc->dir_invalidated++;
3822 ucd->valid = 0;
3823 ucd->untracked_nr = 0;
3824}
3825
3826/*
3827 * Normally when an entry is added or removed from a directory,
3828 * invalidating that directory is enough. No need to touch its
3829 * ancestors. When a directory is shown as "foo/bar/" in git-status
3830 * however, deleting or adding an entry may have cascading effect.
3831 *
3832 * Say the "foo/bar/file" has become untracked, we need to tell the
3833 * untracked_cache_dir of "foo" that "bar/" is not an untracked
3834 * directory any more (because "bar" is managed by foo as an untracked
3835 * "file").
3836 *
3837 * Similarly, if "foo/bar/file" moves from untracked to tracked and it
3838 * was the last untracked entry in the entire "foo", we should show
3839 * "foo/" instead. Which means we have to invalidate past "bar" up to
3840 * "foo".
3841 *
3842 * This function traverses all directories from root to leaf. If there
3843 * is a chance of one of the above cases happening, we invalidate back
3844 * to root. Otherwise we just invalidate the leaf. There may be a more
3845 * sophisticated way than checking for SHOW_OTHER_DIRECTORIES to
3846 * detect these cases and avoid unnecessary invalidation, for example,
3847 * checking for the untracked entry named "bar/" in "foo", but for now
3848 * stick to something safe and simple.
3849 */
3850static int invalidate_one_component(struct untracked_cache *uc,
3851 struct untracked_cache_dir *dir,
3852 const char *path, int len)
3853{
3854 const char *rest = strchr(path, '/');
3855
3856 if (rest) {
3857 int component_len = rest - path;
3858 struct untracked_cache_dir *d =
3859 lookup_untracked(uc, dir, path, component_len);
3860 int ret =
3861 invalidate_one_component(uc, d, rest + 1,
3862 len - (component_len + 1));
3863 if (ret)
3864 invalidate_one_directory(uc, dir);
3865 return ret;
3866 }
3867
3868 invalidate_one_directory(uc, dir);
3869 return uc->dir_flags & DIR_SHOW_OTHER_DIRECTORIES;
3870}
3871
e931371a 3872void untracked_cache_invalidate_path(struct index_state *istate,
0cacebf0 3873 const char *path, int safe_path)
e931371a 3874{
e931371a
NTND
3875 if (!istate->untracked || !istate->untracked->root)
3876 return;
68f95b26 3877 if (!safe_path && !verify_path(path, 0))
0cacebf0 3878 return;
73f9145f
NTND
3879 invalidate_one_component(istate->untracked, istate->untracked->root,
3880 path, strlen(path));
e931371a
NTND
3881}
3882
3883void untracked_cache_remove_from_index(struct index_state *istate,
3884 const char *path)
3885{
0cacebf0 3886 untracked_cache_invalidate_path(istate, path, 1);
e931371a
NTND
3887}
3888
3889void untracked_cache_add_to_index(struct index_state *istate,
3890 const char *path)
3891{
0cacebf0 3892 untracked_cache_invalidate_path(istate, path, 1);
e931371a 3893}
47e83eb3 3894
da62f786
SB
3895static void connect_wt_gitdir_in_nested(const char *sub_worktree,
3896 const char *sub_gitdir)
3897{
3898 int i;
3899 struct repository subrepo;
3900 struct strbuf sub_wt = STRBUF_INIT;
3901 struct strbuf sub_gd = STRBUF_INIT;
3902
3903 const struct submodule *sub;
3904
3905 /* If the submodule has no working tree, we can ignore it. */
3906 if (repo_init(&subrepo, sub_gitdir, sub_worktree))
3907 return;
3908
3909 if (repo_read_index(&subrepo) < 0)
a80897c1 3910 die(_("index file corrupt in repo %s"), subrepo.gitdir);
da62f786 3911
d425f651
DS
3912 /* TODO: audit for interaction with sparse-index. */
3913 ensure_full_index(subrepo.index);
da62f786
SB
3914 for (i = 0; i < subrepo.index->cache_nr; i++) {
3915 const struct cache_entry *ce = subrepo.index->cache[i];
3916
3917 if (!S_ISGITLINK(ce->ce_mode))
3918 continue;
3919
3920 while (i + 1 < subrepo.index->cache_nr &&
3921 !strcmp(ce->name, subrepo.index->cache[i + 1]->name))
3922 /*
3923 * Skip entries with the same name in different stages
3924 * to make sure an entry is returned only once.
3925 */
3926 i++;
3927
14228447 3928 sub = submodule_from_path(&subrepo, null_oid(), ce->name);
da62f786
SB
3929 if (!sub || !is_submodule_active(&subrepo, ce->name))
3930 /* .gitmodules broken or inactive sub */
3931 continue;
3932
3933 strbuf_reset(&sub_wt);
3934 strbuf_reset(&sub_gd);
3935 strbuf_addf(&sub_wt, "%s/%s", sub_worktree, sub->path);
ce125d43 3936 submodule_name_to_gitdir(&sub_gd, &subrepo, sub->name);
da62f786
SB
3937
3938 connect_work_tree_and_git_dir(sub_wt.buf, sub_gd.buf, 1);
3939 }
3940 strbuf_release(&sub_wt);
3941 strbuf_release(&sub_gd);
3942 repo_clear(&subrepo);
3943}
3944
3945void connect_work_tree_and_git_dir(const char *work_tree_,
3946 const char *git_dir_,
3947 int recurse_into_nested)
47e83eb3 3948{
365444a6
SB
3949 struct strbuf gitfile_sb = STRBUF_INIT;
3950 struct strbuf cfg_sb = STRBUF_INIT;
47e83eb3 3951 struct strbuf rel_path = STRBUF_INIT;
365444a6 3952 char *git_dir, *work_tree;
47e83eb3 3953
365444a6
SB
3954 /* Prepare .git file */
3955 strbuf_addf(&gitfile_sb, "%s/.git", work_tree_);
3956 if (safe_create_leading_directories_const(gitfile_sb.buf))
3957 die(_("could not create directories for %s"), gitfile_sb.buf);
3958
3959 /* Prepare config file */
3960 strbuf_addf(&cfg_sb, "%s/config", git_dir_);
3961 if (safe_create_leading_directories_const(cfg_sb.buf))
3962 die(_("could not create directories for %s"), cfg_sb.buf);
47e83eb3 3963
e394fa01
JH
3964 git_dir = real_pathdup(git_dir_, 1);
3965 work_tree = real_pathdup(work_tree_, 1);
365444a6
SB
3966
3967 /* Write .git file */
3968 write_file(gitfile_sb.buf, "gitdir: %s",
3969 relative_path(git_dir, work_tree, &rel_path));
47e83eb3 3970 /* Update core.worktree setting */
365444a6 3971 git_config_set_in_file(cfg_sb.buf, "core.worktree",
47e83eb3
SB
3972 relative_path(work_tree, git_dir, &rel_path));
3973
365444a6
SB
3974 strbuf_release(&gitfile_sb);
3975 strbuf_release(&cfg_sb);
47e83eb3 3976 strbuf_release(&rel_path);
da62f786
SB
3977
3978 if (recurse_into_nested)
3979 connect_wt_gitdir_in_nested(work_tree, git_dir);
3980
47e83eb3
SB
3981 free(work_tree);
3982 free(git_dir);
3983}
f6f85861
SB
3984
3985/*
3986 * Migrate the git directory of the given path from old_git_dir to new_git_dir.
3987 */
3988void relocate_gitdir(const char *path, const char *old_git_dir, const char *new_git_dir)
3989{
3990 if (rename(old_git_dir, new_git_dir) < 0)
3991 die_errno(_("could not migrate git directory from '%s' to '%s'"),
3992 old_git_dir, new_git_dir);
3993
da62f786 3994 connect_work_tree_and_git_dir(path, new_git_dir, 0);
f6f85861 3995}
9fd512c8
ÆAB
3996
3997int path_match_flags(const char *const str, const enum path_match_flags flags)
3998{
3999 const char *p = str;
4000
4001 if (flags & PATH_MATCH_NATIVE &&
4002 flags & PATH_MATCH_XPLATFORM)
4003 BUG("path_match_flags() must get one match kind, not multiple!");
4004 else if (!(flags & PATH_MATCH_KINDS_MASK))
4005 BUG("path_match_flags() must get at least one match kind!");
4006
4007 if (flags & PATH_MATCH_STARTS_WITH_DOT_SLASH &&
4008 flags & PATH_MATCH_STARTS_WITH_DOT_DOT_SLASH)
4009 BUG("path_match_flags() must get one platform kind, not multiple!");
4010 else if (!(flags & PATH_MATCH_PLATFORM_MASK))
4011 BUG("path_match_flags() must get at least one platform kind!");
4012
4013 if (*p++ != '.')
4014 return 0;
4015 if (flags & PATH_MATCH_STARTS_WITH_DOT_DOT_SLASH &&
4016 *p++ != '.')
4017 return 0;
4018
4019 if (flags & PATH_MATCH_NATIVE)
4020 return is_dir_sep(*p);
4021 else if (flags & PATH_MATCH_XPLATFORM)
4022 return is_xplatform_dir_sep(*p);
4023 BUG("unreachable");
4024}