Coverage Report

Created: 2026-02-14 06:27

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/git/read-cache.c
Line
Count
Source
1
/*
2
 * GIT - The information manager from hell
3
 *
4
 * Copyright (C) Linus Torvalds, 2005
5
 */
6
7
#define USE_THE_REPOSITORY_VARIABLE
8
#define DISABLE_SIGN_COMPARE_WARNINGS
9
10
#include "git-compat-util.h"
11
#include "config.h"
12
#include "date.h"
13
#include "diff.h"
14
#include "diffcore.h"
15
#include "hex.h"
16
#include "tempfile.h"
17
#include "lockfile.h"
18
#include "cache-tree.h"
19
#include "refs.h"
20
#include "dir.h"
21
#include "object-file.h"
22
#include "odb.h"
23
#include "oid-array.h"
24
#include "tree.h"
25
#include "commit.h"
26
#include "environment.h"
27
#include "gettext.h"
28
#include "mem-pool.h"
29
#include "name-hash.h"
30
#include "object-name.h"
31
#include "path.h"
32
#include "preload-index.h"
33
#include "read-cache.h"
34
#include "repository.h"
35
#include "resolve-undo.h"
36
#include "revision.h"
37
#include "strbuf.h"
38
#include "trace2.h"
39
#include "varint.h"
40
#include "split-index.h"
41
#include "symlinks.h"
42
#include "utf8.h"
43
#include "fsmonitor.h"
44
#include "thread-utils.h"
45
#include "progress.h"
46
#include "sparse-index.h"
47
#include "csum-file.h"
48
#include "promisor-remote.h"
49
#include "hook.h"
50
51
/* Mask for the name length in ce_flags in the on-disk index */
52
53
0
#define CE_NAMEMASK  (0x0fff)
54
55
/* Index extensions.
56
 *
57
 * The first letter should be 'A'..'Z' for extensions that are not
58
 * necessary for a correct operation (i.e. optimization data).
59
 * When new extensions are added that _needs_ to be understood in
60
 * order to correctly interpret the index file, pick character that
61
 * is outside the range, to cause the reader to abort.
62
 */
63
64
0
#define CACHE_EXT(s) ( (s[0]<<24)|(s[1]<<16)|(s[2]<<8)|(s[3]) )
65
0
#define CACHE_EXT_TREE 0x54524545  /* "TREE" */
66
0
#define CACHE_EXT_RESOLVE_UNDO 0x52455543 /* "REUC" */
67
0
#define CACHE_EXT_LINK 0x6c696e6b    /* "link" */
68
0
#define CACHE_EXT_UNTRACKED 0x554E5452    /* "UNTR" */
69
0
#define CACHE_EXT_FSMONITOR 0x46534D4E    /* "FSMN" */
70
0
#define CACHE_EXT_ENDOFINDEXENTRIES 0x454F4945  /* "EOIE" */
71
0
#define CACHE_EXT_INDEXENTRYOFFSETTABLE 0x49454F54 /* "IEOT" */
72
0
#define CACHE_EXT_SPARSE_DIRECTORIES 0x73646972 /* "sdir" */
73
74
/* changes that can be kept in $GIT_DIR/index (basically all extensions) */
75
0
#define EXTMASK (RESOLVE_UNDO_CHANGED | CACHE_TREE_CHANGED | \
76
0
     CE_ENTRY_ADDED | CE_ENTRY_REMOVED | CE_ENTRY_CHANGED | \
77
0
     SPLIT_INDEX_ORDERED | UNTRACKED_CHANGED | FSMONITOR_CHANGED)
78
79
80
/*
81
 * This is an estimate of the pathname length in the index.  We use
82
 * this for V4 index files to guess the un-deltafied size of the index
83
 * in memory because of pathname deltafication.  This is not required
84
 * for V2/V3 index formats because their pathnames are not compressed.
85
 * If the initial amount of memory set aside is not sufficient, the
86
 * mem pool will allocate extra memory.
87
 */
88
0
#define CACHE_ENTRY_PATH_LENGTH 80
89
90
enum index_search_mode {
91
  NO_EXPAND_SPARSE = 0,
92
  EXPAND_SPARSE = 1
93
};
94
95
static inline struct cache_entry *mem_pool__ce_alloc(struct mem_pool *mem_pool, size_t len)
96
0
{
97
0
  struct cache_entry *ce;
98
0
  ce = mem_pool_alloc(mem_pool, cache_entry_size(len));
99
0
  ce->mem_pool_allocated = 1;
100
0
  return ce;
101
0
}
102
103
static inline struct cache_entry *mem_pool__ce_calloc(struct mem_pool *mem_pool, size_t len)
104
0
{
105
0
  struct cache_entry * ce;
106
0
  ce = mem_pool_calloc(mem_pool, 1, cache_entry_size(len));
107
0
  ce->mem_pool_allocated = 1;
108
0
  return ce;
109
0
}
110
111
static struct mem_pool *find_mem_pool(struct index_state *istate)
112
0
{
113
0
  struct mem_pool **pool_ptr;
114
115
0
  if (istate->split_index && istate->split_index->base)
116
0
    pool_ptr = &istate->split_index->base->ce_mem_pool;
117
0
  else
118
0
    pool_ptr = &istate->ce_mem_pool;
119
120
0
  if (!*pool_ptr) {
121
0
    *pool_ptr = xmalloc(sizeof(**pool_ptr));
122
0
    mem_pool_init(*pool_ptr, 0);
123
0
  }
124
125
0
  return *pool_ptr;
126
0
}
127
128
static const char *alternate_index_output;
129
130
static void set_index_entry(struct index_state *istate, int nr, struct cache_entry *ce)
131
0
{
132
0
  if (S_ISSPARSEDIR(ce->ce_mode))
133
0
    istate->sparse_index = INDEX_COLLAPSED;
134
135
0
  istate->cache[nr] = ce;
136
0
  add_name_hash(istate, ce);
137
0
}
138
139
static void replace_index_entry(struct index_state *istate, int nr, struct cache_entry *ce)
140
0
{
141
0
  struct cache_entry *old = istate->cache[nr];
142
143
0
  replace_index_entry_in_base(istate, old, ce);
144
0
  remove_name_hash(istate, old);
145
0
  discard_cache_entry(old);
146
0
  ce->ce_flags &= ~CE_HASHED;
147
0
  set_index_entry(istate, nr, ce);
148
0
  ce->ce_flags |= CE_UPDATE_IN_BASE;
149
0
  mark_fsmonitor_invalid(istate, ce);
150
0
  istate->cache_changed |= CE_ENTRY_CHANGED;
151
0
}
152
153
void rename_index_entry_at(struct index_state *istate, int nr, const char *new_name)
154
0
{
155
0
  struct cache_entry *old_entry = istate->cache[nr], *new_entry, *refreshed;
156
0
  int namelen = strlen(new_name);
157
158
0
  new_entry = make_empty_cache_entry(istate, namelen);
159
0
  copy_cache_entry(new_entry, old_entry);
160
0
  new_entry->ce_flags &= ~CE_HASHED;
161
0
  new_entry->ce_namelen = namelen;
162
0
  new_entry->index = 0;
163
0
  memcpy(new_entry->name, new_name, namelen + 1);
164
165
0
  cache_tree_invalidate_path(istate, old_entry->name);
166
0
  untracked_cache_remove_from_index(istate, old_entry->name);
167
0
  remove_index_entry_at(istate, nr);
168
169
  /*
170
   * Refresh the new index entry. Using 'refresh_cache_entry' ensures
171
   * we only update stat info if the entry is otherwise up-to-date (i.e.,
172
   * the contents/mode haven't changed). This ensures that we reflect the
173
   * 'ctime' of the rename in the index without (incorrectly) updating
174
   * the cached stat info to reflect unstaged changes on disk.
175
   */
176
0
  refreshed = refresh_cache_entry(istate, new_entry, CE_MATCH_REFRESH);
177
0
  if (refreshed && refreshed != new_entry) {
178
0
    add_index_entry(istate, refreshed, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE);
179
0
    discard_cache_entry(new_entry);
180
0
  } else
181
0
    add_index_entry(istate, new_entry, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE);
182
0
}
183
184
/*
185
 * This only updates the "non-critical" parts of the directory
186
 * cache, ie the parts that aren't tracked by GIT, and only used
187
 * to validate the cache.
188
 */
189
void fill_stat_cache_info(struct index_state *istate, struct cache_entry *ce, struct stat *st)
190
0
{
191
0
  fill_stat_data(&ce->ce_stat_data, st);
192
193
0
  if (assume_unchanged)
194
0
    ce->ce_flags |= CE_VALID;
195
196
0
  if (S_ISREG(st->st_mode)) {
197
0
    ce_mark_uptodate(ce);
198
0
    mark_fsmonitor_valid(istate, ce);
199
0
  }
200
0
}
201
202
static unsigned int st_mode_from_ce(const struct cache_entry *ce)
203
0
{
204
0
  extern int trust_executable_bit, has_symlinks;
205
206
0
  switch (ce->ce_mode & S_IFMT) {
207
0
  case S_IFLNK:
208
0
    return has_symlinks ? S_IFLNK : (S_IFREG | 0644);
209
0
  case S_IFREG:
210
0
    return (ce->ce_mode & (trust_executable_bit ? 0755 : 0644)) | S_IFREG;
211
0
  case S_IFGITLINK:
212
0
    return S_IFDIR | 0755;
213
0
  case S_IFDIR:
214
0
    return ce->ce_mode;
215
0
  default:
216
0
    BUG("unsupported ce_mode: %o", ce->ce_mode);
217
0
  }
218
0
}
219
220
int fake_lstat(const struct cache_entry *ce, struct stat *st)
221
0
{
222
0
  fake_lstat_data(&ce->ce_stat_data, st);
223
0
  st->st_mode = st_mode_from_ce(ce);
224
225
  /* always succeed as lstat() replacement */
226
0
  return 0;
227
0
}
228
229
static int ce_compare_data(struct index_state *istate,
230
         const struct cache_entry *ce,
231
         struct stat *st)
232
0
{
233
0
  int match = -1;
234
0
  int fd = git_open_cloexec(ce->name, O_RDONLY);
235
236
0
  if (fd >= 0) {
237
0
    struct object_id oid;
238
0
    if (!index_fd(istate, &oid, fd, st, OBJ_BLOB, ce->name, 0))
239
0
      match = !oideq(&oid, &ce->oid);
240
    /* index_fd() closed the file descriptor already */
241
0
  }
242
0
  return match;
243
0
}
244
245
static int ce_compare_link(const struct cache_entry *ce, size_t expected_size)
246
0
{
247
0
  int match = -1;
248
0
  void *buffer;
249
0
  unsigned long size;
250
0
  enum object_type type;
251
0
  struct strbuf sb = STRBUF_INIT;
252
253
0
  if (strbuf_readlink(&sb, ce->name, expected_size))
254
0
    return -1;
255
256
0
  buffer = odb_read_object(the_repository->objects, &ce->oid, &type, &size);
257
0
  if (buffer) {
258
0
    if (size == sb.len)
259
0
      match = memcmp(buffer, sb.buf, size);
260
0
    free(buffer);
261
0
  }
262
0
  strbuf_release(&sb);
263
0
  return match;
264
0
}
265
266
static int ce_compare_gitlink(const struct cache_entry *ce)
267
0
{
268
0
  struct object_id oid;
269
270
  /*
271
   * We don't actually require that the .git directory
272
   * under GITLINK directory be a valid git directory. It
273
   * might even be missing (in case nobody populated that
274
   * sub-project).
275
   *
276
   * If so, we consider it always to match.
277
   */
278
0
  if (repo_resolve_gitlink_ref(the_repository, ce->name,
279
0
             "HEAD", &oid) < 0)
280
0
    return 0;
281
0
  return !oideq(&oid, &ce->oid);
282
0
}
283
284
static int ce_modified_check_fs(struct index_state *istate,
285
        const struct cache_entry *ce,
286
        struct stat *st)
287
0
{
288
0
  switch (st->st_mode & S_IFMT) {
289
0
  case S_IFREG:
290
0
    if (ce_compare_data(istate, ce, st))
291
0
      return DATA_CHANGED;
292
0
    break;
293
0
  case S_IFLNK:
294
0
    if (ce_compare_link(ce, xsize_t(st->st_size)))
295
0
      return DATA_CHANGED;
296
0
    break;
297
0
  case S_IFDIR:
298
0
    if (S_ISGITLINK(ce->ce_mode))
299
0
      return ce_compare_gitlink(ce) ? DATA_CHANGED : 0;
300
    /* else fallthrough */
301
0
  default:
302
0
    return TYPE_CHANGED;
303
0
  }
304
0
  return 0;
305
0
}
306
307
static int ce_match_stat_basic(const struct cache_entry *ce, struct stat *st)
308
0
{
309
0
  unsigned int changed = 0;
310
311
0
  if (ce->ce_flags & CE_REMOVE)
312
0
    return MODE_CHANGED | DATA_CHANGED | TYPE_CHANGED;
313
314
0
  switch (ce->ce_mode & S_IFMT) {
315
0
  case S_IFREG:
316
0
    changed |= !S_ISREG(st->st_mode) ? TYPE_CHANGED : 0;
317
    /* We consider only the owner x bit to be relevant for
318
     * "mode changes"
319
     */
320
0
    if (trust_executable_bit &&
321
0
        (0100 & (ce->ce_mode ^ st->st_mode)))
322
0
      changed |= MODE_CHANGED;
323
0
    break;
324
0
  case S_IFLNK:
325
0
    if (!S_ISLNK(st->st_mode) &&
326
0
        (has_symlinks || !S_ISREG(st->st_mode)))
327
0
      changed |= TYPE_CHANGED;
328
0
    break;
329
0
  case S_IFGITLINK:
330
    /* We ignore most of the st_xxx fields for gitlinks */
331
0
    if (!S_ISDIR(st->st_mode))
332
0
      changed |= TYPE_CHANGED;
333
0
    else if (ce_compare_gitlink(ce))
334
0
      changed |= DATA_CHANGED;
335
0
    return changed;
336
0
  default:
337
0
    BUG("unsupported ce_mode: %o", ce->ce_mode);
338
0
  }
339
340
0
  changed |= match_stat_data(&ce->ce_stat_data, st);
341
342
  /* Racily smudged entry? */
343
0
  if (!ce->ce_stat_data.sd_size) {
344
0
    if (!is_empty_blob_oid(&ce->oid, the_repository->hash_algo))
345
0
      changed |= DATA_CHANGED;
346
0
  }
347
348
0
  return changed;
349
0
}
350
351
static int is_racy_stat(const struct index_state *istate,
352
      const struct stat_data *sd)
353
0
{
354
0
  return (istate->timestamp.sec &&
355
#ifdef USE_NSEC
356
     /* nanosecond timestamped files can also be racy! */
357
    (istate->timestamp.sec < sd->sd_mtime.sec ||
358
     (istate->timestamp.sec == sd->sd_mtime.sec &&
359
      istate->timestamp.nsec <= sd->sd_mtime.nsec))
360
#else
361
0
    istate->timestamp.sec <= sd->sd_mtime.sec
362
0
#endif
363
0
    );
364
0
}
365
366
int is_racy_timestamp(const struct index_state *istate,
367
           const struct cache_entry *ce)
368
0
{
369
0
  return (!S_ISGITLINK(ce->ce_mode) &&
370
0
    is_racy_stat(istate, &ce->ce_stat_data));
371
0
}
372
373
int match_stat_data_racy(const struct index_state *istate,
374
       const struct stat_data *sd, struct stat *st)
375
0
{
376
0
  if (is_racy_stat(istate, sd))
377
0
    return MTIME_CHANGED;
378
0
  return match_stat_data(sd, st);
379
0
}
380
381
int ie_match_stat(struct index_state *istate,
382
      const struct cache_entry *ce, struct stat *st,
383
      unsigned int options)
384
0
{
385
0
  unsigned int changed;
386
0
  int ignore_valid = options & CE_MATCH_IGNORE_VALID;
387
0
  int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE;
388
0
  int assume_racy_is_modified = options & CE_MATCH_RACY_IS_DIRTY;
389
0
  int ignore_fsmonitor = options & CE_MATCH_IGNORE_FSMONITOR;
390
391
0
  if (!ignore_fsmonitor)
392
0
    refresh_fsmonitor(istate);
393
  /*
394
   * If it's marked as always valid in the index, it's
395
   * valid whatever the checked-out copy says.
396
   *
397
   * skip-worktree has the same effect with higher precedence
398
   */
399
0
  if (!ignore_skip_worktree && ce_skip_worktree(ce))
400
0
    return 0;
401
0
  if (!ignore_valid && (ce->ce_flags & CE_VALID))
402
0
    return 0;
403
0
  if (!ignore_fsmonitor && (ce->ce_flags & CE_FSMONITOR_VALID))
404
0
    return 0;
405
406
  /*
407
   * Intent-to-add entries have not been added, so the index entry
408
   * by definition never matches what is in the work tree until it
409
   * actually gets added.
410
   */
411
0
  if (ce_intent_to_add(ce))
412
0
    return DATA_CHANGED | TYPE_CHANGED | MODE_CHANGED;
413
414
0
  changed = ce_match_stat_basic(ce, st);
415
416
  /*
417
   * Within 1 second of this sequence:
418
   *  echo xyzzy >file && git-update-index --add file
419
   * running this command:
420
   *  echo frotz >file
421
   * would give a falsely clean cache entry.  The mtime and
422
   * length match the cache, and other stat fields do not change.
423
   *
424
   * We could detect this at update-index time (the cache entry
425
   * being registered/updated records the same time as "now")
426
   * and delay the return from git-update-index, but that would
427
   * effectively mean we can make at most one commit per second,
428
   * which is not acceptable.  Instead, we check cache entries
429
   * whose mtime are the same as the index file timestamp more
430
   * carefully than others.
431
   */
432
0
  if (!changed && is_racy_timestamp(istate, ce)) {
433
0
    if (assume_racy_is_modified)
434
0
      changed |= DATA_CHANGED;
435
0
    else
436
0
      changed |= ce_modified_check_fs(istate, ce, st);
437
0
  }
438
439
0
  return changed;
440
0
}
441
442
int ie_modified(struct index_state *istate,
443
    const struct cache_entry *ce,
444
    struct stat *st, unsigned int options)
445
0
{
446
0
  int changed, changed_fs;
447
448
0
  changed = ie_match_stat(istate, ce, st, options);
449
0
  if (!changed)
450
0
    return 0;
451
  /*
452
   * If the mode or type has changed, there's no point in trying
453
   * to refresh the entry - it's not going to match
454
   */
455
0
  if (changed & (MODE_CHANGED | TYPE_CHANGED))
456
0
    return changed;
457
458
  /*
459
   * Immediately after read-tree or update-index --cacheinfo,
460
   * the length field is zero, as we have never even read the
461
   * lstat(2) information once, and we cannot trust DATA_CHANGED
462
   * returned by ie_match_stat() which in turn was returned by
463
   * ce_match_stat_basic() to signal that the filesize of the
464
   * blob changed.  We have to actually go to the filesystem to
465
   * see if the contents match, and if so, should answer "unchanged".
466
   *
467
   * The logic does not apply to gitlinks, as ce_match_stat_basic()
468
   * already has checked the actual HEAD from the filesystem in the
469
   * subproject.  If ie_match_stat() already said it is different,
470
   * then we know it is.
471
   */
472
0
  if ((changed & DATA_CHANGED) &&
473
#ifdef GIT_WINDOWS_NATIVE
474
      /*
475
       * Work around Git for Windows v2.27.0 fixing a bug where symlinks'
476
       * target path lengths were not read at all, and instead recorded
477
       * as 4096: now, all symlinks would appear as modified.
478
       *
479
       * So let's just special-case symlinks with a target path length
480
       * (i.e. `sd_size`) of 4096 and force them to be re-checked.
481
       */
482
      (!S_ISLNK(st->st_mode) || ce->ce_stat_data.sd_size != MAX_PATH) &&
483
#endif
484
0
      (S_ISGITLINK(ce->ce_mode) || ce->ce_stat_data.sd_size != 0))
485
0
    return changed;
486
487
0
  changed_fs = ce_modified_check_fs(istate, ce, st);
488
0
  if (changed_fs)
489
0
    return changed | changed_fs;
490
0
  return 0;
491
0
}
492
493
static int cache_name_stage_compare(const char *name1, int len1, int stage1,
494
            const char *name2, int len2, int stage2)
495
0
{
496
0
  int cmp;
497
498
0
  cmp = name_compare(name1, len1, name2, len2);
499
0
  if (cmp)
500
0
    return cmp;
501
502
0
  if (stage1 < stage2)
503
0
    return -1;
504
0
  if (stage1 > stage2)
505
0
    return 1;
506
0
  return 0;
507
0
}
508
509
int cmp_cache_name_compare(const void *a_, const void *b_)
510
0
{
511
0
  const struct cache_entry *ce1, *ce2;
512
513
0
  ce1 = *((const struct cache_entry **)a_);
514
0
  ce2 = *((const struct cache_entry **)b_);
515
0
  return cache_name_stage_compare(ce1->name, ce1->ce_namelen, ce_stage(ce1),
516
0
          ce2->name, ce2->ce_namelen, ce_stage(ce2));
517
0
}
518
519
static int index_name_stage_pos(struct index_state *istate,
520
        const char *name, int namelen,
521
        int stage,
522
        enum index_search_mode search_mode)
