wt-status: expand added sparse directory entries
[git/debian.git] / dir.c
blob0c5264b3b20a2ff00bc064fd2682c26babd465d0
1 /*
2 * This handles recursive filename detection with exclude
3 * files, index knowledge etc..
5 * Copyright (C) Linus Torvalds, 2005-2006
6 * Junio Hamano, 2005-2006
7 */
8 #include "cache.h"
9 #include "config.h"
10 #include "dir.h"
11 #include "object-store.h"
12 #include "attr.h"
13 #include "refs.h"
14 #include "wildmatch.h"
15 #include "pathspec.h"
16 #include "utf8.h"
17 #include "varint.h"
18 #include "ewah/ewok.h"
19 #include "fsmonitor.h"
20 #include "submodule-config.h"
23 * Tells read_directory_recursive how a file or directory should be treated.
24 * Values are ordered by significance, e.g. if a directory contains both
25 * excluded and untracked files, it is listed as untracked because
26 * path_untracked > path_excluded.
28 enum path_treatment {
29 path_none = 0,
30 path_recurse,
31 path_excluded,
32 path_untracked
36 * Support data structure for our opendir/readdir/closedir wrappers
38 struct cached_dir {
39 DIR *fdir;
40 struct untracked_cache_dir *untracked;
41 int nr_files;
42 int nr_dirs;
44 const char *d_name;
45 int d_type;
46 const char *file;
47 struct untracked_cache_dir *ucd;
50 static enum path_treatment read_directory_recursive(struct dir_struct *dir,
51 struct index_state *istate, const char *path, int len,
52 struct untracked_cache_dir *untracked,
53 int check_only, int stop_at_first_file, const struct pathspec *pathspec);
54 static int resolve_dtype(int dtype, struct index_state *istate,
55 const char *path, int len);
57 void dir_init(struct dir_struct *dir)
59 memset(dir, 0, sizeof(*dir));
62 struct dirent *readdir_skip_dot_and_dotdot(DIR *dirp)
64 struct dirent *e;
66 while ((e = readdir(dirp)) != NULL) {
67 if (!is_dot_or_dotdot(e->d_name))
68 break;
70 return e;
73 int count_slashes(const char *s)
75 int cnt = 0;
76 while (*s)
77 if (*s++ == '/')
78 cnt++;
79 return cnt;
82 int fspathcmp(const char *a, const char *b)
84 return ignore_case ? strcasecmp(a, b) : strcmp(a, b);
87 int fspathncmp(const char *a, const char *b, size_t count)
89 return ignore_case ? strncasecmp(a, b, count) : strncmp(a, b, count);
92 int git_fnmatch(const struct pathspec_item *item,
93 const char *pattern, const char *string,
94 int prefix)
96 if (prefix > 0) {
97 if (ps_strncmp(item, pattern, string, prefix))
98 return WM_NOMATCH;
99 pattern += prefix;
100 string += prefix;
102 if (item->flags & PATHSPEC_ONESTAR) {
103 int pattern_len = strlen(++pattern);
104 int string_len = strlen(string);
105 return string_len < pattern_len ||
106 ps_strcmp(item, pattern,
107 string + string_len - pattern_len);
109 if (item->magic & PATHSPEC_GLOB)
110 return wildmatch(pattern, string,
111 WM_PATHNAME |
112 (item->magic & PATHSPEC_ICASE ? WM_CASEFOLD : 0));
113 else
114 /* wildmatch has not learned no FNM_PATHNAME mode yet */
115 return wildmatch(pattern, string,
116 item->magic & PATHSPEC_ICASE ? WM_CASEFOLD : 0);
119 static int fnmatch_icase_mem(const char *pattern, int patternlen,
120 const char *string, int stringlen,
121 int flags)
123 int match_status;
124 struct strbuf pat_buf = STRBUF_INIT;
125 struct strbuf str_buf = STRBUF_INIT;
126 const char *use_pat = pattern;
127 const char *use_str = string;
129 if (pattern[patternlen]) {
130 strbuf_add(&pat_buf, pattern, patternlen);
131 use_pat = pat_buf.buf;
133 if (string[stringlen]) {
134 strbuf_add(&str_buf, string, stringlen);
135 use_str = str_buf.buf;
138 if (ignore_case)
139 flags |= WM_CASEFOLD;
140 match_status = wildmatch(use_pat, use_str, flags);
142 strbuf_release(&pat_buf);
143 strbuf_release(&str_buf);
145 return match_status;
148 static size_t common_prefix_len(const struct pathspec *pathspec)
150 int n;
151 size_t max = 0;
154 * ":(icase)path" is treated as a pathspec full of
155 * wildcard. In other words, only prefix is considered common
156 * prefix. If the pathspec is abc/foo abc/bar, running in
157 * subdir xyz, the common prefix is still xyz, not xyz/abc as
158 * in non-:(icase).
160 GUARD_PATHSPEC(pathspec,
161 PATHSPEC_FROMTOP |
162 PATHSPEC_MAXDEPTH |
163 PATHSPEC_LITERAL |
164 PATHSPEC_GLOB |
165 PATHSPEC_ICASE |
166 PATHSPEC_EXCLUDE |
167 PATHSPEC_ATTR);
169 for (n = 0; n < pathspec->nr; n++) {
170 size_t i = 0, len = 0, item_len;
171 if (pathspec->items[n].magic & PATHSPEC_EXCLUDE)
172 continue;
173 if (pathspec->items[n].magic & PATHSPEC_ICASE)
174 item_len = pathspec->items[n].prefix;
175 else
176 item_len = pathspec->items[n].nowildcard_len;
177 while (i < item_len && (n == 0 || i < max)) {
178 char c = pathspec->items[n].match[i];
179 if (c != pathspec->items[0].match[i])
180 break;
181 if (c == '/')
182 len = i + 1;
183 i++;
185 if (n == 0 || len < max) {
186 max = len;
187 if (!max)
188 break;
191 return max;
195 * Returns a copy of the longest leading path common among all
196 * pathspecs.
198 char *common_prefix(const struct pathspec *pathspec)
200 unsigned long len = common_prefix_len(pathspec);
202 return len ? xmemdupz(pathspec->items[0].match, len) : NULL;
205 int fill_directory(struct dir_struct *dir,
206 struct index_state *istate,
207 const struct pathspec *pathspec)
209 const char *prefix;
210 size_t prefix_len;
212 unsigned exclusive_flags = DIR_SHOW_IGNORED | DIR_SHOW_IGNORED_TOO;
213 if ((dir->flags & exclusive_flags) == exclusive_flags)
214 BUG("DIR_SHOW_IGNORED and DIR_SHOW_IGNORED_TOO are exclusive");
217 * Calculate common prefix for the pathspec, and
218 * use that to optimize the directory walk
220 prefix_len = common_prefix_len(pathspec);
221 prefix = prefix_len ? pathspec->items[0].match : "";
223 /* Read the directory and prune it */
224 read_directory(dir, istate, prefix, prefix_len, pathspec);
226 return prefix_len;
229 int within_depth(const char *name, int namelen,
230 int depth, int max_depth)
232 const char *cp = name, *cpe = name + namelen;
234 while (cp < cpe) {
235 if (*cp++ != '/')
236 continue;
237 depth++;
238 if (depth > max_depth)
239 return 0;
241 return 1;
245 * Read the contents of the blob with the given OID into a buffer.
246 * Append a trailing LF to the end if the last line doesn't have one.
248 * Returns:
249 * -1 when the OID is invalid or unknown or does not refer to a blob.
250 * 0 when the blob is empty.
251 * 1 along with { data, size } of the (possibly augmented) buffer
252 * when successful.
254 * Optionally updates the given oid_stat with the given OID (when valid).
256 static int do_read_blob(const struct object_id *oid, struct oid_stat *oid_stat,
257 size_t *size_out, char **data_out)
259 enum object_type type;
260 unsigned long sz;
261 char *data;
263 *size_out = 0;
264 *data_out = NULL;
266 data = read_object_file(oid, &type, &sz);
267 if (!data || type != OBJ_BLOB) {
268 free(data);
269 return -1;
272 if (oid_stat) {
273 memset(&oid_stat->stat, 0, sizeof(oid_stat->stat));
274 oidcpy(&oid_stat->oid, oid);
277 if (sz == 0) {
278 free(data);
279 return 0;
282 if (data[sz - 1] != '\n') {
283 data = xrealloc(data, st_add(sz, 1));
284 data[sz++] = '\n';
287 *size_out = xsize_t(sz);
288 *data_out = data;
290 return 1;
293 #define DO_MATCH_EXCLUDE (1<<0)
294 #define DO_MATCH_DIRECTORY (1<<1)
295 #define DO_MATCH_LEADING_PATHSPEC (1<<2)
298 * Does the given pathspec match the given name? A match is found if
300 * (1) the pathspec string is leading directory of 'name' ("RECURSIVELY"), or
301 * (2) the pathspec string has a leading part matching 'name' ("LEADING"), or
302 * (3) the pathspec string is a wildcard and matches 'name' ("WILDCARD"), or
303 * (4) the pathspec string is exactly the same as 'name' ("EXACT").
305 * Return value tells which case it was (1-4), or 0 when there is no match.
307 * It may be instructive to look at a small table of concrete examples
308 * to understand the differences between 1, 2, and 4:
310 * Pathspecs
311 * | a/b | a/b/ | a/b/c
312 * ------+-----------+-----------+------------
313 * a/b | EXACT | EXACT[1] | LEADING[2]
314 * Names a/b/ | RECURSIVE | EXACT | LEADING[2]
315 * a/b/c | RECURSIVE | RECURSIVE | EXACT
317 * [1] Only if DO_MATCH_DIRECTORY is passed; otherwise, this is NOT a match.
318 * [2] Only if DO_MATCH_LEADING_PATHSPEC is passed; otherwise, not a match.
320 static int match_pathspec_item(struct index_state *istate,
321 const struct pathspec_item *item, int prefix,
322 const char *name, int namelen, unsigned flags)
324 /* name/namelen has prefix cut off by caller */
325 const char *match = item->match + prefix;
326 int matchlen = item->len - prefix;
329 * The normal call pattern is:
330 * 1. prefix = common_prefix_len(ps);
331 * 2. prune something, or fill_directory
332 * 3. match_pathspec()
334 * 'prefix' at #1 may be shorter than the command's prefix and
335 * it's ok for #2 to match extra files. Those extras will be
336 * trimmed at #3.
338 * Suppose the pathspec is 'foo' and '../bar' running from
339 * subdir 'xyz'. The common prefix at #1 will be empty, thanks
340 * to "../". We may have xyz/foo _and_ XYZ/foo after #2. The
341 * user does not want XYZ/foo, only the "foo" part should be
342 * case-insensitive. We need to filter out XYZ/foo here. In
343 * other words, we do not trust the caller on comparing the
344 * prefix part when :(icase) is involved. We do exact
345 * comparison ourselves.
347 * Normally the caller (common_prefix_len() in fact) does
348 * _exact_ matching on name[-prefix+1..-1] and we do not need
349 * to check that part. Be defensive and check it anyway, in
350 * case common_prefix_len is changed, or a new caller is
351 * introduced that does not use common_prefix_len.
353 * If the penalty turns out too high when prefix is really
354 * long, maybe change it to
355 * strncmp(match, name, item->prefix - prefix)
357 if (item->prefix && (item->magic & PATHSPEC_ICASE) &&
358 strncmp(item->match, name - prefix, item->prefix))
359 return 0;
361 if (item->attr_match_nr &&
362 !match_pathspec_attrs(istate, name, namelen, item))
363 return 0;
365 /* If the match was just the prefix, we matched */
366 if (!*match)
367 return MATCHED_RECURSIVELY;
369 if (matchlen <= namelen && !ps_strncmp(item, match, name, matchlen)) {
370 if (matchlen == namelen)
371 return MATCHED_EXACTLY;
373 if (match[matchlen-1] == '/' || name[matchlen] == '/')
374 return MATCHED_RECURSIVELY;
375 } else if ((flags & DO_MATCH_DIRECTORY) &&
376 match[matchlen - 1] == '/' &&
377 namelen == matchlen - 1 &&
378 !ps_strncmp(item, match, name, namelen))
379 return MATCHED_EXACTLY;
381 if (item->nowildcard_len < item->len &&
382 !git_fnmatch(item, match, name,
383 item->nowildcard_len - prefix))
384 return MATCHED_FNMATCH;
386 /* Perform checks to see if "name" is a leading string of the pathspec */
387 if ( (flags & DO_MATCH_LEADING_PATHSPEC) &&
388 !(flags & DO_MATCH_EXCLUDE)) {
389 /* name is a literal prefix of the pathspec */
390 int offset = name[namelen-1] == '/' ? 1 : 0;
391 if ((namelen < matchlen) &&
392 (match[namelen-offset] == '/') &&
393 !ps_strncmp(item, match, name, namelen))
394 return MATCHED_RECURSIVELY_LEADING_PATHSPEC;
396 /* name doesn't match up to the first wild character */
397 if (item->nowildcard_len < item->len &&
398 ps_strncmp(item, match, name,
399 item->nowildcard_len - prefix))
400 return 0;
403 * name has no wildcard, and it didn't match as a leading
404 * pathspec so return.
406 if (item->nowildcard_len == item->len)
407 return 0;
410 * Here is where we would perform a wildmatch to check if
411 * "name" can be matched as a directory (or a prefix) against
412 * the pathspec. Since wildmatch doesn't have this capability
413 * at the present we have to punt and say that it is a match,
414 * potentially returning a false positive
415 * The submodules themselves will be able to perform more
416 * accurate matching to determine if the pathspec matches.
418 return MATCHED_RECURSIVELY_LEADING_PATHSPEC;
421 return 0;
425 * do_match_pathspec() is meant to ONLY be called by
426 * match_pathspec_with_flags(); calling it directly risks pathspecs
427 * like ':!unwanted_path' being ignored.
429 * Given a name and a list of pathspecs, returns the nature of the
430 * closest (i.e. most specific) match of the name to any of the
431 * pathspecs.
433 * The caller typically calls this multiple times with the same
434 * pathspec and seen[] array but with different name/namelen
435 * (e.g. entries from the index) and is interested in seeing if and
436 * how each pathspec matches all the names it calls this function
437 * with. A mark is left in the seen[] array for each pathspec element
438 * indicating the closest type of match that element achieved, so if
439 * seen[n] remains zero after multiple invocations, that means the nth
440 * pathspec did not match any names, which could indicate that the
441 * user mistyped the nth pathspec.
443 static int do_match_pathspec(struct index_state *istate,
444 const struct pathspec *ps,
445 const char *name, int namelen,
446 int prefix, char *seen,
447 unsigned flags)
449 int i, retval = 0, exclude = flags & DO_MATCH_EXCLUDE;
451 GUARD_PATHSPEC(ps,
452 PATHSPEC_FROMTOP |
453 PATHSPEC_MAXDEPTH |
454 PATHSPEC_LITERAL |
455 PATHSPEC_GLOB |
456 PATHSPEC_ICASE |
457 PATHSPEC_EXCLUDE |
458 PATHSPEC_ATTR);
460 if (!ps->nr) {
461 if (!ps->recursive ||
462 !(ps->magic & PATHSPEC_MAXDEPTH) ||
463 ps->max_depth == -1)
464 return MATCHED_RECURSIVELY;
466 if (within_depth(name, namelen, 0, ps->max_depth))
467 return MATCHED_EXACTLY;
468 else
469 return 0;
472 name += prefix;
473 namelen -= prefix;
475 for (i = ps->nr - 1; i >= 0; i--) {
476 int how;
478 if ((!exclude && ps->items[i].magic & PATHSPEC_EXCLUDE) ||
479 ( exclude && !(ps->items[i].magic & PATHSPEC_EXCLUDE)))
480 continue;
482 if (seen && seen[i] == MATCHED_EXACTLY)
483 continue;
485 * Make exclude patterns optional and never report
486 * "pathspec ':(exclude)foo' matches no files"
488 if (seen && ps->items[i].magic & PATHSPEC_EXCLUDE)
489 seen[i] = MATCHED_FNMATCH;
490 how = match_pathspec_item(istate, ps->items+i, prefix, name,
491 namelen, flags);
492 if (ps->recursive &&
493 (ps->magic & PATHSPEC_MAXDEPTH) &&
494 ps->max_depth != -1 &&
495 how && how != MATCHED_FNMATCH) {
496 int len = ps->items[i].len;
497 if (name[len] == '/')
498 len++;
499 if (within_depth(name+len, namelen-len, 0, ps->max_depth))
500 how = MATCHED_EXACTLY;
501 else
502 how = 0;
504 if (how) {
505 if (retval < how)
506 retval = how;
507 if (seen && seen[i] < how)
508 seen[i] = how;
511 return retval;
514 static int match_pathspec_with_flags(struct index_state *istate,
515 const struct pathspec *ps,
516 const char *name, int namelen,
517 int prefix, char *seen, unsigned flags)
519 int positive, negative;
520 positive = do_match_pathspec(istate, ps, name, namelen,
521 prefix, seen, flags);
522 if (!(ps->magic & PATHSPEC_EXCLUDE) || !positive)
523 return positive;
524 negative = do_match_pathspec(istate, ps, name, namelen,
525 prefix, seen,
526 flags | DO_MATCH_EXCLUDE);
527 return negative ? 0 : positive;
530 int match_pathspec(struct index_state *istate,
531 const struct pathspec *ps,
532 const char *name, int namelen,
533 int prefix, char *seen, int is_dir)
535 unsigned flags = is_dir ? DO_MATCH_DIRECTORY : 0;
536 return match_pathspec_with_flags(istate, ps, name, namelen,
537 prefix, seen, flags);
541 * Check if a submodule is a superset of the pathspec
543 int submodule_path_match(struct index_state *istate,
544 const struct pathspec *ps,
545 const char *submodule_name,
546 char *seen)
548 int matched = match_pathspec_with_flags(istate, ps, submodule_name,
549 strlen(submodule_name),
550 0, seen,
551 DO_MATCH_DIRECTORY |
552 DO_MATCH_LEADING_PATHSPEC);
553 return matched;
556 int report_path_error(const char *ps_matched,
557 const struct pathspec *pathspec)
560 * Make sure all pathspec matched; otherwise it is an error.
562 int num, errors = 0;
563 for (num = 0; num < pathspec->nr; num++) {
564 int other, found_dup;
566 if (ps_matched[num])
567 continue;
569 * The caller might have fed identical pathspec
570 * twice. Do not barf on such a mistake.
571 * FIXME: parse_pathspec should have eliminated
572 * duplicate pathspec.
574 for (found_dup = other = 0;
575 !found_dup && other < pathspec->nr;
576 other++) {
577 if (other == num || !ps_matched[other])
578 continue;
579 if (!strcmp(pathspec->items[other].original,
580 pathspec->items[num].original))
582 * Ok, we have a match already.
584 found_dup = 1;
586 if (found_dup)
587 continue;
589 error(_("pathspec '%s' did not match any file(s) known to git"),
590 pathspec->items[num].original);
591 errors++;
593 return errors;
597 * Return the length of the "simple" part of a path match limiter.
599 int simple_length(const char *match)
601 int len = -1;
603 for (;;) {
604 unsigned char c = *match++;
605 len++;
606 if (c == '\0' || is_glob_special(c))
607 return len;
611 int no_wildcard(const char *string)
613 return string[simple_length(string)] == '\0';
616 void parse_path_pattern(const char **pattern,
617 int *patternlen,
618 unsigned *flags,
619 int *nowildcardlen)
621 const char *p = *pattern;
622 size_t i, len;
624 *flags = 0;
625 if (*p == '!') {
626 *flags |= PATTERN_FLAG_NEGATIVE;
627 p++;
629 len = strlen(p);
630 if (len && p[len - 1] == '/') {
631 len--;
632 *flags |= PATTERN_FLAG_MUSTBEDIR;
634 for (i = 0; i < len; i++) {
635 if (p[i] == '/')
636 break;
638 if (i == len)
639 *flags |= PATTERN_FLAG_NODIR;
640 *nowildcardlen = simple_length(p);
642 * we should have excluded the trailing slash from 'p' too,
643 * but that's one more allocation. Instead just make sure
644 * nowildcardlen does not exceed real patternlen
646 if (*nowildcardlen > len)
647 *nowildcardlen = len;
648 if (*p == '*' && no_wildcard(p + 1))
649 *flags |= PATTERN_FLAG_ENDSWITH;
650 *pattern = p;
651 *patternlen = len;
654 int pl_hashmap_cmp(const void *unused_cmp_data,
655 const struct hashmap_entry *a,
656 const struct hashmap_entry *b,
657 const void *key)
659 const struct pattern_entry *ee1 =
660 container_of(a, struct pattern_entry, ent);
661 const struct pattern_entry *ee2 =
662 container_of(b, struct pattern_entry, ent);
664 size_t min_len = ee1->patternlen <= ee2->patternlen
665 ? ee1->patternlen
666 : ee2->patternlen;
668 if (ignore_case)
669 return strncasecmp(ee1->pattern, ee2->pattern, min_len);
670 return strncmp(ee1->pattern, ee2->pattern, min_len);
673 static char *dup_and_filter_pattern(const char *pattern)
675 char *set, *read;
676 size_t count = 0;
677 char *result = xstrdup(pattern);
679 set = result;
680 read = result;
682 while (*read) {
683 /* skip escape characters (once) */
684 if (*read == '\\')
685 read++;
687 *set = *read;
689 set++;
690 read++;
691 count++;
693 *set = 0;
695 if (count > 2 &&
696 *(set - 1) == '*' &&
697 *(set - 2) == '/')
698 *(set - 2) = 0;
700 return result;
703 static void add_pattern_to_hashsets(struct pattern_list *pl, struct path_pattern *given)
705 struct pattern_entry *translated;
706 char *truncated;
707 char *data = NULL;
708 const char *prev, *cur, *next;
710 if (!pl->use_cone_patterns)
711 return;
713 if (given->flags & PATTERN_FLAG_NEGATIVE &&
714 given->flags & PATTERN_FLAG_MUSTBEDIR &&
715 !strcmp(given->pattern, "/*")) {
716 pl->full_cone = 0;
717 return;
720 if (!given->flags && !strcmp(given->pattern, "/*")) {
721 pl->full_cone = 1;
722 return;
725 if (given->patternlen < 2 ||
726 *given->pattern == '*' ||
727 strstr(given->pattern, "**")) {
728 /* Not a cone pattern. */
729 warning(_("unrecognized pattern: '%s'"), given->pattern);
730 goto clear_hashmaps;
733 prev = given->pattern;
734 cur = given->pattern + 1;
735 next = given->pattern + 2;
737 while (*cur) {
738 /* Watch for glob characters '*', '\', '[', '?' */
739 if (!is_glob_special(*cur))
740 goto increment;
742 /* But only if *prev != '\\' */
743 if (*prev == '\\')
744 goto increment;
746 /* But allow the initial '\' */
747 if (*cur == '\\' &&
748 is_glob_special(*next))
749 goto increment;
751 /* But a trailing '/' then '*' is fine */
752 if (*prev == '/' &&
753 *cur == '*' &&
754 *next == 0)
755 goto increment;
757 /* Not a cone pattern. */
758 warning(_("unrecognized pattern: '%s'"), given->pattern);
759 goto clear_hashmaps;
761 increment:
762 prev++;
763 cur++;
764 next++;
767 if (given->patternlen > 2 &&
768 !strcmp(given->pattern + given->patternlen - 2, "/*")) {
769 if (!(given->flags & PATTERN_FLAG_NEGATIVE)) {
770 /* Not a cone pattern. */
771 warning(_("unrecognized pattern: '%s'"), given->pattern);
772 goto clear_hashmaps;
775 truncated = dup_and_filter_pattern(given->pattern);
777 translated = xmalloc(sizeof(struct pattern_entry));
778 translated->pattern = truncated;
779 translated->patternlen = given->patternlen - 2;
780 hashmap_entry_init(&translated->ent,
781 ignore_case ?
782 strihash(translated->pattern) :
783 strhash(translated->pattern));
785 if (!hashmap_get_entry(&pl->recursive_hashmap,
786 translated, ent, NULL)) {
787 /* We did not see the "parent" included */
788 warning(_("unrecognized negative pattern: '%s'"),
789 given->pattern);
790 free(truncated);
791 free(translated);
792 goto clear_hashmaps;
795 hashmap_add(&pl->parent_hashmap, &translated->ent);
796 hashmap_remove(&pl->recursive_hashmap, &translated->ent, &data);
797 free(data);
798 return;
801 if (given->flags & PATTERN_FLAG_NEGATIVE) {
802 warning(_("unrecognized negative pattern: '%s'"),
803 given->pattern);
804 goto clear_hashmaps;
807 translated = xmalloc(sizeof(struct pattern_entry));
809 translated->pattern = dup_and_filter_pattern(given->pattern);
810 translated->patternlen = given->patternlen;
811 hashmap_entry_init(&translated->ent,
812 ignore_case ?
813 strihash(translated->pattern) :
814 strhash(translated->pattern));
816 hashmap_add(&pl->recursive_hashmap, &translated->ent);
818 if (hashmap_get_entry(&pl->parent_hashmap, translated, ent, NULL)) {
819 /* we already included this at the parent level */
820 warning(_("your sparse-checkout file may have issues: pattern '%s' is repeated"),
821 given->pattern);
822 hashmap_remove(&pl->parent_hashmap, &translated->ent, &data);
823 free(data);
824 free(translated);
827 return;
829 clear_hashmaps:
830 warning(_("disabling cone pattern matching"));
831 hashmap_clear_and_free(&pl->parent_hashmap, struct pattern_entry, ent);
832 hashmap_clear_and_free(&pl->recursive_hashmap, struct pattern_entry, ent);
833 pl->use_cone_patterns = 0;
836 static int hashmap_contains_path(struct hashmap *map,
837 struct strbuf *pattern)
839 struct pattern_entry p;
841 /* Check straight mapping */
842 p.pattern = pattern->buf;
843 p.patternlen = pattern->len;
844 hashmap_entry_init(&p.ent,
845 ignore_case ?
846 strihash(p.pattern) :
847 strhash(p.pattern));
848 return !!hashmap_get_entry(map, &p, ent, NULL);
851 int hashmap_contains_parent(struct hashmap *map,
852 const char *path,
853 struct strbuf *buffer)
855 char *slash_pos;
857 strbuf_setlen(buffer, 0);
859 if (path[0] != '/')
860 strbuf_addch(buffer, '/');
862 strbuf_addstr(buffer, path);
864 slash_pos = strrchr(buffer->buf, '/');
866 while (slash_pos > buffer->buf) {
867 strbuf_setlen(buffer, slash_pos - buffer->buf);
869 if (hashmap_contains_path(map, buffer))
870 return 1;
872 slash_pos = strrchr(buffer->buf, '/');
875 return 0;
878 void add_pattern(const char *string, const char *base,
879 int baselen, struct pattern_list *pl, int srcpos)
881 struct path_pattern *pattern;
882 int patternlen;
883 unsigned flags;
884 int nowildcardlen;
886 parse_path_pattern(&string, &patternlen, &flags, &nowildcardlen);
887 if (flags & PATTERN_FLAG_MUSTBEDIR) {
888 FLEXPTR_ALLOC_MEM(pattern, pattern, string, patternlen);
889 } else {
890 pattern = xmalloc(sizeof(*pattern));
891 pattern->pattern = string;
893 pattern->patternlen = patternlen;
894 pattern->nowildcardlen = nowildcardlen;
895 pattern->base = base;
896 pattern->baselen = baselen;
897 pattern->flags = flags;
898 pattern->srcpos = srcpos;
899 ALLOC_GROW(pl->patterns, pl->nr + 1, pl->alloc);
900 pl->patterns[pl->nr++] = pattern;
901 pattern->pl = pl;
903 add_pattern_to_hashsets(pl, pattern);
906 static int read_skip_worktree_file_from_index(struct index_state *istate,
907 const char *path,
908 size_t *size_out, char **data_out,
909 struct oid_stat *oid_stat)
911 int pos, len;
913 len = strlen(path);
914 pos = index_name_pos(istate, path, len);
915 if (pos < 0)
916 return -1;
917 if (!ce_skip_worktree(istate->cache[pos]))
918 return -1;
920 return do_read_blob(&istate->cache[pos]->oid, oid_stat, size_out, data_out);
924 * Frees memory within pl which was allocated for exclude patterns and
925 * the file buffer. Does not free pl itself.
927 void clear_pattern_list(struct pattern_list *pl)
929 int i;
931 for (i = 0; i < pl->nr; i++)
932 free(pl->patterns[i]);
933 free(pl->patterns);
934 free(pl->filebuf);
935 hashmap_clear_and_free(&pl->recursive_hashmap, struct pattern_entry, ent);
936 hashmap_clear_and_free(&pl->parent_hashmap, struct pattern_entry, ent);
938 memset(pl, 0, sizeof(*pl));
941 static void trim_trailing_spaces(char *buf)
943 char *p, *last_space = NULL;
945 for (p = buf; *p; p++)
946 switch (*p) {
947 case ' ':
948 if (!last_space)
949 last_space = p;
950 break;
951 case '\\':
952 p++;
953 if (!*p)
954 return;
955 /* fallthrough */
956 default:
957 last_space = NULL;
960 if (last_space)
961 *last_space = '\0';
965 * Given a subdirectory name and "dir" of the current directory,
966 * search the subdir in "dir" and return it, or create a new one if it
967 * does not exist in "dir".
969 * If "name" has the trailing slash, it'll be excluded in the search.
971 static struct untracked_cache_dir *lookup_untracked(struct untracked_cache *uc,
972 struct untracked_cache_dir *dir,
973 const char *name, int len)
975 int first, last;
976 struct untracked_cache_dir *d;
977 if (!dir)
978 return NULL;
979 if (len && name[len - 1] == '/')
980 len--;
981 first = 0;
982 last = dir->dirs_nr;
983 while (last > first) {
984 int cmp, next = first + ((last - first) >> 1);
985 d = dir->dirs[next];
986 cmp = strncmp(name, d->name, len);
987 if (!cmp && strlen(d->name) > len)
988 cmp = -1;
989 if (!cmp)
990 return d;
991 if (cmp < 0) {
992 last = next;
993 continue;
995 first = next+1;
998 uc->dir_created++;
999 FLEX_ALLOC_MEM(d, name, name, len);
1001 ALLOC_GROW(dir->dirs, dir->dirs_nr + 1, dir->dirs_alloc);
1002 MOVE_ARRAY(dir->dirs + first + 1, dir->dirs + first,
1003 dir->dirs_nr - first);
1004 dir->dirs_nr++;
1005 dir->dirs[first] = d;
1006 return d;
1009 static void do_invalidate_gitignore(struct untracked_cache_dir *dir)
1011 int i;
1012 dir->valid = 0;
1013 dir->untracked_nr = 0;
1014 for (i = 0; i < dir->dirs_nr; i++)
1015 do_invalidate_gitignore(dir->dirs[i]);
1018 static void invalidate_gitignore(struct untracked_cache *uc,
1019 struct untracked_cache_dir *dir)
1021 uc->gitignore_invalidated++;
1022 do_invalidate_gitignore(dir);
1025 static void invalidate_directory(struct untracked_cache *uc,
1026 struct untracked_cache_dir *dir)
1028 int i;
1031 * Invalidation increment here is just roughly correct. If
1032 * untracked_nr or any of dirs[].recurse is non-zero, we
1033 * should increment dir_invalidated too. But that's more
1034 * expensive to do.
1036 if (dir->valid)
1037 uc->dir_invalidated++;
1039 dir->valid = 0;
1040 dir->untracked_nr = 0;
1041 for (i = 0; i < dir->dirs_nr; i++)
1042 dir->dirs[i]->recurse = 0;
1045 static int add_patterns_from_buffer(char *buf, size_t size,
1046 const char *base, int baselen,
1047 struct pattern_list *pl);
1049 /* Flags for add_patterns() */
1050 #define PATTERN_NOFOLLOW (1<<0)
1053 * Given a file with name "fname", read it (either from disk, or from
1054 * an index if 'istate' is non-null), parse it and store the
1055 * exclude rules in "pl".
1057 * If "oid_stat" is not NULL, compute oid of the exclude file and fill
1058 * stat data from disk (only valid if add_patterns returns zero). If
1059 * oid_stat.valid is non-zero, "oid_stat" must contain good value as input.
1061 static int add_patterns(const char *fname, const char *base, int baselen,
1062 struct pattern_list *pl, struct index_state *istate,
1063 unsigned flags, struct oid_stat *oid_stat)
1065 struct stat st;
1066 int r;
1067 int fd;
1068 size_t size = 0;
1069 char *buf;
1071 if (flags & PATTERN_NOFOLLOW)
1072 fd = open_nofollow(fname, O_RDONLY);
1073 else
1074 fd = open(fname, O_RDONLY);
1076 if (fd < 0 || fstat(fd, &st) < 0) {
1077 if (fd < 0)
1078 warn_on_fopen_errors(fname);
1079 else
1080 close(fd);
1081 if (!istate)
1082 return -1;
1083 r = read_skip_worktree_file_from_index(istate, fname,
1084 &size, &buf,
1085 oid_stat);
1086 if (r != 1)
1087 return r;
1088 } else {
1089 size = xsize_t(st.st_size);
1090 if (size == 0) {
1091 if (oid_stat) {
1092 fill_stat_data(&oid_stat->stat, &st);
1093 oidcpy(&oid_stat->oid, the_hash_algo->empty_blob);
1094 oid_stat->valid = 1;
1096 close(fd);
1097 return 0;
1099 buf = xmallocz(size);
1100 if (read_in_full(fd, buf, size) != size) {
1101 free(buf);
1102 close(fd);
1103 return -1;
1105 buf[size++] = '\n';
1106 close(fd);
1107 if (oid_stat) {
1108 int pos;
1109 if (oid_stat->valid &&
1110 !match_stat_data_racy(istate, &oid_stat->stat, &st))
1111 ; /* no content change, oid_stat->oid still good */
1112 else if (istate &&
1113 (pos = index_name_pos(istate, fname, strlen(fname))) >= 0 &&
1114 !ce_stage(istate->cache[pos]) &&
1115 ce_uptodate(istate->cache[pos]) &&
1116 !would_convert_to_git(istate, fname))
1117 oidcpy(&oid_stat->oid,
1118 &istate->cache[pos]->oid);
1119 else
1120 hash_object_file(the_hash_algo, buf, size,
1121 "blob", &oid_stat->oid);
1122 fill_stat_data(&oid_stat->stat, &st);
1123 oid_stat->valid = 1;
1127 add_patterns_from_buffer(buf, size, base, baselen, pl);
1128 return 0;
1131 static int add_patterns_from_buffer(char *buf, size_t size,
1132 const char *base, int baselen,
1133 struct pattern_list *pl)
1135 int i, lineno = 1;
1136 char *entry;
1138 hashmap_init(&pl->recursive_hashmap, pl_hashmap_cmp, NULL, 0);
1139 hashmap_init(&pl->parent_hashmap, pl_hashmap_cmp, NULL, 0);
1141 pl->filebuf = buf;
1143 if (skip_utf8_bom(&buf, size))
1144 size -= buf - pl->filebuf;
1146 entry = buf;
1148 for (i = 0; i < size; i++) {
1149 if (buf[i] == '\n') {
1150 if (entry != buf + i && entry[0] != '#') {
1151 buf[i - (i && buf[i-1] == '\r')] = 0;
1152 trim_trailing_spaces(entry);
1153 add_pattern(entry, base, baselen, pl, lineno);
1155 lineno++;
1156 entry = buf + i + 1;
1159 return 0;
1162 int add_patterns_from_file_to_list(const char *fname, const char *base,
1163 int baselen, struct pattern_list *pl,
1164 struct index_state *istate,
1165 unsigned flags)
1167 return add_patterns(fname, base, baselen, pl, istate, flags, NULL);
1170 int add_patterns_from_blob_to_list(
1171 struct object_id *oid,
1172 const char *base, int baselen,
1173 struct pattern_list *pl)
1175 char *buf;
1176 size_t size;
1177 int r;
1179 r = do_read_blob(oid, NULL, &size, &buf);
1180 if (r != 1)
1181 return r;
1183 add_patterns_from_buffer(buf, size, base, baselen, pl);
1184 return 0;
1187 struct pattern_list *add_pattern_list(struct dir_struct *dir,
1188 int group_type, const char *src)
1190 struct pattern_list *pl;
1191 struct exclude_list_group *group;
1193 group = &dir->exclude_list_group[group_type];
1194 ALLOC_GROW(group->pl, group->nr + 1, group->alloc);
1195 pl = &group->pl[group->nr++];
1196 memset(pl, 0, sizeof(*pl));
1197 pl->src = src;
1198 return pl;
1202 * Used to set up core.excludesfile and .git/info/exclude lists.
1204 static void add_patterns_from_file_1(struct dir_struct *dir, const char *fname,
1205 struct oid_stat *oid_stat)
1207 struct pattern_list *pl;
1209 * catch setup_standard_excludes() that's called before
1210 * dir->untracked is assigned. That function behaves
1211 * differently when dir->untracked is non-NULL.
1213 if (!dir->untracked)
1214 dir->unmanaged_exclude_files++;
1215 pl = add_pattern_list(dir, EXC_FILE, fname);
1216 if (add_patterns(fname, "", 0, pl, NULL, 0, oid_stat) < 0)
1217 die(_("cannot use %s as an exclude file"), fname);
1220 void add_patterns_from_file(struct dir_struct *dir, const char *fname)
1222 dir->unmanaged_exclude_files++; /* see validate_untracked_cache() */
1223 add_patterns_from_file_1(dir, fname, NULL);
1226 int match_basename(const char *basename, int basenamelen,
1227 const char *pattern, int prefix, int patternlen,
1228 unsigned flags)
1230 if (prefix == patternlen) {
1231 if (patternlen == basenamelen &&
1232 !fspathncmp(pattern, basename, basenamelen))
1233 return 1;
1234 } else if (flags & PATTERN_FLAG_ENDSWITH) {
1235 /* "*literal" matching against "fooliteral" */
1236 if (patternlen - 1 <= basenamelen &&
1237 !fspathncmp(pattern + 1,
1238 basename + basenamelen - (patternlen - 1),
1239 patternlen - 1))
1240 return 1;
1241 } else {
1242 if (fnmatch_icase_mem(pattern, patternlen,
1243 basename, basenamelen,
1244 0) == 0)
1245 return 1;
1247 return 0;
1250 int match_pathname(const char *pathname, int pathlen,
1251 const char *base, int baselen,
1252 const char *pattern, int prefix, int patternlen,
1253 unsigned flags)
1255 const char *name;
1256 int namelen;
1259 * match with FNM_PATHNAME; the pattern has base implicitly
1260 * in front of it.
1262 if (*pattern == '/') {
1263 pattern++;
1264 patternlen--;
1265 prefix--;
1269 * baselen does not count the trailing slash. base[] may or
1270 * may not end with a trailing slash though.
1272 if (pathlen < baselen + 1 ||
1273 (baselen && pathname[baselen] != '/') ||
1274 fspathncmp(pathname, base, baselen))
1275 return 0;
1277 namelen = baselen ? pathlen - baselen - 1 : pathlen;
1278 name = pathname + pathlen - namelen;
1280 if (prefix) {
1282 * if the non-wildcard part is longer than the
1283 * remaining pathname, surely it cannot match.
1285 if (prefix > namelen)
1286 return 0;
1288 if (fspathncmp(pattern, name, prefix))
1289 return 0;
1290 pattern += prefix;
1291 patternlen -= prefix;
1292 name += prefix;
1293 namelen -= prefix;
1296 * If the whole pattern did not have a wildcard,
1297 * then our prefix match is all we need; we
1298 * do not need to call fnmatch at all.
1300 if (!patternlen && !namelen)
1301 return 1;
1304 return fnmatch_icase_mem(pattern, patternlen,
1305 name, namelen,
1306 WM_PATHNAME) == 0;
1310 * Scan the given exclude list in reverse to see whether pathname
1311 * should be ignored. The first match (i.e. the last on the list), if
1312 * any, determines the fate. Returns the exclude_list element which
1313 * matched, or NULL for undecided.
1315 static struct path_pattern *last_matching_pattern_from_list(const char *pathname,
1316 int pathlen,
1317 const char *basename,
1318 int *dtype,
1319 struct pattern_list *pl,
1320 struct index_state *istate)
1322 struct path_pattern *res = NULL; /* undecided */
1323 int i;
1325 if (!pl->nr)
1326 return NULL; /* undefined */
1328 for (i = pl->nr - 1; 0 <= i; i--) {
1329 struct path_pattern *pattern = pl->patterns[i];
1330 const char *exclude = pattern->pattern;
1331 int prefix = pattern->nowildcardlen;
1333 if (pattern->flags & PATTERN_FLAG_MUSTBEDIR) {
1334 *dtype = resolve_dtype(*dtype, istate, pathname, pathlen);
1335 if (*dtype != DT_DIR)
1336 continue;
1339 if (pattern->flags & PATTERN_FLAG_NODIR) {
1340 if (match_basename(basename,
1341 pathlen - (basename - pathname),
1342 exclude, prefix, pattern->patternlen,
1343 pattern->flags)) {
1344 res = pattern;
1345 break;
1347 continue;
1350 assert(pattern->baselen == 0 ||
1351 pattern->base[pattern->baselen - 1] == '/');
1352 if (match_pathname(pathname, pathlen,
1353 pattern->base,
1354 pattern->baselen ? pattern->baselen - 1 : 0,
1355 exclude, prefix, pattern->patternlen,
1356 pattern->flags)) {
1357 res = pattern;
1358 break;
1361 return res;
1365 * Scan the list of patterns to determine if the ordered list
1366 * of patterns matches on 'pathname'.
1368 * Return 1 for a match, 0 for not matched and -1 for undecided.
1370 enum pattern_match_result path_matches_pattern_list(
1371 const char *pathname, int pathlen,
1372 const char *basename, int *dtype,
1373 struct pattern_list *pl,
1374 struct index_state *istate)
1376 struct path_pattern *pattern;
1377 struct strbuf parent_pathname = STRBUF_INIT;
1378 int result = NOT_MATCHED;
1379 size_t slash_pos;
1381 if (!pl->use_cone_patterns) {
1382 pattern = last_matching_pattern_from_list(pathname, pathlen, basename,
1383 dtype, pl, istate);
1384 if (pattern) {
1385 if (pattern->flags & PATTERN_FLAG_NEGATIVE)
1386 return NOT_MATCHED;
1387 else
1388 return MATCHED;
1391 return UNDECIDED;
1394 if (pl->full_cone)
1395 return MATCHED;
1397 strbuf_addch(&parent_pathname, '/');
1398 strbuf_add(&parent_pathname, pathname, pathlen);
1401 * Directory entries are matched if and only if a file
1402 * contained immediately within them is matched. For the
1403 * case of a directory entry, modify the path to create
1404 * a fake filename within this directory, allowing us to
1405 * use the file-base matching logic in an equivalent way.
1407 if (parent_pathname.len > 0 &&
1408 parent_pathname.buf[parent_pathname.len - 1] == '/') {
1409 slash_pos = parent_pathname.len - 1;
1410 strbuf_add(&parent_pathname, "-", 1);
1411 } else {
1412 const char *slash_ptr = strrchr(parent_pathname.buf, '/');
1413 slash_pos = slash_ptr ? slash_ptr - parent_pathname.buf : 0;
1416 if (hashmap_contains_path(&pl->recursive_hashmap,
1417 &parent_pathname)) {
1418 result = MATCHED_RECURSIVE;
1419 goto done;
1422 if (!slash_pos) {
1423 /* include every file in root */
1424 result = MATCHED;
1425 goto done;
1428 strbuf_setlen(&parent_pathname, slash_pos);
1430 if (hashmap_contains_path(&pl->parent_hashmap, &parent_pathname)) {
1431 result = MATCHED;
1432 goto done;
1435 if (hashmap_contains_parent(&pl->recursive_hashmap,
1436 pathname,
1437 &parent_pathname))
1438 result = MATCHED_RECURSIVE;
1440 done:
1441 strbuf_release(&parent_pathname);
1442 return result;
1445 static struct path_pattern *last_matching_pattern_from_lists(
1446 struct dir_struct *dir, struct index_state *istate,
1447 const char *pathname, int pathlen,
1448 const char *basename, int *dtype_p)
1450 int i, j;
1451 struct exclude_list_group *group;
1452 struct path_pattern *pattern;
1453 for (i = EXC_CMDL; i <= EXC_FILE; i++) {
1454 group = &dir->exclude_list_group[i];
1455 for (j = group->nr - 1; j >= 0; j--) {
1456 pattern = last_matching_pattern_from_list(
1457 pathname, pathlen, basename, dtype_p,
1458 &group->pl[j], istate);
1459 if (pattern)
1460 return pattern;
1463 return NULL;
1467 * Loads the per-directory exclude list for the substring of base
1468 * which has a char length of baselen.
1470 static void prep_exclude(struct dir_struct *dir,
1471 struct index_state *istate,
1472 const char *base, int baselen)
1474 struct exclude_list_group *group;
1475 struct pattern_list *pl;
1476 struct exclude_stack *stk = NULL;
1477 struct untracked_cache_dir *untracked;
1478 int current;
1480 group = &dir->exclude_list_group[EXC_DIRS];
1483 * Pop the exclude lists from the EXCL_DIRS exclude_list_group
1484 * which originate from directories not in the prefix of the
1485 * path being checked.
1487 while ((stk = dir->exclude_stack) != NULL) {
1488 if (stk->baselen <= baselen &&
1489 !strncmp(dir->basebuf.buf, base, stk->baselen))
1490 break;
1491 pl = &group->pl[dir->exclude_stack->exclude_ix];
1492 dir->exclude_stack = stk->prev;
1493 dir->pattern = NULL;
1494 free((char *)pl->src); /* see strbuf_detach() below */
1495 clear_pattern_list(pl);
1496 free(stk);
1497 group->nr--;
1500 /* Skip traversing into sub directories if the parent is excluded */
1501 if (dir->pattern)
1502 return;
1505 * Lazy initialization. All call sites currently just
1506 * memset(dir, 0, sizeof(*dir)) before use. Changing all of
1507 * them seems lots of work for little benefit.
1509 if (!dir->basebuf.buf)
1510 strbuf_init(&dir->basebuf, PATH_MAX);
1512 /* Read from the parent directories and push them down. */
1513 current = stk ? stk->baselen : -1;
1514 strbuf_setlen(&dir->basebuf, current < 0 ? 0 : current);
1515 if (dir->untracked)
1516 untracked = stk ? stk->ucd : dir->untracked->root;
1517 else
1518 untracked = NULL;
1520 while (current < baselen) {
1521 const char *cp;
1522 struct oid_stat oid_stat;
1524 CALLOC_ARRAY(stk, 1);
1525 if (current < 0) {
1526 cp = base;
1527 current = 0;
1528 } else {
1529 cp = strchr(base + current + 1, '/');
1530 if (!cp)
1531 die("oops in prep_exclude");
1532 cp++;
1533 untracked =
1534 lookup_untracked(dir->untracked, untracked,
1535 base + current,
1536 cp - base - current);
1538 stk->prev = dir->exclude_stack;
1539 stk->baselen = cp - base;
1540 stk->exclude_ix = group->nr;
1541 stk->ucd = untracked;
1542 pl = add_pattern_list(dir, EXC_DIRS, NULL);
1543 strbuf_add(&dir->basebuf, base + current, stk->baselen - current);
1544 assert(stk->baselen == dir->basebuf.len);
1546 /* Abort if the directory is excluded */
1547 if (stk->baselen) {
1548 int dt = DT_DIR;
1549 dir->basebuf.buf[stk->baselen - 1] = 0;
1550 dir->pattern = last_matching_pattern_from_lists(dir,
1551 istate,
1552 dir->basebuf.buf, stk->baselen - 1,
1553 dir->basebuf.buf + current, &dt);
1554 dir->basebuf.buf[stk->baselen - 1] = '/';
1555 if (dir->pattern &&
1556 dir->pattern->flags & PATTERN_FLAG_NEGATIVE)
1557 dir->pattern = NULL;
1558 if (dir->pattern) {
1559 dir->exclude_stack = stk;
1560 return;
1564 /* Try to read per-directory file */
1565 oidclr(&oid_stat.oid);
1566 oid_stat.valid = 0;
1567 if (dir->exclude_per_dir &&
1569 * If we know that no files have been added in
1570 * this directory (i.e. valid_cached_dir() has
1571 * been executed and set untracked->valid) ..
1573 (!untracked || !untracked->valid ||
1575 * .. and .gitignore does not exist before
1576 * (i.e. null exclude_oid). Then we can skip
1577 * loading .gitignore, which would result in
1578 * ENOENT anyway.
1580 !is_null_oid(&untracked->exclude_oid))) {
1582 * dir->basebuf gets reused by the traversal, but we
1583 * need fname to remain unchanged to ensure the src
1584 * member of each struct path_pattern correctly
1585 * back-references its source file. Other invocations
1586 * of add_pattern_list provide stable strings, so we
1587 * strbuf_detach() and free() here in the caller.
1589 struct strbuf sb = STRBUF_INIT;
1590 strbuf_addbuf(&sb, &dir->basebuf);
1591 strbuf_addstr(&sb, dir->exclude_per_dir);
1592 pl->src = strbuf_detach(&sb, NULL);
1593 add_patterns(pl->src, pl->src, stk->baselen, pl, istate,
1594 PATTERN_NOFOLLOW,
1595 untracked ? &oid_stat : NULL);
1598 * NEEDSWORK: when untracked cache is enabled, prep_exclude()
1599 * will first be called in valid_cached_dir() then maybe many
1600 * times more in last_matching_pattern(). When the cache is
1601 * used, last_matching_pattern() will not be called and
1602 * reading .gitignore content will be a waste.
1604 * So when it's called by valid_cached_dir() and we can get
1605 * .gitignore SHA-1 from the index (i.e. .gitignore is not
1606 * modified on work tree), we could delay reading the
1607 * .gitignore content until we absolutely need it in
1608 * last_matching_pattern(). Be careful about ignore rule
1609 * order, though, if you do that.
1611 if (untracked &&
1612 !oideq(&oid_stat.oid, &untracked->exclude_oid)) {
1613 invalidate_gitignore(dir->untracked, untracked);
1614 oidcpy(&untracked->exclude_oid, &oid_stat.oid);
1616 dir->exclude_stack = stk;
1617 current = stk->baselen;
1619 strbuf_setlen(&dir->basebuf, baselen);
1623 * Loads the exclude lists for the directory containing pathname, then
1624 * scans all exclude lists to determine whether pathname is excluded.
1625 * Returns the exclude_list element which matched, or NULL for
1626 * undecided.
1628 struct path_pattern *last_matching_pattern(struct dir_struct *dir,
1629 struct index_state *istate,
1630 const char *pathname,
1631 int *dtype_p)
1633 int pathlen = strlen(pathname);
1634 const char *basename = strrchr(pathname, '/');
1635 basename = (basename) ? basename+1 : pathname;
1637 prep_exclude(dir, istate, pathname, basename-pathname);
1639 if (dir->pattern)
1640 return dir->pattern;
1642 return last_matching_pattern_from_lists(dir, istate, pathname, pathlen,
1643 basename, dtype_p);
1647 * Loads the exclude lists for the directory containing pathname, then
1648 * scans all exclude lists to determine whether pathname is excluded.
1649 * Returns 1 if true, otherwise 0.
1651 int is_excluded(struct dir_struct *dir, struct index_state *istate,
1652 const char *pathname, int *dtype_p)
1654 struct path_pattern *pattern =
1655 last_matching_pattern(dir, istate, pathname, dtype_p);
1656 if (pattern)
1657 return pattern->flags & PATTERN_FLAG_NEGATIVE ? 0 : 1;
1658 return 0;
1661 static struct dir_entry *dir_entry_new(const char *pathname, int len)
1663 struct dir_entry *ent;
1665 FLEX_ALLOC_MEM(ent, name, pathname, len);
1666 ent->len = len;
1667 return ent;
1670 static struct dir_entry *dir_add_name(struct dir_struct *dir,
1671 struct index_state *istate,
1672 const char *pathname, int len)
1674 if (index_file_exists(istate, pathname, len, ignore_case))
1675 return NULL;
1677 ALLOC_GROW(dir->entries, dir->nr+1, dir->alloc);
1678 return dir->entries[dir->nr++] = dir_entry_new(pathname, len);
1681 struct dir_entry *dir_add_ignored(struct dir_struct *dir,
1682 struct index_state *istate,
1683 const char *pathname, int len)
1685 if (!index_name_is_other(istate, pathname, len))
1686 return NULL;
1688 ALLOC_GROW(dir->ignored, dir->ignored_nr+1, dir->ignored_alloc);
1689 return dir->ignored[dir->ignored_nr++] = dir_entry_new(pathname, len);
1692 enum exist_status {
1693 index_nonexistent = 0,
1694 index_directory,
1695 index_gitdir
1699 * Do not use the alphabetically sorted index to look up
1700 * the directory name; instead, use the case insensitive
1701 * directory hash.
1703 static enum exist_status directory_exists_in_index_icase(struct index_state *istate,
1704 const char *dirname, int len)
1706 struct cache_entry *ce;
1708 if (index_dir_exists(istate, dirname, len))
1709 return index_directory;
1711 ce = index_file_exists(istate, dirname, len, ignore_case);
1712 if (ce && S_ISGITLINK(ce->ce_mode))
1713 return index_gitdir;
1715 return index_nonexistent;
1719 * The index sorts alphabetically by entry name, which
1720 * means that a gitlink sorts as '\0' at the end, while
1721 * a directory (which is defined not as an entry, but as
1722 * the files it contains) will sort with the '/' at the
1723 * end.
1725 static enum exist_status directory_exists_in_index(struct index_state *istate,
1726 const char *dirname, int len)
1728 int pos;
1730 if (ignore_case)
1731 return directory_exists_in_index_icase(istate, dirname, len);
1733 pos = index_name_pos(istate, dirname, len);
1734 if (pos < 0)
1735 pos = -pos-1;
1736 while (pos < istate->cache_nr) {
1737 const struct cache_entry *ce = istate->cache[pos++];
1738 unsigned char endchar;
1740 if (strncmp(ce->name, dirname, len))
1741 break;
1742 endchar = ce->name[len];
1743 if (endchar > '/')
1744 break;
1745 if (endchar == '/')
1746 return index_directory;
1747 if (!endchar && S_ISGITLINK(ce->ce_mode))
1748 return index_gitdir;
1750 return index_nonexistent;
1754 * When we find a directory when traversing the filesystem, we
1755 * have three distinct cases:
1757 * - ignore it
1758 * - see it as a directory
1759 * - recurse into it
1761 * and which one we choose depends on a combination of existing
1762 * git index contents and the flags passed into the directory
1763 * traversal routine.
1765 * Case 1: If we *already* have entries in the index under that
1766 * directory name, we always recurse into the directory to see
1767 * all the files.
1769 * Case 2: If we *already* have that directory name as a gitlink,
1770 * we always continue to see it as a gitlink, regardless of whether
1771 * there is an actual git directory there or not (it might not
1772 * be checked out as a subproject!)
1774 * Case 3: if we didn't have it in the index previously, we
1775 * have a few sub-cases:
1777 * (a) if DIR_SHOW_OTHER_DIRECTORIES flag is set, we show it as
1778 * just a directory, unless DIR_HIDE_EMPTY_DIRECTORIES is
1779 * also true, in which case we need to check if it contains any
1780 * untracked and / or ignored files.
1781 * (b) if it looks like a git directory and we don't have the
1782 * DIR_NO_GITLINKS flag, then we treat it as a gitlink, and
1783 * show it as a directory.
1784 * (c) otherwise, we recurse into it.
1786 static enum path_treatment treat_directory(struct dir_struct *dir,
1787 struct index_state *istate,
1788 struct untracked_cache_dir *untracked,
1789 const char *dirname, int len, int baselen, int excluded,
1790 const struct pathspec *pathspec)
1793 * WARNING: From this function, you can return path_recurse or you
1794 * can call read_directory_recursive() (or neither), but
1795 * you CAN'T DO BOTH.
1797 enum path_treatment state;
1798 int matches_how = 0;
1799 int nested_repo = 0, check_only, stop_early;
1800 int old_ignored_nr, old_untracked_nr;
1801 /* The "len-1" is to strip the final '/' */
1802 enum exist_status status = directory_exists_in_index(istate, dirname, len-1);
1804 if (status == index_directory)
1805 return path_recurse;
1806 if (status == index_gitdir)
1807 return path_none;
1808 if (status != index_nonexistent)
1809 BUG("Unhandled value for directory_exists_in_index: %d\n", status);
1812 * We don't want to descend into paths that don't match the necessary
1813 * patterns. Clearly, if we don't have a pathspec, then we can't check
1814 * for matching patterns. Also, if (excluded) then we know we matched
1815 * the exclusion patterns so as an optimization we can skip checking
1816 * for matching patterns.
1818 if (pathspec && !excluded) {
1819 matches_how = match_pathspec_with_flags(istate, pathspec,
1820 dirname, len,
1821 0 /* prefix */,
1822 NULL /* seen */,
1823 DO_MATCH_LEADING_PATHSPEC);
1824 if (!matches_how)
1825 return path_none;
1829 if ((dir->flags & DIR_SKIP_NESTED_GIT) ||
1830 !(dir->flags & DIR_NO_GITLINKS)) {
1831 struct strbuf sb = STRBUF_INIT;
1832 strbuf_addstr(&sb, dirname);
1833 nested_repo = is_nonbare_repository_dir(&sb);
1834 strbuf_release(&sb);
1836 if (nested_repo) {
1837 if ((dir->flags & DIR_SKIP_NESTED_GIT) ||
1838 (matches_how == MATCHED_RECURSIVELY_LEADING_PATHSPEC))
1839 return path_none;
1840 return excluded ? path_excluded : path_untracked;
1843 if (!(dir->flags & DIR_SHOW_OTHER_DIRECTORIES)) {
1844 if (excluded &&
1845 (dir->flags & DIR_SHOW_IGNORED_TOO) &&
1846 (dir->flags & DIR_SHOW_IGNORED_TOO_MODE_MATCHING)) {
1849 * This is an excluded directory and we are
1850 * showing ignored paths that match an exclude
1851 * pattern. (e.g. show directory as ignored
1852 * only if it matches an exclude pattern).
1853 * This path will either be 'path_excluded`
1854 * (if we are showing empty directories or if
1855 * the directory is not empty), or will be
1856 * 'path_none' (empty directory, and we are
1857 * not showing empty directories).
1859 if (!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))
1860 return path_excluded;
1862 if (read_directory_recursive(dir, istate, dirname, len,
1863 untracked, 1, 1, pathspec) == path_excluded)
1864 return path_excluded;
1866 return path_none;
1868 return path_recurse;
1871 assert(dir->flags & DIR_SHOW_OTHER_DIRECTORIES);
1874 * If we have a pathspec which could match something _below_ this
1875 * directory (e.g. when checking 'subdir/' having a pathspec like
1876 * 'subdir/some/deep/path/file' or 'subdir/widget-*.c'), then we
1877 * need to recurse.
1879 if (matches_how == MATCHED_RECURSIVELY_LEADING_PATHSPEC)
1880 return path_recurse;
1882 /* Special cases for where this directory is excluded/ignored */
1883 if (excluded) {
1885 * If DIR_SHOW_OTHER_DIRECTORIES is set and we're not
1886 * hiding empty directories, there is no need to
1887 * recurse into an ignored directory.
1889 if (!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))
1890 return path_excluded;
1893 * Even if we are hiding empty directories, we can still avoid
1894 * recursing into ignored directories for DIR_SHOW_IGNORED_TOO
1895 * if DIR_SHOW_IGNORED_TOO_MODE_MATCHING is also set.
1897 if ((dir->flags & DIR_SHOW_IGNORED_TOO) &&
1898 (dir->flags & DIR_SHOW_IGNORED_TOO_MODE_MATCHING))
1899 return path_excluded;
1903 * Other than the path_recurse case above, we only need to
1904 * recurse into untracked directories if any of the following
1905 * bits is set:
1906 * - DIR_SHOW_IGNORED (because then we need to determine if
1907 * there are ignored entries below)
1908 * - DIR_SHOW_IGNORED_TOO (same as above)
1909 * - DIR_HIDE_EMPTY_DIRECTORIES (because we have to determine if
1910 * the directory is empty)
1912 if (!excluded &&
1913 !(dir->flags & (DIR_SHOW_IGNORED |
1914 DIR_SHOW_IGNORED_TOO |
1915 DIR_HIDE_EMPTY_DIRECTORIES))) {
1916 return path_untracked;
1920 * Even if we don't want to know all the paths under an untracked or
1921 * ignored directory, we may still need to go into the directory to
1922 * determine if it is empty (because with DIR_HIDE_EMPTY_DIRECTORIES,
1923 * an empty directory should be path_none instead of path_excluded or
1924 * path_untracked).
1926 check_only = ((dir->flags & DIR_HIDE_EMPTY_DIRECTORIES) &&
1927 !(dir->flags & DIR_SHOW_IGNORED_TOO));
1930 * However, there's another optimization possible as a subset of
1931 * check_only, based on the cases we have to consider:
1932 * A) Directory matches no exclude patterns:
1933 * * Directory is empty => path_none
1934 * * Directory has an untracked file under it => path_untracked
1935 * * Directory has only ignored files under it => path_excluded
1936 * B) Directory matches an exclude pattern:
1937 * * Directory is empty => path_none
1938 * * Directory has an untracked file under it => path_excluded
1939 * * Directory has only ignored files under it => path_excluded
1940 * In case A, we can exit as soon as we've found an untracked
1941 * file but otherwise have to walk all files. In case B, though,
1942 * we can stop at the first file we find under the directory.
1944 stop_early = check_only && excluded;
1947 * If /every/ file within an untracked directory is ignored, then
1948 * we want to treat the directory as ignored (for e.g. status
1949 * --porcelain), without listing the individual ignored files
1950 * underneath. To do so, we'll save the current ignored_nr, and
1951 * pop all the ones added after it if it turns out the entire
1952 * directory is ignored. Also, when DIR_SHOW_IGNORED_TOO and
1953 * !DIR_KEEP_UNTRACKED_CONTENTS then we don't want to show
1954 * untracked paths so will need to pop all those off the last
1955 * after we traverse.
1957 old_ignored_nr = dir->ignored_nr;
1958 old_untracked_nr = dir->nr;
1960 /* Actually recurse into dirname now, we'll fixup the state later. */
1961 untracked = lookup_untracked(dir->untracked, untracked,
1962 dirname + baselen, len - baselen);
1963 state = read_directory_recursive(dir, istate, dirname, len, untracked,
1964 check_only, stop_early, pathspec);
1966 /* There are a variety of reasons we may need to fixup the state... */
1967 if (state == path_excluded) {
1968 /* state == path_excluded implies all paths under
1969 * dirname were ignored...
1971 * if running e.g. `git status --porcelain --ignored=matching`,
1972 * then we want to see the subpaths that are ignored.
1974 * if running e.g. just `git status --porcelain`, then
1975 * we just want the directory itself to be listed as ignored
1976 * and not the individual paths underneath.
1978 int want_ignored_subpaths =
1979 ((dir->flags & DIR_SHOW_IGNORED_TOO) &&
1980 (dir->flags & DIR_SHOW_IGNORED_TOO_MODE_MATCHING));
1982 if (want_ignored_subpaths) {
1984 * with --ignored=matching, we want the subpaths
1985 * INSTEAD of the directory itself.
1987 state = path_none;
1988 } else {
1989 int i;
1990 for (i = old_ignored_nr + 1; i<dir->ignored_nr; ++i)
1991 FREE_AND_NULL(dir->ignored[i]);
1992 dir->ignored_nr = old_ignored_nr;
1997 * We may need to ignore some of the untracked paths we found while
1998 * traversing subdirectories.
2000 if ((dir->flags & DIR_SHOW_IGNORED_TOO) &&
2001 !(dir->flags & DIR_KEEP_UNTRACKED_CONTENTS)) {
2002 int i;
2003 for (i = old_untracked_nr + 1; i<dir->nr; ++i)
2004 FREE_AND_NULL(dir->entries[i]);
2005 dir->nr = old_untracked_nr;
2009 * If there is nothing under the current directory and we are not
2010 * hiding empty directories, then we need to report on the
2011 * untracked or ignored status of the directory itself.
2013 if (state == path_none && !(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))
2014 state = excluded ? path_excluded : path_untracked;
2016 return state;
2020 * This is an inexact early pruning of any recursive directory
2021 * reading - if the path cannot possibly be in the pathspec,
2022 * return true, and we'll skip it early.
2024 static int simplify_away(const char *path, int pathlen,
2025 const struct pathspec *pathspec)
2027 int i;
2029 if (!pathspec || !pathspec->nr)
2030 return 0;
2032 GUARD_PATHSPEC(pathspec,
2033 PATHSPEC_FROMTOP |
2034 PATHSPEC_MAXDEPTH |
2035 PATHSPEC_LITERAL |
2036 PATHSPEC_GLOB |
2037 PATHSPEC_ICASE |
2038 PATHSPEC_EXCLUDE |
2039 PATHSPEC_ATTR);
2041 for (i = 0; i < pathspec->nr; i++) {
2042 const struct pathspec_item *item = &pathspec->items[i];
2043 int len = item->nowildcard_len;
2045 if (len > pathlen)
2046 len = pathlen;
2047 if (!ps_strncmp(item, item->match, path, len))
2048 return 0;
2051 return 1;
2055 * This function tells us whether an excluded path matches a
2056 * list of "interesting" pathspecs. That is, whether a path matched
2057 * by any of the pathspecs could possibly be ignored by excluding
2058 * the specified path. This can happen if:
2060 * 1. the path is mentioned explicitly in the pathspec
2062 * 2. the path is a directory prefix of some element in the
2063 * pathspec
2065 static int exclude_matches_pathspec(const char *path, int pathlen,
2066 const struct pathspec *pathspec)
2068 int i;
2070 if (!pathspec || !pathspec->nr)
2071 return 0;
2073 GUARD_PATHSPEC(pathspec,
2074 PATHSPEC_FROMTOP |
2075 PATHSPEC_MAXDEPTH |
2076 PATHSPEC_LITERAL |
2077 PATHSPEC_GLOB |
2078 PATHSPEC_ICASE |
2079 PATHSPEC_EXCLUDE);
2081 for (i = 0; i < pathspec->nr; i++) {
2082 const struct pathspec_item *item = &pathspec->items[i];
2083 int len = item->nowildcard_len;
2085 if (len == pathlen &&
2086 !ps_strncmp(item, item->match, path, pathlen))
2087 return 1;
2088 if (len > pathlen &&
2089 item->match[pathlen] == '/' &&
2090 !ps_strncmp(item, item->match, path, pathlen))
2091 return 1;
2093 return 0;
2096 static int get_index_dtype(struct index_state *istate,
2097 const char *path, int len)
2099 int pos;
2100 const struct cache_entry *ce;
2102 ce = index_file_exists(istate, path, len, 0);
2103 if (ce) {
2104 if (!ce_uptodate(ce))
2105 return DT_UNKNOWN;
2106 if (S_ISGITLINK(ce->ce_mode))
2107 return DT_DIR;
2109 * Nobody actually cares about the
2110 * difference between DT_LNK and DT_REG
2112 return DT_REG;
2115 /* Try to look it up as a directory */
2116 pos = index_name_pos(istate, path, len);
2117 if (pos >= 0)
2118 return DT_UNKNOWN;
2119 pos = -pos-1;
2120 while (pos < istate->cache_nr) {
2121 ce = istate->cache[pos++];
2122 if (strncmp(ce->name, path, len))
2123 break;
2124 if (ce->name[len] > '/')
2125 break;
2126 if (ce->name[len] < '/')
2127 continue;
2128 if (!ce_uptodate(ce))
2129 break; /* continue? */
2130 return DT_DIR;
2132 return DT_UNKNOWN;
2135 static int resolve_dtype(int dtype, struct index_state *istate,
2136 const char *path, int len)
2138 struct stat st;
2140 if (dtype != DT_UNKNOWN)
2141 return dtype;
2142 dtype = get_index_dtype(istate, path, len);
2143 if (dtype != DT_UNKNOWN)
2144 return dtype;
2145 if (lstat(path, &st))
2146 return dtype;
2147 if (S_ISREG(st.st_mode))
2148 return DT_REG;
2149 if (S_ISDIR(st.st_mode))
2150 return DT_DIR;
2151 if (S_ISLNK(st.st_mode))
2152 return DT_LNK;
2153 return dtype;
2156 static enum path_treatment treat_path_fast(struct dir_struct *dir,
2157 struct cached_dir *cdir,
2158 struct index_state *istate,
2159 struct strbuf *path,
2160 int baselen,
2161 const struct pathspec *pathspec)
2164 * WARNING: From this function, you can return path_recurse or you
2165 * can call read_directory_recursive() (or neither), but
2166 * you CAN'T DO BOTH.
2168 strbuf_setlen(path, baselen);
2169 if (!cdir->ucd) {
2170 strbuf_addstr(path, cdir->file);
2171 return path_untracked;
2173 strbuf_addstr(path, cdir->ucd->name);
2174 /* treat_one_path() does this before it calls treat_directory() */
2175 strbuf_complete(path, '/');
2176 if (cdir->ucd->check_only)
2178 * check_only is set as a result of treat_directory() getting
2179 * to its bottom. Verify again the same set of directories
2180 * with check_only set.
2182 return read_directory_recursive(dir, istate, path->buf, path->len,
2183 cdir->ucd, 1, 0, pathspec);
2185 * We get path_recurse in the first run when
2186 * directory_exists_in_index() returns index_nonexistent. We
2187 * are sure that new changes in the index does not impact the
2188 * outcome. Return now.
2190 return path_recurse;
2193 static enum path_treatment treat_path(struct dir_struct *dir,
2194 struct untracked_cache_dir *untracked,
2195 struct cached_dir *cdir,
2196 struct index_state *istate,
2197 struct strbuf *path,
2198 int baselen,
2199 const struct pathspec *pathspec)
2201 int has_path_in_index, dtype, excluded;
2203 if (!cdir->d_name)
2204 return treat_path_fast(dir, cdir, istate, path,
2205 baselen, pathspec);
2206 if (is_dot_or_dotdot(cdir->d_name) || !fspathcmp(cdir->d_name, ".git"))
2207 return path_none;
2208 strbuf_setlen(path, baselen);
2209 strbuf_addstr(path, cdir->d_name);
2210 if (simplify_away(path->buf, path->len, pathspec))
2211 return path_none;
2213 dtype = resolve_dtype(cdir->d_type, istate, path->buf, path->len);
2215 /* Always exclude indexed files */
2216 has_path_in_index = !!index_file_exists(istate, path->buf, path->len,
2217 ignore_case);
2218 if (dtype != DT_DIR && has_path_in_index)
2219 return path_none;
2222 * When we are looking at a directory P in the working tree,
2223 * there are three cases:
2225 * (1) P exists in the index. Everything inside the directory P in
2226 * the working tree needs to go when P is checked out from the
2227 * index.
2229 * (2) P does not exist in the index, but there is P/Q in the index.
2230 * We know P will stay a directory when we check out the contents
2231 * of the index, but we do not know yet if there is a directory
2232 * P/Q in the working tree to be killed, so we need to recurse.
2234 * (3) P does not exist in the index, and there is no P/Q in the index
2235 * to require P to be a directory, either. Only in this case, we
2236 * know that everything inside P will not be killed without
2237 * recursing.
2239 if ((dir->flags & DIR_COLLECT_KILLED_ONLY) &&
2240 (dtype == DT_DIR) &&
2241 !has_path_in_index &&
2242 (directory_exists_in_index(istate, path->buf, path->len) == index_nonexistent))
2243 return path_none;
2245 excluded = is_excluded(dir, istate, path->buf, &dtype);
2248 * Excluded? If we don't explicitly want to show
2249 * ignored files, ignore it
2251 if (excluded && !(dir->flags & (DIR_SHOW_IGNORED|DIR_SHOW_IGNORED_TOO)))
2252 return path_excluded;
2254 switch (dtype) {
2255 default:
2256 return path_none;
2257 case DT_DIR:
2259 * WARNING: Do not ignore/amend the return value from
2260 * treat_directory(), and especially do not change it to return
2261 * path_recurse as that can cause exponential slowdown.
2262 * Instead, modify treat_directory() to return the right value.
2264 strbuf_addch(path, '/');
2265 return treat_directory(dir, istate, untracked,
2266 path->buf, path->len,
2267 baselen, excluded, pathspec);
2268 case DT_REG:
2269 case DT_LNK:
2270 if (pathspec &&
2271 !match_pathspec(istate, pathspec, path->buf, path->len,
2272 0 /* prefix */, NULL /* seen */,
2273 0 /* is_dir */))
2274 return path_none;
2275 if (excluded)
2276 return path_excluded;
2277 return path_untracked;
2281 static void add_untracked(struct untracked_cache_dir *dir, const char *name)
2283 if (!dir)
2284 return;
2285 ALLOC_GROW(dir->untracked, dir->untracked_nr + 1,
2286 dir->untracked_alloc);
2287 dir->untracked[dir->untracked_nr++] = xstrdup(name);
2290 static int valid_cached_dir(struct dir_struct *dir,
2291 struct untracked_cache_dir *untracked,
2292 struct index_state *istate,
2293 struct strbuf *path,
2294 int check_only)
2296 struct stat st;
2298 if (!untracked)
2299 return 0;
2302 * With fsmonitor, we can trust the untracked cache's valid field.
2304 refresh_fsmonitor(istate);
2305 if (!(dir->untracked->use_fsmonitor && untracked->valid)) {
2306 if (lstat(path->len ? path->buf : ".", &st)) {
2307 memset(&untracked->stat_data, 0, sizeof(untracked->stat_data));
2308 return 0;
2310 if (!untracked->valid ||
2311 match_stat_data_racy(istate, &untracked->stat_data, &st)) {
2312 fill_stat_data(&untracked->stat_data, &st);
2313 return 0;
2317 if (untracked->check_only != !!check_only)
2318 return 0;
2321 * prep_exclude will be called eventually on this directory,
2322 * but it's called much later in last_matching_pattern(). We
2323 * need it now to determine the validity of the cache for this
2324 * path. The next calls will be nearly no-op, the way
2325 * prep_exclude() is designed.
2327 if (path->len && path->buf[path->len - 1] != '/') {
2328 strbuf_addch(path, '/');
2329 prep_exclude(dir, istate, path->buf, path->len);
2330 strbuf_setlen(path, path->len - 1);
2331 } else
2332 prep_exclude(dir, istate, path->buf, path->len);
2334 /* hopefully prep_exclude() haven't invalidated this entry... */
2335 return untracked->valid;
2338 static int open_cached_dir(struct cached_dir *cdir,
2339 struct dir_struct *dir,
2340 struct untracked_cache_dir *untracked,
2341 struct index_state *istate,
2342 struct strbuf *path,
2343 int check_only)
2345 const char *c_path;
2347 memset(cdir, 0, sizeof(*cdir));
2348 cdir->untracked = untracked;
2349 if (valid_cached_dir(dir, untracked, istate, path, check_only))
2350 return 0;
2351 c_path = path->len ? path->buf : ".";
2352 cdir->fdir = opendir(c_path);
2353 if (!cdir->fdir)
2354 warning_errno(_("could not open directory '%s'"), c_path);
2355 if (dir->untracked) {
2356 invalidate_directory(dir->untracked, untracked);
2357 dir->untracked->dir_opened++;
2359 if (!cdir->fdir)
2360 return -1;
2361 return 0;
2364 static int read_cached_dir(struct cached_dir *cdir)
2366 struct dirent *de;
2368 if (cdir->fdir) {
2369 de = readdir_skip_dot_and_dotdot(cdir->fdir);
2370 if (!de) {
2371 cdir->d_name = NULL;
2372 cdir->d_type = DT_UNKNOWN;
2373 return -1;
2375 cdir->d_name = de->d_name;
2376 cdir->d_type = DTYPE(de);
2377 return 0;
2379 while (cdir->nr_dirs < cdir->untracked->dirs_nr) {
2380 struct untracked_cache_dir *d = cdir->untracked->dirs[cdir->nr_dirs];
2381 if (!d->recurse) {
2382 cdir->nr_dirs++;
2383 continue;
2385 cdir->ucd = d;
2386 cdir->nr_dirs++;
2387 return 0;
2389 cdir->ucd = NULL;
2390 if (cdir->nr_files < cdir->untracked->untracked_nr) {
2391 struct untracked_cache_dir *d = cdir->untracked;
2392 cdir->file = d->untracked[cdir->nr_files++];
2393 return 0;
2395 return -1;
2398 static void close_cached_dir(struct cached_dir *cdir)
2400 if (cdir->fdir)
2401 closedir(cdir->fdir);
2403 * We have gone through this directory and found no untracked
2404 * entries. Mark it valid.
2406 if (cdir->untracked) {
2407 cdir->untracked->valid = 1;
2408 cdir->untracked->recurse = 1;
2412 static void add_path_to_appropriate_result_list(struct dir_struct *dir,
2413 struct untracked_cache_dir *untracked,
2414 struct cached_dir *cdir,
2415 struct index_state *istate,
2416 struct strbuf *path,
2417 int baselen,
2418 const struct pathspec *pathspec,
2419 enum path_treatment state)
2421 /* add the path to the appropriate result list */
2422 switch (state) {
2423 case path_excluded:
2424 if (dir->flags & DIR_SHOW_IGNORED)
2425 dir_add_name(dir, istate, path->buf, path->len);
2426 else if ((dir->flags & DIR_SHOW_IGNORED_TOO) ||
2427 ((dir->flags & DIR_COLLECT_IGNORED) &&
2428 exclude_matches_pathspec(path->buf, path->len,
2429 pathspec)))
2430 dir_add_ignored(dir, istate, path->buf, path->len);
2431 break;
2433 case path_untracked:
2434 if (dir->flags & DIR_SHOW_IGNORED)
2435 break;
2436 dir_add_name(dir, istate, path->buf, path->len);
2437 if (cdir->fdir)
2438 add_untracked(untracked, path->buf + baselen);
2439 break;
2441 default:
2442 break;
2447 * Read a directory tree. We currently ignore anything but
2448 * directories, regular files and symlinks. That's because git
2449 * doesn't handle them at all yet. Maybe that will change some
2450 * day.
2452 * Also, we ignore the name ".git" (even if it is not a directory).
2453 * That likely will not change.
2455 * If 'stop_at_first_file' is specified, 'path_excluded' is returned
2456 * to signal that a file was found. This is the least significant value that
2457 * indicates that a file was encountered that does not depend on the order of
2458 * whether an untracked or excluded path was encountered first.
2460 * Returns the most significant path_treatment value encountered in the scan.
2461 * If 'stop_at_first_file' is specified, `path_excluded` is the most
2462 * significant path_treatment value that will be returned.
2465 static enum path_treatment read_directory_recursive(struct dir_struct *dir,
2466 struct index_state *istate, const char *base, int baselen,
2467 struct untracked_cache_dir *untracked, int check_only,
2468 int stop_at_first_file, const struct pathspec *pathspec)
2471 * WARNING: Do NOT recurse unless path_recurse is returned from
2472 * treat_path(). Recursing on any other return value
2473 * can result in exponential slowdown.
2475 struct cached_dir cdir;
2476 enum path_treatment state, subdir_state, dir_state = path_none;
2477 struct strbuf path = STRBUF_INIT;
2479 strbuf_add(&path, base, baselen);
2481 if (open_cached_dir(&cdir, dir, untracked, istate, &path, check_only))
2482 goto out;
2483 dir->visited_directories++;
2485 if (untracked)
2486 untracked->check_only = !!check_only;
2488 while (!read_cached_dir(&cdir)) {
2489 /* check how the file or directory should be treated */
2490 state = treat_path(dir, untracked, &cdir, istate, &path,
2491 baselen, pathspec);
2492 dir->visited_paths++;
2494 if (state > dir_state)
2495 dir_state = state;
2497 /* recurse into subdir if instructed by treat_path */
2498 if (state == path_recurse) {
2499 struct untracked_cache_dir *ud;
2500 ud = lookup_untracked(dir->untracked, untracked,
2501 path.buf + baselen,
2502 path.len - baselen);
2503 subdir_state =
2504 read_directory_recursive(dir, istate, path.buf,
2505 path.len, ud,
2506 check_only, stop_at_first_file, pathspec);
2507 if (subdir_state > dir_state)
2508 dir_state = subdir_state;
2510 if (pathspec &&
2511 !match_pathspec(istate, pathspec, path.buf, path.len,
2512 0 /* prefix */, NULL,
2513 0 /* do NOT special case dirs */))
2514 state = path_none;
2517 if (check_only) {
2518 if (stop_at_first_file) {
2520 * If stopping at first file, then
2521 * signal that a file was found by
2522 * returning `path_excluded`. This is
2523 * to return a consistent value
2524 * regardless of whether an ignored or
2525 * excluded file happened to be
2526 * encountered 1st.
2528 * In current usage, the
2529 * `stop_at_first_file` is passed when
2530 * an ancestor directory has matched
2531 * an exclude pattern, so any found
2532 * files will be excluded.
2534 if (dir_state >= path_excluded) {
2535 dir_state = path_excluded;
2536 break;
2540 /* abort early if maximum state has been reached */
2541 if (dir_state == path_untracked) {
2542 if (cdir.fdir)
2543 add_untracked(untracked, path.buf + baselen);
2544 break;
2546 /* skip the add_path_to_appropriate_result_list() */
2547 continue;
2550 add_path_to_appropriate_result_list(dir, untracked, &cdir,
2551 istate, &path, baselen,
2552 pathspec, state);
2554 close_cached_dir(&cdir);
2555 out:
2556 strbuf_release(&path);
2558 return dir_state;
2561 int cmp_dir_entry(const void *p1, const void *p2)
2563 const struct dir_entry *e1 = *(const struct dir_entry **)p1;
2564 const struct dir_entry *e2 = *(const struct dir_entry **)p2;
2566 return name_compare(e1->name, e1->len, e2->name, e2->len);
2569 /* check if *out lexically strictly contains *in */
2570 int check_dir_entry_contains(const struct dir_entry *out, const struct dir_entry *in)
2572 return (out->len < in->len) &&
2573 (out->name[out->len - 1] == '/') &&
2574 !memcmp(out->name, in->name, out->len);
2577 static int treat_leading_path(struct dir_struct *dir,
2578 struct index_state *istate,
2579 const char *path, int len,
2580 const struct pathspec *pathspec)
2582 struct strbuf sb = STRBUF_INIT;
2583 struct strbuf subdir = STRBUF_INIT;
2584 int prevlen, baselen;
2585 const char *cp;
2586 struct cached_dir cdir;
2587 enum path_treatment state = path_none;
2590 * For each directory component of path, we are going to check whether
2591 * that path is relevant given the pathspec. For example, if path is
2592 * foo/bar/baz/
2593 * then we will ask treat_path() whether we should go into foo, then
2594 * whether we should go into bar, then whether baz is relevant.
2595 * Checking each is important because e.g. if path is
2596 * .git/info/
2597 * then we need to check .git to know we shouldn't traverse it.
2598 * If the return from treat_path() is:
2599 * * path_none, for any path, we return false.
2600 * * path_recurse, for all path components, we return true
2601 * * <anything else> for some intermediate component, we make sure
2602 * to add that path to the relevant list but return false
2603 * signifying that we shouldn't recurse into it.
2606 while (len && path[len - 1] == '/')
2607 len--;
2608 if (!len)
2609 return 1;
2611 memset(&cdir, 0, sizeof(cdir));
2612 cdir.d_type = DT_DIR;
2613 baselen = 0;
2614 prevlen = 0;
2615 while (1) {
2616 prevlen = baselen + !!baselen;
2617 cp = path + prevlen;
2618 cp = memchr(cp, '/', path + len - cp);
2619 if (!cp)
2620 baselen = len;
2621 else
2622 baselen = cp - path;
2623 strbuf_reset(&sb);
2624 strbuf_add(&sb, path, baselen);
2625 if (!is_directory(sb.buf))
2626 break;
2627 strbuf_reset(&sb);
2628 strbuf_add(&sb, path, prevlen);
2629 strbuf_reset(&subdir);
2630 strbuf_add(&subdir, path+prevlen, baselen-prevlen);
2631 cdir.d_name = subdir.buf;
2632 state = treat_path(dir, NULL, &cdir, istate, &sb, prevlen, pathspec);
2634 if (state != path_recurse)
2635 break; /* do not recurse into it */
2636 if (len <= baselen)
2637 break; /* finished checking */
2639 add_path_to_appropriate_result_list(dir, NULL, &cdir, istate,
2640 &sb, baselen, pathspec,
2641 state);
2643 strbuf_release(&subdir);
2644 strbuf_release(&sb);
2645 return state == path_recurse;
2648 static const char *get_ident_string(void)
2650 static struct strbuf sb = STRBUF_INIT;
2651 struct utsname uts;
2653 if (sb.len)
2654 return sb.buf;
2655 if (uname(&uts) < 0)
2656 die_errno(_("failed to get kernel name and information"));
2657 strbuf_addf(&sb, "Location %s, system %s", get_git_work_tree(),
2658 uts.sysname);
2659 return sb.buf;
2662 static int ident_in_untracked(const struct untracked_cache *uc)
2665 * Previous git versions may have saved many NUL separated
2666 * strings in the "ident" field, but it is insane to manage
2667 * many locations, so just take care of the first one.
2670 return !strcmp(uc->ident.buf, get_ident_string());
2673 static void set_untracked_ident(struct untracked_cache *uc)
2675 strbuf_reset(&uc->ident);
2676 strbuf_addstr(&uc->ident, get_ident_string());
2679 * This strbuf used to contain a list of NUL separated
2680 * strings, so save NUL too for backward compatibility.
2682 strbuf_addch(&uc->ident, 0);
2685 static void new_untracked_cache(struct index_state *istate)
2687 struct untracked_cache *uc = xcalloc(1, sizeof(*uc));
2688 strbuf_init(&uc->ident, 100);
2689 uc->exclude_per_dir = ".gitignore";
2690 /* should be the same flags used by git-status */
2691 uc->dir_flags = DIR_SHOW_OTHER_DIRECTORIES | DIR_HIDE_EMPTY_DIRECTORIES;
2692 set_untracked_ident(uc);
2693 istate->untracked = uc;
2694 istate->cache_changed |= UNTRACKED_CHANGED;
2697 void add_untracked_cache(struct index_state *istate)
2699 if (!istate->untracked) {
2700 new_untracked_cache(istate);
2701 } else {
2702 if (!ident_in_untracked(istate->untracked)) {
2703 free_untracked_cache(istate->untracked);
2704 new_untracked_cache(istate);
2709 void remove_untracked_cache(struct index_state *istate)
2711 if (istate->untracked) {
2712 free_untracked_cache(istate->untracked);
2713 istate->untracked = NULL;
2714 istate->cache_changed |= UNTRACKED_CHANGED;
2718 static struct untracked_cache_dir *validate_untracked_cache(struct dir_struct *dir,
2719 int base_len,
2720 const struct pathspec *pathspec)
2722 struct untracked_cache_dir *root;
2723 static int untracked_cache_disabled = -1;
2725 if (!dir->untracked)
2726 return NULL;
2727 if (untracked_cache_disabled < 0)
2728 untracked_cache_disabled = git_env_bool("GIT_DISABLE_UNTRACKED_CACHE", 0);
2729 if (untracked_cache_disabled)
2730 return NULL;
2733 * We only support $GIT_DIR/info/exclude and core.excludesfile
2734 * as the global ignore rule files. Any other additions
2735 * (e.g. from command line) invalidate the cache. This
2736 * condition also catches running setup_standard_excludes()
2737 * before setting dir->untracked!
2739 if (dir->unmanaged_exclude_files)
2740 return NULL;
2743 * Optimize for the main use case only: whole-tree git
2744 * status. More work involved in treat_leading_path() if we
2745 * use cache on just a subset of the worktree. pathspec
2746 * support could make the matter even worse.
2748 if (base_len || (pathspec && pathspec->nr))
2749 return NULL;
2751 /* Different set of flags may produce different results */
2752 if (dir->flags != dir->untracked->dir_flags ||
2754 * See treat_directory(), case index_nonexistent. Without
2755 * this flag, we may need to also cache .git file content
2756 * for the resolve_gitlink_ref() call, which we don't.
2758 !(dir->flags & DIR_SHOW_OTHER_DIRECTORIES) ||
2759 /* We don't support collecting ignore files */
2760 (dir->flags & (DIR_SHOW_IGNORED | DIR_SHOW_IGNORED_TOO |
2761 DIR_COLLECT_IGNORED)))
2762 return NULL;
2765 * If we use .gitignore in the cache and now you change it to
2766 * .gitexclude, everything will go wrong.
2768 if (dir->exclude_per_dir != dir->untracked->exclude_per_dir &&
2769 strcmp(dir->exclude_per_dir, dir->untracked->exclude_per_dir))
2770 return NULL;
2773 * EXC_CMDL is not considered in the cache. If people set it,
2774 * skip the cache.
2776 if (dir->exclude_list_group[EXC_CMDL].nr)
2777 return NULL;
2779 if (!ident_in_untracked(dir->untracked)) {
2780 warning(_("untracked cache is disabled on this system or location"));
2781 return NULL;
2784 if (!dir->untracked->root)
2785 FLEX_ALLOC_STR(dir->untracked->root, name, "");
2787 /* Validate $GIT_DIR/info/exclude and core.excludesfile */
2788 root = dir->untracked->root;
2789 if (!oideq(&dir->ss_info_exclude.oid,
2790 &dir->untracked->ss_info_exclude.oid)) {
2791 invalidate_gitignore(dir->untracked, root);
2792 dir->untracked->ss_info_exclude = dir->ss_info_exclude;
2794 if (!oideq(&dir->ss_excludes_file.oid,
2795 &dir->untracked->ss_excludes_file.oid)) {
2796 invalidate_gitignore(dir->untracked, root);
2797 dir->untracked->ss_excludes_file = dir->ss_excludes_file;
2800 /* Make sure this directory is not dropped out at saving phase */
2801 root->recurse = 1;
2802 return root;
2805 static void emit_traversal_statistics(struct dir_struct *dir,
2806 struct repository *repo,
2807 const char *path,
2808 int path_len)
2810 if (!trace2_is_enabled())
2811 return;
2813 if (!path_len) {
2814 trace2_data_string("read_directory", repo, "path", "");
2815 } else {
2816 struct strbuf tmp = STRBUF_INIT;
2817 strbuf_add(&tmp, path, path_len);
2818 trace2_data_string("read_directory", repo, "path", tmp.buf);
2819 strbuf_release(&tmp);
2822 trace2_data_intmax("read_directory", repo,
2823 "directories-visited", dir->visited_directories);
2824 trace2_data_intmax("read_directory", repo,
2825 "paths-visited", dir->visited_paths);
2827 if (!dir->untracked)
2828 return;
2829 trace2_data_intmax("read_directory", repo,
2830 "node-creation", dir->untracked->dir_created);
2831 trace2_data_intmax("read_directory", repo,
2832 "gitignore-invalidation",
2833 dir->untracked->gitignore_invalidated);
2834 trace2_data_intmax("read_directory", repo,
2835 "directory-invalidation",
2836 dir->untracked->dir_invalidated);
2837 trace2_data_intmax("read_directory", repo,
2838 "opendir", dir->untracked->dir_opened);
2841 int read_directory(struct dir_struct *dir, struct index_state *istate,
2842 const char *path, int len, const struct pathspec *pathspec)
2844 struct untracked_cache_dir *untracked;
2846 trace2_region_enter("dir", "read_directory", istate->repo);
2847 dir->visited_paths = 0;
2848 dir->visited_directories = 0;
2850 if (has_symlink_leading_path(path, len)) {
2851 trace2_region_leave("dir", "read_directory", istate->repo);
2852 return dir->nr;
2855 untracked = validate_untracked_cache(dir, len, pathspec);
2856 if (!untracked)
2858 * make sure untracked cache code path is disabled,
2859 * e.g. prep_exclude()
2861 dir->untracked = NULL;
2862 if (!len || treat_leading_path(dir, istate, path, len, pathspec))
2863 read_directory_recursive(dir, istate, path, len, untracked, 0, 0, pathspec);
2864 QSORT(dir->entries, dir->nr, cmp_dir_entry);
2865 QSORT(dir->ignored, dir->ignored_nr, cmp_dir_entry);
2867 emit_traversal_statistics(dir, istate->repo, path, len);
2869 trace2_region_leave("dir", "read_directory", istate->repo);
2870 if (dir->untracked) {
2871 static int force_untracked_cache = -1;
2873 if (force_untracked_cache < 0)
2874 force_untracked_cache =
2875 git_env_bool("GIT_FORCE_UNTRACKED_CACHE", 0);
2876 if (force_untracked_cache &&
2877 dir->untracked == istate->untracked &&
2878 (dir->untracked->dir_opened ||
2879 dir->untracked->gitignore_invalidated ||
2880 dir->untracked->dir_invalidated))
2881 istate->cache_changed |= UNTRACKED_CHANGED;
2882 if (dir->untracked != istate->untracked) {
2883 FREE_AND_NULL(dir->untracked);
2887 return dir->nr;
2890 int file_exists(const char *f)
2892 struct stat sb;
2893 return lstat(f, &sb) == 0;
2896 int repo_file_exists(struct repository *repo, const char *path)
2898 if (repo != the_repository)
2899 BUG("do not know how to check file existence in arbitrary repo");
2901 return file_exists(path);
2904 static int cmp_icase(char a, char b)
2906 if (a == b)
2907 return 0;
2908 if (ignore_case)
2909 return toupper(a) - toupper(b);
2910 return a - b;
2914 * Given two normalized paths (a trailing slash is ok), if subdir is
2915 * outside dir, return -1. Otherwise return the offset in subdir that
2916 * can be used as relative path to dir.
2918 int dir_inside_of(const char *subdir, const char *dir)
2920 int offset = 0;
2922 assert(dir && subdir && *dir && *subdir);
2924 while (*dir && *subdir && !cmp_icase(*dir, *subdir)) {
2925 dir++;
2926 subdir++;
2927 offset++;
2930 /* hel[p]/me vs hel[l]/yeah */
2931 if (*dir && *subdir)
2932 return -1;
2934 if (!*subdir)
2935 return !*dir ? offset : -1; /* same dir */
2937 /* foo/[b]ar vs foo/[] */
2938 if (is_dir_sep(dir[-1]))
2939 return is_dir_sep(subdir[-1]) ? offset : -1;
2941 /* foo[/]bar vs foo[] */
2942 return is_dir_sep(*subdir) ? offset + 1 : -1;
2945 int is_inside_dir(const char *dir)
2947 char *cwd;
2948 int rc;
2950 if (!dir)
2951 return 0;
2953 cwd = xgetcwd();
2954 rc = (dir_inside_of(cwd, dir) >= 0);
2955 free(cwd);
2956 return rc;
2959 int is_empty_dir(const char *path)
2961 DIR *dir = opendir(path);
2962 struct dirent *e;
2963 int ret = 1;
2965 if (!dir)
2966 return 0;
2968 e = readdir_skip_dot_and_dotdot(dir);
2969 if (e)
2970 ret = 0;
2972 closedir(dir);
2973 return ret;
2976 static int remove_dir_recurse(struct strbuf *path, int flag, int *kept_up)
2978 DIR *dir;
2979 struct dirent *e;
2980 int ret = 0, original_len = path->len, len, kept_down = 0;
2981 int only_empty = (flag & REMOVE_DIR_EMPTY_ONLY);
2982 int keep_toplevel = (flag & REMOVE_DIR_KEEP_TOPLEVEL);
2983 struct object_id submodule_head;
2985 if ((flag & REMOVE_DIR_KEEP_NESTED_GIT) &&
2986 !resolve_gitlink_ref(path->buf, "HEAD", &submodule_head)) {
2987 /* Do not descend and nuke a nested git work tree. */
2988 if (kept_up)
2989 *kept_up = 1;
2990 return 0;
2993 flag &= ~REMOVE_DIR_KEEP_TOPLEVEL;
2994 dir = opendir(path->buf);
2995 if (!dir) {
2996 if (errno == ENOENT)
2997 return keep_toplevel ? -1 : 0;
2998 else if (errno == EACCES && !keep_toplevel)
3000 * An empty dir could be removable even if it
3001 * is unreadable:
3003 return rmdir(path->buf);
3004 else
3005 return -1;
3007 strbuf_complete(path, '/');
3009 len = path->len;
3010 while ((e = readdir_skip_dot_and_dotdot(dir)) != NULL) {
3011 struct stat st;
3013 strbuf_setlen(path, len);
3014 strbuf_addstr(path, e->d_name);
3015 if (lstat(path->buf, &st)) {
3016 if (errno == ENOENT)
3018 * file disappeared, which is what we
3019 * wanted anyway
3021 continue;
3022 /* fall through */
3023 } else if (S_ISDIR(st.st_mode)) {
3024 if (!remove_dir_recurse(path, flag, &kept_down))
3025 continue; /* happy */
3026 } else if (!only_empty &&
3027 (!unlink(path->buf) || errno == ENOENT)) {
3028 continue; /* happy, too */
3031 /* path too long, stat fails, or non-directory still exists */
3032 ret = -1;
3033 break;
3035 closedir(dir);
3037 strbuf_setlen(path, original_len);
3038 if (!ret && !keep_toplevel && !kept_down)
3039 ret = (!rmdir(path->buf) || errno == ENOENT) ? 0 : -1;
3040 else if (kept_up)
3042 * report the uplevel that it is not an error that we
3043 * did not rmdir() our directory.
3045 *kept_up = !ret;
3046 return ret;
3049 int remove_dir_recursively(struct strbuf *path, int flag)
3051 return remove_dir_recurse(path, flag, NULL);
3054 static GIT_PATH_FUNC(git_path_info_exclude, "info/exclude")
3056 void setup_standard_excludes(struct dir_struct *dir)
3058 dir->exclude_per_dir = ".gitignore";
3060 /* core.excludesfile defaulting to $XDG_CONFIG_HOME/git/ignore */
3061 if (!excludes_file)
3062 excludes_file = xdg_config_home("ignore");
3063 if (excludes_file && !access_or_warn(excludes_file, R_OK, 0))
3064 add_patterns_from_file_1(dir, excludes_file,
3065 dir->untracked ? &dir->ss_excludes_file : NULL);
3067 /* per repository user preference */
3068 if (startup_info->have_repository) {
3069 const char *path = git_path_info_exclude();
3070 if (!access_or_warn(path, R_OK, 0))
3071 add_patterns_from_file_1(dir, path,
3072 dir->untracked ? &dir->ss_info_exclude : NULL);
3076 char *get_sparse_checkout_filename(void)
3078 return git_pathdup("info/sparse-checkout");
3081 int get_sparse_checkout_patterns(struct pattern_list *pl)
3083 int res;
3084 char *sparse_filename = get_sparse_checkout_filename();
3086 pl->use_cone_patterns = core_sparse_checkout_cone;
3087 res = add_patterns_from_file_to_list(sparse_filename, "", 0, pl, NULL, 0);
3089 free(sparse_filename);
3090 return res;
3093 int remove_path(const char *name)
3095 char *slash;
3097 if (unlink(name) && !is_missing_file_error(errno))
3098 return -1;
3100 slash = strrchr(name, '/');
3101 if (slash) {
3102 char *dirs = xstrdup(name);
3103 slash = dirs + (slash - name);
3104 do {
3105 *slash = '\0';
3106 } while (rmdir(dirs) == 0 && (slash = strrchr(dirs, '/')));
3107 free(dirs);
3109 return 0;
3113 * Frees memory within dir which was allocated, and resets fields for further
3114 * use. Does not free dir itself.
3116 void dir_clear(struct dir_struct *dir)
3118 int i, j;
3119 struct exclude_list_group *group;
3120 struct pattern_list *pl;
3121 struct exclude_stack *stk;
3123 for (i = EXC_CMDL; i <= EXC_FILE; i++) {
3124 group = &dir->exclude_list_group[i];
3125 for (j = 0; j < group->nr; j++) {
3126 pl = &group->pl[j];
3127 if (i == EXC_DIRS)
3128 free((char *)pl->src);
3129 clear_pattern_list(pl);
3131 free(group->pl);
3134 for (i = 0; i < dir->ignored_nr; i++)
3135 free(dir->ignored[i]);
3136 for (i = 0; i < dir->nr; i++)
3137 free(dir->entries[i]);
3138 free(dir->ignored);
3139 free(dir->entries);
3141 stk = dir->exclude_stack;
3142 while (stk) {
3143 struct exclude_stack *prev = stk->prev;
3144 free(stk);
3145 stk = prev;
3147 strbuf_release(&dir->basebuf);
3149 dir_init(dir);
3152 struct ondisk_untracked_cache {
3153 struct stat_data info_exclude_stat;
3154 struct stat_data excludes_file_stat;
3155 uint32_t dir_flags;
3158 #define ouc_offset(x) offsetof(struct ondisk_untracked_cache, x)
3160 struct write_data {
3161 int index; /* number of written untracked_cache_dir */
3162 struct ewah_bitmap *check_only; /* from untracked_cache_dir */
3163 struct ewah_bitmap *valid; /* from untracked_cache_dir */
3164 struct ewah_bitmap *sha1_valid; /* set if exclude_sha1 is not null */
3165 struct strbuf out;
3166 struct strbuf sb_stat;
3167 struct strbuf sb_sha1;
3170 static void stat_data_to_disk(struct stat_data *to, const struct stat_data *from)
3172 to->sd_ctime.sec = htonl(from->sd_ctime.sec);
3173 to->sd_ctime.nsec = htonl(from->sd_ctime.nsec);
3174 to->sd_mtime.sec = htonl(from->sd_mtime.sec);
3175 to->sd_mtime.nsec = htonl(from->sd_mtime.nsec);
3176 to->sd_dev = htonl(from->sd_dev);
3177 to->sd_ino = htonl(from->sd_ino);
3178 to->sd_uid = htonl(from->sd_uid);
3179 to->sd_gid = htonl(from->sd_gid);
3180 to->sd_size = htonl(from->sd_size);
3183 static void write_one_dir(struct untracked_cache_dir *untracked,
3184 struct write_data *wd)
3186 struct stat_data stat_data;
3187 struct strbuf *out = &wd->out;
3188 unsigned char intbuf[16];
3189 unsigned int intlen, value;
3190 int i = wd->index++;
3193 * untracked_nr should be reset whenever valid is clear, but
3194 * for safety..
3196 if (!untracked->valid) {
3197 untracked->untracked_nr = 0;
3198 untracked->check_only = 0;
3201 if (untracked->check_only)
3202 ewah_set(wd->check_only, i);
3203 if (untracked->valid) {
3204 ewah_set(wd->valid, i);
3205 stat_data_to_disk(&stat_data, &untracked->stat_data);
3206 strbuf_add(&wd->sb_stat, &stat_data, sizeof(stat_data));
3208 if (!is_null_oid(&untracked->exclude_oid)) {
3209 ewah_set(wd->sha1_valid, i);
3210 strbuf_add(&wd->sb_sha1, untracked->exclude_oid.hash,
3211 the_hash_algo->rawsz);
3214 intlen = encode_varint(untracked->untracked_nr, intbuf);
3215 strbuf_add(out, intbuf, intlen);
3217 /* skip non-recurse directories */
3218 for (i = 0, value = 0; i < untracked->dirs_nr; i++)
3219 if (untracked->dirs[i]->recurse)
3220 value++;
3221 intlen = encode_varint(value, intbuf);
3222 strbuf_add(out, intbuf, intlen);
3224 strbuf_add(out, untracked->name, strlen(untracked->name) + 1);
3226 for (i = 0; i < untracked->untracked_nr; i++)
3227 strbuf_add(out, untracked->untracked[i],
3228 strlen(untracked->untracked[i]) + 1);
3230 for (i = 0; i < untracked->dirs_nr; i++)
3231 if (untracked->dirs[i]->recurse)
3232 write_one_dir(untracked->dirs[i], wd);
3235 void write_untracked_extension(struct strbuf *out, struct untracked_cache *untracked)
3237 struct ondisk_untracked_cache *ouc;
3238 struct write_data wd;
3239 unsigned char varbuf[16];
3240 int varint_len;
3241 const unsigned hashsz = the_hash_algo->rawsz;
3243 CALLOC_ARRAY(ouc, 1);
3244 stat_data_to_disk(&ouc->info_exclude_stat, &untracked->ss_info_exclude.stat);
3245 stat_data_to_disk(&ouc->excludes_file_stat, &untracked->ss_excludes_file.stat);
3246 ouc->dir_flags = htonl(untracked->dir_flags);
3248 varint_len = encode_varint(untracked->ident.len, varbuf);
3249 strbuf_add(out, varbuf, varint_len);
3250 strbuf_addbuf(out, &untracked->ident);
3252 strbuf_add(out, ouc, sizeof(*ouc));
3253 strbuf_add(out, untracked->ss_info_exclude.oid.hash, hashsz);
3254 strbuf_add(out, untracked->ss_excludes_file.oid.hash, hashsz);
3255 strbuf_add(out, untracked->exclude_per_dir, strlen(untracked->exclude_per_dir) + 1);
3256 FREE_AND_NULL(ouc);
3258 if (!untracked->root) {
3259 varint_len = encode_varint(0, varbuf);
3260 strbuf_add(out, varbuf, varint_len);
3261 return;
3264 wd.index = 0;
3265 wd.check_only = ewah_new();
3266 wd.valid = ewah_new();
3267 wd.sha1_valid = ewah_new();
3268 strbuf_init(&wd.out, 1024);
3269 strbuf_init(&wd.sb_stat, 1024);
3270 strbuf_init(&wd.sb_sha1, 1024);
3271 write_one_dir(untracked->root, &wd);
3273 varint_len = encode_varint(wd.index, varbuf);
3274 strbuf_add(out, varbuf, varint_len);
3275 strbuf_addbuf(out, &wd.out);
3276 ewah_serialize_strbuf(wd.valid, out);
3277 ewah_serialize_strbuf(wd.check_only, out);
3278 ewah_serialize_strbuf(wd.sha1_valid, out);
3279 strbuf_addbuf(out, &wd.sb_stat);
3280 strbuf_addbuf(out, &wd.sb_sha1);
3281 strbuf_addch(out, '\0'); /* safe guard for string lists */
3283 ewah_free(wd.valid);
3284 ewah_free(wd.check_only);
3285 ewah_free(wd.sha1_valid);
3286 strbuf_release(&wd.out);
3287 strbuf_release(&wd.sb_stat);
3288 strbuf_release(&wd.sb_sha1);
3291 static void free_untracked(struct untracked_cache_dir *ucd)
3293 int i;
3294 if (!ucd)
3295 return;
3296 for (i = 0; i < ucd->dirs_nr; i++)
3297 free_untracked(ucd->dirs[i]);
3298 for (i = 0; i < ucd->untracked_nr; i++)
3299 free(ucd->untracked[i]);
3300 free(ucd->untracked);
3301 free(ucd->dirs);
3302 free(ucd);
3305 void free_untracked_cache(struct untracked_cache *uc)
3307 if (uc)
3308 free_untracked(uc->root);
3309 free(uc);
3312 struct read_data {
3313 int index;
3314 struct untracked_cache_dir **ucd;
3315 struct ewah_bitmap *check_only;
3316 struct ewah_bitmap *valid;
3317 struct ewah_bitmap *sha1_valid;
3318 const unsigned char *data;
3319 const unsigned char *end;
3322 static void stat_data_from_disk(struct stat_data *to, const unsigned char *data)
3324 memcpy(to, data, sizeof(*to));
3325 to->sd_ctime.sec = ntohl(to->sd_ctime.sec);
3326 to->sd_ctime.nsec = ntohl(to->sd_ctime.nsec);
3327 to->sd_mtime.sec = ntohl(to->sd_mtime.sec);
3328 to->sd_mtime.nsec = ntohl(to->sd_mtime.nsec);
3329 to->sd_dev = ntohl(to->sd_dev);
3330 to->sd_ino = ntohl(to->sd_ino);
3331 to->sd_uid = ntohl(to->sd_uid);
3332 to->sd_gid = ntohl(to->sd_gid);
3333 to->sd_size = ntohl(to->sd_size);
3336 static int read_one_dir(struct untracked_cache_dir **untracked_,
3337 struct read_data *rd)
3339 struct untracked_cache_dir ud, *untracked;
3340 const unsigned char *data = rd->data, *end = rd->end;
3341 const unsigned char *eos;
3342 unsigned int value;
3343 int i;
3345 memset(&ud, 0, sizeof(ud));
3347 value = decode_varint(&data);
3348 if (data > end)
3349 return -1;
3350 ud.recurse = 1;
3351 ud.untracked_alloc = value;
3352 ud.untracked_nr = value;
3353 if (ud.untracked_nr)
3354 ALLOC_ARRAY(ud.untracked, ud.untracked_nr);
3356 ud.dirs_alloc = ud.dirs_nr = decode_varint(&data);
3357 if (data > end)
3358 return -1;
3359 ALLOC_ARRAY(ud.dirs, ud.dirs_nr);
3361 eos = memchr(data, '\0', end - data);
3362 if (!eos || eos == end)
3363 return -1;
3365 *untracked_ = untracked = xmalloc(st_add3(sizeof(*untracked), eos - data, 1));
3366 memcpy(untracked, &ud, sizeof(ud));
3367 memcpy(untracked->name, data, eos - data + 1);
3368 data = eos + 1;
3370 for (i = 0; i < untracked->untracked_nr; i++) {
3371 eos = memchr(data, '\0', end - data);
3372 if (!eos || eos == end)
3373 return -1;
3374 untracked->untracked[i] = xmemdupz(data, eos - data);
3375 data = eos + 1;
3378 rd->ucd[rd->index++] = untracked;
3379 rd->data = data;
3381 for (i = 0; i < untracked->dirs_nr; i++) {
3382 if (read_one_dir(untracked->dirs + i, rd) < 0)
3383 return -1;
3385 return 0;
3388 static void set_check_only(size_t pos, void *cb)
3390 struct read_data *rd = cb;
3391 struct untracked_cache_dir *ud = rd->ucd[pos];
3392 ud->check_only = 1;
3395 static void read_stat(size_t pos, void *cb)
3397 struct read_data *rd = cb;
3398 struct untracked_cache_dir *ud = rd->ucd[pos];
3399 if (rd->data + sizeof(struct stat_data) > rd->end) {
3400 rd->data = rd->end + 1;
3401 return;
3403 stat_data_from_disk(&ud->stat_data, rd->data);
3404 rd->data += sizeof(struct stat_data);
3405 ud->valid = 1;
3408 static void read_oid(size_t pos, void *cb)
3410 struct read_data *rd = cb;
3411 struct untracked_cache_dir *ud = rd->ucd[pos];
3412 if (rd->data + the_hash_algo->rawsz > rd->end) {
3413 rd->data = rd->end + 1;
3414 return;
3416 oidread(&ud->exclude_oid, rd->data);
3417 rd->data += the_hash_algo->rawsz;
3420 static void load_oid_stat(struct oid_stat *oid_stat, const unsigned char *data,
3421 const unsigned char *sha1)
3423 stat_data_from_disk(&oid_stat->stat, data);
3424 oidread(&oid_stat->oid, sha1);
3425 oid_stat->valid = 1;
3428 struct untracked_cache *read_untracked_extension(const void *data, unsigned long sz)
3430 struct untracked_cache *uc;
3431 struct read_data rd;
3432 const unsigned char *next = data, *end = (const unsigned char *)data + sz;
3433 const char *ident;
3434 int ident_len;
3435 ssize_t len;
3436 const char *exclude_per_dir;
3437 const unsigned hashsz = the_hash_algo->rawsz;
3438 const unsigned offset = sizeof(struct ondisk_untracked_cache);
3439 const unsigned exclude_per_dir_offset = offset + 2 * hashsz;
3441 if (sz <= 1 || end[-1] != '\0')
3442 return NULL;
3443 end--;
3445 ident_len = decode_varint(&next);
3446 if (next + ident_len > end)
3447 return NULL;
3448 ident = (const char *)next;
3449 next += ident_len;
3451 if (next + exclude_per_dir_offset + 1 > end)
3452 return NULL;
3454 CALLOC_ARRAY(uc, 1);
3455 strbuf_init(&uc->ident, ident_len);
3456 strbuf_add(&uc->ident, ident, ident_len);
3457 load_oid_stat(&uc->ss_info_exclude,
3458 next + ouc_offset(info_exclude_stat),
3459 next + offset);
3460 load_oid_stat(&uc->ss_excludes_file,
3461 next + ouc_offset(excludes_file_stat),
3462 next + offset + hashsz);
3463 uc->dir_flags = get_be32(next + ouc_offset(dir_flags));
3464 exclude_per_dir = (const char *)next + exclude_per_dir_offset;
3465 uc->exclude_per_dir = xstrdup(exclude_per_dir);
3466 /* NUL after exclude_per_dir is covered by sizeof(*ouc) */
3467 next += exclude_per_dir_offset + strlen(exclude_per_dir) + 1;
3468 if (next >= end)
3469 goto done2;
3471 len = decode_varint(&next);
3472 if (next > end || len == 0)
3473 goto done2;
3475 rd.valid = ewah_new();
3476 rd.check_only = ewah_new();
3477 rd.sha1_valid = ewah_new();
3478 rd.data = next;
3479 rd.end = end;
3480 rd.index = 0;
3481 ALLOC_ARRAY(rd.ucd, len);
3483 if (read_one_dir(&uc->root, &rd) || rd.index != len)
3484 goto done;
3486 next = rd.data;
3487 len = ewah_read_mmap(rd.valid, next, end - next);
3488 if (len < 0)
3489 goto done;
3491 next += len;
3492 len = ewah_read_mmap(rd.check_only, next, end - next);
3493 if (len < 0)
3494 goto done;
3496 next += len;
3497 len = ewah_read_mmap(rd.sha1_valid, next, end - next);
3498 if (len < 0)
3499 goto done;
3501 ewah_each_bit(rd.check_only, set_check_only, &rd);
3502 rd.data = next + len;
3503 ewah_each_bit(rd.valid, read_stat, &rd);
3504 ewah_each_bit(rd.sha1_valid, read_oid, &rd);
3505 next = rd.data;
3507 done:
3508 free(rd.ucd);
3509 ewah_free(rd.valid);
3510 ewah_free(rd.check_only);
3511 ewah_free(rd.sha1_valid);
3512 done2:
3513 if (next != end) {
3514 free_untracked_cache(uc);
3515 uc = NULL;
3517 return uc;
3520 static void invalidate_one_directory(struct untracked_cache *uc,
3521 struct untracked_cache_dir *ucd)
3523 uc->dir_invalidated++;
3524 ucd->valid = 0;
3525 ucd->untracked_nr = 0;
3529 * Normally when an entry is added or removed from a directory,
3530 * invalidating that directory is enough. No need to touch its
3531 * ancestors. When a directory is shown as "foo/bar/" in git-status
3532 * however, deleting or adding an entry may have cascading effect.
3534 * Say the "foo/bar/file" has become untracked, we need to tell the
3535 * untracked_cache_dir of "foo" that "bar/" is not an untracked
3536 * directory any more (because "bar" is managed by foo as an untracked
3537 * "file").
3539 * Similarly, if "foo/bar/file" moves from untracked to tracked and it
3540 * was the last untracked entry in the entire "foo", we should show
3541 * "foo/" instead. Which means we have to invalidate past "bar" up to
3542 * "foo".
3544 * This function traverses all directories from root to leaf. If there
3545 * is a chance of one of the above cases happening, we invalidate back
3546 * to root. Otherwise we just invalidate the leaf. There may be a more
3547 * sophisticated way than checking for SHOW_OTHER_DIRECTORIES to
3548 * detect these cases and avoid unnecessary invalidation, for example,
3549 * checking for the untracked entry named "bar/" in "foo", but for now
3550 * stick to something safe and simple.
3552 static int invalidate_one_component(struct untracked_cache *uc,
3553 struct untracked_cache_dir *dir,
3554 const char *path, int len)
3556 const char *rest = strchr(path, '/');
3558 if (rest) {
3559 int component_len = rest - path;
3560 struct untracked_cache_dir *d =
3561 lookup_untracked(uc, dir, path, component_len);
3562 int ret =
3563 invalidate_one_component(uc, d, rest + 1,
3564 len - (component_len + 1));
3565 if (ret)
3566 invalidate_one_directory(uc, dir);
3567 return ret;
3570 invalidate_one_directory(uc, dir);
3571 return uc->dir_flags & DIR_SHOW_OTHER_DIRECTORIES;
3574 void untracked_cache_invalidate_path(struct index_state *istate,
3575 const char *path, int safe_path)
3577 if (!istate->untracked || !istate->untracked->root)
3578 return;
3579 if (!safe_path && !verify_path(path, 0))
3580 return;
3581 invalidate_one_component(istate->untracked, istate->untracked->root,
3582 path, strlen(path));
3585 void untracked_cache_remove_from_index(struct index_state *istate,
3586 const char *path)
3588 untracked_cache_invalidate_path(istate, path, 1);
3591 void untracked_cache_add_to_index(struct index_state *istate,
3592 const char *path)
3594 untracked_cache_invalidate_path(istate, path, 1);
3597 static void connect_wt_gitdir_in_nested(const char *sub_worktree,
3598 const char *sub_gitdir)
3600 int i;
3601 struct repository subrepo;
3602 struct strbuf sub_wt = STRBUF_INIT;
3603 struct strbuf sub_gd = STRBUF_INIT;
3605 const struct submodule *sub;
3607 /* If the submodule has no working tree, we can ignore it. */
3608 if (repo_init(&subrepo, sub_gitdir, sub_worktree))
3609 return;
3611 if (repo_read_index(&subrepo) < 0)
3612 die(_("index file corrupt in repo %s"), subrepo.gitdir);
3614 /* TODO: audit for interaction with sparse-index. */
3615 ensure_full_index(subrepo.index);
3616 for (i = 0; i < subrepo.index->cache_nr; i++) {
3617 const struct cache_entry *ce = subrepo.index->cache[i];
3619 if (!S_ISGITLINK(ce->ce_mode))
3620 continue;
3622 while (i + 1 < subrepo.index->cache_nr &&
3623 !strcmp(ce->name, subrepo.index->cache[i + 1]->name))
3625 * Skip entries with the same name in different stages
3626 * to make sure an entry is returned only once.
3628 i++;
3630 sub = submodule_from_path(&subrepo, null_oid(), ce->name);
3631 if (!sub || !is_submodule_active(&subrepo, ce->name))
3632 /* .gitmodules broken or inactive sub */
3633 continue;
3635 strbuf_reset(&sub_wt);
3636 strbuf_reset(&sub_gd);
3637 strbuf_addf(&sub_wt, "%s/%s", sub_worktree, sub->path);
3638 strbuf_addf(&sub_gd, "%s/modules/%s", sub_gitdir, sub->name);
3640 connect_work_tree_and_git_dir(sub_wt.buf, sub_gd.buf, 1);
3642 strbuf_release(&sub_wt);
3643 strbuf_release(&sub_gd);
3644 repo_clear(&subrepo);
3647 void connect_work_tree_and_git_dir(const char *work_tree_,
3648 const char *git_dir_,
3649 int recurse_into_nested)
3651 struct strbuf gitfile_sb = STRBUF_INIT;
3652 struct strbuf cfg_sb = STRBUF_INIT;
3653 struct strbuf rel_path = STRBUF_INIT;
3654 char *git_dir, *work_tree;
3656 /* Prepare .git file */
3657 strbuf_addf(&gitfile_sb, "%s/.git", work_tree_);
3658 if (safe_create_leading_directories_const(gitfile_sb.buf))
3659 die(_("could not create directories for %s"), gitfile_sb.buf);
3661 /* Prepare config file */
3662 strbuf_addf(&cfg_sb, "%s/config", git_dir_);
3663 if (safe_create_leading_directories_const(cfg_sb.buf))
3664 die(_("could not create directories for %s"), cfg_sb.buf);
3666 git_dir = real_pathdup(git_dir_, 1);
3667 work_tree = real_pathdup(work_tree_, 1);
3669 /* Write .git file */
3670 write_file(gitfile_sb.buf, "gitdir: %s",
3671 relative_path(git_dir, work_tree, &rel_path));
3672 /* Update core.worktree setting */
3673 git_config_set_in_file(cfg_sb.buf, "core.worktree",
3674 relative_path(work_tree, git_dir, &rel_path));
3676 strbuf_release(&gitfile_sb);
3677 strbuf_release(&cfg_sb);
3678 strbuf_release(&rel_path);
3680 if (recurse_into_nested)
3681 connect_wt_gitdir_in_nested(work_tree, git_dir);
3683 free(work_tree);
3684 free(git_dir);
3688 * Migrate the git directory of the given path from old_git_dir to new_git_dir.
3690 void relocate_gitdir(const char *path, const char *old_git_dir, const char *new_git_dir)
3692 if (rename(old_git_dir, new_git_dir) < 0)
3693 die_errno(_("could not migrate git directory from '%s' to '%s'"),
3694 old_git_dir, new_git_dir);
3696 connect_work_tree_and_git_dir(path, new_git_dir, 0);