A FUSE-based fault injection filesystem.
See the codeis a FUSE-based fault injection filesystem that allows to change fault-injections in runtime using simple configuration file.
Supported fault injections are:
errinj_errno - return error value and set random errno.errinj_kill_caller - send SIGKILL to a process that invoked file operation.errinj_noop - replace file operation with no operation
(similar to libeatmydata,
but applicable to any file operation).errinj_slowdown - slowdown invoked file operation.Prerequisites:
dnf install -y gcc -y cmake fuse fuse-develapt-get install -y gcc cmake fuse libfuse-devpkg install gcc cmake fusefs-libs pkgconfpkg_add cmakebrew install --cask osxfuse$ cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug
$ cmake --build build --parallel
$ mkdir /tmp/fs
$ unreliablefs /tmp/fs -basedir=/tmp -seed=1618680646
$ cat << EOF > /tmp/fs/unreliablefs.conf
[errinj_noop]
op_regexp = .*
path_regexp = .*
probability = 30
EOF
$ ls -la
$ umount /tmp/fs
See documentation in unreliablefs.1 and unreliablefs.conf.5.
MIT License, Copyright (c) 2020-2023, Sergey Bronnikov BSD-3-Clause, Copyright (C) 2009-2020, Ben Hoyt
C
70.2%
Python
18.1%
CMake
6.7%
Roff
4.4%
A FUSE-based fault injection filesystem.
See the codeis a FUSE-based fault injection filesystem that allows to change fault-injections in runtime using simple configuration file.
Supported fault injections are:
errinj_errno - return error value and set random errno.errinj_kill_caller - send SIGKILL to a process that invoked file operation.errinj_noop - replace file operation with no operation
(similar to libeatmydata,
but applicable to any file operation).errinj_slowdown - slowdown invoked file operation.Prerequisites:
dnf install -y gcc -y cmake fuse fuse-develapt-get install -y gcc cmake fuse libfuse-devpkg install gcc cmake fusefs-libs pkgconfpkg_add cmakebrew install --cask osxfuse$ cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug
$ cmake --build build --parallel
$ mkdir /tmp/fs
$ unreliablefs /tmp/fs -basedir=/tmp -seed=1618680646
$ cat << EOF > /tmp/fs/unreliablefs.conf
[errinj_noop]
op_regexp = .*
path_regexp = .*
probability = 30
EOF
$ ls -la
$ umount /tmp/fs
See documentation in unreliablefs.1 and unreliablefs.conf.5.
MIT License, Copyright (c) 2020-2023, Sergey Bronnikov BSD-3-Clause, Copyright (C) 2009-2020, Ben Hoyt
C
70.2%
Python
18.1%
CMake
6.7%
Roff
4.4%