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 char *pattern
, const char *string
,
56 int flags
, int prefix
)
59 if (flags
& GFNM_PATHNAME
)
60 fnm_flags
|= FNM_PATHNAME
;
62 if (strncmp(pattern
, string
, prefix
))
67 if (flags
& GFNM_ONESTAR
) {
68 int pattern_len
= strlen(++pattern
);
69 int string_len
= strlen(string
);
70 return string_len
< pattern_len
||
72 string
+ string_len
- pattern_len
);
74 return fnmatch(pattern
, string
, fnm_flags
);
77 static int fnmatch_icase_mem(const char *pattern
, int patternlen
,
78 const char *string
, int stringlen
,
82 struct strbuf pat_buf
= STRBUF_INIT
;
83 struct strbuf str_buf
= STRBUF_INIT
;
84 const char *use_pat
= pattern
;
85 const char *use_str
= string
;
87 if (pattern
[patternlen
]) {
88 strbuf_add(&pat_buf
, pattern
, patternlen
);
89 use_pat
= pat_buf
.buf
;
91 if (string
[stringlen
]) {
92 strbuf_add(&str_buf
, string
, stringlen
);
93 use_str
= str_buf
.buf
;
98 match_status
= wildmatch(use_pat
, use_str
, flags
, NULL
);
100 strbuf_release(&pat_buf
);
101 strbuf_release(&str_buf
);
106 static size_t common_prefix_len(const char **pathspec
)
108 const char *n
, *first
;
110 int literal
= limit_pathspec_to_literal();
116 while ((n
= *pathspec
++)) {
118 for (i
= 0; first
== n
|| i
< max
; i
++) {
120 if (!c
|| c
!= first
[i
] || (!literal
&& is_glob_special(c
)))
125 if (first
== n
|| len
< max
) {
135 * Returns a copy of the longest leading path common among all
138 char *common_prefix(const char **pathspec
)
140 unsigned long len
= common_prefix_len(pathspec
);
142 return len
? xmemdupz(*pathspec
, len
) : NULL
;
145 int fill_directory(struct dir_struct
*dir
, const char **pathspec
)
150 * Calculate common prefix for the pathspec, and
151 * use that to optimize the directory walk
153 len
= common_prefix_len(pathspec
);
155 /* Read the directory and prune it */
156 read_directory(dir
, pathspec
? *pathspec
: "", len
, pathspec
);
160 int within_depth(const char *name
, int namelen
,
161 int depth
, int max_depth
)
163 const char *cp
= name
, *cpe
= name
+ namelen
;
169 if (depth
> max_depth
)
176 * Does 'match' match the given name?
177 * A match is found if
179 * (1) the 'match' string is leading directory of 'name', or
180 * (2) the 'match' string is a wildcard and matches 'name', or
181 * (3) the 'match' string is exactly the same as 'name'.
183 * and the return value tells which case it was.
185 * It returns 0 when there is no match.
187 static int match_one(const char *match
, const char *name
, int namelen
)
190 int literal
= limit_pathspec_to_literal();
192 /* If the match was just the prefix, we matched */
194 return MATCHED_RECURSIVELY
;
198 unsigned char c1
= tolower(*match
);
199 unsigned char c2
= tolower(*name
);
200 if (c1
== '\0' || (!literal
&& is_glob_special(c1
)))
210 unsigned char c1
= *match
;
211 unsigned char c2
= *name
;
212 if (c1
== '\0' || (!literal
&& is_glob_special(c1
)))
223 * If we don't match the matchstring exactly,
224 * we need to match by fnmatch
226 matchlen
= strlen(match
);
227 if (strncmp_icase(match
, name
, matchlen
)) {
230 return !fnmatch_icase(match
, name
, 0) ? MATCHED_FNMATCH
: 0;
233 if (namelen
== matchlen
)
234 return MATCHED_EXACTLY
;
235 if (match
[matchlen
-1] == '/' || name
[matchlen
] == '/')
236 return MATCHED_RECURSIVELY
;
241 * Given a name and a list of pathspecs, returns the nature of the
242 * closest (i.e. most specific) match of the name to any of the
245 * The caller typically calls this multiple times with the same
246 * pathspec and seen[] array but with different name/namelen
247 * (e.g. entries from the index) and is interested in seeing if and
248 * how each pathspec matches all the names it calls this function
249 * with. A mark is left in the seen[] array for each pathspec element
250 * indicating the closest type of match that element achieved, so if
251 * seen[n] remains zero after multiple invocations, that means the nth
252 * pathspec did not match any names, which could indicate that the
253 * user mistyped the nth pathspec.
255 int match_pathspec(const char **pathspec
, const char *name
, int namelen
,
256 int prefix
, char *seen
)
266 for (i
= 0; pathspec
[i
] != NULL
; i
++) {
268 const char *match
= pathspec
[i
] + prefix
;
269 if (seen
&& seen
[i
] == MATCHED_EXACTLY
)
271 how
= match_one(match
, name
, namelen
);
275 if (seen
&& seen
[i
] < how
)
283 * Does 'match' match the given name?
284 * A match is found if
286 * (1) the 'match' string is leading directory of 'name', or
287 * (2) the 'match' string is a wildcard and matches 'name', or
288 * (3) the 'match' string is exactly the same as 'name'.
290 * and the return value tells which case it was.
292 * It returns 0 when there is no match.
294 static int match_pathspec_item(const struct pathspec_item
*item
, int prefix
,
295 const char *name
, int namelen
)
297 /* name/namelen has prefix cut off by caller */
298 const char *match
= item
->match
+ prefix
;
299 int matchlen
= item
->len
- prefix
;
301 /* If the match was just the prefix, we matched */
303 return MATCHED_RECURSIVELY
;
305 if (matchlen
<= namelen
&& !strncmp(match
, name
, matchlen
)) {
306 if (matchlen
== namelen
)
307 return MATCHED_EXACTLY
;
309 if (match
[matchlen
-1] == '/' || name
[matchlen
] == '/')
310 return MATCHED_RECURSIVELY
;
313 if (item
->nowildcard_len
< item
->len
&&
314 !git_fnmatch(match
, name
,
315 item
->flags
& PATHSPEC_ONESTAR
? GFNM_ONESTAR
: 0,
316 item
->nowildcard_len
- prefix
))
317 return MATCHED_FNMATCH
;
323 * Given a name and a list of pathspecs, returns the nature of the
324 * closest (i.e. most specific) match of the name to any of the
327 * The caller typically calls this multiple times with the same
328 * pathspec and seen[] array but with different name/namelen
329 * (e.g. entries from the index) and is interested in seeing if and
330 * how each pathspec matches all the names it calls this function
331 * with. A mark is left in the seen[] array for each pathspec element
332 * indicating the closest type of match that element achieved, so if
333 * seen[n] remains zero after multiple invocations, that means the nth
334 * pathspec did not match any names, which could indicate that the
335 * user mistyped the nth pathspec.
337 int match_pathspec_depth(const struct pathspec
*ps
,
338 const char *name
, int namelen
,
339 int prefix
, char *seen
)
343 GUARD_PATHSPEC(ps
, PATHSPEC_FROMTOP
| PATHSPEC_MAXDEPTH
);
346 if (!ps
->recursive
||
347 !(ps
->magic
& PATHSPEC_MAXDEPTH
) ||
349 return MATCHED_RECURSIVELY
;
351 if (within_depth(name
, namelen
, 0, ps
->max_depth
))
352 return MATCHED_EXACTLY
;
360 for (i
= ps
->nr
- 1; i
>= 0; i
--) {
362 if (seen
&& seen
[i
] == MATCHED_EXACTLY
)
364 how
= match_pathspec_item(ps
->items
+i
, prefix
, name
, namelen
);
366 (ps
->magic
& PATHSPEC_MAXDEPTH
) &&
367 ps
->max_depth
!= -1 &&
368 how
&& how
!= MATCHED_FNMATCH
) {
369 int len
= ps
->items
[i
].len
;
370 if (name
[len
] == '/')
372 if (within_depth(name
+len
, namelen
-len
, 0, ps
->max_depth
))
373 how
= MATCHED_EXACTLY
;
380 if (seen
&& seen
[i
] < how
)
388 * Return the length of the "simple" part of a path match limiter.
390 int simple_length(const char *match
)
395 unsigned char c
= *match
++;
397 if (c
== '\0' || is_glob_special(c
))
402 int no_wildcard(const char *string
)
404 return string
[simple_length(string
)] == '\0';
407 void parse_exclude_pattern(const char **pattern
,
412 const char *p
= *pattern
;
417 *flags
|= EXC_FLAG_NEGATIVE
;
421 if (len
&& p
[len
- 1] == '/') {
423 *flags
|= EXC_FLAG_MUSTBEDIR
;
425 for (i
= 0; i
< len
; i
++) {
430 *flags
|= EXC_FLAG_NODIR
;
431 *nowildcardlen
= simple_length(p
);
433 * we should have excluded the trailing slash from 'p' too,
434 * but that's one more allocation. Instead just make sure
435 * nowildcardlen does not exceed real patternlen
437 if (*nowildcardlen
> len
)
438 *nowildcardlen
= len
;
439 if (*p
== '*' && no_wildcard(p
+ 1))
440 *flags
|= EXC_FLAG_ENDSWITH
;
445 void add_exclude(const char *string
, const char *base
,
446 int baselen
, struct exclude_list
*el
, int srcpos
)
453 parse_exclude_pattern(&string
, &patternlen
, &flags
, &nowildcardlen
);
454 if (flags
& EXC_FLAG_MUSTBEDIR
) {
456 x
= xmalloc(sizeof(*x
) + patternlen
+ 1);
458 memcpy(s
, string
, patternlen
);
459 s
[patternlen
] = '\0';
462 x
= xmalloc(sizeof(*x
));
465 x
->patternlen
= patternlen
;
466 x
->nowildcardlen
= nowildcardlen
;
468 x
->baselen
= baselen
;
471 ALLOC_GROW(el
->excludes
, el
->nr
+ 1, el
->alloc
);
472 el
->excludes
[el
->nr
++] = x
;
476 static void *read_skip_worktree_file_from_index(const char *path
, size_t *size
)
480 enum object_type type
;
482 struct index_state
*istate
= &the_index
;
485 pos
= index_name_pos(istate
, path
, len
);
488 if (!ce_skip_worktree(istate
->cache
[pos
]))
490 data
= read_sha1_file(istate
->cache
[pos
]->sha1
, &type
, &sz
);
491 if (!data
|| type
!= OBJ_BLOB
) {
500 * Frees memory within el which was allocated for exclude patterns and
501 * the file buffer. Does not free el itself.
503 void clear_exclude_list(struct exclude_list
*el
)
507 for (i
= 0; i
< el
->nr
; i
++)
508 free(el
->excludes
[i
]);
517 int add_excludes_from_file_to_list(const char *fname
,
520 struct exclude_list
*el
,
524 int fd
, i
, lineno
= 1;
528 fd
= open(fname
, O_RDONLY
);
529 if (fd
< 0 || fstat(fd
, &st
) < 0) {
531 warn_on_inaccessible(fname
);
535 (buf
= read_skip_worktree_file_from_index(fname
, &size
)) == NULL
)
541 if (buf
[size
-1] != '\n') {
542 buf
= xrealloc(buf
, size
+1);
547 size
= xsize_t(st
.st_size
);
552 buf
= xmalloc(size
+1);
553 if (read_in_full(fd
, buf
, size
) != size
) {
564 for (i
= 0; i
< size
; i
++) {
565 if (buf
[i
] == '\n') {
566 if (entry
!= buf
+ i
&& entry
[0] != '#') {
567 buf
[i
- (i
&& buf
[i
-1] == '\r')] = 0;
568 add_exclude(entry
, base
, baselen
, el
, lineno
);
577 struct exclude_list
*add_exclude_list(struct dir_struct
*dir
,
578 int group_type
, const char *src
)
580 struct exclude_list
*el
;
581 struct exclude_list_group
*group
;
583 group
= &dir
->exclude_list_group
[group_type
];
584 ALLOC_GROW(group
->el
, group
->nr
+ 1, group
->alloc
);
585 el
= &group
->el
[group
->nr
++];
586 memset(el
, 0, sizeof(*el
));
592 * Used to set up core.excludesfile and .git/info/exclude lists.
594 void add_excludes_from_file(struct dir_struct
*dir
, const char *fname
)
596 struct exclude_list
*el
;
597 el
= add_exclude_list(dir
, EXC_FILE
, fname
);
598 if (add_excludes_from_file_to_list(fname
, "", 0, el
, 0) < 0)
599 die("cannot use %s as an exclude file", fname
);
602 int match_basename(const char *basename
, int basenamelen
,
603 const char *pattern
, int prefix
, int patternlen
,
606 if (prefix
== patternlen
) {
607 if (patternlen
== basenamelen
&&
608 !strncmp_icase(pattern
, basename
, basenamelen
))
610 } else if (flags
& EXC_FLAG_ENDSWITH
) {
611 /* "*literal" matching against "fooliteral" */
612 if (patternlen
- 1 <= basenamelen
&&
613 !strncmp_icase(pattern
+ 1,
614 basename
+ basenamelen
- (patternlen
- 1),
618 if (fnmatch_icase_mem(pattern
, patternlen
,
619 basename
, basenamelen
,
626 int match_pathname(const char *pathname
, int pathlen
,
627 const char *base
, int baselen
,
628 const char *pattern
, int prefix
, int patternlen
,
635 * match with FNM_PATHNAME; the pattern has base implicitly
638 if (*pattern
== '/') {
645 * baselen does not count the trailing slash. base[] may or
646 * may not end with a trailing slash though.
648 if (pathlen
< baselen
+ 1 ||
649 (baselen
&& pathname
[baselen
] != '/') ||
650 strncmp_icase(pathname
, base
, baselen
))
653 namelen
= baselen
? pathlen
- baselen
- 1 : pathlen
;
654 name
= pathname
+ pathlen
- namelen
;
658 * if the non-wildcard part is longer than the
659 * remaining pathname, surely it cannot match.
661 if (prefix
> namelen
)
664 if (strncmp_icase(pattern
, name
, prefix
))
667 patternlen
-= prefix
;
672 * If the whole pattern did not have a wildcard,
673 * then our prefix match is all we need; we
674 * do not need to call fnmatch at all.
676 if (!patternlen
&& !namelen
)
680 return fnmatch_icase_mem(pattern
, patternlen
,
686 * Scan the given exclude list in reverse to see whether pathname
687 * should be ignored. The first match (i.e. the last on the list), if
688 * any, determines the fate. Returns the exclude_list element which
689 * matched, or NULL for undecided.
691 static struct exclude
*last_exclude_matching_from_list(const char *pathname
,
693 const char *basename
,
695 struct exclude_list
*el
)
700 return NULL
; /* undefined */
702 for (i
= el
->nr
- 1; 0 <= i
; i
--) {
703 struct exclude
*x
= el
->excludes
[i
];
704 const char *exclude
= x
->pattern
;
705 int prefix
= x
->nowildcardlen
;
707 if (x
->flags
& EXC_FLAG_MUSTBEDIR
) {
708 if (*dtype
== DT_UNKNOWN
)
709 *dtype
= get_dtype(NULL
, pathname
, pathlen
);
710 if (*dtype
!= DT_DIR
)
714 if (x
->flags
& EXC_FLAG_NODIR
) {
715 if (match_basename(basename
,
716 pathlen
- (basename
- pathname
),
717 exclude
, prefix
, x
->patternlen
,
723 assert(x
->baselen
== 0 || x
->base
[x
->baselen
- 1] == '/');
724 if (match_pathname(pathname
, pathlen
,
725 x
->base
, x
->baselen
? x
->baselen
- 1 : 0,
726 exclude
, prefix
, x
->patternlen
, x
->flags
))
729 return NULL
; /* undecided */
733 * Scan the list and let the last match determine the fate.
734 * Return 1 for exclude, 0 for include and -1 for undecided.
736 int is_excluded_from_list(const char *pathname
,
737 int pathlen
, const char *basename
, int *dtype
,
738 struct exclude_list
*el
)
740 struct exclude
*exclude
;
741 exclude
= last_exclude_matching_from_list(pathname
, pathlen
, basename
, dtype
, el
);
743 return exclude
->flags
& EXC_FLAG_NEGATIVE
? 0 : 1;
744 return -1; /* undecided */
747 static struct exclude
*last_exclude_matching_from_lists(struct dir_struct
*dir
,
748 const char *pathname
, int pathlen
, const char *basename
,
752 struct exclude_list_group
*group
;
753 struct exclude
*exclude
;
754 for (i
= EXC_CMDL
; i
<= EXC_FILE
; i
++) {
755 group
= &dir
->exclude_list_group
[i
];
756 for (j
= group
->nr
- 1; j
>= 0; j
--) {
757 exclude
= last_exclude_matching_from_list(
758 pathname
, pathlen
, basename
, dtype_p
,
768 * Loads the per-directory exclude list for the substring of base
769 * which has a char length of baselen.
771 static void prep_exclude(struct dir_struct
*dir
, const char *base
, int baselen
)
773 struct exclude_list_group
*group
;
774 struct exclude_list
*el
;
775 struct exclude_stack
*stk
= NULL
;
778 group
= &dir
->exclude_list_group
[EXC_DIRS
];
780 /* Pop the exclude lists from the EXCL_DIRS exclude_list_group
781 * which originate from directories not in the prefix of the
782 * path being checked. */
783 while ((stk
= dir
->exclude_stack
) != NULL
) {
784 if (stk
->baselen
<= baselen
&&
785 !strncmp(dir
->basebuf
, base
, stk
->baselen
))
787 el
= &group
->el
[dir
->exclude_stack
->exclude_ix
];
788 dir
->exclude_stack
= stk
->prev
;
790 free((char *)el
->src
); /* see strdup() below */
791 clear_exclude_list(el
);
796 /* Skip traversing into sub directories if the parent is excluded */
800 /* Read from the parent directories and push them down. */
801 current
= stk
? stk
->baselen
: -1;
802 while (current
< baselen
) {
803 struct exclude_stack
*stk
= xcalloc(1, sizeof(*stk
));
811 cp
= strchr(base
+ current
+ 1, '/');
813 die("oops in prep_exclude");
816 stk
->prev
= dir
->exclude_stack
;
817 stk
->baselen
= cp
- base
;
818 stk
->exclude_ix
= group
->nr
;
819 el
= add_exclude_list(dir
, EXC_DIRS
, NULL
);
820 memcpy(dir
->basebuf
+ current
, base
+ current
,
821 stk
->baselen
- current
);
823 /* Abort if the directory is excluded */
826 dir
->basebuf
[stk
->baselen
- 1] = 0;
827 dir
->exclude
= last_exclude_matching_from_lists(dir
,
828 dir
->basebuf
, stk
->baselen
- 1,
829 dir
->basebuf
+ current
, &dt
);
830 dir
->basebuf
[stk
->baselen
- 1] = '/';
832 dir
->exclude
->flags
& EXC_FLAG_NEGATIVE
)
835 dir
->basebuf
[stk
->baselen
] = 0;
836 dir
->exclude_stack
= stk
;
841 /* Try to read per-directory file unless path is too long */
842 if (dir
->exclude_per_dir
&&
843 stk
->baselen
+ strlen(dir
->exclude_per_dir
) < PATH_MAX
) {
844 strcpy(dir
->basebuf
+ stk
->baselen
,
845 dir
->exclude_per_dir
);
847 * dir->basebuf gets reused by the traversal, but we
848 * need fname to remain unchanged to ensure the src
849 * member of each struct exclude correctly
850 * back-references its source file. Other invocations
851 * of add_exclude_list provide stable strings, so we
852 * strdup() and free() here in the caller.
854 el
->src
= strdup(dir
->basebuf
);
855 add_excludes_from_file_to_list(dir
->basebuf
,
856 dir
->basebuf
, stk
->baselen
, el
, 1);
858 dir
->exclude_stack
= stk
;
859 current
= stk
->baselen
;
861 dir
->basebuf
[baselen
] = '\0';
865 * Loads the exclude lists for the directory containing pathname, then
866 * scans all exclude lists to determine whether pathname is excluded.
867 * Returns the exclude_list element which matched, or NULL for
870 struct exclude
*last_exclude_matching(struct dir_struct
*dir
,
871 const char *pathname
,
874 int pathlen
= strlen(pathname
);
875 const char *basename
= strrchr(pathname
, '/');
876 basename
= (basename
) ? basename
+1 : pathname
;
878 prep_exclude(dir
, pathname
, basename
-pathname
);
883 return last_exclude_matching_from_lists(dir
, pathname
, pathlen
,
888 * Loads the exclude lists for the directory containing pathname, then
889 * scans all exclude lists to determine whether pathname is excluded.
890 * Returns 1 if true, otherwise 0.
892 int is_excluded(struct dir_struct
*dir
, const char *pathname
, int *dtype_p
)
894 struct exclude
*exclude
=
895 last_exclude_matching(dir
, pathname
, dtype_p
);
897 return exclude
->flags
& EXC_FLAG_NEGATIVE
? 0 : 1;
901 static struct dir_entry
*dir_entry_new(const char *pathname
, int len
)
903 struct dir_entry
*ent
;
905 ent
= xmalloc(sizeof(*ent
) + len
+ 1);
907 memcpy(ent
->name
, pathname
, len
);
912 static struct dir_entry
*dir_add_name(struct dir_struct
*dir
, const char *pathname
, int len
)
914 if (cache_name_exists(pathname
, len
, ignore_case
))
917 ALLOC_GROW(dir
->entries
, dir
->nr
+1, dir
->alloc
);
918 return dir
->entries
[dir
->nr
++] = dir_entry_new(pathname
, len
);
921 struct dir_entry
*dir_add_ignored(struct dir_struct
*dir
, const char *pathname
, int len
)
923 if (!cache_name_is_other(pathname
, len
))
926 ALLOC_GROW(dir
->ignored
, dir
->ignored_nr
+1, dir
->ignored_alloc
);
927 return dir
->ignored
[dir
->ignored_nr
++] = dir_entry_new(pathname
, len
);
931 index_nonexistent
= 0,
937 * Do not use the alphabetically stored index to look up
938 * the directory name; instead, use the case insensitive
941 static enum exist_status
directory_exists_in_index_icase(const char *dirname
, int len
)
943 struct cache_entry
*ce
= index_name_exists(&the_index
, dirname
, len
+ 1, ignore_case
);
944 unsigned char endchar
;
947 return index_nonexistent
;
948 endchar
= ce
->name
[len
];
951 * The cache_entry structure returned will contain this dirname
952 * and possibly additional path components.
955 return index_directory
;
958 * If there are no additional path components, then this cache_entry
959 * represents a submodule. Submodules, despite being directories,
960 * are stored in the cache without a closing slash.
962 if (!endchar
&& S_ISGITLINK(ce
->ce_mode
))
965 /* This should never be hit, but it exists just in case. */
966 return index_nonexistent
;
970 * The index sorts alphabetically by entry name, which
971 * means that a gitlink sorts as '\0' at the end, while
972 * a directory (which is defined not as an entry, but as
973 * the files it contains) will sort with the '/' at the
976 static enum exist_status
directory_exists_in_index(const char *dirname
, int len
)
981 return directory_exists_in_index_icase(dirname
, len
);
983 pos
= cache_name_pos(dirname
, len
);
986 while (pos
< active_nr
) {
987 struct cache_entry
*ce
= active_cache
[pos
++];
988 unsigned char endchar
;
990 if (strncmp(ce
->name
, dirname
, len
))
992 endchar
= ce
->name
[len
];
996 return index_directory
;
997 if (!endchar
&& S_ISGITLINK(ce
->ce_mode
))
1000 return index_nonexistent
;
1004 * When we find a directory when traversing the filesystem, we
1005 * have three distinct cases:
1008 * - see it as a directory
1011 * and which one we choose depends on a combination of existing
1012 * git index contents and the flags passed into the directory
1013 * traversal routine.
1015 * Case 1: If we *already* have entries in the index under that
1016 * directory name, we always recurse into the directory to see
1019 * Case 2: If we *already* have that directory name as a gitlink,
1020 * we always continue to see it as a gitlink, regardless of whether
1021 * there is an actual git directory there or not (it might not
1022 * be checked out as a subproject!)
1024 * Case 3: if we didn't have it in the index previously, we
1025 * have a few sub-cases:
1027 * (a) if "show_other_directories" is true, we show it as
1028 * just a directory, unless "hide_empty_directories" is
1029 * also true, in which case we need to check if it contains any
1030 * untracked and / or ignored files.
1031 * (b) if it looks like a git directory, and we don't have
1032 * 'no_gitlinks' set we treat it as a gitlink, and show it
1034 * (c) otherwise, we recurse into it.
1036 static enum path_treatment
treat_directory(struct dir_struct
*dir
,
1037 const char *dirname
, int len
, int exclude
,
1038 const struct path_simplify
*simplify
)
1040 /* The "len-1" is to strip the final '/' */
1041 switch (directory_exists_in_index(dirname
, len
-1)) {
1042 case index_directory
:
1043 return path_recurse
;
1048 case index_nonexistent
:
1049 if (dir
->flags
& DIR_SHOW_OTHER_DIRECTORIES
)
1051 if (!(dir
->flags
& DIR_NO_GITLINKS
)) {
1052 unsigned char sha1
[20];
1053 if (resolve_gitlink_ref(dirname
, "HEAD", sha1
) == 0)
1054 return path_untracked
;
1056 return path_recurse
;
1059 /* This is the "show_other_directories" case */
1061 if (!(dir
->flags
& DIR_HIDE_EMPTY_DIRECTORIES
))
1062 return exclude
? path_excluded
: path_untracked
;
1064 return read_directory_recursive(dir
, dirname
, len
, 1, simplify
);
1068 * This is an inexact early pruning of any recursive directory
1069 * reading - if the path cannot possibly be in the pathspec,
1070 * return true, and we'll skip it early.
1072 static int simplify_away(const char *path
, int pathlen
, const struct path_simplify
*simplify
)
1076 const char *match
= simplify
->path
;
1077 int len
= simplify
->len
;
1083 if (!memcmp(path
, match
, len
))
1093 * This function tells us whether an excluded path matches a
1094 * list of "interesting" pathspecs. That is, whether a path matched
1095 * by any of the pathspecs could possibly be ignored by excluding
1096 * the specified path. This can happen if:
1098 * 1. the path is mentioned explicitly in the pathspec
1100 * 2. the path is a directory prefix of some element in the
1103 static int exclude_matches_pathspec(const char *path
, int len
,
1104 const struct path_simplify
*simplify
)
1107 for (; simplify
->path
; simplify
++) {
1108 if (len
== simplify
->len
1109 && !memcmp(path
, simplify
->path
, len
))
1111 if (len
< simplify
->len
1112 && simplify
->path
[len
] == '/'
1113 && !memcmp(path
, simplify
->path
, len
))
1120 static int get_index_dtype(const char *path
, int len
)
1123 struct cache_entry
*ce
;
1125 ce
= cache_name_exists(path
, len
, 0);
1127 if (!ce_uptodate(ce
))
1129 if (S_ISGITLINK(ce
->ce_mode
))
1132 * Nobody actually cares about the
1133 * difference between DT_LNK and DT_REG
1138 /* Try to look it up as a directory */
1139 pos
= cache_name_pos(path
, len
);
1143 while (pos
< active_nr
) {
1144 ce
= active_cache
[pos
++];
1145 if (strncmp(ce
->name
, path
, len
))
1147 if (ce
->name
[len
] > '/')
1149 if (ce
->name
[len
] < '/')
1151 if (!ce_uptodate(ce
))
1152 break; /* continue? */
1158 static int get_dtype(struct dirent
*de
, const char *path
, int len
)
1160 int dtype
= de
? DTYPE(de
) : DT_UNKNOWN
;
1163 if (dtype
!= DT_UNKNOWN
)
1165 dtype
= get_index_dtype(path
, len
);
1166 if (dtype
!= DT_UNKNOWN
)
1168 if (lstat(path
, &st
))
1170 if (S_ISREG(st
.st_mode
))
1172 if (S_ISDIR(st
.st_mode
))
1174 if (S_ISLNK(st
.st_mode
))
1179 static enum path_treatment
treat_one_path(struct dir_struct
*dir
,
1180 struct strbuf
*path
,
1181 const struct path_simplify
*simplify
,
1182 int dtype
, struct dirent
*de
)
1185 if (dtype
== DT_UNKNOWN
)
1186 dtype
= get_dtype(de
, path
->buf
, path
->len
);
1188 /* Always exclude indexed files */
1189 if (dtype
!= DT_DIR
&&
1190 cache_name_exists(path
->buf
, path
->len
, ignore_case
))
1193 exclude
= is_excluded(dir
, path
->buf
, &dtype
);
1196 * Excluded? If we don't explicitly want to show
1197 * ignored files, ignore it
1199 if (exclude
&& !(dir
->flags
& (DIR_SHOW_IGNORED
|DIR_SHOW_IGNORED_TOO
)))
1200 return path_excluded
;
1206 strbuf_addch(path
, '/');
1207 return treat_directory(dir
, path
->buf
, path
->len
, exclude
,
1211 return exclude
? path_excluded
: path_untracked
;
1215 static enum path_treatment
treat_path(struct dir_struct
*dir
,
1217 struct strbuf
*path
,
1219 const struct path_simplify
*simplify
)
1223 if (is_dot_or_dotdot(de
->d_name
) || !strcmp(de
->d_name
, ".git"))
1225 strbuf_setlen(path
, baselen
);
1226 strbuf_addstr(path
, de
->d_name
);
1227 if (simplify_away(path
->buf
, path
->len
, simplify
))
1231 return treat_one_path(dir
, path
, simplify
, dtype
, de
);
1235 * Read a directory tree. We currently ignore anything but
1236 * directories, regular files and symlinks. That's because git
1237 * doesn't handle them at all yet. Maybe that will change some
1240 * Also, we ignore the name ".git" (even if it is not a directory).
1241 * That likely will not change.
1243 * Returns the most significant path_treatment value encountered in the scan.
1245 static enum path_treatment
read_directory_recursive(struct dir_struct
*dir
,
1246 const char *base
, int baselen
,
1248 const struct path_simplify
*simplify
)
1251 enum path_treatment state
, subdir_state
, dir_state
= path_none
;
1253 struct strbuf path
= STRBUF_INIT
;
1255 strbuf_add(&path
, base
, baselen
);
1257 fdir
= opendir(path
.len
? path
.buf
: ".");
1261 while ((de
= readdir(fdir
)) != NULL
) {
1262 /* check how the file or directory should be treated */
1263 state
= treat_path(dir
, de
, &path
, baselen
, simplify
);
1264 if (state
> dir_state
)
1267 /* recurse into subdir if instructed by treat_path */
1268 if (state
== path_recurse
) {
1269 subdir_state
= read_directory_recursive(dir
, path
.buf
,
1270 path
.len
, check_only
, simplify
);
1271 if (subdir_state
> dir_state
)
1272 dir_state
= subdir_state
;
1276 /* abort early if maximum state has been reached */
1277 if (dir_state
== path_untracked
)
1279 /* skip the dir_add_* part */
1283 /* add the path to the appropriate result list */
1286 if (dir
->flags
& DIR_SHOW_IGNORED
)
1287 dir_add_name(dir
, path
.buf
, path
.len
);
1288 else if ((dir
->flags
& DIR_SHOW_IGNORED_TOO
) ||
1289 ((dir
->flags
& DIR_COLLECT_IGNORED
) &&
1290 exclude_matches_pathspec(path
.buf
, path
.len
,
1292 dir_add_ignored(dir
, path
.buf
, path
.len
);
1295 case path_untracked
:
1296 if (!(dir
->flags
& DIR_SHOW_IGNORED
))
1297 dir_add_name(dir
, path
.buf
, path
.len
);
1306 strbuf_release(&path
);
1311 static int cmp_name(const void *p1
, const void *p2
)
1313 const struct dir_entry
*e1
= *(const struct dir_entry
**)p1
;
1314 const struct dir_entry
*e2
= *(const struct dir_entry
**)p2
;
1316 return cache_name_compare(e1
->name
, e1
->len
,
1320 static struct path_simplify
*create_simplify(const char **pathspec
)
1323 struct path_simplify
*simplify
= NULL
;
1328 for (nr
= 0 ; ; nr
++) {
1331 alloc
= alloc_nr(alloc
);
1332 simplify
= xrealloc(simplify
, alloc
* sizeof(*simplify
));
1334 match
= *pathspec
++;
1337 simplify
[nr
].path
= match
;
1338 simplify
[nr
].len
= simple_length(match
);
1340 simplify
[nr
].path
= NULL
;
1341 simplify
[nr
].len
= 0;
1345 static void free_simplify(struct path_simplify
*simplify
)
1350 static int treat_leading_path(struct dir_struct
*dir
,
1351 const char *path
, int len
,
1352 const struct path_simplify
*simplify
)
1354 struct strbuf sb
= STRBUF_INIT
;
1355 int baselen
, rc
= 0;
1357 int old_flags
= dir
->flags
;
1359 while (len
&& path
[len
- 1] == '/')
1364 dir
->flags
&= ~DIR_SHOW_OTHER_DIRECTORIES
;
1366 cp
= path
+ baselen
+ !!baselen
;
1367 cp
= memchr(cp
, '/', path
+ len
- cp
);
1371 baselen
= cp
- path
;
1372 strbuf_setlen(&sb
, 0);
1373 strbuf_add(&sb
, path
, baselen
);
1374 if (!is_directory(sb
.buf
))
1376 if (simplify_away(sb
.buf
, sb
.len
, simplify
))
1378 if (treat_one_path(dir
, &sb
, simplify
,
1379 DT_DIR
, NULL
) == path_none
)
1380 break; /* do not recurse into it */
1381 if (len
<= baselen
) {
1383 break; /* finished checking */
1386 strbuf_release(&sb
);
1387 dir
->flags
= old_flags
;
1391 int read_directory(struct dir_struct
*dir
, const char *path
, int len
, const char **pathspec
)
1393 struct path_simplify
*simplify
;
1395 if (has_symlink_leading_path(path
, len
))
1398 simplify
= create_simplify(pathspec
);
1399 if (!len
|| treat_leading_path(dir
, path
, len
, simplify
))
1400 read_directory_recursive(dir
, path
, len
, 0, simplify
);
1401 free_simplify(simplify
);
1402 qsort(dir
->entries
, dir
->nr
, sizeof(struct dir_entry
*), cmp_name
);
1403 qsort(dir
->ignored
, dir
->ignored_nr
, sizeof(struct dir_entry
*), cmp_name
);
1407 int file_exists(const char *f
)
1410 return lstat(f
, &sb
) == 0;
1414 * Given two normalized paths (a trailing slash is ok), if subdir is
1415 * outside dir, return -1. Otherwise return the offset in subdir that
1416 * can be used as relative path to dir.
1418 int dir_inside_of(const char *subdir
, const char *dir
)
1422 assert(dir
&& subdir
&& *dir
&& *subdir
);
1424 while (*dir
&& *subdir
&& *dir
== *subdir
) {
1430 /* hel[p]/me vs hel[l]/yeah */
1431 if (*dir
&& *subdir
)
1435 return !*dir
? offset
: -1; /* same dir */
1437 /* foo/[b]ar vs foo/[] */
1438 if (is_dir_sep(dir
[-1]))
1439 return is_dir_sep(subdir
[-1]) ? offset
: -1;
1441 /* foo[/]bar vs foo[] */
1442 return is_dir_sep(*subdir
) ? offset
+ 1 : -1;
1445 int is_inside_dir(const char *dir
)
1450 if (!getcwd(cwd
, sizeof(cwd
)))
1451 die_errno("can't find the current directory");
1452 return dir_inside_of(cwd
, dir
) >= 0;
1455 int is_empty_dir(const char *path
)
1457 DIR *dir
= opendir(path
);
1464 while ((e
= readdir(dir
)) != NULL
)
1465 if (!is_dot_or_dotdot(e
->d_name
)) {
1474 static int remove_dir_recurse(struct strbuf
*path
, int flag
, int *kept_up
)
1478 int ret
= 0, original_len
= path
->len
, len
, kept_down
= 0;
1479 int only_empty
= (flag
& REMOVE_DIR_EMPTY_ONLY
);
1480 int keep_toplevel
= (flag
& REMOVE_DIR_KEEP_TOPLEVEL
);
1481 unsigned char submodule_head
[20];
1483 if ((flag
& REMOVE_DIR_KEEP_NESTED_GIT
) &&
1484 !resolve_gitlink_ref(path
->buf
, "HEAD", submodule_head
)) {
1485 /* Do not descend and nuke a nested git work tree. */
1491 flag
&= ~REMOVE_DIR_KEEP_TOPLEVEL
;
1492 dir
= opendir(path
->buf
);
1494 /* an empty dir could be removed even if it is unreadble */
1496 return rmdir(path
->buf
);
1500 if (path
->buf
[original_len
- 1] != '/')
1501 strbuf_addch(path
, '/');
1504 while ((e
= readdir(dir
)) != NULL
) {
1506 if (is_dot_or_dotdot(e
->d_name
))
1509 strbuf_setlen(path
, len
);
1510 strbuf_addstr(path
, e
->d_name
);
1511 if (lstat(path
->buf
, &st
))
1513 else if (S_ISDIR(st
.st_mode
)) {
1514 if (!remove_dir_recurse(path
, flag
, &kept_down
))
1515 continue; /* happy */
1516 } else if (!only_empty
&& !unlink(path
->buf
))
1517 continue; /* happy, too */
1519 /* path too long, stat fails, or non-directory still exists */
1525 strbuf_setlen(path
, original_len
);
1526 if (!ret
&& !keep_toplevel
&& !kept_down
)
1527 ret
= rmdir(path
->buf
);
1530 * report the uplevel that it is not an error that we
1531 * did not rmdir() our directory.
1537 int remove_dir_recursively(struct strbuf
*path
, int flag
)
1539 return remove_dir_recurse(path
, flag
, NULL
);
1542 void setup_standard_excludes(struct dir_struct
*dir
)
1547 dir
->exclude_per_dir
= ".gitignore";
1548 path
= git_path("info/exclude");
1549 if (!excludes_file
) {
1550 home_config_paths(NULL
, &xdg_path
, "ignore");
1551 excludes_file
= xdg_path
;
1553 if (!access_or_warn(path
, R_OK
, 0))
1554 add_excludes_from_file(dir
, path
);
1555 if (excludes_file
&& !access_or_warn(excludes_file
, R_OK
, 0))
1556 add_excludes_from_file(dir
, excludes_file
);
1559 int remove_path(const char *name
)
1563 if (unlink(name
) && errno
!= ENOENT
&& errno
!= ENOTDIR
)
1566 slash
= strrchr(name
, '/');
1568 char *dirs
= xstrdup(name
);
1569 slash
= dirs
+ (slash
- name
);
1572 } while (rmdir(dirs
) == 0 && (slash
= strrchr(dirs
, '/')));
1578 static int pathspec_item_cmp(const void *a_
, const void *b_
)
1580 struct pathspec_item
*a
, *b
;
1582 a
= (struct pathspec_item
*)a_
;
1583 b
= (struct pathspec_item
*)b_
;
1584 return strcmp(a
->match
, b
->match
);
1587 int init_pathspec(struct pathspec
*pathspec
, const char **paths
)
1589 const char **p
= paths
;
1592 memset(pathspec
, 0, sizeof(*pathspec
));
1597 pathspec
->raw
= paths
;
1598 pathspec
->nr
= p
- paths
;
1602 pathspec
->items
= xmalloc(sizeof(struct pathspec_item
)*pathspec
->nr
);
1603 for (i
= 0; i
< pathspec
->nr
; i
++) {
1604 struct pathspec_item
*item
= pathspec
->items
+i
;
1605 const char *path
= paths
[i
];
1608 item
->original
= path
;
1609 item
->len
= strlen(path
);
1611 if (limit_pathspec_to_literal()) {
1612 item
->nowildcard_len
= item
->len
;
1614 item
->nowildcard_len
= simple_length(path
);
1615 if (item
->nowildcard_len
< item
->len
) {
1616 pathspec
->has_wildcard
= 1;
1617 if (path
[item
->nowildcard_len
] == '*' &&
1618 no_wildcard(path
+ item
->nowildcard_len
+ 1))
1619 item
->flags
|= PATHSPEC_ONESTAR
;
1624 qsort(pathspec
->items
, pathspec
->nr
,
1625 sizeof(struct pathspec_item
), pathspec_item_cmp
);
1630 void free_pathspec(struct pathspec
*pathspec
)
1632 free(pathspec
->items
);
1633 pathspec
->items
= NULL
;
1636 int limit_pathspec_to_literal(void)
1638 static int flag
= -1;
1640 flag
= git_env_bool(GIT_LITERAL_PATHSPECS_ENVIRONMENT
, 0);
1645 * Frees memory within dir which was allocated for exclude lists and
1646 * the exclude_stack. Does not free dir itself.
1648 void clear_directory(struct dir_struct
*dir
)
1651 struct exclude_list_group
*group
;
1652 struct exclude_list
*el
;
1653 struct exclude_stack
*stk
;
1655 for (i
= EXC_CMDL
; i
<= EXC_FILE
; i
++) {
1656 group
= &dir
->exclude_list_group
[i
];
1657 for (j
= 0; j
< group
->nr
; j
++) {
1660 free((char *)el
->src
);
1661 clear_exclude_list(el
);
1666 stk
= dir
->exclude_stack
;
1668 struct exclude_stack
*prev
= stk
->prev
;