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 name_entry *e, 372struct traverse_info *info, 373struct strbuf *base, 374int still_interesting) 375{ 376if(!info->pathspec || still_interesting ==2) 377return2; 378if(still_interesting <0) 379return still_interesting; 380returntree_entry_interesting(e, base,0, info->pathspec); 381} 382 383inttraverse_trees(int n,struct tree_desc *t,struct traverse_info *info) 384{ 385int error =0; 386struct name_entry *entry =xmalloc(n*sizeof(*entry)); 387int i; 388struct tree_desc_x *tx =xcalloc(n,sizeof(*tx)); 389struct strbuf base = STRBUF_INIT; 390int interesting =1; 391char*traverse_path; 392 393for(i =0; i < n; i++) 394 tx[i].d = t[i]; 395 396if(info->prev) { 397strbuf_grow(&base, info->pathlen); 398make_traverse_path(base.buf, info->prev, &info->name); 399 base.buf[info->pathlen-1] ='/'; 400strbuf_setlen(&base, info->pathlen); 401 traverse_path =xstrndup(base.buf, info->pathlen); 402}else{ 403 traverse_path =xstrndup(info->name.path, info->pathlen); 404} 405 info->traverse_path = traverse_path; 406for(;;) { 407int trees_used; 408unsigned long mask, dirmask; 409const char*first = NULL; 410int first_len =0; 411struct name_entry *e = NULL; 412int len; 413 414for(i =0; i < n; i++) { 415 e = entry + i; 416extended_entry_extract(tx + i, e, NULL,0); 417} 418 419/* 420 * A tree may have "t-2" at the current location even 421 * though it may have "t" that is a subtree behind it, 422 * and another tree may return "t". We want to grab 423 * all "t" from all trees to match in such a case. 424 */ 425for(i =0; i < n; i++) { 426 e = entry + i; 427if(!e->path) 428continue; 429 len =tree_entry_len(e); 430if(!first) { 431 first = e->path; 432 first_len = len; 433continue; 434} 435if(name_compare(e->path, len, first, first_len) <0) { 436 first = e->path; 437 first_len = len; 438} 439} 440 441if(first) { 442for(i =0; i < n; i++) { 443 e = entry + i; 444extended_entry_extract(tx + i, e, first, first_len); 445/* Cull the ones that are not the earliest */ 446if(!e->path) 447continue; 448 len =tree_entry_len(e); 449if(name_compare(e->path, len, first, first_len)) 450entry_clear(e); 451} 452} 453 454/* Now we have in entry[i] the earliest name from the trees */ 455 mask =0; 456 dirmask =0; 457for(i =0; i < n; i++) { 458if(!entry[i].path) 459continue; 460 mask |=1ul<< i; 461if(S_ISDIR(entry[i].mode)) 462 dirmask |=1ul<< i; 463 e = &entry[i]; 464} 465if(!mask) 466break; 467 interesting =prune_traversal(e, info, &base, interesting); 468if(interesting <0) 469break; 470if(interesting) { 471 trees_used = info->fn(n, mask, dirmask, entry, info); 472if(trees_used <0) { 473 error = trees_used; 474if(!info->show_all_errors) 475break; 476} 477 mask &= trees_used; 478} 479for(i =0; i < n; i++) 480if(mask & (1ul<< i)) 481update_extended_entry(tx + i, entry + i); 482} 483free(entry); 484for(i =0; i < n; i++) 485free_extended_entry(tx + i); 486free(tx); 487free(traverse_path); 488 info->traverse_path = NULL; 489strbuf_release(&base); 490return error; 491} 492 493struct dir_state { 494void*tree; 495unsigned long size; 496struct object_id oid; 497}; 498 499static intfind_tree_entry(struct tree_desc *t,const char*name,struct object_id *result,unsigned*mode) 500{ 501int namelen =strlen(name); 502while(t->size) { 503const char*entry; 504struct object_id oid; 505int entrylen, cmp; 506 507oidcpy(&oid,tree_entry_extract(t, &entry, mode)); 508 entrylen =tree_entry_len(&t->entry); 509update_tree_entry(t); 510if(entrylen > namelen) 511continue; 512 cmp =memcmp(name, entry, entrylen); 513if(cmp >0) 514continue; 515if(cmp <0) 516break; 517if(entrylen == namelen) { 518oidcpy(result, &oid); 519return0; 520} 521if(name[entrylen] !='/') 522continue; 523if(!S_ISDIR(*mode)) 524break; 525if(++entrylen == namelen) { 526oidcpy(result, &oid); 527return0; 528} 529returnget_tree_entry(&oid, name + entrylen, result, mode); 530} 531return-1; 532} 533 534intget_tree_entry(const struct object_id *tree_oid,const char*name,struct object_id *oid,unsigned*mode) 535{ 536int retval; 537void*tree; 538unsigned long size; 539struct object_id root; 540 541 tree =read_object_with_reference(tree_oid, tree_type, &size, &root); 542if(!tree) 543return-1; 544 545if(name[0] =='\0') { 546oidcpy(oid, &root); 547free(tree); 548return0; 549} 550 551if(!size) { 552 retval = -1; 553}else{ 554struct tree_desc t; 555init_tree_desc(&t, tree, size); 556 retval =find_tree_entry(&t, name, oid, mode); 557} 558free(tree); 559return retval; 560} 561 562/* 563 * This is Linux's built-in max for the number of symlinks to follow. 564 * That limit, of course, does not affect git, but it's a reasonable 565 * choice. 566 */ 567#define GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS 40 568 569/** 570 * Find a tree entry by following symlinks in tree_sha (which is 571 * assumed to be the root of the repository). In the event that a 572 * symlink points outside the repository (e.g. a link to /foo or a 573 * root-level link to ../foo), the portion of the link which is 574 * outside the repository will be returned in result_path, and *mode 575 * will be set to 0. It is assumed that result_path is uninitialized. 576 * If there are no symlinks, or the end result of the symlink chain 577 * points to an object inside the repository, result will be filled in 578 * with the sha1 of the found object, and *mode will hold the mode of 579 * the object. 580 * 581 * See the code for enum follow_symlink_result for a description of 582 * the return values. 583 */ 584enum follow_symlinks_result get_tree_entry_follow_symlinks(struct object_id *tree_oid,const char*name,struct object_id *result,struct strbuf *result_path,unsigned*mode) 585{ 586int retval = MISSING_OBJECT; 587struct dir_state *parents = NULL; 588size_t parents_alloc =0; 589size_t i, parents_nr =0; 590struct object_id current_tree_oid; 591struct strbuf namebuf = STRBUF_INIT; 592struct tree_desc t; 593int follows_remaining = GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS; 594 595init_tree_desc(&t, NULL,0UL); 596strbuf_addstr(&namebuf, name); 597oidcpy(¤t_tree_oid, tree_oid); 598 599while(1) { 600int find_result; 601char*first_slash; 602char*remainder = NULL; 603 604if(!t.buffer) { 605void*tree; 606struct object_id root; 607unsigned long size; 608 tree =read_object_with_reference(¤t_tree_oid, 609 tree_type, &size, 610&root); 611if(!tree) 612goto done; 613 614ALLOC_GROW(parents, parents_nr +1, parents_alloc); 615 parents[parents_nr].tree = tree; 616 parents[parents_nr].size = size; 617oidcpy(&parents[parents_nr].oid, &root); 618 parents_nr++; 619 620if(namebuf.buf[0] =='\0') { 621oidcpy(result, &root); 622 retval = FOUND; 623goto done; 624} 625 626if(!size) 627goto done; 628 629/* descend */ 630init_tree_desc(&t, tree, size); 631} 632 633/* Handle symlinks to e.g. a//b by removing leading slashes */ 634while(namebuf.buf[0] =='/') { 635strbuf_remove(&namebuf,0,1); 636} 637 638/* Split namebuf into a first component and a remainder */ 639if((first_slash =strchr(namebuf.buf,'/'))) { 640*first_slash =0; 641 remainder = first_slash +1; 642} 643 644if(!strcmp(namebuf.buf,"..")) { 645struct dir_state *parent; 646/* 647 * We could end up with .. in the namebuf if it 648 * appears in a symlink. 649 */ 650 651if(parents_nr ==1) { 652if(remainder) 653*first_slash ='/'; 654strbuf_add(result_path, namebuf.buf, 655 namebuf.len); 656*mode =0; 657 retval = FOUND; 658goto done; 659} 660 parent = &parents[parents_nr -1]; 661free(parent->tree); 662 parents_nr--; 663 parent = &parents[parents_nr -1]; 664init_tree_desc(&t, parent->tree, parent->size); 665strbuf_remove(&namebuf,0, remainder ?3:2); 666continue; 667} 668 669/* We could end up here via a symlink to dir/.. */ 670if(namebuf.buf[0] =='\0') { 671oidcpy(result, &parents[parents_nr -1].oid); 672 retval = FOUND; 673goto done; 674} 675 676/* Look up the first (or only) path component in the tree. */ 677 find_result =find_tree_entry(&t, namebuf.buf, 678¤t_tree_oid, mode); 679if(find_result) { 680goto done; 681} 682 683if(S_ISDIR(*mode)) { 684if(!remainder) { 685oidcpy(result, ¤t_tree_oid); 686 retval = FOUND; 687goto done; 688} 689/* Descend the tree */ 690 t.buffer = NULL; 691strbuf_remove(&namebuf,0, 6921+ first_slash - namebuf.buf); 693}else if(S_ISREG(*mode)) { 694if(!remainder) { 695oidcpy(result, ¤t_tree_oid); 696 retval = FOUND; 697}else{ 698 retval = NOT_DIR; 699} 700goto done; 701}else if(S_ISLNK(*mode)) { 702/* Follow a symlink */ 703unsigned long link_len; 704size_t len; 705char*contents, *contents_start; 706struct dir_state *parent; 707enum object_type type; 708 709if(follows_remaining-- ==0) { 710/* Too many symlinks followed */ 711 retval = SYMLINK_LOOP; 712goto done; 713} 714 715/* 716 * At this point, we have followed at a least 717 * one symlink, so on error we need to report this. 718 */ 719 retval = DANGLING_SYMLINK; 720 721 contents =read_object_file(¤t_tree_oid, &type, 722&link_len); 723 724if(!contents) 725goto done; 726 727if(contents[0] =='/') { 728strbuf_addstr(result_path, contents); 729free(contents); 730*mode =0; 731 retval = FOUND; 732goto done; 733} 734 735if(remainder) 736 len = first_slash - namebuf.buf; 737else 738 len = namebuf.len; 739 740 contents_start = contents; 741 742 parent = &parents[parents_nr -1]; 743init_tree_desc(&t, parent->tree, parent->size); 744strbuf_splice(&namebuf,0, len, 745 contents_start, link_len); 746if(remainder) 747 namebuf.buf[link_len] ='/'; 748free(contents); 749} 750} 751done: 752for(i =0; i < parents_nr; i++) 753free(parents[i].tree); 754free(parents); 755 756strbuf_release(&namebuf); 757return retval; 758} 759 760static intmatch_entry(const struct pathspec_item *item, 761const struct name_entry *entry,int pathlen, 762const char*match,int matchlen, 763enum interesting *never_interesting) 764{ 765int m = -1;/* signals that we haven't called strncmp() */ 766 767if(item->magic & PATHSPEC_ICASE) 768/* 769 * "Never interesting" trick requires exact 770 * matching. We could do something clever with inexact 771 * matching, but it's trickier (and not to forget that 772 * strcasecmp is locale-dependent, at least in 773 * glibc). Just disable it for now. It can't be worse 774 * than the wildcard's codepath of '[Tt][Hi][Is][Ss]' 775 * pattern. 776 */ 777*never_interesting = entry_not_interesting; 778else if(*never_interesting != entry_not_interesting) { 779/* 780 * We have not seen any match that sorts later 781 * than the current path. 782 */ 783 784/* 785 * Does match sort strictly earlier than path 786 * with their common parts? 787 */ 788 m =strncmp(match, entry->path, 789(matchlen < pathlen) ? matchlen : pathlen); 790if(m <0) 791return0; 792 793/* 794 * If we come here even once, that means there is at 795 * least one pathspec that would sort equal to or 796 * later than the path we are currently looking at. 797 * In other words, if we have never reached this point 798 * after iterating all pathspecs, it means all 799 * pathspecs are either outside of base, or inside the 800 * base but sorts strictly earlier than the current 801 * one. In either case, they will never match the 802 * subsequent entries. In such a case, we initialized 803 * the variable to -1 and that is what will be 804 * returned, allowing the caller to terminate early. 805 */ 806*never_interesting = entry_not_interesting; 807} 808 809if(pathlen > matchlen) 810return0; 811 812if(matchlen > pathlen) { 813if(match[pathlen] !='/') 814return0; 815if(!S_ISDIR(entry->mode) && !S_ISGITLINK(entry->mode)) 816return0; 817} 818 819if(m == -1) 820/* 821 * we cheated and did not do strncmp(), so we do 822 * that here. 823 */ 824 m =ps_strncmp(item, match, entry->path, pathlen); 825 826/* 827 * If common part matched earlier then it is a hit, 828 * because we rejected the case where path is not a 829 * leading directory and is shorter than match. 830 */ 831if(!m) 832/* 833 * match_entry does not check if the prefix part is 834 * matched case-sensitively. If the entry is a 835 * directory and part of prefix, it'll be rematched 836 * eventually by basecmp with special treatment for 837 * the prefix. 838 */ 839return1; 840 841return0; 842} 843 844/* :(icase)-aware string compare */ 845static intbasecmp(const struct pathspec_item *item, 846const char*base,const char*match,int len) 847{ 848if(item->magic & PATHSPEC_ICASE) { 849int ret, n = len > item->prefix ? item->prefix : len; 850 ret =strncmp(base, match, n); 851if(ret) 852return ret; 853 base += n; 854 match += n; 855 len -= n; 856} 857returnps_strncmp(item, base, match, len); 858} 859 860static intmatch_dir_prefix(const struct pathspec_item *item, 861const char*base, 862const char*match,int matchlen) 863{ 864if(basecmp(item, base, match, matchlen)) 865return0; 866 867/* 868 * If the base is a subdirectory of a path which 869 * was specified, all of them are interesting. 870 */ 871if(!matchlen || 872 base[matchlen] =='/'|| 873 match[matchlen -1] =='/') 874return1; 875 876/* Just a random prefix match */ 877return0; 878} 879 880/* 881 * Perform matching on the leading non-wildcard part of 882 * pathspec. item->nowildcard_len must be greater than zero. Return 883 * non-zero if base is matched. 884 */ 885static intmatch_wildcard_base(const struct pathspec_item *item, 886const char*base,int baselen, 887int*matched) 888{ 889const char*match = item->match; 890/* the wildcard part is not considered in this function */ 891int matchlen = item->nowildcard_len; 892 893if(baselen) { 894int dirlen; 895/* 896 * Return early if base is longer than the 897 * non-wildcard part but it does not match. 898 */ 899if(baselen >= matchlen) { 900*matched = matchlen; 901return!basecmp(item, base, match, matchlen); 902} 903 904 dirlen = matchlen; 905while(dirlen && match[dirlen -1] !='/') 906 dirlen--; 907 908/* 909 * Return early if base is shorter than the 910 * non-wildcard part but it does not match. Note that 911 * base ends with '/' so we are sure it really matches 912 * directory 913 */ 914if(basecmp(item, base, match, baselen)) 915return0; 916*matched = baselen; 917}else 918*matched =0; 919/* 920 * we could have checked entry against the non-wildcard part 921 * that is not in base and does similar never_interesting 922 * optimization as in match_entry. For now just be happy with 923 * base comparison. 924 */ 925return entry_interesting; 926} 927 928/* 929 * Is a tree entry interesting given the pathspec we have? 930 * 931 * Pre-condition: either baselen == base_offset (i.e. empty path) 932 * or base[baselen-1] == '/' (i.e. with trailing slash). 933 */ 934static enum interesting do_match(const struct name_entry *entry, 935struct strbuf *base,int base_offset, 936const struct pathspec *ps, 937int exclude) 938{ 939int i; 940int pathlen, baselen = base->len - base_offset; 941enum interesting never_interesting = ps->has_wildcard ? 942 entry_not_interesting : all_entries_not_interesting; 943 944GUARD_PATHSPEC(ps, 945 PATHSPEC_FROMTOP | 946 PATHSPEC_MAXDEPTH | 947 PATHSPEC_LITERAL | 948 PATHSPEC_GLOB | 949 PATHSPEC_ICASE | 950 PATHSPEC_EXCLUDE); 951 952if(!ps->nr) { 953if(!ps->recursive || 954!(ps->magic & PATHSPEC_MAXDEPTH) || 955 ps->max_depth == -1) 956return all_entries_interesting; 957returnwithin_depth(base->buf + base_offset, baselen, 958!!S_ISDIR(entry->mode), 959 ps->max_depth) ? 960 entry_interesting : entry_not_interesting; 961} 962 963 pathlen =tree_entry_len(entry); 964 965for(i = ps->nr -1; i >=0; i--) { 966const struct pathspec_item *item = ps->items+i; 967const char*match = item->match; 968const char*base_str = base->buf + base_offset; 969int matchlen = item->len, matched =0; 970 971if((!exclude && item->magic & PATHSPEC_EXCLUDE) || 972( exclude && !(item->magic & PATHSPEC_EXCLUDE))) 973continue; 974 975if(baselen >= matchlen) { 976/* If it doesn't match, move along... */ 977if(!match_dir_prefix(item, base_str, match, matchlen)) 978goto match_wildcards; 979 980if(!ps->recursive || 981!(ps->magic & PATHSPEC_MAXDEPTH) || 982 ps->max_depth == -1) 983return all_entries_interesting; 984 985returnwithin_depth(base_str + matchlen +1, 986 baselen - matchlen -1, 987!!S_ISDIR(entry->mode), 988 ps->max_depth) ? 989 entry_interesting : entry_not_interesting; 990} 991 992/* Either there must be no base, or the base must match. */ 993if(baselen ==0|| !basecmp(item, base_str, match, baselen)) { 994if(match_entry(item, entry, pathlen, 995 match + baselen, matchlen - baselen, 996&never_interesting)) 997return entry_interesting; 998 999if(item->nowildcard_len < item->len) {1000if(!git_fnmatch(item, match + baselen, entry->path,1001 item->nowildcard_len - baselen))1002return entry_interesting;10031004/*1005 * Match all directories. We'll try to1006 * match files later on.1007 */1008if(ps->recursive &&S_ISDIR(entry->mode))1009return entry_interesting;10101011/*1012 * When matching against submodules with1013 * wildcard characters, ensure that the entry1014 * at least matches up to the first wild1015 * character. More accurate matching can then1016 * be performed in the submodule itself.1017 */1018if(ps->recurse_submodules &&1019S_ISGITLINK(entry->mode) &&1020!ps_strncmp(item, match + baselen,1021 entry->path,1022 item->nowildcard_len - baselen))1023return entry_interesting;1024}10251026continue;1027}10281029match_wildcards:1030if(item->nowildcard_len == item->len)1031continue;10321033if(item->nowildcard_len &&1034!match_wildcard_base(item, base_str, baselen, &matched))1035continue;10361037/*1038 * Concatenate base and entry->path into one and do1039 * fnmatch() on it.1040 *1041 * While we could avoid concatenation in certain cases1042 * [1], which saves a memcpy and potentially a1043 * realloc, it turns out not worth it. Measurement on1044 * linux-2.6 does not show any clear improvements,1045 * partly because of the nowildcard_len optimization1046 * in git_fnmatch(). Avoid micro-optimizations here.1047 *1048 * [1] if match_wildcard_base() says the base1049 * directory is already matched, we only need to match1050 * the rest, which is shorter so _in theory_ faster.1051 */10521053strbuf_add(base, entry->path, pathlen);10541055if(!git_fnmatch(item, match, base->buf + base_offset,1056 item->nowildcard_len)) {1057strbuf_setlen(base, base_offset + baselen);1058return entry_interesting;1059}10601061/*1062 * When matching against submodules with1063 * wildcard characters, ensure that the entry1064 * at least matches up to the first wild1065 * character. More accurate matching can then1066 * be performed in the submodule itself.1067 */1068if(ps->recurse_submodules &&S_ISGITLINK(entry->mode) &&1069!ps_strncmp(item, match, base->buf + base_offset,1070 item->nowildcard_len)) {1071strbuf_setlen(base, base_offset + baselen);1072return entry_interesting;1073}10741075strbuf_setlen(base, base_offset + baselen);10761077/*1078 * Match all directories. We'll try to match files1079 * later on.1080 * max_depth is ignored but we may consider support it1081 * in future, see1082 * https://public-inbox.org/git/7vmxo5l2g4.fsf@alter.siamese.dyndns.org/1083 */1084if(ps->recursive &&S_ISDIR(entry->mode))1085return entry_interesting;1086}1087return never_interesting;/* No matches */1088}10891090/*1091 * Is a tree entry interesting given the pathspec we have?1092 *1093 * Pre-condition: either baselen == base_offset (i.e. empty path)1094 * or base[baselen-1] == '/' (i.e. with trailing slash).1095 */1096enum interesting tree_entry_interesting(const struct name_entry *entry,1097struct strbuf *base,int base_offset,1098const struct pathspec *ps)1099{1100enum interesting positive, negative;1101 positive =do_match(entry, base, base_offset, ps,0);11021103/*1104 * case | entry | positive | negative | result1105 * -----+-------+----------+----------+-------1106 * 1 | file | -1 | -1..2 | -11107 * 2 | file | 0 | -1..2 | 01108 * 3 | file | 1 | -1 | 11109 * 4 | file | 1 | 0 | 11110 * 5 | file | 1 | 1 | 01111 * 6 | file | 1 | 2 | 01112 * 7 | file | 2 | -1 | 21113 * 8 | file | 2 | 0 | 11114 * 9 | file | 2 | 1 | 01115 * 10 | file | 2 | 2 | -11116 * -----+-------+----------+----------+-------1117 * 11 | dir | -1 | -1..2 | -11118 * 12 | dir | 0 | -1..2 | 01119 * 13 | dir | 1 | -1 | 11120 * 14 | dir | 1 | 0 | 11121 * 15 | dir | 1 | 1 | 1 (*)1122 * 16 | dir | 1 | 2 | 01123 * 17 | dir | 2 | -1 | 21124 * 18 | dir | 2 | 0 | 11125 * 19 | dir | 2 | 1 | 1 (*)1126 * 20 | dir | 2 | 2 | -11127 *1128 * (*) An exclude pattern interested in a directory does not1129 * necessarily mean it will exclude all of the directory. In1130 * wildcard case, it can't decide until looking at individual1131 * files inside. So don't write such directories off yet.1132 */11331134if(!(ps->magic & PATHSPEC_EXCLUDE) ||1135 positive <= entry_not_interesting)/* #1, #2, #11, #12 */1136return positive;11371138 negative =do_match(entry, base, base_offset, ps,1);11391140/* #8, #18 */1141if(positive == all_entries_interesting &&1142 negative == entry_not_interesting)1143return entry_interesting;11441145/* #3, #4, #7, #13, #14, #17 */1146if(negative <= entry_not_interesting)1147return positive;11481149/* #15, #19 */1150if(S_ISDIR(entry->mode) &&1151 positive >= entry_interesting &&1152 negative == entry_interesting)1153return entry_interesting;11541155if((positive == entry_interesting &&1156 negative >= entry_interesting) ||/* #5, #6, #16 */1157(positive == all_entries_interesting &&1158 negative == entry_interesting))/* #9 */1159return entry_not_interesting;11601161return all_entries_not_interesting;/* #10, #20 */1162}