]> git.ipfire.org Git - thirdparty/git.git/blame - tree-walk.c
artifacts-tar: when including `.dll` files, don't forget the unit-tests
[thirdparty/git.git] / tree-walk.c
CommitLineData
5e3f94df 1#include "git-compat-util.h"
1b0c7174 2#include "tree-walk.h"
36bf1958 3#include "alloc.h"
bc96cc87 4#include "dir.h"
f394e093 5#include "gettext.h"
41771fa4 6#include "hex.h"
87bed179 7#include "object-file.h"
cbd53a21 8#include "object-store.h"
74ea5c95 9#include "trace2.h"
8e440259 10#include "tree.h"
64acde94 11#include "pathspec.h"
da8be8ce 12#include "json-writer.h"
1b0c7174 13
4651ece8
LT
14static const char *get_mode(const char *str, unsigned int *modep)
15{
16 unsigned char c;
17 unsigned int mode = 0;
18
64cc1c09
MK
19 if (*str == ' ')
20 return NULL;
21
4651ece8
LT
22 while ((c = *str++) != ' ') {
23 if (c < '0' || c > '7')
24 return NULL;
25 mode = (mode << 3) + (c - '0');
26 }
27 *modep = mode;
28 return str;
29}
30
8354fa3d 31static int decode_tree_entry(struct tree_desc *desc, const char *buf, unsigned long size, struct strbuf *err)
4651ece8
LT
32{
33 const char *path;
34 unsigned int mode, len;
83e4b757 35 const unsigned hashsz = the_hash_algo->rawsz;
4651ece8 36
83e4b757 37 if (size < hashsz + 3 || buf[size - (hashsz + 1)]) {
8354fa3d
DT
38 strbuf_addstr(err, _("too-short tree object"));
39 return -1;
40 }
64cc1c09 41
4651ece8 42 path = get_mode(buf, &mode);
8354fa3d
DT
43 if (!path) {
44 strbuf_addstr(err, _("malformed mode in tree entry"));
45 return -1;
46 }
47 if (!*path) {
48 strbuf_addstr(err, _("empty filename in tree entry"));
49 return -1;
50 }
4651ece8
LT
51 len = strlen(path) + 1;
52
53 /* Initialize the descriptor entry */
54 desc->entry.path = path;
ec18b10b 55 desc->entry.mode = (desc->flags & TREE_DESC_RAW_MODES) ? mode : canon_mode(mode);
ea82b2a0 56 desc->entry.pathlen = len - 1;
92e2cab9 57 oidread(&desc->entry.oid, (const unsigned char *)path + len);
8354fa3d
DT
58
59 return 0;
4651ece8
LT
60}
61
ec18b10b
JK
62static 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)
6fda5e51
LT
65{
66 desc->buffer = buffer;
67 desc->size = size;
ec18b10b 68 desc->flags = flags;
4651ece8 69 if (size)
8354fa3d
DT
70 return decode_tree_entry(desc, buffer, size, err);
71 return 0;
72}
73
74void init_tree_desc(struct tree_desc *desc, const void *buffer, unsigned long size)
75{
76 struct strbuf err = STRBUF_INIT;
ec18b10b 77 if (init_tree_desc_internal(desc, buffer, size, &err, 0))
8354fa3d
DT
78 die("%s", err.buf);
79 strbuf_release(&err);
80}
81
ec18b10b
JK
82int init_tree_desc_gently(struct tree_desc *desc, const void *buffer, unsigned long size,
83 enum tree_desc_flags flags)
8354fa3d
DT
84{
85 struct strbuf err = STRBUF_INIT;
ec18b10b 86 int result = init_tree_desc_internal(desc, buffer, size, &err, flags);
8354fa3d
DT
87 if (result)
88 error("%s", err.buf);
89 strbuf_release(&err);
90 return result;
6fda5e51
LT
91}
92
5e575807
NTND
93void *fill_tree_descriptor(struct repository *r,
94 struct tree_desc *desc,
95 const struct object_id *oid)
1b0c7174
JH
96{
97 unsigned long size = 0;
98 void *buf = NULL;
99
5c377d3d 100 if (oid) {
6aea6bae 101 buf = read_object_with_reference(r, oid, OBJ_TREE, &size, NULL);
1b0c7174 102 if (!buf)
5c377d3d 103 die("unable to read tree %s", oid_to_hex(oid));
1b0c7174 104 }
6fda5e51 105 init_tree_desc(desc, buf, size);
1b0c7174
JH
106 return buf;
107}
108
1b0c7174
JH
109static void entry_clear(struct name_entry *a)
110{
111 memset(a, 0, sizeof(*a));
112}
113
114static void entry_extract(struct tree_desc *t, struct name_entry *a)
115{
4651ece8 116 *a = t->entry;
1b0c7174
JH
117}
118
8354fa3d 119static int update_tree_entry_internal(struct tree_desc *desc, struct strbuf *err)
1b0c7174 120{
6fda5e51 121 const void *buf = desc->buffer;
ea82b2a0 122 const unsigned char *end = (const unsigned char *)desc->entry.path + desc->entry.pathlen + 1 + the_hash_algo->rawsz;
1b0c7174 123 unsigned long size = desc->size;
4651ece8 124 unsigned long len = end - (const unsigned char *)buf;
1b0c7174
JH
125
126 if (size < len)
2edffef2 127 die(_("too-short tree file"));
4651ece8
LT
128 buf = end;
129 size -= len;
130 desc->buffer = buf;
131 desc->size = size;
132 if (size)
8354fa3d
DT
133 return decode_tree_entry(desc, buf, size, err);
134 return 0;
135}
136
137void update_tree_entry(struct tree_desc *desc)
138{
139 struct strbuf err = STRBUF_INIT;
140 if (update_tree_entry_internal(desc, &err))
141 die("%s", err.buf);
142 strbuf_release(&err);
143}
144
145int update_tree_entry_gently(struct tree_desc *desc)
146{
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 */
152 desc->size = 0;
153 return -1;
154 }
155 strbuf_release(&err);
156 return 0;
1b0c7174
JH
157}
158
4c068a98
LT
159int tree_entry(struct tree_desc *desc, struct name_entry *entry)
160{
4651ece8 161 if (!desc->size)
4c068a98
LT
162 return 0;
163
4651ece8
LT
164 *entry = desc->entry;
165 update_tree_entry(desc);
4c068a98
LT
166 return 1;
167}
168
8354fa3d
DT
169int tree_entry_gently(struct tree_desc *desc, struct name_entry *entry)
170{
171 if (!desc->size)
172 return 0;
173
174 *entry = desc->entry;
175 if (update_tree_entry_gently(desc))
176 return 0;
177 return 1;
178}
179
da8be8ce
DS
180static int traverse_trees_atexit_registered;
181static int traverse_trees_count;
182static int traverse_trees_cur_depth;
183static int traverse_trees_max_depth;
184
185static void trace2_traverse_trees_statistics_atexit(void)
186{
187 struct json_writer jw = JSON_WRITER_INIT;
188
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);
192 jw_end(&jw);
193
194 trace2_data_json("traverse_trees", the_repository, "statistics", &jw);
195
196 jw_release(&jw);
197}
198
40d934df
LT
199void setup_traverse_info(struct traverse_info *info, const char *base)
200{
37806080 201 size_t pathlen = strlen(base);
bcbe5a51 202 static struct traverse_info dummy;
40d934df
LT
203
204 memset(info, 0, sizeof(*info));
205 if (pathlen && base[pathlen-1] == '/')
206 pathlen--;
207 info->pathlen = pathlen ? pathlen + 1 : 0;
90553847
JK
208 info->name = base;
209 info->namelen = pathlen;
947208b7 210 if (pathlen)
bcbe5a51 211 info->prev = &dummy;
da8be8ce
DS
212
213 if (trace2_is_enabled() && !traverse_trees_atexit_registered) {
214 atexit(trace2_traverse_trees_statistics_atexit);
215 traverse_trees_atexit_registered = 1;
216 }
40d934df
LT
217}
218
5aa02f98
JK
219char *make_traverse_path(char *path, size_t pathlen,
220 const struct traverse_info *info,
90553847 221 const char *name, size_t namelen)
40d934df 222{
5aa02f98
JK
223 /* Always points to the end of the name we're about to add */
224 size_t pos = st_add(info->pathlen, namelen);
40d934df 225
5aa02f98
JK
226 if (pos >= pathlen)
227 BUG("too small buffer passed to make_traverse_path");
40d934df 228
5aa02f98 229 path[pos] = 0;
40d934df 230 for (;;) {
5aa02f98
JK
231 if (pos < namelen)
232 BUG("traverse_info pathlen does not match strings");
233 pos -= namelen;
234 memcpy(path + pos, name, namelen);
235
236 if (!pos)
40d934df 237 break;
5aa02f98
JK
238 path[--pos] = '/';
239
240 if (!info)
241 BUG("traverse_info ran out of list items");
90553847
JK
242 name = info->name;
243 namelen = info->namelen;
40d934df 244 info = info->prev;
40d934df
LT
245 }
246 return path;
247}
248
c43ab062
JK
249void strbuf_make_traverse_path(struct strbuf *out,
250 const struct traverse_info *info,
251 const char *name, size_t namelen)
252{
253 size_t len = traverse_path_len(info, namelen);
254
255 strbuf_grow(out, len);
5aa02f98
JK
256 make_traverse_path(out->buf + out->len, out->alloc - out->len,
257 info, name, namelen);
c43ab062
JK
258 strbuf_setlen(out, out->len + len);
259}
260
1ee26571
JH
261struct tree_desc_skip {
262 struct tree_desc_skip *prev;
263 const void *ptr;
264};
265
266struct tree_desc_x {
267 struct tree_desc d;
268 struct tree_desc_skip *skip;
269};
270
1ee26571
JH
271static int check_entry_match(const char *a, int a_len, const char *b, int b_len)
272{
273 /*
274 * The caller wants to pick *a* from a tree or nothing.
275 * We are looking at *b* in a tree.
276 *
277 * (0) If a and b are the same name, we are trivially happy.
278 *
279 * There are three possibilities where *a* could be hiding
280 * behind *b*.
281 *
282 * (1) *a* == "t", *b* == "ab" i.e. *b* sorts earlier than *a* no
283 * matter what.
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.
286 *
287 * Otherwise we know *a* won't appear in the tree without
288 * scanning further.
289 */
290
291 int cmp = name_compare(a, a_len, b, b_len);
292
293 /* Most common case first -- reading sync'd trees */
294 if (!cmp)
295 return cmp;
296
297 if (0 < cmp) {
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] < '/')
300 return 1;
301 */
302 return 1; /* keep looking */
303 }
304
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 */
308
309 return -1; /* a cannot appear in the tree */
310}
311
312/*
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.
320 *
321 * E.g. if the underlying tree object has these entries:
322 *
323 * blob "t-1"
324 * blob "t-2"
325 * tree "t"
326 * blob "t=1"
327 *
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
332 * already.
333 */
334
335static void extended_entry_extract(struct tree_desc_x *t,
336 struct name_entry *a,
337 const char *first,
338 int first_len)
339{
340 const char *path;
341 int len;
342 struct tree_desc probe;
343 struct tree_desc_skip *skip;
344
345 /*
346 * Extract the first entry from the tree_desc, but skip the
347 * ones that we already returned in earlier rounds.
348 */
349 while (1) {
350 if (!t->d.size) {
351 entry_clear(a);
352 break; /* not found */
353 }
354 entry_extract(&t->d, a);
355 for (skip = t->skip; skip; skip = skip->prev)
356 if (a->path == skip->ptr)
357 break; /* found */
358 if (!skip)
359 break;
360 /* We have processed this entry already. */
361 update_tree_entry(&t->d);
362 }
363
364 if (!first || !a->path)
365 return;
366
367 /*
368 * The caller wants "first" from this tree, or nothing.
369 */
370 path = a->path;
0de16337 371 len = tree_entry_len(a);
1ee26571
JH
372 switch (check_entry_match(first, first_len, path, len)) {
373 case -1:
374 entry_clear(a);
375 case 0:
376 return;
377 default:
378 break;
379 }
380
381 /*
382 * We need to look-ahead -- we suspect that a subtree whose
383 * name is "first" may be hiding behind the current entry "path".
384 */
385 probe = t->d;
386 while (probe.size) {
387 entry_extract(&probe, a);
388 path = a->path;
0de16337 389 len = tree_entry_len(a);
1ee26571
JH
390 switch (check_entry_match(first, first_len, path, len)) {
391 case -1:
392 entry_clear(a);
393 case 0:
394 return;
395 default:
396 update_tree_entry(&probe);
397 break;
398 }
399 /* keep looking */
400 }
401 entry_clear(a);
402}
403
404static void update_extended_entry(struct tree_desc_x *t, struct name_entry *a)
405{
406 if (t->d.entry.path == a->path) {
407 update_tree_entry(&t->d);
408 } else {
409 /* we have returned this entry early */
410 struct tree_desc_skip *skip = xmalloc(sizeof(*skip));
411 skip->ptr = a->path;
412 skip->prev = t->skip;
413 t->skip = skip;
414 }
415}
416
417static void free_extended_entry(struct tree_desc_x *t)
418{
419 struct tree_desc_skip *p, *s;
420
421 for (s = t->skip; s; s = p) {
422 p = s->prev;
423 free(s);
424 }
425}
426
67022e02
NTND
427static inline int prune_traversal(struct index_state *istate,
428 struct name_entry *e,
2842c0f9
JH
429 struct traverse_info *info,
430 struct strbuf *base,
431 int still_interesting)
432{
433 if (!info->pathspec || still_interesting == 2)
434 return 2;
435 if (still_interesting < 0)
436 return still_interesting;
67022e02
NTND
437 return tree_entry_interesting(istate, e, base,
438 0, info->pathspec);
2842c0f9
JH
439}
440
67022e02
NTND
441int traverse_trees(struct index_state *istate,
442 int n, struct tree_desc *t,
443 struct traverse_info *info)
1b0c7174 444{
e6c111b4 445 int error = 0;
5290d451 446 struct name_entry entry[MAX_TRAVERSE_TREES];
1ee26571 447 int i;
8dd40c04 448 struct tree_desc_x tx[ARRAY_SIZE(entry)];
2842c0f9
JH
449 struct strbuf base = STRBUF_INIT;
450 int interesting = 1;
d9c2bd56 451 char *traverse_path;
1ee26571 452
da8be8ce
DS
453 traverse_trees_count++;
454 traverse_trees_cur_depth++;
455
456 if (traverse_trees_cur_depth > traverse_trees_max_depth)
457 traverse_trees_max_depth = traverse_trees_cur_depth;
458
8dd40c04
JK
459 if (n >= ARRAY_SIZE(entry))
460 BUG("traverse_trees() called with too many trees (%d)", n);
461
462 for (i = 0; i < n; i++) {
1ee26571 463 tx[i].d = t[i];
8dd40c04
JK
464 tx[i].skip = NULL;
465 }
1b0c7174 466
2842c0f9 467 if (info->prev) {
c43ab062
JK
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);
d9c2bd56 472 } else {
90553847 473 traverse_path = xstrndup(info->name, info->pathlen);
2842c0f9 474 }
d9c2bd56 475 info->traverse_path = traverse_path;
1b0c7174 476 for (;;) {
a04f8196 477 int trees_used;
1ee26571
JH
478 unsigned long mask, dirmask;
479 const char *first = NULL;
480 int first_len = 0;
27c0f768 481 struct name_entry *e = NULL;
1ee26571
JH
482 int len;
483
484 for (i = 0; i < n; i++) {
485 e = entry + i;
486 extended_entry_extract(tx + i, e, NULL, 0);
487 }
1b0c7174 488
1ee26571
JH
489 /*
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.
494 */
1b0c7174 495 for (i = 0; i < n; i++) {
1ee26571
JH
496 e = entry + i;
497 if (!e->path)
1b0c7174 498 continue;
0de16337 499 len = tree_entry_len(e);
1ee26571
JH
500 if (!first) {
501 first = e->path;
502 first_len = len;
503 continue;
504 }
505 if (name_compare(e->path, len, first, first_len) < 0) {
506 first = e->path;
507 first_len = len;
508 }
509 }
510
511 if (first) {
512 for (i = 0; i < n; i++) {
513 e = entry + i;
514 extended_entry_extract(tx + i, e, first, first_len);
515 /* Cull the ones that are not the earliest */
516 if (!e->path)
1b0c7174 517 continue;
0de16337 518 len = tree_entry_len(e);
1ee26571
JH
519 if (name_compare(e->path, len, first, first_len))
520 entry_clear(e);
1b0c7174 521 }
1ee26571
JH
522 }
523
524 /* Now we have in entry[i] the earliest name from the trees */
525 mask = 0;
526 dirmask = 0;
527 for (i = 0; i < n; i++) {
528 if (!entry[i].path)
529 continue;
1b0c7174 530 mask |= 1ul << i;
91e4f036
LT
531 if (S_ISDIR(entry[i].mode))
532 dirmask |= 1ul << i;
2842c0f9 533 e = &entry[i];
1b0c7174
JH
534 }
535 if (!mask)
536 break;
67022e02 537 interesting = prune_traversal(istate, e, info, &base, interesting);
2842c0f9
JH
538 if (interesting < 0)
539 break;
540 if (interesting) {
a04f8196
SB
541 trees_used = info->fn(n, mask, dirmask, entry, info);
542 if (trees_used < 0) {
543 error = trees_used;
2842c0f9
JH
544 if (!info->show_all_errors)
545 break;
546 }
a04f8196 547 mask &= trees_used;
e6c111b4 548 }
1ee26571 549 for (i = 0; i < n; i++)
5803c6f8 550 if (mask & (1ul << i))
1ee26571 551 update_extended_entry(tx + i, entry + i);
1b0c7174 552 }
1ee26571
JH
553 for (i = 0; i < n; i++)
554 free_extended_entry(tx + i);
d9c2bd56
DT
555 free(traverse_path);
556 info->traverse_path = NULL;
2842c0f9 557 strbuf_release(&base);
da8be8ce
DS
558
559 traverse_trees_cur_depth--;
e6c111b4 560 return error;
1b0c7174
JH
561}
562
275721c2
DT
563struct dir_state {
564 void *tree;
565 unsigned long size;
3b683bcf 566 struct object_id oid;
275721c2
DT
567};
568
50ddb089
NTND
569static int find_tree_entry(struct repository *r, struct tree_desc *t,
570 const char *name, struct object_id *result,
571 unsigned short *mode)
4dcff634
JH
572{
573 int namelen = strlen(name);
574 while (t->size) {
575 const char *entry;
0a3faa45 576 struct object_id oid;
4dcff634
JH
577 int entrylen, cmp;
578
0a3faa45 579 oidcpy(&oid, tree_entry_extract(t, &entry, mode));
0de16337 580 entrylen = tree_entry_len(&t->entry);
4dcff634 581 update_tree_entry(t);
4dcff634
JH
582 if (entrylen > namelen)
583 continue;
584 cmp = memcmp(name, entry, entrylen);
585 if (cmp > 0)
586 continue;
587 if (cmp < 0)
588 break;
589 if (entrylen == namelen) {
0a3faa45 590 oidcpy(result, &oid);
4dcff634
JH
591 return 0;
592 }
593 if (name[entrylen] != '/')
594 continue;
595 if (!S_ISDIR(*mode))
596 break;
597 if (++entrylen == namelen) {
0a3faa45 598 oidcpy(result, &oid);
4dcff634
JH
599 return 0;
600 }
50ddb089 601 return get_tree_entry(r, &oid, name + entrylen, result, mode);
4dcff634
JH
602 }
603 return -1;
604}
605
50ddb089
NTND
606int get_tree_entry(struct repository *r,
607 const struct object_id *tree_oid,
608 const char *name,
609 struct object_id *oid,
610 unsigned short *mode)
4dcff634
JH
611{
612 int retval;
613 void *tree;
6fda5e51 614 unsigned long size;
916bc35b 615 struct object_id root;
4dcff634 616
6aea6bae 617 tree = read_object_with_reference(r, tree_oid, OBJ_TREE, &size, &root);
4dcff634
JH
618 if (!tree)
619 return -1;
d93b7d1c
JK
620
621 if (name[0] == '\0') {
916bc35b 622 oidcpy(oid, &root);
ef006503 623 free(tree);
d93b7d1c
JK
624 return 0;
625 }
626
5fb8c05f
JH
627 if (!size) {
628 retval = -1;
629 } else {
630 struct tree_desc t;
631 init_tree_desc(&t, tree, size);
50ddb089 632 retval = find_tree_entry(r, &t, name, oid, mode);
5fb8c05f 633 }
4dcff634
JH
634 free(tree);
635 return retval;
636}
2c389fc8 637
275721c2
DT
638/*
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
641 * choice.
642 */
643#define GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS 40
644
645/**
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
655 * the object.
656 *
d1dd94b3 657 * See the code for enum get_oid_result for a description of
275721c2
DT
658 * the return values.
659 */
0dd1f0c3
NTND
660enum 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)
275721c2
DT
664{
665 int retval = MISSING_OBJECT;
666 struct dir_state *parents = NULL;
667 size_t parents_alloc = 0;
071bcaab 668 size_t i, parents_nr = 0;
0d4a8b5b 669 struct object_id current_tree_oid;
275721c2
DT
670 struct strbuf namebuf = STRBUF_INIT;
671 struct tree_desc t;
672 int follows_remaining = GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS;
275721c2
DT
673
674 init_tree_desc(&t, NULL, 0UL);
275721c2 675 strbuf_addstr(&namebuf, name);
3b683bcf 676 oidcpy(&current_tree_oid, tree_oid);
275721c2
DT
677
678 while (1) {
679 int find_result;
680 char *first_slash;
681 char *remainder = NULL;
682
683 if (!t.buffer) {
684 void *tree;
0d4a8b5b 685 struct object_id root;
275721c2 686 unsigned long size;
0dd1f0c3 687 tree = read_object_with_reference(r,
d3b4705a 688 &current_tree_oid,
6aea6bae 689 OBJ_TREE, &size,
02f0547e 690 &root);
275721c2
DT
691 if (!tree)
692 goto done;
693
694 ALLOC_GROW(parents, parents_nr + 1, parents_alloc);
695 parents[parents_nr].tree = tree;
696 parents[parents_nr].size = size;
3b683bcf 697 oidcpy(&parents[parents_nr].oid, &root);
275721c2
DT
698 parents_nr++;
699
700 if (namebuf.buf[0] == '\0') {
3b683bcf 701 oidcpy(result, &root);
275721c2
DT
702 retval = FOUND;
703 goto done;
704 }
705
706 if (!size)
707 goto done;
708
709 /* descend */
710 init_tree_desc(&t, tree, size);
711 }
712
713 /* Handle symlinks to e.g. a//b by removing leading slashes */
714 while (namebuf.buf[0] == '/') {
715 strbuf_remove(&namebuf, 0, 1);
716 }
717
718 /* Split namebuf into a first component and a remainder */
719 if ((first_slash = strchr(namebuf.buf, '/'))) {
720 *first_slash = 0;
721 remainder = first_slash + 1;
722 }
723
724 if (!strcmp(namebuf.buf, "..")) {
725 struct dir_state *parent;
726 /*
727 * We could end up with .. in the namebuf if it
728 * appears in a symlink.
729 */
730
731 if (parents_nr == 1) {
732 if (remainder)
733 *first_slash = '/';
734 strbuf_add(result_path, namebuf.buf,
735 namebuf.len);
736 *mode = 0;
737 retval = FOUND;
738 goto done;
739 }
740 parent = &parents[parents_nr - 1];
741 free(parent->tree);
742 parents_nr--;
743 parent = &parents[parents_nr - 1];
744 init_tree_desc(&t, parent->tree, parent->size);
745 strbuf_remove(&namebuf, 0, remainder ? 3 : 2);
746 continue;
747 }
748
749 /* We could end up here via a symlink to dir/.. */
750 if (namebuf.buf[0] == '\0') {
3b683bcf 751 oidcpy(result, &parents[parents_nr - 1].oid);
275721c2
DT
752 retval = FOUND;
753 goto done;
754 }
755
756 /* Look up the first (or only) path component in the tree. */
0dd1f0c3 757 find_result = find_tree_entry(r, &t, namebuf.buf,
916bc35b 758 &current_tree_oid, mode);
275721c2
DT
759 if (find_result) {
760 goto done;
761 }
762
763 if (S_ISDIR(*mode)) {
764 if (!remainder) {
3b683bcf 765 oidcpy(result, &current_tree_oid);
275721c2
DT
766 retval = FOUND;
767 goto done;
768 }
769 /* Descend the tree */
770 t.buffer = NULL;
771 strbuf_remove(&namebuf, 0,
772 1 + first_slash - namebuf.buf);
773 } else if (S_ISREG(*mode)) {
774 if (!remainder) {
3b683bcf 775 oidcpy(result, &current_tree_oid);
275721c2
DT
776 retval = FOUND;
777 } else {
778 retval = NOT_DIR;
779 }
780 goto done;
781 } else if (S_ISLNK(*mode)) {
782 /* Follow a symlink */
783 unsigned long link_len;
784 size_t len;
785 char *contents, *contents_start;
786 struct dir_state *parent;
787 enum object_type type;
788
789 if (follows_remaining-- == 0) {
790 /* Too many symlinks followed */
791 retval = SYMLINK_LOOP;
792 goto done;
793 }
794
795 /*
796 * At this point, we have followed at a least
797 * one symlink, so on error we need to report this.
798 */
799 retval = DANGLING_SYMLINK;
800
0dd1f0c3
NTND
801 contents = repo_read_object_file(r,
802 &current_tree_oid, &type,
b4f5aca4 803 &link_len);
275721c2
DT
804
805 if (!contents)
806 goto done;
807
808 if (contents[0] == '/') {
809 strbuf_addstr(result_path, contents);
810 free(contents);
811 *mode = 0;
812 retval = FOUND;
813 goto done;
814 }
815
816 if (remainder)
817 len = first_slash - namebuf.buf;
818 else
819 len = namebuf.len;
820
821 contents_start = contents;
822
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);
827 if (remainder)
828 namebuf.buf[link_len] = '/';
829 free(contents);
830 }
831 }
832done:
833 for (i = 0; i < parents_nr; i++)
834 free(parents[i].tree);
835 free(parents);
836
837 strbuf_release(&namebuf);
838 return retval;
839}
840
93d93537
NTND
841static int match_entry(const struct pathspec_item *item,
842 const struct name_entry *entry, int pathlen,
58c4d666 843 const char *match, int matchlen,
c3a47ca9 844 enum interesting *never_interesting)
58c4d666
NTND
845{
846 int m = -1; /* signals that we haven't called strncmp() */
847
93d93537
NTND
848 if (item->magic & PATHSPEC_ICASE)
849 /*
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]'
856 * pattern.
857 */
858 *never_interesting = entry_not_interesting;
859 else if (*never_interesting != entry_not_interesting) {
58c4d666
NTND
860 /*
861 * We have not seen any match that sorts later
862 * than the current path.
863 */
864
865 /*
866 * Does match sort strictly earlier than path
867 * with their common parts?
868 */
869 m = strncmp(match, entry->path,
870 (matchlen < pathlen) ? matchlen : pathlen);
871 if (m < 0)
872 return 0;
873
874 /*
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.
886 */
c3a47ca9 887 *never_interesting = entry_not_interesting;
58c4d666
NTND
888 }
889
890 if (pathlen > matchlen)
891 return 0;
892
893 if (matchlen > pathlen) {
894 if (match[pathlen] != '/')
895 return 0;
35a9f1e9
SG
896 /*
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'
900 * uniformly).
901 */
902 if (!S_ISDIR(entry->mode) &&
903 (!S_ISGITLINK(entry->mode) || matchlen > pathlen + 1))
58c4d666
NTND
904 return 0;
905 }
906
907 if (m == -1)
908 /*
909 * we cheated and did not do strncmp(), so we do
910 * that here.
911 */
93d93537 912 m = ps_strncmp(item, match, entry->path, pathlen);
58c4d666
NTND
913
914 /*
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.
918 */
919 if (!m)
93d93537
NTND
920 /*
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
925 * the prefix.
926 */
58c4d666
NTND
927 return 1;
928
929 return 0;
930}
931
93d93537
NTND
932/* :(icase)-aware string compare */
933static int basecmp(const struct pathspec_item *item,
934 const char *base, const char *match, int len)
935{
936 if (item->magic & PATHSPEC_ICASE) {
937 int ret, n = len > item->prefix ? item->prefix : len;
938 ret = strncmp(base, match, n);
939 if (ret)
940 return ret;
941 base += n;
942 match += n;
943 len -= n;
944 }
945 return ps_strncmp(item, base, match, len);
946}
947
948static int match_dir_prefix(const struct pathspec_item *item,
949 const char *base,
58c4d666
NTND
950 const char *match, int matchlen)
951{
93d93537 952 if (basecmp(item, base, match, matchlen))
58c4d666
NTND
953 return 0;
954
955 /*
956 * If the base is a subdirectory of a path which
957 * was specified, all of them are interesting.
958 */
959 if (!matchlen ||
960 base[matchlen] == '/' ||
961 match[matchlen - 1] == '/')
962 return 1;
963
964 /* Just a random prefix match */
965 return 0;
966}
967
c904cd89
NTND
968/*
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.
972 */
973static int match_wildcard_base(const struct pathspec_item *item,
974 const char *base, int baselen,
975 int *matched)
976{
977 const char *match = item->match;
978 /* the wildcard part is not considered in this function */
979 int matchlen = item->nowildcard_len;
980
981 if (baselen) {
982 int dirlen;
983 /*
984 * Return early if base is longer than the
985 * non-wildcard part but it does not match.
986 */
987 if (baselen >= matchlen) {
988 *matched = matchlen;
93d93537 989 return !basecmp(item, base, match, matchlen);
c904cd89
NTND
990 }
991
992 dirlen = matchlen;
993 while (dirlen && match[dirlen - 1] != '/')
994 dirlen--;
995
996 /*
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
1000 * directory
1001 */
93d93537 1002 if (basecmp(item, base, match, baselen))
c904cd89
NTND
1003 return 0;
1004 *matched = baselen;
1005 } else
1006 *matched = 0;
1007 /*
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
1011 * base comparison.
1012 */
1013 return entry_interesting;
1014}
1015
2c389fc8
NTND
1016/*
1017 * Is a tree entry interesting given the pathspec we have?
1018 *
1376e507
NTND
1019 * Pre-condition: either baselen == base_offset (i.e. empty path)
1020 * or base[baselen-1] == '/' (i.e. with trailing slash).
2c389fc8 1021 */
67022e02
NTND
1022static enum interesting do_match(struct index_state *istate,
1023 const struct name_entry *entry,
ef79b1f8
NTND
1024 struct strbuf *base, int base_offset,
1025 const struct pathspec *ps,
1026 int exclude)
2c389fc8
NTND
1027{
1028 int i;
1376e507 1029 int pathlen, baselen = base->len - base_offset;
c3a47ca9 1030 enum interesting never_interesting = ps->has_wildcard ?
d688cf07 1031 entry_not_interesting : all_entries_not_interesting;
2c389fc8 1032
5c6933d2
NTND
1033 GUARD_PATHSPEC(ps,
1034 PATHSPEC_FROMTOP |
1035 PATHSPEC_MAXDEPTH |
bd30c2e4 1036 PATHSPEC_LITERAL |
93d93537 1037 PATHSPEC_GLOB |
ef79b1f8 1038 PATHSPEC_ICASE |
5a0b97b3
NTND
1039 PATHSPEC_EXCLUDE |
1040 PATHSPEC_ATTR);
8f4f8f45 1041
bc96cc87 1042 if (!ps->nr) {
6330a171
NTND
1043 if (!ps->recursive ||
1044 !(ps->magic & PATHSPEC_MAXDEPTH) ||
1045 ps->max_depth == -1)
d688cf07
NTND
1046 return all_entries_interesting;
1047 return within_depth(base->buf + base_offset, baselen,
1048 !!S_ISDIR(entry->mode),
1049 ps->max_depth) ?
1050 entry_interesting : entry_not_interesting;
bc96cc87 1051 }
2c389fc8 1052
0de16337 1053 pathlen = tree_entry_len(entry);
2c389fc8 1054
1376e507 1055 for (i = ps->nr - 1; i >= 0; i--) {
2c389fc8
NTND
1056 const struct pathspec_item *item = ps->items+i;
1057 const char *match = item->match;
1376e507 1058 const char *base_str = base->buf + base_offset;
c904cd89 1059 int matchlen = item->len, matched = 0;
2c389fc8 1060
ef79b1f8
NTND
1061 if ((!exclude && item->magic & PATHSPEC_EXCLUDE) ||
1062 ( exclude && !(item->magic & PATHSPEC_EXCLUDE)))
1063 continue;
1064
2c389fc8
NTND
1065 if (baselen >= matchlen) {
1066 /* If it doesn't match, move along... */
93d93537 1067 if (!match_dir_prefix(item, base_str, match, matchlen))
d38f2809 1068 goto match_wildcards;
bc96cc87 1069
6330a171
NTND
1070 if (!ps->recursive ||
1071 !(ps->magic & PATHSPEC_MAXDEPTH) ||
5a0b97b3
NTND
1072 ps->max_depth == -1) {
1073 if (!item->attr_match_nr)
1074 return all_entries_interesting;
1075 else
1076 goto interesting;
1077 }
1078
1079 if (within_depth(base_str + matchlen + 1,
1080 baselen - matchlen - 1,
1081 !!S_ISDIR(entry->mode),
1082 ps->max_depth))
1083 goto interesting;
1084 else
1085 return entry_not_interesting;
2c389fc8
NTND
1086 }
1087
1b740923 1088 /* Either there must be no base, or the base must match. */
93d93537
NTND
1089 if (baselen == 0 || !basecmp(item, base_str, match, baselen)) {
1090 if (match_entry(item, entry, pathlen,
58c4d666
NTND
1091 match + baselen, matchlen - baselen,
1092 &never_interesting))
5a0b97b3 1093 goto interesting;
f1a2ddbb 1094
170260ae 1095 if (item->nowildcard_len < item->len) {
bd30c2e4 1096 if (!git_fnmatch(item, match + baselen, entry->path,
8c6abbcd 1097 item->nowildcard_len - baselen))
5a0b97b3 1098 goto interesting;
f1a2ddbb
NTND
1099
1100 /*
1101 * Match all directories. We'll try to
1102 * match files later on.
1103 */
1104 if (ps->recursive && S_ISDIR(entry->mode))
d688cf07 1105 return entry_interesting;
74ed4371
BW
1106
1107 /*
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.
1113 */
eef3df5a
BW
1114 if (ps->recurse_submodules &&
1115 S_ISGITLINK(entry->mode) &&
74ed4371
BW
1116 !ps_strncmp(item, match + baselen,
1117 entry->path,
1118 item->nowildcard_len - baselen))
5a0b97b3 1119 goto interesting;
f1a2ddbb
NTND
1120 }
1121
1122 continue;
2c389fc8 1123 }
d38f2809
NTND
1124
1125match_wildcards:
170260ae 1126 if (item->nowildcard_len == item->len)
d38f2809
NTND
1127 continue;
1128
c904cd89
NTND
1129 if (item->nowildcard_len &&
1130 !match_wildcard_base(item, base_str, baselen, &matched))
e4ddb057 1131 continue;
c904cd89 1132
d38f2809
NTND
1133 /*
1134 * Concatenate base and entry->path into one and do
1135 * fnmatch() on it.
c904cd89
NTND
1136 *
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.
1143 *
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.
d38f2809
NTND
1147 */
1148
1149 strbuf_add(base, entry->path, pathlen);
1150
bd30c2e4 1151 if (!git_fnmatch(item, match, base->buf + base_offset,
8c6abbcd 1152 item->nowildcard_len)) {
1376e507 1153 strbuf_setlen(base, base_offset + baselen);
5a0b97b3 1154 goto interesting;
d38f2809 1155 }
74ed4371
BW
1156
1157 /*
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.
1163 */
eef3df5a 1164 if (ps->recurse_submodules && S_ISGITLINK(entry->mode) &&
74ed4371
BW
1165 !ps_strncmp(item, match, base->buf + base_offset,
1166 item->nowildcard_len)) {
1167 strbuf_setlen(base, base_offset + baselen);
5a0b97b3 1168 goto interesting;
74ed4371
BW
1169 }
1170
1376e507 1171 strbuf_setlen(base, base_offset + baselen);
d38f2809
NTND
1172
1173 /*
1174 * Match all directories. We'll try to match files
1175 * later on.
8c69c1f9
NTND
1176 * max_depth is ignored but we may consider support it
1177 * in future, see
3eae30e4 1178 * https://lore.kernel.org/git/7vmxo5l2g4.fsf@alter.siamese.dyndns.org/
d38f2809
NTND
1179 */
1180 if (ps->recursive && S_ISDIR(entry->mode))
d688cf07 1181 return entry_interesting;
5a0b97b3
NTND
1182 continue;
1183interesting:
1184 if (item->attr_match_nr) {
1185 int ret;
1186
1187 /*
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.
1191 */
1192 never_interesting = entry_not_interesting;
1193
1194 /*
1195 * Consider all directories interesting (because some
1196 * of those files inside may match some attributes
1197 * even though the parent dir does not)
1198 *
1199 * FIXME: attributes _can_ match directories and we
1200 * can probably return all_entries_interesting or
1201 * all_entries_not_interesting here if matched.
1202 */
1203 if (S_ISDIR(entry->mode))
1204 return entry_interesting;
1205
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);
1210 if (!ret)
1211 continue;
1212 }
1213 return entry_interesting;
2c389fc8
NTND
1214 }
1215 return never_interesting; /* No matches */
1216}
ef79b1f8
NTND
1217
1218/*
1219 * Is a tree entry interesting given the pathspec we have?
1220 *
1221 * Pre-condition: either baselen == base_offset (i.e. empty path)
1222 * or base[baselen-1] == '/' (i.e. with trailing slash).
1223 */
67022e02
NTND
1224enum interesting tree_entry_interesting(struct index_state *istate,
1225 const struct name_entry *entry,
ef79b1f8
NTND
1226 struct strbuf *base, int base_offset,
1227 const struct pathspec *ps)
1228{
1229 enum interesting positive, negative;
67022e02 1230 positive = do_match(istate, entry, base, base_offset, ps, 0);
ef79b1f8
NTND
1231
1232 /*
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
b7845ceb 1242 * 8 | file | 2 | 0 | 1
ef79b1f8
NTND
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
b7845ceb 1253 * 18 | dir | 2 | 0 | 1
ef79b1f8
NTND
1254 * 19 | dir | 2 | 1 | 1 (*)
1255 * 20 | dir | 2 | 2 | -1
1256 *
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.
1261 */
1262
1263 if (!(ps->magic & PATHSPEC_EXCLUDE) ||
1264 positive <= entry_not_interesting) /* #1, #2, #11, #12 */
1265 return positive;
1266
67022e02 1267 negative = do_match(istate, entry, base, base_offset, ps, 1);
ef79b1f8 1268
b7845ceb
NTND
1269 /* #8, #18 */
1270 if (positive == all_entries_interesting &&
1271 negative == entry_not_interesting)
1272 return entry_interesting;
1273
1274 /* #3, #4, #7, #13, #14, #17 */
ef79b1f8
NTND
1275 if (negative <= entry_not_interesting)
1276 return positive;
1277
1278 /* #15, #19 */
1279 if (S_ISDIR(entry->mode) &&
1280 positive >= entry_interesting &&
1281 negative == entry_interesting)
1282 return entry_interesting;
1283
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;
1289
1290 return all_entries_not_interesting; /* #10, #20 */
1291}