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