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"
15 struct path_simplify
{
20 static int read_directory_recursive(struct dir_struct
*dir
, const char *path
, int len
,
21 int check_only
, const struct path_simplify
*simplify
);
22 static int get_dtype(struct dirent
*de
, const char *path
, int len
);
24 /* helper string functions with support for the ignore_case flag */
25 int strcmp_icase(const char *a
, const char *b
)
27 return ignore_case
? strcasecmp(a
, b
) : strcmp(a
, b
);
30 int strncmp_icase(const char *a
, const char *b
, size_t count
)
32 return ignore_case
? strncasecmp(a
, b
, count
) : strncmp(a
, b
, count
);
35 int fnmatch_icase(const char *pattern
, const char *string
, int flags
)
37 return fnmatch(pattern
, string
, flags
| (ignore_case
? FNM_CASEFOLD
: 0));
40 inline int git_fnmatch(const char *pattern
, const char *string
,
41 int flags
, int prefix
)
44 if (flags
& GFNM_PATHNAME
)
45 fnm_flags
|= FNM_PATHNAME
;
47 if (strncmp(pattern
, string
, prefix
))
52 if (flags
& GFNM_ONESTAR
) {
53 int pattern_len
= strlen(++pattern
);
54 int string_len
= strlen(string
);
55 return string_len
< pattern_len
||
57 string
+ string_len
- pattern_len
);
59 return fnmatch(pattern
, string
, fnm_flags
);
62 static int fnmatch_icase_mem(const char *pattern
, int patternlen
,
63 const char *string
, int stringlen
,
67 struct strbuf pat_buf
= STRBUF_INIT
;
68 struct strbuf str_buf
= STRBUF_INIT
;
69 const char *use_pat
= pattern
;
70 const char *use_str
= string
;
72 if (pattern
[patternlen
]) {
73 strbuf_add(&pat_buf
, pattern
, patternlen
);
74 use_pat
= pat_buf
.buf
;
76 if (string
[stringlen
]) {
77 strbuf_add(&str_buf
, string
, stringlen
);
78 use_str
= str_buf
.buf
;
83 match_status
= wildmatch(use_pat
, use_str
, flags
, NULL
);
85 strbuf_release(&pat_buf
);
86 strbuf_release(&str_buf
);
91 static size_t common_prefix_len(const char **pathspec
)
93 const char *n
, *first
;
95 int literal
= limit_pathspec_to_literal();
101 while ((n
= *pathspec
++)) {
103 for (i
= 0; first
== n
|| i
< max
; i
++) {
105 if (!c
|| c
!= first
[i
] || (!literal
&& is_glob_special(c
)))
110 if (first
== n
|| len
< max
) {
120 * Returns a copy of the longest leading path common among all
123 char *common_prefix(const char **pathspec
)
125 unsigned long len
= common_prefix_len(pathspec
);
127 return len
? xmemdupz(*pathspec
, len
) : NULL
;
130 int fill_directory(struct dir_struct
*dir
, const char **pathspec
)
135 * Calculate common prefix for the pathspec, and
136 * use that to optimize the directory walk
138 len
= common_prefix_len(pathspec
);
140 /* Read the directory and prune it */
141 read_directory(dir
, pathspec
? *pathspec
: "", len
, pathspec
);
145 int within_depth(const char *name
, int namelen
,
146 int depth
, int max_depth
)
148 const char *cp
= name
, *cpe
= name
+ namelen
;
154 if (depth
> max_depth
)
161 * Does 'match' match the given name?
162 * A match is found if
164 * (1) the 'match' string is leading directory of 'name', or
165 * (2) the 'match' string is a wildcard and matches 'name', or
166 * (3) the 'match' string is exactly the same as 'name'.
168 * and the return value tells which case it was.
170 * It returns 0 when there is no match.
172 static int match_one(const char *match
, const char *name
, int namelen
)
175 int literal
= limit_pathspec_to_literal();
177 /* If the match was just the prefix, we matched */
179 return MATCHED_RECURSIVELY
;
183 unsigned char c1
= tolower(*match
);
184 unsigned char c2
= tolower(*name
);
185 if (c1
== '\0' || (!literal
&& is_glob_special(c1
)))
195 unsigned char c1
= *match
;
196 unsigned char c2
= *name
;
197 if (c1
== '\0' || (!literal
&& is_glob_special(c1
)))
208 * If we don't match the matchstring exactly,
209 * we need to match by fnmatch
211 matchlen
= strlen(match
);
212 if (strncmp_icase(match
, name
, matchlen
)) {
215 return !fnmatch_icase(match
, name
, 0) ? MATCHED_FNMATCH
: 0;
218 if (namelen
== matchlen
)
219 return MATCHED_EXACTLY
;
220 if (match
[matchlen
-1] == '/' || name
[matchlen
] == '/')
221 return MATCHED_RECURSIVELY
;
226 * Given a name and a list of pathspecs, returns the nature of the
227 * closest (i.e. most specific) match of the name to any of the
230 * The caller typically calls this multiple times with the same
231 * pathspec and seen[] array but with different name/namelen
232 * (e.g. entries from the index) and is interested in seeing if and
233 * how each pathspec matches all the names it calls this function
234 * with. A mark is left in the seen[] array for each pathspec element
235 * indicating the closest type of match that element achieved, so if
236 * seen[n] remains zero after multiple invocations, that means the nth
237 * pathspec did not match any names, which could indicate that the
238 * user mistyped the nth pathspec.
240 int match_pathspec(const char **pathspec
, const char *name
, int namelen
,
241 int prefix
, char *seen
)
251 for (i
= 0; pathspec
[i
] != NULL
; i
++) {
253 const char *match
= pathspec
[i
] + prefix
;
254 if (seen
&& seen
[i
] == MATCHED_EXACTLY
)
256 how
= match_one(match
, name
, namelen
);
260 if (seen
&& seen
[i
] < how
)
268 * Does 'match' match the given name?
269 * A match is found if
271 * (1) the 'match' string is leading directory of 'name', or
272 * (2) the 'match' string is a wildcard and matches 'name', or
273 * (3) the 'match' string is exactly the same as 'name'.
275 * and the return value tells which case it was.
277 * It returns 0 when there is no match.
279 static int match_pathspec_item(const struct pathspec_item
*item
, int prefix
,
280 const char *name
, int namelen
)
282 /* name/namelen has prefix cut off by caller */
283 const char *match
= item
->match
+ prefix
;
284 int matchlen
= item
->len
- prefix
;
286 /* If the match was just the prefix, we matched */
288 return MATCHED_RECURSIVELY
;
290 if (matchlen
<= namelen
&& !strncmp(match
, name
, matchlen
)) {
291 if (matchlen
== namelen
)
292 return MATCHED_EXACTLY
;
294 if (match
[matchlen
-1] == '/' || name
[matchlen
] == '/')
295 return MATCHED_RECURSIVELY
;
298 if (item
->nowildcard_len
< item
->len
&&
299 !git_fnmatch(match
, name
,
300 item
->flags
& PATHSPEC_ONESTAR
? GFNM_ONESTAR
: 0,
301 item
->nowildcard_len
- prefix
))
302 return MATCHED_FNMATCH
;
308 * Given a name and a list of pathspecs, returns the nature of the
309 * closest (i.e. most specific) match of the name to any of the
312 * The caller typically calls this multiple times with the same
313 * pathspec and seen[] array but with different name/namelen
314 * (e.g. entries from the index) and is interested in seeing if and
315 * how each pathspec matches all the names it calls this function
316 * with. A mark is left in the seen[] array for each pathspec element
317 * indicating the closest type of match that element achieved, so if
318 * seen[n] remains zero after multiple invocations, that means the nth
319 * pathspec did not match any names, which could indicate that the
320 * user mistyped the nth pathspec.
322 int match_pathspec_depth(const struct pathspec
*ps
,
323 const char *name
, int namelen
,
324 int prefix
, char *seen
)
329 if (!ps
->recursive
|| ps
->max_depth
== -1)
330 return MATCHED_RECURSIVELY
;
332 if (within_depth(name
, namelen
, 0, ps
->max_depth
))
333 return MATCHED_EXACTLY
;
341 for (i
= ps
->nr
- 1; i
>= 0; i
--) {
343 if (seen
&& seen
[i
] == MATCHED_EXACTLY
)
345 how
= match_pathspec_item(ps
->items
+i
, prefix
, name
, namelen
);
346 if (ps
->recursive
&& ps
->max_depth
!= -1 &&
347 how
&& how
!= MATCHED_FNMATCH
) {
348 int len
= ps
->items
[i
].len
;
349 if (name
[len
] == '/')
351 if (within_depth(name
+len
, namelen
-len
, 0, ps
->max_depth
))
352 how
= MATCHED_EXACTLY
;
359 if (seen
&& seen
[i
] < how
)
367 * Return the length of the "simple" part of a path match limiter.
369 static int simple_length(const char *match
)
374 unsigned char c
= *match
++;
376 if (c
== '\0' || is_glob_special(c
))
381 static int no_wildcard(const char *string
)
383 return string
[simple_length(string
)] == '\0';
386 void parse_exclude_pattern(const char **pattern
,
391 const char *p
= *pattern
;
396 *flags
|= EXC_FLAG_NEGATIVE
;
400 if (len
&& p
[len
- 1] == '/') {
402 *flags
|= EXC_FLAG_MUSTBEDIR
;
404 for (i
= 0; i
< len
; i
++) {
409 *flags
|= EXC_FLAG_NODIR
;
410 *nowildcardlen
= simple_length(p
);
412 * we should have excluded the trailing slash from 'p' too,
413 * but that's one more allocation. Instead just make sure
414 * nowildcardlen does not exceed real patternlen
416 if (*nowildcardlen
> len
)
417 *nowildcardlen
= len
;
418 if (*p
== '*' && no_wildcard(p
+ 1))
419 *flags
|= EXC_FLAG_ENDSWITH
;
424 void add_exclude(const char *string
, const char *base
,
425 int baselen
, struct exclude_list
*el
, int srcpos
)
432 parse_exclude_pattern(&string
, &patternlen
, &flags
, &nowildcardlen
);
433 if (flags
& EXC_FLAG_MUSTBEDIR
) {
435 x
= xmalloc(sizeof(*x
) + patternlen
+ 1);
437 memcpy(s
, string
, patternlen
);
438 s
[patternlen
] = '\0';
441 x
= xmalloc(sizeof(*x
));
444 x
->patternlen
= patternlen
;
445 x
->nowildcardlen
= nowildcardlen
;
447 x
->baselen
= baselen
;
450 ALLOC_GROW(el
->excludes
, el
->nr
+ 1, el
->alloc
);
451 el
->excludes
[el
->nr
++] = x
;
455 static void *read_skip_worktree_file_from_index(const char *path
, size_t *size
)
459 enum object_type type
;
461 struct index_state
*istate
= &the_index
;
464 pos
= index_name_pos(istate
, path
, len
);
467 if (!ce_skip_worktree(istate
->cache
[pos
]))
469 data
= read_sha1_file(istate
->cache
[pos
]->sha1
, &type
, &sz
);
470 if (!data
|| type
!= OBJ_BLOB
) {
479 * Frees memory within el which was allocated for exclude patterns and
480 * the file buffer. Does not free el itself.
482 void clear_exclude_list(struct exclude_list
*el
)
486 for (i
= 0; i
< el
->nr
; i
++)
487 free(el
->excludes
[i
]);
496 int add_excludes_from_file_to_list(const char *fname
,
499 struct exclude_list
*el
,
503 int fd
, i
, lineno
= 1;
507 fd
= open(fname
, O_RDONLY
);
508 if (fd
< 0 || fstat(fd
, &st
) < 0) {
510 warn_on_inaccessible(fname
);
514 (buf
= read_skip_worktree_file_from_index(fname
, &size
)) == NULL
)
520 if (buf
[size
-1] != '\n') {
521 buf
= xrealloc(buf
, size
+1);
526 size
= xsize_t(st
.st_size
);
531 buf
= xmalloc(size
+1);
532 if (read_in_full(fd
, buf
, size
) != size
) {
543 for (i
= 0; i
< size
; i
++) {
544 if (buf
[i
] == '\n') {
545 if (entry
!= buf
+ i
&& entry
[0] != '#') {
546 buf
[i
- (i
&& buf
[i
-1] == '\r')] = 0;
547 add_exclude(entry
, base
, baselen
, el
, lineno
);
556 struct exclude_list
*add_exclude_list(struct dir_struct
*dir
,
557 int group_type
, const char *src
)
559 struct exclude_list
*el
;
560 struct exclude_list_group
*group
;
562 group
= &dir
->exclude_list_group
[group_type
];
563 ALLOC_GROW(group
->el
, group
->nr
+ 1, group
->alloc
);
564 el
= &group
->el
[group
->nr
++];
565 memset(el
, 0, sizeof(*el
));
571 * Used to set up core.excludesfile and .git/info/exclude lists.
573 void add_excludes_from_file(struct dir_struct
*dir
, const char *fname
)
575 struct exclude_list
*el
;
576 el
= add_exclude_list(dir
, EXC_FILE
, fname
);
577 if (add_excludes_from_file_to_list(fname
, "", 0, el
, 0) < 0)
578 die("cannot use %s as an exclude file", fname
);
582 * Loads the per-directory exclude list for the substring of base
583 * which has a char length of baselen.
585 static void prep_exclude(struct dir_struct
*dir
, const char *base
, int baselen
)
587 struct exclude_list_group
*group
;
588 struct exclude_list
*el
;
589 struct exclude_stack
*stk
= NULL
;
592 if ((!dir
->exclude_per_dir
) ||
593 (baselen
+ strlen(dir
->exclude_per_dir
) >= PATH_MAX
))
594 return; /* too long a path -- ignore */
596 group
= &dir
->exclude_list_group
[EXC_DIRS
];
598 /* Pop the exclude lists from the EXCL_DIRS exclude_list_group
599 * which originate from directories not in the prefix of the
600 * path being checked. */
601 while ((stk
= dir
->exclude_stack
) != NULL
) {
602 if (stk
->baselen
<= baselen
&&
603 !strncmp(dir
->basebuf
, base
, stk
->baselen
))
605 el
= &group
->el
[dir
->exclude_stack
->exclude_ix
];
606 dir
->exclude_stack
= stk
->prev
;
607 free((char *)el
->src
); /* see strdup() below */
608 clear_exclude_list(el
);
613 /* Read from the parent directories and push them down. */
614 current
= stk
? stk
->baselen
: -1;
615 while (current
< baselen
) {
616 struct exclude_stack
*stk
= xcalloc(1, sizeof(*stk
));
624 cp
= strchr(base
+ current
+ 1, '/');
626 die("oops in prep_exclude");
629 stk
->prev
= dir
->exclude_stack
;
630 stk
->baselen
= cp
- base
;
631 memcpy(dir
->basebuf
+ current
, base
+ current
,
632 stk
->baselen
- current
);
633 strcpy(dir
->basebuf
+ stk
->baselen
, dir
->exclude_per_dir
);
635 * dir->basebuf gets reused by the traversal, but we
636 * need fname to remain unchanged to ensure the src
637 * member of each struct exclude correctly
638 * back-references its source file. Other invocations
639 * of add_exclude_list provide stable strings, so we
640 * strdup() and free() here in the caller.
642 el
= add_exclude_list(dir
, EXC_DIRS
, strdup(dir
->basebuf
));
643 stk
->exclude_ix
= group
->nr
- 1;
644 add_excludes_from_file_to_list(dir
->basebuf
,
645 dir
->basebuf
, stk
->baselen
,
647 dir
->exclude_stack
= stk
;
648 current
= stk
->baselen
;
650 dir
->basebuf
[baselen
] = '\0';
653 int match_basename(const char *basename
, int basenamelen
,
654 const char *pattern
, int prefix
, int patternlen
,
657 if (prefix
== patternlen
) {
658 if (patternlen
== basenamelen
&&
659 !strncmp_icase(pattern
, basename
, basenamelen
))
661 } else if (flags
& EXC_FLAG_ENDSWITH
) {
662 /* "*literal" matching against "fooliteral" */
663 if (patternlen
- 1 <= basenamelen
&&
664 !strncmp_icase(pattern
+ 1,
665 basename
+ basenamelen
- (patternlen
- 1),
669 if (fnmatch_icase_mem(pattern
, patternlen
,
670 basename
, basenamelen
,
677 int match_pathname(const char *pathname
, int pathlen
,
678 const char *base
, int baselen
,
679 const char *pattern
, int prefix
, int patternlen
,
686 * match with FNM_PATHNAME; the pattern has base implicitly
689 if (*pattern
== '/') {
696 * baselen does not count the trailing slash. base[] may or
697 * may not end with a trailing slash though.
699 if (pathlen
< baselen
+ 1 ||
700 (baselen
&& pathname
[baselen
] != '/') ||
701 strncmp_icase(pathname
, base
, baselen
))
704 namelen
= baselen
? pathlen
- baselen
- 1 : pathlen
;
705 name
= pathname
+ pathlen
- namelen
;
709 * if the non-wildcard part is longer than the
710 * remaining pathname, surely it cannot match.
712 if (prefix
> namelen
)
715 if (strncmp_icase(pattern
, name
, prefix
))
718 patternlen
-= prefix
;
723 * If the whole pattern did not have a wildcard,
724 * then our prefix match is all we need; we
725 * do not need to call fnmatch at all.
727 if (!patternlen
&& !namelen
)
731 return fnmatch_icase_mem(pattern
, patternlen
,
737 * Scan the given exclude list in reverse to see whether pathname
738 * should be ignored. The first match (i.e. the last on the list), if
739 * any, determines the fate. Returns the exclude_list element which
740 * matched, or NULL for undecided.
742 static struct exclude
*last_exclude_matching_from_list(const char *pathname
,
744 const char *basename
,
746 struct exclude_list
*el
)
751 return NULL
; /* undefined */
753 for (i
= el
->nr
- 1; 0 <= i
; i
--) {
754 struct exclude
*x
= el
->excludes
[i
];
755 const char *exclude
= x
->pattern
;
756 int prefix
= x
->nowildcardlen
;
758 if (x
->flags
& EXC_FLAG_MUSTBEDIR
) {
759 if (*dtype
== DT_UNKNOWN
)
760 *dtype
= get_dtype(NULL
, pathname
, pathlen
);
761 if (*dtype
!= DT_DIR
)
765 if (x
->flags
& EXC_FLAG_NODIR
) {
766 if (match_basename(basename
,
767 pathlen
- (basename
- pathname
),
768 exclude
, prefix
, x
->patternlen
,
774 assert(x
->baselen
== 0 || x
->base
[x
->baselen
- 1] == '/');
775 if (match_pathname(pathname
, pathlen
,
776 x
->base
, x
->baselen
? x
->baselen
- 1 : 0,
777 exclude
, prefix
, x
->patternlen
, x
->flags
))
780 return NULL
; /* undecided */
784 * Scan the list and let the last match determine the fate.
785 * Return 1 for exclude, 0 for include and -1 for undecided.
787 int is_excluded_from_list(const char *pathname
,
788 int pathlen
, const char *basename
, int *dtype
,
789 struct exclude_list
*el
)
791 struct exclude
*exclude
;
792 exclude
= last_exclude_matching_from_list(pathname
, pathlen
, basename
, dtype
, el
);
794 return exclude
->flags
& EXC_FLAG_NEGATIVE
? 0 : 1;
795 return -1; /* undecided */
799 * Loads the exclude lists for the directory containing pathname, then
800 * scans all exclude lists to determine whether pathname is excluded.
801 * Returns the exclude_list element which matched, or NULL for
804 static struct exclude
*last_exclude_matching(struct dir_struct
*dir
,
805 const char *pathname
,
808 int pathlen
= strlen(pathname
);
810 struct exclude_list_group
*group
;
811 struct exclude
*exclude
;
812 const char *basename
= strrchr(pathname
, '/');
813 basename
= (basename
) ? basename
+1 : pathname
;
815 prep_exclude(dir
, pathname
, basename
-pathname
);
817 for (i
= EXC_CMDL
; i
<= EXC_FILE
; i
++) {
818 group
= &dir
->exclude_list_group
[i
];
819 for (j
= group
->nr
- 1; j
>= 0; j
--) {
820 exclude
= last_exclude_matching_from_list(
821 pathname
, pathlen
, basename
, dtype_p
,
831 * Loads the exclude lists for the directory containing pathname, then
832 * scans all exclude lists to determine whether pathname is excluded.
833 * Returns 1 if true, otherwise 0.
835 static int is_excluded(struct dir_struct
*dir
, const char *pathname
, int *dtype_p
)
837 struct exclude
*exclude
=
838 last_exclude_matching(dir
, pathname
, dtype_p
);
840 return exclude
->flags
& EXC_FLAG_NEGATIVE
? 0 : 1;
844 void path_exclude_check_init(struct path_exclude_check
*check
,
845 struct dir_struct
*dir
)
848 check
->exclude
= NULL
;
849 strbuf_init(&check
->path
, 256);
852 void path_exclude_check_clear(struct path_exclude_check
*check
)
854 strbuf_release(&check
->path
);
858 * For each subdirectory in name, starting with the top-most, checks
859 * to see if that subdirectory is excluded, and if so, returns the
860 * corresponding exclude structure. Otherwise, checks whether name
861 * itself (which is presumably a file) is excluded.
863 * A path to a directory known to be excluded is left in check->path to
864 * optimize for repeated checks for files in the same excluded directory.
866 struct exclude
*last_exclude_matching_path(struct path_exclude_check
*check
,
867 const char *name
, int namelen
,
871 struct strbuf
*path
= &check
->path
;
872 struct exclude
*exclude
;
875 * we allow the caller to pass namelen as an optimization; it
876 * must match the length of the name, as we eventually call
877 * is_excluded() on the whole name string.
880 namelen
= strlen(name
);
883 * If path is non-empty, and name is equal to path or a
884 * subdirectory of path, name should be excluded, because
885 * it's inside a directory which is already known to be
886 * excluded and was previously left in check->path.
889 path
->len
<= namelen
&&
890 !memcmp(name
, path
->buf
, path
->len
) &&
891 (!name
[path
->len
] || name
[path
->len
] == '/'))
892 return check
->exclude
;
894 strbuf_setlen(path
, 0);
895 for (i
= 0; name
[i
]; i
++) {
900 exclude
= last_exclude_matching(check
->dir
,
903 check
->exclude
= exclude
;
907 strbuf_addch(path
, ch
);
910 /* An entry in the index; cannot be a directory with subentries */
911 strbuf_setlen(path
, 0);
913 return last_exclude_matching(check
->dir
, name
, dtype
);
917 * Is this name excluded? This is for a caller like show_files() that
918 * do not honor directory hierarchy and iterate through paths that are
919 * possibly in an ignored directory.
921 int is_path_excluded(struct path_exclude_check
*check
,
922 const char *name
, int namelen
, int *dtype
)
924 struct exclude
*exclude
=
925 last_exclude_matching_path(check
, name
, namelen
, dtype
);
927 return exclude
->flags
& EXC_FLAG_NEGATIVE
? 0 : 1;
931 static struct dir_entry
*dir_entry_new(const char *pathname
, int len
)
933 struct dir_entry
*ent
;
935 ent
= xmalloc(sizeof(*ent
) + len
+ 1);
937 memcpy(ent
->name
, pathname
, len
);
942 static struct dir_entry
*dir_add_name(struct dir_struct
*dir
, const char *pathname
, int len
)
944 if (!(dir
->flags
& DIR_SHOW_IGNORED
) &&
945 cache_name_exists(pathname
, len
, ignore_case
))
948 ALLOC_GROW(dir
->entries
, dir
->nr
+1, dir
->alloc
);
949 return dir
->entries
[dir
->nr
++] = dir_entry_new(pathname
, len
);
952 struct dir_entry
*dir_add_ignored(struct dir_struct
*dir
, const char *pathname
, int len
)
954 if (!cache_name_is_other(pathname
, len
))
957 ALLOC_GROW(dir
->ignored
, dir
->ignored_nr
+1, dir
->ignored_alloc
);
958 return dir
->ignored
[dir
->ignored_nr
++] = dir_entry_new(pathname
, len
);
962 index_nonexistent
= 0,
968 * Do not use the alphabetically stored index to look up
969 * the directory name; instead, use the case insensitive
972 static enum exist_status
directory_exists_in_index_icase(const char *dirname
, int len
)
974 struct cache_entry
*ce
= index_name_exists(&the_index
, dirname
, len
+ 1, ignore_case
);
975 unsigned char endchar
;
978 return index_nonexistent
;
979 endchar
= ce
->name
[len
];
982 * The cache_entry structure returned will contain this dirname
983 * and possibly additional path components.
986 return index_directory
;
989 * If there are no additional path components, then this cache_entry
990 * represents a submodule. Submodules, despite being directories,
991 * are stored in the cache without a closing slash.
993 if (!endchar
&& S_ISGITLINK(ce
->ce_mode
))
996 /* This should never be hit, but it exists just in case. */
997 return index_nonexistent
;
1001 * The index sorts alphabetically by entry name, which
1002 * means that a gitlink sorts as '\0' at the end, while
1003 * a directory (which is defined not as an entry, but as
1004 * the files it contains) will sort with the '/' at the
1007 static enum exist_status
directory_exists_in_index(const char *dirname
, int len
)
1012 return directory_exists_in_index_icase(dirname
, len
);
1014 pos
= cache_name_pos(dirname
, len
);
1017 while (pos
< active_nr
) {
1018 struct cache_entry
*ce
= active_cache
[pos
++];
1019 unsigned char endchar
;
1021 if (strncmp(ce
->name
, dirname
, len
))
1023 endchar
= ce
->name
[len
];
1027 return index_directory
;
1028 if (!endchar
&& S_ISGITLINK(ce
->ce_mode
))
1029 return index_gitdir
;
1031 return index_nonexistent
;
1035 * When we find a directory when traversing the filesystem, we
1036 * have three distinct cases:
1039 * - see it as a directory
1042 * and which one we choose depends on a combination of existing
1043 * git index contents and the flags passed into the directory
1044 * traversal routine.
1046 * Case 1: If we *already* have entries in the index under that
1047 * directory name, we recurse into the directory to see all the files,
1048 * unless the directory is excluded and we want to show ignored
1051 * Case 2: If we *already* have that directory name as a gitlink,
1052 * we always continue to see it as a gitlink, regardless of whether
1053 * there is an actual git directory there or not (it might not
1054 * be checked out as a subproject!)
1056 * Case 3: if we didn't have it in the index previously, we
1057 * have a few sub-cases:
1059 * (a) if "show_other_directories" is true, we show it as
1060 * just a directory, unless "hide_empty_directories" is
1061 * also true and the directory is empty, in which case
1062 * we just ignore it entirely.
1063 * if we are looking for ignored directories, look if it
1064 * contains only ignored files to decide if it must be shown as
1066 * (b) if it looks like a git directory, and we don't have
1067 * 'no_gitlinks' set we treat it as a gitlink, and show it
1069 * (c) otherwise, we recurse into it.
1071 enum directory_treatment
{
1074 recurse_into_directory
1077 static enum directory_treatment
treat_directory(struct dir_struct
*dir
,
1078 const char *dirname
, int len
, int exclude
,
1079 const struct path_simplify
*simplify
)
1081 /* The "len-1" is to strip the final '/' */
1082 switch (directory_exists_in_index(dirname
, len
-1)) {
1083 case index_directory
:
1084 if ((dir
->flags
& DIR_SHOW_OTHER_DIRECTORIES
) && exclude
)
1087 return recurse_into_directory
;
1090 if (dir
->flags
& DIR_SHOW_OTHER_DIRECTORIES
)
1091 return ignore_directory
;
1092 return show_directory
;
1094 case index_nonexistent
:
1095 if (dir
->flags
& DIR_SHOW_OTHER_DIRECTORIES
)
1097 if (!(dir
->flags
& DIR_NO_GITLINKS
)) {
1098 unsigned char sha1
[20];
1099 if (resolve_gitlink_ref(dirname
, "HEAD", sha1
) == 0)
1100 return show_directory
;
1102 return recurse_into_directory
;
1105 /* This is the "show_other_directories" case */
1108 * We are looking for ignored files and our directory is not ignored,
1109 * check if it contains only ignored files
1111 if ((dir
->flags
& DIR_SHOW_IGNORED
) && !exclude
) {
1113 dir
->flags
&= ~DIR_SHOW_IGNORED
;
1114 dir
->flags
|= DIR_HIDE_EMPTY_DIRECTORIES
;
1115 ignored
= read_directory_recursive(dir
, dirname
, len
, 1, simplify
);
1116 dir
->flags
&= ~DIR_HIDE_EMPTY_DIRECTORIES
;
1117 dir
->flags
|= DIR_SHOW_IGNORED
;
1119 return ignored
? ignore_directory
: show_directory
;
1121 if (!(dir
->flags
& DIR_SHOW_IGNORED
) &&
1122 !(dir
->flags
& DIR_HIDE_EMPTY_DIRECTORIES
))
1123 return show_directory
;
1124 if (!read_directory_recursive(dir
, dirname
, len
, 1, simplify
))
1125 return ignore_directory
;
1126 return show_directory
;
1130 * Decide what to do when we find a file while traversing the
1131 * filesystem. Mostly two cases:
1133 * 1. We are looking for ignored files
1134 * (a) File is ignored, include it
1135 * (b) File is in ignored path, include it
1136 * (c) File is not ignored, exclude it
1138 * 2. Other scenarios, include the file if not excluded
1140 * Return 1 for exclude, 0 for include.
1142 static int treat_file(struct dir_struct
*dir
, struct strbuf
*path
, int exclude
, int *dtype
)
1144 struct path_exclude_check check
;
1145 int exclude_file
= 0;
1148 exclude_file
= !(dir
->flags
& DIR_SHOW_IGNORED
);
1149 else if (dir
->flags
& DIR_SHOW_IGNORED
) {
1150 /* Always exclude indexed files */
1151 struct cache_entry
*ce
= index_name_exists(&the_index
,
1152 path
->buf
, path
->len
, ignore_case
);
1157 path_exclude_check_init(&check
, dir
);
1159 if (!is_path_excluded(&check
, path
->buf
, path
->len
, dtype
))
1162 path_exclude_check_clear(&check
);
1165 return exclude_file
;
1169 * This is an inexact early pruning of any recursive directory
1170 * reading - if the path cannot possibly be in the pathspec,
1171 * return true, and we'll skip it early.
1173 static int simplify_away(const char *path
, int pathlen
, const struct path_simplify
*simplify
)
1177 const char *match
= simplify
->path
;
1178 int len
= simplify
->len
;
1184 if (!memcmp(path
, match
, len
))
1194 * This function tells us whether an excluded path matches a
1195 * list of "interesting" pathspecs. That is, whether a path matched
1196 * by any of the pathspecs could possibly be ignored by excluding
1197 * the specified path. This can happen if:
1199 * 1. the path is mentioned explicitly in the pathspec
1201 * 2. the path is a directory prefix of some element in the
1204 static int exclude_matches_pathspec(const char *path
, int len
,
1205 const struct path_simplify
*simplify
)
1208 for (; simplify
->path
; simplify
++) {
1209 if (len
== simplify
->len
1210 && !memcmp(path
, simplify
->path
, len
))
1212 if (len
< simplify
->len
1213 && simplify
->path
[len
] == '/'
1214 && !memcmp(path
, simplify
->path
, len
))
1221 static int get_index_dtype(const char *path
, int len
)
1224 struct cache_entry
*ce
;
1226 ce
= cache_name_exists(path
, len
, 0);
1228 if (!ce_uptodate(ce
))
1230 if (S_ISGITLINK(ce
->ce_mode
))
1233 * Nobody actually cares about the
1234 * difference between DT_LNK and DT_REG
1239 /* Try to look it up as a directory */
1240 pos
= cache_name_pos(path
, len
);
1244 while (pos
< active_nr
) {
1245 ce
= active_cache
[pos
++];
1246 if (strncmp(ce
->name
, path
, len
))
1248 if (ce
->name
[len
] > '/')
1250 if (ce
->name
[len
] < '/')
1252 if (!ce_uptodate(ce
))
1253 break; /* continue? */
1259 static int get_dtype(struct dirent
*de
, const char *path
, int len
)
1261 int dtype
= de
? DTYPE(de
) : DT_UNKNOWN
;
1264 if (dtype
!= DT_UNKNOWN
)
1266 dtype
= get_index_dtype(path
, len
);
1267 if (dtype
!= DT_UNKNOWN
)
1269 if (lstat(path
, &st
))
1271 if (S_ISREG(st
.st_mode
))
1273 if (S_ISDIR(st
.st_mode
))
1275 if (S_ISLNK(st
.st_mode
))
1280 enum path_treatment
{
1286 static enum path_treatment
treat_one_path(struct dir_struct
*dir
,
1287 struct strbuf
*path
,
1288 const struct path_simplify
*simplify
,
1289 int dtype
, struct dirent
*de
)
1291 int exclude
= is_excluded(dir
, path
->buf
, &dtype
);
1292 if (exclude
&& (dir
->flags
& DIR_COLLECT_IGNORED
)
1293 && exclude_matches_pathspec(path
->buf
, path
->len
, simplify
))
1294 dir_add_ignored(dir
, path
->buf
, path
->len
);
1297 * Excluded? If we don't explicitly want to show
1298 * ignored files, ignore it
1300 if (exclude
&& !(dir
->flags
& DIR_SHOW_IGNORED
))
1301 return path_ignored
;
1303 if (dtype
== DT_UNKNOWN
)
1304 dtype
= get_dtype(de
, path
->buf
, path
->len
);
1308 return path_ignored
;
1310 strbuf_addch(path
, '/');
1312 switch (treat_directory(dir
, path
->buf
, path
->len
, exclude
, simplify
)) {
1313 case show_directory
:
1315 case recurse_into_directory
:
1316 return path_recurse
;
1317 case ignore_directory
:
1318 return path_ignored
;
1323 switch (treat_file(dir
, path
, exclude
, &dtype
)) {
1325 return path_ignored
;
1330 return path_handled
;
1333 static enum path_treatment
treat_path(struct dir_struct
*dir
,
1335 struct strbuf
*path
,
1337 const struct path_simplify
*simplify
)
1341 if (is_dot_or_dotdot(de
->d_name
) || !strcmp(de
->d_name
, ".git"))
1342 return path_ignored
;
1343 strbuf_setlen(path
, baselen
);
1344 strbuf_addstr(path
, de
->d_name
);
1345 if (simplify_away(path
->buf
, path
->len
, simplify
))
1346 return path_ignored
;
1349 return treat_one_path(dir
, path
, simplify
, dtype
, de
);
1353 * Read a directory tree. We currently ignore anything but
1354 * directories, regular files and symlinks. That's because git
1355 * doesn't handle them at all yet. Maybe that will change some
1358 * Also, we ignore the name ".git" (even if it is not a directory).
1359 * That likely will not change.
1361 static int read_directory_recursive(struct dir_struct
*dir
,
1362 const char *base
, int baselen
,
1364 const struct path_simplify
*simplify
)
1369 struct strbuf path
= STRBUF_INIT
;
1371 strbuf_add(&path
, base
, baselen
);
1373 fdir
= opendir(path
.len
? path
.buf
: ".");
1377 while ((de
= readdir(fdir
)) != NULL
) {
1378 switch (treat_path(dir
, de
, &path
, baselen
, simplify
)) {
1380 contents
+= read_directory_recursive(dir
, path
.buf
,
1392 dir_add_name(dir
, path
.buf
, path
.len
);
1396 strbuf_release(&path
);
1401 static int cmp_name(const void *p1
, const void *p2
)
1403 const struct dir_entry
*e1
= *(const struct dir_entry
**)p1
;
1404 const struct dir_entry
*e2
= *(const struct dir_entry
**)p2
;
1406 return cache_name_compare(e1
->name
, e1
->len
,
1410 static struct path_simplify
*create_simplify(const char **pathspec
)
1413 struct path_simplify
*simplify
= NULL
;
1418 for (nr
= 0 ; ; nr
++) {
1421 alloc
= alloc_nr(alloc
);
1422 simplify
= xrealloc(simplify
, alloc
* sizeof(*simplify
));
1424 match
= *pathspec
++;
1427 simplify
[nr
].path
= match
;
1428 simplify
[nr
].len
= simple_length(match
);
1430 simplify
[nr
].path
= NULL
;
1431 simplify
[nr
].len
= 0;
1435 static void free_simplify(struct path_simplify
*simplify
)
1440 static int treat_leading_path(struct dir_struct
*dir
,
1441 const char *path
, int len
,
1442 const struct path_simplify
*simplify
)
1444 struct strbuf sb
= STRBUF_INIT
;
1445 int baselen
, rc
= 0;
1448 while (len
&& path
[len
- 1] == '/')
1454 cp
= path
+ baselen
+ !!baselen
;
1455 cp
= memchr(cp
, '/', path
+ len
- cp
);
1459 baselen
= cp
- path
;
1460 strbuf_setlen(&sb
, 0);
1461 strbuf_add(&sb
, path
, baselen
);
1462 if (!is_directory(sb
.buf
))
1464 if (simplify_away(sb
.buf
, sb
.len
, simplify
))
1466 if (treat_one_path(dir
, &sb
, simplify
,
1467 DT_DIR
, NULL
) == path_ignored
)
1468 break; /* do not recurse into it */
1469 if (len
<= baselen
) {
1471 break; /* finished checking */
1474 strbuf_release(&sb
);
1478 int read_directory(struct dir_struct
*dir
, const char *path
, int len
, const char **pathspec
)
1480 struct path_simplify
*simplify
;
1482 if (has_symlink_leading_path(path
, len
))
1485 simplify
= create_simplify(pathspec
);
1486 if (!len
|| treat_leading_path(dir
, path
, len
, simplify
))
1487 read_directory_recursive(dir
, path
, len
, 0, simplify
);
1488 free_simplify(simplify
);
1489 qsort(dir
->entries
, dir
->nr
, sizeof(struct dir_entry
*), cmp_name
);
1490 qsort(dir
->ignored
, dir
->ignored_nr
, sizeof(struct dir_entry
*), cmp_name
);
1494 int file_exists(const char *f
)
1497 return lstat(f
, &sb
) == 0;
1501 * Given two normalized paths (a trailing slash is ok), if subdir is
1502 * outside dir, return -1. Otherwise return the offset in subdir that
1503 * can be used as relative path to dir.
1505 int dir_inside_of(const char *subdir
, const char *dir
)
1509 assert(dir
&& subdir
&& *dir
&& *subdir
);
1511 while (*dir
&& *subdir
&& *dir
== *subdir
) {
1517 /* hel[p]/me vs hel[l]/yeah */
1518 if (*dir
&& *subdir
)
1522 return !*dir
? offset
: -1; /* same dir */
1524 /* foo/[b]ar vs foo/[] */
1525 if (is_dir_sep(dir
[-1]))
1526 return is_dir_sep(subdir
[-1]) ? offset
: -1;
1528 /* foo[/]bar vs foo[] */
1529 return is_dir_sep(*subdir
) ? offset
+ 1 : -1;
1532 int is_inside_dir(const char *dir
)
1537 if (!getcwd(cwd
, sizeof(cwd
)))
1538 die_errno("can't find the current directory");
1539 return dir_inside_of(cwd
, dir
) >= 0;
1542 int is_empty_dir(const char *path
)
1544 DIR *dir
= opendir(path
);
1551 while ((e
= readdir(dir
)) != NULL
)
1552 if (!is_dot_or_dotdot(e
->d_name
)) {
1561 static int remove_dir_recurse(struct strbuf
*path
, int flag
, int *kept_up
)
1565 int ret
= 0, original_len
= path
->len
, len
, kept_down
= 0;
1566 int only_empty
= (flag
& REMOVE_DIR_EMPTY_ONLY
);
1567 int keep_toplevel
= (flag
& REMOVE_DIR_KEEP_TOPLEVEL
);
1568 unsigned char submodule_head
[20];
1570 if ((flag
& REMOVE_DIR_KEEP_NESTED_GIT
) &&
1571 !resolve_gitlink_ref(path
->buf
, "HEAD", submodule_head
)) {
1572 /* Do not descend and nuke a nested git work tree. */
1578 flag
&= ~REMOVE_DIR_KEEP_TOPLEVEL
;
1579 dir
= opendir(path
->buf
);
1581 /* an empty dir could be removed even if it is unreadble */
1583 return rmdir(path
->buf
);
1587 if (path
->buf
[original_len
- 1] != '/')
1588 strbuf_addch(path
, '/');
1591 while ((e
= readdir(dir
)) != NULL
) {
1593 if (is_dot_or_dotdot(e
->d_name
))
1596 strbuf_setlen(path
, len
);
1597 strbuf_addstr(path
, e
->d_name
);
1598 if (lstat(path
->buf
, &st
))
1600 else if (S_ISDIR(st
.st_mode
)) {
1601 if (!remove_dir_recurse(path
, flag
, &kept_down
))
1602 continue; /* happy */
1603 } else if (!only_empty
&& !unlink(path
->buf
))
1604 continue; /* happy, too */
1606 /* path too long, stat fails, or non-directory still exists */
1612 strbuf_setlen(path
, original_len
);
1613 if (!ret
&& !keep_toplevel
&& !kept_down
)
1614 ret
= rmdir(path
->buf
);
1617 * report the uplevel that it is not an error that we
1618 * did not rmdir() our directory.
1624 int remove_dir_recursively(struct strbuf
*path
, int flag
)
1626 return remove_dir_recurse(path
, flag
, NULL
);
1629 void setup_standard_excludes(struct dir_struct
*dir
)
1634 dir
->exclude_per_dir
= ".gitignore";
1635 path
= git_path("info/exclude");
1636 if (!excludes_file
) {
1637 home_config_paths(NULL
, &xdg_path
, "ignore");
1638 excludes_file
= xdg_path
;
1640 if (!access_or_warn(path
, R_OK
))
1641 add_excludes_from_file(dir
, path
);
1642 if (excludes_file
&& !access_or_warn(excludes_file
, R_OK
))
1643 add_excludes_from_file(dir
, excludes_file
);
1646 int remove_path(const char *name
)
1650 if (unlink(name
) && errno
!= ENOENT
)
1653 slash
= strrchr(name
, '/');
1655 char *dirs
= xstrdup(name
);
1656 slash
= dirs
+ (slash
- name
);
1659 } while (rmdir(dirs
) == 0 && (slash
= strrchr(dirs
, '/')));
1665 static int pathspec_item_cmp(const void *a_
, const void *b_
)
1667 struct pathspec_item
*a
, *b
;
1669 a
= (struct pathspec_item
*)a_
;
1670 b
= (struct pathspec_item
*)b_
;
1671 return strcmp(a
->match
, b
->match
);
1674 int init_pathspec(struct pathspec
*pathspec
, const char **paths
)
1676 const char **p
= paths
;
1679 memset(pathspec
, 0, sizeof(*pathspec
));
1684 pathspec
->raw
= paths
;
1685 pathspec
->nr
= p
- paths
;
1689 pathspec
->items
= xmalloc(sizeof(struct pathspec_item
)*pathspec
->nr
);
1690 for (i
= 0; i
< pathspec
->nr
; i
++) {
1691 struct pathspec_item
*item
= pathspec
->items
+i
;
1692 const char *path
= paths
[i
];
1695 item
->len
= strlen(path
);
1697 if (limit_pathspec_to_literal()) {
1698 item
->nowildcard_len
= item
->len
;
1700 item
->nowildcard_len
= simple_length(path
);
1701 if (item
->nowildcard_len
< item
->len
) {
1702 pathspec
->has_wildcard
= 1;
1703 if (path
[item
->nowildcard_len
] == '*' &&
1704 no_wildcard(path
+ item
->nowildcard_len
+ 1))
1705 item
->flags
|= PATHSPEC_ONESTAR
;
1710 qsort(pathspec
->items
, pathspec
->nr
,
1711 sizeof(struct pathspec_item
), pathspec_item_cmp
);
1716 void free_pathspec(struct pathspec
*pathspec
)
1718 free(pathspec
->items
);
1719 pathspec
->items
= NULL
;
1722 int limit_pathspec_to_literal(void)
1724 static int flag
= -1;
1726 flag
= git_env_bool(GIT_LITERAL_PATHSPECS_ENVIRONMENT
, 0);
1731 * Frees memory within dir which was allocated for exclude lists and
1732 * the exclude_stack. Does not free dir itself.
1734 void clear_directory(struct dir_struct
*dir
)
1737 struct exclude_list_group
*group
;
1738 struct exclude_list
*el
;
1739 struct exclude_stack
*stk
;
1741 for (i
= EXC_CMDL
; i
<= EXC_FILE
; i
++) {
1742 group
= &dir
->exclude_list_group
[i
];
1743 for (j
= 0; j
< group
->nr
; j
++) {
1746 free((char *)el
->src
);
1747 clear_exclude_list(el
);
1752 stk
= dir
->exclude_stack
;
1754 struct exclude_stack
*prev
= stk
->prev
;