Coverage Report

Created: 2026-03-31 06:24

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/git/dir.c
Line
Count
Source
1
/*
2
 * This handles recursive filename detection with exclude
3
 * files, index knowledge etc..
4
 *
5
 * Copyright (C) Linus Torvalds, 2005-2006
6
 *     Junio Hamano, 2005-2006
7
 */
8
9
#define USE_THE_REPOSITORY_VARIABLE
10
#define DISABLE_SIGN_COMPARE_WARNINGS
11
12
#include "git-compat-util.h"
13
#include "abspath.h"
14
#include "config.h"
15
#include "convert.h"
16
#include "dir.h"
17
#include "environment.h"
18
#include "gettext.h"
19
#include "name-hash.h"
20
#include "object-file.h"
21
#include "path.h"
22
#include "refs.h"
23
#include "repository.h"
24
#include "wildmatch.h"
25
#include "pathspec.h"
26
#include "utf8.h"
27
#include "varint.h"
28
#include "ewah/ewok.h"
29
#include "fsmonitor-ll.h"
30
#include "read-cache-ll.h"
31
#include "setup.h"
32
#include "sparse-index.h"
33
#include "strbuf.h"
34
#include "submodule-config.h"
35
#include "symlinks.h"
36
#include "trace2.h"
37
#include "tree.h"
38
#include "hex.h"
39
40
 /*
41
  * The maximum size of a pattern/exclude file. If the file exceeds this size
42
  * we will ignore it.
43
  */
44
0
#define PATTERN_MAX_FILE_SIZE (100 * 1024 * 1024)
45
46
/*
47
 * Tells read_directory_recursive how a file or directory should be treated.
48
 * Values are ordered by significance, e.g. if a directory contains both
49
 * excluded and untracked files, it is listed as untracked because
50
 * path_untracked > path_excluded.
51
 */
52
enum path_treatment {
53
  path_none = 0,
54
  path_recurse,
55
  path_excluded,
56
  path_untracked
57
};
58
59
/*
60
 * Support data structure for our opendir/readdir/closedir wrappers
61
 */
62
struct cached_dir {
63
  DIR *fdir;
64
  struct untracked_cache_dir *untracked;
65
  int nr_files;
66
  int nr_dirs;
67
68
  const char *d_name;
69
  int d_type;
70
  const char *file;
71
  struct untracked_cache_dir *ucd;
72
};
73
74
static enum path_treatment read_directory_recursive(struct dir_struct *dir,
75
  struct index_state *istate, const char *path, int len,
76
  struct untracked_cache_dir *untracked,
77
  int check_only, int stop_at_first_file, const struct pathspec *pathspec);
78
static int resolve_dtype(int dtype, struct index_state *istate,
79
       const char *path, int len);
80
struct dirent *readdir_skip_dot_and_dotdot(DIR *dirp)
81
0
{
82
0
  struct dirent *e;
83
84
0
  while ((e = readdir(dirp)) != NULL) {
85
0
    if (!is_dot_or_dotdot(e->d_name))
86
0
      break;
87
0
  }
88
0
  return e;
89
0
}
90
91
int for_each_file_in_dir(struct strbuf *path, file_iterator fn, const void *data)
92
0
{
93
0
  struct dirent *e;
94
0
  int res = 0;
95
0
  size_t baselen = path->len;
96
0
  DIR *dir = opendir(path->buf);
97
98
0
  if (!dir)
99
0
    return 0;
100
101
0
  while (!res && (e = readdir_skip_dot_and_dotdot(dir)) != NULL) {
102
0
    unsigned char dtype = get_dtype(e, path, 0);
103
0
    strbuf_setlen(path, baselen);
104
0
    strbuf_addstr(path, e->d_name);
105
106
0
    if (dtype == DT_REG) {
107
0
      res = fn(path->buf, data);
108
0
    } else if (dtype == DT_DIR) {
109
0
      strbuf_addch(path, '/');
110
0
      res = for_each_file_in_dir(path, fn, data);
111
0
    }
112
0
  }
113
114
0
  closedir(dir);
115
0
  return res;
116
0
}
117
118
int count_slashes(const char *s)
119
0
{
120
0
  int cnt = 0;
121
0
  while (*s)
122
0
    if (*s++ == '/')
123
0
      cnt++;
124
0
  return cnt;
125
0
}
126
127
int git_fspathcmp(const char *a, const char *b)
128
0
{
129
0
  return ignore_case ? strcasecmp(a, b) : strcmp(a, b);
130
0
}
131
132
int fspatheq(const char *a, const char *b)
133
0
{
134
0
  return !fspathcmp(a, b);
135
0
}
136
137
int git_fspathncmp(const char *a, const char *b, size_t count)
138
0
{
139
0
  return ignore_case ? strncasecmp(a, b, count) : strncmp(a, b, count);
140
0
}
141
142
int paths_collide(const char *a, const char *b)
143
0
{
144
0
  size_t len_a = strlen(a), len_b = strlen(b);
145
146
0
  if (len_a == len_b)
147
0
    return fspatheq(a, b);
148
149
0
  if (len_a < len_b)
150
0
    return is_dir_sep(b[len_a]) && !fspathncmp(a, b, len_a);
151
0
  return is_dir_sep(a[len_b]) && !fspathncmp(a, b, len_b);
152
0
}
153
154
unsigned int fspathhash(const char *str)
155
0
{
156
0
  return ignore_case ? strihash(str) : strhash(str);
157
0
}
158
159
int git_fnmatch(const struct pathspec_item *item,
160
    const char *pattern, const char *string,
161
    int prefix)
162
0
{
163
0
  if (prefix > 0) {
164
0
    if (ps_strncmp(item, pattern, string, prefix))
165
0
      return WM_NOMATCH;
166
0
    pattern += prefix;
167
0
    string += prefix;
168
0
  }
169
0
  if (item->flags & PATHSPEC_ONESTAR) {
170
0
    int pattern_len = strlen(++pattern);
171
0
    int string_len = strlen(string);
172
0
    return string_len < pattern_len ||
173
0
      ps_strcmp(item, pattern,
174
0
          string + string_len - pattern_len);
175
0
  }
176
0
  if (item->magic & PATHSPEC_GLOB)
177
0
    return wildmatch(pattern, string,
178
0
         WM_PATHNAME |
179
0
         (item->magic & PATHSPEC_ICASE ? WM_CASEFOLD : 0));
180
0
  else
181
    /* wildmatch has not learned no FNM_PATHNAME mode yet */
182
0
    return wildmatch(pattern, string,
183
0
         item->magic & PATHSPEC_ICASE ? WM_CASEFOLD : 0);
184
0
}
185
186
static int fnmatch_icase_mem(const char *pattern, int patternlen,
187
           const char *string, int stringlen,
188
           int flags)
189
0
{
190
0
  int match_status;
191
0
  struct strbuf pat_buf = STRBUF_INIT;
192
0
  struct strbuf str_buf = STRBUF_INIT;
193
0
  const char *use_pat = pattern;
194
0
  const char *use_str = string;
195
196
0
  if (pattern[patternlen]) {
197
0
    strbuf_add(&pat_buf, pattern, patternlen);
198
0
    use_pat = pat_buf.buf;
199
0
  }
200
0
  if (string[stringlen]) {
201
0
    strbuf_add(&str_buf, string, stringlen);
202
0
    use_str = str_buf.buf;
203
0
  }
204
205
0
  if (ignore_case)
206
0
    flags |= WM_CASEFOLD;
207
0
  match_status = wildmatch(use_pat, use_str, flags);
208
209
0
  strbuf_release(&pat_buf);
210
0
  strbuf_release(&str_buf);
211
212
0
  return match_status;
213
0
}
214
215
static size_t common_prefix_len(const struct pathspec *pathspec)
216
0
{
217
0
  int n;
218
0
  size_t max = 0;
219
220
  /*
221
   * ":(icase)path" is treated as a pathspec full of
222
   * wildcard. In other words, only prefix is considered common
223
   * prefix. If the pathspec is abc/foo abc/bar, running in
224
   * subdir xyz, the common prefix is still xyz, not xyz/abc as
225
   * in non-:(icase).
226
   */
227
0
  GUARD_PATHSPEC(pathspec,
228
0
           PATHSPEC_FROMTOP |
229
0
           PATHSPEC_MAXDEPTH |
230
0
           PATHSPEC_LITERAL |
231
0
           PATHSPEC_GLOB |
232
0
           PATHSPEC_ICASE |
233
0
           PATHSPEC_EXCLUDE |
234
0
           PATHSPEC_ATTR);
235
236
0
  for (n = 0; n < pathspec->nr; n++) {
237
0
    size_t i = 0, len = 0, item_len;
238
0
    if (pathspec->items[n].magic & PATHSPEC_EXCLUDE)
239
0
      continue;
240
0
    if (pathspec->items[n].magic & PATHSPEC_ICASE)
241
0
      item_len = pathspec->items[n].prefix;
242
0
    else
243
0
      item_len = pathspec->items[n].nowildcard_len;
244
0
    while (i < item_len && (n == 0 || i < max)) {
245
0
      char c = pathspec->items[n].match[i];
246
0
      if (c != pathspec->items[0].match[i])
247
0
        break;
248
0
      if (c == '/')
249
0
        len = i + 1;
250
0
      i++;
251
0
    }
252
0
    if (n == 0 || len < max) {
253
0
      max = len;
254
0
      if (!max)
255
0
        break;
256
0
    }
257
0
  }
258
0
  return max;
259
0
}
260
261
/*
262
 * Returns a copy of the longest leading path common among all
263
 * pathspecs.
264
 */
265
char *common_prefix(const struct pathspec *pathspec)
266
0
{
267
0
  unsigned long len = common_prefix_len(pathspec);
268
269
0
  return len ? xmemdupz(pathspec->items[0].match, len) : NULL;
270
0
}
271
272
int fill_directory(struct dir_struct *dir,
273
       struct index_state *istate,
274
       const struct pathspec *pathspec)
275
0
{
276
0
  const char *prefix;
277
0
  size_t prefix_len;
278
279
0
  unsigned exclusive_flags = DIR_SHOW_IGNORED | DIR_SHOW_IGNORED_TOO;
280
0
  if ((dir->flags & exclusive_flags) == exclusive_flags)
281
0
    BUG("DIR_SHOW_IGNORED and DIR_SHOW_IGNORED_TOO are exclusive");
282
283
  /*
284
   * Calculate common prefix for the pathspec, and
285
   * use that to optimize the directory walk
286
   */
287
0
  prefix_len = common_prefix_len(pathspec);
288
0
  prefix = prefix_len ? pathspec->items[0].match : "";
289
290
  /* Read the directory and prune it */
291
0
  read_directory(dir, istate, prefix, prefix_len, pathspec);
292
293
0
  return prefix_len;
294
0
}
295
296
int within_depth(const char *name, int namelen,
297
      int depth, int max_depth)
298
0
{
299
0
  const char *cp = name, *cpe = name + namelen;
300
301
0
  while (cp < cpe) {
302
0
    if (*cp++ != '/')
303
0
      continue;
304
0
    depth++;
305
0
    if (depth > max_depth)
306
0
      return 0;
307
0
  }
308
0
  return depth <= max_depth;
309
0
}
310
311
/*
312
 * Read the contents of the blob with the given OID into a buffer.
313
 * Append a trailing LF to the end if the last line doesn't have one.
314
 *
315
 * Returns:
316
 *    -1 when the OID is invalid or unknown or does not refer to a blob.
317
 *     0 when the blob is empty.
318
 *     1 along with { data, size } of the (possibly augmented) buffer
319
 *       when successful.
320
 *
321
 * Optionally updates the given oid_stat with the given OID (when valid).
322
 */
323
static int do_read_blob(const struct object_id *oid, struct oid_stat *oid_stat,
324
      size_t *size_out, char **data_out)
325
0
{
326
0
  enum object_type type;
327
0
  unsigned long sz;
328
0
  char *data;
329
330
0
  *size_out = 0;
331
0
  *data_out = NULL;
332
333
0
  data = odb_read_object(the_repository->objects, oid, &type, &sz);
334
0
  if (!data || type != OBJ_BLOB) {
335
0
    free(data);
336
0
    return -1;
337
0
  }
338
339
0
  if (oid_stat) {
340
0
    memset(&oid_stat->stat, 0, sizeof(oid_stat->stat));
341
0
    oidcpy(&oid_stat->oid, oid);
342
0
  }
343
344
0
  if (sz == 0) {
345
0
    free(data);
346
0
    return 0;
347
0
  }
348
349
0
  if (data[sz - 1] != '\n') {
350
0
    data = xrealloc(data, st_add(sz, 1));
351
0
    data[sz++] = '\n';
352
0
  }
353
354
0
  *size_out = xsize_t(sz);
355
0
  *data_out = data;
356
357
0
  return 1;
358
0
}
359
360
0
#define DO_MATCH_EXCLUDE   (1<<0)
361
0
#define DO_MATCH_DIRECTORY (1<<1)
362
0
#define DO_MATCH_LEADING_PATHSPEC (1<<2)
363
364
/*
365
 * Does the given pathspec match the given name?  A match is found if
366
 *
367
 * (1) the pathspec string is leading directory of 'name' ("RECURSIVELY"), or
368
 * (2) the pathspec string has a leading part matching 'name' ("LEADING"), or
369
 * (3) the pathspec string is a wildcard and matches 'name' ("WILDCARD"), or
370
 * (4) the pathspec string is exactly the same as 'name' ("EXACT").
371
 *
372
 * Return value tells which case it was (1-4), or 0 when there is no match.
373
 *
374
 * It may be instructive to look at a small table of concrete examples
375
 * to understand the differences between 1, 2, and 4:
376
 *
377
 *                              Pathspecs
378
 *                |    a/b    |   a/b/    |   a/b/c
379
 *          ------+-----------+-----------+------------
380
 *          a/b   |  EXACT    |  EXACT[1] | LEADING[2]
381
 *  Names   a/b/  | RECURSIVE |   EXACT   | LEADING[2]
382
 *          a/b/c | RECURSIVE | RECURSIVE |   EXACT
383
 *
384
 * [1] Only if DO_MATCH_DIRECTORY is passed; otherwise, this is NOT a match.
385
 * [2] Only if DO_MATCH_LEADING_PATHSPEC is passed; otherwise, not a match.
386
 */
387
static int match_pathspec_item(struct index_state *istate,
388
             const struct pathspec_item *item, int prefix,
389
             const char *name, int namelen, unsigned flags)
390
0
{
391
  /* name/namelen has prefix cut off by caller */
392
0
  const char *match = item->match + prefix;
393
0
  int matchlen = item->len - prefix;
394
395
  /*
396
   * The normal call pattern is:
397
   * 1. prefix = common_prefix_len(ps);
398
   * 2. prune something, or fill_directory
399
   * 3. match_pathspec()
400
   *
401
   * 'prefix' at #1 may be shorter than the command's prefix and
402
   * it's ok for #2 to match extra files. Those extras will be
403
   * trimmed at #3.
404
   *
405
   * Suppose the pathspec is 'foo' and '../bar' running from
406
   * subdir 'xyz'. The common prefix at #1 will be empty, thanks
407
   * to "../". We may have xyz/foo _and_ XYZ/foo after #2. The
408
   * user does not want XYZ/foo, only the "foo" part should be
409
   * case-insensitive. We need to filter out XYZ/foo here. In
410
   * other words, we do not trust the caller on comparing the
411
   * prefix part when :(icase) is involved. We do exact
412
   * comparison ourselves.
413
   *
414
   * Normally the caller (common_prefix_len() in fact) does
415
   * _exact_ matching on name[-prefix+1..-1] and we do not need
416
   * to check that part. Be defensive and check it anyway, in
417
   * case common_prefix_len is changed, or a new caller is
418
   * introduced that does not use common_prefix_len.
419
   *
420
   * If the penalty turns out too high when prefix is really
421
   * long, maybe change it to
422
   * strncmp(match, name, item->prefix - prefix)
423
   */
424
0
  if (item->prefix && (item->magic & PATHSPEC_ICASE) &&
425
0
      strncmp(item->match, name - prefix, item->prefix))
426
0
    return 0;
427
428
0
  if (item->attr_match_nr) {
429
0
    if (!istate)
430
0
      BUG("magic PATHSPEC_ATTR requires an index");
431
0
    if (!match_pathspec_attrs(istate, name - prefix, namelen + prefix, item))
432
0
      return 0;
433
0
  }
434
435
  /* If the match was just the prefix, we matched */
436
0
  if (!*match)
437
0
    return MATCHED_RECURSIVELY;
438
439
0
  if (matchlen <= namelen && !ps_strncmp(item, match, name, matchlen)) {
440
0
    if (matchlen == namelen)
441
0
      return MATCHED_EXACTLY;
442
443
0
    if (match[matchlen-1] == '/' || name[matchlen] == '/')
444
0
      return MATCHED_RECURSIVELY;
445
0
  } else if ((flags & DO_MATCH_DIRECTORY) &&
446
0
       match[matchlen - 1] == '/' &&
447
0
       namelen == matchlen - 1 &&
448
0
       !ps_strncmp(item, match, name, namelen))
449
0
    return MATCHED_EXACTLY;
450
451
0
  if (item->nowildcard_len < item->len &&
452
0
      !git_fnmatch(item, match, name,
453
0
       item->nowildcard_len - prefix))
454
0
    return MATCHED_FNMATCH;
455
456
  /* Perform checks to see if "name" is a leading string of the pathspec */
457
0
  if ( (flags & DO_MATCH_LEADING_PATHSPEC) &&
458
0
      !(flags & DO_MATCH_EXCLUDE)) {
459
    /* name is a literal prefix of the pathspec */
460
0
    int offset = name[namelen-1] == '/' ? 1 : 0;
461
0
    if ((namelen < matchlen) &&
462
0
        (match[namelen-offset] == '/') &&
463
0
        !ps_strncmp(item, match, name, namelen))
464
0
      return MATCHED_RECURSIVELY_LEADING_PATHSPEC;
465
466
    /* name doesn't match up to the first wild character */
467
0
    if (item->nowildcard_len < item->len &&
468
0
        ps_strncmp(item, match, name,
469
0
             item->nowildcard_len - prefix))
470
0
      return 0;
471
472
    /*
473
     * name has no wildcard, and it didn't match as a leading
474
     * pathspec so return.
475
     */
476
0
    if (item->nowildcard_len == item->len)
477
0
      return 0;
478
479
    /*
480
     * Here is where we would perform a wildmatch to check if
481
     * "name" can be matched as a directory (or a prefix) against
482
     * the pathspec.  Since wildmatch doesn't have this capability
483
     * at the present we have to punt and say that it is a match,
484
     * potentially returning a false positive
485
     * The submodules themselves will be able to perform more
486
     * accurate matching to determine if the pathspec matches.
487
     */
488
0
    return MATCHED_RECURSIVELY_LEADING_PATHSPEC;
489
0
  }
490
491
0
  return 0;
492
0
}
493
494
/*
495
 * do_match_pathspec() is meant to ONLY be called by
496
 * match_pathspec_with_flags(); calling it directly risks pathspecs
497
 * like ':!unwanted_path' being ignored.
498
 *
499
 * Given a name and a list of pathspecs, returns the nature of the
500
 * closest (i.e. most specific) match of the name to any of the
501
 * pathspecs.
502
 *
503
 * The caller typically calls this multiple times with the same
504
 * pathspec and seen[] array but with different name/namelen
505
 * (e.g. entries from the index) and is interested in seeing if and
506
 * how each pathspec matches all the names it calls this function
507
 * with.  A mark is left in the seen[] array for each pathspec element
508
 * indicating the closest type of match that element achieved, so if
509
 * seen[n] remains zero after multiple invocations, that means the nth
510
 * pathspec did not match any names, which could indicate that the
511
 * user mistyped the nth pathspec.
512
 */
513
static int do_match_pathspec(struct index_state *istate,
514
           const struct pathspec *ps,
515
           const char *name, int namelen,
516
           int prefix, char *seen,
517
           unsigned flags)
