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
12 struct path_simplify {
17 static int read_directory_recursive(struct dir_struct *dir,
18 const char *path, const char *base, int baselen,
19 int check_only, const struct path_simplify *simplify);
21 int common_prefix(const char **pathspec)
23 const char *path, *slash, *next;
30 slash = strrchr(path, '/');
34 prefix = slash - path + 1;
35 while ((next = *++pathspec) != NULL) {
36 int len = strlen(next);
37 if (len >= prefix && !memcmp(path, next, prefix))
43 if (next[--len] != '/')
45 if (memcmp(path, next, len+1))
55 * Does 'match' matches the given name?
58 * (1) the 'match' string is leading directory of 'name', or
59 * (2) the 'match' string is a wildcard and matches 'name', or
60 * (3) the 'match' string is exactly the same as 'name'.
62 * and the return value tells which case it was.
64 * It returns 0 when there is no match.
66 static int match_one(const char *match, const char *name, int namelen)
70 /* If the match was just the prefix, we matched */
71 matchlen = strlen(match);
73 return MATCHED_RECURSIVELY;
76 * If we don't match the matchstring exactly,
77 * we need to match by fnmatch
79 if (strncmp(match, name, matchlen))
80 return !fnmatch(match, name, 0) ? MATCHED_FNMATCH : 0;
83 return MATCHED_EXACTLY;
84 if (match[matchlen-1] == '/' || name[matchlen] == '/')
85 return MATCHED_RECURSIVELY;
90 * Given a name and a list of pathspecs, see if the name matches
91 * any of the pathspecs. The caller is also interested in seeing
92 * all pathspec matches some names it calls this function with
93 * (otherwise the user could have mistyped the unmatched pathspec),
94 * and a mark is left in seen[] array for pathspec element that
95 * actually matched anything.
97 int match_pathspec(const char **pathspec, const char *name, int namelen, int prefix, char *seen)
105 for (retval = 0; (match = *pathspec++) != NULL; seen++) {
107 if (retval && *seen == MATCHED_EXACTLY)
110 how = match_one(match, name, namelen);
121 static int no_wildcard(const char *string)
123 return string[strcspn(string, "*?[{")] == '\0';
126 void add_exclude(const char *string, const char *base,
127 int baselen, struct exclude_list *which)
129 struct exclude *x = xmalloc(sizeof (*x));
132 if (*string == '!') {
137 x->patternlen = strlen(string);
139 x->baselen = baselen;
141 if (!strchr(string, '/'))
142 x->flags |= EXC_FLAG_NODIR;
143 if (no_wildcard(string))
144 x->flags |= EXC_FLAG_NOWILDCARD;
145 if (*string == '*' && no_wildcard(string+1))
146 x->flags |= EXC_FLAG_ENDSWITH;
147 ALLOC_GROW(which->excludes, which->nr + 1, which->alloc);
148 which->excludes[which->nr++] = x;
151 static int add_excludes_from_file_1(const char *fname,
155 struct exclude_list *which)
162 fd = open(fname, O_RDONLY);
163 if (fd < 0 || fstat(fd, &st) < 0)
165 size = xsize_t(st.st_size);
170 buf = xmalloc(size+1);
171 if (read_in_full(fd, buf, size) != size)
182 for (i = 0; i < size; i++) {
183 if (buf[i] == '\n') {
184 if (entry != buf + i && entry[0] != '#') {
185 buf[i - (i && buf[i-1] == '\r')] = 0;
186 add_exclude(entry, base, baselen, which);
199 void add_excludes_from_file(struct dir_struct *dir, const char *fname)
201 if (add_excludes_from_file_1(fname, "", 0, NULL,
202 &dir->exclude_list[EXC_FILE]) < 0)
203 die("cannot use %s as an exclude file", fname);
206 static void prep_exclude(struct dir_struct *dir, const char *base, int baselen)
208 struct exclude_list *el;
209 struct exclude_stack *stk = NULL;
212 if ((!dir->exclude_per_dir) ||
213 (baselen + strlen(dir->exclude_per_dir) >= PATH_MAX))
214 return; /* too long a path -- ignore */
216 /* Pop the ones that are not the prefix of the path being checked. */
217 el = &dir->exclude_list[EXC_DIRS];
218 while ((stk = dir->exclude_stack) != NULL) {
219 if (stk->baselen <= baselen &&
220 !strncmp(dir->basebuf, base, stk->baselen))
222 dir->exclude_stack = stk->prev;
223 while (stk->exclude_ix < el->nr)
224 free(el->excludes[--el->nr]);
229 /* Read from the parent directories and push them down. */
230 current = stk ? stk->baselen : -1;
231 while (current < baselen) {
232 struct exclude_stack *stk = xcalloc(1, sizeof(*stk));
240 cp = strchr(base + current + 1, '/');
242 die("oops in prep_exclude");
245 stk->prev = dir->exclude_stack;
246 stk->baselen = cp - base;
247 stk->exclude_ix = el->nr;
248 memcpy(dir->basebuf + current, base + current,
249 stk->baselen - current);
250 strcpy(dir->basebuf + stk->baselen, dir->exclude_per_dir);
251 add_excludes_from_file_1(dir->basebuf,
252 dir->basebuf, stk->baselen,
254 dir->exclude_stack = stk;
255 current = stk->baselen;
257 dir->basebuf[baselen] = '\0';
260 /* Scan the list and let the last match determines the fate.
261 * Return 1 for exclude, 0 for include and -1 for undecided.
263 static int excluded_1(const char *pathname,
264 int pathlen, const char *basename,
265 struct exclude_list *el)
270 for (i = el->nr - 1; 0 <= i; i--) {
271 struct exclude *x = el->excludes[i];
272 const char *exclude = x->pattern;
273 int to_exclude = x->to_exclude;
275 if (x->flags & EXC_FLAG_NODIR) {
277 if (x->flags & EXC_FLAG_NOWILDCARD) {
278 if (!strcmp(exclude, basename))
280 } else if (x->flags & EXC_FLAG_ENDSWITH) {
281 if (x->patternlen - 1 <= pathlen &&
282 !strcmp(exclude + 1, pathname + pathlen - x->patternlen + 1))
285 if (fnmatch(exclude, basename, 0) == 0)
290 /* match with FNM_PATHNAME:
291 * exclude has base (baselen long) implicitly
294 int baselen = x->baselen;
298 if (pathlen < baselen ||
299 (baselen && pathname[baselen-1] != '/') ||
300 strncmp(pathname, x->base, baselen))
303 if (x->flags & EXC_FLAG_NOWILDCARD) {
304 if (!strcmp(exclude, pathname + baselen))
307 if (fnmatch(exclude, pathname+baselen,
314 return -1; /* undecided */
317 int excluded(struct dir_struct *dir, const char *pathname)
319 int pathlen = strlen(pathname);
321 const char *basename = strrchr(pathname, '/');
322 basename = (basename) ? basename+1 : pathname;
324 prep_exclude(dir, pathname, basename-pathname);
325 for (st = EXC_CMDL; st <= EXC_FILE; st++) {
326 switch (excluded_1(pathname, pathlen, basename, &dir->exclude_list[st])) {
336 static struct dir_entry *dir_entry_new(const char *pathname, int len)
338 struct dir_entry *ent;
340 ent = xmalloc(sizeof(*ent) + len + 1);
342 memcpy(ent->name, pathname, len);
347 struct dir_entry *dir_add_name(struct dir_struct *dir, const char *pathname, int len)
349 if (cache_name_pos(pathname, len) >= 0)
352 ALLOC_GROW(dir->entries, dir->nr+1, dir->alloc);
353 return dir->entries[dir->nr++] = dir_entry_new(pathname, len);
356 struct dir_entry *dir_add_ignored(struct dir_struct *dir, const char *pathname, int len)
358 if (cache_name_pos(pathname, len) >= 0)
361 ALLOC_GROW(dir->ignored, dir->ignored_nr+1, dir->ignored_alloc);
362 return dir->ignored[dir->ignored_nr++] = dir_entry_new(pathname, len);
366 index_nonexistent = 0,
372 * The index sorts alphabetically by entry name, which
373 * means that a gitlink sorts as '\0' at the end, while
374 * a directory (which is defined not as an entry, but as
375 * the files it contains) will sort with the '/' at the
378 static enum exist_status directory_exists_in_index(const char *dirname, int len)
380 int pos = cache_name_pos(dirname, len);
383 while (pos < active_nr) {
384 struct cache_entry *ce = active_cache[pos++];
385 unsigned char endchar;
387 if (strncmp(ce->name, dirname, len))
389 endchar = ce->name[len];
393 return index_directory;
394 if (!endchar && S_ISGITLINK(ntohl(ce->ce_mode)))
397 return index_nonexistent;
401 * When we find a directory when traversing the filesystem, we
402 * have three distinct cases:
405 * - see it as a directory
408 * and which one we choose depends on a combination of existing
409 * git index contents and the flags passed into the directory
412 * Case 1: If we *already* have entries in the index under that
413 * directory name, we always recurse into the directory to see
416 * Case 2: If we *already* have that directory name as a gitlink,
417 * we always continue to see it as a gitlink, regardless of whether
418 * there is an actual git directory there or not (it might not
419 * be checked out as a subproject!)
421 * Case 3: if we didn't have it in the index previously, we
422 * have a few sub-cases:
424 * (a) if "show_other_directories" is true, we show it as
425 * just a directory, unless "hide_empty_directories" is
426 * also true and the directory is empty, in which case
427 * we just ignore it entirely.
428 * (b) if it looks like a git directory, and we don't have
429 * 'no_gitlinks' set we treat it as a gitlink, and show it
431 * (c) otherwise, we recurse into it.
433 enum directory_treatment {
436 recurse_into_directory,
439 static enum directory_treatment treat_directory(struct dir_struct *dir,
440 const char *dirname, int len,
441 const struct path_simplify *simplify)
443 /* The "len-1" is to strip the final '/' */
444 switch (directory_exists_in_index(dirname, len-1)) {
445 case index_directory:
446 return recurse_into_directory;
449 if (dir->show_other_directories)
450 return ignore_directory;
451 return show_directory;
453 case index_nonexistent:
454 if (dir->show_other_directories)
456 if (!dir->no_gitlinks) {
457 unsigned char sha1[20];
458 if (resolve_gitlink_ref(dirname, "HEAD", sha1) == 0)
459 return show_directory;
461 return recurse_into_directory;
464 /* This is the "show_other_directories" case */
465 if (!dir->hide_empty_directories)
466 return show_directory;
467 if (!read_directory_recursive(dir, dirname, dirname, len, 1, simplify))
468 return ignore_directory;
469 return show_directory;
473 * This is an inexact early pruning of any recursive directory
474 * reading - if the path cannot possibly be in the pathspec,
475 * return true, and we'll skip it early.
477 static int simplify_away(const char *path, int pathlen, const struct path_simplify *simplify)
481 const char *match = simplify->path;
482 int len = simplify->len;
488 if (!memcmp(path, match, len))
497 static int in_pathspec(const char *path, int len, const struct path_simplify *simplify)
500 for (; simplify->path; simplify++) {
501 if (len == simplify->len
502 && !memcmp(path, simplify->path, len))
509 static int get_dtype(struct dirent *de, const char *path)
511 int dtype = DTYPE(de);
514 if (dtype != DT_UNKNOWN)
516 if (lstat(path, &st))
518 if (S_ISREG(st.st_mode))
520 if (S_ISDIR(st.st_mode))
522 if (S_ISLNK(st.st_mode))
528 * Read a directory tree. We currently ignore anything but
529 * directories, regular files and symlinks. That's because git
530 * doesn't handle them at all yet. Maybe that will change some
533 * Also, we ignore the name ".git" (even if it is not a directory).
534 * That likely will not change.
536 static int read_directory_recursive(struct dir_struct *dir, const char *path, const char *base, int baselen, int check_only, const struct path_simplify *simplify)
538 DIR *fdir = opendir(path);
543 char fullname[PATH_MAX + 1];
544 memcpy(fullname, base, baselen);
546 while ((de = readdir(fdir)) != NULL) {
550 if ((de->d_name[0] == '.') &&
551 (de->d_name[1] == 0 ||
552 !strcmp(de->d_name + 1, ".") ||
553 !strcmp(de->d_name + 1, "git")))
555 len = strlen(de->d_name);
556 /* Ignore overly long pathnames! */
557 if (len + baselen + 8 > sizeof(fullname))
559 memcpy(fullname + baselen, de->d_name, len+1);
560 if (simplify_away(fullname, baselen + len, simplify))
563 exclude = excluded(dir, fullname);
564 if (exclude && dir->collect_ignored
565 && in_pathspec(fullname, baselen + len, simplify))
566 dir_add_ignored(dir, fullname, baselen + len);
569 * Excluded? If we don't explicitly want to show
570 * ignored files, ignore it
572 if (exclude && !dir->show_ignored)
575 dtype = get_dtype(de, fullname);
578 * Do we want to see just the ignored files?
579 * We still need to recurse into directories,
580 * even if we don't ignore them, since the
581 * directory may contain files that we do..
583 if (!exclude && dir->show_ignored) {
592 memcpy(fullname + baselen + len, "/", 2);
594 switch (treat_directory(dir, fullname, baselen + len, simplify)) {
596 if (exclude != dir->show_ignored)
599 case recurse_into_directory:
600 contents += read_directory_recursive(dir,
601 fullname, fullname, baselen + len, 0, simplify);
603 case ignore_directory:
615 dir_add_name(dir, fullname, baselen + len);
624 static int cmp_name(const void *p1, const void *p2)
626 const struct dir_entry *e1 = *(const struct dir_entry **)p1;
627 const struct dir_entry *e2 = *(const struct dir_entry **)p2;
629 return cache_name_compare(e1->name, e1->len,
634 * Return the length of the "simple" part of a path match limiter.
636 static int simple_length(const char *match)
638 const char special[256] = {
640 ['\\'] = 1, ['*'] = 1,
646 unsigned char c = *match++;
653 static struct path_simplify *create_simplify(const char **pathspec)
656 struct path_simplify *simplify = NULL;
661 for (nr = 0 ; ; nr++) {
664 alloc = alloc_nr(alloc);
665 simplify = xrealloc(simplify, alloc * sizeof(*simplify));
670 simplify[nr].path = match;
671 simplify[nr].len = simple_length(match);
673 simplify[nr].path = NULL;
674 simplify[nr].len = 0;
678 static void free_simplify(struct path_simplify *simplify)
684 int read_directory(struct dir_struct *dir, const char *path, const char *base, int baselen, const char **pathspec)
686 struct path_simplify *simplify = create_simplify(pathspec);
688 read_directory_recursive(dir, path, base, baselen, 0, simplify);
689 free_simplify(simplify);
690 qsort(dir->entries, dir->nr, sizeof(struct dir_entry *), cmp_name);
691 qsort(dir->ignored, dir->ignored_nr, sizeof(struct dir_entry *), cmp_name);
695 int file_exists(const char *f)
698 return lstat(f, &sb) == 0;
702 * get_relative_cwd() gets the prefix of the current working directory
703 * relative to 'dir'. If we are not inside 'dir', it returns NULL.
705 * As a convenience, it also returns NULL if 'dir' is already NULL. The
706 * reason for this behaviour is that it is natural for functions returning
707 * directory names to return NULL to say "this directory does not exist"
708 * or "this directory is invalid". These cases are usually handled the
709 * same as if the cwd is not inside 'dir' at all, so get_relative_cwd()
710 * returns NULL for both of them.
712 * Most notably, get_relative_cwd(buffer, size, get_git_work_tree())
713 * unifies the handling of "outside work tree" with "no work tree at all".
715 char *get_relative_cwd(char *buffer, int size, const char *dir)
721 if (!getcwd(buffer, size))
722 die("can't find the current directory: %s", strerror(errno));
724 if (!is_absolute_path(dir))
725 dir = make_absolute_path(dir);
727 while (*dir && *dir == *cwd) {
738 int is_inside_dir(const char *dir)
740 char buffer[PATH_MAX];
741 return get_relative_cwd(buffer, sizeof(buffer), dir) != NULL;
744 int remove_dir_recursively(struct strbuf *path, int only_empty)
746 DIR *dir = opendir(path->buf);
748 int ret = 0, original_len = path->len, len;
752 if (path->buf[original_len - 1] != '/')
753 strbuf_addch(path, '/');
756 while ((e = readdir(dir)) != NULL) {
758 if ((e->d_name[0] == '.') &&
759 ((e->d_name[1] == 0) ||
760 ((e->d_name[1] == '.') && e->d_name[2] == 0)))
761 continue; /* "." and ".." */
763 strbuf_setlen(path, len);
764 strbuf_addstr(path, e->d_name);
765 if (lstat(path->buf, &st))
767 else if (S_ISDIR(st.st_mode)) {
768 if (!remove_dir_recursively(path, only_empty))
769 continue; /* happy */
770 } else if (!only_empty && !unlink(path->buf))
771 continue; /* happy, too */
773 /* path too long, stat fails, or non-directory still exists */
779 strbuf_setlen(path, original_len);
781 ret = rmdir(path->buf);
785 void setup_standard_excludes(struct dir_struct *dir)
789 dir->exclude_per_dir = ".gitignore";
790 path = git_path("info/exclude");
791 if (!access(path, R_OK))
792 add_excludes_from_file(dir, path);
793 if (excludes_file && !access(excludes_file, R_OK))
794 add_excludes_from_file(dir, excludes_file);