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"
21 #include "fsmonitor.h"
22 #include "submodule-config.h"
25 * Tells read_directory_recursive how a file or directory should be treated.
26 * Values are ordered by significance, e.g. if a directory contains both
27 * excluded and untracked files, it is listed as untracked because
28 * path_untracked > path_excluded.
38 * Support data structure for our opendir/readdir/closedir wrappers
42 struct untracked_cache_dir *untracked;
48 struct untracked_cache_dir *ucd;
51 static enum path_treatment read_directory_recursive(struct dir_struct *dir,
52 struct index_state *istate, const char *path, int len,
53 struct untracked_cache_dir *untracked,
54 int check_only, int stop_at_first_file, const struct pathspec *pathspec);
55 static int get_dtype(struct dirent *de, struct index_state *istate,
56 const char *path, int len);
58 int count_slashes(const char *s)
67 int fspathcmp(const char *a, const char *b)
69 return ignore_case ? strcasecmp(a, b) : strcmp(a, b);
72 int fspathncmp(const char *a, const char *b, size_t count)
74 return ignore_case ? strncasecmp(a, b, count) : strncmp(a, b, count);
77 int git_fnmatch(const struct pathspec_item *item,
78 const char *pattern, const char *string,
82 if (ps_strncmp(item, pattern, string, prefix))
87 if (item->flags & PATHSPEC_ONESTAR) {
88 int pattern_len = strlen(++pattern);
89 int string_len = strlen(string);
90 return string_len < pattern_len ||
91 ps_strcmp(item, pattern,
92 string + string_len - pattern_len);
94 if (item->magic & PATHSPEC_GLOB)
95 return wildmatch(pattern, string,
97 (item->magic & PATHSPEC_ICASE ? WM_CASEFOLD : 0));
99 /* wildmatch has not learned no FNM_PATHNAME mode yet */
100 return wildmatch(pattern, string,
101 item->magic & PATHSPEC_ICASE ? WM_CASEFOLD : 0);
104 static int fnmatch_icase_mem(const char *pattern, int patternlen,
105 const char *string, int stringlen,
109 struct strbuf pat_buf = STRBUF_INIT;
110 struct strbuf str_buf = STRBUF_INIT;
111 const char *use_pat = pattern;
112 const char *use_str = string;
114 if (pattern[patternlen]) {
115 strbuf_add(&pat_buf, pattern, patternlen);
116 use_pat = pat_buf.buf;
118 if (string[stringlen]) {
119 strbuf_add(&str_buf, string, stringlen);
120 use_str = str_buf.buf;
124 flags |= WM_CASEFOLD;
125 match_status = wildmatch(use_pat, use_str, flags);
127 strbuf_release(&pat_buf);
128 strbuf_release(&str_buf);
133 static size_t common_prefix_len(const struct pathspec *pathspec)
139 * ":(icase)path" is treated as a pathspec full of
140 * wildcard. In other words, only prefix is considered common
141 * prefix. If the pathspec is abc/foo abc/bar, running in
142 * subdir xyz, the common prefix is still xyz, not xuz/abc as
145 GUARD_PATHSPEC(pathspec,
154 for (n = 0; n < pathspec->nr; n++) {
155 size_t i = 0, len = 0, item_len;
156 if (pathspec->items[n].magic & PATHSPEC_EXCLUDE)
158 if (pathspec->items[n].magic & PATHSPEC_ICASE)
159 item_len = pathspec->items[n].prefix;
161 item_len = pathspec->items[n].nowildcard_len;
162 while (i < item_len && (n == 0 || i < max)) {
163 char c = pathspec->items[n].match[i];
164 if (c != pathspec->items[0].match[i])
170 if (n == 0 || len < max) {
180 * Returns a copy of the longest leading path common among all
183 char *common_prefix(const struct pathspec *pathspec)
185 unsigned long len = common_prefix_len(pathspec);
187 return len ? xmemdupz(pathspec->items[0].match, len) : NULL;
190 int fill_directory(struct dir_struct *dir,
191 struct index_state *istate,
192 const struct pathspec *pathspec)
198 * Calculate common prefix for the pathspec, and
199 * use that to optimize the directory walk
201 prefix_len = common_prefix_len(pathspec);
202 prefix = prefix_len ? pathspec->items[0].match : "";
204 /* Read the directory and prune it */
205 read_directory(dir, istate, prefix, prefix_len, pathspec);
210 int within_depth(const char *name, int namelen,
211 int depth, int max_depth)
213 const char *cp = name, *cpe = name + namelen;
219 if (depth > max_depth)
226 * Read the contents of the blob with the given OID into a buffer.
227 * Append a trailing LF to the end if the last line doesn't have one.
230 * -1 when the OID is invalid or unknown or does not refer to a blob.
231 * 0 when the blob is empty.
232 * 1 along with { data, size } of the (possibly augmented) buffer
235 * Optionally updates the given oid_stat with the given OID (when valid).
237 static int do_read_blob(const struct object_id *oid, struct oid_stat *oid_stat,
238 size_t *size_out, char **data_out)
240 enum object_type type;
247 data = read_object_file(oid, &type, &sz);
248 if (!data || type != OBJ_BLOB) {
254 memset(&oid_stat->stat, 0, sizeof(oid_stat->stat));
255 oidcpy(&oid_stat->oid, oid);
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,
656 size_t *size_out, char **data_out,
657 struct oid_stat *oid_stat)
662 pos = index_name_pos(istate, path, len);
665 if (!ce_skip_worktree(istate->cache[pos]))
668 return do_read_blob(&istate->cache[pos]->oid, oid_stat, size_out, data_out);
672 * Frees memory within el which was allocated for exclude patterns and
673 * the file buffer. Does not free el itself.
675 void clear_exclude_list(struct exclude_list *el)
679 for (i = 0; i < el->nr; i++)
680 free(el->excludes[i]);
684 memset(el, 0, sizeof(*el));
687 static void trim_trailing_spaces(char *buf)
689 char *p, *last_space = NULL;
691 for (p = buf; *p; p++)
711 * Given a subdirectory name and "dir" of the current directory,
712 * search the subdir in "dir" and return it, or create a new one if it
713 * does not exist in "dir".
715 * If "name" has the trailing slash, it'll be excluded in the search.
717 static struct untracked_cache_dir *lookup_untracked(struct untracked_cache *uc,
718 struct untracked_cache_dir *dir,
719 const char *name, int len)
722 struct untracked_cache_dir *d;
725 if (len && name[len - 1] == '/')
729 while (last > first) {
730 int cmp, next = (last + first) >> 1;
732 cmp = strncmp(name, d->name, len);
733 if (!cmp && strlen(d->name) > len)
745 FLEX_ALLOC_MEM(d, name, name, len);
747 ALLOC_GROW(dir->dirs, dir->dirs_nr + 1, dir->dirs_alloc);
748 MOVE_ARRAY(dir->dirs + first + 1, dir->dirs + first,
749 dir->dirs_nr - first);
751 dir->dirs[first] = d;
755 static void do_invalidate_gitignore(struct untracked_cache_dir *dir)
759 dir->untracked_nr = 0;
760 for (i = 0; i < dir->dirs_nr; i++)
761 do_invalidate_gitignore(dir->dirs[i]);
764 static void invalidate_gitignore(struct untracked_cache *uc,
765 struct untracked_cache_dir *dir)
767 uc->gitignore_invalidated++;
768 do_invalidate_gitignore(dir);
771 static void invalidate_directory(struct untracked_cache *uc,
772 struct untracked_cache_dir *dir)
777 * Invalidation increment here is just roughly correct. If
778 * untracked_nr or any of dirs[].recurse is non-zero, we
779 * should increment dir_invalidated too. But that's more
783 uc->dir_invalidated++;
786 dir->untracked_nr = 0;
787 for (i = 0; i < dir->dirs_nr; i++)
788 dir->dirs[i]->recurse = 0;
791 static int add_excludes_from_buffer(char *buf, size_t size,
792 const char *base, int baselen,
793 struct exclude_list *el);
796 * Given a file with name "fname", read it (either from disk, or from
797 * an index if 'istate' is non-null), parse it and store the
798 * exclude rules in "el".
800 * If "ss" is not NULL, compute SHA-1 of the exclude file and fill
801 * stat data from disk (only valid if add_excludes returns zero). If
802 * ss_valid is non-zero, "ss" must contain good value as input.
804 static int add_excludes(const char *fname, const char *base, int baselen,
805 struct exclude_list *el, struct index_state *istate,
806 struct oid_stat *oid_stat)
814 fd = open(fname, O_RDONLY);
815 if (fd < 0 || fstat(fd, &st) < 0) {
817 warn_on_fopen_errors(fname);
822 r = read_skip_worktree_file_from_index(istate, fname,
828 size = xsize_t(st.st_size);
831 fill_stat_data(&oid_stat->stat, &st);
832 oidcpy(&oid_stat->oid, &empty_blob_oid);
838 buf = xmallocz(size);
839 if (read_in_full(fd, buf, size) != size) {
848 if (oid_stat->valid &&
849 !match_stat_data_racy(istate, &oid_stat->stat, &st))
850 ; /* no content change, ss->sha1 still good */
852 (pos = index_name_pos(istate, fname, strlen(fname))) >= 0 &&
853 !ce_stage(istate->cache[pos]) &&
854 ce_uptodate(istate->cache[pos]) &&
855 !would_convert_to_git(istate, fname))
856 oidcpy(&oid_stat->oid,
857 &istate->cache[pos]->oid);
859 hash_object_file(buf, size, "blob",
861 fill_stat_data(&oid_stat->stat, &st);
866 add_excludes_from_buffer(buf, size, base, baselen, el);
870 static int add_excludes_from_buffer(char *buf, size_t size,
871 const char *base, int baselen,
872 struct exclude_list *el)
879 if (skip_utf8_bom(&buf, size))
880 size -= buf - el->filebuf;
884 for (i = 0; i < size; i++) {
885 if (buf[i] == '\n') {
886 if (entry != buf + i && entry[0] != '#') {
887 buf[i - (i && buf[i-1] == '\r')] = 0;
888 trim_trailing_spaces(entry);
889 add_exclude(entry, base, baselen, el, lineno);
898 int add_excludes_from_file_to_list(const char *fname, const char *base,
899 int baselen, struct exclude_list *el,
900 struct index_state *istate)
902 return add_excludes(fname, base, baselen, el, istate, NULL);
905 int add_excludes_from_blob_to_list(
906 struct object_id *oid,
907 const char *base, int baselen,
908 struct exclude_list *el)
914 r = do_read_blob(oid, NULL, &size, &buf);
918 add_excludes_from_buffer(buf, size, base, baselen, el);
922 struct exclude_list *add_exclude_list(struct dir_struct *dir,
923 int group_type, const char *src)
925 struct exclude_list *el;
926 struct exclude_list_group *group;
928 group = &dir->exclude_list_group[group_type];
929 ALLOC_GROW(group->el, group->nr + 1, group->alloc);
930 el = &group->el[group->nr++];
931 memset(el, 0, sizeof(*el));
937 * Used to set up core.excludesfile and .git/info/exclude lists.
939 static void add_excludes_from_file_1(struct dir_struct *dir, const char *fname,
940 struct oid_stat *oid_stat)
942 struct exclude_list *el;
944 * catch setup_standard_excludes() that's called before
945 * dir->untracked is assigned. That function behaves
946 * differently when dir->untracked is non-NULL.
949 dir->unmanaged_exclude_files++;
950 el = add_exclude_list(dir, EXC_FILE, fname);
951 if (add_excludes(fname, "", 0, el, NULL, oid_stat) < 0)
952 die("cannot use %s as an exclude file", fname);
955 void add_excludes_from_file(struct dir_struct *dir, const char *fname)
957 dir->unmanaged_exclude_files++; /* see validate_untracked_cache() */
958 add_excludes_from_file_1(dir, fname, NULL);
961 int match_basename(const char *basename, int basenamelen,
962 const char *pattern, int prefix, int patternlen,
965 if (prefix == patternlen) {
966 if (patternlen == basenamelen &&
967 !fspathncmp(pattern, basename, basenamelen))
969 } else if (flags & EXC_FLAG_ENDSWITH) {
970 /* "*literal" matching against "fooliteral" */
971 if (patternlen - 1 <= basenamelen &&
972 !fspathncmp(pattern + 1,
973 basename + basenamelen - (patternlen - 1),
977 if (fnmatch_icase_mem(pattern, patternlen,
978 basename, basenamelen,
985 int match_pathname(const char *pathname, int pathlen,
986 const char *base, int baselen,
987 const char *pattern, int prefix, int patternlen,
994 * match with FNM_PATHNAME; the pattern has base implicitly
997 if (*pattern == '/') {
1004 * baselen does not count the trailing slash. base[] may or
1005 * may not end with a trailing slash though.
1007 if (pathlen < baselen + 1 ||
1008 (baselen && pathname[baselen] != '/') ||
1009 fspathncmp(pathname, base, baselen))
1012 namelen = baselen ? pathlen - baselen - 1 : pathlen;
1013 name = pathname + pathlen - namelen;
1017 * if the non-wildcard part is longer than the
1018 * remaining pathname, surely it cannot match.
1020 if (prefix > namelen)
1023 if (fspathncmp(pattern, name, prefix))
1026 patternlen -= prefix;
1031 * If the whole pattern did not have a wildcard,
1032 * then our prefix match is all we need; we
1033 * do not need to call fnmatch at all.
1035 if (!patternlen && !namelen)
1039 return fnmatch_icase_mem(pattern, patternlen,
1045 * Scan the given exclude list in reverse to see whether pathname
1046 * should be ignored. The first match (i.e. the last on the list), if
1047 * any, determines the fate. Returns the exclude_list element which
1048 * matched, or NULL for undecided.
1050 static struct exclude *last_exclude_matching_from_list(const char *pathname,
1052 const char *basename,
1054 struct exclude_list *el,
1055 struct index_state *istate)
1057 struct exclude *exc = NULL; /* undecided */
1061 return NULL; /* undefined */
1063 for (i = el->nr - 1; 0 <= i; i--) {
1064 struct exclude *x = el->excludes[i];
1065 const char *exclude = x->pattern;
1066 int prefix = x->nowildcardlen;
1068 if (x->flags & EXC_FLAG_MUSTBEDIR) {
1069 if (*dtype == DT_UNKNOWN)
1070 *dtype = get_dtype(NULL, istate, pathname, pathlen);
1071 if (*dtype != DT_DIR)
1075 if (x->flags & EXC_FLAG_NODIR) {
1076 if (match_basename(basename,
1077 pathlen - (basename - pathname),
1078 exclude, prefix, x->patternlen,
1086 assert(x->baselen == 0 || x->base[x->baselen - 1] == '/');
1087 if (match_pathname(pathname, pathlen,
1088 x->base, x->baselen ? x->baselen - 1 : 0,
1089 exclude, prefix, x->patternlen, x->flags)) {
1098 * Scan the list and let the last match determine the fate.
1099 * Return 1 for exclude, 0 for include and -1 for undecided.
1101 int is_excluded_from_list(const char *pathname,
1102 int pathlen, const char *basename, int *dtype,
1103 struct exclude_list *el, struct index_state *istate)
1105 struct exclude *exclude;
1106 exclude = last_exclude_matching_from_list(pathname, pathlen, basename,
1109 return exclude->flags & EXC_FLAG_NEGATIVE ? 0 : 1;
1110 return -1; /* undecided */
1113 static struct exclude *last_exclude_matching_from_lists(struct dir_struct *dir,
1114 struct index_state *istate,
1115 const char *pathname, int pathlen, const char *basename,
1119 struct exclude_list_group *group;
1120 struct exclude *exclude;
1121 for (i = EXC_CMDL; i <= EXC_FILE; i++) {
1122 group = &dir->exclude_list_group[i];
1123 for (j = group->nr - 1; j >= 0; j--) {
1124 exclude = last_exclude_matching_from_list(
1125 pathname, pathlen, basename, dtype_p,
1126 &group->el[j], istate);
1135 * Loads the per-directory exclude list for the substring of base
1136 * which has a char length of baselen.
1138 static void prep_exclude(struct dir_struct *dir,
1139 struct index_state *istate,
1140 const char *base, int baselen)
1142 struct exclude_list_group *group;
1143 struct exclude_list *el;
1144 struct exclude_stack *stk = NULL;
1145 struct untracked_cache_dir *untracked;
1148 group = &dir->exclude_list_group[EXC_DIRS];
1151 * Pop the exclude lists from the EXCL_DIRS exclude_list_group
1152 * which originate from directories not in the prefix of the
1153 * path being checked.
1155 while ((stk = dir->exclude_stack) != NULL) {
1156 if (stk->baselen <= baselen &&
1157 !strncmp(dir->basebuf.buf, base, stk->baselen))
1159 el = &group->el[dir->exclude_stack->exclude_ix];
1160 dir->exclude_stack = stk->prev;
1161 dir->exclude = NULL;
1162 free((char *)el->src); /* see strbuf_detach() below */
1163 clear_exclude_list(el);
1168 /* Skip traversing into sub directories if the parent is excluded */
1173 * Lazy initialization. All call sites currently just
1174 * memset(dir, 0, sizeof(*dir)) before use. Changing all of
1175 * them seems lots of work for little benefit.
1177 if (!dir->basebuf.buf)
1178 strbuf_init(&dir->basebuf, PATH_MAX);
1180 /* Read from the parent directories and push them down. */
1181 current = stk ? stk->baselen : -1;
1182 strbuf_setlen(&dir->basebuf, current < 0 ? 0 : current);
1184 untracked = stk ? stk->ucd : dir->untracked->root;
1188 while (current < baselen) {
1190 struct oid_stat oid_stat;
1192 stk = xcalloc(1, sizeof(*stk));
1197 cp = strchr(base + current + 1, '/');
1199 die("oops in prep_exclude");
1202 lookup_untracked(dir->untracked, untracked,
1204 cp - base - current);
1206 stk->prev = dir->exclude_stack;
1207 stk->baselen = cp - base;
1208 stk->exclude_ix = group->nr;
1209 stk->ucd = untracked;
1210 el = add_exclude_list(dir, EXC_DIRS, NULL);
1211 strbuf_add(&dir->basebuf, base + current, stk->baselen - current);
1212 assert(stk->baselen == dir->basebuf.len);
1214 /* Abort if the directory is excluded */
1217 dir->basebuf.buf[stk->baselen - 1] = 0;
1218 dir->exclude = last_exclude_matching_from_lists(dir,
1220 dir->basebuf.buf, stk->baselen - 1,
1221 dir->basebuf.buf + current, &dt);
1222 dir->basebuf.buf[stk->baselen - 1] = '/';
1224 dir->exclude->flags & EXC_FLAG_NEGATIVE)
1225 dir->exclude = NULL;
1227 dir->exclude_stack = stk;
1232 /* Try to read per-directory file */
1233 oidclr(&oid_stat.oid);
1235 if (dir->exclude_per_dir &&
1237 * If we know that no files have been added in
1238 * this directory (i.e. valid_cached_dir() has
1239 * been executed and set untracked->valid) ..
1241 (!untracked || !untracked->valid ||
1243 * .. and .gitignore does not exist before
1244 * (i.e. null exclude_sha1). Then we can skip
1245 * loading .gitignore, which would result in
1248 !is_null_sha1(untracked->exclude_sha1))) {
1250 * dir->basebuf gets reused by the traversal, but we
1251 * need fname to remain unchanged to ensure the src
1252 * member of each struct exclude correctly
1253 * back-references its source file. Other invocations
1254 * of add_exclude_list provide stable strings, so we
1255 * strbuf_detach() and free() here in the caller.
1257 struct strbuf sb = STRBUF_INIT;
1258 strbuf_addbuf(&sb, &dir->basebuf);
1259 strbuf_addstr(&sb, dir->exclude_per_dir);
1260 el->src = strbuf_detach(&sb, NULL);
1261 add_excludes(el->src, el->src, stk->baselen, el, istate,
1262 untracked ? &oid_stat : NULL);
1265 * NEEDSWORK: when untracked cache is enabled, prep_exclude()
1266 * will first be called in valid_cached_dir() then maybe many
1267 * times more in last_exclude_matching(). When the cache is
1268 * used, last_exclude_matching() will not be called and
1269 * reading .gitignore content will be a waste.
1271 * So when it's called by valid_cached_dir() and we can get
1272 * .gitignore SHA-1 from the index (i.e. .gitignore is not
1273 * modified on work tree), we could delay reading the
1274 * .gitignore content until we absolutely need it in
1275 * last_exclude_matching(). Be careful about ignore rule
1276 * order, though, if you do that.
1279 hashcmp(oid_stat.oid.hash, untracked->exclude_sha1)) {
1280 invalidate_gitignore(dir->untracked, untracked);
1281 hashcpy(untracked->exclude_sha1, oid_stat.oid.hash);
1283 dir->exclude_stack = stk;
1284 current = stk->baselen;
1286 strbuf_setlen(&dir->basebuf, baselen);
1290 * Loads the exclude lists for the directory containing pathname, then
1291 * scans all exclude lists to determine whether pathname is excluded.
1292 * Returns the exclude_list element which matched, or NULL for
1295 struct exclude *last_exclude_matching(struct dir_struct *dir,
1296 struct index_state *istate,
1297 const char *pathname,
1300 int pathlen = strlen(pathname);
1301 const char *basename = strrchr(pathname, '/');
1302 basename = (basename) ? basename+1 : pathname;
1304 prep_exclude(dir, istate, pathname, basename-pathname);
1307 return dir->exclude;
1309 return last_exclude_matching_from_lists(dir, istate, pathname, pathlen,
1314 * Loads the exclude lists for the directory containing pathname, then
1315 * scans all exclude lists to determine whether pathname is excluded.
1316 * Returns 1 if true, otherwise 0.
1318 int is_excluded(struct dir_struct *dir, struct index_state *istate,
1319 const char *pathname, int *dtype_p)
1321 struct exclude *exclude =
1322 last_exclude_matching(dir, istate, pathname, dtype_p);
1324 return exclude->flags & EXC_FLAG_NEGATIVE ? 0 : 1;
1328 static struct dir_entry *dir_entry_new(const char *pathname, int len)
1330 struct dir_entry *ent;
1332 FLEX_ALLOC_MEM(ent, name, pathname, len);
1337 static struct dir_entry *dir_add_name(struct dir_struct *dir,
1338 struct index_state *istate,
1339 const char *pathname, int len)
1341 if (index_file_exists(istate, pathname, len, ignore_case))
1344 ALLOC_GROW(dir->entries, dir->nr+1, dir->alloc);
1345 return dir->entries[dir->nr++] = dir_entry_new(pathname, len);
1348 struct dir_entry *dir_add_ignored(struct dir_struct *dir,
1349 struct index_state *istate,
1350 const char *pathname, int len)
1352 if (!index_name_is_other(istate, pathname, len))
1355 ALLOC_GROW(dir->ignored, dir->ignored_nr+1, dir->ignored_alloc);
1356 return dir->ignored[dir->ignored_nr++] = dir_entry_new(pathname, len);
1360 index_nonexistent = 0,
1366 * Do not use the alphabetically sorted index to look up
1367 * the directory name; instead, use the case insensitive
1370 static enum exist_status directory_exists_in_index_icase(struct index_state *istate,
1371 const char *dirname, int len)
1373 struct cache_entry *ce;
1375 if (index_dir_exists(istate, dirname, len))
1376 return index_directory;
1378 ce = index_file_exists(istate, dirname, len, ignore_case);
1379 if (ce && S_ISGITLINK(ce->ce_mode))
1380 return index_gitdir;
1382 return index_nonexistent;
1386 * The index sorts alphabetically by entry name, which
1387 * means that a gitlink sorts as '\0' at the end, while
1388 * a directory (which is defined not as an entry, but as
1389 * the files it contains) will sort with the '/' at the
1392 static enum exist_status directory_exists_in_index(struct index_state *istate,
1393 const char *dirname, int len)
1398 return directory_exists_in_index_icase(istate, dirname, len);
1400 pos = index_name_pos(istate, dirname, len);
1403 while (pos < istate->cache_nr) {
1404 const struct cache_entry *ce = istate->cache[pos++];
1405 unsigned char endchar;
1407 if (strncmp(ce->name, dirname, len))
1409 endchar = ce->name[len];
1413 return index_directory;
1414 if (!endchar && S_ISGITLINK(ce->ce_mode))
1415 return index_gitdir;
1417 return index_nonexistent;
1421 * When we find a directory when traversing the filesystem, we
1422 * have three distinct cases:
1425 * - see it as a directory
1428 * and which one we choose depends on a combination of existing
1429 * git index contents and the flags passed into the directory
1430 * traversal routine.
1432 * Case 1: If we *already* have entries in the index under that
1433 * directory name, we always recurse into the directory to see
1436 * Case 2: If we *already* have that directory name as a gitlink,
1437 * we always continue to see it as a gitlink, regardless of whether
1438 * there is an actual git directory there or not (it might not
1439 * be checked out as a subproject!)
1441 * Case 3: if we didn't have it in the index previously, we
1442 * have a few sub-cases:
1444 * (a) if "show_other_directories" is true, we show it as
1445 * just a directory, unless "hide_empty_directories" is
1446 * also true, in which case we need to check if it contains any
1447 * untracked and / or ignored files.
1448 * (b) if it looks like a git directory, and we don't have
1449 * 'no_gitlinks' set we treat it as a gitlink, and show it
1451 * (c) otherwise, we recurse into it.
1453 static enum path_treatment treat_directory(struct dir_struct *dir,
1454 struct index_state *istate,
1455 struct untracked_cache_dir *untracked,
1456 const char *dirname, int len, int baselen, int exclude,
1457 const struct pathspec *pathspec)
1459 /* The "len-1" is to strip the final '/' */
1460 switch (directory_exists_in_index(istate, dirname, len-1)) {
1461 case index_directory:
1462 return path_recurse;
1467 case index_nonexistent:
1468 if (dir->flags & DIR_SHOW_OTHER_DIRECTORIES)
1471 (dir->flags & DIR_SHOW_IGNORED_TOO) &&
1472 (dir->flags & DIR_SHOW_IGNORED_TOO_MODE_MATCHING)) {
1475 * This is an excluded directory and we are
1476 * showing ignored paths that match an exclude
1477 * pattern. (e.g. show directory as ignored
1478 * only if it matches an exclude pattern).
1479 * This path will either be 'path_excluded`
1480 * (if we are showing empty directories or if
1481 * the directory is not empty), or will be
1482 * 'path_none' (empty directory, and we are
1483 * not showing empty directories).
1485 if (!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))
1486 return path_excluded;
1488 if (read_directory_recursive(dir, istate, dirname, len,
1489 untracked, 1, 1, pathspec) == path_excluded)
1490 return path_excluded;
1494 if (!(dir->flags & DIR_NO_GITLINKS)) {
1495 struct object_id oid;
1496 if (resolve_gitlink_ref(dirname, "HEAD", &oid) == 0)
1497 return exclude ? path_excluded : path_untracked;
1499 return path_recurse;
1502 /* This is the "show_other_directories" case */
1504 if (!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))
1505 return exclude ? path_excluded : path_untracked;
1507 untracked = lookup_untracked(dir->untracked, untracked,
1508 dirname + baselen, len - baselen);
1511 * If this is an excluded directory, then we only need to check if
1512 * the directory contains any files.
1514 return read_directory_recursive(dir, istate, dirname, len,
1515 untracked, 1, exclude, pathspec);
1519 * This is an inexact early pruning of any recursive directory
1520 * reading - if the path cannot possibly be in the pathspec,
1521 * return true, and we'll skip it early.
1523 static int simplify_away(const char *path, int pathlen,
1524 const struct pathspec *pathspec)
1528 if (!pathspec || !pathspec->nr)
1531 GUARD_PATHSPEC(pathspec,
1540 for (i = 0; i < pathspec->nr; i++) {
1541 const struct pathspec_item *item = &pathspec->items[i];
1542 int len = item->nowildcard_len;
1546 if (!ps_strncmp(item, item->match, path, len))
1554 * This function tells us whether an excluded path matches a
1555 * list of "interesting" pathspecs. That is, whether a path matched
1556 * by any of the pathspecs could possibly be ignored by excluding
1557 * the specified path. This can happen if:
1559 * 1. the path is mentioned explicitly in the pathspec
1561 * 2. the path is a directory prefix of some element in the
1564 static int exclude_matches_pathspec(const char *path, int pathlen,
1565 const struct pathspec *pathspec)
1569 if (!pathspec || !pathspec->nr)
1572 GUARD_PATHSPEC(pathspec,
1580 for (i = 0; i < pathspec->nr; i++) {
1581 const struct pathspec_item *item = &pathspec->items[i];
1582 int len = item->nowildcard_len;
1584 if (len == pathlen &&
1585 !ps_strncmp(item, item->match, path, pathlen))
1587 if (len > pathlen &&
1588 item->match[pathlen] == '/' &&
1589 !ps_strncmp(item, item->match, path, pathlen))
1595 static int get_index_dtype(struct index_state *istate,
1596 const char *path, int len)
1599 const struct cache_entry *ce;
1601 ce = index_file_exists(istate, path, len, 0);
1603 if (!ce_uptodate(ce))
1605 if (S_ISGITLINK(ce->ce_mode))
1608 * Nobody actually cares about the
1609 * difference between DT_LNK and DT_REG
1614 /* Try to look it up as a directory */
1615 pos = index_name_pos(istate, path, len);
1619 while (pos < istate->cache_nr) {
1620 ce = istate->cache[pos++];
1621 if (strncmp(ce->name, path, len))
1623 if (ce->name[len] > '/')
1625 if (ce->name[len] < '/')
1627 if (!ce_uptodate(ce))
1628 break; /* continue? */
1634 static int get_dtype(struct dirent *de, struct index_state *istate,
1635 const char *path, int len)
1637 int dtype = de ? DTYPE(de) : DT_UNKNOWN;
1640 if (dtype != DT_UNKNOWN)
1642 dtype = get_index_dtype(istate, path, len);
1643 if (dtype != DT_UNKNOWN)
1645 if (lstat(path, &st))
1647 if (S_ISREG(st.st_mode))
1649 if (S_ISDIR(st.st_mode))
1651 if (S_ISLNK(st.st_mode))
1656 static enum path_treatment treat_one_path(struct dir_struct *dir,
1657 struct untracked_cache_dir *untracked,
1658 struct index_state *istate,
1659 struct strbuf *path,
1661 const struct pathspec *pathspec,
1662 int dtype, struct dirent *de)
1665 int has_path_in_index = !!index_file_exists(istate, path->buf, path->len, ignore_case);
1666 enum path_treatment path_treatment;
1668 if (dtype == DT_UNKNOWN)
1669 dtype = get_dtype(de, istate, path->buf, path->len);
1671 /* Always exclude indexed files */
1672 if (dtype != DT_DIR && has_path_in_index)
1676 * When we are looking at a directory P in the working tree,
1677 * there are three cases:
1679 * (1) P exists in the index. Everything inside the directory P in
1680 * the working tree needs to go when P is checked out from the
1683 * (2) P does not exist in the index, but there is P/Q in the index.
1684 * We know P will stay a directory when we check out the contents
1685 * of the index, but we do not know yet if there is a directory
1686 * P/Q in the working tree to be killed, so we need to recurse.
1688 * (3) P does not exist in the index, and there is no P/Q in the index
1689 * to require P to be a directory, either. Only in this case, we
1690 * know that everything inside P will not be killed without
1693 if ((dir->flags & DIR_COLLECT_KILLED_ONLY) &&
1694 (dtype == DT_DIR) &&
1695 !has_path_in_index &&
1696 (directory_exists_in_index(istate, path->buf, path->len) == index_nonexistent))
1699 exclude = is_excluded(dir, istate, path->buf, &dtype);
1702 * Excluded? If we don't explicitly want to show
1703 * ignored files, ignore it
1705 if (exclude && !(dir->flags & (DIR_SHOW_IGNORED|DIR_SHOW_IGNORED_TOO)))
1706 return path_excluded;
1712 strbuf_addch(path, '/');
1713 path_treatment = treat_directory(dir, istate, untracked,
1714 path->buf, path->len,
1715 baselen, exclude, pathspec);
1717 * If 1) we only want to return directories that
1718 * match an exclude pattern and 2) this directory does
1719 * not match an exclude pattern but all of its
1720 * contents are excluded, then indicate that we should
1721 * recurse into this directory (instead of marking the
1722 * directory itself as an ignored path).
1725 path_treatment == path_excluded &&
1726 (dir->flags & DIR_SHOW_IGNORED_TOO) &&
1727 (dir->flags & DIR_SHOW_IGNORED_TOO_MODE_MATCHING))
1728 return path_recurse;
1729 return path_treatment;
1732 return exclude ? path_excluded : path_untracked;
1736 static enum path_treatment treat_path_fast(struct dir_struct *dir,
1737 struct untracked_cache_dir *untracked,
1738 struct cached_dir *cdir,
1739 struct index_state *istate,
1740 struct strbuf *path,
1742 const struct pathspec *pathspec)
1744 strbuf_setlen(path, baselen);
1746 strbuf_addstr(path, cdir->file);
1747 return path_untracked;
1749 strbuf_addstr(path, cdir->ucd->name);
1750 /* treat_one_path() does this before it calls treat_directory() */
1751 strbuf_complete(path, '/');
1752 if (cdir->ucd->check_only)
1754 * check_only is set as a result of treat_directory() getting
1755 * to its bottom. Verify again the same set of directories
1756 * with check_only set.
1758 return read_directory_recursive(dir, istate, path->buf, path->len,
1759 cdir->ucd, 1, 0, pathspec);
1761 * We get path_recurse in the first run when
1762 * directory_exists_in_index() returns index_nonexistent. We
1763 * are sure that new changes in the index does not impact the
1764 * outcome. Return now.
1766 return path_recurse;
1769 static enum path_treatment treat_path(struct dir_struct *dir,
1770 struct untracked_cache_dir *untracked,
1771 struct cached_dir *cdir,
1772 struct index_state *istate,
1773 struct strbuf *path,
1775 const struct pathspec *pathspec)
1778 struct dirent *de = cdir->de;
1781 return treat_path_fast(dir, untracked, cdir, istate, path,
1783 if (is_dot_or_dotdot(de->d_name) || !fspathcmp(de->d_name, ".git"))
1785 strbuf_setlen(path, baselen);
1786 strbuf_addstr(path, de->d_name);
1787 if (simplify_away(path->buf, path->len, pathspec))
1791 return treat_one_path(dir, untracked, istate, path, baselen, pathspec, dtype, de);
1794 static void add_untracked(struct untracked_cache_dir *dir, const char *name)
1798 ALLOC_GROW(dir->untracked, dir->untracked_nr + 1,
1799 dir->untracked_alloc);
1800 dir->untracked[dir->untracked_nr++] = xstrdup(name);
1803 static int valid_cached_dir(struct dir_struct *dir,
1804 struct untracked_cache_dir *untracked,
1805 struct index_state *istate,
1806 struct strbuf *path,
1815 * With fsmonitor, we can trust the untracked cache's valid field.
1817 refresh_fsmonitor(istate);
1818 if (!(dir->untracked->use_fsmonitor && untracked->valid)) {
1819 if (lstat(path->len ? path->buf : ".", &st)) {
1820 memset(&untracked->stat_data, 0, sizeof(untracked->stat_data));
1823 if (!untracked->valid ||
1824 match_stat_data_racy(istate, &untracked->stat_data, &st)) {
1825 fill_stat_data(&untracked->stat_data, &st);
1830 if (untracked->check_only != !!check_only)
1834 * prep_exclude will be called eventually on this directory,
1835 * but it's called much later in last_exclude_matching(). We
1836 * need it now to determine the validity of the cache for this
1837 * path. The next calls will be nearly no-op, the way
1838 * prep_exclude() is designed.
1840 if (path->len && path->buf[path->len - 1] != '/') {
1841 strbuf_addch(path, '/');
1842 prep_exclude(dir, istate, path->buf, path->len);
1843 strbuf_setlen(path, path->len - 1);
1845 prep_exclude(dir, istate, path->buf, path->len);
1847 /* hopefully prep_exclude() haven't invalidated this entry... */
1848 return untracked->valid;
1851 static int open_cached_dir(struct cached_dir *cdir,
1852 struct dir_struct *dir,
1853 struct untracked_cache_dir *untracked,
1854 struct index_state *istate,
1855 struct strbuf *path,
1860 memset(cdir, 0, sizeof(*cdir));
1861 cdir->untracked = untracked;
1862 if (valid_cached_dir(dir, untracked, istate, path, check_only))
1864 c_path = path->len ? path->buf : ".";
1865 cdir->fdir = opendir(c_path);
1867 warning_errno(_("could not open directory '%s'"), c_path);
1868 if (dir->untracked) {
1869 invalidate_directory(dir->untracked, untracked);
1870 dir->untracked->dir_opened++;
1877 static int read_cached_dir(struct cached_dir *cdir)
1880 cdir->de = readdir(cdir->fdir);
1885 while (cdir->nr_dirs < cdir->untracked->dirs_nr) {
1886 struct untracked_cache_dir *d = cdir->untracked->dirs[cdir->nr_dirs];
1896 if (cdir->nr_files < cdir->untracked->untracked_nr) {
1897 struct untracked_cache_dir *d = cdir->untracked;
1898 cdir->file = d->untracked[cdir->nr_files++];
1904 static void close_cached_dir(struct cached_dir *cdir)
1907 closedir(cdir->fdir);
1909 * We have gone through this directory and found no untracked
1910 * entries. Mark it valid.
1912 if (cdir->untracked) {
1913 cdir->untracked->valid = 1;
1914 cdir->untracked->recurse = 1;
1919 * Read a directory tree. We currently ignore anything but
1920 * directories, regular files and symlinks. That's because git
1921 * doesn't handle them at all yet. Maybe that will change some
1924 * Also, we ignore the name ".git" (even if it is not a directory).
1925 * That likely will not change.
1927 * If 'stop_at_first_file' is specified, 'path_excluded' is returned
1928 * to signal that a file was found. This is the least significant value that
1929 * indicates that a file was encountered that does not depend on the order of
1930 * whether an untracked or exluded path was encountered first.
1932 * Returns the most significant path_treatment value encountered in the scan.
1933 * If 'stop_at_first_file' is specified, `path_excluded` is the most
1934 * significant path_treatment value that will be returned.
1937 static enum path_treatment read_directory_recursive(struct dir_struct *dir,
1938 struct index_state *istate, const char *base, int baselen,
1939 struct untracked_cache_dir *untracked, int check_only,
1940 int stop_at_first_file, const struct pathspec *pathspec)
1942 struct cached_dir cdir;
1943 enum path_treatment state, subdir_state, dir_state = path_none;
1944 struct strbuf path = STRBUF_INIT;
1946 strbuf_add(&path, base, baselen);
1948 if (open_cached_dir(&cdir, dir, untracked, istate, &path, check_only))
1952 untracked->check_only = !!check_only;
1954 while (!read_cached_dir(&cdir)) {
1955 /* check how the file or directory should be treated */
1956 state = treat_path(dir, untracked, &cdir, istate, &path,
1959 if (state > dir_state)
1962 /* recurse into subdir if instructed by treat_path */
1963 if ((state == path_recurse) ||
1964 ((state == path_untracked) &&
1965 (dir->flags & DIR_SHOW_IGNORED_TOO) &&
1966 (get_dtype(cdir.de, istate, path.buf, path.len) == DT_DIR))) {
1967 struct untracked_cache_dir *ud;
1968 ud = lookup_untracked(dir->untracked, untracked,
1970 path.len - baselen);
1972 read_directory_recursive(dir, istate, path.buf,
1974 check_only, stop_at_first_file, pathspec);
1975 if (subdir_state > dir_state)
1976 dir_state = subdir_state;
1980 if (stop_at_first_file) {
1982 * If stopping at first file, then
1983 * signal that a file was found by
1984 * returning `path_excluded`. This is
1985 * to return a consistent value
1986 * regardless of whether an ignored or
1987 * excluded file happened to be
1990 * In current usage, the
1991 * `stop_at_first_file` is passed when
1992 * an ancestor directory has matched
1993 * an exclude pattern, so any found
1994 * files will be excluded.
1996 if (dir_state >= path_excluded) {
1997 dir_state = path_excluded;
2002 /* abort early if maximum state has been reached */
2003 if (dir_state == path_untracked) {
2005 add_untracked(untracked, path.buf + baselen);
2008 /* skip the dir_add_* part */
2012 /* add the path to the appropriate result list */
2015 if (dir->flags & DIR_SHOW_IGNORED)
2016 dir_add_name(dir, istate, path.buf, path.len);
2017 else if ((dir->flags & DIR_SHOW_IGNORED_TOO) ||
2018 ((dir->flags & DIR_COLLECT_IGNORED) &&
2019 exclude_matches_pathspec(path.buf, path.len,
2021 dir_add_ignored(dir, istate, path.buf, path.len);
2024 case path_untracked:
2025 if (dir->flags & DIR_SHOW_IGNORED)
2027 dir_add_name(dir, istate, path.buf, path.len);
2029 add_untracked(untracked, path.buf + baselen);
2036 close_cached_dir(&cdir);
2038 strbuf_release(&path);
2043 int cmp_dir_entry(const void *p1, const void *p2)
2045 const struct dir_entry *e1 = *(const struct dir_entry **)p1;
2046 const struct dir_entry *e2 = *(const struct dir_entry **)p2;
2048 return name_compare(e1->name, e1->len, e2->name, e2->len);
2051 /* check if *out lexically strictly contains *in */
2052 int check_dir_entry_contains(const struct dir_entry *out, const struct dir_entry *in)
2054 return (out->len < in->len) &&
2055 (out->name[out->len - 1] == '/') &&
2056 !memcmp(out->name, in->name, out->len);
2059 static int treat_leading_path(struct dir_struct *dir,
2060 struct index_state *istate,
2061 const char *path, int len,
2062 const struct pathspec *pathspec)
2064 struct strbuf sb = STRBUF_INIT;
2065 int baselen, rc = 0;
2067 int old_flags = dir->flags;
2069 while (len && path[len - 1] == '/')
2074 dir->flags &= ~DIR_SHOW_OTHER_DIRECTORIES;
2076 cp = path + baselen + !!baselen;
2077 cp = memchr(cp, '/', path + len - cp);
2081 baselen = cp - path;
2082 strbuf_setlen(&sb, 0);
2083 strbuf_add(&sb, path, baselen);
2084 if (!is_directory(sb.buf))
2086 if (simplify_away(sb.buf, sb.len, pathspec))
2088 if (treat_one_path(dir, NULL, istate, &sb, baselen, pathspec,
2089 DT_DIR, NULL) == path_none)
2090 break; /* do not recurse into it */
2091 if (len <= baselen) {
2093 break; /* finished checking */
2096 strbuf_release(&sb);
2097 dir->flags = old_flags;
2101 static const char *get_ident_string(void)
2103 static struct strbuf sb = STRBUF_INIT;
2108 if (uname(&uts) < 0)
2109 die_errno(_("failed to get kernel name and information"));
2110 strbuf_addf(&sb, "Location %s, system %s", get_git_work_tree(),
2115 static int ident_in_untracked(const struct untracked_cache *uc)
2118 * Previous git versions may have saved many NUL separated
2119 * strings in the "ident" field, but it is insane to manage
2120 * many locations, so just take care of the first one.
2123 return !strcmp(uc->ident.buf, get_ident_string());
2126 static void set_untracked_ident(struct untracked_cache *uc)
2128 strbuf_reset(&uc->ident);
2129 strbuf_addstr(&uc->ident, get_ident_string());
2132 * This strbuf used to contain a list of NUL separated
2133 * strings, so save NUL too for backward compatibility.
2135 strbuf_addch(&uc->ident, 0);
2138 static void new_untracked_cache(struct index_state *istate)
2140 struct untracked_cache *uc = xcalloc(1, sizeof(*uc));
2141 strbuf_init(&uc->ident, 100);
2142 uc->exclude_per_dir = ".gitignore";
2143 /* should be the same flags used by git-status */
2144 uc->dir_flags = DIR_SHOW_OTHER_DIRECTORIES | DIR_HIDE_EMPTY_DIRECTORIES;
2145 set_untracked_ident(uc);
2146 istate->untracked = uc;
2147 istate->cache_changed |= UNTRACKED_CHANGED;
2150 void add_untracked_cache(struct index_state *istate)
2152 if (!istate->untracked) {
2153 new_untracked_cache(istate);
2155 if (!ident_in_untracked(istate->untracked)) {
2156 free_untracked_cache(istate->untracked);
2157 new_untracked_cache(istate);
2162 void remove_untracked_cache(struct index_state *istate)
2164 if (istate->untracked) {
2165 free_untracked_cache(istate->untracked);
2166 istate->untracked = NULL;
2167 istate->cache_changed |= UNTRACKED_CHANGED;
2171 static struct untracked_cache_dir *validate_untracked_cache(struct dir_struct *dir,
2173 const struct pathspec *pathspec)
2175 struct untracked_cache_dir *root;
2176 static int untracked_cache_disabled = -1;
2178 if (!dir->untracked)
2180 if (untracked_cache_disabled < 0)
2181 untracked_cache_disabled = git_env_bool("GIT_DISABLE_UNTRACKED_CACHE", 0);
2182 if (untracked_cache_disabled)
2186 * We only support $GIT_DIR/info/exclude and core.excludesfile
2187 * as the global ignore rule files. Any other additions
2188 * (e.g. from command line) invalidate the cache. This
2189 * condition also catches running setup_standard_excludes()
2190 * before setting dir->untracked!
2192 if (dir->unmanaged_exclude_files)
2196 * Optimize for the main use case only: whole-tree git
2197 * status. More work involved in treat_leading_path() if we
2198 * use cache on just a subset of the worktree. pathspec
2199 * support could make the matter even worse.
2201 if (base_len || (pathspec && pathspec->nr))
2204 /* Different set of flags may produce different results */
2205 if (dir->flags != dir->untracked->dir_flags ||
2207 * See treat_directory(), case index_nonexistent. Without
2208 * this flag, we may need to also cache .git file content
2209 * for the resolve_gitlink_ref() call, which we don't.
2211 !(dir->flags & DIR_SHOW_OTHER_DIRECTORIES) ||
2212 /* We don't support collecting ignore files */
2213 (dir->flags & (DIR_SHOW_IGNORED | DIR_SHOW_IGNORED_TOO |
2214 DIR_COLLECT_IGNORED)))
2218 * If we use .gitignore in the cache and now you change it to
2219 * .gitexclude, everything will go wrong.
2221 if (dir->exclude_per_dir != dir->untracked->exclude_per_dir &&
2222 strcmp(dir->exclude_per_dir, dir->untracked->exclude_per_dir))
2226 * EXC_CMDL is not considered in the cache. If people set it,
2229 if (dir->exclude_list_group[EXC_CMDL].nr)
2232 if (!ident_in_untracked(dir->untracked)) {
2233 warning(_("Untracked cache is disabled on this system or location."));
2237 if (!dir->untracked->root) {
2238 const int len = sizeof(*dir->untracked->root);
2239 dir->untracked->root = xmalloc(len);
2240 memset(dir->untracked->root, 0, len);
2243 /* Validate $GIT_DIR/info/exclude and core.excludesfile */
2244 root = dir->untracked->root;
2245 if (oidcmp(&dir->ss_info_exclude.oid,
2246 &dir->untracked->ss_info_exclude.oid)) {
2247 invalidate_gitignore(dir->untracked, root);
2248 dir->untracked->ss_info_exclude = dir->ss_info_exclude;
2250 if (oidcmp(&dir->ss_excludes_file.oid,
2251 &dir->untracked->ss_excludes_file.oid)) {
2252 invalidate_gitignore(dir->untracked, root);
2253 dir->untracked->ss_excludes_file = dir->ss_excludes_file;
2256 /* Make sure this directory is not dropped out at saving phase */
2261 int read_directory(struct dir_struct *dir, struct index_state *istate,
2262 const char *path, int len, const struct pathspec *pathspec)
2264 struct untracked_cache_dir *untracked;
2265 uint64_t start = getnanotime();
2267 if (has_symlink_leading_path(path, len))
2270 untracked = validate_untracked_cache(dir, len, pathspec);
2273 * make sure untracked cache code path is disabled,
2274 * e.g. prep_exclude()
2276 dir->untracked = NULL;
2277 if (!len || treat_leading_path(dir, istate, path, len, pathspec))
2278 read_directory_recursive(dir, istate, path, len, untracked, 0, 0, pathspec);
2279 QSORT(dir->entries, dir->nr, cmp_dir_entry);
2280 QSORT(dir->ignored, dir->ignored_nr, cmp_dir_entry);
2283 * If DIR_SHOW_IGNORED_TOO is set, read_directory_recursive() will
2284 * also pick up untracked contents of untracked dirs; by default
2285 * we discard these, but given DIR_KEEP_UNTRACKED_CONTENTS we do not.
2287 if ((dir->flags & DIR_SHOW_IGNORED_TOO) &&
2288 !(dir->flags & DIR_KEEP_UNTRACKED_CONTENTS)) {
2291 /* remove from dir->entries untracked contents of untracked dirs */
2292 for (i = j = 0; j < dir->nr; j++) {
2294 check_dir_entry_contains(dir->entries[i - 1], dir->entries[j])) {
2295 FREE_AND_NULL(dir->entries[j]);
2297 dir->entries[i++] = dir->entries[j];
2304 trace_performance_since(start, "read directory %.*s", len, path);
2305 if (dir->untracked) {
2306 static int force_untracked_cache = -1;
2307 static struct trace_key trace_untracked_stats = TRACE_KEY_INIT(UNTRACKED_STATS);
2309 if (force_untracked_cache < 0)
2310 force_untracked_cache =
2311 git_env_bool("GIT_FORCE_UNTRACKED_CACHE", 0);
2312 trace_printf_key(&trace_untracked_stats,
2313 "node creation: %u\n"
2314 "gitignore invalidation: %u\n"
2315 "directory invalidation: %u\n"
2317 dir->untracked->dir_created,
2318 dir->untracked->gitignore_invalidated,
2319 dir->untracked->dir_invalidated,
2320 dir->untracked->dir_opened);
2321 if (force_untracked_cache &&
2322 dir->untracked == istate->untracked &&
2323 (dir->untracked->dir_opened ||
2324 dir->untracked->gitignore_invalidated ||
2325 dir->untracked->dir_invalidated))
2326 istate->cache_changed |= UNTRACKED_CHANGED;
2327 if (dir->untracked != istate->untracked) {
2328 FREE_AND_NULL(dir->untracked);
2334 int file_exists(const char *f)
2337 return lstat(f, &sb) == 0;
2340 static int cmp_icase(char a, char b)
2345 return toupper(a) - toupper(b);
2350 * Given two normalized paths (a trailing slash is ok), if subdir is
2351 * outside dir, return -1. Otherwise return the offset in subdir that
2352 * can be used as relative path to dir.
2354 int dir_inside_of(const char *subdir, const char *dir)
2358 assert(dir && subdir && *dir && *subdir);
2360 while (*dir && *subdir && !cmp_icase(*dir, *subdir)) {
2366 /* hel[p]/me vs hel[l]/yeah */
2367 if (*dir && *subdir)
2371 return !*dir ? offset : -1; /* same dir */
2373 /* foo/[b]ar vs foo/[] */
2374 if (is_dir_sep(dir[-1]))
2375 return is_dir_sep(subdir[-1]) ? offset : -1;
2377 /* foo[/]bar vs foo[] */
2378 return is_dir_sep(*subdir) ? offset + 1 : -1;
2381 int is_inside_dir(const char *dir)
2390 rc = (dir_inside_of(cwd, dir) >= 0);
2395 int is_empty_dir(const char *path)
2397 DIR *dir = opendir(path);
2404 while ((e = readdir(dir)) != NULL)
2405 if (!is_dot_or_dotdot(e->d_name)) {
2414 static int remove_dir_recurse(struct strbuf *path, int flag, int *kept_up)
2418 int ret = 0, original_len = path->len, len, kept_down = 0;
2419 int only_empty = (flag & REMOVE_DIR_EMPTY_ONLY);
2420 int keep_toplevel = (flag & REMOVE_DIR_KEEP_TOPLEVEL);
2421 struct object_id submodule_head;
2423 if ((flag & REMOVE_DIR_KEEP_NESTED_GIT) &&
2424 !resolve_gitlink_ref(path->buf, "HEAD", &submodule_head)) {
2425 /* Do not descend and nuke a nested git work tree. */
2431 flag &= ~REMOVE_DIR_KEEP_TOPLEVEL;
2432 dir = opendir(path->buf);
2434 if (errno == ENOENT)
2435 return keep_toplevel ? -1 : 0;
2436 else if (errno == EACCES && !keep_toplevel)
2438 * An empty dir could be removable even if it
2441 return rmdir(path->buf);
2445 strbuf_complete(path, '/');
2448 while ((e = readdir(dir)) != NULL) {
2450 if (is_dot_or_dotdot(e->d_name))
2453 strbuf_setlen(path, len);
2454 strbuf_addstr(path, e->d_name);
2455 if (lstat(path->buf, &st)) {
2456 if (errno == ENOENT)
2458 * file disappeared, which is what we
2463 } else if (S_ISDIR(st.st_mode)) {
2464 if (!remove_dir_recurse(path, flag, &kept_down))
2465 continue; /* happy */
2466 } else if (!only_empty &&
2467 (!unlink(path->buf) || errno == ENOENT)) {
2468 continue; /* happy, too */
2471 /* path too long, stat fails, or non-directory still exists */
2477 strbuf_setlen(path, original_len);
2478 if (!ret && !keep_toplevel && !kept_down)
2479 ret = (!rmdir(path->buf) || errno == ENOENT) ? 0 : -1;
2482 * report the uplevel that it is not an error that we
2483 * did not rmdir() our directory.
2489 int remove_dir_recursively(struct strbuf *path, int flag)
2491 return remove_dir_recurse(path, flag, NULL);
2494 static GIT_PATH_FUNC(git_path_info_exclude, "info/exclude")
2496 void setup_standard_excludes(struct dir_struct *dir)
2498 dir->exclude_per_dir = ".gitignore";
2500 /* core.excludefile defaulting to $XDG_HOME/git/ignore */
2502 excludes_file = xdg_config_home("ignore");
2503 if (excludes_file && !access_or_warn(excludes_file, R_OK, 0))
2504 add_excludes_from_file_1(dir, excludes_file,
2505 dir->untracked ? &dir->ss_excludes_file : NULL);
2507 /* per repository user preference */
2508 if (startup_info->have_repository) {
2509 const char *path = git_path_info_exclude();
2510 if (!access_or_warn(path, R_OK, 0))
2511 add_excludes_from_file_1(dir, path,
2512 dir->untracked ? &dir->ss_info_exclude : NULL);
2516 int remove_path(const char *name)
2520 if (unlink(name) && !is_missing_file_error(errno))
2523 slash = strrchr(name, '/');
2525 char *dirs = xstrdup(name);
2526 slash = dirs + (slash - name);
2529 } while (rmdir(dirs) == 0 && (slash = strrchr(dirs, '/')));
2536 * Frees memory within dir which was allocated for exclude lists and
2537 * the exclude_stack. Does not free dir itself.
2539 void clear_directory(struct dir_struct *dir)
2542 struct exclude_list_group *group;
2543 struct exclude_list *el;
2544 struct exclude_stack *stk;
2546 for (i = EXC_CMDL; i <= EXC_FILE; i++) {
2547 group = &dir->exclude_list_group[i];
2548 for (j = 0; j < group->nr; j++) {
2551 free((char *)el->src);
2552 clear_exclude_list(el);
2557 stk = dir->exclude_stack;
2559 struct exclude_stack *prev = stk->prev;
2563 strbuf_release(&dir->basebuf);
2566 struct ondisk_untracked_cache {
2567 struct stat_data info_exclude_stat;
2568 struct stat_data excludes_file_stat;
2570 unsigned char info_exclude_sha1[20];
2571 unsigned char excludes_file_sha1[20];
2572 char exclude_per_dir[FLEX_ARRAY];
2575 #define ouc_offset(x) offsetof(struct ondisk_untracked_cache, x)
2576 #define ouc_size(len) (ouc_offset(exclude_per_dir) + len + 1)
2579 int index; /* number of written untracked_cache_dir */
2580 struct ewah_bitmap *check_only; /* from untracked_cache_dir */
2581 struct ewah_bitmap *valid; /* from untracked_cache_dir */
2582 struct ewah_bitmap *sha1_valid; /* set if exclude_sha1 is not null */
2584 struct strbuf sb_stat;
2585 struct strbuf sb_sha1;
2588 static void stat_data_to_disk(struct stat_data *to, const struct stat_data *from)
2590 to->sd_ctime.sec = htonl(from->sd_ctime.sec);
2591 to->sd_ctime.nsec = htonl(from->sd_ctime.nsec);
2592 to->sd_mtime.sec = htonl(from->sd_mtime.sec);
2593 to->sd_mtime.nsec = htonl(from->sd_mtime.nsec);
2594 to->sd_dev = htonl(from->sd_dev);
2595 to->sd_ino = htonl(from->sd_ino);
2596 to->sd_uid = htonl(from->sd_uid);
2597 to->sd_gid = htonl(from->sd_gid);
2598 to->sd_size = htonl(from->sd_size);
2601 static void write_one_dir(struct untracked_cache_dir *untracked,
2602 struct write_data *wd)
2604 struct stat_data stat_data;
2605 struct strbuf *out = &wd->out;
2606 unsigned char intbuf[16];
2607 unsigned int intlen, value;
2608 int i = wd->index++;
2611 * untracked_nr should be reset whenever valid is clear, but
2614 if (!untracked->valid) {
2615 untracked->untracked_nr = 0;
2616 untracked->check_only = 0;
2619 if (untracked->check_only)
2620 ewah_set(wd->check_only, i);
2621 if (untracked->valid) {
2622 ewah_set(wd->valid, i);
2623 stat_data_to_disk(&stat_data, &untracked->stat_data);
2624 strbuf_add(&wd->sb_stat, &stat_data, sizeof(stat_data));
2626 if (!is_null_sha1(untracked->exclude_sha1)) {
2627 ewah_set(wd->sha1_valid, i);
2628 strbuf_add(&wd->sb_sha1, untracked->exclude_sha1, 20);
2631 intlen = encode_varint(untracked->untracked_nr, intbuf);
2632 strbuf_add(out, intbuf, intlen);
2634 /* skip non-recurse directories */
2635 for (i = 0, value = 0; i < untracked->dirs_nr; i++)
2636 if (untracked->dirs[i]->recurse)
2638 intlen = encode_varint(value, intbuf);
2639 strbuf_add(out, intbuf, intlen);
2641 strbuf_add(out, untracked->name, strlen(untracked->name) + 1);
2643 for (i = 0; i < untracked->untracked_nr; i++)
2644 strbuf_add(out, untracked->untracked[i],
2645 strlen(untracked->untracked[i]) + 1);
2647 for (i = 0; i < untracked->dirs_nr; i++)
2648 if (untracked->dirs[i]->recurse)
2649 write_one_dir(untracked->dirs[i], wd);
2652 void write_untracked_extension(struct strbuf *out, struct untracked_cache *untracked)
2654 struct ondisk_untracked_cache *ouc;
2655 struct write_data wd;
2656 unsigned char varbuf[16];
2658 size_t len = strlen(untracked->exclude_per_dir);
2660 FLEX_ALLOC_MEM(ouc, exclude_per_dir, untracked->exclude_per_dir, len);
2661 stat_data_to_disk(&ouc->info_exclude_stat, &untracked->ss_info_exclude.stat);
2662 stat_data_to_disk(&ouc->excludes_file_stat, &untracked->ss_excludes_file.stat);
2663 hashcpy(ouc->info_exclude_sha1, untracked->ss_info_exclude.oid.hash);
2664 hashcpy(ouc->excludes_file_sha1, untracked->ss_excludes_file.oid.hash);
2665 ouc->dir_flags = htonl(untracked->dir_flags);
2667 varint_len = encode_varint(untracked->ident.len, varbuf);
2668 strbuf_add(out, varbuf, varint_len);
2669 strbuf_addbuf(out, &untracked->ident);
2671 strbuf_add(out, ouc, ouc_size(len));
2674 if (!untracked->root) {
2675 varint_len = encode_varint(0, varbuf);
2676 strbuf_add(out, varbuf, varint_len);
2681 wd.check_only = ewah_new();
2682 wd.valid = ewah_new();
2683 wd.sha1_valid = ewah_new();
2684 strbuf_init(&wd.out, 1024);
2685 strbuf_init(&wd.sb_stat, 1024);
2686 strbuf_init(&wd.sb_sha1, 1024);
2687 write_one_dir(untracked->root, &wd);
2689 varint_len = encode_varint(wd.index, varbuf);
2690 strbuf_add(out, varbuf, varint_len);
2691 strbuf_addbuf(out, &wd.out);
2692 ewah_serialize_strbuf(wd.valid, out);
2693 ewah_serialize_strbuf(wd.check_only, out);
2694 ewah_serialize_strbuf(wd.sha1_valid, out);
2695 strbuf_addbuf(out, &wd.sb_stat);
2696 strbuf_addbuf(out, &wd.sb_sha1);
2697 strbuf_addch(out, '\0'); /* safe guard for string lists */
2699 ewah_free(wd.valid);
2700 ewah_free(wd.check_only);
2701 ewah_free(wd.sha1_valid);
2702 strbuf_release(&wd.out);
2703 strbuf_release(&wd.sb_stat);
2704 strbuf_release(&wd.sb_sha1);
2707 static void free_untracked(struct untracked_cache_dir *ucd)
2712 for (i = 0; i < ucd->dirs_nr; i++)
2713 free_untracked(ucd->dirs[i]);
2714 for (i = 0; i < ucd->untracked_nr; i++)
2715 free(ucd->untracked[i]);
2716 free(ucd->untracked);
2721 void free_untracked_cache(struct untracked_cache *uc)
2724 free_untracked(uc->root);
2730 struct untracked_cache_dir **ucd;
2731 struct ewah_bitmap *check_only;
2732 struct ewah_bitmap *valid;
2733 struct ewah_bitmap *sha1_valid;
2734 const unsigned char *data;
2735 const unsigned char *end;
2738 static void stat_data_from_disk(struct stat_data *to, const unsigned char *data)
2740 memcpy(to, data, sizeof(*to));
2741 to->sd_ctime.sec = ntohl(to->sd_ctime.sec);
2742 to->sd_ctime.nsec = ntohl(to->sd_ctime.nsec);
2743 to->sd_mtime.sec = ntohl(to->sd_mtime.sec);
2744 to->sd_mtime.nsec = ntohl(to->sd_mtime.nsec);
2745 to->sd_dev = ntohl(to->sd_dev);
2746 to->sd_ino = ntohl(to->sd_ino);
2747 to->sd_uid = ntohl(to->sd_uid);
2748 to->sd_gid = ntohl(to->sd_gid);
2749 to->sd_size = ntohl(to->sd_size);
2752 static int read_one_dir(struct untracked_cache_dir **untracked_,
2753 struct read_data *rd)
2755 struct untracked_cache_dir ud, *untracked;
2756 const unsigned char *next, *data = rd->data, *end = rd->end;
2760 memset(&ud, 0, sizeof(ud));
2763 value = decode_varint(&next);
2767 ud.untracked_alloc = value;
2768 ud.untracked_nr = value;
2769 if (ud.untracked_nr)
2770 ALLOC_ARRAY(ud.untracked, ud.untracked_nr);
2774 ud.dirs_alloc = ud.dirs_nr = decode_varint(&next);
2777 ALLOC_ARRAY(ud.dirs, ud.dirs_nr);
2780 len = strlen((const char *)data);
2781 next = data + len + 1;
2784 *untracked_ = untracked = xmalloc(st_add(sizeof(*untracked), len));
2785 memcpy(untracked, &ud, sizeof(ud));
2786 memcpy(untracked->name, data, len + 1);
2789 for (i = 0; i < untracked->untracked_nr; i++) {
2790 len = strlen((const char *)data);
2791 next = data + len + 1;
2794 untracked->untracked[i] = xstrdup((const char*)data);
2798 rd->ucd[rd->index++] = untracked;
2801 for (i = 0; i < untracked->dirs_nr; i++) {
2802 len = read_one_dir(untracked->dirs + i, rd);
2809 static void set_check_only(size_t pos, void *cb)
2811 struct read_data *rd = cb;
2812 struct untracked_cache_dir *ud = rd->ucd[pos];
2816 static void read_stat(size_t pos, void *cb)
2818 struct read_data *rd = cb;
2819 struct untracked_cache_dir *ud = rd->ucd[pos];
2820 if (rd->data + sizeof(struct stat_data) > rd->end) {
2821 rd->data = rd->end + 1;
2824 stat_data_from_disk(&ud->stat_data, rd->data);
2825 rd->data += sizeof(struct stat_data);
2829 static void read_sha1(size_t pos, void *cb)
2831 struct read_data *rd = cb;
2832 struct untracked_cache_dir *ud = rd->ucd[pos];
2833 if (rd->data + 20 > rd->end) {
2834 rd->data = rd->end + 1;
2837 hashcpy(ud->exclude_sha1, rd->data);
2841 static void load_oid_stat(struct oid_stat *oid_stat, const unsigned char *data,
2842 const unsigned char *sha1)
2844 stat_data_from_disk(&oid_stat->stat, data);
2845 hashcpy(oid_stat->oid.hash, sha1);
2846 oid_stat->valid = 1;
2849 struct untracked_cache *read_untracked_extension(const void *data, unsigned long sz)
2851 struct untracked_cache *uc;
2852 struct read_data rd;
2853 const unsigned char *next = data, *end = (const unsigned char *)data + sz;
2856 const char *exclude_per_dir;
2858 if (sz <= 1 || end[-1] != '\0')
2862 ident_len = decode_varint(&next);
2863 if (next + ident_len > end)
2865 ident = (const char *)next;
2868 if (next + ouc_size(0) > end)
2871 uc = xcalloc(1, sizeof(*uc));
2872 strbuf_init(&uc->ident, ident_len);
2873 strbuf_add(&uc->ident, ident, ident_len);
2874 load_oid_stat(&uc->ss_info_exclude,
2875 next + ouc_offset(info_exclude_stat),
2876 next + ouc_offset(info_exclude_sha1));
2877 load_oid_stat(&uc->ss_excludes_file,
2878 next + ouc_offset(excludes_file_stat),
2879 next + ouc_offset(excludes_file_sha1));
2880 uc->dir_flags = get_be32(next + ouc_offset(dir_flags));
2881 exclude_per_dir = (const char *)next + ouc_offset(exclude_per_dir);
2882 uc->exclude_per_dir = xstrdup(exclude_per_dir);
2883 /* NUL after exclude_per_dir is covered by sizeof(*ouc) */
2884 next += ouc_size(strlen(exclude_per_dir));
2888 len = decode_varint(&next);
2889 if (next > end || len == 0)
2892 rd.valid = ewah_new();
2893 rd.check_only = ewah_new();
2894 rd.sha1_valid = ewah_new();
2898 ALLOC_ARRAY(rd.ucd, len);
2900 if (read_one_dir(&uc->root, &rd) || rd.index != len)
2904 len = ewah_read_mmap(rd.valid, next, end - next);
2909 len = ewah_read_mmap(rd.check_only, next, end - next);
2914 len = ewah_read_mmap(rd.sha1_valid, next, end - next);
2918 ewah_each_bit(rd.check_only, set_check_only, &rd);
2919 rd.data = next + len;
2920 ewah_each_bit(rd.valid, read_stat, &rd);
2921 ewah_each_bit(rd.sha1_valid, read_sha1, &rd);
2926 ewah_free(rd.valid);
2927 ewah_free(rd.check_only);
2928 ewah_free(rd.sha1_valid);
2931 free_untracked_cache(uc);
2937 static void invalidate_one_directory(struct untracked_cache *uc,
2938 struct untracked_cache_dir *ucd)
2940 uc->dir_invalidated++;
2942 ucd->untracked_nr = 0;
2946 * Normally when an entry is added or removed from a directory,
2947 * invalidating that directory is enough. No need to touch its
2948 * ancestors. When a directory is shown as "foo/bar/" in git-status
2949 * however, deleting or adding an entry may have cascading effect.
2951 * Say the "foo/bar/file" has become untracked, we need to tell the
2952 * untracked_cache_dir of "foo" that "bar/" is not an untracked
2953 * directory any more (because "bar" is managed by foo as an untracked
2956 * Similarly, if "foo/bar/file" moves from untracked to tracked and it
2957 * was the last untracked entry in the entire "foo", we should show
2958 * "foo/" instead. Which means we have to invalidate past "bar" up to
2961 * This function traverses all directories from root to leaf. If there
2962 * is a chance of one of the above cases happening, we invalidate back
2963 * to root. Otherwise we just invalidate the leaf. There may be a more
2964 * sophisticated way than checking for SHOW_OTHER_DIRECTORIES to
2965 * detect these cases and avoid unnecessary invalidation, for example,
2966 * checking for the untracked entry named "bar/" in "foo", but for now
2967 * stick to something safe and simple.
2969 static int invalidate_one_component(struct untracked_cache *uc,
2970 struct untracked_cache_dir *dir,
2971 const char *path, int len)
2973 const char *rest = strchr(path, '/');
2976 int component_len = rest - path;
2977 struct untracked_cache_dir *d =
2978 lookup_untracked(uc, dir, path, component_len);
2980 invalidate_one_component(uc, d, rest + 1,
2981 len - (component_len + 1));
2983 invalidate_one_directory(uc, dir);
2987 invalidate_one_directory(uc, dir);
2988 return uc->dir_flags & DIR_SHOW_OTHER_DIRECTORIES;
2991 void untracked_cache_invalidate_path(struct index_state *istate,
2992 const char *path, int safe_path)
2994 if (!istate->untracked || !istate->untracked->root)
2996 if (!safe_path && !verify_path(path))
2998 invalidate_one_component(istate->untracked, istate->untracked->root,
2999 path, strlen(path));
3002 void untracked_cache_remove_from_index(struct index_state *istate,
3005 untracked_cache_invalidate_path(istate, path, 1);
3008 void untracked_cache_add_to_index(struct index_state *istate,
3011 untracked_cache_invalidate_path(istate, path, 1);
3014 static void connect_wt_gitdir_in_nested(const char *sub_worktree,
3015 const char *sub_gitdir)
3018 struct repository subrepo;
3019 struct strbuf sub_wt = STRBUF_INIT;
3020 struct strbuf sub_gd = STRBUF_INIT;
3022 const struct submodule *sub;
3024 /* If the submodule has no working tree, we can ignore it. */
3025 if (repo_init(&subrepo, sub_gitdir, sub_worktree))
3028 if (repo_read_index(&subrepo) < 0)
3029 die("index file corrupt in repo %s", subrepo.gitdir);
3031 for (i = 0; i < subrepo.index->cache_nr; i++) {
3032 const struct cache_entry *ce = subrepo.index->cache[i];
3034 if (!S_ISGITLINK(ce->ce_mode))
3037 while (i + 1 < subrepo.index->cache_nr &&
3038 !strcmp(ce->name, subrepo.index->cache[i + 1]->name))
3040 * Skip entries with the same name in different stages
3041 * to make sure an entry is returned only once.
3045 sub = submodule_from_path(&subrepo, &null_oid, ce->name);
3046 if (!sub || !is_submodule_active(&subrepo, ce->name))
3047 /* .gitmodules broken or inactive sub */
3050 strbuf_reset(&sub_wt);
3051 strbuf_reset(&sub_gd);
3052 strbuf_addf(&sub_wt, "%s/%s", sub_worktree, sub->path);
3053 strbuf_addf(&sub_gd, "%s/modules/%s", sub_gitdir, sub->name);
3055 connect_work_tree_and_git_dir(sub_wt.buf, sub_gd.buf, 1);
3057 strbuf_release(&sub_wt);
3058 strbuf_release(&sub_gd);
3059 repo_clear(&subrepo);
3062 void connect_work_tree_and_git_dir(const char *work_tree_,
3063 const char *git_dir_,
3064 int recurse_into_nested)
3066 struct strbuf gitfile_sb = STRBUF_INIT;
3067 struct strbuf cfg_sb = STRBUF_INIT;
3068 struct strbuf rel_path = STRBUF_INIT;
3069 char *git_dir, *work_tree;
3071 /* Prepare .git file */
3072 strbuf_addf(&gitfile_sb, "%s/.git", work_tree_);
3073 if (safe_create_leading_directories_const(gitfile_sb.buf))
3074 die(_("could not create directories for %s"), gitfile_sb.buf);
3076 /* Prepare config file */
3077 strbuf_addf(&cfg_sb, "%s/config", git_dir_);
3078 if (safe_create_leading_directories_const(cfg_sb.buf))
3079 die(_("could not create directories for %s"), cfg_sb.buf);
3081 git_dir = real_pathdup(git_dir_, 1);
3082 work_tree = real_pathdup(work_tree_, 1);
3084 /* Write .git file */
3085 write_file(gitfile_sb.buf, "gitdir: %s",
3086 relative_path(git_dir, work_tree, &rel_path));
3087 /* Update core.worktree setting */
3088 git_config_set_in_file(cfg_sb.buf, "core.worktree",
3089 relative_path(work_tree, git_dir, &rel_path));
3091 strbuf_release(&gitfile_sb);
3092 strbuf_release(&cfg_sb);
3093 strbuf_release(&rel_path);
3095 if (recurse_into_nested)
3096 connect_wt_gitdir_in_nested(work_tree, git_dir);
3103 * Migrate the git directory of the given path from old_git_dir to new_git_dir.
3105 void relocate_gitdir(const char *path, const char *old_git_dir, const char *new_git_dir)
3107 if (rename(old_git_dir, new_git_dir) < 0)
3108 die_errno(_("could not migrate git directory from '%s' to '%s'"),
3109 old_git_dir, new_git_dir);
3111 connect_work_tree_and_git_dir(path, new_git_dir, 0);