2 * This handles recursive filename detection with exclude
3 * files, index knowledge etc..
5 * Copyright (C) Linus Torvalds, 2005-2006
6 * Junio Hamano, 2005-2006
11 #include "wildmatch.h"
13 struct path_simplify
{
18 static int read_directory_recursive(struct dir_struct
*dir
, const char *path
, int len
,
19 int check_only
, const struct path_simplify
*simplify
);
20 static int get_dtype(struct dirent
*de
, const char *path
, int len
);
22 /* helper string functions with support for the ignore_case flag */
23 int strcmp_icase(const char *a
, const char *b
)
25 return ignore_case
? strcasecmp(a
, b
) : strcmp(a
, b
);
28 int strncmp_icase(const char *a
, const char *b
, size_t count
)
30 return ignore_case
? strncasecmp(a
, b
, count
) : strncmp(a
, b
, count
);
33 int fnmatch_icase(const char *pattern
, const char *string
, int flags
)
35 return fnmatch(pattern
, string
, flags
| (ignore_case
? FNM_CASEFOLD
: 0));
38 static size_t common_prefix_len(const char **pathspec
)
40 const char *n
, *first
;
47 while ((n
= *pathspec
++)) {
49 for (i
= 0; first
== n
|| i
< max
; i
++) {
51 if (!c
|| c
!= first
[i
] || is_glob_special(c
))
56 if (first
== n
|| len
< max
) {
66 * Returns a copy of the longest leading path common among all
69 char *common_prefix(const char **pathspec
)
71 unsigned long len
= common_prefix_len(pathspec
);
73 return len
? xmemdupz(*pathspec
, len
) : NULL
;
76 int fill_directory(struct dir_struct
*dir
, const char **pathspec
)
81 * Calculate common prefix for the pathspec, and
82 * use that to optimize the directory walk
84 len
= common_prefix_len(pathspec
);
86 /* Read the directory and prune it */
87 read_directory(dir
, pathspec
? *pathspec
: "", len
, pathspec
);
91 int within_depth(const char *name
, int namelen
,
92 int depth
, int max_depth
)
94 const char *cp
= name
, *cpe
= name
+ namelen
;
100 if (depth
> max_depth
)
107 * Does 'match' match the given name?
108 * A match is found if
110 * (1) the 'match' string is leading directory of 'name', or
111 * (2) the 'match' string is a wildcard and matches 'name', or
112 * (3) the 'match' string is exactly the same as 'name'.
114 * and the return value tells which case it was.
116 * It returns 0 when there is no match.
118 static int match_one(const char *match
, const char *name
, int namelen
)
122 /* If the match was just the prefix, we matched */
124 return MATCHED_RECURSIVELY
;
128 unsigned char c1
= tolower(*match
);
129 unsigned char c2
= tolower(*name
);
130 if (c1
== '\0' || is_glob_special(c1
))
140 unsigned char c1
= *match
;
141 unsigned char c2
= *name
;
142 if (c1
== '\0' || is_glob_special(c1
))
154 * If we don't match the matchstring exactly,
155 * we need to match by fnmatch
157 matchlen
= strlen(match
);
158 if (strncmp_icase(match
, name
, matchlen
))
159 return !fnmatch_icase(match
, name
, 0) ? MATCHED_FNMATCH
: 0;
161 if (namelen
== matchlen
)
162 return MATCHED_EXACTLY
;
163 if (match
[matchlen
-1] == '/' || name
[matchlen
] == '/')
164 return MATCHED_RECURSIVELY
;
169 * Given a name and a list of pathspecs, see if the name matches
170 * any of the pathspecs. The caller is also interested in seeing
171 * all pathspec matches some names it calls this function with
172 * (otherwise the user could have mistyped the unmatched pathspec),
173 * and a mark is left in seen[] array for pathspec element that
174 * actually matched anything.
176 int match_pathspec(const char **pathspec
, const char *name
, int namelen
,
177 int prefix
, char *seen
)
187 for (i
= 0; pathspec
[i
] != NULL
; i
++) {
189 const char *match
= pathspec
[i
] + prefix
;
190 if (seen
&& seen
[i
] == MATCHED_EXACTLY
)
192 how
= match_one(match
, name
, namelen
);
196 if (seen
&& seen
[i
] < how
)
204 * Does 'match' match the given name?
205 * A match is found if
207 * (1) the 'match' string is leading directory of 'name', or
208 * (2) the 'match' string is a wildcard and matches 'name', or
209 * (3) the 'match' string is exactly the same as 'name'.
211 * and the return value tells which case it was.
213 * It returns 0 when there is no match.
215 static int match_pathspec_item(const struct pathspec_item
*item
, int prefix
,
216 const char *name
, int namelen
)
218 /* name/namelen has prefix cut off by caller */
219 const char *match
= item
->match
+ prefix
;
220 int matchlen
= item
->len
- prefix
;
222 /* If the match was just the prefix, we matched */
224 return MATCHED_RECURSIVELY
;
226 if (matchlen
<= namelen
&& !strncmp(match
, name
, matchlen
)) {
227 if (matchlen
== namelen
)
228 return MATCHED_EXACTLY
;
230 if (match
[matchlen
-1] == '/' || name
[matchlen
] == '/')
231 return MATCHED_RECURSIVELY
;
234 if (item
->use_wildcard
&& !fnmatch(match
, name
, 0))
235 return MATCHED_FNMATCH
;
241 * Given a name and a list of pathspecs, see if the name matches
242 * any of the pathspecs. The caller is also interested in seeing
243 * all pathspec matches some names it calls this function with
244 * (otherwise the user could have mistyped the unmatched pathspec),
245 * and a mark is left in seen[] array for pathspec element that
246 * actually matched anything.
248 int match_pathspec_depth(const struct pathspec
*ps
,
249 const char *name
, int namelen
,
250 int prefix
, char *seen
)
255 if (!ps
->recursive
|| ps
->max_depth
== -1)
256 return MATCHED_RECURSIVELY
;
258 if (within_depth(name
, namelen
, 0, ps
->max_depth
))
259 return MATCHED_EXACTLY
;
267 for (i
= ps
->nr
- 1; i
>= 0; i
--) {
269 if (seen
&& seen
[i
] == MATCHED_EXACTLY
)
271 how
= match_pathspec_item(ps
->items
+i
, prefix
, name
, namelen
);
272 if (ps
->recursive
&& ps
->max_depth
!= -1 &&
273 how
&& how
!= MATCHED_FNMATCH
) {
274 int len
= ps
->items
[i
].len
;
275 if (name
[len
] == '/')
277 if (within_depth(name
+len
, namelen
-len
, 0, ps
->max_depth
))
278 how
= MATCHED_EXACTLY
;
285 if (seen
&& seen
[i
] < how
)
293 * Return the length of the "simple" part of a path match limiter.
295 static int simple_length(const char *match
)
300 unsigned char c
= *match
++;
302 if (c
== '\0' || is_glob_special(c
))
307 static int no_wildcard(const char *string
)
309 return string
[simple_length(string
)] == '\0';
312 void parse_exclude_pattern(const char **pattern
,
317 const char *p
= *pattern
;
322 *flags
|= EXC_FLAG_NEGATIVE
;
326 if (len
&& p
[len
- 1] == '/') {
328 *flags
|= EXC_FLAG_MUSTBEDIR
;
330 for (i
= 0; i
< len
; i
++) {
335 *flags
|= EXC_FLAG_NODIR
;
336 *nowildcardlen
= simple_length(p
);
338 * we should have excluded the trailing slash from 'p' too,
339 * but that's one more allocation. Instead just make sure
340 * nowildcardlen does not exceed real patternlen
342 if (*nowildcardlen
> len
)
343 *nowildcardlen
= len
;
344 if (*p
== '*' && no_wildcard(p
+ 1))
345 *flags
|= EXC_FLAG_ENDSWITH
;
350 void add_exclude(const char *string
, const char *base
,
351 int baselen
, struct exclude_list
*which
)
358 parse_exclude_pattern(&string
, &patternlen
, &flags
, &nowildcardlen
);
359 if (flags
& EXC_FLAG_MUSTBEDIR
) {
361 x
= xmalloc(sizeof(*x
) + patternlen
+ 1);
363 memcpy(s
, string
, patternlen
);
364 s
[patternlen
] = '\0';
367 x
= xmalloc(sizeof(*x
));
370 x
->patternlen
= patternlen
;
371 x
->nowildcardlen
= nowildcardlen
;
373 x
->baselen
= baselen
;
375 ALLOC_GROW(which
->excludes
, which
->nr
+ 1, which
->alloc
);
376 which
->excludes
[which
->nr
++] = x
;
379 static void *read_skip_worktree_file_from_index(const char *path
, size_t *size
)
383 enum object_type type
;
385 struct index_state
*istate
= &the_index
;
388 pos
= index_name_pos(istate
, path
, len
);
391 if (!ce_skip_worktree(istate
->cache
[pos
]))
393 data
= read_sha1_file(istate
->cache
[pos
]->sha1
, &type
, &sz
);
394 if (!data
|| type
!= OBJ_BLOB
) {
402 void free_excludes(struct exclude_list
*el
)
406 for (i
= 0; i
< el
->nr
; i
++)
407 free(el
->excludes
[i
]);
414 int add_excludes_from_file_to_list(const char *fname
,
418 struct exclude_list
*which
,
426 fd
= open(fname
, O_RDONLY
);
427 if (fd
< 0 || fstat(fd
, &st
) < 0) {
429 warn_on_inaccessible(fname
);
433 (buf
= read_skip_worktree_file_from_index(fname
, &size
)) == NULL
)
439 if (buf
[size
-1] != '\n') {
440 buf
= xrealloc(buf
, size
+1);
445 size
= xsize_t(st
.st_size
);
450 buf
= xmalloc(size
+1);
451 if (read_in_full(fd
, buf
, size
) != size
) {
463 for (i
= 0; i
< size
; i
++) {
464 if (buf
[i
] == '\n') {
465 if (entry
!= buf
+ i
&& entry
[0] != '#') {
466 buf
[i
- (i
&& buf
[i
-1] == '\r')] = 0;
467 add_exclude(entry
, base
, baselen
, which
);
475 void add_excludes_from_file(struct dir_struct
*dir
, const char *fname
)
477 if (add_excludes_from_file_to_list(fname
, "", 0, NULL
,
478 &dir
->exclude_list
[EXC_FILE
], 0) < 0)
479 die("cannot use %s as an exclude file", fname
);
482 static void prep_exclude(struct dir_struct
*dir
, const char *base
, int baselen
)
484 struct exclude_list
*el
;
485 struct exclude_stack
*stk
= NULL
;
488 if ((!dir
->exclude_per_dir
) ||
489 (baselen
+ strlen(dir
->exclude_per_dir
) >= PATH_MAX
))
490 return; /* too long a path -- ignore */
492 /* Pop the ones that are not the prefix of the path being checked. */
493 el
= &dir
->exclude_list
[EXC_DIRS
];
494 while ((stk
= dir
->exclude_stack
) != NULL
) {
495 if (stk
->baselen
<= baselen
&&
496 !strncmp(dir
->basebuf
, base
, stk
->baselen
))
498 dir
->exclude_stack
= stk
->prev
;
499 while (stk
->exclude_ix
< el
->nr
)
500 free(el
->excludes
[--el
->nr
]);
505 /* Read from the parent directories and push them down. */
506 current
= stk
? stk
->baselen
: -1;
507 while (current
< baselen
) {
508 struct exclude_stack
*stk
= xcalloc(1, sizeof(*stk
));
516 cp
= strchr(base
+ current
+ 1, '/');
518 die("oops in prep_exclude");
521 stk
->prev
= dir
->exclude_stack
;
522 stk
->baselen
= cp
- base
;
523 stk
->exclude_ix
= el
->nr
;
524 memcpy(dir
->basebuf
+ current
, base
+ current
,
525 stk
->baselen
- current
);
526 strcpy(dir
->basebuf
+ stk
->baselen
, dir
->exclude_per_dir
);
527 add_excludes_from_file_to_list(dir
->basebuf
,
528 dir
->basebuf
, stk
->baselen
,
529 &stk
->filebuf
, el
, 1);
530 dir
->exclude_stack
= stk
;
531 current
= stk
->baselen
;
533 dir
->basebuf
[baselen
] = '\0';
536 int match_basename(const char *basename
, int basenamelen
,
537 const char *pattern
, int prefix
, int patternlen
,
540 if (prefix
== patternlen
) {
541 if (!strcmp_icase(pattern
, basename
))
543 } else if (flags
& EXC_FLAG_ENDSWITH
) {
544 if (patternlen
- 1 <= basenamelen
&&
545 !strcmp_icase(pattern
+ 1,
546 basename
+ basenamelen
- patternlen
+ 1))
549 if (fnmatch_icase(pattern
, basename
, 0) == 0)
555 int match_pathname(const char *pathname
, int pathlen
,
556 const char *base
, int baselen
,
557 const char *pattern
, int prefix
, int patternlen
,
564 * match with FNM_PATHNAME; the pattern has base implicitly
567 if (*pattern
== '/') {
573 * baselen does not count the trailing slash. base[] may or
574 * may not end with a trailing slash though.
576 if (pathlen
< baselen
+ 1 ||
577 (baselen
&& pathname
[baselen
] != '/') ||
578 strncmp_icase(pathname
, base
, baselen
))
581 namelen
= baselen
? pathlen
- baselen
- 1 : pathlen
;
582 name
= pathname
+ pathlen
- namelen
;
586 * if the non-wildcard part is longer than the
587 * remaining pathname, surely it cannot match.
589 if (prefix
> namelen
)
592 if (strncmp_icase(pattern
, name
, prefix
))
599 return wildmatch(pattern
, name
,
600 ignore_case
? FNM_CASEFOLD
: 0) == 0;
603 /* Scan the list and let the last match determine the fate.
604 * Return 1 for exclude, 0 for include and -1 for undecided.
606 int excluded_from_list(const char *pathname
,
607 int pathlen
, const char *basename
, int *dtype
,
608 struct exclude_list
*el
)
613 return -1; /* undefined */
615 for (i
= el
->nr
- 1; 0 <= i
; i
--) {
616 struct exclude
*x
= el
->excludes
[i
];
617 const char *exclude
= x
->pattern
;
618 int to_exclude
= x
->flags
& EXC_FLAG_NEGATIVE
? 0 : 1;
619 int prefix
= x
->nowildcardlen
;
621 if (x
->flags
& EXC_FLAG_MUSTBEDIR
) {
622 if (*dtype
== DT_UNKNOWN
)
623 *dtype
= get_dtype(NULL
, pathname
, pathlen
);
624 if (*dtype
!= DT_DIR
)
628 if (x
->flags
& EXC_FLAG_NODIR
) {
629 if (match_basename(basename
,
630 pathlen
- (basename
- pathname
),
631 exclude
, prefix
, x
->patternlen
,
637 assert(x
->baselen
== 0 || x
->base
[x
->baselen
- 1] == '/');
638 if (match_pathname(pathname
, pathlen
,
639 x
->base
, x
->baselen
? x
->baselen
- 1 : 0,
640 exclude
, prefix
, x
->patternlen
, x
->flags
))
643 return -1; /* undecided */
646 static int excluded(struct dir_struct
*dir
, const char *pathname
, int *dtype_p
)
648 int pathlen
= strlen(pathname
);
650 const char *basename
= strrchr(pathname
, '/');
651 basename
= (basename
) ? basename
+1 : pathname
;
653 prep_exclude(dir
, pathname
, basename
-pathname
);
654 for (st
= EXC_CMDL
; st
<= EXC_FILE
; st
++) {
655 switch (excluded_from_list(pathname
, pathlen
, basename
,
656 dtype_p
, &dir
->exclude_list
[st
])) {
666 void path_exclude_check_init(struct path_exclude_check
*check
,
667 struct dir_struct
*dir
)
670 strbuf_init(&check
->path
, 256);
673 void path_exclude_check_clear(struct path_exclude_check
*check
)
675 strbuf_release(&check
->path
);
679 * Is this name excluded? This is for a caller like show_files() that
680 * do not honor directory hierarchy and iterate through paths that are
681 * possibly in an ignored directory.
683 * A path to a directory known to be excluded is left in check->path to
684 * optimize for repeated checks for files in the same excluded directory.
686 int path_excluded(struct path_exclude_check
*check
,
687 const char *name
, int namelen
, int *dtype
)
690 struct strbuf
*path
= &check
->path
;
693 * we allow the caller to pass namelen as an optimization; it
694 * must match the length of the name, as we eventually call
695 * excluded() on the whole name string.
698 namelen
= strlen(name
);
701 path
->len
<= namelen
&&
702 !memcmp(name
, path
->buf
, path
->len
) &&
703 (!name
[path
->len
] || name
[path
->len
] == '/'))
706 strbuf_setlen(path
, 0);
707 for (i
= 0; name
[i
]; i
++) {
712 if (excluded(check
->dir
, path
->buf
, &dt
))
715 strbuf_addch(path
, ch
);
718 /* An entry in the index; cannot be a directory with subentries */
719 strbuf_setlen(path
, 0);
721 return excluded(check
->dir
, name
, dtype
);
724 static struct dir_entry
*dir_entry_new(const char *pathname
, int len
)
726 struct dir_entry
*ent
;
728 ent
= xmalloc(sizeof(*ent
) + len
+ 1);
730 memcpy(ent
->name
, pathname
, len
);
735 static struct dir_entry
*dir_add_name(struct dir_struct
*dir
, const char *pathname
, int len
)
737 if (cache_name_exists(pathname
, len
, ignore_case
))
740 ALLOC_GROW(dir
->entries
, dir
->nr
+1, dir
->alloc
);
741 return dir
->entries
[dir
->nr
++] = dir_entry_new(pathname
, len
);
744 struct dir_entry
*dir_add_ignored(struct dir_struct
*dir
, const char *pathname
, int len
)
746 if (!cache_name_is_other(pathname
, len
))
749 ALLOC_GROW(dir
->ignored
, dir
->ignored_nr
+1, dir
->ignored_alloc
);
750 return dir
->ignored
[dir
->ignored_nr
++] = dir_entry_new(pathname
, len
);
754 index_nonexistent
= 0,
760 * Do not use the alphabetically stored index to look up
761 * the directory name; instead, use the case insensitive
764 static enum exist_status
directory_exists_in_index_icase(const char *dirname
, int len
)
766 struct cache_entry
*ce
= index_name_exists(&the_index
, dirname
, len
+ 1, ignore_case
);
767 unsigned char endchar
;
770 return index_nonexistent
;
771 endchar
= ce
->name
[len
];
774 * The cache_entry structure returned will contain this dirname
775 * and possibly additional path components.
778 return index_directory
;
781 * If there are no additional path components, then this cache_entry
782 * represents a submodule. Submodules, despite being directories,
783 * are stored in the cache without a closing slash.
785 if (!endchar
&& S_ISGITLINK(ce
->ce_mode
))
788 /* This should never be hit, but it exists just in case. */
789 return index_nonexistent
;
793 * The index sorts alphabetically by entry name, which
794 * means that a gitlink sorts as '\0' at the end, while
795 * a directory (which is defined not as an entry, but as
796 * the files it contains) will sort with the '/' at the
799 static enum exist_status
directory_exists_in_index(const char *dirname
, int len
)
804 return directory_exists_in_index_icase(dirname
, len
);
806 pos
= cache_name_pos(dirname
, len
);
809 while (pos
< active_nr
) {
810 struct cache_entry
*ce
= active_cache
[pos
++];
811 unsigned char endchar
;
813 if (strncmp(ce
->name
, dirname
, len
))
815 endchar
= ce
->name
[len
];
819 return index_directory
;
820 if (!endchar
&& S_ISGITLINK(ce
->ce_mode
))
823 return index_nonexistent
;
827 * When we find a directory when traversing the filesystem, we
828 * have three distinct cases:
831 * - see it as a directory
834 * and which one we choose depends on a combination of existing
835 * git index contents and the flags passed into the directory
838 * Case 1: If we *already* have entries in the index under that
839 * directory name, we always recurse into the directory to see
842 * Case 2: If we *already* have that directory name as a gitlink,
843 * we always continue to see it as a gitlink, regardless of whether
844 * there is an actual git directory there or not (it might not
845 * be checked out as a subproject!)
847 * Case 3: if we didn't have it in the index previously, we
848 * have a few sub-cases:
850 * (a) if "show_other_directories" is true, we show it as
851 * just a directory, unless "hide_empty_directories" is
852 * also true and the directory is empty, in which case
853 * we just ignore it entirely.
854 * (b) if it looks like a git directory, and we don't have
855 * 'no_gitlinks' set we treat it as a gitlink, and show it
857 * (c) otherwise, we recurse into it.
859 enum directory_treatment
{
862 recurse_into_directory
865 static enum directory_treatment
treat_directory(struct dir_struct
*dir
,
866 const char *dirname
, int len
,
867 const struct path_simplify
*simplify
)
869 /* The "len-1" is to strip the final '/' */
870 switch (directory_exists_in_index(dirname
, len
-1)) {
871 case index_directory
:
872 return recurse_into_directory
;
875 if (dir
->flags
& DIR_SHOW_OTHER_DIRECTORIES
)
876 return ignore_directory
;
877 return show_directory
;
879 case index_nonexistent
:
880 if (dir
->flags
& DIR_SHOW_OTHER_DIRECTORIES
)
882 if (!(dir
->flags
& DIR_NO_GITLINKS
)) {
883 unsigned char sha1
[20];
884 if (resolve_gitlink_ref(dirname
, "HEAD", sha1
) == 0)
885 return show_directory
;
887 return recurse_into_directory
;
890 /* This is the "show_other_directories" case */
891 if (!(dir
->flags
& DIR_HIDE_EMPTY_DIRECTORIES
))
892 return show_directory
;
893 if (!read_directory_recursive(dir
, dirname
, len
, 1, simplify
))
894 return ignore_directory
;
895 return show_directory
;
899 * This is an inexact early pruning of any recursive directory
900 * reading - if the path cannot possibly be in the pathspec,
901 * return true, and we'll skip it early.
903 static int simplify_away(const char *path
, int pathlen
, const struct path_simplify
*simplify
)
907 const char *match
= simplify
->path
;
908 int len
= simplify
->len
;
914 if (!memcmp(path
, match
, len
))
924 * This function tells us whether an excluded path matches a
925 * list of "interesting" pathspecs. That is, whether a path matched
926 * by any of the pathspecs could possibly be ignored by excluding
927 * the specified path. This can happen if:
929 * 1. the path is mentioned explicitly in the pathspec
931 * 2. the path is a directory prefix of some element in the
934 static int exclude_matches_pathspec(const char *path
, int len
,
935 const struct path_simplify
*simplify
)
938 for (; simplify
->path
; simplify
++) {
939 if (len
== simplify
->len
940 && !memcmp(path
, simplify
->path
, len
))
942 if (len
< simplify
->len
943 && simplify
->path
[len
] == '/'
944 && !memcmp(path
, simplify
->path
, len
))
951 static int get_index_dtype(const char *path
, int len
)
954 struct cache_entry
*ce
;
956 ce
= cache_name_exists(path
, len
, 0);
958 if (!ce_uptodate(ce
))
960 if (S_ISGITLINK(ce
->ce_mode
))
963 * Nobody actually cares about the
964 * difference between DT_LNK and DT_REG
969 /* Try to look it up as a directory */
970 pos
= cache_name_pos(path
, len
);
974 while (pos
< active_nr
) {
975 ce
= active_cache
[pos
++];
976 if (strncmp(ce
->name
, path
, len
))
978 if (ce
->name
[len
] > '/')
980 if (ce
->name
[len
] < '/')
982 if (!ce_uptodate(ce
))
983 break; /* continue? */
989 static int get_dtype(struct dirent
*de
, const char *path
, int len
)
991 int dtype
= de
? DTYPE(de
) : DT_UNKNOWN
;
994 if (dtype
!= DT_UNKNOWN
)
996 dtype
= get_index_dtype(path
, len
);
997 if (dtype
!= DT_UNKNOWN
)
999 if (lstat(path
, &st
))
1001 if (S_ISREG(st
.st_mode
))
1003 if (S_ISDIR(st
.st_mode
))
1005 if (S_ISLNK(st
.st_mode
))
1010 enum path_treatment
{
1016 static enum path_treatment
treat_one_path(struct dir_struct
*dir
,
1017 struct strbuf
*path
,
1018 const struct path_simplify
*simplify
,
1019 int dtype
, struct dirent
*de
)
1021 int exclude
= excluded(dir
, path
->buf
, &dtype
);
1022 if (exclude
&& (dir
->flags
& DIR_COLLECT_IGNORED
)
1023 && exclude_matches_pathspec(path
->buf
, path
->len
, simplify
))
1024 dir_add_ignored(dir
, path
->buf
, path
->len
);
1027 * Excluded? If we don't explicitly want to show
1028 * ignored files, ignore it
1030 if (exclude
&& !(dir
->flags
& DIR_SHOW_IGNORED
))
1031 return path_ignored
;
1033 if (dtype
== DT_UNKNOWN
)
1034 dtype
= get_dtype(de
, path
->buf
, path
->len
);
1037 * Do we want to see just the ignored files?
1038 * We still need to recurse into directories,
1039 * even if we don't ignore them, since the
1040 * directory may contain files that we do..
1042 if (!exclude
&& (dir
->flags
& DIR_SHOW_IGNORED
)) {
1043 if (dtype
!= DT_DIR
)
1044 return path_ignored
;
1049 return path_ignored
;
1051 strbuf_addch(path
, '/');
1052 switch (treat_directory(dir
, path
->buf
, path
->len
, simplify
)) {
1053 case show_directory
:
1054 if (exclude
!= !!(dir
->flags
1055 & DIR_SHOW_IGNORED
))
1056 return path_ignored
;
1058 case recurse_into_directory
:
1059 return path_recurse
;
1060 case ignore_directory
:
1061 return path_ignored
;
1068 return path_handled
;
1071 static enum path_treatment
treat_path(struct dir_struct
*dir
,
1073 struct strbuf
*path
,
1075 const struct path_simplify
*simplify
)
1079 if (is_dot_or_dotdot(de
->d_name
) || !strcmp(de
->d_name
, ".git"))
1080 return path_ignored
;
1081 strbuf_setlen(path
, baselen
);
1082 strbuf_addstr(path
, de
->d_name
);
1083 if (simplify_away(path
->buf
, path
->len
, simplify
))
1084 return path_ignored
;
1087 return treat_one_path(dir
, path
, simplify
, dtype
, de
);
1091 * Read a directory tree. We currently ignore anything but
1092 * directories, regular files and symlinks. That's because git
1093 * doesn't handle them at all yet. Maybe that will change some
1096 * Also, we ignore the name ".git" (even if it is not a directory).
1097 * That likely will not change.
1099 static int read_directory_recursive(struct dir_struct
*dir
,
1100 const char *base
, int baselen
,
1102 const struct path_simplify
*simplify
)
1107 struct strbuf path
= STRBUF_INIT
;
1109 strbuf_add(&path
, base
, baselen
);
1111 fdir
= opendir(path
.len
? path
.buf
: ".");
1115 while ((de
= readdir(fdir
)) != NULL
) {
1116 switch (treat_path(dir
, de
, &path
, baselen
, simplify
)) {
1118 contents
+= read_directory_recursive(dir
, path
.buf
,
1130 dir_add_name(dir
, path
.buf
, path
.len
);
1134 strbuf_release(&path
);
1139 static int cmp_name(const void *p1
, const void *p2
)
1141 const struct dir_entry
*e1
= *(const struct dir_entry
**)p1
;
1142 const struct dir_entry
*e2
= *(const struct dir_entry
**)p2
;
1144 return cache_name_compare(e1
->name
, e1
->len
,
1148 static struct path_simplify
*create_simplify(const char **pathspec
)
1151 struct path_simplify
*simplify
= NULL
;
1156 for (nr
= 0 ; ; nr
++) {
1159 alloc
= alloc_nr(alloc
);
1160 simplify
= xrealloc(simplify
, alloc
* sizeof(*simplify
));
1162 match
= *pathspec
++;
1165 simplify
[nr
].path
= match
;
1166 simplify
[nr
].len
= simple_length(match
);
1168 simplify
[nr
].path
= NULL
;
1169 simplify
[nr
].len
= 0;
1173 static void free_simplify(struct path_simplify
*simplify
)
1178 static int treat_leading_path(struct dir_struct
*dir
,
1179 const char *path
, int len
,
1180 const struct path_simplify
*simplify
)
1182 struct strbuf sb
= STRBUF_INIT
;
1183 int baselen
, rc
= 0;
1186 while (len
&& path
[len
- 1] == '/')
1192 cp
= path
+ baselen
+ !!baselen
;
1193 cp
= memchr(cp
, '/', path
+ len
- cp
);
1197 baselen
= cp
- path
;
1198 strbuf_setlen(&sb
, 0);
1199 strbuf_add(&sb
, path
, baselen
);
1200 if (!is_directory(sb
.buf
))
1202 if (simplify_away(sb
.buf
, sb
.len
, simplify
))
1204 if (treat_one_path(dir
, &sb
, simplify
,
1205 DT_DIR
, NULL
) == path_ignored
)
1206 break; /* do not recurse into it */
1207 if (len
<= baselen
) {
1209 break; /* finished checking */
1212 strbuf_release(&sb
);
1216 int read_directory(struct dir_struct
*dir
, const char *path
, int len
, const char **pathspec
)
1218 struct path_simplify
*simplify
;
1220 if (has_symlink_leading_path(path
, len
))
1223 simplify
= create_simplify(pathspec
);
1224 if (!len
|| treat_leading_path(dir
, path
, len
, simplify
))
1225 read_directory_recursive(dir
, path
, len
, 0, simplify
);
1226 free_simplify(simplify
);
1227 qsort(dir
->entries
, dir
->nr
, sizeof(struct dir_entry
*), cmp_name
);
1228 qsort(dir
->ignored
, dir
->ignored_nr
, sizeof(struct dir_entry
*), cmp_name
);
1232 int file_exists(const char *f
)
1235 return lstat(f
, &sb
) == 0;
1239 * Given two normalized paths (a trailing slash is ok), if subdir is
1240 * outside dir, return -1. Otherwise return the offset in subdir that
1241 * can be used as relative path to dir.
1243 int dir_inside_of(const char *subdir
, const char *dir
)
1247 assert(dir
&& subdir
&& *dir
&& *subdir
);
1249 while (*dir
&& *subdir
&& *dir
== *subdir
) {
1255 /* hel[p]/me vs hel[l]/yeah */
1256 if (*dir
&& *subdir
)
1260 return !*dir
? offset
: -1; /* same dir */
1262 /* foo/[b]ar vs foo/[] */
1263 if (is_dir_sep(dir
[-1]))
1264 return is_dir_sep(subdir
[-1]) ? offset
: -1;
1266 /* foo[/]bar vs foo[] */
1267 return is_dir_sep(*subdir
) ? offset
+ 1 : -1;
1270 int is_inside_dir(const char *dir
)
1275 if (!getcwd(cwd
, sizeof(cwd
)))
1276 die_errno("can't find the current directory");
1277 return dir_inside_of(cwd
, dir
) >= 0;
1280 int is_empty_dir(const char *path
)
1282 DIR *dir
= opendir(path
);
1289 while ((e
= readdir(dir
)) != NULL
)
1290 if (!is_dot_or_dotdot(e
->d_name
)) {
1299 static int remove_dir_recurse(struct strbuf
*path
, int flag
, int *kept_up
)
1303 int ret
= 0, original_len
= path
->len
, len
, kept_down
= 0;
1304 int only_empty
= (flag
& REMOVE_DIR_EMPTY_ONLY
);
1305 int keep_toplevel
= (flag
& REMOVE_DIR_KEEP_TOPLEVEL
);
1306 unsigned char submodule_head
[20];
1308 if ((flag
& REMOVE_DIR_KEEP_NESTED_GIT
) &&
1309 !resolve_gitlink_ref(path
->buf
, "HEAD", submodule_head
)) {
1310 /* Do not descend and nuke a nested git work tree. */
1316 flag
&= ~REMOVE_DIR_KEEP_TOPLEVEL
;
1317 dir
= opendir(path
->buf
);
1319 /* an empty dir could be removed even if it is unreadble */
1321 return rmdir(path
->buf
);
1325 if (path
->buf
[original_len
- 1] != '/')
1326 strbuf_addch(path
, '/');
1329 while ((e
= readdir(dir
)) != NULL
) {
1331 if (is_dot_or_dotdot(e
->d_name
))
1334 strbuf_setlen(path
, len
);
1335 strbuf_addstr(path
, e
->d_name
);
1336 if (lstat(path
->buf
, &st
))
1338 else if (S_ISDIR(st
.st_mode
)) {
1339 if (!remove_dir_recurse(path
, flag
, &kept_down
))
1340 continue; /* happy */
1341 } else if (!only_empty
&& !unlink(path
->buf
))
1342 continue; /* happy, too */
1344 /* path too long, stat fails, or non-directory still exists */
1350 strbuf_setlen(path
, original_len
);
1351 if (!ret
&& !keep_toplevel
&& !kept_down
)
1352 ret
= rmdir(path
->buf
);
1355 * report the uplevel that it is not an error that we
1356 * did not rmdir() our directory.
1362 int remove_dir_recursively(struct strbuf
*path
, int flag
)
1364 return remove_dir_recurse(path
, flag
, NULL
);
1367 void setup_standard_excludes(struct dir_struct
*dir
)
1372 dir
->exclude_per_dir
= ".gitignore";
1373 path
= git_path("info/exclude");
1374 if (!excludes_file
) {
1375 home_config_paths(NULL
, &xdg_path
, "ignore");
1376 excludes_file
= xdg_path
;
1378 if (!access_or_warn(path
, R_OK
))
1379 add_excludes_from_file(dir
, path
);
1380 if (excludes_file
&& !access_or_warn(excludes_file
, R_OK
))
1381 add_excludes_from_file(dir
, excludes_file
);
1384 int remove_path(const char *name
)
1388 if (unlink(name
) && errno
!= ENOENT
)
1391 slash
= strrchr(name
, '/');
1393 char *dirs
= xstrdup(name
);
1394 slash
= dirs
+ (slash
- name
);
1397 } while (rmdir(dirs
) == 0 && (slash
= strrchr(dirs
, '/')));
1403 static int pathspec_item_cmp(const void *a_
, const void *b_
)
1405 struct pathspec_item
*a
, *b
;
1407 a
= (struct pathspec_item
*)a_
;
1408 b
= (struct pathspec_item
*)b_
;
1409 return strcmp(a
->match
, b
->match
);
1412 int init_pathspec(struct pathspec
*pathspec
, const char **paths
)
1414 const char **p
= paths
;
1417 memset(pathspec
, 0, sizeof(*pathspec
));
1422 pathspec
->raw
= paths
;
1423 pathspec
->nr
= p
- paths
;
1427 pathspec
->items
= xmalloc(sizeof(struct pathspec_item
)*pathspec
->nr
);
1428 for (i
= 0; i
< pathspec
->nr
; i
++) {
1429 struct pathspec_item
*item
= pathspec
->items
+i
;
1430 const char *path
= paths
[i
];
1433 item
->len
= strlen(path
);
1434 item
->use_wildcard
= !no_wildcard(path
);
1435 if (item
->use_wildcard
)
1436 pathspec
->has_wildcard
= 1;
1439 qsort(pathspec
->items
, pathspec
->nr
,
1440 sizeof(struct pathspec_item
), pathspec_item_cmp
);
1445 void free_pathspec(struct pathspec
*pathspec
)
1447 free(pathspec
->items
);
1448 pathspec
->items
= NULL
;