1/*
2 * This handles recursive filename detection with exclude
3 * files, index knowledge etc..
4 *
5 * Copyright (C) Linus Torvalds, 2005-2006
6 * Junio Hamano, 2005-2006
7 */
8#include "cache.h"
9#include "dir.h"
10#include "refs.h"
11#include "wildmatch.h"
12
13struct path_simplify {
14 int len;
15 const char *path;
16};
17
18static int read_directory_recursive(struct dir_struct *dir, const char *path, int len,
19 int check_only, const struct path_simplify *simplify);
20static int get_dtype(struct dirent *de, const char *path, int len);
21
22/* helper string functions with support for the ignore_case flag */
23int strcmp_icase(const char *a, const char *b)
24{
25 return ignore_case ? strcasecmp(a, b) : strcmp(a, b);
26}
27
28int strncmp_icase(const char *a, const char *b, size_t count)
29{
30 return ignore_case ? strncasecmp(a, b, count) : strncmp(a, b, count);
31}
32
33int fnmatch_icase(const char *pattern, const char *string, int flags)
34{
35 return fnmatch(pattern, string, flags | (ignore_case ? FNM_CASEFOLD : 0));
36}
37
38static size_t common_prefix_len(const char **pathspec)
39{
40 const char *n, *first;
41 size_t max = 0;
42
43 if (!pathspec)
44 return max;
45
46 first = *pathspec;
47 while ((n = *pathspec++)) {
48 size_t i, len = 0;
49 for (i = 0; first == n || i < max; i++) {
50 char c = n[i];
51 if (!c || c != first[i] || is_glob_special(c))
52 break;
53 if (c == '/')
54 len = i + 1;
55 }
56 if (first == n || len < max) {
57 max = len;
58 if (!max)
59 break;
60 }
61 }
62 return max;
63}
64
65/*
66 * Returns a copy of the longest leading path common among all
67 * pathspecs.
68 */
69char *common_prefix(const char **pathspec)
70{
71 unsigned long len = common_prefix_len(pathspec);
72
73 return len ? xmemdupz(*pathspec, len) : NULL;
74}
75
76int fill_directory(struct dir_struct *dir, const char **pathspec)
77{
78 size_t len;
79
80 /*
81 * Calculate common prefix for the pathspec, and
82 * use that to optimize the directory walk
83 */
84 len = common_prefix_len(pathspec);
85
86 /* Read the directory and prune it */
87 read_directory(dir, pathspec ? *pathspec : "", len, pathspec);
88 return len;
89}
90
91int within_depth(const char *name, int namelen,
92 int depth, int max_depth)
93{
94 const char *cp = name, *cpe = name + namelen;
95
96 while (cp < cpe) {
97 if (*cp++ != '/')
98 continue;
99 depth++;
100 if (depth > max_depth)
101 return 0;
102 }
103 return 1;
104}
105
106/*
107 * Does 'match' match the given name?
108 * A match is found if
109 *
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'.
113 *
114 * and the return value tells which case it was.
115 *
116 * It returns 0 when there is no match.
117 */
118static int match_one(const char *match, const char *name, int namelen)
119{
120 int matchlen;
121
122 /* If the match was just the prefix, we matched */
123 if (!*match)
124 return MATCHED_RECURSIVELY;
125
126 if (ignore_case) {
127 for (;;) {
128 unsigned char c1 = tolower(*match);
129 unsigned char c2 = tolower(*name);
130 if (c1 == '\0' || is_glob_special(c1))
131 break;
132 if (c1 != c2)
133 return 0;
134 match++;
135 name++;
136 namelen--;
137 }
138 } else {
139 for (;;) {
140 unsigned char c1 = *match;
141 unsigned char c2 = *name;
142 if (c1 == '\0' || is_glob_special(c1))
143 break;
144 if (c1 != c2)
145 return 0;
146 match++;
147 name++;
148 namelen--;
149 }
150 }
151
152
153 /*
154 * If we don't match the matchstring exactly,
155 * we need to match by fnmatch
156 */
157 matchlen = strlen(match);
158 if (strncmp_icase(match, name, matchlen))
159 return !fnmatch_icase(match, name, 0) ? MATCHED_FNMATCH : 0;
160
161 if (namelen == matchlen)
162 return MATCHED_EXACTLY;
163 if (match[matchlen-1] == '/' || name[matchlen] == '/')
164 return MATCHED_RECURSIVELY;
165 return 0;
166}
167
168/*
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.
175 */
176int match_pathspec(const char **pathspec, const char *name, int namelen,
177 int prefix, char *seen)
178{
179 int i, retval = 0;
180
181 if (!pathspec)
182 return 1;
183
184 name += prefix;
185 namelen -= prefix;
186
187 for (i = 0; pathspec[i] != NULL; i++) {
188 int how;
189 const char *match = pathspec[i] + prefix;
190 if (seen && seen[i] == MATCHED_EXACTLY)
191 continue;
192 how = match_one(match, name, namelen);
193 if (how) {
194 if (retval < how)
195 retval = how;
196 if (seen && seen[i] < how)
197 seen[i] = how;
198 }
199 }
200 return retval;
201}
202
203/*
204 * Does 'match' match the given name?
205 * A match is found if
206 *
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'.
210 *
211 * and the return value tells which case it was.
212 *
213 * It returns 0 when there is no match.
214 */
215static int match_pathspec_item(const struct pathspec_item *item, int prefix,
216 const char *name, int namelen)
217{
218 /* name/namelen has prefix cut off by caller */
219 const char *match = item->match + prefix;
220 int matchlen = item->len - prefix;
221
222 /* If the match was just the prefix, we matched */
223 if (!*match)
224 return MATCHED_RECURSIVELY;
225
226 if (matchlen <= namelen && !strncmp(match, name, matchlen)) {
227 if (matchlen == namelen)
228 return MATCHED_EXACTLY;
229
230 if (match[matchlen-1] == '/' || name[matchlen] == '/')
231 return MATCHED_RECURSIVELY;
232 }
233
234 if (item->use_wildcard && !fnmatch(match, name, 0))
235 return MATCHED_FNMATCH;
236
237 return 0;
238}
239
240/*
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.
247 */
248int match_pathspec_depth(const struct pathspec *ps,
249 const char *name, int namelen,
250 int prefix, char *seen)
251{
252 int i, retval = 0;
253
254 if (!ps->nr) {
255 if (!ps->recursive || ps->max_depth == -1)
256 return MATCHED_RECURSIVELY;
257
258 if (within_depth(name, namelen, 0, ps->max_depth))
259 return MATCHED_EXACTLY;
260 else
261 return 0;
262 }
263
264 name += prefix;
265 namelen -= prefix;
266
267 for (i = ps->nr - 1; i >= 0; i--) {
268 int how;
269 if (seen && seen[i] == MATCHED_EXACTLY)
270 continue;
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] == '/')
276 len++;
277 if (within_depth(name+len, namelen-len, 0, ps->max_depth))
278 how = MATCHED_EXACTLY;
279 else
280 how = 0;
281 }
282 if (how) {
283 if (retval < how)
284 retval = how;
285 if (seen && seen[i] < how)
286 seen[i] = how;
287 }
288 }
289 return retval;
290}
291
292/*
293 * Return the length of the "simple" part of a path match limiter.
294 */
295static int simple_length(const char *match)
296{
297 int len = -1;
298
299 for (;;) {
300 unsigned char c = *match++;
301 len++;
302 if (c == '\0' || is_glob_special(c))
303 return len;
304 }
305}
306
307static int no_wildcard(const char *string)
308{
309 return string[simple_length(string)] == '\0';
310}
311
312void parse_exclude_pattern(const char **pattern,
313 int *patternlen,
314 int *flags,
315 int *nowildcardlen)
316{
317 const char *p = *pattern;
318 size_t i, len;
319
320 *flags = 0;
321 if (*p == '!') {
322 *flags |= EXC_FLAG_NEGATIVE;
323 p++;
324 }
325 len = strlen(p);
326 if (len && p[len - 1] == '/') {
327 len--;
328 *flags |= EXC_FLAG_MUSTBEDIR;
329 }
330 for (i = 0; i < len; i++) {
331 if (p[i] == '/')
332 break;
333 }
334 if (i == len)
335 *flags |= EXC_FLAG_NODIR;
336 *nowildcardlen = simple_length(p);
337 /*
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
341 */
342 if (*nowildcardlen > len)
343 *nowildcardlen = len;
344 if (*p == '*' && no_wildcard(p + 1))
345 *flags |= EXC_FLAG_ENDSWITH;
346 *pattern = p;
347 *patternlen = len;
348}
349
350void add_exclude(const char *string, const char *base,
351 int baselen, struct exclude_list *which)
352{
353 struct exclude *x;
354 int patternlen;
355 int flags;
356 int nowildcardlen;
357
358 parse_exclude_pattern(&string, &patternlen, &flags, &nowildcardlen);
359 if (flags & EXC_FLAG_MUSTBEDIR) {
360 char *s;
361 x = xmalloc(sizeof(*x) + patternlen + 1);
362 s = (char *)(x+1);
363 memcpy(s, string, patternlen);
364 s[patternlen] = '\0';
365 x->pattern = s;
366 } else {
367 x = xmalloc(sizeof(*x));
368 x->pattern = string;
369 }
370 x->patternlen = patternlen;
371 x->nowildcardlen = nowildcardlen;
372 x->base = base;
373 x->baselen = baselen;
374 x->flags = flags;
375 ALLOC_GROW(which->excludes, which->nr + 1, which->alloc);
376 which->excludes[which->nr++] = x;
377}
378
379static void *read_skip_worktree_file_from_index(const char *path, size_t *size)
380{
381 int pos, len;
382 unsigned long sz;
383 enum object_type type;
384 void *data;
385 struct index_state *istate = &the_index;
386
387 len = strlen(path);
388 pos = index_name_pos(istate, path, len);
389 if (pos < 0)
390 return NULL;
391 if (!ce_skip_worktree(istate->cache[pos]))
392 return NULL;
393 data = read_sha1_file(istate->cache[pos]->sha1, &type, &sz);
394 if (!data || type != OBJ_BLOB) {
395 free(data);
396 return NULL;
397 }
398 *size = xsize_t(sz);
399 return data;
400}
401
402void free_excludes(struct exclude_list *el)
403{
404 int i;
405
406 for (i = 0; i < el->nr; i++)
407 free(el->excludes[i]);
408 free(el->excludes);
409
410 el->nr = 0;
411 el->excludes = NULL;
412}
413
414int add_excludes_from_file_to_list(const char *fname,
415 const char *base,
416 int baselen,
417 char **buf_p,
418 struct exclude_list *which,
419 int check_index)
420{
421 struct stat st;
422 int fd, i;
423 size_t size = 0;
424 char *buf, *entry;
425
426 fd = open(fname, O_RDONLY);
427 if (fd < 0 || fstat(fd, &st) < 0) {
428 if (0 <= fd)
429 close(fd);
430 if (!check_index ||
431 (buf = read_skip_worktree_file_from_index(fname, &size)) == NULL)
432 return -1;
433 if (size == 0) {
434 free(buf);
435 return 0;
436 }
437 if (buf[size-1] != '\n') {
438 buf = xrealloc(buf, size+1);
439 buf[size++] = '\n';
440 }
441 }
442 else {
443 size = xsize_t(st.st_size);
444 if (size == 0) {
445 close(fd);
446 return 0;
447 }
448 buf = xmalloc(size+1);
449 if (read_in_full(fd, buf, size) != size) {
450 free(buf);
451 close(fd);
452 return -1;
453 }
454 buf[size++] = '\n';
455 close(fd);
456 }
457
458 if (buf_p)
459 *buf_p = buf;
460 entry = buf;
461 for (i = 0; i < size; i++) {
462 if (buf[i] == '\n') {
463 if (entry != buf + i && entry[0] != '#') {
464 buf[i - (i && buf[i-1] == '\r')] = 0;
465 add_exclude(entry, base, baselen, which);
466 }
467 entry = buf + i + 1;
468 }
469 }
470 return 0;
471}
472
473void add_excludes_from_file(struct dir_struct *dir, const char *fname)
474{
475 if (add_excludes_from_file_to_list(fname, "", 0, NULL,
476 &dir->exclude_list[EXC_FILE], 0) < 0)
477 die("cannot use %s as an exclude file", fname);
478}
479
480static void prep_exclude(struct dir_struct *dir, const char *base, int baselen)
481{
482 struct exclude_list *el;
483 struct exclude_stack *stk = NULL;
484 int current;
485
486 if ((!dir->exclude_per_dir) ||
487 (baselen + strlen(dir->exclude_per_dir) >= PATH_MAX))
488 return; /* too long a path -- ignore */
489
490 /* Pop the ones that are not the prefix of the path being checked. */
491 el = &dir->exclude_list[EXC_DIRS];
492 while ((stk = dir->exclude_stack) != NULL) {
493 if (stk->baselen <= baselen &&
494 !strncmp(dir->basebuf, base, stk->baselen))
495 break;
496 dir->exclude_stack = stk->prev;
497 while (stk->exclude_ix < el->nr)
498 free(el->excludes[--el->nr]);
499 free(stk->filebuf);
500 free(stk);
501 }
502
503 /* Read from the parent directories and push them down. */
504 current = stk ? stk->baselen : -1;
505 while (current < baselen) {
506 struct exclude_stack *stk = xcalloc(1, sizeof(*stk));
507 const char *cp;
508
509 if (current < 0) {
510 cp = base;
511 current = 0;
512 }
513 else {
514 cp = strchr(base + current + 1, '/');
515 if (!cp)
516 die("oops in prep_exclude");
517 cp++;
518 }
519 stk->prev = dir->exclude_stack;
520 stk->baselen = cp - base;
521 stk->exclude_ix = el->nr;
522 memcpy(dir->basebuf + current, base + current,
523 stk->baselen - current);
524 strcpy(dir->basebuf + stk->baselen, dir->exclude_per_dir);
525 add_excludes_from_file_to_list(dir->basebuf,
526 dir->basebuf, stk->baselen,
527 &stk->filebuf, el, 1);
528 dir->exclude_stack = stk;
529 current = stk->baselen;
530 }
531 dir->basebuf[baselen] = '\0';
532}
533
534int match_basename(const char *basename, int basenamelen,
535 const char *pattern, int prefix, int patternlen,
536 int flags)
537{
538 if (prefix == patternlen) {
539 if (!strcmp_icase(pattern, basename))
540 return 1;
541 } else if (flags & EXC_FLAG_ENDSWITH) {
542 if (patternlen - 1 <= basenamelen &&
543 !strcmp_icase(pattern + 1,
544 basename + basenamelen - patternlen + 1))
545 return 1;
546 } else {
547 if (fnmatch_icase(pattern, basename, 0) == 0)
548 return 1;
549 }
550 return 0;
551}
552
553int match_pathname(const char *pathname, int pathlen,
554 const char *base, int baselen,
555 const char *pattern, int prefix, int patternlen,
556 int flags)
557{
558 const char *name;
559 int namelen;
560
561 /*
562 * match with FNM_PATHNAME; the pattern has base implicitly
563 * in front of it.
564 */
565 if (*pattern == '/') {
566 pattern++;
567 prefix--;
568 }
569
570 /*
571 * baselen does not count the trailing slash. base[] may or
572 * may not end with a trailing slash though.
573 */
574 if (pathlen < baselen + 1 ||
575 (baselen && pathname[baselen] != '/') ||
576 strncmp_icase(pathname, base, baselen))
577 return 0;
578
579 namelen = baselen ? pathlen - baselen - 1 : pathlen;
580 name = pathname + pathlen - namelen;
581
582 if (prefix) {
583 /*
584 * if the non-wildcard part is longer than the
585 * remaining pathname, surely it cannot match.
586 */
587 if (prefix > namelen)
588 return 0;
589
590 if (strncmp_icase(pattern, name, prefix))
591 return 0;
592 pattern += prefix;
593 name += prefix;
594 namelen -= prefix;
595 }
596
597 return wildmatch(pattern, name,
598 WM_PATHNAME | (ignore_case ? WM_CASEFOLD : 0),
599 NULL) == 0;
600}
601
602/* Scan the list and let the last match determine the fate.
603 * Return 1 for exclude, 0 for include and -1 for undecided.
604 */
605int excluded_from_list(const char *pathname,
606 int pathlen, const char *basename, int *dtype,
607 struct exclude_list *el)
608{
609 int i;
610
611 if (!el->nr)
612 return -1; /* undefined */
613
614 for (i = el->nr - 1; 0 <= i; i--) {
615 struct exclude *x = el->excludes[i];
616 const char *exclude = x->pattern;
617 int to_exclude = x->flags & EXC_FLAG_NEGATIVE ? 0 : 1;
618 int prefix = x->nowildcardlen;
619
620 if (x->flags & EXC_FLAG_MUSTBEDIR) {
621 if (*dtype == DT_UNKNOWN)
622 *dtype = get_dtype(NULL, pathname, pathlen);
623 if (*dtype != DT_DIR)
624 continue;
625 }
626
627 if (x->flags & EXC_FLAG_NODIR) {
628 if (match_basename(basename,
629 pathlen - (basename - pathname),
630 exclude, prefix, x->patternlen,
631 x->flags))
632 return to_exclude;
633 continue;
634 }
635
636 assert(x->baselen == 0 || x->base[x->baselen - 1] == '/');
637 if (match_pathname(pathname, pathlen,
638 x->base, x->baselen ? x->baselen - 1 : 0,
639 exclude, prefix, x->patternlen, x->flags))
640 return to_exclude;
641 }
642 return -1; /* undecided */
643}
644
645static int excluded(struct dir_struct *dir, const char *pathname, int *dtype_p)
646{
647 int pathlen = strlen(pathname);
648 int st;
649 const char *basename = strrchr(pathname, '/');
650 basename = (basename) ? basename+1 : pathname;
651
652 prep_exclude(dir, pathname, basename-pathname);
653 for (st = EXC_CMDL; st <= EXC_FILE; st++) {
654 switch (excluded_from_list(pathname, pathlen, basename,
655 dtype_p, &dir->exclude_list[st])) {
656 case 0:
657 return 0;
658 case 1:
659 return 1;
660 }
661 }
662 return 0;
663}
664
665void path_exclude_check_init(struct path_exclude_check *check,
666 struct dir_struct *dir)
667{
668 check->dir = dir;
669 strbuf_init(&check->path, 256);
670}
671
672void path_exclude_check_clear(struct path_exclude_check *check)
673{
674 strbuf_release(&check->path);
675}
676
677/*
678 * Is this name excluded? This is for a caller like show_files() that
679 * do not honor directory hierarchy and iterate through paths that are
680 * possibly in an ignored directory.
681 *
682 * A path to a directory known to be excluded is left in check->path to
683 * optimize for repeated checks for files in the same excluded directory.
684 */
685int path_excluded(struct path_exclude_check *check,
686 const char *name, int namelen, int *dtype)
687{
688 int i;
689 struct strbuf *path = &check->path;
690
691 /*
692 * we allow the caller to pass namelen as an optimization; it
693 * must match the length of the name, as we eventually call
694 * excluded() on the whole name string.
695 */
696 if (namelen < 0)
697 namelen = strlen(name);
698
699 if (path->len &&
700 path->len <= namelen &&
701 !memcmp(name, path->buf, path->len) &&
702 (!name[path->len] || name[path->len] == '/'))
703 return 1;
704
705 strbuf_setlen(path, 0);
706 for (i = 0; name[i]; i++) {
707 int ch = name[i];
708
709 if (ch == '/') {
710 int dt = DT_DIR;
711 if (excluded(check->dir, path->buf, &dt))
712 return 1;
713 }
714 strbuf_addch(path, ch);
715 }
716
717 /* An entry in the index; cannot be a directory with subentries */
718 strbuf_setlen(path, 0);
719
720 return excluded(check->dir, name, dtype);
721}
722
723static struct dir_entry *dir_entry_new(const char *pathname, int len)
724{
725 struct dir_entry *ent;
726
727 ent = xmalloc(sizeof(*ent) + len + 1);
728 ent->len = len;
729 memcpy(ent->name, pathname, len);
730 ent->name[len] = 0;
731 return ent;
732}
733
734static struct dir_entry *dir_add_name(struct dir_struct *dir, const char *pathname, int len)
735{
736 if (cache_name_exists(pathname, len, ignore_case))
737 return NULL;
738
739 ALLOC_GROW(dir->entries, dir->nr+1, dir->alloc);
740 return dir->entries[dir->nr++] = dir_entry_new(pathname, len);
741}
742
743struct dir_entry *dir_add_ignored(struct dir_struct *dir, const char *pathname, int len)
744{
745 if (!cache_name_is_other(pathname, len))
746 return NULL;
747
748 ALLOC_GROW(dir->ignored, dir->ignored_nr+1, dir->ignored_alloc);
749 return dir->ignored[dir->ignored_nr++] = dir_entry_new(pathname, len);
750}
751
752enum exist_status {
753 index_nonexistent = 0,
754 index_directory,
755 index_gitdir
756};
757
758/*
759 * Do not use the alphabetically stored index to look up
760 * the directory name; instead, use the case insensitive
761 * name hash.
762 */
763static enum exist_status directory_exists_in_index_icase(const char *dirname, int len)
764{
765 struct cache_entry *ce = index_name_exists(&the_index, dirname, len + 1, ignore_case);
766 unsigned char endchar;
767
768 if (!ce)
769 return index_nonexistent;
770 endchar = ce->name[len];
771
772 /*
773 * The cache_entry structure returned will contain this dirname
774 * and possibly additional path components.
775 */
776 if (endchar == '/')
777 return index_directory;
778
779 /*
780 * If there are no additional path components, then this cache_entry
781 * represents a submodule. Submodules, despite being directories,
782 * are stored in the cache without a closing slash.
783 */
784 if (!endchar && S_ISGITLINK(ce->ce_mode))
785 return index_gitdir;
786
787 /* This should never be hit, but it exists just in case. */
788 return index_nonexistent;
789}
790
791/*
792 * The index sorts alphabetically by entry name, which
793 * means that a gitlink sorts as '\0' at the end, while
794 * a directory (which is defined not as an entry, but as
795 * the files it contains) will sort with the '/' at the
796 * end.
797 */
798static enum exist_status directory_exists_in_index(const char *dirname, int len)
799{
800 int pos;
801
802 if (ignore_case)
803 return directory_exists_in_index_icase(dirname, len);
804
805 pos = cache_name_pos(dirname, len);
806 if (pos < 0)
807 pos = -pos-1;
808 while (pos < active_nr) {
809 struct cache_entry *ce = active_cache[pos++];
810 unsigned char endchar;
811
812 if (strncmp(ce->name, dirname, len))
813 break;
814 endchar = ce->name[len];
815 if (endchar > '/')
816 break;
817 if (endchar == '/')
818 return index_directory;
819 if (!endchar && S_ISGITLINK(ce->ce_mode))
820 return index_gitdir;
821 }
822 return index_nonexistent;
823}
824
825/*
826 * When we find a directory when traversing the filesystem, we
827 * have three distinct cases:
828 *
829 * - ignore it
830 * - see it as a directory
831 * - recurse into it
832 *
833 * and which one we choose depends on a combination of existing
834 * git index contents and the flags passed into the directory
835 * traversal routine.
836 *
837 * Case 1: If we *already* have entries in the index under that
838 * directory name, we always recurse into the directory to see
839 * all the files.
840 *
841 * Case 2: If we *already* have that directory name as a gitlink,
842 * we always continue to see it as a gitlink, regardless of whether
843 * there is an actual git directory there or not (it might not
844 * be checked out as a subproject!)
845 *
846 * Case 3: if we didn't have it in the index previously, we
847 * have a few sub-cases:
848 *
849 * (a) if "show_other_directories" is true, we show it as
850 * just a directory, unless "hide_empty_directories" is
851 * also true and the directory is empty, in which case
852 * we just ignore it entirely.
853 * (b) if it looks like a git directory, and we don't have
854 * 'no_gitlinks' set we treat it as a gitlink, and show it
855 * as a directory.
856 * (c) otherwise, we recurse into it.
857 */
858enum directory_treatment {
859 show_directory,
860 ignore_directory,
861 recurse_into_directory
862};
863
864static enum directory_treatment treat_directory(struct dir_struct *dir,
865 const char *dirname, int len,
866 const struct path_simplify *simplify)
867{
868 /* The "len-1" is to strip the final '/' */
869 switch (directory_exists_in_index(dirname, len-1)) {
870 case index_directory:
871 return recurse_into_directory;
872
873 case index_gitdir:
874 if (dir->flags & DIR_SHOW_OTHER_DIRECTORIES)
875 return ignore_directory;
876 return show_directory;
877
878 case index_nonexistent:
879 if (dir->flags & DIR_SHOW_OTHER_DIRECTORIES)
880 break;
881 if (!(dir->flags & DIR_NO_GITLINKS)) {
882 unsigned char sha1[20];
883 if (resolve_gitlink_ref(dirname, "HEAD", sha1) == 0)
884 return show_directory;
885 }
886 return recurse_into_directory;
887 }
888
889 /* This is the "show_other_directories" case */
890 if (!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))
891 return show_directory;
892 if (!read_directory_recursive(dir, dirname, len, 1, simplify))
893 return ignore_directory;
894 return show_directory;
895}
896
897/*
898 * This is an inexact early pruning of any recursive directory
899 * reading - if the path cannot possibly be in the pathspec,
900 * return true, and we'll skip it early.
901 */
902static int simplify_away(const char *path, int pathlen, const struct path_simplify *simplify)
903{
904 if (simplify) {
905 for (;;) {
906 const char *match = simplify->path;
907 int len = simplify->len;
908
909 if (!match)
910 break;
911 if (len > pathlen)
912 len = pathlen;
913 if (!memcmp(path, match, len))
914 return 0;
915 simplify++;
916 }
917 return 1;
918 }
919 return 0;
920}
921
922/*
923 * This function tells us whether an excluded path matches a
924 * list of "interesting" pathspecs. That is, whether a path matched
925 * by any of the pathspecs could possibly be ignored by excluding
926 * the specified path. This can happen if:
927 *
928 * 1. the path is mentioned explicitly in the pathspec
929 *
930 * 2. the path is a directory prefix of some element in the
931 * pathspec
932 */
933static int exclude_matches_pathspec(const char *path, int len,
934 const struct path_simplify *simplify)
935{
936 if (simplify) {
937 for (; simplify->path; simplify++) {
938 if (len == simplify->len
939 && !memcmp(path, simplify->path, len))
940 return 1;
941 if (len < simplify->len
942 && simplify->path[len] == '/'
943 && !memcmp(path, simplify->path, len))
944 return 1;
945 }
946 }
947 return 0;
948}
949
950static int get_index_dtype(const char *path, int len)
951{
952 int pos;
953 struct cache_entry *ce;
954
955 ce = cache_name_exists(path, len, 0);
956 if (ce) {
957 if (!ce_uptodate(ce))
958 return DT_UNKNOWN;
959 if (S_ISGITLINK(ce->ce_mode))
960 return DT_DIR;
961 /*
962 * Nobody actually cares about the
963 * difference between DT_LNK and DT_REG
964 */
965 return DT_REG;
966 }
967
968 /* Try to look it up as a directory */
969 pos = cache_name_pos(path, len);
970 if (pos >= 0)
971 return DT_UNKNOWN;
972 pos = -pos-1;
973 while (pos < active_nr) {
974 ce = active_cache[pos++];
975 if (strncmp(ce->name, path, len))
976 break;
977 if (ce->name[len] > '/')
978 break;
979 if (ce->name[len] < '/')
980 continue;
981 if (!ce_uptodate(ce))
982 break; /* continue? */
983 return DT_DIR;
984 }
985 return DT_UNKNOWN;
986}
987
988static int get_dtype(struct dirent *de, const char *path, int len)
989{
990 int dtype = de ? DTYPE(de) : DT_UNKNOWN;
991 struct stat st;
992
993 if (dtype != DT_UNKNOWN)
994 return dtype;
995 dtype = get_index_dtype(path, len);
996 if (dtype != DT_UNKNOWN)
997 return dtype;
998 if (lstat(path, &st))
999 return dtype;
1000 if (S_ISREG(st.st_mode))
1001 return DT_REG;
1002 if (S_ISDIR(st.st_mode))
1003 return DT_DIR;
1004 if (S_ISLNK(st.st_mode))
1005 return DT_LNK;
1006 return dtype;
1007}
1008
1009enum path_treatment {
1010 path_ignored,
1011 path_handled,
1012 path_recurse
1013};
1014
1015static enum path_treatment treat_one_path(struct dir_struct *dir,
1016 struct strbuf *path,
1017 const struct path_simplify *simplify,
1018 int dtype, struct dirent *de)
1019{
1020 int exclude = excluded(dir, path->buf, &dtype);
1021 if (exclude && (dir->flags & DIR_COLLECT_IGNORED)
1022 && exclude_matches_pathspec(path->buf, path->len, simplify))
1023 dir_add_ignored(dir, path->buf, path->len);
1024
1025 /*
1026 * Excluded? If we don't explicitly want to show
1027 * ignored files, ignore it
1028 */
1029 if (exclude && !(dir->flags & DIR_SHOW_IGNORED))
1030 return path_ignored;
1031
1032 if (dtype == DT_UNKNOWN)
1033 dtype = get_dtype(de, path->buf, path->len);
1034
1035 /*
1036 * Do we want to see just the ignored files?
1037 * We still need to recurse into directories,
1038 * even if we don't ignore them, since the
1039 * directory may contain files that we do..
1040 */
1041 if (!exclude && (dir->flags & DIR_SHOW_IGNORED)) {
1042 if (dtype != DT_DIR)
1043 return path_ignored;
1044 }
1045
1046 switch (dtype) {
1047 default:
1048 return path_ignored;
1049 case DT_DIR:
1050 strbuf_addch(path, '/');
1051 switch (treat_directory(dir, path->buf, path->len, simplify)) {
1052 case show_directory:
1053 if (exclude != !!(dir->flags
1054 & DIR_SHOW_IGNORED))
1055 return path_ignored;
1056 break;
1057 case recurse_into_directory:
1058 return path_recurse;
1059 case ignore_directory:
1060 return path_ignored;
1061 }
1062 break;
1063 case DT_REG:
1064 case DT_LNK:
1065 break;
1066 }
1067 return path_handled;
1068}
1069
1070static enum path_treatment treat_path(struct dir_struct *dir,
1071 struct dirent *de,
1072 struct strbuf *path,
1073 int baselen,
1074 const struct path_simplify *simplify)
1075{
1076 int dtype;
1077
1078 if (is_dot_or_dotdot(de->d_name) || !strcmp(de->d_name, ".git"))
1079 return path_ignored;
1080 strbuf_setlen(path, baselen);
1081 strbuf_addstr(path, de->d_name);
1082 if (simplify_away(path->buf, path->len, simplify))
1083 return path_ignored;
1084
1085 dtype = DTYPE(de);
1086 return treat_one_path(dir, path, simplify, dtype, de);
1087}
1088
1089/*
1090 * Read a directory tree. We currently ignore anything but
1091 * directories, regular files and symlinks. That's because git
1092 * doesn't handle them at all yet. Maybe that will change some
1093 * day.
1094 *
1095 * Also, we ignore the name ".git" (even if it is not a directory).
1096 * That likely will not change.
1097 */
1098static int read_directory_recursive(struct dir_struct *dir,
1099 const char *base, int baselen,
1100 int check_only,
1101 const struct path_simplify *simplify)
1102{
1103 DIR *fdir;
1104 int contents = 0;
1105 struct dirent *de;
1106 struct strbuf path = STRBUF_INIT;
1107
1108 strbuf_add(&path, base, baselen);
1109
1110 fdir = opendir(path.len ? path.buf : ".");
1111 if (!fdir)
1112 goto out;
1113
1114 while ((de = readdir(fdir)) != NULL) {
1115 switch (treat_path(dir, de, &path, baselen, simplify)) {
1116 case path_recurse:
1117 contents += read_directory_recursive(dir, path.buf,
1118 path.len, 0,
1119 simplify);
1120 continue;
1121 case path_ignored:
1122 continue;
1123 case path_handled:
1124 break;
1125 }
1126 contents++;
1127 if (check_only)
1128 break;
1129 dir_add_name(dir, path.buf, path.len);
1130 }
1131 closedir(fdir);
1132 out:
1133 strbuf_release(&path);
1134
1135 return contents;
1136}
1137
1138static int cmp_name(const void *p1, const void *p2)
1139{
1140 const struct dir_entry *e1 = *(const struct dir_entry **)p1;
1141 const struct dir_entry *e2 = *(const struct dir_entry **)p2;
1142
1143 return cache_name_compare(e1->name, e1->len,
1144 e2->name, e2->len);
1145}
1146
1147static struct path_simplify *create_simplify(const char **pathspec)
1148{
1149 int nr, alloc = 0;
1150 struct path_simplify *simplify = NULL;
1151
1152 if (!pathspec)
1153 return NULL;
1154
1155 for (nr = 0 ; ; nr++) {
1156 const char *match;
1157 if (nr >= alloc) {
1158 alloc = alloc_nr(alloc);
1159 simplify = xrealloc(simplify, alloc * sizeof(*simplify));
1160 }
1161 match = *pathspec++;
1162 if (!match)
1163 break;
1164 simplify[nr].path = match;
1165 simplify[nr].len = simple_length(match);
1166 }
1167 simplify[nr].path = NULL;
1168 simplify[nr].len = 0;
1169 return simplify;
1170}
1171
1172static void free_simplify(struct path_simplify *simplify)
1173{
1174 free(simplify);
1175}
1176
1177static int treat_leading_path(struct dir_struct *dir,
1178 const char *path, int len,
1179 const struct path_simplify *simplify)
1180{
1181 struct strbuf sb = STRBUF_INIT;
1182 int baselen, rc = 0;
1183 const char *cp;
1184
1185 while (len && path[len - 1] == '/')
1186 len--;
1187 if (!len)
1188 return 1;
1189 baselen = 0;
1190 while (1) {
1191 cp = path + baselen + !!baselen;
1192 cp = memchr(cp, '/', path + len - cp);
1193 if (!cp)
1194 baselen = len;
1195 else
1196 baselen = cp - path;
1197 strbuf_setlen(&sb, 0);
1198 strbuf_add(&sb, path, baselen);
1199 if (!is_directory(sb.buf))
1200 break;
1201 if (simplify_away(sb.buf, sb.len, simplify))
1202 break;
1203 if (treat_one_path(dir, &sb, simplify,
1204 DT_DIR, NULL) == path_ignored)
1205 break; /* do not recurse into it */
1206 if (len <= baselen) {
1207 rc = 1;
1208 break; /* finished checking */
1209 }
1210 }
1211 strbuf_release(&sb);
1212 return rc;
1213}
1214
1215int read_directory(struct dir_struct *dir, const char *path, int len, const char **pathspec)
1216{
1217 struct path_simplify *simplify;
1218
1219 if (has_symlink_leading_path(path, len))
1220 return dir->nr;
1221
1222 simplify = create_simplify(pathspec);
1223 if (!len || treat_leading_path(dir, path, len, simplify))
1224 read_directory_recursive(dir, path, len, 0, simplify);
1225 free_simplify(simplify);
1226 qsort(dir->entries, dir->nr, sizeof(struct dir_entry *), cmp_name);
1227 qsort(dir->ignored, dir->ignored_nr, sizeof(struct dir_entry *), cmp_name);
1228 return dir->nr;
1229}
1230
1231int file_exists(const char *f)
1232{
1233 struct stat sb;
1234 return lstat(f, &sb) == 0;
1235}
1236
1237/*
1238 * Given two normalized paths (a trailing slash is ok), if subdir is
1239 * outside dir, return -1. Otherwise return the offset in subdir that
1240 * can be used as relative path to dir.
1241 */
1242int dir_inside_of(const char *subdir, const char *dir)
1243{
1244 int offset = 0;
1245
1246 assert(dir && subdir && *dir && *subdir);
1247
1248 while (*dir && *subdir && *dir == *subdir) {
1249 dir++;
1250 subdir++;
1251 offset++;
1252 }
1253
1254 /* hel[p]/me vs hel[l]/yeah */
1255 if (*dir && *subdir)
1256 return -1;
1257
1258 if (!*subdir)
1259 return !*dir ? offset : -1; /* same dir */
1260
1261 /* foo/[b]ar vs foo/[] */
1262 if (is_dir_sep(dir[-1]))
1263 return is_dir_sep(subdir[-1]) ? offset : -1;
1264
1265 /* foo[/]bar vs foo[] */
1266 return is_dir_sep(*subdir) ? offset + 1 : -1;
1267}
1268
1269int is_inside_dir(const char *dir)
1270{
1271 char cwd[PATH_MAX];
1272 if (!dir)
1273 return 0;
1274 if (!getcwd(cwd, sizeof(cwd)))
1275 die_errno("can't find the current directory");
1276 return dir_inside_of(cwd, dir) >= 0;
1277}
1278
1279int is_empty_dir(const char *path)
1280{
1281 DIR *dir = opendir(path);
1282 struct dirent *e;
1283 int ret = 1;
1284
1285 if (!dir)
1286 return 0;
1287
1288 while ((e = readdir(dir)) != NULL)
1289 if (!is_dot_or_dotdot(e->d_name)) {
1290 ret = 0;
1291 break;
1292 }
1293
1294 closedir(dir);
1295 return ret;
1296}
1297
1298static int remove_dir_recurse(struct strbuf *path, int flag, int *kept_up)
1299{
1300 DIR *dir;
1301 struct dirent *e;
1302 int ret = 0, original_len = path->len, len, kept_down = 0;
1303 int only_empty = (flag & REMOVE_DIR_EMPTY_ONLY);
1304 int keep_toplevel = (flag & REMOVE_DIR_KEEP_TOPLEVEL);
1305 unsigned char submodule_head[20];
1306
1307 if ((flag & REMOVE_DIR_KEEP_NESTED_GIT) &&
1308 !resolve_gitlink_ref(path->buf, "HEAD", submodule_head)) {
1309 /* Do not descend and nuke a nested git work tree. */
1310 if (kept_up)
1311 *kept_up = 1;
1312 return 0;
1313 }
1314
1315 flag &= ~REMOVE_DIR_KEEP_TOPLEVEL;
1316 dir = opendir(path->buf);
1317 if (!dir) {
1318 /* an empty dir could be removed even if it is unreadble */
1319 if (!keep_toplevel)
1320 return rmdir(path->buf);
1321 else
1322 return -1;
1323 }
1324 if (path->buf[original_len - 1] != '/')
1325 strbuf_addch(path, '/');
1326
1327 len = path->len;
1328 while ((e = readdir(dir)) != NULL) {
1329 struct stat st;
1330 if (is_dot_or_dotdot(e->d_name))
1331 continue;
1332
1333 strbuf_setlen(path, len);
1334 strbuf_addstr(path, e->d_name);
1335 if (lstat(path->buf, &st))
1336 ; /* fall thru */
1337 else if (S_ISDIR(st.st_mode)) {
1338 if (!remove_dir_recurse(path, flag, &kept_down))
1339 continue; /* happy */
1340 } else if (!only_empty && !unlink(path->buf))
1341 continue; /* happy, too */
1342
1343 /* path too long, stat fails, or non-directory still exists */
1344 ret = -1;
1345 break;
1346 }
1347 closedir(dir);
1348
1349 strbuf_setlen(path, original_len);
1350 if (!ret && !keep_toplevel && !kept_down)
1351 ret = rmdir(path->buf);
1352 else if (kept_up)
1353 /*
1354 * report the uplevel that it is not an error that we
1355 * did not rmdir() our directory.
1356 */
1357 *kept_up = !ret;
1358 return ret;
1359}
1360
1361int remove_dir_recursively(struct strbuf *path, int flag)
1362{
1363 return remove_dir_recurse(path, flag, NULL);
1364}
1365
1366void setup_standard_excludes(struct dir_struct *dir)
1367{
1368 const char *path;
1369
1370 dir->exclude_per_dir = ".gitignore";
1371 path = git_path("info/exclude");
1372 if (!access(path, R_OK))
1373 add_excludes_from_file(dir, path);
1374 if (excludes_file && !access(excludes_file, R_OK))
1375 add_excludes_from_file(dir, excludes_file);
1376}
1377
1378int remove_path(const char *name)
1379{
1380 char *slash;
1381
1382 if (unlink(name) && errno != ENOENT)
1383 return -1;
1384
1385 slash = strrchr(name, '/');
1386 if (slash) {
1387 char *dirs = xstrdup(name);
1388 slash = dirs + (slash - name);
1389 do {
1390 *slash = '\0';
1391 } while (rmdir(dirs) == 0 && (slash = strrchr(dirs, '/')));
1392 free(dirs);
1393 }
1394 return 0;
1395}
1396
1397static int pathspec_item_cmp(const void *a_, const void *b_)
1398{
1399 struct pathspec_item *a, *b;
1400
1401 a = (struct pathspec_item *)a_;
1402 b = (struct pathspec_item *)b_;
1403 return strcmp(a->match, b->match);
1404}
1405
1406int init_pathspec(struct pathspec *pathspec, const char **paths)
1407{
1408 const char **p = paths;
1409 int i;
1410
1411 memset(pathspec, 0, sizeof(*pathspec));
1412 if (!p)
1413 return 0;
1414 while (*p)
1415 p++;
1416 pathspec->raw = paths;
1417 pathspec->nr = p - paths;
1418 if (!pathspec->nr)
1419 return 0;
1420
1421 pathspec->items = xmalloc(sizeof(struct pathspec_item)*pathspec->nr);
1422 for (i = 0; i < pathspec->nr; i++) {
1423 struct pathspec_item *item = pathspec->items+i;
1424 const char *path = paths[i];
1425
1426 item->match = path;
1427 item->len = strlen(path);
1428 item->use_wildcard = !no_wildcard(path);
1429 if (item->use_wildcard)
1430 pathspec->has_wildcard = 1;
1431 }
1432
1433 qsort(pathspec->items, pathspec->nr,
1434 sizeof(struct pathspec_item), pathspec_item_cmp);
1435
1436 return 0;
1437}
1438
1439void free_pathspec(struct pathspec *pathspec)
1440{
1441 free(pathspec->items);
1442 pathspec->items = NULL;
1443}