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