]> git.ipfire.org Git - thirdparty/git.git/blame - dir.c
wildmatch: rename constants and update prototype
[thirdparty/git.git] / dir.c
CommitLineData
453ec4bd
LT
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 */
453ec4bd
LT
8#include "cache.h"
9#include "dir.h"
09595258 10#include "refs.h"
237ec6e4 11#include "wildmatch.h"
453ec4bd 12
9fc42d60
LT
13struct path_simplify {
14 int len;
15 const char *path;
16};
17
dba2e203 18static int read_directory_recursive(struct dir_struct *dir, const char *path, int len,
09595258 19 int check_only, const struct path_simplify *simplify);
caa6b782 20static int get_dtype(struct dirent *de, const char *path, int len);
09595258 21
8cf2a84e
JJ
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
f950eb95 38static size_t common_prefix_len(const char **pathspec)
3c6a370b 39{
4a085b16
JH
40 const char *n, *first;
41 size_t max = 0;
3c6a370b
LT
42
43 if (!pathspec)
4a085b16
JH
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 }
3c6a370b 61 }
4a085b16 62 return max;
3c6a370b
LT
63}
64
f950eb95
CB
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
1d8842d9
LT
76int fill_directory(struct dir_struct *dir, const char **pathspec)
77{
4a085b16 78 size_t len;
1d8842d9
LT
79
80 /*
81 * Calculate common prefix for the pathspec, and
82 * use that to optimize the directory walk
83 */
4a085b16 84 len = common_prefix_len(pathspec);
1d8842d9
LT
85
86 /* Read the directory and prune it */
2b189435 87 read_directory(dir, pathspec ? *pathspec : "", len, pathspec);
dba2e203 88 return len;
1d8842d9
LT
89}
90
bc96cc87
NTND
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
e813d50e 106/*
2c5b0115 107 * Does 'match' match the given name?
e813d50e
JH
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 */
3c6a370b
LT
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 */
88ea8112 123 if (!*match)
e813d50e 124 return MATCHED_RECURSIVELY;
3c6a370b 125
21444f18
JJ
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 }
88ea8112
LT
150 }
151
152
3c6a370b
LT
153 /*
154 * If we don't match the matchstring exactly,
155 * we need to match by fnmatch
156 */
88ea8112 157 matchlen = strlen(match);
21444f18
JJ
158 if (strncmp_icase(match, name, matchlen))
159 return !fnmatch_icase(match, name, 0) ? MATCHED_FNMATCH : 0;
3c6a370b 160
f2d0df71 161 if (namelen == matchlen)
e813d50e
JH
162 return MATCHED_EXACTLY;
163 if (match[matchlen-1] == '/' || name[matchlen] == '/')
164 return MATCHED_RECURSIVELY;
165 return 0;
3c6a370b
LT
166}
167
e813d50e
JH
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 */
0b50922a
CB
176int match_pathspec(const char **pathspec, const char *name, int namelen,
177 int prefix, char *seen)
3c6a370b 178{
0b50922a
CB
179 int i, retval = 0;
180
181 if (!pathspec)
182 return 1;
3c6a370b
LT
183
184 name += prefix;
185 namelen -= prefix;
186
0b50922a 187 for (i = 0; pathspec[i] != NULL; i++) {
e813d50e 188 int how;
0b50922a
CB
189 const char *match = pathspec[i] + prefix;
190 if (seen && seen[i] == MATCHED_EXACTLY)
3c6a370b 191 continue;
e813d50e
JH
192 how = match_one(match, name, namelen);
193 if (how) {
194 if (retval < how)
195 retval = how;
0b50922a
CB
196 if (seen && seen[i] < how)
197 seen[i] = how;
3c6a370b
LT
198 }
199 }
200 return retval;
201}
202
61cf2820
NTND
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
33e0f62b 234 if (item->use_wildcard && !fnmatch(match, name, 0))
61cf2820
NTND
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
fcd631ed
NTND
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
68492fc7
LK
307static int no_wildcard(const char *string)
308{
fcd631ed 309 return string[simple_length(string)] == '\0';
68492fc7
LK
310}
311
82dce998
NTND
312void parse_exclude_pattern(const char **pattern,
313 int *patternlen,
314 int *flags,
315 int *nowildcardlen)
84460eec
NTND
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
453ec4bd
LT
350void add_exclude(const char *string, const char *base,
351 int baselen, struct exclude_list *which)
352{
d6b8fc30 353 struct exclude *x;
84460eec
NTND
354 int patternlen;
355 int flags;
356 int nowildcardlen;
453ec4bd 357
84460eec
NTND
358 parse_exclude_pattern(&string, &patternlen, &flags, &nowildcardlen);
359 if (flags & EXC_FLAG_MUSTBEDIR) {
d6b8fc30 360 char *s;
84460eec 361 x = xmalloc(sizeof(*x) + patternlen + 1);
4b25d091 362 s = (char *)(x+1);
84460eec
NTND
363 memcpy(s, string, patternlen);
364 s[patternlen] = '\0';
d6b8fc30 365 x->pattern = s;
d6b8fc30
JH
366 } else {
367 x = xmalloc(sizeof(*x));
368 x->pattern = string;
369 }
84460eec
NTND
370 x->patternlen = patternlen;
371 x->nowildcardlen = nowildcardlen;
453ec4bd
LT
372 x->base = base;
373 x->baselen = baselen;
d6b8fc30 374 x->flags = flags;
686a4a06 375 ALLOC_GROW(which->excludes, which->nr + 1, which->alloc);
453ec4bd
LT
376 which->excludes[which->nr++] = x;
377}
378
c28b3d6e
NTND
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
0fd0e241
NTND
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
cb097534
NTND
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)
453ec4bd 420{
c470701a 421 struct stat st;
453ec4bd 422 int fd, i;
9d14017a 423 size_t size = 0;
453ec4bd
LT
424 char *buf, *entry;
425
426 fd = open(fname, O_RDONLY);
c28b3d6e
NTND
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;
45d76f17
NTND
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 }
453ec4bd 441 }
c28b3d6e
NTND
442 else {
443 size = xsize_t(st.st_size);
444 if (size == 0) {
445 close(fd);
446 return 0;
447 }
45d76f17 448 buf = xmalloc(size+1);
c28b3d6e 449 if (read_in_full(fd, buf, size) != size) {
45d76f17 450 free(buf);
c28b3d6e
NTND
451 close(fd);
452 return -1;
453 }
45d76f17 454 buf[size++] = '\n';
c28b3d6e 455 close(fd);
6ba78238 456 }
453ec4bd 457
63d285c8
JH
458 if (buf_p)
459 *buf_p = buf;
453ec4bd 460 entry = buf;
45d76f17
NTND
461 for (i = 0; i < size; i++) {
462 if (buf[i] == '\n') {
453ec4bd
LT
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;
453ec4bd
LT
471}
472
473void add_excludes_from_file(struct dir_struct *dir, const char *fname)
474{
cb097534
NTND
475 if (add_excludes_from_file_to_list(fname, "", 0, NULL,
476 &dir->exclude_list[EXC_FILE], 0) < 0)
453ec4bd
LT
477 die("cannot use %s as an exclude file", fname);
478}
479
63d285c8 480static void prep_exclude(struct dir_struct *dir, const char *base, int baselen)
453ec4bd 481{
63d285c8
JH
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);
453ec4bd 501 }
453ec4bd 502
63d285c8
JH
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;
453ec4bd 508
63d285c8
JH
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);
cb097534
NTND
525 add_excludes_from_file_to_list(dir->basebuf,
526 dir->basebuf, stk->baselen,
527 &stk->filebuf, el, 1);
63d285c8
JH
528 dir->exclude_stack = stk;
529 current = stk->baselen;
530 }
531 dir->basebuf[baselen] = '\0';
453ec4bd
LT
532}
533
82dce998
NTND
534int match_basename(const char *basename, int basenamelen,
535 const char *pattern, int prefix, int patternlen,
536 int flags)
593cb880
NTND
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
82dce998
NTND
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)
b5592632
NTND
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
237ec6e4 597 return wildmatch(pattern, name,
9b3497ca
NTND
598 ignore_case ? WM_CASEFOLD : 0,
599 NULL) == 0;
b5592632
NTND
600}
601
2c5b0115 602/* Scan the list and let the last match determine the fate.
453ec4bd
LT
603 * Return 1 for exclude, 0 for include and -1 for undecided.
604 */
cb097534
NTND
605int excluded_from_list(const char *pathname,
606 int pathlen, const char *basename, int *dtype,
607 struct exclude_list *el)
453ec4bd
LT
608{
609 int i;
610
35a94d44
NTND
611 if (!el->nr)
612 return -1; /* undefined */
d6b8fc30 613
35a94d44
NTND
614 for (i = el->nr - 1; 0 <= i; i--) {
615 struct exclude *x = el->excludes[i];
b5592632 616 const char *exclude = x->pattern;
84460eec 617 int to_exclude = x->flags & EXC_FLAG_NEGATIVE ? 0 : 1;
b5592632 618 int prefix = x->nowildcardlen;
35a94d44
NTND
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 }
d6b8fc30 626
35a94d44 627 if (x->flags & EXC_FLAG_NODIR) {
593cb880
NTND
628 if (match_basename(basename,
629 pathlen - (basename - pathname),
630 exclude, prefix, x->patternlen,
631 x->flags))
632 return to_exclude;
35a94d44
NTND
633 continue;
634 }
635
b5592632
NTND
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))
f9f6e2ce 640 return to_exclude;
453ec4bd
LT
641 }
642 return -1; /* undecided */
643}
644
0d316f0c 645static int excluded(struct dir_struct *dir, const char *pathname, int *dtype_p)
453ec4bd
LT
646{
647 int pathlen = strlen(pathname);
648 int st;
68492fc7
LK
649 const char *basename = strrchr(pathname, '/');
650 basename = (basename) ? basename+1 : pathname;
453ec4bd 651
63d285c8 652 prep_exclude(dir, pathname, basename-pathname);
453ec4bd 653 for (st = EXC_CMDL; st <= EXC_FILE; st++) {
cb097534
NTND
654 switch (excluded_from_list(pathname, pathlen, basename,
655 dtype_p, &dir->exclude_list[st])) {
453ec4bd
LT
656 case 0:
657 return 0;
658 case 1:
659 return 1;
660 }
661 }
662 return 0;
663}
664
eb41775e
JH
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
93921b07 677/*
782cd4c0 678 * Is this name excluded? This is for a caller like show_files() that
93921b07
JH
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 */
782cd4c0
JH
685int path_excluded(struct path_exclude_check *check,
686 const char *name, int namelen, int *dtype)
eb41775e 687{
782cd4c0 688 int i;
eb41775e
JH
689 struct strbuf *path = &check->path;
690
782cd4c0
JH
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
93921b07 699 if (path->len &&
782cd4c0
JH
700 path->len <= namelen &&
701 !memcmp(name, path->buf, path->len) &&
702 (!name[path->len] || name[path->len] == '/'))
93921b07
JH
703 return 1;
704
eb41775e 705 strbuf_setlen(path, 0);
782cd4c0
JH
706 for (i = 0; name[i]; i++) {
707 int ch = name[i];
eb41775e
JH
708
709 if (ch == '/') {
782cd4c0
JH
710 int dt = DT_DIR;
711 if (excluded(check->dir, path->buf, &dt))
eb41775e
JH
712 return 1;
713 }
714 strbuf_addch(path, ch);
715 }
93921b07
JH
716
717 /* An entry in the index; cannot be a directory with subentries */
718 strbuf_setlen(path, 0);
719
782cd4c0 720 return excluded(check->dir, name, dtype);
eb41775e
JH
721}
722
f3fa1838
JH
723static struct dir_entry *dir_entry_new(const char *pathname, int len)
724{
453ec4bd
LT
725 struct dir_entry *ent;
726
453ec4bd
LT
727 ent = xmalloc(sizeof(*ent) + len + 1);
728 ent->len = len;
729 memcpy(ent->name, pathname, len);
730 ent->name[len] = 0;
4d06f8ac 731 return ent;
453ec4bd
LT
732}
733
159b3212 734static struct dir_entry *dir_add_name(struct dir_struct *dir, const char *pathname, int len)
6815e569 735{
0a9b88b7 736 if (cache_name_exists(pathname, len, ignore_case))
6815e569
JK
737 return NULL;
738
25fd2f7a 739 ALLOC_GROW(dir->entries, dir->nr+1, dir->alloc);
6815e569
JK
740 return dir->entries[dir->nr++] = dir_entry_new(pathname, len);
741}
742
108da0db 743struct dir_entry *dir_add_ignored(struct dir_struct *dir, const char *pathname, int len)
2abd31b0 744{
6e4f981f 745 if (!cache_name_is_other(pathname, len))
2abd31b0
JK
746 return NULL;
747
25fd2f7a 748 ALLOC_GROW(dir->ignored, dir->ignored_nr+1, dir->ignored_alloc);
2abd31b0
JK
749 return dir->ignored[dir->ignored_nr++] = dir_entry_new(pathname, len);
750}
751
09595258
LT
752enum exist_status {
753 index_nonexistent = 0,
754 index_directory,
4b05548f 755 index_gitdir
09595258
LT
756};
757
5102c617
JJ
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
09595258
LT
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)
453ec4bd 799{
5102c617
JJ
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);
09595258
LT
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;
7a51ed66 819 if (!endchar && S_ISGITLINK(ce->ce_mode))
09595258
LT
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
302b9282 854 * 'no_gitlinks' set we treat it as a gitlink, and show it
09595258
LT
855 * as a directory.
856 * (c) otherwise, we recurse into it.
857 */
858enum directory_treatment {
859 show_directory,
860 ignore_directory,
4b05548f 861 recurse_into_directory
09595258
LT
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:
7c4c97c0 874 if (dir->flags & DIR_SHOW_OTHER_DIRECTORIES)
ab22aed3 875 return ignore_directory;
09595258
LT
876 return show_directory;
877
878 case index_nonexistent:
7c4c97c0 879 if (dir->flags & DIR_SHOW_OTHER_DIRECTORIES)
09595258 880 break;
7c4c97c0 881 if (!(dir->flags & DIR_NO_GITLINKS)) {
09595258
LT
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 */
7c4c97c0 890 if (!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))
09595258 891 return show_directory;
dba2e203 892 if (!read_directory_recursive(dir, dirname, len, 1, simplify))
09595258
LT
893 return ignore_directory;
894 return show_directory;
453ec4bd
LT
895}
896
9fc42d60
LT
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
29209cbe
JK
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)
e96980ef
JK
935{
936 if (simplify) {
937 for (; simplify->path; simplify++) {
938 if (len == simplify->len
939 && !memcmp(path, simplify->path, len))
940 return 1;
29209cbe
JK
941 if (len < simplify->len
942 && simplify->path[len] == '/'
943 && !memcmp(path, simplify->path, len))
944 return 1;
e96980ef
JK
945 }
946 }
947 return 0;
948}
949
443e061a
LT
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
caa6b782 988static int get_dtype(struct dirent *de, const char *path, int len)
07134421 989{
6831a88a 990 int dtype = de ? DTYPE(de) : DT_UNKNOWN;
07134421
LT
991 struct stat st;
992
993 if (dtype != DT_UNKNOWN)
994 return dtype;
443e061a
LT
995 dtype = get_index_dtype(path, len);
996 if (dtype != DT_UNKNOWN)
997 return dtype;
998 if (lstat(path, &st))
07134421
LT
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
53cc5356
JH
1009enum path_treatment {
1010 path_ignored,
1011 path_handled,
4b05548f 1012 path_recurse
53cc5356
JH
1013};
1014
16e2cfa9 1015static enum path_treatment treat_one_path(struct dir_struct *dir,
49dc2cc2 1016 struct strbuf *path,
16e2cfa9
JH
1017 const struct path_simplify *simplify,
1018 int dtype, struct dirent *de)
53cc5356 1019{
49dc2cc2 1020 int exclude = excluded(dir, path->buf, &dtype);
53cc5356 1021 if (exclude && (dir->flags & DIR_COLLECT_IGNORED)
49dc2cc2
RS
1022 && exclude_matches_pathspec(path->buf, path->len, simplify))
1023 dir_add_ignored(dir, path->buf, path->len);
53cc5356
JH
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)
49dc2cc2 1033 dtype = get_dtype(de, path->buf, path->len);
53cc5356
JH
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:
49dc2cc2
RS
1050 strbuf_addch(path, '/');
1051 switch (treat_directory(dir, path->buf, path->len, simplify)) {
53cc5356
JH
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
16e2cfa9
JH
1070static enum path_treatment treat_path(struct dir_struct *dir,
1071 struct dirent *de,
49dc2cc2 1072 struct strbuf *path,
16e2cfa9 1073 int baselen,
49dc2cc2 1074 const struct path_simplify *simplify)
16e2cfa9
JH
1075{
1076 int dtype;
1077
1078 if (is_dot_or_dotdot(de->d_name) || !strcmp(de->d_name, ".git"))
1079 return path_ignored;
49dc2cc2
RS
1080 strbuf_setlen(path, baselen);
1081 strbuf_addstr(path, de->d_name);
1082 if (simplify_away(path->buf, path->len, simplify))
16e2cfa9
JH
1083 return path_ignored;
1084
1085 dtype = DTYPE(de);
49dc2cc2 1086 return treat_one_path(dir, path, simplify, dtype, de);
16e2cfa9
JH
1087}
1088
453ec4bd
LT
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 */
53cc5356
JH
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)
453ec4bd 1102{
1528d247 1103 DIR *fdir;
453ec4bd 1104 int contents = 0;
02cb6753 1105 struct dirent *de;
bef36921 1106 struct strbuf path = STRBUF_INIT;
453ec4bd 1107
bef36921 1108 strbuf_add(&path, base, baselen);
02cb6753 1109
1528d247
RS
1110 fdir = opendir(path.len ? path.buf : ".");
1111 if (!fdir)
1112 goto out;
1113
02cb6753 1114 while ((de = readdir(fdir)) != NULL) {
bef36921 1115 switch (treat_path(dir, de, &path, baselen, simplify)) {
02cb6753 1116 case path_recurse:
bef36921
JH
1117 contents += read_directory_recursive(dir, path.buf,
1118 path.len, 0,
1119 simplify);
02cb6753
NTND
1120 continue;
1121 case path_ignored:
1122 continue;
1123 case path_handled:
1124 break;
453ec4bd 1125 }
02cb6753
NTND
1126 contents++;
1127 if (check_only)
1528d247
RS
1128 break;
1129 dir_add_name(dir, path.buf, path.len);
453ec4bd 1130 }
02cb6753 1131 closedir(fdir);
1528d247 1132 out:
bef36921 1133 strbuf_release(&path);
453ec4bd
LT
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
9fc42d60
LT
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{
8e0f7003 1174 free(simplify);
9fc42d60
LT
1175}
1176
48ffef96
JH
1177static int treat_leading_path(struct dir_struct *dir,
1178 const char *path, int len,
1179 const struct path_simplify *simplify)
1180{
49dc2cc2
RS
1181 struct strbuf sb = STRBUF_INIT;
1182 int baselen, rc = 0;
48ffef96
JH
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;
49dc2cc2
RS
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,
48ffef96 1204 DT_DIR, NULL) == path_ignored)
49dc2cc2
RS
1205 break; /* do not recurse into it */
1206 if (len <= baselen) {
1207 rc = 1;
1208 break; /* finished checking */
1209 }
48ffef96 1210 }
49dc2cc2
RS
1211 strbuf_release(&sb);
1212 return rc;
48ffef96
JH
1213}
1214
dba2e203 1215int read_directory(struct dir_struct *dir, const char *path, int len, const char **pathspec)
9fc42d60 1216{
725b0605 1217 struct path_simplify *simplify;
b4189aa8 1218
dba2e203 1219 if (has_symlink_leading_path(path, len))
725b0605
JH
1220 return dir->nr;
1221
1222 simplify = create_simplify(pathspec);
48ffef96
JH
1223 if (!len || treat_leading_path(dir, path, len, simplify))
1224 read_directory_recursive(dir, path, len, 0, simplify);
9fc42d60 1225 free_simplify(simplify);
453ec4bd 1226 qsort(dir->entries, dir->nr, sizeof(struct dir_entry *), cmp_name);
2abd31b0 1227 qsort(dir->ignored, dir->ignored_nr, sizeof(struct dir_entry *), cmp_name);
453ec4bd
LT
1228 return dir->nr;
1229}
c91f0d92 1230
686a4a06 1231int file_exists(const char *f)
c91f0d92 1232{
686a4a06 1233 struct stat sb;
a50f9fc5 1234 return lstat(f, &sb) == 0;
c91f0d92 1235}
e6636747
JS
1236
1237/*
9b125da4
NTND
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.
e6636747 1241 */
9b125da4 1242int dir_inside_of(const char *subdir, const char *dir)
e6636747 1243{
9b125da4 1244 int offset = 0;
e6636747 1245
9b125da4 1246 assert(dir && subdir && *dir && *subdir);
e6636747 1247
9b125da4 1248 while (*dir && *subdir && *dir == *subdir) {
e6636747 1249 dir++;
9b125da4
NTND
1250 subdir++;
1251 offset++;
490544b1 1252 }
9b125da4
NTND
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;
e6636747
JS
1267}
1268
1269int is_inside_dir(const char *dir)
1270{
b892913d
NTND
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;
e6636747 1277}
7155b727 1278
55892d23
AP
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
ae2f203e 1298static int remove_dir_recurse(struct strbuf *path, int flag, int *kept_up)
7155b727 1299{
a0f4afbe 1300 DIR *dir;
7155b727 1301 struct dirent *e;
ae2f203e 1302 int ret = 0, original_len = path->len, len, kept_down = 0;
a0f4afbe 1303 int only_empty = (flag & REMOVE_DIR_EMPTY_ONLY);
c844a803 1304 int keep_toplevel = (flag & REMOVE_DIR_KEEP_TOPLEVEL);
a0f4afbe 1305 unsigned char submodule_head[20];
7155b727 1306
a0f4afbe 1307 if ((flag & REMOVE_DIR_KEEP_NESTED_GIT) &&
ae2f203e 1308 !resolve_gitlink_ref(path->buf, "HEAD", submodule_head)) {
a0f4afbe 1309 /* Do not descend and nuke a nested git work tree. */
ae2f203e
JH
1310 if (kept_up)
1311 *kept_up = 1;
a0f4afbe 1312 return 0;
ae2f203e 1313 }
a0f4afbe 1314
ae2f203e 1315 flag &= ~REMOVE_DIR_KEEP_TOPLEVEL;
a0f4afbe 1316 dir = opendir(path->buf);
c844a803 1317 if (!dir) {
ae2f203e 1318 /* an empty dir could be removed even if it is unreadble */
c844a803
JH
1319 if (!keep_toplevel)
1320 return rmdir(path->buf);
1321 else
1322 return -1;
1323 }
7155b727
JS
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;
8ca12c0d
AP
1330 if (is_dot_or_dotdot(e->d_name))
1331 continue;
7155b727
JS
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)) {
ae2f203e 1338 if (!remove_dir_recurse(path, flag, &kept_down))
7155b727
JS
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);
ae2f203e 1350 if (!ret && !keep_toplevel && !kept_down)
7155b727 1351 ret = rmdir(path->buf);
ae2f203e
JH
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;
7155b727
JS
1358 return ret;
1359}
039bc64e 1360
ae2f203e
JH
1361int remove_dir_recursively(struct strbuf *path, int flag)
1362{
1363 return remove_dir_recurse(path, flag, NULL);
1364}
1365
039bc64e
JH
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}
4a92d1bf
AR
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';
3fc0d131 1391 } while (rmdir(dirs) == 0 && (slash = strrchr(dirs, '/')));
4a92d1bf
AR
1392 free(dirs);
1393 }
1394 return 0;
1395}
1396
86e4ca69
NTND
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
0602f3e9
NTND
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);
33e0f62b
JH
1428 item->use_wildcard = !no_wildcard(path);
1429 if (item->use_wildcard)
d38f2809 1430 pathspec->has_wildcard = 1;
0602f3e9 1431 }
86e4ca69
NTND
1432
1433 qsort(pathspec->items, pathspec->nr,
1434 sizeof(struct pathspec_item), pathspec_item_cmp);
1435
0602f3e9
NTND
1436 return 0;
1437}
1438
1439void free_pathspec(struct pathspec *pathspec)
1440{
1441 free(pathspec->items);
1442 pathspec->items = NULL;
1443}