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