2016-11-17 22:46:21 +01:00
|
|
|
|
#!/bin/bash
|
|
|
|
|
#
|
|
|
|
|
# Mount a go-fuse loopback filesystem in /tmp and run fsstress against it
|
|
|
|
|
# in an infinite loop, only exiting on errors.
|
|
|
|
|
#
|
|
|
|
|
# When called as "fsstress-gocryptfs.bash", a gocryptfs filesystem is tested
|
|
|
|
|
# instead.
|
|
|
|
|
#
|
|
|
|
|
# This test used to fail on older go-fuse versions after a few iterations with
|
|
|
|
|
# errors like this:
|
|
|
|
|
# "rm: cannot remove ‘/tmp/b/fsstress.2/pd/d1XXX/f4a’: No such file or directory"
|
|
|
|
|
#
|
|
|
|
|
# Nowadays it should pass an indefinite number of iterations.
|
|
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
|
2017-02-15 23:02:01 +01:00
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
|
MYNAME=$(basename $0)
|
|
|
|
|
source ../fuse-unmount.bash
|
|
|
|
|
|
2016-11-17 22:46:21 +01:00
|
|
|
|
# fsstress binary
|
2017-07-21 23:31:13 +02:00
|
|
|
|
FSSTRESS=$HOME/fuse-xfstests/ltp/fsstress
|
2016-11-17 22:46:21 +01:00
|
|
|
|
if [ ! -x $FSSTRESS ]
|
|
|
|
|
then
|
2017-07-21 23:31:13 +02:00
|
|
|
|
echo "$MYNAME: fsstress binary not found at $FSSTRESS"
|
|
|
|
|
echo "Please clone and compile https://github.com/rfjakob/fuse-xfstests"
|
2016-11-17 22:46:21 +01:00
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
2017-07-21 23:31:13 +02:00
|
|
|
|
# Backing directory
|
|
|
|
|
DIR=$(mktemp -d /tmp/$MYNAME.XXX)
|
|
|
|
|
# Mountpoint
|
|
|
|
|
MNT="$DIR.mnt"
|
|
|
|
|
mkdir $MNT
|
2017-02-19 20:43:07 +01:00
|
|
|
|
|
2017-07-21 23:31:13 +02:00
|
|
|
|
# Set the GOPATH variable to the default if it is empty
|
|
|
|
|
GOPATH=$(go env GOPATH)
|
2017-02-19 20:43:07 +01:00
|
|
|
|
|
2016-11-17 22:46:21 +01:00
|
|
|
|
# FS-specific compile and mount
|
|
|
|
|
if [ $MYNAME = fsstress-loopback.bash ]; then
|
|
|
|
|
echo "Recompile go-fuse loopback"
|
|
|
|
|
cd $GOPATH/src/github.com/hanwen/go-fuse/example/loopback
|
2017-07-21 23:31:13 +02:00
|
|
|
|
go build -race && go install
|
2016-11-17 22:46:21 +01:00
|
|
|
|
$GOPATH/bin/loopback -l $MNT $DIR &
|
|
|
|
|
disown
|
|
|
|
|
elif [ $MYNAME = fsstress-gocryptfs.bash ]; then
|
|
|
|
|
echo "Recompile gocryptfs"
|
|
|
|
|
cd $GOPATH/src/github.com/rfjakob/gocryptfs
|
|
|
|
|
./build.bash
|
|
|
|
|
$GOPATH/bin/gocryptfs -q -init -extpass "echo test" -scryptn=10 $DIR
|
|
|
|
|
$GOPATH/bin/gocryptfs -q -extpass "echo test" -nosyslog $DIR $MNT
|
2017-05-01 23:50:49 +02:00
|
|
|
|
elif [ $MYNAME = fsstress-encfs.bash ]; then
|
|
|
|
|
# You probably want do adjust this path to your system
|
|
|
|
|
/home/jakob.donotbackup/encfs/build/encfs --extpass "echo test" --standard $DIR $MNT
|
2016-11-17 22:46:21 +01:00
|
|
|
|
else
|
|
|
|
|
echo Unknown mode: $MYNAME
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
sleep 0.5
|
2017-07-21 23:31:13 +02:00
|
|
|
|
echo -n "Waiting for mount: "
|
2016-11-17 22:46:21 +01:00
|
|
|
|
while ! grep "$MNT fuse" /proc/self/mounts > /dev/null
|
|
|
|
|
do
|
|
|
|
|
sleep 1
|
|
|
|
|
echo -n x
|
|
|
|
|
done
|
2017-07-21 23:31:13 +02:00
|
|
|
|
echo " ok"
|
2016-11-17 22:46:21 +01:00
|
|
|
|
|
|
|
|
|
# Cleanup trap
|
2017-07-21 23:31:13 +02:00
|
|
|
|
trap "kill %1 ; cd / ; fuse-unmount -z $MNT ; rm -rf $DIR $MNT" EXIT
|
2016-11-17 22:46:21 +01:00
|
|
|
|
|
|
|
|
|
echo "Starting fsstress loop"
|
|
|
|
|
N=1
|
|
|
|
|
while true
|
|
|
|
|
do
|
|
|
|
|
echo $N
|
|
|
|
|
mkdir $MNT/fsstress.1
|
|
|
|
|
echo -n " fsstress.1 "
|
|
|
|
|
$FSSTRESS -r -m 8 -n 1000 -d $MNT/fsstress.1 &
|
|
|
|
|
wait
|
|
|
|
|
|
|
|
|
|
mkdir $MNT/fsstress.2
|
|
|
|
|
echo -n " fsstress.2 "
|
|
|
|
|
$FSSTRESS -p 20 -r -m 8 -n 1000 -d $MNT/fsstress.2 &
|
|
|
|
|
wait
|
|
|
|
|
|
|
|
|
|
mkdir $MNT/fsstress.3
|
|
|
|
|
echo -n " fsstress.3 "
|
|
|
|
|
$FSSTRESS -p 4 -z -f rmdir=10 -f link=10 -f creat=10 -f mkdir=10 \
|
|
|
|
|
-f rename=30 -f stat=30 -f unlink=30 -f truncate=20 -m 8 \
|
|
|
|
|
-n 1000 -d $MNT/fsstress.3 &
|
|
|
|
|
wait
|
|
|
|
|
|
|
|
|
|
echo " rm"
|
|
|
|
|
rm -R $MNT/*
|
|
|
|
|
|
|
|
|
|
let N=$N+1
|
|
|
|
|
done
|
|
|
|
|
|