summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2023-04-21 01:43:13 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2023-04-21 14:52:43 +0200
commitc331a3b1da280f78aefcfc8dad82eb042022bc84 (patch)
tree01671cac70726b658119bc6954eb5fae78f8626f /test
parent11562bcc6b9dc09eb0c5bccb69a7741dec9e626b (diff)
downloadlvm2-c331a3b1da280f78aefcfc8dad82eb042022bc84.tar.gz
aux: add corrupt_dev
Add function to corrupt some bytes in give file path presenting a device. 1st. patern in just once replaced with 2nd. pattern. Usable to simulate some bit corruption for integrity devices.
Diffstat (limited to 'test')
-rw-r--r--test/lib/aux.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/lib/aux.sh b/test/lib/aux.sh
index 3ab599f60..33710a007 100644
--- a/test/lib/aux.sh
+++ b/test/lib/aux.sh
@@ -952,6 +952,25 @@ clear_devs() {
done
}
+#
+# corrupt device content
+# $1 file_path
+# $2 string/pattern search for curruption
+# $3 string/pattern replacing/corruptiong
+corrupt_dev() {
+ local a
+
+ # search for string on a file
+ # Note: returned string may possibly start with other ASCII chars
+ # a[0] is position in file, a[1] is the actual string
+ a=( $(strings -t d -n 64 "$1" | grep -m 1 "$2") ) || true
+
+ test -n "${a[0]-}" || return 0
+
+ # Seek for the sequence and replace it with corruption pattern
+ echo -n "${a[1]/$2/$3}" | dd of="$1" bs=1 oseek="${a[0]}" conv=fdatasync
+}
+
prepare_backing_dev() {
local size=${1=32}
shift