518
0
{
519
0
  int i, retval = 0, exclude = flags & DO_MATCH_EXCLUDE;
520
521
0
  GUARD_PATHSPEC(ps,
522
0
           PATHSPEC_FROMTOP |
523
0
           PATHSPEC_MAXDEPTH |
524
0
           PATHSPEC_LITERAL |
525
0
           PATHSPEC_GLOB |
526
0
           PATHSPEC_ICASE |
527
0
           PATHSPEC_EXCLUDE |
528
0
           PATHSPEC_ATTR);
529
530
0
  if (!ps->nr) {
531
0
    if (!ps->recursive ||
532
0
        !(ps->magic & PATHSPEC_MAXDEPTH) ||
533
0
        ps->max_depth == -1)
534
0
      return MATCHED_RECURSIVELY;
535
536
0
    if (within_depth(name, namelen, 0, ps->max_depth))
537
0
      return MATCHED_EXACTLY;
538
0
    else
539
0
      return 0;
540
0
  }
541
542
0
  name += prefix;
543
0
  namelen -= prefix;
544
545
0
  for (i = ps->nr - 1; i >= 0; i--) {
546
0
    int how;
547
548
0
    if ((!exclude &&   ps->items[i].magic & PATHSPEC_EXCLUDE) ||
549
0
        ( exclude && !(ps->items[i].magic & PATHSPEC_EXCLUDE)))
550
0
      continue;
551
552
0
    if (seen && seen[i] == MATCHED_EXACTLY &&
553
0
        ps->items[i].nowildcard_len == ps->items[i].len)
554
0
      continue;
555
    /*
556
     * Make exclude patterns optional and never report
557
     * "pathspec ':(exclude)foo' matches no files"
558
     */
559
0
    if (seen && ps->items[i].magic & PATHSPEC_EXCLUDE)
560
0
      seen[i] = MATCHED_FNMATCH;
561
0
    how = match_pathspec_item(istate, ps->items+i, prefix, name,
562
0
            namelen, flags);
563
0
    if (ps->recursive &&
564
0
        (ps->magic & PATHSPEC_MAXDEPTH) &&
565
0
        ps->max_depth != -1 &&
566
0
        how && how != MATCHED_FNMATCH) {
567
0
      int len = ps->items[i].len;
568
0
      if (name[len] == '/')
569
0
        len++;
570
0
      if (within_depth(name+len, namelen-len, 0, ps->max_depth))
571
0
        how = MATCHED_EXACTLY;
572
0
      else
573
0
        how = 0;
574
0
    }
575
0
    if (how) {
576
0
      if (retval < how)
577
0
        retval = how;
578
0
      if (seen && seen[i] < how)
579
0
        seen[i] = how;
580
0
    }
581
0
  }
582
0
  return retval;
583
0
}
584
585
static int match_pathspec_with_flags(struct index_state *istate,
586
             const struct pathspec *ps,
587
             const char *name, int namelen,
588
             int prefix, char *seen, unsigned flags)
589
0
{
590
0
  int positive, negative;
591
0
  positive = do_match_pathspec(istate, ps, name, namelen,
592
0
             prefix, seen, flags);
593
0
  if (!(ps->magic & PATHSPEC_EXCLUDE) || !positive)
594
0
    return positive;
595
0
  negative = do_match_pathspec(istate, ps, name, namelen,
596
0
             prefix, seen,
597
0
             flags | DO_MATCH_EXCLUDE);
598
0
  return negative ? 0 : positive;
599
0
}
600
601
int match_pathspec(struct index_state *istate,
602
       const struct pathspec *ps,
603
       const char *name, int namelen,
604
       int prefix, char *seen, int is_dir)
605
0
{
606
0
  unsigned flags = is_dir ? DO_MATCH_DIRECTORY : 0;
607
0
  return match_pathspec_with_flags(istate, ps, name, namelen,
608
0
           prefix, seen, flags);
609
0
}
610
611
int match_leading_pathspec(struct index_state *istate,
612
         const struct pathspec *ps,
613
         const char *name, int namelen,
614
         int prefix, char *seen, int is_dir)
615
0
{
616
0
  unsigned flags = is_dir ? DO_MATCH_DIRECTORY | DO_MATCH_LEADING_PATHSPEC : 0;
617
0
  return match_pathspec_with_flags(istate, ps, name, namelen,
618
0
           prefix, seen, flags);
619
0
}
620
621
/**
622
 * Check if a submodule is a superset of the pathspec
623
 */
624
int submodule_path_match(struct index_state *istate,
625
       const struct pathspec *ps,
626
       const char *submodule_name,
627
       char *seen)
628
0
{
629
0
  int matched = match_pathspec_with_flags(istate, ps, submodule_name,
630
0
            strlen(submodule_name),
631
0
            0, seen,
632
0
            DO_MATCH_DIRECTORY |
633
0
            DO_MATCH_LEADING_PATHSPEC);
634
0
  return matched;
635
0
}
636
637
int report_path_error(const char *ps_matched,
638
          const struct pathspec *pathspec)
639
0
{
640
  /*
641
   * Make sure all pathspec matched; otherwise it is an error.
642
   */
643
0
  int num, errors = 0;
644
0
  for (num = 0; num < pathspec->nr; num++) {
645
0
    int other, found_dup;
646
647
0
    if (ps_matched[num])
648
0
      continue;
649
    /*
650
     * The caller might have fed identical pathspec
651
     * twice.  Do not barf on such a mistake.
652
     * FIXME: parse_pathspec should have eliminated
653
     * duplicate pathspec.
654
     */
655
0
    for (found_dup = other = 0;
656
0
         !found_dup && other < pathspec->nr;
657
0
         other++) {
658
0
      if (other == num || !ps_matched[other])
659
0
        continue;
660
0
      if (!strcmp(pathspec->items[other].original,
661
0
            pathspec->items[num].original))
662
        /*
663
         * Ok, we have a match already.
664
         */
665
0
        found_dup = 1;
666
0
    }
667
0
    if (found_dup)
668
0
      continue;
669
670
0
    error(_("pathspec '%s' did not match any file(s) known to git"),
671
0
          pathspec->items[num].original);
672
0
    errors++;
673
0
  }
674
0
  return errors;
675
0
}
676
677
/*
678
 * Return the length of the "simple" part of a path match limiter.
679
 */
680
int simple_length(const char *match)
681
0
{
682
0
  int len = -1;
683
684
0
  for (;;) {
685
0
    unsigned char c = *match++;
686
0
    len++;
687
0
    if (c == '\0' || is_glob_special(c))
688
0
      return len;
689
0
  }
690
0
}
691
692
int no_wildcard(const char *string)
693
0
{
694
0
  return string[simple_length(string)] == '\0';
695
0
}
696
697
void parse_path_pattern(const char **pattern,
698
         int *patternlen,
699
         unsigned *flags,
700
         int *nowildcardlen)
701
0
{
702
0
  const char *p = *pattern;
703
0
  size_t i, len;
704
705
0
  *flags = 0;
706
0
  if (*p == '!') {
707
0
    *flags |= PATTERN_FLAG_NEGATIVE;
708
0
    p++;
709
0
  }
710
0
  len = strlen(p);
711
0
  if (len && p[len - 1] == '/') {
712
0
    len--;
713
0
    *flags |= PATTERN_FLAG_MUSTBEDIR;
714
0
  }
715
0
  for (i = 0; i < len; i++) {
716
0
    if (p[i] == '/')
717
0
      break;
718
0
  }
719
0
  if (i == len)
720
0
    *flags |= PATTERN_FLAG_NODIR;
721
0
  *nowildcardlen = simple_length(p);
722
  /*
723
   * we should have excluded the trailing slash from 'p' too,
724
   * but that's one more allocation. Instead just make sure
725
   * nowildcardlen does not exceed real patternlen
726
   */
727
0
  if (*nowildcardlen > len)
728
0
    *nowildcardlen = len;
729
0
  if (*p == '*' && no_wildcard(p + 1))
730
0
    *flags |= PATTERN_FLAG_ENDSWITH;
731
0
  *pattern = p;
732
0
  *patternlen = len;
733
0
}
734
735
int pl_hashmap_cmp(const void *cmp_data UNUSED,
736
       const struct hashmap_entry *a,
737
       const struct hashmap_entry *b,
738
       const void *key UNUSED)
739
0
{
740
0
  const struct pattern_entry *ee1 =
741
0
      container_of(a, struct pattern_entry, ent);
742
0
  const struct pattern_entry *ee2 =
743
0
      container_of(b, struct pattern_entry, ent);
744
745
0
  size_t min_len = ee1->patternlen <= ee2->patternlen
746
0
       ? ee1->patternlen
747
0
       : ee2->patternlen;
748
749
0
  return fspathncmp(ee1->pattern, ee2->pattern, min_len);
750
0
}
751
752
static char *dup_and_filter_pattern(const char *pattern)
753
0
{
754
0
  char *set, *read;
755
0
  size_t count  = 0;
756
0
  char *result = xstrdup(pattern);
757
758
0
  set = result;
759
0
  read = result;
760
761
0
  while (*read) {
762
    /* skip escape characters (once) */
763
0
    if (*read == '\\')
764
0
      read++;
765
766
0
    *set = *read;
767
768
0
    set++;
769
0
    read++;
770
0
    count++;
771
0
  }
772
0
  *set = 0;
773
774
0
  if (count > 2 &&
775
0
      *(set - 1) == '*' &&
776
0
      *(set - 2) == '/')
777
0
    *(set - 2) = 0;
778
779
0
  return result;
780
0
}
781
782
static void clear_pattern_entry_hashmap(struct hashmap *map)
783
0
{
784
0
  struct hashmap_iter iter;
785
0
  struct pattern_entry *entry;
786
787
0
  hashmap_for_each_entry(map, &iter, entry, ent) {
788
0
    free(entry->pattern);
789
0
  }
790
0
  hashmap_clear_and_free(map, struct pattern_entry, ent);
791
0
}
792
793
static void add_pattern_to_hashsets(struct pattern_list *pl, struct path_pattern *given)
794
0
{
795
0
  struct pattern_entry *translated;
796
0
  char *truncated;
797
0
  char *data = NULL;
798
0
  const char *prev, *cur, *next;
799
800
0
  if (!pl->use_cone_patterns)
801
0
    return;
802
803
0
  if (given->flags & PATTERN_FLAG_NEGATIVE &&
804
0
      given->flags & PATTERN_FLAG_MUSTBEDIR &&
805
0
      !strcmp(given->pattern, "/*")) {
806
0
    pl->full_cone = 0;
807
0
    return;
808
0
  }
809
810
0
  if (!given->flags && !strcmp(given->pattern, "/*")) {
811
0
    pl->full_cone = 1;
812
0
    return;
813
0
  }
814
815
0
  if (given->patternlen < 2 ||
816
0
      *given->pattern != '/' ||
817
0
      strstr(given->pattern, "**")) {
818
    /* Not a cone pattern. */
819
0
    warning(_("unrecognized pattern: '%s'"), given->pattern);
820
0
    goto clear_hashmaps;
821
0
  }
822
823
0
  if (!(given->flags & PATTERN_FLAG_MUSTBEDIR) &&
824
0
      strcmp(given->pattern, "/*")) {
825
    /* Not a cone pattern. */
826
0
    warning(_("unrecognized pattern: '%s'"), given->pattern);
827
0
    goto clear_hashmaps;
828
0
  }
829
830
0
  prev = given->pattern;
831
0
  cur = given->pattern + 1;
832
0
  next = given->pattern + 2;
833
834
0
  while (*cur) {
835
    /* Watch for glob characters '*', '\', '[', '?' */
836
0
    if (!is_glob_special(*cur))
837
0
      goto increment;
838
839
    /* But only if *prev != '\\' */
840
0
    if (*prev == '\\')
841
0
      goto increment;
842
843
    /* But allow the initial '\' */
844
0
    if (*cur == '\\' &&
845
0
        is_glob_special(*next))
846
0
      goto increment;
847
848
    /* But a trailing '/' then '*' is fine */
849
0
    if (*prev == '/' &&
850
0
        *cur == '*' &&
851
0
        *next == 0)
852
0
      goto increment;
853
854
    /* Not a cone pattern. */
855
0
    warning(_("unrecognized pattern: '%s'"), given->pattern);
856
0
    goto clear_hashmaps;
857
858
0
  increment:
859
0
    prev++;
860
0
    cur++;
861
0
    next++;
862
0
  }
863
864
0
  if (given->patternlen > 2 &&
865
0
      !strcmp(given->pattern + given->patternlen - 2, "/*")) {
866
0
    struct pattern_entry *old;
867
868
0
    if (!(given->flags & PATTERN_FLAG_NEGATIVE)) {
869
      /* Not a cone pattern. */
870
0
      warning(_("unrecognized pattern: '%s'"), given->pattern);
871
0
      goto clear_hashmaps;
872
0
    }
873
874
0
    truncated = dup_and_filter_pattern(given->pattern);
875
876
0
    translated = xmalloc(sizeof(struct pattern_entry));
877
0
    translated->pattern = truncated;
878
0
    translated->patternlen = given->patternlen - 2;
879
0
    hashmap_entry_init(&translated->ent,
880
0
           fspathhash(translated->pattern));
881
882
0
    if (!hashmap_get_entry(&pl->recursive_hashmap,
883
0
               translated, ent, NULL)) {
884
      /* We did not see the "parent" included */
885
0
      warning(_("unrecognized negative pattern: '%s'"),
886
0
        given->pattern);
887
0
      free(truncated);
888
0
      free(translated);
889
0
      goto clear_hashmaps;
890
0
    }
891
892
0
    hashmap_add(&pl->parent_hashmap, &translated->ent);
893
0
    old = hashmap_remove_entry(&pl->recursive_hashmap, translated, ent, &data);
894
0
    if (old) {
895
0
      free(old->pattern);
896
0
      free(old);
897
0
    }
898
0
    free(data);
899
0
    return;
900
0
  }
901
902
0
  if (given->flags & PATTERN_FLAG_NEGATIVE) {
903
0
    warning(_("unrecognized negative pattern: '%s'"),
904
0
      given->pattern);
905
0
    goto clear_hashmaps;
906
0
  }
907
908
0
  translated = xmalloc(sizeof(struct pattern_entry));
909
910
0
  translated->pattern = dup_and_filter_pattern(given->pattern);
911
0
  translated->patternlen = given->patternlen;
912
0
  hashmap_entry_init(&translated->ent,
913
0
         fspathhash(translated->pattern));
914
915
0
  hashmap_add(&pl->recursive_hashmap, &translated->ent);
916
917
0
  if (hashmap_get_entry(&pl->parent_hashmap, translated, ent, NULL)) {
918
    /* we already included this at the parent level */
919
0
    warning(_("your sparse-checkout file may have issues: pattern '%s' is repeated"),
920
0
      given->pattern);
921
0
    goto clear_hashmaps;
922
0
  }
923
924
0
  return;
925
926
0
clear_hashmaps:
927
0
  warning(_("disabling cone pattern matching"));
928
0
  clear_pattern_entry_hashmap(&pl->recursive_hashmap);
929
0
  clear_pattern_entry_hashmap(&pl->parent_hashmap);
930
0
  pl->use_cone_patterns = 0;
931
0
}
932
933
static int hashmap_contains_path(struct hashmap *map,
934
         struct strbuf *pattern)
935
0
{
936
0
  struct pattern_entry p;
937
938
  /* Check straight mapping */
939
0
  p.pattern = pattern->buf;
940
0
  p.patternlen = pattern->len;
941
0
  hashmap_entry_init(&p.ent, fspathhash(p.pattern));
942
0
  return !!hashmap_get_entry(map, &p, ent, NULL);
943
0
}
944
945
int hashmap_contains_parent(struct hashmap *map,
946
          const char *path,
947
          struct strbuf *buffer)
948
0
{
949
0
  char *slash_pos;
950
951
0
  strbuf_setlen(buffer, 0);
952
953
0
  if (path[0] != '/')
954
0
    strbuf_addch(buffer, '/');
955
956
0
  strbuf_addstr(buffer, path);
957
958
0
  slash_pos = strrchr(buffer->buf, '/');
959
960
0
  while (slash_pos > buffer->buf) {
961
0
    strbuf_setlen(buffer, slash_pos - buffer->buf);
962
963
0
    if (hashmap_contains_path(map, buffer))
964
0
      return 1;
965
966
0
    slash_pos = strrchr(buffer->buf, '/');
967
0
  }
968
969
0
  return 0;
970
0
}
971
972
void add_pattern(const char *string, const char *base,
973
     int baselen, struct pattern_list *pl, int srcpos)
974
0
{
975
0
  struct path_pattern *pattern;
976
0
  int patternlen;
977
0
  unsigned flags;
978
0
  int nowildcardlen;
979
980
0
  parse_path_pattern(&string, &patternlen, &flags, &nowildcardlen);
981
0
  FLEX_ALLOC_MEM(pattern, pattern, string, patternlen);
982
0
  pattern->patternlen = patternlen;
983
0
  pattern->nowildcardlen = nowildcardlen;
984
0
  pattern->base = base;
985
0
  pattern->baselen = baselen;
986
0
  pattern->flags = flags;
987
0
  pattern->srcpos = srcpos;
988
0
  ALLOC_GROW(pl->patterns, pl->nr + 1, pl->alloc);
989
0
  pl->patterns[pl->nr++] = pattern;
990
0
  pattern->pl = pl;
991
992
0
  add_pattern_to_hashsets(pl, pattern);
993
0
}
994
995
static int read_skip_worktree_file_from_index(struct index_state *istate,
996
                const char *path,
997
                size_t *size_out, char **data_out,
998
                struct oid_stat *oid_stat)
999
0
{
1000
0
  int pos, len;
1001
1002
0
  len = strlen(path);
1003
0
  pos = index_name_pos(istate, path, len);
1004
0
  if (pos < 0)
1005
0
    return -1;
1006
0
  if (!ce_skip_worktree(istate->cache[pos]))
1007
0
    return -1;
1008
1009
0
  return do_read_blob(&istate->cache[pos]->oid, oid_stat, size_out, data_out);
1010
0
}
1011
1012
/*
1013
 * Frees memory within pl which was allocated for exclude patterns and
1014
 * the file buffer.  Does not free pl itself.
1015
 */
1016
void clear_pattern_list(struct pattern_list *pl)
1017
0
{
1018
0
  int i;
1019
1020
0
  for (i = 0; i < pl->nr; i++)
1021
0
    free(pl->patterns[i]);
1022
0
  free(pl->patterns);
1023
0
  clear_pattern_entry_hashmap(&pl->recursive_hashmap);
1024
0
  clear_pattern_entry_hashmap(&pl->parent_hashmap);
1025
1026
0
  memset(pl, 0, sizeof(*pl));
1027
0
}
1028
1029
static void trim_trailing_spaces(char *buf)
1030
0
{
1031
0
  char *p, *last_space = NULL;
1032
1033
0
  for (p = buf; *p; p++)
1034
0
    switch (*p) {
1035
0
    case ' ':
1036
0
      if (!last_space)
1037
0
        last_space = p;
1038
0
      break;
1039
0
    case '\\':
1040
0
      p++;
1041
0
      if (!*p)
1042
0
        return;
1043
      /* fallthrough */
1044
0
    default:
1045
0
      last_space = NULL;
1046
0
    }
1047
1048
0
  if (last_space)
1049
0
    *last_space = '\0';
1050
0
}
1051
1052
/*
1053
 * Given a subdirectory name and "dir" of the current directory,
1054
 * search the subdir in "dir" and return it, or create a new one if it
1055
 * does not exist in "dir".
1056
 *
1057
 * If "name" has the trailing slash, it'll be excluded in the search.
1058
 */
1059
static struct untracked_cache_dir *lookup_untracked(struct untracked_cache *uc,
1060
                struct untracked_cache_dir *dir,
1061
                const char *name, int len)
1062
0
{
1063
0
  int first, last;
1064
0
  struct untracked_cache_dir *d;
1065
0
  if (!dir)
1066
0
    return NULL;
1067
0
  if (len && name[len - 1] == '/')
1068
0
    len--;
1069
0
  first = 0;
1070
0
  last = dir->dirs_nr;
1071
0
  while (last > first) {
1072
0
    int cmp, next = first + ((last - first) >> 1);
1073
0
    d = dir->dirs[next];
1074
0
    cmp = strncmp(name, d->name, len);
1075
0
    if (!cmp && strlen(d->name) > len)
1076
0
      cmp = -1;
1077
0
    if (!cmp)
1078
0
      return d;
1079
0
    if (cmp < 0) {
1080
0
      last = next;
1081
0
      continue;
1082
0
    }
1083
0
    first = next+1;
1084
0
  }
1085
1086
0
  uc->dir_created++;
1087
0
  FLEX_ALLOC_MEM(d, name, name, len);
1088
1089
0
  ALLOC_GROW(dir->dirs, dir->dirs_nr + 1, dir->dirs_alloc);
1090
0
  MOVE_ARRAY(dir->dirs + first + 1, dir->dirs + first,
1091
0
       dir->dirs_nr - first);
1092
0
  dir->dirs_nr++;
1093
0
  dir->dirs[first] = d;
1094
0
  return d;
1095
0
}
1096
1097
static void do_invalidate_gitignore(struct untracked_cache_dir *dir)
1098
0
{
1099
0
  int i;
1100
0
  dir->valid = 0;
1101
0
  for (size_t i = 0; i < dir->untracked_nr; i++)
1102
0
    free(dir->untracked[i]);
1103
0
  dir->untracked_nr = 0;
1104
0
  for (i = 0; i < dir->dirs_nr; i++)
1105
0
    do_invalidate_gitignore(dir->dirs[i]);
1106
0
}
1107
1108
static void invalidate_gitignore(struct untracked_cache *uc,
1109
         struct untracked_cache_dir *dir)
1110
0
{
1111
0
  uc->gitignore_invalidated++;
1112
0
  do_invalidate_gitignore(dir);
1113
0
}
1114
1115
static void invalidate_directory(struct untracked_cache *uc,
1116
         struct untracked_cache_dir *dir)
1117
0
{
1118
0
  int i;
1119
1120
  /*
1121
   * Invalidation increment here is just roughly correct. If
1122
   * untracked_nr or any of dirs[].recurse is non-zero, we
1123
   * should increment dir_invalidated too. But that's more
1124
   * expensive to do.
1125
   */
1126
0
  if (dir->valid)
1127
0
    uc->dir_invalidated++;
1128
1129
0
  dir->valid = 0;
1130
0
  for (size_t i = 0; i < dir->untracked_nr; i++)
1131
0
    free(dir->untracked[i]);
1132
0
  dir->untracked_nr = 0;
1133
0
  for (i = 0; i < dir->dirs_nr; i++)
1134
0
    dir->dirs[i]->recurse = 0;
1135
0
}
1136
1137
/* Flags for add_patterns() */
1138
0
#define PATTERN_NOFOLLOW (1<<0)
1139
1140
/*
1141
 * Given a file with name "fname", read it (either from disk, or from
1142
 * an index if 'istate' is non-null), parse it and store the
1143
 * exclude rules in "pl".
1144
 *
1145
 * If "oid_stat" is not NULL, compute oid of the exclude file and fill
1146
 * stat data from disk (only valid if add_patterns returns zero). If
1147
 * oid_stat.valid is non-zero, "oid_stat" must contain good value as input.
1148
 */
