From: Amir Goldstein Date: Sun, 25 Apr 2021 07:14:44 +0000 (+0300) Subject: generic: Test readdir of modified directrory X-Git-Tag: v2022.05.01~412 X-Git-Url: http://git.apps.os.sepia.ceph.com/?p=xfstests-dev.git;a=commitdiff_plain;h=2fd4a08b9351d8951fa0b4f48dc223969c63a1cb;hp=54494f02efee75fa1921d239a47c65d70b7f028c generic: Test readdir of modified directrory Check that directory modifications to an open dir fd are observed by a new open fd. Signed-off-by: Amir Goldstein Reviewed-by: Eryu Guan Signed-off-by: Eryu Guan --- diff --git a/tests/generic/637 b/tests/generic/637 new file mode 100755 index 00000000..3ece88d4 --- /dev/null +++ b/tests/generic/637 @@ -0,0 +1,62 @@ +#! /bin/bash +# SPDX-License-Identifier: GPL-2.0 +# Copyright (C) 2021 CTERA Networks. All Rights Reserved. +# +# Check that directory modifications to an open dir are observed +# by a new open fd +# +seq=`basename $0` +seqres=$RESULT_DIR/$seq +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! + +_cleanup() +{ + cd / + rm -f $tmp.* +} +trap "_cleanup; exit \$status" 0 1 2 3 15 + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter + +# real QA test starts here +_supported_fs generic +_require_test + +rm -f $seqres.full + +testdir=$TEST_DIR/test-$seq +rm -rf $testdir +mkdir $testdir + +# Use small getdents bufsize to fit less than 10 entries +# stuct linux_dirent64 is 20 bytes not including d_name +bufsize=200 + +# Check readdir content of an empty dir changes when adding a new file +echo -e "\nCreate file 0 in an open dir:" >> $seqres.full +$here/src/t_dir_offset2 $testdir $bufsize "+0" 2>&1 >> $seqres.full || \ + echo "Missing created file in open dir (see $seqres.full for details)" + +# Create enough files to be returned in multiple gendents() calls. +# At least one of the files that we delete will not be listed in the +# first call, so we may encounter stale entries in following calls. +for n in {1..100}; do + touch $testdir/$n +done + +# Check readdir content changes after removing files +for n in {1..10}; do + echo -e "\nRemove file ${n}0 in an open dir:" >> $seqres.full + $here/src/t_dir_offset2 $testdir $bufsize "-${n}0" 2>&1 >> $seqres.full || \ + echo "Found unlinked files in open dir (see $seqres.full for details)" +done + +# success, all done +echo "Silence is golden" +status=0 diff --git a/tests/generic/637.out b/tests/generic/637.out new file mode 100644 index 00000000..55a3d825 --- /dev/null +++ b/tests/generic/637.out @@ -0,0 +1,2 @@ +QA output created by 637 +Silence is golden diff --git a/tests/generic/group b/tests/generic/group index 105763c4..6cdbd66d 100644 --- a/tests/generic/group +++ b/tests/generic/group @@ -639,3 +639,4 @@ 634 auto quick atime bigtime 635 auto quick atime bigtime shutdown 636 auto quick swap +637 auto quick dir