从用户空间获取文件校验和



我想获得与特定文件相关的BTRFS校验和,但不幸的是,我没有找到合适的ioctl来执行此操作。有可能做到吗?如果有,该怎么做?我需要存储校验和,以尝试在类似于rsync行为的情况下减少CPU负载。

刚才把这些乱七八糟的代码推到我的github repo中。https://github.com/Lakshmipathi/btrfs-progs/tree/dump_csum这不是官方代码。我测试了大小在100K到50GB之间的文件。他们看起来很相配。

用法:

./btrfs-debug-tree -f /path/to/file /btrfs/partition

将在目的地创建csumdump文件。

的例子:

sudo ./btrfs-debug-tree -f /btrfs/50gbfile1 /dev/sda4

将创建一个名为'/btrfs/50gbfile1 '的输出文件。Csumdump ' with csum of file block .

注意:我是为了教育/学习的目的而尝试这个,所以它附带了所有通常的免责声明。计划在本周某个时间清理此代码。

如果您打算使用,我建议您用以下情况进行测试:

1) Create 20GB (or any file with size > 1KB) on /tmp/ 
2) mount your btrfs partition on /btrfs and copy file /tmp/file /btrfs/f1
3) Now dump the csum it will produce /btrfs/f1.csumdump
4) cp /tmp/file /btrfs/f2 and dump f2's csum.
5) Now compare f1.csumdump with f2.csumdump If they match, it seems to be 
working. If they didn't match something went wrong. 

近5年后更新!

新位置:https://github.com/Lakshmipathi/dduper

相关内容

  • 没有找到相关文章

最新更新