-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
diffcore-rename: avoid processing duplicate destinations
The rename code cannot handle an input where we have duplicate destinations (i.e., more than one diff_filepair in the queue with the same string in its pair->two->path). We end up allocating only one slot in the rename_dst mapping. If we fill in the diff_filepair for that slot, when we re-queue the results, we may queue that filepair multiple times. When the diff is finally flushed, the filepair is processed and free()d multiple times, leading to heap corruption. This situation should only happen when a tree diff sees duplicates in one of the trees (see the added test for a detailed example). Rather than handle it, the sanest thing is just to turn off rename detection altogether for the diff. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
- Loading branch information
Jeff King
authored and
Junio C Hamano
committed
Feb 27, 2015
1 parent
f98c2f7
commit 4d6be03
Showing
2 changed files
with
85 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
#!/bin/sh | ||
|
||
test_description='test tree diff when trees have duplicate entries' | ||
. ./test-lib.sh | ||
|
||
# make_tree_entry <mode> <mode> <sha1> | ||
# | ||
# We have to rely on perl here because not all printfs understand | ||
# hex escapes (only octal), and xxd is not portable. | ||
make_tree_entry () { | ||
printf '%s %s\0' "$1" "$2" && | ||
perl -e 'print chr(hex($_)) for ($ARGV[0] =~ /../g)' "$3" | ||
} | ||
|
||
# Like git-mktree, but without all of the pesky sanity checking. | ||
# Arguments come in groups of three, each group specifying a single | ||
# tree entry (see make_tree_entry above). | ||
make_tree () { | ||
while test $# -gt 2; do | ||
make_tree_entry "$1" "$2" "$3" | ||
shift; shift; shift | ||
done | | ||
git hash-object -w -t tree --stdin | ||
} | ||
|
||
# this is kind of a convoluted setup, but matches | ||
# a real-world case. Each tree contains four entries | ||
# for the given path, one with one sha1, and three with | ||
# the other. The first tree has them split across | ||
# two subtrees (which are themselves duplicate entries in | ||
# the root tree), and the second has them all in a single subtree. | ||
test_expect_success 'create trees with duplicate entries' ' | ||
blob_one=$(echo one | git hash-object -w --stdin) && | ||
blob_two=$(echo two | git hash-object -w --stdin) && | ||
inner_one_a=$(make_tree \ | ||
100644 inner $blob_one | ||
) && | ||
inner_one_b=$(make_tree \ | ||
100644 inner $blob_two \ | ||
100644 inner $blob_two \ | ||
100644 inner $blob_two | ||
) && | ||
outer_one=$(make_tree \ | ||
040000 outer $inner_one_a \ | ||
040000 outer $inner_one_b | ||
) && | ||
inner_two=$(make_tree \ | ||
100644 inner $blob_one \ | ||
100644 inner $blob_two \ | ||
100644 inner $blob_two \ | ||
100644 inner $blob_two | ||
) && | ||
outer_two=$(make_tree \ | ||
040000 outer $inner_two | ||
) && | ||
git tag one $outer_one && | ||
git tag two $outer_two | ||
' | ||
|
||
test_expect_success 'diff-tree between trees' ' | ||
{ | ||
printf ":000000 100644 $_z40 $blob_two A\touter/inner\n" && | ||
printf ":000000 100644 $_z40 $blob_two A\touter/inner\n" && | ||
printf ":000000 100644 $_z40 $blob_two A\touter/inner\n" && | ||
printf ":100644 000000 $blob_two $_z40 D\touter/inner\n" && | ||
printf ":100644 000000 $blob_two $_z40 D\touter/inner\n" && | ||
printf ":100644 000000 $blob_two $_z40 D\touter/inner\n" | ||
} >expect && | ||
git diff-tree -r --no-abbrev one two >actual && | ||
test_cmp expect actual | ||
' | ||
|
||
test_expect_success 'diff-tree with renames' ' | ||
# same expectation as above, since we disable rename detection | ||
git diff-tree -M -r --no-abbrev one two >actual && | ||
test_cmp expect actual | ||
' | ||
|
||
test_done |