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"
16 struct path_simplify {
22 * Tells read_directory_recursive how a file or directory should be treated.
23 * Values are ordered by significance, e.g. if a directory contains both
24 * excluded and untracked files, it is listed as untracked because
25 * path_untracked > path_excluded.
34 static enum path_treatment read_directory_recursive(struct dir_struct *dir,
35 const char *path, int len,
36 int check_only, const struct path_simplify *simplify);
37 static int get_dtype(struct dirent *de, const char *path, int len);
39 /* helper string functions with support for the ignore_case flag */
40 int strcmp_icase(const char *a, const char *b)
42 return ignore_case ? strcasecmp(a, b) : strcmp(a, b);
45 int strncmp_icase(const char *a, const char *b, size_t count)
47 return ignore_case ? strncasecmp(a, b, count) : strncmp(a, b, count);
50 int fnmatch_icase(const char *pattern, const char *string, int flags)
52 return fnmatch(pattern, string, flags | (ignore_case ? FNM_CASEFOLD : 0));
55 inline int git_fnmatch(const struct pathspec_item *item,
56 const char *pattern, const char *string,
60 if (ps_strncmp(item, pattern, string, prefix))
65 if (item->flags & PATHSPEC_ONESTAR) {
66 int pattern_len = strlen(++pattern);
67 int string_len = strlen(string);
68 return string_len < pattern_len ||
69 ps_strcmp(item, pattern,
70 string + string_len - pattern_len);
72 if (item->magic & PATHSPEC_GLOB)
73 return wildmatch(pattern, string,
75 (item->magic & PATHSPEC_ICASE ? WM_CASEFOLD : 0),
78 /* wildmatch has not learned no FNM_PATHNAME mode yet */
79 return fnmatch(pattern, string,
80 item->magic & PATHSPEC_ICASE ? FNM_CASEFOLD : 0);
83 static int fnmatch_icase_mem(const char *pattern, int patternlen,
84 const char *string, int stringlen,
88 struct strbuf pat_buf = STRBUF_INIT;
89 struct strbuf str_buf = STRBUF_INIT;
90 const char *use_pat = pattern;
91 const char *use_str = string;
93 if (pattern[patternlen]) {
94 strbuf_add(&pat_buf, pattern, patternlen);
95 use_pat = pat_buf.buf;
97 if (string[stringlen]) {
98 strbuf_add(&str_buf, string, stringlen);
99 use_str = str_buf.buf;
103 flags |= WM_CASEFOLD;
104 match_status = wildmatch(use_pat, use_str, flags, NULL);
106 strbuf_release(&pat_buf);
107 strbuf_release(&str_buf);
112 static size_t common_prefix_len(const struct pathspec *pathspec)
118 * ":(icase)path" is treated as a pathspec full of
119 * wildcard. In other words, only prefix is considered common
120 * prefix. If the pathspec is abc/foo abc/bar, running in
121 * subdir xyz, the common prefix is still xyz, not xuz/abc as
124 GUARD_PATHSPEC(pathspec,
132 for (n = 0; n < pathspec->nr; n++) {
133 size_t i = 0, len = 0, item_len;
134 if (pathspec->items[n].magic & PATHSPEC_EXCLUDE)
136 if (pathspec->items[n].magic & PATHSPEC_ICASE)
137 item_len = pathspec->items[n].prefix;
139 item_len = pathspec->items[n].nowildcard_len;
140 while (i < item_len && (n == 0 || i < max)) {
141 char c = pathspec->items[n].match[i];
142 if (c != pathspec->items[0].match[i])
148 if (n == 0 || len < max) {
158 * Returns a copy of the longest leading path common among all
161 char *common_prefix(const struct pathspec *pathspec)
163 unsigned long len = common_prefix_len(pathspec);
165 return len ? xmemdupz(pathspec->items[0].match, len) : NULL;
168 int fill_directory(struct dir_struct *dir, const struct pathspec *pathspec)
173 * Calculate common prefix for the pathspec, and
174 * use that to optimize the directory walk
176 len = common_prefix_len(pathspec);
178 /* Read the directory and prune it */
179 read_directory(dir, pathspec->nr ? pathspec->_raw[0] : "", len, pathspec);
183 int within_depth(const char *name, int namelen,
184 int depth, int max_depth)
186 const char *cp = name, *cpe = name + namelen;
192 if (depth > max_depth)
198 #define DO_MATCH_EXCLUDE 1
199 #define DO_MATCH_DIRECTORY 2
202 * Does 'match' match the given name?
203 * A match is found if
205 * (1) the 'match' string is leading directory of 'name', or
206 * (2) the 'match' string is a wildcard and matches 'name', or
207 * (3) the 'match' string is exactly the same as 'name'.
209 * and the return value tells which case it was.
211 * It returns 0 when there is no match.
213 static int match_pathspec_item(const struct pathspec_item *item, int prefix,
214 const char *name, int namelen, unsigned flags)
216 /* name/namelen has prefix cut off by caller */
217 const char *match = item->match + prefix;
218 int matchlen = item->len - prefix;
221 * The normal call pattern is:
222 * 1. prefix = common_prefix_len(ps);
223 * 2. prune something, or fill_directory
224 * 3. match_pathspec()
226 * 'prefix' at #1 may be shorter than the command's prefix and
227 * it's ok for #2 to match extra files. Those extras will be
230 * Suppose the pathspec is 'foo' and '../bar' running from
231 * subdir 'xyz'. The common prefix at #1 will be empty, thanks
232 * to "../". We may have xyz/foo _and_ XYZ/foo after #2. The
233 * user does not want XYZ/foo, only the "foo" part should be
234 * case-insensitive. We need to filter out XYZ/foo here. In
235 * other words, we do not trust the caller on comparing the
236 * prefix part when :(icase) is involved. We do exact
237 * comparison ourselves.
239 * Normally the caller (common_prefix_len() in fact) does
240 * _exact_ matching on name[-prefix+1..-1] and we do not need
241 * to check that part. Be defensive and check it anyway, in
242 * case common_prefix_len is changed, or a new caller is
243 * introduced that does not use common_prefix_len.
245 * If the penalty turns out too high when prefix is really
246 * long, maybe change it to
247 * strncmp(match, name, item->prefix - prefix)
249 if (item->prefix && (item->magic & PATHSPEC_ICASE) &&
250 strncmp(item->match, name - prefix, item->prefix))
253 /* If the match was just the prefix, we matched */
255 return MATCHED_RECURSIVELY;
257 if (matchlen <= namelen && !ps_strncmp(item, match, name, matchlen)) {
258 if (matchlen == namelen)
259 return MATCHED_EXACTLY;
261 if (match[matchlen-1] == '/' || name[matchlen] == '/')
262 return MATCHED_RECURSIVELY;
263 } else if ((flags & DO_MATCH_DIRECTORY) &&
264 match[matchlen - 1] == '/' &&
265 namelen == matchlen - 1 &&
266 !ps_strncmp(item, match, name, namelen))
267 return MATCHED_EXACTLY;
269 if (item->nowildcard_len < item->len &&
270 !git_fnmatch(item, match, name,
271 item->nowildcard_len - prefix))
272 return MATCHED_FNMATCH;
278 * Given a name and a list of pathspecs, returns the nature of the
279 * closest (i.e. most specific) match of the name to any of the
282 * The caller typically calls this multiple times with the same
283 * pathspec and seen[] array but with different name/namelen
284 * (e.g. entries from the index) and is interested in seeing if and
285 * how each pathspec matches all the names it calls this function
286 * with. A mark is left in the seen[] array for each pathspec element
287 * indicating the closest type of match that element achieved, so if
288 * seen[n] remains zero after multiple invocations, that means the nth
289 * pathspec did not match any names, which could indicate that the
290 * user mistyped the nth pathspec.
292 static int do_match_pathspec(const struct pathspec *ps,
293 const char *name, int namelen,
294 int prefix, char *seen,
297 int i, retval = 0, exclude = flags & DO_MATCH_EXCLUDE;
308 if (!ps->recursive ||
309 !(ps->magic & PATHSPEC_MAXDEPTH) ||
311 return MATCHED_RECURSIVELY;
313 if (within_depth(name, namelen, 0, ps->max_depth))
314 return MATCHED_EXACTLY;
322 for (i = ps->nr - 1; i >= 0; i--) {
325 if ((!exclude && ps->items[i].magic & PATHSPEC_EXCLUDE) ||
326 ( exclude && !(ps->items[i].magic & PATHSPEC_EXCLUDE)))
329 if (seen && seen[i] == MATCHED_EXACTLY)
332 * Make exclude patterns optional and never report
333 * "pathspec ':(exclude)foo' matches no files"
335 if (seen && ps->items[i].magic & PATHSPEC_EXCLUDE)
336 seen[i] = MATCHED_FNMATCH;
337 how = match_pathspec_item(ps->items+i, prefix, name,
340 (ps->magic & PATHSPEC_MAXDEPTH) &&
341 ps->max_depth != -1 &&
342 how && how != MATCHED_FNMATCH) {
343 int len = ps->items[i].len;
344 if (name[len] == '/')
346 if (within_depth(name+len, namelen-len, 0, ps->max_depth))
347 how = MATCHED_EXACTLY;
354 if (seen && seen[i] < how)
361 int match_pathspec(const struct pathspec *ps,
362 const char *name, int namelen,
363 int prefix, char *seen, int is_dir)
365 int positive, negative;
366 unsigned flags = is_dir ? DO_MATCH_DIRECTORY : 0;
367 positive = do_match_pathspec(ps, name, namelen,
368 prefix, seen, flags);
369 if (!(ps->magic & PATHSPEC_EXCLUDE) || !positive)
371 negative = do_match_pathspec(ps, name, namelen,
373 flags | DO_MATCH_EXCLUDE);
374 return negative ? 0 : positive;
378 * Return the length of the "simple" part of a path match limiter.
380 int simple_length(const char *match)
385 unsigned char c = *match++;
387 if (c == '\0' || is_glob_special(c))
392 int no_wildcard(const char *string)
394 return string[simple_length(string)] == '\0';
397 void parse_exclude_pattern(const char **pattern,
402 const char *p = *pattern;
407 *flags |= EXC_FLAG_NEGATIVE;
411 if (len && p[len - 1] == '/') {
413 *flags |= EXC_FLAG_MUSTBEDIR;
415 for (i = 0; i < len; i++) {
420 *flags |= EXC_FLAG_NODIR;
421 *nowildcardlen = simple_length(p);
423 * we should have excluded the trailing slash from 'p' too,
424 * but that's one more allocation. Instead just make sure
425 * nowildcardlen does not exceed real patternlen
427 if (*nowildcardlen > len)
428 *nowildcardlen = len;
429 if (*p == '*' && no_wildcard(p + 1))
430 *flags |= EXC_FLAG_ENDSWITH;
435 void add_exclude(const char *string, const char *base,
436 int baselen, struct exclude_list *el, int srcpos)
443 parse_exclude_pattern(&string, &patternlen, &flags, &nowildcardlen);
444 if (flags & EXC_FLAG_MUSTBEDIR) {
446 x = xmalloc(sizeof(*x) + patternlen + 1);
448 memcpy(s, string, patternlen);
449 s[patternlen] = '\0';
452 x = xmalloc(sizeof(*x));
455 x->patternlen = patternlen;
456 x->nowildcardlen = nowildcardlen;
458 x->baselen = baselen;
461 ALLOC_GROW(el->excludes, el->nr + 1, el->alloc);
462 el->excludes[el->nr++] = x;
466 static void *read_skip_worktree_file_from_index(const char *path, size_t *size)
470 enum object_type type;
474 pos = cache_name_pos(path, len);
477 if (!ce_skip_worktree(active_cache[pos]))
479 data = read_sha1_file(active_cache[pos]->sha1, &type, &sz);
480 if (!data || type != OBJ_BLOB) {
489 * Frees memory within el which was allocated for exclude patterns and
490 * the file buffer. Does not free el itself.
492 void clear_exclude_list(struct exclude_list *el)
496 for (i = 0; i < el->nr; i++)
497 free(el->excludes[i]);
506 int add_excludes_from_file_to_list(const char *fname,
509 struct exclude_list *el,
513 int fd, i, lineno = 1;
517 fd = open(fname, O_RDONLY);
518 if (fd < 0 || fstat(fd, &st) < 0) {
520 warn_on_inaccessible(fname);
524 (buf = read_skip_worktree_file_from_index(fname, &size)) == NULL)
530 if (buf[size-1] != '\n') {
531 buf = xrealloc(buf, size+1);
536 size = xsize_t(st.st_size);
541 buf = xmalloc(size+1);
542 if (read_in_full(fd, buf, size) != size) {
553 for (i = 0; i < size; i++) {
554 if (buf[i] == '\n') {
555 if (entry != buf + i && entry[0] != '#') {
556 buf[i - (i && buf[i-1] == '\r')] = 0;
557 add_exclude(entry, base, baselen, el, lineno);
566 struct exclude_list *add_exclude_list(struct dir_struct *dir,
567 int group_type, const char *src)
569 struct exclude_list *el;
570 struct exclude_list_group *group;
572 group = &dir->exclude_list_group[group_type];
573 ALLOC_GROW(group->el, group->nr + 1, group->alloc);
574 el = &group->el[group->nr++];
575 memset(el, 0, sizeof(*el));
581 * Used to set up core.excludesfile and .git/info/exclude lists.
583 void add_excludes_from_file(struct dir_struct *dir, const char *fname)
585 struct exclude_list *el;
586 el = add_exclude_list(dir, EXC_FILE, fname);
587 if (add_excludes_from_file_to_list(fname, "", 0, el, 0) < 0)
588 die("cannot use %s as an exclude file", fname);
591 int match_basename(const char *basename, int basenamelen,
592 const char *pattern, int prefix, int patternlen,
595 if (prefix == patternlen) {
596 if (patternlen == basenamelen &&
597 !strncmp_icase(pattern, basename, basenamelen))
599 } else if (flags & EXC_FLAG_ENDSWITH) {
600 /* "*literal" matching against "fooliteral" */
601 if (patternlen - 1 <= basenamelen &&
602 !strncmp_icase(pattern + 1,
603 basename + basenamelen - (patternlen - 1),
607 if (fnmatch_icase_mem(pattern, patternlen,
608 basename, basenamelen,
615 int match_pathname(const char *pathname, int pathlen,
616 const char *base, int baselen,
617 const char *pattern, int prefix, int patternlen,
624 * match with FNM_PATHNAME; the pattern has base implicitly
627 if (*pattern == '/') {
634 * baselen does not count the trailing slash. base[] may or
635 * may not end with a trailing slash though.
637 if (pathlen < baselen + 1 ||
638 (baselen && pathname[baselen] != '/') ||
639 strncmp_icase(pathname, base, baselen))
642 namelen = baselen ? pathlen - baselen - 1 : pathlen;
643 name = pathname + pathlen - namelen;
647 * if the non-wildcard part is longer than the
648 * remaining pathname, surely it cannot match.
650 if (prefix > namelen)
653 if (strncmp_icase(pattern, name, prefix))
656 patternlen -= prefix;
661 * If the whole pattern did not have a wildcard,
662 * then our prefix match is all we need; we
663 * do not need to call fnmatch at all.
665 if (!patternlen && !namelen)
669 return fnmatch_icase_mem(pattern, patternlen,
675 * Scan the given exclude list in reverse to see whether pathname
676 * should be ignored. The first match (i.e. the last on the list), if
677 * any, determines the fate. Returns the exclude_list element which
678 * matched, or NULL for undecided.
680 static struct exclude *last_exclude_matching_from_list(const char *pathname,
682 const char *basename,
684 struct exclude_list *el)
689 return NULL; /* undefined */
691 for (i = el->nr - 1; 0 <= i; i--) {
692 struct exclude *x = el->excludes[i];
693 const char *exclude = x->pattern;
694 int prefix = x->nowildcardlen;
696 if (x->flags & EXC_FLAG_MUSTBEDIR) {
697 if (*dtype == DT_UNKNOWN)
698 *dtype = get_dtype(NULL, pathname, pathlen);
699 if (*dtype != DT_DIR)
703 if (x->flags & EXC_FLAG_NODIR) {
704 if (match_basename(basename,
705 pathlen - (basename - pathname),
706 exclude, prefix, x->patternlen,
712 assert(x->baselen == 0 || x->base[x->baselen - 1] == '/');
713 if (match_pathname(pathname, pathlen,
714 x->base, x->baselen ? x->baselen - 1 : 0,
715 exclude, prefix, x->patternlen, x->flags))
718 return NULL; /* undecided */
722 * Scan the list and let the last match determine the fate.
723 * Return 1 for exclude, 0 for include and -1 for undecided.
725 int is_excluded_from_list(const char *pathname,
726 int pathlen, const char *basename, int *dtype,
727 struct exclude_list *el)
729 struct exclude *exclude;
730 exclude = last_exclude_matching_from_list(pathname, pathlen, basename, dtype, el);
732 return exclude->flags & EXC_FLAG_NEGATIVE ? 0 : 1;
733 return -1; /* undecided */
736 static struct exclude *last_exclude_matching_from_lists(struct dir_struct *dir,
737 const char *pathname, int pathlen, const char *basename,
741 struct exclude_list_group *group;
742 struct exclude *exclude;
743 for (i = EXC_CMDL; i <= EXC_FILE; i++) {
744 group = &dir->exclude_list_group[i];
745 for (j = group->nr - 1; j >= 0; j--) {
746 exclude = last_exclude_matching_from_list(
747 pathname, pathlen, basename, dtype_p,
757 * Loads the per-directory exclude list for the substring of base
758 * which has a char length of baselen.
760 static void prep_exclude(struct dir_struct *dir, const char *base, int baselen)
762 struct exclude_list_group *group;
763 struct exclude_list *el;
764 struct exclude_stack *stk = NULL;
767 group = &dir->exclude_list_group[EXC_DIRS];
769 /* Pop the exclude lists from the EXCL_DIRS exclude_list_group
770 * which originate from directories not in the prefix of the
771 * path being checked. */
772 while ((stk = dir->exclude_stack) != NULL) {
773 if (stk->baselen <= baselen &&
774 !strncmp(dir->basebuf, base, stk->baselen))
776 el = &group->el[dir->exclude_stack->exclude_ix];
777 dir->exclude_stack = stk->prev;
779 free((char *)el->src); /* see strdup() below */
780 clear_exclude_list(el);
785 /* Skip traversing into sub directories if the parent is excluded */
789 /* Read from the parent directories and push them down. */
790 current = stk ? stk->baselen : -1;
791 while (current < baselen) {
792 struct exclude_stack *stk = xcalloc(1, sizeof(*stk));
800 cp = strchr(base + current + 1, '/');
802 die("oops in prep_exclude");
805 stk->prev = dir->exclude_stack;
806 stk->baselen = cp - base;
807 stk->exclude_ix = group->nr;
808 el = add_exclude_list(dir, EXC_DIRS, NULL);
809 memcpy(dir->basebuf + current, base + current,
810 stk->baselen - current);
812 /* Abort if the directory is excluded */
815 dir->basebuf[stk->baselen - 1] = 0;
816 dir->exclude = last_exclude_matching_from_lists(dir,
817 dir->basebuf, stk->baselen - 1,
818 dir->basebuf + current, &dt);
819 dir->basebuf[stk->baselen - 1] = '/';
821 dir->exclude->flags & EXC_FLAG_NEGATIVE)
824 dir->basebuf[stk->baselen] = 0;
825 dir->exclude_stack = stk;
830 /* Try to read per-directory file unless path is too long */
831 if (dir->exclude_per_dir &&
832 stk->baselen + strlen(dir->exclude_per_dir) < PATH_MAX) {
833 strcpy(dir->basebuf + stk->baselen,
834 dir->exclude_per_dir);
836 * dir->basebuf gets reused by the traversal, but we
837 * need fname to remain unchanged to ensure the src
838 * member of each struct exclude correctly
839 * back-references its source file. Other invocations
840 * of add_exclude_list provide stable strings, so we
841 * strdup() and free() here in the caller.
843 el->src = strdup(dir->basebuf);
844 add_excludes_from_file_to_list(dir->basebuf,
845 dir->basebuf, stk->baselen, el, 1);
847 dir->exclude_stack = stk;
848 current = stk->baselen;
850 dir->basebuf[baselen] = '\0';
854 * Loads the exclude lists for the directory containing pathname, then
855 * scans all exclude lists to determine whether pathname is excluded.
856 * Returns the exclude_list element which matched, or NULL for
859 struct exclude *last_exclude_matching(struct dir_struct *dir,
860 const char *pathname,
863 int pathlen = strlen(pathname);
864 const char *basename = strrchr(pathname, '/');
865 basename = (basename) ? basename+1 : pathname;
867 prep_exclude(dir, pathname, basename-pathname);
872 return last_exclude_matching_from_lists(dir, pathname, pathlen,
877 * Loads the exclude lists for the directory containing pathname, then
878 * scans all exclude lists to determine whether pathname is excluded.
879 * Returns 1 if true, otherwise 0.
881 int is_excluded(struct dir_struct *dir, const char *pathname, int *dtype_p)
883 struct exclude *exclude =
884 last_exclude_matching(dir, pathname, dtype_p);
886 return exclude->flags & EXC_FLAG_NEGATIVE ? 0 : 1;
890 static struct dir_entry *dir_entry_new(const char *pathname, int len)
892 struct dir_entry *ent;
894 ent = xmalloc(sizeof(*ent) + len + 1);
896 memcpy(ent->name, pathname, len);
901 static struct dir_entry *dir_add_name(struct dir_struct *dir, const char *pathname, int len)
903 if (cache_file_exists(pathname, len, ignore_case))
906 ALLOC_GROW(dir->entries, dir->nr+1, dir->alloc);
907 return dir->entries[dir->nr++] = dir_entry_new(pathname, len);
910 struct dir_entry *dir_add_ignored(struct dir_struct *dir, const char *pathname, int len)
912 if (!cache_name_is_other(pathname, len))
915 ALLOC_GROW(dir->ignored, dir->ignored_nr+1, dir->ignored_alloc);
916 return dir->ignored[dir->ignored_nr++] = dir_entry_new(pathname, len);
920 index_nonexistent = 0,
926 * Do not use the alphabetically sorted index to look up
927 * the directory name; instead, use the case insensitive
930 static enum exist_status directory_exists_in_index_icase(const char *dirname, int len)
932 const struct cache_entry *ce = cache_dir_exists(dirname, len);
933 unsigned char endchar;
936 return index_nonexistent;
937 endchar = ce->name[len];
940 * The cache_entry structure returned will contain this dirname
941 * and possibly additional path components.
944 return index_directory;
947 * If there are no additional path components, then this cache_entry
948 * represents a submodule. Submodules, despite being directories,
949 * are stored in the cache without a closing slash.
951 if (!endchar && S_ISGITLINK(ce->ce_mode))
954 /* This should never be hit, but it exists just in case. */
955 return index_nonexistent;
959 * The index sorts alphabetically by entry name, which
960 * means that a gitlink sorts as '\0' at the end, while
961 * a directory (which is defined not as an entry, but as
962 * the files it contains) will sort with the '/' at the
965 static enum exist_status directory_exists_in_index(const char *dirname, int len)
970 return directory_exists_in_index_icase(dirname, len);
972 pos = cache_name_pos(dirname, len);
975 while (pos < active_nr) {
976 const struct cache_entry *ce = active_cache[pos++];
977 unsigned char endchar;
979 if (strncmp(ce->name, dirname, len))
981 endchar = ce->name[len];
985 return index_directory;
986 if (!endchar && S_ISGITLINK(ce->ce_mode))
989 return index_nonexistent;
993 * When we find a directory when traversing the filesystem, we
994 * have three distinct cases:
997 * - see it as a directory
1000 * and which one we choose depends on a combination of existing
1001 * git index contents and the flags passed into the directory
1002 * traversal routine.
1004 * Case 1: If we *already* have entries in the index under that
1005 * directory name, we always recurse into the directory to see
1008 * Case 2: If we *already* have that directory name as a gitlink,
1009 * we always continue to see it as a gitlink, regardless of whether
1010 * there is an actual git directory there or not (it might not
1011 * be checked out as a subproject!)
1013 * Case 3: if we didn't have it in the index previously, we
1014 * have a few sub-cases:
1016 * (a) if "show_other_directories" is true, we show it as
1017 * just a directory, unless "hide_empty_directories" is
1018 * also true, in which case we need to check if it contains any
1019 * untracked and / or ignored files.
1020 * (b) if it looks like a git directory, and we don't have
1021 * 'no_gitlinks' set we treat it as a gitlink, and show it
1023 * (c) otherwise, we recurse into it.
1025 static enum path_treatment treat_directory(struct dir_struct *dir,
1026 const char *dirname, int len, int exclude,
1027 const struct path_simplify *simplify)
1029 /* The "len-1" is to strip the final '/' */
1030 switch (directory_exists_in_index(dirname, len-1)) {
1031 case index_directory:
1032 return path_recurse;
1037 case index_nonexistent:
1038 if (dir->flags & DIR_SHOW_OTHER_DIRECTORIES)
1040 if (!(dir->flags & DIR_NO_GITLINKS)) {
1041 unsigned char sha1[20];
1042 if (resolve_gitlink_ref(dirname, "HEAD", sha1) == 0)
1043 return path_untracked;
1045 return path_recurse;
1048 /* This is the "show_other_directories" case */
1050 if (!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))
1051 return exclude ? path_excluded : path_untracked;
1053 return read_directory_recursive(dir, dirname, len, 1, simplify);
1057 * This is an inexact early pruning of any recursive directory
1058 * reading - if the path cannot possibly be in the pathspec,
1059 * return true, and we'll skip it early.
1061 static int simplify_away(const char *path, int pathlen, const struct path_simplify *simplify)
1065 const char *match = simplify->path;
1066 int len = simplify->len;
1072 if (!memcmp(path, match, len))
1082 * This function tells us whether an excluded path matches a
1083 * list of "interesting" pathspecs. That is, whether a path matched
1084 * by any of the pathspecs could possibly be ignored by excluding
1085 * the specified path. This can happen if:
1087 * 1. the path is mentioned explicitly in the pathspec
1089 * 2. the path is a directory prefix of some element in the
1092 static int exclude_matches_pathspec(const char *path, int len,
1093 const struct path_simplify *simplify)
1096 for (; simplify->path; simplify++) {
1097 if (len == simplify->len
1098 && !memcmp(path, simplify->path, len))
1100 if (len < simplify->len
1101 && simplify->path[len] == '/'
1102 && !memcmp(path, simplify->path, len))
1109 static int get_index_dtype(const char *path, int len)
1112 const struct cache_entry *ce;
1114 ce = cache_file_exists(path, len, 0);
1116 if (!ce_uptodate(ce))
1118 if (S_ISGITLINK(ce->ce_mode))
1121 * Nobody actually cares about the
1122 * difference between DT_LNK and DT_REG
1127 /* Try to look it up as a directory */
1128 pos = cache_name_pos(path, len);
1132 while (pos < active_nr) {
1133 ce = active_cache[pos++];
1134 if (strncmp(ce->name, path, len))
1136 if (ce->name[len] > '/')
1138 if (ce->name[len] < '/')
1140 if (!ce_uptodate(ce))
1141 break; /* continue? */
1147 static int get_dtype(struct dirent *de, const char *path, int len)
1149 int dtype = de ? DTYPE(de) : DT_UNKNOWN;
1152 if (dtype != DT_UNKNOWN)
1154 dtype = get_index_dtype(path, len);
1155 if (dtype != DT_UNKNOWN)
1157 if (lstat(path, &st))
1159 if (S_ISREG(st.st_mode))
1161 if (S_ISDIR(st.st_mode))
1163 if (S_ISLNK(st.st_mode))
1168 static enum path_treatment treat_one_path(struct dir_struct *dir,
1169 struct strbuf *path,
1170 const struct path_simplify *simplify,
1171 int dtype, struct dirent *de)
1174 int has_path_in_index = !!cache_file_exists(path->buf, path->len, ignore_case);
1176 if (dtype == DT_UNKNOWN)
1177 dtype = get_dtype(de, path->buf, path->len);
1179 /* Always exclude indexed files */
1180 if (dtype != DT_DIR && has_path_in_index)
1184 * When we are looking at a directory P in the working tree,
1185 * there are three cases:
1187 * (1) P exists in the index. Everything inside the directory P in
1188 * the working tree needs to go when P is checked out from the
1191 * (2) P does not exist in the index, but there is P/Q in the index.
1192 * We know P will stay a directory when we check out the contents
1193 * of the index, but we do not know yet if there is a directory
1194 * P/Q in the working tree to be killed, so we need to recurse.
1196 * (3) P does not exist in the index, and there is no P/Q in the index
1197 * to require P to be a directory, either. Only in this case, we
1198 * know that everything inside P will not be killed without
1201 if ((dir->flags & DIR_COLLECT_KILLED_ONLY) &&
1202 (dtype == DT_DIR) &&
1203 !has_path_in_index &&
1204 (directory_exists_in_index(path->buf, path->len) == index_nonexistent))
1207 exclude = is_excluded(dir, path->buf, &dtype);
1210 * Excluded? If we don't explicitly want to show
1211 * ignored files, ignore it
1213 if (exclude && !(dir->flags & (DIR_SHOW_IGNORED|DIR_SHOW_IGNORED_TOO)))
1214 return path_excluded;
1220 strbuf_addch(path, '/');
1221 return treat_directory(dir, path->buf, path->len, exclude,
1225 return exclude ? path_excluded : path_untracked;
1229 static enum path_treatment treat_path(struct dir_struct *dir,
1231 struct strbuf *path,
1233 const struct path_simplify *simplify)
1237 if (is_dot_or_dotdot(de->d_name) || !strcmp(de->d_name, ".git"))
1239 strbuf_setlen(path, baselen);
1240 strbuf_addstr(path, de->d_name);
1241 if (simplify_away(path->buf, path->len, simplify))
1245 return treat_one_path(dir, path, simplify, dtype, de);
1249 * Read a directory tree. We currently ignore anything but
1250 * directories, regular files and symlinks. That's because git
1251 * doesn't handle them at all yet. Maybe that will change some
1254 * Also, we ignore the name ".git" (even if it is not a directory).
1255 * That likely will not change.
1257 * Returns the most significant path_treatment value encountered in the scan.
1259 static enum path_treatment read_directory_recursive(struct dir_struct *dir,
1260 const char *base, int baselen,
1262 const struct path_simplify *simplify)
1265 enum path_treatment state, subdir_state, dir_state = path_none;
1267 struct strbuf path = STRBUF_INIT;
1269 strbuf_add(&path, base, baselen);
1271 fdir = opendir(path.len ? path.buf : ".");
1275 while ((de = readdir(fdir)) != NULL) {
1276 /* check how the file or directory should be treated */
1277 state = treat_path(dir, de, &path, baselen, simplify);
1278 if (state > dir_state)
1281 /* recurse into subdir if instructed by treat_path */
1282 if (state == path_recurse) {
1283 subdir_state = read_directory_recursive(dir, path.buf,
1284 path.len, check_only, simplify);
1285 if (subdir_state > dir_state)
1286 dir_state = subdir_state;
1290 /* abort early if maximum state has been reached */
1291 if (dir_state == path_untracked)
1293 /* skip the dir_add_* part */
1297 /* add the path to the appropriate result list */
1300 if (dir->flags & DIR_SHOW_IGNORED)
1301 dir_add_name(dir, path.buf, path.len);
1302 else if ((dir->flags & DIR_SHOW_IGNORED_TOO) ||
1303 ((dir->flags & DIR_COLLECT_IGNORED) &&
1304 exclude_matches_pathspec(path.buf, path.len,
1306 dir_add_ignored(dir, path.buf, path.len);
1309 case path_untracked:
1310 if (!(dir->flags & DIR_SHOW_IGNORED))
1311 dir_add_name(dir, path.buf, path.len);
1320 strbuf_release(&path);
1325 static int cmp_name(const void *p1, const void *p2)
1327 const struct dir_entry *e1 = *(const struct dir_entry **)p1;
1328 const struct dir_entry *e2 = *(const struct dir_entry **)p2;
1330 return cache_name_compare(e1->name, e1->len,
1334 static struct path_simplify *create_simplify(const char **pathspec)
1337 struct path_simplify *simplify = NULL;
1342 for (nr = 0 ; ; nr++) {
1345 alloc = alloc_nr(alloc);
1346 simplify = xrealloc(simplify, alloc * sizeof(*simplify));
1348 match = *pathspec++;
1351 simplify[nr].path = match;
1352 simplify[nr].len = simple_length(match);
1354 simplify[nr].path = NULL;
1355 simplify[nr].len = 0;
1359 static void free_simplify(struct path_simplify *simplify)
1364 static int treat_leading_path(struct dir_struct *dir,
1365 const char *path, int len,
1366 const struct path_simplify *simplify)
1368 struct strbuf sb = STRBUF_INIT;
1369 int baselen, rc = 0;
1371 int old_flags = dir->flags;
1373 while (len && path[len - 1] == '/')
1378 dir->flags &= ~DIR_SHOW_OTHER_DIRECTORIES;
1380 cp = path + baselen + !!baselen;
1381 cp = memchr(cp, '/', path + len - cp);
1385 baselen = cp - path;
1386 strbuf_setlen(&sb, 0);
1387 strbuf_add(&sb, path, baselen);
1388 if (!is_directory(sb.buf))
1390 if (simplify_away(sb.buf, sb.len, simplify))
1392 if (treat_one_path(dir, &sb, simplify,
1393 DT_DIR, NULL) == path_none)
1394 break; /* do not recurse into it */
1395 if (len <= baselen) {
1397 break; /* finished checking */
1400 strbuf_release(&sb);
1401 dir->flags = old_flags;
1405 int read_directory(struct dir_struct *dir, const char *path, int len, const struct pathspec *pathspec)
1407 struct path_simplify *simplify;
1410 * Check out create_simplify()
1413 GUARD_PATHSPEC(pathspec,
1421 if (has_symlink_leading_path(path, len))
1425 * exclude patterns are treated like positive ones in
1426 * create_simplify. Usually exclude patterns should be a
1427 * subset of positive ones, which has no impacts on
1428 * create_simplify().
1430 simplify = create_simplify(pathspec ? pathspec->_raw : NULL);
1431 if (!len || treat_leading_path(dir, path, len, simplify))
1432 read_directory_recursive(dir, path, len, 0, simplify);
1433 free_simplify(simplify);
1434 qsort(dir->entries, dir->nr, sizeof(struct dir_entry *), cmp_name);
1435 qsort(dir->ignored, dir->ignored_nr, sizeof(struct dir_entry *), cmp_name);
1439 int file_exists(const char *f)
1442 return lstat(f, &sb) == 0;
1446 * Given two normalized paths (a trailing slash is ok), if subdir is
1447 * outside dir, return -1. Otherwise return the offset in subdir that
1448 * can be used as relative path to dir.
1450 int dir_inside_of(const char *subdir, const char *dir)
1454 assert(dir && subdir && *dir && *subdir);
1456 while (*dir && *subdir && *dir == *subdir) {
1462 /* hel[p]/me vs hel[l]/yeah */
1463 if (*dir && *subdir)
1467 return !*dir ? offset : -1; /* same dir */
1469 /* foo/[b]ar vs foo/[] */
1470 if (is_dir_sep(dir[-1]))
1471 return is_dir_sep(subdir[-1]) ? offset : -1;
1473 /* foo[/]bar vs foo[] */
1474 return is_dir_sep(*subdir) ? offset + 1 : -1;
1477 int is_inside_dir(const char *dir)
1482 if (!getcwd(cwd, sizeof(cwd)))
1483 die_errno("can't find the current directory");
1484 return dir_inside_of(cwd, dir) >= 0;
1487 int is_empty_dir(const char *path)
1489 DIR *dir = opendir(path);
1496 while ((e = readdir(dir)) != NULL)
1497 if (!is_dot_or_dotdot(e->d_name)) {
1506 static int remove_dir_recurse(struct strbuf *path, int flag, int *kept_up)
1510 int ret = 0, original_len = path->len, len, kept_down = 0;
1511 int only_empty = (flag & REMOVE_DIR_EMPTY_ONLY);
1512 int keep_toplevel = (flag & REMOVE_DIR_KEEP_TOPLEVEL);
1513 unsigned char submodule_head[20];
1515 if ((flag & REMOVE_DIR_KEEP_NESTED_GIT) &&
1516 !resolve_gitlink_ref(path->buf, "HEAD", submodule_head)) {
1517 /* Do not descend and nuke a nested git work tree. */
1523 flag &= ~REMOVE_DIR_KEEP_TOPLEVEL;
1524 dir = opendir(path->buf);
1526 if (errno == ENOENT)
1527 return keep_toplevel ? -1 : 0;
1528 else if (errno == EACCES && !keep_toplevel)
1530 * An empty dir could be removable even if it
1533 return rmdir(path->buf);
1537 if (path->buf[original_len - 1] != '/')
1538 strbuf_addch(path, '/');
1541 while ((e = readdir(dir)) != NULL) {
1543 if (is_dot_or_dotdot(e->d_name))
1546 strbuf_setlen(path, len);
1547 strbuf_addstr(path, e->d_name);
1548 if (lstat(path->buf, &st)) {
1549 if (errno == ENOENT)
1551 * file disappeared, which is what we
1556 } else if (S_ISDIR(st.st_mode)) {
1557 if (!remove_dir_recurse(path, flag, &kept_down))
1558 continue; /* happy */
1559 } else if (!only_empty &&
1560 (!unlink(path->buf) || errno == ENOENT)) {
1561 continue; /* happy, too */
1564 /* path too long, stat fails, or non-directory still exists */
1570 strbuf_setlen(path, original_len);
1571 if (!ret && !keep_toplevel && !kept_down)
1572 ret = (!rmdir(path->buf) || errno == ENOENT) ? 0 : -1;
1575 * report the uplevel that it is not an error that we
1576 * did not rmdir() our directory.
1582 int remove_dir_recursively(struct strbuf *path, int flag)
1584 return remove_dir_recurse(path, flag, NULL);
1587 void setup_standard_excludes(struct dir_struct *dir)
1592 dir->exclude_per_dir = ".gitignore";
1593 path = git_path("info/exclude");
1594 if (!excludes_file) {
1595 home_config_paths(NULL, &xdg_path, "ignore");
1596 excludes_file = xdg_path;
1598 if (!access_or_warn(path, R_OK, 0))
1599 add_excludes_from_file(dir, path);
1600 if (excludes_file && !access_or_warn(excludes_file, R_OK, 0))
1601 add_excludes_from_file(dir, excludes_file);
1604 int remove_path(const char *name)
1608 if (unlink(name) && errno != ENOENT && errno != ENOTDIR)
1611 slash = strrchr(name, '/');
1613 char *dirs = xstrdup(name);
1614 slash = dirs + (slash - name);
1617 } while (rmdir(dirs) == 0 && (slash = strrchr(dirs, '/')));
1624 * Frees memory within dir which was allocated for exclude lists and
1625 * the exclude_stack. Does not free dir itself.
1627 void clear_directory(struct dir_struct *dir)
1630 struct exclude_list_group *group;
1631 struct exclude_list *el;
1632 struct exclude_stack *stk;
1634 for (i = EXC_CMDL; i <= EXC_FILE; i++) {
1635 group = &dir->exclude_list_group[i];
1636 for (j = 0; j < group->nr; j++) {
1639 free((char *)el->src);
1640 clear_exclude_list(el);
1645 stk = dir->exclude_stack;
1647 struct exclude_stack *prev = stk->prev;