dir.con commit Merge branch 'js/xread-in-full' (0a3bc7d)
   1/*
   2 * This handles recursive filename detection with exclude
   3 * files, index knowledge etc..
   4 *
   5 * See Documentation/technical/api-directory-listing.txt
   6 *
   7 * Copyright (C) Linus Torvalds, 2005-2006
   8 *               Junio Hamano, 2005-2006
   9 */
  10#include "cache.h"
  11#include "dir.h"
  12#include "refs.h"
  13#include "wildmatch.h"
  14#include "pathspec.h"
  15
  16struct path_simplify {
  17        int len;
  18        const char *path;
  19};
  20
  21/*
  22 * Tells read_directory_recursive how a file or directory should be treated.
  23 * Values are ordered by significance, e.g. if a directory contains both
  24 * excluded and untracked files, it is listed as untracked because
  25 * path_untracked > path_excluded.
  26 */
  27enum path_treatment {
  28        path_none = 0,
  29        path_recurse,
  30        path_excluded,
  31        path_untracked
  32};
  33
  34static enum path_treatment read_directory_recursive(struct dir_struct *dir,
  35        const char *path, int len,
  36        int check_only, const struct path_simplify *simplify);
  37static int get_dtype(struct dirent *de, const char *path, int len);
  38
  39/* helper string functions with support for the ignore_case flag */
  40int strcmp_icase(const char *a, const char *b)
  41{
  42        return ignore_case ? strcasecmp(a, b) : strcmp(a, b);
  43}
  44
  45int strncmp_icase(const char *a, const char *b, size_t count)
  46{
  47        return ignore_case ? strncasecmp(a, b, count) : strncmp(a, b, count);
  48}
  49
  50int fnmatch_icase(const char *pattern, const char *string, int flags)
  51{
  52        return fnmatch(pattern, string, flags | (ignore_case ? FNM_CASEFOLD : 0));
  53}
  54
  55inline int git_fnmatch(const struct pathspec_item *item,
  56                       const char *pattern, const char *string,
  57                       int prefix)
  58{
  59        if (prefix > 0) {
  60                if (ps_strncmp(item, pattern, string, prefix))
  61                        return FNM_NOMATCH;
  62                pattern += prefix;
  63                string += prefix;
  64        }
  65        if (item->flags & PATHSPEC_ONESTAR) {
  66                int pattern_len = strlen(++pattern);
  67                int string_len = strlen(string);
  68                return string_len < pattern_len ||
  69                        ps_strcmp(item, pattern,
  70                                  string + string_len - pattern_len);
  71        }
  72        if (item->magic & PATHSPEC_GLOB)
  73                return wildmatch(pattern, string,
  74                                 WM_PATHNAME |
  75                                 (item->magic & PATHSPEC_ICASE ? WM_CASEFOLD : 0),
  76                                 NULL);
  77        else
  78                /* wildmatch has not learned no FNM_PATHNAME mode yet */
  79                return fnmatch(pattern, string,
  80                               item->magic & PATHSPEC_ICASE ? FNM_CASEFOLD : 0);
  81}
  82
  83static int fnmatch_icase_mem(const char *pattern, int patternlen,
  84                             const char *string, int stringlen,
  85                             int flags)
  86{
  87        int match_status;
  88        struct strbuf pat_buf = STRBUF_INIT;
  89        struct strbuf str_buf = STRBUF_INIT;
  90        const char *use_pat = pattern;
  91        const char *use_str = string;
  92
  93        if (pattern[patternlen]) {
  94                strbuf_add(&pat_buf, pattern, patternlen);
  95                use_pat = pat_buf.buf;
  96        }
  97        if (string[stringlen]) {
  98                strbuf_add(&str_buf, string, stringlen);
  99                use_str = str_buf.buf;
 100        }
 101
 102        if (ignore_case)
 103                flags |= WM_CASEFOLD;
 104        match_status = wildmatch(use_pat, use_str, flags, NULL);
 105
 106        strbuf_release(&pat_buf);
 107        strbuf_release(&str_buf);
 108
 109        return match_status;
 110}
 111
 112static size_t common_prefix_len(const struct pathspec *pathspec)
 113{
 114        int n;
 115        size_t max = 0;
 116
 117        /*
 118         * ":(icase)path" is treated as a pathspec full of
 119         * wildcard. In other words, only prefix is considered common
 120         * prefix. If the pathspec is abc/foo abc/bar, running in
 121         * subdir xyz, the common prefix is still xyz, not xuz/abc as
 122         * in non-:(icase).
 123         */
 124        GUARD_PATHSPEC(pathspec,
 125                       PATHSPEC_FROMTOP |
 126                       PATHSPEC_MAXDEPTH |
 127                       PATHSPEC_LITERAL |
 128                       PATHSPEC_GLOB |
 129                       PATHSPEC_ICASE);
 130
 131        for (n = 0; n < pathspec->nr; n++) {
 132                size_t i = 0, len = 0, item_len;
 133                if (pathspec->items[n].magic & PATHSPEC_ICASE)
 134                        item_len = pathspec->items[n].prefix;
 135                else
 136                        item_len = pathspec->items[n].nowildcard_len;
 137                while (i < item_len && (n == 0 || i < max)) {
 138                        char c = pathspec->items[n].match[i];
 139                        if (c != pathspec->items[0].match[i])
 140                                break;
 141                        if (c == '/')
 142                                len = i + 1;
 143                        i++;
 144                }
 145                if (n == 0 || len < max) {
 146                        max = len;
 147                        if (!max)
 148                                break;
 149                }
 150        }
 151        return max;
 152}
 153
 154/*
 155 * Returns a copy of the longest leading path common among all
 156 * pathspecs.
 157 */
 158char *common_prefix(const struct pathspec *pathspec)
 159{
 160        unsigned long len = common_prefix_len(pathspec);
 161
 162        return len ? xmemdupz(pathspec->items[0].match, len) : NULL;
 163}
 164
 165int fill_directory(struct dir_struct *dir, const struct pathspec *pathspec)
 166{
 167        size_t len;
 168
 169        /*
 170         * Calculate common prefix for the pathspec, and
 171         * use that to optimize the directory walk
 172         */
 173        len = common_prefix_len(pathspec);
 174
 175        /* Read the directory and prune it */
 176        read_directory(dir, pathspec->nr ? pathspec->_raw[0] : "", len, pathspec);
 177        return len;
 178}
 179
 180int within_depth(const char *name, int namelen,
 181                        int depth, int max_depth)
 182{
 183        const char *cp = name, *cpe = name + namelen;
 184
 185        while (cp < cpe) {
 186                if (*cp++ != '/')
 187                        continue;
 188                depth++;
 189                if (depth > max_depth)
 190                        return 0;
 191        }
 192        return 1;
 193}
 194
 195/*
 196 * Does 'match' match the given name?
 197 * A match is found if
 198 *
 199 * (1) the 'match' string is leading directory of 'name', or
 200 * (2) the 'match' string is a wildcard and matches 'name', or
 201 * (3) the 'match' string is exactly the same as 'name'.
 202 *
 203 * and the return value tells which case it was.
 204 *
 205 * It returns 0 when there is no match.
 206 */
 207static int match_pathspec_item(const struct pathspec_item *item, int prefix,
 208                               const char *name, int namelen)
 209{
 210        /* name/namelen has prefix cut off by caller */
 211        const char *match = item->match + prefix;
 212        int matchlen = item->len - prefix;
 213
 214        /*
 215         * The normal call pattern is:
 216         * 1. prefix = common_prefix_len(ps);
 217         * 2. prune something, or fill_directory
 218         * 3. match_pathspec_depth()
 219         *
 220         * 'prefix' at #1 may be shorter than the command's prefix and
 221         * it's ok for #2 to match extra files. Those extras will be
 222         * trimmed at #3.
 223         *
 224         * Suppose the pathspec is 'foo' and '../bar' running from
 225         * subdir 'xyz'. The common prefix at #1 will be empty, thanks
 226         * to "../". We may have xyz/foo _and_ XYZ/foo after #2. The
 227         * user does not want XYZ/foo, only the "foo" part should be
 228         * case-insensitive. We need to filter out XYZ/foo here. In
 229         * other words, we do not trust the caller on comparing the
 230         * prefix part when :(icase) is involved. We do exact
 231         * comparison ourselves.
 232         *
 233         * Normally the caller (common_prefix_len() in fact) does
 234         * _exact_ matching on name[-prefix+1..-1] and we do not need
 235         * to check that part. Be defensive and check it anyway, in
 236         * case common_prefix_len is changed, or a new caller is
 237         * introduced that does not use common_prefix_len.
 238         *
 239         * If the penalty turns out too high when prefix is really
 240         * long, maybe change it to
 241         * strncmp(match, name, item->prefix - prefix)
 242         */
 243        if (item->prefix && (item->magic & PATHSPEC_ICASE) &&
 244            strncmp(item->match, name - prefix, item->prefix))
 245                return 0;
 246
 247        /* If the match was just the prefix, we matched */
 248        if (!*match)
 249                return MATCHED_RECURSIVELY;
 250
 251        if (matchlen <= namelen && !ps_strncmp(item, match, name, matchlen)) {
 252                if (matchlen == namelen)
 253                        return MATCHED_EXACTLY;
 254
 255                if (match[matchlen-1] == '/' || name[matchlen] == '/')
 256                        return MATCHED_RECURSIVELY;
 257        }
 258
 259        if (item->nowildcard_len < item->len &&
 260            !git_fnmatch(item, match, name,
 261                         item->nowildcard_len - prefix))
 262                return MATCHED_FNMATCH;
 263
 264        return 0;
 265}
 266
 267/*
 268 * Given a name and a list of pathspecs, returns the nature of the
 269 * closest (i.e. most specific) match of the name to any of the
 270 * pathspecs.
 271 *
 272 * The caller typically calls this multiple times with the same
 273 * pathspec and seen[] array but with different name/namelen
 274 * (e.g. entries from the index) and is interested in seeing if and
 275 * how each pathspec matches all the names it calls this function
 276 * with.  A mark is left in the seen[] array for each pathspec element
 277 * indicating the closest type of match that element achieved, so if
 278 * seen[n] remains zero after multiple invocations, that means the nth
 279 * pathspec did not match any names, which could indicate that the
 280 * user mistyped the nth pathspec.
 281 */
 282int match_pathspec_depth(const struct pathspec *ps,
 283                         const char *name, int namelen,
 284                         int prefix, char *seen)
 285{
 286        int i, retval = 0;
 287
 288        GUARD_PATHSPEC(ps,
 289                       PATHSPEC_FROMTOP |
 290                       PATHSPEC_MAXDEPTH |
 291                       PATHSPEC_LITERAL |
 292                       PATHSPEC_GLOB |
 293                       PATHSPEC_ICASE);
 294
 295        if (!ps->nr) {
 296                if (!ps->recursive ||
 297                    !(ps->magic & PATHSPEC_MAXDEPTH) ||
 298                    ps->max_depth == -1)
 299                        return MATCHED_RECURSIVELY;
 300
 301                if (within_depth(name, namelen, 0, ps->max_depth))
 302                        return MATCHED_EXACTLY;
 303                else
 304                        return 0;
 305        }
 306
 307        name += prefix;
 308        namelen -= prefix;
 309
 310        for (i = ps->nr - 1; i >= 0; i--) {
 311                int how;
 312                if (seen && seen[i] == MATCHED_EXACTLY)
 313                        continue;
 314                how = match_pathspec_item(ps->items+i, prefix, name, namelen);
 315                if (ps->recursive &&
 316                    (ps->magic & PATHSPEC_MAXDEPTH) &&
 317                    ps->max_depth != -1 &&
 318                    how && how != MATCHED_FNMATCH) {
 319                        int len = ps->items[i].len;
 320                        if (name[len] == '/')
 321                                len++;
 322                        if (within_depth(name+len, namelen-len, 0, ps->max_depth))
 323                                how = MATCHED_EXACTLY;
 324                        else
 325                                how = 0;
 326                }
 327                if (how) {
 328                        if (retval < how)
 329                                retval = how;
 330                        if (seen && seen[i] < how)
 331                                seen[i] = how;
 332                }
 333        }
 334        return retval;
 335}
 336
 337/*
 338 * Return the length of the "simple" part of a path match limiter.
 339 */
 340int simple_length(const char *match)
 341{
 342        int len = -1;
 343
 344        for (;;) {
 345                unsigned char c = *match++;
 346                len++;
 347                if (c == '\0' || is_glob_special(c))
 348                        return len;
 349        }
 350}
 351
 352int no_wildcard(const char *string)
 353{
 354        return string[simple_length(string)] == '\0';
 355}
 356
 357void parse_exclude_pattern(const char **pattern,
 358                           int *patternlen,
 359                           int *flags,
 360                           int *nowildcardlen)
 361{
 362        const char *p = *pattern;
 363        size_t i, len;
 364
 365        *flags = 0;
 366        if (*p == '!') {
 367                *flags |= EXC_FLAG_NEGATIVE;
 368                p++;
 369        }
 370        len = strlen(p);
 371        if (len && p[len - 1] == '/') {
 372                len--;
 373                *flags |= EXC_FLAG_MUSTBEDIR;
 374        }
 375        for (i = 0; i < len; i++) {
 376                if (p[i] == '/')
 377                        break;
 378        }
 379        if (i == len)
 380                *flags |= EXC_FLAG_NODIR;
 381        *nowildcardlen = simple_length(p);
 382        /*
 383         * we should have excluded the trailing slash from 'p' too,
 384         * but that's one more allocation. Instead just make sure
 385         * nowildcardlen does not exceed real patternlen
 386         */
 387        if (*nowildcardlen > len)
 388                *nowildcardlen = len;
 389        if (*p == '*' && no_wildcard(p + 1))
 390                *flags |= EXC_FLAG_ENDSWITH;
 391        *pattern = p;
 392        *patternlen = len;
 393}
 394
 395void add_exclude(const char *string, const char *base,
 396                 int baselen, struct exclude_list *el, int srcpos)
 397{
 398        struct exclude *x;
 399        int patternlen;
 400        int flags;
 401        int nowildcardlen;
 402
 403        parse_exclude_pattern(&string, &patternlen, &flags, &nowildcardlen);
 404        if (flags & EXC_FLAG_MUSTBEDIR) {
 405                char *s;
 406                x = xmalloc(sizeof(*x) + patternlen + 1);
 407                s = (char *)(x+1);
 408                memcpy(s, string, patternlen);
 409                s[patternlen] = '\0';
 410                x->pattern = s;
 411        } else {
 412                x = xmalloc(sizeof(*x));
 413                x->pattern = string;
 414        }
 415        x->patternlen = patternlen;
 416        x->nowildcardlen = nowildcardlen;
 417        x->base = base;
 418        x->baselen = baselen;
 419        x->flags = flags;
 420        x->srcpos = srcpos;
 421        ALLOC_GROW(el->excludes, el->nr + 1, el->alloc);
 422        el->excludes[el->nr++] = x;
 423        x->el = el;
 424}
 425
 426static void *read_skip_worktree_file_from_index(const char *path, size_t *size)
 427{
 428        int pos, len;
 429        unsigned long sz;
 430        enum object_type type;
 431        void *data;
 432        struct index_state *istate = &the_index;
 433
 434        len = strlen(path);
 435        pos = index_name_pos(istate, path, len);
 436        if (pos < 0)
 437                return NULL;
 438        if (!ce_skip_worktree(istate->cache[pos]))
 439                return NULL;
 440        data = read_sha1_file(istate->cache[pos]->sha1, &type, &sz);
 441        if (!data || type != OBJ_BLOB) {
 442                free(data);
 443                return NULL;
 444        }
 445        *size = xsize_t(sz);
 446        return data;
 447}
 448
 449/*
 450 * Frees memory within el which was allocated for exclude patterns and
 451 * the file buffer.  Does not free el itself.
 452 */
 453void clear_exclude_list(struct exclude_list *el)
 454{
 455        int i;
 456
 457        for (i = 0; i < el->nr; i++)
 458                free(el->excludes[i]);
 459        free(el->excludes);
 460        free(el->filebuf);
 461
 462        el->nr = 0;
 463        el->excludes = NULL;
 464        el->filebuf = NULL;
 465}
 466
 467int add_excludes_from_file_to_list(const char *fname,
 468                                   const char *base,
 469                                   int baselen,
 470                                   struct exclude_list *el,
 471                                   int check_index)
 472{
 473        struct stat st;
 474        int fd, i, lineno = 1;
 475        size_t size = 0;
 476        char *buf, *entry;
 477
 478        fd = open(fname, O_RDONLY);
 479        if (fd < 0 || fstat(fd, &st) < 0) {
 480                if (errno != ENOENT)
 481                        warn_on_inaccessible(fname);
 482                if (0 <= fd)
 483                        close(fd);
 484                if (!check_index ||
 485                    (buf = read_skip_worktree_file_from_index(fname, &size)) == NULL)
 486                        return -1;
 487                if (size == 0) {
 488                        free(buf);
 489                        return 0;
 490                }
 491                if (buf[size-1] != '\n') {
 492                        buf = xrealloc(buf, size+1);
 493                        buf[size++] = '\n';
 494                }
 495        }
 496        else {
 497                size = xsize_t(st.st_size);
 498                if (size == 0) {
 499                        close(fd);
 500                        return 0;
 501                }
 502                buf = xmalloc(size+1);
 503                if (read_in_full(fd, buf, size) != size) {
 504                        free(buf);
 505                        close(fd);
 506                        return -1;
 507                }
 508                buf[size++] = '\n';
 509                close(fd);
 510        }
 511
 512        el->filebuf = buf;
 513        entry = buf;
 514        for (i = 0; i < size; i++) {
 515                if (buf[i] == '\n') {
 516                        if (entry != buf + i && entry[0] != '#') {
 517                                buf[i - (i && buf[i-1] == '\r')] = 0;
 518                                add_exclude(entry, base, baselen, el, lineno);
 519                        }
 520                        lineno++;
 521                        entry = buf + i + 1;
 522                }
 523        }
 524        return 0;
 525}
 526
 527struct exclude_list *add_exclude_list(struct dir_struct *dir,
 528                                      int group_type, const char *src)
 529{
 530        struct exclude_list *el;
 531        struct exclude_list_group *group;
 532
 533        group = &dir->exclude_list_group[group_type];
 534        ALLOC_GROW(group->el, group->nr + 1, group->alloc);
 535        el = &group->el[group->nr++];
 536        memset(el, 0, sizeof(*el));
 537        el->src = src;
 538        return el;
 539}
 540
 541/*
 542 * Used to set up core.excludesfile and .git/info/exclude lists.
 543 */
 544void add_excludes_from_file(struct dir_struct *dir, const char *fname)
 545{
 546        struct exclude_list *el;
 547        el = add_exclude_list(dir, EXC_FILE, fname);
 548        if (add_excludes_from_file_to_list(fname, "", 0, el, 0) < 0)
 549                die("cannot use %s as an exclude file", fname);
 550}
 551
 552int match_basename(const char *basename, int basenamelen,
 553                   const char *pattern, int prefix, int patternlen,
 554                   int flags)
 555{
 556        if (prefix == patternlen) {
 557                if (patternlen == basenamelen &&
 558                    !strncmp_icase(pattern, basename, basenamelen))
 559                        return 1;
 560        } else if (flags & EXC_FLAG_ENDSWITH) {
 561                /* "*literal" matching against "fooliteral" */
 562                if (patternlen - 1 <= basenamelen &&
 563                    !strncmp_icase(pattern + 1,
 564                                   basename + basenamelen - (patternlen - 1),
 565                                   patternlen - 1))
 566                        return 1;
 567        } else {
 568                if (fnmatch_icase_mem(pattern, patternlen,
 569                                      basename, basenamelen,
 570                                      0) == 0)
 571                        return 1;
 572        }
 573        return 0;
 574}
 575
 576int match_pathname(const char *pathname, int pathlen,
 577                   const char *base, int baselen,
 578                   const char *pattern, int prefix, int patternlen,
 579                   int flags)
 580{
 581        const char *name;
 582        int namelen;
 583
 584        /*
 585         * match with FNM_PATHNAME; the pattern has base implicitly
 586         * in front of it.
 587         */
 588        if (*pattern == '/') {
 589                pattern++;
 590                patternlen--;
 591                prefix--;
 592        }
 593
 594        /*
 595         * baselen does not count the trailing slash. base[] may or
 596         * may not end with a trailing slash though.
 597         */
 598        if (pathlen < baselen + 1 ||
 599            (baselen && pathname[baselen] != '/') ||
 600            strncmp_icase(pathname, base, baselen))
 601                return 0;
 602
 603        namelen = baselen ? pathlen - baselen - 1 : pathlen;
 604        name = pathname + pathlen - namelen;
 605
 606        if (prefix) {
 607                /*
 608                 * if the non-wildcard part is longer than the
 609                 * remaining pathname, surely it cannot match.
 610                 */
 611                if (prefix > namelen)
 612                        return 0;
 613
 614                if (strncmp_icase(pattern, name, prefix))
 615                        return 0;
 616                pattern += prefix;
 617                patternlen -= prefix;
 618                name    += prefix;
 619                namelen -= prefix;
 620
 621                /*
 622                 * If the whole pattern did not have a wildcard,
 623                 * then our prefix match is all we need; we
 624                 * do not need to call fnmatch at all.
 625                 */
 626                if (!patternlen && !namelen)
 627                        return 1;
 628        }
 629
 630        return fnmatch_icase_mem(pattern, patternlen,
 631                                 name, namelen,
 632                                 WM_PATHNAME) == 0;
 633}
 634
 635/*
 636 * Scan the given exclude list in reverse to see whether pathname
 637 * should be ignored.  The first match (i.e. the last on the list), if
 638 * any, determines the fate.  Returns the exclude_list element which
 639 * matched, or NULL for undecided.
 640 */
 641static struct exclude *last_exclude_matching_from_list(const char *pathname,
 642                                                       int pathlen,
 643                                                       const char *basename,
 644                                                       int *dtype,
 645                                                       struct exclude_list *el)
 646{
 647        int i;
 648
 649        if (!el->nr)
 650                return NULL;    /* undefined */
 651
 652        for (i = el->nr - 1; 0 <= i; i--) {
 653                struct exclude *x = el->excludes[i];
 654                const char *exclude = x->pattern;
 655                int prefix = x->nowildcardlen;
 656
 657                if (x->flags & EXC_FLAG_MUSTBEDIR) {
 658                        if (*dtype == DT_UNKNOWN)
 659                                *dtype = get_dtype(NULL, pathname, pathlen);
 660                        if (*dtype != DT_DIR)
 661                                continue;
 662                }
 663
 664                if (x->flags & EXC_FLAG_NODIR) {
 665                        if (match_basename(basename,
 666                                           pathlen - (basename - pathname),
 667                                           exclude, prefix, x->patternlen,
 668                                           x->flags))
 669                                return x;
 670                        continue;
 671                }
 672
 673                assert(x->baselen == 0 || x->base[x->baselen - 1] == '/');
 674                if (match_pathname(pathname, pathlen,
 675                                   x->base, x->baselen ? x->baselen - 1 : 0,
 676                                   exclude, prefix, x->patternlen, x->flags))
 677                        return x;
 678        }
 679        return NULL; /* undecided */
 680}
 681
 682/*
 683 * Scan the list and let the last match determine the fate.
 684 * Return 1 for exclude, 0 for include and -1 for undecided.
 685 */
 686int is_excluded_from_list(const char *pathname,
 687                          int pathlen, const char *basename, int *dtype,
 688                          struct exclude_list *el)
 689{
 690        struct exclude *exclude;
 691        exclude = last_exclude_matching_from_list(pathname, pathlen, basename, dtype, el);
 692        if (exclude)
 693                return exclude->flags & EXC_FLAG_NEGATIVE ? 0 : 1;
 694        return -1; /* undecided */
 695}
 696
 697static struct exclude *last_exclude_matching_from_lists(struct dir_struct *dir,
 698                const char *pathname, int pathlen, const char *basename,
 699                int *dtype_p)
 700{
 701        int i, j;
 702        struct exclude_list_group *group;
 703        struct exclude *exclude;
 704        for (i = EXC_CMDL; i <= EXC_FILE; i++) {
 705                group = &dir->exclude_list_group[i];
 706                for (j = group->nr - 1; j >= 0; j--) {
 707                        exclude = last_exclude_matching_from_list(
 708                                pathname, pathlen, basename, dtype_p,
 709                                &group->el[j]);
 710                        if (exclude)
 711                                return exclude;
 712                }
 713        }
 714        return NULL;
 715}
 716
 717/*
 718 * Loads the per-directory exclude list for the substring of base
 719 * which has a char length of baselen.
 720 */
 721static void prep_exclude(struct dir_struct *dir, const char *base, int baselen)
 722{
 723        struct exclude_list_group *group;
 724        struct exclude_list *el;
 725        struct exclude_stack *stk = NULL;
 726        int current;
 727
 728        group = &dir->exclude_list_group[EXC_DIRS];
 729
 730        /* Pop the exclude lists from the EXCL_DIRS exclude_list_group
 731         * which originate from directories not in the prefix of the
 732         * path being checked. */
 733        while ((stk = dir->exclude_stack) != NULL) {
 734                if (stk->baselen <= baselen &&
 735                    !strncmp(dir->basebuf, base, stk->baselen))
 736                        break;
 737                el = &group->el[dir->exclude_stack->exclude_ix];
 738                dir->exclude_stack = stk->prev;
 739                dir->exclude = NULL;
 740                free((char *)el->src); /* see strdup() below */
 741                clear_exclude_list(el);
 742                free(stk);
 743                group->nr--;
 744        }
 745
 746        /* Skip traversing into sub directories if the parent is excluded */
 747        if (dir->exclude)
 748                return;
 749
 750        /* Read from the parent directories and push them down. */
 751        current = stk ? stk->baselen : -1;
 752        while (current < baselen) {
 753                struct exclude_stack *stk = xcalloc(1, sizeof(*stk));
 754                const char *cp;
 755
 756                if (current < 0) {
 757                        cp = base;
 758                        current = 0;
 759                }
 760                else {
 761                        cp = strchr(base + current + 1, '/');
 762                        if (!cp)
 763                                die("oops in prep_exclude");
 764                        cp++;
 765                }
 766                stk->prev = dir->exclude_stack;
 767                stk->baselen = cp - base;
 768                stk->exclude_ix = group->nr;
 769                el = add_exclude_list(dir, EXC_DIRS, NULL);
 770                memcpy(dir->basebuf + current, base + current,
 771                       stk->baselen - current);
 772
 773                /* Abort if the directory is excluded */
 774                if (stk->baselen) {
 775                        int dt = DT_DIR;
 776                        dir->basebuf[stk->baselen - 1] = 0;
 777                        dir->exclude = last_exclude_matching_from_lists(dir,
 778                                dir->basebuf, stk->baselen - 1,
 779                                dir->basebuf + current, &dt);
 780                        dir->basebuf[stk->baselen - 1] = '/';
 781                        if (dir->exclude &&
 782                            dir->exclude->flags & EXC_FLAG_NEGATIVE)
 783                                dir->exclude = NULL;
 784                        if (dir->exclude) {
 785                                dir->basebuf[stk->baselen] = 0;
 786                                dir->exclude_stack = stk;
 787                                return;
 788                        }
 789                }
 790
 791                /* Try to read per-directory file unless path is too long */
 792                if (dir->exclude_per_dir &&
 793                    stk->baselen + strlen(dir->exclude_per_dir) < PATH_MAX) {
 794                        strcpy(dir->basebuf + stk->baselen,
 795                                        dir->exclude_per_dir);
 796                        /*
 797                         * dir->basebuf gets reused by the traversal, but we
 798                         * need fname to remain unchanged to ensure the src
 799                         * member of each struct exclude correctly
 800                         * back-references its source file.  Other invocations
 801                         * of add_exclude_list provide stable strings, so we
 802                         * strdup() and free() here in the caller.
 803                         */
 804                        el->src = strdup(dir->basebuf);
 805                        add_excludes_from_file_to_list(dir->basebuf,
 806                                        dir->basebuf, stk->baselen, el, 1);
 807                }
 808                dir->exclude_stack = stk;
 809                current = stk->baselen;
 810        }
 811        dir->basebuf[baselen] = '\0';
 812}
 813
 814/*
 815 * Loads the exclude lists for the directory containing pathname, then
 816 * scans all exclude lists to determine whether pathname is excluded.
 817 * Returns the exclude_list element which matched, or NULL for
 818 * undecided.
 819 */
 820struct exclude *last_exclude_matching(struct dir_struct *dir,
 821                                             const char *pathname,
 822                                             int *dtype_p)
 823{
 824        int pathlen = strlen(pathname);
 825        const char *basename = strrchr(pathname, '/');
 826        basename = (basename) ? basename+1 : pathname;
 827
 828        prep_exclude(dir, pathname, basename-pathname);
 829
 830        if (dir->exclude)
 831                return dir->exclude;
 832
 833        return last_exclude_matching_from_lists(dir, pathname, pathlen,
 834                        basename, dtype_p);
 835}
 836
 837/*
 838 * Loads the exclude lists for the directory containing pathname, then
 839 * scans all exclude lists to determine whether pathname is excluded.
 840 * Returns 1 if true, otherwise 0.
 841 */
 842int is_excluded(struct dir_struct *dir, const char *pathname, int *dtype_p)
 843{
 844        struct exclude *exclude =
 845                last_exclude_matching(dir, pathname, dtype_p);
 846        if (exclude)
 847                return exclude->flags & EXC_FLAG_NEGATIVE ? 0 : 1;
 848        return 0;
 849}
 850
 851static struct dir_entry *dir_entry_new(const char *pathname, int len)
 852{
 853        struct dir_entry *ent;
 854
 855        ent = xmalloc(sizeof(*ent) + len + 1);
 856        ent->len = len;
 857        memcpy(ent->name, pathname, len);
 858        ent->name[len] = 0;
 859        return ent;
 860}
 861
 862static struct dir_entry *dir_add_name(struct dir_struct *dir, const char *pathname, int len)
 863{
 864        if (cache_name_exists(pathname, len, ignore_case))
 865                return NULL;
 866
 867        ALLOC_GROW(dir->entries, dir->nr+1, dir->alloc);
 868        return dir->entries[dir->nr++] = dir_entry_new(pathname, len);
 869}
 870
 871struct dir_entry *dir_add_ignored(struct dir_struct *dir, const char *pathname, int len)
 872{
 873        if (!cache_name_is_other(pathname, len))
 874                return NULL;
 875
 876        ALLOC_GROW(dir->ignored, dir->ignored_nr+1, dir->ignored_alloc);
 877        return dir->ignored[dir->ignored_nr++] = dir_entry_new(pathname, len);
 878}
 879
 880enum exist_status {
 881        index_nonexistent = 0,
 882        index_directory,
 883        index_gitdir
 884};
 885
 886/*
 887 * Do not use the alphabetically stored index to look up
 888 * the directory name; instead, use the case insensitive
 889 * name hash.
 890 */
 891static enum exist_status directory_exists_in_index_icase(const char *dirname, int len)
 892{
 893        const struct cache_entry *ce = index_name_exists(&the_index, dirname, len + 1, ignore_case);
 894        unsigned char endchar;
 895
 896        if (!ce)
 897                return index_nonexistent;
 898        endchar = ce->name[len];
 899
 900        /*
 901         * The cache_entry structure returned will contain this dirname
 902         * and possibly additional path components.
 903         */
 904        if (endchar == '/')
 905                return index_directory;
 906
 907        /*
 908         * If there are no additional path components, then this cache_entry
 909         * represents a submodule.  Submodules, despite being directories,
 910         * are stored in the cache without a closing slash.
 911         */
 912        if (!endchar && S_ISGITLINK(ce->ce_mode))
 913                return index_gitdir;
 914
 915        /* This should never be hit, but it exists just in case. */
 916        return index_nonexistent;
 917}
 918
 919/*
 920 * The index sorts alphabetically by entry name, which
 921 * means that a gitlink sorts as '\0' at the end, while
 922 * a directory (which is defined not as an entry, but as
 923 * the files it contains) will sort with the '/' at the
 924 * end.
 925 */
 926static enum exist_status directory_exists_in_index(const char *dirname, int len)
 927{
 928        int pos;
 929
 930        if (ignore_case)
 931                return directory_exists_in_index_icase(dirname, len);
 932
 933        pos = cache_name_pos(dirname, len);
 934        if (pos < 0)
 935                pos = -pos-1;
 936        while (pos < active_nr) {
 937                const struct cache_entry *ce = active_cache[pos++];
 938                unsigned char endchar;
 939
 940                if (strncmp(ce->name, dirname, len))
 941                        break;
 942                endchar = ce->name[len];
 943                if (endchar > '/')
 944                        break;
 945                if (endchar == '/')
 946                        return index_directory;
 947                if (!endchar && S_ISGITLINK(ce->ce_mode))
 948                        return index_gitdir;
 949        }
 950        return index_nonexistent;
 951}
 952
 953/*
 954 * When we find a directory when traversing the filesystem, we
 955 * have three distinct cases:
 956 *
 957 *  - ignore it
 958 *  - see it as a directory
 959 *  - recurse into it
 960 *
 961 * and which one we choose depends on a combination of existing
 962 * git index contents and the flags passed into the directory
 963 * traversal routine.
 964 *
 965 * Case 1: If we *already* have entries in the index under that
 966 * directory name, we always recurse into the directory to see
 967 * all the files.
 968 *
 969 * Case 2: If we *already* have that directory name as a gitlink,
 970 * we always continue to see it as a gitlink, regardless of whether
 971 * there is an actual git directory there or not (it might not
 972 * be checked out as a subproject!)
 973 *
 974 * Case 3: if we didn't have it in the index previously, we
 975 * have a few sub-cases:
 976 *
 977 *  (a) if "show_other_directories" is true, we show it as
 978 *      just a directory, unless "hide_empty_directories" is
 979 *      also true, in which case we need to check if it contains any
 980 *      untracked and / or ignored files.
 981 *  (b) if it looks like a git directory, and we don't have
 982 *      'no_gitlinks' set we treat it as a gitlink, and show it
 983 *      as a directory.
 984 *  (c) otherwise, we recurse into it.
 985 */
 986static enum path_treatment treat_directory(struct dir_struct *dir,
 987        const char *dirname, int len, int exclude,
 988        const struct path_simplify *simplify)
 989{
 990        /* The "len-1" is to strip the final '/' */
 991        switch (directory_exists_in_index(dirname, len-1)) {
 992        case index_directory:
 993                return path_recurse;
 994
 995        case index_gitdir:
 996                return path_none;
 997
 998        case index_nonexistent:
 999                if (dir->flags & DIR_SHOW_OTHER_DIRECTORIES)
1000                        break;
1001                if (!(dir->flags & DIR_NO_GITLINKS)) {
1002                        unsigned char sha1[20];
1003                        if (resolve_gitlink_ref(dirname, "HEAD", sha1) == 0)
1004                                return path_untracked;
1005                }
1006                return path_recurse;
1007        }
1008
1009        /* This is the "show_other_directories" case */
1010
1011        if (!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))
1012                return exclude ? path_excluded : path_untracked;
1013
1014        return read_directory_recursive(dir, dirname, len, 1, simplify);
1015}
1016
1017/*
1018 * This is an inexact early pruning of any recursive directory
1019 * reading - if the path cannot possibly be in the pathspec,
1020 * return true, and we'll skip it early.
1021 */
1022static int simplify_away(const char *path, int pathlen, const struct path_simplify *simplify)
1023{
1024        if (simplify) {
1025                for (;;) {
1026                        const char *match = simplify->path;
1027                        int len = simplify->len;
1028
1029                        if (!match)
1030                                break;
1031                        if (len > pathlen)
1032                                len = pathlen;
1033                        if (!memcmp(path, match, len))
1034                                return 0;
1035                        simplify++;
1036                }
1037                return 1;
1038        }
1039        return 0;
1040}
1041
1042/*
1043 * This function tells us whether an excluded path matches a
1044 * list of "interesting" pathspecs. That is, whether a path matched
1045 * by any of the pathspecs could possibly be ignored by excluding
1046 * the specified path. This can happen if:
1047 *
1048 *   1. the path is mentioned explicitly in the pathspec
1049 *
1050 *   2. the path is a directory prefix of some element in the
1051 *      pathspec
1052 */
1053static int exclude_matches_pathspec(const char *path, int len,
1054                const struct path_simplify *simplify)
1055{
1056        if (simplify) {
1057                for (; simplify->path; simplify++) {
1058                        if (len == simplify->len
1059                            && !memcmp(path, simplify->path, len))
1060                                return 1;
1061                        if (len < simplify->len
1062                            && simplify->path[len] == '/'
1063                            && !memcmp(path, simplify->path, len))
1064                                return 1;
1065                }
1066        }
1067        return 0;
1068}
1069
1070static int get_index_dtype(const char *path, int len)
1071{
1072        int pos;
1073        const struct cache_entry *ce;
1074
1075        ce = cache_name_exists(path, len, 0);
1076        if (ce) {
1077                if (!ce_uptodate(ce))
1078                        return DT_UNKNOWN;
1079                if (S_ISGITLINK(ce->ce_mode))
1080                        return DT_DIR;
1081                /*
1082                 * Nobody actually cares about the
1083                 * difference between DT_LNK and DT_REG
1084                 */
1085                return DT_REG;
1086        }
1087
1088        /* Try to look it up as a directory */
1089        pos = cache_name_pos(path, len);
1090        if (pos >= 0)
1091                return DT_UNKNOWN;
1092        pos = -pos-1;
1093        while (pos < active_nr) {
1094                ce = active_cache[pos++];
1095                if (strncmp(ce->name, path, len))
1096                        break;
1097                if (ce->name[len] > '/')
1098                        break;
1099                if (ce->name[len] < '/')
1100                        continue;
1101                if (!ce_uptodate(ce))
1102                        break;  /* continue? */
1103                return DT_DIR;
1104        }
1105        return DT_UNKNOWN;
1106}
1107
1108static int get_dtype(struct dirent *de, const char *path, int len)
1109{
1110        int dtype = de ? DTYPE(de) : DT_UNKNOWN;
1111        struct stat st;
1112
1113        if (dtype != DT_UNKNOWN)
1114                return dtype;
1115        dtype = get_index_dtype(path, len);
1116        if (dtype != DT_UNKNOWN)
1117                return dtype;
1118        if (lstat(path, &st))
1119                return dtype;
1120        if (S_ISREG(st.st_mode))
1121                return DT_REG;
1122        if (S_ISDIR(st.st_mode))
1123                return DT_DIR;
1124        if (S_ISLNK(st.st_mode))
1125                return DT_LNK;
1126        return dtype;
1127}
1128
1129static enum path_treatment treat_one_path(struct dir_struct *dir,
1130                                          struct strbuf *path,
1131                                          const struct path_simplify *simplify,
1132                                          int dtype, struct dirent *de)
1133{
1134        int exclude;
1135        if (dtype == DT_UNKNOWN)
1136                dtype = get_dtype(de, path->buf, path->len);
1137
1138        /* Always exclude indexed files */
1139        if (dtype != DT_DIR &&
1140            cache_name_exists(path->buf, path->len, ignore_case))
1141                return path_none;
1142
1143        exclude = is_excluded(dir, path->buf, &dtype);
1144
1145        /*
1146         * Excluded? If we don't explicitly want to show
1147         * ignored files, ignore it
1148         */
1149        if (exclude && !(dir->flags & (DIR_SHOW_IGNORED|DIR_SHOW_IGNORED_TOO)))
1150                return path_excluded;
1151
1152        switch (dtype) {
1153        default:
1154                return path_none;
1155        case DT_DIR:
1156                strbuf_addch(path, '/');
1157                return treat_directory(dir, path->buf, path->len, exclude,
1158                        simplify);
1159        case DT_REG:
1160        case DT_LNK:
1161                return exclude ? path_excluded : path_untracked;
1162        }
1163}
1164
1165static enum path_treatment treat_path(struct dir_struct *dir,
1166                                      struct dirent *de,
1167                                      struct strbuf *path,
1168                                      int baselen,
1169                                      const struct path_simplify *simplify)
1170{
1171        int dtype;
1172
1173        if (is_dot_or_dotdot(de->d_name) || !strcmp(de->d_name, ".git"))
1174                return path_none;
1175        strbuf_setlen(path, baselen);
1176        strbuf_addstr(path, de->d_name);
1177        if (simplify_away(path->buf, path->len, simplify))
1178                return path_none;
1179
1180        dtype = DTYPE(de);
1181        return treat_one_path(dir, path, simplify, dtype, de);
1182}
1183
1184/*
1185 * Read a directory tree. We currently ignore anything but
1186 * directories, regular files and symlinks. That's because git
1187 * doesn't handle them at all yet. Maybe that will change some
1188 * day.
1189 *
1190 * Also, we ignore the name ".git" (even if it is not a directory).
1191 * That likely will not change.
1192 *
1193 * Returns the most significant path_treatment value encountered in the scan.
1194 */
1195static enum path_treatment read_directory_recursive(struct dir_struct *dir,
1196                                    const char *base, int baselen,
1197                                    int check_only,
1198                                    const struct path_simplify *simplify)
1199{
1200        DIR *fdir;
1201        enum path_treatment state, subdir_state, dir_state = path_none;
1202        struct dirent *de;
1203        struct strbuf path = STRBUF_INIT;
1204
1205        strbuf_add(&path, base, baselen);
1206
1207        fdir = opendir(path.len ? path.buf : ".");
1208        if (!fdir)
1209                goto out;
1210
1211        while ((de = readdir(fdir)) != NULL) {
1212                /* check how the file or directory should be treated */
1213                state = treat_path(dir, de, &path, baselen, simplify);
1214                if (state > dir_state)
1215                        dir_state = state;
1216
1217                /* recurse into subdir if instructed by treat_path */
1218                if (state == path_recurse) {
1219                        subdir_state = read_directory_recursive(dir, path.buf,
1220                                path.len, check_only, simplify);
1221                        if (subdir_state > dir_state)
1222                                dir_state = subdir_state;
1223                }
1224
1225                if (check_only) {
1226                        /* abort early if maximum state has been reached */
1227                        if (dir_state == path_untracked)
1228                                break;
1229                        /* skip the dir_add_* part */
1230                        continue;
1231                }
1232
1233                /* add the path to the appropriate result list */
1234                switch (state) {
1235                case path_excluded:
1236                        if (dir->flags & DIR_SHOW_IGNORED)
1237                                dir_add_name(dir, path.buf, path.len);
1238                        else if ((dir->flags & DIR_SHOW_IGNORED_TOO) ||
1239                                ((dir->flags & DIR_COLLECT_IGNORED) &&
1240                                exclude_matches_pathspec(path.buf, path.len,
1241                                        simplify)))
1242                                dir_add_ignored(dir, path.buf, path.len);
1243                        break;
1244
1245                case path_untracked:
1246                        if (!(dir->flags & DIR_SHOW_IGNORED))
1247                                dir_add_name(dir, path.buf, path.len);
1248                        break;
1249
1250                default:
1251                        break;
1252                }
1253        }
1254        closedir(fdir);
1255 out:
1256        strbuf_release(&path);
1257
1258        return dir_state;
1259}
1260
1261static int cmp_name(const void *p1, const void *p2)
1262{
1263        const struct dir_entry *e1 = *(const struct dir_entry **)p1;
1264        const struct dir_entry *e2 = *(const struct dir_entry **)p2;
1265
1266        return cache_name_compare(e1->name, e1->len,
1267                                  e2->name, e2->len);
1268}
1269
1270static struct path_simplify *create_simplify(const char **pathspec)
1271{
1272        int nr, alloc = 0;
1273        struct path_simplify *simplify = NULL;
1274
1275        if (!pathspec)
1276                return NULL;
1277
1278        for (nr = 0 ; ; nr++) {
1279                const char *match;
1280                if (nr >= alloc) {
1281                        alloc = alloc_nr(alloc);
1282                        simplify = xrealloc(simplify, alloc * sizeof(*simplify));
1283                }
1284                match = *pathspec++;
1285                if (!match)
1286                        break;
1287                simplify[nr].path = match;
1288                simplify[nr].len = simple_length(match);
1289        }
1290        simplify[nr].path = NULL;
1291        simplify[nr].len = 0;
1292        return simplify;
1293}
1294
1295static void free_simplify(struct path_simplify *simplify)
1296{
1297        free(simplify);
1298}
1299
1300static int treat_leading_path(struct dir_struct *dir,
1301                              const char *path, int len,
1302                              const struct path_simplify *simplify)
1303{
1304        struct strbuf sb = STRBUF_INIT;
1305        int baselen, rc = 0;
1306        const char *cp;
1307        int old_flags = dir->flags;
1308
1309        while (len && path[len - 1] == '/')
1310                len--;
1311        if (!len)
1312                return 1;
1313        baselen = 0;
1314        dir->flags &= ~DIR_SHOW_OTHER_DIRECTORIES;
1315        while (1) {
1316                cp = path + baselen + !!baselen;
1317                cp = memchr(cp, '/', path + len - cp);
1318                if (!cp)
1319                        baselen = len;
1320                else
1321                        baselen = cp - path;
1322                strbuf_setlen(&sb, 0);
1323                strbuf_add(&sb, path, baselen);
1324                if (!is_directory(sb.buf))
1325                        break;
1326                if (simplify_away(sb.buf, sb.len, simplify))
1327                        break;
1328                if (treat_one_path(dir, &sb, simplify,
1329                                   DT_DIR, NULL) == path_none)
1330                        break; /* do not recurse into it */
1331                if (len <= baselen) {
1332                        rc = 1;
1333                        break; /* finished checking */
1334                }
1335        }
1336        strbuf_release(&sb);
1337        dir->flags = old_flags;
1338        return rc;
1339}
1340
1341int read_directory(struct dir_struct *dir, const char *path, int len, const struct pathspec *pathspec)
1342{
1343        struct path_simplify *simplify;
1344
1345        /*
1346         * Check out create_simplify()
1347         */
1348        if (pathspec)
1349                GUARD_PATHSPEC(pathspec,
1350                               PATHSPEC_FROMTOP |
1351                               PATHSPEC_MAXDEPTH |
1352                               PATHSPEC_LITERAL |
1353                               PATHSPEC_GLOB |
1354                               PATHSPEC_ICASE);
1355
1356        if (has_symlink_leading_path(path, len))
1357                return dir->nr;
1358
1359        simplify = create_simplify(pathspec ? pathspec->_raw : NULL);
1360        if (!len || treat_leading_path(dir, path, len, simplify))
1361                read_directory_recursive(dir, path, len, 0, simplify);
1362        free_simplify(simplify);
1363        qsort(dir->entries, dir->nr, sizeof(struct dir_entry *), cmp_name);
1364        qsort(dir->ignored, dir->ignored_nr, sizeof(struct dir_entry *), cmp_name);
1365        return dir->nr;
1366}
1367
1368int file_exists(const char *f)
1369{
1370        struct stat sb;
1371        return lstat(f, &sb) == 0;
1372}
1373
1374/*
1375 * Given two normalized paths (a trailing slash is ok), if subdir is
1376 * outside dir, return -1.  Otherwise return the offset in subdir that
1377 * can be used as relative path to dir.
1378 */
1379int dir_inside_of(const char *subdir, const char *dir)
1380{
1381        int offset = 0;
1382
1383        assert(dir && subdir && *dir && *subdir);
1384
1385        while (*dir && *subdir && *dir == *subdir) {
1386                dir++;
1387                subdir++;
1388                offset++;
1389        }
1390
1391        /* hel[p]/me vs hel[l]/yeah */
1392        if (*dir && *subdir)
1393                return -1;
1394
1395        if (!*subdir)
1396                return !*dir ? offset : -1; /* same dir */
1397
1398        /* foo/[b]ar vs foo/[] */
1399        if (is_dir_sep(dir[-1]))
1400                return is_dir_sep(subdir[-1]) ? offset : -1;
1401
1402        /* foo[/]bar vs foo[] */
1403        return is_dir_sep(*subdir) ? offset + 1 : -1;
1404}
1405
1406int is_inside_dir(const char *dir)
1407{
1408        char cwd[PATH_MAX];
1409        if (!dir)
1410                return 0;
1411        if (!getcwd(cwd, sizeof(cwd)))
1412                die_errno("can't find the current directory");
1413        return dir_inside_of(cwd, dir) >= 0;
1414}
1415
1416int is_empty_dir(const char *path)
1417{
1418        DIR *dir = opendir(path);
1419        struct dirent *e;
1420        int ret = 1;
1421
1422        if (!dir)
1423                return 0;
1424
1425        while ((e = readdir(dir)) != NULL)
1426                if (!is_dot_or_dotdot(e->d_name)) {
1427                        ret = 0;
1428                        break;
1429                }
1430
1431        closedir(dir);
1432        return ret;
1433}
1434
1435static int remove_dir_recurse(struct strbuf *path, int flag, int *kept_up)
1436{
1437        DIR *dir;
1438        struct dirent *e;
1439        int ret = 0, original_len = path->len, len, kept_down = 0;
1440        int only_empty = (flag & REMOVE_DIR_EMPTY_ONLY);
1441        int keep_toplevel = (flag & REMOVE_DIR_KEEP_TOPLEVEL);
1442        unsigned char submodule_head[20];
1443
1444        if ((flag & REMOVE_DIR_KEEP_NESTED_GIT) &&
1445            !resolve_gitlink_ref(path->buf, "HEAD", submodule_head)) {
1446                /* Do not descend and nuke a nested git work tree. */
1447                if (kept_up)
1448                        *kept_up = 1;
1449                return 0;
1450        }
1451
1452        flag &= ~REMOVE_DIR_KEEP_TOPLEVEL;
1453        dir = opendir(path->buf);
1454        if (!dir) {
1455                /* an empty dir could be removed even if it is unreadble */
1456                if (!keep_toplevel)
1457                        return rmdir(path->buf);
1458                else
1459                        return -1;
1460        }
1461        if (path->buf[original_len - 1] != '/')
1462                strbuf_addch(path, '/');
1463
1464        len = path->len;
1465        while ((e = readdir(dir)) != NULL) {
1466                struct stat st;
1467                if (is_dot_or_dotdot(e->d_name))
1468                        continue;
1469
1470                strbuf_setlen(path, len);
1471                strbuf_addstr(path, e->d_name);
1472                if (lstat(path->buf, &st))
1473                        ; /* fall thru */
1474                else if (S_ISDIR(st.st_mode)) {
1475                        if (!remove_dir_recurse(path, flag, &kept_down))
1476                                continue; /* happy */
1477                } else if (!only_empty && !unlink(path->buf))
1478                        continue; /* happy, too */
1479
1480                /* path too long, stat fails, or non-directory still exists */
1481                ret = -1;
1482                break;
1483        }
1484        closedir(dir);
1485
1486        strbuf_setlen(path, original_len);
1487        if (!ret && !keep_toplevel && !kept_down)
1488                ret = rmdir(path->buf);
1489        else if (kept_up)
1490                /*
1491                 * report the uplevel that it is not an error that we
1492                 * did not rmdir() our directory.
1493                 */
1494                *kept_up = !ret;
1495        return ret;
1496}
1497
1498int remove_dir_recursively(struct strbuf *path, int flag)
1499{
1500        return remove_dir_recurse(path, flag, NULL);
1501}
1502
1503void setup_standard_excludes(struct dir_struct *dir)
1504{
1505        const char *path;
1506        char *xdg_path;
1507
1508        dir->exclude_per_dir = ".gitignore";
1509        path = git_path("info/exclude");
1510        if (!excludes_file) {
1511                home_config_paths(NULL, &xdg_path, "ignore");
1512                excludes_file = xdg_path;
1513        }
1514        if (!access_or_warn(path, R_OK, 0))
1515                add_excludes_from_file(dir, path);
1516        if (excludes_file && !access_or_warn(excludes_file, R_OK, 0))
1517                add_excludes_from_file(dir, excludes_file);
1518}
1519
1520int remove_path(const char *name)
1521{
1522        char *slash;
1523
1524        if (unlink(name) && errno != ENOENT && errno != ENOTDIR)
1525                return -1;
1526
1527        slash = strrchr(name, '/');
1528        if (slash) {
1529                char *dirs = xstrdup(name);
1530                slash = dirs + (slash - name);
1531                do {
1532                        *slash = '\0';
1533                } while (rmdir(dirs) == 0 && (slash = strrchr(dirs, '/')));
1534                free(dirs);
1535        }
1536        return 0;
1537}
1538
1539/*
1540 * Frees memory within dir which was allocated for exclude lists and
1541 * the exclude_stack.  Does not free dir itself.
1542 */
1543void clear_directory(struct dir_struct *dir)
1544{
1545        int i, j;
1546        struct exclude_list_group *group;
1547        struct exclude_list *el;
1548        struct exclude_stack *stk;
1549
1550        for (i = EXC_CMDL; i <= EXC_FILE; i++) {
1551                group = &dir->exclude_list_group[i];
1552                for (j = 0; j < group->nr; j++) {
1553                        el = &group->el[j];
1554                        if (i == EXC_DIRS)
1555                                free((char *)el->src);
1556                        clear_exclude_list(el);
1557                }
1558                free(group->el);
1559        }
1560
1561        stk = dir->exclude_stack;
1562        while (stk) {
1563                struct exclude_stack *prev = stk->prev;
1564                free(stk);
1565                stk = prev;
1566        }
1567}