From: "Torsten Bögershausen" <tboegi@web.de>
To: Matheus Tavares <matheus.bernardino@usp.br>
Cc: git@vger.kernel.org, christian.couder@gmail.com,
git@jeffhostetler.com, stolee@gmail.com
Subject: Re: [PATCH v2 5/8] parallel-checkout: add tests related to path collisions
Date: Sun, 2 May 2021 09:59:20 +0200 [thread overview]
Message-ID: <20210502075920.d2rdmuix7r34sas2@tb-raspi4> (raw)
In-Reply-To: <eae6d3a1c16e440f18fd60d69b061d15ffbfe8e7.1619818517.git.matheus.bernardino@usp.br>
On Fri, Apr 30, 2021 at 06:40:32PM -0300, Matheus Tavares wrote:
> Add tests to confirm that path collisions are properly detected by
> checkout workers, both to avoid race conditions and to report colliding
> entries on clone.
>
> Co-authored-by: Jeff Hostetler <jeffhost@microsoft.com>
> Signed-off-by: Matheus Tavares <matheus.bernardino@usp.br>
> ---
> parallel-checkout.c | 4 +
> t/lib-parallel-checkout.sh | 4 +-
> t/t2081-parallel-checkout-collisions.sh | 162 ++++++++++++++++++++++++
> 3 files changed, 168 insertions(+), 2 deletions(-)
> create mode 100755 t/t2081-parallel-checkout-collisions.sh
>
> diff --git a/parallel-checkout.c b/parallel-checkout.c
> index 09e8b10a35..6fb3f1e6c9 100644
> --- a/parallel-checkout.c
> +++ b/parallel-checkout.c
> @@ -8,6 +8,7 @@
> #include "sigchain.h"
> #include "streaming.h"
> #include "thread-utils.h"
> +#include "trace2.h"
>
> struct pc_worker {
> struct child_process cp;
> @@ -326,6 +327,7 @@ void write_pc_item(struct parallel_checkout_item *pc_item,
> if (dir_sep && !has_dirs_only_path(path.buf, dir_sep - path.buf,
> state->base_dir_len)) {
> pc_item->status = PC_ITEM_COLLIDED;
> + trace2_data_string("pcheckout", NULL, "collision/dirname", path.buf);
> goto out;
> }
>
> @@ -341,6 +343,8 @@ void write_pc_item(struct parallel_checkout_item *pc_item,
> * call should have already caught these cases.
> */
> pc_item->status = PC_ITEM_COLLIDED;
> + trace2_data_string("pcheckout", NULL,
> + "collision/basename", path.buf);
> } else {
> error_errno("failed to open file '%s'", path.buf);
> pc_item->status = PC_ITEM_FAILED;
> diff --git a/t/lib-parallel-checkout.sh b/t/lib-parallel-checkout.sh
> index f60b22ef34..d6740425b1 100644
> --- a/t/lib-parallel-checkout.sh
> +++ b/t/lib-parallel-checkout.sh
> @@ -22,12 +22,12 @@ test_checkout_workers () {
>
> local trace_file=trace-test-checkout-workers &&
> rm -f "$trace_file" &&
> - GIT_TRACE2="$(pwd)/$trace_file" "$@" &&
> + GIT_TRACE2="$(pwd)/$trace_file" "$@" 2>&8 &&
>
> local workers=$(grep "child_start\[..*\] git checkout--worker" "$trace_file" | wc -l) &&
> test $workers -eq $expected_workers &&
> rm "$trace_file"
> -}
> +} 8>&2 2>&4
>
> # Verify that both the working tree and the index were created correctly
> verify_checkout () {
> diff --git a/t/t2081-parallel-checkout-collisions.sh b/t/t2081-parallel-checkout-collisions.sh
> new file mode 100755
> index 0000000000..f6fcfc0c1e
> --- /dev/null
> +++ b/t/t2081-parallel-checkout-collisions.sh
> @@ -0,0 +1,162 @@
> +#!/bin/sh
> +
> +test_description="path collisions during parallel checkout
> +
> +Parallel checkout must detect path collisions to:
> +
> +1) Avoid racily writing to different paths that represent the same file on disk.
> +2) Report the colliding entries on clone.
> +
> +The tests in this file exercise parallel checkout's collision detection code in
> +both these mechanics.
> +"
> +
> +. ./test-lib.sh
> +. "$TEST_DIRECTORY/lib-parallel-checkout.sh"
Why this $TEST_DIRECTORY ?
Aren't all files under the t/ directory, where test-lib.sh is as well ?
(The $TEST_DIRECTORY macro is used at different places, so I may have missed
something)
> +
> +TEST_ROOT="$PWD"
> +
> +test_expect_success CASE_INSENSITIVE_FS 'setup' '
> + empty_oid=$(git hash-object -w --stdin </dev/null) &&
> + cat >objs <<-EOF &&
> + 100644 $empty_oid FILE_X
> + 100644 $empty_oid FILE_x
> + 100644 $empty_oid file_X
> + 100644 $empty_oid file_x
> + EOF
> + git update-index --index-info <objs &&
> + git commit -m "colliding files" &&
> + git tag basename_collision &&
> +
> + write_script "$TEST_ROOT"/logger_script <<-\EOF
> + echo "$@" >>filter.log
> + EOF
> +'
> +
> +test_workers_in_event_trace ()
> +{
> + test $1 -eq $(grep ".event.:.child_start..*checkout--worker" $2 | wc -l)
> +}
> +
> +test_expect_success CASE_INSENSITIVE_FS 'worker detects basename collision' '
> + GIT_TRACE2_EVENT="$(pwd)/trace" git \
> + -c checkout.workers=2 -c checkout.thresholdForParallelism=0 \
> + checkout . &&
> +
> + test_workers_in_event_trace 2 trace &&
> + collisions=$(grep -i "category.:.pcheckout.,.key.:.collision/basename.,.value.:.file_x.}" trace | wc -l) &&
> + test $collisions -eq 3
> +'
> +
> +test_expect_success CASE_INSENSITIVE_FS 'worker detects dirname collision' '
> + test_config filter.logger.smudge "\"$TEST_ROOT/logger_script\" %f" &&
> + empty_oid=$(git hash-object -w --stdin </dev/null) &&
> +
> + # By setting a filter command to "a", we make it ineligible for parallel
> + # checkout, and thus it is checked out *first*. This way we can ensure
> + # that "A/B" and "A/C" will both collide with the regular file "a".
> + #
> + attr_oid=$(echo "a filter=logger" | git hash-object -w --stdin) &&
> +
> + cat >objs <<-EOF &&
> + 100644 $empty_oid A/B
> + 100644 $empty_oid A/C
> + 100644 $empty_oid a
> + 100644 $attr_oid .gitattributes
> + EOF
> + git rm -rf . &&
> + git update-index --index-info <objs &&
> +
> + rm -f trace filter.log &&
> + GIT_TRACE2_EVENT="$(pwd)/trace" git \
> + -c checkout.workers=2 -c checkout.thresholdForParallelism=0 \
> + checkout . &&
> +
> + # Check that "a" (and only "a") was filtered
> + echo a >expected.log &&
> + test_cmp filter.log expected.log &&
> +
> + # Check that it used the right number of workers and detected the collisions
> + test_workers_in_event_trace 2 trace &&
> + grep "category.:.pcheckout.,.key.:.collision/dirname.,.value.:.A/B.}" trace &&
> + grep "category.:.pcheckout.,.key.:.collision/dirname.,.value.:.A/C.}" trace
> +'
> +
> +test_expect_success SYMLINKS,CASE_INSENSITIVE_FS 'do not follow symlinks colliding with leading dir' '
> + empty_oid=$(git hash-object -w --stdin </dev/null) &&
> + symlink_oid=$(echo "./e" | git hash-object -w --stdin) &&
> + mkdir e &&
> +
> + cat >objs <<-EOF &&
> + 120000 $symlink_oid D
> + 100644 $empty_oid d/x
> + 100644 $empty_oid e/y
> + EOF
> + git rm -rf . &&
> + git update-index --index-info <objs &&
> +
> + set_checkout_config 2 0 &&
> + test_checkout_workers 2 git checkout . &&
> + test_path_is_dir e &&
> + test_path_is_missing e/x
> +'
> +
> +# The two following tests check that parallel checkout correctly reports
> +# colliding entries on clone. The sequential code detects a collision by
> +# calling lstat() before trying to open(O_CREAT) a file. (Note that this only
> +# works for clone.) Then, to find the pair of a colliding item k, it searches
> +# cache_entry[0, k-1]. This is not sufficient in parallel checkout because:
> +#
> +# - A colliding file may be created between the lstat() and open() calls;
> +# - A colliding entry might appear in the second half of the cache_entry array.
> +#
> +test_expect_success CASE_INSENSITIVE_FS 'collision report on clone (w/ racy file creation)' '
> + git reset --hard basename_collision &&
> + set_checkout_config 2 0 &&
> + test_checkout_workers 2 git clone . clone-repo 2>stderr &&
> +
> + grep FILE_X stderr &&
> + grep FILE_x stderr &&
> + grep file_X stderr &&
> + grep file_x stderr &&
> + grep "the following paths have collided" stderr
> +'
> +
> +# This test ensures that the collision report code is correctly looking for
> +# colliding peers in the second half of the cache_entry array. This is done by
> +# defining a smudge command for the *last* array entry, which makes it
> +# non-eligible for parallel-checkout. Thus, it is checked out *first*, before
> +# spawning the workers.
> +#
> +# Note: this test doesn't work on Windows because, on this system, the
> +# collision report code uses strcmp() to find the colliding pairs when
> +# core.ignoreCase is false. And we need this setting for this test so that only
> +# 'file_x' matches the pattern of the filter attribute. But the test works on
> +# OSX, where the colliding pairs are found using inode.
> +#
> +test_expect_success CASE_INSENSITIVE_FS,!MINGW,!CYGWIN \
> + 'collision report on clone (w/ colliding peer after the detected entry)' '
> +
> + test_config_global filter.logger.smudge "\"$TEST_ROOT/logger_script\" %f" &&
> + git reset --hard basename_collision &&
> + echo "file_x filter=logger" >.gitattributes &&
> + git add .gitattributes &&
> + git commit -m "filter for file_x" &&
> +
> + rm -rf clone-repo &&
> + set_checkout_config 2 0 &&
> + test_checkout_workers 2 \
> + git -c core.ignoreCase=false clone . clone-repo 2>stderr &&
> +
> + grep FILE_X stderr &&
> + grep FILE_x stderr &&
> + grep file_X stderr &&
> + grep file_x stderr &&
> + grep "the following paths have collided" stderr &&
> +
> + # Check that only "file_x" was filtered
> + echo file_x >expected.log &&
> + test_cmp clone-repo/filter.log expected.log
> +'
> +
> +test_done
> --
> 2.30.1
>
next prev parent reply other threads:[~2021-05-02 7:59 UTC|newest]
Thread overview: 50+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-22 15:17 [PATCH 0/7] Parallel Checkout (part 3) Matheus Tavares
2021-04-22 15:17 ` [PATCH 1/7] make_transient_cache_entry(): optionally alloc from mem_pool Matheus Tavares
2021-04-22 15:17 ` [PATCH 2/7] builtin/checkout.c: complete parallel checkout support Matheus Tavares
2021-04-23 16:19 ` Derrick Stolee
2021-04-26 21:54 ` Matheus Tavares Bernardino
2021-04-22 15:17 ` [PATCH 3/7] checkout-index: add " Matheus Tavares
2021-04-23 18:32 ` Derrick Stolee
2021-04-26 22:30 ` Matheus Tavares Bernardino
2021-04-22 15:17 ` [PATCH 4/7] parallel-checkout: add tests for basic operations Matheus Tavares
2021-04-23 19:18 ` Derrick Stolee
2021-04-27 2:30 ` Matheus Tavares Bernardino
2021-04-22 15:17 ` [PATCH 5/7] parallel-checkout: add tests related to path collisions Matheus Tavares
2021-04-22 15:17 ` [PATCH 6/7] parallel-checkout: add tests related to .gitattributes Matheus Tavares
2021-04-23 19:48 ` Derrick Stolee
2021-04-22 15:17 ` [PATCH 7/7] ci: run test round with parallel-checkout enabled Matheus Tavares
2021-04-23 19:56 ` Derrick Stolee
2021-04-30 21:40 ` [PATCH v2 0/8] Parallel Checkout (part 3) Matheus Tavares
2021-04-30 21:40 ` [PATCH v2 1/8] make_transient_cache_entry(): optionally alloc from mem_pool Matheus Tavares
2021-05-01 17:06 ` Christian Couder
2021-05-03 14:11 ` Matheus Tavares Bernardino
2021-04-30 21:40 ` [PATCH v2 2/8] builtin/checkout.c: complete parallel checkout support Matheus Tavares
2021-05-01 17:08 ` Christian Couder
2021-05-03 14:21 ` Matheus Tavares Bernardino
2021-04-30 21:40 ` [PATCH v2 3/8] checkout-index: add " Matheus Tavares
2021-05-01 17:08 ` Christian Couder
2021-05-03 14:22 ` Matheus Tavares Bernardino
2021-04-30 21:40 ` [PATCH v2 4/8] parallel-checkout: add tests for basic operations Matheus Tavares
2021-04-30 21:40 ` [PATCH v2 5/8] parallel-checkout: add tests related to path collisions Matheus Tavares
2021-05-02 7:59 ` Torsten Bögershausen [this message]
2021-05-03 14:58 ` Matheus Tavares Bernardino
2021-04-30 21:40 ` [PATCH v2 6/8] t0028: extract encoding helpers to lib-encoding.sh Matheus Tavares
2021-04-30 21:40 ` [PATCH v2 7/8] parallel-checkout: add tests related to .gitattributes Matheus Tavares
2021-04-30 21:40 ` [PATCH v2 8/8] ci: run test round with parallel-checkout enabled Matheus Tavares
2021-05-02 10:12 ` [PATCH v2 0/8] Parallel Checkout (part 3) Torsten Bögershausen
2021-05-03 15:01 ` Matheus Tavares Bernardino
2021-05-04 16:27 ` [PATCH v3 " Matheus Tavares
2021-05-04 16:27 ` [PATCH v3 1/8] make_transient_cache_entry(): optionally alloc from mem_pool Matheus Tavares
2021-05-04 16:27 ` [PATCH v3 2/8] builtin/checkout.c: complete parallel checkout support Matheus Tavares
2021-05-05 13:55 ` Derrick Stolee
2021-05-04 16:27 ` [PATCH v3 3/8] checkout-index: add " Matheus Tavares
2021-05-04 16:27 ` [PATCH v3 4/8] parallel-checkout: add tests for basic operations Matheus Tavares
2021-05-26 18:36 ` AIX failures on parallel checkout (new in v2.32.0-rc*) Ævar Arnfjörð Bjarmason
2021-05-26 22:01 ` Matheus Tavares Bernardino
2021-05-26 23:00 ` Junio C Hamano
2021-05-04 16:27 ` [PATCH v3 5/8] parallel-checkout: add tests related to path collisions Matheus Tavares
2021-05-04 16:27 ` [PATCH v3 6/8] t0028: extract encoding helpers to lib-encoding.sh Matheus Tavares
2021-05-04 16:27 ` [PATCH v3 7/8] parallel-checkout: add tests related to .gitattributes Matheus Tavares
2021-05-04 16:27 ` [PATCH v3 8/8] ci: run test round with parallel-checkout enabled Matheus Tavares
2021-05-05 13:57 ` [PATCH v3 0/8] Parallel Checkout (part 3) Derrick Stolee
2021-05-06 0:40 ` Junio C Hamano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: http://vger.kernel.org/majordomo-info.html
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210502075920.d2rdmuix7r34sas2@tb-raspi4 \
--to=tboegi@web.de \
--cc=christian.couder@gmail.com \
--cc=git@jeffhostetler.com \
--cc=git@vger.kernel.org \
--cc=matheus.bernardino@usp.br \
--cc=stolee@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://80x24.org/mirrors/git.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).