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"config.h" 13#include"dir.h" 14#include"attr.h" 15#include"refs.h" 16#include"wildmatch.h" 17#include"pathspec.h" 18#include"utf8.h" 19#include"varint.h" 20#include"ewah/ewok.h" 21#include"fsmonitor.h" 22 23/* 24 * Tells read_directory_recursive how a file or directory should be treated. 25 * Values are ordered by significance, e.g. if a directory contains both 26 * excluded and untracked files, it is listed as untracked because 27 * path_untracked > path_excluded. 28 */ 29enum path_treatment { 30 path_none =0, 31 path_recurse, 32 path_excluded, 33 path_untracked 34}; 35 36/* 37 * Support data structure for our opendir/readdir/closedir wrappers 38 */ 39struct cached_dir { 40DIR*fdir; 41struct untracked_cache_dir *untracked; 42int nr_files; 43int nr_dirs; 44 45struct dirent *de; 46const char*file; 47struct untracked_cache_dir *ucd; 48}; 49 50static enum path_treatment read_directory_recursive(struct dir_struct *dir, 51struct index_state *istate,const char*path,int len, 52struct untracked_cache_dir *untracked, 53int check_only,int stop_at_first_file,const struct pathspec *pathspec); 54static intget_dtype(struct dirent *de,struct index_state *istate, 55const char*path,int len); 56 57intcount_slashes(const char*s) 58{ 59int cnt =0; 60while(*s) 61if(*s++ =='/') 62 cnt++; 63return cnt; 64} 65 66intfspathcmp(const char*a,const char*b) 67{ 68return ignore_case ?strcasecmp(a, b) :strcmp(a, b); 69} 70 71intfspathncmp(const char*a,const char*b,size_t count) 72{ 73return ignore_case ?strncasecmp(a, b, count) :strncmp(a, b, count); 74} 75 76intgit_fnmatch(const struct pathspec_item *item, 77const char*pattern,const char*string, 78int prefix) 79{ 80if(prefix >0) { 81if(ps_strncmp(item, pattern, string, prefix)) 82return WM_NOMATCH; 83 pattern += prefix; 84 string += prefix; 85} 86if(item->flags & PATHSPEC_ONESTAR) { 87int pattern_len =strlen(++pattern); 88int string_len =strlen(string); 89return string_len < pattern_len || 90ps_strcmp(item, pattern, 91 string + string_len - pattern_len); 92} 93if(item->magic & PATHSPEC_GLOB) 94returnwildmatch(pattern, string, 95 WM_PATHNAME | 96(item->magic & PATHSPEC_ICASE ? WM_CASEFOLD :0)); 97else 98/* wildmatch has not learned no FNM_PATHNAME mode yet */ 99returnwildmatch(pattern, string, 100 item->magic & PATHSPEC_ICASE ? WM_CASEFOLD :0); 101} 102 103static intfnmatch_icase_mem(const char*pattern,int patternlen, 104const char*string,int stringlen, 105int flags) 106{ 107int match_status; 108struct strbuf pat_buf = STRBUF_INIT; 109struct strbuf str_buf = STRBUF_INIT; 110const char*use_pat = pattern; 111const char*use_str = string; 112 113if(pattern[patternlen]) { 114strbuf_add(&pat_buf, pattern, patternlen); 115 use_pat = pat_buf.buf; 116} 117if(string[stringlen]) { 118strbuf_add(&str_buf, string, stringlen); 119 use_str = str_buf.buf; 120} 121 122if(ignore_case) 123 flags |= WM_CASEFOLD; 124 match_status =wildmatch(use_pat, use_str, flags); 125 126strbuf_release(&pat_buf); 127strbuf_release(&str_buf); 128 129return match_status; 130} 131 132static size_tcommon_prefix_len(const struct pathspec *pathspec) 133{ 134int n; 135size_t max =0; 136 137/* 138 * ":(icase)path" is treated as a pathspec full of 139 * wildcard. In other words, only prefix is considered common 140 * prefix. If the pathspec is abc/foo abc/bar, running in 141 * subdir xyz, the common prefix is still xyz, not xuz/abc as 142 * in non-:(icase). 143 */ 144GUARD_PATHSPEC(pathspec, 145 PATHSPEC_FROMTOP | 146 PATHSPEC_MAXDEPTH | 147 PATHSPEC_LITERAL | 148 PATHSPEC_GLOB | 149 PATHSPEC_ICASE | 150 PATHSPEC_EXCLUDE | 151 PATHSPEC_ATTR); 152 153for(n =0; n < pathspec->nr; n++) { 154size_t i =0, len =0, item_len; 155if(pathspec->items[n].magic & PATHSPEC_EXCLUDE) 156continue; 157if(pathspec->items[n].magic & PATHSPEC_ICASE) 158 item_len = pathspec->items[n].prefix; 159else 160 item_len = pathspec->items[n].nowildcard_len; 161while(i < item_len && (n ==0|| i < max)) { 162char c = pathspec->items[n].match[i]; 163if(c != pathspec->items[0].match[i]) 164break; 165if(c =='/') 166 len = i +1; 167 i++; 168} 169if(n ==0|| len < max) { 170 max = len; 171if(!max) 172break; 173} 174} 175return max; 176} 177 178/* 179 * Returns a copy of the longest leading path common among all 180 * pathspecs. 181 */ 182char*common_prefix(const struct pathspec *pathspec) 183{ 184unsigned long len =common_prefix_len(pathspec); 185 186return len ?xmemdupz(pathspec->items[0].match, len) : NULL; 187} 188 189intfill_directory(struct dir_struct *dir, 190struct index_state *istate, 191const struct pathspec *pathspec) 192{ 193const char*prefix; 194size_t prefix_len; 195 196/* 197 * Calculate common prefix for the pathspec, and 198 * use that to optimize the directory walk 199 */ 200 prefix_len =common_prefix_len(pathspec); 201 prefix = prefix_len ? pathspec->items[0].match :""; 202 203/* Read the directory and prune it */ 204read_directory(dir, istate, prefix, prefix_len, pathspec); 205 206return prefix_len; 207} 208 209intwithin_depth(const char*name,int namelen, 210int depth,int max_depth) 211{ 212const char*cp = name, *cpe = name + namelen; 213 214while(cp < cpe) { 215if(*cp++ !='/') 216continue; 217 depth++; 218if(depth > max_depth) 219return0; 220} 221return1; 222} 223 224/* 225 * Read the contents of the blob with the given OID into a buffer. 226 * Append a trailing LF to the end if the last line doesn't have one. 227 * 228 * Returns: 229 * -1 when the OID is invalid or unknown or does not refer to a blob. 230 * 0 when the blob is empty. 231 * 1 along with { data, size } of the (possibly augmented) buffer 232 * when successful. 233 * 234 * Optionally updates the given sha1_stat with the given OID (when valid). 235 */ 236static intdo_read_blob(const struct object_id *oid, 237struct sha1_stat *sha1_stat, 238size_t*size_out, 239char**data_out) 240{ 241enum object_type type; 242unsigned long sz; 243char*data; 244 245*size_out =0; 246*data_out = NULL; 247 248 data =read_sha1_file(oid->hash, &type, &sz); 249if(!data || type != OBJ_BLOB) { 250free(data); 251return-1; 252} 253 254if(sha1_stat) { 255memset(&sha1_stat->stat,0,sizeof(sha1_stat->stat)); 256hashcpy(sha1_stat->sha1, oid->hash); 257} 258 259if(sz ==0) { 260free(data); 261return0; 262} 263 264if(data[sz -1] !='\n') { 265 data =xrealloc(data,st_add(sz,1)); 266 data[sz++] ='\n'; 267} 268 269*size_out =xsize_t(sz); 270*data_out = data; 271 272return1; 273} 274 275#define DO_MATCH_EXCLUDE (1<<0) 276#define DO_MATCH_DIRECTORY (1<<1) 277#define DO_MATCH_SUBMODULE (1<<2) 278 279static intmatch_attrs(const char*name,int namelen, 280const struct pathspec_item *item) 281{ 282int i; 283 284git_check_attr(name, item->attr_check); 285for(i =0; i < item->attr_match_nr; i++) { 286const char*value; 287int matched; 288enum attr_match_mode match_mode; 289 290 value = item->attr_check->items[i].value; 291 match_mode = item->attr_match[i].match_mode; 292 293if(ATTR_TRUE(value)) 294 matched = (match_mode == MATCH_SET); 295else if(ATTR_FALSE(value)) 296 matched = (match_mode == MATCH_UNSET); 297else if(ATTR_UNSET(value)) 298 matched = (match_mode == MATCH_UNSPECIFIED); 299else 300 matched = (match_mode == MATCH_VALUE && 301!strcmp(item->attr_match[i].value, value)); 302if(!matched) 303return0; 304} 305 306return1; 307} 308 309/* 310 * Does 'match' match the given name? 311 * A match is found if 312 * 313 * (1) the 'match' string is leading directory of 'name', or 314 * (2) the 'match' string is a wildcard and matches 'name', or 315 * (3) the 'match' string is exactly the same as 'name'. 316 * 317 * and the return value tells which case it was. 318 * 319 * It returns 0 when there is no match. 320 */ 321static intmatch_pathspec_item(const struct pathspec_item *item,int prefix, 322const char*name,int namelen,unsigned flags) 323{ 324/* name/namelen has prefix cut off by caller */ 325const char*match = item->match + prefix; 326int matchlen = item->len - prefix; 327 328/* 329 * The normal call pattern is: 330 * 1. prefix = common_prefix_len(ps); 331 * 2. prune something, or fill_directory 332 * 3. match_pathspec() 333 * 334 * 'prefix' at #1 may be shorter than the command's prefix and 335 * it's ok for #2 to match extra files. Those extras will be 336 * trimmed at #3. 337 * 338 * Suppose the pathspec is 'foo' and '../bar' running from 339 * subdir 'xyz'. The common prefix at #1 will be empty, thanks 340 * to "../". We may have xyz/foo _and_ XYZ/foo after #2. The 341 * user does not want XYZ/foo, only the "foo" part should be 342 * case-insensitive. We need to filter out XYZ/foo here. In 343 * other words, we do not trust the caller on comparing the 344 * prefix part when :(icase) is involved. We do exact 345 * comparison ourselves. 346 * 347 * Normally the caller (common_prefix_len() in fact) does 348 * _exact_ matching on name[-prefix+1..-1] and we do not need 349 * to check that part. Be defensive and check it anyway, in 350 * case common_prefix_len is changed, or a new caller is 351 * introduced that does not use common_prefix_len. 352 * 353 * If the penalty turns out too high when prefix is really 354 * long, maybe change it to 355 * strncmp(match, name, item->prefix - prefix) 356 */ 357if(item->prefix && (item->magic & PATHSPEC_ICASE) && 358strncmp(item->match, name - prefix, item->prefix)) 359return0; 360 361if(item->attr_match_nr && !match_attrs(name, namelen, item)) 362return0; 363 364/* If the match was just the prefix, we matched */ 365if(!*match) 366return MATCHED_RECURSIVELY; 367 368if(matchlen <= namelen && !ps_strncmp(item, match, name, matchlen)) { 369if(matchlen == namelen) 370return MATCHED_EXACTLY; 371 372if(match[matchlen-1] =='/'|| name[matchlen] =='/') 373return MATCHED_RECURSIVELY; 374}else if((flags & DO_MATCH_DIRECTORY) && 375 match[matchlen -1] =='/'&& 376 namelen == matchlen -1&& 377!ps_strncmp(item, match, name, namelen)) 378return MATCHED_EXACTLY; 379 380if(item->nowildcard_len < item->len && 381!git_fnmatch(item, match, name, 382 item->nowildcard_len - prefix)) 383return MATCHED_FNMATCH; 384 385/* Perform checks to see if "name" is a super set of the pathspec */ 386if(flags & DO_MATCH_SUBMODULE) { 387/* name is a literal prefix of the pathspec */ 388if((namelen < matchlen) && 389(match[namelen] =='/') && 390!ps_strncmp(item, match, name, namelen)) 391return MATCHED_RECURSIVELY; 392 393/* name" doesn't match up to the first wild character */ 394if(item->nowildcard_len < item->len && 395ps_strncmp(item, match, name, 396 item->nowildcard_len - prefix)) 397return0; 398 399/* 400 * Here is where we would perform a wildmatch to check if 401 * "name" can be matched as a directory (or a prefix) against 402 * the pathspec. Since wildmatch doesn't have this capability 403 * at the present we have to punt and say that it is a match, 404 * potentially returning a false positive 405 * The submodules themselves will be able to perform more 406 * accurate matching to determine if the pathspec matches. 407 */ 408return MATCHED_RECURSIVELY; 409} 410 411return0; 412} 413 414/* 415 * Given a name and a list of pathspecs, returns the nature of the 416 * closest (i.e. most specific) match of the name to any of the 417 * pathspecs. 418 * 419 * The caller typically calls this multiple times with the same 420 * pathspec and seen[] array but with different name/namelen 421 * (e.g. entries from the index) and is interested in seeing if and 422 * how each pathspec matches all the names it calls this function 423 * with. A mark is left in the seen[] array for each pathspec element 424 * indicating the closest type of match that element achieved, so if 425 * seen[n] remains zero after multiple invocations, that means the nth 426 * pathspec did not match any names, which could indicate that the 427 * user mistyped the nth pathspec. 428 */ 429static intdo_match_pathspec(const struct pathspec *ps, 430const char*name,int namelen, 431int prefix,char*seen, 432unsigned flags) 433{ 434int i, retval =0, exclude = flags & DO_MATCH_EXCLUDE; 435 436GUARD_PATHSPEC(ps, 437 PATHSPEC_FROMTOP | 438 PATHSPEC_MAXDEPTH | 439 PATHSPEC_LITERAL | 440 PATHSPEC_GLOB | 441 PATHSPEC_ICASE | 442 PATHSPEC_EXCLUDE | 443 PATHSPEC_ATTR); 444 445if(!ps->nr) { 446if(!ps->recursive || 447!(ps->magic & PATHSPEC_MAXDEPTH) || 448 ps->max_depth == -1) 449return MATCHED_RECURSIVELY; 450 451if(within_depth(name, namelen,0, ps->max_depth)) 452return MATCHED_EXACTLY; 453else 454return0; 455} 456 457 name += prefix; 458 namelen -= prefix; 459 460for(i = ps->nr -1; i >=0; i--) { 461int how; 462 463if((!exclude && ps->items[i].magic & PATHSPEC_EXCLUDE) || 464( exclude && !(ps->items[i].magic & PATHSPEC_EXCLUDE))) 465continue; 466 467if(seen && seen[i] == MATCHED_EXACTLY) 468continue; 469/* 470 * Make exclude patterns optional and never report 471 * "pathspec ':(exclude)foo' matches no files" 472 */ 473if(seen && ps->items[i].magic & PATHSPEC_EXCLUDE) 474 seen[i] = MATCHED_FNMATCH; 475 how =match_pathspec_item(ps->items+i, prefix, name, 476 namelen, flags); 477if(ps->recursive && 478(ps->magic & PATHSPEC_MAXDEPTH) && 479 ps->max_depth != -1&& 480 how && how != MATCHED_FNMATCH) { 481int len = ps->items[i].len; 482if(name[len] =='/') 483 len++; 484if(within_depth(name+len, namelen-len,0, ps->max_depth)) 485 how = MATCHED_EXACTLY; 486else 487 how =0; 488} 489if(how) { 490if(retval < how) 491 retval = how; 492if(seen && seen[i] < how) 493 seen[i] = how; 494} 495} 496return retval; 497} 498 499intmatch_pathspec(const struct pathspec *ps, 500const char*name,int namelen, 501int prefix,char*seen,int is_dir) 502{ 503int positive, negative; 504unsigned flags = is_dir ? DO_MATCH_DIRECTORY :0; 505 positive =do_match_pathspec(ps, name, namelen, 506 prefix, seen, flags); 507if(!(ps->magic & PATHSPEC_EXCLUDE) || !positive) 508return positive; 509 negative =do_match_pathspec(ps, name, namelen, 510 prefix, seen, 511 flags | DO_MATCH_EXCLUDE); 512return negative ?0: positive; 513} 514 515/** 516 * Check if a submodule is a superset of the pathspec 517 */ 518intsubmodule_path_match(const struct pathspec *ps, 519const char*submodule_name, 520char*seen) 521{ 522int matched =do_match_pathspec(ps, submodule_name, 523strlen(submodule_name), 5240, seen, 525 DO_MATCH_DIRECTORY | 526 DO_MATCH_SUBMODULE); 527return matched; 528} 529 530intreport_path_error(const char*ps_matched, 531const struct pathspec *pathspec, 532const char*prefix) 533{ 534/* 535 * Make sure all pathspec matched; otherwise it is an error. 536 */ 537int num, errors =0; 538for(num =0; num < pathspec->nr; num++) { 539int other, found_dup; 540 541if(ps_matched[num]) 542continue; 543/* 544 * The caller might have fed identical pathspec 545 * twice. Do not barf on such a mistake. 546 * FIXME: parse_pathspec should have eliminated 547 * duplicate pathspec. 548 */ 549for(found_dup = other =0; 550!found_dup && other < pathspec->nr; 551 other++) { 552if(other == num || !ps_matched[other]) 553continue; 554if(!strcmp(pathspec->items[other].original, 555 pathspec->items[num].original)) 556/* 557 * Ok, we have a match already. 558 */ 559 found_dup =1; 560} 561if(found_dup) 562continue; 563 564error("pathspec '%s' did not match any file(s) known to git.", 565 pathspec->items[num].original); 566 errors++; 567} 568return errors; 569} 570 571/* 572 * Return the length of the "simple" part of a path match limiter. 573 */ 574intsimple_length(const char*match) 575{ 576int len = -1; 577 578for(;;) { 579unsigned char c = *match++; 580 len++; 581if(c =='\0'||is_glob_special(c)) 582return len; 583} 584} 585 586intno_wildcard(const char*string) 587{ 588return string[simple_length(string)] =='\0'; 589} 590 591voidparse_exclude_pattern(const char**pattern, 592int*patternlen, 593unsigned*flags, 594int*nowildcardlen) 595{ 596const char*p = *pattern; 597size_t i, len; 598 599*flags =0; 600if(*p =='!') { 601*flags |= EXC_FLAG_NEGATIVE; 602 p++; 603} 604 len =strlen(p); 605if(len && p[len -1] =='/') { 606 len--; 607*flags |= EXC_FLAG_MUSTBEDIR; 608} 609for(i =0; i < len; i++) { 610if(p[i] =='/') 611break; 612} 613if(i == len) 614*flags |= EXC_FLAG_NODIR; 615*nowildcardlen =simple_length(p); 616/* 617 * we should have excluded the trailing slash from 'p' too, 618 * but that's one more allocation. Instead just make sure 619 * nowildcardlen does not exceed real patternlen 620 */ 621if(*nowildcardlen > len) 622*nowildcardlen = len; 623if(*p =='*'&&no_wildcard(p +1)) 624*flags |= EXC_FLAG_ENDSWITH; 625*pattern = p; 626*patternlen = len; 627} 628 629voidadd_exclude(const char*string,const char*base, 630int baselen,struct exclude_list *el,int srcpos) 631{ 632struct exclude *x; 633int patternlen; 634unsigned flags; 635int nowildcardlen; 636 637parse_exclude_pattern(&string, &patternlen, &flags, &nowildcardlen); 638if(flags & EXC_FLAG_MUSTBEDIR) { 639FLEXPTR_ALLOC_MEM(x, pattern, string, patternlen); 640}else{ 641 x =xmalloc(sizeof(*x)); 642 x->pattern = string; 643} 644 x->patternlen = patternlen; 645 x->nowildcardlen = nowildcardlen; 646 x->base = base; 647 x->baselen = baselen; 648 x->flags = flags; 649 x->srcpos = srcpos; 650ALLOC_GROW(el->excludes, el->nr +1, el->alloc); 651 el->excludes[el->nr++] = x; 652 x->el = el; 653} 654 655static intread_skip_worktree_file_from_index(const struct index_state *istate, 656const char*path, 657size_t*size_out, 658char**data_out, 659struct sha1_stat *sha1_stat) 660{ 661int pos, len; 662 663 len =strlen(path); 664 pos =index_name_pos(istate, path, len); 665if(pos <0) 666return-1; 667if(!ce_skip_worktree(istate->cache[pos])) 668return-1; 669 670returndo_read_blob(&istate->cache[pos]->oid, sha1_stat, size_out, data_out); 671} 672 673/* 674 * Frees memory within el which was allocated for exclude patterns and 675 * the file buffer. Does not free el itself. 676 */ 677voidclear_exclude_list(struct exclude_list *el) 678{ 679int i; 680 681for(i =0; i < el->nr; i++) 682free(el->excludes[i]); 683free(el->excludes); 684free(el->filebuf); 685 686memset(el,0,sizeof(*el)); 687} 688 689static voidtrim_trailing_spaces(char*buf) 690{ 691char*p, *last_space = NULL; 692 693for(p = buf; *p; p++) 694switch(*p) { 695case' ': 696if(!last_space) 697 last_space = p; 698break; 699case'\\': 700 p++; 701if(!*p) 702return; 703/* fallthrough */ 704default: 705 last_space = NULL; 706} 707 708if(last_space) 709*last_space ='\0'; 710} 711 712/* 713 * Given a subdirectory name and "dir" of the current directory, 714 * search the subdir in "dir" and return it, or create a new one if it 715 * does not exist in "dir". 716 * 717 * If "name" has the trailing slash, it'll be excluded in the search. 718 */ 719static struct untracked_cache_dir *lookup_untracked(struct untracked_cache *uc, 720struct untracked_cache_dir *dir, 721const char*name,int len) 722{ 723int first, last; 724struct untracked_cache_dir *d; 725if(!dir) 726return NULL; 727if(len && name[len -1] =='/') 728 len--; 729 first =0; 730 last = dir->dirs_nr; 731while(last > first) { 732int cmp, next = (last + first) >>1; 733 d = dir->dirs[next]; 734 cmp =strncmp(name, d->name, len); 735if(!cmp &&strlen(d->name) > len) 736 cmp = -1; 737if(!cmp) 738return d; 739if(cmp <0) { 740 last = next; 741continue; 742} 743 first = next+1; 744} 745 746 uc->dir_created++; 747FLEX_ALLOC_MEM(d, name, name, len); 748 749ALLOC_GROW(dir->dirs, dir->dirs_nr +1, dir->dirs_alloc); 750memmove(dir->dirs + first +1, dir->dirs + first, 751(dir->dirs_nr - first) *sizeof(*dir->dirs)); 752 dir->dirs_nr++; 753 dir->dirs[first] = d; 754return d; 755} 756 757static voiddo_invalidate_gitignore(struct untracked_cache_dir *dir) 758{ 759int i; 760 dir->valid =0; 761 dir->untracked_nr =0; 762for(i =0; i < dir->dirs_nr; i++) 763do_invalidate_gitignore(dir->dirs[i]); 764} 765 766static voidinvalidate_gitignore(struct untracked_cache *uc, 767struct untracked_cache_dir *dir) 768{ 769 uc->gitignore_invalidated++; 770do_invalidate_gitignore(dir); 771} 772 773static voidinvalidate_directory(struct untracked_cache *uc, 774struct untracked_cache_dir *dir) 775{ 776int i; 777 uc->dir_invalidated++; 778 dir->valid =0; 779 dir->untracked_nr =0; 780for(i =0; i < dir->dirs_nr; i++) 781 dir->dirs[i]->recurse =0; 782} 783 784static intadd_excludes_from_buffer(char*buf,size_t size, 785const char*base,int baselen, 786struct exclude_list *el); 787 788/* 789 * Given a file with name "fname", read it (either from disk, or from 790 * an index if 'istate' is non-null), parse it and store the 791 * exclude rules in "el". 792 * 793 * If "ss" is not NULL, compute SHA-1 of the exclude file and fill 794 * stat data from disk (only valid if add_excludes returns zero). If 795 * ss_valid is non-zero, "ss" must contain good value as input. 796 */ 797static intadd_excludes(const char*fname,const char*base,int baselen, 798struct exclude_list *el, 799struct index_state *istate, 800struct sha1_stat *sha1_stat) 801{ 802struct stat st; 803int r; 804int fd; 805size_t size =0; 806char*buf; 807 808 fd =open(fname, O_RDONLY); 809if(fd <0||fstat(fd, &st) <0) { 810if(fd <0) 811warn_on_fopen_errors(fname); 812else 813close(fd); 814if(!istate) 815return-1; 816 r =read_skip_worktree_file_from_index(istate, fname, 817&size, &buf, 818 sha1_stat); 819if(r !=1) 820return r; 821}else{ 822 size =xsize_t(st.st_size); 823if(size ==0) { 824if(sha1_stat) { 825fill_stat_data(&sha1_stat->stat, &st); 826hashcpy(sha1_stat->sha1, EMPTY_BLOB_SHA1_BIN); 827 sha1_stat->valid =1; 828} 829close(fd); 830return0; 831} 832 buf =xmallocz(size); 833if(read_in_full(fd, buf, size) != size) { 834free(buf); 835close(fd); 836return-1; 837} 838 buf[size++] ='\n'; 839close(fd); 840if(sha1_stat) { 841int pos; 842if(sha1_stat->valid && 843!match_stat_data_racy(istate, &sha1_stat->stat, &st)) 844;/* no content change, ss->sha1 still good */ 845else if(istate && 846(pos =index_name_pos(istate, fname,strlen(fname))) >=0&& 847!ce_stage(istate->cache[pos]) && 848ce_uptodate(istate->cache[pos]) && 849!would_convert_to_git(istate, fname)) 850hashcpy(sha1_stat->sha1, 851 istate->cache[pos]->oid.hash); 852else 853hash_sha1_file(buf, size,"blob", sha1_stat->sha1); 854fill_stat_data(&sha1_stat->stat, &st); 855 sha1_stat->valid =1; 856} 857} 858 859add_excludes_from_buffer(buf, size, base, baselen, el); 860return0; 861} 862 863static intadd_excludes_from_buffer(char*buf,size_t size, 864const char*base,int baselen, 865struct exclude_list *el) 866{ 867int i, lineno =1; 868char*entry; 869 870 el->filebuf = buf; 871 872if(skip_utf8_bom(&buf, size)) 873 size -= buf - el->filebuf; 874 875 entry = buf; 876 877for(i =0; i < size; i++) { 878if(buf[i] =='\n') { 879if(entry != buf + i && entry[0] !='#') { 880 buf[i - (i && buf[i-1] =='\r')] =0; 881trim_trailing_spaces(entry); 882add_exclude(entry, base, baselen, el, lineno); 883} 884 lineno++; 885 entry = buf + i +1; 886} 887} 888return0; 889} 890 891intadd_excludes_from_file_to_list(const char*fname,const char*base, 892int baselen,struct exclude_list *el, 893struct index_state *istate) 894{ 895returnadd_excludes(fname, base, baselen, el, istate, NULL); 896} 897 898intadd_excludes_from_blob_to_list( 899struct object_id *oid, 900const char*base,int baselen, 901struct exclude_list *el) 902{ 903char*buf; 904size_t size; 905int r; 906 907 r =do_read_blob(oid, NULL, &size, &buf); 908if(r !=1) 909return r; 910 911add_excludes_from_buffer(buf, size, base, baselen, el); 912return0; 913} 914 915struct exclude_list *add_exclude_list(struct dir_struct *dir, 916int group_type,const char*src) 917{ 918struct exclude_list *el; 919struct exclude_list_group *group; 920 921 group = &dir->exclude_list_group[group_type]; 922ALLOC_GROW(group->el, group->nr +1, group->alloc); 923 el = &group->el[group->nr++]; 924memset(el,0,sizeof(*el)); 925 el->src = src; 926return el; 927} 928 929/* 930 * Used to set up core.excludesfile and .git/info/exclude lists. 931 */ 932static voidadd_excludes_from_file_1(struct dir_struct *dir,const char*fname, 933struct sha1_stat *sha1_stat) 934{ 935struct exclude_list *el; 936/* 937 * catch setup_standard_excludes() that's called before 938 * dir->untracked is assigned. That function behaves 939 * differently when dir->untracked is non-NULL. 940 */ 941if(!dir->untracked) 942 dir->unmanaged_exclude_files++; 943 el =add_exclude_list(dir, EXC_FILE, fname); 944if(add_excludes(fname,"",0, el, NULL, sha1_stat) <0) 945die("cannot use%sas an exclude file", fname); 946} 947 948voidadd_excludes_from_file(struct dir_struct *dir,const char*fname) 949{ 950 dir->unmanaged_exclude_files++;/* see validate_untracked_cache() */ 951add_excludes_from_file_1(dir, fname, NULL); 952} 953 954intmatch_basename(const char*basename,int basenamelen, 955const char*pattern,int prefix,int patternlen, 956unsigned flags) 957{ 958if(prefix == patternlen) { 959if(patternlen == basenamelen && 960!fspathncmp(pattern, basename, basenamelen)) 961return1; 962}else if(flags & EXC_FLAG_ENDSWITH) { 963/* "*literal" matching against "fooliteral" */ 964if(patternlen -1<= basenamelen && 965!fspathncmp(pattern +1, 966 basename + basenamelen - (patternlen -1), 967 patternlen -1)) 968return1; 969}else{ 970if(fnmatch_icase_mem(pattern, patternlen, 971 basename, basenamelen, 9720) ==0) 973return1; 974} 975return0; 976} 977 978intmatch_pathname(const char*pathname,int pathlen, 979const char*base,int baselen, 980const char*pattern,int prefix,int patternlen, 981unsigned flags) 982{ 983const char*name; 984int namelen; 985 986/* 987 * match with FNM_PATHNAME; the pattern has base implicitly 988 * in front of it. 989 */ 990if(*pattern =='/') { 991 pattern++; 992 patternlen--; 993 prefix--; 994} 995 996/* 997 * baselen does not count the trailing slash. base[] may or 998 * may not end with a trailing slash though. 999 */1000if(pathlen < baselen +1||1001(baselen && pathname[baselen] !='/') ||1002fspathncmp(pathname, base, baselen))1003return0;10041005 namelen = baselen ? pathlen - baselen -1: pathlen;1006 name = pathname + pathlen - namelen;10071008if(prefix) {1009/*1010 * if the non-wildcard part is longer than the1011 * remaining pathname, surely it cannot match.1012 */1013if(prefix > namelen)1014return0;10151016if(fspathncmp(pattern, name, prefix))1017return0;1018 pattern += prefix;1019 patternlen -= prefix;1020 name += prefix;1021 namelen -= prefix;10221023/*1024 * If the whole pattern did not have a wildcard,1025 * then our prefix match is all we need; we1026 * do not need to call fnmatch at all.1027 */1028if(!patternlen && !namelen)1029return1;1030}10311032returnfnmatch_icase_mem(pattern, patternlen,1033 name, namelen,1034 WM_PATHNAME) ==0;1035}10361037/*1038 * Scan the given exclude list in reverse to see whether pathname1039 * should be ignored. The first match (i.e. the last on the list), if1040 * any, determines the fate. Returns the exclude_list element which1041 * matched, or NULL for undecided.1042 */1043static struct exclude *last_exclude_matching_from_list(const char*pathname,1044int pathlen,1045const char*basename,1046int*dtype,1047struct exclude_list *el,1048struct index_state *istate)1049{1050struct exclude *exc = NULL;/* undecided */1051int i;10521053if(!el->nr)1054return NULL;/* undefined */10551056for(i = el->nr -1;0<= i; i--) {1057struct exclude *x = el->excludes[i];1058const char*exclude = x->pattern;1059int prefix = x->nowildcardlen;10601061if(x->flags & EXC_FLAG_MUSTBEDIR) {1062if(*dtype == DT_UNKNOWN)1063*dtype =get_dtype(NULL, istate, pathname, pathlen);1064if(*dtype != DT_DIR)1065continue;1066}10671068if(x->flags & EXC_FLAG_NODIR) {1069if(match_basename(basename,1070 pathlen - (basename - pathname),1071 exclude, prefix, x->patternlen,1072 x->flags)) {1073 exc = x;1074break;1075}1076continue;1077}10781079assert(x->baselen ==0|| x->base[x->baselen -1] =='/');1080if(match_pathname(pathname, pathlen,1081 x->base, x->baselen ? x->baselen -1:0,1082 exclude, prefix, x->patternlen, x->flags)) {1083 exc = x;1084break;1085}1086}1087return exc;1088}10891090/*1091 * Scan the list and let the last match determine the fate.1092 * Return 1 for exclude, 0 for include and -1 for undecided.1093 */1094intis_excluded_from_list(const char*pathname,1095int pathlen,const char*basename,int*dtype,1096struct exclude_list *el,struct index_state *istate)1097{1098struct exclude *exclude;1099 exclude =last_exclude_matching_from_list(pathname, pathlen, basename,1100 dtype, el, istate);1101if(exclude)1102return exclude->flags & EXC_FLAG_NEGATIVE ?0:1;1103return-1;/* undecided */1104}11051106static struct exclude *last_exclude_matching_from_lists(struct dir_struct *dir,1107struct index_state *istate,1108const char*pathname,int pathlen,const char*basename,1109int*dtype_p)1110{1111int i, j;1112struct exclude_list_group *group;1113struct exclude *exclude;1114for(i = EXC_CMDL; i <= EXC_FILE; i++) {1115 group = &dir->exclude_list_group[i];1116for(j = group->nr -1; j >=0; j--) {1117 exclude =last_exclude_matching_from_list(1118 pathname, pathlen, basename, dtype_p,1119&group->el[j], istate);1120if(exclude)1121return exclude;1122}1123}1124return NULL;1125}11261127/*1128 * Loads the per-directory exclude list for the substring of base1129 * which has a char length of baselen.1130 */1131static voidprep_exclude(struct dir_struct *dir,1132struct index_state *istate,1133const char*base,int baselen)1134{1135struct exclude_list_group *group;1136struct exclude_list *el;1137struct exclude_stack *stk = NULL;1138struct untracked_cache_dir *untracked;1139int current;11401141 group = &dir->exclude_list_group[EXC_DIRS];11421143/*1144 * Pop the exclude lists from the EXCL_DIRS exclude_list_group1145 * which originate from directories not in the prefix of the1146 * path being checked.1147 */1148while((stk = dir->exclude_stack) != NULL) {1149if(stk->baselen <= baselen &&1150!strncmp(dir->basebuf.buf, base, stk->baselen))1151break;1152 el = &group->el[dir->exclude_stack->exclude_ix];1153 dir->exclude_stack = stk->prev;1154 dir->exclude = NULL;1155free((char*)el->src);/* see strbuf_detach() below */1156clear_exclude_list(el);1157free(stk);1158 group->nr--;1159}11601161/* Skip traversing into sub directories if the parent is excluded */1162if(dir->exclude)1163return;11641165/*1166 * Lazy initialization. All call sites currently just1167 * memset(dir, 0, sizeof(*dir)) before use. Changing all of1168 * them seems lots of work for little benefit.1169 */1170if(!dir->basebuf.buf)1171strbuf_init(&dir->basebuf, PATH_MAX);11721173/* Read from the parent directories and push them down. */1174 current = stk ? stk->baselen : -1;1175strbuf_setlen(&dir->basebuf, current <0?0: current);1176if(dir->untracked)1177 untracked = stk ? stk->ucd : dir->untracked->root;1178else1179 untracked = NULL;11801181while(current < baselen) {1182const char*cp;1183struct sha1_stat sha1_stat;11841185 stk =xcalloc(1,sizeof(*stk));1186if(current <0) {1187 cp = base;1188 current =0;1189}else{1190 cp =strchr(base + current +1,'/');1191if(!cp)1192die("oops in prep_exclude");1193 cp++;1194 untracked =1195lookup_untracked(dir->untracked, untracked,1196 base + current,1197 cp - base - current);1198}1199 stk->prev = dir->exclude_stack;1200 stk->baselen = cp - base;1201 stk->exclude_ix = group->nr;1202 stk->ucd = untracked;1203 el =add_exclude_list(dir, EXC_DIRS, NULL);1204strbuf_add(&dir->basebuf, base + current, stk->baselen - current);1205assert(stk->baselen == dir->basebuf.len);12061207/* Abort if the directory is excluded */1208if(stk->baselen) {1209int dt = DT_DIR;1210 dir->basebuf.buf[stk->baselen -1] =0;1211 dir->exclude =last_exclude_matching_from_lists(dir,1212 istate,1213 dir->basebuf.buf, stk->baselen -1,1214 dir->basebuf.buf + current, &dt);1215 dir->basebuf.buf[stk->baselen -1] ='/';1216if(dir->exclude &&1217 dir->exclude->flags & EXC_FLAG_NEGATIVE)1218 dir->exclude = NULL;1219if(dir->exclude) {1220 dir->exclude_stack = stk;1221return;1222}1223}12241225/* Try to read per-directory file */1226hashclr(sha1_stat.sha1);1227 sha1_stat.valid =0;1228if(dir->exclude_per_dir &&1229/*1230 * If we know that no files have been added in1231 * this directory (i.e. valid_cached_dir() has1232 * been executed and set untracked->valid) ..1233 */1234(!untracked || !untracked->valid ||1235/*1236 * .. and .gitignore does not exist before1237 * (i.e. null exclude_sha1). Then we can skip1238 * loading .gitignore, which would result in1239 * ENOENT anyway.1240 */1241!is_null_sha1(untracked->exclude_sha1))) {1242/*1243 * dir->basebuf gets reused by the traversal, but we1244 * need fname to remain unchanged to ensure the src1245 * member of each struct exclude correctly1246 * back-references its source file. Other invocations1247 * of add_exclude_list provide stable strings, so we1248 * strbuf_detach() and free() here in the caller.1249 */1250struct strbuf sb = STRBUF_INIT;1251strbuf_addbuf(&sb, &dir->basebuf);1252strbuf_addstr(&sb, dir->exclude_per_dir);1253 el->src =strbuf_detach(&sb, NULL);1254add_excludes(el->src, el->src, stk->baselen, el, istate,1255 untracked ? &sha1_stat : NULL);1256}1257/*1258 * NEEDSWORK: when untracked cache is enabled, prep_exclude()1259 * will first be called in valid_cached_dir() then maybe many1260 * times more in last_exclude_matching(). When the cache is1261 * used, last_exclude_matching() will not be called and1262 * reading .gitignore content will be a waste.1263 *1264 * So when it's called by valid_cached_dir() and we can get1265 * .gitignore SHA-1 from the index (i.e. .gitignore is not1266 * modified on work tree), we could delay reading the1267 * .gitignore content until we absolutely need it in1268 * last_exclude_matching(). Be careful about ignore rule1269 * order, though, if you do that.1270 */1271if(untracked &&1272hashcmp(sha1_stat.sha1, untracked->exclude_sha1)) {1273invalidate_gitignore(dir->untracked, untracked);1274hashcpy(untracked->exclude_sha1, sha1_stat.sha1);1275}1276 dir->exclude_stack = stk;1277 current = stk->baselen;1278}1279strbuf_setlen(&dir->basebuf, baselen);1280}12811282/*1283 * Loads the exclude lists for the directory containing pathname, then1284 * scans all exclude lists to determine whether pathname is excluded.1285 * Returns the exclude_list element which matched, or NULL for1286 * undecided.1287 */1288struct exclude *last_exclude_matching(struct dir_struct *dir,1289struct index_state *istate,1290const char*pathname,1291int*dtype_p)1292{1293int pathlen =strlen(pathname);1294const char*basename =strrchr(pathname,'/');1295 basename = (basename) ? basename+1: pathname;12961297prep_exclude(dir, istate, pathname, basename-pathname);12981299if(dir->exclude)1300return dir->exclude;13011302returnlast_exclude_matching_from_lists(dir, istate, pathname, pathlen,1303 basename, dtype_p);1304}13051306/*1307 * Loads the exclude lists for the directory containing pathname, then1308 * scans all exclude lists to determine whether pathname is excluded.1309 * Returns 1 if true, otherwise 0.1310 */1311intis_excluded(struct dir_struct *dir,struct index_state *istate,1312const char*pathname,int*dtype_p)1313{1314struct exclude *exclude =1315last_exclude_matching(dir, istate, pathname, dtype_p);1316if(exclude)1317return exclude->flags & EXC_FLAG_NEGATIVE ?0:1;1318return0;1319}13201321static struct dir_entry *dir_entry_new(const char*pathname,int len)1322{1323struct dir_entry *ent;13241325FLEX_ALLOC_MEM(ent, name, pathname, len);1326 ent->len = len;1327return ent;1328}13291330static struct dir_entry *dir_add_name(struct dir_struct *dir,1331struct index_state *istate,1332const char*pathname,int len)1333{1334if(index_file_exists(istate, pathname, len, ignore_case))1335return NULL;13361337ALLOC_GROW(dir->entries, dir->nr+1, dir->alloc);1338return dir->entries[dir->nr++] =dir_entry_new(pathname, len);1339}13401341struct dir_entry *dir_add_ignored(struct dir_struct *dir,1342struct index_state *istate,1343const char*pathname,int len)1344{1345if(!index_name_is_other(istate, pathname, len))1346return NULL;13471348ALLOC_GROW(dir->ignored, dir->ignored_nr+1, dir->ignored_alloc);1349return dir->ignored[dir->ignored_nr++] =dir_entry_new(pathname, len);1350}13511352enum exist_status {1353 index_nonexistent =0,1354 index_directory,1355 index_gitdir1356};13571358/*1359 * Do not use the alphabetically sorted index to look up1360 * the directory name; instead, use the case insensitive1361 * directory hash.1362 */1363static enum exist_status directory_exists_in_index_icase(struct index_state *istate,1364const char*dirname,int len)1365{1366struct cache_entry *ce;13671368if(index_dir_exists(istate, dirname, len))1369return index_directory;13701371 ce =index_file_exists(istate, dirname, len, ignore_case);1372if(ce &&S_ISGITLINK(ce->ce_mode))1373return index_gitdir;13741375return index_nonexistent;1376}13771378/*1379 * The index sorts alphabetically by entry name, which1380 * means that a gitlink sorts as '\0' at the end, while1381 * a directory (which is defined not as an entry, but as1382 * the files it contains) will sort with the '/' at the1383 * end.1384 */1385static enum exist_status directory_exists_in_index(struct index_state *istate,1386const char*dirname,int len)1387{1388int pos;13891390if(ignore_case)1391returndirectory_exists_in_index_icase(istate, dirname, len);13921393 pos =index_name_pos(istate, dirname, len);1394if(pos <0)1395 pos = -pos-1;1396while(pos < istate->cache_nr) {1397const struct cache_entry *ce = istate->cache[pos++];1398unsigned char endchar;13991400if(strncmp(ce->name, dirname, len))1401break;1402 endchar = ce->name[len];1403if(endchar >'/')1404break;1405if(endchar =='/')1406return index_directory;1407if(!endchar &&S_ISGITLINK(ce->ce_mode))1408return index_gitdir;1409}1410return index_nonexistent;1411}14121413/*1414 * When we find a directory when traversing the filesystem, we1415 * have three distinct cases:1416 *1417 * - ignore it1418 * - see it as a directory1419 * - recurse into it1420 *1421 * and which one we choose depends on a combination of existing1422 * git index contents and the flags passed into the directory1423 * traversal routine.1424 *1425 * Case 1: If we *already* have entries in the index under that1426 * directory name, we always recurse into the directory to see1427 * all the files.1428 *1429 * Case 2: If we *already* have that directory name as a gitlink,1430 * we always continue to see it as a gitlink, regardless of whether1431 * there is an actual git directory there or not (it might not1432 * be checked out as a subproject!)1433 *1434 * Case 3: if we didn't have it in the index previously, we1435 * have a few sub-cases:1436 *1437 * (a) if "show_other_directories" is true, we show it as1438 * just a directory, unless "hide_empty_directories" is1439 * also true, in which case we need to check if it contains any1440 * untracked and / or ignored files.1441 * (b) if it looks like a git directory, and we don't have1442 * 'no_gitlinks' set we treat it as a gitlink, and show it1443 * as a directory.1444 * (c) otherwise, we recurse into it.1445 */1446static enum path_treatment treat_directory(struct dir_struct *dir,1447struct index_state *istate,1448struct untracked_cache_dir *untracked,1449const char*dirname,int len,int baselen,int exclude,1450const struct pathspec *pathspec)1451{1452/* The "len-1" is to strip the final '/' */1453switch(directory_exists_in_index(istate, dirname, len-1)) {1454case index_directory:1455return path_recurse;14561457case index_gitdir:1458return path_none;14591460case index_nonexistent:1461if(dir->flags & DIR_SHOW_OTHER_DIRECTORIES)1462break;1463if(exclude &&1464(dir->flags & DIR_SHOW_IGNORED_TOO) &&1465(dir->flags & DIR_SHOW_IGNORED_TOO_MODE_MATCHING)) {14661467/*1468 * This is an excluded directory and we are1469 * showing ignored paths that match an exclude1470 * pattern. (e.g. show directory as ignored1471 * only if it matches an exclude pattern).1472 * This path will either be 'path_excluded`1473 * (if we are showing empty directories or if1474 * the directory is not empty), or will be1475 * 'path_none' (empty directory, and we are1476 * not showing empty directories).1477 */1478if(!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))1479return path_excluded;14801481if(read_directory_recursive(dir, istate, dirname, len,1482 untracked,1,1, pathspec) == path_excluded)1483return path_excluded;14841485return path_none;1486}1487if(!(dir->flags & DIR_NO_GITLINKS)) {1488struct object_id oid;1489if(resolve_gitlink_ref(dirname,"HEAD", &oid) ==0)1490return exclude ? path_excluded : path_untracked;1491}1492return path_recurse;1493}14941495/* This is the "show_other_directories" case */14961497if(!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))1498return exclude ? path_excluded : path_untracked;14991500 untracked =lookup_untracked(dir->untracked, untracked,1501 dirname + baselen, len - baselen);15021503/*1504 * If this is an excluded directory, then we only need to check if1505 * the directory contains any files.1506 */1507returnread_directory_recursive(dir, istate, dirname, len,1508 untracked,1, exclude, pathspec);1509}15101511/*1512 * This is an inexact early pruning of any recursive directory1513 * reading - if the path cannot possibly be in the pathspec,1514 * return true, and we'll skip it early.1515 */1516static intsimplify_away(const char*path,int pathlen,1517const struct pathspec *pathspec)1518{1519int i;15201521if(!pathspec || !pathspec->nr)1522return0;15231524GUARD_PATHSPEC(pathspec,1525 PATHSPEC_FROMTOP |1526 PATHSPEC_MAXDEPTH |1527 PATHSPEC_LITERAL |1528 PATHSPEC_GLOB |1529 PATHSPEC_ICASE |1530 PATHSPEC_EXCLUDE |1531 PATHSPEC_ATTR);15321533for(i =0; i < pathspec->nr; i++) {1534const struct pathspec_item *item = &pathspec->items[i];1535int len = item->nowildcard_len;15361537if(len > pathlen)1538 len = pathlen;1539if(!ps_strncmp(item, item->match, path, len))1540return0;1541}15421543return1;1544}15451546/*1547 * This function tells us whether an excluded path matches a1548 * list of "interesting" pathspecs. That is, whether a path matched1549 * by any of the pathspecs could possibly be ignored by excluding1550 * the specified path. This can happen if:1551 *1552 * 1. the path is mentioned explicitly in the pathspec1553 *1554 * 2. the path is a directory prefix of some element in the1555 * pathspec1556 */1557static intexclude_matches_pathspec(const char*path,int pathlen,1558const struct pathspec *pathspec)1559{1560int i;15611562if(!pathspec || !pathspec->nr)1563return0;15641565GUARD_PATHSPEC(pathspec,1566 PATHSPEC_FROMTOP |1567 PATHSPEC_MAXDEPTH |1568 PATHSPEC_LITERAL |1569 PATHSPEC_GLOB |1570 PATHSPEC_ICASE |1571 PATHSPEC_EXCLUDE);15721573for(i =0; i < pathspec->nr; i++) {1574const struct pathspec_item *item = &pathspec->items[i];1575int len = item->nowildcard_len;15761577if(len == pathlen &&1578!ps_strncmp(item, item->match, path, pathlen))1579return1;1580if(len > pathlen &&1581 item->match[pathlen] =='/'&&1582!ps_strncmp(item, item->match, path, pathlen))1583return1;1584}1585return0;1586}15871588static intget_index_dtype(struct index_state *istate,1589const char*path,int len)1590{1591int pos;1592const struct cache_entry *ce;15931594 ce =index_file_exists(istate, path, len,0);1595if(ce) {1596if(!ce_uptodate(ce))1597return DT_UNKNOWN;1598if(S_ISGITLINK(ce->ce_mode))1599return DT_DIR;1600/*1601 * Nobody actually cares about the1602 * difference between DT_LNK and DT_REG1603 */1604return DT_REG;1605}16061607/* Try to look it up as a directory */1608 pos =index_name_pos(istate, path, len);1609if(pos >=0)1610return DT_UNKNOWN;1611 pos = -pos-1;1612while(pos < istate->cache_nr) {1613 ce = istate->cache[pos++];1614if(strncmp(ce->name, path, len))1615break;1616if(ce->name[len] >'/')1617break;1618if(ce->name[len] <'/')1619continue;1620if(!ce_uptodate(ce))1621break;/* continue? */1622return DT_DIR;1623}1624return DT_UNKNOWN;1625}16261627static intget_dtype(struct dirent *de,struct index_state *istate,1628const char*path,int len)1629{1630int dtype = de ?DTYPE(de) : DT_UNKNOWN;1631struct stat st;16321633if(dtype != DT_UNKNOWN)1634return dtype;1635 dtype =get_index_dtype(istate, path, len);1636if(dtype != DT_UNKNOWN)1637return dtype;1638if(lstat(path, &st))1639return dtype;1640if(S_ISREG(st.st_mode))1641return DT_REG;1642if(S_ISDIR(st.st_mode))1643return DT_DIR;1644if(S_ISLNK(st.st_mode))1645return DT_LNK;1646return dtype;1647}16481649static enum path_treatment treat_one_path(struct dir_struct *dir,1650struct untracked_cache_dir *untracked,1651struct index_state *istate,1652struct strbuf *path,1653int baselen,1654const struct pathspec *pathspec,1655int dtype,struct dirent *de)1656{1657int exclude;1658int has_path_in_index = !!index_file_exists(istate, path->buf, path->len, ignore_case);1659enum path_treatment path_treatment;16601661if(dtype == DT_UNKNOWN)1662 dtype =get_dtype(de, istate, path->buf, path->len);16631664/* Always exclude indexed files */1665if(dtype != DT_DIR && has_path_in_index)1666return path_none;16671668/*1669 * When we are looking at a directory P in the working tree,1670 * there are three cases:1671 *1672 * (1) P exists in the index. Everything inside the directory P in1673 * the working tree needs to go when P is checked out from the1674 * index.1675 *1676 * (2) P does not exist in the index, but there is P/Q in the index.1677 * We know P will stay a directory when we check out the contents1678 * of the index, but we do not know yet if there is a directory1679 * P/Q in the working tree to be killed, so we need to recurse.1680 *1681 * (3) P does not exist in the index, and there is no P/Q in the index1682 * to require P to be a directory, either. Only in this case, we1683 * know that everything inside P will not be killed without1684 * recursing.1685 */1686if((dir->flags & DIR_COLLECT_KILLED_ONLY) &&1687(dtype == DT_DIR) &&1688!has_path_in_index &&1689(directory_exists_in_index(istate, path->buf, path->len) == index_nonexistent))1690return path_none;16911692 exclude =is_excluded(dir, istate, path->buf, &dtype);16931694/*1695 * Excluded? If we don't explicitly want to show1696 * ignored files, ignore it1697 */1698if(exclude && !(dir->flags & (DIR_SHOW_IGNORED|DIR_SHOW_IGNORED_TOO)))1699return path_excluded;17001701switch(dtype) {1702default:1703return path_none;1704case DT_DIR:1705strbuf_addch(path,'/');1706 path_treatment =treat_directory(dir, istate, untracked,1707 path->buf, path->len,1708 baselen, exclude, pathspec);1709/*1710 * If 1) we only want to return directories that1711 * match an exclude pattern and 2) this directory does1712 * not match an exclude pattern but all of its1713 * contents are excluded, then indicate that we should1714 * recurse into this directory (instead of marking the1715 * directory itself as an ignored path).1716 */1717if(!exclude &&1718 path_treatment == path_excluded &&1719(dir->flags & DIR_SHOW_IGNORED_TOO) &&1720(dir->flags & DIR_SHOW_IGNORED_TOO_MODE_MATCHING))1721return path_recurse;1722return path_treatment;1723case DT_REG:1724case DT_LNK:1725return exclude ? path_excluded : path_untracked;1726}1727}17281729static enum path_treatment treat_path_fast(struct dir_struct *dir,1730struct untracked_cache_dir *untracked,1731struct cached_dir *cdir,1732struct index_state *istate,1733struct strbuf *path,1734int baselen,1735const struct pathspec *pathspec)1736{1737strbuf_setlen(path, baselen);1738if(!cdir->ucd) {1739strbuf_addstr(path, cdir->file);1740return path_untracked;1741}1742strbuf_addstr(path, cdir->ucd->name);1743/* treat_one_path() does this before it calls treat_directory() */1744strbuf_complete(path,'/');1745if(cdir->ucd->check_only)1746/*1747 * check_only is set as a result of treat_directory() getting1748 * to its bottom. Verify again the same set of directories1749 * with check_only set.1750 */1751returnread_directory_recursive(dir, istate, path->buf, path->len,1752 cdir->ucd,1,0, pathspec);1753/*1754 * We get path_recurse in the first run when1755 * directory_exists_in_index() returns index_nonexistent. We1756 * are sure that new changes in the index does not impact the1757 * outcome. Return now.1758 */1759return path_recurse;1760}17611762static enum path_treatment treat_path(struct dir_struct *dir,1763struct untracked_cache_dir *untracked,1764struct cached_dir *cdir,1765struct index_state *istate,1766struct strbuf *path,1767int baselen,1768const struct pathspec *pathspec)1769{1770int dtype;1771struct dirent *de = cdir->de;17721773if(!de)1774returntreat_path_fast(dir, untracked, cdir, istate, path,1775 baselen, pathspec);1776if(is_dot_or_dotdot(de->d_name) || !strcmp(de->d_name,".git"))1777return path_none;1778strbuf_setlen(path, baselen);1779strbuf_addstr(path, de->d_name);1780if(simplify_away(path->buf, path->len, pathspec))1781return path_none;17821783 dtype =DTYPE(de);1784returntreat_one_path(dir, untracked, istate, path, baselen, pathspec, dtype, de);1785}17861787static voidadd_untracked(struct untracked_cache_dir *dir,const char*name)1788{1789if(!dir)1790return;1791ALLOC_GROW(dir->untracked, dir->untracked_nr +1,1792 dir->untracked_alloc);1793 dir->untracked[dir->untracked_nr++] =xstrdup(name);1794}17951796static intvalid_cached_dir(struct dir_struct *dir,1797struct untracked_cache_dir *untracked,1798struct index_state *istate,1799struct strbuf *path,1800int check_only)1801{1802struct stat st;18031804if(!untracked)1805return0;18061807/*1808 * With fsmonitor, we can trust the untracked cache's valid field.1809 */1810refresh_fsmonitor(istate);1811if(!(dir->untracked->use_fsmonitor && untracked->valid)) {1812if(stat(path->len ? path->buf :".", &st)) {1813invalidate_directory(dir->untracked, untracked);1814memset(&untracked->stat_data,0,sizeof(untracked->stat_data));1815return0;1816}1817if(!untracked->valid ||1818match_stat_data_racy(istate, &untracked->stat_data, &st)) {1819if(untracked->valid)1820invalidate_directory(dir->untracked, untracked);1821fill_stat_data(&untracked->stat_data, &st);1822return0;1823}1824}18251826if(untracked->check_only != !!check_only) {1827invalidate_directory(dir->untracked, untracked);1828return0;1829}18301831/*1832 * prep_exclude will be called eventually on this directory,1833 * but it's called much later in last_exclude_matching(). We1834 * need it now to determine the validity of the cache for this1835 * path. The next calls will be nearly no-op, the way1836 * prep_exclude() is designed.1837 */1838if(path->len && path->buf[path->len -1] !='/') {1839strbuf_addch(path,'/');1840prep_exclude(dir, istate, path->buf, path->len);1841strbuf_setlen(path, path->len -1);1842}else1843prep_exclude(dir, istate, path->buf, path->len);18441845/* hopefully prep_exclude() haven't invalidated this entry... */1846return untracked->valid;1847}18481849static intopen_cached_dir(struct cached_dir *cdir,1850struct dir_struct *dir,1851struct untracked_cache_dir *untracked,1852struct index_state *istate,1853struct strbuf *path,1854int check_only)1855{1856memset(cdir,0,sizeof(*cdir));1857 cdir->untracked = untracked;1858if(valid_cached_dir(dir, untracked, istate, path, check_only))1859return0;1860 cdir->fdir =opendir(path->len ? path->buf :".");1861if(dir->untracked)1862 dir->untracked->dir_opened++;1863if(!cdir->fdir)1864return-1;1865return0;1866}18671868static intread_cached_dir(struct cached_dir *cdir)1869{1870if(cdir->fdir) {1871 cdir->de =readdir(cdir->fdir);1872if(!cdir->de)1873return-1;1874return0;1875}1876while(cdir->nr_dirs < cdir->untracked->dirs_nr) {1877struct untracked_cache_dir *d = cdir->untracked->dirs[cdir->nr_dirs];1878if(!d->recurse) {1879 cdir->nr_dirs++;1880continue;1881}1882 cdir->ucd = d;1883 cdir->nr_dirs++;1884return0;1885}1886 cdir->ucd = NULL;1887if(cdir->nr_files < cdir->untracked->untracked_nr) {1888struct untracked_cache_dir *d = cdir->untracked;1889 cdir->file = d->untracked[cdir->nr_files++];1890return0;1891}1892return-1;1893}18941895static voidclose_cached_dir(struct cached_dir *cdir)1896{1897if(cdir->fdir)1898closedir(cdir->fdir);1899/*1900 * We have gone through this directory and found no untracked1901 * entries. Mark it valid.1902 */1903if(cdir->untracked) {1904 cdir->untracked->valid =1;1905 cdir->untracked->recurse =1;1906}1907}19081909/*1910 * Read a directory tree. We currently ignore anything but1911 * directories, regular files and symlinks. That's because git1912 * doesn't handle them at all yet. Maybe that will change some1913 * day.1914 *1915 * Also, we ignore the name ".git" (even if it is not a directory).1916 * That likely will not change.1917 *1918 * If 'stop_at_first_file' is specified, 'path_excluded' is returned1919 * to signal that a file was found. This is the least significant value that1920 * indicates that a file was encountered that does not depend on the order of1921 * whether an untracked or exluded path was encountered first.1922 *1923 * Returns the most significant path_treatment value encountered in the scan.1924 * If 'stop_at_first_file' is specified, `path_excluded` is the most1925 * significant path_treatment value that will be returned.1926 */19271928static enum path_treatment read_directory_recursive(struct dir_struct *dir,1929struct index_state *istate,const char*base,int baselen,1930struct untracked_cache_dir *untracked,int check_only,1931int stop_at_first_file,const struct pathspec *pathspec)1932{1933struct cached_dir cdir;1934enum path_treatment state, subdir_state, dir_state = path_none;1935struct strbuf path = STRBUF_INIT;19361937strbuf_add(&path, base, baselen);19381939if(open_cached_dir(&cdir, dir, untracked, istate, &path, check_only))1940goto out;19411942if(untracked)1943 untracked->check_only = !!check_only;19441945while(!read_cached_dir(&cdir)) {1946/* check how the file or directory should be treated */1947 state =treat_path(dir, untracked, &cdir, istate, &path,1948 baselen, pathspec);19491950if(state > dir_state)1951 dir_state = state;19521953/* recurse into subdir if instructed by treat_path */1954if((state == path_recurse) ||1955((state == path_untracked) &&1956(dir->flags & DIR_SHOW_IGNORED_TOO) &&1957(get_dtype(cdir.de, istate, path.buf, path.len) == DT_DIR))) {1958struct untracked_cache_dir *ud;1959 ud =lookup_untracked(dir->untracked, untracked,1960 path.buf + baselen,1961 path.len - baselen);1962 subdir_state =1963read_directory_recursive(dir, istate, path.buf,1964 path.len, ud,1965 check_only, stop_at_first_file, pathspec);1966if(subdir_state > dir_state)1967 dir_state = subdir_state;1968}19691970if(check_only) {1971if(stop_at_first_file) {1972/*1973 * If stopping at first file, then1974 * signal that a file was found by1975 * returning `path_excluded`. This is1976 * to return a consistent value1977 * regardless of whether an ignored or1978 * excluded file happened to be1979 * encountered 1st.1980 *1981 * In current usage, the1982 * `stop_at_first_file` is passed when1983 * an ancestor directory has matched1984 * an exclude pattern, so any found1985 * files will be excluded.1986 */1987if(dir_state >= path_excluded) {1988 dir_state = path_excluded;1989break;1990}1991}19921993/* abort early if maximum state has been reached */1994if(dir_state == path_untracked) {1995if(cdir.fdir)1996add_untracked(untracked, path.buf + baselen);1997break;1998}1999/* skip the dir_add_* part */2000continue;2001}20022003/* add the path to the appropriate result list */2004switch(state) {2005case path_excluded:2006if(dir->flags & DIR_SHOW_IGNORED)2007dir_add_name(dir, istate, path.buf, path.len);2008else if((dir->flags & DIR_SHOW_IGNORED_TOO) ||2009((dir->flags & DIR_COLLECT_IGNORED) &&2010exclude_matches_pathspec(path.buf, path.len,2011 pathspec)))2012dir_add_ignored(dir, istate, path.buf, path.len);2013break;20142015case path_untracked:2016if(dir->flags & DIR_SHOW_IGNORED)2017break;2018dir_add_name(dir, istate, path.buf, path.len);2019if(cdir.fdir)2020add_untracked(untracked, path.buf + baselen);2021break;20222023default:2024break;2025}2026}2027close_cached_dir(&cdir);2028 out:2029strbuf_release(&path);20302031return dir_state;2032}20332034intcmp_dir_entry(const void*p1,const void*p2)2035{2036const struct dir_entry *e1 = *(const struct dir_entry **)p1;2037const struct dir_entry *e2 = *(const struct dir_entry **)p2;20382039returnname_compare(e1->name, e1->len, e2->name, e2->len);2040}20412042/* check if *out lexically strictly contains *in */2043intcheck_dir_entry_contains(const struct dir_entry *out,const struct dir_entry *in)2044{2045return(out->len < in->len) &&2046(out->name[out->len -1] =='/') &&2047!memcmp(out->name, in->name, out->len);2048}20492050static inttreat_leading_path(struct dir_struct *dir,2051struct index_state *istate,2052const char*path,int len,2053const struct pathspec *pathspec)2054{2055struct strbuf sb = STRBUF_INIT;2056int baselen, rc =0;2057const char*cp;2058int old_flags = dir->flags;20592060while(len && path[len -1] =='/')2061 len--;2062if(!len)2063return1;2064 baselen =0;2065 dir->flags &= ~DIR_SHOW_OTHER_DIRECTORIES;2066while(1) {2067 cp = path + baselen + !!baselen;2068 cp =memchr(cp,'/', path + len - cp);2069if(!cp)2070 baselen = len;2071else2072 baselen = cp - path;2073strbuf_setlen(&sb,0);2074strbuf_add(&sb, path, baselen);2075if(!is_directory(sb.buf))2076break;2077if(simplify_away(sb.buf, sb.len, pathspec))2078break;2079if(treat_one_path(dir, NULL, istate, &sb, baselen, pathspec,2080 DT_DIR, NULL) == path_none)2081break;/* do not recurse into it */2082if(len <= baselen) {2083 rc =1;2084break;/* finished checking */2085}2086}2087strbuf_release(&sb);2088 dir->flags = old_flags;2089return rc;2090}20912092static const char*get_ident_string(void)2093{2094static struct strbuf sb = STRBUF_INIT;2095struct utsname uts;20962097if(sb.len)2098return sb.buf;2099if(uname(&uts) <0)2100die_errno(_("failed to get kernel name and information"));2101strbuf_addf(&sb,"Location%s, system%s",get_git_work_tree(),2102 uts.sysname);2103return sb.buf;2104}21052106static intident_in_untracked(const struct untracked_cache *uc)2107{2108/*2109 * Previous git versions may have saved many NUL separated2110 * strings in the "ident" field, but it is insane to manage2111 * many locations, so just take care of the first one.2112 */21132114return!strcmp(uc->ident.buf,get_ident_string());2115}21162117static voidset_untracked_ident(struct untracked_cache *uc)2118{2119strbuf_reset(&uc->ident);2120strbuf_addstr(&uc->ident,get_ident_string());21212122/*2123 * This strbuf used to contain a list of NUL separated2124 * strings, so save NUL too for backward compatibility.2125 */2126strbuf_addch(&uc->ident,0);2127}21282129static voidnew_untracked_cache(struct index_state *istate)2130{2131struct untracked_cache *uc =xcalloc(1,sizeof(*uc));2132strbuf_init(&uc->ident,100);2133 uc->exclude_per_dir =".gitignore";2134/* should be the same flags used by git-status */2135 uc->dir_flags = DIR_SHOW_OTHER_DIRECTORIES | DIR_HIDE_EMPTY_DIRECTORIES;2136set_untracked_ident(uc);2137 istate->untracked = uc;2138 istate->cache_changed |= UNTRACKED_CHANGED;2139}21402141voidadd_untracked_cache(struct index_state *istate)2142{2143if(!istate->untracked) {2144new_untracked_cache(istate);2145}else{2146if(!ident_in_untracked(istate->untracked)) {2147free_untracked_cache(istate->untracked);2148new_untracked_cache(istate);2149}2150}2151}21522153voidremove_untracked_cache(struct index_state *istate)2154{2155if(istate->untracked) {2156free_untracked_cache(istate->untracked);2157 istate->untracked = NULL;2158 istate->cache_changed |= UNTRACKED_CHANGED;2159}2160}21612162static struct untracked_cache_dir *validate_untracked_cache(struct dir_struct *dir,2163int base_len,2164const struct pathspec *pathspec)2165{2166struct untracked_cache_dir *root;21672168if(!dir->untracked ||getenv("GIT_DISABLE_UNTRACKED_CACHE"))2169return NULL;21702171/*2172 * We only support $GIT_DIR/info/exclude and core.excludesfile2173 * as the global ignore rule files. Any other additions2174 * (e.g. from command line) invalidate the cache. This2175 * condition also catches running setup_standard_excludes()2176 * before setting dir->untracked!2177 */2178if(dir->unmanaged_exclude_files)2179return NULL;21802181/*2182 * Optimize for the main use case only: whole-tree git2183 * status. More work involved in treat_leading_path() if we2184 * use cache on just a subset of the worktree. pathspec2185 * support could make the matter even worse.2186 */2187if(base_len || (pathspec && pathspec->nr))2188return NULL;21892190/* Different set of flags may produce different results */2191if(dir->flags != dir->untracked->dir_flags ||2192/*2193 * See treat_directory(), case index_nonexistent. Without2194 * this flag, we may need to also cache .git file content2195 * for the resolve_gitlink_ref() call, which we don't.2196 */2197!(dir->flags & DIR_SHOW_OTHER_DIRECTORIES) ||2198/* We don't support collecting ignore files */2199(dir->flags & (DIR_SHOW_IGNORED | DIR_SHOW_IGNORED_TOO |2200 DIR_COLLECT_IGNORED)))2201return NULL;22022203/*2204 * If we use .gitignore in the cache and now you change it to2205 * .gitexclude, everything will go wrong.2206 */2207if(dir->exclude_per_dir != dir->untracked->exclude_per_dir &&2208strcmp(dir->exclude_per_dir, dir->untracked->exclude_per_dir))2209return NULL;22102211/*2212 * EXC_CMDL is not considered in the cache. If people set it,2213 * skip the cache.2214 */2215if(dir->exclude_list_group[EXC_CMDL].nr)2216return NULL;22172218if(!ident_in_untracked(dir->untracked)) {2219warning(_("Untracked cache is disabled on this system or location."));2220return NULL;2221}22222223if(!dir->untracked->root) {2224const int len =sizeof(*dir->untracked->root);2225 dir->untracked->root =xmalloc(len);2226memset(dir->untracked->root,0, len);2227}22282229/* Validate $GIT_DIR/info/exclude and core.excludesfile */2230 root = dir->untracked->root;2231if(hashcmp(dir->ss_info_exclude.sha1,2232 dir->untracked->ss_info_exclude.sha1)) {2233invalidate_gitignore(dir->untracked, root);2234 dir->untracked->ss_info_exclude = dir->ss_info_exclude;2235}2236if(hashcmp(dir->ss_excludes_file.sha1,2237 dir->untracked->ss_excludes_file.sha1)) {2238invalidate_gitignore(dir->untracked, root);2239 dir->untracked->ss_excludes_file = dir->ss_excludes_file;2240}22412242/* Make sure this directory is not dropped out at saving phase */2243 root->recurse =1;2244return root;2245}22462247intread_directory(struct dir_struct *dir,struct index_state *istate,2248const char*path,int len,const struct pathspec *pathspec)2249{2250struct untracked_cache_dir *untracked;22512252if(has_symlink_leading_path(path, len))2253return dir->nr;22542255 untracked =validate_untracked_cache(dir, len, pathspec);2256if(!untracked)2257/*2258 * make sure untracked cache code path is disabled,2259 * e.g. prep_exclude()2260 */2261 dir->untracked = NULL;2262if(!len ||treat_leading_path(dir, istate, path, len, pathspec))2263read_directory_recursive(dir, istate, path, len, untracked,0,0, pathspec);2264QSORT(dir->entries, dir->nr, cmp_dir_entry);2265QSORT(dir->ignored, dir->ignored_nr, cmp_dir_entry);22662267/*2268 * If DIR_SHOW_IGNORED_TOO is set, read_directory_recursive() will2269 * also pick up untracked contents of untracked dirs; by default2270 * we discard these, but given DIR_KEEP_UNTRACKED_CONTENTS we do not.2271 */2272if((dir->flags & DIR_SHOW_IGNORED_TOO) &&2273!(dir->flags & DIR_KEEP_UNTRACKED_CONTENTS)) {2274int i, j;22752276/* remove from dir->entries untracked contents of untracked dirs */2277for(i = j =0; j < dir->nr; j++) {2278if(i &&2279check_dir_entry_contains(dir->entries[i -1], dir->entries[j])) {2280FREE_AND_NULL(dir->entries[j]);2281}else{2282 dir->entries[i++] = dir->entries[j];2283}2284}22852286 dir->nr = i;2287}22882289if(dir->untracked) {2290static struct trace_key trace_untracked_stats =TRACE_KEY_INIT(UNTRACKED_STATS);2291trace_printf_key(&trace_untracked_stats,2292"node creation:%u\n"2293"gitignore invalidation:%u\n"2294"directory invalidation:%u\n"2295"opendir:%u\n",2296 dir->untracked->dir_created,2297 dir->untracked->gitignore_invalidated,2298 dir->untracked->dir_invalidated,2299 dir->untracked->dir_opened);2300if(dir->untracked == istate->untracked &&2301(dir->untracked->dir_opened ||2302 dir->untracked->gitignore_invalidated ||2303 dir->untracked->dir_invalidated))2304 istate->cache_changed |= UNTRACKED_CHANGED;2305if(dir->untracked != istate->untracked) {2306FREE_AND_NULL(dir->untracked);2307}2308}2309return dir->nr;2310}23112312intfile_exists(const char*f)2313{2314struct stat sb;2315returnlstat(f, &sb) ==0;2316}23172318static intcmp_icase(char a,char b)2319{2320if(a == b)2321return0;2322if(ignore_case)2323returntoupper(a) -toupper(b);2324return a - b;2325}23262327/*2328 * Given two normalized paths (a trailing slash is ok), if subdir is2329 * outside dir, return -1. Otherwise return the offset in subdir that2330 * can be used as relative path to dir.2331 */2332intdir_inside_of(const char*subdir,const char*dir)2333{2334int offset =0;23352336assert(dir && subdir && *dir && *subdir);23372338while(*dir && *subdir && !cmp_icase(*dir, *subdir)) {2339 dir++;2340 subdir++;2341 offset++;2342}23432344/* hel[p]/me vs hel[l]/yeah */2345if(*dir && *subdir)2346return-1;23472348if(!*subdir)2349return!*dir ? offset : -1;/* same dir */23502351/* foo/[b]ar vs foo/[] */2352if(is_dir_sep(dir[-1]))2353returnis_dir_sep(subdir[-1]) ? offset : -1;23542355/* foo[/]bar vs foo[] */2356returnis_dir_sep(*subdir) ? offset +1: -1;2357}23582359intis_inside_dir(const char*dir)2360{2361char*cwd;2362int rc;23632364if(!dir)2365return0;23662367 cwd =xgetcwd();2368 rc = (dir_inside_of(cwd, dir) >=0);2369free(cwd);2370return rc;2371}23722373intis_empty_dir(const char*path)2374{2375DIR*dir =opendir(path);2376struct dirent *e;2377int ret =1;23782379if(!dir)2380return0;23812382while((e =readdir(dir)) != NULL)2383if(!is_dot_or_dotdot(e->d_name)) {2384 ret =0;2385break;2386}23872388closedir(dir);2389return ret;2390}23912392static intremove_dir_recurse(struct strbuf *path,int flag,int*kept_up)2393{2394DIR*dir;2395struct dirent *e;2396int ret =0, original_len = path->len, len, kept_down =0;2397int only_empty = (flag & REMOVE_DIR_EMPTY_ONLY);2398int keep_toplevel = (flag & REMOVE_DIR_KEEP_TOPLEVEL);2399struct object_id submodule_head;24002401if((flag & REMOVE_DIR_KEEP_NESTED_GIT) &&2402!resolve_gitlink_ref(path->buf,"HEAD", &submodule_head)) {2403/* Do not descend and nuke a nested git work tree. */2404if(kept_up)2405*kept_up =1;2406return0;2407}24082409 flag &= ~REMOVE_DIR_KEEP_TOPLEVEL;2410 dir =opendir(path->buf);2411if(!dir) {2412if(errno == ENOENT)2413return keep_toplevel ? -1:0;2414else if(errno == EACCES && !keep_toplevel)2415/*2416 * An empty dir could be removable even if it2417 * is unreadable:2418 */2419returnrmdir(path->buf);2420else2421return-1;2422}2423strbuf_complete(path,'/');24242425 len = path->len;2426while((e =readdir(dir)) != NULL) {2427struct stat st;2428if(is_dot_or_dotdot(e->d_name))2429continue;24302431strbuf_setlen(path, len);2432strbuf_addstr(path, e->d_name);2433if(lstat(path->buf, &st)) {2434if(errno == ENOENT)2435/*2436 * file disappeared, which is what we2437 * wanted anyway2438 */2439continue;2440/* fall thru */2441}else if(S_ISDIR(st.st_mode)) {2442if(!remove_dir_recurse(path, flag, &kept_down))2443continue;/* happy */2444}else if(!only_empty &&2445(!unlink(path->buf) || errno == ENOENT)) {2446continue;/* happy, too */2447}24482449/* path too long, stat fails, or non-directory still exists */2450 ret = -1;2451break;2452}2453closedir(dir);24542455strbuf_setlen(path, original_len);2456if(!ret && !keep_toplevel && !kept_down)2457 ret = (!rmdir(path->buf) || errno == ENOENT) ?0: -1;2458else if(kept_up)2459/*2460 * report the uplevel that it is not an error that we2461 * did not rmdir() our directory.2462 */2463*kept_up = !ret;2464return ret;2465}24662467intremove_dir_recursively(struct strbuf *path,int flag)2468{2469returnremove_dir_recurse(path, flag, NULL);2470}24712472staticGIT_PATH_FUNC(git_path_info_exclude,"info/exclude")24732474voidsetup_standard_excludes(struct dir_struct *dir)2475{2476 dir->exclude_per_dir =".gitignore";24772478/* core.excludefile defaulting to $XDG_HOME/git/ignore */2479if(!excludes_file)2480 excludes_file =xdg_config_home("ignore");2481if(excludes_file && !access_or_warn(excludes_file, R_OK,0))2482add_excludes_from_file_1(dir, excludes_file,2483 dir->untracked ? &dir->ss_excludes_file : NULL);24842485/* per repository user preference */2486if(startup_info->have_repository) {2487const char*path =git_path_info_exclude();2488if(!access_or_warn(path, R_OK,0))2489add_excludes_from_file_1(dir, path,2490 dir->untracked ? &dir->ss_info_exclude : NULL);2491}2492}24932494intremove_path(const char*name)2495{2496char*slash;24972498if(unlink(name) && !is_missing_file_error(errno))2499return-1;25002501 slash =strrchr(name,'/');2502if(slash) {2503char*dirs =xstrdup(name);2504 slash = dirs + (slash - name);2505do{2506*slash ='\0';2507}while(rmdir(dirs) ==0&& (slash =strrchr(dirs,'/')));2508free(dirs);2509}2510return0;2511}25122513/*2514 * Frees memory within dir which was allocated for exclude lists and2515 * the exclude_stack. Does not free dir itself.2516 */2517voidclear_directory(struct dir_struct *dir)2518{2519int i, j;2520struct exclude_list_group *group;2521struct exclude_list *el;2522struct exclude_stack *stk;25232524for(i = EXC_CMDL; i <= EXC_FILE; i++) {2525 group = &dir->exclude_list_group[i];2526for(j =0; j < group->nr; j++) {2527 el = &group->el[j];2528if(i == EXC_DIRS)2529free((char*)el->src);2530clear_exclude_list(el);2531}2532free(group->el);2533}25342535 stk = dir->exclude_stack;2536while(stk) {2537struct exclude_stack *prev = stk->prev;2538free(stk);2539 stk = prev;2540}2541strbuf_release(&dir->basebuf);2542}25432544struct ondisk_untracked_cache {2545struct stat_data info_exclude_stat;2546struct stat_data excludes_file_stat;2547uint32_t dir_flags;2548unsigned char info_exclude_sha1[20];2549unsigned char excludes_file_sha1[20];2550char exclude_per_dir[FLEX_ARRAY];2551};25522553#define ouc_offset(x) offsetof(struct ondisk_untracked_cache, x)2554#define ouc_size(len) (ouc_offset(exclude_per_dir) + len + 1)25552556struct write_data {2557int index;/* number of written untracked_cache_dir */2558struct ewah_bitmap *check_only;/* from untracked_cache_dir */2559struct ewah_bitmap *valid;/* from untracked_cache_dir */2560struct ewah_bitmap *sha1_valid;/* set if exclude_sha1 is not null */2561struct strbuf out;2562struct strbuf sb_stat;2563struct strbuf sb_sha1;2564};25652566static voidstat_data_to_disk(struct stat_data *to,const struct stat_data *from)2567{2568 to->sd_ctime.sec =htonl(from->sd_ctime.sec);2569 to->sd_ctime.nsec =htonl(from->sd_ctime.nsec);2570 to->sd_mtime.sec =htonl(from->sd_mtime.sec);2571 to->sd_mtime.nsec =htonl(from->sd_mtime.nsec);2572 to->sd_dev =htonl(from->sd_dev);2573 to->sd_ino =htonl(from->sd_ino);2574 to->sd_uid =htonl(from->sd_uid);2575 to->sd_gid =htonl(from->sd_gid);2576 to->sd_size =htonl(from->sd_size);2577}25782579static voidwrite_one_dir(struct untracked_cache_dir *untracked,2580struct write_data *wd)2581{2582struct stat_data stat_data;2583struct strbuf *out = &wd->out;2584unsigned char intbuf[16];2585unsigned int intlen, value;2586int i = wd->index++;25872588/*2589 * untracked_nr should be reset whenever valid is clear, but2590 * for safety..2591 */2592if(!untracked->valid) {2593 untracked->untracked_nr =0;2594 untracked->check_only =0;2595}25962597if(untracked->check_only)2598ewah_set(wd->check_only, i);2599if(untracked->valid) {2600ewah_set(wd->valid, i);2601stat_data_to_disk(&stat_data, &untracked->stat_data);2602strbuf_add(&wd->sb_stat, &stat_data,sizeof(stat_data));2603}2604if(!is_null_sha1(untracked->exclude_sha1)) {2605ewah_set(wd->sha1_valid, i);2606strbuf_add(&wd->sb_sha1, untracked->exclude_sha1,20);2607}26082609 intlen =encode_varint(untracked->untracked_nr, intbuf);2610strbuf_add(out, intbuf, intlen);26112612/* skip non-recurse directories */2613for(i =0, value =0; i < untracked->dirs_nr; i++)2614if(untracked->dirs[i]->recurse)2615 value++;2616 intlen =encode_varint(value, intbuf);2617strbuf_add(out, intbuf, intlen);26182619strbuf_add(out, untracked->name,strlen(untracked->name) +1);26202621for(i =0; i < untracked->untracked_nr; i++)2622strbuf_add(out, untracked->untracked[i],2623strlen(untracked->untracked[i]) +1);26242625for(i =0; i < untracked->dirs_nr; i++)2626if(untracked->dirs[i]->recurse)2627write_one_dir(untracked->dirs[i], wd);2628}26292630voidwrite_untracked_extension(struct strbuf *out,struct untracked_cache *untracked)2631{2632struct ondisk_untracked_cache *ouc;2633struct write_data wd;2634unsigned char varbuf[16];2635int varint_len;2636size_t len =strlen(untracked->exclude_per_dir);26372638FLEX_ALLOC_MEM(ouc, exclude_per_dir, untracked->exclude_per_dir, len);2639stat_data_to_disk(&ouc->info_exclude_stat, &untracked->ss_info_exclude.stat);2640stat_data_to_disk(&ouc->excludes_file_stat, &untracked->ss_excludes_file.stat);2641hashcpy(ouc->info_exclude_sha1, untracked->ss_info_exclude.sha1);2642hashcpy(ouc->excludes_file_sha1, untracked->ss_excludes_file.sha1);2643 ouc->dir_flags =htonl(untracked->dir_flags);26442645 varint_len =encode_varint(untracked->ident.len, varbuf);2646strbuf_add(out, varbuf, varint_len);2647strbuf_addbuf(out, &untracked->ident);26482649strbuf_add(out, ouc,ouc_size(len));2650FREE_AND_NULL(ouc);26512652if(!untracked->root) {2653 varint_len =encode_varint(0, varbuf);2654strbuf_add(out, varbuf, varint_len);2655return;2656}26572658 wd.index =0;2659 wd.check_only =ewah_new();2660 wd.valid =ewah_new();2661 wd.sha1_valid =ewah_new();2662strbuf_init(&wd.out,1024);2663strbuf_init(&wd.sb_stat,1024);2664strbuf_init(&wd.sb_sha1,1024);2665write_one_dir(untracked->root, &wd);26662667 varint_len =encode_varint(wd.index, varbuf);2668strbuf_add(out, varbuf, varint_len);2669strbuf_addbuf(out, &wd.out);2670ewah_serialize_strbuf(wd.valid, out);2671ewah_serialize_strbuf(wd.check_only, out);2672ewah_serialize_strbuf(wd.sha1_valid, out);2673strbuf_addbuf(out, &wd.sb_stat);2674strbuf_addbuf(out, &wd.sb_sha1);2675strbuf_addch(out,'\0');/* safe guard for string lists */26762677ewah_free(wd.valid);2678ewah_free(wd.check_only);2679ewah_free(wd.sha1_valid);2680strbuf_release(&wd.out);2681strbuf_release(&wd.sb_stat);2682strbuf_release(&wd.sb_sha1);2683}26842685static voidfree_untracked(struct untracked_cache_dir *ucd)2686{2687int i;2688if(!ucd)2689return;2690for(i =0; i < ucd->dirs_nr; i++)2691free_untracked(ucd->dirs[i]);2692for(i =0; i < ucd->untracked_nr; i++)2693free(ucd->untracked[i]);2694free(ucd->untracked);2695free(ucd->dirs);2696free(ucd);2697}26982699voidfree_untracked_cache(struct untracked_cache *uc)2700{2701if(uc)2702free_untracked(uc->root);2703free(uc);2704}27052706struct read_data {2707int index;2708struct untracked_cache_dir **ucd;2709struct ewah_bitmap *check_only;2710struct ewah_bitmap *valid;2711struct ewah_bitmap *sha1_valid;2712const unsigned char*data;2713const unsigned char*end;2714};27152716static voidstat_data_from_disk(struct stat_data *to,const unsigned char*data)2717{2718memcpy(to, data,sizeof(*to));2719 to->sd_ctime.sec =ntohl(to->sd_ctime.sec);2720 to->sd_ctime.nsec =ntohl(to->sd_ctime.nsec);2721 to->sd_mtime.sec =ntohl(to->sd_mtime.sec);2722 to->sd_mtime.nsec =ntohl(to->sd_mtime.nsec);2723 to->sd_dev =ntohl(to->sd_dev);2724 to->sd_ino =ntohl(to->sd_ino);2725 to->sd_uid =ntohl(to->sd_uid);2726 to->sd_gid =ntohl(to->sd_gid);2727 to->sd_size =ntohl(to->sd_size);2728}27292730static intread_one_dir(struct untracked_cache_dir **untracked_,2731struct read_data *rd)2732{2733struct untracked_cache_dir ud, *untracked;2734const unsigned char*next, *data = rd->data, *end = rd->end;2735unsigned int value;2736int i, len;27372738memset(&ud,0,sizeof(ud));27392740 next = data;2741 value =decode_varint(&next);2742if(next > end)2743return-1;2744 ud.recurse =1;2745 ud.untracked_alloc = value;2746 ud.untracked_nr = value;2747if(ud.untracked_nr)2748ALLOC_ARRAY(ud.untracked, ud.untracked_nr);2749 data = next;27502751 next = data;2752 ud.dirs_alloc = ud.dirs_nr =decode_varint(&next);2753if(next > end)2754return-1;2755ALLOC_ARRAY(ud.dirs, ud.dirs_nr);2756 data = next;27572758 len =strlen((const char*)data);2759 next = data + len +1;2760if(next > rd->end)2761return-1;2762*untracked_ = untracked =xmalloc(st_add(sizeof(*untracked), len));2763memcpy(untracked, &ud,sizeof(ud));2764memcpy(untracked->name, data, len +1);2765 data = next;27662767for(i =0; i < untracked->untracked_nr; i++) {2768 len =strlen((const char*)data);2769 next = data + len +1;2770if(next > rd->end)2771return-1;2772 untracked->untracked[i] =xstrdup((const char*)data);2773 data = next;2774}27752776 rd->ucd[rd->index++] = untracked;2777 rd->data = data;27782779for(i =0; i < untracked->dirs_nr; i++) {2780 len =read_one_dir(untracked->dirs + i, rd);2781if(len <0)2782return-1;2783}2784return0;2785}27862787static voidset_check_only(size_t pos,void*cb)2788{2789struct read_data *rd = cb;2790struct untracked_cache_dir *ud = rd->ucd[pos];2791 ud->check_only =1;2792}27932794static voidread_stat(size_t pos,void*cb)2795{2796struct read_data *rd = cb;2797struct untracked_cache_dir *ud = rd->ucd[pos];2798if(rd->data +sizeof(struct stat_data) > rd->end) {2799 rd->data = rd->end +1;2800return;2801}2802stat_data_from_disk(&ud->stat_data, rd->data);2803 rd->data +=sizeof(struct stat_data);2804 ud->valid =1;2805}28062807static voidread_sha1(size_t pos,void*cb)2808{2809struct read_data *rd = cb;2810struct untracked_cache_dir *ud = rd->ucd[pos];2811if(rd->data +20> rd->end) {2812 rd->data = rd->end +1;2813return;2814}2815hashcpy(ud->exclude_sha1, rd->data);2816 rd->data +=20;2817}28182819static voidload_sha1_stat(struct sha1_stat *sha1_stat,2820const unsigned char*data,2821const unsigned char*sha1)2822{2823stat_data_from_disk(&sha1_stat->stat, data);2824hashcpy(sha1_stat->sha1, sha1);2825 sha1_stat->valid =1;2826}28272828struct untracked_cache *read_untracked_extension(const void*data,unsigned long sz)2829{2830struct untracked_cache *uc;2831struct read_data rd;2832const unsigned char*next = data, *end = (const unsigned char*)data + sz;2833const char*ident;2834int ident_len, len;2835const char*exclude_per_dir;28362837if(sz <=1|| end[-1] !='\0')2838return NULL;2839 end--;28402841 ident_len =decode_varint(&next);2842if(next + ident_len > end)2843return NULL;2844 ident = (const char*)next;2845 next += ident_len;28462847if(next +ouc_size(0) > end)2848return NULL;28492850 uc =xcalloc(1,sizeof(*uc));2851strbuf_init(&uc->ident, ident_len);2852strbuf_add(&uc->ident, ident, ident_len);2853load_sha1_stat(&uc->ss_info_exclude,2854 next +ouc_offset(info_exclude_stat),2855 next +ouc_offset(info_exclude_sha1));2856load_sha1_stat(&uc->ss_excludes_file,2857 next +ouc_offset(excludes_file_stat),2858 next +ouc_offset(excludes_file_sha1));2859 uc->dir_flags =get_be32(next +ouc_offset(dir_flags));2860 exclude_per_dir = (const char*)next +ouc_offset(exclude_per_dir);2861 uc->exclude_per_dir =xstrdup(exclude_per_dir);2862/* NUL after exclude_per_dir is covered by sizeof(*ouc) */2863 next +=ouc_size(strlen(exclude_per_dir));2864if(next >= end)2865goto done2;28662867 len =decode_varint(&next);2868if(next > end || len ==0)2869goto done2;28702871 rd.valid =ewah_new();2872 rd.check_only =ewah_new();2873 rd.sha1_valid =ewah_new();2874 rd.data = next;2875 rd.end = end;2876 rd.index =0;2877ALLOC_ARRAY(rd.ucd, len);28782879if(read_one_dir(&uc->root, &rd) || rd.index != len)2880goto done;28812882 next = rd.data;2883 len =ewah_read_mmap(rd.valid, next, end - next);2884if(len <0)2885goto done;28862887 next += len;2888 len =ewah_read_mmap(rd.check_only, next, end - next);2889if(len <0)2890goto done;28912892 next += len;2893 len =ewah_read_mmap(rd.sha1_valid, next, end - next);2894if(len <0)2895goto done;28962897ewah_each_bit(rd.check_only, set_check_only, &rd);2898 rd.data = next + len;2899ewah_each_bit(rd.valid, read_stat, &rd);2900ewah_each_bit(rd.sha1_valid, read_sha1, &rd);2901 next = rd.data;29022903done:2904free(rd.ucd);2905ewah_free(rd.valid);2906ewah_free(rd.check_only);2907ewah_free(rd.sha1_valid);2908done2:2909if(next != end) {2910free_untracked_cache(uc);2911 uc = NULL;2912}2913return uc;2914}29152916static voidinvalidate_one_directory(struct untracked_cache *uc,2917struct untracked_cache_dir *ucd)2918{2919 uc->dir_invalidated++;2920 ucd->valid =0;2921 ucd->untracked_nr =0;2922}29232924/*2925 * Normally when an entry is added or removed from a directory,2926 * invalidating that directory is enough. No need to touch its2927 * ancestors. When a directory is shown as "foo/bar/" in git-status2928 * however, deleting or adding an entry may have cascading effect.2929 *2930 * Say the "foo/bar/file" has become untracked, we need to tell the2931 * untracked_cache_dir of "foo" that "bar/" is not an untracked2932 * directory any more (because "bar" is managed by foo as an untracked2933 * "file").2934 *2935 * Similarly, if "foo/bar/file" moves from untracked to tracked and it2936 * was the last untracked entry in the entire "foo", we should show2937 * "foo/" instead. Which means we have to invalidate past "bar" up to2938 * "foo".2939 *2940 * This function traverses all directories from root to leaf. If there2941 * is a chance of one of the above cases happening, we invalidate back2942 * to root. Otherwise we just invalidate the leaf. There may be a more2943 * sophisticated way than checking for SHOW_OTHER_DIRECTORIES to2944 * detect these cases and avoid unnecessary invalidation, for example,2945 * checking for the untracked entry named "bar/" in "foo", but for now2946 * stick to something safe and simple.2947 */2948static intinvalidate_one_component(struct untracked_cache *uc,2949struct untracked_cache_dir *dir,2950const char*path,int len)2951{2952const char*rest =strchr(path,'/');29532954if(rest) {2955int component_len = rest - path;2956struct untracked_cache_dir *d =2957lookup_untracked(uc, dir, path, component_len);2958int ret =2959invalidate_one_component(uc, d, rest +1,2960 len - (component_len +1));2961if(ret)2962invalidate_one_directory(uc, dir);2963return ret;2964}29652966invalidate_one_directory(uc, dir);2967return uc->dir_flags & DIR_SHOW_OTHER_DIRECTORIES;2968}29692970voiduntracked_cache_invalidate_path(struct index_state *istate,2971const char*path)2972{2973if(!istate->untracked || !istate->untracked->root)2974return;2975invalidate_one_component(istate->untracked, istate->untracked->root,2976 path,strlen(path));2977}29782979voiduntracked_cache_remove_from_index(struct index_state *istate,2980const char*path)2981{2982untracked_cache_invalidate_path(istate, path);2983}29842985voiduntracked_cache_add_to_index(struct index_state *istate,2986const char*path)2987{2988untracked_cache_invalidate_path(istate, path);2989}29902991/* Update gitfile and core.worktree setting to connect work tree and git dir */2992voidconnect_work_tree_and_git_dir(const char*work_tree_,const char*git_dir_)2993{2994struct strbuf gitfile_sb = STRBUF_INIT;2995struct strbuf cfg_sb = STRBUF_INIT;2996struct strbuf rel_path = STRBUF_INIT;2997char*git_dir, *work_tree;29982999/* Prepare .git file */3000strbuf_addf(&gitfile_sb,"%s/.git", work_tree_);3001if(safe_create_leading_directories_const(gitfile_sb.buf))3002die(_("could not create directories for%s"), gitfile_sb.buf);30033004/* Prepare config file */3005strbuf_addf(&cfg_sb,"%s/config", git_dir_);3006if(safe_create_leading_directories_const(cfg_sb.buf))3007die(_("could not create directories for%s"), cfg_sb.buf);30083009 git_dir =real_pathdup(git_dir_,1);3010 work_tree =real_pathdup(work_tree_,1);30113012/* Write .git file */3013write_file(gitfile_sb.buf,"gitdir:%s",3014relative_path(git_dir, work_tree, &rel_path));3015/* Update core.worktree setting */3016git_config_set_in_file(cfg_sb.buf,"core.worktree",3017relative_path(work_tree, git_dir, &rel_path));30183019strbuf_release(&gitfile_sb);3020strbuf_release(&cfg_sb);3021strbuf_release(&rel_path);3022free(work_tree);3023free(git_dir);3024}30253026/*3027 * Migrate the git directory of the given path from old_git_dir to new_git_dir.3028 */3029voidrelocate_gitdir(const char*path,const char*old_git_dir,const char*new_git_dir)3030{3031if(rename(old_git_dir, new_git_dir) <0)3032die_errno(_("could not migrate git directory from '%s' to '%s'"),3033 old_git_dir, new_git_dir);30343035connect_work_tree_and_git_dir(path, new_git_dir);3036}