523
0
{
524
0
  int first, last;
525
526
0
  first = 0;
527
0
  last = istate->cache_nr;
528
0
  while (last > first) {
529
0
    int next = first + ((last - first) >> 1);
530
0
    struct cache_entry *ce = istate->cache[next];
531
0
    int cmp = cache_name_stage_compare(name, namelen, stage, ce->name, ce_namelen(ce), ce_stage(ce));
532
0
    if (!cmp)
533
0
      return next;
534
0
    if (cmp < 0) {
535
0
      last = next;
536
0
      continue;
537
0
    }
538
0
    first = next+1;
539
0
  }
540
541
0
  if (search_mode == EXPAND_SPARSE && istate->sparse_index &&
542
0
      first > 0) {
543
    /* Note: first <= istate->cache_nr */
544
0
    struct cache_entry *ce = istate->cache[first - 1];
545
546
    /*
547
     * If we are in a sparse-index _and_ the entry before the
548
     * insertion position is a sparse-directory entry that is
549
     * an ancestor of 'name', then we need to expand the index
550
     * and search again. This will only trigger once, because
551
     * thereafter the index is fully expanded.
552
     */
553
0
    if (S_ISSPARSEDIR(ce->ce_mode) &&
554
0
        ce_namelen(ce) < namelen &&
555
0
        !strncmp(name, ce->name, ce_namelen(ce))) {
556
0
      ensure_full_index(istate);
557
0
      return index_name_stage_pos(istate, name, namelen, stage, search_mode);
558
0
    }
559
0
  }
560
561
0
  return -first-1;
562
0
}
563
564
int index_name_pos(struct index_state *istate, const char *name, int namelen)
565
0
{
566
0
  return index_name_stage_pos(istate, name, namelen, 0, EXPAND_SPARSE);
567
0
}
568
569
int index_name_pos_sparse(struct index_state *istate, const char *name, int namelen)
570
0
{
571
0
  return index_name_stage_pos(istate, name, namelen, 0, NO_EXPAND_SPARSE);
572
0
}
573
574
int index_entry_exists(struct index_state *istate, const char *name, int namelen)
575
0
{
576
0
  return index_name_stage_pos(istate, name, namelen, 0, NO_EXPAND_SPARSE) >= 0;
577
0
}
578
579
int remove_index_entry_at(struct index_state *istate, int pos)
580
0
{
581
0
  struct cache_entry *ce = istate->cache[pos];
582
583
0
  record_resolve_undo(istate, ce);
584
0
  remove_name_hash(istate, ce);
585
0
  save_or_free_index_entry(istate, ce);
586
0
  istate->cache_changed |= CE_ENTRY_REMOVED;
587
0
  istate->cache_nr--;
588
0
  if (pos >= istate->cache_nr)
589
0
    return 0;
590
0
  MOVE_ARRAY(istate->cache + pos, istate->cache + pos + 1,
591
0
       istate->cache_nr - pos);
592
0
  return 1;
593
0
}
594
595
/*
596
 * Remove all cache entries marked for removal, that is where
597
 * CE_REMOVE is set in ce_flags.  This is much more effective than
598
 * calling remove_index_entry_at() for each entry to be removed.
599
 */
600
void remove_marked_cache_entries(struct index_state *istate, int invalidate)
601
0
{
602
0
  struct cache_entry **ce_array = istate->cache;
603
0
  unsigned int i, j;
604
605
0
  for (i = j = 0; i < istate->cache_nr; i++) {
606
0
    if (ce_array[i]->ce_flags & CE_REMOVE) {
607
0
      if (invalidate) {
608
0
        cache_tree_invalidate_path(istate,
609
0
                 ce_array[i]->name);
610
0
        untracked_cache_remove_from_index(istate,
611
0
                  ce_array[i]->name);
612
0
      }
613
0
      remove_name_hash(istate, ce_array[i]);
614
0
      save_or_free_index_entry(istate, ce_array[i]);
615
0
    }
616
0
    else
617
0
      ce_array[j++] = ce_array[i];
618
0
  }
619
0
  if (j == istate->cache_nr)
620
0
    return;
621
0
  istate->cache_changed |= CE_ENTRY_REMOVED;
622
0
  istate->cache_nr = j;
623
0
}
624
625
int remove_file_from_index(struct index_state *istate, const char *path)
626
0
{
627
0
  int pos = index_name_pos(istate, path, strlen(path));
628
0
  if (pos < 0)
629
0
    pos = -pos-1;
630
0
  cache_tree_invalidate_path(istate, path);
631
0
  untracked_cache_remove_from_index(istate, path);
632
0
  while (pos < istate->cache_nr && !strcmp(istate->cache[pos]->name, path))
633
0
    remove_index_entry_at(istate, pos);
634
0
  return 0;
635
0
}
636
637
static int compare_name(struct cache_entry *ce, const char *path, int namelen)
638
0
{
639
0
  return namelen != ce_namelen(ce) || memcmp(path, ce->name, namelen);
640
0
}
641
642
static int index_name_pos_also_unmerged(struct index_state *istate,
643
  const char *path, int namelen)
644
0
{
645
0
  int pos = index_name_pos(istate, path, namelen);
646
0
  struct cache_entry *ce;
647
648
0
  if (pos >= 0)
649
0
    return pos;
650
651
  /* maybe unmerged? */
652
0
  pos = -1 - pos;
653
0
  if (pos >= istate->cache_nr ||
654
0
      compare_name((ce = istate->cache[pos]), path, namelen))
655
0
    return -1;
656
657
  /* order of preference: stage 2, 1, 3 */
658
0
  if (ce_stage(ce) == 1 && pos + 1 < istate->cache_nr &&
659
0
      ce_stage((ce = istate->cache[pos + 1])) == 2 &&
660
0
      !compare_name(ce, path, namelen))
661
0
    pos++;
662
0
  return pos;
663
0
}
664
665
static int different_name(struct cache_entry *ce, struct cache_entry *alias)
666
0
{
667
0
  int len = ce_namelen(ce);
668
0
  return ce_namelen(alias) != len || memcmp(ce->name, alias->name, len);
669
0
}
670
671
/*
672
 * If we add a filename that aliases in the cache, we will use the
673
 * name that we already have - but we don't want to update the same
674
 * alias twice, because that implies that there were actually two
675
 * different files with aliasing names!
676
 *
677
 * So we use the CE_ADDED flag to verify that the alias was an old
678
 * one before we accept it as
679
 */
680
static struct cache_entry *create_alias_ce(struct index_state *istate,
681
             struct cache_entry *ce,
682
             struct cache_entry *alias)
683
0
{
684
0
  int len;
685
0
  struct cache_entry *new_entry;
686
687
0
  if (alias->ce_flags & CE_ADDED)
688
0
    die(_("will not add file alias '%s' ('%s' already exists in index)"),
689
0
        ce->name, alias->name);
690
691
  /* Ok, create the new entry using the name of the existing alias */
692
0
  len = ce_namelen(alias);
693
0
  new_entry = make_empty_cache_entry(istate, len);
694
0
  memcpy(new_entry->name, alias->name, len);
695
0
  copy_cache_entry(new_entry, ce);
696
0
  save_or_free_index_entry(istate, ce);
697
0
  return new_entry;
698
0
}
699
700
void set_object_name_for_intent_to_add_entry(struct cache_entry *ce)
701
0
{
702
0
  struct object_id oid;
703
0
  if (odb_write_object(the_repository->objects, "", 0, OBJ_BLOB, &oid))
704
0
    die(_("cannot create an empty blob in the object database"));
705
0
  oidcpy(&ce->oid, &oid);
706
0
}
707
708
int add_to_index(struct index_state *istate, const char *path, struct stat *st, int flags)
709
0
{
710
0
  int namelen, was_same;
711
0
  mode_t st_mode = st->st_mode;
712
0
  struct cache_entry *ce, *alias = NULL;
713
0
  unsigned ce_option = CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE|CE_MATCH_RACY_IS_DIRTY;
714
0
  int verbose = flags & (ADD_CACHE_VERBOSE | ADD_CACHE_PRETEND);
715
0
  int pretend = flags & ADD_CACHE_PRETEND;
716
0
  int intent_only = flags & ADD_CACHE_INTENT;
717
0
  int add_option = (ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE|
718
0
        (intent_only ? ADD_CACHE_NEW_ONLY : 0));
719
0
  unsigned hash_flags = pretend ? 0 : INDEX_WRITE_OBJECT;
720
721
0
  if (flags & ADD_CACHE_RENORMALIZE)
722
0
    hash_flags |= INDEX_RENORMALIZE;
723
724
0
  if (!S_ISREG(st_mode) && !S_ISLNK(st_mode) && !S_ISDIR(st_mode))
725
0
    return error(_("%s: can only add regular files, symbolic links or git-directories"), path);
726
727
0
  namelen = strlen(path);
728
0
  if (S_ISDIR(st_mode)) {
729
0
    while (namelen && path[namelen-1] == '/')
730
0
      namelen--;
731
0
  }
732
0
  ce = make_empty_cache_entry(istate, namelen);
733
0
  memcpy(ce->name, path, namelen);
734
0
  ce->ce_namelen = namelen;
735
0
  if (!intent_only)
736
0
    fill_stat_cache_info(istate, ce, st);
737
0
  else
738
0
    ce->ce_flags |= CE_INTENT_TO_ADD;
739
740
741
0
  if (trust_executable_bit && has_symlinks) {
742
0
    ce->ce_mode = create_ce_mode(st_mode);
743
0
  } else {
744
    /* If there is an existing entry, pick the mode bits and type
745
     * from it, otherwise assume unexecutable regular file.
746
     */
747
0
    struct cache_entry *ent;
748
0
    int pos = index_name_pos_also_unmerged(istate, path, namelen);
749
750
0
    ent = (0 <= pos) ? istate->cache[pos] : NULL;
751
0
    ce->ce_mode = ce_mode_from_stat(ent, st_mode);
752
0
  }
753
754
  /* When core.ignorecase=true, determine if a directory of the same name but differing
755
   * case already exists within the Git repository.  If it does, ensure the directory
756
   * case of the file being added to the repository matches (is folded into) the existing
757
   * entry's directory case.
758
   */
759
0
  if (ignore_case) {
760
0
    adjust_dirname_case(istate, ce->name);
761
0
  }
762
0
  if (!(flags & ADD_CACHE_RENORMALIZE)) {
763
0
    alias = index_file_exists(istate, ce->name,
764
0
            ce_namelen(ce), ignore_case);
765
0
    if (alias &&
766
0
        !ce_stage(alias) &&
767
0
        !ie_match_stat(istate, alias, st, ce_option)) {
768
      /* Nothing changed, really */
769
0
      if (!S_ISGITLINK(alias->ce_mode))
770
0
        ce_mark_uptodate(alias);
771
0
      alias->ce_flags |= CE_ADDED;
772
773
0
      discard_cache_entry(ce);
774
0
      return 0;
775
0
    }
776
0
  }
777
0
  if (!intent_only) {
778
0
    if (index_path(istate, &ce->oid, path, st, hash_flags)) {
779
0
      discard_cache_entry(ce);
780
0
      return error(_("unable to index file '%s'"), path);
781
0
    }
782
0
  } else
783
0
    set_object_name_for_intent_to_add_entry(ce);
784
785
0
  if (ignore_case && alias && different_name(ce, alias))
786
0
    ce = create_alias_ce(istate, ce, alias);
787
0
  ce->ce_flags |= CE_ADDED;
788
789
  /* It was suspected to be racily clean, but it turns out to be Ok */
790
0
  was_same = (alias &&
791
0
        !ce_stage(alias) &&
792
0
        oideq(&alias->oid, &ce->oid) &&
793
0
        ce->ce_mode == alias->ce_mode);
794
795
0
  if (pretend)
796
0
    discard_cache_entry(ce);
797
0
  else if (add_index_entry(istate, ce, add_option)) {
798
0
    discard_cache_entry(ce);
799
0
    return error(_("unable to add '%s' to index"), path);
800
0
  }
801
0
  if (verbose && !was_same)
802
0
    printf("add '%s'\n", path);
803
0
  return 0;
804
0
}
805
806
int add_file_to_index(struct index_state *istate, const char *path, int flags)
807
0
{
808
0
  struct stat st;
809
0
  if (lstat(path, &st))
810
0
    die_errno(_("unable to stat '%s'"), path);
811
0
  return add_to_index(istate, path, &st, flags);
812
0
}
813
814
struct cache_entry *make_empty_cache_entry(struct index_state *istate, size_t len)
815
0
{
816
0
  return mem_pool__ce_calloc(find_mem_pool(istate), len);
817
0
}
818
819
struct cache_entry *make_empty_transient_cache_entry(size_t len,
820
                 struct mem_pool *ce_mem_pool)
821
0
{
822
0
  if (ce_mem_pool)
823
0
    return mem_pool__ce_calloc(ce_mem_pool, len);
824
0
  return xcalloc(1, cache_entry_size(len));
825
0
}
826
827
enum verify_path_result {
828
  PATH_OK,
829
  PATH_INVALID,
830
  PATH_DIR_WITH_SEP,
831
};
832
833
static enum verify_path_result verify_path_internal(const char *, unsigned);
834
835
int verify_path(const char *path, unsigned mode)
836
0
{
837
0
  return verify_path_internal(path, mode) == PATH_OK;
838
0
}
839
840
struct cache_entry *make_cache_entry(struct index_state *istate,
841
             unsigned int mode,
842
             const struct object_id *oid,
843
             const char *path,
844
             int stage,
845
             unsigned int refresh_options)
846
0
{
847
0
  struct cache_entry *ce, *ret;
848
0
  int len;
849
850
0
  if (verify_path_internal(path, mode) == PATH_INVALID) {
851
0
    error(_("invalid path '%s'"), path);
852
0
    return NULL;
853
0
  }
854
855
0
  len = strlen(path);
856
0
  ce = make_empty_cache_entry(istate, len);
857
858
0
  oidcpy(&ce->oid, oid);
859
0
  memcpy(ce->name, path, len);
860
0
  ce->ce_flags = create_ce_flags(stage);
861
0
  ce->ce_namelen = len;
862
0
  ce->ce_mode = create_ce_mode(mode);
863
864
0
  ret = refresh_cache_entry(istate, ce, refresh_options);
865
0
  if (ret != ce)
866
0
    discard_cache_entry(ce);
867
0
  return ret;
868
0
}
869
870
struct cache_entry *make_transient_cache_entry(unsigned int mode,
871
                 const struct object_id *oid,
872
                 const char *path,
873
                 int stage,
874
                 struct mem_pool *ce_mem_pool)
875
0
{
876
0
  struct cache_entry *ce;
877
0
  int len;
878
879
0
  if (!verify_path(path, mode)) {
880
0
    error(_("invalid path '%s'"), path);
881
0
    return NULL;
882
0
  }
883
884
0
  len = strlen(path);
885
0
  ce = make_empty_transient_cache_entry(len, ce_mem_pool);
886
887
0
  oidcpy(&ce->oid, oid);
888
0
  memcpy(ce->name, path, len);
889
0
  ce->ce_flags = create_ce_flags(stage);
890
0
  ce->ce_namelen = len;
891
0
  ce->ce_mode = create_ce_mode(mode);
892
893
0
  return ce;
894
0
}
895
896
/*
897
 * Chmod an index entry with either +x or -x.
898
 *
899
 * Returns -1 if the chmod for the particular cache entry failed (if it's
900
 * not a regular file), -2 if an invalid flip argument is passed in, 0
901
 * otherwise.
902
 */
903
int chmod_index_entry(struct index_state *istate, struct cache_entry *ce,
904
          char flip)
905
0
{
906
0
  if (!S_ISREG(ce->ce_mode))
907
0
    return -1;
908
0
  switch (flip) {
909
0
  case '+':
910
0
    ce->ce_mode |= 0111;
911
0
    break;
912
0
  case '-':
913
0
    ce->ce_mode &= ~0111;
914
0
    break;
915
0
  default:
916
0
    return -2;
917
0
  }
918
0
  cache_tree_invalidate_path(istate, ce->name);
919
0
  ce->ce_flags |= CE_UPDATE_IN_BASE;
920
0
  mark_fsmonitor_invalid(istate, ce);
921
0
  istate->cache_changed |= CE_ENTRY_CHANGED;
922
923
0
  return 0;
924
0
}
925
926
int ce_same_name(const struct cache_entry *a, const struct cache_entry *b)
927
0
{
928
0
  int len = ce_namelen(a);
929
0
  return ce_namelen(b) == len && !memcmp(a->name, b->name, len);
930
0
}
931
932
/*
933
 * We fundamentally don't like some paths: we don't want
934
 * dot or dot-dot anywhere, and for obvious reasons don't
935
 * want to recurse into ".git" either.
936
 *
937
 * Also, we don't want double slashes or slashes at the
938
 * end that can make pathnames ambiguous.
939
 */
940
static int verify_dotfile(const char *rest, unsigned mode)
941
0
{
942
  /*
943
   * The first character was '.', but that
944
   * has already been discarded, we now test
945
   * the rest.
946
   */
947
948
  /* "." is not allowed */
949
0
  if (*rest == '\0' || is_dir_sep(*rest))
950
0
    return 0;
951
952
0
  switch (*rest) {
953
  /*
954
   * ".git" followed by NUL or slash is bad. Note that we match
955
   * case-insensitively here, even if ignore_case is not set.
956
   * This outlaws ".GIT" everywhere out of an abundance of caution,
957
   * since there's really no good reason to allow it.
958
   *
959
   * Once we've seen ".git", we can also find ".gitmodules", etc (also
960
   * case-insensitively).
961
   */
962
0
  case 'g':
963
0
  case 'G':
964
0
    if (rest[1] != 'i' && rest[1] != 'I')
965
0
      break;
966
0
    if (rest[2] != 't' && rest[2] != 'T')
967
0
      break;
968
0
    if (rest[3] == '\0' || is_dir_sep(rest[3]))
969
0
      return 0;
970
0
    if (S_ISLNK(mode)) {
971
0
      rest += 3;
972
0
      if (skip_iprefix(rest, "modules", &rest) &&
973
0
          (*rest == '\0' || is_dir_sep(*rest)))
974
0
        return 0;
975
0
    }
976
0
    break;
977
0
  case '.':
978
0
    if (rest[1] == '\0' || is_dir_sep(rest[1]))
979
0
      return 0;
980
0
  }
981
0
  return 1;
982
0
}
983
984
static enum verify_path_result verify_path_internal(const char *path,
985
                unsigned mode)
986
0
{
987
0
  char c = 0;
988
989
0
  if (has_dos_drive_prefix(path))
990
0
    return PATH_INVALID;
991
992
0
  if (!is_valid_path(path))
993
0
    return PATH_INVALID;
994
995
0
  goto inside;
996
0
  for (;;) {
997
0
    if (!c)
998
0
      return PATH_OK;
999
0
    if (is_dir_sep(c)) {
1000
0
inside:
1001
0
      if (protect_hfs) {
1002
1003
0
        if (is_hfs_dotgit(path))
1004
0
          return PATH_INVALID;
1005
0
        if (S_ISLNK(mode)) {
1006
0
          if (is_hfs_dotgitmodules(path))
1007
0
            return PATH_INVALID;
1008
0
        }
1009
0
      }
1010
0
      if (protect_ntfs) {
1011
#if defined GIT_WINDOWS_NATIVE || defined __CYGWIN__
1012
        if (c == '\\')
1013
          return PATH_INVALID;
1014
#endif
1015
0
        if (is_ntfs_dotgit(path))
1016
0
          return PATH_INVALID;
1017
0
        if (S_ISLNK(mode)) {
1018
0
          if (is_ntfs_dotgitmodules(path))
1019
0
            return PATH_INVALID;
1020
0
        }
1021
0
      }
1022
1023
0
      c = *path++;
1024
0
      if ((c == '.' && !verify_dotfile(path, mode)) ||
1025
0
          is_dir_sep(c))
1026
0
        return PATH_INVALID;
1027
      /*
1028
       * allow terminating directory separators for
1029
       * sparse directory entries.
1030
       */
1031
0
      if (c == '\0')
1032
0
        return S_ISDIR(mode) ? PATH_DIR_WITH_SEP :
1033
0
                   PATH_INVALID;
1034
0
    } else if (c == '\\' && protect_ntfs) {
1035
0
      if (is_ntfs_dotgit(path))
1036
0
        return PATH_INVALID;
1037
0
      if (S_ISLNK(mode)) {
1038
0
        if (is_ntfs_dotgitmodules(path))
1039
0
          return PATH_INVALID;
1040
0
      }
1041
0
    }
1042
1043
0
    c = *path++;
1044
0
  }
1045
0
}
1046
1047
/*
1048
 * Do we have another file that has the beginning components being a
1049
 * proper superset of the name we're trying to add?
1050
 */
