Skip to content

Commit 4337b58

Browse files
peffgitster
authored andcommitted
do not write null sha1s to on-disk index
We should never need to write the null sha1 into an index entry (short of the 1 in 2^160 chance that somebody actually has content that hashes to it). If we attempt to do so, it is much more likely that it is a bug, since we use the null sha1 as a sentinel value to mean "not valid". The presence of null sha1s in the index (which can come from, among other things, "update-index --cacheinfo", or by reading a corrupted tree) can cause problems for later readers, because they cannot distinguish the literal null sha1 from its use a sentinel value. For example, "git diff-files" on such an entry would make it appear as if it is stat-dirty, and until recently, the diff code assumed such an entry meant that we should be diffing a working tree file rather than a blob. Ideally, we would stop such entries from entering even our in-core index. However, we do sometimes legitimately add entries with null sha1s in order to represent these sentinel situations; simply forbidding them in add_index_entry breaks a lot of the existing code. However, we can at least make sure that our in-core sentinel representation never makes it to disk. To be thorough, we will test an attempt to add both a blob and a submodule entry. In the former case, we might run into problems anyway because we will be missing the blob object. But in the latter case, we do not enforce connectivity across gitlink entries, making this our only point of enforcement. The current implementation does not care which type of entry we are seeing, but testing both cases helps future-proof the test suite in case that changes. Signed-off-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent e545010 commit 4337b58

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

read-cache.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1615,6 +1615,8 @@ int write_index(struct index_state *istate, int newfd)
16151615
continue;
16161616
if (!ce_uptodate(ce) && is_racy_timestamp(istate, ce))
16171617
ce_smudge_racily_clean_entry(ce);
1618+
if (is_null_sha1(ce->sha1))
1619+
return error("cache entry has null sha1: %s", ce->name);
16181620
if (ce_write_entry(&c, newfd, ce) < 0)
16191621
return -1;
16201622
}

t/t2107-update-index-basic.sh

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,23 @@ test_expect_success 'update-index -h with corrupt index' '
2929
grep "[Uu]sage: git update-index" broken/usage
3030
'
3131

32+
test_expect_success '--cacheinfo does not accept blob null sha1' '
33+
echo content >file &&
34+
git add file &&
35+
git rev-parse :file >expect &&
36+
test_must_fail git update-index --cacheinfo 100644 $_z40 file &&
37+
git rev-parse :file >actual &&
38+
test_cmp expect actual
39+
'
40+
41+
test_expect_success '--cacheinfo does not accept gitlink null sha1' '
42+
git init submodule &&
43+
(cd submodule && test_commit foo) &&
44+
git add submodule &&
45+
git rev-parse :submodule >expect &&
46+
test_must_fail git update-index --cacheinfo 160000 $_z40 submodule &&
47+
git rev-parse :submodule >actual &&
48+
test_cmp expect actual
49+
'
50+
3251
test_done

0 commit comments

Comments
 (0)