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 oid_stat with the given OID (when valid). 235 */ 236static intdo_read_blob(const struct object_id *oid,struct oid_stat *oid_stat, 237size_t*size_out,char**data_out) 238{ 239enum object_type type; 240unsigned long sz; 241char*data; 242 243*size_out =0; 244*data_out = NULL; 245 246 data =read_sha1_file(oid->hash, &type, &sz); 247if(!data || type != OBJ_BLOB) { 248free(data); 249return-1; 250} 251 252if(oid_stat) { 253memset(&oid_stat->stat,0,sizeof(oid_stat->stat)); 254oidcpy(&oid_stat->oid, oid); 255} 256 257if(sz ==0) { 258free(data); 259return0; 260} 261 262if(data[sz -1] !='\n') { 263 data =xrealloc(data,st_add(sz,1)); 264 data[sz++] ='\n'; 265} 266 267*size_out =xsize_t(sz); 268*data_out = data; 269 270return1; 271} 272 273#define DO_MATCH_EXCLUDE (1<<0) 274#define DO_MATCH_DIRECTORY (1<<1) 275#define DO_MATCH_SUBMODULE (1<<2) 276 277static intmatch_attrs(const char*name,int namelen, 278const struct pathspec_item *item) 279{ 280int i; 281 282git_check_attr(name, item->attr_check); 283for(i =0; i < item->attr_match_nr; i++) { 284const char*value; 285int matched; 286enum attr_match_mode match_mode; 287 288 value = item->attr_check->items[i].value; 289 match_mode = item->attr_match[i].match_mode; 290 291if(ATTR_TRUE(value)) 292 matched = (match_mode == MATCH_SET); 293else if(ATTR_FALSE(value)) 294 matched = (match_mode == MATCH_UNSET); 295else if(ATTR_UNSET(value)) 296 matched = (match_mode == MATCH_UNSPECIFIED); 297else 298 matched = (match_mode == MATCH_VALUE && 299!strcmp(item->attr_match[i].value, value)); 300if(!matched) 301return0; 302} 303 304return1; 305} 306 307/* 308 * Does 'match' match the given name? 309 * A match is found if 310 * 311 * (1) the 'match' string is leading directory of 'name', or 312 * (2) the 'match' string is a wildcard and matches 'name', or 313 * (3) the 'match' string is exactly the same as 'name'. 314 * 315 * and the return value tells which case it was. 316 * 317 * It returns 0 when there is no match. 318 */ 319static intmatch_pathspec_item(const struct pathspec_item *item,int prefix, 320const char*name,int namelen,unsigned flags) 321{ 322/* name/namelen has prefix cut off by caller */ 323const char*match = item->match + prefix; 324int matchlen = item->len - prefix; 325 326/* 327 * The normal call pattern is: 328 * 1. prefix = common_prefix_len(ps); 329 * 2. prune something, or fill_directory 330 * 3. match_pathspec() 331 * 332 * 'prefix' at #1 may be shorter than the command's prefix and 333 * it's ok for #2 to match extra files. Those extras will be 334 * trimmed at #3. 335 * 336 * Suppose the pathspec is 'foo' and '../bar' running from 337 * subdir 'xyz'. The common prefix at #1 will be empty, thanks 338 * to "../". We may have xyz/foo _and_ XYZ/foo after #2. The 339 * user does not want XYZ/foo, only the "foo" part should be 340 * case-insensitive. We need to filter out XYZ/foo here. In 341 * other words, we do not trust the caller on comparing the 342 * prefix part when :(icase) is involved. We do exact 343 * comparison ourselves. 344 * 345 * Normally the caller (common_prefix_len() in fact) does 346 * _exact_ matching on name[-prefix+1..-1] and we do not need 347 * to check that part. Be defensive and check it anyway, in 348 * case common_prefix_len is changed, or a new caller is 349 * introduced that does not use common_prefix_len. 350 * 351 * If the penalty turns out too high when prefix is really 352 * long, maybe change it to 353 * strncmp(match, name, item->prefix - prefix) 354 */ 355if(item->prefix && (item->magic & PATHSPEC_ICASE) && 356strncmp(item->match, name - prefix, item->prefix)) 357return0; 358 359if(item->attr_match_nr && !match_attrs(name, namelen, item)) 360return0; 361 362/* If the match was just the prefix, we matched */ 363if(!*match) 364return MATCHED_RECURSIVELY; 365 366if(matchlen <= namelen && !ps_strncmp(item, match, name, matchlen)) { 367if(matchlen == namelen) 368return MATCHED_EXACTLY; 369 370if(match[matchlen-1] =='/'|| name[matchlen] =='/') 371return MATCHED_RECURSIVELY; 372}else if((flags & DO_MATCH_DIRECTORY) && 373 match[matchlen -1] =='/'&& 374 namelen == matchlen -1&& 375!ps_strncmp(item, match, name, namelen)) 376return MATCHED_EXACTLY; 377 378if(item->nowildcard_len < item->len && 379!git_fnmatch(item, match, name, 380 item->nowildcard_len - prefix)) 381return MATCHED_FNMATCH; 382 383/* Perform checks to see if "name" is a super set of the pathspec */ 384if(flags & DO_MATCH_SUBMODULE) { 385/* name is a literal prefix of the pathspec */ 386if((namelen < matchlen) && 387(match[namelen] =='/') && 388!ps_strncmp(item, match, name, namelen)) 389return MATCHED_RECURSIVELY; 390 391/* name" doesn't match up to the first wild character */ 392if(item->nowildcard_len < item->len && 393ps_strncmp(item, match, name, 394 item->nowildcard_len - prefix)) 395return0; 396 397/* 398 * Here is where we would perform a wildmatch to check if 399 * "name" can be matched as a directory (or a prefix) against 400 * the pathspec. Since wildmatch doesn't have this capability 401 * at the present we have to punt and say that it is a match, 402 * potentially returning a false positive 403 * The submodules themselves will be able to perform more 404 * accurate matching to determine if the pathspec matches. 405 */ 406return MATCHED_RECURSIVELY; 407} 408 409return0; 410} 411 412/* 413 * Given a name and a list of pathspecs, returns the nature of the 414 * closest (i.e. most specific) match of the name to any of the 415 * pathspecs. 416 * 417 * The caller typically calls this multiple times with the same 418 * pathspec and seen[] array but with different name/namelen 419 * (e.g. entries from the index) and is interested in seeing if and 420 * how each pathspec matches all the names it calls this function 421 * with. A mark is left in the seen[] array for each pathspec element 422 * indicating the closest type of match that element achieved, so if 423 * seen[n] remains zero after multiple invocations, that means the nth 424 * pathspec did not match any names, which could indicate that the 425 * user mistyped the nth pathspec. 426 */ 427static intdo_match_pathspec(const struct pathspec *ps, 428const char*name,int namelen, 429int prefix,char*seen, 430unsigned flags) 431{ 432int i, retval =0, exclude = flags & DO_MATCH_EXCLUDE; 433 434GUARD_PATHSPEC(ps, 435 PATHSPEC_FROMTOP | 436 PATHSPEC_MAXDEPTH | 437 PATHSPEC_LITERAL | 438 PATHSPEC_GLOB | 439 PATHSPEC_ICASE | 440 PATHSPEC_EXCLUDE | 441 PATHSPEC_ATTR); 442 443if(!ps->nr) { 444if(!ps->recursive || 445!(ps->magic & PATHSPEC_MAXDEPTH) || 446 ps->max_depth == -1) 447return MATCHED_RECURSIVELY; 448 449if(within_depth(name, namelen,0, ps->max_depth)) 450return MATCHED_EXACTLY; 451else 452return0; 453} 454 455 name += prefix; 456 namelen -= prefix; 457 458for(i = ps->nr -1; i >=0; i--) { 459int how; 460 461if((!exclude && ps->items[i].magic & PATHSPEC_EXCLUDE) || 462( exclude && !(ps->items[i].magic & PATHSPEC_EXCLUDE))) 463continue; 464 465if(seen && seen[i] == MATCHED_EXACTLY) 466continue; 467/* 468 * Make exclude patterns optional and never report 469 * "pathspec ':(exclude)foo' matches no files" 470 */ 471if(seen && ps->items[i].magic & PATHSPEC_EXCLUDE) 472 seen[i] = MATCHED_FNMATCH; 473 how =match_pathspec_item(ps->items+i, prefix, name, 474 namelen, flags); 475if(ps->recursive && 476(ps->magic & PATHSPEC_MAXDEPTH) && 477 ps->max_depth != -1&& 478 how && how != MATCHED_FNMATCH) { 479int len = ps->items[i].len; 480if(name[len] =='/') 481 len++; 482if(within_depth(name+len, namelen-len,0, ps->max_depth)) 483 how = MATCHED_EXACTLY; 484else 485 how =0; 486} 487if(how) { 488if(retval < how) 489 retval = how; 490if(seen && seen[i] < how) 491 seen[i] = how; 492} 493} 494return retval; 495} 496 497intmatch_pathspec(const struct pathspec *ps, 498const char*name,int namelen, 499int prefix,char*seen,int is_dir) 500{ 501int positive, negative; 502unsigned flags = is_dir ? DO_MATCH_DIRECTORY :0; 503 positive =do_match_pathspec(ps, name, namelen, 504 prefix, seen, flags); 505if(!(ps->magic & PATHSPEC_EXCLUDE) || !positive) 506return positive; 507 negative =do_match_pathspec(ps, name, namelen, 508 prefix, seen, 509 flags | DO_MATCH_EXCLUDE); 510return negative ?0: positive; 511} 512 513/** 514 * Check if a submodule is a superset of the pathspec 515 */ 516intsubmodule_path_match(const struct pathspec *ps, 517const char*submodule_name, 518char*seen) 519{ 520int matched =do_match_pathspec(ps, submodule_name, 521strlen(submodule_name), 5220, seen, 523 DO_MATCH_DIRECTORY | 524 DO_MATCH_SUBMODULE); 525return matched; 526} 527 528intreport_path_error(const char*ps_matched, 529const struct pathspec *pathspec, 530const char*prefix) 531{ 532/* 533 * Make sure all pathspec matched; otherwise it is an error. 534 */ 535int num, errors =0; 536for(num =0; num < pathspec->nr; num++) { 537int other, found_dup; 538 539if(ps_matched[num]) 540continue; 541/* 542 * The caller might have fed identical pathspec 543 * twice. Do not barf on such a mistake. 544 * FIXME: parse_pathspec should have eliminated 545 * duplicate pathspec. 546 */ 547for(found_dup = other =0; 548!found_dup && other < pathspec->nr; 549 other++) { 550if(other == num || !ps_matched[other]) 551continue; 552if(!strcmp(pathspec->items[other].original, 553 pathspec->items[num].original)) 554/* 555 * Ok, we have a match already. 556 */ 557 found_dup =1; 558} 559if(found_dup) 560continue; 561 562error("pathspec '%s' did not match any file(s) known to git.", 563 pathspec->items[num].original); 564 errors++; 565} 566return errors; 567} 568 569/* 570 * Return the length of the "simple" part of a path match limiter. 571 */ 572intsimple_length(const char*match) 573{ 574int len = -1; 575 576for(;;) { 577unsigned char c = *match++; 578 len++; 579if(c =='\0'||is_glob_special(c)) 580return len; 581} 582} 583 584intno_wildcard(const char*string) 585{ 586return string[simple_length(string)] =='\0'; 587} 588 589voidparse_exclude_pattern(const char**pattern, 590int*patternlen, 591unsigned*flags, 592int*nowildcardlen) 593{ 594const char*p = *pattern; 595size_t i, len; 596 597*flags =0; 598if(*p =='!') { 599*flags |= EXC_FLAG_NEGATIVE; 600 p++; 601} 602 len =strlen(p); 603if(len && p[len -1] =='/') { 604 len--; 605*flags |= EXC_FLAG_MUSTBEDIR; 606} 607for(i =0; i < len; i++) { 608if(p[i] =='/') 609break; 610} 611if(i == len) 612*flags |= EXC_FLAG_NODIR; 613*nowildcardlen =simple_length(p); 614/* 615 * we should have excluded the trailing slash from 'p' too, 616 * but that's one more allocation. Instead just make sure 617 * nowildcardlen does not exceed real patternlen 618 */ 619if(*nowildcardlen > len) 620*nowildcardlen = len; 621if(*p =='*'&&no_wildcard(p +1)) 622*flags |= EXC_FLAG_ENDSWITH; 623*pattern = p; 624*patternlen = len; 625} 626 627voidadd_exclude(const char*string,const char*base, 628int baselen,struct exclude_list *el,int srcpos) 629{ 630struct exclude *x; 631int patternlen; 632unsigned flags; 633int nowildcardlen; 634 635parse_exclude_pattern(&string, &patternlen, &flags, &nowildcardlen); 636if(flags & EXC_FLAG_MUSTBEDIR) { 637FLEXPTR_ALLOC_MEM(x, pattern, string, patternlen); 638}else{ 639 x =xmalloc(sizeof(*x)); 640 x->pattern = string; 641} 642 x->patternlen = patternlen; 643 x->nowildcardlen = nowildcardlen; 644 x->base = base; 645 x->baselen = baselen; 646 x->flags = flags; 647 x->srcpos = srcpos; 648ALLOC_GROW(el->excludes, el->nr +1, el->alloc); 649 el->excludes[el->nr++] = x; 650 x->el = el; 651} 652 653static intread_skip_worktree_file_from_index(const struct index_state *istate, 654const char*path, 655size_t*size_out,char**data_out, 656struct oid_stat *oid_stat) 657{ 658int pos, len; 659 660 len =strlen(path); 661 pos =index_name_pos(istate, path, len); 662if(pos <0) 663return-1; 664if(!ce_skip_worktree(istate->cache[pos])) 665return-1; 666 667returndo_read_blob(&istate->cache[pos]->oid, oid_stat, size_out, data_out); 668} 669 670/* 671 * Frees memory within el which was allocated for exclude patterns and 672 * the file buffer. Does not free el itself. 673 */ 674voidclear_exclude_list(struct exclude_list *el) 675{ 676int i; 677 678for(i =0; i < el->nr; i++) 679free(el->excludes[i]); 680free(el->excludes); 681free(el->filebuf); 682 683memset(el,0,sizeof(*el)); 684} 685 686static voidtrim_trailing_spaces(char*buf) 687{ 688char*p, *last_space = NULL; 689 690for(p = buf; *p; p++) 691switch(*p) { 692case' ': 693if(!last_space) 694 last_space = p; 695break; 696case'\\': 697 p++; 698if(!*p) 699return; 700/* fallthrough */ 701default: 702 last_space = NULL; 703} 704 705if(last_space) 706*last_space ='\0'; 707} 708 709/* 710 * Given a subdirectory name and "dir" of the current directory, 711 * search the subdir in "dir" and return it, or create a new one if it 712 * does not exist in "dir". 713 * 714 * If "name" has the trailing slash, it'll be excluded in the search. 715 */ 716static struct untracked_cache_dir *lookup_untracked(struct untracked_cache *uc, 717struct untracked_cache_dir *dir, 718const char*name,int len) 719{ 720int first, last; 721struct untracked_cache_dir *d; 722if(!dir) 723return NULL; 724if(len && name[len -1] =='/') 725 len--; 726 first =0; 727 last = dir->dirs_nr; 728while(last > first) { 729int cmp, next = (last + first) >>1; 730 d = dir->dirs[next]; 731 cmp =strncmp(name, d->name, len); 732if(!cmp &&strlen(d->name) > len) 733 cmp = -1; 734if(!cmp) 735return d; 736if(cmp <0) { 737 last = next; 738continue; 739} 740 first = next+1; 741} 742 743 uc->dir_created++; 744FLEX_ALLOC_MEM(d, name, name, len); 745 746ALLOC_GROW(dir->dirs, dir->dirs_nr +1, dir->dirs_alloc); 747MOVE_ARRAY(dir->dirs + first +1, dir->dirs + first, 748 dir->dirs_nr - first); 749 dir->dirs_nr++; 750 dir->dirs[first] = d; 751return d; 752} 753 754static voiddo_invalidate_gitignore(struct untracked_cache_dir *dir) 755{ 756int i; 757 dir->valid =0; 758 dir->untracked_nr =0; 759for(i =0; i < dir->dirs_nr; i++) 760do_invalidate_gitignore(dir->dirs[i]); 761} 762 763static voidinvalidate_gitignore(struct untracked_cache *uc, 764struct untracked_cache_dir *dir) 765{ 766 uc->gitignore_invalidated++; 767do_invalidate_gitignore(dir); 768} 769 770static voidinvalidate_directory(struct untracked_cache *uc, 771struct untracked_cache_dir *dir) 772{ 773int i; 774 uc->dir_invalidated++; 775 dir->valid =0; 776 dir->untracked_nr =0; 777for(i =0; i < dir->dirs_nr; i++) 778 dir->dirs[i]->recurse =0; 779} 780 781static intadd_excludes_from_buffer(char*buf,size_t size, 782const char*base,int baselen, 783struct exclude_list *el); 784 785/* 786 * Given a file with name "fname", read it (either from disk, or from 787 * an index if 'istate' is non-null), parse it and store the 788 * exclude rules in "el". 789 * 790 * If "ss" is not NULL, compute SHA-1 of the exclude file and fill 791 * stat data from disk (only valid if add_excludes returns zero). If 792 * ss_valid is non-zero, "ss" must contain good value as input. 793 */ 794static intadd_excludes(const char*fname,const char*base,int baselen, 795struct exclude_list *el,struct index_state *istate, 796struct oid_stat *oid_stat) 797{ 798struct stat st; 799int r; 800int fd; 801size_t size =0; 802char*buf; 803 804 fd =open(fname, O_RDONLY); 805if(fd <0||fstat(fd, &st) <0) { 806if(fd <0) 807warn_on_fopen_errors(fname); 808else 809close(fd); 810if(!istate) 811return-1; 812 r =read_skip_worktree_file_from_index(istate, fname, 813&size, &buf, 814 oid_stat); 815if(r !=1) 816return r; 817}else{ 818 size =xsize_t(st.st_size); 819if(size ==0) { 820if(oid_stat) { 821fill_stat_data(&oid_stat->stat, &st); 822oidcpy(&oid_stat->oid, &empty_blob_oid); 823 oid_stat->valid =1; 824} 825close(fd); 826return0; 827} 828 buf =xmallocz(size); 829if(read_in_full(fd, buf, size) != size) { 830free(buf); 831close(fd); 832return-1; 833} 834 buf[size++] ='\n'; 835close(fd); 836if(oid_stat) { 837int pos; 838if(oid_stat->valid && 839!match_stat_data_racy(istate, &oid_stat->stat, &st)) 840;/* no content change, ss->sha1 still good */ 841else if(istate && 842(pos =index_name_pos(istate, fname,strlen(fname))) >=0&& 843!ce_stage(istate->cache[pos]) && 844ce_uptodate(istate->cache[pos]) && 845!would_convert_to_git(istate, fname)) 846oidcpy(&oid_stat->oid, 847&istate->cache[pos]->oid); 848else 849hash_object_file(buf, size,"blob", 850&oid_stat->oid); 851fill_stat_data(&oid_stat->stat, &st); 852 oid_stat->valid =1; 853} 854} 855 856add_excludes_from_buffer(buf, size, base, baselen, el); 857return0; 858} 859 860static intadd_excludes_from_buffer(char*buf,size_t size, 861const char*base,int baselen, 862struct exclude_list *el) 863{ 864int i, lineno =1; 865char*entry; 866 867 el->filebuf = buf; 868 869if(skip_utf8_bom(&buf, size)) 870 size -= buf - el->filebuf; 871 872 entry = buf; 873 874for(i =0; i < size; i++) { 875if(buf[i] =='\n') { 876if(entry != buf + i && entry[0] !='#') { 877 buf[i - (i && buf[i-1] =='\r')] =0; 878trim_trailing_spaces(entry); 879add_exclude(entry, base, baselen, el, lineno); 880} 881 lineno++; 882 entry = buf + i +1; 883} 884} 885return0; 886} 887 888intadd_excludes_from_file_to_list(const char*fname,const char*base, 889int baselen,struct exclude_list *el, 890struct index_state *istate) 891{ 892returnadd_excludes(fname, base, baselen, el, istate, NULL); 893} 894 895intadd_excludes_from_blob_to_list( 896struct object_id *oid, 897const char*base,int baselen, 898struct exclude_list *el) 899{ 900char*buf; 901size_t size; 902int r; 903 904 r =do_read_blob(oid, NULL, &size, &buf); 905if(r !=1) 906return r; 907 908add_excludes_from_buffer(buf, size, base, baselen, el); 909return0; 910} 911 912struct exclude_list *add_exclude_list(struct dir_struct *dir, 913int group_type,const char*src) 914{ 915struct exclude_list *el; 916struct exclude_list_group *group; 917 918 group = &dir->exclude_list_group[group_type]; 919ALLOC_GROW(group->el, group->nr +1, group->alloc); 920 el = &group->el[group->nr++]; 921memset(el,0,sizeof(*el)); 922 el->src = src; 923return el; 924} 925 926/* 927 * Used to set up core.excludesfile and .git/info/exclude lists. 928 */ 929static voidadd_excludes_from_file_1(struct dir_struct *dir,const char*fname, 930struct oid_stat *oid_stat) 931{ 932struct exclude_list *el; 933/* 934 * catch setup_standard_excludes() that's called before 935 * dir->untracked is assigned. That function behaves 936 * differently when dir->untracked is non-NULL. 937 */ 938if(!dir->untracked) 939 dir->unmanaged_exclude_files++; 940 el =add_exclude_list(dir, EXC_FILE, fname); 941if(add_excludes(fname,"",0, el, NULL, oid_stat) <0) 942die("cannot use%sas an exclude file", fname); 943} 944 945voidadd_excludes_from_file(struct dir_struct *dir,const char*fname) 946{ 947 dir->unmanaged_exclude_files++;/* see validate_untracked_cache() */ 948add_excludes_from_file_1(dir, fname, NULL); 949} 950 951intmatch_basename(const char*basename,int basenamelen, 952const char*pattern,int prefix,int patternlen, 953unsigned flags) 954{ 955if(prefix == patternlen) { 956if(patternlen == basenamelen && 957!fspathncmp(pattern, basename, basenamelen)) 958return1; 959}else if(flags & EXC_FLAG_ENDSWITH) { 960/* "*literal" matching against "fooliteral" */ 961if(patternlen -1<= basenamelen && 962!fspathncmp(pattern +1, 963 basename + basenamelen - (patternlen -1), 964 patternlen -1)) 965return1; 966}else{ 967if(fnmatch_icase_mem(pattern, patternlen, 968 basename, basenamelen, 9690) ==0) 970return1; 971} 972return0; 973} 974 975intmatch_pathname(const char*pathname,int pathlen, 976const char*base,int baselen, 977const char*pattern,int prefix,int patternlen, 978unsigned flags) 979{ 980const char*name; 981int namelen; 982 983/* 984 * match with FNM_PATHNAME; the pattern has base implicitly 985 * in front of it. 986 */ 987if(*pattern =='/') { 988 pattern++; 989 patternlen--; 990 prefix--; 991} 992 993/* 994 * baselen does not count the trailing slash. base[] may or 995 * may not end with a trailing slash though. 996 */ 997if(pathlen < baselen +1|| 998(baselen && pathname[baselen] !='/') || 999fspathncmp(pathname, base, baselen))1000return0;10011002 namelen = baselen ? pathlen - baselen -1: pathlen;1003 name = pathname + pathlen - namelen;10041005if(prefix) {1006/*1007 * if the non-wildcard part is longer than the1008 * remaining pathname, surely it cannot match.1009 */1010if(prefix > namelen)1011return0;10121013if(fspathncmp(pattern, name, prefix))1014return0;1015 pattern += prefix;1016 patternlen -= prefix;1017 name += prefix;1018 namelen -= prefix;10191020/*1021 * If the whole pattern did not have a wildcard,1022 * then our prefix match is all we need; we1023 * do not need to call fnmatch at all.1024 */1025if(!patternlen && !namelen)1026return1;1027}10281029returnfnmatch_icase_mem(pattern, patternlen,1030 name, namelen,1031 WM_PATHNAME) ==0;1032}10331034/*1035 * Scan the given exclude list in reverse to see whether pathname1036 * should be ignored. The first match (i.e. the last on the list), if1037 * any, determines the fate. Returns the exclude_list element which1038 * matched, or NULL for undecided.1039 */1040static struct exclude *last_exclude_matching_from_list(const char*pathname,1041int pathlen,1042const char*basename,1043int*dtype,1044struct exclude_list *el,1045struct index_state *istate)1046{1047struct exclude *exc = NULL;/* undecided */1048int i;10491050if(!el->nr)1051return NULL;/* undefined */10521053for(i = el->nr -1;0<= i; i--) {1054struct exclude *x = el->excludes[i];1055const char*exclude = x->pattern;1056int prefix = x->nowildcardlen;10571058if(x->flags & EXC_FLAG_MUSTBEDIR) {1059if(*dtype == DT_UNKNOWN)1060*dtype =get_dtype(NULL, istate, pathname, pathlen);1061if(*dtype != DT_DIR)1062continue;1063}10641065if(x->flags & EXC_FLAG_NODIR) {1066if(match_basename(basename,1067 pathlen - (basename - pathname),1068 exclude, prefix, x->patternlen,1069 x->flags)) {1070 exc = x;1071break;1072}1073continue;1074}10751076assert(x->baselen ==0|| x->base[x->baselen -1] =='/');1077if(match_pathname(pathname, pathlen,1078 x->base, x->baselen ? x->baselen -1:0,1079 exclude, prefix, x->patternlen, x->flags)) {1080 exc = x;1081break;1082}1083}1084return exc;1085}10861087/*1088 * Scan the list and let the last match determine the fate.1089 * Return 1 for exclude, 0 for include and -1 for undecided.1090 */1091intis_excluded_from_list(const char*pathname,1092int pathlen,const char*basename,int*dtype,1093struct exclude_list *el,struct index_state *istate)1094{1095struct exclude *exclude;1096 exclude =last_exclude_matching_from_list(pathname, pathlen, basename,1097 dtype, el, istate);1098if(exclude)1099return exclude->flags & EXC_FLAG_NEGATIVE ?0:1;1100return-1;/* undecided */1101}11021103static struct exclude *last_exclude_matching_from_lists(struct dir_struct *dir,1104struct index_state *istate,1105const char*pathname,int pathlen,const char*basename,1106int*dtype_p)1107{1108int i, j;1109struct exclude_list_group *group;1110struct exclude *exclude;1111for(i = EXC_CMDL; i <= EXC_FILE; i++) {1112 group = &dir->exclude_list_group[i];1113for(j = group->nr -1; j >=0; j--) {1114 exclude =last_exclude_matching_from_list(1115 pathname, pathlen, basename, dtype_p,1116&group->el[j], istate);1117if(exclude)1118return exclude;1119}1120}1121return NULL;1122}11231124/*1125 * Loads the per-directory exclude list for the substring of base1126 * which has a char length of baselen.1127 */1128static voidprep_exclude(struct dir_struct *dir,1129struct index_state *istate,1130const char*base,int baselen)1131{1132struct exclude_list_group *group;1133struct exclude_list *el;1134struct exclude_stack *stk = NULL;1135struct untracked_cache_dir *untracked;1136int current;11371138 group = &dir->exclude_list_group[EXC_DIRS];11391140/*1141 * Pop the exclude lists from the EXCL_DIRS exclude_list_group1142 * which originate from directories not in the prefix of the1143 * path being checked.1144 */1145while((stk = dir->exclude_stack) != NULL) {1146if(stk->baselen <= baselen &&1147!strncmp(dir->basebuf.buf, base, stk->baselen))1148break;1149 el = &group->el[dir->exclude_stack->exclude_ix];1150 dir->exclude_stack = stk->prev;1151 dir->exclude = NULL;1152free((char*)el->src);/* see strbuf_detach() below */1153clear_exclude_list(el);1154free(stk);1155 group->nr--;1156}11571158/* Skip traversing into sub directories if the parent is excluded */1159if(dir->exclude)1160return;11611162/*1163 * Lazy initialization. All call sites currently just1164 * memset(dir, 0, sizeof(*dir)) before use. Changing all of1165 * them seems lots of work for little benefit.1166 */1167if(!dir->basebuf.buf)1168strbuf_init(&dir->basebuf, PATH_MAX);11691170/* Read from the parent directories and push them down. */1171 current = stk ? stk->baselen : -1;1172strbuf_setlen(&dir->basebuf, current <0?0: current);1173if(dir->untracked)1174 untracked = stk ? stk->ucd : dir->untracked->root;1175else1176 untracked = NULL;11771178while(current < baselen) {1179const char*cp;1180struct oid_stat oid_stat;11811182 stk =xcalloc(1,sizeof(*stk));1183if(current <0) {1184 cp = base;1185 current =0;1186}else{1187 cp =strchr(base + current +1,'/');1188if(!cp)1189die("oops in prep_exclude");1190 cp++;1191 untracked =1192lookup_untracked(dir->untracked, untracked,1193 base + current,1194 cp - base - current);1195}1196 stk->prev = dir->exclude_stack;1197 stk->baselen = cp - base;1198 stk->exclude_ix = group->nr;1199 stk->ucd = untracked;1200 el =add_exclude_list(dir, EXC_DIRS, NULL);1201strbuf_add(&dir->basebuf, base + current, stk->baselen - current);1202assert(stk->baselen == dir->basebuf.len);12031204/* Abort if the directory is excluded */1205if(stk->baselen) {1206int dt = DT_DIR;1207 dir->basebuf.buf[stk->baselen -1] =0;1208 dir->exclude =last_exclude_matching_from_lists(dir,1209 istate,1210 dir->basebuf.buf, stk->baselen -1,1211 dir->basebuf.buf + current, &dt);1212 dir->basebuf.buf[stk->baselen -1] ='/';1213if(dir->exclude &&1214 dir->exclude->flags & EXC_FLAG_NEGATIVE)1215 dir->exclude = NULL;1216if(dir->exclude) {1217 dir->exclude_stack = stk;1218return;1219}1220}12211222/* Try to read per-directory file */1223oidclr(&oid_stat.oid);1224 oid_stat.valid =0;1225if(dir->exclude_per_dir &&1226/*1227 * If we know that no files have been added in1228 * this directory (i.e. valid_cached_dir() has1229 * been executed and set untracked->valid) ..1230 */1231(!untracked || !untracked->valid ||1232/*1233 * .. and .gitignore does not exist before1234 * (i.e. null exclude_sha1). Then we can skip1235 * loading .gitignore, which would result in1236 * ENOENT anyway.1237 */1238!is_null_sha1(untracked->exclude_sha1))) {1239/*1240 * dir->basebuf gets reused by the traversal, but we1241 * need fname to remain unchanged to ensure the src1242 * member of each struct exclude correctly1243 * back-references its source file. Other invocations1244 * of add_exclude_list provide stable strings, so we1245 * strbuf_detach() and free() here in the caller.1246 */1247struct strbuf sb = STRBUF_INIT;1248strbuf_addbuf(&sb, &dir->basebuf);1249strbuf_addstr(&sb, dir->exclude_per_dir);1250 el->src =strbuf_detach(&sb, NULL);1251add_excludes(el->src, el->src, stk->baselen, el, istate,1252 untracked ? &oid_stat : NULL);1253}1254/*1255 * NEEDSWORK: when untracked cache is enabled, prep_exclude()1256 * will first be called in valid_cached_dir() then maybe many1257 * times more in last_exclude_matching(). When the cache is1258 * used, last_exclude_matching() will not be called and1259 * reading .gitignore content will be a waste.1260 *1261 * So when it's called by valid_cached_dir() and we can get1262 * .gitignore SHA-1 from the index (i.e. .gitignore is not1263 * modified on work tree), we could delay reading the1264 * .gitignore content until we absolutely need it in1265 * last_exclude_matching(). Be careful about ignore rule1266 * order, though, if you do that.1267 */1268if(untracked &&1269hashcmp(oid_stat.oid.hash, untracked->exclude_sha1)) {1270invalidate_gitignore(dir->untracked, untracked);1271hashcpy(untracked->exclude_sha1, oid_stat.oid.hash);1272}1273 dir->exclude_stack = stk;1274 current = stk->baselen;1275}1276strbuf_setlen(&dir->basebuf, baselen);1277}12781279/*1280 * Loads the exclude lists for the directory containing pathname, then1281 * scans all exclude lists to determine whether pathname is excluded.1282 * Returns the exclude_list element which matched, or NULL for1283 * undecided.1284 */1285struct exclude *last_exclude_matching(struct dir_struct *dir,1286struct index_state *istate,1287const char*pathname,1288int*dtype_p)1289{1290int pathlen =strlen(pathname);1291const char*basename =strrchr(pathname,'/');1292 basename = (basename) ? basename+1: pathname;12931294prep_exclude(dir, istate, pathname, basename-pathname);12951296if(dir->exclude)1297return dir->exclude;12981299returnlast_exclude_matching_from_lists(dir, istate, pathname, pathlen,1300 basename, dtype_p);1301}13021303/*1304 * Loads the exclude lists for the directory containing pathname, then1305 * scans all exclude lists to determine whether pathname is excluded.1306 * Returns 1 if true, otherwise 0.1307 */1308intis_excluded(struct dir_struct *dir,struct index_state *istate,1309const char*pathname,int*dtype_p)1310{1311struct exclude *exclude =1312last_exclude_matching(dir, istate, pathname, dtype_p);1313if(exclude)1314return exclude->flags & EXC_FLAG_NEGATIVE ?0:1;1315return0;1316}13171318static struct dir_entry *dir_entry_new(const char*pathname,int len)1319{1320struct dir_entry *ent;13211322FLEX_ALLOC_MEM(ent, name, pathname, len);1323 ent->len = len;1324return ent;1325}13261327static struct dir_entry *dir_add_name(struct dir_struct *dir,1328struct index_state *istate,1329const char*pathname,int len)1330{1331if(index_file_exists(istate, pathname, len, ignore_case))1332return NULL;13331334ALLOC_GROW(dir->entries, dir->nr+1, dir->alloc);1335return dir->entries[dir->nr++] =dir_entry_new(pathname, len);1336}13371338struct dir_entry *dir_add_ignored(struct dir_struct *dir,1339struct index_state *istate,1340const char*pathname,int len)1341{1342if(!index_name_is_other(istate, pathname, len))1343return NULL;13441345ALLOC_GROW(dir->ignored, dir->ignored_nr+1, dir->ignored_alloc);1346return dir->ignored[dir->ignored_nr++] =dir_entry_new(pathname, len);1347}13481349enum exist_status {1350 index_nonexistent =0,1351 index_directory,1352 index_gitdir1353};13541355/*1356 * Do not use the alphabetically sorted index to look up1357 * the directory name; instead, use the case insensitive1358 * directory hash.1359 */1360static enum exist_status directory_exists_in_index_icase(struct index_state *istate,1361const char*dirname,int len)1362{1363struct cache_entry *ce;13641365if(index_dir_exists(istate, dirname, len))1366return index_directory;13671368 ce =index_file_exists(istate, dirname, len, ignore_case);1369if(ce &&S_ISGITLINK(ce->ce_mode))1370return index_gitdir;13711372return index_nonexistent;1373}13741375/*1376 * The index sorts alphabetically by entry name, which1377 * means that a gitlink sorts as '\0' at the end, while1378 * a directory (which is defined not as an entry, but as1379 * the files it contains) will sort with the '/' at the1380 * end.1381 */1382static enum exist_status directory_exists_in_index(struct index_state *istate,1383const char*dirname,int len)1384{1385int pos;13861387if(ignore_case)1388returndirectory_exists_in_index_icase(istate, dirname, len);13891390 pos =index_name_pos(istate, dirname, len);1391if(pos <0)1392 pos = -pos-1;1393while(pos < istate->cache_nr) {1394const struct cache_entry *ce = istate->cache[pos++];1395unsigned char endchar;13961397if(strncmp(ce->name, dirname, len))1398break;1399 endchar = ce->name[len];1400if(endchar >'/')1401break;1402if(endchar =='/')1403return index_directory;1404if(!endchar &&S_ISGITLINK(ce->ce_mode))1405return index_gitdir;1406}1407return index_nonexistent;1408}14091410/*1411 * When we find a directory when traversing the filesystem, we1412 * have three distinct cases:1413 *1414 * - ignore it1415 * - see it as a directory1416 * - recurse into it1417 *1418 * and which one we choose depends on a combination of existing1419 * git index contents and the flags passed into the directory1420 * traversal routine.1421 *1422 * Case 1: If we *already* have entries in the index under that1423 * directory name, we always recurse into the directory to see1424 * all the files.1425 *1426 * Case 2: If we *already* have that directory name as a gitlink,1427 * we always continue to see it as a gitlink, regardless of whether1428 * there is an actual git directory there or not (it might not1429 * be checked out as a subproject!)1430 *1431 * Case 3: if we didn't have it in the index previously, we1432 * have a few sub-cases:1433 *1434 * (a) if "show_other_directories" is true, we show it as1435 * just a directory, unless "hide_empty_directories" is1436 * also true, in which case we need to check if it contains any1437 * untracked and / or ignored files.1438 * (b) if it looks like a git directory, and we don't have1439 * 'no_gitlinks' set we treat it as a gitlink, and show it1440 * as a directory.1441 * (c) otherwise, we recurse into it.1442 */1443static enum path_treatment treat_directory(struct dir_struct *dir,1444struct index_state *istate,1445struct untracked_cache_dir *untracked,1446const char*dirname,int len,int baselen,int exclude,1447const struct pathspec *pathspec)1448{1449/* The "len-1" is to strip the final '/' */1450switch(directory_exists_in_index(istate, dirname, len-1)) {1451case index_directory:1452return path_recurse;14531454case index_gitdir:1455return path_none;14561457case index_nonexistent:1458if(dir->flags & DIR_SHOW_OTHER_DIRECTORIES)1459break;1460if(exclude &&1461(dir->flags & DIR_SHOW_IGNORED_TOO) &&1462(dir->flags & DIR_SHOW_IGNORED_TOO_MODE_MATCHING)) {14631464/*1465 * This is an excluded directory and we are1466 * showing ignored paths that match an exclude1467 * pattern. (e.g. show directory as ignored1468 * only if it matches an exclude pattern).1469 * This path will either be 'path_excluded`1470 * (if we are showing empty directories or if1471 * the directory is not empty), or will be1472 * 'path_none' (empty directory, and we are1473 * not showing empty directories).1474 */1475if(!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))1476return path_excluded;14771478if(read_directory_recursive(dir, istate, dirname, len,1479 untracked,1,1, pathspec) == path_excluded)1480return path_excluded;14811482return path_none;1483}1484if(!(dir->flags & DIR_NO_GITLINKS)) {1485struct object_id oid;1486if(resolve_gitlink_ref(dirname,"HEAD", &oid) ==0)1487return exclude ? path_excluded : path_untracked;1488}1489return path_recurse;1490}14911492/* This is the "show_other_directories" case */14931494if(!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))1495return exclude ? path_excluded : path_untracked;14961497 untracked =lookup_untracked(dir->untracked, untracked,1498 dirname + baselen, len - baselen);14991500/*1501 * If this is an excluded directory, then we only need to check if1502 * the directory contains any files.1503 */1504returnread_directory_recursive(dir, istate, dirname, len,1505 untracked,1, exclude, pathspec);1506}15071508/*1509 * This is an inexact early pruning of any recursive directory1510 * reading - if the path cannot possibly be in the pathspec,1511 * return true, and we'll skip it early.1512 */1513static intsimplify_away(const char*path,int pathlen,1514const struct pathspec *pathspec)1515{1516int i;15171518if(!pathspec || !pathspec->nr)1519return0;15201521GUARD_PATHSPEC(pathspec,1522 PATHSPEC_FROMTOP |1523 PATHSPEC_MAXDEPTH |1524 PATHSPEC_LITERAL |1525 PATHSPEC_GLOB |1526 PATHSPEC_ICASE |1527 PATHSPEC_EXCLUDE |1528 PATHSPEC_ATTR);15291530for(i =0; i < pathspec->nr; i++) {1531const struct pathspec_item *item = &pathspec->items[i];1532int len = item->nowildcard_len;15331534if(len > pathlen)1535 len = pathlen;1536if(!ps_strncmp(item, item->match, path, len))1537return0;1538}15391540return1;1541}15421543/*1544 * This function tells us whether an excluded path matches a1545 * list of "interesting" pathspecs. That is, whether a path matched1546 * by any of the pathspecs could possibly be ignored by excluding1547 * the specified path. This can happen if:1548 *1549 * 1. the path is mentioned explicitly in the pathspec1550 *1551 * 2. the path is a directory prefix of some element in the1552 * pathspec1553 */1554static intexclude_matches_pathspec(const char*path,int pathlen,1555const struct pathspec *pathspec)1556{1557int i;15581559if(!pathspec || !pathspec->nr)1560return0;15611562GUARD_PATHSPEC(pathspec,1563 PATHSPEC_FROMTOP |1564 PATHSPEC_MAXDEPTH |1565 PATHSPEC_LITERAL |1566 PATHSPEC_GLOB |1567 PATHSPEC_ICASE |1568 PATHSPEC_EXCLUDE);15691570for(i =0; i < pathspec->nr; i++) {1571const struct pathspec_item *item = &pathspec->items[i];1572int len = item->nowildcard_len;15731574if(len == pathlen &&1575!ps_strncmp(item, item->match, path, pathlen))1576return1;1577if(len > pathlen &&1578 item->match[pathlen] =='/'&&1579!ps_strncmp(item, item->match, path, pathlen))1580return1;1581}1582return0;1583}15841585static intget_index_dtype(struct index_state *istate,1586const char*path,int len)1587{1588int pos;1589const struct cache_entry *ce;15901591 ce =index_file_exists(istate, path, len,0);1592if(ce) {1593if(!ce_uptodate(ce))1594return DT_UNKNOWN;1595if(S_ISGITLINK(ce->ce_mode))1596return DT_DIR;1597/*1598 * Nobody actually cares about the1599 * difference between DT_LNK and DT_REG1600 */1601return DT_REG;1602}16031604/* Try to look it up as a directory */1605 pos =index_name_pos(istate, path, len);1606if(pos >=0)1607return DT_UNKNOWN;1608 pos = -pos-1;1609while(pos < istate->cache_nr) {1610 ce = istate->cache[pos++];1611if(strncmp(ce->name, path, len))1612break;1613if(ce->name[len] >'/')1614break;1615if(ce->name[len] <'/')1616continue;1617if(!ce_uptodate(ce))1618break;/* continue? */1619return DT_DIR;1620}1621return DT_UNKNOWN;1622}16231624static intget_dtype(struct dirent *de,struct index_state *istate,1625const char*path,int len)1626{1627int dtype = de ?DTYPE(de) : DT_UNKNOWN;1628struct stat st;16291630if(dtype != DT_UNKNOWN)1631return dtype;1632 dtype =get_index_dtype(istate, path, len);1633if(dtype != DT_UNKNOWN)1634return dtype;1635if(lstat(path, &st))1636return dtype;1637if(S_ISREG(st.st_mode))1638return DT_REG;1639if(S_ISDIR(st.st_mode))1640return DT_DIR;1641if(S_ISLNK(st.st_mode))1642return DT_LNK;1643return dtype;1644}16451646static enum path_treatment treat_one_path(struct dir_struct *dir,1647struct untracked_cache_dir *untracked,1648struct index_state *istate,1649struct strbuf *path,1650int baselen,1651const struct pathspec *pathspec,1652int dtype,struct dirent *de)1653{1654int exclude;1655int has_path_in_index = !!index_file_exists(istate, path->buf, path->len, ignore_case);1656enum path_treatment path_treatment;16571658if(dtype == DT_UNKNOWN)1659 dtype =get_dtype(de, istate, path->buf, path->len);16601661/* Always exclude indexed files */1662if(dtype != DT_DIR && has_path_in_index)1663return path_none;16641665/*1666 * When we are looking at a directory P in the working tree,1667 * there are three cases:1668 *1669 * (1) P exists in the index. Everything inside the directory P in1670 * the working tree needs to go when P is checked out from the1671 * index.1672 *1673 * (2) P does not exist in the index, but there is P/Q in the index.1674 * We know P will stay a directory when we check out the contents1675 * of the index, but we do not know yet if there is a directory1676 * P/Q in the working tree to be killed, so we need to recurse.1677 *1678 * (3) P does not exist in the index, and there is no P/Q in the index1679 * to require P to be a directory, either. Only in this case, we1680 * know that everything inside P will not be killed without1681 * recursing.1682 */1683if((dir->flags & DIR_COLLECT_KILLED_ONLY) &&1684(dtype == DT_DIR) &&1685!has_path_in_index &&1686(directory_exists_in_index(istate, path->buf, path->len) == index_nonexistent))1687return path_none;16881689 exclude =is_excluded(dir, istate, path->buf, &dtype);16901691/*1692 * Excluded? If we don't explicitly want to show1693 * ignored files, ignore it1694 */1695if(exclude && !(dir->flags & (DIR_SHOW_IGNORED|DIR_SHOW_IGNORED_TOO)))1696return path_excluded;16971698switch(dtype) {1699default:1700return path_none;1701case DT_DIR:1702strbuf_addch(path,'/');1703 path_treatment =treat_directory(dir, istate, untracked,1704 path->buf, path->len,1705 baselen, exclude, pathspec);1706/*1707 * If 1) we only want to return directories that1708 * match an exclude pattern and 2) this directory does1709 * not match an exclude pattern but all of its1710 * contents are excluded, then indicate that we should1711 * recurse into this directory (instead of marking the1712 * directory itself as an ignored path).1713 */1714if(!exclude &&1715 path_treatment == path_excluded &&1716(dir->flags & DIR_SHOW_IGNORED_TOO) &&1717(dir->flags & DIR_SHOW_IGNORED_TOO_MODE_MATCHING))1718return path_recurse;1719return path_treatment;1720case DT_REG:1721case DT_LNK:1722return exclude ? path_excluded : path_untracked;1723}1724}17251726static enum path_treatment treat_path_fast(struct dir_struct *dir,1727struct untracked_cache_dir *untracked,1728struct cached_dir *cdir,1729struct index_state *istate,1730struct strbuf *path,1731int baselen,1732const struct pathspec *pathspec)1733{1734strbuf_setlen(path, baselen);1735if(!cdir->ucd) {1736strbuf_addstr(path, cdir->file);1737return path_untracked;1738}1739strbuf_addstr(path, cdir->ucd->name);1740/* treat_one_path() does this before it calls treat_directory() */1741strbuf_complete(path,'/');1742if(cdir->ucd->check_only)1743/*1744 * check_only is set as a result of treat_directory() getting1745 * to its bottom. Verify again the same set of directories1746 * with check_only set.1747 */1748returnread_directory_recursive(dir, istate, path->buf, path->len,1749 cdir->ucd,1,0, pathspec);1750/*1751 * We get path_recurse in the first run when1752 * directory_exists_in_index() returns index_nonexistent. We1753 * are sure that new changes in the index does not impact the1754 * outcome. Return now.1755 */1756return path_recurse;1757}17581759static enum path_treatment treat_path(struct dir_struct *dir,1760struct untracked_cache_dir *untracked,1761struct cached_dir *cdir,1762struct index_state *istate,1763struct strbuf *path,1764int baselen,1765const struct pathspec *pathspec)1766{1767int dtype;1768struct dirent *de = cdir->de;17691770if(!de)1771returntreat_path_fast(dir, untracked, cdir, istate, path,1772 baselen, pathspec);1773if(is_dot_or_dotdot(de->d_name) || !strcmp(de->d_name,".git"))1774return path_none;1775strbuf_setlen(path, baselen);1776strbuf_addstr(path, de->d_name);1777if(simplify_away(path->buf, path->len, pathspec))1778return path_none;17791780 dtype =DTYPE(de);1781returntreat_one_path(dir, untracked, istate, path, baselen, pathspec, dtype, de);1782}17831784static voidadd_untracked(struct untracked_cache_dir *dir,const char*name)1785{1786if(!dir)1787return;1788ALLOC_GROW(dir->untracked, dir->untracked_nr +1,1789 dir->untracked_alloc);1790 dir->untracked[dir->untracked_nr++] =xstrdup(name);1791}17921793static intvalid_cached_dir(struct dir_struct *dir,1794struct untracked_cache_dir *untracked,1795struct index_state *istate,1796struct strbuf *path,1797int check_only)1798{1799struct stat st;18001801if(!untracked)1802return0;18031804/*1805 * With fsmonitor, we can trust the untracked cache's valid field.1806 */1807refresh_fsmonitor(istate);1808if(!(dir->untracked->use_fsmonitor && untracked->valid)) {1809if(stat(path->len ? path->buf :".", &st)) {1810invalidate_directory(dir->untracked, untracked);1811memset(&untracked->stat_data,0,sizeof(untracked->stat_data));1812return0;1813}1814if(!untracked->valid ||1815match_stat_data_racy(istate, &untracked->stat_data, &st)) {1816if(untracked->valid)1817invalidate_directory(dir->untracked, untracked);1818fill_stat_data(&untracked->stat_data, &st);1819return0;1820}1821}18221823if(untracked->check_only != !!check_only) {1824invalidate_directory(dir->untracked, untracked);1825return0;1826}18271828/*1829 * prep_exclude will be called eventually on this directory,1830 * but it's called much later in last_exclude_matching(). We1831 * need it now to determine the validity of the cache for this1832 * path. The next calls will be nearly no-op, the way1833 * prep_exclude() is designed.1834 */1835if(path->len && path->buf[path->len -1] !='/') {1836strbuf_addch(path,'/');1837prep_exclude(dir, istate, path->buf, path->len);1838strbuf_setlen(path, path->len -1);1839}else1840prep_exclude(dir, istate, path->buf, path->len);18411842/* hopefully prep_exclude() haven't invalidated this entry... */1843return untracked->valid;1844}18451846static intopen_cached_dir(struct cached_dir *cdir,1847struct dir_struct *dir,1848struct untracked_cache_dir *untracked,1849struct index_state *istate,1850struct strbuf *path,1851int check_only)1852{1853memset(cdir,0,sizeof(*cdir));1854 cdir->untracked = untracked;1855if(valid_cached_dir(dir, untracked, istate, path, check_only))1856return0;1857 cdir->fdir =opendir(path->len ? path->buf :".");1858if(dir->untracked)1859 dir->untracked->dir_opened++;1860if(!cdir->fdir)1861return-1;1862return0;1863}18641865static intread_cached_dir(struct cached_dir *cdir)1866{1867if(cdir->fdir) {1868 cdir->de =readdir(cdir->fdir);1869if(!cdir->de)1870return-1;1871return0;1872}1873while(cdir->nr_dirs < cdir->untracked->dirs_nr) {1874struct untracked_cache_dir *d = cdir->untracked->dirs[cdir->nr_dirs];1875if(!d->recurse) {1876 cdir->nr_dirs++;1877continue;1878}1879 cdir->ucd = d;1880 cdir->nr_dirs++;1881return0;1882}1883 cdir->ucd = NULL;1884if(cdir->nr_files < cdir->untracked->untracked_nr) {1885struct untracked_cache_dir *d = cdir->untracked;1886 cdir->file = d->untracked[cdir->nr_files++];1887return0;1888}1889return-1;1890}18911892static voidclose_cached_dir(struct cached_dir *cdir)1893{1894if(cdir->fdir)1895closedir(cdir->fdir);1896/*1897 * We have gone through this directory and found no untracked1898 * entries. Mark it valid.1899 */1900if(cdir->untracked) {1901 cdir->untracked->valid =1;1902 cdir->untracked->recurse =1;1903}1904}19051906/*1907 * Read a directory tree. We currently ignore anything but1908 * directories, regular files and symlinks. That's because git1909 * doesn't handle them at all yet. Maybe that will change some1910 * day.1911 *1912 * Also, we ignore the name ".git" (even if it is not a directory).1913 * That likely will not change.1914 *1915 * If 'stop_at_first_file' is specified, 'path_excluded' is returned1916 * to signal that a file was found. This is the least significant value that1917 * indicates that a file was encountered that does not depend on the order of1918 * whether an untracked or exluded path was encountered first.1919 *1920 * Returns the most significant path_treatment value encountered in the scan.1921 * If 'stop_at_first_file' is specified, `path_excluded` is the most1922 * significant path_treatment value that will be returned.1923 */19241925static enum path_treatment read_directory_recursive(struct dir_struct *dir,1926struct index_state *istate,const char*base,int baselen,1927struct untracked_cache_dir *untracked,int check_only,1928int stop_at_first_file,const struct pathspec *pathspec)1929{1930struct cached_dir cdir;1931enum path_treatment state, subdir_state, dir_state = path_none;1932struct strbuf path = STRBUF_INIT;19331934strbuf_add(&path, base, baselen);19351936if(open_cached_dir(&cdir, dir, untracked, istate, &path, check_only))1937goto out;19381939if(untracked)1940 untracked->check_only = !!check_only;19411942while(!read_cached_dir(&cdir)) {1943/* check how the file or directory should be treated */1944 state =treat_path(dir, untracked, &cdir, istate, &path,1945 baselen, pathspec);19461947if(state > dir_state)1948 dir_state = state;19491950/* recurse into subdir if instructed by treat_path */1951if((state == path_recurse) ||1952((state == path_untracked) &&1953(dir->flags & DIR_SHOW_IGNORED_TOO) &&1954(get_dtype(cdir.de, istate, path.buf, path.len) == DT_DIR))) {1955struct untracked_cache_dir *ud;1956 ud =lookup_untracked(dir->untracked, untracked,1957 path.buf + baselen,1958 path.len - baselen);1959 subdir_state =1960read_directory_recursive(dir, istate, path.buf,1961 path.len, ud,1962 check_only, stop_at_first_file, pathspec);1963if(subdir_state > dir_state)1964 dir_state = subdir_state;1965}19661967if(check_only) {1968if(stop_at_first_file) {1969/*1970 * If stopping at first file, then1971 * signal that a file was found by1972 * returning `path_excluded`. This is1973 * to return a consistent value1974 * regardless of whether an ignored or1975 * excluded file happened to be1976 * encountered 1st.1977 *1978 * In current usage, the1979 * `stop_at_first_file` is passed when1980 * an ancestor directory has matched1981 * an exclude pattern, so any found1982 * files will be excluded.1983 */1984if(dir_state >= path_excluded) {1985 dir_state = path_excluded;1986break;1987}1988}19891990/* abort early if maximum state has been reached */1991if(dir_state == path_untracked) {1992if(cdir.fdir)1993add_untracked(untracked, path.buf + baselen);1994break;1995}1996/* skip the dir_add_* part */1997continue;1998}19992000/* add the path to the appropriate result list */2001switch(state) {2002case path_excluded:2003if(dir->flags & DIR_SHOW_IGNORED)2004dir_add_name(dir, istate, path.buf, path.len);2005else if((dir->flags & DIR_SHOW_IGNORED_TOO) ||2006((dir->flags & DIR_COLLECT_IGNORED) &&2007exclude_matches_pathspec(path.buf, path.len,2008 pathspec)))2009dir_add_ignored(dir, istate, path.buf, path.len);2010break;20112012case path_untracked:2013if(dir->flags & DIR_SHOW_IGNORED)2014break;2015dir_add_name(dir, istate, path.buf, path.len);2016if(cdir.fdir)2017add_untracked(untracked, path.buf + baselen);2018break;20192020default:2021break;2022}2023}2024close_cached_dir(&cdir);2025 out:2026strbuf_release(&path);20272028return dir_state;2029}20302031intcmp_dir_entry(const void*p1,const void*p2)2032{2033const struct dir_entry *e1 = *(const struct dir_entry **)p1;2034const struct dir_entry *e2 = *(const struct dir_entry **)p2;20352036returnname_compare(e1->name, e1->len, e2->name, e2->len);2037}20382039/* check if *out lexically strictly contains *in */2040intcheck_dir_entry_contains(const struct dir_entry *out,const struct dir_entry *in)2041{2042return(out->len < in->len) &&2043(out->name[out->len -1] =='/') &&2044!memcmp(out->name, in->name, out->len);2045}20462047static inttreat_leading_path(struct dir_struct *dir,2048struct index_state *istate,2049const char*path,int len,2050const struct pathspec *pathspec)2051{2052struct strbuf sb = STRBUF_INIT;2053int baselen, rc =0;2054const char*cp;2055int old_flags = dir->flags;20562057while(len && path[len -1] =='/')2058 len--;2059if(!len)2060return1;2061 baselen =0;2062 dir->flags &= ~DIR_SHOW_OTHER_DIRECTORIES;2063while(1) {2064 cp = path + baselen + !!baselen;2065 cp =memchr(cp,'/', path + len - cp);2066if(!cp)2067 baselen = len;2068else2069 baselen = cp - path;2070strbuf_setlen(&sb,0);2071strbuf_add(&sb, path, baselen);2072if(!is_directory(sb.buf))2073break;2074if(simplify_away(sb.buf, sb.len, pathspec))2075break;2076if(treat_one_path(dir, NULL, istate, &sb, baselen, pathspec,2077 DT_DIR, NULL) == path_none)2078break;/* do not recurse into it */2079if(len <= baselen) {2080 rc =1;2081break;/* finished checking */2082}2083}2084strbuf_release(&sb);2085 dir->flags = old_flags;2086return rc;2087}20882089static const char*get_ident_string(void)2090{2091static struct strbuf sb = STRBUF_INIT;2092struct utsname uts;20932094if(sb.len)2095return sb.buf;2096if(uname(&uts) <0)2097die_errno(_("failed to get kernel name and information"));2098strbuf_addf(&sb,"Location%s, system%s",get_git_work_tree(),2099 uts.sysname);2100return sb.buf;2101}21022103static intident_in_untracked(const struct untracked_cache *uc)2104{2105/*2106 * Previous git versions may have saved many NUL separated2107 * strings in the "ident" field, but it is insane to manage2108 * many locations, so just take care of the first one.2109 */21102111return!strcmp(uc->ident.buf,get_ident_string());2112}21132114static voidset_untracked_ident(struct untracked_cache *uc)2115{2116strbuf_reset(&uc->ident);2117strbuf_addstr(&uc->ident,get_ident_string());21182119/*2120 * This strbuf used to contain a list of NUL separated2121 * strings, so save NUL too for backward compatibility.2122 */2123strbuf_addch(&uc->ident,0);2124}21252126static voidnew_untracked_cache(struct index_state *istate)2127{2128struct untracked_cache *uc =xcalloc(1,sizeof(*uc));2129strbuf_init(&uc->ident,100);2130 uc->exclude_per_dir =".gitignore";2131/* should be the same flags used by git-status */2132 uc->dir_flags = DIR_SHOW_OTHER_DIRECTORIES | DIR_HIDE_EMPTY_DIRECTORIES;2133set_untracked_ident(uc);2134 istate->untracked = uc;2135 istate->cache_changed |= UNTRACKED_CHANGED;2136}21372138voidadd_untracked_cache(struct index_state *istate)2139{2140if(!istate->untracked) {2141new_untracked_cache(istate);2142}else{2143if(!ident_in_untracked(istate->untracked)) {2144free_untracked_cache(istate->untracked);2145new_untracked_cache(istate);2146}2147}2148}21492150voidremove_untracked_cache(struct index_state *istate)2151{2152if(istate->untracked) {2153free_untracked_cache(istate->untracked);2154 istate->untracked = NULL;2155 istate->cache_changed |= UNTRACKED_CHANGED;2156}2157}21582159static struct untracked_cache_dir *validate_untracked_cache(struct dir_struct *dir,2160int base_len,2161const struct pathspec *pathspec)2162{2163struct untracked_cache_dir *root;21642165if(!dir->untracked ||getenv("GIT_DISABLE_UNTRACKED_CACHE"))2166return NULL;21672168/*2169 * We only support $GIT_DIR/info/exclude and core.excludesfile2170 * as the global ignore rule files. Any other additions2171 * (e.g. from command line) invalidate the cache. This2172 * condition also catches running setup_standard_excludes()2173 * before setting dir->untracked!2174 */2175if(dir->unmanaged_exclude_files)2176return NULL;21772178/*2179 * Optimize for the main use case only: whole-tree git2180 * status. More work involved in treat_leading_path() if we2181 * use cache on just a subset of the worktree. pathspec2182 * support could make the matter even worse.2183 */2184if(base_len || (pathspec && pathspec->nr))2185return NULL;21862187/* Different set of flags may produce different results */2188if(dir->flags != dir->untracked->dir_flags ||2189/*2190 * See treat_directory(), case index_nonexistent. Without2191 * this flag, we may need to also cache .git file content2192 * for the resolve_gitlink_ref() call, which we don't.2193 */2194!(dir->flags & DIR_SHOW_OTHER_DIRECTORIES) ||2195/* We don't support collecting ignore files */2196(dir->flags & (DIR_SHOW_IGNORED | DIR_SHOW_IGNORED_TOO |2197 DIR_COLLECT_IGNORED)))2198return NULL;21992200/*2201 * If we use .gitignore in the cache and now you change it to2202 * .gitexclude, everything will go wrong.2203 */2204if(dir->exclude_per_dir != dir->untracked->exclude_per_dir &&2205strcmp(dir->exclude_per_dir, dir->untracked->exclude_per_dir))2206return NULL;22072208/*2209 * EXC_CMDL is not considered in the cache. If people set it,2210 * skip the cache.2211 */2212if(dir->exclude_list_group[EXC_CMDL].nr)2213return NULL;22142215if(!ident_in_untracked(dir->untracked)) {2216warning(_("Untracked cache is disabled on this system or location."));2217return NULL;2218}22192220if(!dir->untracked->root) {2221const int len =sizeof(*dir->untracked->root);2222 dir->untracked->root =xmalloc(len);2223memset(dir->untracked->root,0, len);2224}22252226/* Validate $GIT_DIR/info/exclude and core.excludesfile */2227 root = dir->untracked->root;2228if(oidcmp(&dir->ss_info_exclude.oid,2229&dir->untracked->ss_info_exclude.oid)) {2230invalidate_gitignore(dir->untracked, root);2231 dir->untracked->ss_info_exclude = dir->ss_info_exclude;2232}2233if(oidcmp(&dir->ss_excludes_file.oid,2234&dir->untracked->ss_excludes_file.oid)) {2235invalidate_gitignore(dir->untracked, root);2236 dir->untracked->ss_excludes_file = dir->ss_excludes_file;2237}22382239/* Make sure this directory is not dropped out at saving phase */2240 root->recurse =1;2241return root;2242}22432244intread_directory(struct dir_struct *dir,struct index_state *istate,2245const char*path,int len,const struct pathspec *pathspec)2246{2247struct untracked_cache_dir *untracked;2248uint64_t start =getnanotime();22492250if(has_symlink_leading_path(path, len))2251return dir->nr;22522253 untracked =validate_untracked_cache(dir, len, pathspec);2254if(!untracked)2255/*2256 * make sure untracked cache code path is disabled,2257 * e.g. prep_exclude()2258 */2259 dir->untracked = NULL;2260if(!len ||treat_leading_path(dir, istate, path, len, pathspec))2261read_directory_recursive(dir, istate, path, len, untracked,0,0, pathspec);2262QSORT(dir->entries, dir->nr, cmp_dir_entry);2263QSORT(dir->ignored, dir->ignored_nr, cmp_dir_entry);22642265/*2266 * If DIR_SHOW_IGNORED_TOO is set, read_directory_recursive() will2267 * also pick up untracked contents of untracked dirs; by default2268 * we discard these, but given DIR_KEEP_UNTRACKED_CONTENTS we do not.2269 */2270if((dir->flags & DIR_SHOW_IGNORED_TOO) &&2271!(dir->flags & DIR_KEEP_UNTRACKED_CONTENTS)) {2272int i, j;22732274/* remove from dir->entries untracked contents of untracked dirs */2275for(i = j =0; j < dir->nr; j++) {2276if(i &&2277check_dir_entry_contains(dir->entries[i -1], dir->entries[j])) {2278FREE_AND_NULL(dir->entries[j]);2279}else{2280 dir->entries[i++] = dir->entries[j];2281}2282}22832284 dir->nr = i;2285}22862287trace_performance_since(start,"read directory %.*s", len, path);2288if(dir->untracked) {2289static struct trace_key trace_untracked_stats =TRACE_KEY_INIT(UNTRACKED_STATS);2290trace_printf_key(&trace_untracked_stats,2291"node creation:%u\n"2292"gitignore invalidation:%u\n"2293"directory invalidation:%u\n"2294"opendir:%u\n",2295 dir->untracked->dir_created,2296 dir->untracked->gitignore_invalidated,2297 dir->untracked->dir_invalidated,2298 dir->untracked->dir_opened);2299if(dir->untracked == istate->untracked &&2300(dir->untracked->dir_opened ||2301 dir->untracked->gitignore_invalidated ||2302 dir->untracked->dir_invalidated))2303 istate->cache_changed |= UNTRACKED_CHANGED;2304if(dir->untracked != istate->untracked) {2305FREE_AND_NULL(dir->untracked);2306}2307}2308return dir->nr;2309}23102311intfile_exists(const char*f)2312{2313struct stat sb;2314returnlstat(f, &sb) ==0;2315}23162317static intcmp_icase(char a,char b)2318{2319if(a == b)2320return0;2321if(ignore_case)2322returntoupper(a) -toupper(b);2323return a - b;2324}23252326/*2327 * Given two normalized paths (a trailing slash is ok), if subdir is2328 * outside dir, return -1. Otherwise return the offset in subdir that2329 * can be used as relative path to dir.2330 */2331intdir_inside_of(const char*subdir,const char*dir)2332{2333int offset =0;23342335assert(dir && subdir && *dir && *subdir);23362337while(*dir && *subdir && !cmp_icase(*dir, *subdir)) {2338 dir++;2339 subdir++;2340 offset++;2341}23422343/* hel[p]/me vs hel[l]/yeah */2344if(*dir && *subdir)2345return-1;23462347if(!*subdir)2348return!*dir ? offset : -1;/* same dir */23492350/* foo/[b]ar vs foo/[] */2351if(is_dir_sep(dir[-1]))2352returnis_dir_sep(subdir[-1]) ? offset : -1;23532354/* foo[/]bar vs foo[] */2355returnis_dir_sep(*subdir) ? offset +1: -1;2356}23572358intis_inside_dir(const char*dir)2359{2360char*cwd;2361int rc;23622363if(!dir)2364return0;23652366 cwd =xgetcwd();2367 rc = (dir_inside_of(cwd, dir) >=0);2368free(cwd);2369return rc;2370}23712372intis_empty_dir(const char*path)2373{2374DIR*dir =opendir(path);2375struct dirent *e;2376int ret =1;23772378if(!dir)2379return0;23802381while((e =readdir(dir)) != NULL)2382if(!is_dot_or_dotdot(e->d_name)) {2383 ret =0;2384break;2385}23862387closedir(dir);2388return ret;2389}23902391static intremove_dir_recurse(struct strbuf *path,int flag,int*kept_up)2392{2393DIR*dir;2394struct dirent *e;2395int ret =0, original_len = path->len, len, kept_down =0;2396int only_empty = (flag & REMOVE_DIR_EMPTY_ONLY);2397int keep_toplevel = (flag & REMOVE_DIR_KEEP_TOPLEVEL);2398struct object_id submodule_head;23992400if((flag & REMOVE_DIR_KEEP_NESTED_GIT) &&2401!resolve_gitlink_ref(path->buf,"HEAD", &submodule_head)) {2402/* Do not descend and nuke a nested git work tree. */2403if(kept_up)2404*kept_up =1;2405return0;2406}24072408 flag &= ~REMOVE_DIR_KEEP_TOPLEVEL;2409 dir =opendir(path->buf);2410if(!dir) {2411if(errno == ENOENT)2412return keep_toplevel ? -1:0;2413else if(errno == EACCES && !keep_toplevel)2414/*2415 * An empty dir could be removable even if it2416 * is unreadable:2417 */2418returnrmdir(path->buf);2419else2420return-1;2421}2422strbuf_complete(path,'/');24232424 len = path->len;2425while((e =readdir(dir)) != NULL) {2426struct stat st;2427if(is_dot_or_dotdot(e->d_name))2428continue;24292430strbuf_setlen(path, len);2431strbuf_addstr(path, e->d_name);2432if(lstat(path->buf, &st)) {2433if(errno == ENOENT)2434/*2435 * file disappeared, which is what we2436 * wanted anyway2437 */2438continue;2439/* fall thru */2440}else if(S_ISDIR(st.st_mode)) {2441if(!remove_dir_recurse(path, flag, &kept_down))2442continue;/* happy */2443}else if(!only_empty &&2444(!unlink(path->buf) || errno == ENOENT)) {2445continue;/* happy, too */2446}24472448/* path too long, stat fails, or non-directory still exists */2449 ret = -1;2450break;2451}2452closedir(dir);24532454strbuf_setlen(path, original_len);2455if(!ret && !keep_toplevel && !kept_down)2456 ret = (!rmdir(path->buf) || errno == ENOENT) ?0: -1;2457else if(kept_up)2458/*2459 * report the uplevel that it is not an error that we2460 * did not rmdir() our directory.2461 */2462*kept_up = !ret;2463return ret;2464}24652466intremove_dir_recursively(struct strbuf *path,int flag)2467{2468returnremove_dir_recurse(path, flag, NULL);2469}24702471staticGIT_PATH_FUNC(git_path_info_exclude,"info/exclude")24722473voidsetup_standard_excludes(struct dir_struct *dir)2474{2475 dir->exclude_per_dir =".gitignore";24762477/* core.excludefile defaulting to $XDG_HOME/git/ignore */2478if(!excludes_file)2479 excludes_file =xdg_config_home("ignore");2480if(excludes_file && !access_or_warn(excludes_file, R_OK,0))2481add_excludes_from_file_1(dir, excludes_file,2482 dir->untracked ? &dir->ss_excludes_file : NULL);24832484/* per repository user preference */2485if(startup_info->have_repository) {2486const char*path =git_path_info_exclude();2487if(!access_or_warn(path, R_OK,0))2488add_excludes_from_file_1(dir, path,2489 dir->untracked ? &dir->ss_info_exclude : NULL);2490}2491}24922493intremove_path(const char*name)2494{2495char*slash;24962497if(unlink(name) && !is_missing_file_error(errno))2498return-1;24992500 slash =strrchr(name,'/');2501if(slash) {2502char*dirs =xstrdup(name);2503 slash = dirs + (slash - name);2504do{2505*slash ='\0';2506}while(rmdir(dirs) ==0&& (slash =strrchr(dirs,'/')));2507free(dirs);2508}2509return0;2510}25112512/*2513 * Frees memory within dir which was allocated for exclude lists and2514 * the exclude_stack. Does not free dir itself.2515 */2516voidclear_directory(struct dir_struct *dir)2517{2518int i, j;2519struct exclude_list_group *group;2520struct exclude_list *el;2521struct exclude_stack *stk;25222523for(i = EXC_CMDL; i <= EXC_FILE; i++) {2524 group = &dir->exclude_list_group[i];2525for(j =0; j < group->nr; j++) {2526 el = &group->el[j];2527if(i == EXC_DIRS)2528free((char*)el->src);2529clear_exclude_list(el);2530}2531free(group->el);2532}25332534 stk = dir->exclude_stack;2535while(stk) {2536struct exclude_stack *prev = stk->prev;2537free(stk);2538 stk = prev;2539}2540strbuf_release(&dir->basebuf);2541}25422543struct ondisk_untracked_cache {2544struct stat_data info_exclude_stat;2545struct stat_data excludes_file_stat;2546uint32_t dir_flags;2547unsigned char info_exclude_sha1[20];2548unsigned char excludes_file_sha1[20];2549char exclude_per_dir[FLEX_ARRAY];2550};25512552#define ouc_offset(x) offsetof(struct ondisk_untracked_cache, x)2553#define ouc_size(len) (ouc_offset(exclude_per_dir) + len + 1)25542555struct write_data {2556int index;/* number of written untracked_cache_dir */2557struct ewah_bitmap *check_only;/* from untracked_cache_dir */2558struct ewah_bitmap *valid;/* from untracked_cache_dir */2559struct ewah_bitmap *sha1_valid;/* set if exclude_sha1 is not null */2560struct strbuf out;2561struct strbuf sb_stat;2562struct strbuf sb_sha1;2563};25642565static voidstat_data_to_disk(struct stat_data *to,const struct stat_data *from)2566{2567 to->sd_ctime.sec =htonl(from->sd_ctime.sec);2568 to->sd_ctime.nsec =htonl(from->sd_ctime.nsec);2569 to->sd_mtime.sec =htonl(from->sd_mtime.sec);2570 to->sd_mtime.nsec =htonl(from->sd_mtime.nsec);2571 to->sd_dev =htonl(from->sd_dev);2572 to->sd_ino =htonl(from->sd_ino);2573 to->sd_uid =htonl(from->sd_uid);2574 to->sd_gid =htonl(from->sd_gid);2575 to->sd_size =htonl(from->sd_size);2576}25772578static voidwrite_one_dir(struct untracked_cache_dir *untracked,2579struct write_data *wd)2580{2581struct stat_data stat_data;2582struct strbuf *out = &wd->out;2583unsigned char intbuf[16];2584unsigned int intlen, value;2585int i = wd->index++;25862587/*2588 * untracked_nr should be reset whenever valid is clear, but2589 * for safety..2590 */2591if(!untracked->valid) {2592 untracked->untracked_nr =0;2593 untracked->check_only =0;2594}25952596if(untracked->check_only)2597ewah_set(wd->check_only, i);2598if(untracked->valid) {2599ewah_set(wd->valid, i);2600stat_data_to_disk(&stat_data, &untracked->stat_data);2601strbuf_add(&wd->sb_stat, &stat_data,sizeof(stat_data));2602}2603if(!is_null_sha1(untracked->exclude_sha1)) {2604ewah_set(wd->sha1_valid, i);2605strbuf_add(&wd->sb_sha1, untracked->exclude_sha1,20);2606}26072608 intlen =encode_varint(untracked->untracked_nr, intbuf);2609strbuf_add(out, intbuf, intlen);26102611/* skip non-recurse directories */2612for(i =0, value =0; i < untracked->dirs_nr; i++)2613if(untracked->dirs[i]->recurse)2614 value++;2615 intlen =encode_varint(value, intbuf);2616strbuf_add(out, intbuf, intlen);26172618strbuf_add(out, untracked->name,strlen(untracked->name) +1);26192620for(i =0; i < untracked->untracked_nr; i++)2621strbuf_add(out, untracked->untracked[i],2622strlen(untracked->untracked[i]) +1);26232624for(i =0; i < untracked->dirs_nr; i++)2625if(untracked->dirs[i]->recurse)2626write_one_dir(untracked->dirs[i], wd);2627}26282629voidwrite_untracked_extension(struct strbuf *out,struct untracked_cache *untracked)2630{2631struct ondisk_untracked_cache *ouc;2632struct write_data wd;2633unsigned char varbuf[16];2634int varint_len;2635size_t len =strlen(untracked->exclude_per_dir);26362637FLEX_ALLOC_MEM(ouc, exclude_per_dir, untracked->exclude_per_dir, len);2638stat_data_to_disk(&ouc->info_exclude_stat, &untracked->ss_info_exclude.stat);2639stat_data_to_disk(&ouc->excludes_file_stat, &untracked->ss_excludes_file.stat);2640hashcpy(ouc->info_exclude_sha1, untracked->ss_info_exclude.oid.hash);2641hashcpy(ouc->excludes_file_sha1, untracked->ss_excludes_file.oid.hash);2642 ouc->dir_flags =htonl(untracked->dir_flags);26432644 varint_len =encode_varint(untracked->ident.len, varbuf);2645strbuf_add(out, varbuf, varint_len);2646strbuf_addbuf(out, &untracked->ident);26472648strbuf_add(out, ouc,ouc_size(len));2649FREE_AND_NULL(ouc);26502651if(!untracked->root) {2652 varint_len =encode_varint(0, varbuf);2653strbuf_add(out, varbuf, varint_len);2654return;2655}26562657 wd.index =0;2658 wd.check_only =ewah_new();2659 wd.valid =ewah_new();2660 wd.sha1_valid =ewah_new();2661strbuf_init(&wd.out,1024);2662strbuf_init(&wd.sb_stat,1024);2663strbuf_init(&wd.sb_sha1,1024);2664write_one_dir(untracked->root, &wd);26652666 varint_len =encode_varint(wd.index, varbuf);2667strbuf_add(out, varbuf, varint_len);2668strbuf_addbuf(out, &wd.out);2669ewah_serialize_strbuf(wd.valid, out);2670ewah_serialize_strbuf(wd.check_only, out);2671ewah_serialize_strbuf(wd.sha1_valid, out);2672strbuf_addbuf(out, &wd.sb_stat);2673strbuf_addbuf(out, &wd.sb_sha1);2674strbuf_addch(out,'\0');/* safe guard for string lists */26752676ewah_free(wd.valid);2677ewah_free(wd.check_only);2678ewah_free(wd.sha1_valid);2679strbuf_release(&wd.out);2680strbuf_release(&wd.sb_stat);2681strbuf_release(&wd.sb_sha1);2682}26832684static voidfree_untracked(struct untracked_cache_dir *ucd)2685{2686int i;2687if(!ucd)2688return;2689for(i =0; i < ucd->dirs_nr; i++)2690free_untracked(ucd->dirs[i]);2691for(i =0; i < ucd->untracked_nr; i++)2692free(ucd->untracked[i]);2693free(ucd->untracked);2694free(ucd->dirs);2695free(ucd);2696}26972698voidfree_untracked_cache(struct untracked_cache *uc)2699{2700if(uc)2701free_untracked(uc->root);2702free(uc);2703}27042705struct read_data {2706int index;2707struct untracked_cache_dir **ucd;2708struct ewah_bitmap *check_only;2709struct ewah_bitmap *valid;2710struct ewah_bitmap *sha1_valid;2711const unsigned char*data;2712const unsigned char*end;2713};27142715static voidstat_data_from_disk(struct stat_data *to,const unsigned char*data)2716{2717memcpy(to, data,sizeof(*to));2718 to->sd_ctime.sec =ntohl(to->sd_ctime.sec);2719 to->sd_ctime.nsec =ntohl(to->sd_ctime.nsec);2720 to->sd_mtime.sec =ntohl(to->sd_mtime.sec);2721 to->sd_mtime.nsec =ntohl(to->sd_mtime.nsec);2722 to->sd_dev =ntohl(to->sd_dev);2723 to->sd_ino =ntohl(to->sd_ino);2724 to->sd_uid =ntohl(to->sd_uid);2725 to->sd_gid =ntohl(to->sd_gid);2726 to->sd_size =ntohl(to->sd_size);2727}27282729static intread_one_dir(struct untracked_cache_dir **untracked_,2730struct read_data *rd)2731{2732struct untracked_cache_dir ud, *untracked;2733const unsigned char*next, *data = rd->data, *end = rd->end;2734unsigned int value;2735int i, len;27362737memset(&ud,0,sizeof(ud));27382739 next = data;2740 value =decode_varint(&next);2741if(next > end)2742return-1;2743 ud.recurse =1;2744 ud.untracked_alloc = value;2745 ud.untracked_nr = value;2746if(ud.untracked_nr)2747ALLOC_ARRAY(ud.untracked, ud.untracked_nr);2748 data = next;27492750 next = data;2751 ud.dirs_alloc = ud.dirs_nr =decode_varint(&next);2752if(next > end)2753return-1;2754ALLOC_ARRAY(ud.dirs, ud.dirs_nr);2755 data = next;27562757 len =strlen((const char*)data);2758 next = data + len +1;2759if(next > rd->end)2760return-1;2761*untracked_ = untracked =xmalloc(st_add(sizeof(*untracked), len));2762memcpy(untracked, &ud,sizeof(ud));2763memcpy(untracked->name, data, len +1);2764 data = next;27652766for(i =0; i < untracked->untracked_nr; i++) {2767 len =strlen((const char*)data);2768 next = data + len +1;2769if(next > rd->end)2770return-1;2771 untracked->untracked[i] =xstrdup((const char*)data);2772 data = next;2773}27742775 rd->ucd[rd->index++] = untracked;2776 rd->data = data;27772778for(i =0; i < untracked->dirs_nr; i++) {2779 len =read_one_dir(untracked->dirs + i, rd);2780if(len <0)2781return-1;2782}2783return0;2784}27852786static voidset_check_only(size_t pos,void*cb)2787{2788struct read_data *rd = cb;2789struct untracked_cache_dir *ud = rd->ucd[pos];2790 ud->check_only =1;2791}27922793static voidread_stat(size_t pos,void*cb)2794{2795struct read_data *rd = cb;2796struct untracked_cache_dir *ud = rd->ucd[pos];2797if(rd->data +sizeof(struct stat_data) > rd->end) {2798 rd->data = rd->end +1;2799return;2800}2801stat_data_from_disk(&ud->stat_data, rd->data);2802 rd->data +=sizeof(struct stat_data);2803 ud->valid =1;2804}28052806static voidread_sha1(size_t pos,void*cb)2807{2808struct read_data *rd = cb;2809struct untracked_cache_dir *ud = rd->ucd[pos];2810if(rd->data +20> rd->end) {2811 rd->data = rd->end +1;2812return;2813}2814hashcpy(ud->exclude_sha1, rd->data);2815 rd->data +=20;2816}28172818static voidload_oid_stat(struct oid_stat *oid_stat,const unsigned char*data,2819const unsigned char*sha1)2820{2821stat_data_from_disk(&oid_stat->stat, data);2822hashcpy(oid_stat->oid.hash, sha1);2823 oid_stat->valid =1;2824}28252826struct untracked_cache *read_untracked_extension(const void*data,unsigned long sz)2827{2828struct untracked_cache *uc;2829struct read_data rd;2830const unsigned char*next = data, *end = (const unsigned char*)data + sz;2831const char*ident;2832int ident_len, len;2833const char*exclude_per_dir;28342835if(sz <=1|| end[-1] !='\0')2836return NULL;2837 end--;28382839 ident_len =decode_varint(&next);2840if(next + ident_len > end)2841return NULL;2842 ident = (const char*)next;2843 next += ident_len;28442845if(next +ouc_size(0) > end)2846return NULL;28472848 uc =xcalloc(1,sizeof(*uc));2849strbuf_init(&uc->ident, ident_len);2850strbuf_add(&uc->ident, ident, ident_len);2851load_oid_stat(&uc->ss_info_exclude,2852 next +ouc_offset(info_exclude_stat),2853 next +ouc_offset(info_exclude_sha1));2854load_oid_stat(&uc->ss_excludes_file,2855 next +ouc_offset(excludes_file_stat),2856 next +ouc_offset(excludes_file_sha1));2857 uc->dir_flags =get_be32(next +ouc_offset(dir_flags));2858 exclude_per_dir = (const char*)next +ouc_offset(exclude_per_dir);2859 uc->exclude_per_dir =xstrdup(exclude_per_dir);2860/* NUL after exclude_per_dir is covered by sizeof(*ouc) */2861 next +=ouc_size(strlen(exclude_per_dir));2862if(next >= end)2863goto done2;28642865 len =decode_varint(&next);2866if(next > end || len ==0)2867goto done2;28682869 rd.valid =ewah_new();2870 rd.check_only =ewah_new();2871 rd.sha1_valid =ewah_new();2872 rd.data = next;2873 rd.end = end;2874 rd.index =0;2875ALLOC_ARRAY(rd.ucd, len);28762877if(read_one_dir(&uc->root, &rd) || rd.index != len)2878goto done;28792880 next = rd.data;2881 len =ewah_read_mmap(rd.valid, next, end - next);2882if(len <0)2883goto done;28842885 next += len;2886 len =ewah_read_mmap(rd.check_only, next, end - next);2887if(len <0)2888goto done;28892890 next += len;2891 len =ewah_read_mmap(rd.sha1_valid, next, end - next);2892if(len <0)2893goto done;28942895ewah_each_bit(rd.check_only, set_check_only, &rd);2896 rd.data = next + len;2897ewah_each_bit(rd.valid, read_stat, &rd);2898ewah_each_bit(rd.sha1_valid, read_sha1, &rd);2899 next = rd.data;29002901done:2902free(rd.ucd);2903ewah_free(rd.valid);2904ewah_free(rd.check_only);2905ewah_free(rd.sha1_valid);2906done2:2907if(next != end) {2908free_untracked_cache(uc);2909 uc = NULL;2910}2911return uc;2912}29132914static voidinvalidate_one_directory(struct untracked_cache *uc,2915struct untracked_cache_dir *ucd)2916{2917 uc->dir_invalidated++;2918 ucd->valid =0;2919 ucd->untracked_nr =0;2920}29212922/*2923 * Normally when an entry is added or removed from a directory,2924 * invalidating that directory is enough. No need to touch its2925 * ancestors. When a directory is shown as "foo/bar/" in git-status2926 * however, deleting or adding an entry may have cascading effect.2927 *2928 * Say the "foo/bar/file" has become untracked, we need to tell the2929 * untracked_cache_dir of "foo" that "bar/" is not an untracked2930 * directory any more (because "bar" is managed by foo as an untracked2931 * "file").2932 *2933 * Similarly, if "foo/bar/file" moves from untracked to tracked and it2934 * was the last untracked entry in the entire "foo", we should show2935 * "foo/" instead. Which means we have to invalidate past "bar" up to2936 * "foo".2937 *2938 * This function traverses all directories from root to leaf. If there2939 * is a chance of one of the above cases happening, we invalidate back2940 * to root. Otherwise we just invalidate the leaf. There may be a more2941 * sophisticated way than checking for SHOW_OTHER_DIRECTORIES to2942 * detect these cases and avoid unnecessary invalidation, for example,2943 * checking for the untracked entry named "bar/" in "foo", but for now2944 * stick to something safe and simple.2945 */2946static intinvalidate_one_component(struct untracked_cache *uc,2947struct untracked_cache_dir *dir,2948const char*path,int len)2949{2950const char*rest =strchr(path,'/');29512952if(rest) {2953int component_len = rest - path;2954struct untracked_cache_dir *d =2955lookup_untracked(uc, dir, path, component_len);2956int ret =2957invalidate_one_component(uc, d, rest +1,2958 len - (component_len +1));2959if(ret)2960invalidate_one_directory(uc, dir);2961return ret;2962}29632964invalidate_one_directory(uc, dir);2965return uc->dir_flags & DIR_SHOW_OTHER_DIRECTORIES;2966}29672968voiduntracked_cache_invalidate_path(struct index_state *istate,2969const char*path)2970{2971if(!istate->untracked || !istate->untracked->root)2972return;2973invalidate_one_component(istate->untracked, istate->untracked->root,2974 path,strlen(path));2975}29762977voiduntracked_cache_remove_from_index(struct index_state *istate,2978const char*path)2979{2980untracked_cache_invalidate_path(istate, path);2981}29822983voiduntracked_cache_add_to_index(struct index_state *istate,2984const char*path)2985{2986untracked_cache_invalidate_path(istate, path);2987}29882989/* Update gitfile and core.worktree setting to connect work tree and git dir */2990voidconnect_work_tree_and_git_dir(const char*work_tree_,const char*git_dir_)2991{2992struct strbuf gitfile_sb = STRBUF_INIT;2993struct strbuf cfg_sb = STRBUF_INIT;2994struct strbuf rel_path = STRBUF_INIT;2995char*git_dir, *work_tree;29962997/* Prepare .git file */2998strbuf_addf(&gitfile_sb,"%s/.git", work_tree_);2999if(safe_create_leading_directories_const(gitfile_sb.buf))3000die(_("could not create directories for%s"), gitfile_sb.buf);30013002/* Prepare config file */3003strbuf_addf(&cfg_sb,"%s/config", git_dir_);3004if(safe_create_leading_directories_const(cfg_sb.buf))3005die(_("could not create directories for%s"), cfg_sb.buf);30063007 git_dir =real_pathdup(git_dir_,1);3008 work_tree =real_pathdup(work_tree_,1);30093010/* Write .git file */3011write_file(gitfile_sb.buf,"gitdir:%s",3012relative_path(git_dir, work_tree, &rel_path));3013/* Update core.worktree setting */3014git_config_set_in_file(cfg_sb.buf,"core.worktree",3015relative_path(work_tree, git_dir, &rel_path));30163017strbuf_release(&gitfile_sb);3018strbuf_release(&cfg_sb);3019strbuf_release(&rel_path);3020free(work_tree);3021free(git_dir);3022}30233024/*3025 * Migrate the git directory of the given path from old_git_dir to new_git_dir.3026 */3027voidrelocate_gitdir(const char*path,const char*old_git_dir,const char*new_git_dir)3028{3029if(rename(old_git_dir, new_git_dir) <0)3030die_errno(_("could not migrate git directory from '%s' to '%s'"),3031 old_git_dir, new_git_dir);30323033connect_work_tree_and_git_dir(path, new_git_dir);3034}