Create a test to try to map logical blocks at the upper end of where we can map blocks. Then check the stat results, and run the whole thing by e2fsck. Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx> --- tests/metadata-checksum-test.sh | 46 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/tests/metadata-checksum-test.sh b/tests/metadata-checksum-test.sh index 1f0d5bc..4e353e1 100755 --- a/tests/metadata-checksum-test.sh +++ b/tests/metadata-checksum-test.sh @@ -3231,6 +3231,52 @@ umount "${MNT}" ${fsck_cmd} -f -n "${DEV}" } +########################## +function enormous_extent_file_test { +msg "enormous_extent_file_test" + +# Try to create a file that's too big (with extents) +$VALGRIND ${E2FSPROGS}/misc/mke2fs -T ext4icsum $MKFS_OPTS -O extent,^bigalloc,^64bit -F "${DEV}" +test -z "$NO_CSUM" && $VALGRIND ${E2FSPROGS}/misc/tune2fs -O metadata_csum $DEV +${E2FSPROGS}/misc/dumpe2fs -h $DEV 2> /dev/null | egrep -q "^Filesystem state:[ ]*clean$" || ${fsck_cmd} -fDy $DEV || true + +MAX_BLK=$(( (2**32) - 1 )) +FILE_SIZE="$(( MAX_BLK * BLK_SZ ))" +${mount_cmd} ${MOUNT_OPTS} "${DEV}" "${MNT}" -t ext4 -o journal_checksum +dd if=/dev/zero of="${MNT}/bigfile" bs="${BLK_SZ}" count=32 seek=4294967288 conv=notrunc || true +dd if=/dev/zero of="${MNT}/bigfile2" bs="${BLK_SZ}" count=32 seek=4294967288 || true +umount "${MNT}" +${fsck_cmd} -C0 -f -n "${DEV}" +${E2FSPROGS}/debugfs/debugfs -R 'stat /bigfile' "${DEV}" | cat - +${E2FSPROGS}/debugfs/debugfs -R 'stat /bigfile' "${DEV}" | grep -c "Size: ${FILE_SIZE}" +${E2FSPROGS}/debugfs/debugfs -R 'stat /bigfile2' "${DEV}" | grep -c "Size: ${FILE_SIZE}" +} + +########################## +function enormous_blockmap_file_test { +msg "enormous_blockmap_file_test" + +# Try to create a file that's too big (with block maps) +$VALGRIND ${E2FSPROGS}/misc/mke2fs -T ext4icsum $MKFS_OPTS -O ^extent,^bigalloc,^64bit -F "${DEV}" +test -z "$NO_CSUM" && $VALGRIND ${E2FSPROGS}/misc/tune2fs -O metadata_csum $DEV +${E2FSPROGS}/misc/dumpe2fs -h $DEV 2> /dev/null | egrep -q "^Filesystem state:[ ]*clean$" || ${fsck_cmd} -fDy $DEV || true + +ADDR_PER_BLOCK="$((BLK_SZ / 4))" +MAX_BLK="$(( (ADDR_PER_BLOCK ** 3) + (ADDR_PER_BLOCK ** 2) + (ADDR_PER_BLOCK) + 12))" +if [ "${MAX_BLK}" -gt "$(( (2**32) - 1 ))" ]; then + MAX_BLK="$(( (2**32) - 1 ))" +fi +FILE_SIZE="$(( MAX_BLK * BLK_SZ ))" +${mount_cmd} ${MOUNT_OPTS} "${DEV}" "${MNT}" -t ext4 -o journal_checksum +dd if=/dev/zero of="${MNT}/bigfile" bs="${BLK_SZ}" count=32 seek="$((MAX_BLK - 8))" conv=notrunc || true +dd if=/dev/zero of="${MNT}/bigfile2" bs="${BLK_SZ}" count=32 seek="$((MAX_BLK - 8))" || true +umount "${MNT}" +${E2FSPROGS}/debugfs/debugfs -R 'stat /bigfile' "${DEV}" | cat - +${fsck_cmd} -C0 -f -n "${DEV}" +${E2FSPROGS}/debugfs/debugfs -R 'stat /bigfile' "${DEV}" | grep -c "Size: ${FILE_SIZE}" +${E2FSPROGS}/debugfs/debugfs -R 'stat /bigfile2' "${DEV}" | grep -c "Size: ${FILE_SIZE}" +} + # This test should be the last one (before speed tests, anyway) #### ALL SPEED TESTS GO AT THE END -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html