3 #include "unpack-trees.h"
8 static const char *get_mode(const char *str, unsigned int *modep)
11 unsigned int mode = 0;
16 while ((c = *str++) != ' ') {
17 if (c < '0' || c > '7')
19 mode = (mode << 3) + (c - '0');
25 static int decode_tree_entry(struct tree_desc *desc, const char *buf, unsigned long size, struct strbuf *err)
28 unsigned int mode, len;
30 if (size < 23 || buf[size - 21]) {
31 strbuf_addstr(err, _("too-short tree object"));
35 path = get_mode(buf, &mode);
37 strbuf_addstr(err, _("malformed mode in tree entry"));
41 strbuf_addstr(err, _("empty filename in tree entry"));
44 len = strlen(path) + 1;
46 /* Initialize the descriptor entry */
47 desc->entry.path = path;
48 desc->entry.mode = canon_mode(mode);
49 desc->entry.oid = (const struct object_id *)(path + len);
54 static int init_tree_desc_internal(struct tree_desc *desc, const void *buffer, unsigned long size, struct strbuf *err)
56 desc->buffer = buffer;
59 return decode_tree_entry(desc, buffer, size, err);
63 void init_tree_desc(struct tree_desc *desc, const void *buffer, unsigned long size)
65 struct strbuf err = STRBUF_INIT;
66 if (init_tree_desc_internal(desc, buffer, size, &err))
71 int init_tree_desc_gently(struct tree_desc *desc, const void *buffer, unsigned long size)
73 struct strbuf err = STRBUF_INIT;
74 int result = init_tree_desc_internal(desc, buffer, size, &err);
81 void *fill_tree_descriptor(struct tree_desc *desc, const unsigned char *sha1)
83 unsigned long size = 0;
87 buf = read_object_with_reference(sha1, tree_type, &size, NULL);
89 die("unable to read tree %s", sha1_to_hex(sha1));
91 init_tree_desc(desc, buf, size);
95 static void entry_clear(struct name_entry *a)
97 memset(a, 0, sizeof(*a));
100 static void entry_extract(struct tree_desc *t, struct name_entry *a)
105 static int update_tree_entry_internal(struct tree_desc *desc, struct strbuf *err)
107 const void *buf = desc->buffer;
108 const unsigned char *end = desc->entry.oid->hash + 20;
109 unsigned long size = desc->size;
110 unsigned long len = end - (const unsigned char *)buf;
113 die(_("too-short tree file"));
119 return decode_tree_entry(desc, buf, size, err);
123 void update_tree_entry(struct tree_desc *desc)
125 struct strbuf err = STRBUF_INIT;
126 if (update_tree_entry_internal(desc, &err))
128 strbuf_release(&err);
131 int update_tree_entry_gently(struct tree_desc *desc)
133 struct strbuf err = STRBUF_INIT;
134 if (update_tree_entry_internal(desc, &err)) {
135 error("%s", err.buf);
136 strbuf_release(&err);
137 /* Stop processing this tree after error */
141 strbuf_release(&err);
145 int tree_entry(struct tree_desc *desc, struct name_entry *entry)
150 *entry = desc->entry;
151 update_tree_entry(desc);
155 int tree_entry_gently(struct tree_desc *desc, struct name_entry *entry)
160 *entry = desc->entry;
161 if (update_tree_entry_gently(desc))
166 void setup_traverse_info(struct traverse_info *info, const char *base)
168 int pathlen = strlen(base);
169 static struct traverse_info dummy;
171 memset(info, 0, sizeof(*info));
172 if (pathlen && base[pathlen-1] == '/')
174 info->pathlen = pathlen ? pathlen + 1 : 0;
175 info->name.path = base;
176 info->name.oid = (void *)(base + pathlen + 1);
181 char *make_traverse_path(char *path, const struct traverse_info *info, const struct name_entry *n)
183 int len = tree_entry_len(n);
184 int pathlen = info->pathlen;
186 path[pathlen + len] = 0;
188 memcpy(path + pathlen, n->path, len);
191 path[--pathlen] = '/';
193 len = tree_entry_len(n);
200 struct tree_desc_skip {
201 struct tree_desc_skip *prev;
207 struct tree_desc_skip *skip;
210 static int check_entry_match(const char *a, int a_len, const char *b, int b_len)
213 * The caller wants to pick *a* from a tree or nothing.
214 * We are looking at *b* in a tree.
216 * (0) If a and b are the same name, we are trivially happy.
218 * There are three possibilities where *a* could be hiding
221 * (1) *a* == "t", *b* == "ab" i.e. *b* sorts earlier than *a* no
223 * (2) *a* == "t", *b* == "t-2" and "t" is a subtree in the tree;
224 * (3) *a* == "t-2", *b* == "t" and "t-2" is a blob in the tree.
226 * Otherwise we know *a* won't appear in the tree without
230 int cmp = name_compare(a, a_len, b, b_len);
232 /* Most common case first -- reading sync'd trees */
237 /* a comes after b; it does not matter if it is case (3)
238 if (b_len < a_len && !memcmp(a, b, b_len) && a[b_len] < '/')
241 return 1; /* keep looking */
244 /* b comes after a; are we looking at case (2)? */
245 if (a_len < b_len && !memcmp(a, b, a_len) && b[a_len] < '/')
246 return 1; /* keep looking */
248 return -1; /* a cannot appear in the tree */
252 * From the extended tree_desc, extract the first name entry, while
253 * paying attention to the candidate "first" name. Most importantly,
254 * when looking for an entry, if there are entries that sorts earlier
255 * in the tree object representation than that name, skip them and
256 * process the named entry first. We will remember that we haven't
257 * processed the first entry yet, and in the later call skip the
258 * entry we processed early when update_extended_entry() is called.
260 * E.g. if the underlying tree object has these entries:
267 * and the "first" asks for "t", remember that we still need to
268 * process "t-1" and "t-2" but extract "t". After processing the
269 * entry "t" from this call, the caller will let us know by calling
270 * update_extended_entry() that we can remember "t" has been processed
274 static void extended_entry_extract(struct tree_desc_x *t,
275 struct name_entry *a,
281 struct tree_desc probe;
282 struct tree_desc_skip *skip;
285 * Extract the first entry from the tree_desc, but skip the
286 * ones that we already returned in earlier rounds.
291 break; /* not found */
293 entry_extract(&t->d, a);
294 for (skip = t->skip; skip; skip = skip->prev)
295 if (a->path == skip->ptr)
299 /* We have processed this entry already. */
300 update_tree_entry(&t->d);
303 if (!first || !a->path)
307 * The caller wants "first" from this tree, or nothing.
310 len = tree_entry_len(a);
311 switch (check_entry_match(first, first_len, path, len)) {
321 * We need to look-ahead -- we suspect that a subtree whose
322 * name is "first" may be hiding behind the current entry "path".
326 entry_extract(&probe, a);
328 len = tree_entry_len(a);
329 switch (check_entry_match(first, first_len, path, len)) {
335 update_tree_entry(&probe);
343 static void update_extended_entry(struct tree_desc_x *t, struct name_entry *a)
345 if (t->d.entry.path == a->path) {
346 update_tree_entry(&t->d);
348 /* we have returned this entry early */
349 struct tree_desc_skip *skip = xmalloc(sizeof(*skip));
351 skip->prev = t->skip;
356 static void free_extended_entry(struct tree_desc_x *t)
358 struct tree_desc_skip *p, *s;
360 for (s = t->skip; s; s = p) {
366 static inline int prune_traversal(struct name_entry *e,
367 struct traverse_info *info,
369 int still_interesting)
371 if (!info->pathspec || still_interesting == 2)
373 if (still_interesting < 0)
374 return still_interesting;
375 return tree_entry_interesting(e, base, 0, info->pathspec);
378 int traverse_trees(int n, struct tree_desc *t, struct traverse_info *info)
381 struct name_entry *entry = xmalloc(n*sizeof(*entry));
383 struct tree_desc_x *tx = xcalloc(n, sizeof(*tx));
384 struct strbuf base = STRBUF_INIT;
388 for (i = 0; i < n; i++)
392 strbuf_grow(&base, info->pathlen);
393 make_traverse_path(base.buf, info->prev, &info->name);
394 base.buf[info->pathlen-1] = '/';
395 strbuf_setlen(&base, info->pathlen);
396 traverse_path = xstrndup(base.buf, info->pathlen);
398 traverse_path = xstrndup(info->name.path, info->pathlen);
400 info->traverse_path = traverse_path;
403 unsigned long mask, dirmask;
404 const char *first = NULL;
406 struct name_entry *e = NULL;
409 for (i = 0; i < n; i++) {
411 extended_entry_extract(tx + i, e, NULL, 0);
415 * A tree may have "t-2" at the current location even
416 * though it may have "t" that is a subtree behind it,
417 * and another tree may return "t". We want to grab
418 * all "t" from all trees to match in such a case.
420 for (i = 0; i < n; i++) {
424 len = tree_entry_len(e);
430 if (name_compare(e->path, len, first, first_len) < 0) {
437 for (i = 0; i < n; i++) {
439 extended_entry_extract(tx + i, e, first, first_len);
440 /* Cull the ones that are not the earliest */
443 len = tree_entry_len(e);
444 if (name_compare(e->path, len, first, first_len))
449 /* Now we have in entry[i] the earliest name from the trees */
452 for (i = 0; i < n; i++) {
456 if (S_ISDIR(entry[i].mode))
462 interesting = prune_traversal(e, info, &base, interesting);
466 trees_used = info->fn(n, mask, dirmask, entry, info);
467 if (trees_used < 0) {
469 if (!info->show_all_errors)
474 for (i = 0; i < n; i++)
475 if (mask & (1ul << i))
476 update_extended_entry(tx + i, entry + i);
479 for (i = 0; i < n; i++)
480 free_extended_entry(tx + i);
483 info->traverse_path = NULL;
484 strbuf_release(&base);
491 unsigned char sha1[20];
494 static int find_tree_entry(struct tree_desc *t, const char *name, unsigned char *result, unsigned *mode)
496 int namelen = strlen(name);
499 const struct object_id *oid;
502 oid = tree_entry_extract(t, &entry, mode);
503 entrylen = tree_entry_len(&t->entry);
504 update_tree_entry(t);
505 if (entrylen > namelen)
507 cmp = memcmp(name, entry, entrylen);
512 if (entrylen == namelen) {
513 hashcpy(result, oid->hash);
516 if (name[entrylen] != '/')
520 if (++entrylen == namelen) {
521 hashcpy(result, oid->hash);
524 return get_tree_entry(oid->hash, name + entrylen, result, mode);
529 int get_tree_entry(const unsigned char *tree_sha1, const char *name, unsigned char *sha1, unsigned *mode)
534 unsigned char root[20];
536 tree = read_object_with_reference(tree_sha1, tree_type, &size, root);
540 if (name[0] == '\0') {
550 init_tree_desc(&t, tree, size);
551 retval = find_tree_entry(&t, name, sha1, mode);
558 * This is Linux's built-in max for the number of symlinks to follow.
559 * That limit, of course, does not affect git, but it's a reasonable
562 #define GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS 40
565 * Find a tree entry by following symlinks in tree_sha (which is
566 * assumed to be the root of the repository). In the event that a
567 * symlink points outside the repository (e.g. a link to /foo or a
568 * root-level link to ../foo), the portion of the link which is
569 * outside the repository will be returned in result_path, and *mode
570 * will be set to 0. It is assumed that result_path is uninitialized.
571 * If there are no symlinks, or the end result of the symlink chain
572 * points to an object inside the repository, result will be filled in
573 * with the sha1 of the found object, and *mode will hold the mode of
576 * See the code for enum follow_symlink_result for a description of
579 enum follow_symlinks_result get_tree_entry_follow_symlinks(unsigned char *tree_sha1, const char *name, unsigned char *result, struct strbuf *result_path, unsigned *mode)
581 int retval = MISSING_OBJECT;
582 struct dir_state *parents = NULL;
583 size_t parents_alloc = 0;
584 ssize_t parents_nr = 0;
585 unsigned char current_tree_sha1[20];
586 struct strbuf namebuf = STRBUF_INIT;
588 int follows_remaining = GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS;
591 init_tree_desc(&t, NULL, 0UL);
592 strbuf_addstr(&namebuf, name);
593 hashcpy(current_tree_sha1, tree_sha1);
598 char *remainder = NULL;
602 unsigned char root[20];
604 tree = read_object_with_reference(current_tree_sha1,
610 ALLOC_GROW(parents, parents_nr + 1, parents_alloc);
611 parents[parents_nr].tree = tree;
612 parents[parents_nr].size = size;
613 hashcpy(parents[parents_nr].sha1, root);
616 if (namebuf.buf[0] == '\0') {
617 hashcpy(result, root);
626 init_tree_desc(&t, tree, size);
629 /* Handle symlinks to e.g. a//b by removing leading slashes */
630 while (namebuf.buf[0] == '/') {
631 strbuf_remove(&namebuf, 0, 1);
634 /* Split namebuf into a first component and a remainder */
635 if ((first_slash = strchr(namebuf.buf, '/'))) {
637 remainder = first_slash + 1;
640 if (!strcmp(namebuf.buf, "..")) {
641 struct dir_state *parent;
643 * We could end up with .. in the namebuf if it
644 * appears in a symlink.
647 if (parents_nr == 1) {
650 strbuf_add(result_path, namebuf.buf,
656 parent = &parents[parents_nr - 1];
659 parent = &parents[parents_nr - 1];
660 init_tree_desc(&t, parent->tree, parent->size);
661 strbuf_remove(&namebuf, 0, remainder ? 3 : 2);
665 /* We could end up here via a symlink to dir/.. */
666 if (namebuf.buf[0] == '\0') {
667 hashcpy(result, parents[parents_nr - 1].sha1);
672 /* Look up the first (or only) path component in the tree. */
673 find_result = find_tree_entry(&t, namebuf.buf,
674 current_tree_sha1, mode);
679 if (S_ISDIR(*mode)) {
681 hashcpy(result, current_tree_sha1);
685 /* Descend the tree */
687 strbuf_remove(&namebuf, 0,
688 1 + first_slash - namebuf.buf);
689 } else if (S_ISREG(*mode)) {
691 hashcpy(result, current_tree_sha1);
697 } else if (S_ISLNK(*mode)) {
698 /* Follow a symlink */
699 unsigned long link_len;
701 char *contents, *contents_start;
702 struct dir_state *parent;
703 enum object_type type;
705 if (follows_remaining-- == 0) {
706 /* Too many symlinks followed */
707 retval = SYMLINK_LOOP;
712 * At this point, we have followed at a least
713 * one symlink, so on error we need to report this.
715 retval = DANGLING_SYMLINK;
717 contents = read_sha1_file(current_tree_sha1, &type,
723 if (contents[0] == '/') {
724 strbuf_addstr(result_path, contents);
732 len = first_slash - namebuf.buf;
736 contents_start = contents;
738 parent = &parents[parents_nr - 1];
739 init_tree_desc(&t, parent->tree, parent->size);
740 strbuf_splice(&namebuf, 0, len,
741 contents_start, link_len);
743 namebuf.buf[link_len] = '/';
748 for (i = 0; i < parents_nr; i++)
749 free(parents[i].tree);
752 strbuf_release(&namebuf);
756 static int match_entry(const struct pathspec_item *item,
757 const struct name_entry *entry, int pathlen,
758 const char *match, int matchlen,
759 enum interesting *never_interesting)
761 int m = -1; /* signals that we haven't called strncmp() */
763 if (item->magic & PATHSPEC_ICASE)
765 * "Never interesting" trick requires exact
766 * matching. We could do something clever with inexact
767 * matching, but it's trickier (and not to forget that
768 * strcasecmp is locale-dependent, at least in
769 * glibc). Just disable it for now. It can't be worse
770 * than the wildcard's codepath of '[Tt][Hi][Is][Ss]'
773 *never_interesting = entry_not_interesting;
774 else if (*never_interesting != entry_not_interesting) {
776 * We have not seen any match that sorts later
777 * than the current path.
781 * Does match sort strictly earlier than path
782 * with their common parts?
784 m = strncmp(match, entry->path,
785 (matchlen < pathlen) ? matchlen : pathlen);
790 * If we come here even once, that means there is at
791 * least one pathspec that would sort equal to or
792 * later than the path we are currently looking at.
793 * In other words, if we have never reached this point
794 * after iterating all pathspecs, it means all
795 * pathspecs are either outside of base, or inside the
796 * base but sorts strictly earlier than the current
797 * one. In either case, they will never match the
798 * subsequent entries. In such a case, we initialized
799 * the variable to -1 and that is what will be
800 * returned, allowing the caller to terminate early.
802 *never_interesting = entry_not_interesting;
805 if (pathlen > matchlen)
808 if (matchlen > pathlen) {
809 if (match[pathlen] != '/')
811 if (!S_ISDIR(entry->mode) && !S_ISGITLINK(entry->mode))
817 * we cheated and did not do strncmp(), so we do
820 m = ps_strncmp(item, match, entry->path, pathlen);
823 * If common part matched earlier then it is a hit,
824 * because we rejected the case where path is not a
825 * leading directory and is shorter than match.
829 * match_entry does not check if the prefix part is
830 * matched case-sensitively. If the entry is a
831 * directory and part of prefix, it'll be rematched
832 * eventually by basecmp with special treatment for
840 /* :(icase)-aware string compare */
841 static int basecmp(const struct pathspec_item *item,
842 const char *base, const char *match, int len)
844 if (item->magic & PATHSPEC_ICASE) {
845 int ret, n = len > item->prefix ? item->prefix : len;
846 ret = strncmp(base, match, n);
853 return ps_strncmp(item, base, match, len);
856 static int match_dir_prefix(const struct pathspec_item *item,
858 const char *match, int matchlen)
860 if (basecmp(item, base, match, matchlen))
864 * If the base is a subdirectory of a path which
865 * was specified, all of them are interesting.
868 base[matchlen] == '/' ||
869 match[matchlen - 1] == '/')
872 /* Just a random prefix match */
877 * Perform matching on the leading non-wildcard part of
878 * pathspec. item->nowildcard_len must be greater than zero. Return
879 * non-zero if base is matched.
881 static int match_wildcard_base(const struct pathspec_item *item,
882 const char *base, int baselen,
885 const char *match = item->match;
886 /* the wildcard part is not considered in this function */
887 int matchlen = item->nowildcard_len;
892 * Return early if base is longer than the
893 * non-wildcard part but it does not match.
895 if (baselen >= matchlen) {
897 return !basecmp(item, base, match, matchlen);
901 while (dirlen && match[dirlen - 1] != '/')
905 * Return early if base is shorter than the
906 * non-wildcard part but it does not match. Note that
907 * base ends with '/' so we are sure it really matches
910 if (basecmp(item, base, match, baselen))
916 * we could have checked entry against the non-wildcard part
917 * that is not in base and does similar never_interesting
918 * optimization as in match_entry. For now just be happy with
921 return entry_interesting;
925 * Is a tree entry interesting given the pathspec we have?
927 * Pre-condition: either baselen == base_offset (i.e. empty path)
928 * or base[baselen-1] == '/' (i.e. with trailing slash).
930 static enum interesting do_match(const struct name_entry *entry,
931 struct strbuf *base, int base_offset,
932 const struct pathspec *ps,
936 int pathlen, baselen = base->len - base_offset;
937 enum interesting never_interesting = ps->has_wildcard ?
938 entry_not_interesting : all_entries_not_interesting;
949 if (!ps->recursive ||
950 !(ps->magic & PATHSPEC_MAXDEPTH) ||
952 return all_entries_interesting;
953 return within_depth(base->buf + base_offset, baselen,
954 !!S_ISDIR(entry->mode),
956 entry_interesting : entry_not_interesting;
959 pathlen = tree_entry_len(entry);
961 for (i = ps->nr - 1; i >= 0; i--) {
962 const struct pathspec_item *item = ps->items+i;
963 const char *match = item->match;
964 const char *base_str = base->buf + base_offset;
965 int matchlen = item->len, matched = 0;
967 if ((!exclude && item->magic & PATHSPEC_EXCLUDE) ||
968 ( exclude && !(item->magic & PATHSPEC_EXCLUDE)))
971 if (baselen >= matchlen) {
972 /* If it doesn't match, move along... */
973 if (!match_dir_prefix(item, base_str, match, matchlen))
974 goto match_wildcards;
976 if (!ps->recursive ||
977 !(ps->magic & PATHSPEC_MAXDEPTH) ||
979 return all_entries_interesting;
981 return within_depth(base_str + matchlen + 1,
982 baselen - matchlen - 1,
983 !!S_ISDIR(entry->mode),
985 entry_interesting : entry_not_interesting;
988 /* Either there must be no base, or the base must match. */
989 if (baselen == 0 || !basecmp(item, base_str, match, baselen)) {
990 if (match_entry(item, entry, pathlen,
991 match + baselen, matchlen - baselen,
993 return entry_interesting;
995 if (item->nowildcard_len < item->len) {
996 if (!git_fnmatch(item, match + baselen, entry->path,
997 item->nowildcard_len - baselen))
998 return entry_interesting;
1001 * Match all directories. We'll try to
1002 * match files later on.
1004 if (ps->recursive && S_ISDIR(entry->mode))
1005 return entry_interesting;
1008 * When matching against submodules with
1009 * wildcard characters, ensure that the entry
1010 * at least matches up to the first wild
1011 * character. More accurate matching can then
1012 * be performed in the submodule itself.
1014 if (ps->recursive && S_ISGITLINK(entry->mode) &&
1015 !ps_strncmp(item, match + baselen,
1017 item->nowildcard_len - baselen))
1018 return entry_interesting;
1025 if (item->nowildcard_len == item->len)
1028 if (item->nowildcard_len &&
1029 !match_wildcard_base(item, base_str, baselen, &matched))
1033 * Concatenate base and entry->path into one and do
1036 * While we could avoid concatenation in certain cases
1037 * [1], which saves a memcpy and potentially a
1038 * realloc, it turns out not worth it. Measurement on
1039 * linux-2.6 does not show any clear improvements,
1040 * partly because of the nowildcard_len optimization
1041 * in git_fnmatch(). Avoid micro-optimizations here.
1043 * [1] if match_wildcard_base() says the base
1044 * directory is already matched, we only need to match
1045 * the rest, which is shorter so _in theory_ faster.
1048 strbuf_add(base, entry->path, pathlen);
1050 if (!git_fnmatch(item, match, base->buf + base_offset,
1051 item->nowildcard_len)) {
1052 strbuf_setlen(base, base_offset + baselen);
1053 return entry_interesting;
1057 * When matching against submodules with
1058 * wildcard characters, ensure that the entry
1059 * at least matches up to the first wild
1060 * character. More accurate matching can then
1061 * be performed in the submodule itself.
1063 if (ps->recursive && S_ISGITLINK(entry->mode) &&
1064 !ps_strncmp(item, match, base->buf + base_offset,
1065 item->nowildcard_len)) {
1066 strbuf_setlen(base, base_offset + baselen);
1067 return entry_interesting;
1070 strbuf_setlen(base, base_offset + baselen);
1073 * Match all directories. We'll try to match files
1075 * max_depth is ignored but we may consider support it
1077 * https://public-inbox.org/git/7vmxo5l2g4.fsf@alter.siamese.dyndns.org/
1079 if (ps->recursive && S_ISDIR(entry->mode))
1080 return entry_interesting;
1082 return never_interesting; /* No matches */
1086 * Is a tree entry interesting given the pathspec we have?
1088 * Pre-condition: either baselen == base_offset (i.e. empty path)
1089 * or base[baselen-1] == '/' (i.e. with trailing slash).
1091 enum interesting tree_entry_interesting(const struct name_entry *entry,
1092 struct strbuf *base, int base_offset,
1093 const struct pathspec *ps)
1095 enum interesting positive, negative;
1096 positive = do_match(entry, base, base_offset, ps, 0);
1099 * case | entry | positive | negative | result
1100 * -----+-------+----------+----------+-------
1101 * 1 | file | -1 | -1..2 | -1
1102 * 2 | file | 0 | -1..2 | 0
1103 * 3 | file | 1 | -1 | 1
1104 * 4 | file | 1 | 0 | 1
1105 * 5 | file | 1 | 1 | 0
1106 * 6 | file | 1 | 2 | 0
1107 * 7 | file | 2 | -1 | 2
1108 * 8 | file | 2 | 0 | 2
1109 * 9 | file | 2 | 1 | 0
1110 * 10 | file | 2 | 2 | -1
1111 * -----+-------+----------+----------+-------
1112 * 11 | dir | -1 | -1..2 | -1
1113 * 12 | dir | 0 | -1..2 | 0
1114 * 13 | dir | 1 | -1 | 1
1115 * 14 | dir | 1 | 0 | 1
1116 * 15 | dir | 1 | 1 | 1 (*)
1117 * 16 | dir | 1 | 2 | 0
1118 * 17 | dir | 2 | -1 | 2
1119 * 18 | dir | 2 | 0 | 2
1120 * 19 | dir | 2 | 1 | 1 (*)
1121 * 20 | dir | 2 | 2 | -1
1123 * (*) An exclude pattern interested in a directory does not
1124 * necessarily mean it will exclude all of the directory. In
1125 * wildcard case, it can't decide until looking at individual
1126 * files inside. So don't write such directories off yet.
1129 if (!(ps->magic & PATHSPEC_EXCLUDE) ||
1130 positive <= entry_not_interesting) /* #1, #2, #11, #12 */
1133 negative = do_match(entry, base, base_offset, ps, 1);
1135 /* #3, #4, #7, #8, #13, #14, #17, #18 */
1136 if (negative <= entry_not_interesting)
1140 if (S_ISDIR(entry->mode) &&
1141 positive >= entry_interesting &&
1142 negative == entry_interesting)
1143 return entry_interesting;
1145 if ((positive == entry_interesting &&
1146 negative >= entry_interesting) || /* #5, #6, #16 */
1147 (positive == all_entries_interesting &&
1148 negative == entry_interesting)) /* #9 */
1149 return entry_not_interesting;
1151 return all_entries_not_interesting; /* #10, #20 */