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