2 * This handles recursive filename detection with exclude
3 * files, index knowledge etc..
5 * See Documentation/technical/api-directory-listing.txt
7 * Copyright (C) Linus Torvalds, 2005-2006
8 * Junio Hamano, 2005-2006
10 #define NO_THE_INDEX_COMPATIBILITY_MACROS
16 #include "wildmatch.h"
20 #include "ewah/ewok.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.
36 * Support data structure for our opendir/readdir/closedir wrappers
40 struct untracked_cache_dir *untracked;
46 struct untracked_cache_dir *ucd;
49 static enum path_treatment read_directory_recursive(struct dir_struct *dir,
50 struct index_state *istate, const char *path, int len,
51 struct untracked_cache_dir *untracked,
52 int check_only, int stop_at_first_file, const struct pathspec *pathspec);
53 static int get_dtype(struct dirent *de, struct index_state *istate,
54 const char *path, int len);
56 int count_slashes(const char *s)
65 int fspathcmp(const char *a, const char *b)
67 return ignore_case ? strcasecmp(a, b) : strcmp(a, b);
70 int fspathncmp(const char *a, const char *b, size_t count)
72 return ignore_case ? strncasecmp(a, b, count) : strncmp(a, b, count);
75 int git_fnmatch(const struct pathspec_item *item,
76 const char *pattern, const char *string,
80 if (ps_strncmp(item, pattern, string, prefix))
85 if (item->flags & PATHSPEC_ONESTAR) {
86 int pattern_len = strlen(++pattern);
87 int string_len = strlen(string);
88 return string_len < pattern_len ||
89 ps_strcmp(item, pattern,
90 string + string_len - pattern_len);
92 if (item->magic & PATHSPEC_GLOB)
93 return wildmatch(pattern, string,
95 (item->magic & PATHSPEC_ICASE ? WM_CASEFOLD : 0));
97 /* wildmatch has not learned no FNM_PATHNAME mode yet */
98 return wildmatch(pattern, string,
99 item->magic & PATHSPEC_ICASE ? WM_CASEFOLD : 0);
102 static int fnmatch_icase_mem(const char *pattern, int patternlen,
103 const char *string, int stringlen,
107 struct strbuf pat_buf = STRBUF_INIT;
108 struct strbuf str_buf = STRBUF_INIT;
109 const char *use_pat = pattern;
110 const char *use_str = string;
112 if (pattern[patternlen]) {
113 strbuf_add(&pat_buf, pattern, patternlen);
114 use_pat = pat_buf.buf;
116 if (string[stringlen]) {
117 strbuf_add(&str_buf, string, stringlen);
118 use_str = str_buf.buf;
122 flags |= WM_CASEFOLD;
123 match_status = wildmatch(use_pat, use_str, flags);
125 strbuf_release(&pat_buf);
126 strbuf_release(&str_buf);
131 static size_t common_prefix_len(const struct pathspec *pathspec)
137 * ":(icase)path" is treated as a pathspec full of
138 * wildcard. In other words, only prefix is considered common
139 * prefix. If the pathspec is abc/foo abc/bar, running in
140 * subdir xyz, the common prefix is still xyz, not xuz/abc as
143 GUARD_PATHSPEC(pathspec,
152 for (n = 0; n < pathspec->nr; n++) {
153 size_t i = 0, len = 0, item_len;
154 if (pathspec->items[n].magic & PATHSPEC_EXCLUDE)
156 if (pathspec->items[n].magic & PATHSPEC_ICASE)
157 item_len = pathspec->items[n].prefix;
159 item_len = pathspec->items[n].nowildcard_len;
160 while (i < item_len && (n == 0 || i < max)) {
161 char c = pathspec->items[n].match[i];
162 if (c != pathspec->items[0].match[i])
168 if (n == 0 || len < max) {
178 * Returns a copy of the longest leading path common among all
181 char *common_prefix(const struct pathspec *pathspec)
183 unsigned long len = common_prefix_len(pathspec);
185 return len ? xmemdupz(pathspec->items[0].match, len) : NULL;
188 int fill_directory(struct dir_struct *dir,
189 struct index_state *istate,
190 const struct pathspec *pathspec)
196 * Calculate common prefix for the pathspec, and
197 * use that to optimize the directory walk
199 prefix_len = common_prefix_len(pathspec);
200 prefix = prefix_len ? pathspec->items[0].match : "";
202 /* Read the directory and prune it */
203 read_directory(dir, istate, prefix, prefix_len, pathspec);
208 int within_depth(const char *name, int namelen,
209 int depth, int max_depth)
211 const char *cp = name, *cpe = name + namelen;
217 if (depth > max_depth)
224 * Read the contents of the blob with the given OID into a buffer.
225 * Append a trailing LF to the end if the last line doesn't have one.
228 * -1 when the OID is invalid or unknown or does not refer to a blob.
229 * 0 when the blob is empty.
230 * 1 along with { data, size } of the (possibly augmented) buffer
233 * Optionally updates the given sha1_stat with the given OID (when valid).
235 static int do_read_blob(const struct object_id *oid,
236 struct sha1_stat *sha1_stat,
240 enum object_type type;
247 data = read_sha1_file(oid->hash, &type, &sz);
248 if (!data || type != OBJ_BLOB) {
254 memset(&sha1_stat->stat, 0, sizeof(sha1_stat->stat));
255 hashcpy(sha1_stat->sha1, oid->hash);
263 if (data[sz - 1] != '\n') {
264 data = xrealloc(data, st_add(sz, 1));
268 *size_out = xsize_t(sz);
274 #define DO_MATCH_EXCLUDE (1<<0)
275 #define DO_MATCH_DIRECTORY (1<<1)
276 #define DO_MATCH_SUBMODULE (1<<2)
278 static int match_attrs(const char *name, int namelen,
279 const struct pathspec_item *item)
283 git_check_attr(name, item->attr_check);
284 for (i = 0; i < item->attr_match_nr; i++) {
287 enum attr_match_mode match_mode;
289 value = item->attr_check->items[i].value;
290 match_mode = item->attr_match[i].match_mode;
292 if (ATTR_TRUE(value))
293 matched = (match_mode == MATCH_SET);
294 else if (ATTR_FALSE(value))
295 matched = (match_mode == MATCH_UNSET);
296 else if (ATTR_UNSET(value))
297 matched = (match_mode == MATCH_UNSPECIFIED);
299 matched = (match_mode == MATCH_VALUE &&
300 !strcmp(item->attr_match[i].value, value));
309 * Does 'match' match the given name?
310 * A match is found if
312 * (1) the 'match' string is leading directory of 'name', or
313 * (2) the 'match' string is a wildcard and matches 'name', or
314 * (3) the 'match' string is exactly the same as 'name'.
316 * and the return value tells which case it was.
318 * It returns 0 when there is no match.
320 static int match_pathspec_item(const struct pathspec_item *item, int prefix,
321 const char *name, int namelen, unsigned flags)
323 /* name/namelen has prefix cut off by caller */
324 const char *match = item->match + prefix;
325 int matchlen = item->len - prefix;
328 * The normal call pattern is:
329 * 1. prefix = common_prefix_len(ps);
330 * 2. prune something, or fill_directory
331 * 3. match_pathspec()
333 * 'prefix' at #1 may be shorter than the command's prefix and
334 * it's ok for #2 to match extra files. Those extras will be
337 * Suppose the pathspec is 'foo' and '../bar' running from
338 * subdir 'xyz'. The common prefix at #1 will be empty, thanks
339 * to "../". We may have xyz/foo _and_ XYZ/foo after #2. The
340 * user does not want XYZ/foo, only the "foo" part should be
341 * case-insensitive. We need to filter out XYZ/foo here. In
342 * other words, we do not trust the caller on comparing the
343 * prefix part when :(icase) is involved. We do exact
344 * comparison ourselves.
346 * Normally the caller (common_prefix_len() in fact) does
347 * _exact_ matching on name[-prefix+1..-1] and we do not need
348 * to check that part. Be defensive and check it anyway, in
349 * case common_prefix_len is changed, or a new caller is
350 * introduced that does not use common_prefix_len.
352 * If the penalty turns out too high when prefix is really
353 * long, maybe change it to
354 * strncmp(match, name, item->prefix - prefix)
356 if (item->prefix && (item->magic & PATHSPEC_ICASE) &&
357 strncmp(item->match, name - prefix, item->prefix))
360 if (item->attr_match_nr && !match_attrs(name, namelen, item))
363 /* If the match was just the prefix, we matched */
365 return MATCHED_RECURSIVELY;
367 if (matchlen <= namelen && !ps_strncmp(item, match, name, matchlen)) {
368 if (matchlen == namelen)
369 return MATCHED_EXACTLY;
371 if (match[matchlen-1] == '/' || name[matchlen] == '/')
372 return MATCHED_RECURSIVELY;
373 } else if ((flags & DO_MATCH_DIRECTORY) &&
374 match[matchlen - 1] == '/' &&
375 namelen == matchlen - 1 &&
376 !ps_strncmp(item, match, name, namelen))
377 return MATCHED_EXACTLY;
379 if (item->nowildcard_len < item->len &&
380 !git_fnmatch(item, match, name,
381 item->nowildcard_len - prefix))
382 return MATCHED_FNMATCH;
384 /* Perform checks to see if "name" is a super set of the pathspec */
385 if (flags & DO_MATCH_SUBMODULE) {
386 /* name is a literal prefix of the pathspec */
387 if ((namelen < matchlen) &&
388 (match[namelen] == '/') &&
389 !ps_strncmp(item, match, name, namelen))
390 return MATCHED_RECURSIVELY;
392 /* name" doesn't match up to the first wild character */
393 if (item->nowildcard_len < item->len &&
394 ps_strncmp(item, match, name,
395 item->nowildcard_len - prefix))
399 * Here is where we would perform a wildmatch to check if
400 * "name" can be matched as a directory (or a prefix) against
401 * the pathspec. Since wildmatch doesn't have this capability
402 * at the present we have to punt and say that it is a match,
403 * potentially returning a false positive
404 * The submodules themselves will be able to perform more
405 * accurate matching to determine if the pathspec matches.
407 return MATCHED_RECURSIVELY;
414 * Given a name and a list of pathspecs, returns the nature of the
415 * closest (i.e. most specific) match of the name to any of the
418 * The caller typically calls this multiple times with the same
419 * pathspec and seen[] array but with different name/namelen
420 * (e.g. entries from the index) and is interested in seeing if and
421 * how each pathspec matches all the names it calls this function
422 * with. A mark is left in the seen[] array for each pathspec element
423 * indicating the closest type of match that element achieved, so if
424 * seen[n] remains zero after multiple invocations, that means the nth
425 * pathspec did not match any names, which could indicate that the
426 * user mistyped the nth pathspec.
428 static int do_match_pathspec(const struct pathspec *ps,
429 const char *name, int namelen,
430 int prefix, char *seen,
433 int i, retval = 0, exclude = flags & DO_MATCH_EXCLUDE;
445 if (!ps->recursive ||
446 !(ps->magic & PATHSPEC_MAXDEPTH) ||
448 return MATCHED_RECURSIVELY;
450 if (within_depth(name, namelen, 0, ps->max_depth))
451 return MATCHED_EXACTLY;
459 for (i = ps->nr - 1; i >= 0; i--) {
462 if ((!exclude && ps->items[i].magic & PATHSPEC_EXCLUDE) ||
463 ( exclude && !(ps->items[i].magic & PATHSPEC_EXCLUDE)))
466 if (seen && seen[i] == MATCHED_EXACTLY)
469 * Make exclude patterns optional and never report
470 * "pathspec ':(exclude)foo' matches no files"
472 if (seen && ps->items[i].magic & PATHSPEC_EXCLUDE)
473 seen[i] = MATCHED_FNMATCH;
474 how = match_pathspec_item(ps->items+i, prefix, name,
477 (ps->magic & PATHSPEC_MAXDEPTH) &&
478 ps->max_depth != -1 &&
479 how && how != MATCHED_FNMATCH) {
480 int len = ps->items[i].len;
481 if (name[len] == '/')
483 if (within_depth(name+len, namelen-len, 0, ps->max_depth))
484 how = MATCHED_EXACTLY;
491 if (seen && seen[i] < how)
498 int match_pathspec(const struct pathspec *ps,
499 const char *name, int namelen,
500 int prefix, char *seen, int is_dir)
502 int positive, negative;
503 unsigned flags = is_dir ? DO_MATCH_DIRECTORY : 0;
504 positive = do_match_pathspec(ps, name, namelen,
505 prefix, seen, flags);
506 if (!(ps->magic & PATHSPEC_EXCLUDE) || !positive)
508 negative = do_match_pathspec(ps, name, namelen,
510 flags | DO_MATCH_EXCLUDE);
511 return negative ? 0 : positive;
515 * Check if a submodule is a superset of the pathspec
517 int submodule_path_match(const struct pathspec *ps,
518 const char *submodule_name,
521 int matched = do_match_pathspec(ps, submodule_name,
522 strlen(submodule_name),
529 int report_path_error(const char *ps_matched,
530 const struct pathspec *pathspec,
534 * Make sure all pathspec matched; otherwise it is an error.
537 for (num = 0; num < pathspec->nr; num++) {
538 int other, found_dup;
543 * The caller might have fed identical pathspec
544 * twice. Do not barf on such a mistake.
545 * FIXME: parse_pathspec should have eliminated
546 * duplicate pathspec.
548 for (found_dup = other = 0;
549 !found_dup && other < pathspec->nr;
551 if (other == num || !ps_matched[other])
553 if (!strcmp(pathspec->items[other].original,
554 pathspec->items[num].original))
556 * Ok, we have a match already.
563 error("pathspec '%s' did not match any file(s) known to git.",
564 pathspec->items[num].original);
571 * Return the length of the "simple" part of a path match limiter.
573 int simple_length(const char *match)
578 unsigned char c = *match++;
580 if (c == '\0' || is_glob_special(c))
585 int no_wildcard(const char *string)
587 return string[simple_length(string)] == '\0';
590 void parse_exclude_pattern(const char **pattern,
595 const char *p = *pattern;
600 *flags |= EXC_FLAG_NEGATIVE;
604 if (len && p[len - 1] == '/') {
606 *flags |= EXC_FLAG_MUSTBEDIR;
608 for (i = 0; i < len; i++) {
613 *flags |= EXC_FLAG_NODIR;
614 *nowildcardlen = simple_length(p);
616 * we should have excluded the trailing slash from 'p' too,
617 * but that's one more allocation. Instead just make sure
618 * nowildcardlen does not exceed real patternlen
620 if (*nowildcardlen > len)
621 *nowildcardlen = len;
622 if (*p == '*' && no_wildcard(p + 1))
623 *flags |= EXC_FLAG_ENDSWITH;
628 void add_exclude(const char *string, const char *base,
629 int baselen, struct exclude_list *el, int srcpos)
636 parse_exclude_pattern(&string, &patternlen, &flags, &nowildcardlen);
637 if (flags & EXC_FLAG_MUSTBEDIR) {
638 FLEXPTR_ALLOC_MEM(x, pattern, string, patternlen);
640 x = xmalloc(sizeof(*x));
643 x->patternlen = patternlen;
644 x->nowildcardlen = nowildcardlen;
646 x->baselen = baselen;
649 ALLOC_GROW(el->excludes, el->nr + 1, el->alloc);
650 el->excludes[el->nr++] = x;
654 static int read_skip_worktree_file_from_index(const struct index_state *istate,
658 struct sha1_stat *sha1_stat)
663 pos = index_name_pos(istate, path, len);
666 if (!ce_skip_worktree(istate->cache[pos]))
669 return do_read_blob(&istate->cache[pos]->oid, sha1_stat, size_out, data_out);
673 * Frees memory within el which was allocated for exclude patterns and
674 * the file buffer. Does not free el itself.
676 void clear_exclude_list(struct exclude_list *el)
680 for (i = 0; i < el->nr; i++)
681 free(el->excludes[i]);
685 memset(el, 0, sizeof(*el));
688 static void trim_trailing_spaces(char *buf)
690 char *p, *last_space = NULL;
692 for (p = buf; *p; p++)
712 * Given a subdirectory name and "dir" of the current directory,
713 * search the subdir in "dir" and return it, or create a new one if it
714 * does not exist in "dir".
716 * If "name" has the trailing slash, it'll be excluded in the search.
718 static struct untracked_cache_dir *lookup_untracked(struct untracked_cache *uc,
719 struct untracked_cache_dir *dir,
720 const char *name, int len)
723 struct untracked_cache_dir *d;
726 if (len && name[len - 1] == '/')
730 while (last > first) {
731 int cmp, next = (last + first) >> 1;
733 cmp = strncmp(name, d->name, len);
734 if (!cmp && strlen(d->name) > len)
746 FLEX_ALLOC_MEM(d, name, name, len);
748 ALLOC_GROW(dir->dirs, dir->dirs_nr + 1, dir->dirs_alloc);
749 memmove(dir->dirs + first + 1, dir->dirs + first,
750 (dir->dirs_nr - first) * sizeof(*dir->dirs));
752 dir->dirs[first] = d;
756 static void do_invalidate_gitignore(struct untracked_cache_dir *dir)
760 dir->untracked_nr = 0;
761 for (i = 0; i < dir->dirs_nr; i++)
762 do_invalidate_gitignore(dir->dirs[i]);
765 static void invalidate_gitignore(struct untracked_cache *uc,
766 struct untracked_cache_dir *dir)
768 uc->gitignore_invalidated++;
769 do_invalidate_gitignore(dir);
772 static void invalidate_directory(struct untracked_cache *uc,
773 struct untracked_cache_dir *dir)
776 uc->dir_invalidated++;
778 dir->untracked_nr = 0;
779 for (i = 0; i < dir->dirs_nr; i++)
780 dir->dirs[i]->recurse = 0;
783 static int add_excludes_from_buffer(char *buf, size_t size,
784 const char *base, int baselen,
785 struct exclude_list *el);
788 * Given a file with name "fname", read it (either from disk, or from
789 * an index if 'istate' is non-null), parse it and store the
790 * exclude rules in "el".
792 * If "ss" is not NULL, compute SHA-1 of the exclude file and fill
793 * stat data from disk (only valid if add_excludes returns zero). If
794 * ss_valid is non-zero, "ss" must contain good value as input.
796 static int add_excludes(const char *fname, const char *base, int baselen,
797 struct exclude_list *el,
798 struct index_state *istate,
799 struct sha1_stat *sha1_stat)
807 fd = open(fname, O_RDONLY);
808 if (fd < 0 || fstat(fd, &st) < 0) {
810 warn_on_fopen_errors(fname);
815 r = read_skip_worktree_file_from_index(istate, fname,
821 size = xsize_t(st.st_size);
824 fill_stat_data(&sha1_stat->stat, &st);
825 hashcpy(sha1_stat->sha1, EMPTY_BLOB_SHA1_BIN);
826 sha1_stat->valid = 1;
831 buf = xmallocz(size);
832 if (read_in_full(fd, buf, size) != size) {
841 if (sha1_stat->valid &&
842 !match_stat_data_racy(istate, &sha1_stat->stat, &st))
843 ; /* no content change, ss->sha1 still good */
845 (pos = index_name_pos(istate, fname, strlen(fname))) >= 0 &&
846 !ce_stage(istate->cache[pos]) &&
847 ce_uptodate(istate->cache[pos]) &&
848 !would_convert_to_git(istate, fname))
849 hashcpy(sha1_stat->sha1,
850 istate->cache[pos]->oid.hash);
852 hash_sha1_file(buf, size, "blob", sha1_stat->sha1);
853 fill_stat_data(&sha1_stat->stat, &st);
854 sha1_stat->valid = 1;
858 add_excludes_from_buffer(buf, size, base, baselen, el);
862 static int add_excludes_from_buffer(char *buf, size_t size,
863 const char *base, int baselen,
864 struct exclude_list *el)
871 if (skip_utf8_bom(&buf, size))
872 size -= buf - el->filebuf;
876 for (i = 0; i < size; i++) {
877 if (buf[i] == '\n') {
878 if (entry != buf + i && entry[0] != '#') {
879 buf[i - (i && buf[i-1] == '\r')] = 0;
880 trim_trailing_spaces(entry);
881 add_exclude(entry, base, baselen, el, lineno);
890 int add_excludes_from_file_to_list(const char *fname, const char *base,
891 int baselen, struct exclude_list *el,
892 struct index_state *istate)
894 return add_excludes(fname, base, baselen, el, istate, NULL);
897 int add_excludes_from_blob_to_list(
898 struct object_id *oid,
899 const char *base, int baselen,
900 struct exclude_list *el)
906 r = do_read_blob(oid, NULL, &size, &buf);
910 add_excludes_from_buffer(buf, size, base, baselen, el);
914 struct exclude_list *add_exclude_list(struct dir_struct *dir,
915 int group_type, const char *src)
917 struct exclude_list *el;
918 struct exclude_list_group *group;
920 group = &dir->exclude_list_group[group_type];
921 ALLOC_GROW(group->el, group->nr + 1, group->alloc);
922 el = &group->el[group->nr++];
923 memset(el, 0, sizeof(*el));
929 * Used to set up core.excludesfile and .git/info/exclude lists.
931 static void add_excludes_from_file_1(struct dir_struct *dir, const char *fname,
932 struct sha1_stat *sha1_stat)
934 struct exclude_list *el;
936 * catch setup_standard_excludes() that's called before
937 * dir->untracked is assigned. That function behaves
938 * differently when dir->untracked is non-NULL.
941 dir->unmanaged_exclude_files++;
942 el = add_exclude_list(dir, EXC_FILE, fname);
943 if (add_excludes(fname, "", 0, el, NULL, sha1_stat) < 0)
944 die("cannot use %s as an exclude file", fname);
947 void add_excludes_from_file(struct dir_struct *dir, const char *fname)
949 dir->unmanaged_exclude_files++; /* see validate_untracked_cache() */
950 add_excludes_from_file_1(dir, fname, NULL);
953 int match_basename(const char *basename, int basenamelen,
954 const char *pattern, int prefix, int patternlen,
957 if (prefix == patternlen) {
958 if (patternlen == basenamelen &&
959 !fspathncmp(pattern, basename, basenamelen))
961 } else if (flags & EXC_FLAG_ENDSWITH) {
962 /* "*literal" matching against "fooliteral" */
963 if (patternlen - 1 <= basenamelen &&
964 !fspathncmp(pattern + 1,
965 basename + basenamelen - (patternlen - 1),
969 if (fnmatch_icase_mem(pattern, patternlen,
970 basename, basenamelen,
977 int match_pathname(const char *pathname, int pathlen,
978 const char *base, int baselen,
979 const char *pattern, int prefix, int patternlen,
986 * match with FNM_PATHNAME; the pattern has base implicitly
989 if (*pattern == '/') {
996 * baselen does not count the trailing slash. base[] may or
997 * may not end with a trailing slash though.
999 if (pathlen < baselen + 1 ||
1000 (baselen && pathname[baselen] != '/') ||
1001 fspathncmp(pathname, base, baselen))
1004 namelen = baselen ? pathlen - baselen - 1 : pathlen;
1005 name = pathname + pathlen - namelen;
1009 * if the non-wildcard part is longer than the
1010 * remaining pathname, surely it cannot match.
1012 if (prefix > namelen)
1015 if (fspathncmp(pattern, name, prefix))
1018 patternlen -= prefix;
1023 * If the whole pattern did not have a wildcard,
1024 * then our prefix match is all we need; we
1025 * do not need to call fnmatch at all.
1027 if (!patternlen && !namelen)
1031 return fnmatch_icase_mem(pattern, patternlen,
1037 * Scan the given exclude list in reverse to see whether pathname
1038 * should be ignored. The first match (i.e. the last on the list), if
1039 * any, determines the fate. Returns the exclude_list element which
1040 * matched, or NULL for undecided.
1042 static struct exclude *last_exclude_matching_from_list(const char *pathname,
1044 const char *basename,
1046 struct exclude_list *el,
1047 struct index_state *istate)
1049 struct exclude *exc = NULL; /* undecided */
1053 return NULL; /* undefined */
1055 for (i = el->nr - 1; 0 <= i; i--) {
1056 struct exclude *x = el->excludes[i];
1057 const char *exclude = x->pattern;
1058 int prefix = x->nowildcardlen;
1060 if (x->flags & EXC_FLAG_MUSTBEDIR) {
1061 if (*dtype == DT_UNKNOWN)
1062 *dtype = get_dtype(NULL, istate, pathname, pathlen);
1063 if (*dtype != DT_DIR)
1067 if (x->flags & EXC_FLAG_NODIR) {
1068 if (match_basename(basename,
1069 pathlen - (basename - pathname),
1070 exclude, prefix, x->patternlen,
1078 assert(x->baselen == 0 || x->base[x->baselen - 1] == '/');
1079 if (match_pathname(pathname, pathlen,
1080 x->base, x->baselen ? x->baselen - 1 : 0,
1081 exclude, prefix, x->patternlen, x->flags)) {
1090 * Scan the list and let the last match determine the fate.
1091 * Return 1 for exclude, 0 for include and -1 for undecided.
1093 int is_excluded_from_list(const char *pathname,
1094 int pathlen, const char *basename, int *dtype,
1095 struct exclude_list *el, struct index_state *istate)
1097 struct exclude *exclude;
1098 exclude = last_exclude_matching_from_list(pathname, pathlen, basename,
1101 return exclude->flags & EXC_FLAG_NEGATIVE ? 0 : 1;
1102 return -1; /* undecided */
1105 static struct exclude *last_exclude_matching_from_lists(struct dir_struct *dir,
1106 struct index_state *istate,
1107 const char *pathname, int pathlen, const char *basename,
1111 struct exclude_list_group *group;
1112 struct exclude *exclude;
1113 for (i = EXC_CMDL; i <= EXC_FILE; i++) {
1114 group = &dir->exclude_list_group[i];
1115 for (j = group->nr - 1; j >= 0; j--) {
1116 exclude = last_exclude_matching_from_list(
1117 pathname, pathlen, basename, dtype_p,
1118 &group->el[j], istate);
1127 * Loads the per-directory exclude list for the substring of base
1128 * which has a char length of baselen.
1130 static void prep_exclude(struct dir_struct *dir,
1131 struct index_state *istate,
1132 const char *base, int baselen)
1134 struct exclude_list_group *group;
1135 struct exclude_list *el;
1136 struct exclude_stack *stk = NULL;
1137 struct untracked_cache_dir *untracked;
1140 group = &dir->exclude_list_group[EXC_DIRS];
1143 * Pop the exclude lists from the EXCL_DIRS exclude_list_group
1144 * which originate from directories not in the prefix of the
1145 * path being checked.
1147 while ((stk = dir->exclude_stack) != NULL) {
1148 if (stk->baselen <= baselen &&
1149 !strncmp(dir->basebuf.buf, base, stk->baselen))
1151 el = &group->el[dir->exclude_stack->exclude_ix];
1152 dir->exclude_stack = stk->prev;
1153 dir->exclude = NULL;
1154 free((char *)el->src); /* see strbuf_detach() below */
1155 clear_exclude_list(el);
1160 /* Skip traversing into sub directories if the parent is excluded */
1165 * Lazy initialization. All call sites currently just
1166 * memset(dir, 0, sizeof(*dir)) before use. Changing all of
1167 * them seems lots of work for little benefit.
1169 if (!dir->basebuf.buf)
1170 strbuf_init(&dir->basebuf, PATH_MAX);
1172 /* Read from the parent directories and push them down. */
1173 current = stk ? stk->baselen : -1;
1174 strbuf_setlen(&dir->basebuf, current < 0 ? 0 : current);
1176 untracked = stk ? stk->ucd : dir->untracked->root;
1180 while (current < baselen) {
1182 struct sha1_stat sha1_stat;
1184 stk = xcalloc(1, sizeof(*stk));
1189 cp = strchr(base + current + 1, '/');
1191 die("oops in prep_exclude");
1194 lookup_untracked(dir->untracked, untracked,
1196 cp - base - current);
1198 stk->prev = dir->exclude_stack;
1199 stk->baselen = cp - base;
1200 stk->exclude_ix = group->nr;
1201 stk->ucd = untracked;
1202 el = add_exclude_list(dir, EXC_DIRS, NULL);
1203 strbuf_add(&dir->basebuf, base + current, stk->baselen - current);
1204 assert(stk->baselen == dir->basebuf.len);
1206 /* Abort if the directory is excluded */
1209 dir->basebuf.buf[stk->baselen - 1] = 0;
1210 dir->exclude = last_exclude_matching_from_lists(dir,
1212 dir->basebuf.buf, stk->baselen - 1,
1213 dir->basebuf.buf + current, &dt);
1214 dir->basebuf.buf[stk->baselen - 1] = '/';
1216 dir->exclude->flags & EXC_FLAG_NEGATIVE)
1217 dir->exclude = NULL;
1219 dir->exclude_stack = stk;
1224 /* Try to read per-directory file */
1225 hashclr(sha1_stat.sha1);
1226 sha1_stat.valid = 0;
1227 if (dir->exclude_per_dir &&
1229 * If we know that no files have been added in
1230 * this directory (i.e. valid_cached_dir() has
1231 * been executed and set untracked->valid) ..
1233 (!untracked || !untracked->valid ||
1235 * .. and .gitignore does not exist before
1236 * (i.e. null exclude_sha1). Then we can skip
1237 * loading .gitignore, which would result in
1240 !is_null_sha1(untracked->exclude_sha1))) {
1242 * dir->basebuf gets reused by the traversal, but we
1243 * need fname to remain unchanged to ensure the src
1244 * member of each struct exclude correctly
1245 * back-references its source file. Other invocations
1246 * of add_exclude_list provide stable strings, so we
1247 * strbuf_detach() and free() here in the caller.
1249 struct strbuf sb = STRBUF_INIT;
1250 strbuf_addbuf(&sb, &dir->basebuf);
1251 strbuf_addstr(&sb, dir->exclude_per_dir);
1252 el->src = strbuf_detach(&sb, NULL);
1253 add_excludes(el->src, el->src, stk->baselen, el, istate,
1254 untracked ? &sha1_stat : NULL);
1257 * NEEDSWORK: when untracked cache is enabled, prep_exclude()
1258 * will first be called in valid_cached_dir() then maybe many
1259 * times more in last_exclude_matching(). When the cache is
1260 * used, last_exclude_matching() will not be called and
1261 * reading .gitignore content will be a waste.
1263 * So when it's called by valid_cached_dir() and we can get
1264 * .gitignore SHA-1 from the index (i.e. .gitignore is not
1265 * modified on work tree), we could delay reading the
1266 * .gitignore content until we absolutely need it in
1267 * last_exclude_matching(). Be careful about ignore rule
1268 * order, though, if you do that.
1271 hashcmp(sha1_stat.sha1, untracked->exclude_sha1)) {
1272 invalidate_gitignore(dir->untracked, untracked);
1273 hashcpy(untracked->exclude_sha1, sha1_stat.sha1);
1275 dir->exclude_stack = stk;
1276 current = stk->baselen;
1278 strbuf_setlen(&dir->basebuf, baselen);
1282 * Loads the exclude lists for the directory containing pathname, then
1283 * scans all exclude lists to determine whether pathname is excluded.
1284 * Returns the exclude_list element which matched, or NULL for
1287 struct exclude *last_exclude_matching(struct dir_struct *dir,
1288 struct index_state *istate,
1289 const char *pathname,
1292 int pathlen = strlen(pathname);
1293 const char *basename = strrchr(pathname, '/');
1294 basename = (basename) ? basename+1 : pathname;
1296 prep_exclude(dir, istate, pathname, basename-pathname);
1299 return dir->exclude;
1301 return last_exclude_matching_from_lists(dir, istate, pathname, pathlen,
1306 * Loads the exclude lists for the directory containing pathname, then
1307 * scans all exclude lists to determine whether pathname is excluded.
1308 * Returns 1 if true, otherwise 0.
1310 int is_excluded(struct dir_struct *dir, struct index_state *istate,
1311 const char *pathname, int *dtype_p)
1313 struct exclude *exclude =
1314 last_exclude_matching(dir, istate, pathname, dtype_p);
1316 return exclude->flags & EXC_FLAG_NEGATIVE ? 0 : 1;
1320 static struct dir_entry *dir_entry_new(const char *pathname, int len)
1322 struct dir_entry *ent;
1324 FLEX_ALLOC_MEM(ent, name, pathname, len);
1329 static struct dir_entry *dir_add_name(struct dir_struct *dir,
1330 struct index_state *istate,
1331 const char *pathname, int len)
1333 if (index_file_exists(istate, pathname, len, ignore_case))
1336 ALLOC_GROW(dir->entries, dir->nr+1, dir->alloc);
1337 return dir->entries[dir->nr++] = dir_entry_new(pathname, len);
1340 struct dir_entry *dir_add_ignored(struct dir_struct *dir,
1341 struct index_state *istate,
1342 const char *pathname, int len)
1344 if (!index_name_is_other(istate, pathname, len))
1347 ALLOC_GROW(dir->ignored, dir->ignored_nr+1, dir->ignored_alloc);
1348 return dir->ignored[dir->ignored_nr++] = dir_entry_new(pathname, len);
1352 index_nonexistent = 0,
1358 * Do not use the alphabetically sorted index to look up
1359 * the directory name; instead, use the case insensitive
1362 static enum exist_status directory_exists_in_index_icase(struct index_state *istate,
1363 const char *dirname, int len)
1365 struct cache_entry *ce;
1367 if (index_dir_exists(istate, dirname, len))
1368 return index_directory;
1370 ce = index_file_exists(istate, dirname, len, ignore_case);
1371 if (ce && S_ISGITLINK(ce->ce_mode))
1372 return index_gitdir;
1374 return index_nonexistent;
1378 * The index sorts alphabetically by entry name, which
1379 * means that a gitlink sorts as '\0' at the end, while
1380 * a directory (which is defined not as an entry, but as
1381 * the files it contains) will sort with the '/' at the
1384 static enum exist_status directory_exists_in_index(struct index_state *istate,
1385 const char *dirname, int len)
1390 return directory_exists_in_index_icase(istate, dirname, len);
1392 pos = index_name_pos(istate, dirname, len);
1395 while (pos < istate->cache_nr) {
1396 const struct cache_entry *ce = istate->cache[pos++];
1397 unsigned char endchar;
1399 if (strncmp(ce->name, dirname, len))
1401 endchar = ce->name[len];
1405 return index_directory;
1406 if (!endchar && S_ISGITLINK(ce->ce_mode))
1407 return index_gitdir;
1409 return index_nonexistent;
1413 * When we find a directory when traversing the filesystem, we
1414 * have three distinct cases:
1417 * - see it as a directory
1420 * and which one we choose depends on a combination of existing
1421 * git index contents and the flags passed into the directory
1422 * traversal routine.
1424 * Case 1: If we *already* have entries in the index under that
1425 * directory name, we always recurse into the directory to see
1428 * Case 2: If we *already* have that directory name as a gitlink,
1429 * we always continue to see it as a gitlink, regardless of whether
1430 * there is an actual git directory there or not (it might not
1431 * be checked out as a subproject!)
1433 * Case 3: if we didn't have it in the index previously, we
1434 * have a few sub-cases:
1436 * (a) if "show_other_directories" is true, we show it as
1437 * just a directory, unless "hide_empty_directories" is
1438 * also true, in which case we need to check if it contains any
1439 * untracked and / or ignored files.
1440 * (b) if it looks like a git directory, and we don't have
1441 * 'no_gitlinks' set we treat it as a gitlink, and show it
1443 * (c) otherwise, we recurse into it.
1445 static enum path_treatment treat_directory(struct dir_struct *dir,
1446 struct index_state *istate,
1447 struct untracked_cache_dir *untracked,
1448 const char *dirname, int len, int baselen, int exclude,
1449 const struct pathspec *pathspec)
1451 /* The "len-1" is to strip the final '/' */
1452 switch (directory_exists_in_index(istate, dirname, len-1)) {
1453 case index_directory:
1454 return path_recurse;
1459 case index_nonexistent:
1460 if (dir->flags & DIR_SHOW_OTHER_DIRECTORIES)
1462 if (!(dir->flags & DIR_NO_GITLINKS)) {
1463 unsigned char sha1[20];
1464 if (resolve_gitlink_ref(dirname, "HEAD", sha1) == 0)
1465 return path_untracked;
1467 return path_recurse;
1470 /* This is the "show_other_directories" case */
1472 if (!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))
1473 return exclude ? path_excluded : path_untracked;
1475 untracked = lookup_untracked(dir->untracked, untracked,
1476 dirname + baselen, len - baselen);
1479 * If this is an excluded directory, then we only need to check if
1480 * the directory contains any files.
1482 return read_directory_recursive(dir, istate, dirname, len,
1483 untracked, 1, exclude, pathspec);
1487 * This is an inexact early pruning of any recursive directory
1488 * reading - if the path cannot possibly be in the pathspec,
1489 * return true, and we'll skip it early.
1491 static int simplify_away(const char *path, int pathlen,
1492 const struct pathspec *pathspec)
1496 if (!pathspec || !pathspec->nr)
1499 GUARD_PATHSPEC(pathspec,
1508 for (i = 0; i < pathspec->nr; i++) {
1509 const struct pathspec_item *item = &pathspec->items[i];
1510 int len = item->nowildcard_len;
1514 if (!ps_strncmp(item, item->match, path, len))
1522 * This function tells us whether an excluded path matches a
1523 * list of "interesting" pathspecs. That is, whether a path matched
1524 * by any of the pathspecs could possibly be ignored by excluding
1525 * the specified path. This can happen if:
1527 * 1. the path is mentioned explicitly in the pathspec
1529 * 2. the path is a directory prefix of some element in the
1532 static int exclude_matches_pathspec(const char *path, int pathlen,
1533 const struct pathspec *pathspec)
1537 if (!pathspec || !pathspec->nr)
1540 GUARD_PATHSPEC(pathspec,
1548 for (i = 0; i < pathspec->nr; i++) {
1549 const struct pathspec_item *item = &pathspec->items[i];
1550 int len = item->nowildcard_len;
1552 if (len == pathlen &&
1553 !ps_strncmp(item, item->match, path, pathlen))
1555 if (len > pathlen &&
1556 item->match[pathlen] == '/' &&
1557 !ps_strncmp(item, item->match, path, pathlen))
1563 static int get_index_dtype(struct index_state *istate,
1564 const char *path, int len)
1567 const struct cache_entry *ce;
1569 ce = index_file_exists(istate, path, len, 0);
1571 if (!ce_uptodate(ce))
1573 if (S_ISGITLINK(ce->ce_mode))
1576 * Nobody actually cares about the
1577 * difference between DT_LNK and DT_REG
1582 /* Try to look it up as a directory */
1583 pos = index_name_pos(istate, path, len);
1587 while (pos < istate->cache_nr) {
1588 ce = istate->cache[pos++];
1589 if (strncmp(ce->name, path, len))
1591 if (ce->name[len] > '/')
1593 if (ce->name[len] < '/')
1595 if (!ce_uptodate(ce))
1596 break; /* continue? */
1602 static int get_dtype(struct dirent *de, struct index_state *istate,
1603 const char *path, int len)
1605 int dtype = de ? DTYPE(de) : DT_UNKNOWN;
1608 if (dtype != DT_UNKNOWN)
1610 dtype = get_index_dtype(istate, path, len);
1611 if (dtype != DT_UNKNOWN)
1613 if (lstat(path, &st))
1615 if (S_ISREG(st.st_mode))
1617 if (S_ISDIR(st.st_mode))
1619 if (S_ISLNK(st.st_mode))
1624 static enum path_treatment treat_one_path(struct dir_struct *dir,
1625 struct untracked_cache_dir *untracked,
1626 struct index_state *istate,
1627 struct strbuf *path,
1629 const struct pathspec *pathspec,
1630 int dtype, struct dirent *de)
1633 int has_path_in_index = !!index_file_exists(istate, path->buf, path->len, ignore_case);
1635 if (dtype == DT_UNKNOWN)
1636 dtype = get_dtype(de, istate, path->buf, path->len);
1638 /* Always exclude indexed files */
1639 if (dtype != DT_DIR && has_path_in_index)
1643 * When we are looking at a directory P in the working tree,
1644 * there are three cases:
1646 * (1) P exists in the index. Everything inside the directory P in
1647 * the working tree needs to go when P is checked out from the
1650 * (2) P does not exist in the index, but there is P/Q in the index.
1651 * We know P will stay a directory when we check out the contents
1652 * of the index, but we do not know yet if there is a directory
1653 * P/Q in the working tree to be killed, so we need to recurse.
1655 * (3) P does not exist in the index, and there is no P/Q in the index
1656 * to require P to be a directory, either. Only in this case, we
1657 * know that everything inside P will not be killed without
1660 if ((dir->flags & DIR_COLLECT_KILLED_ONLY) &&
1661 (dtype == DT_DIR) &&
1662 !has_path_in_index &&
1663 (directory_exists_in_index(istate, path->buf, path->len) == index_nonexistent))
1666 exclude = is_excluded(dir, istate, path->buf, &dtype);
1669 * Excluded? If we don't explicitly want to show
1670 * ignored files, ignore it
1672 if (exclude && !(dir->flags & (DIR_SHOW_IGNORED|DIR_SHOW_IGNORED_TOO)))
1673 return path_excluded;
1679 strbuf_addch(path, '/');
1680 return treat_directory(dir, istate, untracked, path->buf, path->len,
1681 baselen, exclude, pathspec);
1684 return exclude ? path_excluded : path_untracked;
1688 static enum path_treatment treat_path_fast(struct dir_struct *dir,
1689 struct untracked_cache_dir *untracked,
1690 struct cached_dir *cdir,
1691 struct index_state *istate,
1692 struct strbuf *path,
1694 const struct pathspec *pathspec)
1696 strbuf_setlen(path, baselen);
1698 strbuf_addstr(path, cdir->file);
1699 return path_untracked;
1701 strbuf_addstr(path, cdir->ucd->name);
1702 /* treat_one_path() does this before it calls treat_directory() */
1703 strbuf_complete(path, '/');
1704 if (cdir->ucd->check_only)
1706 * check_only is set as a result of treat_directory() getting
1707 * to its bottom. Verify again the same set of directories
1708 * with check_only set.
1710 return read_directory_recursive(dir, istate, path->buf, path->len,
1711 cdir->ucd, 1, 0, pathspec);
1713 * We get path_recurse in the first run when
1714 * directory_exists_in_index() returns index_nonexistent. We
1715 * are sure that new changes in the index does not impact the
1716 * outcome. Return now.
1718 return path_recurse;
1721 static enum path_treatment treat_path(struct dir_struct *dir,
1722 struct untracked_cache_dir *untracked,
1723 struct cached_dir *cdir,
1724 struct index_state *istate,
1725 struct strbuf *path,
1727 const struct pathspec *pathspec)
1730 struct dirent *de = cdir->de;
1733 return treat_path_fast(dir, untracked, cdir, istate, path,
1735 if (is_dot_or_dotdot(de->d_name) || !strcmp(de->d_name, ".git"))
1737 strbuf_setlen(path, baselen);
1738 strbuf_addstr(path, de->d_name);
1739 if (simplify_away(path->buf, path->len, pathspec))
1743 return treat_one_path(dir, untracked, istate, path, baselen, pathspec, dtype, de);
1746 static void add_untracked(struct untracked_cache_dir *dir, const char *name)
1750 ALLOC_GROW(dir->untracked, dir->untracked_nr + 1,
1751 dir->untracked_alloc);
1752 dir->untracked[dir->untracked_nr++] = xstrdup(name);
1755 static int valid_cached_dir(struct dir_struct *dir,
1756 struct untracked_cache_dir *untracked,
1757 struct index_state *istate,
1758 struct strbuf *path,
1766 if (stat(path->len ? path->buf : ".", &st)) {
1767 invalidate_directory(dir->untracked, untracked);
1768 memset(&untracked->stat_data, 0, sizeof(untracked->stat_data));
1771 if (!untracked->valid ||
1772 match_stat_data_racy(istate, &untracked->stat_data, &st)) {
1773 if (untracked->valid)
1774 invalidate_directory(dir->untracked, untracked);
1775 fill_stat_data(&untracked->stat_data, &st);
1779 if (untracked->check_only != !!check_only) {
1780 invalidate_directory(dir->untracked, untracked);
1785 * prep_exclude will be called eventually on this directory,
1786 * but it's called much later in last_exclude_matching(). We
1787 * need it now to determine the validity of the cache for this
1788 * path. The next calls will be nearly no-op, the way
1789 * prep_exclude() is designed.
1791 if (path->len && path->buf[path->len - 1] != '/') {
1792 strbuf_addch(path, '/');
1793 prep_exclude(dir, istate, path->buf, path->len);
1794 strbuf_setlen(path, path->len - 1);
1796 prep_exclude(dir, istate, path->buf, path->len);
1798 /* hopefully prep_exclude() haven't invalidated this entry... */
1799 return untracked->valid;
1802 static int open_cached_dir(struct cached_dir *cdir,
1803 struct dir_struct *dir,
1804 struct untracked_cache_dir *untracked,
1805 struct index_state *istate,
1806 struct strbuf *path,
1809 memset(cdir, 0, sizeof(*cdir));
1810 cdir->untracked = untracked;
1811 if (valid_cached_dir(dir, untracked, istate, path, check_only))
1813 cdir->fdir = opendir(path->len ? path->buf : ".");
1815 dir->untracked->dir_opened++;
1821 static int read_cached_dir(struct cached_dir *cdir)
1824 cdir->de = readdir(cdir->fdir);
1829 while (cdir->nr_dirs < cdir->untracked->dirs_nr) {
1830 struct untracked_cache_dir *d = cdir->untracked->dirs[cdir->nr_dirs];
1840 if (cdir->nr_files < cdir->untracked->untracked_nr) {
1841 struct untracked_cache_dir *d = cdir->untracked;
1842 cdir->file = d->untracked[cdir->nr_files++];
1848 static void close_cached_dir(struct cached_dir *cdir)
1851 closedir(cdir->fdir);
1853 * We have gone through this directory and found no untracked
1854 * entries. Mark it valid.
1856 if (cdir->untracked) {
1857 cdir->untracked->valid = 1;
1858 cdir->untracked->recurse = 1;
1863 * Read a directory tree. We currently ignore anything but
1864 * directories, regular files and symlinks. That's because git
1865 * doesn't handle them at all yet. Maybe that will change some
1868 * Also, we ignore the name ".git" (even if it is not a directory).
1869 * That likely will not change.
1871 * If 'stop_at_first_file' is specified, 'path_excluded' is returned
1872 * to signal that a file was found. This is the least significant value that
1873 * indicates that a file was encountered that does not depend on the order of
1874 * whether an untracked or exluded path was encountered first.
1876 * Returns the most significant path_treatment value encountered in the scan.
1877 * If 'stop_at_first_file' is specified, `path_excluded` is the most
1878 * significant path_treatment value that will be returned.
1881 static enum path_treatment read_directory_recursive(struct dir_struct *dir,
1882 struct index_state *istate, const char *base, int baselen,
1883 struct untracked_cache_dir *untracked, int check_only,
1884 int stop_at_first_file, const struct pathspec *pathspec)
1886 struct cached_dir cdir;
1887 enum path_treatment state, subdir_state, dir_state = path_none;
1888 struct strbuf path = STRBUF_INIT;
1890 strbuf_add(&path, base, baselen);
1892 if (open_cached_dir(&cdir, dir, untracked, istate, &path, check_only))
1896 untracked->check_only = !!check_only;
1898 while (!read_cached_dir(&cdir)) {
1899 /* check how the file or directory should be treated */
1900 state = treat_path(dir, untracked, &cdir, istate, &path,
1903 if (state > dir_state)
1906 /* recurse into subdir if instructed by treat_path */
1907 if ((state == path_recurse) ||
1908 ((state == path_untracked) &&
1909 (dir->flags & DIR_SHOW_IGNORED_TOO) &&
1910 (get_dtype(cdir.de, istate, path.buf, path.len) == DT_DIR))) {
1911 struct untracked_cache_dir *ud;
1912 ud = lookup_untracked(dir->untracked, untracked,
1914 path.len - baselen);
1916 read_directory_recursive(dir, istate, path.buf,
1918 check_only, stop_at_first_file, pathspec);
1919 if (subdir_state > dir_state)
1920 dir_state = subdir_state;
1924 if (stop_at_first_file) {
1926 * If stopping at first file, then
1927 * signal that a file was found by
1928 * returning `path_excluded`. This is
1929 * to return a consistent value
1930 * regardless of whether an ignored or
1931 * excluded file happened to be
1934 * In current usage, the
1935 * `stop_at_first_file` is passed when
1936 * an ancestor directory has matched
1937 * an exclude pattern, so any found
1938 * files will be excluded.
1940 if (dir_state >= path_excluded) {
1941 dir_state = path_excluded;
1946 /* abort early if maximum state has been reached */
1947 if (dir_state == path_untracked) {
1949 add_untracked(untracked, path.buf + baselen);
1952 /* skip the dir_add_* part */
1956 /* add the path to the appropriate result list */
1959 if (dir->flags & DIR_SHOW_IGNORED)
1960 dir_add_name(dir, istate, path.buf, path.len);
1961 else if ((dir->flags & DIR_SHOW_IGNORED_TOO) ||
1962 ((dir->flags & DIR_COLLECT_IGNORED) &&
1963 exclude_matches_pathspec(path.buf, path.len,
1965 dir_add_ignored(dir, istate, path.buf, path.len);
1968 case path_untracked:
1969 if (dir->flags & DIR_SHOW_IGNORED)
1971 dir_add_name(dir, istate, path.buf, path.len);
1973 add_untracked(untracked, path.buf + baselen);
1980 close_cached_dir(&cdir);
1982 strbuf_release(&path);
1987 int cmp_dir_entry(const void *p1, const void *p2)
1989 const struct dir_entry *e1 = *(const struct dir_entry **)p1;
1990 const struct dir_entry *e2 = *(const struct dir_entry **)p2;
1992 return name_compare(e1->name, e1->len, e2->name, e2->len);
1995 /* check if *out lexically strictly contains *in */
1996 int check_dir_entry_contains(const struct dir_entry *out, const struct dir_entry *in)
1998 return (out->len < in->len) &&
1999 (out->name[out->len - 1] == '/') &&
2000 !memcmp(out->name, in->name, out->len);
2003 static int treat_leading_path(struct dir_struct *dir,
2004 struct index_state *istate,
2005 const char *path, int len,
2006 const struct pathspec *pathspec)
2008 struct strbuf sb = STRBUF_INIT;
2009 int baselen, rc = 0;
2011 int old_flags = dir->flags;
2013 while (len && path[len - 1] == '/')
2018 dir->flags &= ~DIR_SHOW_OTHER_DIRECTORIES;
2020 cp = path + baselen + !!baselen;
2021 cp = memchr(cp, '/', path + len - cp);
2025 baselen = cp - path;
2026 strbuf_setlen(&sb, 0);
2027 strbuf_add(&sb, path, baselen);
2028 if (!is_directory(sb.buf))
2030 if (simplify_away(sb.buf, sb.len, pathspec))
2032 if (treat_one_path(dir, NULL, istate, &sb, baselen, pathspec,
2033 DT_DIR, NULL) == path_none)
2034 break; /* do not recurse into it */
2035 if (len <= baselen) {
2037 break; /* finished checking */
2040 strbuf_release(&sb);
2041 dir->flags = old_flags;
2045 static const char *get_ident_string(void)
2047 static struct strbuf sb = STRBUF_INIT;
2052 if (uname(&uts) < 0)
2053 die_errno(_("failed to get kernel name and information"));
2054 strbuf_addf(&sb, "Location %s, system %s", get_git_work_tree(),
2059 static int ident_in_untracked(const struct untracked_cache *uc)
2062 * Previous git versions may have saved many NUL separated
2063 * strings in the "ident" field, but it is insane to manage
2064 * many locations, so just take care of the first one.
2067 return !strcmp(uc->ident.buf, get_ident_string());
2070 static void set_untracked_ident(struct untracked_cache *uc)
2072 strbuf_reset(&uc->ident);
2073 strbuf_addstr(&uc->ident, get_ident_string());
2076 * This strbuf used to contain a list of NUL separated
2077 * strings, so save NUL too for backward compatibility.
2079 strbuf_addch(&uc->ident, 0);
2082 static void new_untracked_cache(struct index_state *istate)
2084 struct untracked_cache *uc = xcalloc(1, sizeof(*uc));
2085 strbuf_init(&uc->ident, 100);
2086 uc->exclude_per_dir = ".gitignore";
2087 /* should be the same flags used by git-status */
2088 uc->dir_flags = DIR_SHOW_OTHER_DIRECTORIES | DIR_HIDE_EMPTY_DIRECTORIES;
2089 set_untracked_ident(uc);
2090 istate->untracked = uc;
2091 istate->cache_changed |= UNTRACKED_CHANGED;
2094 void add_untracked_cache(struct index_state *istate)
2096 if (!istate->untracked) {
2097 new_untracked_cache(istate);
2099 if (!ident_in_untracked(istate->untracked)) {
2100 free_untracked_cache(istate->untracked);
2101 new_untracked_cache(istate);
2106 void remove_untracked_cache(struct index_state *istate)
2108 if (istate->untracked) {
2109 free_untracked_cache(istate->untracked);
2110 istate->untracked = NULL;
2111 istate->cache_changed |= UNTRACKED_CHANGED;
2115 static struct untracked_cache_dir *validate_untracked_cache(struct dir_struct *dir,
2117 const struct pathspec *pathspec)
2119 struct untracked_cache_dir *root;
2121 if (!dir->untracked || getenv("GIT_DISABLE_UNTRACKED_CACHE"))
2125 * We only support $GIT_DIR/info/exclude and core.excludesfile
2126 * as the global ignore rule files. Any other additions
2127 * (e.g. from command line) invalidate the cache. This
2128 * condition also catches running setup_standard_excludes()
2129 * before setting dir->untracked!
2131 if (dir->unmanaged_exclude_files)
2135 * Optimize for the main use case only: whole-tree git
2136 * status. More work involved in treat_leading_path() if we
2137 * use cache on just a subset of the worktree. pathspec
2138 * support could make the matter even worse.
2140 if (base_len || (pathspec && pathspec->nr))
2143 /* Different set of flags may produce different results */
2144 if (dir->flags != dir->untracked->dir_flags ||
2146 * See treat_directory(), case index_nonexistent. Without
2147 * this flag, we may need to also cache .git file content
2148 * for the resolve_gitlink_ref() call, which we don't.
2150 !(dir->flags & DIR_SHOW_OTHER_DIRECTORIES) ||
2151 /* We don't support collecting ignore files */
2152 (dir->flags & (DIR_SHOW_IGNORED | DIR_SHOW_IGNORED_TOO |
2153 DIR_COLLECT_IGNORED)))
2157 * If we use .gitignore in the cache and now you change it to
2158 * .gitexclude, everything will go wrong.
2160 if (dir->exclude_per_dir != dir->untracked->exclude_per_dir &&
2161 strcmp(dir->exclude_per_dir, dir->untracked->exclude_per_dir))
2165 * EXC_CMDL is not considered in the cache. If people set it,
2168 if (dir->exclude_list_group[EXC_CMDL].nr)
2171 if (!ident_in_untracked(dir->untracked)) {
2172 warning(_("Untracked cache is disabled on this system or location."));
2176 if (!dir->untracked->root) {
2177 const int len = sizeof(*dir->untracked->root);
2178 dir->untracked->root = xmalloc(len);
2179 memset(dir->untracked->root, 0, len);
2182 /* Validate $GIT_DIR/info/exclude and core.excludesfile */
2183 root = dir->untracked->root;
2184 if (hashcmp(dir->ss_info_exclude.sha1,
2185 dir->untracked->ss_info_exclude.sha1)) {
2186 invalidate_gitignore(dir->untracked, root);
2187 dir->untracked->ss_info_exclude = dir->ss_info_exclude;
2189 if (hashcmp(dir->ss_excludes_file.sha1,
2190 dir->untracked->ss_excludes_file.sha1)) {
2191 invalidate_gitignore(dir->untracked, root);
2192 dir->untracked->ss_excludes_file = dir->ss_excludes_file;
2195 /* Make sure this directory is not dropped out at saving phase */
2200 int read_directory(struct dir_struct *dir, struct index_state *istate,
2201 const char *path, int len, const struct pathspec *pathspec)
2203 struct untracked_cache_dir *untracked;
2205 if (has_symlink_leading_path(path, len))
2208 untracked = validate_untracked_cache(dir, len, pathspec);
2211 * make sure untracked cache code path is disabled,
2212 * e.g. prep_exclude()
2214 dir->untracked = NULL;
2215 if (!len || treat_leading_path(dir, istate, path, len, pathspec))
2216 read_directory_recursive(dir, istate, path, len, untracked, 0, 0, pathspec);
2217 QSORT(dir->entries, dir->nr, cmp_dir_entry);
2218 QSORT(dir->ignored, dir->ignored_nr, cmp_dir_entry);
2221 * If DIR_SHOW_IGNORED_TOO is set, read_directory_recursive() will
2222 * also pick up untracked contents of untracked dirs; by default
2223 * we discard these, but given DIR_KEEP_UNTRACKED_CONTENTS we do not.
2225 if ((dir->flags & DIR_SHOW_IGNORED_TOO) &&
2226 !(dir->flags & DIR_KEEP_UNTRACKED_CONTENTS)) {
2229 /* remove from dir->entries untracked contents of untracked dirs */
2230 for (i = j = 0; j < dir->nr; j++) {
2232 check_dir_entry_contains(dir->entries[i - 1], dir->entries[j])) {
2233 FREE_AND_NULL(dir->entries[j]);
2235 dir->entries[i++] = dir->entries[j];
2242 if (dir->untracked) {
2243 static struct trace_key trace_untracked_stats = TRACE_KEY_INIT(UNTRACKED_STATS);
2244 trace_printf_key(&trace_untracked_stats,
2245 "node creation: %u\n"
2246 "gitignore invalidation: %u\n"
2247 "directory invalidation: %u\n"
2249 dir->untracked->dir_created,
2250 dir->untracked->gitignore_invalidated,
2251 dir->untracked->dir_invalidated,
2252 dir->untracked->dir_opened);
2253 if (dir->untracked == istate->untracked &&
2254 (dir->untracked->dir_opened ||
2255 dir->untracked->gitignore_invalidated ||
2256 dir->untracked->dir_invalidated))
2257 istate->cache_changed |= UNTRACKED_CHANGED;
2258 if (dir->untracked != istate->untracked) {
2259 FREE_AND_NULL(dir->untracked);
2265 int file_exists(const char *f)
2268 return lstat(f, &sb) == 0;
2271 static int cmp_icase(char a, char b)
2276 return toupper(a) - toupper(b);
2281 * Given two normalized paths (a trailing slash is ok), if subdir is
2282 * outside dir, return -1. Otherwise return the offset in subdir that
2283 * can be used as relative path to dir.
2285 int dir_inside_of(const char *subdir, const char *dir)
2289 assert(dir && subdir && *dir && *subdir);
2291 while (*dir && *subdir && !cmp_icase(*dir, *subdir)) {
2297 /* hel[p]/me vs hel[l]/yeah */
2298 if (*dir && *subdir)
2302 return !*dir ? offset : -1; /* same dir */
2304 /* foo/[b]ar vs foo/[] */
2305 if (is_dir_sep(dir[-1]))
2306 return is_dir_sep(subdir[-1]) ? offset : -1;
2308 /* foo[/]bar vs foo[] */
2309 return is_dir_sep(*subdir) ? offset + 1 : -1;
2312 int is_inside_dir(const char *dir)
2321 rc = (dir_inside_of(cwd, dir) >= 0);
2326 int is_empty_dir(const char *path)
2328 DIR *dir = opendir(path);
2335 while ((e = readdir(dir)) != NULL)
2336 if (!is_dot_or_dotdot(e->d_name)) {
2345 static int remove_dir_recurse(struct strbuf *path, int flag, int *kept_up)
2349 int ret = 0, original_len = path->len, len, kept_down = 0;
2350 int only_empty = (flag & REMOVE_DIR_EMPTY_ONLY);
2351 int keep_toplevel = (flag & REMOVE_DIR_KEEP_TOPLEVEL);
2352 unsigned char submodule_head[20];
2354 if ((flag & REMOVE_DIR_KEEP_NESTED_GIT) &&
2355 !resolve_gitlink_ref(path->buf, "HEAD", submodule_head)) {
2356 /* Do not descend and nuke a nested git work tree. */
2362 flag &= ~REMOVE_DIR_KEEP_TOPLEVEL;
2363 dir = opendir(path->buf);
2365 if (errno == ENOENT)
2366 return keep_toplevel ? -1 : 0;
2367 else if (errno == EACCES && !keep_toplevel)
2369 * An empty dir could be removable even if it
2372 return rmdir(path->buf);
2376 strbuf_complete(path, '/');
2379 while ((e = readdir(dir)) != NULL) {
2381 if (is_dot_or_dotdot(e->d_name))
2384 strbuf_setlen(path, len);
2385 strbuf_addstr(path, e->d_name);
2386 if (lstat(path->buf, &st)) {
2387 if (errno == ENOENT)
2389 * file disappeared, which is what we
2394 } else if (S_ISDIR(st.st_mode)) {
2395 if (!remove_dir_recurse(path, flag, &kept_down))
2396 continue; /* happy */
2397 } else if (!only_empty &&
2398 (!unlink(path->buf) || errno == ENOENT)) {
2399 continue; /* happy, too */
2402 /* path too long, stat fails, or non-directory still exists */
2408 strbuf_setlen(path, original_len);
2409 if (!ret && !keep_toplevel && !kept_down)
2410 ret = (!rmdir(path->buf) || errno == ENOENT) ? 0 : -1;
2413 * report the uplevel that it is not an error that we
2414 * did not rmdir() our directory.
2420 int remove_dir_recursively(struct strbuf *path, int flag)
2422 return remove_dir_recurse(path, flag, NULL);
2425 static GIT_PATH_FUNC(git_path_info_exclude, "info/exclude")
2427 void setup_standard_excludes(struct dir_struct *dir)
2429 dir->exclude_per_dir = ".gitignore";
2431 /* core.excludefile defaulting to $XDG_HOME/git/ignore */
2433 excludes_file = xdg_config_home("ignore");
2434 if (excludes_file && !access_or_warn(excludes_file, R_OK, 0))
2435 add_excludes_from_file_1(dir, excludes_file,
2436 dir->untracked ? &dir->ss_excludes_file : NULL);
2438 /* per repository user preference */
2439 if (startup_info->have_repository) {
2440 const char *path = git_path_info_exclude();
2441 if (!access_or_warn(path, R_OK, 0))
2442 add_excludes_from_file_1(dir, path,
2443 dir->untracked ? &dir->ss_info_exclude : NULL);
2447 int remove_path(const char *name)
2451 if (unlink(name) && !is_missing_file_error(errno))
2454 slash = strrchr(name, '/');
2456 char *dirs = xstrdup(name);
2457 slash = dirs + (slash - name);
2460 } while (rmdir(dirs) == 0 && (slash = strrchr(dirs, '/')));
2467 * Frees memory within dir which was allocated for exclude lists and
2468 * the exclude_stack. Does not free dir itself.
2470 void clear_directory(struct dir_struct *dir)
2473 struct exclude_list_group *group;
2474 struct exclude_list *el;
2475 struct exclude_stack *stk;
2477 for (i = EXC_CMDL; i <= EXC_FILE; i++) {
2478 group = &dir->exclude_list_group[i];
2479 for (j = 0; j < group->nr; j++) {
2482 free((char *)el->src);
2483 clear_exclude_list(el);
2488 stk = dir->exclude_stack;
2490 struct exclude_stack *prev = stk->prev;
2494 strbuf_release(&dir->basebuf);
2497 struct ondisk_untracked_cache {
2498 struct stat_data info_exclude_stat;
2499 struct stat_data excludes_file_stat;
2501 unsigned char info_exclude_sha1[20];
2502 unsigned char excludes_file_sha1[20];
2503 char exclude_per_dir[FLEX_ARRAY];
2506 #define ouc_offset(x) offsetof(struct ondisk_untracked_cache, x)
2507 #define ouc_size(len) (ouc_offset(exclude_per_dir) + len + 1)
2510 int index; /* number of written untracked_cache_dir */
2511 struct ewah_bitmap *check_only; /* from untracked_cache_dir */
2512 struct ewah_bitmap *valid; /* from untracked_cache_dir */
2513 struct ewah_bitmap *sha1_valid; /* set if exclude_sha1 is not null */
2515 struct strbuf sb_stat;
2516 struct strbuf sb_sha1;
2519 static void stat_data_to_disk(struct stat_data *to, const struct stat_data *from)
2521 to->sd_ctime.sec = htonl(from->sd_ctime.sec);
2522 to->sd_ctime.nsec = htonl(from->sd_ctime.nsec);
2523 to->sd_mtime.sec = htonl(from->sd_mtime.sec);
2524 to->sd_mtime.nsec = htonl(from->sd_mtime.nsec);
2525 to->sd_dev = htonl(from->sd_dev);
2526 to->sd_ino = htonl(from->sd_ino);
2527 to->sd_uid = htonl(from->sd_uid);
2528 to->sd_gid = htonl(from->sd_gid);
2529 to->sd_size = htonl(from->sd_size);
2532 static void write_one_dir(struct untracked_cache_dir *untracked,
2533 struct write_data *wd)
2535 struct stat_data stat_data;
2536 struct strbuf *out = &wd->out;
2537 unsigned char intbuf[16];
2538 unsigned int intlen, value;
2539 int i = wd->index++;
2542 * untracked_nr should be reset whenever valid is clear, but
2545 if (!untracked->valid) {
2546 untracked->untracked_nr = 0;
2547 untracked->check_only = 0;
2550 if (untracked->check_only)
2551 ewah_set(wd->check_only, i);
2552 if (untracked->valid) {
2553 ewah_set(wd->valid, i);
2554 stat_data_to_disk(&stat_data, &untracked->stat_data);
2555 strbuf_add(&wd->sb_stat, &stat_data, sizeof(stat_data));
2557 if (!is_null_sha1(untracked->exclude_sha1)) {
2558 ewah_set(wd->sha1_valid, i);
2559 strbuf_add(&wd->sb_sha1, untracked->exclude_sha1, 20);
2562 intlen = encode_varint(untracked->untracked_nr, intbuf);
2563 strbuf_add(out, intbuf, intlen);
2565 /* skip non-recurse directories */
2566 for (i = 0, value = 0; i < untracked->dirs_nr; i++)
2567 if (untracked->dirs[i]->recurse)
2569 intlen = encode_varint(value, intbuf);
2570 strbuf_add(out, intbuf, intlen);
2572 strbuf_add(out, untracked->name, strlen(untracked->name) + 1);
2574 for (i = 0; i < untracked->untracked_nr; i++)
2575 strbuf_add(out, untracked->untracked[i],
2576 strlen(untracked->untracked[i]) + 1);
2578 for (i = 0; i < untracked->dirs_nr; i++)
2579 if (untracked->dirs[i]->recurse)
2580 write_one_dir(untracked->dirs[i], wd);
2583 void write_untracked_extension(struct strbuf *out, struct untracked_cache *untracked)
2585 struct ondisk_untracked_cache *ouc;
2586 struct write_data wd;
2587 unsigned char varbuf[16];
2589 size_t len = strlen(untracked->exclude_per_dir);
2591 FLEX_ALLOC_MEM(ouc, exclude_per_dir, untracked->exclude_per_dir, len);
2592 stat_data_to_disk(&ouc->info_exclude_stat, &untracked->ss_info_exclude.stat);
2593 stat_data_to_disk(&ouc->excludes_file_stat, &untracked->ss_excludes_file.stat);
2594 hashcpy(ouc->info_exclude_sha1, untracked->ss_info_exclude.sha1);
2595 hashcpy(ouc->excludes_file_sha1, untracked->ss_excludes_file.sha1);
2596 ouc->dir_flags = htonl(untracked->dir_flags);
2598 varint_len = encode_varint(untracked->ident.len, varbuf);
2599 strbuf_add(out, varbuf, varint_len);
2600 strbuf_addbuf(out, &untracked->ident);
2602 strbuf_add(out, ouc, ouc_size(len));
2605 if (!untracked->root) {
2606 varint_len = encode_varint(0, varbuf);
2607 strbuf_add(out, varbuf, varint_len);
2612 wd.check_only = ewah_new();
2613 wd.valid = ewah_new();
2614 wd.sha1_valid = ewah_new();
2615 strbuf_init(&wd.out, 1024);
2616 strbuf_init(&wd.sb_stat, 1024);
2617 strbuf_init(&wd.sb_sha1, 1024);
2618 write_one_dir(untracked->root, &wd);
2620 varint_len = encode_varint(wd.index, varbuf);
2621 strbuf_add(out, varbuf, varint_len);
2622 strbuf_addbuf(out, &wd.out);
2623 ewah_serialize_strbuf(wd.valid, out);
2624 ewah_serialize_strbuf(wd.check_only, out);
2625 ewah_serialize_strbuf(wd.sha1_valid, out);
2626 strbuf_addbuf(out, &wd.sb_stat);
2627 strbuf_addbuf(out, &wd.sb_sha1);
2628 strbuf_addch(out, '\0'); /* safe guard for string lists */
2630 ewah_free(wd.valid);
2631 ewah_free(wd.check_only);
2632 ewah_free(wd.sha1_valid);
2633 strbuf_release(&wd.out);
2634 strbuf_release(&wd.sb_stat);
2635 strbuf_release(&wd.sb_sha1);
2638 static void free_untracked(struct untracked_cache_dir *ucd)
2643 for (i = 0; i < ucd->dirs_nr; i++)
2644 free_untracked(ucd->dirs[i]);
2645 for (i = 0; i < ucd->untracked_nr; i++)
2646 free(ucd->untracked[i]);
2647 free(ucd->untracked);
2652 void free_untracked_cache(struct untracked_cache *uc)
2655 free_untracked(uc->root);
2661 struct untracked_cache_dir **ucd;
2662 struct ewah_bitmap *check_only;
2663 struct ewah_bitmap *valid;
2664 struct ewah_bitmap *sha1_valid;
2665 const unsigned char *data;
2666 const unsigned char *end;
2669 static void stat_data_from_disk(struct stat_data *to, const unsigned char *data)
2671 memcpy(to, data, sizeof(*to));
2672 to->sd_ctime.sec = ntohl(to->sd_ctime.sec);
2673 to->sd_ctime.nsec = ntohl(to->sd_ctime.nsec);
2674 to->sd_mtime.sec = ntohl(to->sd_mtime.sec);
2675 to->sd_mtime.nsec = ntohl(to->sd_mtime.nsec);
2676 to->sd_dev = ntohl(to->sd_dev);
2677 to->sd_ino = ntohl(to->sd_ino);
2678 to->sd_uid = ntohl(to->sd_uid);
2679 to->sd_gid = ntohl(to->sd_gid);
2680 to->sd_size = ntohl(to->sd_size);
2683 static int read_one_dir(struct untracked_cache_dir **untracked_,
2684 struct read_data *rd)
2686 struct untracked_cache_dir ud, *untracked;
2687 const unsigned char *next, *data = rd->data, *end = rd->end;
2691 memset(&ud, 0, sizeof(ud));
2694 value = decode_varint(&next);
2698 ud.untracked_alloc = value;
2699 ud.untracked_nr = value;
2700 if (ud.untracked_nr)
2701 ALLOC_ARRAY(ud.untracked, ud.untracked_nr);
2705 ud.dirs_alloc = ud.dirs_nr = decode_varint(&next);
2708 ALLOC_ARRAY(ud.dirs, ud.dirs_nr);
2711 len = strlen((const char *)data);
2712 next = data + len + 1;
2715 *untracked_ = untracked = xmalloc(st_add(sizeof(*untracked), len));
2716 memcpy(untracked, &ud, sizeof(ud));
2717 memcpy(untracked->name, data, len + 1);
2720 for (i = 0; i < untracked->untracked_nr; i++) {
2721 len = strlen((const char *)data);
2722 next = data + len + 1;
2725 untracked->untracked[i] = xstrdup((const char*)data);
2729 rd->ucd[rd->index++] = untracked;
2732 for (i = 0; i < untracked->dirs_nr; i++) {
2733 len = read_one_dir(untracked->dirs + i, rd);
2740 static void set_check_only(size_t pos, void *cb)
2742 struct read_data *rd = cb;
2743 struct untracked_cache_dir *ud = rd->ucd[pos];
2747 static void read_stat(size_t pos, void *cb)
2749 struct read_data *rd = cb;
2750 struct untracked_cache_dir *ud = rd->ucd[pos];
2751 if (rd->data + sizeof(struct stat_data) > rd->end) {
2752 rd->data = rd->end + 1;
2755 stat_data_from_disk(&ud->stat_data, rd->data);
2756 rd->data += sizeof(struct stat_data);
2760 static void read_sha1(size_t pos, void *cb)
2762 struct read_data *rd = cb;
2763 struct untracked_cache_dir *ud = rd->ucd[pos];
2764 if (rd->data + 20 > rd->end) {
2765 rd->data = rd->end + 1;
2768 hashcpy(ud->exclude_sha1, rd->data);
2772 static void load_sha1_stat(struct sha1_stat *sha1_stat,
2773 const unsigned char *data,
2774 const unsigned char *sha1)
2776 stat_data_from_disk(&sha1_stat->stat, data);
2777 hashcpy(sha1_stat->sha1, sha1);
2778 sha1_stat->valid = 1;
2781 struct untracked_cache *read_untracked_extension(const void *data, unsigned long sz)
2783 struct untracked_cache *uc;
2784 struct read_data rd;
2785 const unsigned char *next = data, *end = (const unsigned char *)data + sz;
2788 const char *exclude_per_dir;
2790 if (sz <= 1 || end[-1] != '\0')
2794 ident_len = decode_varint(&next);
2795 if (next + ident_len > end)
2797 ident = (const char *)next;
2800 if (next + ouc_size(0) > end)
2803 uc = xcalloc(1, sizeof(*uc));
2804 strbuf_init(&uc->ident, ident_len);
2805 strbuf_add(&uc->ident, ident, ident_len);
2806 load_sha1_stat(&uc->ss_info_exclude,
2807 next + ouc_offset(info_exclude_stat),
2808 next + ouc_offset(info_exclude_sha1));
2809 load_sha1_stat(&uc->ss_excludes_file,
2810 next + ouc_offset(excludes_file_stat),
2811 next + ouc_offset(excludes_file_sha1));
2812 uc->dir_flags = get_be32(next + ouc_offset(dir_flags));
2813 exclude_per_dir = (const char *)next + ouc_offset(exclude_per_dir);
2814 uc->exclude_per_dir = xstrdup(exclude_per_dir);
2815 /* NUL after exclude_per_dir is covered by sizeof(*ouc) */
2816 next += ouc_size(strlen(exclude_per_dir));
2820 len = decode_varint(&next);
2821 if (next > end || len == 0)
2824 rd.valid = ewah_new();
2825 rd.check_only = ewah_new();
2826 rd.sha1_valid = ewah_new();
2830 ALLOC_ARRAY(rd.ucd, len);
2832 if (read_one_dir(&uc->root, &rd) || rd.index != len)
2836 len = ewah_read_mmap(rd.valid, next, end - next);
2841 len = ewah_read_mmap(rd.check_only, next, end - next);
2846 len = ewah_read_mmap(rd.sha1_valid, next, end - next);
2850 ewah_each_bit(rd.check_only, set_check_only, &rd);
2851 rd.data = next + len;
2852 ewah_each_bit(rd.valid, read_stat, &rd);
2853 ewah_each_bit(rd.sha1_valid, read_sha1, &rd);
2858 ewah_free(rd.valid);
2859 ewah_free(rd.check_only);
2860 ewah_free(rd.sha1_valid);
2863 free_untracked_cache(uc);
2869 static void invalidate_one_directory(struct untracked_cache *uc,
2870 struct untracked_cache_dir *ucd)
2872 uc->dir_invalidated++;
2874 ucd->untracked_nr = 0;
2878 * Normally when an entry is added or removed from a directory,
2879 * invalidating that directory is enough. No need to touch its
2880 * ancestors. When a directory is shown as "foo/bar/" in git-status
2881 * however, deleting or adding an entry may have cascading effect.
2883 * Say the "foo/bar/file" has become untracked, we need to tell the
2884 * untracked_cache_dir of "foo" that "bar/" is not an untracked
2885 * directory any more (because "bar" is managed by foo as an untracked
2888 * Similarly, if "foo/bar/file" moves from untracked to tracked and it
2889 * was the last untracked entry in the entire "foo", we should show
2890 * "foo/" instead. Which means we have to invalidate past "bar" up to
2893 * This function traverses all directories from root to leaf. If there
2894 * is a chance of one of the above cases happening, we invalidate back
2895 * to root. Otherwise we just invalidate the leaf. There may be a more
2896 * sophisticated way than checking for SHOW_OTHER_DIRECTORIES to
2897 * detect these cases and avoid unnecessary invalidation, for example,
2898 * checking for the untracked entry named "bar/" in "foo", but for now
2899 * stick to something safe and simple.
2901 static int invalidate_one_component(struct untracked_cache *uc,
2902 struct untracked_cache_dir *dir,
2903 const char *path, int len)
2905 const char *rest = strchr(path, '/');
2908 int component_len = rest - path;
2909 struct untracked_cache_dir *d =
2910 lookup_untracked(uc, dir, path, component_len);
2912 invalidate_one_component(uc, d, rest + 1,
2913 len - (component_len + 1));
2915 invalidate_one_directory(uc, dir);
2919 invalidate_one_directory(uc, dir);
2920 return uc->dir_flags & DIR_SHOW_OTHER_DIRECTORIES;
2923 void untracked_cache_invalidate_path(struct index_state *istate,
2926 if (!istate->untracked || !istate->untracked->root)
2928 invalidate_one_component(istate->untracked, istate->untracked->root,
2929 path, strlen(path));
2932 void untracked_cache_remove_from_index(struct index_state *istate,
2935 untracked_cache_invalidate_path(istate, path);
2938 void untracked_cache_add_to_index(struct index_state *istate,
2941 untracked_cache_invalidate_path(istate, path);
2944 /* Update gitfile and core.worktree setting to connect work tree and git dir */
2945 void connect_work_tree_and_git_dir(const char *work_tree_, const char *git_dir_)
2947 struct strbuf gitfile_sb = STRBUF_INIT;
2948 struct strbuf cfg_sb = STRBUF_INIT;
2949 struct strbuf rel_path = STRBUF_INIT;
2950 char *git_dir, *work_tree;
2952 /* Prepare .git file */
2953 strbuf_addf(&gitfile_sb, "%s/.git", work_tree_);
2954 if (safe_create_leading_directories_const(gitfile_sb.buf))
2955 die(_("could not create directories for %s"), gitfile_sb.buf);
2957 /* Prepare config file */
2958 strbuf_addf(&cfg_sb, "%s/config", git_dir_);
2959 if (safe_create_leading_directories_const(cfg_sb.buf))
2960 die(_("could not create directories for %s"), cfg_sb.buf);
2962 git_dir = real_pathdup(git_dir_, 1);
2963 work_tree = real_pathdup(work_tree_, 1);
2965 /* Write .git file */
2966 write_file(gitfile_sb.buf, "gitdir: %s",
2967 relative_path(git_dir, work_tree, &rel_path));
2968 /* Update core.worktree setting */
2969 git_config_set_in_file(cfg_sb.buf, "core.worktree",
2970 relative_path(work_tree, git_dir, &rel_path));
2972 strbuf_release(&gitfile_sb);
2973 strbuf_release(&cfg_sb);
2974 strbuf_release(&rel_path);
2980 * Migrate the git directory of the given path from old_git_dir to new_git_dir.
2982 void relocate_gitdir(const char *path, const char *old_git_dir, const char *new_git_dir)
2984 if (rename(old_git_dir, new_git_dir) < 0)
2985 die_errno(_("could not migrate git directory from '%s' to '%s'"),
2986 old_git_dir, new_git_dir);
2988 connect_work_tree_and_git_dir(path, new_git_dir);