1149
static int add_patterns(const char *fname, const char *base, int baselen,
1150
      struct pattern_list *pl, struct index_state *istate,
1151
      unsigned flags, struct oid_stat *oid_stat)
1152
0
{
1153
0
  struct stat st;
1154
0
  int r;
1155
0
  int fd;
1156
0
  size_t size = 0;
1157
0
  char *buf;
1158
1159
0
  if (flags & PATTERN_NOFOLLOW)
1160
0
    fd = open_nofollow(fname, O_RDONLY);
1161
0
  else
1162
0
    fd = open(fname, O_RDONLY);
1163
1164
0
  if (fd < 0 || fstat(fd, &st) < 0) {
1165
0
    if (fd < 0)
1166
0
      warn_on_fopen_errors(fname);
1167
0
    else
1168
0
      close(fd);
1169
0
    if (!istate)
1170
0
      return -1;
1171
0
    r = read_skip_worktree_file_from_index(istate, fname,
1172
0
                   &size, &buf,
1173
0
                   oid_stat);
1174
0
    if (r != 1)
1175
0
      return r;
1176
0
  } else {
1177
0
    size = xsize_t(st.st_size);
1178
0
    if (size == 0) {
1179
0
      if (oid_stat) {
1180
0
        fill_stat_data(&oid_stat->stat, &st);
1181
0
        oidcpy(&oid_stat->oid, the_hash_algo->empty_blob);
1182
0
        oid_stat->valid = 1;
1183
0
      }
1184
0
      close(fd);
1185
0
      return 0;
1186
0
    }
1187
0
    buf = xmallocz(size);
1188
0
    if (read_in_full(fd, buf, size) != size) {
1189
0
      free(buf);
1190
0
      close(fd);
1191
0
      return -1;
1192
0
    }
1193
0
    buf[size++] = '\n';
1194
0
    close(fd);
1195
0
    if (oid_stat) {
1196
0
      int pos;
1197
0
      if (oid_stat->valid &&
1198
0
          !match_stat_data_racy(istate, &oid_stat->stat, &st))
1199
0
        ; /* no content change, oid_stat->oid still good */
1200
0
      else if (istate &&
1201
0
         (pos = index_name_pos(istate, fname, strlen(fname))) >= 0 &&
1202
0
         !ce_stage(istate->cache[pos]) &&
1203
0
         ce_uptodate(istate->cache[pos]) &&
1204
0
         !would_convert_to_git(istate, fname))
1205
0
        oidcpy(&oid_stat->oid,
1206
0
               &istate->cache[pos]->oid);
1207
0
      else
1208
0
        hash_object_file(the_hash_algo, buf, size,
1209
0
             OBJ_BLOB, &oid_stat->oid);
1210
0
      fill_stat_data(&oid_stat->stat, &st);
1211
0
      oid_stat->valid = 1;
1212
0
    }
1213
0
  }
1214
1215
0
  if (size > PATTERN_MAX_FILE_SIZE) {
1216
0
    warning("ignoring excessively large pattern file: %s", fname);
1217
0
    free(buf);
1218
0
    return -1;
1219
0
  }
1220
1221
0
  add_patterns_from_buffer(buf, size, base, baselen, pl);
1222
0
  free(buf);
1223
0
  return 0;
1224
0
}
1225
1226
int add_patterns_from_buffer(char *buf, size_t size,
1227
           const char *base, int baselen,
1228
           struct pattern_list *pl)
1229
0
{
1230
0
  char *orig = buf;
1231
0
  int i, lineno = 1;
1232
0
  char *entry;
1233
1234
0
  hashmap_init(&pl->recursive_hashmap, pl_hashmap_cmp, NULL, 0);
1235
0
  hashmap_init(&pl->parent_hashmap, pl_hashmap_cmp, NULL, 0);
1236
1237
0
  if (skip_utf8_bom(&buf, size))
1238
0
    size -= buf - orig;
1239
1240
0
  entry = buf;
1241
1242
0
  for (i = 0; i < size; i++) {
1243
0
    if (buf[i] == '\n') {
1244
0
      if (entry != buf + i && entry[0] != '#') {
1245
0
        buf[i - (i && buf[i-1] == '\r')] = 0;
1246
0
        trim_trailing_spaces(entry);
1247
0
        add_pattern(entry, base, baselen, pl, lineno);
1248
0
      }
1249
0
      lineno++;
1250
0
      entry = buf + i + 1;
1251
0
    }
1252
0
  }
1253
0
  return 0;
1254
0
}
1255
1256
int add_patterns_from_file_to_list(const char *fname, const char *base,
1257
           int baselen, struct pattern_list *pl,
1258
           struct index_state *istate,
1259
           unsigned flags)
1260
0
{
1261
0
  return add_patterns(fname, base, baselen, pl, istate, flags, NULL);
1262
0
}
1263
1264
int add_patterns_from_blob_to_list(
1265
  struct object_id *oid,
1266
  const char *base, int baselen,
1267
  struct pattern_list *pl)
1268
0
{
1269
0
  char *buf;
1270
0
  size_t size;
1271
0
  int r;
1272
1273
0
  r = do_read_blob(oid, NULL, &size, &buf);
1274
0
  if (r != 1)
1275
0
    return r;
1276
1277
0
  if (size > PATTERN_MAX_FILE_SIZE) {
1278
0
    warning("ignoring excessively large pattern blob: %s",
1279
0
      oid_to_hex(oid));
1280
0
    free(buf);
1281
0
    return -1;
1282
0
  }
1283
1284
0
  add_patterns_from_buffer(buf, size, base, baselen, pl);
1285
0
  free(buf);
1286
0
  return 0;
1287
0
}
1288
1289
struct pattern_list *add_pattern_list(struct dir_struct *dir,
1290
              int group_type, const char *src)
1291
0
{
1292
0
  struct pattern_list *pl;
1293
0
  struct exclude_list_group *group;
1294
1295
0
  group = &dir->internal.exclude_list_group[group_type];
1296
0
  ALLOC_GROW(group->pl, group->nr + 1, group->alloc);
1297
0
  pl = &group->pl[group->nr++];
1298
0
  memset(pl, 0, sizeof(*pl));
1299
0
  pl->src = src;
1300
0
  return pl;
1301
0
}
1302
1303
/*
1304
 * Used to set up core.excludesfile and .git/info/exclude lists.
1305
 */
1306
static void add_patterns_from_file_1(struct dir_struct *dir, const char *fname,
1307
             struct oid_stat *oid_stat)
1308
0
{
1309
0
  struct pattern_list *pl;
1310
  /*
1311
   * catch setup_standard_excludes() that's called before
1312
   * dir->untracked is assigned. That function behaves
1313
   * differently when dir->untracked is non-NULL.
1314
   */
1315
0
  if (!dir->untracked)
1316
0
    dir->internal.unmanaged_exclude_files++;
1317
0
  pl = add_pattern_list(dir, EXC_FILE, fname);
1318
0
  if (add_patterns(fname, "", 0, pl, NULL, 0, oid_stat) < 0)
1319
0
    die(_("cannot use %s as an exclude file"), fname);
1320
0
}
1321
1322
void add_patterns_from_file(struct dir_struct *dir, const char *fname)
1323
0
{
1324
0
  dir->internal.unmanaged_exclude_files++; /* see validate_untracked_cache() */
1325
0
  add_patterns_from_file_1(dir, fname, NULL);
1326
0
}
1327
1328
int match_basename(const char *basename, int basenamelen,
1329
       const char *pattern, int prefix, int patternlen,
1330
       unsigned flags)
1331
0
{
1332
0
  if (prefix == patternlen) {
1333
0
    if (patternlen == basenamelen &&
1334
0
        !fspathncmp(pattern, basename, basenamelen))
1335
0
      return 1;
1336
0
  } else if (flags & PATTERN_FLAG_ENDSWITH) {
1337
    /* "*literal" matching against "fooliteral" */
1338
0
    if (patternlen - 1 <= basenamelen &&
1339
0
        !fspathncmp(pattern + 1,
1340
0
           basename + basenamelen - (patternlen - 1),
1341
0
           patternlen - 1))
1342
0
      return 1;
1343
0
  } else {
1344
0
    if (fnmatch_icase_mem(pattern, patternlen,
1345
0
              basename, basenamelen,
1346
0
              0) == 0)
1347
0
      return 1;
1348
0
  }
1349
0
  return 0;
1350
0
}
1351
1352
int match_pathname(const char *pathname, int pathlen,
1353
       const char *base, int baselen,
1354
       const char *pattern, int prefix, int patternlen)
1355
0
{
1356
0
  const char *name;
1357
0
  int namelen;
1358
1359
  /*
1360
   * match with FNM_PATHNAME; the pattern has base implicitly
1361
   * in front of it.
1362
   */
1363
0
  if (*pattern == '/') {
1364
0
    pattern++;
1365
0
    patternlen--;
1366
0
    prefix--;
1367
0
  }
1368
1369
  /*
1370
   * baselen does not count the trailing slash. base[] may or
1371
   * may not end with a trailing slash though.
1372
   */
1373
0
  if (pathlen < baselen + 1 ||
1374
0
      (baselen && pathname[baselen] != '/') ||
1375
0
      fspathncmp(pathname, base, baselen))
1376
0
    return 0;
1377
1378
0
  namelen = baselen ? pathlen - baselen - 1 : pathlen;
1379
0
  name = pathname + pathlen - namelen;
1380
1381
0
  if (prefix) {
1382
    /*
1383
     * if the non-wildcard part is longer than the
1384
     * remaining pathname, surely it cannot match.
1385
     */
1386
0
    if (prefix > namelen)
1387
0
      return 0;
1388
1389
0
    if (fspathncmp(pattern, name, prefix))
1390
0
      return 0;
1391
1392
    /*
1393
     * If the whole pattern did not have a wildcard,
1394
     * then our prefix match is all we need; we
1395
     * do not need to call fnmatch at all.
1396
     */
1397
0
    if (patternlen == prefix && namelen == prefix)
1398
0
      return 1;
1399
1400
    /*
1401
     * Retain one character of the prefix to
1402
     * pass to fnmatch, which lets it distinguish
1403
     * the start of a directory component correctly.
1404
     */
1405
0
    prefix--;
1406
0
    pattern += prefix;
1407
0
    patternlen -= prefix;
1408
0
    name    += prefix;
1409
0
    namelen -= prefix;
1410
0
  }
1411
1412
0
  return fnmatch_icase_mem(pattern, patternlen,
1413
0
         name, namelen,
1414
0
         WM_PATHNAME) == 0;
1415
0
}
1416
1417
/*
1418
 * Scan the given exclude list in reverse to see whether pathname
1419
 * should be ignored.  The first match (i.e. the last on the list), if
1420
 * any, determines the fate.  Returns the exclude_list element which
1421
 * matched, or NULL for undecided.
1422
 */
1423
static struct path_pattern *last_matching_pattern_from_list(const char *pathname,
1424
                   int pathlen,
1425
                   const char *basename,
1426
                   int *dtype,
1427
                   struct pattern_list *pl,
1428
                   struct index_state *istate)
1429
0
{
1430
0
  struct path_pattern *res = NULL; /* undecided */
1431
0
  int i;
1432
1433
0
  if (!pl->nr)
1434
0
    return NULL; /* undefined */
1435
1436
0
  for (i = pl->nr - 1; 0 <= i; i--) {
1437
0
    struct path_pattern *pattern = pl->patterns[i];
1438
0
    const char *exclude = pattern->pattern;
1439
0
    int prefix = pattern->nowildcardlen;
1440
1441
0
    if (pattern->flags & PATTERN_FLAG_MUSTBEDIR) {
1442
0
      *dtype = resolve_dtype(*dtype, istate, pathname, pathlen);
1443
0
      if (*dtype != DT_DIR)
1444
0
        continue;
1445
0
    }
1446
1447
0
    if (pattern->flags & PATTERN_FLAG_NODIR) {
1448
0
      if (match_basename(basename,
1449
0
             pathlen - (basename - pathname),
1450
0
             exclude, prefix, pattern->patternlen,
1451
0
             pattern->flags)) {
1452
0
        res = pattern;
1453
0
        break;
1454
0
      }
1455
0
      continue;
1456
0
    }
1457
1458
0
    assert(pattern->baselen == 0 ||
1459
0
           pattern->base[pattern->baselen - 1] == '/');
1460
0
    if (match_pathname(pathname, pathlen,
1461
0
           pattern->base,
1462
0
           pattern->baselen ? pattern->baselen - 1 : 0,
1463
0
           exclude, prefix, pattern->patternlen)) {
1464
0
      res = pattern;
1465
0
      break;
1466
0
    }
1467
0
  }
1468
0
  return res;
1469
0
}
1470
1471
/*
1472
 * Scan the list of patterns to determine if the ordered list
1473
 * of patterns matches on 'pathname'.
1474
 *
1475
 * Return 1 for a match, 0 for not matched and -1 for undecided.
1476
 */
1477
enum pattern_match_result path_matches_pattern_list(
1478
        const char *pathname, int pathlen,
1479
        const char *basename, int *dtype,
1480
        struct pattern_list *pl,
1481
        struct index_state *istate)
1482
0
{
1483
0
  struct path_pattern *pattern;
1484
0
  struct strbuf parent_pathname = STRBUF_INIT;
1485
0
  int result = NOT_MATCHED;
1486
0
  size_t slash_pos;
1487
1488
0
  if (!pl->use_cone_patterns) {
1489
0
    pattern = last_matching_pattern_from_list(pathname, pathlen, basename,
1490
0
              dtype, pl, istate);
1491
0
    if (pattern) {
1492
0
      if (pattern->flags & PATTERN_FLAG_NEGATIVE)
1493
0
        return NOT_MATCHED;
1494
0
      else
1495
0
        return MATCHED;
1496
0
    }
1497
1498
0
    return UNDECIDED;
1499
0
  }
1500
1501
0
  if (pl->full_cone)
1502
0
    return MATCHED;
1503
1504
0
  strbuf_addch(&parent_pathname, '/');
1505
0
  strbuf_add(&parent_pathname, pathname, pathlen);
1506
1507
  /*
1508
   * Directory entries are matched if and only if a file
1509
   * contained immediately within them is matched. For the
1510
   * case of a directory entry, modify the path to create
1511
   * a fake filename within this directory, allowing us to
1512
   * use the file-base matching logic in an equivalent way.
1513
   */
1514
0
  if (parent_pathname.len > 0 &&
1515
0
      parent_pathname.buf[parent_pathname.len - 1] == '/') {
1516
0
    slash_pos = parent_pathname.len - 1;
1517
0
    strbuf_add(&parent_pathname, "-", 1);
1518
0
  } else {
1519
0
    const char *slash_ptr = strrchr(parent_pathname.buf, '/');
1520
0
    slash_pos = slash_ptr ? slash_ptr - parent_pathname.buf : 0;
1521
0
  }
1522
1523
0
  if (hashmap_contains_path(&pl->recursive_hashmap,
1524
0
          &parent_pathname)) {
1525
0
    result = MATCHED_RECURSIVE;
1526
0
    goto done;
1527
0
  }
1528
1529
0
  if (!slash_pos) {
1530
    /* include every file in root */
1531
0
    result = MATCHED;
1532
0
    goto done;
1533
0
  }
1534
1535
0
  strbuf_setlen(&parent_pathname, slash_pos);
1536
1537
0
  if (hashmap_contains_path(&pl->parent_hashmap, &parent_pathname)) {
1538
0
    result = MATCHED;
1539
0
    goto done;
1540
0
  }
1541
1542
0
  if (hashmap_contains_parent(&pl->recursive_hashmap,
1543
0
            pathname,
1544
0
            &parent_pathname))
1545
0
    result = MATCHED_RECURSIVE;
1546
1547
0
done:
1548
0
  strbuf_release(&parent_pathname);
1549
0
  return result;
1550
0
}
1551
1552
int init_sparse_checkout_patterns(struct index_state *istate)
1553
0
{
1554
0
  struct repo_config_values *cfg = repo_config_values(the_repository);
1555
1556
0
  if (!cfg->apply_sparse_checkout)
1557
0
    return 1;
1558
0
  if (istate->sparse_checkout_patterns)
1559
0
    return 0;
1560
1561
0
  CALLOC_ARRAY(istate->sparse_checkout_patterns, 1);
1562
1563
0
  if (get_sparse_checkout_patterns(istate->sparse_checkout_patterns) < 0) {
1564
0
    FREE_AND_NULL(istate->sparse_checkout_patterns);
1565
0
    return -1;
1566
0
  }
1567
1568
0
  return 0;
1569
0
}
1570
1571
static int path_in_sparse_checkout_1(const char *path,
1572
             struct index_state *istate,
1573
             int require_cone_mode)
1574
0
{
1575
0
  int dtype = DT_REG;
1576
0
  enum pattern_match_result match = UNDECIDED;
1577
0
  const char *end, *slash;
1578
1579
  /*
1580
   * We default to accepting a path if the path is empty, there are no
1581
   * patterns, or the patterns are of the wrong type.
1582
   */
1583
0
  if (!*path ||
1584
0
      init_sparse_checkout_patterns(istate) ||
1585
0
      (require_cone_mode &&
1586
0
       !istate->sparse_checkout_patterns->use_cone_patterns))
1587
0
    return 1;
1588
1589
  /*
1590
   * If UNDECIDED, use the match from the parent dir (recursively), or
1591
   * fall back to NOT_MATCHED at the topmost level. Note that cone mode
1592
   * never returns UNDECIDED, so we will execute only one iteration in
1593
   * this case.
1594
   */
1595
0
  for (end = path + strlen(path);
1596
0
       end > path && match == UNDECIDED;
1597
0
       end = slash) {
1598
1599
0
    for (slash = end - 1; slash > path && *slash != '/'; slash--)
1600
0
      ; /* do nothing */
1601
1602
0
    match = path_matches_pattern_list(path, end - path,
1603
0
        slash > path ? slash + 1 : path, &dtype,
1604
0
        istate->sparse_checkout_patterns, istate);
1605
1606
    /* We are going to match the parent dir now */
1607
0
    dtype = DT_DIR;
1608
0
  }
1609
0
  return match > 0;
1610
0
}
1611
1612
int path_in_sparse_checkout(const char *path,
1613
          struct index_state *istate)
1614
0
{
1615
0
  return path_in_sparse_checkout_1(path, istate, 0);
1616
0
}
1617
1618
int path_in_cone_mode_sparse_checkout(const char *path,
1619
             struct index_state *istate)
1620
0
{
1621
0
  return path_in_sparse_checkout_1(path, istate, 1);
1622
0
}
1623
1624
static struct path_pattern *last_matching_pattern_from_lists(
1625
    struct dir_struct *dir, struct index_state *istate,
1626
    const char *pathname, int pathlen,
1627
    const char *basename, int *dtype_p)
1628
0
{
1629
0
  int i, j;
1630
0
  struct exclude_list_group *group;
1631
0
  struct path_pattern *pattern;
1632
0
  for (i = EXC_CMDL; i <= EXC_FILE; i++) {
1633
0
    group = &dir->internal.exclude_list_group[i];
1634
0
    for (j = group->nr - 1; j >= 0; j--) {
1635
0
      pattern = last_matching_pattern_from_list(
1636
0
        pathname, pathlen, basename, dtype_p,
1637
0
        &group->pl[j], istate);
1638
0
      if (pattern)
1639
0
        return pattern;
1640
0
    }
1641
0
  }
1642
0
  return NULL;
1643
0
}
1644
1645
/*
1646
 * Loads the per-directory exclude list for the substring of base
1647
 * which has a char length of baselen.
1648
 */
1649
static void prep_exclude(struct dir_struct *dir,
1650
       struct index_state *istate,
1651
       const char *base, int baselen)
