我一直在寻找可以提供 ext3 inode 结构内数据块的 md5sum(或任何唯一校验和)的实用程序/工具。
要求是在特定操作之后验证某些数据块是否归零。
我是文件系统的新手,不知道是否有任何现有工具可以完成这项工作,或者我需要自己编写这个测试实用程序。
谢谢...
一位同事提供了一个非常优雅的解决方案。这是脚本。它需要文件名作为参数,并假设文件系统块大小为 4K
如果您知道与文件关联的数据块 (stat),则可以使用“dd”命令的“跳过”选项并构建小文件,每个文件的长度为 1 个块大小。此外,您可以获得这些块的 md5sum。所以,这样你就可以直接从块设备获取 md5sum 了。不是你每天都想做的事情,而是一个很好的分析技巧。
==================================================== =================================
#!/bin/bash
absname=$1
testdir="/root/test/"
mdfile="md5"
statfile="stat"
blksize=4096
fname=$(basename $absname)
fsize=$( ls -al $absname | cut -d " " -f 5 )
numblk=$(( fsize/blksize ))
x=1
#Create the test directory, if it does not exist already
if [[ ! -d $testdir ]];
then
`mkdir -p $testdir`
fi
#Create multiple files from the test file, each 1 block sized
while [[ $x -le $numblk ]]
do
(( s=x-1 ))
`dd if=$absname of=$testdir$fname$x bs=4096 count=1 skip=$s`
`md5sum $testdir$fname$x >> $testdir$mdfile`
(( x=x+1 ))
done