]> git.ipfire.org Git - thirdparty/git.git/blame - tree-walk.c
tree-walk: store object_id in a separate member
[thirdparty/git.git] / tree-walk.c
CommitLineData
1b0c7174
JH
1#include "cache.h"
2#include "tree-walk.h"
e6c111b4 3#include "unpack-trees.h"
bc96cc87 4#include "dir.h"
cbd53a21 5#include "object-store.h"
8e440259 6#include "tree.h"
64acde94 7#include "pathspec.h"
1b0c7174 8
4651ece8
LT
9static const char *get_mode(const char *str, unsigned int *modep)
10{
11 unsigned char c;
12 unsigned int mode = 0;
13
64cc1c09
MK
14 if (*str == ' ')
15 return NULL;
16
4651ece8
LT
17 while ((c = *str++) != ' ') {
18 if (c < '0' || c > '7')
19 return NULL;
20 mode = (mode << 3) + (c - '0');
21 }
22 *modep = mode;
23 return str;
24}
25
8354fa3d 26static int decode_tree_entry(struct tree_desc *desc, const char *buf, unsigned long size, struct strbuf *err)
4651ece8
LT
27{
28 const char *path;
29 unsigned int mode, len;
83e4b757 30 const unsigned hashsz = the_hash_algo->rawsz;
4651ece8 31
83e4b757 32 if (size < hashsz + 3 || buf[size - (hashsz + 1)]) {
8354fa3d
DT
33 strbuf_addstr(err, _("too-short tree object"));
34 return -1;
35 }
64cc1c09 36
4651ece8 37 path = get_mode(buf, &mode);
8354fa3d
DT
38 if (!path) {
39 strbuf_addstr(err, _("malformed mode in tree entry"));
40 return -1;
41 }
42 if (!*path) {
43 strbuf_addstr(err, _("empty filename in tree entry"));
44 return -1;
45 }
4651ece8
LT
46 len = strlen(path) + 1;
47
48 /* Initialize the descriptor entry */
49 desc->entry.path = path;
7146e66f 50 desc->entry.mode = canon_mode(mode);
ea82b2a0 51 desc->entry.pathlen = len - 1;
52 hashcpy(desc->entry.oid.hash, (const unsigned char *)path + len);
8354fa3d
DT
53
54 return 0;
4651ece8
LT
55}
56
8354fa3d 57static int init_tree_desc_internal(struct tree_desc *desc, const void *buffer, unsigned long size, struct strbuf *err)
6fda5e51
LT
58{
59 desc->buffer = buffer;
60 desc->size = size;
4651ece8 61 if (size)
8354fa3d
DT
62 return decode_tree_entry(desc, buffer, size, err);
63 return 0;
64}
65
66void init_tree_desc(struct tree_desc *desc, const void *buffer, unsigned long size)
67{
68 struct strbuf err = STRBUF_INIT;
69 if (init_tree_desc_internal(desc, buffer, size, &err))
70 die("%s", err.buf);
71 strbuf_release(&err);
72}
73
74int init_tree_desc_gently(struct tree_desc *desc, const void *buffer, unsigned long size)
75{
76 struct strbuf err = STRBUF_INIT;
77 int result = init_tree_desc_internal(desc, buffer, size, &err);
78 if (result)
79 error("%s", err.buf);
80 strbuf_release(&err);
81 return result;
6fda5e51
LT
82}
83
5c377d3d 84void *fill_tree_descriptor(struct tree_desc *desc, const struct object_id *oid)
1b0c7174
JH
85{
86 unsigned long size = 0;
87 void *buf = NULL;
88
5c377d3d 89 if (oid) {
02f0547e 90 buf = read_object_with_reference(oid, tree_type, &size, NULL);
1b0c7174 91 if (!buf)
5c377d3d 92 die("unable to read tree %s", oid_to_hex(oid));
1b0c7174 93 }
6fda5e51 94 init_tree_desc(desc, buf, size);
1b0c7174
JH
95 return buf;
96}
97
1b0c7174
JH
98static void entry_clear(struct name_entry *a)
99{
100 memset(a, 0, sizeof(*a));
101}
102
103static void entry_extract(struct tree_desc *t, struct name_entry *a)
104{
4651ece8 105 *a = t->entry;
1b0c7174
JH
106}
107
8354fa3d 108static int update_tree_entry_internal(struct tree_desc *desc, struct strbuf *err)
1b0c7174 109{
6fda5e51 110 const void *buf = desc->buffer;
ea82b2a0 111 const unsigned char *end = (const unsigned char *)desc->entry.path + desc->entry.pathlen + 1 + the_hash_algo->rawsz;
1b0c7174 112 unsigned long size = desc->size;
4651ece8 113 unsigned long len = end - (const unsigned char *)buf;
1b0c7174
JH
114
115 if (size < len)
2edffef2 116 die(_("too-short tree file"));
4651ece8
LT
117 buf = end;
118 size -= len;
119 desc->buffer = buf;
120 desc->size = size;
121 if (size)
8354fa3d
DT
122 return decode_tree_entry(desc, buf, size, err);
123 return 0;
124}
125
126void update_tree_entry(struct tree_desc *desc)
127{
128 struct strbuf err = STRBUF_INIT;
129 if (update_tree_entry_internal(desc, &err))
130 die("%s", err.buf);
131 strbuf_release(&err);
132}
133
134int update_tree_entry_gently(struct tree_desc *desc)
135{
136 struct strbuf err = STRBUF_INIT;
137 if (update_tree_entry_internal(desc, &err)) {
138 error("%s", err.buf);
139 strbuf_release(&err);
140 /* Stop processing this tree after error */
141 desc->size = 0;
142 return -1;
143 }
144 strbuf_release(&err);
145 return 0;
1b0c7174
JH
146}
147
4c068a98
LT
148int tree_entry(struct tree_desc *desc, struct name_entry *entry)
149{
4651ece8 150 if (!desc->size)
4c068a98
LT
151 return 0;
152
4651ece8
LT
153 *entry = desc->entry;
154 update_tree_entry(desc);
4c068a98
LT
155 return 1;
156}
157
8354fa3d
DT
158int tree_entry_gently(struct tree_desc *desc, struct name_entry *entry)
159{
160 if (!desc->size)
161 return 0;
162
163 *entry = desc->entry;
164 if (update_tree_entry_gently(desc))
165 return 0;
166 return 1;
167}
168
40d934df
LT
169void setup_traverse_info(struct traverse_info *info, const char *base)
170{
171 int pathlen = strlen(base);
bcbe5a51 172 static struct traverse_info dummy;
40d934df
LT
173
174 memset(info, 0, sizeof(*info));
175 if (pathlen && base[pathlen-1] == '/')
176 pathlen--;
177 info->pathlen = pathlen ? pathlen + 1 : 0;
178 info->name.path = base;
ea82b2a0 179 info->name.pathlen = pathlen;
180 if (pathlen) {
181 hashcpy(info->name.oid.hash, (const unsigned char *)base + pathlen + 1);
bcbe5a51 182 info->prev = &dummy;
ea82b2a0 183 }
40d934df
LT
184}
185
186char *make_traverse_path(char *path, const struct traverse_info *info, const struct name_entry *n)
187{
0de16337 188 int len = tree_entry_len(n);
40d934df
LT
189 int pathlen = info->pathlen;
190
191 path[pathlen + len] = 0;
192 for (;;) {
193 memcpy(path + pathlen, n->path, len);
194 if (!pathlen)
195 break;
196 path[--pathlen] = '/';
197 n = &info->name;
0de16337 198 len = tree_entry_len(n);
40d934df
LT
199 info = info->prev;
200 pathlen -= len;
201 }
202 return path;
203}
204
1ee26571
JH
205struct tree_desc_skip {
206 struct tree_desc_skip *prev;
207 const void *ptr;
208};
209
210struct tree_desc_x {
211 struct tree_desc d;
212 struct tree_desc_skip *skip;
213};
214
1ee26571
JH
215static int check_entry_match(const char *a, int a_len, const char *b, int b_len)
216{
217 /*
218 * The caller wants to pick *a* from a tree or nothing.
219 * We are looking at *b* in a tree.
220 *
221 * (0) If a and b are the same name, we are trivially happy.
222 *
223 * There are three possibilities where *a* could be hiding
224 * behind *b*.
225 *
226 * (1) *a* == "t", *b* == "ab" i.e. *b* sorts earlier than *a* no
227 * matter what.
228 * (2) *a* == "t", *b* == "t-2" and "t" is a subtree in the tree;
229 * (3) *a* == "t-2", *b* == "t" and "t-2" is a blob in the tree.
230 *
231 * Otherwise we know *a* won't appear in the tree without
232 * scanning further.
233 */
234
235 int cmp = name_compare(a, a_len, b, b_len);
236
237 /* Most common case first -- reading sync'd trees */
238 if (!cmp)
239 return cmp;
240
241 if (0 < cmp) {
242 /* a comes after b; it does not matter if it is case (3)
243 if (b_len < a_len && !memcmp(a, b, b_len) && a[b_len] < '/')
244 return 1;
245 */
246 return 1; /* keep looking */
247 }
248
249 /* b comes after a; are we looking at case (2)? */
250 if (a_len < b_len && !memcmp(a, b, a_len) && b[a_len] < '/')
251 return 1; /* keep looking */
252
253 return -1; /* a cannot appear in the tree */
254}
255
256/*
257 * From the extended tree_desc, extract the first name entry, while
258 * paying attention to the candidate "first" name. Most importantly,
259 * when looking for an entry, if there are entries that sorts earlier
260 * in the tree object representation than that name, skip them and
261 * process the named entry first. We will remember that we haven't
262 * processed the first entry yet, and in the later call skip the
263 * entry we processed early when update_extended_entry() is called.
264 *
265 * E.g. if the underlying tree object has these entries:
266 *
267 * blob "t-1"
268 * blob "t-2"
269 * tree "t"
270 * blob "t=1"
271 *
272 * and the "first" asks for "t", remember that we still need to
273 * process "t-1" and "t-2" but extract "t". After processing the
274 * entry "t" from this call, the caller will let us know by calling
275 * update_extended_entry() that we can remember "t" has been processed
276 * already.
277 */
278
279static void extended_entry_extract(struct tree_desc_x *t,
280 struct name_entry *a,
281 const char *first,
282 int first_len)
283{
284 const char *path;
285 int len;
286 struct tree_desc probe;
287 struct tree_desc_skip *skip;
288
289 /*
290 * Extract the first entry from the tree_desc, but skip the
291 * ones that we already returned in earlier rounds.
292 */
293 while (1) {
294 if (!t->d.size) {
295 entry_clear(a);
296 break; /* not found */
297 }
298 entry_extract(&t->d, a);
299 for (skip = t->skip; skip; skip = skip->prev)
300 if (a->path == skip->ptr)
301 break; /* found */
302 if (!skip)
303 break;
304 /* We have processed this entry already. */
305 update_tree_entry(&t->d);
306 }
307
308 if (!first || !a->path)
309 return;
310
311 /*
312 * The caller wants "first" from this tree, or nothing.
313 */
314 path = a->path;
0de16337 315 len = tree_entry_len(a);
1ee26571
JH
316 switch (check_entry_match(first, first_len, path, len)) {
317 case -1:
318 entry_clear(a);
319 case 0:
320 return;
321 default:
322 break;
323 }
324
325 /*
326 * We need to look-ahead -- we suspect that a subtree whose
327 * name is "first" may be hiding behind the current entry "path".
328 */
329 probe = t->d;
330 while (probe.size) {
331 entry_extract(&probe, a);
332 path = a->path;
0de16337 333 len = tree_entry_len(a);
1ee26571
JH
334 switch (check_entry_match(first, first_len, path, len)) {
335 case -1:
336 entry_clear(a);
337 case 0:
338 return;
339 default:
340 update_tree_entry(&probe);
341 break;
342 }
343 /* keep looking */
344 }
345 entry_clear(a);
346}
347
348static void update_extended_entry(struct tree_desc_x *t, struct name_entry *a)
349{
350 if (t->d.entry.path == a->path) {
351 update_tree_entry(&t->d);
352 } else {
353 /* we have returned this entry early */
354 struct tree_desc_skip *skip = xmalloc(sizeof(*skip));
355 skip->ptr = a->path;
356 skip->prev = t->skip;
357 t->skip = skip;
358 }
359}
360
361static void free_extended_entry(struct tree_desc_x *t)
362{
363 struct tree_desc_skip *p, *s;
364
365 for (s = t->skip; s; s = p) {
366 p = s->prev;
367 free(s);
368 }
369}
370
2842c0f9
JH
371static inline int prune_traversal(struct name_entry *e,
372 struct traverse_info *info,
373 struct strbuf *base,
374 int still_interesting)
375{
376 if (!info->pathspec || still_interesting == 2)
377 return 2;
378 if (still_interesting < 0)
379 return still_interesting;
380 return tree_entry_interesting(e, base, 0, info->pathspec);
381}
382
5803c6f8 383int traverse_trees(int n, struct tree_desc *t, struct traverse_info *info)
1b0c7174 384{
e6c111b4 385 int error = 0;
1b0c7174 386 struct name_entry *entry = xmalloc(n*sizeof(*entry));
1ee26571
JH
387 int i;
388 struct tree_desc_x *tx = xcalloc(n, sizeof(*tx));
2842c0f9
JH
389 struct strbuf base = STRBUF_INIT;
390 int interesting = 1;
d9c2bd56 391 char *traverse_path;
1ee26571
JH
392
393 for (i = 0; i < n; i++)
394 tx[i].d = t[i];
1b0c7174 395
2842c0f9
JH
396 if (info->prev) {
397 strbuf_grow(&base, info->pathlen);
398 make_traverse_path(base.buf, info->prev, &info->name);
399 base.buf[info->pathlen-1] = '/';
400 strbuf_setlen(&base, info->pathlen);
d9c2bd56
DT
401 traverse_path = xstrndup(base.buf, info->pathlen);
402 } else {
403 traverse_path = xstrndup(info->name.path, info->pathlen);
2842c0f9 404 }
d9c2bd56 405 info->traverse_path = traverse_path;
1b0c7174 406 for (;;) {
a04f8196 407 int trees_used;
1ee26571
JH
408 unsigned long mask, dirmask;
409 const char *first = NULL;
410 int first_len = 0;
27c0f768 411 struct name_entry *e = NULL;
1ee26571
JH
412 int len;
413
414 for (i = 0; i < n; i++) {
415 e = entry + i;
416 extended_entry_extract(tx + i, e, NULL, 0);
417 }
1b0c7174 418
1ee26571
JH
419 /*
420 * A tree may have "t-2" at the current location even
421 * though it may have "t" that is a subtree behind it,
422 * and another tree may return "t". We want to grab
423 * all "t" from all trees to match in such a case.
424 */
1b0c7174 425 for (i = 0; i < n; i++) {
1ee26571
JH
426 e = entry + i;
427 if (!e->path)
1b0c7174 428 continue;
0de16337 429 len = tree_entry_len(e);
1ee26571
JH
430 if (!first) {
431 first = e->path;
432 first_len = len;
433 continue;
434 }
435 if (name_compare(e->path, len, first, first_len) < 0) {
436 first = e->path;
437 first_len = len;
438 }
439 }
440
441 if (first) {
442 for (i = 0; i < n; i++) {
443 e = entry + i;
444 extended_entry_extract(tx + i, e, first, first_len);
445 /* Cull the ones that are not the earliest */
446 if (!e->path)
1b0c7174 447 continue;
0de16337 448 len = tree_entry_len(e);
1ee26571
JH
449 if (name_compare(e->path, len, first, first_len))
450 entry_clear(e);
1b0c7174 451 }
1ee26571
JH
452 }
453
454 /* Now we have in entry[i] the earliest name from the trees */
455 mask = 0;
456 dirmask = 0;
457 for (i = 0; i < n; i++) {
458 if (!entry[i].path)
459 continue;
1b0c7174 460 mask |= 1ul << i;
91e4f036
LT
461 if (S_ISDIR(entry[i].mode))
462 dirmask |= 1ul << i;
2842c0f9 463 e = &entry[i];
1b0c7174
JH
464 }
465 if (!mask)
466 break;
2842c0f9
JH
467 interesting = prune_traversal(e, info, &base, interesting);
468 if (interesting < 0)
469 break;
470 if (interesting) {
a04f8196
SB
471 trees_used = info->fn(n, mask, dirmask, entry, info);
472 if (trees_used < 0) {
473 error = trees_used;
2842c0f9
JH
474 if (!info->show_all_errors)
475 break;
476 }
a04f8196 477 mask &= trees_used;
e6c111b4 478 }
1ee26571 479 for (i = 0; i < n; i++)
5803c6f8 480 if (mask & (1ul << i))
1ee26571 481 update_extended_entry(tx + i, entry + i);
1b0c7174
JH
482 }
483 free(entry);
1ee26571
JH
484 for (i = 0; i < n; i++)
485 free_extended_entry(tx + i);
486 free(tx);
d9c2bd56
DT
487 free(traverse_path);
488 info->traverse_path = NULL;
2842c0f9 489 strbuf_release(&base);
e6c111b4 490 return error;
1b0c7174
JH
491}
492
275721c2
DT
493struct dir_state {
494 void *tree;
495 unsigned long size;
3b683bcf 496 struct object_id oid;
275721c2
DT
497};
498
916bc35b 499static int find_tree_entry(struct tree_desc *t, const char *name, struct object_id *result, unsigned *mode)
4dcff634
JH
500{
501 int namelen = strlen(name);
502 while (t->size) {
503 const char *entry;
0a3faa45 504 struct object_id oid;
4dcff634
JH
505 int entrylen, cmp;
506
0a3faa45 507 oidcpy(&oid, tree_entry_extract(t, &entry, mode));
0de16337 508 entrylen = tree_entry_len(&t->entry);
4dcff634 509 update_tree_entry(t);
4dcff634
JH
510 if (entrylen > namelen)
511 continue;
512 cmp = memcmp(name, entry, entrylen);
513 if (cmp > 0)
514 continue;
515 if (cmp < 0)
516 break;
517 if (entrylen == namelen) {
0a3faa45 518 oidcpy(result, &oid);
4dcff634
JH
519 return 0;
520 }
521 if (name[entrylen] != '/')
522 continue;
523 if (!S_ISDIR(*mode))
524 break;
525 if (++entrylen == namelen) {
0a3faa45 526 oidcpy(result, &oid);
4dcff634
JH
527 return 0;
528 }
0a3faa45 529 return get_tree_entry(&oid, name + entrylen, result, mode);
4dcff634
JH
530 }
531 return -1;
532}
533
916bc35b 534int get_tree_entry(const struct object_id *tree_oid, const char *name, struct object_id *oid, unsigned *mode)
4dcff634
JH
535{
536 int retval;
537 void *tree;
6fda5e51 538 unsigned long size;
916bc35b 539 struct object_id root;
4dcff634 540
02f0547e 541 tree = read_object_with_reference(tree_oid, tree_type, &size, &root);
4dcff634
JH
542 if (!tree)
543 return -1;
d93b7d1c
JK
544
545 if (name[0] == '\0') {
916bc35b 546 oidcpy(oid, &root);
ef006503 547 free(tree);
d93b7d1c
JK
548 return 0;
549 }
550
5fb8c05f
JH
551 if (!size) {
552 retval = -1;
553 } else {
554 struct tree_desc t;
555 init_tree_desc(&t, tree, size);
916bc35b 556 retval = find_tree_entry(&t, name, oid, mode);
5fb8c05f 557 }
4dcff634
JH
558 free(tree);
559 return retval;
560}
2c389fc8 561
275721c2
DT
562/*
563 * This is Linux's built-in max for the number of symlinks to follow.
564 * That limit, of course, does not affect git, but it's a reasonable
565 * choice.
566 */
567#define GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS 40
568
569/**
570 * Find a tree entry by following symlinks in tree_sha (which is
571 * assumed to be the root of the repository). In the event that a
572 * symlink points outside the repository (e.g. a link to /foo or a
573 * root-level link to ../foo), the portion of the link which is
574 * outside the repository will be returned in result_path, and *mode
575 * will be set to 0. It is assumed that result_path is uninitialized.
576 * If there are no symlinks, or the end result of the symlink chain
577 * points to an object inside the repository, result will be filled in
578 * with the sha1 of the found object, and *mode will hold the mode of
579 * the object.
580 *
581 * See the code for enum follow_symlink_result for a description of
582 * the return values.
583 */
3b683bcf 584enum follow_symlinks_result get_tree_entry_follow_symlinks(struct object_id *tree_oid, const char *name, struct object_id *result, struct strbuf *result_path, unsigned *mode)
275721c2
DT
585{
586 int retval = MISSING_OBJECT;
587 struct dir_state *parents = NULL;
588 size_t parents_alloc = 0;
071bcaab 589 size_t i, parents_nr = 0;
0d4a8b5b 590 struct object_id current_tree_oid;
275721c2
DT
591 struct strbuf namebuf = STRBUF_INIT;
592 struct tree_desc t;
593 int follows_remaining = GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS;
275721c2
DT
594
595 init_tree_desc(&t, NULL, 0UL);
275721c2 596 strbuf_addstr(&namebuf, name);
3b683bcf 597 oidcpy(&current_tree_oid, tree_oid);
275721c2
DT
598
599 while (1) {
600 int find_result;
601 char *first_slash;
602 char *remainder = NULL;
603
604 if (!t.buffer) {
605 void *tree;
0d4a8b5b 606 struct object_id root;
275721c2 607 unsigned long size;
02f0547e 608 tree = read_object_with_reference(&current_tree_oid,
275721c2 609 tree_type, &size,
02f0547e 610 &root);
275721c2
DT
611 if (!tree)
612 goto done;
613
614 ALLOC_GROW(parents, parents_nr + 1, parents_alloc);
615 parents[parents_nr].tree = tree;
616 parents[parents_nr].size = size;
3b683bcf 617 oidcpy(&parents[parents_nr].oid, &root);
275721c2
DT
618 parents_nr++;
619
620 if (namebuf.buf[0] == '\0') {
3b683bcf 621 oidcpy(result, &root);
275721c2
DT
622 retval = FOUND;
623 goto done;
624 }
625
626 if (!size)
627 goto done;
628
629 /* descend */
630 init_tree_desc(&t, tree, size);
631 }
632
633 /* Handle symlinks to e.g. a//b by removing leading slashes */
634 while (namebuf.buf[0] == '/') {
635 strbuf_remove(&namebuf, 0, 1);
636 }
637
638 /* Split namebuf into a first component and a remainder */
639 if ((first_slash = strchr(namebuf.buf, '/'))) {
640 *first_slash = 0;
641 remainder = first_slash + 1;
642 }
643
644 if (!strcmp(namebuf.buf, "..")) {
645 struct dir_state *parent;
646 /*
647 * We could end up with .. in the namebuf if it
648 * appears in a symlink.
649 */
650
651 if (parents_nr == 1) {
652 if (remainder)
653 *first_slash = '/';
654 strbuf_add(result_path, namebuf.buf,
655 namebuf.len);
656 *mode = 0;
657 retval = FOUND;
658 goto done;
659 }
660 parent = &parents[parents_nr - 1];
661 free(parent->tree);
662 parents_nr--;
663 parent = &parents[parents_nr - 1];
664 init_tree_desc(&t, parent->tree, parent->size);
665 strbuf_remove(&namebuf, 0, remainder ? 3 : 2);
666 continue;
667 }
668
669 /* We could end up here via a symlink to dir/.. */
670 if (namebuf.buf[0] == '\0') {
3b683bcf 671 oidcpy(result, &parents[parents_nr - 1].oid);
275721c2
DT
672 retval = FOUND;
673 goto done;
674 }
675
676 /* Look up the first (or only) path component in the tree. */
677 find_result = find_tree_entry(&t, namebuf.buf,
916bc35b 678 &current_tree_oid, mode);
275721c2
DT
679 if (find_result) {
680 goto done;
681 }
682
683 if (S_ISDIR(*mode)) {
684 if (!remainder) {
3b683bcf 685 oidcpy(result, &current_tree_oid);
275721c2
DT
686 retval = FOUND;
687 goto done;
688 }
689 /* Descend the tree */
690 t.buffer = NULL;
691 strbuf_remove(&namebuf, 0,
692 1 + first_slash - namebuf.buf);
693 } else if (S_ISREG(*mode)) {
694 if (!remainder) {
3b683bcf 695 oidcpy(result, &current_tree_oid);
275721c2
DT
696 retval = FOUND;
697 } else {
698 retval = NOT_DIR;
699 }
700 goto done;
701 } else if (S_ISLNK(*mode)) {
702 /* Follow a symlink */
703 unsigned long link_len;
704 size_t len;
705 char *contents, *contents_start;
706 struct dir_state *parent;
707 enum object_type type;
708
709 if (follows_remaining-- == 0) {
710 /* Too many symlinks followed */
711 retval = SYMLINK_LOOP;
712 goto done;
713 }
714
715 /*
716 * At this point, we have followed at a least
717 * one symlink, so on error we need to report this.
718 */
719 retval = DANGLING_SYMLINK;
720
b4f5aca4 721 contents = read_object_file(&current_tree_oid, &type,
722 &link_len);
275721c2
DT
723
724 if (!contents)
725 goto done;
726
727 if (contents[0] == '/') {
728 strbuf_addstr(result_path, contents);
729 free(contents);
730 *mode = 0;
731 retval = FOUND;
732 goto done;
733 }
734
735 if (remainder)
736 len = first_slash - namebuf.buf;
737 else
738 len = namebuf.len;
739
740 contents_start = contents;
741
742 parent = &parents[parents_nr - 1];
743 init_tree_desc(&t, parent->tree, parent->size);
744 strbuf_splice(&namebuf, 0, len,
745 contents_start, link_len);
746 if (remainder)
747 namebuf.buf[link_len] = '/';
748 free(contents);
749 }
750 }
751done:
752 for (i = 0; i < parents_nr; i++)
753 free(parents[i].tree);
754 free(parents);
755
756 strbuf_release(&namebuf);
757 return retval;
758}
759
93d93537
NTND
760static int match_entry(const struct pathspec_item *item,
761 const struct name_entry *entry, int pathlen,
58c4d666 762 const char *match, int matchlen,
c3a47ca9 763 enum interesting *never_interesting)
58c4d666
NTND
764{
765 int m = -1; /* signals that we haven't called strncmp() */
766
93d93537
NTND
767 if (item->magic & PATHSPEC_ICASE)
768 /*
769 * "Never interesting" trick requires exact
770 * matching. We could do something clever with inexact
771 * matching, but it's trickier (and not to forget that
772 * strcasecmp is locale-dependent, at least in
773 * glibc). Just disable it for now. It can't be worse
774 * than the wildcard's codepath of '[Tt][Hi][Is][Ss]'
775 * pattern.
776 */
777 *never_interesting = entry_not_interesting;
778 else if (*never_interesting != entry_not_interesting) {
58c4d666
NTND
779 /*
780 * We have not seen any match that sorts later
781 * than the current path.
782 */
783
784 /*
785 * Does match sort strictly earlier than path
786 * with their common parts?
787 */
788 m = strncmp(match, entry->path,
789 (matchlen < pathlen) ? matchlen : pathlen);
790 if (m < 0)
791 return 0;
792
793 /*
794 * If we come here even once, that means there is at
795 * least one pathspec that would sort equal to or
796 * later than the path we are currently looking at.
797 * In other words, if we have never reached this point
798 * after iterating all pathspecs, it means all
799 * pathspecs are either outside of base, or inside the
800 * base but sorts strictly earlier than the current
801 * one. In either case, they will never match the
802 * subsequent entries. In such a case, we initialized
803 * the variable to -1 and that is what will be
804 * returned, allowing the caller to terminate early.
805 */
c3a47ca9 806 *never_interesting = entry_not_interesting;
58c4d666
NTND
807 }
808
809 if (pathlen > matchlen)
810 return 0;
811
812 if (matchlen > pathlen) {
813 if (match[pathlen] != '/')
814 return 0;
74b4f7f2 815 if (!S_ISDIR(entry->mode) && !S_ISGITLINK(entry->mode))
58c4d666
NTND
816 return 0;
817 }
818
819 if (m == -1)
820 /*
821 * we cheated and did not do strncmp(), so we do
822 * that here.
823 */
93d93537 824 m = ps_strncmp(item, match, entry->path, pathlen);
58c4d666
NTND
825
826 /*
827 * If common part matched earlier then it is a hit,
828 * because we rejected the case where path is not a
829 * leading directory and is shorter than match.
830 */
831 if (!m)
93d93537
NTND
832 /*
833 * match_entry does not check if the prefix part is
834 * matched case-sensitively. If the entry is a
835 * directory and part of prefix, it'll be rematched
836 * eventually by basecmp with special treatment for
837 * the prefix.
838 */
58c4d666
NTND
839 return 1;
840
841 return 0;
842}
843
93d93537
NTND
844/* :(icase)-aware string compare */
845static int basecmp(const struct pathspec_item *item,
846 const char *base, const char *match, int len)
847{
848 if (item->magic & PATHSPEC_ICASE) {
849 int ret, n = len > item->prefix ? item->prefix : len;
850 ret = strncmp(base, match, n);
851 if (ret)
852 return ret;
853 base += n;
854 match += n;
855 len -= n;
856 }
857 return ps_strncmp(item, base, match, len);
858}
859
860static int match_dir_prefix(const struct pathspec_item *item,
861 const char *base,
58c4d666
NTND
862 const char *match, int matchlen)
863{
93d93537 864 if (basecmp(item, base, match, matchlen))
58c4d666
NTND
865 return 0;
866
867 /*
868 * If the base is a subdirectory of a path which
869 * was specified, all of them are interesting.
870 */
871 if (!matchlen ||
872 base[matchlen] == '/' ||
873 match[matchlen - 1] == '/')
874 return 1;
875
876 /* Just a random prefix match */
877 return 0;
878}
879
c904cd89
NTND
880/*
881 * Perform matching on the leading non-wildcard part of
882 * pathspec. item->nowildcard_len must be greater than zero. Return
883 * non-zero if base is matched.
884 */
885static int match_wildcard_base(const struct pathspec_item *item,
886 const char *base, int baselen,
887 int *matched)
888{
889 const char *match = item->match;
890 /* the wildcard part is not considered in this function */
891 int matchlen = item->nowildcard_len;
892
893 if (baselen) {
894 int dirlen;
895 /*
896 * Return early if base is longer than the
897 * non-wildcard part but it does not match.
898 */
899 if (baselen >= matchlen) {
900 *matched = matchlen;
93d93537 901 return !basecmp(item, base, match, matchlen);
c904cd89
NTND
902 }
903
904 dirlen = matchlen;
905 while (dirlen && match[dirlen - 1] != '/')
906 dirlen--;
907
908 /*
909 * Return early if base is shorter than the
910 * non-wildcard part but it does not match. Note that
911 * base ends with '/' so we are sure it really matches
912 * directory
913 */
93d93537 914 if (basecmp(item, base, match, baselen))
c904cd89
NTND
915 return 0;
916 *matched = baselen;
917 } else
918 *matched = 0;
919 /*
920 * we could have checked entry against the non-wildcard part
921 * that is not in base and does similar never_interesting
922 * optimization as in match_entry. For now just be happy with
923 * base comparison.
924 */
925 return entry_interesting;
926}
927
2c389fc8
NTND
928/*
929 * Is a tree entry interesting given the pathspec we have?
930 *
1376e507
NTND
931 * Pre-condition: either baselen == base_offset (i.e. empty path)
932 * or base[baselen-1] == '/' (i.e. with trailing slash).
2c389fc8 933 */
ef79b1f8
NTND
934static enum interesting do_match(const struct name_entry *entry,
935 struct strbuf *base, int base_offset,
936 const struct pathspec *ps,
937 int exclude)
2c389fc8
NTND
938{
939 int i;
1376e507 940 int pathlen, baselen = base->len - base_offset;
c3a47ca9 941 enum interesting never_interesting = ps->has_wildcard ?
d688cf07 942 entry_not_interesting : all_entries_not_interesting;
2c389fc8 943
5c6933d2
NTND
944 GUARD_PATHSPEC(ps,
945 PATHSPEC_FROMTOP |
946 PATHSPEC_MAXDEPTH |
bd30c2e4 947 PATHSPEC_LITERAL |
93d93537 948 PATHSPEC_GLOB |
ef79b1f8
NTND
949 PATHSPEC_ICASE |
950 PATHSPEC_EXCLUDE);
8f4f8f45 951
bc96cc87 952 if (!ps->nr) {
6330a171
NTND
953 if (!ps->recursive ||
954 !(ps->magic & PATHSPEC_MAXDEPTH) ||
955 ps->max_depth == -1)
d688cf07
NTND
956 return all_entries_interesting;
957 return within_depth(base->buf + base_offset, baselen,
958 !!S_ISDIR(entry->mode),
959 ps->max_depth) ?
960 entry_interesting : entry_not_interesting;
bc96cc87 961 }
2c389fc8 962
0de16337 963 pathlen = tree_entry_len(entry);
2c389fc8 964
1376e507 965 for (i = ps->nr - 1; i >= 0; i--) {
2c389fc8
NTND
966 const struct pathspec_item *item = ps->items+i;
967 const char *match = item->match;
1376e507 968 const char *base_str = base->buf + base_offset;
c904cd89 969 int matchlen = item->len, matched = 0;
2c389fc8 970
ef79b1f8
NTND
971 if ((!exclude && item->magic & PATHSPEC_EXCLUDE) ||
972 ( exclude && !(item->magic & PATHSPEC_EXCLUDE)))
973 continue;
974
2c389fc8
NTND
975 if (baselen >= matchlen) {
976 /* If it doesn't match, move along... */
93d93537 977 if (!match_dir_prefix(item, base_str, match, matchlen))
d38f2809 978 goto match_wildcards;
bc96cc87 979
6330a171
NTND
980 if (!ps->recursive ||
981 !(ps->magic & PATHSPEC_MAXDEPTH) ||
982 ps->max_depth == -1)
d688cf07 983 return all_entries_interesting;
bc96cc87 984
d688cf07
NTND
985 return within_depth(base_str + matchlen + 1,
986 baselen - matchlen - 1,
987 !!S_ISDIR(entry->mode),
988 ps->max_depth) ?
989 entry_interesting : entry_not_interesting;
2c389fc8
NTND
990 }
991
1b740923 992 /* Either there must be no base, or the base must match. */
93d93537
NTND
993 if (baselen == 0 || !basecmp(item, base_str, match, baselen)) {
994 if (match_entry(item, entry, pathlen,
58c4d666
NTND
995 match + baselen, matchlen - baselen,
996 &never_interesting))
d688cf07 997 return entry_interesting;
f1a2ddbb 998
170260ae 999 if (item->nowildcard_len < item->len) {
bd30c2e4 1000 if (!git_fnmatch(item, match + baselen, entry->path,
8c6abbcd 1001 item->nowildcard_len - baselen))
d688cf07 1002 return entry_interesting;
f1a2ddbb
NTND
1003
1004 /*
1005 * Match all directories. We'll try to
1006 * match files later on.
1007 */
1008 if (ps->recursive && S_ISDIR(entry->mode))
d688cf07 1009 return entry_interesting;
74ed4371
BW
1010
1011 /*
1012 * When matching against submodules with
1013 * wildcard characters, ensure that the entry
1014 * at least matches up to the first wild
1015 * character. More accurate matching can then
1016 * be performed in the submodule itself.
1017 */
eef3df5a
BW
1018 if (ps->recurse_submodules &&
1019 S_ISGITLINK(entry->mode) &&
74ed4371
BW
1020 !ps_strncmp(item, match + baselen,
1021 entry->path,
1022 item->nowildcard_len - baselen))
1023 return entry_interesting;
f1a2ddbb
NTND
1024 }
1025
1026 continue;
2c389fc8 1027 }
d38f2809
NTND
1028
1029match_wildcards:
170260ae 1030 if (item->nowildcard_len == item->len)
d38f2809
NTND
1031 continue;
1032
c904cd89
NTND
1033 if (item->nowildcard_len &&
1034 !match_wildcard_base(item, base_str, baselen, &matched))
e4ddb057 1035 continue;
c904cd89 1036
d38f2809
NTND
1037 /*
1038 * Concatenate base and entry->path into one and do
1039 * fnmatch() on it.
c904cd89
NTND
1040 *
1041 * While we could avoid concatenation in certain cases
1042 * [1], which saves a memcpy and potentially a
1043 * realloc, it turns out not worth it. Measurement on
1044 * linux-2.6 does not show any clear improvements,
1045 * partly because of the nowildcard_len optimization
1046 * in git_fnmatch(). Avoid micro-optimizations here.
1047 *
1048 * [1] if match_wildcard_base() says the base
1049 * directory is already matched, we only need to match
1050 * the rest, which is shorter so _in theory_ faster.
d38f2809
NTND
1051 */
1052
1053 strbuf_add(base, entry->path, pathlen);
1054
bd30c2e4 1055 if (!git_fnmatch(item, match, base->buf + base_offset,
8c6abbcd 1056 item->nowildcard_len)) {
1376e507 1057 strbuf_setlen(base, base_offset + baselen);
d688cf07 1058 return entry_interesting;
d38f2809 1059 }
74ed4371
BW
1060
1061 /*
1062 * When matching against submodules with
1063 * wildcard characters, ensure that the entry
1064 * at least matches up to the first wild
1065 * character. More accurate matching can then
1066 * be performed in the submodule itself.
1067 */
eef3df5a 1068 if (ps->recurse_submodules && S_ISGITLINK(entry->mode) &&
74ed4371
BW
1069 !ps_strncmp(item, match, base->buf + base_offset,
1070 item->nowildcard_len)) {
1071 strbuf_setlen(base, base_offset + baselen);
1072 return entry_interesting;
1073 }
1074
1376e507 1075 strbuf_setlen(base, base_offset + baselen);
d38f2809
NTND
1076
1077 /*
1078 * Match all directories. We'll try to match files
1079 * later on.
8c69c1f9
NTND
1080 * max_depth is ignored but we may consider support it
1081 * in future, see
5840eb9d 1082 * https://public-inbox.org/git/7vmxo5l2g4.fsf@alter.siamese.dyndns.org/
d38f2809
NTND
1083 */
1084 if (ps->recursive && S_ISDIR(entry->mode))
d688cf07 1085 return entry_interesting;
2c389fc8
NTND
1086 }
1087 return never_interesting; /* No matches */
1088}
ef79b1f8
NTND
1089
1090/*
1091 * Is a tree entry interesting given the pathspec we have?
1092 *
1093 * Pre-condition: either baselen == base_offset (i.e. empty path)
1094 * or base[baselen-1] == '/' (i.e. with trailing slash).
1095 */
1096enum interesting tree_entry_interesting(const struct name_entry *entry,
1097 struct strbuf *base, int base_offset,
1098 const struct pathspec *ps)
1099{
1100 enum interesting positive, negative;
1101 positive = do_match(entry, base, base_offset, ps, 0);
1102
1103 /*
1104 * case | entry | positive | negative | result
1105 * -----+-------+----------+----------+-------
1106 * 1 | file | -1 | -1..2 | -1
1107 * 2 | file | 0 | -1..2 | 0
1108 * 3 | file | 1 | -1 | 1
1109 * 4 | file | 1 | 0 | 1
1110 * 5 | file | 1 | 1 | 0
1111 * 6 | file | 1 | 2 | 0
1112 * 7 | file | 2 | -1 | 2
b7845ceb 1113 * 8 | file | 2 | 0 | 1
ef79b1f8
NTND
1114 * 9 | file | 2 | 1 | 0
1115 * 10 | file | 2 | 2 | -1
1116 * -----+-------+----------+----------+-------
1117 * 11 | dir | -1 | -1..2 | -1
1118 * 12 | dir | 0 | -1..2 | 0
1119 * 13 | dir | 1 | -1 | 1
1120 * 14 | dir | 1 | 0 | 1
1121 * 15 | dir | 1 | 1 | 1 (*)
1122 * 16 | dir | 1 | 2 | 0
1123 * 17 | dir | 2 | -1 | 2
b7845ceb 1124 * 18 | dir | 2 | 0 | 1
ef79b1f8
NTND
1125 * 19 | dir | 2 | 1 | 1 (*)
1126 * 20 | dir | 2 | 2 | -1
1127 *
1128 * (*) An exclude pattern interested in a directory does not
1129 * necessarily mean it will exclude all of the directory. In
1130 * wildcard case, it can't decide until looking at individual
1131 * files inside. So don't write such directories off yet.
1132 */
1133
1134 if (!(ps->magic & PATHSPEC_EXCLUDE) ||
1135 positive <= entry_not_interesting) /* #1, #2, #11, #12 */
1136 return positive;
1137
1138 negative = do_match(entry, base, base_offset, ps, 1);
1139
b7845ceb
NTND
1140 /* #8, #18 */
1141 if (positive == all_entries_interesting &&
1142 negative == entry_not_interesting)
1143 return entry_interesting;
1144
1145 /* #3, #4, #7, #13, #14, #17 */
ef79b1f8
NTND
1146 if (negative <= entry_not_interesting)
1147 return positive;
1148
1149 /* #15, #19 */
1150 if (S_ISDIR(entry->mode) &&
1151 positive >= entry_interesting &&
1152 negative == entry_interesting)
1153 return entry_interesting;
1154
1155 if ((positive == entry_interesting &&
1156 negative >= entry_interesting) || /* #5, #6, #16 */
1157 (positive == all_entries_interesting &&
1158 negative == entry_interesting)) /* #9 */
1159 return entry_not_interesting;
1160
1161 return all_entries_not_interesting; /* #10, #20 */
1162}