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 voidcheck_trailing_spaces(const char*fname,char*buf) 467{ 468int i, last_space = -1, len =strlen(buf); 469for(i =0; i < len; i++) 470if(buf[i] =='\\') 471 i++; 472else if(buf[i] ==' ') 473 last_space = i; 474else 475 last_space = -1; 476 477if(last_space == len -1) 478warning(_("%s: trailing spaces in '%s'. Please quote or remove them."), 479 fname, buf); 480} 481 482intadd_excludes_from_file_to_list(const char*fname, 483const char*base, 484int baselen, 485struct exclude_list *el, 486int check_index) 487{ 488struct stat st; 489int fd, i, lineno =1; 490size_t size =0; 491char*buf, *entry; 492 493 fd =open(fname, O_RDONLY); 494if(fd <0||fstat(fd, &st) <0) { 495if(errno != ENOENT) 496warn_on_inaccessible(fname); 497if(0<= fd) 498close(fd); 499if(!check_index || 500(buf =read_skip_worktree_file_from_index(fname, &size)) == NULL) 501return-1; 502if(size ==0) { 503free(buf); 504return0; 505} 506if(buf[size-1] !='\n') { 507 buf =xrealloc(buf, size+1); 508 buf[size++] ='\n'; 509} 510} 511else{ 512 size =xsize_t(st.st_size); 513if(size ==0) { 514close(fd); 515return0; 516} 517 buf =xmalloc(size+1); 518if(read_in_full(fd, buf, size) != size) { 519free(buf); 520close(fd); 521return-1; 522} 523 buf[size++] ='\n'; 524close(fd); 525} 526 527 el->filebuf = buf; 528 entry = buf; 529for(i =0; i < size; i++) { 530if(buf[i] =='\n') { 531if(entry != buf + i && entry[0] !='#') { 532 buf[i - (i && buf[i-1] =='\r')] =0; 533check_trailing_spaces(fname, entry); 534add_exclude(entry, base, baselen, el, lineno); 535} 536 lineno++; 537 entry = buf + i +1; 538} 539} 540return0; 541} 542 543struct exclude_list *add_exclude_list(struct dir_struct *dir, 544int group_type,const char*src) 545{ 546struct exclude_list *el; 547struct exclude_list_group *group; 548 549 group = &dir->exclude_list_group[group_type]; 550ALLOC_GROW(group->el, group->nr +1, group->alloc); 551 el = &group->el[group->nr++]; 552memset(el,0,sizeof(*el)); 553 el->src = src; 554return el; 555} 556 557/* 558 * Used to set up core.excludesfile and .git/info/exclude lists. 559 */ 560voidadd_excludes_from_file(struct dir_struct *dir,const char*fname) 561{ 562struct exclude_list *el; 563 el =add_exclude_list(dir, EXC_FILE, fname); 564if(add_excludes_from_file_to_list(fname,"",0, el,0) <0) 565die("cannot use%sas an exclude file", fname); 566} 567 568intmatch_basename(const char*basename,int basenamelen, 569const char*pattern,int prefix,int patternlen, 570int flags) 571{ 572if(prefix == patternlen) { 573if(patternlen == basenamelen && 574!strncmp_icase(pattern, basename, basenamelen)) 575return1; 576}else if(flags & EXC_FLAG_ENDSWITH) { 577/* "*literal" matching against "fooliteral" */ 578if(patternlen -1<= basenamelen && 579!strncmp_icase(pattern +1, 580 basename + basenamelen - (patternlen -1), 581 patternlen -1)) 582return1; 583}else{ 584if(fnmatch_icase_mem(pattern, patternlen, 585 basename, basenamelen, 5860) ==0) 587return1; 588} 589return0; 590} 591 592intmatch_pathname(const char*pathname,int pathlen, 593const char*base,int baselen, 594const char*pattern,int prefix,int patternlen, 595int flags) 596{ 597const char*name; 598int namelen; 599 600/* 601 * match with FNM_PATHNAME; the pattern has base implicitly 602 * in front of it. 603 */ 604if(*pattern =='/') { 605 pattern++; 606 patternlen--; 607 prefix--; 608} 609 610/* 611 * baselen does not count the trailing slash. base[] may or 612 * may not end with a trailing slash though. 613 */ 614if(pathlen < baselen +1|| 615(baselen && pathname[baselen] !='/') || 616strncmp_icase(pathname, base, baselen)) 617return0; 618 619 namelen = baselen ? pathlen - baselen -1: pathlen; 620 name = pathname + pathlen - namelen; 621 622if(prefix) { 623/* 624 * if the non-wildcard part is longer than the 625 * remaining pathname, surely it cannot match. 626 */ 627if(prefix > namelen) 628return0; 629 630if(strncmp_icase(pattern, name, prefix)) 631return0; 632 pattern += prefix; 633 patternlen -= prefix; 634 name += prefix; 635 namelen -= prefix; 636 637/* 638 * If the whole pattern did not have a wildcard, 639 * then our prefix match is all we need; we 640 * do not need to call fnmatch at all. 641 */ 642if(!patternlen && !namelen) 643return1; 644} 645 646returnfnmatch_icase_mem(pattern, patternlen, 647 name, namelen, 648 WM_PATHNAME) ==0; 649} 650 651/* 652 * Scan the given exclude list in reverse to see whether pathname 653 * should be ignored. The first match (i.e. the last on the list), if 654 * any, determines the fate. Returns the exclude_list element which 655 * matched, or NULL for undecided. 656 */ 657static struct exclude *last_exclude_matching_from_list(const char*pathname, 658int pathlen, 659const char*basename, 660int*dtype, 661struct exclude_list *el) 662{ 663int i; 664 665if(!el->nr) 666return NULL;/* undefined */ 667 668for(i = el->nr -1;0<= i; i--) { 669struct exclude *x = el->excludes[i]; 670const char*exclude = x->pattern; 671int prefix = x->nowildcardlen; 672 673if(x->flags & EXC_FLAG_MUSTBEDIR) { 674if(*dtype == DT_UNKNOWN) 675*dtype =get_dtype(NULL, pathname, pathlen); 676if(*dtype != DT_DIR) 677continue; 678} 679 680if(x->flags & EXC_FLAG_NODIR) { 681if(match_basename(basename, 682 pathlen - (basename - pathname), 683 exclude, prefix, x->patternlen, 684 x->flags)) 685return x; 686continue; 687} 688 689assert(x->baselen ==0|| x->base[x->baselen -1] =='/'); 690if(match_pathname(pathname, pathlen, 691 x->base, x->baselen ? x->baselen -1:0, 692 exclude, prefix, x->patternlen, x->flags)) 693return x; 694} 695return NULL;/* undecided */ 696} 697 698/* 699 * Scan the list and let the last match determine the fate. 700 * Return 1 for exclude, 0 for include and -1 for undecided. 701 */ 702intis_excluded_from_list(const char*pathname, 703int pathlen,const char*basename,int*dtype, 704struct exclude_list *el) 705{ 706struct exclude *exclude; 707 exclude =last_exclude_matching_from_list(pathname, pathlen, basename, dtype, el); 708if(exclude) 709return exclude->flags & EXC_FLAG_NEGATIVE ?0:1; 710return-1;/* undecided */ 711} 712 713static struct exclude *last_exclude_matching_from_lists(struct dir_struct *dir, 714const char*pathname,int pathlen,const char*basename, 715int*dtype_p) 716{ 717int i, j; 718struct exclude_list_group *group; 719struct exclude *exclude; 720for(i = EXC_CMDL; i <= EXC_FILE; i++) { 721 group = &dir->exclude_list_group[i]; 722for(j = group->nr -1; j >=0; j--) { 723 exclude =last_exclude_matching_from_list( 724 pathname, pathlen, basename, dtype_p, 725&group->el[j]); 726if(exclude) 727return exclude; 728} 729} 730return NULL; 731} 732 733/* 734 * Loads the per-directory exclude list for the substring of base 735 * which has a char length of baselen. 736 */ 737static voidprep_exclude(struct dir_struct *dir,const char*base,int baselen) 738{ 739struct exclude_list_group *group; 740struct exclude_list *el; 741struct exclude_stack *stk = NULL; 742int current; 743 744 group = &dir->exclude_list_group[EXC_DIRS]; 745 746/* Pop the exclude lists from the EXCL_DIRS exclude_list_group 747 * which originate from directories not in the prefix of the 748 * path being checked. */ 749while((stk = dir->exclude_stack) != NULL) { 750if(stk->baselen <= baselen && 751!strncmp(dir->basebuf, base, stk->baselen)) 752break; 753 el = &group->el[dir->exclude_stack->exclude_ix]; 754 dir->exclude_stack = stk->prev; 755 dir->exclude = NULL; 756free((char*)el->src);/* see strdup() below */ 757clear_exclude_list(el); 758free(stk); 759 group->nr--; 760} 761 762/* Skip traversing into sub directories if the parent is excluded */ 763if(dir->exclude) 764return; 765 766/* Read from the parent directories and push them down. */ 767 current = stk ? stk->baselen : -1; 768while(current < baselen) { 769struct exclude_stack *stk =xcalloc(1,sizeof(*stk)); 770const char*cp; 771 772if(current <0) { 773 cp = base; 774 current =0; 775} 776else{ 777 cp =strchr(base + current +1,'/'); 778if(!cp) 779die("oops in prep_exclude"); 780 cp++; 781} 782 stk->prev = dir->exclude_stack; 783 stk->baselen = cp - base; 784 stk->exclude_ix = group->nr; 785 el =add_exclude_list(dir, EXC_DIRS, NULL); 786memcpy(dir->basebuf + current, base + current, 787 stk->baselen - current); 788 789/* Abort if the directory is excluded */ 790if(stk->baselen) { 791int dt = DT_DIR; 792 dir->basebuf[stk->baselen -1] =0; 793 dir->exclude =last_exclude_matching_from_lists(dir, 794 dir->basebuf, stk->baselen -1, 795 dir->basebuf + current, &dt); 796 dir->basebuf[stk->baselen -1] ='/'; 797if(dir->exclude && 798 dir->exclude->flags & EXC_FLAG_NEGATIVE) 799 dir->exclude = NULL; 800if(dir->exclude) { 801 dir->basebuf[stk->baselen] =0; 802 dir->exclude_stack = stk; 803return; 804} 805} 806 807/* Try to read per-directory file unless path is too long */ 808if(dir->exclude_per_dir && 809 stk->baselen +strlen(dir->exclude_per_dir) < PATH_MAX) { 810strcpy(dir->basebuf + stk->baselen, 811 dir->exclude_per_dir); 812/* 813 * dir->basebuf gets reused by the traversal, but we 814 * need fname to remain unchanged to ensure the src 815 * member of each struct exclude correctly 816 * back-references its source file. Other invocations 817 * of add_exclude_list provide stable strings, so we 818 * strdup() and free() here in the caller. 819 */ 820 el->src =strdup(dir->basebuf); 821add_excludes_from_file_to_list(dir->basebuf, 822 dir->basebuf, stk->baselen, el,1); 823} 824 dir->exclude_stack = stk; 825 current = stk->baselen; 826} 827 dir->basebuf[baselen] ='\0'; 828} 829 830/* 831 * Loads the exclude lists for the directory containing pathname, then 832 * scans all exclude lists to determine whether pathname is excluded. 833 * Returns the exclude_list element which matched, or NULL for 834 * undecided. 835 */ 836struct exclude *last_exclude_matching(struct dir_struct *dir, 837const char*pathname, 838int*dtype_p) 839{ 840int pathlen =strlen(pathname); 841const char*basename =strrchr(pathname,'/'); 842 basename = (basename) ? basename+1: pathname; 843 844prep_exclude(dir, pathname, basename-pathname); 845 846if(dir->exclude) 847return dir->exclude; 848 849returnlast_exclude_matching_from_lists(dir, pathname, pathlen, 850 basename, dtype_p); 851} 852 853/* 854 * Loads the exclude lists for the directory containing pathname, then 855 * scans all exclude lists to determine whether pathname is excluded. 856 * Returns 1 if true, otherwise 0. 857 */ 858intis_excluded(struct dir_struct *dir,const char*pathname,int*dtype_p) 859{ 860struct exclude *exclude = 861last_exclude_matching(dir, pathname, dtype_p); 862if(exclude) 863return exclude->flags & EXC_FLAG_NEGATIVE ?0:1; 864return0; 865} 866 867static struct dir_entry *dir_entry_new(const char*pathname,int len) 868{ 869struct dir_entry *ent; 870 871 ent =xmalloc(sizeof(*ent) + len +1); 872 ent->len = len; 873memcpy(ent->name, pathname, len); 874 ent->name[len] =0; 875return ent; 876} 877 878static struct dir_entry *dir_add_name(struct dir_struct *dir,const char*pathname,int len) 879{ 880if(cache_file_exists(pathname, len, ignore_case)) 881return NULL; 882 883ALLOC_GROW(dir->entries, dir->nr+1, dir->alloc); 884return dir->entries[dir->nr++] =dir_entry_new(pathname, len); 885} 886 887struct dir_entry *dir_add_ignored(struct dir_struct *dir,const char*pathname,int len) 888{ 889if(!cache_name_is_other(pathname, len)) 890return NULL; 891 892ALLOC_GROW(dir->ignored, dir->ignored_nr+1, dir->ignored_alloc); 893return dir->ignored[dir->ignored_nr++] =dir_entry_new(pathname, len); 894} 895 896enum exist_status { 897 index_nonexistent =0, 898 index_directory, 899 index_gitdir 900}; 901 902/* 903 * Do not use the alphabetically sorted index to look up 904 * the directory name; instead, use the case insensitive 905 * directory hash. 906 */ 907static enum exist_status directory_exists_in_index_icase(const char*dirname,int len) 908{ 909const struct cache_entry *ce =cache_dir_exists(dirname, len); 910unsigned char endchar; 911 912if(!ce) 913return index_nonexistent; 914 endchar = ce->name[len]; 915 916/* 917 * The cache_entry structure returned will contain this dirname 918 * and possibly additional path components. 919 */ 920if(endchar =='/') 921return index_directory; 922 923/* 924 * If there are no additional path components, then this cache_entry 925 * represents a submodule. Submodules, despite being directories, 926 * are stored in the cache without a closing slash. 927 */ 928if(!endchar &&S_ISGITLINK(ce->ce_mode)) 929return index_gitdir; 930 931/* This should never be hit, but it exists just in case. */ 932return index_nonexistent; 933} 934 935/* 936 * The index sorts alphabetically by entry name, which 937 * means that a gitlink sorts as '\0' at the end, while 938 * a directory (which is defined not as an entry, but as 939 * the files it contains) will sort with the '/' at the 940 * end. 941 */ 942static enum exist_status directory_exists_in_index(const char*dirname,int len) 943{ 944int pos; 945 946if(ignore_case) 947returndirectory_exists_in_index_icase(dirname, len); 948 949 pos =cache_name_pos(dirname, len); 950if(pos <0) 951 pos = -pos-1; 952while(pos < active_nr) { 953const struct cache_entry *ce = active_cache[pos++]; 954unsigned char endchar; 955 956if(strncmp(ce->name, dirname, len)) 957break; 958 endchar = ce->name[len]; 959if(endchar >'/') 960break; 961if(endchar =='/') 962return index_directory; 963if(!endchar &&S_ISGITLINK(ce->ce_mode)) 964return index_gitdir; 965} 966return index_nonexistent; 967} 968 969/* 970 * When we find a directory when traversing the filesystem, we 971 * have three distinct cases: 972 * 973 * - ignore it 974 * - see it as a directory 975 * - recurse into it 976 * 977 * and which one we choose depends on a combination of existing 978 * git index contents and the flags passed into the directory 979 * traversal routine. 980 * 981 * Case 1: If we *already* have entries in the index under that 982 * directory name, we always recurse into the directory to see 983 * all the files. 984 * 985 * Case 2: If we *already* have that directory name as a gitlink, 986 * we always continue to see it as a gitlink, regardless of whether 987 * there is an actual git directory there or not (it might not 988 * be checked out as a subproject!) 989 * 990 * Case 3: if we didn't have it in the index previously, we 991 * have a few sub-cases: 992 * 993 * (a) if "show_other_directories" is true, we show it as 994 * just a directory, unless "hide_empty_directories" is 995 * also true, in which case we need to check if it contains any 996 * untracked and / or ignored files. 997 * (b) if it looks like a git directory, and we don't have 998 * 'no_gitlinks' set we treat it as a gitlink, and show it 999 * as a directory.1000 * (c) otherwise, we recurse into it.1001 */1002static enum path_treatment treat_directory(struct dir_struct *dir,1003const char*dirname,int len,int exclude,1004const struct path_simplify *simplify)1005{1006/* The "len-1" is to strip the final '/' */1007switch(directory_exists_in_index(dirname, len-1)) {1008case index_directory:1009return path_recurse;10101011case index_gitdir:1012return path_none;10131014case index_nonexistent:1015if(dir->flags & DIR_SHOW_OTHER_DIRECTORIES)1016break;1017if(!(dir->flags & DIR_NO_GITLINKS)) {1018unsigned char sha1[20];1019if(resolve_gitlink_ref(dirname,"HEAD", sha1) ==0)1020return path_untracked;1021}1022return path_recurse;1023}10241025/* This is the "show_other_directories" case */10261027if(!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))1028return exclude ? path_excluded : path_untracked;10291030returnread_directory_recursive(dir, dirname, len,1, simplify);1031}10321033/*1034 * This is an inexact early pruning of any recursive directory1035 * reading - if the path cannot possibly be in the pathspec,1036 * return true, and we'll skip it early.1037 */1038static intsimplify_away(const char*path,int pathlen,const struct path_simplify *simplify)1039{1040if(simplify) {1041for(;;) {1042const char*match = simplify->path;1043int len = simplify->len;10441045if(!match)1046break;1047if(len > pathlen)1048 len = pathlen;1049if(!memcmp(path, match, len))1050return0;1051 simplify++;1052}1053return1;1054}1055return0;1056}10571058/*1059 * This function tells us whether an excluded path matches a1060 * list of "interesting" pathspecs. That is, whether a path matched1061 * by any of the pathspecs could possibly be ignored by excluding1062 * the specified path. This can happen if:1063 *1064 * 1. the path is mentioned explicitly in the pathspec1065 *1066 * 2. the path is a directory prefix of some element in the1067 * pathspec1068 */1069static intexclude_matches_pathspec(const char*path,int len,1070const struct path_simplify *simplify)1071{1072if(simplify) {1073for(; simplify->path; simplify++) {1074if(len == simplify->len1075&& !memcmp(path, simplify->path, len))1076return1;1077if(len < simplify->len1078&& simplify->path[len] =='/'1079&& !memcmp(path, simplify->path, len))1080return1;1081}1082}1083return0;1084}10851086static intget_index_dtype(const char*path,int len)1087{1088int pos;1089const struct cache_entry *ce;10901091 ce =cache_file_exists(path, len,0);1092if(ce) {1093if(!ce_uptodate(ce))1094return DT_UNKNOWN;1095if(S_ISGITLINK(ce->ce_mode))1096return DT_DIR;1097/*1098 * Nobody actually cares about the1099 * difference between DT_LNK and DT_REG1100 */1101return DT_REG;1102}11031104/* Try to look it up as a directory */1105 pos =cache_name_pos(path, len);1106if(pos >=0)1107return DT_UNKNOWN;1108 pos = -pos-1;1109while(pos < active_nr) {1110 ce = active_cache[pos++];1111if(strncmp(ce->name, path, len))1112break;1113if(ce->name[len] >'/')1114break;1115if(ce->name[len] <'/')1116continue;1117if(!ce_uptodate(ce))1118break;/* continue? */1119return DT_DIR;1120}1121return DT_UNKNOWN;1122}11231124static intget_dtype(struct dirent *de,const char*path,int len)1125{1126int dtype = de ?DTYPE(de) : DT_UNKNOWN;1127struct stat st;11281129if(dtype != DT_UNKNOWN)1130return dtype;1131 dtype =get_index_dtype(path, len);1132if(dtype != DT_UNKNOWN)1133return dtype;1134if(lstat(path, &st))1135return dtype;1136if(S_ISREG(st.st_mode))1137return DT_REG;1138if(S_ISDIR(st.st_mode))1139return DT_DIR;1140if(S_ISLNK(st.st_mode))1141return DT_LNK;1142return dtype;1143}11441145static enum path_treatment treat_one_path(struct dir_struct *dir,1146struct strbuf *path,1147const struct path_simplify *simplify,1148int dtype,struct dirent *de)1149{1150int exclude;1151int has_path_in_index = !!cache_file_exists(path->buf, path->len, ignore_case);11521153if(dtype == DT_UNKNOWN)1154 dtype =get_dtype(de, path->buf, path->len);11551156/* Always exclude indexed files */1157if(dtype != DT_DIR && has_path_in_index)1158return path_none;11591160/*1161 * When we are looking at a directory P in the working tree,1162 * there are three cases:1163 *1164 * (1) P exists in the index. Everything inside the directory P in1165 * the working tree needs to go when P is checked out from the1166 * index.1167 *1168 * (2) P does not exist in the index, but there is P/Q in the index.1169 * We know P will stay a directory when we check out the contents1170 * of the index, but we do not know yet if there is a directory1171 * P/Q in the working tree to be killed, so we need to recurse.1172 *1173 * (3) P does not exist in the index, and there is no P/Q in the index1174 * to require P to be a directory, either. Only in this case, we1175 * know that everything inside P will not be killed without1176 * recursing.1177 */1178if((dir->flags & DIR_COLLECT_KILLED_ONLY) &&1179(dtype == DT_DIR) &&1180!has_path_in_index &&1181(directory_exists_in_index(path->buf, path->len) == index_nonexistent))1182return path_none;11831184 exclude =is_excluded(dir, path->buf, &dtype);11851186/*1187 * Excluded? If we don't explicitly want to show1188 * ignored files, ignore it1189 */1190if(exclude && !(dir->flags & (DIR_SHOW_IGNORED|DIR_SHOW_IGNORED_TOO)))1191return path_excluded;11921193switch(dtype) {1194default:1195return path_none;1196case DT_DIR:1197strbuf_addch(path,'/');1198returntreat_directory(dir, path->buf, path->len, exclude,1199 simplify);1200case DT_REG:1201case DT_LNK:1202return exclude ? path_excluded : path_untracked;1203}1204}12051206static enum path_treatment treat_path(struct dir_struct *dir,1207struct dirent *de,1208struct strbuf *path,1209int baselen,1210const struct path_simplify *simplify)1211{1212int dtype;12131214if(is_dot_or_dotdot(de->d_name) || !strcmp(de->d_name,".git"))1215return path_none;1216strbuf_setlen(path, baselen);1217strbuf_addstr(path, de->d_name);1218if(simplify_away(path->buf, path->len, simplify))1219return path_none;12201221 dtype =DTYPE(de);1222returntreat_one_path(dir, path, simplify, dtype, de);1223}12241225/*1226 * Read a directory tree. We currently ignore anything but1227 * directories, regular files and symlinks. That's because git1228 * doesn't handle them at all yet. Maybe that will change some1229 * day.1230 *1231 * Also, we ignore the name ".git" (even if it is not a directory).1232 * That likely will not change.1233 *1234 * Returns the most significant path_treatment value encountered in the scan.1235 */1236static enum path_treatment read_directory_recursive(struct dir_struct *dir,1237const char*base,int baselen,1238int check_only,1239const struct path_simplify *simplify)1240{1241DIR*fdir;1242enum path_treatment state, subdir_state, dir_state = path_none;1243struct dirent *de;1244struct strbuf path = STRBUF_INIT;12451246strbuf_add(&path, base, baselen);12471248 fdir =opendir(path.len ? path.buf :".");1249if(!fdir)1250goto out;12511252while((de =readdir(fdir)) != NULL) {1253/* check how the file or directory should be treated */1254 state =treat_path(dir, de, &path, baselen, simplify);1255if(state > dir_state)1256 dir_state = state;12571258/* recurse into subdir if instructed by treat_path */1259if(state == path_recurse) {1260 subdir_state =read_directory_recursive(dir, path.buf,1261 path.len, check_only, simplify);1262if(subdir_state > dir_state)1263 dir_state = subdir_state;1264}12651266if(check_only) {1267/* abort early if maximum state has been reached */1268if(dir_state == path_untracked)1269break;1270/* skip the dir_add_* part */1271continue;1272}12731274/* add the path to the appropriate result list */1275switch(state) {1276case path_excluded:1277if(dir->flags & DIR_SHOW_IGNORED)1278dir_add_name(dir, path.buf, path.len);1279else if((dir->flags & DIR_SHOW_IGNORED_TOO) ||1280((dir->flags & DIR_COLLECT_IGNORED) &&1281exclude_matches_pathspec(path.buf, path.len,1282 simplify)))1283dir_add_ignored(dir, path.buf, path.len);1284break;12851286case path_untracked:1287if(!(dir->flags & DIR_SHOW_IGNORED))1288dir_add_name(dir, path.buf, path.len);1289break;12901291default:1292break;1293}1294}1295closedir(fdir);1296 out:1297strbuf_release(&path);12981299return dir_state;1300}13011302static intcmp_name(const void*p1,const void*p2)1303{1304const struct dir_entry *e1 = *(const struct dir_entry **)p1;1305const struct dir_entry *e2 = *(const struct dir_entry **)p2;13061307returncache_name_compare(e1->name, e1->len,1308 e2->name, e2->len);1309}13101311static struct path_simplify *create_simplify(const char**pathspec)1312{1313int nr, alloc =0;1314struct path_simplify *simplify = NULL;13151316if(!pathspec)1317return NULL;13181319for(nr =0; ; nr++) {1320const char*match;1321if(nr >= alloc) {1322 alloc =alloc_nr(alloc);1323 simplify =xrealloc(simplify, alloc *sizeof(*simplify));1324}1325 match = *pathspec++;1326if(!match)1327break;1328 simplify[nr].path = match;1329 simplify[nr].len =simple_length(match);1330}1331 simplify[nr].path = NULL;1332 simplify[nr].len =0;1333return simplify;1334}13351336static voidfree_simplify(struct path_simplify *simplify)1337{1338free(simplify);1339}13401341static inttreat_leading_path(struct dir_struct *dir,1342const char*path,int len,1343const struct path_simplify *simplify)1344{1345struct strbuf sb = STRBUF_INIT;1346int baselen, rc =0;1347const char*cp;1348int old_flags = dir->flags;13491350while(len && path[len -1] =='/')1351 len--;1352if(!len)1353return1;1354 baselen =0;1355 dir->flags &= ~DIR_SHOW_OTHER_DIRECTORIES;1356while(1) {1357 cp = path + baselen + !!baselen;1358 cp =memchr(cp,'/', path + len - cp);1359if(!cp)1360 baselen = len;1361else1362 baselen = cp - path;1363strbuf_setlen(&sb,0);1364strbuf_add(&sb, path, baselen);1365if(!is_directory(sb.buf))1366break;1367if(simplify_away(sb.buf, sb.len, simplify))1368break;1369if(treat_one_path(dir, &sb, simplify,1370 DT_DIR, NULL) == path_none)1371break;/* do not recurse into it */1372if(len <= baselen) {1373 rc =1;1374break;/* finished checking */1375}1376}1377strbuf_release(&sb);1378 dir->flags = old_flags;1379return rc;1380}13811382intread_directory(struct dir_struct *dir,const char*path,int len,const struct pathspec *pathspec)1383{1384struct path_simplify *simplify;13851386/*1387 * Check out create_simplify()1388 */1389if(pathspec)1390GUARD_PATHSPEC(pathspec,1391 PATHSPEC_FROMTOP |1392 PATHSPEC_MAXDEPTH |1393 PATHSPEC_LITERAL |1394 PATHSPEC_GLOB |1395 PATHSPEC_ICASE);13961397if(has_symlink_leading_path(path, len))1398return dir->nr;13991400 simplify =create_simplify(pathspec ? pathspec->_raw : NULL);1401if(!len ||treat_leading_path(dir, path, len, simplify))1402read_directory_recursive(dir, path, len,0, simplify);1403free_simplify(simplify);1404qsort(dir->entries, dir->nr,sizeof(struct dir_entry *), cmp_name);1405qsort(dir->ignored, dir->ignored_nr,sizeof(struct dir_entry *), cmp_name);1406return dir->nr;1407}14081409intfile_exists(const char*f)1410{1411struct stat sb;1412returnlstat(f, &sb) ==0;1413}14141415/*1416 * Given two normalized paths (a trailing slash is ok), if subdir is1417 * outside dir, return -1. Otherwise return the offset in subdir that1418 * can be used as relative path to dir.1419 */1420intdir_inside_of(const char*subdir,const char*dir)1421{1422int offset =0;14231424assert(dir && subdir && *dir && *subdir);14251426while(*dir && *subdir && *dir == *subdir) {1427 dir++;1428 subdir++;1429 offset++;1430}14311432/* hel[p]/me vs hel[l]/yeah */1433if(*dir && *subdir)1434return-1;14351436if(!*subdir)1437return!*dir ? offset : -1;/* same dir */14381439/* foo/[b]ar vs foo/[] */1440if(is_dir_sep(dir[-1]))1441returnis_dir_sep(subdir[-1]) ? offset : -1;14421443/* foo[/]bar vs foo[] */1444returnis_dir_sep(*subdir) ? offset +1: -1;1445}14461447intis_inside_dir(const char*dir)1448{1449char cwd[PATH_MAX];1450if(!dir)1451return0;1452if(!getcwd(cwd,sizeof(cwd)))1453die_errno("can't find the current directory");1454returndir_inside_of(cwd, dir) >=0;1455}14561457intis_empty_dir(const char*path)1458{1459DIR*dir =opendir(path);1460struct dirent *e;1461int ret =1;14621463if(!dir)1464return0;14651466while((e =readdir(dir)) != NULL)1467if(!is_dot_or_dotdot(e->d_name)) {1468 ret =0;1469break;1470}14711472closedir(dir);1473return ret;1474}14751476static intremove_dir_recurse(struct strbuf *path,int flag,int*kept_up)1477{1478DIR*dir;1479struct dirent *e;1480int ret =0, original_len = path->len, len, kept_down =0;1481int only_empty = (flag & REMOVE_DIR_EMPTY_ONLY);1482int keep_toplevel = (flag & REMOVE_DIR_KEEP_TOPLEVEL);1483unsigned char submodule_head[20];14841485if((flag & REMOVE_DIR_KEEP_NESTED_GIT) &&1486!resolve_gitlink_ref(path->buf,"HEAD", submodule_head)) {1487/* Do not descend and nuke a nested git work tree. */1488if(kept_up)1489*kept_up =1;1490return0;1491}14921493 flag &= ~REMOVE_DIR_KEEP_TOPLEVEL;1494 dir =opendir(path->buf);1495if(!dir) {1496/* an empty dir could be removed even if it is unreadble */1497if(!keep_toplevel)1498returnrmdir(path->buf);1499else1500return-1;1501}1502if(path->buf[original_len -1] !='/')1503strbuf_addch(path,'/');15041505 len = path->len;1506while((e =readdir(dir)) != NULL) {1507struct stat st;1508if(is_dot_or_dotdot(e->d_name))1509continue;15101511strbuf_setlen(path, len);1512strbuf_addstr(path, e->d_name);1513if(lstat(path->buf, &st))1514;/* fall thru */1515else if(S_ISDIR(st.st_mode)) {1516if(!remove_dir_recurse(path, flag, &kept_down))1517continue;/* happy */1518}else if(!only_empty && !unlink(path->buf))1519continue;/* happy, too */15201521/* path too long, stat fails, or non-directory still exists */1522 ret = -1;1523break;1524}1525closedir(dir);15261527strbuf_setlen(path, original_len);1528if(!ret && !keep_toplevel && !kept_down)1529 ret =rmdir(path->buf);1530else if(kept_up)1531/*1532 * report the uplevel that it is not an error that we1533 * did not rmdir() our directory.1534 */1535*kept_up = !ret;1536return ret;1537}15381539intremove_dir_recursively(struct strbuf *path,int flag)1540{1541returnremove_dir_recurse(path, flag, NULL);1542}15431544voidsetup_standard_excludes(struct dir_struct *dir)1545{1546const char*path;1547char*xdg_path;15481549 dir->exclude_per_dir =".gitignore";1550 path =git_path("info/exclude");1551if(!excludes_file) {1552home_config_paths(NULL, &xdg_path,"ignore");1553 excludes_file = xdg_path;1554}1555if(!access_or_warn(path, R_OK,0))1556add_excludes_from_file(dir, path);1557if(excludes_file && !access_or_warn(excludes_file, R_OK,0))1558add_excludes_from_file(dir, excludes_file);1559}15601561intremove_path(const char*name)1562{1563char*slash;15641565if(unlink(name) && errno != ENOENT && errno != ENOTDIR)1566return-1;15671568 slash =strrchr(name,'/');1569if(slash) {1570char*dirs =xstrdup(name);1571 slash = dirs + (slash - name);1572do{1573*slash ='\0';1574}while(rmdir(dirs) ==0&& (slash =strrchr(dirs,'/')));1575free(dirs);1576}1577return0;1578}15791580/*1581 * Frees memory within dir which was allocated for exclude lists and1582 * the exclude_stack. Does not free dir itself.1583 */1584voidclear_directory(struct dir_struct *dir)1585{1586int i, j;1587struct exclude_list_group *group;1588struct exclude_list *el;1589struct exclude_stack *stk;15901591for(i = EXC_CMDL; i <= EXC_FILE; i++) {1592 group = &dir->exclude_list_group[i];1593for(j =0; j < group->nr; j++) {1594 el = &group->el[j];1595if(i == EXC_DIRS)1596free((char*)el->src);1597clear_exclude_list(el);1598}1599free(group->el);1600}16011602 stk = dir->exclude_stack;1603while(stk) {1604struct exclude_stack *prev = stk->prev;1605free(stk);1606 stk = prev;1607}1608}