libgocryptfs/tests/stress_tests/fsstress-gocryptfs.bash

113 lines
2.8 KiB
Bash
Raw Normal View History

#!/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
# Init variables to default values if unset or empty
export TMPDIR=${TMPDIR:-/var/tmp}
DEBUG=${DEBUG:-0}
cd "$(dirname "$0")"
2021-08-31 19:01:47 +02:00
MYNAME=$(basename "$0")
source ../fuse-unmount.bash
# fsstress binary
FSSTRESS=/opt/fuse-xfstests/ltp/fsstress
if [[ ! -x $FSSTRESS ]]
then
echo "$MYNAME: fsstress binary not found at $FSSTRESS"
echo "Please clone and compile https://github.com/rfjakob/fuse-xfstests"
exit 1
fi
# Backing directory
2021-08-31 19:01:47 +02:00
DIR=$(mktemp -d "$TMPDIR/$MYNAME.XXX")
# Mountpoint
MNT="$DIR.mnt"
2021-08-31 19:01:47 +02:00
mkdir "$MNT"
# Set the GOPATH variable to the default if it is empty
GOPATH=$(go env GOPATH)
# Clean up old mounts
2021-08-31 19:01:47 +02:00
for i in $(mount | cut -d" " -f3 | grep "$TMPDIR/$MYNAME") ; do
fusermount -u "$i"
done
# FS-specific compile and mount
if [[ $MYNAME = fsstress-loopback.bash ]]; then
echo -n "Recompile go-fuse loopback: "
2021-08-31 19:01:47 +02:00
cd "$GOPATH/src/github.com/hanwen/go-fuse/example/loopback"
git describe
go build && go install
OPTS="-q"
if [[ $DEBUG -eq 1 ]]; then
OPTS="-debug"
fi
$GOPATH/bin/loopback $OPTS "$MNT" "$DIR" &
disown
elif [[ $MYNAME = fsstress-gocryptfs.bash ]]; then
echo "Recompile gocryptfs"
2021-08-31 19:01:47 +02:00
cd "$GOPATH/src/github.com/rfjakob/gocryptfs"
./build.bash # also prints the version
2021-08-31 19:01:47 +02:00
$GOPATH/bin/gocryptfs -q -init -extpass "echo test" -scryptn=10 "$DIR"
$GOPATH/bin/gocryptfs -q -extpass "echo test" -nosyslog -fusedebug="$DEBUG" "$DIR" "$MNT"
elif [[ $MYNAME = fsstress-encfs.bash ]]; then
2021-08-31 19:01:47 +02:00
encfs --extpass "echo test" --standard "$DIR" "$MNT"
else
2021-08-31 19:01:47 +02:00
echo "Unknown mode: $MYNAME"
exit 1
fi
sleep 0.5
echo -n "Waiting for mount: "
2021-08-31 19:01:47 +02:00
while ! grep "$(basename "$MNT") fuse" /proc/self/mounts > /dev/null
do
sleep 1
echo -n x
done
echo " ok: $MNT"
# Cleanup trap
trap "kill %1 ; cd / ; fuse-unmount -z $MNT ; rm -rf $DIR $MNT" EXIT
echo "Starting fsstress loop"
N=1
while true
do
echo "$N ................................. $(date)"
2021-08-31 19:01:47 +02:00
mkdir "$MNT/fsstress.1"
echo -n " fsstress.1 "
2021-08-31 19:01:47 +02:00
$FSSTRESS -r -m 8 -n 1000 -d "$MNT/fsstress.1" &
wait
2021-08-31 19:01:47 +02:00
mkdir "$MNT/fsstress.2"
echo -n " fsstress.2 "
2021-08-31 19:01:47 +02:00
$FSSTRESS -p 20 -r -m 8 -n 1000 -d "$MNT/fsstress.2" &
wait
2021-08-31 19:01:47 +02:00
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 \
2021-08-31 19:01:47 +02:00
-n 1000 -d "$MNT/fsstress.3" &
wait
echo " rm"
2021-08-31 19:01:47 +02:00
rm -Rf "$MNT"/*
2021-08-31 19:01:47 +02:00
N=$((N+1))
done