1051
static int has_file_name(struct index_state *istate,
1052
       const struct cache_entry *ce, int pos, int ok_to_replace)
1053
0
{
1054
0
  int retval = 0;
1055
0
  int len = ce_namelen(ce);
1056
0
  int stage = ce_stage(ce);
1057
0
  const char *name = ce->name;
1058
1059
0
  while (pos < istate->cache_nr) {
1060
0
    struct cache_entry *p = istate->cache[pos++];
1061
1062
0
    if (len >= ce_namelen(p))
1063
0
      break;
1064
0
    if (memcmp(name, p->name, len))
1065
0
      break;
1066
0
    if (ce_stage(p) != stage)
1067
0
      continue;
1068
0
    if (p->name[len] != '/')
1069
0
      continue;
1070
0
    if (p->ce_flags & CE_REMOVE)
1071
0
      continue;
1072
0
    retval = -1;
1073
0
    if (!ok_to_replace)
1074
0
      break;
1075
0
    remove_index_entry_at(istate, --pos);
1076
0
  }
1077
0
  return retval;
1078
0
}
1079
1080
1081
/*
1082
 * Like strcmp(), but also return the offset of the first change.
1083
 * If strings are equal, return the length.
1084
 */
1085
int strcmp_offset(const char *s1, const char *s2, size_t *first_change)
1086
0
{
1087
0
  size_t k;
1088
1089
0
  if (!first_change)
1090
0
    return strcmp(s1, s2);
1091
1092
0
  for (k = 0; s1[k] == s2[k]; k++)
1093
0
    if (s1[k] == '\0')
1094
0
      break;
1095
1096
0
  *first_change = k;
1097
0
  return (unsigned char)s1[k] - (unsigned char)s2[k];
1098
0
}
1099
1100
/*
1101
 * Do we have another file with a pathname that is a proper
1102
 * subset of the name we're trying to add?
1103
 *
1104
 * That is, is there another file in the index with a path
1105
 * that matches a sub-directory in the given entry?
1106
 */
1107
static int has_dir_name(struct index_state *istate,
1108
      const struct cache_entry *ce, int pos, int ok_to_replace)
1109
0
{
1110
0
  int retval = 0;
1111
0
  int stage = ce_stage(ce);
1112
0
  const char *name = ce->name;
1113
0
  const char *slash = name + ce_namelen(ce);
1114
0
  size_t len_eq_last;
1115
0
  int cmp_last = 0;
1116
1117
  /*
1118
   * We are frequently called during an iteration on a sorted
1119
   * list of pathnames and while building a new index.  Therefore,
1120
   * there is a high probability that this entry will eventually
1121
   * be appended to the index, rather than inserted in the middle.
1122
   * If we can confirm that, we can avoid binary searches on the
1123
   * components of the pathname.
1124
   *
1125
   * Compare the entry's full path with the last path in the index.
1126
   */
1127
0
  if (!istate->cache_nr)
1128
0
    return 0;
1129
1130
0
  cmp_last = strcmp_offset(name,
1131
0
         istate->cache[istate->cache_nr - 1]->name,
1132
0
         &len_eq_last);
1133
0
  if (cmp_last > 0 && name[len_eq_last] != '/')
1134
    /*
1135
     * The entry sorts AFTER the last one in the
1136
     * index and their paths have no common prefix,
1137
     * so there cannot be a F/D conflict.
1138
     */
1139
0
    return 0;
1140
1141
0
  for (;;) {
1142
0
    size_t len;
1143
1144
0
    for (;;) {
1145
0
      if (*--slash == '/')
1146
0
        break;
1147
0
      if (slash <= ce->name)
1148
0
        return retval;
1149
0
    }
1150
0
    len = slash - name;
1151
1152
0
    pos = index_name_stage_pos(istate, name, len, stage, EXPAND_SPARSE);
1153
0
    if (pos >= 0) {
1154
      /*
1155
       * Found one, but not so fast.  This could
1156
       * be a marker that says "I was here, but
1157
       * I am being removed".  Such an entry is
1158
       * not a part of the resulting tree, and
1159
       * it is Ok to have a directory at the same
1160
       * path.
1161
       */
1162
0
      if (!(istate->cache[pos]->ce_flags & CE_REMOVE)) {
1163
0
        retval = -1;
1164
0
        if (!ok_to_replace)
1165
0
          break;
1166
0
        remove_index_entry_at(istate, pos);
1167
0
        continue;
1168
0
      }
1169
0
    }
1170
0
    else
1171
0
      pos = -pos-1;
1172
1173
    /*
1174
     * Trivial optimization: if we find an entry that
1175
     * already matches the sub-directory, then we know
1176
     * we're ok, and we can exit.
1177
     */
1178
0
    while (pos < istate->cache_nr) {
1179
0
      struct cache_entry *p = istate->cache[pos];
1180
0
      if ((ce_namelen(p) <= len) ||
1181
0
          (p->name[len] != '/') ||
1182
0
          memcmp(p->name, name, len))
1183
0
        break; /* not our subdirectory */
1184
0
      if (ce_stage(p) == stage && !(p->ce_flags & CE_REMOVE))
1185
        /*
1186
         * p is at the same stage as our entry, and
1187
         * is a subdirectory of what we are looking
1188
         * at, so we cannot have conflicts at our
1189
         * level or anything shorter.
1190
         */
1191
0
        return retval;
1192
0
      pos++;
1193
0
    }
1194
0
  }
1195
0
  return retval;
1196
0
}
1197
1198
/* We may be in a situation where we already have path/file and path
1199
 * is being added, or we already have path and path/file is being
1200
 * added.  Either one would result in a nonsense tree that has path
1201
 * twice when git-write-tree tries to write it out.  Prevent it.
1202
 *
1203
 * If ok-to-replace is specified, we remove the conflicting entries
1204
 * from the cache so the caller should recompute the insert position.
1205
 * When this happens, we return non-zero.
1206
 */
1207
static int check_file_directory_conflict(struct index_state *istate,
1208
           const struct cache_entry *ce,
1209
           int pos, int ok_to_replace)
1210
0
{
1211
0
  int retval;
1212
1213
  /*
1214
   * When ce is an "I am going away" entry, we allow it to be added
1215
   */
1216
0
  if (ce->ce_flags & CE_REMOVE)
1217
0
    return 0;
1218
1219
  /*
1220
   * We check if the path is a sub-path of a subsequent pathname
1221
   * first, since removing those will not change the position
1222
   * in the array.
1223
   */
1224
0
  retval = has_file_name(istate, ce, pos, ok_to_replace);
1225
1226
  /*
1227
   * Then check if the path might have a clashing sub-directory
1228
   * before it.
1229
   */
1230
0
  return retval + has_dir_name(istate, ce, pos, ok_to_replace);
1231
0
}
1232
1233
static int add_index_entry_with_check(struct index_state *istate, struct cache_entry *ce, int option)
1234
0
{
1235
0
  int pos;
1236
0
  int ok_to_add = option & ADD_CACHE_OK_TO_ADD;
1237
0
  int ok_to_replace = option & ADD_CACHE_OK_TO_REPLACE;
1238
0
  int skip_df_check = option & ADD_CACHE_SKIP_DFCHECK;
1239
0
  int new_only = option & ADD_CACHE_NEW_ONLY;
1240
1241
  /*
1242
   * If this entry's path sorts after the last entry in the index,
1243
   * we can avoid searching for it.
1244
   */
1245
0
  if (istate->cache_nr > 0 &&
1246
0
    strcmp(ce->name, istate->cache[istate->cache_nr - 1]->name) > 0)
1247
0
    pos = index_pos_to_insert_pos(istate->cache_nr);
1248
0
  else
1249
0
    pos = index_name_stage_pos(istate, ce->name, ce_namelen(ce), ce_stage(ce), EXPAND_SPARSE);
1250
1251
  /*
1252
   * Cache tree path should be invalidated only after index_name_stage_pos,
1253
   * in case it expands a sparse index.
1254
   */
1255
0
  if (!(option & ADD_CACHE_KEEP_CACHE_TREE))
1256
0
    cache_tree_invalidate_path(istate, ce->name);
1257
1258
  /* existing match? Just replace it. */
1259
0
  if (pos >= 0) {
1260
0
    if (!new_only)
1261
0
      replace_index_entry(istate, pos, ce);
1262
0
    return 0;
1263
0
  }
1264
0
  pos = -pos-1;
1265
1266
0
  if (!(option & ADD_CACHE_KEEP_CACHE_TREE))
1267
0
    untracked_cache_add_to_index(istate, ce->name);
1268
1269
  /*
1270
   * Inserting a merged entry ("stage 0") into the index
1271
   * will always replace all non-merged entries..
1272
   */
1273
0
  if (pos < istate->cache_nr && ce_stage(ce) == 0) {
1274
0
    while (ce_same_name(istate->cache[pos], ce)) {
1275
0
      ok_to_add = 1;
1276
0
      if (!remove_index_entry_at(istate, pos))
1277
0
        break;
1278
0
    }
1279
0
  }
1280
1281
0
  if (!ok_to_add)
1282
0
    return -1;
1283
0
  if (verify_path_internal(ce->name, ce->ce_mode) == PATH_INVALID)
1284
0
    return error(_("invalid path '%s'"), ce->name);
1285
1286
0
  if (!skip_df_check &&
1287
0
      check_file_directory_conflict(istate, ce, pos, ok_to_replace)) {
1288
0
    if (!ok_to_replace)
1289
0
      return error(_("'%s' appears as both a file and as a directory"),
1290
0
             ce->name);
1291
0
    pos = index_name_stage_pos(istate, ce->name, ce_namelen(ce), ce_stage(ce), EXPAND_SPARSE);
1292
0
    pos = -pos-1;
1293
0
  }
1294
0
  return pos + 1;
1295
0
}
1296
1297
int add_index_entry(struct index_state *istate, struct cache_entry *ce, int option)
1298
0
{
1299
0
  int pos;
1300
1301
0
  if (option & ADD_CACHE_JUST_APPEND)
1302
0
    pos = istate->cache_nr;
1303
0
  else {
1304
0
    int ret;
1305
0
    ret = add_index_entry_with_check(istate, ce, option);
1306
0
    if (ret <= 0)
1307
0
      return ret;
1308
0
    pos = ret - 1;
1309
0
  }
1310
1311
  /* Make sure the array is big enough .. */
1312
0
  ALLOC_GROW(istate->cache, istate->cache_nr + 1, istate->cache_alloc);
1313
1314
  /* Add it in.. */
1315
0
  istate->cache_nr++;
1316
0
  if (istate->cache_nr > pos + 1)
1317
0
    MOVE_ARRAY(istate->cache + pos + 1, istate->cache + pos,
1318
0
         istate->cache_nr - pos - 1);
1319
0
  set_index_entry(istate, pos, ce);
1320
0
  istate->cache_changed |= CE_ENTRY_ADDED;
1321
0
  return 0;
1322
0
}
1323
1324
/*
1325
 * "refresh" does not calculate a new sha1 file or bring the
1326
 * cache up-to-date for mode/content changes. But what it
1327
 * _does_ do is to "re-match" the stat information of a file
1328
 * with the cache, so that you can refresh the cache for a
1329
 * file that hasn't been changed but where the stat entry is
1330
 * out of date.
1331
 *
1332
 * For example, you'd want to do this after doing a "git-read-tree",
1333
 * to link up the stat cache details with the proper files.
1334
 */
1335
static struct cache_entry *refresh_cache_ent(struct index_state *istate,
1336
               struct cache_entry *ce,
1337
               unsigned int options, int *err,
1338
               int *changed_ret,
1339
               int *t2_did_lstat,
1340
               int *t2_did_scan)
1341
0
{
1342
0
  struct stat st;
1343
0
  struct cache_entry *updated;
1344
0
  int changed;
1345
0
  int refresh = options & CE_MATCH_REFRESH;
1346
0
  int ignore_valid = options & CE_MATCH_IGNORE_VALID;
1347
0
  int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE;
1348
0
  int ignore_missing = options & CE_MATCH_IGNORE_MISSING;
1349
0
  int ignore_fsmonitor = options & CE_MATCH_IGNORE_FSMONITOR;
1350
1351
0
  if (!refresh || ce_uptodate(ce))
1352
0
    return ce;
1353
1354
0
  if (!ignore_fsmonitor)
1355
0
    refresh_fsmonitor(istate);
1356
  /*
1357
   * CE_VALID or CE_SKIP_WORKTREE means the user promised us
1358
   * that the change to the work tree does not matter and told
1359
   * us not to worry.
1360
   */
1361
0
  if (!ignore_skip_worktree && ce_skip_worktree(ce)) {
1362
0
    ce_mark_uptodate(ce);
1363
0
    return ce;
1364
0
  }
1365
0
  if (!ignore_valid && (ce->ce_flags & CE_VALID)) {
1366
0
    ce_mark_uptodate(ce);
1367
0
    return ce;
1368
0
  }
1369
0
  if (!ignore_fsmonitor && (ce->ce_flags & CE_FSMONITOR_VALID)) {
1370
0
    ce_mark_uptodate(ce);
1371
0
    return ce;
1372
0
  }
1373
1374
0
  if (has_symlink_leading_path(ce->name, ce_namelen(ce))) {
1375
0
    if (ignore_missing)
1376
0
      return ce;
1377
0
    if (err)
1378
0
      *err = ENOENT;
1379
0
    return NULL;
1380
0
  }
1381
1382
0
  if (t2_did_lstat)
1383
0
    *t2_did_lstat = 1;
1384
0
  if (lstat(ce->name, &st) < 0) {
1385
0
    if (ignore_missing && errno == ENOENT)
1386
0
      return ce;
1387
0
    if (err)
1388
0
      *err = errno;
1389
0
    return NULL;
1390
0
  }
1391
1392
0
  changed = ie_match_stat(istate, ce, &st, options);
1393
0
  if (changed_ret)
1394
0
    *changed_ret = changed;
1395
0
  if (!changed) {
1396
    /*
1397
     * The path is unchanged.  If we were told to ignore
1398
     * valid bit, then we did the actual stat check and
1399
     * found that the entry is unmodified.  If the entry
1400
     * is not marked VALID, this is the place to mark it
1401
     * valid again, under "assume unchanged" mode.
1402
     */
1403
0
    if (ignore_valid && assume_unchanged &&
1404
0
        !(ce->ce_flags & CE_VALID))
1405
0
      ; /* mark this one VALID again */
1406
0
    else {
1407
      /*
1408
       * We do not mark the index itself "modified"
1409
       * because CE_UPTODATE flag is in-core only;
1410
       * we are not going to write this change out.
1411
       */
1412
0
      if (!S_ISGITLINK(ce->ce_mode)) {
1413
0
        ce_mark_uptodate(ce);
1414
0
        mark_fsmonitor_valid(istate, ce);
1415
0
      }
1416
0
      return ce;
1417
0
    }
1418
0
  }
1419
1420
0
  if (t2_did_scan)
1421
0
    *t2_did_scan = 1;
1422
0
  if (ie_modified(istate, ce, &st, options)) {
1423
0
    if (err)
1424
0
      *err = EINVAL;
1425
0
    return NULL;
1426
0
  }
1427
1428
0
  updated = make_empty_cache_entry(istate, ce_namelen(ce));
1429
0
  copy_cache_entry(updated, ce);
1430
0
  memcpy(updated->name, ce->name, ce->ce_namelen + 1);
1431
0
  fill_stat_cache_info(istate, updated, &st);
1432
  /*
1433
   * If ignore_valid is not set, we should leave CE_VALID bit
1434
   * alone.  Otherwise, paths marked with --no-assume-unchanged
1435
   * (i.e. things to be edited) will reacquire CE_VALID bit
1436
   * automatically, which is not really what we want.
1437
   */
1438
0
  if (!ignore_valid && assume_unchanged &&
1439
0
      !(ce->ce_flags & CE_VALID))
1440
0
    updated->ce_flags &= ~CE_VALID;
1441
1442
  /* istate->cache_changed is updated in the caller */
1443
0
  return updated;
1444
0
}
1445
1446
static void show_file(const char * fmt, const char * name, int in_porcelain,
1447
          int * first, const char *header_msg)
1448
0
{
1449
0
  if (in_porcelain && *first && header_msg) {
1450
0
    printf("%s\n", header_msg);
1451
0
    *first = 0;
1452
0
  }
1453
0
  printf(fmt, name);
1454
0
}
1455
1456
int repo_refresh_and_write_index(struct repository *repo,
1457
         unsigned int refresh_flags,
1458
         unsigned int write_flags,
1459
         int gentle,
1460
         const struct pathspec *pathspec,
1461
         char *seen, const char *header_msg)
1462
0
{
1463
0
  struct lock_file lock_file = LOCK_INIT;
1464
0
  int fd, ret = 0;
1465
1466
0
  fd = repo_hold_locked_index(repo, &lock_file,
1467
0
            gentle ? 0 : LOCK_REPORT_ON_ERROR);
1468
0
  if (!gentle && fd < 0)
1469
0
    return -1;
1470
0
  if (refresh_index(repo->index, refresh_flags, pathspec, seen, header_msg))
1471
0
    ret = 1;
1472
0
  if (0 <= fd && write_locked_index(repo->index, &lock_file, COMMIT_LOCK | write_flags))
1473
0
    ret = -1;
1474
0
  return ret;
1475
0
}
1476
1477
1478
int refresh_index(struct index_state *istate, unsigned int flags,
1479
      const struct pathspec *pathspec,
1480
      char *seen, const char *header_msg)
1481
0
{
1482
0
  int i;
1483
0
  int has_errors = 0;
1484
0
  int really = (flags & REFRESH_REALLY) != 0;
1485
0
  int allow_unmerged = (flags & REFRESH_UNMERGED) != 0;
1486
0
  int quiet = (flags & REFRESH_QUIET) != 0;
1487
0
  int not_new = (flags & REFRESH_IGNORE_MISSING) != 0;
1488
0
  int ignore_submodules = (flags & REFRESH_IGNORE_SUBMODULES) != 0;
1489
0
  int ignore_skip_worktree = (flags & REFRESH_IGNORE_SKIP_WORKTREE) != 0;
1490
0
  int first = 1;
1491
0
  int in_porcelain = (flags & REFRESH_IN_PORCELAIN);
1492
0
  unsigned int options = (CE_MATCH_REFRESH |
1493
0
        (really ? CE_MATCH_IGNORE_VALID : 0) |
1494
0
        (not_new ? CE_MATCH_IGNORE_MISSING : 0));
1495
0
  const char *modified_fmt;
1496
0
  const char *deleted_fmt;
1497
0
  const char *typechange_fmt;
1498
0
  const char *added_fmt;
1499
0
  const char *unmerged_fmt;
1500
0
  struct progress *progress = NULL;
1501
0
  int t2_sum_lstat = 0;
1502
0
  int t2_sum_scan = 0;
1503
1504
0
  if (flags & REFRESH_PROGRESS && isatty(2))
1505
0
    progress = start_delayed_progress(the_repository,
1506
0
              _("Refresh index"),
1507
0
              istate->cache_nr);
1508
1509
0
  trace_performance_enter();
1510
0
  modified_fmt   = in_porcelain ? "M\t%s\n" : "%s: needs update\n";
1511
0
  deleted_fmt    = in_porcelain ? "D\t%s\n" : "%s: needs update\n";
1512
0
  typechange_fmt = in_porcelain ? "T\t%s\n" : "%s: needs update\n";
1513
0
  added_fmt      = in_porcelain ? "A\t%s\n" : "%s: needs update\n";
1514
0
  unmerged_fmt   = in_porcelain ? "U\t%s\n" : "%s: needs merge\n";
1515
  /*
1516
   * Use the multi-threaded preload_index() to refresh most of the
1517
   * cache entries quickly then in the single threaded loop below,
1518
   * we only have to do the special cases that are left.
1519
   */
1520
0
  preload_index(istate, pathspec, 0);
1521
0
  trace2_region_enter("index", "refresh", NULL);
1522
1523
0
  for (i = 0; i < istate->cache_nr; i++) {
1524
0
    struct cache_entry *ce, *new_entry;
1525
0
    int cache_errno = 0;
1526
0
    int changed = 0;
1527
0
    int filtered = 0;
1528
0
    int t2_did_lstat = 0;
1529
0
    int t2_did_scan = 0;
1530
1531
0
    ce = istate->cache[i];
1532
0
    if (ignore_submodules && S_ISGITLINK(ce->ce_mode))
1533
0
      continue;
1534
0
    if (ignore_skip_worktree && ce_skip_worktree(ce))
1535
0
      continue;
1536
1537
    /*
1538
     * If this entry is a sparse directory, then there isn't
1539
     * any stat() information to update. Ignore the entry.
1540
     */
1541
0
    if (S_ISSPARSEDIR(ce->ce_mode))
1542
0
      continue;
1543
1544
0
    if (pathspec && !ce_path_match(istate, ce, pathspec, seen))
1545
0
      filtered = 1;
1546
1547
0
    if (ce_stage(ce)) {
1548
0
      while ((i < istate->cache_nr) &&
1549
0
             ! strcmp(istate->cache[i]->name, ce->name))
1550
0
        i++;
1551
0
      i--;
1552
0
      if (allow_unmerged)
1553
0
        continue;
1554
0
      if (!filtered)
1555
0
        show_file(unmerged_fmt, ce->name, in_porcelain,
1556
0
            &first, header_msg);
1557
0
      has_errors = 1;
1558
0
      continue;
1559
0
    }
1560
1561
0
    if (filtered)
1562
0
      continue;
1563
1564
0
    new_entry = refresh_cache_ent(istate, ce, options,
1565
0
                &cache_errno, &changed,
1566
0
                &t2_did_lstat, &t2_did_scan);
1567
0
    t2_sum_lstat += t2_did_lstat;
1568
0
    t2_sum_scan += t2_did_scan;
1569
0
    if (new_entry == ce)
1570
0
      continue;
1571
0
    display_progress(progress, i);
1572
0
    if (!new_entry) {
1573
0
      const char *fmt;
1574
1575
0
      if (really && cache_errno == EINVAL) {
1576
        /* If we are doing --really-refresh that
1577
         * means the index is not valid anymore.
1578
         */
1579
0
        ce->ce_flags &= ~CE_VALID;
1580
0
        ce->ce_flags |= CE_UPDATE_IN_BASE;
1581
0
        mark_fsmonitor_invalid(istate, ce);
1582
0
        istate->cache_changed |= CE_ENTRY_CHANGED;
1583
0
      }
1584
0
      if (quiet)
1585
0
        continue;
1586
1587
0
      if (cache_errno == ENOENT)
1588
0
        fmt = deleted_fmt;
1589
0
      else if (ce_intent_to_add(ce))
1590
0
        fmt = added_fmt; /* must be before other checks */
1591
0
      else if (changed & TYPE_CHANGED)
1592
0
        fmt = typechange_fmt;
1593
0
      else
1594
0
        fmt = modified_fmt;
1595
0
      show_file(fmt,
1596
0
          ce->name, in_porcelain, &first, header_msg);
1597
0
      has_errors = 1;
1598
0
      continue;
1599
0
    }
1600
1601
0
    replace_index_entry(istate, i, new_entry);
1602
0
  }
1603
0
  trace2_data_intmax("index", NULL, "refresh/sum_lstat", t2_sum_lstat);
1604
0
  trace2_data_intmax("index", NULL, "refresh/sum_scan", t2_sum_scan);
1605
0
  trace2_region_leave("index", "refresh", NULL);
1606
0
  display_progress(progress, istate->cache_nr);
1607
0
  stop_progress(&progress);
1608
0
  trace_performance_leave("refresh index");
1609
0
  return has_errors;
1610
0
}
1611
1612
struct cache_entry *refresh_cache_entry(struct index_state *istate,
1613
          struct cache_entry *ce,
1614
          unsigned int options)
