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