dir.con commit wildmatch: remove unused wildopts parameter (55d3426)
   1/*
   2 * This handles recursive filename detection with exclude
   3 * files, index knowledge etc..
   4 *
   5 * See Documentation/technical/api-directory-listing.txt
   6 *
   7 * Copyright (C) Linus Torvalds, 2005-2006
   8 *               Junio Hamano, 2005-2006
   9 */
  10#define NO_THE_INDEX_COMPATIBILITY_MACROS
  11#include "cache.h"
  12#include "dir.h"
  13#include "attr.h"
  14#include "refs.h"
  15#include "wildmatch.h"
  16#include "pathspec.h"
  17#include "utf8.h"
  18#include "varint.h"
  19#include "ewah/ewok.h"
  20
  21/*
  22 * Tells read_directory_recursive how a file or directory should be treated.
  23 * Values are ordered by significance, e.g. if a directory contains both
  24 * excluded and untracked files, it is listed as untracked because
  25 * path_untracked > path_excluded.
  26 */
  27enum path_treatment {
  28        path_none = 0,
  29        path_recurse,
  30        path_excluded,
  31        path_untracked
  32};
  33
  34/*
  35 * Support data structure for our opendir/readdir/closedir wrappers
  36 */
  37struct cached_dir {
  38        DIR *fdir;
  39        struct untracked_cache_dir *untracked;
  40        int nr_files;
  41        int nr_dirs;
  42
  43        struct dirent *de;
  44        const char *file;
  45        struct untracked_cache_dir *ucd;
  46};
  47
  48static enum path_treatment read_directory_recursive(struct dir_struct *dir,
  49        struct index_state *istate, const char *path, int len,
  50        struct untracked_cache_dir *untracked,
  51        int check_only, const struct pathspec *pathspec);
  52static int get_dtype(struct dirent *de, struct index_state *istate,
  53                     const char *path, int len);
  54
  55int count_slashes(const char *s)
  56{
  57        int cnt = 0;
  58        while (*s)
  59                if (*s++ == '/')
  60                        cnt++;
  61        return cnt;
  62}
  63
  64int fspathcmp(const char *a, const char *b)
  65{
  66        return ignore_case ? strcasecmp(a, b) : strcmp(a, b);
  67}
  68
  69int fspathncmp(const char *a, const char *b, size_t count)
  70{
  71        return ignore_case ? strncasecmp(a, b, count) : strncmp(a, b, count);
  72}
  73
  74int git_fnmatch(const struct pathspec_item *item,
  75                const char *pattern, const char *string,
  76                int prefix)
  77{
  78        if (prefix > 0) {
  79                if (ps_strncmp(item, pattern, string, prefix))
  80                        return WM_NOMATCH;
  81                pattern += prefix;
  82                string += prefix;
  83        }
  84        if (item->flags & PATHSPEC_ONESTAR) {
  85                int pattern_len = strlen(++pattern);
  86                int string_len = strlen(string);
  87                return string_len < pattern_len ||
  88                        ps_strcmp(item, pattern,
  89                                  string + string_len - pattern_len);
  90        }
  91        if (item->magic & PATHSPEC_GLOB)
  92                return wildmatch(pattern, string,
  93                                 WM_PATHNAME |
  94                                 (item->magic & PATHSPEC_ICASE ? WM_CASEFOLD : 0));
  95        else
  96                /* wildmatch has not learned no FNM_PATHNAME mode yet */
  97                return wildmatch(pattern, string,
  98                                 item->magic & PATHSPEC_ICASE ? WM_CASEFOLD : 0);
  99}
 100
 101static int fnmatch_icase_mem(const char *pattern, int patternlen,
 102                             const char *string, int stringlen,
 103                             int flags)
 104{
 105        int match_status;
 106        struct strbuf pat_buf = STRBUF_INIT;
 107        struct strbuf str_buf = STRBUF_INIT;
 108        const char *use_pat = pattern;
 109        const char *use_str = string;
 110
 111        if (pattern[patternlen]) {
 112                strbuf_add(&pat_buf, pattern, patternlen);
 113                use_pat = pat_buf.buf;
 114        }
 115        if (string[stringlen]) {
 116                strbuf_add(&str_buf, string, stringlen);
 117                use_str = str_buf.buf;
 118        }
 119
 120        if (ignore_case)
 121                flags |= WM_CASEFOLD;
 122        match_status = wildmatch(use_pat, use_str, flags);
 123
 124        strbuf_release(&pat_buf);
 125        strbuf_release(&str_buf);
 126
 127        return match_status;
 128}
 129
 130static size_t common_prefix_len(const struct pathspec *pathspec)
 131{
 132        int n;
 133        size_t max = 0;
 134
 135        /*
 136         * ":(icase)path" is treated as a pathspec full of
 137         * wildcard. In other words, only prefix is considered common
 138         * prefix. If the pathspec is abc/foo abc/bar, running in
 139         * subdir xyz, the common prefix is still xyz, not xuz/abc as
 140         * in non-:(icase).
 141         */
 142        GUARD_PATHSPEC(pathspec,
 143                       PATHSPEC_FROMTOP |
 144                       PATHSPEC_MAXDEPTH |
 145                       PATHSPEC_LITERAL |
 146                       PATHSPEC_GLOB |
 147                       PATHSPEC_ICASE |
 148                       PATHSPEC_EXCLUDE |
 149                       PATHSPEC_ATTR);
 150
 151        for (n = 0; n < pathspec->nr; n++) {
 152                size_t i = 0, len = 0, item_len;
 153                if (pathspec->items[n].magic & PATHSPEC_EXCLUDE)
 154                        continue;
 155                if (pathspec->items[n].magic & PATHSPEC_ICASE)
 156                        item_len = pathspec->items[n].prefix;
 157                else
 158                        item_len = pathspec->items[n].nowildcard_len;
 159                while (i < item_len && (n == 0 || i < max)) {
 160                        char c = pathspec->items[n].match[i];
 161                        if (c != pathspec->items[0].match[i])
 162                                break;
 163                        if (c == '/')
 164                                len = i + 1;
 165                        i++;
 166                }
 167                if (n == 0 || len < max) {
 168                        max = len;
 169                        if (!max)
 170                                break;
 171                }
 172        }
 173        return max;
 174}
 175
 176/*
 177 * Returns a copy of the longest leading path common among all
 178 * pathspecs.
 179 */
 180char *common_prefix(const struct pathspec *pathspec)
 181{
 182        unsigned long len = common_prefix_len(pathspec);
 183
 184        return len ? xmemdupz(pathspec->items[0].match, len) : NULL;
 185}
 186
 187int fill_directory(struct dir_struct *dir,
 188                   struct index_state *istate,
 189                   const struct pathspec *pathspec)
 190{
 191        const char *prefix;
 192        size_t prefix_len;
 193
 194        /*
 195         * Calculate common prefix for the pathspec, and
 196         * use that to optimize the directory walk
 197         */
 198        prefix_len = common_prefix_len(pathspec);
 199        prefix = prefix_len ? pathspec->items[0].match : "";
 200
 201        /* Read the directory and prune it */
 202        read_directory(dir, istate, prefix, prefix_len, pathspec);
 203
 204        return prefix_len;
 205}
 206
 207int within_depth(const char *name, int namelen,
 208                        int depth, int max_depth)
 209{
 210        const char *cp = name, *cpe = name + namelen;
 211
 212        while (cp < cpe) {
 213                if (*cp++ != '/')
 214                        continue;
 215                depth++;
 216                if (depth > max_depth)
 217                        return 0;
 218        }
 219        return 1;
 220}
 221
 222#define DO_MATCH_EXCLUDE   (1<<0)
 223#define DO_MATCH_DIRECTORY (1<<1)
 224#define DO_MATCH_SUBMODULE (1<<2)
 225
 226static int match_attrs(const char *name, int namelen,
 227                       const struct pathspec_item *item)
 228{
 229        int i;
 230
 231        git_check_attr(name, item->attr_check);
 232        for (i = 0; i < item->attr_match_nr; i++) {
 233                const char *value;
 234                int matched;
 235                enum attr_match_mode match_mode;
 236
 237                value = item->attr_check->items[i].value;
 238                match_mode = item->attr_match[i].match_mode;
 239
 240                if (ATTR_TRUE(value))
 241                        matched = (match_mode == MATCH_SET);
 242                else if (ATTR_FALSE(value))
 243                        matched = (match_mode == MATCH_UNSET);
 244                else if (ATTR_UNSET(value))
 245                        matched = (match_mode == MATCH_UNSPECIFIED);
 246                else
 247                        matched = (match_mode == MATCH_VALUE &&
 248                                   !strcmp(item->attr_match[i].value, value));
 249                if (!matched)
 250                        return 0;
 251        }
 252
 253        return 1;
 254}
 255
 256/*
 257 * Does 'match' match the given name?
 258 * A match is found if
 259 *
 260 * (1) the 'match' string is leading directory of 'name', or
 261 * (2) the 'match' string is a wildcard and matches 'name', or
 262 * (3) the 'match' string is exactly the same as 'name'.
 263 *
 264 * and the return value tells which case it was.
 265 *
 266 * It returns 0 when there is no match.
 267 */
 268static int match_pathspec_item(const struct pathspec_item *item, int prefix,
 269                               const char *name, int namelen, unsigned flags)
 270{
 271        /* name/namelen has prefix cut off by caller */
 272        const char *match = item->match + prefix;
 273        int matchlen = item->len - prefix;
 274
 275        /*
 276         * The normal call pattern is:
 277         * 1. prefix = common_prefix_len(ps);
 278         * 2. prune something, or fill_directory
 279         * 3. match_pathspec()
 280         *
 281         * 'prefix' at #1 may be shorter than the command's prefix and
 282         * it's ok for #2 to match extra files. Those extras will be
 283         * trimmed at #3.
 284         *
 285         * Suppose the pathspec is 'foo' and '../bar' running from
 286         * subdir 'xyz'. The common prefix at #1 will be empty, thanks
 287         * to "../". We may have xyz/foo _and_ XYZ/foo after #2. The
 288         * user does not want XYZ/foo, only the "foo" part should be
 289         * case-insensitive. We need to filter out XYZ/foo here. In
 290         * other words, we do not trust the caller on comparing the
 291         * prefix part when :(icase) is involved. We do exact
 292         * comparison ourselves.
 293         *
 294         * Normally the caller (common_prefix_len() in fact) does
 295         * _exact_ matching on name[-prefix+1..-1] and we do not need
 296         * to check that part. Be defensive and check it anyway, in
 297         * case common_prefix_len is changed, or a new caller is
 298         * introduced that does not use common_prefix_len.
 299         *
 300         * If the penalty turns out too high when prefix is really
 301         * long, maybe change it to
 302         * strncmp(match, name, item->prefix - prefix)
 303         */
 304        if (item->prefix && (item->magic & PATHSPEC_ICASE) &&
 305            strncmp(item->match, name - prefix, item->prefix))
 306                return 0;
 307
 308        if (item->attr_match_nr && !match_attrs(name, namelen, item))
 309                return 0;
 310
 311        /* If the match was just the prefix, we matched */
 312        if (!*match)
 313                return MATCHED_RECURSIVELY;
 314
 315        if (matchlen <= namelen && !ps_strncmp(item, match, name, matchlen)) {
 316                if (matchlen == namelen)
 317                        return MATCHED_EXACTLY;
 318
 319                if (match[matchlen-1] == '/' || name[matchlen] == '/')
 320                        return MATCHED_RECURSIVELY;
 321        } else if ((flags & DO_MATCH_DIRECTORY) &&
 322                   match[matchlen - 1] == '/' &&
 323                   namelen == matchlen - 1 &&
 324                   !ps_strncmp(item, match, name, namelen))
 325                return MATCHED_EXACTLY;
 326
 327        if (item->nowildcard_len < item->len &&
 328            !git_fnmatch(item, match, name,
 329                         item->nowildcard_len - prefix))
 330                return MATCHED_FNMATCH;
 331
 332        /* Perform checks to see if "name" is a super set of the pathspec */
 333        if (flags & DO_MATCH_SUBMODULE) {
 334                /* name is a literal prefix of the pathspec */
 335                if ((namelen < matchlen) &&
 336                    (match[namelen] == '/') &&
 337                    !ps_strncmp(item, match, name, namelen))
 338                        return MATCHED_RECURSIVELY;
 339
 340                /* name" doesn't match up to the first wild character */
 341                if (item->nowildcard_len < item->len &&
 342                    ps_strncmp(item, match, name,
 343                               item->nowildcard_len - prefix))
 344                        return 0;
 345
 346                /*
 347                 * Here is where we would perform a wildmatch to check if
 348                 * "name" can be matched as a directory (or a prefix) against
 349                 * the pathspec.  Since wildmatch doesn't have this capability
 350                 * at the present we have to punt and say that it is a match,
 351                 * potentially returning a false positive
 352                 * The submodules themselves will be able to perform more
 353                 * accurate matching to determine if the pathspec matches.
 354                 */
 355                return MATCHED_RECURSIVELY;
 356        }
 357
 358        return 0;
 359}
 360
 361/*
 362 * Given a name and a list of pathspecs, returns the nature of the
 363 * closest (i.e. most specific) match of the name to any of the
 364 * pathspecs.
 365 *
 366 * The caller typically calls this multiple times with the same
 367 * pathspec and seen[] array but with different name/namelen
 368 * (e.g. entries from the index) and is interested in seeing if and
 369 * how each pathspec matches all the names it calls this function
 370 * with.  A mark is left in the seen[] array for each pathspec element
 371 * indicating the closest type of match that element achieved, so if
 372 * seen[n] remains zero after multiple invocations, that means the nth
 373 * pathspec did not match any names, which could indicate that the
 374 * user mistyped the nth pathspec.
 375 */
 376static int do_match_pathspec(const struct pathspec *ps,
 377                             const char *name, int namelen,
 378                             int prefix, char *seen,
 379                             unsigned flags)
 380{
 381        int i, retval = 0, exclude = flags & DO_MATCH_EXCLUDE;
 382
 383        GUARD_PATHSPEC(ps,
 384                       PATHSPEC_FROMTOP |
 385                       PATHSPEC_MAXDEPTH |
 386                       PATHSPEC_LITERAL |
 387                       PATHSPEC_GLOB |
 388                       PATHSPEC_ICASE |
 389                       PATHSPEC_EXCLUDE |
 390                       PATHSPEC_ATTR);
 391
 392        if (!ps->nr) {
 393                if (!ps->recursive ||
 394                    !(ps->magic & PATHSPEC_MAXDEPTH) ||
 395                    ps->max_depth == -1)
 396                        return MATCHED_RECURSIVELY;
 397
 398                if (within_depth(name, namelen, 0, ps->max_depth))
 399                        return MATCHED_EXACTLY;
 400                else
 401                        return 0;
 402        }
 403
 404        name += prefix;
 405        namelen -= prefix;
 406
 407        for (i = ps->nr - 1; i >= 0; i--) {
 408                int how;
 409
 410                if ((!exclude &&   ps->items[i].magic & PATHSPEC_EXCLUDE) ||
 411                    ( exclude && !(ps->items[i].magic & PATHSPEC_EXCLUDE)))
 412                        continue;
 413
 414                if (seen && seen[i] == MATCHED_EXACTLY)
 415                        continue;
 416                /*
 417                 * Make exclude patterns optional and never report
 418                 * "pathspec ':(exclude)foo' matches no files"
 419                 */
 420                if (seen && ps->items[i].magic & PATHSPEC_EXCLUDE)
 421                        seen[i] = MATCHED_FNMATCH;
 422                how = match_pathspec_item(ps->items+i, prefix, name,
 423                                          namelen, flags);
 424                if (ps->recursive &&
 425                    (ps->magic & PATHSPEC_MAXDEPTH) &&
 426                    ps->max_depth != -1 &&
 427                    how && how != MATCHED_FNMATCH) {
 428                        int len = ps->items[i].len;
 429                        if (name[len] == '/')
 430                                len++;
 431                        if (within_depth(name+len, namelen-len, 0, ps->max_depth))
 432                                how = MATCHED_EXACTLY;
 433                        else
 434                                how = 0;
 435                }
 436                if (how) {
 437                        if (retval < how)
 438                                retval = how;
 439                        if (seen && seen[i] < how)
 440                                seen[i] = how;
 441                }
 442        }
 443        return retval;
 444}
 445
 446int match_pathspec(const struct pathspec *ps,
 447                   const char *name, int namelen,
 448                   int prefix, char *seen, int is_dir)
 449{
 450        int positive, negative;
 451        unsigned flags = is_dir ? DO_MATCH_DIRECTORY : 0;
 452        positive = do_match_pathspec(ps, name, namelen,
 453                                     prefix, seen, flags);
 454        if (!(ps->magic & PATHSPEC_EXCLUDE) || !positive)
 455                return positive;
 456        negative = do_match_pathspec(ps, name, namelen,
 457                                     prefix, seen,
 458                                     flags | DO_MATCH_EXCLUDE);
 459        return negative ? 0 : positive;
 460}
 461
 462/**
 463 * Check if a submodule is a superset of the pathspec
 464 */
 465int submodule_path_match(const struct pathspec *ps,
 466                         const char *submodule_name,
 467                         char *seen)
 468{
 469        int matched = do_match_pathspec(ps, submodule_name,
 470                                        strlen(submodule_name),
 471                                        0, seen,
 472                                        DO_MATCH_DIRECTORY |
 473                                        DO_MATCH_SUBMODULE);
 474        return matched;
 475}
 476
 477int report_path_error(const char *ps_matched,
 478                      const struct pathspec *pathspec,
 479                      const char *prefix)
 480{
 481        /*
 482         * Make sure all pathspec matched; otherwise it is an error.
 483         */
 484        int num, errors = 0;
 485        for (num = 0; num < pathspec->nr; num++) {
 486                int other, found_dup;
 487
 488                if (ps_matched[num])
 489                        continue;
 490                /*
 491                 * The caller might have fed identical pathspec
 492                 * twice.  Do not barf on such a mistake.
 493                 * FIXME: parse_pathspec should have eliminated
 494                 * duplicate pathspec.
 495                 */
 496                for (found_dup = other = 0;
 497                     !found_dup && other < pathspec->nr;
 498                     other++) {
 499                        if (other == num || !ps_matched[other])
 500                                continue;
 501                        if (!strcmp(pathspec->items[other].original,
 502                                    pathspec->items[num].original))
 503                                /*
 504                                 * Ok, we have a match already.
 505                                 */
 506                                found_dup = 1;
 507                }
 508                if (found_dup)
 509                        continue;
 510
 511                error("pathspec '%s' did not match any file(s) known to git.",
 512                      pathspec->items[num].original);
 513                errors++;
 514        }
 515        return errors;
 516}
 517
 518/*
 519 * Return the length of the "simple" part of a path match limiter.
 520 */
 521int simple_length(const char *match)
 522{
 523        int len = -1;
 524
 525        for (;;) {
 526                unsigned char c = *match++;
 527                len++;
 528                if (c == '\0' || is_glob_special(c))
 529                        return len;
 530        }
 531}
 532
 533int no_wildcard(const char *string)
 534{
 535        return string[simple_length(string)] == '\0';
 536}
 537
 538void parse_exclude_pattern(const char **pattern,
 539                           int *patternlen,
 540                           unsigned *flags,
 541                           int *nowildcardlen)
 542{
 543        const char *p = *pattern;
 544        size_t i, len;
 545
 546        *flags = 0;
 547        if (*p == '!') {
 548                *flags |= EXC_FLAG_NEGATIVE;
 549                p++;
 550        }
 551        len = strlen(p);
 552        if (len && p[len - 1] == '/') {
 553                len--;
 554                *flags |= EXC_FLAG_MUSTBEDIR;
 555        }
 556        for (i = 0; i < len; i++) {
 557                if (p[i] == '/')
 558                        break;
 559        }
 560        if (i == len)
 561                *flags |= EXC_FLAG_NODIR;
 562        *nowildcardlen = simple_length(p);
 563        /*
 564         * we should have excluded the trailing slash from 'p' too,
 565         * but that's one more allocation. Instead just make sure
 566         * nowildcardlen does not exceed real patternlen
 567         */
 568        if (*nowildcardlen > len)
 569                *nowildcardlen = len;
 570        if (*p == '*' && no_wildcard(p + 1))
 571                *flags |= EXC_FLAG_ENDSWITH;
 572        *pattern = p;
 573        *patternlen = len;
 574}
 575
 576void add_exclude(const char *string, const char *base,
 577                 int baselen, struct exclude_list *el, int srcpos)
 578{
 579        struct exclude *x;
 580        int patternlen;
 581        unsigned flags;
 582        int nowildcardlen;
 583
 584        parse_exclude_pattern(&string, &patternlen, &flags, &nowildcardlen);
 585        if (flags & EXC_FLAG_MUSTBEDIR) {
 586                FLEXPTR_ALLOC_MEM(x, pattern, string, patternlen);
 587        } else {
 588                x = xmalloc(sizeof(*x));
 589                x->pattern = string;
 590        }
 591        x->patternlen = patternlen;
 592        x->nowildcardlen = nowildcardlen;
 593        x->base = base;
 594        x->baselen = baselen;
 595        x->flags = flags;
 596        x->srcpos = srcpos;
 597        ALLOC_GROW(el->excludes, el->nr + 1, el->alloc);
 598        el->excludes[el->nr++] = x;
 599        x->el = el;
 600}
 601
 602static void *read_skip_worktree_file_from_index(const struct index_state *istate,
 603                                                const char *path, size_t *size,
 604                                                struct sha1_stat *sha1_stat)
 605{
 606        int pos, len;
 607        unsigned long sz;
 608        enum object_type type;
 609        void *data;
 610
 611        len = strlen(path);
 612        pos = index_name_pos(istate, path, len);
 613        if (pos < 0)
 614                return NULL;
 615        if (!ce_skip_worktree(istate->cache[pos]))
 616                return NULL;
 617        data = read_sha1_file(istate->cache[pos]->oid.hash, &type, &sz);
 618        if (!data || type != OBJ_BLOB) {
 619                free(data);
 620                return NULL;
 621        }
 622        *size = xsize_t(sz);
 623        if (sha1_stat) {
 624                memset(&sha1_stat->stat, 0, sizeof(sha1_stat->stat));
 625                hashcpy(sha1_stat->sha1, istate->cache[pos]->oid.hash);
 626        }
 627        return data;
 628}
 629
 630/*
 631 * Frees memory within el which was allocated for exclude patterns and
 632 * the file buffer.  Does not free el itself.
 633 */
 634void clear_exclude_list(struct exclude_list *el)
 635{
 636        int i;
 637
 638        for (i = 0; i < el->nr; i++)
 639                free(el->excludes[i]);
 640        free(el->excludes);
 641        free(el->filebuf);
 642
 643        memset(el, 0, sizeof(*el));
 644}
 645
 646static void trim_trailing_spaces(char *buf)
 647{
 648        char *p, *last_space = NULL;
 649
 650        for (p = buf; *p; p++)
 651                switch (*p) {
 652                case ' ':
 653                        if (!last_space)
 654                                last_space = p;
 655                        break;
 656                case '\\':
 657                        p++;
 658                        if (!*p)
 659                                return;
 660                        /* fallthrough */
 661                default:
 662                        last_space = NULL;
 663                }
 664
 665        if (last_space)
 666                *last_space = '\0';
 667}
 668
 669/*
 670 * Given a subdirectory name and "dir" of the current directory,
 671 * search the subdir in "dir" and return it, or create a new one if it
 672 * does not exist in "dir".
 673 *
 674 * If "name" has the trailing slash, it'll be excluded in the search.
 675 */
 676static struct untracked_cache_dir *lookup_untracked(struct untracked_cache *uc,
 677                                                    struct untracked_cache_dir *dir,
 678                                                    const char *name, int len)
 679{
 680        int first, last;
 681        struct untracked_cache_dir *d;
 682        if (!dir)
 683                return NULL;
 684        if (len && name[len - 1] == '/')
 685                len--;
 686        first = 0;
 687        last = dir->dirs_nr;
 688        while (last > first) {
 689                int cmp, next = (last + first) >> 1;
 690                d = dir->dirs[next];
 691                cmp = strncmp(name, d->name, len);
 692                if (!cmp && strlen(d->name) > len)
 693                        cmp = -1;
 694                if (!cmp)
 695                        return d;
 696                if (cmp < 0) {
 697                        last = next;
 698                        continue;
 699                }
 700                first = next+1;
 701        }
 702
 703        uc->dir_created++;
 704        FLEX_ALLOC_MEM(d, name, name, len);
 705
 706        ALLOC_GROW(dir->dirs, dir->dirs_nr + 1, dir->dirs_alloc);
 707        memmove(dir->dirs + first + 1, dir->dirs + first,
 708                (dir->dirs_nr - first) * sizeof(*dir->dirs));
 709        dir->dirs_nr++;
 710        dir->dirs[first] = d;
 711        return d;
 712}
 713
 714static void do_invalidate_gitignore(struct untracked_cache_dir *dir)
 715{
 716        int i;
 717        dir->valid = 0;
 718        dir->untracked_nr = 0;
 719        for (i = 0; i < dir->dirs_nr; i++)
 720                do_invalidate_gitignore(dir->dirs[i]);
 721}
 722
 723static void invalidate_gitignore(struct untracked_cache *uc,
 724                                 struct untracked_cache_dir *dir)
 725{
 726        uc->gitignore_invalidated++;
 727        do_invalidate_gitignore(dir);
 728}
 729
 730static void invalidate_directory(struct untracked_cache *uc,
 731                                 struct untracked_cache_dir *dir)
 732{
 733        int i;
 734        uc->dir_invalidated++;
 735        dir->valid = 0;
 736        dir->untracked_nr = 0;
 737        for (i = 0; i < dir->dirs_nr; i++)
 738                dir->dirs[i]->recurse = 0;
 739}
 740
 741/*
 742 * Given a file with name "fname", read it (either from disk, or from
 743 * an index if 'istate' is non-null), parse it and store the
 744 * exclude rules in "el".
 745 *
 746 * If "ss" is not NULL, compute SHA-1 of the exclude file and fill
 747 * stat data from disk (only valid if add_excludes returns zero). If
 748 * ss_valid is non-zero, "ss" must contain good value as input.
 749 */
 750static int add_excludes(const char *fname, const char *base, int baselen,
 751                        struct exclude_list *el,
 752                        struct index_state *istate,
 753                        struct sha1_stat *sha1_stat)
 754{
 755        struct stat st;
 756        int fd, i, lineno = 1;
 757        size_t size = 0;
 758        char *buf, *entry;
 759
 760        fd = open(fname, O_RDONLY);
 761        if (fd < 0 || fstat(fd, &st) < 0) {
 762                if (fd < 0)
 763                        warn_on_fopen_errors(fname);
 764                else
 765                        close(fd);
 766                if (!istate ||
 767                    (buf = read_skip_worktree_file_from_index(istate, fname, &size, sha1_stat)) == NULL)
 768                        return -1;
 769                if (size == 0) {
 770                        free(buf);
 771                        return 0;
 772                }
 773                if (buf[size-1] != '\n') {
 774                        buf = xrealloc(buf, st_add(size, 1));
 775                        buf[size++] = '\n';
 776                }
 777        } else {
 778                size = xsize_t(st.st_size);
 779                if (size == 0) {
 780                        if (sha1_stat) {
 781                                fill_stat_data(&sha1_stat->stat, &st);
 782                                hashcpy(sha1_stat->sha1, EMPTY_BLOB_SHA1_BIN);
 783                                sha1_stat->valid = 1;
 784                        }
 785                        close(fd);
 786                        return 0;
 787                }
 788                buf = xmallocz(size);
 789                if (read_in_full(fd, buf, size) != size) {
 790                        free(buf);
 791                        close(fd);
 792                        return -1;
 793                }
 794                buf[size++] = '\n';
 795                close(fd);
 796                if (sha1_stat) {
 797                        int pos;
 798                        if (sha1_stat->valid &&
 799                            !match_stat_data_racy(istate, &sha1_stat->stat, &st))
 800                                ; /* no content change, ss->sha1 still good */
 801                        else if (istate &&
 802                                 (pos = index_name_pos(istate, fname, strlen(fname))) >= 0 &&
 803                                 !ce_stage(istate->cache[pos]) &&
 804                                 ce_uptodate(istate->cache[pos]) &&
 805                                 !would_convert_to_git(fname))
 806                                hashcpy(sha1_stat->sha1,
 807                                        istate->cache[pos]->oid.hash);
 808                        else
 809                                hash_sha1_file(buf, size, "blob", sha1_stat->sha1);
 810                        fill_stat_data(&sha1_stat->stat, &st);
 811                        sha1_stat->valid = 1;
 812                }
 813        }
 814
 815        el->filebuf = buf;
 816
 817        if (skip_utf8_bom(&buf, size))
 818                size -= buf - el->filebuf;
 819
 820        entry = buf;
 821
 822        for (i = 0; i < size; i++) {
 823                if (buf[i] == '\n') {
 824                        if (entry != buf + i && entry[0] != '#') {
 825                                buf[i - (i && buf[i-1] == '\r')] = 0;
 826                                trim_trailing_spaces(entry);
 827                                add_exclude(entry, base, baselen, el, lineno);
 828                        }
 829                        lineno++;
 830                        entry = buf + i + 1;
 831                }
 832        }
 833        return 0;
 834}
 835
 836int add_excludes_from_file_to_list(const char *fname, const char *base,
 837                                   int baselen, struct exclude_list *el,
 838                                   struct index_state *istate)
 839{
 840        return add_excludes(fname, base, baselen, el, istate, NULL);
 841}
 842
 843struct exclude_list *add_exclude_list(struct dir_struct *dir,
 844                                      int group_type, const char *src)
 845{
 846        struct exclude_list *el;
 847        struct exclude_list_group *group;
 848
 849        group = &dir->exclude_list_group[group_type];
 850        ALLOC_GROW(group->el, group->nr + 1, group->alloc);
 851        el = &group->el[group->nr++];
 852        memset(el, 0, sizeof(*el));
 853        el->src = src;
 854        return el;
 855}
 856
 857/*
 858 * Used to set up core.excludesfile and .git/info/exclude lists.
 859 */
 860static void add_excludes_from_file_1(struct dir_struct *dir, const char *fname,
 861                                     struct sha1_stat *sha1_stat)
 862{
 863        struct exclude_list *el;
 864        /*
 865         * catch setup_standard_excludes() that's called before
 866         * dir->untracked is assigned. That function behaves
 867         * differently when dir->untracked is non-NULL.
 868         */
 869        if (!dir->untracked)
 870                dir->unmanaged_exclude_files++;
 871        el = add_exclude_list(dir, EXC_FILE, fname);
 872        if (add_excludes(fname, "", 0, el, NULL, sha1_stat) < 0)
 873                die("cannot use %s as an exclude file", fname);
 874}
 875
 876void add_excludes_from_file(struct dir_struct *dir, const char *fname)
 877{
 878        dir->unmanaged_exclude_files++; /* see validate_untracked_cache() */
 879        add_excludes_from_file_1(dir, fname, NULL);
 880}
 881
 882int match_basename(const char *basename, int basenamelen,
 883                   const char *pattern, int prefix, int patternlen,
 884                   unsigned flags)
 885{
 886        if (prefix == patternlen) {
 887                if (patternlen == basenamelen &&
 888                    !fspathncmp(pattern, basename, basenamelen))
 889                        return 1;
 890        } else if (flags & EXC_FLAG_ENDSWITH) {
 891                /* "*literal" matching against "fooliteral" */
 892                if (patternlen - 1 <= basenamelen &&
 893                    !fspathncmp(pattern + 1,
 894                                   basename + basenamelen - (patternlen - 1),
 895                                   patternlen - 1))
 896                        return 1;
 897        } else {
 898                if (fnmatch_icase_mem(pattern, patternlen,
 899                                      basename, basenamelen,
 900                                      0) == 0)
 901                        return 1;
 902        }
 903        return 0;
 904}
 905
 906int match_pathname(const char *pathname, int pathlen,
 907                   const char *base, int baselen,
 908                   const char *pattern, int prefix, int patternlen,
 909                   unsigned flags)
 910{
 911        const char *name;
 912        int namelen;
 913
 914        /*
 915         * match with FNM_PATHNAME; the pattern has base implicitly
 916         * in front of it.
 917         */
 918        if (*pattern == '/') {
 919                pattern++;
 920                patternlen--;
 921                prefix--;
 922        }
 923
 924        /*
 925         * baselen does not count the trailing slash. base[] may or
 926         * may not end with a trailing slash though.
 927         */
 928        if (pathlen < baselen + 1 ||
 929            (baselen && pathname[baselen] != '/') ||
 930            fspathncmp(pathname, base, baselen))
 931                return 0;
 932
 933        namelen = baselen ? pathlen - baselen - 1 : pathlen;
 934        name = pathname + pathlen - namelen;
 935
 936        if (prefix) {
 937                /*
 938                 * if the non-wildcard part is longer than the
 939                 * remaining pathname, surely it cannot match.
 940                 */
 941                if (prefix > namelen)
 942                        return 0;
 943
 944                if (fspathncmp(pattern, name, prefix))
 945                        return 0;
 946                pattern += prefix;
 947                patternlen -= prefix;
 948                name    += prefix;
 949                namelen -= prefix;
 950
 951                /*
 952                 * If the whole pattern did not have a wildcard,
 953                 * then our prefix match is all we need; we
 954                 * do not need to call fnmatch at all.
 955                 */
 956                if (!patternlen && !namelen)
 957                        return 1;
 958        }
 959
 960        return fnmatch_icase_mem(pattern, patternlen,
 961                                 name, namelen,
 962                                 WM_PATHNAME) == 0;
 963}
 964
 965/*
 966 * Scan the given exclude list in reverse to see whether pathname
 967 * should be ignored.  The first match (i.e. the last on the list), if
 968 * any, determines the fate.  Returns the exclude_list element which
 969 * matched, or NULL for undecided.
 970 */
 971static struct exclude *last_exclude_matching_from_list(const char *pathname,
 972                                                       int pathlen,
 973                                                       const char *basename,
 974                                                       int *dtype,
 975                                                       struct exclude_list *el,
 976                                                       struct index_state *istate)
 977{
 978        struct exclude *exc = NULL; /* undecided */
 979        int i;
 980
 981        if (!el->nr)
 982                return NULL;    /* undefined */
 983
 984        for (i = el->nr - 1; 0 <= i; i--) {
 985                struct exclude *x = el->excludes[i];
 986                const char *exclude = x->pattern;
 987                int prefix = x->nowildcardlen;
 988
 989                if (x->flags & EXC_FLAG_MUSTBEDIR) {
 990                        if (*dtype == DT_UNKNOWN)
 991                                *dtype = get_dtype(NULL, istate, pathname, pathlen);
 992                        if (*dtype != DT_DIR)
 993                                continue;
 994                }
 995
 996                if (x->flags & EXC_FLAG_NODIR) {
 997                        if (match_basename(basename,
 998                                           pathlen - (basename - pathname),
 999                                           exclude, prefix, x->patternlen,
1000                                           x->flags)) {
1001                                exc = x;
1002                                break;
1003                        }
1004                        continue;
1005                }
1006
1007                assert(x->baselen == 0 || x->base[x->baselen - 1] == '/');
1008                if (match_pathname(pathname, pathlen,
1009                                   x->base, x->baselen ? x->baselen - 1 : 0,
1010                                   exclude, prefix, x->patternlen, x->flags)) {
1011                        exc = x;
1012                        break;
1013                }
1014        }
1015        return exc;
1016}
1017
1018/*
1019 * Scan the list and let the last match determine the fate.
1020 * Return 1 for exclude, 0 for include and -1 for undecided.
1021 */
1022int is_excluded_from_list(const char *pathname,
1023                          int pathlen, const char *basename, int *dtype,
1024                          struct exclude_list *el, struct index_state *istate)
1025{
1026        struct exclude *exclude;
1027        exclude = last_exclude_matching_from_list(pathname, pathlen, basename,
1028                                                  dtype, el, istate);
1029        if (exclude)
1030                return exclude->flags & EXC_FLAG_NEGATIVE ? 0 : 1;
1031        return -1; /* undecided */
1032}
1033
1034static struct exclude *last_exclude_matching_from_lists(struct dir_struct *dir,
1035                                                        struct index_state *istate,
1036                const char *pathname, int pathlen, const char *basename,
1037                int *dtype_p)
1038{
1039        int i, j;
1040        struct exclude_list_group *group;
1041        struct exclude *exclude;
1042        for (i = EXC_CMDL; i <= EXC_FILE; i++) {
1043                group = &dir->exclude_list_group[i];
1044                for (j = group->nr - 1; j >= 0; j--) {
1045                        exclude = last_exclude_matching_from_list(
1046                                pathname, pathlen, basename, dtype_p,
1047                                &group->el[j], istate);
1048                        if (exclude)
1049                                return exclude;
1050                }
1051        }
1052        return NULL;
1053}
1054
1055/*
1056 * Loads the per-directory exclude list for the substring of base
1057 * which has a char length of baselen.
1058 */
1059static void prep_exclude(struct dir_struct *dir,
1060                         struct index_state *istate,
1061                         const char *base, int baselen)
1062{
1063        struct exclude_list_group *group;
1064        struct exclude_list *el;
1065        struct exclude_stack *stk = NULL;
1066        struct untracked_cache_dir *untracked;
1067        int current;
1068
1069        group = &dir->exclude_list_group[EXC_DIRS];
1070
1071        /*
1072         * Pop the exclude lists from the EXCL_DIRS exclude_list_group
1073         * which originate from directories not in the prefix of the
1074         * path being checked.
1075         */
1076        while ((stk = dir->exclude_stack) != NULL) {
1077                if (stk->baselen <= baselen &&
1078                    !strncmp(dir->basebuf.buf, base, stk->baselen))
1079                        break;
1080                el = &group->el[dir->exclude_stack->exclude_ix];
1081                dir->exclude_stack = stk->prev;
1082                dir->exclude = NULL;
1083                free((char *)el->src); /* see strbuf_detach() below */
1084                clear_exclude_list(el);
1085                free(stk);
1086                group->nr--;
1087        }
1088
1089        /* Skip traversing into sub directories if the parent is excluded */
1090        if (dir->exclude)
1091                return;
1092
1093        /*
1094         * Lazy initialization. All call sites currently just
1095         * memset(dir, 0, sizeof(*dir)) before use. Changing all of
1096         * them seems lots of work for little benefit.
1097         */
1098        if (!dir->basebuf.buf)
1099                strbuf_init(&dir->basebuf, PATH_MAX);
1100
1101        /* Read from the parent directories and push them down. */
1102        current = stk ? stk->baselen : -1;
1103        strbuf_setlen(&dir->basebuf, current < 0 ? 0 : current);
1104        if (dir->untracked)
1105                untracked = stk ? stk->ucd : dir->untracked->root;
1106        else
1107                untracked = NULL;
1108
1109        while (current < baselen) {
1110                const char *cp;
1111                struct sha1_stat sha1_stat;
1112
1113                stk = xcalloc(1, sizeof(*stk));
1114                if (current < 0) {
1115                        cp = base;
1116                        current = 0;
1117                } else {
1118                        cp = strchr(base + current + 1, '/');
1119                        if (!cp)
1120                                die("oops in prep_exclude");
1121                        cp++;
1122                        untracked =
1123                                lookup_untracked(dir->untracked, untracked,
1124                                                 base + current,
1125                                                 cp - base - current);
1126                }
1127                stk->prev = dir->exclude_stack;
1128                stk->baselen = cp - base;
1129                stk->exclude_ix = group->nr;
1130                stk->ucd = untracked;
1131                el = add_exclude_list(dir, EXC_DIRS, NULL);
1132                strbuf_add(&dir->basebuf, base + current, stk->baselen - current);
1133                assert(stk->baselen == dir->basebuf.len);
1134
1135                /* Abort if the directory is excluded */
1136                if (stk->baselen) {
1137                        int dt = DT_DIR;
1138                        dir->basebuf.buf[stk->baselen - 1] = 0;
1139                        dir->exclude = last_exclude_matching_from_lists(dir,
1140                                                                        istate,
1141                                dir->basebuf.buf, stk->baselen - 1,
1142                                dir->basebuf.buf + current, &dt);
1143                        dir->basebuf.buf[stk->baselen - 1] = '/';
1144                        if (dir->exclude &&
1145                            dir->exclude->flags & EXC_FLAG_NEGATIVE)
1146                                dir->exclude = NULL;
1147                        if (dir->exclude) {
1148                                dir->exclude_stack = stk;
1149                                return;
1150                        }
1151                }
1152
1153                /* Try to read per-directory file */
1154                hashclr(sha1_stat.sha1);
1155                sha1_stat.valid = 0;
1156                if (dir->exclude_per_dir &&
1157                    /*
1158                     * If we know that no files have been added in
1159                     * this directory (i.e. valid_cached_dir() has
1160                     * been executed and set untracked->valid) ..
1161                     */
1162                    (!untracked || !untracked->valid ||
1163                     /*
1164                      * .. and .gitignore does not exist before
1165                      * (i.e. null exclude_sha1). Then we can skip
1166                      * loading .gitignore, which would result in
1167                      * ENOENT anyway.
1168                      */
1169                     !is_null_sha1(untracked->exclude_sha1))) {
1170                        /*
1171                         * dir->basebuf gets reused by the traversal, but we
1172                         * need fname to remain unchanged to ensure the src
1173                         * member of each struct exclude correctly
1174                         * back-references its source file.  Other invocations
1175                         * of add_exclude_list provide stable strings, so we
1176                         * strbuf_detach() and free() here in the caller.
1177                         */
1178                        struct strbuf sb = STRBUF_INIT;
1179                        strbuf_addbuf(&sb, &dir->basebuf);
1180                        strbuf_addstr(&sb, dir->exclude_per_dir);
1181                        el->src = strbuf_detach(&sb, NULL);
1182                        add_excludes(el->src, el->src, stk->baselen, el, istate,
1183                                     untracked ? &sha1_stat : NULL);
1184                }
1185                /*
1186                 * NEEDSWORK: when untracked cache is enabled, prep_exclude()
1187                 * will first be called in valid_cached_dir() then maybe many
1188                 * times more in last_exclude_matching(). When the cache is
1189                 * used, last_exclude_matching() will not be called and
1190                 * reading .gitignore content will be a waste.
1191                 *
1192                 * So when it's called by valid_cached_dir() and we can get
1193                 * .gitignore SHA-1 from the index (i.e. .gitignore is not
1194                 * modified on work tree), we could delay reading the
1195                 * .gitignore content until we absolutely need it in
1196                 * last_exclude_matching(). Be careful about ignore rule
1197                 * order, though, if you do that.
1198                 */
1199                if (untracked &&
1200                    hashcmp(sha1_stat.sha1, untracked->exclude_sha1)) {
1201                        invalidate_gitignore(dir->untracked, untracked);
1202                        hashcpy(untracked->exclude_sha1, sha1_stat.sha1);
1203                }
1204                dir->exclude_stack = stk;
1205                current = stk->baselen;
1206        }
1207        strbuf_setlen(&dir->basebuf, baselen);
1208}
1209
1210/*
1211 * Loads the exclude lists for the directory containing pathname, then
1212 * scans all exclude lists to determine whether pathname is excluded.
1213 * Returns the exclude_list element which matched, or NULL for
1214 * undecided.
1215 */
1216struct exclude *last_exclude_matching(struct dir_struct *dir,
1217                                      struct index_state *istate,
1218                                      const char *pathname,
1219                                      int *dtype_p)
1220{
1221        int pathlen = strlen(pathname);
1222        const char *basename = strrchr(pathname, '/');
1223        basename = (basename) ? basename+1 : pathname;
1224
1225        prep_exclude(dir, istate, pathname, basename-pathname);
1226
1227        if (dir->exclude)
1228                return dir->exclude;
1229
1230        return last_exclude_matching_from_lists(dir, istate, pathname, pathlen,
1231                        basename, dtype_p);
1232}
1233
1234/*
1235 * Loads the exclude lists for the directory containing pathname, then
1236 * scans all exclude lists to determine whether pathname is excluded.
1237 * Returns 1 if true, otherwise 0.
1238 */
1239int is_excluded(struct dir_struct *dir, struct index_state *istate,
1240                const char *pathname, int *dtype_p)
1241{
1242        struct exclude *exclude =
1243                last_exclude_matching(dir, istate, pathname, dtype_p);
1244        if (exclude)
1245                return exclude->flags & EXC_FLAG_NEGATIVE ? 0 : 1;
1246        return 0;
1247}
1248
1249static struct dir_entry *dir_entry_new(const char *pathname, int len)
1250{
1251        struct dir_entry *ent;
1252
1253        FLEX_ALLOC_MEM(ent, name, pathname, len);
1254        ent->len = len;
1255        return ent;
1256}
1257
1258static struct dir_entry *dir_add_name(struct dir_struct *dir,
1259                                      struct index_state *istate,
1260                                      const char *pathname, int len)
1261{
1262        if (index_file_exists(istate, pathname, len, ignore_case))
1263                return NULL;
1264
1265        ALLOC_GROW(dir->entries, dir->nr+1, dir->alloc);
1266        return dir->entries[dir->nr++] = dir_entry_new(pathname, len);
1267}
1268
1269struct dir_entry *dir_add_ignored(struct dir_struct *dir,
1270                                  struct index_state *istate,
1271                                  const char *pathname, int len)
1272{
1273        if (!index_name_is_other(istate, pathname, len))
1274                return NULL;
1275
1276        ALLOC_GROW(dir->ignored, dir->ignored_nr+1, dir->ignored_alloc);
1277        return dir->ignored[dir->ignored_nr++] = dir_entry_new(pathname, len);
1278}
1279
1280enum exist_status {
1281        index_nonexistent = 0,
1282        index_directory,
1283        index_gitdir
1284};
1285
1286/*
1287 * Do not use the alphabetically sorted index to look up
1288 * the directory name; instead, use the case insensitive
1289 * directory hash.
1290 */
1291static enum exist_status directory_exists_in_index_icase(struct index_state *istate,
1292                                                         const char *dirname, int len)
1293{
1294        struct cache_entry *ce;
1295
1296        if (index_dir_exists(istate, dirname, len))
1297                return index_directory;
1298
1299        ce = index_file_exists(istate, dirname, len, ignore_case);
1300        if (ce && S_ISGITLINK(ce->ce_mode))
1301                return index_gitdir;
1302
1303        return index_nonexistent;
1304}
1305
1306/*
1307 * The index sorts alphabetically by entry name, which
1308 * means that a gitlink sorts as '\0' at the end, while
1309 * a directory (which is defined not as an entry, but as
1310 * the files it contains) will sort with the '/' at the
1311 * end.
1312 */
1313static enum exist_status directory_exists_in_index(struct index_state *istate,
1314                                                   const char *dirname, int len)
1315{
1316        int pos;
1317
1318        if (ignore_case)
1319                return directory_exists_in_index_icase(istate, dirname, len);
1320
1321        pos = index_name_pos(istate, dirname, len);
1322        if (pos < 0)
1323                pos = -pos-1;
1324        while (pos < istate->cache_nr) {
1325                const struct cache_entry *ce = istate->cache[pos++];
1326                unsigned char endchar;
1327
1328                if (strncmp(ce->name, dirname, len))
1329                        break;
1330                endchar = ce->name[len];
1331                if (endchar > '/')
1332                        break;
1333                if (endchar == '/')
1334                        return index_directory;
1335                if (!endchar && S_ISGITLINK(ce->ce_mode))
1336                        return index_gitdir;
1337        }
1338        return index_nonexistent;
1339}
1340
1341/*
1342 * When we find a directory when traversing the filesystem, we
1343 * have three distinct cases:
1344 *
1345 *  - ignore it
1346 *  - see it as a directory
1347 *  - recurse into it
1348 *
1349 * and which one we choose depends on a combination of existing
1350 * git index contents and the flags passed into the directory
1351 * traversal routine.
1352 *
1353 * Case 1: If we *already* have entries in the index under that
1354 * directory name, we always recurse into the directory to see
1355 * all the files.
1356 *
1357 * Case 2: If we *already* have that directory name as a gitlink,
1358 * we always continue to see it as a gitlink, regardless of whether
1359 * there is an actual git directory there or not (it might not
1360 * be checked out as a subproject!)
1361 *
1362 * Case 3: if we didn't have it in the index previously, we
1363 * have a few sub-cases:
1364 *
1365 *  (a) if "show_other_directories" is true, we show it as
1366 *      just a directory, unless "hide_empty_directories" is
1367 *      also true, in which case we need to check if it contains any
1368 *      untracked and / or ignored files.
1369 *  (b) if it looks like a git directory, and we don't have
1370 *      'no_gitlinks' set we treat it as a gitlink, and show it
1371 *      as a directory.
1372 *  (c) otherwise, we recurse into it.
1373 */
1374static enum path_treatment treat_directory(struct dir_struct *dir,
1375        struct index_state *istate,
1376        struct untracked_cache_dir *untracked,
1377        const char *dirname, int len, int baselen, int exclude,
1378        const struct pathspec *pathspec)
1379{
1380        /* The "len-1" is to strip the final '/' */
1381        switch (directory_exists_in_index(istate, dirname, len-1)) {
1382        case index_directory:
1383                return path_recurse;
1384
1385        case index_gitdir:
1386                return path_none;
1387
1388        case index_nonexistent:
1389                if (dir->flags & DIR_SHOW_OTHER_DIRECTORIES)
1390                        break;
1391                if (!(dir->flags & DIR_NO_GITLINKS)) {
1392                        unsigned char sha1[20];
1393                        if (resolve_gitlink_ref(dirname, "HEAD", sha1) == 0)
1394                                return path_untracked;
1395                }
1396                return path_recurse;
1397        }
1398
1399        /* This is the "show_other_directories" case */
1400
1401        if (!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))
1402                return exclude ? path_excluded : path_untracked;
1403
1404        untracked = lookup_untracked(dir->untracked, untracked,
1405                                     dirname + baselen, len - baselen);
1406        return read_directory_recursive(dir, istate, dirname, len,
1407                                        untracked, 1, pathspec);
1408}
1409
1410/*
1411 * This is an inexact early pruning of any recursive directory
1412 * reading - if the path cannot possibly be in the pathspec,
1413 * return true, and we'll skip it early.
1414 */
1415static int simplify_away(const char *path, int pathlen,
1416                         const struct pathspec *pathspec)
1417{
1418        int i;
1419
1420        if (!pathspec || !pathspec->nr)
1421                return 0;
1422
1423        GUARD_PATHSPEC(pathspec,
1424                       PATHSPEC_FROMTOP |
1425                       PATHSPEC_MAXDEPTH |
1426                       PATHSPEC_LITERAL |
1427                       PATHSPEC_GLOB |
1428                       PATHSPEC_ICASE |
1429                       PATHSPEC_EXCLUDE |
1430                       PATHSPEC_ATTR);
1431
1432        for (i = 0; i < pathspec->nr; i++) {
1433                const struct pathspec_item *item = &pathspec->items[i];
1434                int len = item->nowildcard_len;
1435
1436                if (len > pathlen)
1437                        len = pathlen;
1438                if (!ps_strncmp(item, item->match, path, len))
1439                        return 0;
1440        }
1441
1442        return 1;
1443}
1444
1445/*
1446 * This function tells us whether an excluded path matches a
1447 * list of "interesting" pathspecs. That is, whether a path matched
1448 * by any of the pathspecs could possibly be ignored by excluding
1449 * the specified path. This can happen if:
1450 *
1451 *   1. the path is mentioned explicitly in the pathspec
1452 *
1453 *   2. the path is a directory prefix of some element in the
1454 *      pathspec
1455 */
1456static int exclude_matches_pathspec(const char *path, int pathlen,
1457                                    const struct pathspec *pathspec)
1458{
1459        int i;
1460
1461        if (!pathspec || !pathspec->nr)
1462                return 0;
1463
1464        GUARD_PATHSPEC(pathspec,
1465                       PATHSPEC_FROMTOP |
1466                       PATHSPEC_MAXDEPTH |
1467                       PATHSPEC_LITERAL |
1468                       PATHSPEC_GLOB |
1469                       PATHSPEC_ICASE |
1470                       PATHSPEC_EXCLUDE);
1471
1472        for (i = 0; i < pathspec->nr; i++) {
1473                const struct pathspec_item *item = &pathspec->items[i];
1474                int len = item->nowildcard_len;
1475
1476                if (len == pathlen &&
1477                    !ps_strncmp(item, item->match, path, pathlen))
1478                        return 1;
1479                if (len > pathlen &&
1480                    item->match[pathlen] == '/' &&
1481                    !ps_strncmp(item, item->match, path, pathlen))
1482                        return 1;
1483        }
1484        return 0;
1485}
1486
1487static int get_index_dtype(struct index_state *istate,
1488                           const char *path, int len)
1489{
1490        int pos;
1491        const struct cache_entry *ce;
1492
1493        ce = index_file_exists(istate, path, len, 0);
1494        if (ce) {
1495                if (!ce_uptodate(ce))
1496                        return DT_UNKNOWN;
1497                if (S_ISGITLINK(ce->ce_mode))
1498                        return DT_DIR;
1499                /*
1500                 * Nobody actually cares about the
1501                 * difference between DT_LNK and DT_REG
1502                 */
1503                return DT_REG;
1504        }
1505
1506        /* Try to look it up as a directory */
1507        pos = index_name_pos(istate, path, len);
1508        if (pos >= 0)
1509                return DT_UNKNOWN;
1510        pos = -pos-1;
1511        while (pos < istate->cache_nr) {
1512                ce = istate->cache[pos++];
1513                if (strncmp(ce->name, path, len))
1514                        break;
1515                if (ce->name[len] > '/')
1516                        break;
1517                if (ce->name[len] < '/')
1518                        continue;
1519                if (!ce_uptodate(ce))
1520                        break;  /* continue? */
1521                return DT_DIR;
1522        }
1523        return DT_UNKNOWN;
1524}
1525
1526static int get_dtype(struct dirent *de, struct index_state *istate,
1527                     const char *path, int len)
1528{
1529        int dtype = de ? DTYPE(de) : DT_UNKNOWN;
1530        struct stat st;
1531
1532        if (dtype != DT_UNKNOWN)
1533                return dtype;
1534        dtype = get_index_dtype(istate, path, len);
1535        if (dtype != DT_UNKNOWN)
1536                return dtype;
1537        if (lstat(path, &st))
1538                return dtype;
1539        if (S_ISREG(st.st_mode))
1540                return DT_REG;
1541        if (S_ISDIR(st.st_mode))
1542                return DT_DIR;
1543        if (S_ISLNK(st.st_mode))
1544                return DT_LNK;
1545        return dtype;
1546}
1547
1548static enum path_treatment treat_one_path(struct dir_struct *dir,
1549                                          struct untracked_cache_dir *untracked,
1550                                          struct index_state *istate,
1551                                          struct strbuf *path,
1552                                          int baselen,
1553                                          const struct pathspec *pathspec,
1554                                          int dtype, struct dirent *de)
1555{
1556        int exclude;
1557        int has_path_in_index = !!index_file_exists(istate, path->buf, path->len, ignore_case);
1558
1559        if (dtype == DT_UNKNOWN)
1560                dtype = get_dtype(de, istate, path->buf, path->len);
1561
1562        /* Always exclude indexed files */
1563        if (dtype != DT_DIR && has_path_in_index)
1564                return path_none;
1565
1566        /*
1567         * When we are looking at a directory P in the working tree,
1568         * there are three cases:
1569         *
1570         * (1) P exists in the index.  Everything inside the directory P in
1571         * the working tree needs to go when P is checked out from the
1572         * index.
1573         *
1574         * (2) P does not exist in the index, but there is P/Q in the index.
1575         * We know P will stay a directory when we check out the contents
1576         * of the index, but we do not know yet if there is a directory
1577         * P/Q in the working tree to be killed, so we need to recurse.
1578         *
1579         * (3) P does not exist in the index, and there is no P/Q in the index
1580         * to require P to be a directory, either.  Only in this case, we
1581         * know that everything inside P will not be killed without
1582         * recursing.
1583         */
1584        if ((dir->flags & DIR_COLLECT_KILLED_ONLY) &&
1585            (dtype == DT_DIR) &&
1586            !has_path_in_index &&
1587            (directory_exists_in_index(istate, path->buf, path->len) == index_nonexistent))
1588                return path_none;
1589
1590        exclude = is_excluded(dir, istate, path->buf, &dtype);
1591
1592        /*
1593         * Excluded? If we don't explicitly want to show
1594         * ignored files, ignore it
1595         */
1596        if (exclude && !(dir->flags & (DIR_SHOW_IGNORED|DIR_SHOW_IGNORED_TOO)))
1597                return path_excluded;
1598
1599        switch (dtype) {
1600        default:
1601                return path_none;
1602        case DT_DIR:
1603                strbuf_addch(path, '/');
1604                return treat_directory(dir, istate, untracked, path->buf, path->len,
1605                                       baselen, exclude, pathspec);
1606        case DT_REG:
1607        case DT_LNK:
1608                return exclude ? path_excluded : path_untracked;
1609        }
1610}
1611
1612static enum path_treatment treat_path_fast(struct dir_struct *dir,
1613                                           struct untracked_cache_dir *untracked,
1614                                           struct cached_dir *cdir,
1615                                           struct index_state *istate,
1616                                           struct strbuf *path,
1617                                           int baselen,
1618                                           const struct pathspec *pathspec)
1619{
1620        strbuf_setlen(path, baselen);
1621        if (!cdir->ucd) {
1622                strbuf_addstr(path, cdir->file);
1623                return path_untracked;
1624        }
1625        strbuf_addstr(path, cdir->ucd->name);
1626        /* treat_one_path() does this before it calls treat_directory() */
1627        strbuf_complete(path, '/');
1628        if (cdir->ucd->check_only)
1629                /*
1630                 * check_only is set as a result of treat_directory() getting
1631                 * to its bottom. Verify again the same set of directories
1632                 * with check_only set.
1633                 */
1634                return read_directory_recursive(dir, istate, path->buf, path->len,
1635                                                cdir->ucd, 1, pathspec);
1636        /*
1637         * We get path_recurse in the first run when
1638         * directory_exists_in_index() returns index_nonexistent. We
1639         * are sure that new changes in the index does not impact the
1640         * outcome. Return now.
1641         */
1642        return path_recurse;
1643}
1644
1645static enum path_treatment treat_path(struct dir_struct *dir,
1646                                      struct untracked_cache_dir *untracked,
1647                                      struct cached_dir *cdir,
1648                                      struct index_state *istate,
1649                                      struct strbuf *path,
1650                                      int baselen,
1651                                      const struct pathspec *pathspec)
1652{
1653        int dtype;
1654        struct dirent *de = cdir->de;
1655
1656        if (!de)
1657                return treat_path_fast(dir, untracked, cdir, istate, path,
1658                                       baselen, pathspec);
1659        if (is_dot_or_dotdot(de->d_name) || !strcmp(de->d_name, ".git"))
1660                return path_none;
1661        strbuf_setlen(path, baselen);
1662        strbuf_addstr(path, de->d_name);
1663        if (simplify_away(path->buf, path->len, pathspec))
1664                return path_none;
1665
1666        dtype = DTYPE(de);
1667        return treat_one_path(dir, untracked, istate, path, baselen, pathspec, dtype, de);
1668}
1669
1670static void add_untracked(struct untracked_cache_dir *dir, const char *name)
1671{
1672        if (!dir)
1673                return;
1674        ALLOC_GROW(dir->untracked, dir->untracked_nr + 1,
1675                   dir->untracked_alloc);
1676        dir->untracked[dir->untracked_nr++] = xstrdup(name);
1677}
1678
1679static int valid_cached_dir(struct dir_struct *dir,
1680                            struct untracked_cache_dir *untracked,
1681                            struct index_state *istate,
1682                            struct strbuf *path,
1683                            int check_only)
1684{
1685        struct stat st;
1686
1687        if (!untracked)
1688                return 0;
1689
1690        if (stat(path->len ? path->buf : ".", &st)) {
1691                invalidate_directory(dir->untracked, untracked);
1692                memset(&untracked->stat_data, 0, sizeof(untracked->stat_data));
1693                return 0;
1694        }
1695        if (!untracked->valid ||
1696            match_stat_data_racy(istate, &untracked->stat_data, &st)) {
1697                if (untracked->valid)
1698                        invalidate_directory(dir->untracked, untracked);
1699                fill_stat_data(&untracked->stat_data, &st);
1700                return 0;
1701        }
1702
1703        if (untracked->check_only != !!check_only) {
1704                invalidate_directory(dir->untracked, untracked);
1705                return 0;
1706        }
1707
1708        /*
1709         * prep_exclude will be called eventually on this directory,
1710         * but it's called much later in last_exclude_matching(). We
1711         * need it now to determine the validity of the cache for this
1712         * path. The next calls will be nearly no-op, the way
1713         * prep_exclude() is designed.
1714         */
1715        if (path->len && path->buf[path->len - 1] != '/') {
1716                strbuf_addch(path, '/');
1717                prep_exclude(dir, istate, path->buf, path->len);
1718                strbuf_setlen(path, path->len - 1);
1719        } else
1720                prep_exclude(dir, istate, path->buf, path->len);
1721
1722        /* hopefully prep_exclude() haven't invalidated this entry... */
1723        return untracked->valid;
1724}
1725
1726static int open_cached_dir(struct cached_dir *cdir,
1727                           struct dir_struct *dir,
1728                           struct untracked_cache_dir *untracked,
1729                           struct index_state *istate,
1730                           struct strbuf *path,
1731                           int check_only)
1732{
1733        memset(cdir, 0, sizeof(*cdir));
1734        cdir->untracked = untracked;
1735        if (valid_cached_dir(dir, untracked, istate, path, check_only))
1736                return 0;
1737        cdir->fdir = opendir(path->len ? path->buf : ".");
1738        if (dir->untracked)
1739                dir->untracked->dir_opened++;
1740        if (!cdir->fdir)
1741                return -1;
1742        return 0;
1743}
1744
1745static int read_cached_dir(struct cached_dir *cdir)
1746{
1747        if (cdir->fdir) {
1748                cdir->de = readdir(cdir->fdir);
1749                if (!cdir->de)
1750                        return -1;
1751                return 0;
1752        }
1753        while (cdir->nr_dirs < cdir->untracked->dirs_nr) {
1754                struct untracked_cache_dir *d = cdir->untracked->dirs[cdir->nr_dirs];
1755                if (!d->recurse) {
1756                        cdir->nr_dirs++;
1757                        continue;
1758                }
1759                cdir->ucd = d;
1760                cdir->nr_dirs++;
1761                return 0;
1762        }
1763        cdir->ucd = NULL;
1764        if (cdir->nr_files < cdir->untracked->untracked_nr) {
1765                struct untracked_cache_dir *d = cdir->untracked;
1766                cdir->file = d->untracked[cdir->nr_files++];
1767                return 0;
1768        }
1769        return -1;
1770}
1771
1772static void close_cached_dir(struct cached_dir *cdir)
1773{
1774        if (cdir->fdir)
1775                closedir(cdir->fdir);
1776        /*
1777         * We have gone through this directory and found no untracked
1778         * entries. Mark it valid.
1779         */
1780        if (cdir->untracked) {
1781                cdir->untracked->valid = 1;
1782                cdir->untracked->recurse = 1;
1783        }
1784}
1785
1786/*
1787 * Read a directory tree. We currently ignore anything but
1788 * directories, regular files and symlinks. That's because git
1789 * doesn't handle them at all yet. Maybe that will change some
1790 * day.
1791 *
1792 * Also, we ignore the name ".git" (even if it is not a directory).
1793 * That likely will not change.
1794 *
1795 * Returns the most significant path_treatment value encountered in the scan.
1796 */
1797static enum path_treatment read_directory_recursive(struct dir_struct *dir,
1798        struct index_state *istate, const char *base, int baselen,
1799        struct untracked_cache_dir *untracked, int check_only,
1800        const struct pathspec *pathspec)
1801{
1802        struct cached_dir cdir;
1803        enum path_treatment state, subdir_state, dir_state = path_none;
1804        struct strbuf path = STRBUF_INIT;
1805
1806        strbuf_add(&path, base, baselen);
1807
1808        if (open_cached_dir(&cdir, dir, untracked, istate, &path, check_only))
1809                goto out;
1810
1811        if (untracked)
1812                untracked->check_only = !!check_only;
1813
1814        while (!read_cached_dir(&cdir)) {
1815                /* check how the file or directory should be treated */
1816                state = treat_path(dir, untracked, &cdir, istate, &path,
1817                                   baselen, pathspec);
1818
1819                if (state > dir_state)
1820                        dir_state = state;
1821
1822                /* recurse into subdir if instructed by treat_path */
1823                if ((state == path_recurse) ||
1824                        ((state == path_untracked) &&
1825                         (dir->flags & DIR_SHOW_IGNORED_TOO) &&
1826                         (get_dtype(cdir.de, istate, path.buf, path.len) == DT_DIR))) {
1827                        struct untracked_cache_dir *ud;
1828                        ud = lookup_untracked(dir->untracked, untracked,
1829                                              path.buf + baselen,
1830                                              path.len - baselen);
1831                        subdir_state =
1832                                read_directory_recursive(dir, istate, path.buf,
1833                                                         path.len, ud,
1834                                                         check_only, pathspec);
1835                        if (subdir_state > dir_state)
1836                                dir_state = subdir_state;
1837                }
1838
1839                if (check_only) {
1840                        /* abort early if maximum state has been reached */
1841                        if (dir_state == path_untracked) {
1842                                if (cdir.fdir)
1843                                        add_untracked(untracked, path.buf + baselen);
1844                                break;
1845                        }
1846                        /* skip the dir_add_* part */
1847                        continue;
1848                }
1849
1850                /* add the path to the appropriate result list */
1851                switch (state) {
1852                case path_excluded:
1853                        if (dir->flags & DIR_SHOW_IGNORED)
1854                                dir_add_name(dir, istate, path.buf, path.len);
1855                        else if ((dir->flags & DIR_SHOW_IGNORED_TOO) ||
1856                                ((dir->flags & DIR_COLLECT_IGNORED) &&
1857                                exclude_matches_pathspec(path.buf, path.len,
1858                                                         pathspec)))
1859                                dir_add_ignored(dir, istate, path.buf, path.len);
1860                        break;
1861
1862                case path_untracked:
1863                        if (dir->flags & DIR_SHOW_IGNORED)
1864                                break;
1865                        dir_add_name(dir, istate, path.buf, path.len);
1866                        if (cdir.fdir)
1867                                add_untracked(untracked, path.buf + baselen);
1868                        break;
1869
1870                default:
1871                        break;
1872                }
1873        }
1874        close_cached_dir(&cdir);
1875 out:
1876        strbuf_release(&path);
1877
1878        return dir_state;
1879}
1880
1881int cmp_dir_entry(const void *p1, const void *p2)
1882{
1883        const struct dir_entry *e1 = *(const struct dir_entry **)p1;
1884        const struct dir_entry *e2 = *(const struct dir_entry **)p2;
1885
1886        return name_compare(e1->name, e1->len, e2->name, e2->len);
1887}
1888
1889/* check if *out lexically strictly contains *in */
1890int check_dir_entry_contains(const struct dir_entry *out, const struct dir_entry *in)
1891{
1892        return (out->len < in->len) &&
1893                (out->name[out->len - 1] == '/') &&
1894                !memcmp(out->name, in->name, out->len);
1895}
1896
1897static int treat_leading_path(struct dir_struct *dir,
1898                              struct index_state *istate,
1899                              const char *path, int len,
1900                              const struct pathspec *pathspec)
1901{
1902        struct strbuf sb = STRBUF_INIT;
1903        int baselen, rc = 0;
1904        const char *cp;
1905        int old_flags = dir->flags;
1906
1907        while (len && path[len - 1] == '/')
1908                len--;
1909        if (!len)
1910                return 1;
1911        baselen = 0;
1912        dir->flags &= ~DIR_SHOW_OTHER_DIRECTORIES;
1913        while (1) {
1914                cp = path + baselen + !!baselen;
1915                cp = memchr(cp, '/', path + len - cp);
1916                if (!cp)
1917                        baselen = len;
1918                else
1919                        baselen = cp - path;
1920                strbuf_setlen(&sb, 0);
1921                strbuf_add(&sb, path, baselen);
1922                if (!is_directory(sb.buf))
1923                        break;
1924                if (simplify_away(sb.buf, sb.len, pathspec))
1925                        break;
1926                if (treat_one_path(dir, NULL, istate, &sb, baselen, pathspec,
1927                                   DT_DIR, NULL) == path_none)
1928                        break; /* do not recurse into it */
1929                if (len <= baselen) {
1930                        rc = 1;
1931                        break; /* finished checking */
1932                }
1933        }
1934        strbuf_release(&sb);
1935        dir->flags = old_flags;
1936        return rc;
1937}
1938
1939static const char *get_ident_string(void)
1940{
1941        static struct strbuf sb = STRBUF_INIT;
1942        struct utsname uts;
1943
1944        if (sb.len)
1945                return sb.buf;
1946        if (uname(&uts) < 0)
1947                die_errno(_("failed to get kernel name and information"));
1948        strbuf_addf(&sb, "Location %s, system %s", get_git_work_tree(),
1949                    uts.sysname);
1950        return sb.buf;
1951}
1952
1953static int ident_in_untracked(const struct untracked_cache *uc)
1954{
1955        /*
1956         * Previous git versions may have saved many NUL separated
1957         * strings in the "ident" field, but it is insane to manage
1958         * many locations, so just take care of the first one.
1959         */
1960
1961        return !strcmp(uc->ident.buf, get_ident_string());
1962}
1963
1964static void set_untracked_ident(struct untracked_cache *uc)
1965{
1966        strbuf_reset(&uc->ident);
1967        strbuf_addstr(&uc->ident, get_ident_string());
1968
1969        /*
1970         * This strbuf used to contain a list of NUL separated
1971         * strings, so save NUL too for backward compatibility.
1972         */
1973        strbuf_addch(&uc->ident, 0);
1974}
1975
1976static void new_untracked_cache(struct index_state *istate)
1977{
1978        struct untracked_cache *uc = xcalloc(1, sizeof(*uc));
1979        strbuf_init(&uc->ident, 100);
1980        uc->exclude_per_dir = ".gitignore";
1981        /* should be the same flags used by git-status */
1982        uc->dir_flags = DIR_SHOW_OTHER_DIRECTORIES | DIR_HIDE_EMPTY_DIRECTORIES;
1983        set_untracked_ident(uc);
1984        istate->untracked = uc;
1985        istate->cache_changed |= UNTRACKED_CHANGED;
1986}
1987
1988void add_untracked_cache(struct index_state *istate)
1989{
1990        if (!istate->untracked) {
1991                new_untracked_cache(istate);
1992        } else {
1993                if (!ident_in_untracked(istate->untracked)) {
1994                        free_untracked_cache(istate->untracked);
1995                        new_untracked_cache(istate);
1996                }
1997        }
1998}
1999
2000void remove_untracked_cache(struct index_state *istate)
2001{
2002        if (istate->untracked) {
2003                free_untracked_cache(istate->untracked);
2004                istate->untracked = NULL;
2005                istate->cache_changed |= UNTRACKED_CHANGED;
2006        }
2007}
2008
2009static struct untracked_cache_dir *validate_untracked_cache(struct dir_struct *dir,
2010                                                      int base_len,
2011                                                      const struct pathspec *pathspec)
2012{
2013        struct untracked_cache_dir *root;
2014
2015        if (!dir->untracked || getenv("GIT_DISABLE_UNTRACKED_CACHE"))
2016                return NULL;
2017
2018        /*
2019         * We only support $GIT_DIR/info/exclude and core.excludesfile
2020         * as the global ignore rule files. Any other additions
2021         * (e.g. from command line) invalidate the cache. This
2022         * condition also catches running setup_standard_excludes()
2023         * before setting dir->untracked!
2024         */
2025        if (dir->unmanaged_exclude_files)
2026                return NULL;
2027
2028        /*
2029         * Optimize for the main use case only: whole-tree git
2030         * status. More work involved in treat_leading_path() if we
2031         * use cache on just a subset of the worktree. pathspec
2032         * support could make the matter even worse.
2033         */
2034        if (base_len || (pathspec && pathspec->nr))
2035                return NULL;
2036
2037        /* Different set of flags may produce different results */
2038        if (dir->flags != dir->untracked->dir_flags ||
2039            /*
2040             * See treat_directory(), case index_nonexistent. Without
2041             * this flag, we may need to also cache .git file content
2042             * for the resolve_gitlink_ref() call, which we don't.
2043             */
2044            !(dir->flags & DIR_SHOW_OTHER_DIRECTORIES) ||
2045            /* We don't support collecting ignore files */
2046            (dir->flags & (DIR_SHOW_IGNORED | DIR_SHOW_IGNORED_TOO |
2047                           DIR_COLLECT_IGNORED)))
2048                return NULL;
2049
2050        /*
2051         * If we use .gitignore in the cache and now you change it to
2052         * .gitexclude, everything will go wrong.
2053         */
2054        if (dir->exclude_per_dir != dir->untracked->exclude_per_dir &&
2055            strcmp(dir->exclude_per_dir, dir->untracked->exclude_per_dir))
2056                return NULL;
2057
2058        /*
2059         * EXC_CMDL is not considered in the cache. If people set it,
2060         * skip the cache.
2061         */
2062        if (dir->exclude_list_group[EXC_CMDL].nr)
2063                return NULL;
2064
2065        if (!ident_in_untracked(dir->untracked)) {
2066                warning(_("Untracked cache is disabled on this system or location."));
2067                return NULL;
2068        }
2069
2070        if (!dir->untracked->root) {
2071                const int len = sizeof(*dir->untracked->root);
2072                dir->untracked->root = xmalloc(len);
2073                memset(dir->untracked->root, 0, len);
2074        }
2075
2076        /* Validate $GIT_DIR/info/exclude and core.excludesfile */
2077        root = dir->untracked->root;
2078        if (hashcmp(dir->ss_info_exclude.sha1,
2079                    dir->untracked->ss_info_exclude.sha1)) {
2080                invalidate_gitignore(dir->untracked, root);
2081                dir->untracked->ss_info_exclude = dir->ss_info_exclude;
2082        }
2083        if (hashcmp(dir->ss_excludes_file.sha1,
2084                    dir->untracked->ss_excludes_file.sha1)) {
2085                invalidate_gitignore(dir->untracked, root);
2086                dir->untracked->ss_excludes_file = dir->ss_excludes_file;
2087        }
2088
2089        /* Make sure this directory is not dropped out at saving phase */
2090        root->recurse = 1;
2091        return root;
2092}
2093
2094int read_directory(struct dir_struct *dir, struct index_state *istate,
2095                   const char *path, int len, const struct pathspec *pathspec)
2096{
2097        struct untracked_cache_dir *untracked;
2098
2099        if (has_symlink_leading_path(path, len))
2100                return dir->nr;
2101
2102        untracked = validate_untracked_cache(dir, len, pathspec);
2103        if (!untracked)
2104                /*
2105                 * make sure untracked cache code path is disabled,
2106                 * e.g. prep_exclude()
2107                 */
2108                dir->untracked = NULL;
2109        if (!len || treat_leading_path(dir, istate, path, len, pathspec))
2110                read_directory_recursive(dir, istate, path, len, untracked, 0, pathspec);
2111        QSORT(dir->entries, dir->nr, cmp_dir_entry);
2112        QSORT(dir->ignored, dir->ignored_nr, cmp_dir_entry);
2113
2114        /*
2115         * If DIR_SHOW_IGNORED_TOO is set, read_directory_recursive() will
2116         * also pick up untracked contents of untracked dirs; by default
2117         * we discard these, but given DIR_KEEP_UNTRACKED_CONTENTS we do not.
2118         */
2119        if ((dir->flags & DIR_SHOW_IGNORED_TOO) &&
2120                     !(dir->flags & DIR_KEEP_UNTRACKED_CONTENTS)) {
2121                int i, j;
2122
2123                /* remove from dir->entries untracked contents of untracked dirs */
2124                for (i = j = 0; j < dir->nr; j++) {
2125                        if (i &&
2126                            check_dir_entry_contains(dir->entries[i - 1], dir->entries[j])) {
2127                                free(dir->entries[j]);
2128                                dir->entries[j] = NULL;
2129                        } else {
2130                                dir->entries[i++] = dir->entries[j];
2131                        }
2132                }
2133
2134                dir->nr = i;
2135        }
2136
2137        if (dir->untracked) {
2138                static struct trace_key trace_untracked_stats = TRACE_KEY_INIT(UNTRACKED_STATS);
2139                trace_printf_key(&trace_untracked_stats,
2140                                 "node creation: %u\n"
2141                                 "gitignore invalidation: %u\n"
2142                                 "directory invalidation: %u\n"
2143                                 "opendir: %u\n",
2144                                 dir->untracked->dir_created,
2145                                 dir->untracked->gitignore_invalidated,
2146                                 dir->untracked->dir_invalidated,
2147                                 dir->untracked->dir_opened);
2148                if (dir->untracked == istate->untracked &&
2149                    (dir->untracked->dir_opened ||
2150                     dir->untracked->gitignore_invalidated ||
2151                     dir->untracked->dir_invalidated))
2152                        istate->cache_changed |= UNTRACKED_CHANGED;
2153                if (dir->untracked != istate->untracked) {
2154                        free(dir->untracked);
2155                        dir->untracked = NULL;
2156                }
2157        }
2158        return dir->nr;
2159}
2160
2161int file_exists(const char *f)
2162{
2163        struct stat sb;
2164        return lstat(f, &sb) == 0;
2165}
2166
2167static int cmp_icase(char a, char b)
2168{
2169        if (a == b)
2170                return 0;
2171        if (ignore_case)
2172                return toupper(a) - toupper(b);
2173        return a - b;
2174}
2175
2176/*
2177 * Given two normalized paths (a trailing slash is ok), if subdir is
2178 * outside dir, return -1.  Otherwise return the offset in subdir that
2179 * can be used as relative path to dir.
2180 */
2181int dir_inside_of(const char *subdir, const char *dir)
2182{
2183        int offset = 0;
2184
2185        assert(dir && subdir && *dir && *subdir);
2186
2187        while (*dir && *subdir && !cmp_icase(*dir, *subdir)) {
2188                dir++;
2189                subdir++;
2190                offset++;
2191        }
2192
2193        /* hel[p]/me vs hel[l]/yeah */
2194        if (*dir && *subdir)
2195                return -1;
2196
2197        if (!*subdir)
2198                return !*dir ? offset : -1; /* same dir */
2199
2200        /* foo/[b]ar vs foo/[] */
2201        if (is_dir_sep(dir[-1]))
2202                return is_dir_sep(subdir[-1]) ? offset : -1;
2203
2204        /* foo[/]bar vs foo[] */
2205        return is_dir_sep(*subdir) ? offset + 1 : -1;
2206}
2207
2208int is_inside_dir(const char *dir)
2209{
2210        char *cwd;
2211        int rc;
2212
2213        if (!dir)
2214                return 0;
2215
2216        cwd = xgetcwd();
2217        rc = (dir_inside_of(cwd, dir) >= 0);
2218        free(cwd);
2219        return rc;
2220}
2221
2222int is_empty_dir(const char *path)
2223{
2224        DIR *dir = opendir(path);
2225        struct dirent *e;
2226        int ret = 1;
2227
2228        if (!dir)
2229                return 0;
2230
2231        while ((e = readdir(dir)) != NULL)
2232                if (!is_dot_or_dotdot(e->d_name)) {
2233                        ret = 0;
2234                        break;
2235                }
2236
2237        closedir(dir);
2238        return ret;
2239}
2240
2241static int remove_dir_recurse(struct strbuf *path, int flag, int *kept_up)
2242{
2243        DIR *dir;
2244        struct dirent *e;
2245        int ret = 0, original_len = path->len, len, kept_down = 0;
2246        int only_empty = (flag & REMOVE_DIR_EMPTY_ONLY);
2247        int keep_toplevel = (flag & REMOVE_DIR_KEEP_TOPLEVEL);
2248        unsigned char submodule_head[20];
2249
2250        if ((flag & REMOVE_DIR_KEEP_NESTED_GIT) &&
2251            !resolve_gitlink_ref(path->buf, "HEAD", submodule_head)) {
2252                /* Do not descend and nuke a nested git work tree. */
2253                if (kept_up)
2254                        *kept_up = 1;
2255                return 0;
2256        }
2257
2258        flag &= ~REMOVE_DIR_KEEP_TOPLEVEL;
2259        dir = opendir(path->buf);
2260        if (!dir) {
2261                if (errno == ENOENT)
2262                        return keep_toplevel ? -1 : 0;
2263                else if (errno == EACCES && !keep_toplevel)
2264                        /*
2265                         * An empty dir could be removable even if it
2266                         * is unreadable:
2267                         */
2268                        return rmdir(path->buf);
2269                else
2270                        return -1;
2271        }
2272        strbuf_complete(path, '/');
2273
2274        len = path->len;
2275        while ((e = readdir(dir)) != NULL) {
2276                struct stat st;
2277                if (is_dot_or_dotdot(e->d_name))
2278                        continue;
2279
2280                strbuf_setlen(path, len);
2281                strbuf_addstr(path, e->d_name);
2282                if (lstat(path->buf, &st)) {
2283                        if (errno == ENOENT)
2284                                /*
2285                                 * file disappeared, which is what we
2286                                 * wanted anyway
2287                                 */
2288                                continue;
2289                        /* fall thru */
2290                } else if (S_ISDIR(st.st_mode)) {
2291                        if (!remove_dir_recurse(path, flag, &kept_down))
2292                                continue; /* happy */
2293                } else if (!only_empty &&
2294                           (!unlink(path->buf) || errno == ENOENT)) {
2295                        continue; /* happy, too */
2296                }
2297
2298                /* path too long, stat fails, or non-directory still exists */
2299                ret = -1;
2300                break;
2301        }
2302        closedir(dir);
2303
2304        strbuf_setlen(path, original_len);
2305        if (!ret && !keep_toplevel && !kept_down)
2306                ret = (!rmdir(path->buf) || errno == ENOENT) ? 0 : -1;
2307        else if (kept_up)
2308                /*
2309                 * report the uplevel that it is not an error that we
2310                 * did not rmdir() our directory.
2311                 */
2312                *kept_up = !ret;
2313        return ret;
2314}
2315
2316int remove_dir_recursively(struct strbuf *path, int flag)
2317{
2318        return remove_dir_recurse(path, flag, NULL);
2319}
2320
2321static GIT_PATH_FUNC(git_path_info_exclude, "info/exclude")
2322
2323void setup_standard_excludes(struct dir_struct *dir)
2324{
2325        dir->exclude_per_dir = ".gitignore";
2326
2327        /* core.excludefile defaulting to $XDG_HOME/git/ignore */
2328        if (!excludes_file)
2329                excludes_file = xdg_config_home("ignore");
2330        if (excludes_file && !access_or_warn(excludes_file, R_OK, 0))
2331                add_excludes_from_file_1(dir, excludes_file,
2332                                         dir->untracked ? &dir->ss_excludes_file : NULL);
2333
2334        /* per repository user preference */
2335        if (startup_info->have_repository) {
2336                const char *path = git_path_info_exclude();
2337                if (!access_or_warn(path, R_OK, 0))
2338                        add_excludes_from_file_1(dir, path,
2339                                                 dir->untracked ? &dir->ss_info_exclude : NULL);
2340        }
2341}
2342
2343int remove_path(const char *name)
2344{
2345        char *slash;
2346
2347        if (unlink(name) && !is_missing_file_error(errno))
2348                return -1;
2349
2350        slash = strrchr(name, '/');
2351        if (slash) {
2352                char *dirs = xstrdup(name);
2353                slash = dirs + (slash - name);
2354                do {
2355                        *slash = '\0';
2356                } while (rmdir(dirs) == 0 && (slash = strrchr(dirs, '/')));
2357                free(dirs);
2358        }
2359        return 0;
2360}
2361
2362/*
2363 * Frees memory within dir which was allocated for exclude lists and
2364 * the exclude_stack.  Does not free dir itself.
2365 */
2366void clear_directory(struct dir_struct *dir)
2367{
2368        int i, j;
2369        struct exclude_list_group *group;
2370        struct exclude_list *el;
2371        struct exclude_stack *stk;
2372
2373        for (i = EXC_CMDL; i <= EXC_FILE; i++) {
2374                group = &dir->exclude_list_group[i];
2375                for (j = 0; j < group->nr; j++) {
2376                        el = &group->el[j];
2377                        if (i == EXC_DIRS)
2378                                free((char *)el->src);
2379                        clear_exclude_list(el);
2380                }
2381                free(group->el);
2382        }
2383
2384        stk = dir->exclude_stack;
2385        while (stk) {
2386                struct exclude_stack *prev = stk->prev;
2387                free(stk);
2388                stk = prev;
2389        }
2390        strbuf_release(&dir->basebuf);
2391}
2392
2393struct ondisk_untracked_cache {
2394        struct stat_data info_exclude_stat;
2395        struct stat_data excludes_file_stat;
2396        uint32_t dir_flags;
2397        unsigned char info_exclude_sha1[20];
2398        unsigned char excludes_file_sha1[20];
2399        char exclude_per_dir[FLEX_ARRAY];
2400};
2401
2402#define ouc_size(len) (offsetof(struct ondisk_untracked_cache, exclude_per_dir) + len + 1)
2403
2404struct write_data {
2405        int index;         /* number of written untracked_cache_dir */
2406        struct ewah_bitmap *check_only; /* from untracked_cache_dir */
2407        struct ewah_bitmap *valid;      /* from untracked_cache_dir */
2408        struct ewah_bitmap *sha1_valid; /* set if exclude_sha1 is not null */
2409        struct strbuf out;
2410        struct strbuf sb_stat;
2411        struct strbuf sb_sha1;
2412};
2413
2414static void stat_data_to_disk(struct stat_data *to, const struct stat_data *from)
2415{
2416        to->sd_ctime.sec  = htonl(from->sd_ctime.sec);
2417        to->sd_ctime.nsec = htonl(from->sd_ctime.nsec);
2418        to->sd_mtime.sec  = htonl(from->sd_mtime.sec);
2419        to->sd_mtime.nsec = htonl(from->sd_mtime.nsec);
2420        to->sd_dev        = htonl(from->sd_dev);
2421        to->sd_ino        = htonl(from->sd_ino);
2422        to->sd_uid        = htonl(from->sd_uid);
2423        to->sd_gid        = htonl(from->sd_gid);
2424        to->sd_size       = htonl(from->sd_size);
2425}
2426
2427static void write_one_dir(struct untracked_cache_dir *untracked,
2428                          struct write_data *wd)
2429{
2430        struct stat_data stat_data;
2431        struct strbuf *out = &wd->out;
2432        unsigned char intbuf[16];
2433        unsigned int intlen, value;
2434        int i = wd->index++;
2435
2436        /*
2437         * untracked_nr should be reset whenever valid is clear, but
2438         * for safety..
2439         */
2440        if (!untracked->valid) {
2441                untracked->untracked_nr = 0;
2442                untracked->check_only = 0;
2443        }
2444
2445        if (untracked->check_only)
2446                ewah_set(wd->check_only, i);
2447        if (untracked->valid) {
2448                ewah_set(wd->valid, i);
2449                stat_data_to_disk(&stat_data, &untracked->stat_data);
2450                strbuf_add(&wd->sb_stat, &stat_data, sizeof(stat_data));
2451        }
2452        if (!is_null_sha1(untracked->exclude_sha1)) {
2453                ewah_set(wd->sha1_valid, i);
2454                strbuf_add(&wd->sb_sha1, untracked->exclude_sha1, 20);
2455        }
2456
2457        intlen = encode_varint(untracked->untracked_nr, intbuf);
2458        strbuf_add(out, intbuf, intlen);
2459
2460        /* skip non-recurse directories */
2461        for (i = 0, value = 0; i < untracked->dirs_nr; i++)
2462                if (untracked->dirs[i]->recurse)
2463                        value++;
2464        intlen = encode_varint(value, intbuf);
2465        strbuf_add(out, intbuf, intlen);
2466
2467        strbuf_add(out, untracked->name, strlen(untracked->name) + 1);
2468
2469        for (i = 0; i < untracked->untracked_nr; i++)
2470                strbuf_add(out, untracked->untracked[i],
2471                           strlen(untracked->untracked[i]) + 1);
2472
2473        for (i = 0; i < untracked->dirs_nr; i++)
2474                if (untracked->dirs[i]->recurse)
2475                        write_one_dir(untracked->dirs[i], wd);
2476}
2477
2478void write_untracked_extension(struct strbuf *out, struct untracked_cache *untracked)
2479{
2480        struct ondisk_untracked_cache *ouc;
2481        struct write_data wd;
2482        unsigned char varbuf[16];
2483        int varint_len;
2484        size_t len = strlen(untracked->exclude_per_dir);
2485
2486        FLEX_ALLOC_MEM(ouc, exclude_per_dir, untracked->exclude_per_dir, len);
2487        stat_data_to_disk(&ouc->info_exclude_stat, &untracked->ss_info_exclude.stat);
2488        stat_data_to_disk(&ouc->excludes_file_stat, &untracked->ss_excludes_file.stat);
2489        hashcpy(ouc->info_exclude_sha1, untracked->ss_info_exclude.sha1);
2490        hashcpy(ouc->excludes_file_sha1, untracked->ss_excludes_file.sha1);
2491        ouc->dir_flags = htonl(untracked->dir_flags);
2492
2493        varint_len = encode_varint(untracked->ident.len, varbuf);
2494        strbuf_add(out, varbuf, varint_len);
2495        strbuf_addbuf(out, &untracked->ident);
2496
2497        strbuf_add(out, ouc, ouc_size(len));
2498        free(ouc);
2499        ouc = NULL;
2500
2501        if (!untracked->root) {
2502                varint_len = encode_varint(0, varbuf);
2503                strbuf_add(out, varbuf, varint_len);
2504                return;
2505        }
2506
2507        wd.index      = 0;
2508        wd.check_only = ewah_new();
2509        wd.valid      = ewah_new();
2510        wd.sha1_valid = ewah_new();
2511        strbuf_init(&wd.out, 1024);
2512        strbuf_init(&wd.sb_stat, 1024);
2513        strbuf_init(&wd.sb_sha1, 1024);
2514        write_one_dir(untracked->root, &wd);
2515
2516        varint_len = encode_varint(wd.index, varbuf);
2517        strbuf_add(out, varbuf, varint_len);
2518        strbuf_addbuf(out, &wd.out);
2519        ewah_serialize_strbuf(wd.valid, out);
2520        ewah_serialize_strbuf(wd.check_only, out);
2521        ewah_serialize_strbuf(wd.sha1_valid, out);
2522        strbuf_addbuf(out, &wd.sb_stat);
2523        strbuf_addbuf(out, &wd.sb_sha1);
2524        strbuf_addch(out, '\0'); /* safe guard for string lists */
2525
2526        ewah_free(wd.valid);
2527        ewah_free(wd.check_only);
2528        ewah_free(wd.sha1_valid);
2529        strbuf_release(&wd.out);
2530        strbuf_release(&wd.sb_stat);
2531        strbuf_release(&wd.sb_sha1);
2532}
2533
2534static void free_untracked(struct untracked_cache_dir *ucd)
2535{
2536        int i;
2537        if (!ucd)
2538                return;
2539        for (i = 0; i < ucd->dirs_nr; i++)
2540                free_untracked(ucd->dirs[i]);
2541        for (i = 0; i < ucd->untracked_nr; i++)
2542                free(ucd->untracked[i]);
2543        free(ucd->untracked);
2544        free(ucd->dirs);
2545        free(ucd);
2546}
2547
2548void free_untracked_cache(struct untracked_cache *uc)
2549{
2550        if (uc)
2551                free_untracked(uc->root);
2552        free(uc);
2553}
2554
2555struct read_data {
2556        int index;
2557        struct untracked_cache_dir **ucd;
2558        struct ewah_bitmap *check_only;
2559        struct ewah_bitmap *valid;
2560        struct ewah_bitmap *sha1_valid;
2561        const unsigned char *data;
2562        const unsigned char *end;
2563};
2564
2565static void stat_data_from_disk(struct stat_data *to, const struct stat_data *from)
2566{
2567        to->sd_ctime.sec  = get_be32(&from->sd_ctime.sec);
2568        to->sd_ctime.nsec = get_be32(&from->sd_ctime.nsec);
2569        to->sd_mtime.sec  = get_be32(&from->sd_mtime.sec);
2570        to->sd_mtime.nsec = get_be32(&from->sd_mtime.nsec);
2571        to->sd_dev        = get_be32(&from->sd_dev);
2572        to->sd_ino        = get_be32(&from->sd_ino);
2573        to->sd_uid        = get_be32(&from->sd_uid);
2574        to->sd_gid        = get_be32(&from->sd_gid);
2575        to->sd_size       = get_be32(&from->sd_size);
2576}
2577
2578static int read_one_dir(struct untracked_cache_dir **untracked_,
2579                        struct read_data *rd)
2580{
2581        struct untracked_cache_dir ud, *untracked;
2582        const unsigned char *next, *data = rd->data, *end = rd->end;
2583        unsigned int value;
2584        int i, len;
2585
2586        memset(&ud, 0, sizeof(ud));
2587
2588        next = data;
2589        value = decode_varint(&next);
2590        if (next > end)
2591                return -1;
2592        ud.recurse         = 1;
2593        ud.untracked_alloc = value;
2594        ud.untracked_nr    = value;
2595        if (ud.untracked_nr)
2596                ALLOC_ARRAY(ud.untracked, ud.untracked_nr);
2597        data = next;
2598
2599        next = data;
2600        ud.dirs_alloc = ud.dirs_nr = decode_varint(&next);
2601        if (next > end)
2602                return -1;
2603        ALLOC_ARRAY(ud.dirs, ud.dirs_nr);
2604        data = next;
2605
2606        len = strlen((const char *)data);
2607        next = data + len + 1;
2608        if (next > rd->end)
2609                return -1;
2610        *untracked_ = untracked = xmalloc(st_add(sizeof(*untracked), len));
2611        memcpy(untracked, &ud, sizeof(ud));
2612        memcpy(untracked->name, data, len + 1);
2613        data = next;
2614
2615        for (i = 0; i < untracked->untracked_nr; i++) {
2616                len = strlen((const char *)data);
2617                next = data + len + 1;
2618                if (next > rd->end)
2619                        return -1;
2620                untracked->untracked[i] = xstrdup((const char*)data);
2621                data = next;
2622        }
2623
2624        rd->ucd[rd->index++] = untracked;
2625        rd->data = data;
2626
2627        for (i = 0; i < untracked->dirs_nr; i++) {
2628                len = read_one_dir(untracked->dirs + i, rd);
2629                if (len < 0)
2630                        return -1;
2631        }
2632        return 0;
2633}
2634
2635static void set_check_only(size_t pos, void *cb)
2636{
2637        struct read_data *rd = cb;
2638        struct untracked_cache_dir *ud = rd->ucd[pos];
2639        ud->check_only = 1;
2640}
2641
2642static void read_stat(size_t pos, void *cb)
2643{
2644        struct read_data *rd = cb;
2645        struct untracked_cache_dir *ud = rd->ucd[pos];
2646        if (rd->data + sizeof(struct stat_data) > rd->end) {
2647                rd->data = rd->end + 1;
2648                return;
2649        }
2650        stat_data_from_disk(&ud->stat_data, (struct stat_data *)rd->data);
2651        rd->data += sizeof(struct stat_data);
2652        ud->valid = 1;
2653}
2654
2655static void read_sha1(size_t pos, void *cb)
2656{
2657        struct read_data *rd = cb;
2658        struct untracked_cache_dir *ud = rd->ucd[pos];
2659        if (rd->data + 20 > rd->end) {
2660                rd->data = rd->end + 1;
2661                return;
2662        }
2663        hashcpy(ud->exclude_sha1, rd->data);
2664        rd->data += 20;
2665}
2666
2667static void load_sha1_stat(struct sha1_stat *sha1_stat,
2668                           const struct stat_data *stat,
2669                           const unsigned char *sha1)
2670{
2671        stat_data_from_disk(&sha1_stat->stat, stat);
2672        hashcpy(sha1_stat->sha1, sha1);
2673        sha1_stat->valid = 1;
2674}
2675
2676struct untracked_cache *read_untracked_extension(const void *data, unsigned long sz)
2677{
2678        const struct ondisk_untracked_cache *ouc;
2679        struct untracked_cache *uc;
2680        struct read_data rd;
2681        const unsigned char *next = data, *end = (const unsigned char *)data + sz;
2682        const char *ident;
2683        int ident_len, len;
2684
2685        if (sz <= 1 || end[-1] != '\0')
2686                return NULL;
2687        end--;
2688
2689        ident_len = decode_varint(&next);
2690        if (next + ident_len > end)
2691                return NULL;
2692        ident = (const char *)next;
2693        next += ident_len;
2694
2695        ouc = (const struct ondisk_untracked_cache *)next;
2696        if (next + ouc_size(0) > end)
2697                return NULL;
2698
2699        uc = xcalloc(1, sizeof(*uc));
2700        strbuf_init(&uc->ident, ident_len);
2701        strbuf_add(&uc->ident, ident, ident_len);
2702        load_sha1_stat(&uc->ss_info_exclude, &ouc->info_exclude_stat,
2703                       ouc->info_exclude_sha1);
2704        load_sha1_stat(&uc->ss_excludes_file, &ouc->excludes_file_stat,
2705                       ouc->excludes_file_sha1);
2706        uc->dir_flags = get_be32(&ouc->dir_flags);
2707        uc->exclude_per_dir = xstrdup(ouc->exclude_per_dir);
2708        /* NUL after exclude_per_dir is covered by sizeof(*ouc) */
2709        next += ouc_size(strlen(ouc->exclude_per_dir));
2710        if (next >= end)
2711                goto done2;
2712
2713        len = decode_varint(&next);
2714        if (next > end || len == 0)
2715                goto done2;
2716
2717        rd.valid      = ewah_new();
2718        rd.check_only = ewah_new();
2719        rd.sha1_valid = ewah_new();
2720        rd.data       = next;
2721        rd.end        = end;
2722        rd.index      = 0;
2723        ALLOC_ARRAY(rd.ucd, len);
2724
2725        if (read_one_dir(&uc->root, &rd) || rd.index != len)
2726                goto done;
2727
2728        next = rd.data;
2729        len = ewah_read_mmap(rd.valid, next, end - next);
2730        if (len < 0)
2731                goto done;
2732
2733        next += len;
2734        len = ewah_read_mmap(rd.check_only, next, end - next);
2735        if (len < 0)
2736                goto done;
2737
2738        next += len;
2739        len = ewah_read_mmap(rd.sha1_valid, next, end - next);
2740        if (len < 0)
2741                goto done;
2742
2743        ewah_each_bit(rd.check_only, set_check_only, &rd);
2744        rd.data = next + len;
2745        ewah_each_bit(rd.valid, read_stat, &rd);
2746        ewah_each_bit(rd.sha1_valid, read_sha1, &rd);
2747        next = rd.data;
2748
2749done:
2750        free(rd.ucd);
2751        ewah_free(rd.valid);
2752        ewah_free(rd.check_only);
2753        ewah_free(rd.sha1_valid);
2754done2:
2755        if (next != end) {
2756                free_untracked_cache(uc);
2757                uc = NULL;
2758        }
2759        return uc;
2760}
2761
2762static void invalidate_one_directory(struct untracked_cache *uc,
2763                                     struct untracked_cache_dir *ucd)
2764{
2765        uc->dir_invalidated++;
2766        ucd->valid = 0;
2767        ucd->untracked_nr = 0;
2768}
2769
2770/*
2771 * Normally when an entry is added or removed from a directory,
2772 * invalidating that directory is enough. No need to touch its
2773 * ancestors. When a directory is shown as "foo/bar/" in git-status
2774 * however, deleting or adding an entry may have cascading effect.
2775 *
2776 * Say the "foo/bar/file" has become untracked, we need to tell the
2777 * untracked_cache_dir of "foo" that "bar/" is not an untracked
2778 * directory any more (because "bar" is managed by foo as an untracked
2779 * "file").
2780 *
2781 * Similarly, if "foo/bar/file" moves from untracked to tracked and it
2782 * was the last untracked entry in the entire "foo", we should show
2783 * "foo/" instead. Which means we have to invalidate past "bar" up to
2784 * "foo".
2785 *
2786 * This function traverses all directories from root to leaf. If there
2787 * is a chance of one of the above cases happening, we invalidate back
2788 * to root. Otherwise we just invalidate the leaf. There may be a more
2789 * sophisticated way than checking for SHOW_OTHER_DIRECTORIES to
2790 * detect these cases and avoid unnecessary invalidation, for example,
2791 * checking for the untracked entry named "bar/" in "foo", but for now
2792 * stick to something safe and simple.
2793 */
2794static int invalidate_one_component(struct untracked_cache *uc,
2795                                    struct untracked_cache_dir *dir,
2796                                    const char *path, int len)
2797{
2798        const char *rest = strchr(path, '/');
2799
2800        if (rest) {
2801                int component_len = rest - path;
2802                struct untracked_cache_dir *d =
2803                        lookup_untracked(uc, dir, path, component_len);
2804                int ret =
2805                        invalidate_one_component(uc, d, rest + 1,
2806                                                 len - (component_len + 1));
2807                if (ret)
2808                        invalidate_one_directory(uc, dir);
2809                return ret;
2810        }
2811
2812        invalidate_one_directory(uc, dir);
2813        return uc->dir_flags & DIR_SHOW_OTHER_DIRECTORIES;
2814}
2815
2816void untracked_cache_invalidate_path(struct index_state *istate,
2817                                     const char *path)
2818{
2819        if (!istate->untracked || !istate->untracked->root)
2820                return;
2821        invalidate_one_component(istate->untracked, istate->untracked->root,
2822                                 path, strlen(path));
2823}
2824
2825void untracked_cache_remove_from_index(struct index_state *istate,
2826                                       const char *path)
2827{
2828        untracked_cache_invalidate_path(istate, path);
2829}
2830
2831void untracked_cache_add_to_index(struct index_state *istate,
2832                                  const char *path)
2833{
2834        untracked_cache_invalidate_path(istate, path);
2835}
2836
2837/* Update gitfile and core.worktree setting to connect work tree and git dir */
2838void connect_work_tree_and_git_dir(const char *work_tree_, const char *git_dir_)
2839{
2840        struct strbuf gitfile_sb = STRBUF_INIT;
2841        struct strbuf cfg_sb = STRBUF_INIT;
2842        struct strbuf rel_path = STRBUF_INIT;
2843        char *git_dir, *work_tree;
2844
2845        /* Prepare .git file */
2846        strbuf_addf(&gitfile_sb, "%s/.git", work_tree_);
2847        if (safe_create_leading_directories_const(gitfile_sb.buf))
2848                die(_("could not create directories for %s"), gitfile_sb.buf);
2849
2850        /* Prepare config file */
2851        strbuf_addf(&cfg_sb, "%s/config", git_dir_);
2852        if (safe_create_leading_directories_const(cfg_sb.buf))
2853                die(_("could not create directories for %s"), cfg_sb.buf);
2854
2855        git_dir = real_pathdup(git_dir_, 1);
2856        work_tree = real_pathdup(work_tree_, 1);
2857
2858        /* Write .git file */
2859        write_file(gitfile_sb.buf, "gitdir: %s",
2860                   relative_path(git_dir, work_tree, &rel_path));
2861        /* Update core.worktree setting */
2862        git_config_set_in_file(cfg_sb.buf, "core.worktree",
2863                               relative_path(work_tree, git_dir, &rel_path));
2864
2865        strbuf_release(&gitfile_sb);
2866        strbuf_release(&cfg_sb);
2867        strbuf_release(&rel_path);
2868        free(work_tree);
2869        free(git_dir);
2870}
2871
2872/*
2873 * Migrate the git directory of the given path from old_git_dir to new_git_dir.
2874 */
2875void relocate_gitdir(const char *path, const char *old_git_dir, const char *new_git_dir)
2876{
2877        if (rename(old_git_dir, new_git_dir) < 0)
2878                die_errno(_("could not migrate git directory from '%s' to '%s'"),
2879                        old_git_dir, new_git_dir);
2880
2881        connect_work_tree_and_git_dir(path, new_git_dir);
2882}