1652
0
{
1653
0
  struct exclude_list_group *group;
1654
0
  struct pattern_list *pl;
1655
0
  struct exclude_stack *stk = NULL;
1656
0
  struct untracked_cache_dir *untracked;
1657
0
  int current;
1658
1659
0
  group = &dir->internal.exclude_list_group[EXC_DIRS];
1660
1661
  /*
1662
   * Pop the exclude lists from the EXCL_DIRS exclude_list_group
1663
   * which originate from directories not in the prefix of the
1664
   * path being checked.
1665
   */
1666
0
  while ((stk = dir->internal.exclude_stack) != NULL) {
1667
0
    if (stk->baselen <= baselen &&
1668
0
        !strncmp(dir->internal.basebuf.buf, base, stk->baselen))
1669
0
      break;
1670
0
    pl = &group->pl[dir->internal.exclude_stack->exclude_ix];
1671
0
    dir->internal.exclude_stack = stk->prev;
1672
0
    dir->internal.pattern = NULL;
1673
0
    free((char *)pl->src); /* see strbuf_detach() below */
1674
0
    clear_pattern_list(pl);
1675
0
    free(stk);
1676
0
    group->nr--;
1677
0
  }
1678
1679
  /* Skip traversing into sub directories if the parent is excluded */
1680
0
  if (dir->internal.pattern)
1681
0
    return;
1682
1683
  /*
1684
   * Lazy initialization. All call sites currently just
1685
   * memset(dir, 0, sizeof(*dir)) before use. Changing all of
1686
   * them seems lots of work for little benefit.
1687
   */
1688
0
  if (!dir->internal.basebuf.buf)
1689
0
    strbuf_init(&dir->internal.basebuf, PATH_MAX);
1690
1691
  /* Read from the parent directories and push them down. */
1692
0
  current = stk ? stk->baselen : -1;
1693
0
  strbuf_setlen(&dir->internal.basebuf, current < 0 ? 0 : current);
1694
0
  if (dir->untracked)
1695
0
    untracked = stk ? stk->ucd : dir->untracked->root;
1696
0
  else
1697
0
    untracked = NULL;
1698
1699
0
  while (current < baselen) {
1700
0
    const char *cp;
1701
0
    struct oid_stat oid_stat;
1702
1703
0
    CALLOC_ARRAY(stk, 1);
1704
0
    if (current < 0) {
1705
0
      cp = base;
1706
0
      current = 0;
1707
0
    } else {
1708
0
      cp = strchr(base + current + 1, '/');
1709
0
      if (!cp)
1710
0
        die("oops in prep_exclude");
1711
0
      cp++;
1712
0
      untracked =
1713
0
        lookup_untracked(dir->untracked,
1714
0
             untracked,
1715
0
             base + current,
1716
0
             cp - base - current);
1717
0
    }
1718
0
    stk->prev = dir->internal.exclude_stack;
1719
0
    stk->baselen = cp - base;
1720
0
    stk->exclude_ix = group->nr;
1721
0
    stk->ucd = untracked;
1722
0
    pl = add_pattern_list(dir, EXC_DIRS, NULL);
1723
0
    strbuf_add(&dir->internal.basebuf, base + current, stk->baselen - current);
1724
0
    assert(stk->baselen == dir->internal.basebuf.len);
1725
1726
    /* Abort if the directory is excluded */
1727
0
    if (stk->baselen) {
1728
0
      int dt = DT_DIR;
1729
0
      dir->internal.basebuf.buf[stk->baselen - 1] = 0;
1730
0
      dir->internal.pattern = last_matching_pattern_from_lists(dir,
1731
0
                  istate,
1732
0
        dir->internal.basebuf.buf, stk->baselen - 1,
1733
0
        dir->internal.basebuf.buf + current, &dt);
1734
0
      dir->internal.basebuf.buf[stk->baselen - 1] = '/';
1735
0
      if (dir->internal.pattern &&
1736
0
          dir->internal.pattern->flags & PATTERN_FLAG_NEGATIVE)
1737
0
        dir->internal.pattern = NULL;
1738
0
      if (dir->internal.pattern) {
1739
0
        dir->internal.exclude_stack = stk;
1740
0
        return;
1741
0
      }
1742
0
    }
1743
1744
    /* Try to read per-directory file */
1745
0
    oidclr(&oid_stat.oid, the_repository->hash_algo);
1746
0
    oid_stat.valid = 0;
1747
0
    if (dir->exclude_per_dir &&
1748
        /*
1749
         * If we know that no files have been added in
1750
         * this directory (i.e. valid_cached_dir() has
1751
         * been executed and set untracked->valid) ..
1752
         */
1753
0
        (!untracked || !untracked->valid ||
1754
         /*
1755
          * .. and .gitignore does not exist before
1756
          * (i.e. null exclude_oid). Then we can skip
1757
          * loading .gitignore, which would result in
1758
          * ENOENT anyway.
1759
          */
1760
0
         !is_null_oid(&untracked->exclude_oid))) {
1761
      /*
1762
       * dir->internal.basebuf gets reused by the traversal,
1763
       * but we need fname to remain unchanged to ensure the
1764
       * src member of each struct path_pattern correctly
1765
       * back-references its source file.  Other invocations
1766
       * of add_pattern_list provide stable strings, so we
1767
       * strbuf_detach() and free() here in the caller.
1768
       */
1769
0
      struct strbuf sb = STRBUF_INIT;
1770
0
      strbuf_addbuf(&sb, &dir->internal.basebuf);
1771
0
      strbuf_addstr(&sb, dir->exclude_per_dir);
1772
0
      pl->src = strbuf_detach(&sb, NULL);
1773
0
      add_patterns(pl->src, pl->src, stk->baselen, pl, istate,
1774
0
             PATTERN_NOFOLLOW,
1775
0
             untracked ? &oid_stat : NULL);
1776
0
    }
1777
    /*
1778
     * NEEDSWORK: when untracked cache is enabled, prep_exclude()
1779
     * will first be called in valid_cached_dir() then maybe many
1780
     * times more in last_matching_pattern(). When the cache is
1781
     * used, last_matching_pattern() will not be called and
1782
     * reading .gitignore content will be a waste.
1783
     *
1784
     * So when it's called by valid_cached_dir() and we can get
1785
     * .gitignore SHA-1 from the index (i.e. .gitignore is not
1786
     * modified on work tree), we could delay reading the
1787
     * .gitignore content until we absolutely need it in
1788
     * last_matching_pattern(). Be careful about ignore rule
1789
     * order, though, if you do that.
1790
     */
1791
0
    if (untracked &&
1792
0
        !oideq(&oid_stat.oid, &untracked->exclude_oid)) {
1793
0
      invalidate_gitignore(dir->untracked, untracked);
1794
0
      oidcpy(&untracked->exclude_oid, &oid_stat.oid);
1795
0
    }
1796
0
    dir->internal.exclude_stack = stk;
1797
0
    current = stk->baselen;
1798
0
  }
1799
0
  strbuf_setlen(&dir->internal.basebuf, baselen);
1800
0
}
1801
1802
/*
1803
 * Loads the exclude lists for the directory containing pathname, then
1804
 * scans all exclude lists to determine whether pathname is excluded.
1805
 * Returns the exclude_list element which matched, or NULL for
1806
 * undecided.
1807
 */
1808
struct path_pattern *last_matching_pattern(struct dir_struct *dir,
1809
              struct index_state *istate,
1810
              const char *pathname,
1811
              int *dtype_p)
1812
0
{
1813
0
  int pathlen = strlen(pathname);
1814
0
  const char *basename = strrchr(pathname, '/');
1815
0
  basename = (basename) ? basename+1 : pathname;
1816
1817
0
  prep_exclude(dir, istate, pathname, basename-pathname);
1818
1819
0
  if (dir->internal.pattern)
1820
0
    return dir->internal.pattern;
1821
1822
0
  return last_matching_pattern_from_lists(dir, istate, pathname, pathlen,
1823
0
      basename, dtype_p);
1824
0
}
1825
1826
/*
1827
 * Loads the exclude lists for the directory containing pathname, then
1828
 * scans all exclude lists to determine whether pathname is excluded.
1829
 * Returns 1 if true, otherwise 0.
1830
 */
1831
int is_excluded(struct dir_struct *dir, struct index_state *istate,
1832
    const char *pathname, int *dtype_p)
1833
0
{
1834
0
  struct path_pattern *pattern =
1835
0
    last_matching_pattern(dir, istate, pathname, dtype_p);
1836
0
  if (pattern)
1837
0
    return pattern->flags & PATTERN_FLAG_NEGATIVE ? 0 : 1;
1838
0
  return 0;
1839
0
}
1840
1841
static struct dir_entry *dir_entry_new(const char *pathname, int len)
1842
0
{
1843
0
  struct dir_entry *ent;
1844
1845
0
  FLEX_ALLOC_MEM(ent, name, pathname, len);
1846
0
  ent->len = len;
1847
0
  return ent;
1848
0
}
1849
1850
static struct dir_entry *dir_add_name(struct dir_struct *dir,
1851
              struct index_state *istate,
1852
              const char *pathname, int len)
1853
0
{
1854
0
  if (index_file_exists(istate, pathname, len, ignore_case))
1855
0
    return NULL;
1856
1857
0
  ALLOC_GROW(dir->entries, dir->nr+1, dir->internal.alloc);
1858
0
  return dir->entries[dir->nr++] = dir_entry_new(pathname, len);
1859
0
}
1860
1861
struct dir_entry *dir_add_ignored(struct dir_struct *dir,
1862
          struct index_state *istate,
1863
          const char *pathname, int len)
1864
0
{
1865
0
  if (!index_name_is_other(istate, pathname, len))
1866
0
    return NULL;
1867
1868
0
  ALLOC_GROW(dir->ignored, dir->ignored_nr+1, dir->internal.ignored_alloc);
1869
0
  return dir->ignored[dir->ignored_nr++] = dir_entry_new(pathname, len);
1870
0
}
1871
1872
enum exist_status {
1873
  index_nonexistent = 0,
1874
  index_directory,
1875
  index_gitdir
1876
};
1877
1878
/*
1879
 * Do not use the alphabetically sorted index to look up
1880
 * the directory name; instead, use the case insensitive
1881
 * directory hash.
1882
 */
1883
static enum exist_status directory_exists_in_index_icase(struct index_state *istate,
1884
               const char *dirname, int len)
1885
0
{
1886
0
  struct cache_entry *ce;
1887
1888
0
  if (index_dir_exists(istate, dirname, len))
1889
0
    return index_directory;
1890
1891
0
  ce = index_file_exists(istate, dirname, len, ignore_case);
1892
0
  if (ce && S_ISGITLINK(ce->ce_mode))
1893
0
    return index_gitdir;
1894
1895
0
  return index_nonexistent;
1896
0
}
1897
1898
/*
1899
 * The index sorts alphabetically by entry name, which
1900
 * means that a gitlink sorts as '\0' at the end, while
1901
 * a directory (which is defined not as an entry, but as
1902
 * the files it contains) will sort with the '/' at the
1903
 * end.
1904
 */
1905
static enum exist_status directory_exists_in_index(struct index_state *istate,
1906
               const char *dirname, int len)
1907
0
{
1908
0
  int pos;
1909
1910
0
  if (ignore_case)
1911
0
    return directory_exists_in_index_icase(istate, dirname, len);
1912
1913
0
  pos = index_name_pos(istate, dirname, len);
1914
0
  if (pos < 0)
1915
0
    pos = -pos-1;
1916
0
  while (pos < istate->cache_nr) {
1917
0
    const struct cache_entry *ce = istate->cache[pos++];
1918
0
    unsigned char endchar;
1919
1920
0
    if (strncmp(ce->name, dirname, len))
1921
0
      break;
1922
0
    endchar = ce->name[len];
1923
0
    if (endchar > '/')
1924
0
      break;
1925
0
    if (endchar == '/')
1926
0
      return index_directory;
1927
0
    if (!endchar && S_ISGITLINK(ce->ce_mode))
1928
0
      return index_gitdir;
1929
0
  }
1930
0
  return index_nonexistent;
1931
0
}
1932
1933
/*
1934
 * When we find a directory when traversing the filesystem, we
1935
 * have three distinct cases:
1936
 *
1937
 *  - ignore it
1938
 *  - see it as a directory
1939
 *  - recurse into it
1940
 *
1941
 * and which one we choose depends on a combination of existing
1942
 * git index contents and the flags passed into the directory
1943
 * traversal routine.
1944
 *
1945
 * Case 1: If we *already* have entries in the index under that
1946
 * directory name, we always recurse into the directory to see
1947
 * all the files.
1948
 *
1949
 * Case 2: If we *already* have that directory name as a gitlink,
1950
 * we always continue to see it as a gitlink, regardless of whether
1951
 * there is an actual git directory there or not (it might not
1952
 * be checked out as a subproject!)
1953
 *
1954
 * Case 3: if we didn't have it in the index previously, we
1955
 * have a few sub-cases:
1956
 *
1957
 *  (a) if DIR_SHOW_OTHER_DIRECTORIES flag is set, we show it as
1958
 *      just a directory, unless DIR_HIDE_EMPTY_DIRECTORIES is
1959
 *      also true, in which case we need to check if it contains any
1960
 *      untracked and / or ignored files.
1961
 *  (b) if it looks like a git directory and we don't have the
1962
 *      DIR_NO_GITLINKS flag, then we treat it as a gitlink, and
1963
 *      show it as a directory.
1964
 *  (c) otherwise, we recurse into it.
1965
 */
1966
static enum path_treatment treat_directory(struct dir_struct *dir,
1967
  struct index_state *istate,
1968
  struct untracked_cache_dir *untracked,
1969
  const char *dirname, int len, int baselen, int excluded,
1970
  const struct pathspec *pathspec)
1971
0
{
1972
  /*
1973
   * WARNING: From this function, you can return path_recurse or you
1974
   *          can call read_directory_recursive() (or neither), but
1975
   *          you CAN'T DO BOTH.
1976
   */
1977
0
  enum path_treatment state;
1978
0
  int matches_how = 0;
1979
0
  int check_only, stop_early;
1980
0
  int old_ignored_nr, old_untracked_nr;
1981
  /* The "len-1" is to strip the final '/' */
1982
0
  enum exist_status status = directory_exists_in_index(istate, dirname, len-1);
1983
1984
0
  if (status == index_directory)
1985
0
    return path_recurse;
1986
0
  if (status == index_gitdir)
1987
0
    return path_none;
1988
0
  if (status != index_nonexistent)
1989
0
    BUG("Unhandled value for directory_exists_in_index: %d\n", status);
1990
1991
  /*
1992
   * We don't want to descend into paths that don't match the necessary
1993
   * patterns.  Clearly, if we don't have a pathspec, then we can't check
1994
   * for matching patterns.  Also, if (excluded) then we know we matched
1995
   * the exclusion patterns so as an optimization we can skip checking
1996
   * for matching patterns.
1997
   */
1998
0
  if (pathspec && !excluded) {
1999
0
    matches_how = match_pathspec_with_flags(istate, pathspec,
2000
0
              dirname, len,
2001
0
              0 /* prefix */,
2002
0
              NULL /* seen */,
2003
0
              DO_MATCH_LEADING_PATHSPEC);
2004
0
    if (!matches_how)
2005
0
      return path_none;
2006
0
  }
2007
2008
2009
0
  if ((dir->flags & DIR_SKIP_NESTED_GIT) ||
2010
0
    !(dir->flags & DIR_NO_GITLINKS)) {
2011
    /*
2012
     * Determine if `dirname` is a nested repo by confirming that:
2013
     * 1) we are in a nonbare repository, and
2014
     * 2) `dirname` is not an immediate parent of `the_repository->gitdir`,
2015
     *    which could occur if the git_dir or worktree location was
2016
     *    manually configured by the user; see t2205 testcases 1-3 for
2017
     *    examples where this matters
2018
     */
2019
0
    int nested_repo;
2020
0
    struct strbuf sb = STRBUF_INIT;
2021
0
    strbuf_addstr(&sb, dirname);
2022
0
    nested_repo = is_nonbare_repository_dir(&sb);
2023
2024
0
    if (nested_repo) {
2025
0
      char *real_dirname, *real_gitdir;
2026
0
      strbuf_addstr(&sb, ".git");
2027
0
      real_dirname = real_pathdup(sb.buf, 1);
2028
0
      real_gitdir = real_pathdup(the_repository->gitdir, 1);
2029
2030
0
      nested_repo = !!strcmp(real_dirname, real_gitdir);
2031
0
      free(real_gitdir);
2032
0
      free(real_dirname);
2033
0
    }
2034
0
    strbuf_release(&sb);
2035
2036
0
    if (nested_repo) {
2037
0
      if ((dir->flags & DIR_SKIP_NESTED_GIT) ||
2038
0
        (matches_how == MATCHED_RECURSIVELY_LEADING_PATHSPEC))
2039
0
        return path_none;
2040
0
      return excluded ? path_excluded : path_untracked;
2041
0
    }
2042
0
  }
2043
2044
0
  if (!(dir->flags & DIR_SHOW_OTHER_DIRECTORIES)) {
2045
0
    if (excluded &&
2046
0
        (dir->flags & DIR_SHOW_IGNORED_TOO) &&
2047
0
        (dir->flags & DIR_SHOW_IGNORED_TOO_MODE_MATCHING)) {
2048
2049
      /*
2050
       * This is an excluded directory and we are
2051
       * showing ignored paths that match an exclude
2052
       * pattern.  (e.g. show directory as ignored
2053
       * only if it matches an exclude pattern).
2054
       * This path will either be 'path_excluded`
2055
       * (if we are showing empty directories or if
2056
       * the directory is not empty), or will be
2057
       * 'path_none' (empty directory, and we are
2058
       * not showing empty directories).
2059
       */
2060
0
      if (!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))
2061
0
        return path_excluded;
2062
2063
0
      if (read_directory_recursive(dir, istate, dirname, len,
2064
0
                 untracked, 1, 1, pathspec) == path_excluded)
2065
0
        return path_excluded;
2066
2067
0
      return path_none;
2068
0
    }
2069
0
    return path_recurse;
2070
0
  }
2071
2072
0
  assert(dir->flags & DIR_SHOW_OTHER_DIRECTORIES);
2073
2074
  /*
2075
   * If we have a pathspec which could match something _below_ this
2076
   * directory (e.g. when checking 'subdir/' having a pathspec like
2077
   * 'subdir/some/deep/path/file' or 'subdir/widget-*.c'), then we
2078
   * need to recurse.
2079
   */
2080
0
  if (matches_how == MATCHED_RECURSIVELY_LEADING_PATHSPEC)
2081
0
    return path_recurse;
2082
2083
  /* Special cases for where this directory is excluded/ignored */
2084
0
  if (excluded) {
2085
    /*
2086
     * If DIR_SHOW_OTHER_DIRECTORIES is set and we're not
2087
     * hiding empty directories, there is no need to
2088
     * recurse into an ignored directory.
2089
     */
2090
0
    if (!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))
2091
0
      return path_excluded;
2092
2093
    /*
2094
     * Even if we are hiding empty directories, we can still avoid
2095
     * recursing into ignored directories for DIR_SHOW_IGNORED_TOO
2096
     * if DIR_SHOW_IGNORED_TOO_MODE_MATCHING is also set.
2097
     */
2098
0
    if ((dir->flags & DIR_SHOW_IGNORED_TOO) &&
2099
0
        (dir->flags & DIR_SHOW_IGNORED_TOO_MODE_MATCHING))
2100
0
      return path_excluded;
2101
0
  }
2102
2103
  /*
2104
   * Other than the path_recurse case above, we only need to
2105
   * recurse into untracked directories if any of the following
2106
   * bits is set:
2107
   *   - DIR_SHOW_IGNORED (because then we need to determine if
2108
   *                       there are ignored entries below)
2109
   *   - DIR_SHOW_IGNORED_TOO (same as above)
2110
   *   - DIR_HIDE_EMPTY_DIRECTORIES (because we have to determine if
2111
   *                                 the directory is empty)
2112
   */
2113
0
  if (!excluded &&
2114
0
      !(dir->flags & (DIR_SHOW_IGNORED |
2115
0
          DIR_SHOW_IGNORED_TOO |
2116
0
          DIR_HIDE_EMPTY_DIRECTORIES))) {
2117
0
    return path_untracked;
2118
0
  }
2119
2120
  /*
2121
   * Even if we don't want to know all the paths under an untracked or
2122
   * ignored directory, we may still need to go into the directory to
2123
   * determine if it is empty (because with DIR_HIDE_EMPTY_DIRECTORIES,
2124
   * an empty directory should be path_none instead of path_excluded or
2125
   * path_untracked).
2126
   */
2127
0
  check_only = ((dir->flags & DIR_HIDE_EMPTY_DIRECTORIES) &&
2128
0
          !(dir->flags & DIR_SHOW_IGNORED_TOO));
2129
2130
  /*
2131
   * However, there's another optimization possible as a subset of
2132
   * check_only, based on the cases we have to consider:
2133
   *   A) Directory matches no exclude patterns:
2134
   *     * Directory is empty => path_none
2135
   *     * Directory has an untracked file under it => path_untracked
2136
   *     * Directory has only ignored files under it => path_excluded
2137
   *   B) Directory matches an exclude pattern:
2138
   *     * Directory is empty => path_none
2139
   *     * Directory has an untracked file under it => path_excluded
2140
   *     * Directory has only ignored files under it => path_excluded
2141
   * In case A, we can exit as soon as we've found an untracked
2142
   * file but otherwise have to walk all files.  In case B, though,
2143
   * we can stop at the first file we find under the directory.
2144
   */
2145
0
  stop_early = check_only && excluded;
2146
2147
  /*
2148
   * If /every/ file within an untracked directory is ignored, then
2149
   * we want to treat the directory as ignored (for e.g. status
2150
   * --porcelain), without listing the individual ignored files
2151
   * underneath.  To do so, we'll save the current ignored_nr, and
2152
   * pop all the ones added after it if it turns out the entire
2153
   * directory is ignored.  Also, when DIR_SHOW_IGNORED_TOO and
2154
   * !DIR_KEEP_UNTRACKED_CONTENTS then we don't want to show
2155
   * untracked paths so will need to pop all those off the last
2156
   * after we traverse.
2157
   */
2158
0
  old_ignored_nr = dir->ignored_nr;
2159
0
  old_untracked_nr = dir->nr;
2160
2161
  /* Actually recurse into dirname now, we'll fixup the state later. */
