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