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