2162
0
  untracked = lookup_untracked(dir->untracked, untracked,
2163
0
             dirname + baselen, len - baselen);
2164
0
  state = read_directory_recursive(dir, istate, dirname, len, untracked,
2165
0
           check_only, stop_early, pathspec);
2166
2167
  /* There are a variety of reasons we may need to fixup the state... */
2168
0
  if (state == path_excluded) {
2169
    /* state == path_excluded implies all paths under
2170
     * dirname were ignored...
2171
     *
2172
     * if running e.g. `git status --porcelain --ignored=matching`,
2173
     * then we want to see the subpaths that are ignored.
2174
     *
2175
     * if running e.g. just `git status --porcelain`, then
2176
     * we just want the directory itself to be listed as ignored
2177
     * and not the individual paths underneath.
2178
     */
2179
0
    int want_ignored_subpaths =
2180
0
      ((dir->flags & DIR_SHOW_IGNORED_TOO) &&
2181
0
       (dir->flags & DIR_SHOW_IGNORED_TOO_MODE_MATCHING));
2182
2183
0
    if (want_ignored_subpaths) {
2184
      /*
2185
       * with --ignored=matching, we want the subpaths
2186
       * INSTEAD of the directory itself.
2187
       */
2188
0
      state = path_none;
2189
0
    } else {
2190
0
      for (int i = old_ignored_nr; i < dir->ignored_nr; i++)
2191
0
        FREE_AND_NULL(dir->ignored[i]);
2192
0
      dir->ignored_nr = old_ignored_nr;
2193
0
    }
2194
0
  }
2195
2196
  /*
2197
   * We may need to ignore some of the untracked paths we found while
2198
   * traversing subdirectories.
2199
   */
2200
0
  if ((dir->flags & DIR_SHOW_IGNORED_TOO) &&
2201
0
      !(dir->flags & DIR_KEEP_UNTRACKED_CONTENTS)) {
2202
0
    for (int i = old_untracked_nr; i < dir->nr; i++)
2203
0
      FREE_AND_NULL(dir->entries[i]);
2204
0
    dir->nr = old_untracked_nr;
2205
0
  }
2206
2207
  /*
2208
   * If there is nothing under the current directory and we are not
2209
   * hiding empty directories, then we need to report on the
2210
   * untracked or ignored status of the directory itself.
2211
   */
2212
0
  if (state == path_none && !(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))
2213
0
    state = excluded ? path_excluded : path_untracked;
2214
2215
0
  return state;
2216
0
}
2217
2218
/*
2219
 * This is an inexact early pruning of any recursive directory
2220
 * reading - if the path cannot possibly be in the pathspec,
2221
 * return true, and we'll skip it early.
2222
 */
2223
static int simplify_away(const char *path, int pathlen,
2224
       const struct pathspec *pathspec)
2225
0
{
2226
0
  int i;
2227
2228
0
  if (!pathspec || !pathspec->nr)
2229
0
    return 0;
2230
2231
0
  GUARD_PATHSPEC(pathspec,
2232
0
           PATHSPEC_FROMTOP |
2233
0
           PATHSPEC_MAXDEPTH |
2234
0
           PATHSPEC_LITERAL |
2235
0
           PATHSPEC_GLOB |
2236
0
           PATHSPEC_ICASE |
2237
0
           PATHSPEC_EXCLUDE |
2238
0
           PATHSPEC_ATTR);
2239
2240
0
  for (i = 0; i < pathspec->nr; i++) {
2241
0
    const struct pathspec_item *item = &pathspec->items[i];
2242
0
    int len = item->nowildcard_len;
2243
2244
0
    if (len > pathlen)
2245
0
      len = pathlen;
2246
0
    if (!ps_strncmp(item, item->match, path, len))
2247
0
      return 0;
2248
0
  }
2249
2250
0
  return 1;
2251
0
}
2252
2253
/*
2254
 * This function tells us whether an excluded path matches a
2255
 * list of "interesting" pathspecs. That is, whether a path matched
2256
 * by any of the pathspecs could possibly be ignored by excluding
2257
 * the specified path. This can happen if:
2258
 *
2259
 *   1. the path is mentioned explicitly in the pathspec
2260
 *
2261
 *   2. the path is a directory prefix of some element in the
2262
 *      pathspec
2263
 */
2264
static int exclude_matches_pathspec(const char *path, int pathlen,
2265
            const struct pathspec *pathspec)
2266
0
{
2267
0
  int i;
2268
2269
0
  if (!pathspec || !pathspec->nr)
2270
0
    return 0;
2271
2272
0
  GUARD_PATHSPEC(pathspec,
2273
0
           PATHSPEC_FROMTOP |
2274
0
           PATHSPEC_MAXDEPTH |
2275
0
           PATHSPEC_LITERAL |
2276
0
           PATHSPEC_GLOB |
2277
0
           PATHSPEC_ICASE |
2278
0
           PATHSPEC_EXCLUDE |
2279
0
           PATHSPEC_ATTR);
2280
2281
0
  for (i = 0; i < pathspec->nr; i++) {
2282
0
    const struct pathspec_item *item = &pathspec->items[i];
2283
0
    int len = item->nowildcard_len;
2284
2285
0
    if (len == pathlen &&
2286
0
        !ps_strncmp(item, item->match, path, pathlen))
2287
0
      return 1;
2288
0
    if (len > pathlen &&
2289
0
        item->match[pathlen] == '/' &&
2290
0
        !ps_strncmp(item, item->match, path, pathlen))
2291
0
      return 1;
2292
0
  }
2293
0
  return 0;
2294
0
}
2295
2296
static int get_index_dtype(struct index_state *istate,
2297
         const char *path, int len)
2298
0
{
2299
0
  int pos;
2300
0
  const struct cache_entry *ce;
2301
2302
0
  ce = index_file_exists(istate, path, len, 0);
2303
0
  if (ce) {
2304
0
    if (!ce_uptodate(ce))
2305
0
      return DT_UNKNOWN;
2306
0
    if (S_ISGITLINK(ce->ce_mode))
2307
0
      return DT_DIR;
2308
    /*
2309
     * Nobody actually cares about the
2310
     * difference between DT_LNK and DT_REG
2311
     */
2312
0
    return DT_REG;
2313
0
  }
2314
2315
  /* Try to look it up as a directory */
2316
0
  pos = index_name_pos(istate, path, len);
2317
0
  if (pos >= 0)
2318
0
    return DT_UNKNOWN;
2319
0
  pos = -pos-1;
2320
0
  while (pos < istate->cache_nr) {
2321
0
    ce = istate->cache[pos++];
2322
0
    if (strncmp(ce->name, path, len))
2323
0
      break;
2324
0
    if (ce->name[len] > '/')
2325
0
      break;
2326
0
    if (ce->name[len] < '/')
2327
0
      continue;
2328
0
    if (!ce_uptodate(ce))
2329
0
      break; /* continue? */
2330
0
    return DT_DIR;
2331
0
  }
2332
0
  return DT_UNKNOWN;
2333
0
}
2334
2335
unsigned char get_dtype(struct dirent *e, struct strbuf *path,
2336
      int follow_symlink)
2337
0
{
2338
0
  struct stat st;
2339
0
  unsigned char dtype = DTYPE(e);
2340
0
  size_t base_path_len;
2341
2342
0
  if (dtype != DT_UNKNOWN && !(follow_symlink && dtype == DT_LNK))
2343
0
    return dtype;
2344
2345
  /*
2346
   * d_type unknown or unfollowed symlink, try to fall back on [l]stat
2347
   * results. If [l]stat fails, explicitly set DT_UNKNOWN.
2348
   */
2349
0
  base_path_len = path->len;
2350
0
  strbuf_addstr(path, e->d_name);
2351
0
  if ((follow_symlink && stat(path->buf, &st)) ||
2352
0
      (!follow_symlink && lstat(path->buf, &st)))
2353
0
    goto cleanup;
2354
2355
  /* determine d_type from st_mode */
2356
0
  if (S_ISREG(st.st_mode))
2357
0
    dtype = DT_REG;
2358
0
  else if (S_ISDIR(st.st_mode))
2359
0
    dtype = DT_DIR;
2360
0
  else if (S_ISLNK(st.st_mode))
2361
0
    dtype = DT_LNK;
2362
2363
0
cleanup:
2364
0
  strbuf_setlen(path, base_path_len);
2365
0
  return dtype;
2366
0
}
2367
2368
static int resolve_dtype(int dtype, struct index_state *istate,
2369
       const char *path, int len)
2370
0
{
2371
0
  struct stat st;
2372
2373
0
  if (dtype != DT_UNKNOWN)
2374
0
    return dtype;
2375
0
  dtype = get_index_dtype(istate, path, len);
2376
0
  if (dtype != DT_UNKNOWN)
2377
0
    return dtype;
2378
0
  if (lstat(path, &st))
2379
0
    return dtype;
2380
0
  if (S_ISREG(st.st_mode))
2381
0
    return DT_REG;
2382
0
  if (S_ISDIR(st.st_mode))
2383
0
    return DT_DIR;
2384
0
  if (S_ISLNK(st.st_mode))
2385
0
    return DT_LNK;
2386
0
  return dtype;
2387
0
}
2388
2389
static enum path_treatment treat_path_fast(struct dir_struct *dir,
2390
             struct cached_dir *cdir,
2391
             struct index_state *istate,
2392
             struct strbuf *path,
2393
             int baselen,
2394
             const struct pathspec *pathspec)
2395
0
{
2396
  /*
2397
   * WARNING: From this function, you can return path_recurse or you
2398
   *          can call read_directory_recursive() (or neither), but
2399
   *          you CAN'T DO BOTH.
2400
   */
2401
0
  strbuf_setlen(path, baselen);
2402
0
  if (!cdir->ucd) {
2403
0
    strbuf_addstr(path, cdir->file);
2404
0
    return path_untracked;
2405
0
  }
2406
0
  strbuf_addstr(path, cdir->ucd->name);
2407
  /* treat_one_path() does this before it calls treat_directory() */
2408
0
  strbuf_complete(path, '/');
2409
0
  if (cdir->ucd->check_only)
2410
    /*
2411
     * check_only is set as a result of treat_directory() getting
2412
     * to its bottom. Verify again the same set of directories
2413
     * with check_only set.
2414
     */
2415
0
    return read_directory_recursive(dir, istate, path->buf, path->len,
2416
0
            cdir->ucd, 1, 0, pathspec);
2417
  /*
2418
   * We get path_recurse in the first run when
2419
   * directory_exists_in_index() returns index_nonexistent. We
2420
   * are sure that new changes in the index does not impact the
2421
   * outcome. Return now.
2422
   */
2423
0
  return path_recurse;
2424
0
}
2425
2426
static enum path_treatment treat_path(struct dir_struct *dir,
2427
              struct untracked_cache_dir *untracked,
2428
              struct cached_dir *cdir,
2429
              struct index_state *istate,
2430
              struct strbuf *path,
2431
              int baselen,
2432
              const struct pathspec *pathspec)
2433
0
{
2434
0
  int has_path_in_index, dtype, excluded;
2435
2436
0
  if (!cdir->d_name)
2437
0
    return treat_path_fast(dir, cdir, istate, path,
2438
0
               baselen, pathspec);
2439
0
  if (is_dot_or_dotdot(cdir->d_name) || !fspathcmp(cdir->d_name, ".git"))
2440
0
    return path_none;
2441
0
  strbuf_setlen(path, baselen);
2442
0
  strbuf_addstr(path, cdir->d_name);
2443
0
  if (simplify_away(path->buf, path->len, pathspec))
2444
0
    return path_none;
2445
2446
0
  dtype = resolve_dtype(cdir->d_type, istate, path->buf, path->len);
2447
2448
  /* Always exclude indexed files */
2449
0
  has_path_in_index = !!index_file_exists(istate, path->buf, path->len,
2450
0
            ignore_case);
2451
0
  if (dtype != DT_DIR && has_path_in_index)
2452
0
    return path_none;
2453
2454
  /*
2455
   * When we are looking at a directory P in the working tree,
2456
   * there are three cases:
2457
   *
2458
   * (1) P exists in the index.  Everything inside the directory P in
2459
   * the working tree needs to go when P is checked out from the
2460
   * index.
2461
   *
2462
   * (2) P does not exist in the index, but there is P/Q in the index.
2463
   * We know P will stay a directory when we check out the contents
2464
   * of the index, but we do not know yet if there is a directory
2465
   * P/Q in the working tree to be killed, so we need to recurse.
2466
   *
2467
   * (3) P does not exist in the index, and there is no P/Q in the index
2468
   * to require P to be a directory, either.  Only in this case, we
2469
   * know that everything inside P will not be killed without
2470
   * recursing.
2471
   */
2472
0
  if ((dir->flags & DIR_COLLECT_KILLED_ONLY) &&
2473
0
      (dtype == DT_DIR) &&
2474
0
      !has_path_in_index &&
2475
0
      (directory_exists_in_index(istate, path->buf, path->len) == index_nonexistent))
2476
0
    return path_none;
2477
2478
0
  excluded = is_excluded(dir, istate, path->buf, &dtype);
2479
2480
  /*
2481
   * Excluded? If we don't explicitly want to show
2482
   * ignored files, ignore it
2483
   */
2484
0
  if (excluded && !(dir->flags & (DIR_SHOW_IGNORED|DIR_SHOW_IGNORED_TOO)))
2485
0
    return path_excluded;
2486
2487
0
  switch (dtype) {
2488
0
  default:
2489
0
    return path_none;
2490
0
  case DT_DIR:
2491
    /*
2492
     * WARNING: Do not ignore/amend the return value from
2493
     * treat_directory(), and especially do not change it to return
2494
     * path_recurse as that can cause exponential slowdown.
2495
     * Instead, modify treat_directory() to return the right value.
2496
     */
2497
0
    strbuf_addch(path, '/');
2498
0
    return treat_directory(dir, istate, untracked,
2499
0
               path->buf, path->len,
2500
0
               baselen, excluded, pathspec);
2501
0
  case DT_REG:
2502
0
  case DT_LNK:
2503
0
    if (pathspec &&
2504
0
        !match_pathspec(istate, pathspec, path->buf, path->len,
2505
0
            0 /* prefix */, NULL /* seen */,
2506
0
            0 /* is_dir */))
2507
0
      return path_none;
2508
0
    if (excluded)
2509
0
      return path_excluded;
2510
0
    return path_untracked;
2511
0
  }
2512
0
}
2513
2514
static void add_untracked(struct untracked_cache_dir *dir, const char *name)
2515
0
{
2516
0
  if (!dir)
2517
0
    return;
2518
0
  ALLOC_GROW(dir->untracked, dir->untracked_nr + 1,
2519
0
       dir->untracked_alloc);
2520
0
  dir->untracked[dir->untracked_nr++] = xstrdup(name);
2521
0
}
2522
2523
static int valid_cached_dir(struct dir_struct *dir,
2524
          struct untracked_cache_dir *untracked,
2525
          struct index_state *istate,
2526
          struct strbuf *path,
2527
          int check_only)
2528
0
{
2529
0
  struct stat st;
2530
2531
0
  if (!untracked)
2532
0
    return 0;
2533
2534
  /*
2535
   * With fsmonitor, we can trust the untracked cache's valid field.
2536
   */
2537
0
  refresh_fsmonitor(istate);
2538
0
  if (!(dir->untracked->use_fsmonitor && untracked->valid)) {
2539
0
    if (lstat(path->len ? path->buf : ".", &st)) {
2540
0
      memset(&untracked->stat_data, 0, sizeof(untracked->stat_data));
2541
0
      return 0;
2542
0
    }
2543
0
    if (!untracked->valid ||
2544
0
      match_stat_data_racy(istate, &untracked->stat_data, &st)) {
2545
0
      fill_stat_data(&untracked->stat_data, &st);
2546
0
      return 0;
2547
0
    }
2548
0
  }
2549
2550
0
  if (untracked->check_only != !!check_only)
2551
0
    return 0;
2552
2553
  /*
2554
   * prep_exclude will be called eventually on this directory,
2555
   * but it's called much later in last_matching_pattern(). We
2556
   * need it now to determine the validity of the cache for this
2557
   * path. The next calls will be nearly no-op, the way
2558
   * prep_exclude() is designed.
2559
   */
2560
0
  if (path->len && path->buf[path->len - 1] != '/') {
2561
0
    strbuf_addch(path, '/');
2562
0
    prep_exclude(dir, istate, path->buf, path->len);
2563
0
    strbuf_setlen(path, path->len - 1);
2564
0
  } else
2565
0
    prep_exclude(dir, istate, path->buf, path->len);
2566
2567
  /* hopefully prep_exclude() haven't invalidated this entry... */
2568
0
  return untracked->valid;
2569
0
}
2570
2571
static int open_cached_dir(struct cached_dir *cdir,
2572
         struct dir_struct *dir,
2573
         struct untracked_cache_dir *untracked,
2574
         struct index_state *istate,
2575
         struct strbuf *path,
2576
         int check_only)
2577
0
{
2578
0
  const char *c_path;
2579
2580
0
  memset(cdir, 0, sizeof(*cdir));
2581
0
  cdir->untracked = untracked;
2582
0
  if (valid_cached_dir(dir, untracked, istate, path, check_only))
2583
0
    return 0;
2584
0
  c_path = path->len ? path->buf : ".";
2585
0
  cdir->fdir = opendir(c_path);
2586
0
  if (!cdir->fdir)
2587
0
    warning_errno(_("could not open directory '%s'"), c_path);
2588
0
  if (dir->untracked) {
2589
0
    invalidate_directory(dir->untracked, untracked);
2590
0
    dir->untracked->dir_opened++;
2591
0
  }
2592
0
  if (!cdir->fdir)
2593
0
    return -1;
2594
0
  return 0;
2595
0
}
2596
2597
static int read_cached_dir(struct cached_dir *cdir)
2598
0
{
2599
0
  struct dirent *de;
2600
2601
0
  if (cdir->fdir) {
2602
0
    de = readdir_skip_dot_and_dotdot(cdir->fdir);
2603
0
    if (!de) {
2604
0
      cdir->d_name = NULL;
2605
0
      cdir->d_type = DT_UNKNOWN;
2606
0
      return -1;
2607
0
    }
2608
0
    cdir->d_name = de->d_name;
2609
0
    cdir->d_type = DTYPE(de);
2610
0
    return 0;
2611
0
  }
2612
0
  while (cdir->nr_dirs < cdir->untracked->dirs_nr) {
2613
0
    struct untracked_cache_dir *d = cdir->untracked->dirs[cdir->nr_dirs];
2614
0
    if (!d->recurse) {
2615
0
      cdir->nr_dirs++;
2616
0
      continue;
2617
0
    }
2618
0
    cdir->ucd = d;
2619
0
    cdir->nr_dirs++;
2620
0
    return 0;
2621
0
  }
2622
0
  cdir->ucd = NULL;
2623
0
  if (cdir->nr_files < cdir->untracked->untracked_nr) {
2624
0
    struct untracked_cache_dir *d = cdir->untracked;
2625
0
    cdir->file = d->untracked[cdir->nr_files++];
2626
0
    return 0;
2627
0
  }
2628
0
  return -1;
2629
0
}
2630
2631
static void close_cached_dir(struct cached_dir *cdir)
2632
0
{
2633
0
  if (cdir->fdir)
2634
0
    closedir(cdir->fdir);
2635
  /*
2636
   * We have gone through this directory and found no untracked
2637
   * entries. Mark it valid.
2638
   */
2639
0
  if (cdir->untracked) {
2640
0
    cdir->untracked->valid = 1;
2641
0
    cdir->untracked->recurse = 1;
2642
0
  }
2643
0
}
2644
2645
static void add_path_to_appropriate_result_list(struct dir_struct *dir,
2646
  struct untracked_cache_dir *untracked,
2647
  struct cached_dir *cdir,
2648
  struct index_state *istate,
2649
  struct strbuf *path,
2650
  int baselen,
2651
  const struct pathspec *pathspec,
2652
  enum path_treatment state)
2653
0
{
2654
  /* add the path to the appropriate result list */
2655
0
  switch (state) {
2656
0
  case path_excluded:
2657
0
    if (dir->flags & DIR_SHOW_IGNORED)
2658
0
      dir_add_name(dir, istate, path->buf, path->len);
2659
0
    else if ((dir->flags & DIR_SHOW_IGNORED_TOO) ||
2660
0
      ((dir->flags & DIR_COLLECT_IGNORED) &&
2661
0
      exclude_matches_pathspec(path->buf, path->len,
2662
0
             pathspec)))
2663
0
      dir_add_ignored(dir, istate, path->buf, path->len);
2664
0
    break;
2665
2666
0
  case path_untracked:
2667
0
    if (dir->flags & DIR_SHOW_IGNORED)
2668
0
      break;
2669
0
    dir_add_name(dir, istate, path->buf, path->len);
2670
0
    if (cdir->fdir)
2671
0
      add_untracked(untracked, path->buf + baselen);
2672
0
    break;
2673
2674
0
  default:
2675
0
    break;
2676
0
  }
2677
0
}
2678
2679
/*
2680
 * Read a directory tree. We currently ignore anything but
2681
 * directories, regular files and symlinks. That's because git
2682
 * doesn't handle them at all yet. Maybe that will change some
2683
 * day.
2684
 *
2685
 * Also, we ignore the name ".git" (even if it is not a directory).
2686
 * That likely will not change.
2687
 *
2688
 * If 'stop_at_first_file' is specified, 'path_excluded' is returned
2689
 * to signal that a file was found. This is the least significant value that
2690
 * indicates that a file was encountered that does not depend on the order of
2691
 * whether an untracked or excluded path was encountered first.
2692
 *
2693
 * Returns the most significant path_treatment value encountered in the scan.
2694
 * If 'stop_at_first_file' is specified, `path_excluded` is the most
2695
 * significant path_treatment value that will be returned.
2696
 */
