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
13 #include "wildmatch.h"
17 #include "ewah/ewok.h"
19 struct path_simplify
{
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 const char *path
, int len
, struct untracked_cache_dir
*untracked
,
53 int check_only
, const struct path_simplify
*simplify
);
54 static int get_dtype(struct dirent
*de
, const char *path
, int len
);
56 int fspathcmp(const char *a
, const char *b
)
58 return ignore_case
? strcasecmp(a
, b
) : strcmp(a
, b
);
61 int fspathncmp(const char *a
, const char *b
, size_t count
)
63 return ignore_case
? strncasecmp(a
, b
, count
) : strncmp(a
, b
, count
);
66 int git_fnmatch(const struct pathspec_item
*item
,
67 const char *pattern
, const char *string
,
71 if (ps_strncmp(item
, pattern
, string
, prefix
))
76 if (item
->flags
& PATHSPEC_ONESTAR
) {
77 int pattern_len
= strlen(++pattern
);
78 int string_len
= strlen(string
);
79 return string_len
< pattern_len
||
80 ps_strcmp(item
, pattern
,
81 string
+ string_len
- pattern_len
);
83 if (item
->magic
& PATHSPEC_GLOB
)
84 return wildmatch(pattern
, string
,
86 (item
->magic
& PATHSPEC_ICASE
? WM_CASEFOLD
: 0),
89 /* wildmatch has not learned no FNM_PATHNAME mode yet */
90 return wildmatch(pattern
, string
,
91 item
->magic
& PATHSPEC_ICASE
? WM_CASEFOLD
: 0,
95 static int fnmatch_icase_mem(const char *pattern
, int patternlen
,
96 const char *string
, int stringlen
,
100 struct strbuf pat_buf
= STRBUF_INIT
;
101 struct strbuf str_buf
= STRBUF_INIT
;
102 const char *use_pat
= pattern
;
103 const char *use_str
= string
;
105 if (pattern
[patternlen
]) {
106 strbuf_add(&pat_buf
, pattern
, patternlen
);
107 use_pat
= pat_buf
.buf
;
109 if (string
[stringlen
]) {
110 strbuf_add(&str_buf
, string
, stringlen
);
111 use_str
= str_buf
.buf
;
115 flags
|= WM_CASEFOLD
;
116 match_status
= wildmatch(use_pat
, use_str
, flags
, NULL
);
118 strbuf_release(&pat_buf
);
119 strbuf_release(&str_buf
);
124 static size_t common_prefix_len(const struct pathspec
*pathspec
)
130 * ":(icase)path" is treated as a pathspec full of
131 * wildcard. In other words, only prefix is considered common
132 * prefix. If the pathspec is abc/foo abc/bar, running in
133 * subdir xyz, the common prefix is still xyz, not xuz/abc as
136 GUARD_PATHSPEC(pathspec
,
144 for (n
= 0; n
< pathspec
->nr
; n
++) {
145 size_t i
= 0, len
= 0, item_len
;
146 if (pathspec
->items
[n
].magic
& PATHSPEC_EXCLUDE
)
148 if (pathspec
->items
[n
].magic
& PATHSPEC_ICASE
)
149 item_len
= pathspec
->items
[n
].prefix
;
151 item_len
= pathspec
->items
[n
].nowildcard_len
;
152 while (i
< item_len
&& (n
== 0 || i
< max
)) {
153 char c
= pathspec
->items
[n
].match
[i
];
154 if (c
!= pathspec
->items
[0].match
[i
])
160 if (n
== 0 || len
< max
) {
170 * Returns a copy of the longest leading path common among all
173 char *common_prefix(const struct pathspec
*pathspec
)
175 unsigned long len
= common_prefix_len(pathspec
);
177 return len
? xmemdupz(pathspec
->items
[0].match
, len
) : NULL
;
180 int fill_directory(struct dir_struct
*dir
, const struct pathspec
*pathspec
)
185 * Calculate common prefix for the pathspec, and
186 * use that to optimize the directory walk
188 len
= common_prefix_len(pathspec
);
190 /* Read the directory and prune it */
191 read_directory(dir
, pathspec
->nr
? pathspec
->_raw
[0] : "", len
, pathspec
);
195 int within_depth(const char *name
, int namelen
,
196 int depth
, int max_depth
)
198 const char *cp
= name
, *cpe
= name
+ namelen
;
204 if (depth
> max_depth
)
210 #define DO_MATCH_EXCLUDE (1<<0)
211 #define DO_MATCH_DIRECTORY (1<<1)
212 #define DO_MATCH_SUBMODULE (1<<2)
215 * Does 'match' match the given name?
216 * A match is found if
218 * (1) the 'match' string is leading directory of 'name', or
219 * (2) the 'match' string is a wildcard and matches 'name', or
220 * (3) the 'match' string is exactly the same as 'name'.
222 * and the return value tells which case it was.
224 * It returns 0 when there is no match.
226 static int match_pathspec_item(const struct pathspec_item
*item
, int prefix
,
227 const char *name
, int namelen
, unsigned flags
)
229 /* name/namelen has prefix cut off by caller */
230 const char *match
= item
->match
+ prefix
;
231 int matchlen
= item
->len
- prefix
;
234 * The normal call pattern is:
235 * 1. prefix = common_prefix_len(ps);
236 * 2. prune something, or fill_directory
237 * 3. match_pathspec()
239 * 'prefix' at #1 may be shorter than the command's prefix and
240 * it's ok for #2 to match extra files. Those extras will be
243 * Suppose the pathspec is 'foo' and '../bar' running from
244 * subdir 'xyz'. The common prefix at #1 will be empty, thanks
245 * to "../". We may have xyz/foo _and_ XYZ/foo after #2. The
246 * user does not want XYZ/foo, only the "foo" part should be
247 * case-insensitive. We need to filter out XYZ/foo here. In
248 * other words, we do not trust the caller on comparing the
249 * prefix part when :(icase) is involved. We do exact
250 * comparison ourselves.
252 * Normally the caller (common_prefix_len() in fact) does
253 * _exact_ matching on name[-prefix+1..-1] and we do not need
254 * to check that part. Be defensive and check it anyway, in
255 * case common_prefix_len is changed, or a new caller is
256 * introduced that does not use common_prefix_len.
258 * If the penalty turns out too high when prefix is really
259 * long, maybe change it to
260 * strncmp(match, name, item->prefix - prefix)
262 if (item
->prefix
&& (item
->magic
& PATHSPEC_ICASE
) &&
263 strncmp(item
->match
, name
- prefix
, item
->prefix
))
266 /* If the match was just the prefix, we matched */
268 return MATCHED_RECURSIVELY
;
270 if (matchlen
<= namelen
&& !ps_strncmp(item
, match
, name
, matchlen
)) {
271 if (matchlen
== namelen
)
272 return MATCHED_EXACTLY
;
274 if (match
[matchlen
-1] == '/' || name
[matchlen
] == '/')
275 return MATCHED_RECURSIVELY
;
276 } else if ((flags
& DO_MATCH_DIRECTORY
) &&
277 match
[matchlen
- 1] == '/' &&
278 namelen
== matchlen
- 1 &&
279 !ps_strncmp(item
, match
, name
, namelen
))
280 return MATCHED_EXACTLY
;
282 if (item
->nowildcard_len
< item
->len
&&
283 !git_fnmatch(item
, match
, name
,
284 item
->nowildcard_len
- prefix
))
285 return MATCHED_FNMATCH
;
287 /* Perform checks to see if "name" is a super set of the pathspec */
288 if (flags
& DO_MATCH_SUBMODULE
) {
289 /* name is a literal prefix of the pathspec */
290 if ((namelen
< matchlen
) &&
291 (match
[namelen
] == '/') &&
292 !ps_strncmp(item
, match
, name
, namelen
))
293 return MATCHED_RECURSIVELY
;
295 /* name" doesn't match up to the first wild character */
296 if (item
->nowildcard_len
< item
->len
&&
297 ps_strncmp(item
, match
, name
,
298 item
->nowildcard_len
- prefix
))
302 * Here is where we would perform a wildmatch to check if
303 * "name" can be matched as a directory (or a prefix) against
304 * the pathspec. Since wildmatch doesn't have this capability
305 * at the present we have to punt and say that it is a match,
306 * potentially returning a false positive
307 * The submodules themselves will be able to perform more
308 * accurate matching to determine if the pathspec matches.
310 return MATCHED_RECURSIVELY
;
317 * Given a name and a list of pathspecs, returns the nature of the
318 * closest (i.e. most specific) match of the name to any of the
321 * The caller typically calls this multiple times with the same
322 * pathspec and seen[] array but with different name/namelen
323 * (e.g. entries from the index) and is interested in seeing if and
324 * how each pathspec matches all the names it calls this function
325 * with. A mark is left in the seen[] array for each pathspec element
326 * indicating the closest type of match that element achieved, so if
327 * seen[n] remains zero after multiple invocations, that means the nth
328 * pathspec did not match any names, which could indicate that the
329 * user mistyped the nth pathspec.
331 static int do_match_pathspec(const struct pathspec
*ps
,
332 const char *name
, int namelen
,
333 int prefix
, char *seen
,
336 int i
, retval
= 0, exclude
= flags
& DO_MATCH_EXCLUDE
;
347 if (!ps
->recursive
||
348 !(ps
->magic
& PATHSPEC_MAXDEPTH
) ||
350 return MATCHED_RECURSIVELY
;
352 if (within_depth(name
, namelen
, 0, ps
->max_depth
))
353 return MATCHED_EXACTLY
;
361 for (i
= ps
->nr
- 1; i
>= 0; i
--) {
364 if ((!exclude
&& ps
->items
[i
].magic
& PATHSPEC_EXCLUDE
) ||
365 ( exclude
&& !(ps
->items
[i
].magic
& PATHSPEC_EXCLUDE
)))
368 if (seen
&& seen
[i
] == MATCHED_EXACTLY
)
371 * Make exclude patterns optional and never report
372 * "pathspec ':(exclude)foo' matches no files"
374 if (seen
&& ps
->items
[i
].magic
& PATHSPEC_EXCLUDE
)
375 seen
[i
] = MATCHED_FNMATCH
;
376 how
= match_pathspec_item(ps
->items
+i
, prefix
, name
,
379 (ps
->magic
& PATHSPEC_MAXDEPTH
) &&
380 ps
->max_depth
!= -1 &&
381 how
&& how
!= MATCHED_FNMATCH
) {
382 int len
= ps
->items
[i
].len
;
383 if (name
[len
] == '/')
385 if (within_depth(name
+len
, namelen
-len
, 0, ps
->max_depth
))
386 how
= MATCHED_EXACTLY
;
393 if (seen
&& seen
[i
] < how
)
400 int match_pathspec(const struct pathspec
*ps
,
401 const char *name
, int namelen
,
402 int prefix
, char *seen
, int is_dir
)
404 int positive
, negative
;
405 unsigned flags
= is_dir
? DO_MATCH_DIRECTORY
: 0;
406 positive
= do_match_pathspec(ps
, name
, namelen
,
407 prefix
, seen
, flags
);
408 if (!(ps
->magic
& PATHSPEC_EXCLUDE
) || !positive
)
410 negative
= do_match_pathspec(ps
, name
, namelen
,
412 flags
| DO_MATCH_EXCLUDE
);
413 return negative
? 0 : positive
;
417 * Check if a submodule is a superset of the pathspec
419 int submodule_path_match(const struct pathspec
*ps
,
420 const char *submodule_name
,
423 int matched
= do_match_pathspec(ps
, submodule_name
,
424 strlen(submodule_name
),
431 int report_path_error(const char *ps_matched
,
432 const struct pathspec
*pathspec
,
436 * Make sure all pathspec matched; otherwise it is an error.
439 for (num
= 0; num
< pathspec
->nr
; num
++) {
440 int other
, found_dup
;
445 * The caller might have fed identical pathspec
446 * twice. Do not barf on such a mistake.
447 * FIXME: parse_pathspec should have eliminated
448 * duplicate pathspec.
450 for (found_dup
= other
= 0;
451 !found_dup
&& other
< pathspec
->nr
;
453 if (other
== num
|| !ps_matched
[other
])
455 if (!strcmp(pathspec
->items
[other
].original
,
456 pathspec
->items
[num
].original
))
458 * Ok, we have a match already.
465 error("pathspec '%s' did not match any file(s) known to git.",
466 pathspec
->items
[num
].original
);
473 * Return the length of the "simple" part of a path match limiter.
475 int simple_length(const char *match
)
480 unsigned char c
= *match
++;
482 if (c
== '\0' || is_glob_special(c
))
487 int no_wildcard(const char *string
)
489 return string
[simple_length(string
)] == '\0';
492 void parse_exclude_pattern(const char **pattern
,
497 const char *p
= *pattern
;
502 *flags
|= EXC_FLAG_NEGATIVE
;
506 if (len
&& p
[len
- 1] == '/') {
508 *flags
|= EXC_FLAG_MUSTBEDIR
;
510 for (i
= 0; i
< len
; i
++) {
515 *flags
|= EXC_FLAG_NODIR
;
516 *nowildcardlen
= simple_length(p
);
518 * we should have excluded the trailing slash from 'p' too,
519 * but that's one more allocation. Instead just make sure
520 * nowildcardlen does not exceed real patternlen
522 if (*nowildcardlen
> len
)
523 *nowildcardlen
= len
;
524 if (*p
== '*' && no_wildcard(p
+ 1))
525 *flags
|= EXC_FLAG_ENDSWITH
;
530 void add_exclude(const char *string
, const char *base
,
531 int baselen
, struct exclude_list
*el
, int srcpos
)
538 parse_exclude_pattern(&string
, &patternlen
, &flags
, &nowildcardlen
);
539 if (flags
& EXC_FLAG_MUSTBEDIR
) {
540 FLEXPTR_ALLOC_MEM(x
, pattern
, string
, patternlen
);
542 x
= xmalloc(sizeof(*x
));
545 x
->patternlen
= patternlen
;
546 x
->nowildcardlen
= nowildcardlen
;
548 x
->baselen
= baselen
;
551 ALLOC_GROW(el
->excludes
, el
->nr
+ 1, el
->alloc
);
552 el
->excludes
[el
->nr
++] = x
;
556 static void *read_skip_worktree_file_from_index(const char *path
, size_t *size
,
557 struct sha1_stat
*sha1_stat
)
561 enum object_type type
;
565 pos
= cache_name_pos(path
, len
);
568 if (!ce_skip_worktree(active_cache
[pos
]))
570 data
= read_sha1_file(active_cache
[pos
]->oid
.hash
, &type
, &sz
);
571 if (!data
|| type
!= OBJ_BLOB
) {
577 memset(&sha1_stat
->stat
, 0, sizeof(sha1_stat
->stat
));
578 hashcpy(sha1_stat
->sha1
, active_cache
[pos
]->oid
.hash
);
584 * Frees memory within el which was allocated for exclude patterns and
585 * the file buffer. Does not free el itself.
587 void clear_exclude_list(struct exclude_list
*el
)
591 for (i
= 0; i
< el
->nr
; i
++)
592 free(el
->excludes
[i
]);
596 memset(el
, 0, sizeof(*el
));
599 static void trim_trailing_spaces(char *buf
)
601 char *p
, *last_space
= NULL
;
603 for (p
= buf
; *p
; p
++)
623 * Given a subdirectory name and "dir" of the current directory,
624 * search the subdir in "dir" and return it, or create a new one if it
625 * does not exist in "dir".
627 * If "name" has the trailing slash, it'll be excluded in the search.
629 static struct untracked_cache_dir
*lookup_untracked(struct untracked_cache
*uc
,
630 struct untracked_cache_dir
*dir
,
631 const char *name
, int len
)
634 struct untracked_cache_dir
*d
;
637 if (len
&& name
[len
- 1] == '/')
641 while (last
> first
) {
642 int cmp
, next
= (last
+ first
) >> 1;
644 cmp
= strncmp(name
, d
->name
, len
);
645 if (!cmp
&& strlen(d
->name
) > len
)
657 FLEX_ALLOC_MEM(d
, name
, name
, len
);
659 ALLOC_GROW(dir
->dirs
, dir
->dirs_nr
+ 1, dir
->dirs_alloc
);
660 memmove(dir
->dirs
+ first
+ 1, dir
->dirs
+ first
,
661 (dir
->dirs_nr
- first
) * sizeof(*dir
->dirs
));
663 dir
->dirs
[first
] = d
;
667 static void do_invalidate_gitignore(struct untracked_cache_dir
*dir
)
671 dir
->untracked_nr
= 0;
672 for (i
= 0; i
< dir
->dirs_nr
; i
++)
673 do_invalidate_gitignore(dir
->dirs
[i
]);
676 static void invalidate_gitignore(struct untracked_cache
*uc
,
677 struct untracked_cache_dir
*dir
)
679 uc
->gitignore_invalidated
++;
680 do_invalidate_gitignore(dir
);
683 static void invalidate_directory(struct untracked_cache
*uc
,
684 struct untracked_cache_dir
*dir
)
687 uc
->dir_invalidated
++;
689 dir
->untracked_nr
= 0;
690 for (i
= 0; i
< dir
->dirs_nr
; i
++)
691 dir
->dirs
[i
]->recurse
= 0;
695 * Given a file with name "fname", read it (either from disk, or from
696 * the index if "check_index" is non-zero), parse it and store the
697 * exclude rules in "el".
699 * If "ss" is not NULL, compute SHA-1 of the exclude file and fill
700 * stat data from disk (only valid if add_excludes returns zero). If
701 * ss_valid is non-zero, "ss" must contain good value as input.
703 static int add_excludes(const char *fname
, const char *base
, int baselen
,
704 struct exclude_list
*el
, int check_index
,
705 struct sha1_stat
*sha1_stat
)
708 int fd
, i
, lineno
= 1;
712 fd
= open(fname
, O_RDONLY
);
713 if (fd
< 0 || fstat(fd
, &st
) < 0) {
715 warn_on_inaccessible(fname
);
719 (buf
= read_skip_worktree_file_from_index(fname
, &size
, sha1_stat
)) == NULL
)
725 if (buf
[size
-1] != '\n') {
726 buf
= xrealloc(buf
, st_add(size
, 1));
730 size
= xsize_t(st
.st_size
);
733 fill_stat_data(&sha1_stat
->stat
, &st
);
734 hashcpy(sha1_stat
->sha1
, EMPTY_BLOB_SHA1_BIN
);
735 sha1_stat
->valid
= 1;
740 buf
= xmallocz(size
);
741 if (read_in_full(fd
, buf
, size
) != size
) {
750 if (sha1_stat
->valid
&&
751 !match_stat_data_racy(&the_index
, &sha1_stat
->stat
, &st
))
752 ; /* no content change, ss->sha1 still good */
753 else if (check_index
&&
754 (pos
= cache_name_pos(fname
, strlen(fname
))) >= 0 &&
755 !ce_stage(active_cache
[pos
]) &&
756 ce_uptodate(active_cache
[pos
]) &&
757 !would_convert_to_git(fname
))
758 hashcpy(sha1_stat
->sha1
,
759 active_cache
[pos
]->oid
.hash
);
761 hash_sha1_file(buf
, size
, "blob", sha1_stat
->sha1
);
762 fill_stat_data(&sha1_stat
->stat
, &st
);
763 sha1_stat
->valid
= 1;
769 if (skip_utf8_bom(&buf
, size
))
770 size
-= buf
- el
->filebuf
;
774 for (i
= 0; i
< size
; i
++) {
775 if (buf
[i
] == '\n') {
776 if (entry
!= buf
+ i
&& entry
[0] != '#') {
777 buf
[i
- (i
&& buf
[i
-1] == '\r')] = 0;
778 trim_trailing_spaces(entry
);
779 add_exclude(entry
, base
, baselen
, el
, lineno
);
788 int add_excludes_from_file_to_list(const char *fname
, const char *base
,
789 int baselen
, struct exclude_list
*el
,
792 return add_excludes(fname
, base
, baselen
, el
, check_index
, NULL
);
795 struct exclude_list
*add_exclude_list(struct dir_struct
*dir
,
796 int group_type
, const char *src
)
798 struct exclude_list
*el
;
799 struct exclude_list_group
*group
;
801 group
= &dir
->exclude_list_group
[group_type
];
802 ALLOC_GROW(group
->el
, group
->nr
+ 1, group
->alloc
);
803 el
= &group
->el
[group
->nr
++];
804 memset(el
, 0, sizeof(*el
));
810 * Used to set up core.excludesfile and .git/info/exclude lists.
812 static void add_excludes_from_file_1(struct dir_struct
*dir
, const char *fname
,
813 struct sha1_stat
*sha1_stat
)
815 struct exclude_list
*el
;
817 * catch setup_standard_excludes() that's called before
818 * dir->untracked is assigned. That function behaves
819 * differently when dir->untracked is non-NULL.
822 dir
->unmanaged_exclude_files
++;
823 el
= add_exclude_list(dir
, EXC_FILE
, fname
);
824 if (add_excludes(fname
, "", 0, el
, 0, sha1_stat
) < 0)
825 die("cannot use %s as an exclude file", fname
);
828 void add_excludes_from_file(struct dir_struct
*dir
, const char *fname
)
830 dir
->unmanaged_exclude_files
++; /* see validate_untracked_cache() */
831 add_excludes_from_file_1(dir
, fname
, NULL
);
834 int match_basename(const char *basename
, int basenamelen
,
835 const char *pattern
, int prefix
, int patternlen
,
838 if (prefix
== patternlen
) {
839 if (patternlen
== basenamelen
&&
840 !fspathncmp(pattern
, basename
, basenamelen
))
842 } else if (flags
& EXC_FLAG_ENDSWITH
) {
843 /* "*literal" matching against "fooliteral" */
844 if (patternlen
- 1 <= basenamelen
&&
845 !fspathncmp(pattern
+ 1,
846 basename
+ basenamelen
- (patternlen
- 1),
850 if (fnmatch_icase_mem(pattern
, patternlen
,
851 basename
, basenamelen
,
858 int match_pathname(const char *pathname
, int pathlen
,
859 const char *base
, int baselen
,
860 const char *pattern
, int prefix
, int patternlen
,
867 * match with FNM_PATHNAME; the pattern has base implicitly
870 if (*pattern
== '/') {
877 * baselen does not count the trailing slash. base[] may or
878 * may not end with a trailing slash though.
880 if (pathlen
< baselen
+ 1 ||
881 (baselen
&& pathname
[baselen
] != '/') ||
882 fspathncmp(pathname
, base
, baselen
))
885 namelen
= baselen
? pathlen
- baselen
- 1 : pathlen
;
886 name
= pathname
+ pathlen
- namelen
;
890 * if the non-wildcard part is longer than the
891 * remaining pathname, surely it cannot match.
893 if (prefix
> namelen
)
896 if (fspathncmp(pattern
, name
, prefix
))
899 patternlen
-= prefix
;
904 * If the whole pattern did not have a wildcard,
905 * then our prefix match is all we need; we
906 * do not need to call fnmatch at all.
908 if (!patternlen
&& !namelen
)
912 return fnmatch_icase_mem(pattern
, patternlen
,
918 * Scan the given exclude list in reverse to see whether pathname
919 * should be ignored. The first match (i.e. the last on the list), if
920 * any, determines the fate. Returns the exclude_list element which
921 * matched, or NULL for undecided.
923 static struct exclude
*last_exclude_matching_from_list(const char *pathname
,
925 const char *basename
,
927 struct exclude_list
*el
)
929 struct exclude
*exc
= NULL
; /* undecided */
933 return NULL
; /* undefined */
935 for (i
= el
->nr
- 1; 0 <= i
; i
--) {
936 struct exclude
*x
= el
->excludes
[i
];
937 const char *exclude
= x
->pattern
;
938 int prefix
= x
->nowildcardlen
;
940 if (x
->flags
& EXC_FLAG_MUSTBEDIR
) {
941 if (*dtype
== DT_UNKNOWN
)
942 *dtype
= get_dtype(NULL
, pathname
, pathlen
);
943 if (*dtype
!= DT_DIR
)
947 if (x
->flags
& EXC_FLAG_NODIR
) {
948 if (match_basename(basename
,
949 pathlen
- (basename
- pathname
),
950 exclude
, prefix
, x
->patternlen
,
958 assert(x
->baselen
== 0 || x
->base
[x
->baselen
- 1] == '/');
959 if (match_pathname(pathname
, pathlen
,
960 x
->base
, x
->baselen
? x
->baselen
- 1 : 0,
961 exclude
, prefix
, x
->patternlen
, x
->flags
)) {
970 * Scan the list and let the last match determine the fate.
971 * Return 1 for exclude, 0 for include and -1 for undecided.
973 int is_excluded_from_list(const char *pathname
,
974 int pathlen
, const char *basename
, int *dtype
,
975 struct exclude_list
*el
)
977 struct exclude
*exclude
;
978 exclude
= last_exclude_matching_from_list(pathname
, pathlen
, basename
, dtype
, el
);
980 return exclude
->flags
& EXC_FLAG_NEGATIVE
? 0 : 1;
981 return -1; /* undecided */
984 static struct exclude
*last_exclude_matching_from_lists(struct dir_struct
*dir
,
985 const char *pathname
, int pathlen
, const char *basename
,
989 struct exclude_list_group
*group
;
990 struct exclude
*exclude
;
991 for (i
= EXC_CMDL
; i
<= EXC_FILE
; i
++) {
992 group
= &dir
->exclude_list_group
[i
];
993 for (j
= group
->nr
- 1; j
>= 0; j
--) {
994 exclude
= last_exclude_matching_from_list(
995 pathname
, pathlen
, basename
, dtype_p
,
1005 * Loads the per-directory exclude list for the substring of base
1006 * which has a char length of baselen.
1008 static void prep_exclude(struct dir_struct
*dir
, const char *base
, int baselen
)
1010 struct exclude_list_group
*group
;
1011 struct exclude_list
*el
;
1012 struct exclude_stack
*stk
= NULL
;
1013 struct untracked_cache_dir
*untracked
;
1016 group
= &dir
->exclude_list_group
[EXC_DIRS
];
1019 * Pop the exclude lists from the EXCL_DIRS exclude_list_group
1020 * which originate from directories not in the prefix of the
1021 * path being checked.
1023 while ((stk
= dir
->exclude_stack
) != NULL
) {
1024 if (stk
->baselen
<= baselen
&&
1025 !strncmp(dir
->basebuf
.buf
, base
, stk
->baselen
))
1027 el
= &group
->el
[dir
->exclude_stack
->exclude_ix
];
1028 dir
->exclude_stack
= stk
->prev
;
1029 dir
->exclude
= NULL
;
1030 free((char *)el
->src
); /* see strbuf_detach() below */
1031 clear_exclude_list(el
);
1036 /* Skip traversing into sub directories if the parent is excluded */
1041 * Lazy initialization. All call sites currently just
1042 * memset(dir, 0, sizeof(*dir)) before use. Changing all of
1043 * them seems lots of work for little benefit.
1045 if (!dir
->basebuf
.buf
)
1046 strbuf_init(&dir
->basebuf
, PATH_MAX
);
1048 /* Read from the parent directories and push them down. */
1049 current
= stk
? stk
->baselen
: -1;
1050 strbuf_setlen(&dir
->basebuf
, current
< 0 ? 0 : current
);
1052 untracked
= stk
? stk
->ucd
: dir
->untracked
->root
;
1056 while (current
< baselen
) {
1058 struct sha1_stat sha1_stat
;
1060 stk
= xcalloc(1, sizeof(*stk
));
1065 cp
= strchr(base
+ current
+ 1, '/');
1067 die("oops in prep_exclude");
1070 lookup_untracked(dir
->untracked
, untracked
,
1072 cp
- base
- current
);
1074 stk
->prev
= dir
->exclude_stack
;
1075 stk
->baselen
= cp
- base
;
1076 stk
->exclude_ix
= group
->nr
;
1077 stk
->ucd
= untracked
;
1078 el
= add_exclude_list(dir
, EXC_DIRS
, NULL
);
1079 strbuf_add(&dir
->basebuf
, base
+ current
, stk
->baselen
- current
);
1080 assert(stk
->baselen
== dir
->basebuf
.len
);
1082 /* Abort if the directory is excluded */
1085 dir
->basebuf
.buf
[stk
->baselen
- 1] = 0;
1086 dir
->exclude
= last_exclude_matching_from_lists(dir
,
1087 dir
->basebuf
.buf
, stk
->baselen
- 1,
1088 dir
->basebuf
.buf
+ current
, &dt
);
1089 dir
->basebuf
.buf
[stk
->baselen
- 1] = '/';
1091 dir
->exclude
->flags
& EXC_FLAG_NEGATIVE
)
1092 dir
->exclude
= NULL
;
1094 dir
->exclude_stack
= stk
;
1099 /* Try to read per-directory file */
1100 hashclr(sha1_stat
.sha1
);
1101 sha1_stat
.valid
= 0;
1102 if (dir
->exclude_per_dir
&&
1104 * If we know that no files have been added in
1105 * this directory (i.e. valid_cached_dir() has
1106 * been executed and set untracked->valid) ..
1108 (!untracked
|| !untracked
->valid
||
1110 * .. and .gitignore does not exist before
1111 * (i.e. null exclude_sha1). Then we can skip
1112 * loading .gitignore, which would result in
1115 !is_null_sha1(untracked
->exclude_sha1
))) {
1117 * dir->basebuf gets reused by the traversal, but we
1118 * need fname to remain unchanged to ensure the src
1119 * member of each struct exclude correctly
1120 * back-references its source file. Other invocations
1121 * of add_exclude_list provide stable strings, so we
1122 * strbuf_detach() and free() here in the caller.
1124 struct strbuf sb
= STRBUF_INIT
;
1125 strbuf_addbuf(&sb
, &dir
->basebuf
);
1126 strbuf_addstr(&sb
, dir
->exclude_per_dir
);
1127 el
->src
= strbuf_detach(&sb
, NULL
);
1128 add_excludes(el
->src
, el
->src
, stk
->baselen
, el
, 1,
1129 untracked
? &sha1_stat
: NULL
);
1132 * NEEDSWORK: when untracked cache is enabled, prep_exclude()
1133 * will first be called in valid_cached_dir() then maybe many
1134 * times more in last_exclude_matching(). When the cache is
1135 * used, last_exclude_matching() will not be called and
1136 * reading .gitignore content will be a waste.
1138 * So when it's called by valid_cached_dir() and we can get
1139 * .gitignore SHA-1 from the index (i.e. .gitignore is not
1140 * modified on work tree), we could delay reading the
1141 * .gitignore content until we absolutely need it in
1142 * last_exclude_matching(). Be careful about ignore rule
1143 * order, though, if you do that.
1146 hashcmp(sha1_stat
.sha1
, untracked
->exclude_sha1
)) {
1147 invalidate_gitignore(dir
->untracked
, untracked
);
1148 hashcpy(untracked
->exclude_sha1
, sha1_stat
.sha1
);
1150 dir
->exclude_stack
= stk
;
1151 current
= stk
->baselen
;
1153 strbuf_setlen(&dir
->basebuf
, baselen
);
1157 * Loads the exclude lists for the directory containing pathname, then
1158 * scans all exclude lists to determine whether pathname is excluded.
1159 * Returns the exclude_list element which matched, or NULL for
1162 struct exclude
*last_exclude_matching(struct dir_struct
*dir
,
1163 const char *pathname
,
1166 int pathlen
= strlen(pathname
);
1167 const char *basename
= strrchr(pathname
, '/');
1168 basename
= (basename
) ? basename
+1 : pathname
;
1170 prep_exclude(dir
, pathname
, basename
-pathname
);
1173 return dir
->exclude
;
1175 return last_exclude_matching_from_lists(dir
, pathname
, pathlen
,
1180 * Loads the exclude lists for the directory containing pathname, then
1181 * scans all exclude lists to determine whether pathname is excluded.
1182 * Returns 1 if true, otherwise 0.
1184 int is_excluded(struct dir_struct
*dir
, const char *pathname
, int *dtype_p
)
1186 struct exclude
*exclude
=
1187 last_exclude_matching(dir
, pathname
, dtype_p
);
1189 return exclude
->flags
& EXC_FLAG_NEGATIVE
? 0 : 1;
1193 static struct dir_entry
*dir_entry_new(const char *pathname
, int len
)
1195 struct dir_entry
*ent
;
1197 FLEX_ALLOC_MEM(ent
, name
, pathname
, len
);
1202 static struct dir_entry
*dir_add_name(struct dir_struct
*dir
, const char *pathname
, int len
)
1204 if (cache_file_exists(pathname
, len
, ignore_case
))
1207 ALLOC_GROW(dir
->entries
, dir
->nr
+1, dir
->alloc
);
1208 return dir
->entries
[dir
->nr
++] = dir_entry_new(pathname
, len
);
1211 struct dir_entry
*dir_add_ignored(struct dir_struct
*dir
, const char *pathname
, int len
)
1213 if (!cache_name_is_other(pathname
, len
))
1216 ALLOC_GROW(dir
->ignored
, dir
->ignored_nr
+1, dir
->ignored_alloc
);
1217 return dir
->ignored
[dir
->ignored_nr
++] = dir_entry_new(pathname
, len
);
1221 index_nonexistent
= 0,
1227 * Do not use the alphabetically sorted index to look up
1228 * the directory name; instead, use the case insensitive
1231 static enum exist_status
directory_exists_in_index_icase(const char *dirname
, int len
)
1233 struct cache_entry
*ce
;
1235 if (cache_dir_exists(dirname
, len
))
1236 return index_directory
;
1238 ce
= cache_file_exists(dirname
, len
, ignore_case
);
1239 if (ce
&& S_ISGITLINK(ce
->ce_mode
))
1240 return index_gitdir
;
1242 return index_nonexistent
;
1246 * The index sorts alphabetically by entry name, which
1247 * means that a gitlink sorts as '\0' at the end, while
1248 * a directory (which is defined not as an entry, but as
1249 * the files it contains) will sort with the '/' at the
1252 static enum exist_status
directory_exists_in_index(const char *dirname
, int len
)
1257 return directory_exists_in_index_icase(dirname
, len
);
1259 pos
= cache_name_pos(dirname
, len
);
1262 while (pos
< active_nr
) {
1263 const struct cache_entry
*ce
= active_cache
[pos
++];
1264 unsigned char endchar
;
1266 if (strncmp(ce
->name
, dirname
, len
))
1268 endchar
= ce
->name
[len
];
1272 return index_directory
;
1273 if (!endchar
&& S_ISGITLINK(ce
->ce_mode
))
1274 return index_gitdir
;
1276 return index_nonexistent
;
1280 * When we find a directory when traversing the filesystem, we
1281 * have three distinct cases:
1284 * - see it as a directory
1287 * and which one we choose depends on a combination of existing
1288 * git index contents and the flags passed into the directory
1289 * traversal routine.
1291 * Case 1: If we *already* have entries in the index under that
1292 * directory name, we always recurse into the directory to see
1295 * Case 2: If we *already* have that directory name as a gitlink,
1296 * we always continue to see it as a gitlink, regardless of whether
1297 * there is an actual git directory there or not (it might not
1298 * be checked out as a subproject!)
1300 * Case 3: if we didn't have it in the index previously, we
1301 * have a few sub-cases:
1303 * (a) if "show_other_directories" is true, we show it as
1304 * just a directory, unless "hide_empty_directories" is
1305 * also true, in which case we need to check if it contains any
1306 * untracked and / or ignored files.
1307 * (b) if it looks like a git directory, and we don't have
1308 * 'no_gitlinks' set we treat it as a gitlink, and show it
1310 * (c) otherwise, we recurse into it.
1312 static enum path_treatment
treat_directory(struct dir_struct
*dir
,
1313 struct untracked_cache_dir
*untracked
,
1314 const char *dirname
, int len
, int baselen
, int exclude
,
1315 const struct path_simplify
*simplify
)
1317 /* The "len-1" is to strip the final '/' */
1318 switch (directory_exists_in_index(dirname
, len
-1)) {
1319 case index_directory
:
1320 return path_recurse
;
1325 case index_nonexistent
:
1326 if (dir
->flags
& DIR_SHOW_OTHER_DIRECTORIES
)
1328 if (!(dir
->flags
& DIR_NO_GITLINKS
)) {
1329 unsigned char sha1
[20];
1330 if (resolve_gitlink_ref(dirname
, "HEAD", sha1
) == 0)
1331 return path_untracked
;
1333 return path_recurse
;
1336 /* This is the "show_other_directories" case */
1338 if (!(dir
->flags
& DIR_HIDE_EMPTY_DIRECTORIES
))
1339 return exclude
? path_excluded
: path_untracked
;
1341 untracked
= lookup_untracked(dir
->untracked
, untracked
,
1342 dirname
+ baselen
, len
- baselen
);
1343 return read_directory_recursive(dir
, dirname
, len
,
1344 untracked
, 1, simplify
);
1348 * This is an inexact early pruning of any recursive directory
1349 * reading - if the path cannot possibly be in the pathspec,
1350 * return true, and we'll skip it early.
1352 static int simplify_away(const char *path
, int pathlen
, const struct path_simplify
*simplify
)
1356 const char *match
= simplify
->path
;
1357 int len
= simplify
->len
;
1363 if (!memcmp(path
, match
, len
))
1373 * This function tells us whether an excluded path matches a
1374 * list of "interesting" pathspecs. That is, whether a path matched
1375 * by any of the pathspecs could possibly be ignored by excluding
1376 * the specified path. This can happen if:
1378 * 1. the path is mentioned explicitly in the pathspec
1380 * 2. the path is a directory prefix of some element in the
1383 static int exclude_matches_pathspec(const char *path
, int len
,
1384 const struct path_simplify
*simplify
)
1387 for (; simplify
->path
; simplify
++) {
1388 if (len
== simplify
->len
1389 && !memcmp(path
, simplify
->path
, len
))
1391 if (len
< simplify
->len
1392 && simplify
->path
[len
] == '/'
1393 && !memcmp(path
, simplify
->path
, len
))
1400 static int get_index_dtype(const char *path
, int len
)
1403 const struct cache_entry
*ce
;
1405 ce
= cache_file_exists(path
, len
, 0);
1407 if (!ce_uptodate(ce
))
1409 if (S_ISGITLINK(ce
->ce_mode
))
1412 * Nobody actually cares about the
1413 * difference between DT_LNK and DT_REG
1418 /* Try to look it up as a directory */
1419 pos
= cache_name_pos(path
, len
);
1423 while (pos
< active_nr
) {
1424 ce
= active_cache
[pos
++];
1425 if (strncmp(ce
->name
, path
, len
))
1427 if (ce
->name
[len
] > '/')
1429 if (ce
->name
[len
] < '/')
1431 if (!ce_uptodate(ce
))
1432 break; /* continue? */
1438 static int get_dtype(struct dirent
*de
, const char *path
, int len
)
1440 int dtype
= de
? DTYPE(de
) : DT_UNKNOWN
;
1443 if (dtype
!= DT_UNKNOWN
)
1445 dtype
= get_index_dtype(path
, len
);
1446 if (dtype
!= DT_UNKNOWN
)
1448 if (lstat(path
, &st
))
1450 if (S_ISREG(st
.st_mode
))
1452 if (S_ISDIR(st
.st_mode
))
1454 if (S_ISLNK(st
.st_mode
))
1459 static enum path_treatment
treat_one_path(struct dir_struct
*dir
,
1460 struct untracked_cache_dir
*untracked
,
1461 struct strbuf
*path
,
1463 const struct path_simplify
*simplify
,
1464 int dtype
, struct dirent
*de
)
1467 int has_path_in_index
= !!cache_file_exists(path
->buf
, path
->len
, ignore_case
);
1469 if (dtype
== DT_UNKNOWN
)
1470 dtype
= get_dtype(de
, path
->buf
, path
->len
);
1472 /* Always exclude indexed files */
1473 if (dtype
!= DT_DIR
&& has_path_in_index
)
1477 * When we are looking at a directory P in the working tree,
1478 * there are three cases:
1480 * (1) P exists in the index. Everything inside the directory P in
1481 * the working tree needs to go when P is checked out from the
1484 * (2) P does not exist in the index, but there is P/Q in the index.
1485 * We know P will stay a directory when we check out the contents
1486 * of the index, but we do not know yet if there is a directory
1487 * P/Q in the working tree to be killed, so we need to recurse.
1489 * (3) P does not exist in the index, and there is no P/Q in the index
1490 * to require P to be a directory, either. Only in this case, we
1491 * know that everything inside P will not be killed without
1494 if ((dir
->flags
& DIR_COLLECT_KILLED_ONLY
) &&
1495 (dtype
== DT_DIR
) &&
1496 !has_path_in_index
&&
1497 (directory_exists_in_index(path
->buf
, path
->len
) == index_nonexistent
))
1500 exclude
= is_excluded(dir
, path
->buf
, &dtype
);
1503 * Excluded? If we don't explicitly want to show
1504 * ignored files, ignore it
1506 if (exclude
&& !(dir
->flags
& (DIR_SHOW_IGNORED
|DIR_SHOW_IGNORED_TOO
)))
1507 return path_excluded
;
1513 strbuf_addch(path
, '/');
1514 return treat_directory(dir
, untracked
, path
->buf
, path
->len
,
1515 baselen
, exclude
, simplify
);
1518 return exclude
? path_excluded
: path_untracked
;
1522 static enum path_treatment
treat_path_fast(struct dir_struct
*dir
,
1523 struct untracked_cache_dir
*untracked
,
1524 struct cached_dir
*cdir
,
1525 struct strbuf
*path
,
1527 const struct path_simplify
*simplify
)
1529 strbuf_setlen(path
, baselen
);
1531 strbuf_addstr(path
, cdir
->file
);
1532 return path_untracked
;
1534 strbuf_addstr(path
, cdir
->ucd
->name
);
1535 /* treat_one_path() does this before it calls treat_directory() */
1536 strbuf_complete(path
, '/');
1537 if (cdir
->ucd
->check_only
)
1539 * check_only is set as a result of treat_directory() getting
1540 * to its bottom. Verify again the same set of directories
1541 * with check_only set.
1543 return read_directory_recursive(dir
, path
->buf
, path
->len
,
1544 cdir
->ucd
, 1, simplify
);
1546 * We get path_recurse in the first run when
1547 * directory_exists_in_index() returns index_nonexistent. We
1548 * are sure that new changes in the index does not impact the
1549 * outcome. Return now.
1551 return path_recurse
;
1554 static enum path_treatment
treat_path(struct dir_struct
*dir
,
1555 struct untracked_cache_dir
*untracked
,
1556 struct cached_dir
*cdir
,
1557 struct strbuf
*path
,
1559 const struct path_simplify
*simplify
)
1562 struct dirent
*de
= cdir
->de
;
1565 return treat_path_fast(dir
, untracked
, cdir
, path
,
1567 if (is_dot_or_dotdot(de
->d_name
) || !strcmp(de
->d_name
, ".git"))
1569 strbuf_setlen(path
, baselen
);
1570 strbuf_addstr(path
, de
->d_name
);
1571 if (simplify_away(path
->buf
, path
->len
, simplify
))
1575 return treat_one_path(dir
, untracked
, path
, baselen
, simplify
, dtype
, de
);
1578 static void add_untracked(struct untracked_cache_dir
*dir
, const char *name
)
1582 ALLOC_GROW(dir
->untracked
, dir
->untracked_nr
+ 1,
1583 dir
->untracked_alloc
);
1584 dir
->untracked
[dir
->untracked_nr
++] = xstrdup(name
);
1587 static int valid_cached_dir(struct dir_struct
*dir
,
1588 struct untracked_cache_dir
*untracked
,
1589 struct strbuf
*path
,
1597 if (stat(path
->len
? path
->buf
: ".", &st
)) {
1598 invalidate_directory(dir
->untracked
, untracked
);
1599 memset(&untracked
->stat_data
, 0, sizeof(untracked
->stat_data
));
1602 if (!untracked
->valid
||
1603 match_stat_data_racy(&the_index
, &untracked
->stat_data
, &st
)) {
1604 if (untracked
->valid
)
1605 invalidate_directory(dir
->untracked
, untracked
);
1606 fill_stat_data(&untracked
->stat_data
, &st
);
1610 if (untracked
->check_only
!= !!check_only
) {
1611 invalidate_directory(dir
->untracked
, untracked
);
1616 * prep_exclude will be called eventually on this directory,
1617 * but it's called much later in last_exclude_matching(). We
1618 * need it now to determine the validity of the cache for this
1619 * path. The next calls will be nearly no-op, the way
1620 * prep_exclude() is designed.
1622 if (path
->len
&& path
->buf
[path
->len
- 1] != '/') {
1623 strbuf_addch(path
, '/');
1624 prep_exclude(dir
, path
->buf
, path
->len
);
1625 strbuf_setlen(path
, path
->len
- 1);
1627 prep_exclude(dir
, path
->buf
, path
->len
);
1629 /* hopefully prep_exclude() haven't invalidated this entry... */
1630 return untracked
->valid
;
1633 static int open_cached_dir(struct cached_dir
*cdir
,
1634 struct dir_struct
*dir
,
1635 struct untracked_cache_dir
*untracked
,
1636 struct strbuf
*path
,
1639 memset(cdir
, 0, sizeof(*cdir
));
1640 cdir
->untracked
= untracked
;
1641 if (valid_cached_dir(dir
, untracked
, path
, check_only
))
1643 cdir
->fdir
= opendir(path
->len
? path
->buf
: ".");
1645 dir
->untracked
->dir_opened
++;
1651 static int read_cached_dir(struct cached_dir
*cdir
)
1654 cdir
->de
= readdir(cdir
->fdir
);
1659 while (cdir
->nr_dirs
< cdir
->untracked
->dirs_nr
) {
1660 struct untracked_cache_dir
*d
= cdir
->untracked
->dirs
[cdir
->nr_dirs
];
1670 if (cdir
->nr_files
< cdir
->untracked
->untracked_nr
) {
1671 struct untracked_cache_dir
*d
= cdir
->untracked
;
1672 cdir
->file
= d
->untracked
[cdir
->nr_files
++];
1678 static void close_cached_dir(struct cached_dir
*cdir
)
1681 closedir(cdir
->fdir
);
1683 * We have gone through this directory and found no untracked
1684 * entries. Mark it valid.
1686 if (cdir
->untracked
) {
1687 cdir
->untracked
->valid
= 1;
1688 cdir
->untracked
->recurse
= 1;
1693 * Read a directory tree. We currently ignore anything but
1694 * directories, regular files and symlinks. That's because git
1695 * doesn't handle them at all yet. Maybe that will change some
1698 * Also, we ignore the name ".git" (even if it is not a directory).
1699 * That likely will not change.
1701 * Returns the most significant path_treatment value encountered in the scan.
1703 static enum path_treatment
read_directory_recursive(struct dir_struct
*dir
,
1704 const char *base
, int baselen
,
1705 struct untracked_cache_dir
*untracked
, int check_only
,
1706 const struct path_simplify
*simplify
)
1708 struct cached_dir cdir
;
1709 enum path_treatment state
, subdir_state
, dir_state
= path_none
;
1710 struct strbuf path
= STRBUF_INIT
;
1712 strbuf_add(&path
, base
, baselen
);
1714 if (open_cached_dir(&cdir
, dir
, untracked
, &path
, check_only
))
1718 untracked
->check_only
= !!check_only
;
1720 while (!read_cached_dir(&cdir
)) {
1721 /* check how the file or directory should be treated */
1722 state
= treat_path(dir
, untracked
, &cdir
, &path
, baselen
, simplify
);
1724 if (state
> dir_state
)
1727 /* recurse into subdir if instructed by treat_path */
1728 if (state
== path_recurse
) {
1729 struct untracked_cache_dir
*ud
;
1730 ud
= lookup_untracked(dir
->untracked
, untracked
,
1732 path
.len
- baselen
);
1734 read_directory_recursive(dir
, path
.buf
, path
.len
,
1735 ud
, check_only
, simplify
);
1736 if (subdir_state
> dir_state
)
1737 dir_state
= subdir_state
;
1741 /* abort early if maximum state has been reached */
1742 if (dir_state
== path_untracked
) {
1744 add_untracked(untracked
, path
.buf
+ baselen
);
1747 /* skip the dir_add_* part */
1751 /* add the path to the appropriate result list */
1754 if (dir
->flags
& DIR_SHOW_IGNORED
)
1755 dir_add_name(dir
, path
.buf
, path
.len
);
1756 else if ((dir
->flags
& DIR_SHOW_IGNORED_TOO
) ||
1757 ((dir
->flags
& DIR_COLLECT_IGNORED
) &&
1758 exclude_matches_pathspec(path
.buf
, path
.len
,
1760 dir_add_ignored(dir
, path
.buf
, path
.len
);
1763 case path_untracked
:
1764 if (dir
->flags
& DIR_SHOW_IGNORED
)
1766 dir_add_name(dir
, path
.buf
, path
.len
);
1768 add_untracked(untracked
, path
.buf
+ baselen
);
1775 close_cached_dir(&cdir
);
1777 strbuf_release(&path
);
1782 static int cmp_name(const void *p1
, const void *p2
)
1784 const struct dir_entry
*e1
= *(const struct dir_entry
**)p1
;
1785 const struct dir_entry
*e2
= *(const struct dir_entry
**)p2
;
1787 return name_compare(e1
->name
, e1
->len
, e2
->name
, e2
->len
);
1790 static struct path_simplify
*create_simplify(const char **pathspec
)
1793 struct path_simplify
*simplify
= NULL
;
1798 for (nr
= 0 ; ; nr
++) {
1800 ALLOC_GROW(simplify
, nr
+ 1, alloc
);
1801 match
= *pathspec
++;
1804 simplify
[nr
].path
= match
;
1805 simplify
[nr
].len
= simple_length(match
);
1807 simplify
[nr
].path
= NULL
;
1808 simplify
[nr
].len
= 0;
1812 static void free_simplify(struct path_simplify
*simplify
)
1817 static int treat_leading_path(struct dir_struct
*dir
,
1818 const char *path
, int len
,
1819 const struct path_simplify
*simplify
)
1821 struct strbuf sb
= STRBUF_INIT
;
1822 int baselen
, rc
= 0;
1824 int old_flags
= dir
->flags
;
1826 while (len
&& path
[len
- 1] == '/')
1831 dir
->flags
&= ~DIR_SHOW_OTHER_DIRECTORIES
;
1833 cp
= path
+ baselen
+ !!baselen
;
1834 cp
= memchr(cp
, '/', path
+ len
- cp
);
1838 baselen
= cp
- path
;
1839 strbuf_setlen(&sb
, 0);
1840 strbuf_add(&sb
, path
, baselen
);
1841 if (!is_directory(sb
.buf
))
1843 if (simplify_away(sb
.buf
, sb
.len
, simplify
))
1845 if (treat_one_path(dir
, NULL
, &sb
, baselen
, simplify
,
1846 DT_DIR
, NULL
) == path_none
)
1847 break; /* do not recurse into it */
1848 if (len
<= baselen
) {
1850 break; /* finished checking */
1853 strbuf_release(&sb
);
1854 dir
->flags
= old_flags
;
1858 static const char *get_ident_string(void)
1860 static struct strbuf sb
= STRBUF_INIT
;
1865 if (uname(&uts
) < 0)
1866 die_errno(_("failed to get kernel name and information"));
1867 strbuf_addf(&sb
, "Location %s, system %s", get_git_work_tree(),
1872 static int ident_in_untracked(const struct untracked_cache
*uc
)
1875 * Previous git versions may have saved many NUL separated
1876 * strings in the "ident" field, but it is insane to manage
1877 * many locations, so just take care of the first one.
1880 return !strcmp(uc
->ident
.buf
, get_ident_string());
1883 static void set_untracked_ident(struct untracked_cache
*uc
)
1885 strbuf_reset(&uc
->ident
);
1886 strbuf_addstr(&uc
->ident
, get_ident_string());
1889 * This strbuf used to contain a list of NUL separated
1890 * strings, so save NUL too for backward compatibility.
1892 strbuf_addch(&uc
->ident
, 0);
1895 static void new_untracked_cache(struct index_state
*istate
)
1897 struct untracked_cache
*uc
= xcalloc(1, sizeof(*uc
));
1898 strbuf_init(&uc
->ident
, 100);
1899 uc
->exclude_per_dir
= ".gitignore";
1900 /* should be the same flags used by git-status */
1901 uc
->dir_flags
= DIR_SHOW_OTHER_DIRECTORIES
| DIR_HIDE_EMPTY_DIRECTORIES
;
1902 set_untracked_ident(uc
);
1903 istate
->untracked
= uc
;
1904 istate
->cache_changed
|= UNTRACKED_CHANGED
;
1907 void add_untracked_cache(struct index_state
*istate
)
1909 if (!istate
->untracked
) {
1910 new_untracked_cache(istate
);
1912 if (!ident_in_untracked(istate
->untracked
)) {
1913 free_untracked_cache(istate
->untracked
);
1914 new_untracked_cache(istate
);
1919 void remove_untracked_cache(struct index_state
*istate
)
1921 if (istate
->untracked
) {
1922 free_untracked_cache(istate
->untracked
);
1923 istate
->untracked
= NULL
;
1924 istate
->cache_changed
|= UNTRACKED_CHANGED
;
1928 static struct untracked_cache_dir
*validate_untracked_cache(struct dir_struct
*dir
,
1930 const struct pathspec
*pathspec
)
1932 struct untracked_cache_dir
*root
;
1934 if (!dir
->untracked
|| getenv("GIT_DISABLE_UNTRACKED_CACHE"))
1938 * We only support $GIT_DIR/info/exclude and core.excludesfile
1939 * as the global ignore rule files. Any other additions
1940 * (e.g. from command line) invalidate the cache. This
1941 * condition also catches running setup_standard_excludes()
1942 * before setting dir->untracked!
1944 if (dir
->unmanaged_exclude_files
)
1948 * Optimize for the main use case only: whole-tree git
1949 * status. More work involved in treat_leading_path() if we
1950 * use cache on just a subset of the worktree. pathspec
1951 * support could make the matter even worse.
1953 if (base_len
|| (pathspec
&& pathspec
->nr
))
1956 /* Different set of flags may produce different results */
1957 if (dir
->flags
!= dir
->untracked
->dir_flags
||
1959 * See treat_directory(), case index_nonexistent. Without
1960 * this flag, we may need to also cache .git file content
1961 * for the resolve_gitlink_ref() call, which we don't.
1963 !(dir
->flags
& DIR_SHOW_OTHER_DIRECTORIES
) ||
1964 /* We don't support collecting ignore files */
1965 (dir
->flags
& (DIR_SHOW_IGNORED
| DIR_SHOW_IGNORED_TOO
|
1966 DIR_COLLECT_IGNORED
)))
1970 * If we use .gitignore in the cache and now you change it to
1971 * .gitexclude, everything will go wrong.
1973 if (dir
->exclude_per_dir
!= dir
->untracked
->exclude_per_dir
&&
1974 strcmp(dir
->exclude_per_dir
, dir
->untracked
->exclude_per_dir
))
1978 * EXC_CMDL is not considered in the cache. If people set it,
1981 if (dir
->exclude_list_group
[EXC_CMDL
].nr
)
1984 if (!ident_in_untracked(dir
->untracked
)) {
1985 warning(_("Untracked cache is disabled on this system or location."));
1989 if (!dir
->untracked
->root
) {
1990 const int len
= sizeof(*dir
->untracked
->root
);
1991 dir
->untracked
->root
= xmalloc(len
);
1992 memset(dir
->untracked
->root
, 0, len
);
1995 /* Validate $GIT_DIR/info/exclude and core.excludesfile */
1996 root
= dir
->untracked
->root
;
1997 if (hashcmp(dir
->ss_info_exclude
.sha1
,
1998 dir
->untracked
->ss_info_exclude
.sha1
)) {
1999 invalidate_gitignore(dir
->untracked
, root
);
2000 dir
->untracked
->ss_info_exclude
= dir
->ss_info_exclude
;
2002 if (hashcmp(dir
->ss_excludes_file
.sha1
,
2003 dir
->untracked
->ss_excludes_file
.sha1
)) {
2004 invalidate_gitignore(dir
->untracked
, root
);
2005 dir
->untracked
->ss_excludes_file
= dir
->ss_excludes_file
;
2008 /* Make sure this directory is not dropped out at saving phase */
2013 int read_directory(struct dir_struct
*dir
, const char *path
, int len
, const struct pathspec
*pathspec
)
2015 struct path_simplify
*simplify
;
2016 struct untracked_cache_dir
*untracked
;
2019 * Check out create_simplify()
2022 GUARD_PATHSPEC(pathspec
,
2030 if (has_symlink_leading_path(path
, len
))
2034 * exclude patterns are treated like positive ones in
2035 * create_simplify. Usually exclude patterns should be a
2036 * subset of positive ones, which has no impacts on
2037 * create_simplify().
2039 simplify
= create_simplify(pathspec
? pathspec
->_raw
: NULL
);
2040 untracked
= validate_untracked_cache(dir
, len
, pathspec
);
2043 * make sure untracked cache code path is disabled,
2044 * e.g. prep_exclude()
2046 dir
->untracked
= NULL
;
2047 if (!len
|| treat_leading_path(dir
, path
, len
, simplify
))
2048 read_directory_recursive(dir
, path
, len
, untracked
, 0, simplify
);
2049 free_simplify(simplify
);
2050 QSORT(dir
->entries
, dir
->nr
, cmp_name
);
2051 QSORT(dir
->ignored
, dir
->ignored_nr
, cmp_name
);
2052 if (dir
->untracked
) {
2053 static struct trace_key trace_untracked_stats
= TRACE_KEY_INIT(UNTRACKED_STATS
);
2054 trace_printf_key(&trace_untracked_stats
,
2055 "node creation: %u\n"
2056 "gitignore invalidation: %u\n"
2057 "directory invalidation: %u\n"
2059 dir
->untracked
->dir_created
,
2060 dir
->untracked
->gitignore_invalidated
,
2061 dir
->untracked
->dir_invalidated
,
2062 dir
->untracked
->dir_opened
);
2063 if (dir
->untracked
== the_index
.untracked
&&
2064 (dir
->untracked
->dir_opened
||
2065 dir
->untracked
->gitignore_invalidated
||
2066 dir
->untracked
->dir_invalidated
))
2067 the_index
.cache_changed
|= UNTRACKED_CHANGED
;
2068 if (dir
->untracked
!= the_index
.untracked
) {
2069 free(dir
->untracked
);
2070 dir
->untracked
= NULL
;
2076 int file_exists(const char *f
)
2079 return lstat(f
, &sb
) == 0;
2082 static int cmp_icase(char a
, char b
)
2087 return toupper(a
) - toupper(b
);
2092 * Given two normalized paths (a trailing slash is ok), if subdir is
2093 * outside dir, return -1. Otherwise return the offset in subdir that
2094 * can be used as relative path to dir.
2096 int dir_inside_of(const char *subdir
, const char *dir
)
2100 assert(dir
&& subdir
&& *dir
&& *subdir
);
2102 while (*dir
&& *subdir
&& !cmp_icase(*dir
, *subdir
)) {
2108 /* hel[p]/me vs hel[l]/yeah */
2109 if (*dir
&& *subdir
)
2113 return !*dir
? offset
: -1; /* same dir */
2115 /* foo/[b]ar vs foo/[] */
2116 if (is_dir_sep(dir
[-1]))
2117 return is_dir_sep(subdir
[-1]) ? offset
: -1;
2119 /* foo[/]bar vs foo[] */
2120 return is_dir_sep(*subdir
) ? offset
+ 1 : -1;
2123 int is_inside_dir(const char *dir
)
2132 rc
= (dir_inside_of(cwd
, dir
) >= 0);
2137 int is_empty_dir(const char *path
)
2139 DIR *dir
= opendir(path
);
2146 while ((e
= readdir(dir
)) != NULL
)
2147 if (!is_dot_or_dotdot(e
->d_name
)) {
2156 static int remove_dir_recurse(struct strbuf
*path
, int flag
, int *kept_up
)
2160 int ret
= 0, original_len
= path
->len
, len
, kept_down
= 0;
2161 int only_empty
= (flag
& REMOVE_DIR_EMPTY_ONLY
);
2162 int keep_toplevel
= (flag
& REMOVE_DIR_KEEP_TOPLEVEL
);
2163 unsigned char submodule_head
[20];
2165 if ((flag
& REMOVE_DIR_KEEP_NESTED_GIT
) &&
2166 !resolve_gitlink_ref(path
->buf
, "HEAD", submodule_head
)) {
2167 /* Do not descend and nuke a nested git work tree. */
2173 flag
&= ~REMOVE_DIR_KEEP_TOPLEVEL
;
2174 dir
= opendir(path
->buf
);
2176 if (errno
== ENOENT
)
2177 return keep_toplevel
? -1 : 0;
2178 else if (errno
== EACCES
&& !keep_toplevel
)
2180 * An empty dir could be removable even if it
2183 return rmdir(path
->buf
);
2187 strbuf_complete(path
, '/');
2190 while ((e
= readdir(dir
)) != NULL
) {
2192 if (is_dot_or_dotdot(e
->d_name
))
2195 strbuf_setlen(path
, len
);
2196 strbuf_addstr(path
, e
->d_name
);
2197 if (lstat(path
->buf
, &st
)) {
2198 if (errno
== ENOENT
)
2200 * file disappeared, which is what we
2205 } else if (S_ISDIR(st
.st_mode
)) {
2206 if (!remove_dir_recurse(path
, flag
, &kept_down
))
2207 continue; /* happy */
2208 } else if (!only_empty
&&
2209 (!unlink(path
->buf
) || errno
== ENOENT
)) {
2210 continue; /* happy, too */
2213 /* path too long, stat fails, or non-directory still exists */
2219 strbuf_setlen(path
, original_len
);
2220 if (!ret
&& !keep_toplevel
&& !kept_down
)
2221 ret
= (!rmdir(path
->buf
) || errno
== ENOENT
) ? 0 : -1;
2224 * report the uplevel that it is not an error that we
2225 * did not rmdir() our directory.
2231 int remove_dir_recursively(struct strbuf
*path
, int flag
)
2233 return remove_dir_recurse(path
, flag
, NULL
);
2236 static GIT_PATH_FUNC(git_path_info_exclude
, "info/exclude")
2238 void setup_standard_excludes(struct dir_struct
*dir
)
2240 dir
->exclude_per_dir
= ".gitignore";
2242 /* core.excludefile defaulting to $XDG_HOME/git/ignore */
2244 excludes_file
= xdg_config_home("ignore");
2245 if (excludes_file
&& !access_or_warn(excludes_file
, R_OK
, 0))
2246 add_excludes_from_file_1(dir
, excludes_file
,
2247 dir
->untracked
? &dir
->ss_excludes_file
: NULL
);
2249 /* per repository user preference */
2250 if (startup_info
->have_repository
) {
2251 const char *path
= git_path_info_exclude();
2252 if (!access_or_warn(path
, R_OK
, 0))
2253 add_excludes_from_file_1(dir
, path
,
2254 dir
->untracked
? &dir
->ss_info_exclude
: NULL
);
2258 int remove_path(const char *name
)
2262 if (unlink(name
) && errno
!= ENOENT
&& errno
!= ENOTDIR
)
2265 slash
= strrchr(name
, '/');
2267 char *dirs
= xstrdup(name
);
2268 slash
= dirs
+ (slash
- name
);
2271 } while (rmdir(dirs
) == 0 && (slash
= strrchr(dirs
, '/')));
2278 * Frees memory within dir which was allocated for exclude lists and
2279 * the exclude_stack. Does not free dir itself.
2281 void clear_directory(struct dir_struct
*dir
)
2284 struct exclude_list_group
*group
;
2285 struct exclude_list
*el
;
2286 struct exclude_stack
*stk
;
2288 for (i
= EXC_CMDL
; i
<= EXC_FILE
; i
++) {
2289 group
= &dir
->exclude_list_group
[i
];
2290 for (j
= 0; j
< group
->nr
; j
++) {
2293 free((char *)el
->src
);
2294 clear_exclude_list(el
);
2299 stk
= dir
->exclude_stack
;
2301 struct exclude_stack
*prev
= stk
->prev
;
2305 strbuf_release(&dir
->basebuf
);
2308 struct ondisk_untracked_cache
{
2309 struct stat_data info_exclude_stat
;
2310 struct stat_data excludes_file_stat
;
2312 unsigned char info_exclude_sha1
[20];
2313 unsigned char excludes_file_sha1
[20];
2314 char exclude_per_dir
[FLEX_ARRAY
];
2317 #define ouc_size(len) (offsetof(struct ondisk_untracked_cache, exclude_per_dir) + len + 1)
2320 int index
; /* number of written untracked_cache_dir */
2321 struct ewah_bitmap
*check_only
; /* from untracked_cache_dir */
2322 struct ewah_bitmap
*valid
; /* from untracked_cache_dir */
2323 struct ewah_bitmap
*sha1_valid
; /* set if exclude_sha1 is not null */
2325 struct strbuf sb_stat
;
2326 struct strbuf sb_sha1
;
2329 static void stat_data_to_disk(struct stat_data
*to
, const struct stat_data
*from
)
2331 to
->sd_ctime
.sec
= htonl(from
->sd_ctime
.sec
);
2332 to
->sd_ctime
.nsec
= htonl(from
->sd_ctime
.nsec
);
2333 to
->sd_mtime
.sec
= htonl(from
->sd_mtime
.sec
);
2334 to
->sd_mtime
.nsec
= htonl(from
->sd_mtime
.nsec
);
2335 to
->sd_dev
= htonl(from
->sd_dev
);
2336 to
->sd_ino
= htonl(from
->sd_ino
);
2337 to
->sd_uid
= htonl(from
->sd_uid
);
2338 to
->sd_gid
= htonl(from
->sd_gid
);
2339 to
->sd_size
= htonl(from
->sd_size
);
2342 static void write_one_dir(struct untracked_cache_dir
*untracked
,
2343 struct write_data
*wd
)
2345 struct stat_data stat_data
;
2346 struct strbuf
*out
= &wd
->out
;
2347 unsigned char intbuf
[16];
2348 unsigned int intlen
, value
;
2349 int i
= wd
->index
++;
2352 * untracked_nr should be reset whenever valid is clear, but
2355 if (!untracked
->valid
) {
2356 untracked
->untracked_nr
= 0;
2357 untracked
->check_only
= 0;
2360 if (untracked
->check_only
)
2361 ewah_set(wd
->check_only
, i
);
2362 if (untracked
->valid
) {
2363 ewah_set(wd
->valid
, i
);
2364 stat_data_to_disk(&stat_data
, &untracked
->stat_data
);
2365 strbuf_add(&wd
->sb_stat
, &stat_data
, sizeof(stat_data
));
2367 if (!is_null_sha1(untracked
->exclude_sha1
)) {
2368 ewah_set(wd
->sha1_valid
, i
);
2369 strbuf_add(&wd
->sb_sha1
, untracked
->exclude_sha1
, 20);
2372 intlen
= encode_varint(untracked
->untracked_nr
, intbuf
);
2373 strbuf_add(out
, intbuf
, intlen
);
2375 /* skip non-recurse directories */
2376 for (i
= 0, value
= 0; i
< untracked
->dirs_nr
; i
++)
2377 if (untracked
->dirs
[i
]->recurse
)
2379 intlen
= encode_varint(value
, intbuf
);
2380 strbuf_add(out
, intbuf
, intlen
);
2382 strbuf_add(out
, untracked
->name
, strlen(untracked
->name
) + 1);
2384 for (i
= 0; i
< untracked
->untracked_nr
; i
++)
2385 strbuf_add(out
, untracked
->untracked
[i
],
2386 strlen(untracked
->untracked
[i
]) + 1);
2388 for (i
= 0; i
< untracked
->dirs_nr
; i
++)
2389 if (untracked
->dirs
[i
]->recurse
)
2390 write_one_dir(untracked
->dirs
[i
], wd
);
2393 void write_untracked_extension(struct strbuf
*out
, struct untracked_cache
*untracked
)
2395 struct ondisk_untracked_cache
*ouc
;
2396 struct write_data wd
;
2397 unsigned char varbuf
[16];
2399 size_t len
= strlen(untracked
->exclude_per_dir
);
2401 FLEX_ALLOC_MEM(ouc
, exclude_per_dir
, untracked
->exclude_per_dir
, len
);
2402 stat_data_to_disk(&ouc
->info_exclude_stat
, &untracked
->ss_info_exclude
.stat
);
2403 stat_data_to_disk(&ouc
->excludes_file_stat
, &untracked
->ss_excludes_file
.stat
);
2404 hashcpy(ouc
->info_exclude_sha1
, untracked
->ss_info_exclude
.sha1
);
2405 hashcpy(ouc
->excludes_file_sha1
, untracked
->ss_excludes_file
.sha1
);
2406 ouc
->dir_flags
= htonl(untracked
->dir_flags
);
2408 varint_len
= encode_varint(untracked
->ident
.len
, varbuf
);
2409 strbuf_add(out
, varbuf
, varint_len
);
2410 strbuf_addbuf(out
, &untracked
->ident
);
2412 strbuf_add(out
, ouc
, ouc_size(len
));
2416 if (!untracked
->root
) {
2417 varint_len
= encode_varint(0, varbuf
);
2418 strbuf_add(out
, varbuf
, varint_len
);
2423 wd
.check_only
= ewah_new();
2424 wd
.valid
= ewah_new();
2425 wd
.sha1_valid
= ewah_new();
2426 strbuf_init(&wd
.out
, 1024);
2427 strbuf_init(&wd
.sb_stat
, 1024);
2428 strbuf_init(&wd
.sb_sha1
, 1024);
2429 write_one_dir(untracked
->root
, &wd
);
2431 varint_len
= encode_varint(wd
.index
, varbuf
);
2432 strbuf_add(out
, varbuf
, varint_len
);
2433 strbuf_addbuf(out
, &wd
.out
);
2434 ewah_serialize_strbuf(wd
.valid
, out
);
2435 ewah_serialize_strbuf(wd
.check_only
, out
);
2436 ewah_serialize_strbuf(wd
.sha1_valid
, out
);
2437 strbuf_addbuf(out
, &wd
.sb_stat
);
2438 strbuf_addbuf(out
, &wd
.sb_sha1
);
2439 strbuf_addch(out
, '\0'); /* safe guard for string lists */
2441 ewah_free(wd
.valid
);
2442 ewah_free(wd
.check_only
);
2443 ewah_free(wd
.sha1_valid
);
2444 strbuf_release(&wd
.out
);
2445 strbuf_release(&wd
.sb_stat
);
2446 strbuf_release(&wd
.sb_sha1
);
2449 static void free_untracked(struct untracked_cache_dir
*ucd
)
2454 for (i
= 0; i
< ucd
->dirs_nr
; i
++)
2455 free_untracked(ucd
->dirs
[i
]);
2456 for (i
= 0; i
< ucd
->untracked_nr
; i
++)
2457 free(ucd
->untracked
[i
]);
2458 free(ucd
->untracked
);
2463 void free_untracked_cache(struct untracked_cache
*uc
)
2466 free_untracked(uc
->root
);
2472 struct untracked_cache_dir
**ucd
;
2473 struct ewah_bitmap
*check_only
;
2474 struct ewah_bitmap
*valid
;
2475 struct ewah_bitmap
*sha1_valid
;
2476 const unsigned char *data
;
2477 const unsigned char *end
;
2480 static void stat_data_from_disk(struct stat_data
*to
, const struct stat_data
*from
)
2482 to
->sd_ctime
.sec
= get_be32(&from
->sd_ctime
.sec
);
2483 to
->sd_ctime
.nsec
= get_be32(&from
->sd_ctime
.nsec
);
2484 to
->sd_mtime
.sec
= get_be32(&from
->sd_mtime
.sec
);
2485 to
->sd_mtime
.nsec
= get_be32(&from
->sd_mtime
.nsec
);
2486 to
->sd_dev
= get_be32(&from
->sd_dev
);
2487 to
->sd_ino
= get_be32(&from
->sd_ino
);
2488 to
->sd_uid
= get_be32(&from
->sd_uid
);
2489 to
->sd_gid
= get_be32(&from
->sd_gid
);
2490 to
->sd_size
= get_be32(&from
->sd_size
);
2493 static int read_one_dir(struct untracked_cache_dir
**untracked_
,
2494 struct read_data
*rd
)
2496 struct untracked_cache_dir ud
, *untracked
;
2497 const unsigned char *next
, *data
= rd
->data
, *end
= rd
->end
;
2501 memset(&ud
, 0, sizeof(ud
));
2504 value
= decode_varint(&next
);
2508 ud
.untracked_alloc
= value
;
2509 ud
.untracked_nr
= value
;
2510 if (ud
.untracked_nr
)
2511 ALLOC_ARRAY(ud
.untracked
, ud
.untracked_nr
);
2515 ud
.dirs_alloc
= ud
.dirs_nr
= decode_varint(&next
);
2518 ALLOC_ARRAY(ud
.dirs
, ud
.dirs_nr
);
2521 len
= strlen((const char *)data
);
2522 next
= data
+ len
+ 1;
2525 *untracked_
= untracked
= xmalloc(st_add(sizeof(*untracked
), len
));
2526 memcpy(untracked
, &ud
, sizeof(ud
));
2527 memcpy(untracked
->name
, data
, len
+ 1);
2530 for (i
= 0; i
< untracked
->untracked_nr
; i
++) {
2531 len
= strlen((const char *)data
);
2532 next
= data
+ len
+ 1;
2535 untracked
->untracked
[i
] = xstrdup((const char*)data
);
2539 rd
->ucd
[rd
->index
++] = untracked
;
2542 for (i
= 0; i
< untracked
->dirs_nr
; i
++) {
2543 len
= read_one_dir(untracked
->dirs
+ i
, rd
);
2550 static void set_check_only(size_t pos
, void *cb
)
2552 struct read_data
*rd
= cb
;
2553 struct untracked_cache_dir
*ud
= rd
->ucd
[pos
];
2557 static void read_stat(size_t pos
, void *cb
)
2559 struct read_data
*rd
= cb
;
2560 struct untracked_cache_dir
*ud
= rd
->ucd
[pos
];
2561 if (rd
->data
+ sizeof(struct stat_data
) > rd
->end
) {
2562 rd
->data
= rd
->end
+ 1;
2565 stat_data_from_disk(&ud
->stat_data
, (struct stat_data
*)rd
->data
);
2566 rd
->data
+= sizeof(struct stat_data
);
2570 static void read_sha1(size_t pos
, void *cb
)
2572 struct read_data
*rd
= cb
;
2573 struct untracked_cache_dir
*ud
= rd
->ucd
[pos
];
2574 if (rd
->data
+ 20 > rd
->end
) {
2575 rd
->data
= rd
->end
+ 1;
2578 hashcpy(ud
->exclude_sha1
, rd
->data
);
2582 static void load_sha1_stat(struct sha1_stat
*sha1_stat
,
2583 const struct stat_data
*stat
,
2584 const unsigned char *sha1
)
2586 stat_data_from_disk(&sha1_stat
->stat
, stat
);
2587 hashcpy(sha1_stat
->sha1
, sha1
);
2588 sha1_stat
->valid
= 1;
2591 struct untracked_cache
*read_untracked_extension(const void *data
, unsigned long sz
)
2593 const struct ondisk_untracked_cache
*ouc
;
2594 struct untracked_cache
*uc
;
2595 struct read_data rd
;
2596 const unsigned char *next
= data
, *end
= (const unsigned char *)data
+ sz
;
2600 if (sz
<= 1 || end
[-1] != '\0')
2604 ident_len
= decode_varint(&next
);
2605 if (next
+ ident_len
> end
)
2607 ident
= (const char *)next
;
2610 ouc
= (const struct ondisk_untracked_cache
*)next
;
2611 if (next
+ ouc_size(0) > end
)
2614 uc
= xcalloc(1, sizeof(*uc
));
2615 strbuf_init(&uc
->ident
, ident_len
);
2616 strbuf_add(&uc
->ident
, ident
, ident_len
);
2617 load_sha1_stat(&uc
->ss_info_exclude
, &ouc
->info_exclude_stat
,
2618 ouc
->info_exclude_sha1
);
2619 load_sha1_stat(&uc
->ss_excludes_file
, &ouc
->excludes_file_stat
,
2620 ouc
->excludes_file_sha1
);
2621 uc
->dir_flags
= get_be32(&ouc
->dir_flags
);
2622 uc
->exclude_per_dir
= xstrdup(ouc
->exclude_per_dir
);
2623 /* NUL after exclude_per_dir is covered by sizeof(*ouc) */
2624 next
+= ouc_size(strlen(ouc
->exclude_per_dir
));
2628 len
= decode_varint(&next
);
2629 if (next
> end
|| len
== 0)
2632 rd
.valid
= ewah_new();
2633 rd
.check_only
= ewah_new();
2634 rd
.sha1_valid
= ewah_new();
2638 ALLOC_ARRAY(rd
.ucd
, len
);
2640 if (read_one_dir(&uc
->root
, &rd
) || rd
.index
!= len
)
2644 len
= ewah_read_mmap(rd
.valid
, next
, end
- next
);
2649 len
= ewah_read_mmap(rd
.check_only
, next
, end
- next
);
2654 len
= ewah_read_mmap(rd
.sha1_valid
, next
, end
- next
);
2658 ewah_each_bit(rd
.check_only
, set_check_only
, &rd
);
2659 rd
.data
= next
+ len
;
2660 ewah_each_bit(rd
.valid
, read_stat
, &rd
);
2661 ewah_each_bit(rd
.sha1_valid
, read_sha1
, &rd
);
2666 ewah_free(rd
.valid
);
2667 ewah_free(rd
.check_only
);
2668 ewah_free(rd
.sha1_valid
);
2671 free_untracked_cache(uc
);
2677 static void invalidate_one_directory(struct untracked_cache
*uc
,
2678 struct untracked_cache_dir
*ucd
)
2680 uc
->dir_invalidated
++;
2682 ucd
->untracked_nr
= 0;
2686 * Normally when an entry is added or removed from a directory,
2687 * invalidating that directory is enough. No need to touch its
2688 * ancestors. When a directory is shown as "foo/bar/" in git-status
2689 * however, deleting or adding an entry may have cascading effect.
2691 * Say the "foo/bar/file" has become untracked, we need to tell the
2692 * untracked_cache_dir of "foo" that "bar/" is not an untracked
2693 * directory any more (because "bar" is managed by foo as an untracked
2696 * Similarly, if "foo/bar/file" moves from untracked to tracked and it
2697 * was the last untracked entry in the entire "foo", we should show
2698 * "foo/" instead. Which means we have to invalidate past "bar" up to
2701 * This function traverses all directories from root to leaf. If there
2702 * is a chance of one of the above cases happening, we invalidate back
2703 * to root. Otherwise we just invalidate the leaf. There may be a more
2704 * sophisticated way than checking for SHOW_OTHER_DIRECTORIES to
2705 * detect these cases and avoid unnecessary invalidation, for example,
2706 * checking for the untracked entry named "bar/" in "foo", but for now
2707 * stick to something safe and simple.
2709 static int invalidate_one_component(struct untracked_cache
*uc
,
2710 struct untracked_cache_dir
*dir
,
2711 const char *path
, int len
)
2713 const char *rest
= strchr(path
, '/');
2716 int component_len
= rest
- path
;
2717 struct untracked_cache_dir
*d
=
2718 lookup_untracked(uc
, dir
, path
, component_len
);
2720 invalidate_one_component(uc
, d
, rest
+ 1,
2721 len
- (component_len
+ 1));
2723 invalidate_one_directory(uc
, dir
);
2727 invalidate_one_directory(uc
, dir
);
2728 return uc
->dir_flags
& DIR_SHOW_OTHER_DIRECTORIES
;
2731 void untracked_cache_invalidate_path(struct index_state
*istate
,
2734 if (!istate
->untracked
|| !istate
->untracked
->root
)
2736 invalidate_one_component(istate
->untracked
, istate
->untracked
->root
,
2737 path
, strlen(path
));
2740 void untracked_cache_remove_from_index(struct index_state
*istate
,
2743 untracked_cache_invalidate_path(istate
, path
);
2746 void untracked_cache_add_to_index(struct index_state
*istate
,
2749 untracked_cache_invalidate_path(istate
, path
);