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