1 #include "git-compat-util.h"
7 #include "object-file.h"
8 #include "object-store.h"
12 #include "json-writer.h"
14 static const char *get_mode(const char *str
, unsigned int *modep
)
17 unsigned int mode
= 0;
22 while ((c
= *str
++) != ' ') {
23 if (c
< '0' || c
> '7')
25 mode
= (mode
<< 3) + (c
- '0');
31 static int decode_tree_entry(struct tree_desc
*desc
, const char *buf
, unsigned long size
, struct strbuf
*err
)
34 unsigned int mode
, len
;
35 const unsigned hashsz
= the_hash_algo
->rawsz
;
37 if (size
< hashsz
+ 3 || buf
[size
- (hashsz
+ 1)]) {
38 strbuf_addstr(err
, _("too-short tree object"));
42 path
= get_mode(buf
, &mode
);
44 strbuf_addstr(err
, _("malformed mode in tree entry"));
48 strbuf_addstr(err
, _("empty filename in tree entry"));
51 len
= strlen(path
) + 1;
53 /* Initialize the descriptor entry */
54 desc
->entry
.path
= path
;
55 desc
->entry
.mode
= (desc
->flags
& TREE_DESC_RAW_MODES
) ? mode
: canon_mode(mode
);
56 desc
->entry
.pathlen
= len
- 1;
57 oidread(&desc
->entry
.oid
, (const unsigned char *)path
+ len
);
62 static int init_tree_desc_internal(struct tree_desc
*desc
, const void *buffer
,
63 unsigned long size
, struct strbuf
*err
,
64 enum tree_desc_flags flags
)
66 desc
->buffer
= buffer
;
70 return decode_tree_entry(desc
, buffer
, size
, err
);
74 void init_tree_desc(struct tree_desc
*desc
, const void *buffer
, unsigned long size
)
76 struct strbuf err
= STRBUF_INIT
;
77 if (init_tree_desc_internal(desc
, buffer
, size
, &err
, 0))
82 int init_tree_desc_gently(struct tree_desc
*desc
, const void *buffer
, unsigned long size
,
83 enum tree_desc_flags flags
)
85 struct strbuf err
= STRBUF_INIT
;
86 int result
= init_tree_desc_internal(desc
, buffer
, size
, &err
, flags
);
93 void *fill_tree_descriptor(struct repository
*r
,
94 struct tree_desc
*desc
,
95 const struct object_id
*oid
)
97 unsigned long size
= 0;
101 buf
= read_object_with_reference(r
, oid
, OBJ_TREE
, &size
, NULL
);
103 die("unable to read tree %s", oid_to_hex(oid
));
105 init_tree_desc(desc
, buf
, size
);
109 static void entry_clear(struct name_entry
*a
)
111 memset(a
, 0, sizeof(*a
));
114 static void entry_extract(struct tree_desc
*t
, struct name_entry
*a
)
119 static int update_tree_entry_internal(struct tree_desc
*desc
, struct strbuf
*err
)
121 const void *buf
= desc
->buffer
;
122 const unsigned char *end
= (const unsigned char *)desc
->entry
.path
+ desc
->entry
.pathlen
+ 1 + the_hash_algo
->rawsz
;
123 unsigned long size
= desc
->size
;
124 unsigned long len
= end
- (const unsigned char *)buf
;
127 die(_("too-short tree file"));
133 return decode_tree_entry(desc
, buf
, size
, err
);
137 void update_tree_entry(struct tree_desc
*desc
)
139 struct strbuf err
= STRBUF_INIT
;
140 if (update_tree_entry_internal(desc
, &err
))
142 strbuf_release(&err
);
145 int update_tree_entry_gently(struct tree_desc
*desc
)
147 struct strbuf err
= STRBUF_INIT
;
148 if (update_tree_entry_internal(desc
, &err
)) {
149 error("%s", err
.buf
);
150 strbuf_release(&err
);
151 /* Stop processing this tree after error */
155 strbuf_release(&err
);
159 int tree_entry(struct tree_desc
*desc
, struct name_entry
*entry
)
164 *entry
= desc
->entry
;
165 update_tree_entry(desc
);
169 int tree_entry_gently(struct tree_desc
*desc
, struct name_entry
*entry
)
174 *entry
= desc
->entry
;
175 if (update_tree_entry_gently(desc
))
180 static int traverse_trees_atexit_registered
;
181 static int traverse_trees_count
;
182 static int traverse_trees_cur_depth
;
183 static int traverse_trees_max_depth
;
185 static void trace2_traverse_trees_statistics_atexit(void)
187 struct json_writer jw
= JSON_WRITER_INIT
;
189 jw_object_begin(&jw
, 0);
190 jw_object_intmax(&jw
, "traverse_trees_count", traverse_trees_count
);
191 jw_object_intmax(&jw
, "traverse_trees_max_depth", traverse_trees_max_depth
);
194 trace2_data_json("traverse_trees", the_repository
, "statistics", &jw
);
199 void setup_traverse_info(struct traverse_info
*info
, const char *base
)
201 size_t pathlen
= strlen(base
);
202 static struct traverse_info dummy
;
204 memset(info
, 0, sizeof(*info
));
205 if (pathlen
&& base
[pathlen
-1] == '/')
207 info
->pathlen
= pathlen
? pathlen
+ 1 : 0;
209 info
->namelen
= pathlen
;
213 if (trace2_is_enabled() && !traverse_trees_atexit_registered
) {
214 atexit(trace2_traverse_trees_statistics_atexit
);
215 traverse_trees_atexit_registered
= 1;
219 char *make_traverse_path(char *path
, size_t pathlen
,
220 const struct traverse_info
*info
,
221 const char *name
, size_t namelen
)
223 /* Always points to the end of the name we're about to add */
224 size_t pos
= st_add(info
->pathlen
, namelen
);
227 BUG("too small buffer passed to make_traverse_path");
232 BUG("traverse_info pathlen does not match strings");
234 memcpy(path
+ pos
, name
, namelen
);
241 BUG("traverse_info ran out of list items");
243 namelen
= info
->namelen
;
249 void strbuf_make_traverse_path(struct strbuf
*out
,
250 const struct traverse_info
*info
,
251 const char *name
, size_t namelen
)
253 size_t len
= traverse_path_len(info
, namelen
);
255 strbuf_grow(out
, len
);
256 make_traverse_path(out
->buf
+ out
->len
, out
->alloc
- out
->len
,
257 info
, name
, namelen
);
258 strbuf_setlen(out
, out
->len
+ len
);
261 struct tree_desc_skip
{
262 struct tree_desc_skip
*prev
;
268 struct tree_desc_skip
*skip
;
271 static int check_entry_match(const char *a
, int a_len
, const char *b
, int b_len
)
274 * The caller wants to pick *a* from a tree or nothing.
275 * We are looking at *b* in a tree.
277 * (0) If a and b are the same name, we are trivially happy.
279 * There are three possibilities where *a* could be hiding
282 * (1) *a* == "t", *b* == "ab" i.e. *b* sorts earlier than *a* no
284 * (2) *a* == "t", *b* == "t-2" and "t" is a subtree in the tree;
285 * (3) *a* == "t-2", *b* == "t" and "t-2" is a blob in the tree.
287 * Otherwise we know *a* won't appear in the tree without
291 int cmp
= name_compare(a
, a_len
, b
, b_len
);
293 /* Most common case first -- reading sync'd trees */
298 /* a comes after b; it does not matter if it is case (3)
299 if (b_len < a_len && !memcmp(a, b, b_len) && a[b_len] < '/')
302 return 1; /* keep looking */
305 /* b comes after a; are we looking at case (2)? */
306 if (a_len
< b_len
&& !memcmp(a
, b
, a_len
) && b
[a_len
] < '/')
307 return 1; /* keep looking */
309 return -1; /* a cannot appear in the tree */
313 * From the extended tree_desc, extract the first name entry, while
314 * paying attention to the candidate "first" name. Most importantly,
315 * when looking for an entry, if there are entries that sorts earlier
316 * in the tree object representation than that name, skip them and
317 * process the named entry first. We will remember that we haven't
318 * processed the first entry yet, and in the later call skip the
319 * entry we processed early when update_extended_entry() is called.
321 * E.g. if the underlying tree object has these entries:
328 * and the "first" asks for "t", remember that we still need to
329 * process "t-1" and "t-2" but extract "t". After processing the
330 * entry "t" from this call, the caller will let us know by calling
331 * update_extended_entry() that we can remember "t" has been processed
335 static void extended_entry_extract(struct tree_desc_x
*t
,
336 struct name_entry
*a
,
342 struct tree_desc probe
;
343 struct tree_desc_skip
*skip
;
346 * Extract the first entry from the tree_desc, but skip the
347 * ones that we already returned in earlier rounds.
352 break; /* not found */
354 entry_extract(&t
->d
, a
);
355 for (skip
= t
->skip
; skip
; skip
= skip
->prev
)
356 if (a
->path
== skip
->ptr
)
360 /* We have processed this entry already. */
361 update_tree_entry(&t
->d
);
364 if (!first
|| !a
->path
)
368 * The caller wants "first" from this tree, or nothing.
371 len
= tree_entry_len(a
);
372 switch (check_entry_match(first
, first_len
, path
, len
)) {
382 * We need to look-ahead -- we suspect that a subtree whose
383 * name is "first" may be hiding behind the current entry "path".
387 entry_extract(&probe
, a
);
389 len
= tree_entry_len(a
);
390 switch (check_entry_match(first
, first_len
, path
, len
)) {
396 update_tree_entry(&probe
);
404 static void update_extended_entry(struct tree_desc_x
*t
, struct name_entry
*a
)
406 if (t
->d
.entry
.path
== a
->path
) {
407 update_tree_entry(&t
->d
);
409 /* we have returned this entry early */
410 struct tree_desc_skip
*skip
= xmalloc(sizeof(*skip
));
412 skip
->prev
= t
->skip
;
417 static void free_extended_entry(struct tree_desc_x
*t
)
419 struct tree_desc_skip
*p
, *s
;
421 for (s
= t
->skip
; s
; s
= p
) {
427 static inline int prune_traversal(struct index_state
*istate
,
428 struct name_entry
*e
,
429 struct traverse_info
*info
,
431 int still_interesting
)
433 if (!info
->pathspec
|| still_interesting
== 2)
435 if (still_interesting
< 0)
436 return still_interesting
;
437 return tree_entry_interesting(istate
, e
, base
,
441 int traverse_trees(struct index_state
*istate
,
442 int n
, struct tree_desc
*t
,
443 struct traverse_info
*info
)
446 struct name_entry entry
[MAX_TRAVERSE_TREES
];
448 struct tree_desc_x tx
[ARRAY_SIZE(entry
)];
449 struct strbuf base
= STRBUF_INIT
;
453 traverse_trees_count
++;
454 traverse_trees_cur_depth
++;
456 if (traverse_trees_cur_depth
> traverse_trees_max_depth
)
457 traverse_trees_max_depth
= traverse_trees_cur_depth
;
459 if (n
>= ARRAY_SIZE(entry
))
460 BUG("traverse_trees() called with too many trees (%d)", n
);
462 for (i
= 0; i
< n
; i
++) {
468 strbuf_make_traverse_path(&base
, info
->prev
,
469 info
->name
, info
->namelen
);
470 strbuf_addch(&base
, '/');
471 traverse_path
= xstrndup(base
.buf
, base
.len
);
473 traverse_path
= xstrndup(info
->name
, info
->pathlen
);
475 info
->traverse_path
= traverse_path
;
478 unsigned long mask
, dirmask
;
479 const char *first
= NULL
;
481 struct name_entry
*e
= NULL
;
484 for (i
= 0; i
< n
; i
++) {
486 extended_entry_extract(tx
+ i
, e
, NULL
, 0);
490 * A tree may have "t-2" at the current location even
491 * though it may have "t" that is a subtree behind it,
492 * and another tree may return "t". We want to grab
493 * all "t" from all trees to match in such a case.
495 for (i
= 0; i
< n
; i
++) {
499 len
= tree_entry_len(e
);
505 if (name_compare(e
->path
, len
, first
, first_len
) < 0) {
512 for (i
= 0; i
< n
; i
++) {
514 extended_entry_extract(tx
+ i
, e
, first
, first_len
);
515 /* Cull the ones that are not the earliest */
518 len
= tree_entry_len(e
);
519 if (name_compare(e
->path
, len
, first
, first_len
))
524 /* Now we have in entry[i] the earliest name from the trees */
527 for (i
= 0; i
< n
; i
++) {
531 if (S_ISDIR(entry
[i
].mode
))
537 interesting
= prune_traversal(istate
, e
, info
, &base
, interesting
);
541 trees_used
= info
->fn(n
, mask
, dirmask
, entry
, info
);
542 if (trees_used
< 0) {
544 if (!info
->show_all_errors
)
549 for (i
= 0; i
< n
; i
++)
550 if (mask
& (1ul << i
))
551 update_extended_entry(tx
+ i
, entry
+ i
);
553 for (i
= 0; i
< n
; i
++)
554 free_extended_entry(tx
+ i
);
556 info
->traverse_path
= NULL
;
557 strbuf_release(&base
);
559 traverse_trees_cur_depth
--;
566 struct object_id oid
;
569 static int find_tree_entry(struct repository
*r
, struct tree_desc
*t
,
570 const char *name
, struct object_id
*result
,
571 unsigned short *mode
)
573 int namelen
= strlen(name
);
576 struct object_id oid
;
579 oidcpy(&oid
, tree_entry_extract(t
, &entry
, mode
));
580 entrylen
= tree_entry_len(&t
->entry
);
581 update_tree_entry(t
);
582 if (entrylen
> namelen
)
584 cmp
= memcmp(name
, entry
, entrylen
);
589 if (entrylen
== namelen
) {
590 oidcpy(result
, &oid
);
593 if (name
[entrylen
] != '/')
597 if (++entrylen
== namelen
) {
598 oidcpy(result
, &oid
);
601 return get_tree_entry(r
, &oid
, name
+ entrylen
, result
, mode
);
606 int get_tree_entry(struct repository
*r
,
607 const struct object_id
*tree_oid
,
609 struct object_id
*oid
,
610 unsigned short *mode
)
615 struct object_id root
;
617 tree
= read_object_with_reference(r
, tree_oid
, OBJ_TREE
, &size
, &root
);
621 if (name
[0] == '\0') {
631 init_tree_desc(&t
, tree
, size
);
632 retval
= find_tree_entry(r
, &t
, name
, oid
, mode
);
639 * This is Linux's built-in max for the number of symlinks to follow.
640 * That limit, of course, does not affect git, but it's a reasonable
643 #define GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS 40
646 * Find a tree entry by following symlinks in tree_sha (which is
647 * assumed to be the root of the repository). In the event that a
648 * symlink points outside the repository (e.g. a link to /foo or a
649 * root-level link to ../foo), the portion of the link which is
650 * outside the repository will be returned in result_path, and *mode
651 * will be set to 0. It is assumed that result_path is uninitialized.
652 * If there are no symlinks, or the end result of the symlink chain
653 * points to an object inside the repository, result will be filled in
654 * with the sha1 of the found object, and *mode will hold the mode of
657 * See the code for enum get_oid_result for a description of
660 enum get_oid_result
get_tree_entry_follow_symlinks(struct repository
*r
,
661 struct object_id
*tree_oid
, const char *name
,
662 struct object_id
*result
, struct strbuf
*result_path
,
663 unsigned short *mode
)
665 int retval
= MISSING_OBJECT
;
666 struct dir_state
*parents
= NULL
;
667 size_t parents_alloc
= 0;
668 size_t i
, parents_nr
= 0;
669 struct object_id current_tree_oid
;
670 struct strbuf namebuf
= STRBUF_INIT
;
672 int follows_remaining
= GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS
;
674 init_tree_desc(&t
, NULL
, 0UL);
675 strbuf_addstr(&namebuf
, name
);
676 oidcpy(¤t_tree_oid
, tree_oid
);
681 char *remainder
= NULL
;
685 struct object_id root
;
687 tree
= read_object_with_reference(r
,
694 ALLOC_GROW(parents
, parents_nr
+ 1, parents_alloc
);
695 parents
[parents_nr
].tree
= tree
;
696 parents
[parents_nr
].size
= size
;
697 oidcpy(&parents
[parents_nr
].oid
, &root
);
700 if (namebuf
.buf
[0] == '\0') {
701 oidcpy(result
, &root
);
710 init_tree_desc(&t
, tree
, size
);
713 /* Handle symlinks to e.g. a//b by removing leading slashes */
714 while (namebuf
.buf
[0] == '/') {
715 strbuf_remove(&namebuf
, 0, 1);
718 /* Split namebuf into a first component and a remainder */
719 if ((first_slash
= strchr(namebuf
.buf
, '/'))) {
721 remainder
= first_slash
+ 1;
724 if (!strcmp(namebuf
.buf
, "..")) {
725 struct dir_state
*parent
;
727 * We could end up with .. in the namebuf if it
728 * appears in a symlink.
731 if (parents_nr
== 1) {
734 strbuf_add(result_path
, namebuf
.buf
,
740 parent
= &parents
[parents_nr
- 1];
743 parent
= &parents
[parents_nr
- 1];
744 init_tree_desc(&t
, parent
->tree
, parent
->size
);
745 strbuf_remove(&namebuf
, 0, remainder
? 3 : 2);
749 /* We could end up here via a symlink to dir/.. */
750 if (namebuf
.buf
[0] == '\0') {
751 oidcpy(result
, &parents
[parents_nr
- 1].oid
);
756 /* Look up the first (or only) path component in the tree. */
757 find_result
= find_tree_entry(r
, &t
, namebuf
.buf
,
758 ¤t_tree_oid
, mode
);
763 if (S_ISDIR(*mode
)) {
765 oidcpy(result
, ¤t_tree_oid
);
769 /* Descend the tree */
771 strbuf_remove(&namebuf
, 0,
772 1 + first_slash
- namebuf
.buf
);
773 } else if (S_ISREG(*mode
)) {
775 oidcpy(result
, ¤t_tree_oid
);
781 } else if (S_ISLNK(*mode
)) {
782 /* Follow a symlink */
783 unsigned long link_len
;
785 char *contents
, *contents_start
;
786 struct dir_state
*parent
;
787 enum object_type type
;
789 if (follows_remaining
-- == 0) {
790 /* Too many symlinks followed */
791 retval
= SYMLINK_LOOP
;
796 * At this point, we have followed at a least
797 * one symlink, so on error we need to report this.
799 retval
= DANGLING_SYMLINK
;
801 contents
= repo_read_object_file(r
,
802 ¤t_tree_oid
, &type
,
808 if (contents
[0] == '/') {
809 strbuf_addstr(result_path
, contents
);
817 len
= first_slash
- namebuf
.buf
;
821 contents_start
= contents
;
823 parent
= &parents
[parents_nr
- 1];
824 init_tree_desc(&t
, parent
->tree
, parent
->size
);
825 strbuf_splice(&namebuf
, 0, len
,
826 contents_start
, link_len
);
828 namebuf
.buf
[link_len
] = '/';
833 for (i
= 0; i
< parents_nr
; i
++)
834 free(parents
[i
].tree
);
837 strbuf_release(&namebuf
);
841 static int match_entry(const struct pathspec_item
*item
,
842 const struct name_entry
*entry
, int pathlen
,
843 const char *match
, int matchlen
,
844 enum interesting
*never_interesting
)
846 int m
= -1; /* signals that we haven't called strncmp() */
848 if (item
->magic
& PATHSPEC_ICASE
)
850 * "Never interesting" trick requires exact
851 * matching. We could do something clever with inexact
852 * matching, but it's trickier (and not to forget that
853 * strcasecmp is locale-dependent, at least in
854 * glibc). Just disable it for now. It can't be worse
855 * than the wildcard's codepath of '[Tt][Hi][Is][Ss]'
858 *never_interesting
= entry_not_interesting
;
859 else if (*never_interesting
!= entry_not_interesting
) {
861 * We have not seen any match that sorts later
862 * than the current path.
866 * Does match sort strictly earlier than path
867 * with their common parts?
869 m
= strncmp(match
, entry
->path
,
870 (matchlen
< pathlen
) ? matchlen
: pathlen
);
875 * If we come here even once, that means there is at
876 * least one pathspec that would sort equal to or
877 * later than the path we are currently looking at.
878 * In other words, if we have never reached this point
879 * after iterating all pathspecs, it means all
880 * pathspecs are either outside of base, or inside the
881 * base but sorts strictly earlier than the current
882 * one. In either case, they will never match the
883 * subsequent entries. In such a case, we initialized
884 * the variable to -1 and that is what will be
885 * returned, allowing the caller to terminate early.
887 *never_interesting
= entry_not_interesting
;
890 if (pathlen
> matchlen
)
893 if (matchlen
> pathlen
) {
894 if (match
[pathlen
] != '/')
897 * Reject non-directories as partial pathnames, except
898 * when match is a submodule with a trailing slash and
899 * nothing else (to handle 'submod/' and 'submod'
902 if (!S_ISDIR(entry
->mode
) &&
903 (!S_ISGITLINK(entry
->mode
) || matchlen
> pathlen
+ 1))
909 * we cheated and did not do strncmp(), so we do
912 m
= ps_strncmp(item
, match
, entry
->path
, pathlen
);
915 * If common part matched earlier then it is a hit,
916 * because we rejected the case where path is not a
917 * leading directory and is shorter than match.
921 * match_entry does not check if the prefix part is
922 * matched case-sensitively. If the entry is a
923 * directory and part of prefix, it'll be rematched
924 * eventually by basecmp with special treatment for
932 /* :(icase)-aware string compare */
933 static int basecmp(const struct pathspec_item
*item
,
934 const char *base
, const char *match
, int len
)
936 if (item
->magic
& PATHSPEC_ICASE
) {
937 int ret
, n
= len
> item
->prefix
? item
->prefix
: len
;
938 ret
= strncmp(base
, match
, n
);
945 return ps_strncmp(item
, base
, match
, len
);
948 static int match_dir_prefix(const struct pathspec_item
*item
,
950 const char *match
, int matchlen
)
952 if (basecmp(item
, base
, match
, matchlen
))
956 * If the base is a subdirectory of a path which
957 * was specified, all of them are interesting.
960 base
[matchlen
] == '/' ||
961 match
[matchlen
- 1] == '/')
964 /* Just a random prefix match */
969 * Perform matching on the leading non-wildcard part of
970 * pathspec. item->nowildcard_len must be greater than zero. Return
971 * non-zero if base is matched.
973 static int match_wildcard_base(const struct pathspec_item
*item
,
974 const char *base
, int baselen
,
977 const char *match
= item
->match
;
978 /* the wildcard part is not considered in this function */
979 int matchlen
= item
->nowildcard_len
;
984 * Return early if base is longer than the
985 * non-wildcard part but it does not match.
987 if (baselen
>= matchlen
) {
989 return !basecmp(item
, base
, match
, matchlen
);
993 while (dirlen
&& match
[dirlen
- 1] != '/')
997 * Return early if base is shorter than the
998 * non-wildcard part but it does not match. Note that
999 * base ends with '/' so we are sure it really matches
1002 if (basecmp(item
, base
, match
, baselen
))
1008 * we could have checked entry against the non-wildcard part
1009 * that is not in base and does similar never_interesting
1010 * optimization as in match_entry. For now just be happy with
1013 return entry_interesting
;
1017 * Is a tree entry interesting given the pathspec we have?
1019 * Pre-condition: either baselen == base_offset (i.e. empty path)
1020 * or base[baselen-1] == '/' (i.e. with trailing slash).
1022 static enum interesting
do_match(struct index_state
*istate
,
1023 const struct name_entry
*entry
,
1024 struct strbuf
*base
, int base_offset
,
1025 const struct pathspec
*ps
,
1029 int pathlen
, baselen
= base
->len
- base_offset
;
1030 enum interesting never_interesting
= ps
->has_wildcard
?
1031 entry_not_interesting
: all_entries_not_interesting
;
1043 if (!ps
->recursive
||
1044 !(ps
->magic
& PATHSPEC_MAXDEPTH
) ||
1045 ps
->max_depth
== -1)
1046 return all_entries_interesting
;
1047 return within_depth(base
->buf
+ base_offset
, baselen
,
1048 !!S_ISDIR(entry
->mode
),
1050 entry_interesting
: entry_not_interesting
;
1053 pathlen
= tree_entry_len(entry
);
1055 for (i
= ps
->nr
- 1; i
>= 0; i
--) {
1056 const struct pathspec_item
*item
= ps
->items
+i
;
1057 const char *match
= item
->match
;
1058 const char *base_str
= base
->buf
+ base_offset
;
1059 int matchlen
= item
->len
, matched
= 0;
1061 if ((!exclude
&& item
->magic
& PATHSPEC_EXCLUDE
) ||
1062 ( exclude
&& !(item
->magic
& PATHSPEC_EXCLUDE
)))
1065 if (baselen
>= matchlen
) {
1066 /* If it doesn't match, move along... */
1067 if (!match_dir_prefix(item
, base_str
, match
, matchlen
))
1068 goto match_wildcards
;
1070 if (!ps
->recursive
||
1071 !(ps
->magic
& PATHSPEC_MAXDEPTH
) ||
1072 ps
->max_depth
== -1) {
1073 if (!item
->attr_match_nr
)
1074 return all_entries_interesting
;
1079 if (within_depth(base_str
+ matchlen
+ 1,
1080 baselen
- matchlen
- 1,
1081 !!S_ISDIR(entry
->mode
),
1085 return entry_not_interesting
;
1088 /* Either there must be no base, or the base must match. */
1089 if (baselen
== 0 || !basecmp(item
, base_str
, match
, baselen
)) {
1090 if (match_entry(item
, entry
, pathlen
,
1091 match
+ baselen
, matchlen
- baselen
,
1092 &never_interesting
))
1095 if (item
->nowildcard_len
< item
->len
) {
1096 if (!git_fnmatch(item
, match
+ baselen
, entry
->path
,
1097 item
->nowildcard_len
- baselen
))
1101 * Match all directories. We'll try to
1102 * match files later on.
1104 if (ps
->recursive
&& S_ISDIR(entry
->mode
))
1105 return entry_interesting
;
1108 * When matching against submodules with
1109 * wildcard characters, ensure that the entry
1110 * at least matches up to the first wild
1111 * character. More accurate matching can then
1112 * be performed in the submodule itself.
1114 if (ps
->recurse_submodules
&&
1115 S_ISGITLINK(entry
->mode
) &&
1116 !ps_strncmp(item
, match
+ baselen
,
1118 item
->nowildcard_len
- baselen
))
1126 if (item
->nowildcard_len
== item
->len
)
1129 if (item
->nowildcard_len
&&
1130 !match_wildcard_base(item
, base_str
, baselen
, &matched
))
1134 * Concatenate base and entry->path into one and do
1137 * While we could avoid concatenation in certain cases
1138 * [1], which saves a memcpy and potentially a
1139 * realloc, it turns out not worth it. Measurement on
1140 * linux-2.6 does not show any clear improvements,
1141 * partly because of the nowildcard_len optimization
1142 * in git_fnmatch(). Avoid micro-optimizations here.
1144 * [1] if match_wildcard_base() says the base
1145 * directory is already matched, we only need to match
1146 * the rest, which is shorter so _in theory_ faster.
1149 strbuf_add(base
, entry
->path
, pathlen
);
1151 if (!git_fnmatch(item
, match
, base
->buf
+ base_offset
,
1152 item
->nowildcard_len
)) {
1153 strbuf_setlen(base
, base_offset
+ baselen
);
1158 * When matching against submodules with
1159 * wildcard characters, ensure that the entry
1160 * at least matches up to the first wild
1161 * character. More accurate matching can then
1162 * be performed in the submodule itself.
1164 if (ps
->recurse_submodules
&& S_ISGITLINK(entry
->mode
) &&
1165 !ps_strncmp(item
, match
, base
->buf
+ base_offset
,
1166 item
->nowildcard_len
)) {
1167 strbuf_setlen(base
, base_offset
+ baselen
);
1171 strbuf_setlen(base
, base_offset
+ baselen
);
1174 * Match all directories. We'll try to match files
1176 * max_depth is ignored but we may consider support it
1178 * https://lore.kernel.org/git/7vmxo5l2g4.fsf@alter.siamese.dyndns.org/
1180 if (ps
->recursive
&& S_ISDIR(entry
->mode
))
1181 return entry_interesting
;
1184 if (item
->attr_match_nr
) {
1188 * Must not return all_entries_not_interesting
1189 * prematurely. We do not know if all entries do not
1190 * match some attributes with current attr API.
1192 never_interesting
= entry_not_interesting
;
1195 * Consider all directories interesting (because some
1196 * of those files inside may match some attributes
1197 * even though the parent dir does not)
1199 * FIXME: attributes _can_ match directories and we
1200 * can probably return all_entries_interesting or
1201 * all_entries_not_interesting here if matched.
1203 if (S_ISDIR(entry
->mode
))
1204 return entry_interesting
;
1206 strbuf_add(base
, entry
->path
, pathlen
);
1207 ret
= match_pathspec_attrs(istate
, base
->buf
+ base_offset
,
1208 base
->len
- base_offset
, item
);
1209 strbuf_setlen(base
, base_offset
+ baselen
);
1213 return entry_interesting
;
1215 return never_interesting
; /* No matches */
1219 * Is a tree entry interesting given the pathspec we have?
1221 * Pre-condition: either baselen == base_offset (i.e. empty path)
1222 * or base[baselen-1] == '/' (i.e. with trailing slash).
1224 enum interesting
tree_entry_interesting(struct index_state
*istate
,
1225 const struct name_entry
*entry
,
1226 struct strbuf
*base
, int base_offset
,
1227 const struct pathspec
*ps
)
1229 enum interesting positive
, negative
;
1230 positive
= do_match(istate
, entry
, base
, base_offset
, ps
, 0);
1233 * case | entry | positive | negative | result
1234 * -----+-------+----------+----------+-------
1235 * 1 | file | -1 | -1..2 | -1
1236 * 2 | file | 0 | -1..2 | 0
1237 * 3 | file | 1 | -1 | 1
1238 * 4 | file | 1 | 0 | 1
1239 * 5 | file | 1 | 1 | 0
1240 * 6 | file | 1 | 2 | 0
1241 * 7 | file | 2 | -1 | 2
1242 * 8 | file | 2 | 0 | 1
1243 * 9 | file | 2 | 1 | 0
1244 * 10 | file | 2 | 2 | -1
1245 * -----+-------+----------+----------+-------
1246 * 11 | dir | -1 | -1..2 | -1
1247 * 12 | dir | 0 | -1..2 | 0
1248 * 13 | dir | 1 | -1 | 1
1249 * 14 | dir | 1 | 0 | 1
1250 * 15 | dir | 1 | 1 | 1 (*)
1251 * 16 | dir | 1 | 2 | 0
1252 * 17 | dir | 2 | -1 | 2
1253 * 18 | dir | 2 | 0 | 1
1254 * 19 | dir | 2 | 1 | 1 (*)
1255 * 20 | dir | 2 | 2 | -1
1257 * (*) An exclude pattern interested in a directory does not
1258 * necessarily mean it will exclude all of the directory. In
1259 * wildcard case, it can't decide until looking at individual
1260 * files inside. So don't write such directories off yet.
1263 if (!(ps
->magic
& PATHSPEC_EXCLUDE
) ||
1264 positive
<= entry_not_interesting
) /* #1, #2, #11, #12 */
1267 negative
= do_match(istate
, entry
, base
, base_offset
, ps
, 1);
1270 if (positive
== all_entries_interesting
&&
1271 negative
== entry_not_interesting
)
1272 return entry_interesting
;
1274 /* #3, #4, #7, #13, #14, #17 */
1275 if (negative
<= entry_not_interesting
)
1279 if (S_ISDIR(entry
->mode
) &&
1280 positive
>= entry_interesting
&&
1281 negative
== entry_interesting
)
1282 return entry_interesting
;
1284 if ((positive
== entry_interesting
&&
1285 negative
>= entry_interesting
) || /* #5, #6, #16 */
1286 (positive
== all_entries_interesting
&&
1287 negative
== entry_interesting
)) /* #9 */
1288 return entry_not_interesting
;
1290 return all_entries_not_interesting
; /* #10, #20 */