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#define NO_THE_INDEX_COMPATIBILITY_MACROS 11#include"cache.h" 12#include"dir.h" 13#include"attr.h" 14#include"refs.h" 15#include"wildmatch.h" 16#include"pathspec.h" 17#include"utf8.h" 18#include"varint.h" 19#include"ewah/ewok.h" 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 34/* 35 * Support data structure for our opendir/readdir/closedir wrappers 36 */ 37struct cached_dir { 38DIR*fdir; 39struct untracked_cache_dir *untracked; 40int nr_files; 41int nr_dirs; 42 43struct dirent *de; 44const char*file; 45struct untracked_cache_dir *ucd; 46}; 47 48static enum path_treatment read_directory_recursive(struct dir_struct *dir, 49struct index_state *istate,const char*path,int len, 50struct untracked_cache_dir *untracked, 51int check_only,const struct pathspec *pathspec); 52static intget_dtype(struct dirent *de,struct index_state *istate, 53const char*path,int len); 54 55intcount_slashes(const char*s) 56{ 57int cnt =0; 58while(*s) 59if(*s++ =='/') 60 cnt++; 61return cnt; 62} 63 64intfspathcmp(const char*a,const char*b) 65{ 66return ignore_case ?strcasecmp(a, b) :strcmp(a, b); 67} 68 69intfspathncmp(const char*a,const char*b,size_t count) 70{ 71return ignore_case ?strncasecmp(a, b, count) :strncmp(a, b, count); 72} 73 74intgit_fnmatch(const struct pathspec_item *item, 75const char*pattern,const char*string, 76int prefix) 77{ 78if(prefix >0) { 79if(ps_strncmp(item, pattern, string, prefix)) 80return WM_NOMATCH; 81 pattern += prefix; 82 string += prefix; 83} 84if(item->flags & PATHSPEC_ONESTAR) { 85int pattern_len =strlen(++pattern); 86int string_len =strlen(string); 87return string_len < pattern_len || 88ps_strcmp(item, pattern, 89 string + string_len - pattern_len); 90} 91if(item->magic & PATHSPEC_GLOB) 92returnwildmatch(pattern, string, 93 WM_PATHNAME | 94(item->magic & PATHSPEC_ICASE ? WM_CASEFOLD :0)); 95else 96/* wildmatch has not learned no FNM_PATHNAME mode yet */ 97returnwildmatch(pattern, string, 98 item->magic & PATHSPEC_ICASE ? WM_CASEFOLD :0); 99} 100 101static intfnmatch_icase_mem(const char*pattern,int patternlen, 102const char*string,int stringlen, 103int flags) 104{ 105int match_status; 106struct strbuf pat_buf = STRBUF_INIT; 107struct strbuf str_buf = STRBUF_INIT; 108const char*use_pat = pattern; 109const char*use_str = string; 110 111if(pattern[patternlen]) { 112strbuf_add(&pat_buf, pattern, patternlen); 113 use_pat = pat_buf.buf; 114} 115if(string[stringlen]) { 116strbuf_add(&str_buf, string, stringlen); 117 use_str = str_buf.buf; 118} 119 120if(ignore_case) 121 flags |= WM_CASEFOLD; 122 match_status =wildmatch(use_pat, use_str, flags); 123 124strbuf_release(&pat_buf); 125strbuf_release(&str_buf); 126 127return match_status; 128} 129 130static size_tcommon_prefix_len(const struct pathspec *pathspec) 131{ 132int n; 133size_t max =0; 134 135/* 136 * ":(icase)path" is treated as a pathspec full of 137 * wildcard. In other words, only prefix is considered common 138 * prefix. If the pathspec is abc/foo abc/bar, running in 139 * subdir xyz, the common prefix is still xyz, not xuz/abc as 140 * in non-:(icase). 141 */ 142GUARD_PATHSPEC(pathspec, 143 PATHSPEC_FROMTOP | 144 PATHSPEC_MAXDEPTH | 145 PATHSPEC_LITERAL | 146 PATHSPEC_GLOB | 147 PATHSPEC_ICASE | 148 PATHSPEC_EXCLUDE | 149 PATHSPEC_ATTR); 150 151for(n =0; n < pathspec->nr; n++) { 152size_t i =0, len =0, item_len; 153if(pathspec->items[n].magic & PATHSPEC_EXCLUDE) 154continue; 155if(pathspec->items[n].magic & PATHSPEC_ICASE) 156 item_len = pathspec->items[n].prefix; 157else 158 item_len = pathspec->items[n].nowildcard_len; 159while(i < item_len && (n ==0|| i < max)) { 160char c = pathspec->items[n].match[i]; 161if(c != pathspec->items[0].match[i]) 162break; 163if(c =='/') 164 len = i +1; 165 i++; 166} 167if(n ==0|| len < max) { 168 max = len; 169if(!max) 170break; 171} 172} 173return max; 174} 175 176/* 177 * Returns a copy of the longest leading path common among all 178 * pathspecs. 179 */ 180char*common_prefix(const struct pathspec *pathspec) 181{ 182unsigned long len =common_prefix_len(pathspec); 183 184return len ?xmemdupz(pathspec->items[0].match, len) : NULL; 185} 186 187intfill_directory(struct dir_struct *dir, 188struct index_state *istate, 189const struct pathspec *pathspec) 190{ 191const char*prefix; 192size_t prefix_len; 193 194/* 195 * Calculate common prefix for the pathspec, and 196 * use that to optimize the directory walk 197 */ 198 prefix_len =common_prefix_len(pathspec); 199 prefix = prefix_len ? pathspec->items[0].match :""; 200 201/* Read the directory and prune it */ 202read_directory(dir, istate, prefix, prefix_len, pathspec); 203 204return prefix_len; 205} 206 207intwithin_depth(const char*name,int namelen, 208int depth,int max_depth) 209{ 210const char*cp = name, *cpe = name + namelen; 211 212while(cp < cpe) { 213if(*cp++ !='/') 214continue; 215 depth++; 216if(depth > max_depth) 217return0; 218} 219return1; 220} 221 222#define DO_MATCH_EXCLUDE (1<<0) 223#define DO_MATCH_DIRECTORY (1<<1) 224#define DO_MATCH_SUBMODULE (1<<2) 225 226static intmatch_attrs(const char*name,int namelen, 227const struct pathspec_item *item) 228{ 229int i; 230 231git_check_attr(name, item->attr_check); 232for(i =0; i < item->attr_match_nr; i++) { 233const char*value; 234int matched; 235enum attr_match_mode match_mode; 236 237 value = item->attr_check->items[i].value; 238 match_mode = item->attr_match[i].match_mode; 239 240if(ATTR_TRUE(value)) 241 matched = (match_mode == MATCH_SET); 242else if(ATTR_FALSE(value)) 243 matched = (match_mode == MATCH_UNSET); 244else if(ATTR_UNSET(value)) 245 matched = (match_mode == MATCH_UNSPECIFIED); 246else 247 matched = (match_mode == MATCH_VALUE && 248!strcmp(item->attr_match[i].value, value)); 249if(!matched) 250return0; 251} 252 253return1; 254} 255 256/* 257 * Does 'match' match the given name? 258 * A match is found if 259 * 260 * (1) the 'match' string is leading directory of 'name', or 261 * (2) the 'match' string is a wildcard and matches 'name', or 262 * (3) the 'match' string is exactly the same as 'name'. 263 * 264 * and the return value tells which case it was. 265 * 266 * It returns 0 when there is no match. 267 */ 268static intmatch_pathspec_item(const struct pathspec_item *item,int prefix, 269const char*name,int namelen,unsigned flags) 270{ 271/* name/namelen has prefix cut off by caller */ 272const char*match = item->match + prefix; 273int matchlen = item->len - prefix; 274 275/* 276 * The normal call pattern is: 277 * 1. prefix = common_prefix_len(ps); 278 * 2. prune something, or fill_directory 279 * 3. match_pathspec() 280 * 281 * 'prefix' at #1 may be shorter than the command's prefix and 282 * it's ok for #2 to match extra files. Those extras will be 283 * trimmed at #3. 284 * 285 * Suppose the pathspec is 'foo' and '../bar' running from 286 * subdir 'xyz'. The common prefix at #1 will be empty, thanks 287 * to "../". We may have xyz/foo _and_ XYZ/foo after #2. The 288 * user does not want XYZ/foo, only the "foo" part should be 289 * case-insensitive. We need to filter out XYZ/foo here. In 290 * other words, we do not trust the caller on comparing the 291 * prefix part when :(icase) is involved. We do exact 292 * comparison ourselves. 293 * 294 * Normally the caller (common_prefix_len() in fact) does 295 * _exact_ matching on name[-prefix+1..-1] and we do not need 296 * to check that part. Be defensive and check it anyway, in 297 * case common_prefix_len is changed, or a new caller is 298 * introduced that does not use common_prefix_len. 299 * 300 * If the penalty turns out too high when prefix is really 301 * long, maybe change it to 302 * strncmp(match, name, item->prefix - prefix) 303 */ 304if(item->prefix && (item->magic & PATHSPEC_ICASE) && 305strncmp(item->match, name - prefix, item->prefix)) 306return0; 307 308if(item->attr_match_nr && !match_attrs(name, namelen, item)) 309return0; 310 311/* If the match was just the prefix, we matched */ 312if(!*match) 313return MATCHED_RECURSIVELY; 314 315if(matchlen <= namelen && !ps_strncmp(item, match, name, matchlen)) { 316if(matchlen == namelen) 317return MATCHED_EXACTLY; 318 319if(match[matchlen-1] =='/'|| name[matchlen] =='/') 320return MATCHED_RECURSIVELY; 321}else if((flags & DO_MATCH_DIRECTORY) && 322 match[matchlen -1] =='/'&& 323 namelen == matchlen -1&& 324!ps_strncmp(item, match, name, namelen)) 325return MATCHED_EXACTLY; 326 327if(item->nowildcard_len < item->len && 328!git_fnmatch(item, match, name, 329 item->nowildcard_len - prefix)) 330return MATCHED_FNMATCH; 331 332/* Perform checks to see if "name" is a super set of the pathspec */ 333if(flags & DO_MATCH_SUBMODULE) { 334/* name is a literal prefix of the pathspec */ 335if((namelen < matchlen) && 336(match[namelen] =='/') && 337!ps_strncmp(item, match, name, namelen)) 338return MATCHED_RECURSIVELY; 339 340/* name" doesn't match up to the first wild character */ 341if(item->nowildcard_len < item->len && 342ps_strncmp(item, match, name, 343 item->nowildcard_len - prefix)) 344return0; 345 346/* 347 * Here is where we would perform a wildmatch to check if 348 * "name" can be matched as a directory (or a prefix) against 349 * the pathspec. Since wildmatch doesn't have this capability 350 * at the present we have to punt and say that it is a match, 351 * potentially returning a false positive 352 * The submodules themselves will be able to perform more 353 * accurate matching to determine if the pathspec matches. 354 */ 355return MATCHED_RECURSIVELY; 356} 357 358return0; 359} 360 361/* 362 * Given a name and a list of pathspecs, returns the nature of the 363 * closest (i.e. most specific) match of the name to any of the 364 * pathspecs. 365 * 366 * The caller typically calls this multiple times with the same 367 * pathspec and seen[] array but with different name/namelen 368 * (e.g. entries from the index) and is interested in seeing if and 369 * how each pathspec matches all the names it calls this function 370 * with. A mark is left in the seen[] array for each pathspec element 371 * indicating the closest type of match that element achieved, so if 372 * seen[n] remains zero after multiple invocations, that means the nth 373 * pathspec did not match any names, which could indicate that the 374 * user mistyped the nth pathspec. 375 */ 376static intdo_match_pathspec(const struct pathspec *ps, 377const char*name,int namelen, 378int prefix,char*seen, 379unsigned flags) 380{ 381int i, retval =0, exclude = flags & DO_MATCH_EXCLUDE; 382 383GUARD_PATHSPEC(ps, 384 PATHSPEC_FROMTOP | 385 PATHSPEC_MAXDEPTH | 386 PATHSPEC_LITERAL | 387 PATHSPEC_GLOB | 388 PATHSPEC_ICASE | 389 PATHSPEC_EXCLUDE | 390 PATHSPEC_ATTR); 391 392if(!ps->nr) { 393if(!ps->recursive || 394!(ps->magic & PATHSPEC_MAXDEPTH) || 395 ps->max_depth == -1) 396return MATCHED_RECURSIVELY; 397 398if(within_depth(name, namelen,0, ps->max_depth)) 399return MATCHED_EXACTLY; 400else 401return0; 402} 403 404 name += prefix; 405 namelen -= prefix; 406 407for(i = ps->nr -1; i >=0; i--) { 408int how; 409 410if((!exclude && ps->items[i].magic & PATHSPEC_EXCLUDE) || 411( exclude && !(ps->items[i].magic & PATHSPEC_EXCLUDE))) 412continue; 413 414if(seen && seen[i] == MATCHED_EXACTLY) 415continue; 416/* 417 * Make exclude patterns optional and never report 418 * "pathspec ':(exclude)foo' matches no files" 419 */ 420if(seen && ps->items[i].magic & PATHSPEC_EXCLUDE) 421 seen[i] = MATCHED_FNMATCH; 422 how =match_pathspec_item(ps->items+i, prefix, name, 423 namelen, flags); 424if(ps->recursive && 425(ps->magic & PATHSPEC_MAXDEPTH) && 426 ps->max_depth != -1&& 427 how && how != MATCHED_FNMATCH) { 428int len = ps->items[i].len; 429if(name[len] =='/') 430 len++; 431if(within_depth(name+len, namelen-len,0, ps->max_depth)) 432 how = MATCHED_EXACTLY; 433else 434 how =0; 435} 436if(how) { 437if(retval < how) 438 retval = how; 439if(seen && seen[i] < how) 440 seen[i] = how; 441} 442} 443return retval; 444} 445 446intmatch_pathspec(const struct pathspec *ps, 447const char*name,int namelen, 448int prefix,char*seen,int is_dir) 449{ 450int positive, negative; 451unsigned flags = is_dir ? DO_MATCH_DIRECTORY :0; 452 positive =do_match_pathspec(ps, name, namelen, 453 prefix, seen, flags); 454if(!(ps->magic & PATHSPEC_EXCLUDE) || !positive) 455return positive; 456 negative =do_match_pathspec(ps, name, namelen, 457 prefix, seen, 458 flags | DO_MATCH_EXCLUDE); 459return negative ?0: positive; 460} 461 462/** 463 * Check if a submodule is a superset of the pathspec 464 */ 465intsubmodule_path_match(const struct pathspec *ps, 466const char*submodule_name, 467char*seen) 468{ 469int matched =do_match_pathspec(ps, submodule_name, 470strlen(submodule_name), 4710, seen, 472 DO_MATCH_DIRECTORY | 473 DO_MATCH_SUBMODULE); 474return matched; 475} 476 477intreport_path_error(const char*ps_matched, 478const struct pathspec *pathspec, 479const char*prefix) 480{ 481/* 482 * Make sure all pathspec matched; otherwise it is an error. 483 */ 484int num, errors =0; 485for(num =0; num < pathspec->nr; num++) { 486int other, found_dup; 487 488if(ps_matched[num]) 489continue; 490/* 491 * The caller might have fed identical pathspec 492 * twice. Do not barf on such a mistake. 493 * FIXME: parse_pathspec should have eliminated 494 * duplicate pathspec. 495 */ 496for(found_dup = other =0; 497!found_dup && other < pathspec->nr; 498 other++) { 499if(other == num || !ps_matched[other]) 500continue; 501if(!strcmp(pathspec->items[other].original, 502 pathspec->items[num].original)) 503/* 504 * Ok, we have a match already. 505 */ 506 found_dup =1; 507} 508if(found_dup) 509continue; 510 511error("pathspec '%s' did not match any file(s) known to git.", 512 pathspec->items[num].original); 513 errors++; 514} 515return errors; 516} 517 518/* 519 * Return the length of the "simple" part of a path match limiter. 520 */ 521intsimple_length(const char*match) 522{ 523int len = -1; 524 525for(;;) { 526unsigned char c = *match++; 527 len++; 528if(c =='\0'||is_glob_special(c)) 529return len; 530} 531} 532 533intno_wildcard(const char*string) 534{ 535return string[simple_length(string)] =='\0'; 536} 537 538voidparse_exclude_pattern(const char**pattern, 539int*patternlen, 540unsigned*flags, 541int*nowildcardlen) 542{ 543const char*p = *pattern; 544size_t i, len; 545 546*flags =0; 547if(*p =='!') { 548*flags |= EXC_FLAG_NEGATIVE; 549 p++; 550} 551 len =strlen(p); 552if(len && p[len -1] =='/') { 553 len--; 554*flags |= EXC_FLAG_MUSTBEDIR; 555} 556for(i =0; i < len; i++) { 557if(p[i] =='/') 558break; 559} 560if(i == len) 561*flags |= EXC_FLAG_NODIR; 562*nowildcardlen =simple_length(p); 563/* 564 * we should have excluded the trailing slash from 'p' too, 565 * but that's one more allocation. Instead just make sure 566 * nowildcardlen does not exceed real patternlen 567 */ 568if(*nowildcardlen > len) 569*nowildcardlen = len; 570if(*p =='*'&&no_wildcard(p +1)) 571*flags |= EXC_FLAG_ENDSWITH; 572*pattern = p; 573*patternlen = len; 574} 575 576voidadd_exclude(const char*string,const char*base, 577int baselen,struct exclude_list *el,int srcpos) 578{ 579struct exclude *x; 580int patternlen; 581unsigned flags; 582int nowildcardlen; 583 584parse_exclude_pattern(&string, &patternlen, &flags, &nowildcardlen); 585if(flags & EXC_FLAG_MUSTBEDIR) { 586FLEXPTR_ALLOC_MEM(x, pattern, string, patternlen); 587}else{ 588 x =xmalloc(sizeof(*x)); 589 x->pattern = string; 590} 591 x->patternlen = patternlen; 592 x->nowildcardlen = nowildcardlen; 593 x->base = base; 594 x->baselen = baselen; 595 x->flags = flags; 596 x->srcpos = srcpos; 597ALLOC_GROW(el->excludes, el->nr +1, el->alloc); 598 el->excludes[el->nr++] = x; 599 x->el = el; 600} 601 602static void*read_skip_worktree_file_from_index(const struct index_state *istate, 603const char*path,size_t*size, 604struct sha1_stat *sha1_stat) 605{ 606int pos, len; 607unsigned long sz; 608enum object_type type; 609void*data; 610 611 len =strlen(path); 612 pos =index_name_pos(istate, path, len); 613if(pos <0) 614return NULL; 615if(!ce_skip_worktree(istate->cache[pos])) 616return NULL; 617 data =read_sha1_file(istate->cache[pos]->oid.hash, &type, &sz); 618if(!data || type != OBJ_BLOB) { 619free(data); 620return NULL; 621} 622*size =xsize_t(sz); 623if(sha1_stat) { 624memset(&sha1_stat->stat,0,sizeof(sha1_stat->stat)); 625hashcpy(sha1_stat->sha1, istate->cache[pos]->oid.hash); 626} 627return data; 628} 629 630/* 631 * Frees memory within el which was allocated for exclude patterns and 632 * the file buffer. Does not free el itself. 633 */ 634voidclear_exclude_list(struct exclude_list *el) 635{ 636int i; 637 638for(i =0; i < el->nr; i++) 639free(el->excludes[i]); 640free(el->excludes); 641free(el->filebuf); 642 643memset(el,0,sizeof(*el)); 644} 645 646static voidtrim_trailing_spaces(char*buf) 647{ 648char*p, *last_space = NULL; 649 650for(p = buf; *p; p++) 651switch(*p) { 652case' ': 653if(!last_space) 654 last_space = p; 655break; 656case'\\': 657 p++; 658if(!*p) 659return; 660/* fallthrough */ 661default: 662 last_space = NULL; 663} 664 665if(last_space) 666*last_space ='\0'; 667} 668 669/* 670 * Given a subdirectory name and "dir" of the current directory, 671 * search the subdir in "dir" and return it, or create a new one if it 672 * does not exist in "dir". 673 * 674 * If "name" has the trailing slash, it'll be excluded in the search. 675 */ 676static struct untracked_cache_dir *lookup_untracked(struct untracked_cache *uc, 677struct untracked_cache_dir *dir, 678const char*name,int len) 679{ 680int first, last; 681struct untracked_cache_dir *d; 682if(!dir) 683return NULL; 684if(len && name[len -1] =='/') 685 len--; 686 first =0; 687 last = dir->dirs_nr; 688while(last > first) { 689int cmp, next = (last + first) >>1; 690 d = dir->dirs[next]; 691 cmp =strncmp(name, d->name, len); 692if(!cmp &&strlen(d->name) > len) 693 cmp = -1; 694if(!cmp) 695return d; 696if(cmp <0) { 697 last = next; 698continue; 699} 700 first = next+1; 701} 702 703 uc->dir_created++; 704FLEX_ALLOC_MEM(d, name, name, len); 705 706ALLOC_GROW(dir->dirs, dir->dirs_nr +1, dir->dirs_alloc); 707memmove(dir->dirs + first +1, dir->dirs + first, 708(dir->dirs_nr - first) *sizeof(*dir->dirs)); 709 dir->dirs_nr++; 710 dir->dirs[first] = d; 711return d; 712} 713 714static voiddo_invalidate_gitignore(struct untracked_cache_dir *dir) 715{ 716int i; 717 dir->valid =0; 718 dir->untracked_nr =0; 719for(i =0; i < dir->dirs_nr; i++) 720do_invalidate_gitignore(dir->dirs[i]); 721} 722 723static voidinvalidate_gitignore(struct untracked_cache *uc, 724struct untracked_cache_dir *dir) 725{ 726 uc->gitignore_invalidated++; 727do_invalidate_gitignore(dir); 728} 729 730static voidinvalidate_directory(struct untracked_cache *uc, 731struct untracked_cache_dir *dir) 732{ 733int i; 734 uc->dir_invalidated++; 735 dir->valid =0; 736 dir->untracked_nr =0; 737for(i =0; i < dir->dirs_nr; i++) 738 dir->dirs[i]->recurse =0; 739} 740 741/* 742 * Given a file with name "fname", read it (either from disk, or from 743 * an index if 'istate' is non-null), parse it and store the 744 * exclude rules in "el". 745 * 746 * If "ss" is not NULL, compute SHA-1 of the exclude file and fill 747 * stat data from disk (only valid if add_excludes returns zero). If 748 * ss_valid is non-zero, "ss" must contain good value as input. 749 */ 750static intadd_excludes(const char*fname,const char*base,int baselen, 751struct exclude_list *el, 752struct index_state *istate, 753struct sha1_stat *sha1_stat) 754{ 755struct stat st; 756int fd, i, lineno =1; 757size_t size =0; 758char*buf, *entry; 759 760 fd =open(fname, O_RDONLY); 761if(fd <0||fstat(fd, &st) <0) { 762if(fd <0) 763warn_on_fopen_errors(fname); 764else 765close(fd); 766if(!istate || 767(buf =read_skip_worktree_file_from_index(istate, fname, &size, sha1_stat)) == NULL) 768return-1; 769if(size ==0) { 770free(buf); 771return0; 772} 773if(buf[size-1] !='\n') { 774 buf =xrealloc(buf,st_add(size,1)); 775 buf[size++] ='\n'; 776} 777}else{ 778 size =xsize_t(st.st_size); 779if(size ==0) { 780if(sha1_stat) { 781fill_stat_data(&sha1_stat->stat, &st); 782hashcpy(sha1_stat->sha1, EMPTY_BLOB_SHA1_BIN); 783 sha1_stat->valid =1; 784} 785close(fd); 786return0; 787} 788 buf =xmallocz(size); 789if(read_in_full(fd, buf, size) != size) { 790free(buf); 791close(fd); 792return-1; 793} 794 buf[size++] ='\n'; 795close(fd); 796if(sha1_stat) { 797int pos; 798if(sha1_stat->valid && 799!match_stat_data_racy(istate, &sha1_stat->stat, &st)) 800;/* no content change, ss->sha1 still good */ 801else if(istate && 802(pos =index_name_pos(istate, fname,strlen(fname))) >=0&& 803!ce_stage(istate->cache[pos]) && 804ce_uptodate(istate->cache[pos]) && 805!would_convert_to_git(fname)) 806hashcpy(sha1_stat->sha1, 807 istate->cache[pos]->oid.hash); 808else 809hash_sha1_file(buf, size,"blob", sha1_stat->sha1); 810fill_stat_data(&sha1_stat->stat, &st); 811 sha1_stat->valid =1; 812} 813} 814 815 el->filebuf = buf; 816 817if(skip_utf8_bom(&buf, size)) 818 size -= buf - el->filebuf; 819 820 entry = buf; 821 822for(i =0; i < size; i++) { 823if(buf[i] =='\n') { 824if(entry != buf + i && entry[0] !='#') { 825 buf[i - (i && buf[i-1] =='\r')] =0; 826trim_trailing_spaces(entry); 827add_exclude(entry, base, baselen, el, lineno); 828} 829 lineno++; 830 entry = buf + i +1; 831} 832} 833return0; 834} 835 836intadd_excludes_from_file_to_list(const char*fname,const char*base, 837int baselen,struct exclude_list *el, 838struct index_state *istate) 839{ 840returnadd_excludes(fname, base, baselen, el, istate, NULL); 841} 842 843struct exclude_list *add_exclude_list(struct dir_struct *dir, 844int group_type,const char*src) 845{ 846struct exclude_list *el; 847struct exclude_list_group *group; 848 849 group = &dir->exclude_list_group[group_type]; 850ALLOC_GROW(group->el, group->nr +1, group->alloc); 851 el = &group->el[group->nr++]; 852memset(el,0,sizeof(*el)); 853 el->src = src; 854return el; 855} 856 857/* 858 * Used to set up core.excludesfile and .git/info/exclude lists. 859 */ 860static voidadd_excludes_from_file_1(struct dir_struct *dir,const char*fname, 861struct sha1_stat *sha1_stat) 862{ 863struct exclude_list *el; 864/* 865 * catch setup_standard_excludes() that's called before 866 * dir->untracked is assigned. That function behaves 867 * differently when dir->untracked is non-NULL. 868 */ 869if(!dir->untracked) 870 dir->unmanaged_exclude_files++; 871 el =add_exclude_list(dir, EXC_FILE, fname); 872if(add_excludes(fname,"",0, el, NULL, sha1_stat) <0) 873die("cannot use%sas an exclude file", fname); 874} 875 876voidadd_excludes_from_file(struct dir_struct *dir,const char*fname) 877{ 878 dir->unmanaged_exclude_files++;/* see validate_untracked_cache() */ 879add_excludes_from_file_1(dir, fname, NULL); 880} 881 882intmatch_basename(const char*basename,int basenamelen, 883const char*pattern,int prefix,int patternlen, 884unsigned flags) 885{ 886if(prefix == patternlen) { 887if(patternlen == basenamelen && 888!fspathncmp(pattern, basename, basenamelen)) 889return1; 890}else if(flags & EXC_FLAG_ENDSWITH) { 891/* "*literal" matching against "fooliteral" */ 892if(patternlen -1<= basenamelen && 893!fspathncmp(pattern +1, 894 basename + basenamelen - (patternlen -1), 895 patternlen -1)) 896return1; 897}else{ 898if(fnmatch_icase_mem(pattern, patternlen, 899 basename, basenamelen, 9000) ==0) 901return1; 902} 903return0; 904} 905 906intmatch_pathname(const char*pathname,int pathlen, 907const char*base,int baselen, 908const char*pattern,int prefix,int patternlen, 909unsigned flags) 910{ 911const char*name; 912int namelen; 913 914/* 915 * match with FNM_PATHNAME; the pattern has base implicitly 916 * in front of it. 917 */ 918if(*pattern =='/') { 919 pattern++; 920 patternlen--; 921 prefix--; 922} 923 924/* 925 * baselen does not count the trailing slash. base[] may or 926 * may not end with a trailing slash though. 927 */ 928if(pathlen < baselen +1|| 929(baselen && pathname[baselen] !='/') || 930fspathncmp(pathname, base, baselen)) 931return0; 932 933 namelen = baselen ? pathlen - baselen -1: pathlen; 934 name = pathname + pathlen - namelen; 935 936if(prefix) { 937/* 938 * if the non-wildcard part is longer than the 939 * remaining pathname, surely it cannot match. 940 */ 941if(prefix > namelen) 942return0; 943 944if(fspathncmp(pattern, name, prefix)) 945return0; 946 pattern += prefix; 947 patternlen -= prefix; 948 name += prefix; 949 namelen -= prefix; 950 951/* 952 * If the whole pattern did not have a wildcard, 953 * then our prefix match is all we need; we 954 * do not need to call fnmatch at all. 955 */ 956if(!patternlen && !namelen) 957return1; 958} 959 960returnfnmatch_icase_mem(pattern, patternlen, 961 name, namelen, 962 WM_PATHNAME) ==0; 963} 964 965/* 966 * Scan the given exclude list in reverse to see whether pathname 967 * should be ignored. The first match (i.e. the last on the list), if 968 * any, determines the fate. Returns the exclude_list element which 969 * matched, or NULL for undecided. 970 */ 971static struct exclude *last_exclude_matching_from_list(const char*pathname, 972int pathlen, 973const char*basename, 974int*dtype, 975struct exclude_list *el, 976struct index_state *istate) 977{ 978struct exclude *exc = NULL;/* undecided */ 979int i; 980 981if(!el->nr) 982return NULL;/* undefined */ 983 984for(i = el->nr -1;0<= i; i--) { 985struct exclude *x = el->excludes[i]; 986const char*exclude = x->pattern; 987int prefix = x->nowildcardlen; 988 989if(x->flags & EXC_FLAG_MUSTBEDIR) { 990if(*dtype == DT_UNKNOWN) 991*dtype =get_dtype(NULL, istate, pathname, pathlen); 992if(*dtype != DT_DIR) 993continue; 994} 995 996if(x->flags & EXC_FLAG_NODIR) { 997if(match_basename(basename, 998 pathlen - (basename - pathname), 999 exclude, prefix, x->patternlen,1000 x->flags)) {1001 exc = x;1002break;1003}1004continue;1005}10061007assert(x->baselen ==0|| x->base[x->baselen -1] =='/');1008if(match_pathname(pathname, pathlen,1009 x->base, x->baselen ? x->baselen -1:0,1010 exclude, prefix, x->patternlen, x->flags)) {1011 exc = x;1012break;1013}1014}1015return exc;1016}10171018/*1019 * Scan the list and let the last match determine the fate.1020 * Return 1 for exclude, 0 for include and -1 for undecided.1021 */1022intis_excluded_from_list(const char*pathname,1023int pathlen,const char*basename,int*dtype,1024struct exclude_list *el,struct index_state *istate)1025{1026struct exclude *exclude;1027 exclude =last_exclude_matching_from_list(pathname, pathlen, basename,1028 dtype, el, istate);1029if(exclude)1030return exclude->flags & EXC_FLAG_NEGATIVE ?0:1;1031return-1;/* undecided */1032}10331034static struct exclude *last_exclude_matching_from_lists(struct dir_struct *dir,1035struct index_state *istate,1036const char*pathname,int pathlen,const char*basename,1037int*dtype_p)1038{1039int i, j;1040struct exclude_list_group *group;1041struct exclude *exclude;1042for(i = EXC_CMDL; i <= EXC_FILE; i++) {1043 group = &dir->exclude_list_group[i];1044for(j = group->nr -1; j >=0; j--) {1045 exclude =last_exclude_matching_from_list(1046 pathname, pathlen, basename, dtype_p,1047&group->el[j], istate);1048if(exclude)1049return exclude;1050}1051}1052return NULL;1053}10541055/*1056 * Loads the per-directory exclude list for the substring of base1057 * which has a char length of baselen.1058 */1059static voidprep_exclude(struct dir_struct *dir,1060struct index_state *istate,1061const char*base,int baselen)1062{1063struct exclude_list_group *group;1064struct exclude_list *el;1065struct exclude_stack *stk = NULL;1066struct untracked_cache_dir *untracked;1067int current;10681069 group = &dir->exclude_list_group[EXC_DIRS];10701071/*1072 * Pop the exclude lists from the EXCL_DIRS exclude_list_group1073 * which originate from directories not in the prefix of the1074 * path being checked.1075 */1076while((stk = dir->exclude_stack) != NULL) {1077if(stk->baselen <= baselen &&1078!strncmp(dir->basebuf.buf, base, stk->baselen))1079break;1080 el = &group->el[dir->exclude_stack->exclude_ix];1081 dir->exclude_stack = stk->prev;1082 dir->exclude = NULL;1083free((char*)el->src);/* see strbuf_detach() below */1084clear_exclude_list(el);1085free(stk);1086 group->nr--;1087}10881089/* Skip traversing into sub directories if the parent is excluded */1090if(dir->exclude)1091return;10921093/*1094 * Lazy initialization. All call sites currently just1095 * memset(dir, 0, sizeof(*dir)) before use. Changing all of1096 * them seems lots of work for little benefit.1097 */1098if(!dir->basebuf.buf)1099strbuf_init(&dir->basebuf, PATH_MAX);11001101/* Read from the parent directories and push them down. */1102 current = stk ? stk->baselen : -1;1103strbuf_setlen(&dir->basebuf, current <0?0: current);1104if(dir->untracked)1105 untracked = stk ? stk->ucd : dir->untracked->root;1106else1107 untracked = NULL;11081109while(current < baselen) {1110const char*cp;1111struct sha1_stat sha1_stat;11121113 stk =xcalloc(1,sizeof(*stk));1114if(current <0) {1115 cp = base;1116 current =0;1117}else{1118 cp =strchr(base + current +1,'/');1119if(!cp)1120die("oops in prep_exclude");1121 cp++;1122 untracked =1123lookup_untracked(dir->untracked, untracked,1124 base + current,1125 cp - base - current);1126}1127 stk->prev = dir->exclude_stack;1128 stk->baselen = cp - base;1129 stk->exclude_ix = group->nr;1130 stk->ucd = untracked;1131 el =add_exclude_list(dir, EXC_DIRS, NULL);1132strbuf_add(&dir->basebuf, base + current, stk->baselen - current);1133assert(stk->baselen == dir->basebuf.len);11341135/* Abort if the directory is excluded */1136if(stk->baselen) {1137int dt = DT_DIR;1138 dir->basebuf.buf[stk->baselen -1] =0;1139 dir->exclude =last_exclude_matching_from_lists(dir,1140 istate,1141 dir->basebuf.buf, stk->baselen -1,1142 dir->basebuf.buf + current, &dt);1143 dir->basebuf.buf[stk->baselen -1] ='/';1144if(dir->exclude &&1145 dir->exclude->flags & EXC_FLAG_NEGATIVE)1146 dir->exclude = NULL;1147if(dir->exclude) {1148 dir->exclude_stack = stk;1149return;1150}1151}11521153/* Try to read per-directory file */1154hashclr(sha1_stat.sha1);1155 sha1_stat.valid =0;1156if(dir->exclude_per_dir &&1157/*1158 * If we know that no files have been added in1159 * this directory (i.e. valid_cached_dir() has1160 * been executed and set untracked->valid) ..1161 */1162(!untracked || !untracked->valid ||1163/*1164 * .. and .gitignore does not exist before1165 * (i.e. null exclude_sha1). Then we can skip1166 * loading .gitignore, which would result in1167 * ENOENT anyway.1168 */1169!is_null_sha1(untracked->exclude_sha1))) {1170/*1171 * dir->basebuf gets reused by the traversal, but we1172 * need fname to remain unchanged to ensure the src1173 * member of each struct exclude correctly1174 * back-references its source file. Other invocations1175 * of add_exclude_list provide stable strings, so we1176 * strbuf_detach() and free() here in the caller.1177 */1178struct strbuf sb = STRBUF_INIT;1179strbuf_addbuf(&sb, &dir->basebuf);1180strbuf_addstr(&sb, dir->exclude_per_dir);1181 el->src =strbuf_detach(&sb, NULL);1182add_excludes(el->src, el->src, stk->baselen, el, istate,1183 untracked ? &sha1_stat : NULL);1184}1185/*1186 * NEEDSWORK: when untracked cache is enabled, prep_exclude()1187 * will first be called in valid_cached_dir() then maybe many1188 * times more in last_exclude_matching(). When the cache is1189 * used, last_exclude_matching() will not be called and1190 * reading .gitignore content will be a waste.1191 *1192 * So when it's called by valid_cached_dir() and we can get1193 * .gitignore SHA-1 from the index (i.e. .gitignore is not1194 * modified on work tree), we could delay reading the1195 * .gitignore content until we absolutely need it in1196 * last_exclude_matching(). Be careful about ignore rule1197 * order, though, if you do that.1198 */1199if(untracked &&1200hashcmp(sha1_stat.sha1, untracked->exclude_sha1)) {1201invalidate_gitignore(dir->untracked, untracked);1202hashcpy(untracked->exclude_sha1, sha1_stat.sha1);1203}1204 dir->exclude_stack = stk;1205 current = stk->baselen;1206}1207strbuf_setlen(&dir->basebuf, baselen);1208}12091210/*1211 * Loads the exclude lists for the directory containing pathname, then1212 * scans all exclude lists to determine whether pathname is excluded.1213 * Returns the exclude_list element which matched, or NULL for1214 * undecided.1215 */1216struct exclude *last_exclude_matching(struct dir_struct *dir,1217struct index_state *istate,1218const char*pathname,1219int*dtype_p)1220{1221int pathlen =strlen(pathname);1222const char*basename =strrchr(pathname,'/');1223 basename = (basename) ? basename+1: pathname;12241225prep_exclude(dir, istate, pathname, basename-pathname);12261227if(dir->exclude)1228return dir->exclude;12291230returnlast_exclude_matching_from_lists(dir, istate, pathname, pathlen,1231 basename, dtype_p);1232}12331234/*1235 * Loads the exclude lists for the directory containing pathname, then1236 * scans all exclude lists to determine whether pathname is excluded.1237 * Returns 1 if true, otherwise 0.1238 */1239intis_excluded(struct dir_struct *dir,struct index_state *istate,1240const char*pathname,int*dtype_p)1241{1242struct exclude *exclude =1243last_exclude_matching(dir, istate, pathname, dtype_p);1244if(exclude)1245return exclude->flags & EXC_FLAG_NEGATIVE ?0:1;1246return0;1247}12481249static struct dir_entry *dir_entry_new(const char*pathname,int len)1250{1251struct dir_entry *ent;12521253FLEX_ALLOC_MEM(ent, name, pathname, len);1254 ent->len = len;1255return ent;1256}12571258static struct dir_entry *dir_add_name(struct dir_struct *dir,1259struct index_state *istate,1260const char*pathname,int len)1261{1262if(index_file_exists(istate, pathname, len, ignore_case))1263return NULL;12641265ALLOC_GROW(dir->entries, dir->nr+1, dir->alloc);1266return dir->entries[dir->nr++] =dir_entry_new(pathname, len);1267}12681269struct dir_entry *dir_add_ignored(struct dir_struct *dir,1270struct index_state *istate,1271const char*pathname,int len)1272{1273if(!index_name_is_other(istate, pathname, len))1274return NULL;12751276ALLOC_GROW(dir->ignored, dir->ignored_nr+1, dir->ignored_alloc);1277return dir->ignored[dir->ignored_nr++] =dir_entry_new(pathname, len);1278}12791280enum exist_status {1281 index_nonexistent =0,1282 index_directory,1283 index_gitdir1284};12851286/*1287 * Do not use the alphabetically sorted index to look up1288 * the directory name; instead, use the case insensitive1289 * directory hash.1290 */1291static enum exist_status directory_exists_in_index_icase(struct index_state *istate,1292const char*dirname,int len)1293{1294struct cache_entry *ce;12951296if(index_dir_exists(istate, dirname, len))1297return index_directory;12981299 ce =index_file_exists(istate, dirname, len, ignore_case);1300if(ce &&S_ISGITLINK(ce->ce_mode))1301return index_gitdir;13021303return index_nonexistent;1304}13051306/*1307 * The index sorts alphabetically by entry name, which1308 * means that a gitlink sorts as '\0' at the end, while1309 * a directory (which is defined not as an entry, but as1310 * the files it contains) will sort with the '/' at the1311 * end.1312 */1313static enum exist_status directory_exists_in_index(struct index_state *istate,1314const char*dirname,int len)1315{1316int pos;13171318if(ignore_case)1319returndirectory_exists_in_index_icase(istate, dirname, len);13201321 pos =index_name_pos(istate, dirname, len);1322if(pos <0)1323 pos = -pos-1;1324while(pos < istate->cache_nr) {1325const struct cache_entry *ce = istate->cache[pos++];1326unsigned char endchar;13271328if(strncmp(ce->name, dirname, len))1329break;1330 endchar = ce->name[len];1331if(endchar >'/')1332break;1333if(endchar =='/')1334return index_directory;1335if(!endchar &&S_ISGITLINK(ce->ce_mode))1336return index_gitdir;1337}1338return index_nonexistent;1339}13401341/*1342 * When we find a directory when traversing the filesystem, we1343 * have three distinct cases:1344 *1345 * - ignore it1346 * - see it as a directory1347 * - recurse into it1348 *1349 * and which one we choose depends on a combination of existing1350 * git index contents and the flags passed into the directory1351 * traversal routine.1352 *1353 * Case 1: If we *already* have entries in the index under that1354 * directory name, we always recurse into the directory to see1355 * all the files.1356 *1357 * Case 2: If we *already* have that directory name as a gitlink,1358 * we always continue to see it as a gitlink, regardless of whether1359 * there is an actual git directory there or not (it might not1360 * be checked out as a subproject!)1361 *1362 * Case 3: if we didn't have it in the index previously, we1363 * have a few sub-cases:1364 *1365 * (a) if "show_other_directories" is true, we show it as1366 * just a directory, unless "hide_empty_directories" is1367 * also true, in which case we need to check if it contains any1368 * untracked and / or ignored files.1369 * (b) if it looks like a git directory, and we don't have1370 * 'no_gitlinks' set we treat it as a gitlink, and show it1371 * as a directory.1372 * (c) otherwise, we recurse into it.1373 */1374static enum path_treatment treat_directory(struct dir_struct *dir,1375struct index_state *istate,1376struct untracked_cache_dir *untracked,1377const char*dirname,int len,int baselen,int exclude,1378const struct pathspec *pathspec)1379{1380/* The "len-1" is to strip the final '/' */1381switch(directory_exists_in_index(istate, dirname, len-1)) {1382case index_directory:1383return path_recurse;13841385case index_gitdir:1386return path_none;13871388case index_nonexistent:1389if(dir->flags & DIR_SHOW_OTHER_DIRECTORIES)1390break;1391if(!(dir->flags & DIR_NO_GITLINKS)) {1392unsigned char sha1[20];1393if(resolve_gitlink_ref(dirname,"HEAD", sha1) ==0)1394return path_untracked;1395}1396return path_recurse;1397}13981399/* This is the "show_other_directories" case */14001401if(!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))1402return exclude ? path_excluded : path_untracked;14031404 untracked =lookup_untracked(dir->untracked, untracked,1405 dirname + baselen, len - baselen);1406returnread_directory_recursive(dir, istate, dirname, len,1407 untracked,1, pathspec);1408}14091410/*1411 * This is an inexact early pruning of any recursive directory1412 * reading - if the path cannot possibly be in the pathspec,1413 * return true, and we'll skip it early.1414 */1415static intsimplify_away(const char*path,int pathlen,1416const struct pathspec *pathspec)1417{1418int i;14191420if(!pathspec || !pathspec->nr)1421return0;14221423GUARD_PATHSPEC(pathspec,1424 PATHSPEC_FROMTOP |1425 PATHSPEC_MAXDEPTH |1426 PATHSPEC_LITERAL |1427 PATHSPEC_GLOB |1428 PATHSPEC_ICASE |1429 PATHSPEC_EXCLUDE |1430 PATHSPEC_ATTR);14311432for(i =0; i < pathspec->nr; i++) {1433const struct pathspec_item *item = &pathspec->items[i];1434int len = item->nowildcard_len;14351436if(len > pathlen)1437 len = pathlen;1438if(!ps_strncmp(item, item->match, path, len))1439return0;1440}14411442return1;1443}14441445/*1446 * This function tells us whether an excluded path matches a1447 * list of "interesting" pathspecs. That is, whether a path matched1448 * by any of the pathspecs could possibly be ignored by excluding1449 * the specified path. This can happen if:1450 *1451 * 1. the path is mentioned explicitly in the pathspec1452 *1453 * 2. the path is a directory prefix of some element in the1454 * pathspec1455 */1456static intexclude_matches_pathspec(const char*path,int pathlen,1457const struct pathspec *pathspec)1458{1459int i;14601461if(!pathspec || !pathspec->nr)1462return0;14631464GUARD_PATHSPEC(pathspec,1465 PATHSPEC_FROMTOP |1466 PATHSPEC_MAXDEPTH |1467 PATHSPEC_LITERAL |1468 PATHSPEC_GLOB |1469 PATHSPEC_ICASE |1470 PATHSPEC_EXCLUDE);14711472for(i =0; i < pathspec->nr; i++) {1473const struct pathspec_item *item = &pathspec->items[i];1474int len = item->nowildcard_len;14751476if(len == pathlen &&1477!ps_strncmp(item, item->match, path, pathlen))1478return1;1479if(len > pathlen &&1480 item->match[pathlen] =='/'&&1481!ps_strncmp(item, item->match, path, pathlen))1482return1;1483}1484return0;1485}14861487static intget_index_dtype(struct index_state *istate,1488const char*path,int len)1489{1490int pos;1491const struct cache_entry *ce;14921493 ce =index_file_exists(istate, path, len,0);1494if(ce) {1495if(!ce_uptodate(ce))1496return DT_UNKNOWN;1497if(S_ISGITLINK(ce->ce_mode))1498return DT_DIR;1499/*1500 * Nobody actually cares about the1501 * difference between DT_LNK and DT_REG1502 */1503return DT_REG;1504}15051506/* Try to look it up as a directory */1507 pos =index_name_pos(istate, path, len);1508if(pos >=0)1509return DT_UNKNOWN;1510 pos = -pos-1;1511while(pos < istate->cache_nr) {1512 ce = istate->cache[pos++];1513if(strncmp(ce->name, path, len))1514break;1515if(ce->name[len] >'/')1516break;1517if(ce->name[len] <'/')1518continue;1519if(!ce_uptodate(ce))1520break;/* continue? */1521return DT_DIR;1522}1523return DT_UNKNOWN;1524}15251526static intget_dtype(struct dirent *de,struct index_state *istate,1527const char*path,int len)1528{1529int dtype = de ?DTYPE(de) : DT_UNKNOWN;1530struct stat st;15311532if(dtype != DT_UNKNOWN)1533return dtype;1534 dtype =get_index_dtype(istate, path, len);1535if(dtype != DT_UNKNOWN)1536return dtype;1537if(lstat(path, &st))1538return dtype;1539if(S_ISREG(st.st_mode))1540return DT_REG;1541if(S_ISDIR(st.st_mode))1542return DT_DIR;1543if(S_ISLNK(st.st_mode))1544return DT_LNK;1545return dtype;1546}15471548static enum path_treatment treat_one_path(struct dir_struct *dir,1549struct untracked_cache_dir *untracked,1550struct index_state *istate,1551struct strbuf *path,1552int baselen,1553const struct pathspec *pathspec,1554int dtype,struct dirent *de)1555{1556int exclude;1557int has_path_in_index = !!index_file_exists(istate, path->buf, path->len, ignore_case);15581559if(dtype == DT_UNKNOWN)1560 dtype =get_dtype(de, istate, path->buf, path->len);15611562/* Always exclude indexed files */1563if(dtype != DT_DIR && has_path_in_index)1564return path_none;15651566/*1567 * When we are looking at a directory P in the working tree,1568 * there are three cases:1569 *1570 * (1) P exists in the index. Everything inside the directory P in1571 * the working tree needs to go when P is checked out from the1572 * index.1573 *1574 * (2) P does not exist in the index, but there is P/Q in the index.1575 * We know P will stay a directory when we check out the contents1576 * of the index, but we do not know yet if there is a directory1577 * P/Q in the working tree to be killed, so we need to recurse.1578 *1579 * (3) P does not exist in the index, and there is no P/Q in the index1580 * to require P to be a directory, either. Only in this case, we1581 * know that everything inside P will not be killed without1582 * recursing.1583 */1584if((dir->flags & DIR_COLLECT_KILLED_ONLY) &&1585(dtype == DT_DIR) &&1586!has_path_in_index &&1587(directory_exists_in_index(istate, path->buf, path->len) == index_nonexistent))1588return path_none;15891590 exclude =is_excluded(dir, istate, path->buf, &dtype);15911592/*1593 * Excluded? If we don't explicitly want to show1594 * ignored files, ignore it1595 */1596if(exclude && !(dir->flags & (DIR_SHOW_IGNORED|DIR_SHOW_IGNORED_TOO)))1597return path_excluded;15981599switch(dtype) {1600default:1601return path_none;1602case DT_DIR:1603strbuf_addch(path,'/');1604returntreat_directory(dir, istate, untracked, path->buf, path->len,1605 baselen, exclude, pathspec);1606case DT_REG:1607case DT_LNK:1608return exclude ? path_excluded : path_untracked;1609}1610}16111612static enum path_treatment treat_path_fast(struct dir_struct *dir,1613struct untracked_cache_dir *untracked,1614struct cached_dir *cdir,1615struct index_state *istate,1616struct strbuf *path,1617int baselen,1618const struct pathspec *pathspec)1619{1620strbuf_setlen(path, baselen);1621if(!cdir->ucd) {1622strbuf_addstr(path, cdir->file);1623return path_untracked;1624}1625strbuf_addstr(path, cdir->ucd->name);1626/* treat_one_path() does this before it calls treat_directory() */1627strbuf_complete(path,'/');1628if(cdir->ucd->check_only)1629/*1630 * check_only is set as a result of treat_directory() getting1631 * to its bottom. Verify again the same set of directories1632 * with check_only set.1633 */1634returnread_directory_recursive(dir, istate, path->buf, path->len,1635 cdir->ucd,1, pathspec);1636/*1637 * We get path_recurse in the first run when1638 * directory_exists_in_index() returns index_nonexistent. We1639 * are sure that new changes in the index does not impact the1640 * outcome. Return now.1641 */1642return path_recurse;1643}16441645static enum path_treatment treat_path(struct dir_struct *dir,1646struct untracked_cache_dir *untracked,1647struct cached_dir *cdir,1648struct index_state *istate,1649struct strbuf *path,1650int baselen,1651const struct pathspec *pathspec)1652{1653int dtype;1654struct dirent *de = cdir->de;16551656if(!de)1657returntreat_path_fast(dir, untracked, cdir, istate, path,1658 baselen, pathspec);1659if(is_dot_or_dotdot(de->d_name) || !strcmp(de->d_name,".git"))1660return path_none;1661strbuf_setlen(path, baselen);1662strbuf_addstr(path, de->d_name);1663if(simplify_away(path->buf, path->len, pathspec))1664return path_none;16651666 dtype =DTYPE(de);1667returntreat_one_path(dir, untracked, istate, path, baselen, pathspec, dtype, de);1668}16691670static voidadd_untracked(struct untracked_cache_dir *dir,const char*name)1671{1672if(!dir)1673return;1674ALLOC_GROW(dir->untracked, dir->untracked_nr +1,1675 dir->untracked_alloc);1676 dir->untracked[dir->untracked_nr++] =xstrdup(name);1677}16781679static intvalid_cached_dir(struct dir_struct *dir,1680struct untracked_cache_dir *untracked,1681struct index_state *istate,1682struct strbuf *path,1683int check_only)1684{1685struct stat st;16861687if(!untracked)1688return0;16891690if(stat(path->len ? path->buf :".", &st)) {1691invalidate_directory(dir->untracked, untracked);1692memset(&untracked->stat_data,0,sizeof(untracked->stat_data));1693return0;1694}1695if(!untracked->valid ||1696match_stat_data_racy(istate, &untracked->stat_data, &st)) {1697if(untracked->valid)1698invalidate_directory(dir->untracked, untracked);1699fill_stat_data(&untracked->stat_data, &st);1700return0;1701}17021703if(untracked->check_only != !!check_only) {1704invalidate_directory(dir->untracked, untracked);1705return0;1706}17071708/*1709 * prep_exclude will be called eventually on this directory,1710 * but it's called much later in last_exclude_matching(). We1711 * need it now to determine the validity of the cache for this1712 * path. The next calls will be nearly no-op, the way1713 * prep_exclude() is designed.1714 */1715if(path->len && path->buf[path->len -1] !='/') {1716strbuf_addch(path,'/');1717prep_exclude(dir, istate, path->buf, path->len);1718strbuf_setlen(path, path->len -1);1719}else1720prep_exclude(dir, istate, path->buf, path->len);17211722/* hopefully prep_exclude() haven't invalidated this entry... */1723return untracked->valid;1724}17251726static intopen_cached_dir(struct cached_dir *cdir,1727struct dir_struct *dir,1728struct untracked_cache_dir *untracked,1729struct index_state *istate,1730struct strbuf *path,1731int check_only)1732{1733memset(cdir,0,sizeof(*cdir));1734 cdir->untracked = untracked;1735if(valid_cached_dir(dir, untracked, istate, path, check_only))1736return0;1737 cdir->fdir =opendir(path->len ? path->buf :".");1738if(dir->untracked)1739 dir->untracked->dir_opened++;1740if(!cdir->fdir)1741return-1;1742return0;1743}17441745static intread_cached_dir(struct cached_dir *cdir)1746{1747if(cdir->fdir) {1748 cdir->de =readdir(cdir->fdir);1749if(!cdir->de)1750return-1;1751return0;1752}1753while(cdir->nr_dirs < cdir->untracked->dirs_nr) {1754struct untracked_cache_dir *d = cdir->untracked->dirs[cdir->nr_dirs];1755if(!d->recurse) {1756 cdir->nr_dirs++;1757continue;1758}1759 cdir->ucd = d;1760 cdir->nr_dirs++;1761return0;1762}1763 cdir->ucd = NULL;1764if(cdir->nr_files < cdir->untracked->untracked_nr) {1765struct untracked_cache_dir *d = cdir->untracked;1766 cdir->file = d->untracked[cdir->nr_files++];1767return0;1768}1769return-1;1770}17711772static voidclose_cached_dir(struct cached_dir *cdir)1773{1774if(cdir->fdir)1775closedir(cdir->fdir);1776/*1777 * We have gone through this directory and found no untracked1778 * entries. Mark it valid.1779 */1780if(cdir->untracked) {1781 cdir->untracked->valid =1;1782 cdir->untracked->recurse =1;1783}1784}17851786/*1787 * Read a directory tree. We currently ignore anything but1788 * directories, regular files and symlinks. That's because git1789 * doesn't handle them at all yet. Maybe that will change some1790 * day.1791 *1792 * Also, we ignore the name ".git" (even if it is not a directory).1793 * That likely will not change.1794 *1795 * Returns the most significant path_treatment value encountered in the scan.1796 */1797static enum path_treatment read_directory_recursive(struct dir_struct *dir,1798struct index_state *istate,const char*base,int baselen,1799struct untracked_cache_dir *untracked,int check_only,1800const struct pathspec *pathspec)1801{1802struct cached_dir cdir;1803enum path_treatment state, subdir_state, dir_state = path_none;1804struct strbuf path = STRBUF_INIT;18051806strbuf_add(&path, base, baselen);18071808if(open_cached_dir(&cdir, dir, untracked, istate, &path, check_only))1809goto out;18101811if(untracked)1812 untracked->check_only = !!check_only;18131814while(!read_cached_dir(&cdir)) {1815/* check how the file or directory should be treated */1816 state =treat_path(dir, untracked, &cdir, istate, &path,1817 baselen, pathspec);18181819if(state > dir_state)1820 dir_state = state;18211822/* recurse into subdir if instructed by treat_path */1823if((state == path_recurse) ||1824((state == path_untracked) &&1825(dir->flags & DIR_SHOW_IGNORED_TOO) &&1826(get_dtype(cdir.de, istate, path.buf, path.len) == DT_DIR))) {1827struct untracked_cache_dir *ud;1828 ud =lookup_untracked(dir->untracked, untracked,1829 path.buf + baselen,1830 path.len - baselen);1831 subdir_state =1832read_directory_recursive(dir, istate, path.buf,1833 path.len, ud,1834 check_only, pathspec);1835if(subdir_state > dir_state)1836 dir_state = subdir_state;1837}18381839if(check_only) {1840/* abort early if maximum state has been reached */1841if(dir_state == path_untracked) {1842if(cdir.fdir)1843add_untracked(untracked, path.buf + baselen);1844break;1845}1846/* skip the dir_add_* part */1847continue;1848}18491850/* add the path to the appropriate result list */1851switch(state) {1852case path_excluded:1853if(dir->flags & DIR_SHOW_IGNORED)1854dir_add_name(dir, istate, path.buf, path.len);1855else if((dir->flags & DIR_SHOW_IGNORED_TOO) ||1856((dir->flags & DIR_COLLECT_IGNORED) &&1857exclude_matches_pathspec(path.buf, path.len,1858 pathspec)))1859dir_add_ignored(dir, istate, path.buf, path.len);1860break;18611862case path_untracked:1863if(dir->flags & DIR_SHOW_IGNORED)1864break;1865dir_add_name(dir, istate, path.buf, path.len);1866if(cdir.fdir)1867add_untracked(untracked, path.buf + baselen);1868break;18691870default:1871break;1872}1873}1874close_cached_dir(&cdir);1875 out:1876strbuf_release(&path);18771878return dir_state;1879}18801881intcmp_dir_entry(const void*p1,const void*p2)1882{1883const struct dir_entry *e1 = *(const struct dir_entry **)p1;1884const struct dir_entry *e2 = *(const struct dir_entry **)p2;18851886returnname_compare(e1->name, e1->len, e2->name, e2->len);1887}18881889/* check if *out lexically strictly contains *in */1890intcheck_dir_entry_contains(const struct dir_entry *out,const struct dir_entry *in)1891{1892return(out->len < in->len) &&1893(out->name[out->len -1] =='/') &&1894!memcmp(out->name, in->name, out->len);1895}18961897static inttreat_leading_path(struct dir_struct *dir,1898struct index_state *istate,1899const char*path,int len,1900const struct pathspec *pathspec)1901{1902struct strbuf sb = STRBUF_INIT;1903int baselen, rc =0;1904const char*cp;1905int old_flags = dir->flags;19061907while(len && path[len -1] =='/')1908 len--;1909if(!len)1910return1;1911 baselen =0;1912 dir->flags &= ~DIR_SHOW_OTHER_DIRECTORIES;1913while(1) {1914 cp = path + baselen + !!baselen;1915 cp =memchr(cp,'/', path + len - cp);1916if(!cp)1917 baselen = len;1918else1919 baselen = cp - path;1920strbuf_setlen(&sb,0);1921strbuf_add(&sb, path, baselen);1922if(!is_directory(sb.buf))1923break;1924if(simplify_away(sb.buf, sb.len, pathspec))1925break;1926if(treat_one_path(dir, NULL, istate, &sb, baselen, pathspec,1927 DT_DIR, NULL) == path_none)1928break;/* do not recurse into it */1929if(len <= baselen) {1930 rc =1;1931break;/* finished checking */1932}1933}1934strbuf_release(&sb);1935 dir->flags = old_flags;1936return rc;1937}19381939static const char*get_ident_string(void)1940{1941static struct strbuf sb = STRBUF_INIT;1942struct utsname uts;19431944if(sb.len)1945return sb.buf;1946if(uname(&uts) <0)1947die_errno(_("failed to get kernel name and information"));1948strbuf_addf(&sb,"Location%s, system%s",get_git_work_tree(),1949 uts.sysname);1950return sb.buf;1951}19521953static intident_in_untracked(const struct untracked_cache *uc)1954{1955/*1956 * Previous git versions may have saved many NUL separated1957 * strings in the "ident" field, but it is insane to manage1958 * many locations, so just take care of the first one.1959 */19601961return!strcmp(uc->ident.buf,get_ident_string());1962}19631964static voidset_untracked_ident(struct untracked_cache *uc)1965{1966strbuf_reset(&uc->ident);1967strbuf_addstr(&uc->ident,get_ident_string());19681969/*1970 * This strbuf used to contain a list of NUL separated1971 * strings, so save NUL too for backward compatibility.1972 */1973strbuf_addch(&uc->ident,0);1974}19751976static voidnew_untracked_cache(struct index_state *istate)1977{1978struct untracked_cache *uc =xcalloc(1,sizeof(*uc));1979strbuf_init(&uc->ident,100);1980 uc->exclude_per_dir =".gitignore";1981/* should be the same flags used by git-status */1982 uc->dir_flags = DIR_SHOW_OTHER_DIRECTORIES | DIR_HIDE_EMPTY_DIRECTORIES;1983set_untracked_ident(uc);1984 istate->untracked = uc;1985 istate->cache_changed |= UNTRACKED_CHANGED;1986}19871988voidadd_untracked_cache(struct index_state *istate)1989{1990if(!istate->untracked) {1991new_untracked_cache(istate);1992}else{1993if(!ident_in_untracked(istate->untracked)) {1994free_untracked_cache(istate->untracked);1995new_untracked_cache(istate);1996}1997}1998}19992000voidremove_untracked_cache(struct index_state *istate)2001{2002if(istate->untracked) {2003free_untracked_cache(istate->untracked);2004 istate->untracked = NULL;2005 istate->cache_changed |= UNTRACKED_CHANGED;2006}2007}20082009static struct untracked_cache_dir *validate_untracked_cache(struct dir_struct *dir,2010int base_len,2011const struct pathspec *pathspec)2012{2013struct untracked_cache_dir *root;20142015if(!dir->untracked ||getenv("GIT_DISABLE_UNTRACKED_CACHE"))2016return NULL;20172018/*2019 * We only support $GIT_DIR/info/exclude and core.excludesfile2020 * as the global ignore rule files. Any other additions2021 * (e.g. from command line) invalidate the cache. This2022 * condition also catches running setup_standard_excludes()2023 * before setting dir->untracked!2024 */2025if(dir->unmanaged_exclude_files)2026return NULL;20272028/*2029 * Optimize for the main use case only: whole-tree git2030 * status. More work involved in treat_leading_path() if we2031 * use cache on just a subset of the worktree. pathspec2032 * support could make the matter even worse.2033 */2034if(base_len || (pathspec && pathspec->nr))2035return NULL;20362037/* Different set of flags may produce different results */2038if(dir->flags != dir->untracked->dir_flags ||2039/*2040 * See treat_directory(), case index_nonexistent. Without2041 * this flag, we may need to also cache .git file content2042 * for the resolve_gitlink_ref() call, which we don't.2043 */2044!(dir->flags & DIR_SHOW_OTHER_DIRECTORIES) ||2045/* We don't support collecting ignore files */2046(dir->flags & (DIR_SHOW_IGNORED | DIR_SHOW_IGNORED_TOO |2047 DIR_COLLECT_IGNORED)))2048return NULL;20492050/*2051 * If we use .gitignore in the cache and now you change it to2052 * .gitexclude, everything will go wrong.2053 */2054if(dir->exclude_per_dir != dir->untracked->exclude_per_dir &&2055strcmp(dir->exclude_per_dir, dir->untracked->exclude_per_dir))2056return NULL;20572058/*2059 * EXC_CMDL is not considered in the cache. If people set it,2060 * skip the cache.2061 */2062if(dir->exclude_list_group[EXC_CMDL].nr)2063return NULL;20642065if(!ident_in_untracked(dir->untracked)) {2066warning(_("Untracked cache is disabled on this system or location."));2067return NULL;2068}20692070if(!dir->untracked->root) {2071const int len =sizeof(*dir->untracked->root);2072 dir->untracked->root =xmalloc(len);2073memset(dir->untracked->root,0, len);2074}20752076/* Validate $GIT_DIR/info/exclude and core.excludesfile */2077 root = dir->untracked->root;2078if(hashcmp(dir->ss_info_exclude.sha1,2079 dir->untracked->ss_info_exclude.sha1)) {2080invalidate_gitignore(dir->untracked, root);2081 dir->untracked->ss_info_exclude = dir->ss_info_exclude;2082}2083if(hashcmp(dir->ss_excludes_file.sha1,2084 dir->untracked->ss_excludes_file.sha1)) {2085invalidate_gitignore(dir->untracked, root);2086 dir->untracked->ss_excludes_file = dir->ss_excludes_file;2087}20882089/* Make sure this directory is not dropped out at saving phase */2090 root->recurse =1;2091return root;2092}20932094intread_directory(struct dir_struct *dir,struct index_state *istate,2095const char*path,int len,const struct pathspec *pathspec)2096{2097struct untracked_cache_dir *untracked;20982099if(has_symlink_leading_path(path, len))2100return dir->nr;21012102 untracked =validate_untracked_cache(dir, len, pathspec);2103if(!untracked)2104/*2105 * make sure untracked cache code path is disabled,2106 * e.g. prep_exclude()2107 */2108 dir->untracked = NULL;2109if(!len ||treat_leading_path(dir, istate, path, len, pathspec))2110read_directory_recursive(dir, istate, path, len, untracked,0, pathspec);2111QSORT(dir->entries, dir->nr, cmp_dir_entry);2112QSORT(dir->ignored, dir->ignored_nr, cmp_dir_entry);21132114/*2115 * If DIR_SHOW_IGNORED_TOO is set, read_directory_recursive() will2116 * also pick up untracked contents of untracked dirs; by default2117 * we discard these, but given DIR_KEEP_UNTRACKED_CONTENTS we do not.2118 */2119if((dir->flags & DIR_SHOW_IGNORED_TOO) &&2120!(dir->flags & DIR_KEEP_UNTRACKED_CONTENTS)) {2121int i, j;21222123/* remove from dir->entries untracked contents of untracked dirs */2124for(i = j =0; j < dir->nr; j++) {2125if(i &&2126check_dir_entry_contains(dir->entries[i -1], dir->entries[j])) {2127free(dir->entries[j]);2128 dir->entries[j] = NULL;2129}else{2130 dir->entries[i++] = dir->entries[j];2131}2132}21332134 dir->nr = i;2135}21362137if(dir->untracked) {2138static struct trace_key trace_untracked_stats =TRACE_KEY_INIT(UNTRACKED_STATS);2139trace_printf_key(&trace_untracked_stats,2140"node creation:%u\n"2141"gitignore invalidation:%u\n"2142"directory invalidation:%u\n"2143"opendir:%u\n",2144 dir->untracked->dir_created,2145 dir->untracked->gitignore_invalidated,2146 dir->untracked->dir_invalidated,2147 dir->untracked->dir_opened);2148if(dir->untracked == istate->untracked &&2149(dir->untracked->dir_opened ||2150 dir->untracked->gitignore_invalidated ||2151 dir->untracked->dir_invalidated))2152 istate->cache_changed |= UNTRACKED_CHANGED;2153if(dir->untracked != istate->untracked) {2154free(dir->untracked);2155 dir->untracked = NULL;2156}2157}2158return dir->nr;2159}21602161intfile_exists(const char*f)2162{2163struct stat sb;2164returnlstat(f, &sb) ==0;2165}21662167static intcmp_icase(char a,char b)2168{2169if(a == b)2170return0;2171if(ignore_case)2172returntoupper(a) -toupper(b);2173return a - b;2174}21752176/*2177 * Given two normalized paths (a trailing slash is ok), if subdir is2178 * outside dir, return -1. Otherwise return the offset in subdir that2179 * can be used as relative path to dir.2180 */2181intdir_inside_of(const char*subdir,const char*dir)2182{2183int offset =0;21842185assert(dir && subdir && *dir && *subdir);21862187while(*dir && *subdir && !cmp_icase(*dir, *subdir)) {2188 dir++;2189 subdir++;2190 offset++;2191}21922193/* hel[p]/me vs hel[l]/yeah */2194if(*dir && *subdir)2195return-1;21962197if(!*subdir)2198return!*dir ? offset : -1;/* same dir */21992200/* foo/[b]ar vs foo/[] */2201if(is_dir_sep(dir[-1]))2202returnis_dir_sep(subdir[-1]) ? offset : -1;22032204/* foo[/]bar vs foo[] */2205returnis_dir_sep(*subdir) ? offset +1: -1;2206}22072208intis_inside_dir(const char*dir)2209{2210char*cwd;2211int rc;22122213if(!dir)2214return0;22152216 cwd =xgetcwd();2217 rc = (dir_inside_of(cwd, dir) >=0);2218free(cwd);2219return rc;2220}22212222intis_empty_dir(const char*path)2223{2224DIR*dir =opendir(path);2225struct dirent *e;2226int ret =1;22272228if(!dir)2229return0;22302231while((e =readdir(dir)) != NULL)2232if(!is_dot_or_dotdot(e->d_name)) {2233 ret =0;2234break;2235}22362237closedir(dir);2238return ret;2239}22402241static intremove_dir_recurse(struct strbuf *path,int flag,int*kept_up)2242{2243DIR*dir;2244struct dirent *e;2245int ret =0, original_len = path->len, len, kept_down =0;2246int only_empty = (flag & REMOVE_DIR_EMPTY_ONLY);2247int keep_toplevel = (flag & REMOVE_DIR_KEEP_TOPLEVEL);2248unsigned char submodule_head[20];22492250if((flag & REMOVE_DIR_KEEP_NESTED_GIT) &&2251!resolve_gitlink_ref(path->buf,"HEAD", submodule_head)) {2252/* Do not descend and nuke a nested git work tree. */2253if(kept_up)2254*kept_up =1;2255return0;2256}22572258 flag &= ~REMOVE_DIR_KEEP_TOPLEVEL;2259 dir =opendir(path->buf);2260if(!dir) {2261if(errno == ENOENT)2262return keep_toplevel ? -1:0;2263else if(errno == EACCES && !keep_toplevel)2264/*2265 * An empty dir could be removable even if it2266 * is unreadable:2267 */2268returnrmdir(path->buf);2269else2270return-1;2271}2272strbuf_complete(path,'/');22732274 len = path->len;2275while((e =readdir(dir)) != NULL) {2276struct stat st;2277if(is_dot_or_dotdot(e->d_name))2278continue;22792280strbuf_setlen(path, len);2281strbuf_addstr(path, e->d_name);2282if(lstat(path->buf, &st)) {2283if(errno == ENOENT)2284/*2285 * file disappeared, which is what we2286 * wanted anyway2287 */2288continue;2289/* fall thru */2290}else if(S_ISDIR(st.st_mode)) {2291if(!remove_dir_recurse(path, flag, &kept_down))2292continue;/* happy */2293}else if(!only_empty &&2294(!unlink(path->buf) || errno == ENOENT)) {2295continue;/* happy, too */2296}22972298/* path too long, stat fails, or non-directory still exists */2299 ret = -1;2300break;2301}2302closedir(dir);23032304strbuf_setlen(path, original_len);2305if(!ret && !keep_toplevel && !kept_down)2306 ret = (!rmdir(path->buf) || errno == ENOENT) ?0: -1;2307else if(kept_up)2308/*2309 * report the uplevel that it is not an error that we2310 * did not rmdir() our directory.2311 */2312*kept_up = !ret;2313return ret;2314}23152316intremove_dir_recursively(struct strbuf *path,int flag)2317{2318returnremove_dir_recurse(path, flag, NULL);2319}23202321staticGIT_PATH_FUNC(git_path_info_exclude,"info/exclude")23222323voidsetup_standard_excludes(struct dir_struct *dir)2324{2325 dir->exclude_per_dir =".gitignore";23262327/* core.excludefile defaulting to $XDG_HOME/git/ignore */2328if(!excludes_file)2329 excludes_file =xdg_config_home("ignore");2330if(excludes_file && !access_or_warn(excludes_file, R_OK,0))2331add_excludes_from_file_1(dir, excludes_file,2332 dir->untracked ? &dir->ss_excludes_file : NULL);23332334/* per repository user preference */2335if(startup_info->have_repository) {2336const char*path =git_path_info_exclude();2337if(!access_or_warn(path, R_OK,0))2338add_excludes_from_file_1(dir, path,2339 dir->untracked ? &dir->ss_info_exclude : NULL);2340}2341}23422343intremove_path(const char*name)2344{2345char*slash;23462347if(unlink(name) && !is_missing_file_error(errno))2348return-1;23492350 slash =strrchr(name,'/');2351if(slash) {2352char*dirs =xstrdup(name);2353 slash = dirs + (slash - name);2354do{2355*slash ='\0';2356}while(rmdir(dirs) ==0&& (slash =strrchr(dirs,'/')));2357free(dirs);2358}2359return0;2360}23612362/*2363 * Frees memory within dir which was allocated for exclude lists and2364 * the exclude_stack. Does not free dir itself.2365 */2366voidclear_directory(struct dir_struct *dir)2367{2368int i, j;2369struct exclude_list_group *group;2370struct exclude_list *el;2371struct exclude_stack *stk;23722373for(i = EXC_CMDL; i <= EXC_FILE; i++) {2374 group = &dir->exclude_list_group[i];2375for(j =0; j < group->nr; j++) {2376 el = &group->el[j];2377if(i == EXC_DIRS)2378free((char*)el->src);2379clear_exclude_list(el);2380}2381free(group->el);2382}23832384 stk = dir->exclude_stack;2385while(stk) {2386struct exclude_stack *prev = stk->prev;2387free(stk);2388 stk = prev;2389}2390strbuf_release(&dir->basebuf);2391}23922393struct ondisk_untracked_cache {2394struct stat_data info_exclude_stat;2395struct stat_data excludes_file_stat;2396uint32_t dir_flags;2397unsigned char info_exclude_sha1[20];2398unsigned char excludes_file_sha1[20];2399char exclude_per_dir[FLEX_ARRAY];2400};24012402#define ouc_size(len) (offsetof(struct ondisk_untracked_cache, exclude_per_dir) + len + 1)24032404struct write_data {2405int index;/* number of written untracked_cache_dir */2406struct ewah_bitmap *check_only;/* from untracked_cache_dir */2407struct ewah_bitmap *valid;/* from untracked_cache_dir */2408struct ewah_bitmap *sha1_valid;/* set if exclude_sha1 is not null */2409struct strbuf out;2410struct strbuf sb_stat;2411struct strbuf sb_sha1;2412};24132414static voidstat_data_to_disk(struct stat_data *to,const struct stat_data *from)2415{2416 to->sd_ctime.sec =htonl(from->sd_ctime.sec);2417 to->sd_ctime.nsec =htonl(from->sd_ctime.nsec);2418 to->sd_mtime.sec =htonl(from->sd_mtime.sec);2419 to->sd_mtime.nsec =htonl(from->sd_mtime.nsec);2420 to->sd_dev =htonl(from->sd_dev);2421 to->sd_ino =htonl(from->sd_ino);2422 to->sd_uid =htonl(from->sd_uid);2423 to->sd_gid =htonl(from->sd_gid);2424 to->sd_size =htonl(from->sd_size);2425}24262427static voidwrite_one_dir(struct untracked_cache_dir *untracked,2428struct write_data *wd)2429{2430struct stat_data stat_data;2431struct strbuf *out = &wd->out;2432unsigned char intbuf[16];2433unsigned int intlen, value;2434int i = wd->index++;24352436/*2437 * untracked_nr should be reset whenever valid is clear, but2438 * for safety..2439 */2440if(!untracked->valid) {2441 untracked->untracked_nr =0;2442 untracked->check_only =0;2443}24442445if(untracked->check_only)2446ewah_set(wd->check_only, i);2447if(untracked->valid) {2448ewah_set(wd->valid, i);2449stat_data_to_disk(&stat_data, &untracked->stat_data);2450strbuf_add(&wd->sb_stat, &stat_data,sizeof(stat_data));2451}2452if(!is_null_sha1(untracked->exclude_sha1)) {2453ewah_set(wd->sha1_valid, i);2454strbuf_add(&wd->sb_sha1, untracked->exclude_sha1,20);2455}24562457 intlen =encode_varint(untracked->untracked_nr, intbuf);2458strbuf_add(out, intbuf, intlen);24592460/* skip non-recurse directories */2461for(i =0, value =0; i < untracked->dirs_nr; i++)2462if(untracked->dirs[i]->recurse)2463 value++;2464 intlen =encode_varint(value, intbuf);2465strbuf_add(out, intbuf, intlen);24662467strbuf_add(out, untracked->name,strlen(untracked->name) +1);24682469for(i =0; i < untracked->untracked_nr; i++)2470strbuf_add(out, untracked->untracked[i],2471strlen(untracked->untracked[i]) +1);24722473for(i =0; i < untracked->dirs_nr; i++)2474if(untracked->dirs[i]->recurse)2475write_one_dir(untracked->dirs[i], wd);2476}24772478voidwrite_untracked_extension(struct strbuf *out,struct untracked_cache *untracked)2479{2480struct ondisk_untracked_cache *ouc;2481struct write_data wd;2482unsigned char varbuf[16];2483int varint_len;2484size_t len =strlen(untracked->exclude_per_dir);24852486FLEX_ALLOC_MEM(ouc, exclude_per_dir, untracked->exclude_per_dir, len);2487stat_data_to_disk(&ouc->info_exclude_stat, &untracked->ss_info_exclude.stat);2488stat_data_to_disk(&ouc->excludes_file_stat, &untracked->ss_excludes_file.stat);2489hashcpy(ouc->info_exclude_sha1, untracked->ss_info_exclude.sha1);2490hashcpy(ouc->excludes_file_sha1, untracked->ss_excludes_file.sha1);2491 ouc->dir_flags =htonl(untracked->dir_flags);24922493 varint_len =encode_varint(untracked->ident.len, varbuf);2494strbuf_add(out, varbuf, varint_len);2495strbuf_addbuf(out, &untracked->ident);24962497strbuf_add(out, ouc,ouc_size(len));2498free(ouc);2499 ouc = NULL;25002501if(!untracked->root) {2502 varint_len =encode_varint(0, varbuf);2503strbuf_add(out, varbuf, varint_len);2504return;2505}25062507 wd.index =0;2508 wd.check_only =ewah_new();2509 wd.valid =ewah_new();2510 wd.sha1_valid =ewah_new();2511strbuf_init(&wd.out,1024);2512strbuf_init(&wd.sb_stat,1024);2513strbuf_init(&wd.sb_sha1,1024);2514write_one_dir(untracked->root, &wd);25152516 varint_len =encode_varint(wd.index, varbuf);2517strbuf_add(out, varbuf, varint_len);2518strbuf_addbuf(out, &wd.out);2519ewah_serialize_strbuf(wd.valid, out);2520ewah_serialize_strbuf(wd.check_only, out);2521ewah_serialize_strbuf(wd.sha1_valid, out);2522strbuf_addbuf(out, &wd.sb_stat);2523strbuf_addbuf(out, &wd.sb_sha1);2524strbuf_addch(out,'\0');/* safe guard for string lists */25252526ewah_free(wd.valid);2527ewah_free(wd.check_only);2528ewah_free(wd.sha1_valid);2529strbuf_release(&wd.out);2530strbuf_release(&wd.sb_stat);2531strbuf_release(&wd.sb_sha1);2532}25332534static voidfree_untracked(struct untracked_cache_dir *ucd)2535{2536int i;2537if(!ucd)2538return;2539for(i =0; i < ucd->dirs_nr; i++)2540free_untracked(ucd->dirs[i]);2541for(i =0; i < ucd->untracked_nr; i++)2542free(ucd->untracked[i]);2543free(ucd->untracked);2544free(ucd->dirs);2545free(ucd);2546}25472548voidfree_untracked_cache(struct untracked_cache *uc)2549{2550if(uc)2551free_untracked(uc->root);2552free(uc);2553}25542555struct read_data {2556int index;2557struct untracked_cache_dir **ucd;2558struct ewah_bitmap *check_only;2559struct ewah_bitmap *valid;2560struct ewah_bitmap *sha1_valid;2561const unsigned char*data;2562const unsigned char*end;2563};25642565static voidstat_data_from_disk(struct stat_data *to,const struct stat_data *from)2566{2567 to->sd_ctime.sec =get_be32(&from->sd_ctime.sec);2568 to->sd_ctime.nsec =get_be32(&from->sd_ctime.nsec);2569 to->sd_mtime.sec =get_be32(&from->sd_mtime.sec);2570 to->sd_mtime.nsec =get_be32(&from->sd_mtime.nsec);2571 to->sd_dev =get_be32(&from->sd_dev);2572 to->sd_ino =get_be32(&from->sd_ino);2573 to->sd_uid =get_be32(&from->sd_uid);2574 to->sd_gid =get_be32(&from->sd_gid);2575 to->sd_size =get_be32(&from->sd_size);2576}25772578static intread_one_dir(struct untracked_cache_dir **untracked_,2579struct read_data *rd)2580{2581struct untracked_cache_dir ud, *untracked;2582const unsigned char*next, *data = rd->data, *end = rd->end;2583unsigned int value;2584int i, len;25852586memset(&ud,0,sizeof(ud));25872588 next = data;2589 value =decode_varint(&next);2590if(next > end)2591return-1;2592 ud.recurse =1;2593 ud.untracked_alloc = value;2594 ud.untracked_nr = value;2595if(ud.untracked_nr)2596ALLOC_ARRAY(ud.untracked, ud.untracked_nr);2597 data = next;25982599 next = data;2600 ud.dirs_alloc = ud.dirs_nr =decode_varint(&next);2601if(next > end)2602return-1;2603ALLOC_ARRAY(ud.dirs, ud.dirs_nr);2604 data = next;26052606 len =strlen((const char*)data);2607 next = data + len +1;2608if(next > rd->end)2609return-1;2610*untracked_ = untracked =xmalloc(st_add(sizeof(*untracked), len));2611memcpy(untracked, &ud,sizeof(ud));2612memcpy(untracked->name, data, len +1);2613 data = next;26142615for(i =0; i < untracked->untracked_nr; i++) {2616 len =strlen((const char*)data);2617 next = data + len +1;2618if(next > rd->end)2619return-1;2620 untracked->untracked[i] =xstrdup((const char*)data);2621 data = next;2622}26232624 rd->ucd[rd->index++] = untracked;2625 rd->data = data;26262627for(i =0; i < untracked->dirs_nr; i++) {2628 len =read_one_dir(untracked->dirs + i, rd);2629if(len <0)2630return-1;2631}2632return0;2633}26342635static voidset_check_only(size_t pos,void*cb)2636{2637struct read_data *rd = cb;2638struct untracked_cache_dir *ud = rd->ucd[pos];2639 ud->check_only =1;2640}26412642static voidread_stat(size_t pos,void*cb)2643{2644struct read_data *rd = cb;2645struct untracked_cache_dir *ud = rd->ucd[pos];2646if(rd->data +sizeof(struct stat_data) > rd->end) {2647 rd->data = rd->end +1;2648return;2649}2650stat_data_from_disk(&ud->stat_data, (struct stat_data *)rd->data);2651 rd->data +=sizeof(struct stat_data);2652 ud->valid =1;2653}26542655static voidread_sha1(size_t pos,void*cb)2656{2657struct read_data *rd = cb;2658struct untracked_cache_dir *ud = rd->ucd[pos];2659if(rd->data +20> rd->end) {2660 rd->data = rd->end +1;2661return;2662}2663hashcpy(ud->exclude_sha1, rd->data);2664 rd->data +=20;2665}26662667static voidload_sha1_stat(struct sha1_stat *sha1_stat,2668const struct stat_data *stat,2669const unsigned char*sha1)2670{2671stat_data_from_disk(&sha1_stat->stat, stat);2672hashcpy(sha1_stat->sha1, sha1);2673 sha1_stat->valid =1;2674}26752676struct untracked_cache *read_untracked_extension(const void*data,unsigned long sz)2677{2678const struct ondisk_untracked_cache *ouc;2679struct untracked_cache *uc;2680struct read_data rd;2681const unsigned char*next = data, *end = (const unsigned char*)data + sz;2682const char*ident;2683int ident_len, len;26842685if(sz <=1|| end[-1] !='\0')2686return NULL;2687 end--;26882689 ident_len =decode_varint(&next);2690if(next + ident_len > end)2691return NULL;2692 ident = (const char*)next;2693 next += ident_len;26942695 ouc = (const struct ondisk_untracked_cache *)next;2696if(next +ouc_size(0) > end)2697return NULL;26982699 uc =xcalloc(1,sizeof(*uc));2700strbuf_init(&uc->ident, ident_len);2701strbuf_add(&uc->ident, ident, ident_len);2702load_sha1_stat(&uc->ss_info_exclude, &ouc->info_exclude_stat,2703 ouc->info_exclude_sha1);2704load_sha1_stat(&uc->ss_excludes_file, &ouc->excludes_file_stat,2705 ouc->excludes_file_sha1);2706 uc->dir_flags =get_be32(&ouc->dir_flags);2707 uc->exclude_per_dir =xstrdup(ouc->exclude_per_dir);2708/* NUL after exclude_per_dir is covered by sizeof(*ouc) */2709 next +=ouc_size(strlen(ouc->exclude_per_dir));2710if(next >= end)2711goto done2;27122713 len =decode_varint(&next);2714if(next > end || len ==0)2715goto done2;27162717 rd.valid =ewah_new();2718 rd.check_only =ewah_new();2719 rd.sha1_valid =ewah_new();2720 rd.data = next;2721 rd.end = end;2722 rd.index =0;2723ALLOC_ARRAY(rd.ucd, len);27242725if(read_one_dir(&uc->root, &rd) || rd.index != len)2726goto done;27272728 next = rd.data;2729 len =ewah_read_mmap(rd.valid, next, end - next);2730if(len <0)2731goto done;27322733 next += len;2734 len =ewah_read_mmap(rd.check_only, next, end - next);2735if(len <0)2736goto done;27372738 next += len;2739 len =ewah_read_mmap(rd.sha1_valid, next, end - next);2740if(len <0)2741goto done;27422743ewah_each_bit(rd.check_only, set_check_only, &rd);2744 rd.data = next + len;2745ewah_each_bit(rd.valid, read_stat, &rd);2746ewah_each_bit(rd.sha1_valid, read_sha1, &rd);2747 next = rd.data;27482749done:2750free(rd.ucd);2751ewah_free(rd.valid);2752ewah_free(rd.check_only);2753ewah_free(rd.sha1_valid);2754done2:2755if(next != end) {2756free_untracked_cache(uc);2757 uc = NULL;2758}2759return uc;2760}27612762static voidinvalidate_one_directory(struct untracked_cache *uc,2763struct untracked_cache_dir *ucd)2764{2765 uc->dir_invalidated++;2766 ucd->valid =0;2767 ucd->untracked_nr =0;2768}27692770/*2771 * Normally when an entry is added or removed from a directory,2772 * invalidating that directory is enough. No need to touch its2773 * ancestors. When a directory is shown as "foo/bar/" in git-status2774 * however, deleting or adding an entry may have cascading effect.2775 *2776 * Say the "foo/bar/file" has become untracked, we need to tell the2777 * untracked_cache_dir of "foo" that "bar/" is not an untracked2778 * directory any more (because "bar" is managed by foo as an untracked2779 * "file").2780 *2781 * Similarly, if "foo/bar/file" moves from untracked to tracked and it2782 * was the last untracked entry in the entire "foo", we should show2783 * "foo/" instead. Which means we have to invalidate past "bar" up to2784 * "foo".2785 *2786 * This function traverses all directories from root to leaf. If there2787 * is a chance of one of the above cases happening, we invalidate back2788 * to root. Otherwise we just invalidate the leaf. There may be a more2789 * sophisticated way than checking for SHOW_OTHER_DIRECTORIES to2790 * detect these cases and avoid unnecessary invalidation, for example,2791 * checking for the untracked entry named "bar/" in "foo", but for now2792 * stick to something safe and simple.2793 */2794static intinvalidate_one_component(struct untracked_cache *uc,2795struct untracked_cache_dir *dir,2796const char*path,int len)2797{2798const char*rest =strchr(path,'/');27992800if(rest) {2801int component_len = rest - path;2802struct untracked_cache_dir *d =2803lookup_untracked(uc, dir, path, component_len);2804int ret =2805invalidate_one_component(uc, d, rest +1,2806 len - (component_len +1));2807if(ret)2808invalidate_one_directory(uc, dir);2809return ret;2810}28112812invalidate_one_directory(uc, dir);2813return uc->dir_flags & DIR_SHOW_OTHER_DIRECTORIES;2814}28152816voiduntracked_cache_invalidate_path(struct index_state *istate,2817const char*path)2818{2819if(!istate->untracked || !istate->untracked->root)2820return;2821invalidate_one_component(istate->untracked, istate->untracked->root,2822 path,strlen(path));2823}28242825voiduntracked_cache_remove_from_index(struct index_state *istate,2826const char*path)2827{2828untracked_cache_invalidate_path(istate, path);2829}28302831voiduntracked_cache_add_to_index(struct index_state *istate,2832const char*path)2833{2834untracked_cache_invalidate_path(istate, path);2835}28362837/* Update gitfile and core.worktree setting to connect work tree and git dir */2838voidconnect_work_tree_and_git_dir(const char*work_tree_,const char*git_dir_)2839{2840struct strbuf gitfile_sb = STRBUF_INIT;2841struct strbuf cfg_sb = STRBUF_INIT;2842struct strbuf rel_path = STRBUF_INIT;2843char*git_dir, *work_tree;28442845/* Prepare .git file */2846strbuf_addf(&gitfile_sb,"%s/.git", work_tree_);2847if(safe_create_leading_directories_const(gitfile_sb.buf))2848die(_("could not create directories for%s"), gitfile_sb.buf);28492850/* Prepare config file */2851strbuf_addf(&cfg_sb,"%s/config", git_dir_);2852if(safe_create_leading_directories_const(cfg_sb.buf))2853die(_("could not create directories for%s"), cfg_sb.buf);28542855 git_dir =real_pathdup(git_dir_,1);2856 work_tree =real_pathdup(work_tree_,1);28572858/* Write .git file */2859write_file(gitfile_sb.buf,"gitdir:%s",2860relative_path(git_dir, work_tree, &rel_path));2861/* Update core.worktree setting */2862git_config_set_in_file(cfg_sb.buf,"core.worktree",2863relative_path(work_tree, git_dir, &rel_path));28642865strbuf_release(&gitfile_sb);2866strbuf_release(&cfg_sb);2867strbuf_release(&rel_path);2868free(work_tree);2869free(git_dir);2870}28712872/*2873 * Migrate the git directory of the given path from old_git_dir to new_git_dir.2874 */2875voidrelocate_gitdir(const char*path,const char*old_git_dir,const char*new_git_dir)2876{2877if(rename(old_git_dir, new_git_dir) <0)2878die_errno(_("could not migrate git directory from '%s' to '%s'"),2879 old_git_dir, new_git_dir);28802881connect_work_tree_and_git_dir(path, new_git_dir);2882}