2697
2698
static enum path_treatment read_directory_recursive(struct dir_struct *dir,
2699
  struct index_state *istate, const char *base, int baselen,
2700
  struct untracked_cache_dir *untracked, int check_only,
2701
  int stop_at_first_file, const struct pathspec *pathspec)
2702
0
{
2703
  /*
2704
   * WARNING: Do NOT recurse unless path_recurse is returned from
2705
   *          treat_path().  Recursing on any other return value
2706
   *          can result in exponential slowdown.
2707
   */
2708
0
  struct cached_dir cdir;
2709
0
  enum path_treatment state, subdir_state, dir_state = path_none;
2710
0
  struct strbuf path = STRBUF_INIT;
2711
2712
0
  strbuf_add(&path, base, baselen);
2713
2714
0
  if (open_cached_dir(&cdir, dir, untracked, istate, &path, check_only))
2715
0
    goto out;
2716
0
  dir->internal.visited_directories++;
2717
2718
0
  if (untracked)
2719
0
    untracked->check_only = !!check_only;
2720
2721
0
  while (!read_cached_dir(&cdir)) {
2722
    /* check how the file or directory should be treated */
2723
0
    state = treat_path(dir, untracked, &cdir, istate, &path,
2724
0
           baselen, pathspec);
2725
0
    dir->internal.visited_paths++;
2726
2727
0
    if (state > dir_state)
2728
0
      dir_state = state;
2729
2730
    /* recurse into subdir if instructed by treat_path */
2731
0
    if (state == path_recurse) {
2732
0
      struct untracked_cache_dir *ud;
2733
0
      ud = lookup_untracked(dir->untracked,
2734
0
                untracked,
2735
0
                path.buf + baselen,
2736
0
                path.len - baselen);
2737
0
      subdir_state =
2738
0
        read_directory_recursive(dir, istate, path.buf,
2739
0
               path.len, ud,
2740
0
               check_only, stop_at_first_file, pathspec);
2741
0
      if (subdir_state > dir_state)
2742
0
        dir_state = subdir_state;
2743
2744
0
      if (pathspec &&
2745
0
          !match_pathspec(istate, pathspec, path.buf, path.len,
2746
0
              0 /* prefix */, NULL,
2747
0
              0 /* do NOT special case dirs */))
2748
0
        state = path_none;
2749
0
    }
2750
2751
0
    if (check_only) {
2752
0
      if (stop_at_first_file) {
2753
        /*
2754
         * If stopping at first file, then
2755
         * signal that a file was found by
2756
         * returning `path_excluded`. This is
2757
         * to return a consistent value
2758
         * regardless of whether an ignored or
2759
         * excluded file happened to be
2760
         * encountered 1st.
2761
         *
2762
         * In current usage, the
2763
         * `stop_at_first_file` is passed when
2764
         * an ancestor directory has matched
2765
         * an exclude pattern, so any found
2766
         * files will be excluded.
2767
         */
2768
0
        if (dir_state >= path_excluded) {
2769
0
          dir_state = path_excluded;
2770
0
          break;
2771
0
        }
2772
0
      }
2773
2774
      /* abort early if maximum state has been reached */
2775
0
      if (dir_state == path_untracked) {
2776
0
        if (cdir.fdir)
2777
0
          add_untracked(untracked, path.buf + baselen);
2778
0
        break;
2779
0
      }
2780
      /* skip the add_path_to_appropriate_result_list() */
2781
0
      continue;
2782
0
    }
2783
2784
0
    add_path_to_appropriate_result_list(dir, untracked, &cdir,
2785
0
                istate, &path, baselen,
2786
0
                pathspec, state);
2787
0
  }
2788
0
  close_cached_dir(&cdir);
2789
0
 out:
2790
0
  strbuf_release(&path);
2791
2792
0
  return dir_state;
2793
0
}
2794
2795
int cmp_dir_entry(const void *p1, const void *p2)
2796
0
{
2797
0
  const struct dir_entry *e1 = *(const struct dir_entry **)p1;
2798
0
  const struct dir_entry *e2 = *(const struct dir_entry **)p2;
2799
2800
0
  return name_compare(e1->name, e1->len, e2->name, e2->len);
2801
0
}
2802
2803
/* check if *out lexically strictly contains *in */
2804
int check_dir_entry_contains(const struct dir_entry *out, const struct dir_entry *in)
2805
0
{
2806
0
  return (out->len < in->len) &&
2807
0
    (out->name[out->len - 1] == '/') &&
2808
0
    !memcmp(out->name, in->name, out->len);
2809
0
}
2810
2811
static int treat_leading_path(struct dir_struct *dir,
2812
            struct index_state *istate,
2813
            const char *path, int len,
2814
            const struct pathspec *pathspec)
2815
0
{
2816
0
  struct strbuf sb = STRBUF_INIT;
2817
0
  struct strbuf subdir = STRBUF_INIT;
2818
0
  int prevlen, baselen;
2819
0
  const char *cp;
2820
0
  struct cached_dir cdir;
2821
0
  enum path_treatment state = path_none;
2822
2823
  /*
2824
   * For each directory component of path, we are going to check whether
2825
   * that path is relevant given the pathspec.  For example, if path is
2826
   *    foo/bar/baz/
2827
   * then we will ask treat_path() whether we should go into foo, then
2828
   * whether we should go into bar, then whether baz is relevant.
2829
   * Checking each is important because e.g. if path is
2830
   *    .git/info/
2831
   * then we need to check .git to know we shouldn't traverse it.
2832
   * If the return from treat_path() is:
2833
   *    * path_none, for any path, we return false.
2834
   *    * path_recurse, for all path components, we return true
2835
   *    * <anything else> for some intermediate component, we make sure
2836
   *        to add that path to the relevant list but return false
2837
   *        signifying that we shouldn't recurse into it.
2838
   */
2839
2840
0
  while (len && path[len - 1] == '/')
2841
0
    len--;
2842
0
  if (!len)
2843
0
    return 1;
2844
2845
0
  memset(&cdir, 0, sizeof(cdir));
2846
0
  cdir.d_type = DT_DIR;
2847
0
  baselen = 0;
2848
0
  prevlen = 0;
2849
0
  while (1) {
2850
0
    prevlen = baselen + !!baselen;
2851
0
    cp = path + prevlen;
2852
0
    cp = memchr(cp, '/', path + len - cp);
2853
0
    if (!cp)
2854
0
      baselen = len;
2855
0
    else
2856
0
      baselen = cp - path;
2857
0
    strbuf_reset(&sb);
2858
0
    strbuf_add(&sb, path, baselen);
2859
0
    if (!is_directory(sb.buf))
2860
0
      break;
2861
0
    strbuf_reset(&sb);
2862
0
    strbuf_add(&sb, path, prevlen);
2863
0
    strbuf_reset(&subdir);
2864
0
    strbuf_add(&subdir, path+prevlen, baselen-prevlen);
2865
0
    cdir.d_name = subdir.buf;
2866
0
    state = treat_path(dir, NULL, &cdir, istate, &sb, prevlen, pathspec);
2867
2868
0
    if (state != path_recurse)
2869
0
      break; /* do not recurse into it */
2870
0
    if (len <= baselen)
2871
0
      break; /* finished checking */
2872
0
  }
2873
0
  add_path_to_appropriate_result_list(dir, NULL, &cdir, istate,
2874
0
              &sb, baselen, pathspec,
2875
0
              state);
2876
2877
0
  strbuf_release(&subdir);
2878
0
  strbuf_release(&sb);
2879
0
  return state == path_recurse;
2880
0
}
2881
2882
static const char *get_ident_string(void)
2883
0
{
2884
0
  static struct strbuf sb = STRBUF_INIT;
2885
0
  struct utsname uts;
2886
2887
0
  if (sb.len)
2888
0
    return sb.buf;
2889
0
  if (uname(&uts) < 0)
2890
0
    die_errno(_("failed to get kernel name and information"));
2891
0
  strbuf_addf(&sb, "Location %s, system %s", repo_get_work_tree(the_repository),
2892
0
        uts.sysname);
2893
0
  return sb.buf;
2894
0
}
2895
2896
static int ident_in_untracked(const struct untracked_cache *uc)
2897
0
{
2898
  /*
2899
   * Previous git versions may have saved many NUL separated
2900
   * strings in the "ident" field, but it is insane to manage
2901
   * many locations, so just take care of the first one.
2902
   */
2903
2904
0
  return !strcmp(uc->ident.buf, get_ident_string());
2905
0
}
2906
2907
static void set_untracked_ident(struct untracked_cache *uc)
2908
0
{
2909
0
  strbuf_reset(&uc->ident);
2910
0
  strbuf_addstr(&uc->ident, get_ident_string());
2911
2912
  /*
2913
   * This strbuf used to contain a list of NUL separated
2914
   * strings, so save NUL too for backward compatibility.
2915
   */
2916
0
  strbuf_addch(&uc->ident, 0);
2917
0
}
2918
2919
static unsigned new_untracked_cache_flags(struct index_state *istate)
2920
0
{
2921
0
  struct repository *repo = istate->repo;
2922
0
  const char *val;
2923
2924
  /*
2925
   * This logic is coordinated with the setting of these flags in
2926
   * wt-status.c#wt_status_collect_untracked(), and the evaluation
2927
   * of the config setting in commit.c#git_status_config()
2928
   */
2929
0
  if (!repo_config_get_string_tmp(repo, "status.showuntrackedfiles", &val) &&
2930
0
      !strcmp(val, "all"))
2931
0
    return 0;
2932
2933
  /*
2934
   * The default, if "all" is not set, is "normal" - leading us here.
2935
   * If the value is "none" then it really doesn't matter.
2936
   */
2937
0
  return DIR_SHOW_OTHER_DIRECTORIES | DIR_HIDE_EMPTY_DIRECTORIES;
2938
0
}
2939
2940
static void new_untracked_cache(struct index_state *istate, int flags)
2941
0
{
2942
0
  struct untracked_cache *uc = xcalloc(1, sizeof(*uc));
2943
0
  strbuf_init(&uc->ident, 100);
2944
0
  uc->exclude_per_dir = ".gitignore";
2945
0
  uc->dir_flags = flags >= 0 ? flags : new_untracked_cache_flags(istate);
2946
0
  set_untracked_ident(uc);
2947
0
  istate->untracked = uc;
2948
0
  istate->cache_changed |= UNTRACKED_CHANGED;
2949
0
}
2950
2951
void add_untracked_cache(struct index_state *istate)
2952
0
{
2953
0
  if (!istate->untracked) {
2954
0
    new_untracked_cache(istate, -1);
2955
0
  } else {
2956
0
    if (!ident_in_untracked(istate->untracked)) {
2957
0
      free_untracked_cache(istate->untracked);
2958
0
      new_untracked_cache(istate, -1);
2959
0
    }
2960
0
  }
2961
0
}
2962
2963
void remove_untracked_cache(struct index_state *istate)
2964
0
{
2965
0
  if (istate->untracked) {
2966
0
    free_untracked_cache(istate->untracked);
2967
0
    istate->untracked = NULL;
2968
0
    istate->cache_changed |= UNTRACKED_CHANGED;
2969
0
  }
2970
0
}
2971
2972
static struct untracked_cache_dir *validate_untracked_cache(struct dir_struct *dir,
2973
                  int base_len,
2974
                  const struct pathspec *pathspec,
2975
                  struct index_state *istate)
2976
0
{
2977
0
  struct untracked_cache_dir *root;
2978
0
  static int untracked_cache_disabled = -1;
2979
2980
0
  if (!dir->untracked)
2981
0
    return NULL;
2982
0
  if (untracked_cache_disabled < 0)
2983
0
    untracked_cache_disabled = git_env_bool("GIT_DISABLE_UNTRACKED_CACHE", 0);
2984
0
  if (untracked_cache_disabled)
2985
0
    return NULL;
2986
2987
  /*
2988
   * We only support $GIT_DIR/info/exclude and core.excludesfile
2989
   * as the global ignore rule files. Any other additions
2990
   * (e.g. from command line) invalidate the cache. This
2991
   * condition also catches running setup_standard_excludes()
2992
   * before setting dir->untracked!
2993
   */
2994
0
  if (dir->internal.unmanaged_exclude_files)
2995
0
    return NULL;
2996
2997
  /*
2998
   * Optimize for the main use case only: whole-tree git
2999
   * status. More work involved in treat_leading_path() if we
3000
   * use cache on just a subset of the worktree. pathspec
3001
   * support could make the matter even worse.
3002
   */
3003
0
  if (base_len || (pathspec && pathspec->nr))
3004
0
    return NULL;
3005
3006
  /* We don't support collecting ignore files */
3007
0
  if (dir->flags & (DIR_SHOW_IGNORED | DIR_SHOW_IGNORED_TOO |
3008
0
      DIR_COLLECT_IGNORED))
3009
0
    return NULL;
3010
3011
  /*
3012
   * If we use .gitignore in the cache and now you change it to
3013
   * .gitexclude, everything will go wrong.
3014
   */
3015
0
  if (dir->exclude_per_dir != dir->untracked->exclude_per_dir &&
3016
0
      strcmp(dir->exclude_per_dir, dir->untracked->exclude_per_dir))
3017
0
    return NULL;
3018
3019
  /*
3020
   * EXC_CMDL is not considered in the cache. If people set it,
3021
   * skip the cache.
3022
   */
3023
0
  if (dir->internal.exclude_list_group[EXC_CMDL].nr)
3024
0
    return NULL;
3025
3026
0
  if (!ident_in_untracked(dir->untracked)) {
3027
0
    warning(_("untracked cache is disabled on this system or location"));
3028
0
    return NULL;
3029
0
  }
3030
3031
  /*
3032
   * If the untracked structure we received does not have the same flags
3033
   * as requested in this run, we're going to need to either discard the
3034
   * existing structure (and potentially later recreate), or bypass the
3035
   * untracked cache mechanism for this run.
3036
   */
3037
0
  if (dir->flags != dir->untracked->dir_flags) {
3038
    /*
3039
     * If the untracked structure we received does not have the same flags
3040
     * as configured, then we need to reset / create a new "untracked"
3041
     * structure to match the new config.
3042
     *
3043
     * Keeping the saved and used untracked cache consistent with the
3044
     * configuration provides an opportunity for frequent users of
3045
     * "git status -uall" to leverage the untracked cache by aligning their
3046
     * configuration - setting "status.showuntrackedfiles" to "all" or
3047
     * "normal" as appropriate.
3048
     *
3049
     * Previously using -uall (or setting "status.showuntrackedfiles" to
3050
     * "all") was incompatible with untracked cache and *consistently*
3051
     * caused surprisingly bad performance (with fscache and fsmonitor
3052
     * enabled) on Windows.
3053
     *
3054
     * IMPROVEMENT OPPORTUNITY: If we reworked the untracked cache storage
3055
     * to not be as bound up with the desired output in a given run,
3056
     * and instead iterated through and stored enough information to
3057
     * correctly serve both "modes", then users could get peak performance
3058
     * with or without '-uall' regardless of their
3059
     * "status.showuntrackedfiles" config.
3060
     */
3061
0
    if (dir->untracked->dir_flags != new_untracked_cache_flags(istate)) {
3062
0
      free_untracked_cache(istate->untracked);
3063
0
      new_untracked_cache(istate, dir->flags);
3064
0
      dir->untracked = istate->untracked;
3065
0
    }
3066
0
    else {
3067
      /*
3068
       * Current untracked cache data is consistent with config, but not
3069
       * usable in this request/run; just bypass untracked cache.
3070
       */
3071
0
      return NULL;
3072
0
    }
3073
0
  }
3074
3075
0
  if (!dir->untracked->root) {
3076
    /* Untracked cache existed but is not initialized; fix that */
3077
0
    FLEX_ALLOC_STR(dir->untracked->root, name, "");
3078
0
    istate->cache_changed |= UNTRACKED_CHANGED;
3079
0
  }
3080
3081
  /* Validate $GIT_DIR/info/exclude and core.excludesfile */
3082
0
  root = dir->untracked->root;
3083
0
  if (!oideq(&dir->internal.ss_info_exclude.oid,
3084
0
       &dir->untracked->ss_info_exclude.oid)) {
3085
0
    invalidate_gitignore(dir->untracked, root);
3086
0
    dir->untracked->ss_info_exclude = dir->internal.ss_info_exclude;
3087
0
  }
3088
0
  if (!oideq(&dir->internal.ss_excludes_file.oid,
3089
0
       &dir->untracked->ss_excludes_file.oid)) {
3090
0
    invalidate_gitignore(dir->untracked, root);
3091
0
    dir->untracked->ss_excludes_file = dir->internal.ss_excludes_file;
3092
0
  }
3093
3094
  /* Make sure this directory is not dropped out at saving phase */
3095
0
  root->recurse = 1;
3096
0
  return root;
3097
0
}
3098
3099
static void emit_traversal_statistics(struct dir_struct *dir,
3100
              struct repository *repo,
3101
              const char *path,
3102
              int path_len)
3103
0
{
3104
0
  if (!trace2_is_enabled())
3105
0
    return;
3106
3107
0
  if (!path_len) {
3108
0
    trace2_data_string("read_directory", repo, "path", "");
3109
0
  } else {
3110
0
    struct strbuf tmp = STRBUF_INIT;
3111
0
    strbuf_add(&tmp, path, path_len);
3112
0
    trace2_data_string("read_directory", repo, "path", tmp.buf);
3113
0
    strbuf_release(&tmp);
3114
0
  }
3115
3116
0
  trace2_data_intmax("read_directory", repo,
3117
0
         "directories-visited", dir->internal.visited_directories);
3118
0
  trace2_data_intmax("read_directory", repo,
3119
0
         "paths-visited", dir->internal.visited_paths);
3120
3121
0
  if (!dir->untracked)
3122
0
    return;
3123
0
  trace2_data_intmax("read_directory", repo,
3124
0
         "node-creation", dir->untracked->dir_created);
3125
0
  trace2_data_intmax("read_directory", repo,
3126
0
         "gitignore-invalidation",
3127
0
         dir->untracked->gitignore_invalidated);
3128
0
  trace2_data_intmax("read_directory", repo,
3129
0
         "directory-invalidation",
3130
0
         dir->untracked->dir_invalidated);
3131
0
  trace2_data_intmax("read_directory", repo,
3132
0
         "opendir", dir->untracked->dir_opened);
3133
0
}
3134
3135
int read_directory(struct dir_struct *dir, struct index_state *istate,
3136
       const char *path, int len, const struct pathspec *pathspec)
3137
0
{
3138
0
  struct untracked_cache_dir *untracked;
3139
3140
0
  trace2_region_enter("dir", "read_directory", istate->repo);
3141
0
  dir->internal.visited_paths = 0;
3142
0
  dir->internal.visited_directories = 0;
3143
3144
0
  if (has_symlink_leading_path(path, len)) {
3145
0
    trace2_region_leave("dir", "read_directory", istate->repo);
3146
0
    return dir->nr;
3147
0
  }
3148
3149
0
  untracked = validate_untracked_cache(dir, len, pathspec, istate);
3150
0
  if (!untracked)
3151
    /*
3152
     * make sure untracked cache code path is disabled,
3153
     * e.g. prep_exclude()
3154
     */
3155
0
    dir->untracked = NULL;
3156
0
  if (!len || treat_leading_path(dir, istate, path, len, pathspec))
3157
0
    read_directory_recursive(dir, istate, path, len, untracked, 0, 0, pathspec);
3158
0
  QSORT(dir->entries, dir->nr, cmp_dir_entry);
3159
0
  QSORT(dir->ignored, dir->ignored_nr, cmp_dir_entry);
3160
3161
0
  emit_traversal_statistics(dir, istate->repo, path, len);
3162
3163
0
  trace2_region_leave("dir", "read_directory", istate->repo);
3164
0
  if (dir->untracked) {
3165
0
    static int force_untracked_cache = -1;
3166
3167
0
    if (force_untracked_cache < 0)
3168
0
      force_untracked_cache =
3169
0
        git_env_bool("GIT_FORCE_UNTRACKED_CACHE", -1);
3170
0
    if (force_untracked_cache < 0)
3171
0
      force_untracked_cache = (istate->repo->settings.core_untracked_cache == UNTRACKED_CACHE_WRITE);
3172
0
    if (force_untracked_cache &&
3173
0
      dir->untracked == istate->untracked &&
3174
0
        (dir->untracked->dir_opened ||
3175
0
         dir->untracked->gitignore_invalidated ||
3176
0
         dir->untracked->dir_invalidated))
3177
0
      istate->cache_changed |= UNTRACKED_CHANGED;
3178
0
    if (dir->untracked != istate->untracked) {
3179
0
      FREE_AND_NULL(dir->untracked);
3180
0
    }
3181
0
  }
3182
3183
0
  return dir->nr;
3184
0
}
3185
3186
int file_exists(const char *f)
3187
0
{
3188
0
  struct stat sb;
3189
0
  return lstat(f, &sb) == 0;
3190
0
}
3191
3192
int repo_file_exists(struct repository *repo, const char *path)
3193
0
{
3194
0
  if (repo != the_repository)
3195
0
    BUG("do not know how to check file existence in arbitrary repo");
3196
3197
0
  return file_exists(path);
3198
0
}
3199
3200
static int cmp_icase(char a, char b)
3201
0
{
3202
0
  if (a == b)
3203
0
    return 0;
3204
0
  if (ignore_case)
3205
0
    return toupper(a) - toupper(b);
3206
0
  return a - b;
3207
0
}
3208
3209
/*
3210
 * Given two normalized paths (a trailing slash is ok), if subdir is
3211
 * outside dir, return -1.  Otherwise return the offset in subdir that
3212
 * can be used as relative path to dir.
3213
 */