1615
0
{
1616
0
  return refresh_cache_ent(istate, ce, options, NULL, NULL, NULL, NULL);
1617
0
}
1618
1619
1620
/*****************************************************************
1621
 * Index File I/O
1622
 *****************************************************************/
1623
1624
0
#define INDEX_FORMAT_DEFAULT 3
1625
1626
static unsigned int get_index_format_default(struct repository *r)
1627
0
{
1628
0
  char *envversion = getenv("GIT_INDEX_VERSION");
1629
0
  char *endp;
1630
0
  unsigned int version = INDEX_FORMAT_DEFAULT;
1631
1632
0
  if (!envversion) {
1633
0
    prepare_repo_settings(r);
1634
1635
0
    if (r->settings.index_version >= 0)
1636
0
      version = r->settings.index_version;
1637
0
    if (version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) {
1638
0
      warning(_("index.version set, but the value is invalid.\n"
1639
0
          "Using version %i"), INDEX_FORMAT_DEFAULT);
1640
0
      return INDEX_FORMAT_DEFAULT;
1641
0
    }
1642
0
    return version;
1643
0
  }
1644
1645
0
  version = strtoul(envversion, &endp, 10);
1646
0
  if (*endp ||
1647
0
      version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) {
1648
0
    warning(_("GIT_INDEX_VERSION set, but the value is invalid.\n"
1649
0
        "Using version %i"), INDEX_FORMAT_DEFAULT);
1650
0
    version = INDEX_FORMAT_DEFAULT;
1651
0
  }
1652
0
  return version;
1653
0
}
1654
1655
/*
1656
 * dev/ino/uid/gid/size are also just tracked to the low 32 bits
1657
 * Again - this is just a (very strong in practice) heuristic that
1658
 * the inode hasn't changed.
1659
 *
1660
 * We save the fields in big-endian order to allow using the
1661
 * index file over NFS transparently.
1662
 */
1663
struct ondisk_cache_entry {
1664
  struct cache_time ctime;
1665
  struct cache_time mtime;
1666
  uint32_t dev;
1667
  uint32_t ino;
1668
  uint32_t mode;
1669
  uint32_t uid;
1670
  uint32_t gid;
1671
  uint32_t size;
1672
  /*
1673
   * unsigned char hash[hashsz];
1674
   * uint16_t flags;
1675
   * if (flags & CE_EXTENDED)
1676
   *  uint16_t flags2;
1677
   */
1678
  unsigned char data[GIT_MAX_RAWSZ + 2 * sizeof(uint16_t)];
1679
  char name[FLEX_ARRAY];
1680
};
1681
1682
/* These are only used for v3 or lower */
1683
0
#define align_padding_size(size, len) ((size + (len) + 8) & ~7) - (size + len)
1684
0
#define align_flex_name(STRUCT,len) ((offsetof(struct STRUCT,data) + (len) + 8) & ~7)
1685
0
#define ondisk_cache_entry_size(len) align_flex_name(ondisk_cache_entry,len)
1686
0
#define ondisk_data_size(flags, len) (the_hash_algo->rawsz + \
1687
0
             ((flags & CE_EXTENDED) ? 2 : 1) * sizeof(uint16_t) + len)
1688
#define ondisk_data_size_max(len) (ondisk_data_size(CE_EXTENDED, len))
1689
0
#define ondisk_ce_size(ce) (ondisk_cache_entry_size(ondisk_data_size((ce)->ce_flags, ce_namelen(ce))))
1690
1691
/* Allow fsck to force verification of the index checksum. */
1692
int verify_index_checksum;
1693
1694
/* Allow fsck to force verification of the cache entry order. */
1695
int verify_ce_order;
1696
1697
static int verify_hdr(const struct cache_header *hdr, unsigned long size)
1698
0
{
1699
0
  struct git_hash_ctx c;
1700
0
  unsigned char hash[GIT_MAX_RAWSZ];
1701
0
  int hdr_version;
1702
0
  unsigned char *start, *end;
1703
0
  struct object_id oid;
1704
1705
0
  if (hdr->hdr_signature != htonl(CACHE_SIGNATURE))
1706
0
    return error(_("bad signature 0x%08x"), hdr->hdr_signature);
1707
0
  hdr_version = ntohl(hdr->hdr_version);
1708
0
  if (hdr_version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < hdr_version)
1709
0
    return error(_("bad index version %d"), hdr_version);
1710
1711
0
  if (!verify_index_checksum)
1712
0
    return 0;
1713
1714
0
  end = (unsigned char *)hdr + size;
1715
0
  start = end - the_hash_algo->rawsz;
1716
0
  oidread(&oid, start, the_repository->hash_algo);
1717
0
  if (oideq(&oid, null_oid(the_hash_algo)))
1718
0
    return 0;
1719
1720
0
  the_hash_algo->init_fn(&c);
1721
0
  git_hash_update(&c, hdr, size - the_hash_algo->rawsz);
1722
0
  git_hash_final(hash, &c);
1723
0
  if (!hasheq(hash, start, the_repository->hash_algo))
1724
0
    return error(_("bad index file sha1 signature"));
1725
0
  return 0;
1726
0
}
1727
1728
static int read_index_extension(struct index_state *istate,
1729
        const char *ext, const char *data, unsigned long sz)
1730
0
{
1731
0
  switch (CACHE_EXT(ext)) {
1732
0
  case CACHE_EXT_TREE:
1733
0
    istate->cache_tree = cache_tree_read(data, sz);
1734
0
    break;
1735
0
  case CACHE_EXT_RESOLVE_UNDO:
1736
0
    istate->resolve_undo = resolve_undo_read(data, sz, the_hash_algo);
1737
0
    break;
1738
0
  case CACHE_EXT_LINK:
1739
0
    if (read_link_extension(istate, data, sz))
1740
0
      return -1;
1741
0
    break;
1742
0
  case CACHE_EXT_UNTRACKED:
1743
0
    istate->untracked = read_untracked_extension(data, sz);
1744
0
    break;
1745
0
  case CACHE_EXT_FSMONITOR:
1746
0
    read_fsmonitor_extension(istate, data, sz);
1747
0
    break;
1748
0
  case CACHE_EXT_ENDOFINDEXENTRIES:
1749
0
  case CACHE_EXT_INDEXENTRYOFFSETTABLE:
1750
    /* already handled in do_read_index() */
1751
0
    break;
1752
0
  case CACHE_EXT_SPARSE_DIRECTORIES:
1753
    /* no content, only an indicator */
1754
0
    istate->sparse_index = INDEX_COLLAPSED;
1755
0
    break;
1756
0
  default:
1757
0
    if (*ext < 'A' || 'Z' < *ext)
1758
0
      return error(_("index uses %.4s extension, which we do not understand"),
1759
0
             ext);
1760
0
    fprintf_ln(stderr, _("ignoring %.4s extension"), ext);
1761
0
    break;
1762
0
  }
1763
0
  return 0;
1764
0
}
1765
1766
/*
1767
 * Parses the contents of the cache entry contained within the 'ondisk' buffer
1768
 * into a new incore 'cache_entry'.
1769
 *
1770
 * Note that 'char *ondisk' may not be aligned to a 4-byte address interval in
1771
 * index v4, so we cannot cast it to 'struct ondisk_cache_entry *' and access
1772
 * its members. Instead, we use the byte offsets of members within the struct to
1773
 * identify where 'get_be16()', 'get_be32()', and 'oidread()' (which can all
1774
 * read from an unaligned memory buffer) should read from the 'ondisk' buffer
1775
 * into the corresponding incore 'cache_entry' members.
1776
 */
1777
static struct cache_entry *create_from_disk(struct mem_pool *ce_mem_pool,
1778
              unsigned int version,
1779
              const char *ondisk,
1780
              unsigned long *ent_size,
1781
              const struct cache_entry *previous_ce)
1782
0
{
1783
0
  struct cache_entry *ce;
1784
0
  size_t len;
1785
0
  const char *name;
1786
0
  const unsigned hashsz = the_hash_algo->rawsz;
1787
0
  const char *flagsp = ondisk + offsetof(struct ondisk_cache_entry, data) + hashsz;
1788
0
  unsigned int flags;
1789
0
  size_t copy_len = 0;
1790
  /*
1791
   * Adjacent cache entries tend to share the leading paths, so it makes
1792
   * sense to only store the differences in later entries.  In the v4
1793
   * on-disk format of the index, each on-disk cache entry stores the
1794
   * number of bytes to be stripped from the end of the previous name,
1795
   * and the bytes to append to the result, to come up with its name.
1796
   */
1797
0
  int expand_name_field = version == 4;
1798
1799
  /* On-disk flags are just 16 bits */
1800
0
  flags = get_be16(flagsp);
1801
0
  len = flags & CE_NAMEMASK;
1802
1803
0
  if (flags & CE_EXTENDED) {
1804
0
    int extended_flags;
1805
0
    extended_flags = get_be16(flagsp + sizeof(uint16_t)) << 16;
1806
    /* We do not yet understand any bit out of CE_EXTENDED_FLAGS */
1807
0
    if (extended_flags & ~CE_EXTENDED_FLAGS)
1808
0
      die(_("unknown index entry format 0x%08x"), extended_flags);
1809
0
    flags |= extended_flags;
1810
0
    name = (const char *)(flagsp + 2 * sizeof(uint16_t));
1811
0
  }
1812
0
  else
1813
0
    name = (const char *)(flagsp + sizeof(uint16_t));
1814
1815
0
  if (expand_name_field) {
1816
0
    const unsigned char *cp = (const unsigned char *)name;
1817
0
    uint64_t strip_len, previous_len;
1818
1819
    /* If we're at the beginning of a block, ignore the previous name */
1820
0
    strip_len = decode_varint(&cp);
1821
0
    if (previous_ce) {
1822
0
      previous_len = previous_ce->ce_namelen;
1823
0
      if (previous_len < strip_len)
1824
0
        die(_("malformed name field in the index, near path '%s'"),
1825
0
          previous_ce->name);
1826
0
      copy_len = previous_len - strip_len;
1827
0
    }
1828
0
    name = (const char *)cp;
1829
0
  }
1830
1831
0
  if (len == CE_NAMEMASK) {
1832
0
    len = strlen(name);
1833
0
    if (expand_name_field)
1834
0
      len += copy_len;
1835
0
  }
1836
1837
0
  ce = mem_pool__ce_alloc(ce_mem_pool, len);
1838
1839
  /*
1840
   * NEEDSWORK: using 'offsetof()' is cumbersome and should be replaced
1841
   * with something more akin to 'load_bitmap_entries_v1()'s use of
1842
   * 'read_be16'/'read_be32'. For consistency with the corresponding
1843
   * ondisk entry write function ('copy_cache_entry_to_ondisk()'), this
1844
   * should be done at the same time as removing references to
1845
   * 'ondisk_cache_entry' there.
1846
   */
1847
0
  ce->ce_stat_data.sd_ctime.sec = get_be32(ondisk + offsetof(struct ondisk_cache_entry, ctime)
1848
0
              + offsetof(struct cache_time, sec));
1849
0
  ce->ce_stat_data.sd_mtime.sec = get_be32(ondisk + offsetof(struct ondisk_cache_entry, mtime)
1850
0
              + offsetof(struct cache_time, sec));
1851
0
  ce->ce_stat_data.sd_ctime.nsec = get_be32(ondisk + offsetof(struct ondisk_cache_entry, ctime)
1852
0
               + offsetof(struct cache_time, nsec));
1853
0
  ce->ce_stat_data.sd_mtime.nsec = get_be32(ondisk + offsetof(struct ondisk_cache_entry, mtime)
1854
0
               + offsetof(struct cache_time, nsec));
1855
0
  ce->ce_stat_data.sd_dev   = get_be32(ondisk + offsetof(struct ondisk_cache_entry, dev));
1856
0
  ce->ce_stat_data.sd_ino   = get_be32(ondisk + offsetof(struct ondisk_cache_entry, ino));
1857
0
  ce->ce_mode  = get_be32(ondisk + offsetof(struct ondisk_cache_entry, mode));
1858
0
  ce->ce_stat_data.sd_uid   = get_be32(ondisk + offsetof(struct ondisk_cache_entry, uid));
1859
0
  ce->ce_stat_data.sd_gid   = get_be32(ondisk + offsetof(struct ondisk_cache_entry, gid));
1860
0
  ce->ce_stat_data.sd_size  = get_be32(ondisk + offsetof(struct ondisk_cache_entry, size));
1861
0
  ce->ce_flags = flags & ~CE_NAMEMASK;
1862
0
  ce->ce_namelen = len;
1863
0
  ce->index = 0;
1864
0
  oidread(&ce->oid, (const unsigned char *)ondisk + offsetof(struct ondisk_cache_entry, data),
1865
0
    the_repository->hash_algo);
1866
1867
0
  if (expand_name_field) {
1868
0
    if (copy_len)
1869
0
      memcpy(ce->name, previous_ce->name, copy_len);
1870
0
    memcpy(ce->name + copy_len, name, len + 1 - copy_len);
1871
0
    *ent_size = (name - ((char *)ondisk)) + len + 1 - copy_len;
1872
0
  } else {
1873
0
    memcpy(ce->name, name, len + 1);
1874
0
    *ent_size = ondisk_ce_size(ce);
1875
0
  }
1876
0
  return ce;
1877
0
}
1878
1879
static void check_ce_order(struct index_state *istate)
1880
0
{
1881
0
  unsigned int i;
1882
1883
0
  if (!verify_ce_order)
1884
0
    return;
1885
1886
0
  for (i = 1; i < istate->cache_nr; i++) {
1887
0
    struct cache_entry *ce = istate->cache[i - 1];
1888
0
    struct cache_entry *next_ce = istate->cache[i];
1889
0
    int name_compare = strcmp(ce->name, next_ce->name);
1890
1891
0
    if (0 < name_compare)
1892
0
      die(_("unordered stage entries in index"));
1893
0
    if (!name_compare) {
1894
0
      if (!ce_stage(ce))
1895
0
        die(_("multiple stage entries for merged file '%s'"),
1896
0
            ce->name);
1897
0
      if (ce_stage(ce) > ce_stage(next_ce))
1898
0
        die(_("unordered stage entries for '%s'"),
1899
0
            ce->name);
1900
0
    }
1901
0
  }
1902
0
}
1903
1904
static void tweak_untracked_cache(struct index_state *istate)
1905
0
{
1906
0
  struct repository *r = the_repository;
1907
1908
0
  prepare_repo_settings(r);
1909
1910
0
  switch (r->settings.core_untracked_cache) {
1911
0
  case UNTRACKED_CACHE_REMOVE:
1912
0
    remove_untracked_cache(istate);
1913
0
    break;
1914
0
  case UNTRACKED_CACHE_WRITE:
1915
0
    add_untracked_cache(istate);
1916
0
    break;
1917
0
  case UNTRACKED_CACHE_KEEP:
1918
    /*
1919
     * Either an explicit "core.untrackedCache=keep", the
1920
     * default if "core.untrackedCache" isn't configured,
1921
     * or a fallback on an unknown "core.untrackedCache"
1922
     * value.
1923
     */
1924
0
    break;
1925
0
  }
1926
0
}
1927
1928
static void tweak_split_index(struct index_state *istate)
1929
0
{
1930
0
  switch (repo_config_get_split_index(the_repository)) {
1931
0
  case -1: /* unset: do nothing */
1932
0
    break;
1933
0
  case 0: /* false */
1934
0
    remove_split_index(istate);
1935
0
    break;
1936
0
  case 1: /* true */
1937
0
    add_split_index(istate);
1938
0
    break;
1939
0
  default: /* unknown value: do nothing */
1940
0
    break;
1941
0
  }
1942
0
}
1943
1944
static void post_read_index_from(struct index_state *istate)
1945
0
{
1946
0
  check_ce_order(istate);
1947
0
  tweak_untracked_cache(istate);
1948
0
  tweak_split_index(istate);
1949
0
  tweak_fsmonitor(istate);
1950
0
}
1951
1952
static size_t estimate_cache_size_from_compressed(unsigned int entries)
1953
0
{
1954
0
  return entries * (sizeof(struct cache_entry) + CACHE_ENTRY_PATH_LENGTH);
1955
0
}
1956
1957
static size_t estimate_cache_size(size_t ondisk_size, unsigned int entries)
1958
0
{
1959
0
  long per_entry = sizeof(struct cache_entry) - sizeof(struct ondisk_cache_entry);
1960
1961
  /*
1962
   * Account for potential alignment differences.
1963
   */
1964
0
  per_entry += align_padding_size(per_entry, 0);
1965
0
  return ondisk_size + entries * per_entry;
1966
0
}
1967
1968
struct index_entry_offset
1969
{
1970
  /* starting byte offset into index file, count of index entries in this block */
1971
  int offset, nr;
1972
};
1973
1974
struct index_entry_offset_table
1975
{
1976
  int nr;
1977
  struct index_entry_offset entries[FLEX_ARRAY];
1978
};
1979
1980
static struct index_entry_offset_table *read_ieot_extension(const char *mmap, size_t mmap_size, size_t offset);
1981
static void write_ieot_extension(struct strbuf *sb, struct index_entry_offset_table *ieot);
1982
1983
static size_t read_eoie_extension(const char *mmap, size_t mmap_size);
1984
static void write_eoie_extension(struct strbuf *sb, struct git_hash_ctx *eoie_context, size_t offset);
1985
1986
struct load_index_extensions
1987
{
1988
  pthread_t pthread;
1989
  struct index_state *istate;
1990
  const char *mmap;
1991
  size_t mmap_size;
1992
  unsigned long src_offset;
1993
};
1994
1995
static void *load_index_extensions(void *_data)
1996
0
{
1997
0
  struct load_index_extensions *p = _data;
1998
0
  unsigned long src_offset = p->src_offset;
1999
2000
0
  while (src_offset <= p->mmap_size - the_hash_algo->rawsz - 8) {
2001
    /* After an array of active_nr index entries,
2002
     * there can be arbitrary number of extended
2003
     * sections, each of which is prefixed with
2004
     * extension name (4-byte) and section length
2005
     * in 4-byte network byte order.
2006
     */
2007
0
    uint32_t extsize = get_be32(p->mmap + src_offset + 4);
2008
0
    if (read_index_extension(p->istate,
2009
0
           p->mmap + src_offset,
2010
0
           p->mmap + src_offset + 8,
2011
0
           extsize) < 0) {
2012
0
      munmap((void *)p->mmap, p->mmap_size);
2013
0
      die(_("index file corrupt"));
2014
0
    }
2015
0
    src_offset += 8;
2016
0
    src_offset += extsize;
2017
0
  }
2018
2019
0
  return NULL;
2020
0
}
2021
2022
/*
2023
 * A helper function that will load the specified range of cache entries
2024
 * from the memory mapped file and add them to the given index.
2025
 */
