From: Darrick J. Wong Date: Mon, 8 Sep 2014 23:12:21 +0000 (-0700) Subject: tune2fs: explicitly disallow tuning of journal devices X-Git-Tag: v1.43-WIP-2015-05-18~202 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=811bccef89a074e1c1582439a79b4b34e9d47e2c;p=tools%2Fe2fsprogs.git tune2fs: explicitly disallow tuning of journal devices Spit out a more specific error if someone tries to modify an external journal device. Signed-off-by: Darrick J. Wong Reported-by: TR Reardon Signed-off-by: Theodore Ts'o --- diff --git a/misc/tune2fs.c b/misc/tune2fs.c index ee47c04..c22c8fd 100644 --- a/misc/tune2fs.c +++ b/misc/tune2fs.c @@ -2539,7 +2539,7 @@ retry_open: if ((open_flag & EXT2_FLAG_RW) == 0 || f_flag) open_flag |= EXT2_FLAG_SKIP_MMP; - open_flag |= EXT2_FLAG_64BITS; + open_flag |= EXT2_FLAG_64BITS | EXT2_FLAG_JOURNAL_DEV_OK; /* keep the filesystem struct around to dump MMP data */ open_flag |= EXT2_FLAG_NOFREE_ON_ERROR; @@ -2569,6 +2569,12 @@ retry_open: ext2fs_free(fs); exit(1); } + if (EXT2_HAS_INCOMPAT_FEATURE(fs->super, + EXT3_FEATURE_INCOMPAT_JOURNAL_DEV)) { + fprintf(stderr, "%s", _("Cannot modify a journal device.\n")); + ext2fs_free(fs); + exit(1); + } fs->default_bitmap_type = EXT2FS_BMAP64_RBTREE; if (I_flag && !io_ptr_orig) { diff --git a/tests/t_ext_jnl_fail/expect b/tests/t_ext_jnl_fail/expect new file mode 100644 index 0000000..db0aecb --- /dev/null +++ b/tests/t_ext_jnl_fail/expect @@ -0,0 +1,6 @@ +Creating filesystem with 4096 1k blocks and 0 inodes +Superblock backups stored on blocks: + +Zeroing journal device:  +tune2fs external journal +Cannot modify a journal device. diff --git a/tests/t_ext_jnl_fail/name b/tests/t_ext_jnl_fail/name new file mode 100644 index 0000000..2fe7d04 --- /dev/null +++ b/tests/t_ext_jnl_fail/name @@ -0,0 +1 @@ +tune2fs fail external journal diff --git a/tests/t_ext_jnl_fail/script b/tests/t_ext_jnl_fail/script new file mode 100644 index 0000000..bb31cc7 --- /dev/null +++ b/tests/t_ext_jnl_fail/script @@ -0,0 +1,30 @@ +FSCK_OPT=-fy +OUT=$test_name.log +if [ -f $test_dir/expect.gz ]; then + EXP=$test_name.tmp + gunzip < $test_dir/expect.gz > $EXP1 +else + EXP=$test_dir/expect +fi + +cp /dev/null $OUT + +$MKE2FS -F -o Linux -b 1024 -O journal_dev,metadata_csum -T ext4 $TMPFILE 4096 2>&1 | sed -f $cmd_dir/filter.sed >> $OUT 2>&1 +echo "tune2fs external journal" >> $OUT +$TUNE2FS -i 0 $TMPFILE 2>&1 | sed -f $cmd_dir/filter.sed >> $OUT + +rm -f $TMPFILE + +cmp -s $OUT $EXP +status=$? + +if [ "$status" = 0 ] ; then + echo "$test_name: $test_description: ok" + touch $test_name.ok +else + echo "$test_name: $test_description: failed" + diff $DIFF_OPTS $EXP $OUT > $test_name.failed + rm -f $test_name.tmp +fi + +unset IMAGE FSCK_OPT OUT EXP