3214
int dir_inside_of(const char *subdir, const char *dir)
3215
0
{
3216
0
  int offset = 0;
3217
3218
0
  assert(dir && subdir && *dir && *subdir);
3219
3220
0
  while (*dir && *subdir && !cmp_icase(*dir, *subdir)) {
3221
0
    dir++;
3222
0
    subdir++;
3223
0
    offset++;
3224
0
  }
3225
3226
  /* hel[p]/me vs hel[l]/yeah */
3227
0
  if (*dir && *subdir)
3228
0
    return -1;
3229
3230
0
  if (!*subdir)
3231
0
    return !*dir ? offset : -1; /* same dir */
3232
3233
  /* foo/[b]ar vs foo/[] */
3234
0
  if (is_dir_sep(dir[-1]))
3235
0
    return is_dir_sep(subdir[-1]) ? offset : -1;
3236
3237
  /* foo[/]bar vs foo[] */
3238
0
  return is_dir_sep(*subdir) ? offset + 1 : -1;
3239
0
}
3240
3241
int is_inside_dir(const char *dir)
3242
0
{
3243
0
  char *cwd;
3244
0
  int rc;
3245
3246
0
  if (!dir)
3247
0
    return 0;
3248
3249
0
  cwd = xgetcwd();
3250
0
  rc = (dir_inside_of(cwd, dir) >= 0);
3251
0
  free(cwd);
3252
0
  return rc;
3253
0
}
3254
3255
int is_empty_dir(const char *path)
3256
0
{
3257
0
  DIR *dir = opendir(path);
3258
0
  struct dirent *e;
3259
0
  int ret = 1;
3260
3261
0
  if (!dir)
3262
0
    return 0;
3263
3264
0
  e = readdir_skip_dot_and_dotdot(dir);
3265
0
  if (e)
3266
0
    ret = 0;
3267
3268
0
  closedir(dir);
3269
0
  return ret;
3270
0
}
3271
3272
char *git_url_basename(const char *repo, int is_bundle, int is_bare)
3273
0
{
3274
0
  const char *end = repo + strlen(repo), *start, *ptr;
3275
0
  size_t len;
3276
0
  char *dir;
3277
3278
  /*
3279
   * Skip scheme.
3280
   */
3281
0
  start = strstr(repo, "://");
3282
0
  if (!start)
3283
0
    start = repo;
3284
0
  else
3285
0
    start += 3;
3286
3287
  /*
3288
   * Skip authentication data. The stripping does happen
3289
   * greedily, such that we strip up to the last '@' inside
3290
   * the host part.
3291
   */
3292
0
  for (ptr = start; ptr < end && !is_dir_sep(*ptr); ptr++) {
3293
0
    if (*ptr == '@')
3294
0
      start = ptr + 1;
3295
0
  }
3296
3297
  /*
3298
   * Strip trailing spaces, slashes and /.git
3299
   */
3300
0
  while (start < end && (is_dir_sep(end[-1]) || isspace(end[-1])))
3301
0
    end--;
3302
0
  if (end - start > 5 && is_dir_sep(end[-5]) &&
3303
0
      !strncmp(end - 4, ".git", 4)) {
3304
0
    end -= 5;
3305
0
    while (start < end && is_dir_sep(end[-1]))
3306
0
      end--;
3307
0
  }
3308
3309
  /*
3310
   * It should not be possible to overflow `ptrdiff_t` by passing in an
3311
   * insanely long URL, but GCC does not know that and will complain
3312
   * without this check.
3313
   */
3314
0
  if (end - start < 0)
3315
0
    die(_("No directory name could be guessed.\n"
3316
0
          "Please specify a directory on the command line"));
3317
3318
  /*
3319
   * Strip trailing port number if we've got only a
3320
   * hostname (that is, there is no dir separator but a
3321
   * colon). This check is required such that we do not
3322
   * strip URI's like '/foo/bar:2222.git', which should
3323
   * result in a dir '2222' being guessed due to backwards
3324
   * compatibility.
3325
   */
3326
0
  if (memchr(start, '/', end - start) == NULL
3327
0
      && memchr(start, ':', end - start) != NULL) {
3328
0
    ptr = end;
3329
0
    while (start < ptr && isdigit(ptr[-1]) && ptr[-1] != ':')
3330
0
      ptr--;
3331
0
    if (start < ptr && ptr[-1] == ':')
3332
0
      end = ptr - 1;
3333
0
  }
3334
3335
  /*
3336
   * Find last component. To remain backwards compatible we
3337
   * also regard colons as path separators, such that
3338
   * cloning a repository 'foo:bar.git' would result in a
3339
   * directory 'bar' being guessed.
3340
   */
3341
0
  ptr = end;
3342
0
  while (start < ptr && !is_dir_sep(ptr[-1]) && ptr[-1] != ':')
3343
0
    ptr--;
3344
0
  start = ptr;
3345
3346
  /*
3347
   * Strip .{bundle,git}.
3348
   */
3349
0
  len = end - start;
3350
0
  strip_suffix_mem(start, &len, is_bundle ? ".bundle" : ".git");
3351
3352
0
  if (!len || (len == 1 && *start == '/'))
3353
0
    die(_("No directory name could be guessed.\n"
3354
0
          "Please specify a directory on the command line"));
3355
3356
0
  if (is_bare)
3357
0
    dir = xstrfmt("%.*s.git", (int)len, start);
3358
0
  else
3359
0
    dir = xstrndup(start, len);
3360
  /*
3361
   * Replace sequences of 'control' characters and whitespace
3362
   * with one ascii space, remove leading and trailing spaces.
3363
   */
3364
0
  if (*dir) {
3365
0
    char *out = dir;
3366
0
    int prev_space = 1 /* strip leading whitespace */;
3367
0
    for (end = dir; *end; ++end) {
3368
0
      char ch = *end;
3369
0
      if ((unsigned char)ch < '\x20')
3370
0
        ch = '\x20';
3371
0
      if (isspace(ch)) {
3372
0
        if (prev_space)
3373
0
          continue;
3374
0
        prev_space = 1;
3375
0
      } else
3376
0
        prev_space = 0;
3377
0
      *out++ = ch;
3378
0
    }
3379
0
    *out = '\0';
3380
0
    if (out > dir && prev_space)
3381
0
      out[-1] = '\0';
3382
0
  }
3383
0
  return dir;
3384
0
}
3385
3386
void strip_dir_trailing_slashes(char *dir)
3387
0
{
3388
0
  char *end = dir + strlen(dir);
3389
3390
0
  while (dir < end - 1 && is_dir_sep(end[-1]))
3391
0
    end--;
3392
0
  *end = '\0';
3393
0
}
3394
3395
static int remove_dir_recurse(struct strbuf *path, int flag, int *kept_up)
3396
0
{
3397
0
  DIR *dir;
3398
0
  struct dirent *e;
3399
0
  int ret = 0, original_len = path->len, len, kept_down = 0;
3400
0
  int only_empty = (flag & REMOVE_DIR_EMPTY_ONLY);
3401
0
  int keep_toplevel = (flag & REMOVE_DIR_KEEP_TOPLEVEL);
3402
0
  int purge_original_cwd = (flag & REMOVE_DIR_PURGE_ORIGINAL_CWD);
3403
0
  struct object_id submodule_head;
3404
3405
0
  if ((flag & REMOVE_DIR_KEEP_NESTED_GIT) &&
3406
0
      !repo_resolve_gitlink_ref(the_repository, path->buf,
3407
0
              "HEAD", &submodule_head)) {
3408
    /* Do not descend and nuke a nested git work tree. */
3409
0
    if (kept_up)
3410
0
      *kept_up = 1;
3411
0
    return 0;
3412
0
  }
3413
3414
0
  flag &= ~REMOVE_DIR_KEEP_TOPLEVEL;
3415
0
  dir = opendir(path->buf);
3416
0
  if (!dir) {
3417
0
    if (errno == ENOENT)
3418
0
      return keep_toplevel ? -1 : 0;
3419
0
    else if (errno == EACCES && !keep_toplevel)
3420
      /*
3421
       * An empty dir could be removable even if it
3422
       * is unreadable:
3423
       */
3424
0
      return rmdir(path->buf);
3425
0
    else
3426
0
      return -1;
3427
0
  }
3428
0
  strbuf_complete(path, '/');
3429
3430
0
  len = path->len;
3431
0
  while ((e = readdir_skip_dot_and_dotdot(dir)) != NULL) {
3432
0
    struct stat st;
3433
3434
0
    strbuf_setlen(path, len);
3435
0
    strbuf_addstr(path, e->d_name);
3436
0
    if (lstat(path->buf, &st)) {
3437
0
      if (errno == ENOENT)
3438
        /*
3439
         * file disappeared, which is what we
3440
         * wanted anyway
3441
         */
3442
0
        continue;
3443
      /* fall through */
3444
0
    } else if (S_ISDIR(st.st_mode)) {
3445
0
      if (!remove_dir_recurse(path, flag, &kept_down))
3446
0
        continue; /* happy */
3447
0
    } else if (!only_empty &&
3448
0
         (!unlink(path->buf) || errno == ENOENT)) {
3449
0
      continue; /* happy, too */
3450
0
    }
3451
3452
    /* path too long, stat fails, or non-directory still exists */
3453
0
    ret = -1;
3454
0
    break;
3455
0
  }
3456
0
  closedir(dir);
3457
3458
0
  strbuf_setlen(path, original_len);
3459
0
  if (!ret && !keep_toplevel && !kept_down) {
3460
0
    if (!purge_original_cwd &&
3461
0
        startup_info->original_cwd &&
3462
0
        !strcmp(startup_info->original_cwd, path->buf))
3463
0
      ret = -1; /* Do not remove current working directory */
3464
0
    else
3465
0
      ret = (!rmdir(path->buf) || errno == ENOENT) ? 0 : -1;
3466
0
  } else if (kept_up)
3467
    /*
3468
     * report the uplevel that it is not an error that we
3469
     * did not rmdir() our directory.
3470
     */
3471
0
    *kept_up = !ret;
3472
0
  return ret;
3473
0
}
3474
3475
int remove_dir_recursively(struct strbuf *path, int flag)
3476
0
{
3477
0
  return remove_dir_recurse(path, flag, NULL);
3478
0
}
3479
3480
static GIT_PATH_FUNC(git_path_info_exclude, "info/exclude")
3481
3482
void setup_standard_excludes(struct dir_struct *dir)
3483
0
{
3484
0
  dir->exclude_per_dir = ".gitignore";
3485
3486
  /* core.excludesfile defaulting to $XDG_CONFIG_HOME/git/ignore */
3487
0
  if (!excludes_file)
3488
0
    excludes_file = xdg_config_home("ignore");
3489
0
  if (excludes_file && !access_or_warn(excludes_file, R_OK, 0))
3490
0
    add_patterns_from_file_1(dir, excludes_file,
3491
0
           dir->untracked ? &dir->internal.ss_excludes_file : NULL);
3492
3493
  /* per repository user preference */
3494
0
  if (startup_info->have_repository) {
3495
0
    const char *path = git_path_info_exclude();
3496
0
    if (!access_or_warn(path, R_OK, 0))
3497
0
      add_patterns_from_file_1(dir, path,
3498
0
             dir->untracked ? &dir->internal.ss_info_exclude : NULL);
3499
0
  }
3500
0
}
3501
3502
char *get_sparse_checkout_filename(void)
3503
0
{
3504
0
  return repo_git_path(the_repository, "info/sparse-checkout");
3505
0
}
3506
3507
int get_sparse_checkout_patterns(struct pattern_list *pl)
3508
0
{
3509
0
  int res;
3510
0
  char *sparse_filename = get_sparse_checkout_filename();
3511
3512
0
  pl->use_cone_patterns = core_sparse_checkout_cone;
3513
0
  res = add_patterns_from_file_to_list(sparse_filename, "", 0, pl, NULL, 0);
3514
3515
0
  free(sparse_filename);
3516
0
  return res;
3517
0
}
3518
3519
int remove_path(const char *name)
3520
0
{
3521
0
  const char *last;
3522
3523
0
  if (unlink(name) && !is_missing_file_error(errno))
3524
0
    return -1;
3525
3526
0
  last = strrchr(name, '/');
3527
0
  if (last) {
3528
0
    char *dirs = xstrdup(name);
3529
0
    char *slash = dirs + (last - name);
3530
0
    do {
3531
0
      *slash = '\0';
3532
0
      if (startup_info->original_cwd &&
3533
0
          !strcmp(startup_info->original_cwd, dirs))
3534
0
        break;
3535
0
    } while (rmdir(dirs) == 0 && (slash = strrchr(dirs, '/')));
3536
0
    free(dirs);
3537
0
  }
3538
0
  return 0;
3539
0
}
3540
3541
/*
3542
 * Frees memory within dir which was allocated, and resets fields for further
3543
 * use.  Does not free dir itself.
3544
 */
3545
void dir_clear(struct dir_struct *dir)
3546
0
{
3547
0
  int i, j;
3548
0
  struct exclude_list_group *group;
3549
0
  struct pattern_list *pl;
3550
0
  struct exclude_stack *stk;
3551
0
  struct dir_struct new = DIR_INIT;
3552
3553
0
  for (i = EXC_CMDL; i <= EXC_FILE; i++) {
3554
0
    group = &dir->internal.exclude_list_group[i];
3555
0
    for (j = 0; j < group->nr; j++) {
3556
0
      pl = &group->pl[j];
3557
0
      if (i == EXC_DIRS)
3558
0
        free((char *)pl->src);
3559
0
      clear_pattern_list(pl);
3560
0
    }
3561
0
    free(group->pl);
3562
0
  }
3563
3564
0
  for (i = 0; i < dir->ignored_nr; i++)
3565
0
    free(dir->ignored[i]);
3566
0
  for (i = 0; i < dir->nr; i++)
3567
0
    free(dir->entries[i]);
3568
0
  free(dir->ignored);
3569
0
  free(dir->entries);
3570
3571
0
  stk = dir->internal.exclude_stack;
3572
0
  while (stk) {
3573
0
    struct exclude_stack *prev = stk->prev;
3574
0
    free(stk);
3575
0
    stk = prev;
3576
0
  }
3577
0
  strbuf_release(&dir->internal.basebuf);
3578
3579
0
  memcpy(dir, &new, sizeof(*dir));
3580
0
}
3581
3582
struct ondisk_untracked_cache {
3583
  struct stat_data info_exclude_stat;
3584
  struct stat_data excludes_file_stat;
3585
  uint32_t dir_flags;
3586
};
3587
3588
0
#define ouc_offset(x) offsetof(struct ondisk_untracked_cache, x)
3589
3590
struct write_data {
3591
  int index;     /* number of written untracked_cache_dir */
3592
  struct ewah_bitmap *check_only; /* from untracked_cache_dir */
3593
  struct ewah_bitmap *valid;  /* from untracked_cache_dir */
3594
  struct ewah_bitmap *sha1_valid; /* set if exclude_sha1 is not null */
3595
  struct strbuf out;
3596
  struct strbuf sb_stat;
3597
  struct strbuf sb_sha1;
3598
};
3599
3600
static void stat_data_to_disk(struct stat_data *to, const struct stat_data *from)
3601
0
{
3602
0
  to->sd_ctime.sec  = htonl(from->sd_ctime.sec);
3603
0
  to->sd_ctime.nsec = htonl(from->sd_ctime.nsec);
3604
0
  to->sd_mtime.sec  = htonl(from->sd_mtime.sec);
3605
0
  to->sd_mtime.nsec = htonl(from->sd_mtime.nsec);
3606
0
  to->sd_dev    = htonl(from->sd_dev);
3607
0
  to->sd_ino    = htonl(from->sd_ino);
3608
0
  to->sd_uid    = htonl(from->sd_uid);
3609
0
  to->sd_gid    = htonl(from->sd_gid);
3610
0
  to->sd_size   = htonl(from->sd_size);
3611
0
}
3612
3613
static void write_one_dir(struct untracked_cache_dir *untracked,
3614
        struct write_data *wd)
3615
0
{
3616
0
  struct stat_data stat_data;
3617
0
  struct strbuf *out = &wd->out;
3618
0
  unsigned char intbuf[16];
3619
0
  unsigned int value;
3620
0
  uint8_t intlen;
3621
0
  int i = wd->index++;
3622
3623
  /*
3624
   * untracked_nr should be reset whenever valid is clear, but
3625
   * for safety..
3626
   */
3627
0
  if (!untracked->valid) {
3628
0
    for (size_t i = 0; i < untracked->untracked_nr; i++)
3629
0
      free(untracked->untracked[i]);
3630
0
    untracked->untracked_nr = 0;
3631
0
    untracked->check_only = 0;
3632
0
  }
3633
3634
0
  if (untracked->check_only)
3635
0
    ewah_set(wd->check_only, i);
3636
0
  if (untracked->valid) {
3637
0
    ewah_set(wd->valid, i);
3638
0
    stat_data_to_disk(&stat_data, &untracked->stat_data);
3639
0
    strbuf_add(&wd->sb_stat, &stat_data, sizeof(stat_data));
3640
0
  }
3641
0
  if (!is_null_oid(&untracked->exclude_oid)) {
3642
0
    ewah_set(wd->sha1_valid, i);
3643
0
    strbuf_add(&wd->sb_sha1, untracked->exclude_oid.hash,
3644
0
         the_hash_algo->rawsz);
3645
0
  }
3646
3647
0
  intlen = encode_varint(untracked->untracked_nr, intbuf);
3648
0
  strbuf_add(out, intbuf, intlen);
3649
3650
  /* skip non-recurse directories */
3651
0
  for (i = 0, value = 0; i < untracked->dirs_nr; i++)
3652
0
    if (untracked->dirs[i]->recurse)
3653
0
      value++;
3654
0
  intlen = encode_varint(value, intbuf);
3655
0
  strbuf_add(out, intbuf, intlen);
3656
3657
0
  strbuf_add(out, untracked->name, strlen(untracked->name) + 1);
3658
3659
0
  for (i = 0; i < untracked->untracked_nr; i++)
3660
0
    strbuf_add(out, untracked->untracked[i],
3661
0
         strlen(untracked->untracked[i]) + 1);
3662
3663
0
  for (i = 0; i < untracked->dirs_nr; i++)
3664
0
    if (untracked->dirs[i]->recurse)
3665
0
      write_one_dir(untracked->dirs[i], wd);
3666
0
}
3667
3668
void write_untracked_extension(struct strbuf *out, struct untracked_cache *untracked)
3669
0
{
3670
0
  struct ondisk_untracked_cache *ouc;
3671
0
  struct write_data wd;
3672
0
  unsigned char varbuf[16];
3673
0
  uint8_t varint_len;
3674
0
  const unsigned hashsz = the_hash_algo->rawsz;
3675
3676
0
  CALLOC_ARRAY(ouc, 1);
3677
0
  stat_data_to_disk(&ouc->info_exclude_stat, &untracked->ss_info_exclude.stat);
3678
0
  stat_data_to_disk(&ouc->excludes_file_stat, &untracked->ss_excludes_file.stat);
3679
0
  ouc->dir_flags = htonl(untracked->dir_flags);
3680
3681
0
  varint_len = encode_varint(untracked->ident.len, varbuf);
3682
0
  strbuf_add(out, varbuf, varint_len);
3683
0
  strbuf_addbuf(out, &untracked->ident);
3684
3685
0
  strbuf_add(out, ouc, sizeof(*ouc));
3686
0
  strbuf_add(out, untracked->ss_info_exclude.oid.hash, hashsz);
3687
0
  strbuf_add(out, untracked->ss_excludes_file.oid.hash, hashsz);
3688
0
  strbuf_add(out, untracked->exclude_per_dir, strlen(untracked->exclude_per_dir) + 1);
3689
0
  FREE_AND_NULL(ouc);
3690
3691
0
  if (!untracked->root) {
3692
0
    varint_len = encode_varint(0, varbuf);
3693
0
    strbuf_add(out, varbuf, varint_len);
3694
0
    return;
3695
0
  }
3696
3697
0
  wd.index      = 0;
3698
0
  wd.check_only = ewah_new();
3699
0
  wd.valid      = ewah_new();
3700
0
  wd.sha1_valid = ewah_new();
3701
0
  strbuf_init(&wd.out, 1024);
3702
0
  strbuf_init(&wd.sb_stat, 1024);
3703
0
  strbuf_init(&wd.sb_sha1, 1024);
3704
0
  write_one_dir(untracked->root, &wd);
3705
3706
0
  varint_len = encode_varint(wd.index, varbuf);
3707
0
  strbuf_add(out, varbuf, varint_len);
3708
0
  strbuf_addbuf(out, &wd.out);
3709
0
  ewah_serialize_strbuf(wd.valid, out);
3710
0
  ewah_serialize_strbuf(wd.check_only, out);
3711
0
  ewah_serialize_strbuf(wd.sha1_valid, out);
3712
0
  strbuf_addbuf(out, &wd.sb_stat);
3713
0
  strbuf_addbuf(out, &wd.sb_sha1);
3714
0
  strbuf_addch(out, '\0'); /* safe guard for string lists */
3715
3716
0
  ewah_free(wd.valid);
3717
0
  ewah_free(wd.check_only);
3718
0
  ewah_free(wd.sha1_valid);
3719
0
  strbuf_release(&wd.out);
3720
0
  strbuf_release(&wd.sb_stat);
3721
0
  strbuf_release(&wd.sb_sha1);
3722
0
}
3723
3724
static void free_untracked(struct untracked_cache_dir *ucd)
3725
0
{
3726
0
  int i;
3727
0
  if (!ucd)
3728
0
    return;
3729
0
  for (i = 0; i < ucd->dirs_nr; i++)
3730
0
    free_untracked(ucd->dirs[i]);
3731
0
  for (i = 0; i < ucd->untracked_nr; i++)
3732
0
    free(ucd->untracked[i]);
3733
0
  free(ucd->untracked);
3734
0
  free(ucd->dirs);
3735
0
  free(ucd);
3736
0
}
3737
3738
void free_untracked_cache(struct untracked_cache *uc)
3739
0
{
3740
0
  if (!uc)
3741
0
    return;
3742
3743
0
  free(uc->exclude_per_dir_to_free);
3744
0
  strbuf_release(&uc->ident);
3745
0
  free_untracked(uc->root);
3746
0
  free(uc);
3747
0
}
3748
3749
struct read_data {
3750
  int index;
3751
  struct untracked_cache_dir **ucd;
3752
  struct ewah_bitmap *check_only;
3753
  struct ewah_bitmap *valid;
3754
  struct ewah_bitmap *sha1_valid;
3755
  const unsigned char *data;
3756
  const unsigned char *end;
3757
};
3758
3759
static void stat_data_from_disk(struct stat_data *to, const unsigned char *data)
3760
0
{
3761
0
  memcpy(to, data, sizeof(*to));
3762
0
  to->sd_ctime.sec  = ntohl(to->sd_ctime.sec);
3763
0
  to->sd_ctime.nsec = ntohl(to->sd_ctime.nsec);
3764
0
  to->sd_mtime.sec  = ntohl(to->sd_mtime.sec);
3765
0
  to->sd_mtime.nsec = ntohl(to->sd_mtime.nsec);
3766
0
  to->sd_dev    = ntohl(to->sd_dev);
3767
0
  to->sd_ino    = ntohl(to->sd_ino);
3768
0
  to->sd_uid    = ntohl(to->sd_uid);
3769
0
  to->sd_gid    = ntohl(to->sd_gid);
3770
0
  to->sd_size   = ntohl(to->sd_size);
3771
0
}
3772
3773
static int read_one_dir(struct untracked_cache_dir **untracked_,
3774
      struct read_data *rd)