2026
static unsigned long load_cache_entry_block(struct index_state *istate,
2027
      struct mem_pool *ce_mem_pool, int offset, int nr, const char *mmap,
2028
      unsigned long start_offset, const struct cache_entry *previous_ce)
2029
0
{
2030
0
  int i;
2031
0
  unsigned long src_offset = start_offset;
2032
2033
0
  for (i = offset; i < offset + nr; i++) {
2034
0
    struct cache_entry *ce;
2035
0
    unsigned long consumed;
2036
2037
0
    ce = create_from_disk(ce_mem_pool, istate->version,
2038
0
              mmap + src_offset,
2039
0
              &consumed, previous_ce);
2040
0
    set_index_entry(istate, i, ce);
2041
2042
0
    src_offset += consumed;
2043
0
    previous_ce = ce;
2044
0
  }
2045
0
  return src_offset - start_offset;
2046
0
}
2047
2048
static unsigned long load_all_cache_entries(struct index_state *istate,
2049
      const char *mmap, size_t mmap_size, unsigned long src_offset)
2050
0
{
2051
0
  unsigned long consumed;
2052
2053
0
  istate->ce_mem_pool = xmalloc(sizeof(*istate->ce_mem_pool));
2054
0
  if (istate->version == 4) {
2055
0
    mem_pool_init(istate->ce_mem_pool,
2056
0
        estimate_cache_size_from_compressed(istate->cache_nr));
2057
0
  } else {
2058
0
    mem_pool_init(istate->ce_mem_pool,
2059
0
        estimate_cache_size(mmap_size, istate->cache_nr));
2060
0
  }
2061
2062
0
  consumed = load_cache_entry_block(istate, istate->ce_mem_pool,
2063
0
          0, istate->cache_nr, mmap, src_offset, NULL);
2064
0
  return consumed;
2065
0
}
2066
2067
/*
2068
 * Mostly randomly chosen maximum thread counts: we
2069
 * cap the parallelism to online_cpus() threads, and we want
2070
 * to have at least 10000 cache entries per thread for it to
2071
 * be worth starting a thread.
2072
 */
2073
2074
0
#define THREAD_COST   (10000)
2075
2076
struct load_cache_entries_thread_data
2077
{
2078
  pthread_t pthread;
2079
  struct index_state *istate;
2080
  struct mem_pool *ce_mem_pool;
2081
  int offset;
2082
  const char *mmap;
2083
  struct index_entry_offset_table *ieot;
2084
  int ieot_start;   /* starting index into the ieot array */
2085
  int ieot_blocks;  /* count of ieot entries to process */
2086
  unsigned long consumed; /* return # of bytes in index file processed */
2087
};
2088
2089
/*
2090
 * A thread proc to run the load_cache_entries() computation
2091
 * across multiple background threads.
2092
 */
2093
static void *load_cache_entries_thread(void *_data)
2094
0
{
2095
0
  struct load_cache_entries_thread_data *p = _data;
2096
0
  int i;
2097
2098
  /* iterate across all ieot blocks assigned to this thread */
2099
0
  for (i = p->ieot_start; i < p->ieot_start + p->ieot_blocks; i++) {
2100
0
    p->consumed += load_cache_entry_block(p->istate, p->ce_mem_pool,
2101
0
      p->offset, p->ieot->entries[i].nr, p->mmap, p->ieot->entries[i].offset, NULL);
2102
0
    p->offset += p->ieot->entries[i].nr;
2103
0
  }
2104
0
  return NULL;
2105
0
}
2106
2107
static unsigned long load_cache_entries_threaded(struct index_state *istate, const char *mmap, size_t mmap_size,
2108
             int nr_threads, struct index_entry_offset_table *ieot)
2109
0
{
2110
0
  int i, offset, ieot_blocks, ieot_start, err;
2111
0
  struct load_cache_entries_thread_data *data;
2112
0
  unsigned long consumed = 0;
2113
2114
  /* a little sanity checking */
2115
0
  if (istate->name_hash_initialized)
2116
0
    BUG("the name hash isn't thread safe");
2117
2118
0
  istate->ce_mem_pool = xmalloc(sizeof(*istate->ce_mem_pool));
2119
0
  mem_pool_init(istate->ce_mem_pool, 0);
2120
2121
  /* ensure we have no more threads than we have blocks to process */
2122
0
  if (nr_threads > ieot->nr)
2123
0
    nr_threads = ieot->nr;
2124
0
  CALLOC_ARRAY(data, nr_threads);
2125
2126
0
  offset = ieot_start = 0;
2127
0
  ieot_blocks = DIV_ROUND_UP(ieot->nr, nr_threads);
2128
0
  for (i = 0; i < nr_threads; i++) {
2129
0
    struct load_cache_entries_thread_data *p = &data[i];
2130
0
    int nr, j;
2131
2132
0
    if (ieot_start + ieot_blocks > ieot->nr)
2133
0
      ieot_blocks = ieot->nr - ieot_start;
2134
2135
0
    p->istate = istate;
2136
0
    p->offset = offset;
2137
0
    p->mmap = mmap;
2138
0
    p->ieot = ieot;
2139
0
    p->ieot_start = ieot_start;
2140
0
    p->ieot_blocks = ieot_blocks;
2141
2142
    /* create a mem_pool for each thread */
2143
0
    nr = 0;
2144
0
    for (j = p->ieot_start; j < p->ieot_start + p->ieot_blocks; j++)
2145
0
      nr += p->ieot->entries[j].nr;
2146
0
    p->ce_mem_pool = xmalloc(sizeof(*istate->ce_mem_pool));
2147
0
    if (istate->version == 4) {
2148
0
      mem_pool_init(p->ce_mem_pool,
2149
0
        estimate_cache_size_from_compressed(nr));
2150
0
    } else {
2151
0
      mem_pool_init(p->ce_mem_pool,
2152
0
        estimate_cache_size(mmap_size, nr));
2153
0
    }
2154
2155
0
    err = pthread_create(&p->pthread, NULL, load_cache_entries_thread, p);
2156
0
    if (err)
2157
0
      die(_("unable to create load_cache_entries thread: %s"), strerror(err));
2158
2159
    /* increment by the number of cache entries in the ieot block being processed */
2160
0
    for (j = 0; j < ieot_blocks; j++)
2161
0
      offset += ieot->entries[ieot_start + j].nr;
2162
0
    ieot_start += ieot_blocks;
2163
0
  }
2164
2165
0
  for (i = 0; i < nr_threads; i++) {
2166
0
    struct load_cache_entries_thread_data *p = &data[i];
2167
2168
0
    err = pthread_join(p->pthread, NULL);
2169
0
    if (err)
2170
0
      die(_("unable to join load_cache_entries thread: %s"), strerror(err));
2171
0
    mem_pool_combine(istate->ce_mem_pool, p->ce_mem_pool);
2172
0
    free(p->ce_mem_pool);
2173
0
    consumed += p->consumed;
2174
0
  }
2175
2176
0
  free(data);
2177
2178
0
  return consumed;
2179
0
}
2180
2181
static void set_new_index_sparsity(struct index_state *istate)
2182
0
{
2183
  /*
2184
   * If the index's repo exists, mark it sparse according to
2185
   * repo settings.
2186
   */
2187
0
  prepare_repo_settings(istate->repo);
2188
0
  if (!istate->repo->settings.command_requires_full_index &&
2189
0
      is_sparse_index_allowed(istate, 0))
2190
0
    istate->sparse_index = 1;
2191
0
}
2192
2193
/* remember to discard_cache() before reading a different cache! */
2194
int do_read_index(struct index_state *istate, const char *path, int must_exist)
2195
0
{
2196
0
  int fd;
2197
0
  struct stat st;
2198
0
  unsigned long src_offset;
2199
0
  const struct cache_header *hdr;
2200
0
  const char *mmap;
2201
0
  size_t mmap_size;
2202
0
  struct load_index_extensions p;
2203
0
  size_t extension_offset = 0;
2204
0
  int nr_threads, cpus;
2205
0
  struct index_entry_offset_table *ieot = NULL;
2206
2207
0
  if (istate->initialized)
2208
0
    return istate->cache_nr;
2209
2210
0
  istate->timestamp.sec = 0;
2211
0
  istate->timestamp.nsec = 0;
2212
0
  fd = open(path, O_RDONLY);
2213
0
  if (fd < 0) {
2214
0
    if (!must_exist && errno == ENOENT) {
2215
0
      set_new_index_sparsity(istate);
2216
0
      istate->initialized = 1;
2217
0
      return 0;
2218
0
    }
2219
0
    die_errno(_("%s: index file open failed"), path);
2220
0
  }
2221
2222
0
  if (fstat(fd, &st))
2223
0
    die_errno(_("%s: cannot stat the open index"), path);
2224
2225
0
  mmap_size = xsize_t(st.st_size);
2226
0
  if (mmap_size < sizeof(struct cache_header) + the_hash_algo->rawsz)
2227
0
    die(_("%s: index file smaller than expected"), path);
2228
2229
0
  mmap = xmmap_gently(NULL, mmap_size, PROT_READ, MAP_PRIVATE, fd, 0);
2230
0
  if (mmap == MAP_FAILED)
2231
0
    die_errno(_("%s: unable to map index file%s"), path,
2232
0
      mmap_os_err());
2233
0
  close(fd);
2234
2235
0
  hdr = (const struct cache_header *)mmap;
2236
0
  if (verify_hdr(hdr, mmap_size) < 0)
2237
0
    goto unmap;
2238
2239
0
  oidread(&istate->oid, (const unsigned char *)hdr + mmap_size - the_hash_algo->rawsz,
2240
0
    the_repository->hash_algo);
2241
0
  istate->version = ntohl(hdr->hdr_version);
2242
0
  istate->cache_nr = ntohl(hdr->hdr_entries);
2243
0
  istate->cache_alloc = alloc_nr(istate->cache_nr);
2244
0
  CALLOC_ARRAY(istate->cache, istate->cache_alloc);
2245
0
  istate->initialized = 1;
2246
2247
0
  p.istate = istate;
2248
0
  p.mmap = mmap;
2249
0
  p.mmap_size = mmap_size;
2250
2251
0
  src_offset = sizeof(*hdr);
2252
2253
0
  if (repo_config_get_index_threads(the_repository, &nr_threads))
2254
0
    nr_threads = 1;
2255
2256
  /* TODO: does creating more threads than cores help? */
2257
0
  if (!nr_threads) {
2258
0
    nr_threads = istate->cache_nr / THREAD_COST;
2259
0
    cpus = online_cpus();
2260
0
    if (nr_threads > cpus)
2261
0
      nr_threads = cpus;
2262
0
  }
2263
2264
0
  if (!HAVE_THREADS)
2265
0
    nr_threads = 1;
2266
2267
0
  if (nr_threads > 1) {
2268
0
    extension_offset = read_eoie_extension(mmap, mmap_size);
2269
0
    if (extension_offset) {
2270
0
      int err;
2271
2272
0
      p.src_offset = extension_offset;
2273
0
      err = pthread_create(&p.pthread, NULL, load_index_extensions, &p);
2274
0
      if (err)
2275
0
        die(_("unable to create load_index_extensions thread: %s"), strerror(err));
2276
2277
0
      nr_threads--;
2278
0
    }
2279
0
  }
2280
2281
  /*
2282
   * Locate and read the index entry offset table so that we can use it
2283
   * to multi-thread the reading of the cache entries.
2284
   */
2285
0
  if (extension_offset && nr_threads > 1)
2286
0
    ieot = read_ieot_extension(mmap, mmap_size, extension_offset);
2287
2288
0
  if (ieot) {
2289
0
    src_offset += load_cache_entries_threaded(istate, mmap, mmap_size, nr_threads, ieot);
2290
0
    free(ieot);
2291
0
  } else {
2292
0
    src_offset += load_all_cache_entries(istate, mmap, mmap_size, src_offset);
2293
0
  }
2294
2295
0
  istate->timestamp.sec = st.st_mtime;
2296
0
  istate->timestamp.nsec = ST_MTIME_NSEC(st);
2297
2298
  /* if we created a thread, join it otherwise load the extensions on the primary thread */
2299
0
  if (extension_offset) {
2300
0
    int ret = pthread_join(p.pthread, NULL);
2301
0
    if (ret)
2302
0
      die(_("unable to join load_index_extensions thread: %s"), strerror(ret));
2303
0
  } else {
2304
0
    p.src_offset = src_offset;
2305
0
    load_index_extensions(&p);
2306
0
  }
2307
0
  munmap((void *)mmap, mmap_size);
2308
2309
  /*
2310
   * TODO trace2: replace "the_repository" with the actual repo instance
2311
   * that is associated with the given "istate".
2312
   */
2313
0
  trace2_data_intmax("index", the_repository, "read/version",
2314
0
         istate->version);
2315
0
  trace2_data_intmax("index", the_repository, "read/cache_nr",
2316
0
         istate->cache_nr);
2317
2318
  /*
2319
   * If the command explicitly requires a full index, force it
2320
   * to be full. Otherwise, correct the sparsity based on repository
2321
   * settings and other properties of the index (if necessary).
2322
   */
2323
0
  prepare_repo_settings(istate->repo);
2324
0
  if (istate->repo->settings.command_requires_full_index)
2325
0
    ensure_full_index(istate);
2326
0
  else
2327
0
    ensure_correct_sparsity(istate);
2328
2329
0
  return istate->cache_nr;
2330
2331
0
unmap:
2332
0
  munmap((void *)mmap, mmap_size);
2333
0
  die(_("index file corrupt"));
2334
0
}
2335
2336
/*
2337
 * Signal that the shared index is used by updating its mtime.
2338
 *
2339
 * This way, shared index can be removed if they have not been used
2340
 * for some time.
2341
 */
2342
static void freshen_shared_index(const char *shared_index, int warn)
2343
0
{
2344
0
  if (!check_and_freshen_file(shared_index, 1) && warn)
2345
0
    warning(_("could not freshen shared index '%s'"), shared_index);
2346
0
}
2347
2348
int read_index_from(struct index_state *istate, const char *path,
2349
        const char *gitdir)
2350
0
{
2351
0
  struct split_index *split_index;
2352
0
  int ret;
2353
0
  char *base_oid_hex;
2354
0
  char *base_path;
2355
2356
  /* istate->initialized covers both .git/index and .git/sharedindex.xxx */
2357
0
  if (istate->initialized)
2358
0
    return istate->cache_nr;
2359
2360
  /*
2361
   * TODO trace2: replace "the_repository" with the actual repo instance
2362
   * that is associated with the given "istate".
2363
   */
2364
0
  trace2_region_enter_printf("index", "do_read_index", the_repository,
2365
0
           "%s", path);
2366
0
  trace_performance_enter();
2367
0
  ret = do_read_index(istate, path, 0);
2368
0
  trace_performance_leave("read cache %s", path);
2369
0
  trace2_region_leave_printf("index", "do_read_index", the_repository,
2370
0
           "%s", path);
2371
2372
0
  split_index = istate->split_index;
2373
0
  if (!split_index || is_null_oid(&split_index->base_oid)) {
2374
0
    post_read_index_from(istate);
2375
0
    return ret;
2376
0
  }
2377
2378
0
  trace_performance_enter();
2379
0
  if (split_index->base)
2380
0
    release_index(split_index->base);
2381
0
  else
2382
0
    ALLOC_ARRAY(split_index->base, 1);
2383
0
  index_state_init(split_index->base, istate->repo);
2384
2385
0
  base_oid_hex = oid_to_hex(&split_index->base_oid);
2386
0
  base_path = xstrfmt("%s/sharedindex.%s", gitdir, base_oid_hex);
2387
0
  if (file_exists(base_path)) {
2388
0
    trace2_region_enter_printf("index", "shared/do_read_index",
2389
0
          the_repository, "%s", base_path);
2390
2391
0
    ret = do_read_index(split_index->base, base_path, 0);
2392
0
    trace2_region_leave_printf("index", "shared/do_read_index",
2393
0
          the_repository, "%s", base_path);
2394
0
  } else {
2395
0
    char *path_copy = xstrdup(path);
2396
0
    char *base_path2 = xstrfmt("%s/sharedindex.%s",
2397
0
             dirname(path_copy), base_oid_hex);
2398
0
    free(path_copy);
2399
0
    trace2_region_enter_printf("index", "shared/do_read_index",
2400
0
             the_repository, "%s", base_path2);
2401
0
    ret = do_read_index(split_index->base, base_path2, 1);
2402
0
    trace2_region_leave_printf("index", "shared/do_read_index",
2403
0
             the_repository, "%s", base_path2);
2404
0
    free(base_path2);
2405
0
  }
2406
0
  if (!oideq(&split_index->base_oid, &split_index->base->oid))
2407
0
    die(_("broken index, expect %s in %s, got %s"),
2408
0
        base_oid_hex, base_path,
2409
0
        oid_to_hex(&split_index->base->oid));
2410
2411
0
  freshen_shared_index(base_path, 0);
2412
0
  merge_base_index(istate);
2413
0
  post_read_index_from(istate);
2414
0
  trace_performance_leave("read cache %s", base_path);
2415
0
  free(base_path);
2416
0
  return ret;
2417
0
}
2418
2419
int is_index_unborn(struct index_state *istate)
2420
0
{
2421
0
  return (!istate->cache_nr && !istate->timestamp.sec);
2422
0
}
2423
2424
void index_state_init(struct index_state *istate, struct repository *r)
2425
0
{
2426
0
  struct index_state blank = INDEX_STATE_INIT(r);
2427
0
  memcpy(istate, &blank, sizeof(*istate));
2428
0
}
2429
2430
void release_index(struct index_state *istate)
2431
0
{
2432
  /*
2433
   * Cache entries in istate->cache[] should have been allocated
2434
   * from the memory pool associated with this index, or from an
2435
   * associated split_index. There is no need to free individual
2436
   * cache entries. validate_cache_entries can detect when this
2437
   * assertion does not hold.
2438
   */
2439
0
  validate_cache_entries(istate);
2440
2441
0
  resolve_undo_clear_index(istate);
2442
0
  free_name_hash(istate);
2443
0
  cache_tree_free(&(istate->cache_tree));
2444
0
  free(istate->fsmonitor_last_update);
2445
0
  free(istate->cache);
2446
0
  discard_split_index(istate);
2447
0
  free_untracked_cache(istate->untracked);
2448
2449
0
  if (istate->sparse_checkout_patterns) {
2450
0
    clear_pattern_list(istate->sparse_checkout_patterns);
2451
0
    FREE_AND_NULL(istate->sparse_checkout_patterns);
2452
0
  }
2453
2454
0
  if (istate->ce_mem_pool) {
2455
0
    mem_pool_discard(istate->ce_mem_pool, should_validate_cache_entries());
2456
0
    FREE_AND_NULL(istate->ce_mem_pool);
2457
0
  }
2458
0
}
2459
2460
void discard_index(struct index_state *istate)
2461
0
{
2462
0
  release_index(istate);
2463
0
  index_state_init(istate, istate->repo);
2464
0
}
2465
2466
/*
2467
 * Validate the cache entries of this index.
2468
 * All cache entries associated with this index
2469
 * should have been allocated by the memory pool
2470
 * associated with this index, or by a referenced
2471
 * split index.
2472
 */
2473
void validate_cache_entries(const struct index_state *istate)
2474
0
{
2475
0
  int i;
2476
2477
0
  if (!should_validate_cache_entries() ||!istate || !istate->initialized)
2478
0
    return;
2479
2480
0
  for (i = 0; i < istate->cache_nr; i++) {
2481
0
    if (!istate) {
2482
0
      BUG("cache entry is not allocated from expected memory pool");
2483
0
    } else if (!istate->ce_mem_pool ||
2484
0
      !mem_pool_contains(istate->ce_mem_pool, istate->cache[i])) {
2485
0
      if (!istate->split_index ||
2486
0
        !istate->split_index->base ||
2487
0
        !istate->split_index->base->ce_mem_pool ||
2488
0
        !mem_pool_contains(istate->split_index->base->ce_mem_pool, istate->cache[i])) {
2489
0
        BUG("cache entry is not allocated from expected memory pool");
2490
0
      }
2491
0
    }
2492
0
  }
2493
2494
0
  if (istate->split_index)
2495
0
    validate_cache_entries(istate->split_index->base);
2496
0
}
2497
2498
int unmerged_index(const struct index_state *istate)
2499
0
{
2500
0
  int i;
2501
0
  for (i = 0; i < istate->cache_nr; i++) {
2502
0
    if (ce_stage(istate->cache[i]))
2503
0
      return 1;
2504
0
  }
2505
0
  return 0;
2506
0
}
2507
2508
int repo_index_has_changes(struct repository *repo,
2509
         struct tree *tree,
2510
         struct strbuf *sb)
