1/* 2 * This handles recursive filename detection with exclude 3 * files, index knowledge etc.. 4 * 5 * See Documentation/technical/api-directory-listing.txt 6 * 7 * Copyright (C) Linus Torvalds, 2005-2006 8 * Junio Hamano, 2005-2006 9 */ 10#include"cache.h" 11#include"dir.h" 12#include"refs.h" 13#include"wildmatch.h" 14#include"pathspec.h" 15 16struct path_simplify { 17int len; 18const char*path; 19}; 20 21/* 22 * Tells read_directory_recursive how a file or directory should be treated. 23 * Values are ordered by significance, e.g. if a directory contains both 24 * excluded and untracked files, it is listed as untracked because 25 * path_untracked > path_excluded. 26 */ 27enum path_treatment { 28 path_none =0, 29 path_recurse, 30 path_excluded, 31 path_untracked 32}; 33 34static enum path_treatment read_directory_recursive(struct dir_struct *dir, 35const char*path,int len, 36int check_only,const struct path_simplify *simplify); 37static intget_dtype(struct dirent *de,const char*path,int len); 38 39/* helper string functions with support for the ignore_case flag */ 40intstrcmp_icase(const char*a,const char*b) 41{ 42return ignore_case ?strcasecmp(a, b) :strcmp(a, b); 43} 44 45intstrncmp_icase(const char*a,const char*b,size_t count) 46{ 47return ignore_case ?strncasecmp(a, b, count) :strncmp(a, b, count); 48} 49 50intfnmatch_icase(const char*pattern,const char*string,int flags) 51{ 52returnfnmatch(pattern, string, flags | (ignore_case ? FNM_CASEFOLD :0)); 53} 54 55inlineintgit_fnmatch(const struct pathspec_item *item, 56const char*pattern,const char*string, 57int prefix) 58{ 59if(prefix >0) { 60if(ps_strncmp(item, pattern, string, prefix)) 61return FNM_NOMATCH; 62 pattern += prefix; 63 string += prefix; 64} 65if(item->flags & PATHSPEC_ONESTAR) { 66int pattern_len =strlen(++pattern); 67int string_len =strlen(string); 68return string_len < pattern_len || 69ps_strcmp(item, pattern, 70 string + string_len - pattern_len); 71} 72if(item->magic & PATHSPEC_GLOB) 73returnwildmatch(pattern, string, 74 WM_PATHNAME | 75(item->magic & PATHSPEC_ICASE ? WM_CASEFOLD :0), 76 NULL); 77else 78/* wildmatch has not learned no FNM_PATHNAME mode yet */ 79returnfnmatch(pattern, string, 80 item->magic & PATHSPEC_ICASE ? FNM_CASEFOLD :0); 81} 82 83static intfnmatch_icase_mem(const char*pattern,int patternlen, 84const char*string,int stringlen, 85int flags) 86{ 87int match_status; 88struct strbuf pat_buf = STRBUF_INIT; 89struct strbuf str_buf = STRBUF_INIT; 90const char*use_pat = pattern; 91const char*use_str = string; 92 93if(pattern[patternlen]) { 94strbuf_add(&pat_buf, pattern, patternlen); 95 use_pat = pat_buf.buf; 96} 97if(string[stringlen]) { 98strbuf_add(&str_buf, string, stringlen); 99 use_str = str_buf.buf; 100} 101 102if(ignore_case) 103 flags |= WM_CASEFOLD; 104 match_status =wildmatch(use_pat, use_str, flags, NULL); 105 106strbuf_release(&pat_buf); 107strbuf_release(&str_buf); 108 109return match_status; 110} 111 112static size_tcommon_prefix_len(const struct pathspec *pathspec) 113{ 114int n; 115size_t max =0; 116 117/* 118 * ":(icase)path" is treated as a pathspec full of 119 * wildcard. In other words, only prefix is considered common 120 * prefix. If the pathspec is abc/foo abc/bar, running in 121 * subdir xyz, the common prefix is still xyz, not xuz/abc as 122 * in non-:(icase). 123 */ 124GUARD_PATHSPEC(pathspec, 125 PATHSPEC_FROMTOP | 126 PATHSPEC_MAXDEPTH | 127 PATHSPEC_LITERAL | 128 PATHSPEC_GLOB | 129 PATHSPEC_ICASE); 130 131for(n =0; n < pathspec->nr; n++) { 132size_t i =0, len =0, item_len; 133if(pathspec->items[n].magic & PATHSPEC_ICASE) 134 item_len = pathspec->items[n].prefix; 135else 136 item_len = pathspec->items[n].nowildcard_len; 137while(i < item_len && (n ==0|| i < max)) { 138char c = pathspec->items[n].match[i]; 139if(c != pathspec->items[0].match[i]) 140break; 141if(c =='/') 142 len = i +1; 143 i++; 144} 145if(n ==0|| len < max) { 146 max = len; 147if(!max) 148break; 149} 150} 151return max; 152} 153 154/* 155 * Returns a copy of the longest leading path common among all 156 * pathspecs. 157 */ 158char*common_prefix(const struct pathspec *pathspec) 159{ 160unsigned long len =common_prefix_len(pathspec); 161 162return len ?xmemdupz(pathspec->items[0].match, len) : NULL; 163} 164 165intfill_directory(struct dir_struct *dir,const struct pathspec *pathspec) 166{ 167size_t len; 168 169/* 170 * Calculate common prefix for the pathspec, and 171 * use that to optimize the directory walk 172 */ 173 len =common_prefix_len(pathspec); 174 175/* Read the directory and prune it */ 176read_directory(dir, pathspec->nr ? pathspec->_raw[0] :"", len, pathspec); 177return len; 178} 179 180intwithin_depth(const char*name,int namelen, 181int depth,int max_depth) 182{ 183const char*cp = name, *cpe = name + namelen; 184 185while(cp < cpe) { 186if(*cp++ !='/') 187continue; 188 depth++; 189if(depth > max_depth) 190return0; 191} 192return1; 193} 194 195/* 196 * Does 'match' match the given name? 197 * A match is found if 198 * 199 * (1) the 'match' string is leading directory of 'name', or 200 * (2) the 'match' string is a wildcard and matches 'name', or 201 * (3) the 'match' string is exactly the same as 'name'. 202 * 203 * and the return value tells which case it was. 204 * 205 * It returns 0 when there is no match. 206 */ 207static intmatch_pathspec_item(const struct pathspec_item *item,int prefix, 208const char*name,int namelen) 209{ 210/* name/namelen has prefix cut off by caller */ 211const char*match = item->match + prefix; 212int matchlen = item->len - prefix; 213 214/* 215 * The normal call pattern is: 216 * 1. prefix = common_prefix_len(ps); 217 * 2. prune something, or fill_directory 218 * 3. match_pathspec_depth() 219 * 220 * 'prefix' at #1 may be shorter than the command's prefix and 221 * it's ok for #2 to match extra files. Those extras will be 222 * trimmed at #3. 223 * 224 * Suppose the pathspec is 'foo' and '../bar' running from 225 * subdir 'xyz'. The common prefix at #1 will be empty, thanks 226 * to "../". We may have xyz/foo _and_ XYZ/foo after #2. The 227 * user does not want XYZ/foo, only the "foo" part should be 228 * case-insensitive. We need to filter out XYZ/foo here. In 229 * other words, we do not trust the caller on comparing the 230 * prefix part when :(icase) is involved. We do exact 231 * comparison ourselves. 232 * 233 * Normally the caller (common_prefix_len() in fact) does 234 * _exact_ matching on name[-prefix+1..-1] and we do not need 235 * to check that part. Be defensive and check it anyway, in 236 * case common_prefix_len is changed, or a new caller is 237 * introduced that does not use common_prefix_len. 238 * 239 * If the penalty turns out too high when prefix is really 240 * long, maybe change it to 241 * strncmp(match, name, item->prefix - prefix) 242 */ 243if(item->prefix && (item->magic & PATHSPEC_ICASE) && 244strncmp(item->match, name - prefix, item->prefix)) 245return0; 246 247/* If the match was just the prefix, we matched */ 248if(!*match) 249return MATCHED_RECURSIVELY; 250 251if(matchlen <= namelen && !ps_strncmp(item, match, name, matchlen)) { 252if(matchlen == namelen) 253return MATCHED_EXACTLY; 254 255if(match[matchlen-1] =='/'|| name[matchlen] =='/') 256return MATCHED_RECURSIVELY; 257} 258 259if(item->nowildcard_len < item->len && 260!git_fnmatch(item, match, name, 261 item->nowildcard_len - prefix)) 262return MATCHED_FNMATCH; 263 264return0; 265} 266 267/* 268 * Given a name and a list of pathspecs, returns the nature of the 269 * closest (i.e. most specific) match of the name to any of the 270 * pathspecs. 271 * 272 * The caller typically calls this multiple times with the same 273 * pathspec and seen[] array but with different name/namelen 274 * (e.g. entries from the index) and is interested in seeing if and 275 * how each pathspec matches all the names it calls this function 276 * with. A mark is left in the seen[] array for each pathspec element 277 * indicating the closest type of match that element achieved, so if 278 * seen[n] remains zero after multiple invocations, that means the nth 279 * pathspec did not match any names, which could indicate that the 280 * user mistyped the nth pathspec. 281 */ 282intmatch_pathspec_depth(const struct pathspec *ps, 283const char*name,int namelen, 284int prefix,char*seen) 285{ 286int i, retval =0; 287 288GUARD_PATHSPEC(ps, 289 PATHSPEC_FROMTOP | 290 PATHSPEC_MAXDEPTH | 291 PATHSPEC_LITERAL | 292 PATHSPEC_GLOB | 293 PATHSPEC_ICASE); 294 295if(!ps->nr) { 296if(!ps->recursive || 297!(ps->magic & PATHSPEC_MAXDEPTH) || 298 ps->max_depth == -1) 299return MATCHED_RECURSIVELY; 300 301if(within_depth(name, namelen,0, ps->max_depth)) 302return MATCHED_EXACTLY; 303else 304return0; 305} 306 307 name += prefix; 308 namelen -= prefix; 309 310for(i = ps->nr -1; i >=0; i--) { 311int how; 312if(seen && seen[i] == MATCHED_EXACTLY) 313continue; 314 how =match_pathspec_item(ps->items+i, prefix, name, namelen); 315if(ps->recursive && 316(ps->magic & PATHSPEC_MAXDEPTH) && 317 ps->max_depth != -1&& 318 how && how != MATCHED_FNMATCH) { 319int len = ps->items[i].len; 320if(name[len] =='/') 321 len++; 322if(within_depth(name+len, namelen-len,0, ps->max_depth)) 323 how = MATCHED_EXACTLY; 324else 325 how =0; 326} 327if(how) { 328if(retval < how) 329 retval = how; 330if(seen && seen[i] < how) 331 seen[i] = how; 332} 333} 334return retval; 335} 336 337/* 338 * Return the length of the "simple" part of a path match limiter. 339 */ 340intsimple_length(const char*match) 341{ 342int len = -1; 343 344for(;;) { 345unsigned char c = *match++; 346 len++; 347if(c =='\0'||is_glob_special(c)) 348return len; 349} 350} 351 352intno_wildcard(const char*string) 353{ 354return string[simple_length(string)] =='\0'; 355} 356 357voidparse_exclude_pattern(const char**pattern, 358int*patternlen, 359int*flags, 360int*nowildcardlen) 361{ 362const char*p = *pattern; 363size_t i, len; 364 365*flags =0; 366if(*p =='!') { 367*flags |= EXC_FLAG_NEGATIVE; 368 p++; 369} 370 len =strlen(p); 371if(len && p[len -1] =='/') { 372 len--; 373*flags |= EXC_FLAG_MUSTBEDIR; 374} 375for(i =0; i < len; i++) { 376if(p[i] =='/') 377break; 378} 379if(i == len) 380*flags |= EXC_FLAG_NODIR; 381*nowildcardlen =simple_length(p); 382/* 383 * we should have excluded the trailing slash from 'p' too, 384 * but that's one more allocation. Instead just make sure 385 * nowildcardlen does not exceed real patternlen 386 */ 387if(*nowildcardlen > len) 388*nowildcardlen = len; 389if(*p =='*'&&no_wildcard(p +1)) 390*flags |= EXC_FLAG_ENDSWITH; 391*pattern = p; 392*patternlen = len; 393} 394 395voidadd_exclude(const char*string,const char*base, 396int baselen,struct exclude_list *el,int srcpos) 397{ 398struct exclude *x; 399int patternlen; 400int flags; 401int nowildcardlen; 402 403parse_exclude_pattern(&string, &patternlen, &flags, &nowildcardlen); 404if(flags & EXC_FLAG_MUSTBEDIR) { 405char*s; 406 x =xmalloc(sizeof(*x) + patternlen +1); 407 s = (char*)(x+1); 408memcpy(s, string, patternlen); 409 s[patternlen] ='\0'; 410 x->pattern = s; 411}else{ 412 x =xmalloc(sizeof(*x)); 413 x->pattern = string; 414} 415 x->patternlen = patternlen; 416 x->nowildcardlen = nowildcardlen; 417 x->base = base; 418 x->baselen = baselen; 419 x->flags = flags; 420 x->srcpos = srcpos; 421ALLOC_GROW(el->excludes, el->nr +1, el->alloc); 422 el->excludes[el->nr++] = x; 423 x->el = el; 424} 425 426static void*read_skip_worktree_file_from_index(const char*path,size_t*size) 427{ 428int pos, len; 429unsigned long sz; 430enum object_type type; 431void*data; 432 433 len =strlen(path); 434 pos =cache_name_pos(path, len); 435if(pos <0) 436return NULL; 437if(!ce_skip_worktree(active_cache[pos])) 438return NULL; 439 data =read_sha1_file(active_cache[pos]->sha1, &type, &sz); 440if(!data || type != OBJ_BLOB) { 441free(data); 442return NULL; 443} 444*size =xsize_t(sz); 445return data; 446} 447 448/* 449 * Frees memory within el which was allocated for exclude patterns and 450 * the file buffer. Does not free el itself. 451 */ 452voidclear_exclude_list(struct exclude_list *el) 453{ 454int i; 455 456for(i =0; i < el->nr; i++) 457free(el->excludes[i]); 458free(el->excludes); 459free(el->filebuf); 460 461 el->nr =0; 462 el->excludes = NULL; 463 el->filebuf = NULL; 464} 465 466static voidtrim_trailing_spaces(char*buf) 467{ 468int i, last_space = -1, nr_spaces, len =strlen(buf); 469for(i =0; i < len; i++) 470if(buf[i] =='\\') 471 i++; 472else if(buf[i] ==' ') { 473if(last_space == -1) { 474 last_space = i; 475 nr_spaces =1; 476}else 477 nr_spaces++; 478}else 479 last_space = -1; 480 481if(last_space != -1&& last_space + nr_spaces == len) 482 buf[last_space] ='\0'; 483} 484 485intadd_excludes_from_file_to_list(const char*fname, 486const char*base, 487int baselen, 488struct exclude_list *el, 489int check_index) 490{ 491struct stat st; 492int fd, i, lineno =1; 493size_t size =0; 494char*buf, *entry; 495 496 fd =open(fname, O_RDONLY); 497if(fd <0||fstat(fd, &st) <0) { 498if(errno != ENOENT) 499warn_on_inaccessible(fname); 500if(0<= fd) 501close(fd); 502if(!check_index || 503(buf =read_skip_worktree_file_from_index(fname, &size)) == NULL) 504return-1; 505if(size ==0) { 506free(buf); 507return0; 508} 509if(buf[size-1] !='\n') { 510 buf =xrealloc(buf, size+1); 511 buf[size++] ='\n'; 512} 513} 514else{ 515 size =xsize_t(st.st_size); 516if(size ==0) { 517close(fd); 518return0; 519} 520 buf =xmalloc(size+1); 521if(read_in_full(fd, buf, size) != size) { 522free(buf); 523close(fd); 524return-1; 525} 526 buf[size++] ='\n'; 527close(fd); 528} 529 530 el->filebuf = buf; 531 entry = buf; 532for(i =0; i < size; i++) { 533if(buf[i] =='\n') { 534if(entry != buf + i && entry[0] !='#') { 535 buf[i - (i && buf[i-1] =='\r')] =0; 536trim_trailing_spaces(entry); 537add_exclude(entry, base, baselen, el, lineno); 538} 539 lineno++; 540 entry = buf + i +1; 541} 542} 543return0; 544} 545 546struct exclude_list *add_exclude_list(struct dir_struct *dir, 547int group_type,const char*src) 548{ 549struct exclude_list *el; 550struct exclude_list_group *group; 551 552 group = &dir->exclude_list_group[group_type]; 553ALLOC_GROW(group->el, group->nr +1, group->alloc); 554 el = &group->el[group->nr++]; 555memset(el,0,sizeof(*el)); 556 el->src = src; 557return el; 558} 559 560/* 561 * Used to set up core.excludesfile and .git/info/exclude lists. 562 */ 563voidadd_excludes_from_file(struct dir_struct *dir,const char*fname) 564{ 565struct exclude_list *el; 566 el =add_exclude_list(dir, EXC_FILE, fname); 567if(add_excludes_from_file_to_list(fname,"",0, el,0) <0) 568die("cannot use%sas an exclude file", fname); 569} 570 571intmatch_basename(const char*basename,int basenamelen, 572const char*pattern,int prefix,int patternlen, 573int flags) 574{ 575if(prefix == patternlen) { 576if(patternlen == basenamelen && 577!strncmp_icase(pattern, basename, basenamelen)) 578return1; 579}else if(flags & EXC_FLAG_ENDSWITH) { 580/* "*literal" matching against "fooliteral" */ 581if(patternlen -1<= basenamelen && 582!strncmp_icase(pattern +1, 583 basename + basenamelen - (patternlen -1), 584 patternlen -1)) 585return1; 586}else{ 587if(fnmatch_icase_mem(pattern, patternlen, 588 basename, basenamelen, 5890) ==0) 590return1; 591} 592return0; 593} 594 595intmatch_pathname(const char*pathname,int pathlen, 596const char*base,int baselen, 597const char*pattern,int prefix,int patternlen, 598int flags) 599{ 600const char*name; 601int namelen; 602 603/* 604 * match with FNM_PATHNAME; the pattern has base implicitly 605 * in front of it. 606 */ 607if(*pattern =='/') { 608 pattern++; 609 patternlen--; 610 prefix--; 611} 612 613/* 614 * baselen does not count the trailing slash. base[] may or 615 * may not end with a trailing slash though. 616 */ 617if(pathlen < baselen +1|| 618(baselen && pathname[baselen] !='/') || 619strncmp_icase(pathname, base, baselen)) 620return0; 621 622 namelen = baselen ? pathlen - baselen -1: pathlen; 623 name = pathname + pathlen - namelen; 624 625if(prefix) { 626/* 627 * if the non-wildcard part is longer than the 628 * remaining pathname, surely it cannot match. 629 */ 630if(prefix > namelen) 631return0; 632 633if(strncmp_icase(pattern, name, prefix)) 634return0; 635 pattern += prefix; 636 patternlen -= prefix; 637 name += prefix; 638 namelen -= prefix; 639 640/* 641 * If the whole pattern did not have a wildcard, 642 * then our prefix match is all we need; we 643 * do not need to call fnmatch at all. 644 */ 645if(!patternlen && !namelen) 646return1; 647} 648 649returnfnmatch_icase_mem(pattern, patternlen, 650 name, namelen, 651 WM_PATHNAME) ==0; 652} 653 654/* 655 * Scan the given exclude list in reverse to see whether pathname 656 * should be ignored. The first match (i.e. the last on the list), if 657 * any, determines the fate. Returns the exclude_list element which 658 * matched, or NULL for undecided. 659 */ 660static struct exclude *last_exclude_matching_from_list(const char*pathname, 661int pathlen, 662const char*basename, 663int*dtype, 664struct exclude_list *el) 665{ 666int i; 667 668if(!el->nr) 669return NULL;/* undefined */ 670 671for(i = el->nr -1;0<= i; i--) { 672struct exclude *x = el->excludes[i]; 673const char*exclude = x->pattern; 674int prefix = x->nowildcardlen; 675 676if(x->flags & EXC_FLAG_MUSTBEDIR) { 677if(*dtype == DT_UNKNOWN) 678*dtype =get_dtype(NULL, pathname, pathlen); 679if(*dtype != DT_DIR) 680continue; 681} 682 683if(x->flags & EXC_FLAG_NODIR) { 684if(match_basename(basename, 685 pathlen - (basename - pathname), 686 exclude, prefix, x->patternlen, 687 x->flags)) 688return x; 689continue; 690} 691 692assert(x->baselen ==0|| x->base[x->baselen -1] =='/'); 693if(match_pathname(pathname, pathlen, 694 x->base, x->baselen ? x->baselen -1:0, 695 exclude, prefix, x->patternlen, x->flags)) 696return x; 697} 698return NULL;/* undecided */ 699} 700 701/* 702 * Scan the list and let the last match determine the fate. 703 * Return 1 for exclude, 0 for include and -1 for undecided. 704 */ 705intis_excluded_from_list(const char*pathname, 706int pathlen,const char*basename,int*dtype, 707struct exclude_list *el) 708{ 709struct exclude *exclude; 710 exclude =last_exclude_matching_from_list(pathname, pathlen, basename, dtype, el); 711if(exclude) 712return exclude->flags & EXC_FLAG_NEGATIVE ?0:1; 713return-1;/* undecided */ 714} 715 716static struct exclude *last_exclude_matching_from_lists(struct dir_struct *dir, 717const char*pathname,int pathlen,const char*basename, 718int*dtype_p) 719{ 720int i, j; 721struct exclude_list_group *group; 722struct exclude *exclude; 723for(i = EXC_CMDL; i <= EXC_FILE; i++) { 724 group = &dir->exclude_list_group[i]; 725for(j = group->nr -1; j >=0; j--) { 726 exclude =last_exclude_matching_from_list( 727 pathname, pathlen, basename, dtype_p, 728&group->el[j]); 729if(exclude) 730return exclude; 731} 732} 733return NULL; 734} 735 736/* 737 * Loads the per-directory exclude list for the substring of base 738 * which has a char length of baselen. 739 */ 740static voidprep_exclude(struct dir_struct *dir,const char*base,int baselen) 741{ 742struct exclude_list_group *group; 743struct exclude_list *el; 744struct exclude_stack *stk = NULL; 745int current; 746 747 group = &dir->exclude_list_group[EXC_DIRS]; 748 749/* Pop the exclude lists from the EXCL_DIRS exclude_list_group 750 * which originate from directories not in the prefix of the 751 * path being checked. */ 752while((stk = dir->exclude_stack) != NULL) { 753if(stk->baselen <= baselen && 754!strncmp(dir->basebuf, base, stk->baselen)) 755break; 756 el = &group->el[dir->exclude_stack->exclude_ix]; 757 dir->exclude_stack = stk->prev; 758 dir->exclude = NULL; 759free((char*)el->src);/* see strdup() below */ 760clear_exclude_list(el); 761free(stk); 762 group->nr--; 763} 764 765/* Skip traversing into sub directories if the parent is excluded */ 766if(dir->exclude) 767return; 768 769/* Read from the parent directories and push them down. */ 770 current = stk ? stk->baselen : -1; 771while(current < baselen) { 772struct exclude_stack *stk =xcalloc(1,sizeof(*stk)); 773const char*cp; 774 775if(current <0) { 776 cp = base; 777 current =0; 778} 779else{ 780 cp =strchr(base + current +1,'/'); 781if(!cp) 782die("oops in prep_exclude"); 783 cp++; 784} 785 stk->prev = dir->exclude_stack; 786 stk->baselen = cp - base; 787 stk->exclude_ix = group->nr; 788 el =add_exclude_list(dir, EXC_DIRS, NULL); 789memcpy(dir->basebuf + current, base + current, 790 stk->baselen - current); 791 792/* Abort if the directory is excluded */ 793if(stk->baselen) { 794int dt = DT_DIR; 795 dir->basebuf[stk->baselen -1] =0; 796 dir->exclude =last_exclude_matching_from_lists(dir, 797 dir->basebuf, stk->baselen -1, 798 dir->basebuf + current, &dt); 799 dir->basebuf[stk->baselen -1] ='/'; 800if(dir->exclude && 801 dir->exclude->flags & EXC_FLAG_NEGATIVE) 802 dir->exclude = NULL; 803if(dir->exclude) { 804 dir->basebuf[stk->baselen] =0; 805 dir->exclude_stack = stk; 806return; 807} 808} 809 810/* Try to read per-directory file unless path is too long */ 811if(dir->exclude_per_dir && 812 stk->baselen +strlen(dir->exclude_per_dir) < PATH_MAX) { 813strcpy(dir->basebuf + stk->baselen, 814 dir->exclude_per_dir); 815/* 816 * dir->basebuf gets reused by the traversal, but we 817 * need fname to remain unchanged to ensure the src 818 * member of each struct exclude correctly 819 * back-references its source file. Other invocations 820 * of add_exclude_list provide stable strings, so we 821 * strdup() and free() here in the caller. 822 */ 823 el->src =strdup(dir->basebuf); 824add_excludes_from_file_to_list(dir->basebuf, 825 dir->basebuf, stk->baselen, el,1); 826} 827 dir->exclude_stack = stk; 828 current = stk->baselen; 829} 830 dir->basebuf[baselen] ='\0'; 831} 832 833/* 834 * Loads the exclude lists for the directory containing pathname, then 835 * scans all exclude lists to determine whether pathname is excluded. 836 * Returns the exclude_list element which matched, or NULL for 837 * undecided. 838 */ 839struct exclude *last_exclude_matching(struct dir_struct *dir, 840const char*pathname, 841int*dtype_p) 842{ 843int pathlen =strlen(pathname); 844const char*basename =strrchr(pathname,'/'); 845 basename = (basename) ? basename+1: pathname; 846 847prep_exclude(dir, pathname, basename-pathname); 848 849if(dir->exclude) 850return dir->exclude; 851 852returnlast_exclude_matching_from_lists(dir, pathname, pathlen, 853 basename, dtype_p); 854} 855 856/* 857 * Loads the exclude lists for the directory containing pathname, then 858 * scans all exclude lists to determine whether pathname is excluded. 859 * Returns 1 if true, otherwise 0. 860 */ 861intis_excluded(struct dir_struct *dir,const char*pathname,int*dtype_p) 862{ 863struct exclude *exclude = 864last_exclude_matching(dir, pathname, dtype_p); 865if(exclude) 866return exclude->flags & EXC_FLAG_NEGATIVE ?0:1; 867return0; 868} 869 870static struct dir_entry *dir_entry_new(const char*pathname,int len) 871{ 872struct dir_entry *ent; 873 874 ent =xmalloc(sizeof(*ent) + len +1); 875 ent->len = len; 876memcpy(ent->name, pathname, len); 877 ent->name[len] =0; 878return ent; 879} 880 881static struct dir_entry *dir_add_name(struct dir_struct *dir,const char*pathname,int len) 882{ 883if(cache_file_exists(pathname, len, ignore_case)) 884return NULL; 885 886ALLOC_GROW(dir->entries, dir->nr+1, dir->alloc); 887return dir->entries[dir->nr++] =dir_entry_new(pathname, len); 888} 889 890struct dir_entry *dir_add_ignored(struct dir_struct *dir,const char*pathname,int len) 891{ 892if(!cache_name_is_other(pathname, len)) 893return NULL; 894 895ALLOC_GROW(dir->ignored, dir->ignored_nr+1, dir->ignored_alloc); 896return dir->ignored[dir->ignored_nr++] =dir_entry_new(pathname, len); 897} 898 899enum exist_status { 900 index_nonexistent =0, 901 index_directory, 902 index_gitdir 903}; 904 905/* 906 * Do not use the alphabetically sorted index to look up 907 * the directory name; instead, use the case insensitive 908 * directory hash. 909 */ 910static enum exist_status directory_exists_in_index_icase(const char*dirname,int len) 911{ 912const struct cache_entry *ce =cache_dir_exists(dirname, len); 913unsigned char endchar; 914 915if(!ce) 916return index_nonexistent; 917 endchar = ce->name[len]; 918 919/* 920 * The cache_entry structure returned will contain this dirname 921 * and possibly additional path components. 922 */ 923if(endchar =='/') 924return index_directory; 925 926/* 927 * If there are no additional path components, then this cache_entry 928 * represents a submodule. Submodules, despite being directories, 929 * are stored in the cache without a closing slash. 930 */ 931if(!endchar &&S_ISGITLINK(ce->ce_mode)) 932return index_gitdir; 933 934/* This should never be hit, but it exists just in case. */ 935return index_nonexistent; 936} 937 938/* 939 * The index sorts alphabetically by entry name, which 940 * means that a gitlink sorts as '\0' at the end, while 941 * a directory (which is defined not as an entry, but as 942 * the files it contains) will sort with the '/' at the 943 * end. 944 */ 945static enum exist_status directory_exists_in_index(const char*dirname,int len) 946{ 947int pos; 948 949if(ignore_case) 950returndirectory_exists_in_index_icase(dirname, len); 951 952 pos =cache_name_pos(dirname, len); 953if(pos <0) 954 pos = -pos-1; 955while(pos < active_nr) { 956const struct cache_entry *ce = active_cache[pos++]; 957unsigned char endchar; 958 959if(strncmp(ce->name, dirname, len)) 960break; 961 endchar = ce->name[len]; 962if(endchar >'/') 963break; 964if(endchar =='/') 965return index_directory; 966if(!endchar &&S_ISGITLINK(ce->ce_mode)) 967return index_gitdir; 968} 969return index_nonexistent; 970} 971 972/* 973 * When we find a directory when traversing the filesystem, we 974 * have three distinct cases: 975 * 976 * - ignore it 977 * - see it as a directory 978 * - recurse into it 979 * 980 * and which one we choose depends on a combination of existing 981 * git index contents and the flags passed into the directory 982 * traversal routine. 983 * 984 * Case 1: If we *already* have entries in the index under that 985 * directory name, we always recurse into the directory to see 986 * all the files. 987 * 988 * Case 2: If we *already* have that directory name as a gitlink, 989 * we always continue to see it as a gitlink, regardless of whether 990 * there is an actual git directory there or not (it might not 991 * be checked out as a subproject!) 992 * 993 * Case 3: if we didn't have it in the index previously, we 994 * have a few sub-cases: 995 * 996 * (a) if "show_other_directories" is true, we show it as 997 * just a directory, unless "hide_empty_directories" is 998 * also true, in which case we need to check if it contains any 999 * untracked and / or ignored files.1000 * (b) if it looks like a git directory, and we don't have1001 * 'no_gitlinks' set we treat it as a gitlink, and show it1002 * as a directory.1003 * (c) otherwise, we recurse into it.1004 */1005static enum path_treatment treat_directory(struct dir_struct *dir,1006const char*dirname,int len,int exclude,1007const struct path_simplify *simplify)1008{1009/* The "len-1" is to strip the final '/' */1010switch(directory_exists_in_index(dirname, len-1)) {1011case index_directory:1012return path_recurse;10131014case index_gitdir:1015return path_none;10161017case index_nonexistent:1018if(dir->flags & DIR_SHOW_OTHER_DIRECTORIES)1019break;1020if(!(dir->flags & DIR_NO_GITLINKS)) {1021unsigned char sha1[20];1022if(resolve_gitlink_ref(dirname,"HEAD", sha1) ==0)1023return path_untracked;1024}1025return path_recurse;1026}10271028/* This is the "show_other_directories" case */10291030if(!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))1031return exclude ? path_excluded : path_untracked;10321033returnread_directory_recursive(dir, dirname, len,1, simplify);1034}10351036/*1037 * This is an inexact early pruning of any recursive directory1038 * reading - if the path cannot possibly be in the pathspec,1039 * return true, and we'll skip it early.1040 */1041static intsimplify_away(const char*path,int pathlen,const struct path_simplify *simplify)1042{1043if(simplify) {1044for(;;) {1045const char*match = simplify->path;1046int len = simplify->len;10471048if(!match)1049break;1050if(len > pathlen)1051 len = pathlen;1052if(!memcmp(path, match, len))1053return0;1054 simplify++;1055}1056return1;1057}1058return0;1059}10601061/*1062 * This function tells us whether an excluded path matches a1063 * list of "interesting" pathspecs. That is, whether a path matched1064 * by any of the pathspecs could possibly be ignored by excluding1065 * the specified path. This can happen if:1066 *1067 * 1. the path is mentioned explicitly in the pathspec1068 *1069 * 2. the path is a directory prefix of some element in the1070 * pathspec1071 */1072static intexclude_matches_pathspec(const char*path,int len,1073const struct path_simplify *simplify)1074{1075if(simplify) {1076for(; simplify->path; simplify++) {1077if(len == simplify->len1078&& !memcmp(path, simplify->path, len))1079return1;1080if(len < simplify->len1081&& simplify->path[len] =='/'1082&& !memcmp(path, simplify->path, len))1083return1;1084}1085}1086return0;1087}10881089static intget_index_dtype(const char*path,int len)1090{1091int pos;1092const struct cache_entry *ce;10931094 ce =cache_file_exists(path, len,0);1095if(ce) {1096if(!ce_uptodate(ce))1097return DT_UNKNOWN;1098if(S_ISGITLINK(ce->ce_mode))1099return DT_DIR;1100/*1101 * Nobody actually cares about the1102 * difference between DT_LNK and DT_REG1103 */1104return DT_REG;1105}11061107/* Try to look it up as a directory */1108 pos =cache_name_pos(path, len);1109if(pos >=0)1110return DT_UNKNOWN;1111 pos = -pos-1;1112while(pos < active_nr) {1113 ce = active_cache[pos++];1114if(strncmp(ce->name, path, len))1115break;1116if(ce->name[len] >'/')1117break;1118if(ce->name[len] <'/')1119continue;1120if(!ce_uptodate(ce))1121break;/* continue? */1122return DT_DIR;1123}1124return DT_UNKNOWN;1125}11261127static intget_dtype(struct dirent *de,const char*path,int len)1128{1129int dtype = de ?DTYPE(de) : DT_UNKNOWN;1130struct stat st;11311132if(dtype != DT_UNKNOWN)1133return dtype;1134 dtype =get_index_dtype(path, len);1135if(dtype != DT_UNKNOWN)1136return dtype;1137if(lstat(path, &st))1138return dtype;1139if(S_ISREG(st.st_mode))1140return DT_REG;1141if(S_ISDIR(st.st_mode))1142return DT_DIR;1143if(S_ISLNK(st.st_mode))1144return DT_LNK;1145return dtype;1146}11471148static enum path_treatment treat_one_path(struct dir_struct *dir,1149struct strbuf *path,1150const struct path_simplify *simplify,1151int dtype,struct dirent *de)1152{1153int exclude;1154int has_path_in_index = !!cache_file_exists(path->buf, path->len, ignore_case);11551156if(dtype == DT_UNKNOWN)1157 dtype =get_dtype(de, path->buf, path->len);11581159/* Always exclude indexed files */1160if(dtype != DT_DIR && has_path_in_index)1161return path_none;11621163/*1164 * When we are looking at a directory P in the working tree,1165 * there are three cases:1166 *1167 * (1) P exists in the index. Everything inside the directory P in1168 * the working tree needs to go when P is checked out from the1169 * index.1170 *1171 * (2) P does not exist in the index, but there is P/Q in the index.1172 * We know P will stay a directory when we check out the contents1173 * of the index, but we do not know yet if there is a directory1174 * P/Q in the working tree to be killed, so we need to recurse.1175 *1176 * (3) P does not exist in the index, and there is no P/Q in the index1177 * to require P to be a directory, either. Only in this case, we1178 * know that everything inside P will not be killed without1179 * recursing.1180 */1181if((dir->flags & DIR_COLLECT_KILLED_ONLY) &&1182(dtype == DT_DIR) &&1183!has_path_in_index &&1184(directory_exists_in_index(path->buf, path->len) == index_nonexistent))1185return path_none;11861187 exclude =is_excluded(dir, path->buf, &dtype);11881189/*1190 * Excluded? If we don't explicitly want to show1191 * ignored files, ignore it1192 */1193if(exclude && !(dir->flags & (DIR_SHOW_IGNORED|DIR_SHOW_IGNORED_TOO)))1194return path_excluded;11951196switch(dtype) {1197default:1198return path_none;1199case DT_DIR:1200strbuf_addch(path,'/');1201returntreat_directory(dir, path->buf, path->len, exclude,1202 simplify);1203case DT_REG:1204case DT_LNK:1205return exclude ? path_excluded : path_untracked;1206}1207}12081209static enum path_treatment treat_path(struct dir_struct *dir,1210struct dirent *de,1211struct strbuf *path,1212int baselen,1213const struct path_simplify *simplify)1214{1215int dtype;12161217if(is_dot_or_dotdot(de->d_name) || !strcmp(de->d_name,".git"))1218return path_none;1219strbuf_setlen(path, baselen);1220strbuf_addstr(path, de->d_name);1221if(simplify_away(path->buf, path->len, simplify))1222return path_none;12231224 dtype =DTYPE(de);1225returntreat_one_path(dir, path, simplify, dtype, de);1226}12271228/*1229 * Read a directory tree. We currently ignore anything but1230 * directories, regular files and symlinks. That's because git1231 * doesn't handle them at all yet. Maybe that will change some1232 * day.1233 *1234 * Also, we ignore the name ".git" (even if it is not a directory).1235 * That likely will not change.1236 *1237 * Returns the most significant path_treatment value encountered in the scan.1238 */1239static enum path_treatment read_directory_recursive(struct dir_struct *dir,1240const char*base,int baselen,1241int check_only,1242const struct path_simplify *simplify)1243{1244DIR*fdir;1245enum path_treatment state, subdir_state, dir_state = path_none;1246struct dirent *de;1247struct strbuf path = STRBUF_INIT;12481249strbuf_add(&path, base, baselen);12501251 fdir =opendir(path.len ? path.buf :".");1252if(!fdir)1253goto out;12541255while((de =readdir(fdir)) != NULL) {1256/* check how the file or directory should be treated */1257 state =treat_path(dir, de, &path, baselen, simplify);1258if(state > dir_state)1259 dir_state = state;12601261/* recurse into subdir if instructed by treat_path */1262if(state == path_recurse) {1263 subdir_state =read_directory_recursive(dir, path.buf,1264 path.len, check_only, simplify);1265if(subdir_state > dir_state)1266 dir_state = subdir_state;1267}12681269if(check_only) {1270/* abort early if maximum state has been reached */1271if(dir_state == path_untracked)1272break;1273/* skip the dir_add_* part */1274continue;1275}12761277/* add the path to the appropriate result list */1278switch(state) {1279case path_excluded:1280if(dir->flags & DIR_SHOW_IGNORED)1281dir_add_name(dir, path.buf, path.len);1282else if((dir->flags & DIR_SHOW_IGNORED_TOO) ||1283((dir->flags & DIR_COLLECT_IGNORED) &&1284exclude_matches_pathspec(path.buf, path.len,1285 simplify)))1286dir_add_ignored(dir, path.buf, path.len);1287break;12881289case path_untracked:1290if(!(dir->flags & DIR_SHOW_IGNORED))1291dir_add_name(dir, path.buf, path.len);1292break;12931294default:1295break;1296}1297}1298closedir(fdir);1299 out:1300strbuf_release(&path);13011302return dir_state;1303}13041305static intcmp_name(const void*p1,const void*p2)1306{1307const struct dir_entry *e1 = *(const struct dir_entry **)p1;1308const struct dir_entry *e2 = *(const struct dir_entry **)p2;13091310returncache_name_compare(e1->name, e1->len,1311 e2->name, e2->len);1312}13131314static struct path_simplify *create_simplify(const char**pathspec)1315{1316int nr, alloc =0;1317struct path_simplify *simplify = NULL;13181319if(!pathspec)1320return NULL;13211322for(nr =0; ; nr++) {1323const char*match;1324if(nr >= alloc) {1325 alloc =alloc_nr(alloc);1326 simplify =xrealloc(simplify, alloc *sizeof(*simplify));1327}1328 match = *pathspec++;1329if(!match)1330break;1331 simplify[nr].path = match;1332 simplify[nr].len =simple_length(match);1333}1334 simplify[nr].path = NULL;1335 simplify[nr].len =0;1336return simplify;1337}13381339static voidfree_simplify(struct path_simplify *simplify)1340{1341free(simplify);1342}13431344static inttreat_leading_path(struct dir_struct *dir,1345const char*path,int len,1346const struct path_simplify *simplify)1347{1348struct strbuf sb = STRBUF_INIT;1349int baselen, rc =0;1350const char*cp;1351int old_flags = dir->flags;13521353while(len && path[len -1] =='/')1354 len--;1355if(!len)1356return1;1357 baselen =0;1358 dir->flags &= ~DIR_SHOW_OTHER_DIRECTORIES;1359while(1) {1360 cp = path + baselen + !!baselen;1361 cp =memchr(cp,'/', path + len - cp);1362if(!cp)1363 baselen = len;1364else1365 baselen = cp - path;1366strbuf_setlen(&sb,0);1367strbuf_add(&sb, path, baselen);1368if(!is_directory(sb.buf))1369break;1370if(simplify_away(sb.buf, sb.len, simplify))1371break;1372if(treat_one_path(dir, &sb, simplify,1373 DT_DIR, NULL) == path_none)1374break;/* do not recurse into it */1375if(len <= baselen) {1376 rc =1;1377break;/* finished checking */1378}1379}1380strbuf_release(&sb);1381 dir->flags = old_flags;1382return rc;1383}13841385intread_directory(struct dir_struct *dir,const char*path,int len,const struct pathspec *pathspec)1386{1387struct path_simplify *simplify;13881389/*1390 * Check out create_simplify()1391 */1392if(pathspec)1393GUARD_PATHSPEC(pathspec,1394 PATHSPEC_FROMTOP |1395 PATHSPEC_MAXDEPTH |1396 PATHSPEC_LITERAL |1397 PATHSPEC_GLOB |1398 PATHSPEC_ICASE);13991400if(has_symlink_leading_path(path, len))1401return dir->nr;14021403 simplify =create_simplify(pathspec ? pathspec->_raw : NULL);1404if(!len ||treat_leading_path(dir, path, len, simplify))1405read_directory_recursive(dir, path, len,0, simplify);1406free_simplify(simplify);1407qsort(dir->entries, dir->nr,sizeof(struct dir_entry *), cmp_name);1408qsort(dir->ignored, dir->ignored_nr,sizeof(struct dir_entry *), cmp_name);1409return dir->nr;1410}14111412intfile_exists(const char*f)1413{1414struct stat sb;1415returnlstat(f, &sb) ==0;1416}14171418/*1419 * Given two normalized paths (a trailing slash is ok), if subdir is1420 * outside dir, return -1. Otherwise return the offset in subdir that1421 * can be used as relative path to dir.1422 */1423intdir_inside_of(const char*subdir,const char*dir)1424{1425int offset =0;14261427assert(dir && subdir && *dir && *subdir);14281429while(*dir && *subdir && *dir == *subdir) {1430 dir++;1431 subdir++;1432 offset++;1433}14341435/* hel[p]/me vs hel[l]/yeah */1436if(*dir && *subdir)1437return-1;14381439if(!*subdir)1440return!*dir ? offset : -1;/* same dir */14411442/* foo/[b]ar vs foo/[] */1443if(is_dir_sep(dir[-1]))1444returnis_dir_sep(subdir[-1]) ? offset : -1;14451446/* foo[/]bar vs foo[] */1447returnis_dir_sep(*subdir) ? offset +1: -1;1448}14491450intis_inside_dir(const char*dir)1451{1452char cwd[PATH_MAX];1453if(!dir)1454return0;1455if(!getcwd(cwd,sizeof(cwd)))1456die_errno("can't find the current directory");1457returndir_inside_of(cwd, dir) >=0;1458}14591460intis_empty_dir(const char*path)1461{1462DIR*dir =opendir(path);1463struct dirent *e;1464int ret =1;14651466if(!dir)1467return0;14681469while((e =readdir(dir)) != NULL)1470if(!is_dot_or_dotdot(e->d_name)) {1471 ret =0;1472break;1473}14741475closedir(dir);1476return ret;1477}14781479static intremove_dir_recurse(struct strbuf *path,int flag,int*kept_up)1480{1481DIR*dir;1482struct dirent *e;1483int ret =0, original_len = path->len, len, kept_down =0;1484int only_empty = (flag & REMOVE_DIR_EMPTY_ONLY);1485int keep_toplevel = (flag & REMOVE_DIR_KEEP_TOPLEVEL);1486unsigned char submodule_head[20];14871488if((flag & REMOVE_DIR_KEEP_NESTED_GIT) &&1489!resolve_gitlink_ref(path->buf,"HEAD", submodule_head)) {1490/* Do not descend and nuke a nested git work tree. */1491if(kept_up)1492*kept_up =1;1493return0;1494}14951496 flag &= ~REMOVE_DIR_KEEP_TOPLEVEL;1497 dir =opendir(path->buf);1498if(!dir) {1499/* an empty dir could be removed even if it is unreadble */1500if(!keep_toplevel)1501returnrmdir(path->buf);1502else1503return-1;1504}1505if(path->buf[original_len -1] !='/')1506strbuf_addch(path,'/');15071508 len = path->len;1509while((e =readdir(dir)) != NULL) {1510struct stat st;1511if(is_dot_or_dotdot(e->d_name))1512continue;15131514strbuf_setlen(path, len);1515strbuf_addstr(path, e->d_name);1516if(lstat(path->buf, &st))1517;/* fall thru */1518else if(S_ISDIR(st.st_mode)) {1519if(!remove_dir_recurse(path, flag, &kept_down))1520continue;/* happy */1521}else if(!only_empty && !unlink(path->buf))1522continue;/* happy, too */15231524/* path too long, stat fails, or non-directory still exists */1525 ret = -1;1526break;1527}1528closedir(dir);15291530strbuf_setlen(path, original_len);1531if(!ret && !keep_toplevel && !kept_down)1532 ret =rmdir(path->buf);1533else if(kept_up)1534/*1535 * report the uplevel that it is not an error that we1536 * did not rmdir() our directory.1537 */1538*kept_up = !ret;1539return ret;1540}15411542intremove_dir_recursively(struct strbuf *path,int flag)1543{1544returnremove_dir_recurse(path, flag, NULL);1545}15461547voidsetup_standard_excludes(struct dir_struct *dir)1548{1549const char*path;1550char*xdg_path;15511552 dir->exclude_per_dir =".gitignore";1553 path =git_path("info/exclude");1554if(!excludes_file) {1555home_config_paths(NULL, &xdg_path,"ignore");1556 excludes_file = xdg_path;1557}1558if(!access_or_warn(path, R_OK,0))1559add_excludes_from_file(dir, path);1560if(excludes_file && !access_or_warn(excludes_file, R_OK,0))1561add_excludes_from_file(dir, excludes_file);1562}15631564intremove_path(const char*name)1565{1566char*slash;15671568if(unlink(name) && errno != ENOENT && errno != ENOTDIR)1569return-1;15701571 slash =strrchr(name,'/');1572if(slash) {1573char*dirs =xstrdup(name);1574 slash = dirs + (slash - name);1575do{1576*slash ='\0';1577}while(rmdir(dirs) ==0&& (slash =strrchr(dirs,'/')));1578free(dirs);1579}1580return0;1581}15821583/*1584 * Frees memory within dir which was allocated for exclude lists and1585 * the exclude_stack. Does not free dir itself.1586 */1587voidclear_directory(struct dir_struct *dir)1588{1589int i, j;1590struct exclude_list_group *group;1591struct exclude_list *el;1592struct exclude_stack *stk;15931594for(i = EXC_CMDL; i <= EXC_FILE; i++) {1595 group = &dir->exclude_list_group[i];1596for(j =0; j < group->nr; j++) {1597 el = &group->el[j];1598if(i == EXC_DIRS)1599free((char*)el->src);1600clear_exclude_list(el);1601}1602free(group->el);1603}16041605 stk = dir->exclude_stack;1606while(stk) {1607struct exclude_stack *prev = stk->prev;1608free(stk);1609 stk = prev;1610}1611}