3775
0
{
3776
0
  struct untracked_cache_dir ud, *untracked;
3777
0
  const unsigned char *data = rd->data, *end = rd->end;
3778
0
  const unsigned char *eos;
3779
0
  uint64_t value;
3780
0
  int i;
3781
3782
0
  memset(&ud, 0, sizeof(ud));
3783
3784
0
  value = decode_varint(&data);
3785
0
  if (data > end)
3786
0
    return -1;
3787
0
  ud.recurse     = 1;
3788
0
  ud.untracked_alloc = value;
3789
0
  ud.untracked_nr    = value;
3790
0
  if (ud.untracked_nr)
3791
0
    ALLOC_ARRAY(ud.untracked, ud.untracked_nr);
3792
3793
0
  ud.dirs_alloc = ud.dirs_nr = decode_varint(&data);
3794
0
  if (data > end)
3795
0
    return -1;
3796
0
  ALLOC_ARRAY(ud.dirs, ud.dirs_nr);
3797
3798
0
  eos = memchr(data, '\0', end - data);
3799
0
  if (!eos || eos == end)
3800
0
    return -1;
3801
3802
0
  *untracked_ = untracked = xmalloc(st_add3(sizeof(*untracked), eos - data, 1));
3803
0
  memcpy(untracked, &ud, sizeof(ud));
3804
0
  memcpy(untracked->name, data, eos - data + 1);
3805
0
  data = eos + 1;
3806
3807
0
  for (i = 0; i < untracked->untracked_nr; i++) {
3808
0
    eos = memchr(data, '\0', end - data);
3809
0
    if (!eos || eos == end)
3810
0
      return -1;
3811
0
    untracked->untracked[i] = xmemdupz(data, eos - data);
3812
0
    data = eos + 1;
3813
0
  }
3814
3815
0
  rd->ucd[rd->index++] = untracked;
3816
0
  rd->data = data;
3817
3818
0
  for (i = 0; i < untracked->dirs_nr; i++) {
3819
0
    if (read_one_dir(untracked->dirs + i, rd) < 0)
3820
0
      return -1;
3821
0
  }
3822
0
  return 0;
3823
0
}
3824
3825
static void set_check_only(size_t pos, void *cb)
3826
0
{
3827
0
  struct read_data *rd = cb;
3828
0
  struct untracked_cache_dir *ud = rd->ucd[pos];
3829
0
  ud->check_only = 1;
3830
0
}
3831
3832
static void read_stat(size_t pos, void *cb)
3833
0
{
3834
0
  struct read_data *rd = cb;
3835
0
  struct untracked_cache_dir *ud = rd->ucd[pos];
3836
0
  if (rd->data + sizeof(struct stat_data) > rd->end) {
3837
0
    rd->data = rd->end + 1;
3838
0
    return;
3839
0
  }
3840
0
  stat_data_from_disk(&ud->stat_data, rd->data);
3841
0
  rd->data += sizeof(struct stat_data);
3842
0
  ud->valid = 1;
3843
0
}
3844
3845
static void read_oid(size_t pos, void *cb)
3846
0
{
3847
0
  struct read_data *rd = cb;
3848
0
  struct untracked_cache_dir *ud = rd->ucd[pos];
3849
0
  if (rd->data + the_hash_algo->rawsz > rd->end) {
3850
0
    rd->data = rd->end + 1;
3851
0
    return;
3852
0
  }
3853
0
  oidread(&ud->exclude_oid, rd->data, the_repository->hash_algo);
3854
0
  rd->data += the_hash_algo->rawsz;
3855
0
}
3856
3857
static void load_oid_stat(struct oid_stat *oid_stat, const unsigned char *data,
3858
        const unsigned char *sha1)
3859
0
{
3860
0
  stat_data_from_disk(&oid_stat->stat, data);
3861
0
  oidread(&oid_stat->oid, sha1, the_repository->hash_algo);
3862
0
  oid_stat->valid = 1;
3863
0
}
3864
3865
struct untracked_cache *read_untracked_extension(const void *data, unsigned long sz)
3866
0
{
3867
0
  struct untracked_cache *uc;
3868
0
  struct read_data rd;
3869
0
  const unsigned char *next = data, *end = (const unsigned char *)data + sz;
3870
0
  const char *ident;
3871
0
  uint64_t ident_len;
3872
0
  uint64_t varint_len;
3873
0
  ssize_t len;
3874
0
  const char *exclude_per_dir;
3875
0
  const unsigned hashsz = the_hash_algo->rawsz;
3876
0
  const unsigned offset = sizeof(struct ondisk_untracked_cache);
3877
0
  const unsigned exclude_per_dir_offset = offset + 2 * hashsz;
3878
3879
0
  if (sz <= 1 || end[-1] != '\0')
3880
0
    return NULL;
3881
0
  end--;
3882
3883
0
  ident_len = decode_varint(&next);
3884
0
  if (next + ident_len > end)
3885
0
    return NULL;
3886
0
  ident = (const char *)next;
3887
0
  next += ident_len;
3888
3889
0
  if (next + exclude_per_dir_offset + 1 > end)
3890
0
    return NULL;
3891
3892
0
  CALLOC_ARRAY(uc, 1);
3893
0
  strbuf_init(&uc->ident, ident_len);
3894
0
  strbuf_add(&uc->ident, ident, ident_len);
3895
0
  load_oid_stat(&uc->ss_info_exclude,
3896
0
          next + ouc_offset(info_exclude_stat),
3897
0
          next + offset);
3898
0
  load_oid_stat(&uc->ss_excludes_file,
3899
0
          next + ouc_offset(excludes_file_stat),
3900
0
          next + offset + hashsz);
3901
0
  uc->dir_flags = get_be32(next + ouc_offset(dir_flags));
3902
0
  exclude_per_dir = (const char *)next + exclude_per_dir_offset;
3903
0
  uc->exclude_per_dir = uc->exclude_per_dir_to_free = xstrdup(exclude_per_dir);
3904
  /* NUL after exclude_per_dir is covered by sizeof(*ouc) */
3905
0
  next += exclude_per_dir_offset + strlen(exclude_per_dir) + 1;
3906
0
  if (next >= end)
3907
0
    goto done2;
3908
3909
0
  varint_len = decode_varint(&next);
3910
0
  if (next > end || varint_len == 0)
3911
0
    goto done2;
3912
3913
0
  rd.valid      = ewah_new();
3914
0
  rd.check_only = ewah_new();
3915
0
  rd.sha1_valid = ewah_new();
3916
0
  rd.data       = next;
3917
0
  rd.end        = end;
3918
0
  rd.index      = 0;
3919
0
  ALLOC_ARRAY(rd.ucd, varint_len);
3920
3921
0
  if (read_one_dir(&uc->root, &rd) || rd.index != varint_len)
3922
0
    goto done;
3923
3924
0
  next = rd.data;
3925
0
  len = ewah_read_mmap(rd.valid, next, end - next);
3926
0
  if (len < 0)
3927
0
    goto done;
3928
3929
0
  next += len;
3930
0
  len = ewah_read_mmap(rd.check_only, next, end - next);
3931
0
  if (len < 0)
3932
0
    goto done;
3933
3934
0
  next += len;
3935
0
  len = ewah_read_mmap(rd.sha1_valid, next, end - next);
3936
0
  if (len < 0)
3937
0
    goto done;
3938
3939
0
  ewah_each_bit(rd.check_only, set_check_only, &rd);
3940
0
  rd.data = next + len;
3941
0
  ewah_each_bit(rd.valid, read_stat, &rd);
3942
0
  ewah_each_bit(rd.sha1_valid, read_oid, &rd);
3943
0
  next = rd.data;
3944
3945
0
done:
3946
0
  free(rd.ucd);
3947
0
  ewah_free(rd.valid);
3948
0
  ewah_free(rd.check_only);
3949
0
  ewah_free(rd.sha1_valid);
3950
0
done2:
3951
0
  if (next != end) {
3952
0
    free_untracked_cache(uc);
3953
0
    uc = NULL;
3954
0
  }
3955
0
  return uc;
3956
0
}
3957
3958
static void invalidate_one_directory(struct untracked_cache *uc,
3959
             struct untracked_cache_dir *ucd)
3960
0
{
3961
0
  uc->dir_invalidated++;
3962
0
  ucd->valid = 0;
3963
0
  for (size_t i = 0; i < ucd->untracked_nr; i++)
3964
0
    free(ucd->untracked[i]);
3965
0
  ucd->untracked_nr = 0;
3966
0
}
3967
3968
/*
3969
 * Normally when an entry is added or removed from a directory,
3970
 * invalidating that directory is enough. No need to touch its
3971
 * ancestors. When a directory is shown as "foo/bar/" in git-status
3972
 * however, deleting or adding an entry may have cascading effect.
3973
 *
3974
 * Say the "foo/bar/file" has become untracked, we need to tell the
3975
 * untracked_cache_dir of "foo" that "bar/" is not an untracked
3976
 * directory any more (because "bar" is managed by foo as an untracked
3977
 * "file").
3978
 *
3979
 * Similarly, if "foo/bar/file" moves from untracked to tracked and it
3980
 * was the last untracked entry in the entire "foo", we should show
3981
 * "foo/" instead. Which means we have to invalidate past "bar" up to
3982
 * "foo".
3983
 *
3984
 * This function traverses all directories from root to leaf. If there
3985
 * is a chance of one of the above cases happening, we invalidate back
3986
 * to root. Otherwise we just invalidate the leaf. There may be a more
3987
 * sophisticated way than checking for SHOW_OTHER_DIRECTORIES to
3988
 * detect these cases and avoid unnecessary invalidation, for example,
3989
 * checking for the untracked entry named "bar/" in "foo", but for now
3990
 * stick to something safe and simple.
3991
 */
3992
static int invalidate_one_component(struct untracked_cache *uc,
3993
            struct untracked_cache_dir *dir,
3994
            const char *path, int len)
3995
0
{
3996
0
  const char *rest = strchr(path, '/');
3997
3998
0
  if (rest) {
3999
0
    int component_len = rest - path;
4000
0
    struct untracked_cache_dir *d =
4001
0
      lookup_untracked(uc, dir, path, component_len);
4002
0
    int ret =
4003
0
      invalidate_one_component(uc, d, rest + 1,
4004
0
             len - (component_len + 1));
4005
0
    if (ret)
4006
0
      invalidate_one_directory(uc, dir);
4007
0
    return ret;
4008
0
  }
4009
4010
0
  invalidate_one_directory(uc, dir);
4011
0
  return uc->dir_flags & DIR_SHOW_OTHER_DIRECTORIES;
4012
0
}
4013
4014
void untracked_cache_invalidate_path(struct index_state *istate,
4015
             const char *path, int safe_path)
4016
0
{
4017
0
  if (!istate->untracked || !istate->untracked->root)
4018
0
    return;
4019
0
  if (!safe_path && !verify_path(path, 0))
4020
0
    return;
4021
0
  invalidate_one_component(istate->untracked, istate->untracked->root,
4022
0
         path, strlen(path));
4023
0
}
4024
4025
void untracked_cache_invalidate_trimmed_path(struct index_state *istate,
4026
               const char *path,
4027
               int safe_path)
4028
0
{
4029
0
  size_t len = strlen(path);
4030
4031
0
  if (!len)
4032
0
    BUG("untracked_cache_invalidate_trimmed_path given zero length path");
4033
4034
0
  if (path[len - 1] != '/') {
4035
0
    untracked_cache_invalidate_path(istate, path, safe_path);
4036
0
  } else {
4037
0
    struct strbuf tmp = STRBUF_INIT;
4038
4039
0
    strbuf_add(&tmp, path, len - 1);
4040
0
    untracked_cache_invalidate_path(istate, tmp.buf, safe_path);
4041
0
    strbuf_release(&tmp);
4042
0
  }
4043
0
}
4044
4045
void untracked_cache_remove_from_index(struct index_state *istate,
4046
               const char *path)
4047
0
{
4048
0
  untracked_cache_invalidate_path(istate, path, 1);
4049
0
}
4050
4051
void untracked_cache_add_to_index(struct index_state *istate,
4052
          const char *path)
4053
0
{
4054
0
  untracked_cache_invalidate_path(istate, path, 1);
4055
0
}
4056
4057
static void connect_wt_gitdir_in_nested(const char *sub_worktree,
4058
          const char *sub_gitdir)
4059
0
{
4060
0
  int i;
4061
0
  struct repository subrepo;
4062
0
  struct strbuf sub_wt = STRBUF_INIT;
4063
0
  struct strbuf sub_gd = STRBUF_INIT;
4064
4065
0
  const struct submodule *sub;
4066
4067
  /* If the submodule has no working tree, we can ignore it. */
4068
0
  if (repo_init(&subrepo, sub_gitdir, sub_worktree))
4069
0
    return;
4070
4071
0
  if (repo_read_index(&subrepo) < 0)
4072
0
    die(_("index file corrupt in repo %s"), subrepo.gitdir);
4073
4074
  /* TODO: audit for interaction with sparse-index. */
4075
0
  ensure_full_index(subrepo.index);
4076
0
  for (i = 0; i < subrepo.index->cache_nr; i++) {
4077
0
    const struct cache_entry *ce = subrepo.index->cache[i];
4078
4079
0
    if (!S_ISGITLINK(ce->ce_mode))
4080
0
      continue;
4081
4082
0
    while (i + 1 < subrepo.index->cache_nr &&
4083
0
           !strcmp(ce->name, subrepo.index->cache[i + 1]->name))
4084
      /*
4085
       * Skip entries with the same name in different stages
4086
       * to make sure an entry is returned only once.
4087
       */
4088
0
      i++;
4089
4090
0
    sub = submodule_from_path(&subrepo, null_oid(the_hash_algo), ce->name);
4091
0
    if (!sub || !is_submodule_active(&subrepo, ce->name))
4092
      /* .gitmodules broken or inactive sub */
4093
0
      continue;
4094
4095
0
    strbuf_reset(&sub_wt);
4096
0
    strbuf_reset(&sub_gd);
4097
0
    strbuf_addf(&sub_wt, "%s/%s", sub_worktree, sub->path);
4098
0
    submodule_name_to_gitdir(&sub_gd, &subrepo, sub->name);
4099
4100
0
    connect_work_tree_and_git_dir(sub_wt.buf, sub_gd.buf, 1);
4101
0
  }
4102
0
  strbuf_release(&sub_wt);
4103
0
  strbuf_release(&sub_gd);
4104
0
  repo_clear(&subrepo);
4105
0
}
4106
4107
void connect_work_tree_and_git_dir(const char *work_tree_,
4108
           const char *git_dir_,
4109
           int recurse_into_nested)
4110
0
{
4111
0
  struct strbuf gitfile_sb = STRBUF_INIT;
4112
0
  struct strbuf cfg_sb = STRBUF_INIT;
4113
0
  struct strbuf rel_path = STRBUF_INIT;
4114
0
  char *git_dir, *work_tree;
4115
4116
  /* Prepare .git file */
4117
0
  strbuf_addf(&gitfile_sb, "%s/.git", work_tree_);
4118
0
  if (safe_create_leading_directories_const(the_repository, gitfile_sb.buf))
4119
0
    die(_("could not create directories for %s"), gitfile_sb.buf);
4120
4121
  /* Prepare config file */
4122
0
  strbuf_addf(&cfg_sb, "%s/config", git_dir_);
4123
0
  if (safe_create_leading_directories_const(the_repository, cfg_sb.buf))
4124
0
    die(_("could not create directories for %s"), cfg_sb.buf);
4125
4126
0
  git_dir = real_pathdup(git_dir_, 1);
4127
0
  work_tree = real_pathdup(work_tree_, 1);
4128
4129
  /* Write .git file */
4130
0
  write_file(gitfile_sb.buf, "gitdir: %s",
4131
0
       relative_path(git_dir, work_tree, &rel_path));
4132
  /* Update core.worktree setting */
4133
0
  repo_config_set_in_file(the_repository, cfg_sb.buf, "core.worktree",
4134
0
        relative_path(work_tree, git_dir, &rel_path));
4135
4136
0
  strbuf_release(&gitfile_sb);
4137
0
  strbuf_release(&cfg_sb);
4138
0
  strbuf_release(&rel_path);
4139
4140
0
  if (recurse_into_nested)
4141
0
    connect_wt_gitdir_in_nested(work_tree, git_dir);
4142
4143
0
  free(work_tree);
4144
0
  free(git_dir);
4145
0
}
4146
4147
/*
4148
 * Migrate the git directory of the given path from old_git_dir to new_git_dir.
4149
 */
4150
void relocate_gitdir(const char *path, const char *old_git_dir, const char *new_git_dir)
4151
0
{
4152
0
  if (rename(old_git_dir, new_git_dir) < 0)
4153
0
    die_errno(_("could not migrate git directory from '%s' to '%s'"),
4154
0
      old_git_dir, new_git_dir);
4155
4156
0
  connect_work_tree_and_git_dir(path, new_git_dir, 0);
4157
0
}
4158
4159
int path_match_flags(const char *const str, const enum path_match_flags flags)
4160
0
{
4161
0
  const char *p = str;
4162
4163
0
  if (flags & PATH_MATCH_NATIVE &&
4164
0
      flags & PATH_MATCH_XPLATFORM)
4165
0
    BUG("path_match_flags() must get one match kind, not multiple!");
4166
0
  else if (!(flags & PATH_MATCH_KINDS_MASK))
4167
0
    BUG("path_match_flags() must get at least one match kind!");
4168
4169
0
  if (flags & PATH_MATCH_STARTS_WITH_DOT_SLASH &&
4170
0
      flags & PATH_MATCH_STARTS_WITH_DOT_DOT_SLASH)
4171
0
    BUG("path_match_flags() must get one platform kind, not multiple!");
4172
0
  else if (!(flags & PATH_MATCH_PLATFORM_MASK))
4173
0
    BUG("path_match_flags() must get at least one platform kind!");
4174
4175
0
  if (*p++ != '.')
4176
0
    return 0;
4177
0
  if (flags & PATH_MATCH_STARTS_WITH_DOT_DOT_SLASH &&
4178
0
      *p++ != '.')
4179
0
    return 0;
4180
4181
0
  if (flags & PATH_MATCH_NATIVE)
4182
0
    return is_dir_sep(*p);
4183
0
  else if (flags & PATH_MATCH_XPLATFORM)
4184
0
    return is_xplatform_dir_sep(*p);
4185
0
  BUG("unreachable");
4186
0
}