2511
0
{
2512
0
  struct index_state *istate = repo->index;
2513
0
  struct object_id cmp;
2514
0
  int i;
2515
2516
0
  if (tree)
2517
0
    cmp = tree->object.oid;
2518
0
  if (tree || !repo_get_oid_tree(repo, "HEAD", &cmp)) {
2519
0
    struct diff_options opt;
2520
2521
0
    repo_diff_setup(repo, &opt);
2522
0
    opt.flags.exit_with_status = 1;
2523
0
    if (!sb)
2524
0
      opt.flags.quick = 1;
2525
0
    diff_setup_done(&opt);
2526
0
    do_diff_cache(&cmp, &opt);
2527
0
    diffcore_std(&opt);
2528
0
    for (i = 0; sb && i < diff_queued_diff.nr; i++) {
2529
0
      if (i)
2530
0
        strbuf_addch(sb, ' ');
2531
0
      strbuf_addstr(sb, diff_queued_diff.queue[i]->two->path);
2532
0
    }
2533
0
    diff_flush(&opt);
2534
0
    return opt.flags.has_changes != 0;
2535
0
  } else {
2536
    /* TODO: audit for interaction with sparse-index. */
2537
0
    ensure_full_index(istate);
2538
0
    for (i = 0; sb && i < istate->cache_nr; i++) {
2539
0
      if (i)
2540
0
        strbuf_addch(sb, ' ');
2541
0
      strbuf_addstr(sb, istate->cache[i]->name);
2542
0
    }
2543
0
    return !!istate->cache_nr;
2544
0
  }
2545
0
}
2546
2547
static int write_index_ext_header(struct hashfile *f,
2548
          struct git_hash_ctx *eoie_f,
2549
          unsigned int ext,
2550
          unsigned int sz)
2551
0
{
2552
0
  hashwrite_be32(f, ext);
2553
0
  hashwrite_be32(f, sz);
2554
2555
0
  if (eoie_f) {
2556
0
    ext = htonl(ext);
2557
0
    sz = htonl(sz);
2558
0
    git_hash_update(eoie_f, &ext, sizeof(ext));
2559
0
    git_hash_update(eoie_f, &sz, sizeof(sz));
2560
0
  }
2561
0
  return 0;
2562
0
}
2563
2564
static void ce_smudge_racily_clean_entry(struct index_state *istate,
2565
           struct cache_entry *ce)
2566
0
{
2567
  /*
2568
   * The only thing we care about in this function is to smudge the
2569
   * falsely clean entry due to touch-update-touch race, so we leave
2570
   * everything else as they are.  We are called for entries whose
2571
   * ce_stat_data.sd_mtime match the index file mtime.
2572
   *
2573
   * Note that this actually does not do much for gitlinks, for
2574
   * which ce_match_stat_basic() always goes to the actual
2575
   * contents.  The caller checks with is_racy_timestamp() which
2576
   * always says "no" for gitlinks, so we are not called for them ;-)
2577
   */
2578
0
  struct stat st;
2579
2580
0
  if (lstat(ce->name, &st) < 0)
2581
0
    return;
2582
0
  if (ce_match_stat_basic(ce, &st))
2583
0
    return;
2584
0
  if (ce_modified_check_fs(istate, ce, &st)) {
2585
    /* This is "racily clean"; smudge it.  Note that this
2586
     * is a tricky code.  At first glance, it may appear
2587
     * that it can break with this sequence:
2588
     *
2589
     * $ echo xyzzy >frotz
2590
     * $ git-update-index --add frotz
2591
     * $ : >frotz
2592
     * $ sleep 3
2593
     * $ echo filfre >nitfol
2594
     * $ git-update-index --add nitfol
2595
     *
2596
     * but it does not.  When the second update-index runs,
2597
     * it notices that the entry "frotz" has the same timestamp
2598
     * as index, and if we were to smudge it by resetting its
2599
     * size to zero here, then the object name recorded
2600
     * in index is the 6-byte file but the cached stat information
2601
     * becomes zero --- which would then match what we would
2602
     * obtain from the filesystem next time we stat("frotz").
2603
     *
2604
     * However, the second update-index, before calling
2605
     * this function, notices that the cached size is 6
2606
     * bytes and what is on the filesystem is an empty
2607
     * file, and never calls us, so the cached size information
2608
     * for "frotz" stays 6 which does not match the filesystem.
2609
     */
2610
0
    ce->ce_stat_data.sd_size = 0;
2611
0
  }
2612
0
}
2613
2614
/* Copy miscellaneous fields but not the name */
2615
static void copy_cache_entry_to_ondisk(struct ondisk_cache_entry *ondisk,
2616
               struct cache_entry *ce)
2617
0
{
2618
0
  short flags;
2619
0
  const unsigned hashsz = the_hash_algo->rawsz;
2620
0
  uint16_t *flagsp = (uint16_t *)(ondisk->data + hashsz);
2621
2622
0
  ondisk->ctime.sec = htonl(ce->ce_stat_data.sd_ctime.sec);
2623
0
  ondisk->mtime.sec = htonl(ce->ce_stat_data.sd_mtime.sec);
2624
0
  ondisk->ctime.nsec = htonl(ce->ce_stat_data.sd_ctime.nsec);
2625
0
  ondisk->mtime.nsec = htonl(ce->ce_stat_data.sd_mtime.nsec);
2626
0
  ondisk->dev  = htonl(ce->ce_stat_data.sd_dev);
2627
0
  ondisk->ino  = htonl(ce->ce_stat_data.sd_ino);
2628
0
  ondisk->mode = htonl(ce->ce_mode);
2629
0
  ondisk->uid  = htonl(ce->ce_stat_data.sd_uid);
2630
0
  ondisk->gid  = htonl(ce->ce_stat_data.sd_gid);
2631
0
  ondisk->size = htonl(ce->ce_stat_data.sd_size);
2632
0
  hashcpy(ondisk->data, ce->oid.hash, the_repository->hash_algo);
2633
2634
0
  flags = ce->ce_flags & ~CE_NAMEMASK;
2635
0
  flags |= (ce_namelen(ce) >= CE_NAMEMASK ? CE_NAMEMASK : ce_namelen(ce));
2636
0
  flagsp[0] = htons(flags);
2637
0
  if (ce->ce_flags & CE_EXTENDED) {
2638
0
    flagsp[1] = htons((ce->ce_flags & CE_EXTENDED_FLAGS) >> 16);
2639
0
  }
2640
0
}
2641
2642
static int ce_write_entry(struct hashfile *f, struct cache_entry *ce,
2643
        struct strbuf *previous_name, struct ondisk_cache_entry *ondisk)
2644
0
{
2645
0
  int size;
2646
0
  unsigned int saved_namelen;
2647
0
  int stripped_name = 0;
2648
0
  static unsigned char padding[8] = { 0x00 };
2649
2650
0
  if (ce->ce_flags & CE_STRIP_NAME) {
2651
0
    saved_namelen = ce_namelen(ce);
2652
0
    ce->ce_namelen = 0;
2653
0
    stripped_name = 1;
2654
0
  }
2655
2656
0
  size = offsetof(struct ondisk_cache_entry,data) + ondisk_data_size(ce->ce_flags, 0);
2657
2658
0
  if (!previous_name) {
2659
0
    int len = ce_namelen(ce);
2660
0
    copy_cache_entry_to_ondisk(ondisk, ce);
2661
0
    hashwrite(f, ondisk, size);
2662
0
    hashwrite(f, ce->name, len);
2663
0
    hashwrite(f, padding, align_padding_size(size, len));
2664
0
  } else {
2665
0
    int common, to_remove;
2666
0
    uint8_t prefix_size;
2667
0
    unsigned char to_remove_vi[16];
2668
2669
0
    for (common = 0;
2670
0
         (common < previous_name->len &&
2671
0
          ce->name[common] &&
2672
0
          ce->name[common] == previous_name->buf[common]);
2673
0
         common++)
2674
0
      ; /* still matching */
2675
0
    to_remove = previous_name->len - common;
2676
0
    prefix_size = encode_varint(to_remove, to_remove_vi);
2677
2678
0
    copy_cache_entry_to_ondisk(ondisk, ce);
2679
0
    hashwrite(f, ondisk, size);
2680
0
    hashwrite(f, to_remove_vi, prefix_size);
2681
0
    hashwrite(f, ce->name + common, ce_namelen(ce) - common);
2682
0
    hashwrite(f, padding, 1);
2683
2684
0
    strbuf_splice(previous_name, common, to_remove,
2685
0
            ce->name + common, ce_namelen(ce) - common);
2686
0
  }
2687
0
  if (stripped_name) {
2688
0
    ce->ce_namelen = saved_namelen;
2689
0
    ce->ce_flags &= ~CE_STRIP_NAME;
2690
0
  }
2691
2692
0
  return 0;
2693
0
}
2694
2695
/*
2696
 * This function verifies if index_state has the correct sha1 of the
2697
 * index file.  Don't die if we have any other failure, just return 0.
2698
 */
2699
static int verify_index_from(const struct index_state *istate, const char *path)
2700
0
{
2701
0
  int fd;
2702
0
  ssize_t n;
2703
0
  struct stat st;
2704
0
  unsigned char hash[GIT_MAX_RAWSZ];
2705
2706
0
  if (!istate->initialized)
2707
0
    return 0;
2708
2709
0
  fd = open(path, O_RDONLY);
2710
0
  if (fd < 0)
2711
0
    return 0;
2712
2713
0
  if (fstat(fd, &st))
2714
0
    goto out;
2715
2716
0
  if (st.st_size < sizeof(struct cache_header) + the_hash_algo->rawsz)
2717
0
    goto out;
2718
2719
0
  n = pread_in_full(fd, hash, the_hash_algo->rawsz, st.st_size - the_hash_algo->rawsz);
2720
0
  if (n != the_hash_algo->rawsz)
2721
0
    goto out;
2722
2723
0
  if (!hasheq(istate->oid.hash, hash, the_repository->hash_algo))
2724
0
    goto out;
2725
2726
0
  close(fd);
2727
0
  return 1;
2728
2729
0
out:
2730
0
  close(fd);
2731
0
  return 0;
2732
0
}
2733
2734
static int repo_verify_index(struct repository *repo)
2735
0
{
2736
0
  return verify_index_from(repo->index, repo->index_file);
2737
0
}
2738
2739
int has_racy_timestamp(struct index_state *istate)
2740
0
{
2741
0
  int entries = istate->cache_nr;
2742
0
  int i;
2743
2744
0
  for (i = 0; i < entries; i++) {
2745
0
    struct cache_entry *ce = istate->cache[i];
2746
0
    if (is_racy_timestamp(istate, ce))
2747
0
      return 1;
2748
0
  }
2749
0
  return 0;
2750
0
}
2751
2752
void repo_update_index_if_able(struct repository *repo,
2753
             struct lock_file *lockfile)
2754
0
{
2755
0
  if ((repo->index->cache_changed ||
2756
0
       has_racy_timestamp(repo->index)) &&
2757
0
      repo_verify_index(repo))
2758
0
    write_locked_index(repo->index, lockfile, COMMIT_LOCK);
2759
0
  else
2760
0
    rollback_lock_file(lockfile);
2761
0
}
2762
2763
static int record_eoie(void)
2764
0
{
2765
0
  int val;
2766
2767
0
  if (!repo_config_get_bool(the_repository, "index.recordendofindexentries", &val))
2768
0
    return val;
2769
2770
  /*
2771
   * As a convenience, the end of index entries extension
2772
   * used for threading is written by default if the user
2773
   * explicitly requested threaded index reads.
2774
   */
2775
0
  return !repo_config_get_index_threads(the_repository, &val) && val != 1;
2776
0
}
2777
2778
static int record_ieot(void)
2779
0
{
2780
0
  int val;
2781
2782
0
  if (!repo_config_get_bool(the_repository, "index.recordoffsettable", &val))
2783
0
    return val;
2784
2785
  /*
2786
   * As a convenience, the offset table used for threading is
2787
   * written by default if the user explicitly requested
2788
   * threaded index reads.
2789
   */
2790
0
  return !repo_config_get_index_threads(the_repository, &val) && val != 1;
2791
0
}
2792
2793
enum write_extensions {
2794
  WRITE_NO_EXTENSION =              0,
2795
  WRITE_SPLIT_INDEX_EXTENSION =     1<<0,
2796
  WRITE_CACHE_TREE_EXTENSION =      1<<1,
2797
  WRITE_RESOLVE_UNDO_EXTENSION =    1<<2,
2798
  WRITE_UNTRACKED_CACHE_EXTENSION = 1<<3,
2799
  WRITE_FSMONITOR_EXTENSION =       1<<4,
2800
};
2801
0
#define WRITE_ALL_EXTENSIONS ((enum write_extensions)-1)
2802
2803
/*
2804
 * On success, `tempfile` is closed. If it is the temporary file
2805
 * of a `struct lock_file`, we will therefore effectively perform
2806
 * a 'close_lock_file_gently()`. Since that is an implementation
2807
 * detail of lockfiles, callers of `do_write_index()` should not
2808
 * rely on it.
2809
 */
2810
static int do_write_index(struct index_state *istate, struct tempfile *tempfile,
2811
        enum write_extensions write_extensions, unsigned flags)
2812
0
{
2813
0
  uint64_t start = getnanotime();
2814
0
  struct hashfile *f;
2815
0
  struct git_hash_ctx *eoie_c = NULL;
2816
0
  struct cache_header hdr;
2817
0
  int i, err = 0, removed, extended, hdr_version;
2818
0
  struct cache_entry **cache = istate->cache;
2819
0
  int entries = istate->cache_nr;
2820
0
  struct stat st;
2821
0
  struct ondisk_cache_entry ondisk;
2822
0
  struct strbuf previous_name_buf = STRBUF_INIT, *previous_name;
2823
0
  int drop_cache_tree = istate->drop_cache_tree;
2824
0
  off_t offset;
2825
0
  int csum_fsync_flag;
2826
0
  int ieot_entries = 1;
2827
0
  struct index_entry_offset_table *ieot = NULL;
2828
0
  struct repository *r = istate->repo;
2829
0
  struct strbuf sb = STRBUF_INIT;
2830
0
  int nr, nr_threads, ret;
2831
2832
0
  f = hashfd(the_repository->hash_algo, tempfile->fd, tempfile->filename.buf);
2833
2834
0
  prepare_repo_settings(r);
2835
0
  f->skip_hash = r->settings.index_skip_hash;
2836
2837
0
  for (i = removed = extended = 0; i < entries; i++) {
2838
0
    if (cache[i]->ce_flags & CE_REMOVE)
2839
0
      removed++;
2840
2841
    /* reduce extended entries if possible */
2842
0
    cache[i]->ce_flags &= ~CE_EXTENDED;
2843
0
    if (cache[i]->ce_flags & CE_EXTENDED_FLAGS) {
2844
0
      extended++;
2845
0
      cache[i]->ce_flags |= CE_EXTENDED;
2846
0
    }
2847
0
  }
2848
2849
0
  if (!istate->version)
2850
0
    istate->version = get_index_format_default(r);
2851
2852
  /* demote version 3 to version 2 when the latter suffices */
2853
0
  if (istate->version == 3 || istate->version == 2)
2854
0
    istate->version = extended ? 3 : 2;
2855
2856
0
  hdr_version = istate->version;
2857
2858
0
  hdr.hdr_signature = htonl(CACHE_SIGNATURE);
2859
0
  hdr.hdr_version = htonl(hdr_version);
2860
0
  hdr.hdr_entries = htonl(entries - removed);
2861
2862
0
  hashwrite(f, &hdr, sizeof(hdr));
2863
2864
0
  if (!HAVE_THREADS || repo_config_get_index_threads(the_repository, &nr_threads))
2865
0
    nr_threads = 1;
2866
2867
0
  if (nr_threads != 1 && record_ieot()) {
2868
0
    int ieot_blocks, cpus;
2869
2870
    /*
2871
     * ensure default number of ieot blocks maps evenly to the
2872
     * default number of threads that will process them leaving
2873
     * room for the thread to load the index extensions.
2874
     */
2875
0
    if (!nr_threads) {
2876
0
      ieot_blocks = istate->cache_nr / THREAD_COST;
2877
0
      cpus = online_cpus();
2878
0
      if (ieot_blocks > cpus - 1)
2879
0
        ieot_blocks = cpus - 1;
2880
0
    } else {
2881
0
      ieot_blocks = nr_threads;
2882
0
      if (ieot_blocks > istate->cache_nr)
2883
0
        ieot_blocks = istate->cache_nr;
2884
0
    }
2885
2886
    /*
2887
     * no reason to write out the IEOT extension if we don't
2888
     * have enough blocks to utilize multi-threading
2889
     */
2890
0
    if (ieot_blocks > 1) {
2891
0
      ieot = xcalloc(1, sizeof(struct index_entry_offset_table)
2892
0
        + (ieot_blocks * sizeof(struct index_entry_offset)));
2893
0
      ieot_entries = DIV_ROUND_UP(entries, ieot_blocks);
2894
0
    }
2895
0
  }
2896
2897
0
  offset = hashfile_total(f);
2898
2899
0
  nr = 0;
2900
0
  previous_name = (hdr_version == 4) ? &previous_name_buf : NULL;
2901
2902
0
  for (i = 0; i < entries; i++) {
2903
0
    struct cache_entry *ce = cache[i];
2904
0
    if (ce->ce_flags & CE_REMOVE)
2905
0
      continue;
2906
0
    if (!ce_uptodate(ce) && is_racy_timestamp(istate, ce))
2907
0
      ce_smudge_racily_clean_entry(istate, ce);
2908
0
    if (is_null_oid(&ce->oid)) {
2909
0
      static const char msg[] = "cache entry has null sha1: %s";
2910
0
      static int allow = -1;
2911
2912
0
      if (allow < 0)
2913
0
        allow = git_env_bool("GIT_ALLOW_NULL_SHA1", 0);
2914
0
      if (allow)
2915
0
        warning(msg, ce->name);
2916
0
      else
2917
0
        err = error(msg, ce->name);
2918
2919
0
      drop_cache_tree = 1;
2920
0
    }
2921
0
    if (ieot && i && (i % ieot_entries == 0)) {
2922
0
      ieot->entries[ieot->nr].nr = nr;
2923
0
      ieot->entries[ieot->nr].offset = offset;
2924
0
      ieot->nr++;
2925
      /*
2926
       * If we have a V4 index, set the first byte to an invalid
2927
       * character to ensure there is nothing common with the previous
2928
       * entry
2929
       */
2930
0
      if (previous_name)
2931
0
        previous_name->buf[0] = 0;
2932
0
      nr = 0;
2933
2934
0
      offset = hashfile_total(f);
2935
0
    }
2936
0
    if (ce_write_entry(f, ce, previous_name, (struct ondisk_cache_entry *)&ondisk) < 0)
2937
0
      err = -1;
2938
2939
0
    if (err)
2940
0
      break;
2941
0
    nr++;
2942
0
  }
2943
0
  if (ieot && nr) {
2944
0
    ieot->entries[ieot->nr].nr = nr;
2945
0
    ieot->entries[ieot->nr].offset = offset;
2946
0
    ieot->nr++;
2947
0
  }
2948
0
  strbuf_release(&previous_name_buf);
2949
2950
0
  if (err) {
2951
0
    ret = err;
2952
0
    goto out;
2953
0
  }
2954
2955
0
  offset = hashfile_total(f);
2956
2957
  /*
2958
   * The extension headers must be hashed on their own for the
2959
   * EOIE extension. Create a hashfile here to compute that hash.
2960
   */
2961
0
  if (offset && record_eoie()) {
2962
0
    CALLOC_ARRAY(eoie_c, 1);
2963
0
    the_hash_algo->init_fn(eoie_c);
2964
0
  }
2965
2966
  /*
2967
   * Lets write out CACHE_EXT_INDEXENTRYOFFSETTABLE first so that we
2968
   * can minimize the number of extensions we have to scan through to
2969
   * find it during load.  Write it out regardless of the
2970
   * strip_extensions parameter as we need it when loading the shared
2971
   * index.
2972
   */
2973
0
  if (ieot) {
2974
0
    strbuf_reset(&sb);
2975
2976
0
    write_ieot_extension(&sb, ieot);
2977
0
    err = write_index_ext_header(f, eoie_c, CACHE_EXT_INDEXENTRYOFFSETTABLE, sb.len) < 0;
2978
0
    hashwrite(f, sb.buf, sb.len);
2979
0
    if (err) {
2980
0
      ret = -1;
2981
0
      goto out;
2982
0
    }
2983
0
  }
2984
2985
0
  if (write_extensions & WRITE_SPLIT_INDEX_EXTENSION &&
2986
0
      istate->split_index) {
2987
0
    strbuf_reset(&sb);
2988
2989
0
    if (istate->sparse_index)
2990
0
      die(_("cannot write split index for a sparse index"));
2991
2992
0
    err = write_link_extension(&sb, istate) < 0 ||
2993
0
      write_index_ext_header(f, eoie_c, CACHE_EXT_LINK,
2994
0
                 sb.len) < 0;
2995
0
    hashwrite(f, sb.buf, sb.len);
2996
0
    if (err) {
2997
0
      ret = -1;
2998
0
      goto out;
2999
0
    }
3000
0
  }
3001
0
  if (write_extensions & WRITE_CACHE_TREE_EXTENSION &&
3002
0
      !drop_cache_tree && istate->cache_tree) {
3003
0
    strbuf_reset(&sb);
3004
3005
0
    cache_tree_write(&sb, istate->cache_tree);
3006
0
    err = write_index_ext_header(f, eoie_c, CACHE_EXT_TREE, sb.len) < 0;
3007
0
    hashwrite(f, sb.buf, sb.len);
3008
0
    if (err) {
3009
0
      ret = -1;
3010
0
      goto out;
3011
0
    }
3012
0
  }
3013
0
  if (write_extensions & WRITE_RESOLVE_UNDO_EXTENSION &&
3014
0
      istate->resolve_undo) {
3015
0
    strbuf_reset(&sb);
3016
3017
0
    resolve_undo_write(&sb, istate->resolve_undo, the_hash_algo);
3018
0
    err = write_index_ext_header(f, eoie_c, CACHE_EXT_RESOLVE_UNDO,
3019
0
               sb.len) < 0;
3020
0
    hashwrite(f, sb.buf, sb.len);
3021
0
    if (err) {
3022
0
      ret = -1;
3023
0
      goto out;
3024
0
    }
3025
0
  }
3026
0
  if (write_extensions & WRITE_UNTRACKED_CACHE_EXTENSION &&
3027
0
      istate->untracked) {
3028
0
    strbuf_reset(&sb);
3029
3030
0
    write_untracked_extension(&sb, istate->untracked);
3031
0
    err = write_index_ext_header(f, eoie_c, CACHE_EXT_UNTRACKED,
3032
0
               sb.len) < 0;
3033
0
    hashwrite(f, sb.buf, sb.len);
3034
0
    if (err) {
3035
0
      ret = -1;
3036
0
      goto out;
3037
0
    }
3038
0
  }
3039
0
  if (write_extensions & WRITE_FSMONITOR_EXTENSION &&
3040
0
      istate->fsmonitor_last_update) {
3041
0
    strbuf_reset(&sb);
3042
3043
0
    write_fsmonitor_extension(&sb, istate);
3044
0
    err = write_index_ext_header(f, eoie_c, CACHE_EXT_FSMONITOR, sb.len) < 0;
3045
0
    hashwrite(f, sb.buf, sb.len);
3046
0
    if (err) {
3047
0
      ret = -1;
3048
0
      goto out;
3049
0
    }
3050
0
  }
3051
0
  if (istate->sparse_index) {
3052
0
    if (write_index_ext_header(f, eoie_c, CACHE_EXT_SPARSE_DIRECTORIES, 0) < 0) {
3053
0
      ret = -1;
3054
0
      goto out;
3055
0
    }
3056
0
  }
3057
3058
  /*
3059
   * CACHE_EXT_ENDOFINDEXENTRIES must be written as the last entry before the SHA1
3060
   * so that it can be found and processed before all the index entries are
3061
   * read.  Write it out regardless of the strip_extensions parameter as we need it
3062
   * when loading the shared index.
3063
   */
3064
0
  if (eoie_c) {
3065
0
    strbuf_reset(&sb);
3066
3067
0
    write_eoie_extension(&sb, eoie_c, offset);
3068
0
    err = write_index_ext_header(f, NULL, CACHE_EXT_ENDOFINDEXENTRIES, sb.len) < 0;
3069
0
    hashwrite(f, sb.buf, sb.len);
3070
0
    if (err) {
3071
0
      ret = -1;
3072
0
      goto out;
3073
0
    }
3074
0
  }
3075
3076
0
  csum_fsync_flag = 0;
3077
0
  if (!alternate_index_output && (flags & COMMIT_LOCK))
3078
0
    csum_fsync_flag = CSUM_FSYNC;
3079
3080
0
  finalize_hashfile(f, istate->oid.hash, FSYNC_COMPONENT_INDEX,
3081
0
        CSUM_HASH_IN_STREAM | csum_fsync_flag);
3082
0
  f = NULL;
3083
3084
0
  if (close_tempfile_gently(tempfile)) {
3085
0
    ret = error(_("could not close '%s'"), get_tempfile_path(tempfile));
3086
0
    goto out;
3087
0
  }
3088
0
  if (stat(get_tempfile_path(tempfile), &st)) {
3089
0
    ret = -1;
3090
0
    goto out;
3091
0
  }
3092
0
  istate->timestamp.sec = (unsigned int)st.st_mtime;
3093
0
  istate->timestamp.nsec = ST_MTIME_NSEC(st);
3094
0
  trace_performance_since(start, "write index, changed mask = %x", istate->cache_changed);
3095
3096
  /*
3097
   * TODO trace2: replace "the_repository" with the actual repo instance
3098
   * that is associated with the given "istate".
3099
   */
3100
0
  trace2_data_intmax("index", the_repository, "write/version",
3101
0
         istate->version);
3102
0
  trace2_data_intmax("index", the_repository, "write/cache_nr",
3103
0
         istate->cache_nr);
3104
3105
0
  ret = 0;
3106
3107
0
out:
3108
0
  if (f)
3109
0
    free_hashfile(f);
3110
0
  strbuf_release(&sb);
3111
0
  free(eoie_c);
3112
0
  free(ieot);
3113
0
  return ret;
3114
0
}
3115
3116
void set_alternate_index_output(const char *name)
3117
0
{
3118
0
  alternate_index_output = name;
3119
0
}
3120
3121
static int commit_locked_index(struct lock_file *lk)
3122
0
{
3123
0
  if (alternate_index_output)
3124
0
    return commit_lock_file_to(lk, alternate_index_output);
3125
0
  else
3126
0
    return commit_lock_file(lk);
3127
0
}
3128
3129
static int do_write_locked_index(struct index_state *istate,
3130
         struct lock_file *lock,
3131
         unsigned flags,
3132
         enum write_extensions write_extensions)
3133
0
{
3134
0
  int ret;
3135
0
  int was_full = istate->sparse_index == INDEX_EXPANDED;
3136
3137
0
  ret = convert_to_sparse(istate, 0);
3138
3139
0
  if (ret) {
3140
0
    warning(_("failed to convert to a sparse-index"));
3141
0
    return ret;
3142
0
  }
3143
3144
  /*
3145
   * TODO trace2: replace "the_repository" with the actual repo instance
3146
   * that is associated with the given "istate".
3147
   */
3148
0
  trace2_region_enter_printf("index", "do_write_index", the_repository,
3149
0
           "%s", get_lock_file_path(lock));
3150
0
  ret = do_write_index(istate, lock->tempfile, write_extensions, flags);
3151
0
  trace2_region_leave_printf("index", "do_write_index", the_repository,
3152
0
           "%s", get_lock_file_path(lock));
3153
3154
0
  if (was_full)
3155
0
    ensure_full_index(istate);
3156
3157
0
  if (ret)
3158
0
    return ret;
3159
0
  if (flags & COMMIT_LOCK)
3160
0
    ret = commit_locked_index(lock);
3161
0
  else
3162
0
    ret = close_lock_file_gently(lock);
3163
3164
0
  run_hooks_l(the_repository, "post-index-change",
3165
0
        istate->updated_workdir ? "1" : "0",
3166
0
        istate->updated_skipworktree ? "1" : "0", NULL);
3167
0
  istate->updated_workdir = 0;
3168
0
  istate->updated_skipworktree = 0;
3169
3170
0
  return ret;
3171
0
}
3172
3173
static int write_split_index(struct index_state *istate,
3174
           struct lock_file *lock,
3175
           unsigned flags)
3176
0
{
3177
0
  int ret;
3178
0
  prepare_to_write_split_index(istate);
3179
0
  ret = do_write_locked_index(istate, lock, flags, WRITE_ALL_EXTENSIONS);
3180
0
  finish_writing_split_index(istate);
3181
0
  return ret;
3182
0
}
3183
3184
static unsigned long get_shared_index_expire_date(void)
3185
0
{
3186
0
  static unsigned long shared_index_expire_date;
3187
0
  static int shared_index_expire_date_prepared;
3188
3189
0
  if (!shared_index_expire_date_prepared) {
3190
0
    const char *shared_index_expire = "2.weeks.ago";
3191
0
    char *value = NULL;
3192
3193
0
    repo_config_get_expiry(the_repository, "splitindex.sharedindexexpire",
3194
0
               &value);
3195
0
    if (value)
3196
0
      shared_index_expire = value;
3197
3198
0
    shared_index_expire_date = approxidate(shared_index_expire);
3199
0
    shared_index_expire_date_prepared = 1;
3200
3201
0
    free(value);
3202
0
  }
3203
3204
0
  return shared_index_expire_date;
3205
0
}
3206
3207
static int should_delete_shared_index(const char *shared_index_path)
3208
0
{
3209
0
  struct stat st;
3210
0
  unsigned long expiration;
3211
3212
  /* Check timestamp */
3213
0
  expiration = get_shared_index_expire_date();
3214
0
  if (!expiration)
3215
0
    return 0;
3216
0
  if (stat(shared_index_path, &st))
3217
0
    return error_errno(_("could not stat '%s'"), shared_index_path);
3218
0
  if (st.st_mtime > expiration)
3219
0
    return 0;
3220
3221
0
  return 1;
3222
0
}
3223
3224
static int clean_shared_index_files(const char *current_hex)
3225
0
{
3226
0
  struct dirent *de;
3227
0
  DIR *dir = opendir(repo_get_git_dir(the_repository));
3228
3229
0
  if (!dir)
3230
0
    return error_errno(_("unable to open git dir: %s"),
3231
0
           repo_get_git_dir(the_repository));
3232
3233
0
  while ((de = readdir(dir)) != NULL) {
3234
0
    const char *sha1_hex;
3235
0
    char *shared_index_path;
3236
0
    if (!skip_prefix(de->d_name, "sharedindex.", &sha1_hex))
3237
0
      continue;
3238
0
    if (!strcmp(sha1_hex, current_hex))
3239
0
      continue;
3240
3241
0
    shared_index_path = repo_git_path(the_repository, "%s", de->d_name);
3242
0
    if (should_delete_shared_index(shared_index_path) > 0 &&
3243
0
        unlink(shared_index_path))
3244
0
      warning_errno(_("unable to unlink: %s"), shared_index_path);
3245
3246
0
    free(shared_index_path);
3247
0
  }
3248
0
  closedir(dir);
3249
3250
0
  return 0;
3251
0
}
3252
3253
static int write_shared_index(struct index_state *istate,
3254
            struct tempfile **temp, unsigned flags)
3255
0
{
3256
0
  struct split_index *si = istate->split_index;
3257
0
  int ret, was_full = !istate->sparse_index;
3258
0
  char *path;
3259
3260
0
  move_cache_to_base_index(istate);
3261
0
  convert_to_sparse(istate, 0);
3262
3263
0
  trace2_region_enter_printf("index", "shared/do_write_index",
3264
0
           the_repository, "%s", get_tempfile_path(*temp));
3265
0
  ret = do_write_index(si->base, *temp, WRITE_NO_EXTENSION, flags);
3266
0
  trace2_region_leave_printf("index", "shared/do_write_index",
3267
0
           the_repository, "%s", get_tempfile_path(*temp));
3268
3269
0
  if (was_full)
3270
0
    ensure_full_index(istate);
3271
3272
0
  if (ret)
3273
0
    return ret;
3274
0
  ret = adjust_shared_perm(the_repository, get_tempfile_path(*temp));
3275
0
  if (ret) {
3276
0
    error(_("cannot fix permission bits on '%s'"), get_tempfile_path(*temp));
3277
0
    return ret;
3278
0
  }
3279
3280
0
  path = repo_git_path(the_repository, "sharedindex.%s", oid_to_hex(&si->base->oid));
3281
0
  ret = rename_tempfile(temp, path);
3282
0
  if (!ret) {
3283
0
    oidcpy(&si->base_oid, &si->base->oid);
3284
0
    clean_shared_index_files(oid_to_hex(&si->base->oid));
3285
0
  }
3286
3287
0
  free(path);
3288
0
  return ret;
3289
0
}
3290
3291
static const int default_max_percent_split_change = 20;
3292
3293
static int too_many_not_shared_entries(struct index_state *istate)
3294
0
{
3295
0
  int i, not_shared = 0;
3296
0
  int max_split = repo_config_get_max_percent_split_change(the_repository);
3297
3298
0
  switch (max_split) {
3299
0
  case -1:
3300
    /* not or badly configured: use the default value */
3301
0
    max_split = default_max_percent_split_change;
3302
0
    break;
3303
0
  case 0:
3304
0
    return 1; /* 0% means always write a new shared index */
3305
0
  case 100:
3306
0
    return 0; /* 100% means never write a new shared index */
3307
0
  default:
3308
0
    break; /* just use the configured value */
3309
0
  }
3310
3311
  /* Count not shared entries */
3312
0
  for (i = 0; i < istate->cache_nr; i++) {
3313
0
    struct cache_entry *ce = istate->cache[i];
3314
0
    if (!ce->index)
3315
0
      not_shared++;
3316
0
  }
3317
3318
0
  return (int64_t)istate->cache_nr * max_split < (int64_t)not_shared * 100;
3319
0
}
3320
3321
int write_locked_index(struct index_state *istate, struct lock_file *lock,
3322
           unsigned flags)
3323
0
{
3324
0
  int new_shared_index, ret, test_split_index_env;
3325
0
  struct split_index *si = istate->split_index;
3326
3327
0
  if (git_env_bool("GIT_TEST_CHECK_CACHE_TREE", 0) &&
3328
0
      cache_tree_verify(the_repository, istate) < 0)
3329
0
    return -1;
3330
3331
0
  if ((flags & SKIP_IF_UNCHANGED) && !istate->cache_changed) {
3332
0
    if (flags & COMMIT_LOCK)
3333
0
      rollback_lock_file(lock);
3334
0
    return 0;
3335
0
  }
3336
3337
0
  if (istate->fsmonitor_last_update)
3338
0
    fill_fsmonitor_bitmap(istate);
3339
3340
0
  test_split_index_env = git_env_bool("GIT_TEST_SPLIT_INDEX", 0);
3341
3342
0
  if ((!si && !test_split_index_env) ||
3343
0
      alternate_index_output ||
3344
0
      (istate->cache_changed & ~EXTMASK)) {
3345
0
    ret = do_write_locked_index(istate, lock, flags,
3346
0
              ~WRITE_SPLIT_INDEX_EXTENSION);
3347
0
    goto out;
3348
0
  }
3349
3350
0
  if (test_split_index_env) {
3351
0
    if (!si) {
3352
0
      si = init_split_index(istate);
3353
0
      istate->cache_changed |= SPLIT_INDEX_ORDERED;
3354
0
    } else {
3355
0
      int v = si->base_oid.hash[0];
3356
0
      if ((v & 15) < 6)
3357
0
        istate->cache_changed |= SPLIT_INDEX_ORDERED;
3358
0
    }
3359
0
  }
3360
0
  if (too_many_not_shared_entries(istate))
3361
0
    istate->cache_changed |= SPLIT_INDEX_ORDERED;
3362
3363
0
  new_shared_index = istate->cache_changed & SPLIT_INDEX_ORDERED;
3364
3365
0
  if (new_shared_index) {
3366
0
    struct tempfile *temp;
3367
0
    int saved_errno;
3368
0
    char *path;
3369
3370
    /* Same initial permissions as the main .git/index file */
3371
0
    path = repo_git_path(the_repository, "sharedindex_XXXXXX");
3372
0
    temp = mks_tempfile_sm(path, 0, 0666);
3373
0
    free(path);
3374
0
    if (!temp) {
3375
0
      ret = do_write_locked_index(istate, lock, flags,
3376
0
                ~WRITE_SPLIT_INDEX_EXTENSION);
3377
0
      goto out;
3378
0
    }
3379
0
    ret = write_shared_index(istate, &temp, flags);
3380
3381
0
    saved_errno = errno;
3382
0
    if (is_tempfile_active(temp))
3383
0
      delete_tempfile(&temp);
3384
0
    errno = saved_errno;
3385
3386
0
    if (ret)
3387
0
      goto out;
3388
0
  }
3389
3390
0
  ret = write_split_index(istate, lock, flags);
3391
3392
  /* Freshen the shared index only if the split-index was written */
3393
0
  if (!ret && !new_shared_index && !is_null_oid(&si->base_oid)) {
3394
0
    char *shared_index = repo_git_path(the_repository, "sharedindex.%s",
3395
0
               oid_to_hex(&si->base_oid));
3396
0
    freshen_shared_index(shared_index, 1);
3397
0
    free(shared_index);
3398
0
  }
3399
3400
0
out:
3401
0
  if (flags & COMMIT_LOCK)
3402
0
    rollback_lock_file(lock);
3403
0
  return ret;
3404
0
}
3405
3406
/*
3407
 * Read the index file that is potentially unmerged into given
3408
 * index_state, dropping any unmerged entries to stage #0 (potentially
3409
 * resulting in a path appearing as both a file and a directory in the
3410
 * index; the caller is responsible to clear out the extra entries
3411
 * before writing the index to a tree).  Returns true if the index is
3412
 * unmerged.  Callers who want to refuse to work from an unmerged
3413
 * state can call this and check its return value, instead of calling
3414
 * read_cache().
3415
 */
3416
int repo_read_index_unmerged(struct repository *repo)
3417
0
{
3418
0
  struct index_state *istate;
3419
0
  int i;
3420
0
  int unmerged = 0;
3421
3422
0
  repo_read_index(repo);
3423
0
  istate = repo->index;
3424
0
  for (i = 0; i < istate->cache_nr; i++) {
3425
0
    struct cache_entry *ce = istate->cache[i];
3426
0
    struct cache_entry *new_ce;
3427
0
    int len;
3428
3429
0
    if (!ce_stage(ce))
3430
0
      continue;
3431
0
    unmerged = 1;
3432
0
    len = ce_namelen(ce);
3433
0
    new_ce = make_empty_cache_entry(istate, len);
3434
0
    memcpy(new_ce->name, ce->name, len);
3435
0
    new_ce->ce_flags = create_ce_flags(0) | CE_CONFLICTED;
3436
0
    new_ce->ce_namelen = len;
3437
0
    new_ce->ce_mode = ce->ce_mode;
3438
0
    if (add_index_entry(istate, new_ce, ADD_CACHE_SKIP_DFCHECK))
3439
0
      return error(_("%s: cannot drop to stage #0"),
3440
0
             new_ce->name);
3441
0
  }
3442
0
  return unmerged;
3443
0
}
3444
3445
/*
3446
 * Returns 1 if the path is an "other" path with respect to
3447
 * the index; that is, the path is not mentioned in the index at all,
3448
 * either as a file, a directory with some files in the index,
3449
 * or as an unmerged entry.
3450
 *
3451
 * We helpfully remove a trailing "/" from directories so that
3452
 * the output of read_directory can be used as-is.
3453
 */
3454
int index_name_is_other(struct index_state *istate, const char *name,
3455
      int namelen)
3456
0
{
3457
0
  int pos;
3458
0
  if (namelen && name[namelen - 1] == '/')
3459
0
    namelen--;
3460
0
  pos = index_name_pos(istate, name, namelen);
3461
0
  if (0 <= pos)
3462
0
    return 0; /* exact match */
3463
0
  pos = -pos - 1;
3464
0
  if (pos < istate->cache_nr) {
3465
0
    struct cache_entry *ce = istate->cache[pos];
3466
0
    if (ce_namelen(ce) == namelen &&
3467
0
        !memcmp(ce->name, name, namelen))
3468
0
      return 0; /* Yup, this one exists unmerged */
3469
0
  }
3470
0
  return 1;
3471
0
}
3472
3473
void *read_blob_data_from_index(struct index_state *istate,
3474
        const char *path, unsigned long *size)
3475
0
{
3476
0
  int pos, len;
3477
0
  unsigned long sz;
3478
0
  enum object_type type;
3479
0
  void *data;
3480
3481
0
  len = strlen(path);
3482
0
  pos = index_name_pos(istate, path, len);
3483
0
  if (pos < 0) {
3484
    /*
3485
     * We might be in the middle of a merge, in which
3486
     * case we would read stage #2 (ours).
3487
     */
3488
0
    int i;
3489
0
    for (i = -pos - 1;
3490
0
         (pos < 0 && i < istate->cache_nr &&
3491
0
          !strcmp(istate->cache[i]->name, path));
3492
0
         i++)
3493
0
      if (ce_stage(istate->cache[i]) == 2)
3494
0
        pos = i;
3495
0
  }
3496
0
  if (pos < 0)
3497
0
    return NULL;
3498
0
  data = odb_read_object(the_repository->objects, &istate->cache[pos]->oid,
3499
0
             &type, &sz);
3500
0
  if (!data || type != OBJ_BLOB) {
3501
0
    free(data);
3502
0
    return NULL;
3503
0
  }
3504
0
  if (size)
3505
0
    *size = sz;
3506
0
  return data;
3507
0
}
3508
3509
void move_index_extensions(struct index_state *dst, struct index_state *src)
3510
0
{
3511
0
  dst->untracked = src->untracked;
3512
0
  src->untracked = NULL;
3513
0
  dst->cache_tree = src->cache_tree;
3514
0
  src->cache_tree = NULL;
3515
0
}
3516
3517
struct cache_entry *dup_cache_entry(const struct cache_entry *ce,
3518
            struct index_state *istate)
3519
0
{
3520
0
  unsigned int size = ce_size(ce);
3521
0
  int mem_pool_allocated;
3522
0
  struct cache_entry *new_entry = make_empty_cache_entry(istate, ce_namelen(ce));
3523
0
  mem_pool_allocated = new_entry->mem_pool_allocated;
3524
3525
0
  memcpy(new_entry, ce, size);
3526
0
  new_entry->mem_pool_allocated = mem_pool_allocated;
3527
0
  return new_entry;
3528
0
}
3529
3530
void discard_cache_entry(struct cache_entry *ce)
3531
0
{
3532
0
  if (ce && should_validate_cache_entries())
3533
0
    memset(ce, 0xCD, cache_entry_size(ce->ce_namelen));
3534
3535
0
  if (ce && ce->mem_pool_allocated)
3536
0
    return;
3537
3538
0
  free(ce);
3539
0
}
3540
3541
int should_validate_cache_entries(void)
3542
0
{
3543
0
  static int validate_index_cache_entries = -1;
3544
3545
0
  if (validate_index_cache_entries < 0) {
3546
0
    if (getenv("GIT_TEST_VALIDATE_INDEX_CACHE_ENTRIES"))
3547
0
      validate_index_cache_entries = 1;
3548
0
    else
3549
0
      validate_index_cache_entries = 0;
3550
0
  }
3551
3552
0
  return validate_index_cache_entries;
3553
0
}
3554
3555
0
#define EOIE_SIZE (4 + GIT_SHA1_RAWSZ) /* <4-byte offset> + <20-byte hash> */
3556
0
#define EOIE_SIZE_WITH_HEADER (4 + 4 + EOIE_SIZE) /* <4-byte signature> + <4-byte length> + EOIE_SIZE */
3557
3558
static size_t read_eoie_extension(const char *mmap, size_t mmap_size)
3559
0
{
3560
  /*
3561
   * The end of index entries (EOIE) extension is guaranteed to be last
3562
   * so that it can be found by scanning backwards from the EOF.
3563
   *
3564
   * "EOIE"
3565
   * <4-byte length>
3566
   * <4-byte offset>
3567
   * <20-byte hash>
3568
   */
3569
0
  const char *index, *eoie;
3570
0
  uint32_t extsize;
3571
0
  size_t offset, src_offset;
3572
0
  unsigned char hash[GIT_MAX_RAWSZ];
3573
0
  struct git_hash_ctx c;
3574
3575
  /* ensure we have an index big enough to contain an EOIE extension */
3576
0
  if (mmap_size < sizeof(struct cache_header) + EOIE_SIZE_WITH_HEADER + the_hash_algo->rawsz)
3577
0
    return 0;
3578
3579
  /* validate the extension signature */
3580
0
  index = eoie = mmap + mmap_size - EOIE_SIZE_WITH_HEADER - the_hash_algo->rawsz;
3581
0
  if (CACHE_EXT(index) != CACHE_EXT_ENDOFINDEXENTRIES)
3582
0
    return 0;
3583
0
  index += sizeof(uint32_t);
3584
3585
  /* validate the extension size */
3586
0
  extsize = get_be32(index);
3587
0
  if (extsize != EOIE_SIZE)
3588
0
    return 0;
3589
0
  index += sizeof(uint32_t);
3590
3591
  /*
3592
   * Validate the offset we're going to look for the first extension
3593
   * signature is after the index header and before the eoie extension.
3594
   */
3595
0
  offset = get_be32(index);
3596
0
  if (mmap + offset < mmap + sizeof(struct cache_header))
3597
0
    return 0;
3598
0
  if (mmap + offset >= eoie)
3599
0
    return 0;
3600
0
  index += sizeof(uint32_t);
3601
3602
  /*
3603
   * The hash is computed over extension types and their sizes (but not
3604
   * their contents).  E.g. if we have "TREE" extension that is N-bytes
3605
   * long, "REUC" extension that is M-bytes long, followed by "EOIE",
3606
   * then the hash would be:
3607
   *
3608
   * SHA-1("TREE" + <binary representation of N> +
3609
   *   "REUC" + <binary representation of M>)
3610
   */
3611
0
  src_offset = offset;
3612
0
  the_hash_algo->init_fn(&c);
3613
0
  while (src_offset < mmap_size - the_hash_algo->rawsz - EOIE_SIZE_WITH_HEADER) {
3614
    /* After an array of active_nr index entries,
3615
     * there can be arbitrary number of extended
3616
     * sections, each of which is prefixed with
3617
     * extension name (4-byte) and section length
3618
     * in 4-byte network byte order.
3619
     */
3620
0
    uint32_t extsize;
3621
0
    memcpy(&extsize, mmap + src_offset + 4, 4);
3622
0
    extsize = ntohl(extsize);
3623
3624
    /* verify the extension size isn't so large it will wrap around */
3625
0
    if (src_offset + 8 + extsize < src_offset)
3626
0
      return 0;
3627
3628
0
    git_hash_update(&c, mmap + src_offset, 8);
3629
3630
0
    src_offset += 8;
3631
0
    src_offset += extsize;
3632
0
  }
3633
0
  git_hash_final(hash, &c);
3634
0
  if (!hasheq(hash, (const unsigned char *)index, the_repository->hash_algo))
3635
0
    return 0;
3636
3637
  /* Validate that the extension offsets returned us back to the eoie extension. */
3638
0
  if (src_offset != mmap_size - the_hash_algo->rawsz - EOIE_SIZE_WITH_HEADER)
3639
0
    return 0;
3640
3641
0
  return offset;
3642
0
}
3643
3644
static void write_eoie_extension(struct strbuf *sb, struct git_hash_ctx *eoie_context, size_t offset)
3645
0
{
3646
0
  uint32_t buffer;
3647
0
  unsigned char hash[GIT_MAX_RAWSZ];
3648
3649
  /* offset */
3650
0
  put_be32(&buffer, offset);
3651
0
  strbuf_add(sb, &buffer, sizeof(uint32_t));
3652
3653
  /* hash */
3654
0
  git_hash_final(hash, eoie_context);
3655
0
  strbuf_add(sb, hash, the_hash_algo->rawsz);
3656
0
}
3657
3658
0
#define IEOT_VERSION  (1)
3659
3660
static struct index_entry_offset_table *read_ieot_extension(const char *mmap, size_t mmap_size, size_t offset)
3661
0
{
3662
0
  const char *index = NULL;
3663
0
  uint32_t extsize, ext_version;
3664
0
  struct index_entry_offset_table *ieot;
3665
0
  int i, nr;
3666
3667
  /* find the IEOT extension */
3668
0
  if (!offset)
3669
0
    return NULL;
3670
0
  while (offset <= mmap_size - the_hash_algo->rawsz - 8) {
3671
0
    extsize = get_be32(mmap + offset + 4);
3672
0
    if (CACHE_EXT((mmap + offset)) == CACHE_EXT_INDEXENTRYOFFSETTABLE) {
3673
0
      index = mmap + offset + 4 + 4;
3674
0
      break;
3675
0
    }
3676
0
    offset += 8;
3677
0
    offset += extsize;
3678
0
  }
3679
0
  if (!index)
3680
0
    return NULL;
3681
3682
  /* validate the version is IEOT_VERSION */
3683
0
  ext_version = get_be32(index);
3684
0
  if (ext_version != IEOT_VERSION) {
3685
0
    error("invalid IEOT version %d", ext_version);
3686
0
    return NULL;
3687
0
  }
3688
0
  index += sizeof(uint32_t);
3689
3690
  /* extension size - version bytes / bytes per entry */
3691
0
  nr = (extsize - sizeof(uint32_t)) / (sizeof(uint32_t) + sizeof(uint32_t));
3692
0
  if (!nr) {
3693
0
    error("invalid number of IEOT entries %d", nr);
3694
0
    return NULL;
3695
0
  }
3696
0
  ieot = xmalloc(sizeof(struct index_entry_offset_table)
3697
0
           + (nr * sizeof(struct index_entry_offset)));
3698
0
  ieot->nr = nr;
3699
0
  for (i = 0; i < nr; i++) {
3700
0
    ieot->entries[i].offset = get_be32(index);
3701
0
    index += sizeof(uint32_t);
3702
0
    ieot->entries[i].nr = get_be32(index);
3703
0
    index += sizeof(uint32_t);
3704
0
  }
3705
3706
0
  return ieot;
3707
0
}
3708
3709
static void write_ieot_extension(struct strbuf *sb, struct index_entry_offset_table *ieot)
3710
0
{
3711
0
  uint32_t buffer;
3712
0
  int i;
3713
3714
  /* version */
3715
0
  put_be32(&buffer, IEOT_VERSION);
3716
0
  strbuf_add(sb, &buffer, sizeof(uint32_t));
3717
3718
  /* ieot */
3719
0
  for (i = 0; i < ieot->nr; i++) {
3720
3721
    /* offset */
3722
0
    put_be32(&buffer, ieot->entries[i].offset);
3723
0
    strbuf_add(sb, &buffer, sizeof(uint32_t));
3724
3725
    /* count */
3726
0
    put_be32(&buffer, ieot->entries[i].nr);
3727
0
    strbuf_add(sb, &buffer, sizeof(uint32_t));
3728
0
  }
3729
0
}
3730
3731
void prefetch_cache_entries(const struct index_state *istate,
3732
          must_prefetch_predicate must_prefetch)
3733
0
{
3734
0
  int i;
3735
0
  struct oid_array to_fetch = OID_ARRAY_INIT;
3736
3737
0
  for (i = 0; i < istate->cache_nr; i++) {
3738
0
    struct cache_entry *ce = istate->cache[i];
3739
3740
0
    if (S_ISGITLINK(ce->ce_mode) || !must_prefetch(ce))
3741
0
      continue;
3742
0
    if (!odb_read_object_info_extended(the_repository->objects,
3743
0
               &ce->oid, NULL,
3744
0
               OBJECT_INFO_FOR_PREFETCH))
3745
0
      continue;
3746
0
    oid_array_append(&to_fetch, &ce->oid);
3747
0
  }
3748
0
  promisor_remote_get_direct(the_repository,
3749
0
           to_fetch.oid, to_fetch.nr);
3750
0
  oid_array_clear(&to_fetch);
3751
0
}
3752
3753
static int read_one_entry_opt(struct index_state *istate,
3754
            const struct object_id *oid,
3755
            struct strbuf *base,
3756
            const char *pathname,
3757
            unsigned mode, int opt)
3758
0
{
3759
0
  int len;
3760
0
  struct cache_entry *ce;
3761
3762
0
  if (S_ISDIR(mode))
3763
0
    return READ_TREE_RECURSIVE;
3764
3765
0
  len = strlen(pathname);
3766
0
  ce = make_empty_cache_entry(istate, base->len + len);
3767
3768
0
  ce->ce_mode = create_ce_mode(mode);
3769
0
  ce->ce_flags = create_ce_flags(1);
3770
0
  ce->ce_namelen = base->len + len;
3771
0
  memcpy(ce->name, base->buf, base->len);
3772
0
  memcpy(ce->name + base->len, pathname, len+1);
3773
0
  oidcpy(&ce->oid, oid);
3774
0
  return add_index_entry(istate, ce, opt);
3775
0
}
3776
3777
static int read_one_entry(const struct object_id *oid, struct strbuf *base,
3778
        const char *pathname, unsigned mode,
3779
        void *context)
3780
0
{
3781
0
  struct index_state *istate = context;
3782
0
  return read_one_entry_opt(istate, oid, base, pathname,
3783
0
          mode,
3784
0
          ADD_CACHE_OK_TO_ADD|ADD_CACHE_SKIP_DFCHECK);
3785
0
}
3786
3787
/*
3788
 * This is used when the caller knows there is no existing entries at
3789
 * the stage that will conflict with the entry being added.
3790
 */
3791
static int read_one_entry_quick(const struct object_id *oid, struct strbuf *base,
3792
        const char *pathname, unsigned mode,
3793
        void *context)
3794
0
{
3795
0
  struct index_state *istate = context;
3796
0
  return read_one_entry_opt(istate, oid, base, pathname,
3797
0
          mode, ADD_CACHE_JUST_APPEND);
3798
0
}
3799
3800
/*
3801
 * Read the tree specified with --with-tree option
3802
 * (typically, HEAD) into stage #1 and then
3803
 * squash them down to stage #0.  This is used for
3804
 * --error-unmatch to list and check the path patterns
3805
 * that were given from the command line.  We are not
3806
 * going to write this index out.
3807
 */
3808
void overlay_tree_on_index(struct index_state *istate,
3809
         const char *tree_name, const char *prefix)
3810
0
{
3811
0
  struct tree *tree;
3812
0
  struct object_id oid;
3813
0
  struct pathspec pathspec;
3814
0
  struct cache_entry *last_stage0 = NULL;
3815
0
  int i;
3816
0
  read_tree_fn_t fn = NULL;
3817
0
  int err;
3818
3819
0
  if (repo_get_oid(the_repository, tree_name, &oid))
3820
0
    die("tree-ish %s not found.", tree_name);
3821
0
  tree = repo_parse_tree_indirect(the_repository, &oid);
3822
0
  if (!tree)
3823
0
    die("bad tree-ish %s", tree_name);
3824
3825
  /* Hoist the unmerged entries up to stage #3 to make room */
3826
  /* TODO: audit for interaction with sparse-index. */
3827
0
  ensure_full_index(istate);
3828
0
  for (i = 0; i < istate->cache_nr; i++) {
3829
0
    struct cache_entry *ce = istate->cache[i];
3830
0
    if (!ce_stage(ce))
3831
0
      continue;
3832
0
    ce->ce_flags |= CE_STAGEMASK;
3833
0
  }
3834
3835
0
  if (prefix) {
3836
0
    static const char *(matchbuf[1]);
3837
0
    matchbuf[0] = NULL;
3838
0
    parse_pathspec(&pathspec, PATHSPEC_ALL_MAGIC,
3839
0
             PATHSPEC_PREFER_CWD, prefix, matchbuf);
3840
0
  } else
3841
0
    memset(&pathspec, 0, sizeof(pathspec));
3842
3843
  /*
3844
   * See if we have cache entry at the stage.  If so,
3845
   * do it the original slow way, otherwise, append and then
3846
   * sort at the end.
3847
   */
3848
0
  for (i = 0; !fn && i < istate->cache_nr; i++) {
3849
0
    const struct cache_entry *ce = istate->cache[i];
3850
0
    if (ce_stage(ce) == 1)
3851
0
      fn = read_one_entry;
3852
0
  }
3853
3854
0
  if (!fn)
3855
0
    fn = read_one_entry_quick;
3856
0
  err = read_tree(the_repository, tree, &pathspec, fn, istate);
3857
0
  clear_pathspec(&pathspec);
3858
0
  if (err)
3859
0
    die("unable to read tree entries %s", tree_name);
3860
3861
  /*
3862
   * Sort the cache entry -- we need to nuke the cache tree, though.
3863
   */
3864
0
  if (fn == read_one_entry_quick) {
3865
0
    cache_tree_free(&istate->cache_tree);
3866
0
    QSORT(istate->cache, istate->cache_nr, cmp_cache_name_compare);
3867
0
  }
3868
3869
0
  for (i = 0; i < istate->cache_nr; i++) {
3870
0
    struct cache_entry *ce = istate->cache[i];
3871
0
    switch (ce_stage(ce)) {
3872
0
    case 0:
3873
0
      last_stage0 = ce;
3874
      /* fallthru */
3875
0
    default:
3876
0
      continue;
3877
0
    case 1:
3878
      /*
3879
       * If there is stage #0 entry for this, we do not
3880
       * need to show it.  We use CE_UPDATE bit to mark
3881
       * such an entry.
3882
       */
3883
0
      if (last_stage0 &&
3884
0
          !strcmp(last_stage0->name, ce->name))
3885
0
        ce->ce_flags |= CE_UPDATE;
3886
0
    }
3887
0
  }
3888
0
}
3889
3890
struct update_callback_data {
3891
  struct index_state *index;
3892
  int include_sparse;
3893
  int flags;
3894
  int add_errors;
3895
};
3896
3897
static int fix_unmerged_status(struct diff_filepair *p,
3898
             struct update_callback_data *data)
3899
0
{
3900
0
  if (p->status != DIFF_STATUS_UNMERGED)
3901
0
    return p->status;
3902
0
  if (!(data->flags & ADD_CACHE_IGNORE_REMOVAL) && !p->two->mode)
3903
    /*
3904
     * This is not an explicit add request, and the
3905
     * path is missing from the working tree (deleted)
3906
     */
3907
0
    return DIFF_STATUS_DELETED;
3908
0
  else
3909
    /*
3910
     * Either an explicit add request, or path exists
3911
     * in the working tree.  An attempt to explicitly
3912
     * add a path that does not exist in the working tree
3913
     * will be caught as an error by the caller immediately.
3914
     */
3915
0
    return DIFF_STATUS_MODIFIED;
3916
0
}
3917
3918
static void update_callback(struct diff_queue_struct *q,
3919
          struct diff_options *opt UNUSED, void *cbdata)
3920
0
{
3921
0
  int i;
3922
0
  struct update_callback_data *data = cbdata;
3923
3924
0
  for (i = 0; i < q->nr; i++) {
3925
0
    struct diff_filepair *p = q->queue[i];
3926
0
    const char *path = p->one->path;
3927
3928
0
    if (!data->include_sparse &&
3929
0
        !path_in_sparse_checkout(path, data->index))
3930
0
      continue;
3931
3932
0
    switch (fix_unmerged_status(p, data)) {
3933
0
    default:
3934
0
      die(_("unexpected diff status %c"), p->status);
3935
0
    case DIFF_STATUS_MODIFIED:
3936
0
    case DIFF_STATUS_TYPE_CHANGED:
3937
0
      if (add_file_to_index(data->index, path, data->flags)) {
3938
0
        if (!(data->flags & ADD_CACHE_IGNORE_ERRORS))
3939
0
          die(_("updating files failed"));
3940
0
        data->add_errors++;
3941
0
      }
3942
0
      break;
3943
0
    case DIFF_STATUS_DELETED:
3944
0
      if (data->flags & ADD_CACHE_IGNORE_REMOVAL)
3945
0
        break;
3946
0
      if (!(data->flags & ADD_CACHE_PRETEND))
3947
0
        remove_file_from_index(data->index, path);
3948
0
      if (data->flags & (ADD_CACHE_PRETEND|ADD_CACHE_VERBOSE))
3949
0
        printf(_("remove '%s'\n"), path);
3950
0
      break;
3951
0
    }
3952
0
  }
3953
0
}
3954
3955
int add_files_to_cache(struct repository *repo, const char *prefix,
3956
           const struct pathspec *pathspec, char *ps_matched,
3957
           int include_sparse, int flags)
3958
0
{
3959
0
  struct odb_transaction *transaction;
3960
0
  struct update_callback_data data;
3961
0
  struct rev_info rev;
3962
3963
0
  memset(&data, 0, sizeof(data));
3964
0
  data.index = repo->index;
3965
0
  data.include_sparse = include_sparse;
3966
0
  data.flags = flags;
3967
3968
0
  repo_init_revisions(repo, &rev, prefix);
3969
0
  setup_revisions(0, NULL, &rev, NULL);
3970
0
  if (pathspec) {
3971
0
    copy_pathspec(&rev.prune_data, pathspec);
3972
0
    rev.ps_matched = ps_matched;
3973
0
  }
3974
0
  rev.diffopt.output_format = DIFF_FORMAT_CALLBACK;
3975
0
  rev.diffopt.format_callback = update_callback;
3976
0
  rev.diffopt.format_callback_data = &data;
3977
0
  rev.diffopt.flags.override_submodule_config = 1;
3978
0
  rev.max_count = 0; /* do not compare unmerged paths with stage #2 */
3979
3980
  /*
3981
   * Use an ODB transaction to optimize adding multiple objects.
3982
   * This function is invoked from commands other than 'add', which
3983
   * may not have their own transaction active.
3984
   */
3985
0
  transaction = odb_transaction_begin(repo->objects);
3986
0
  run_diff_files(&rev, DIFF_RACY_IS_MODIFIED);
3987
0
  odb_transaction_commit(transaction);
3988
3989
0
  release_revisions(&rev);
3990
0
  return !!data.add_errors;
3991
0
}