diff mbox series

tune2fs:check return value of ext2fs_mmp_update2 in rewrite_metadata_checksums

Message ID fbe3716b-e8bb-58c0-6c55-a88b6979063c@huawei.com
State Accepted
Headers show
Series tune2fs:check return value of ext2fs_mmp_update2 in rewrite_metadata_checksums | expand

Commit Message

lihaoxiang (F) Nov. 29, 2022, 6:58 a.m. UTC
Tune2fs hasn't consider about the result of executing ext2fs_mmp_update2
when it try to rewrite_metadata_checksums. If the ext2fs_mmp_update2
failed, multi-mount protection couldn't guard there has the only node
(i.e. this program) accessing this device in the meantime.

We solve this problem to verify the return value of ext2fs_mmp_update2.
It terminate rewrite_metadata_checksums and exit immediately if the
wrong error code returned.

Signed-off-by: lihaoxiang <lihaoxiang9@huawei.com>
---
 misc/tune2fs.c | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

Comments

lihaoxiang (F) Dec. 9, 2022, 3:36 a.m. UTC | #1
friendly ping...

On 2022/11/29 14:58, lihaoxiang (F) wrote:
> Tune2fs hasn't consider about the result of executing ext2fs_mmp_update2
> when it try to rewrite_metadata_checksums. If the ext2fs_mmp_update2
> failed, multi-mount protection couldn't guard there has the only node
> (i.e. this program) accessing this device in the meantime.
> 
> We solve this problem to verify the return value of ext2fs_mmp_update2.
> It terminate rewrite_metadata_checksums and exit immediately if the
> wrong error code returned.
> 
> Signed-off-by: lihaoxiang <lihaoxiang9@huawei.com>
> ---
>  misc/tune2fs.c | 17 +++++++++++++----
>  1 file changed, 13 insertions(+), 4 deletions(-)
> 
> diff --git a/misc/tune2fs.c b/misc/tune2fs.c
> index bed3d95..aa51864 100644
> --- a/misc/tune2fs.c
> +++ b/misc/tune2fs.c
> @@ -930,7 +930,7 @@ static void rewrite_inodes(ext2_filsys fs, unsigned int flags)
>  	ext2fs_free_mem(&ctx.ea_buf);
>  }
> 
> -static void rewrite_metadata_checksums(ext2_filsys fs, unsigned int flags)
> +static errcode_t rewrite_metadata_checksums(ext2_filsys fs, unsigned int flags)
>  {
>  	errcode_t retval;
>  	dgrp_t i;
> @@ -945,7 +945,9 @@ static void rewrite_metadata_checksums(ext2_filsys fs, unsigned int flags)
>  	rewrite_inodes(fs, flags);
>  	ext2fs_mark_ib_dirty(fs);
>  	ext2fs_mark_bb_dirty(fs);
> -	ext2fs_mmp_update2(fs, 1);
> +	retval = ext2fs_mmp_update2(fs, 1);
> +	if (retval)
> +		return retval;
>  	fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
>  	fs->flags &= ~EXT2_FLAG_IGNORE_CSUM_ERRORS;
>  	if (ext2fs_has_feature_metadata_csum(fs->super))
> @@ -953,6 +955,7 @@ static void rewrite_metadata_checksums(ext2_filsys fs, unsigned int flags)
>  	else
>  		fs->super->s_checksum_type = 0;
>  	ext2fs_mark_super_dirty(fs);
> +	return 0;
>  }
> 
>  static void enable_uninit_bg(ext2_filsys fs)
> @@ -3410,8 +3413,14 @@ _("Warning: The journal is dirty. You may wish to replay the journal like:\n\n"
>  		}
>  	}
> 
> -	if (rewrite_checksums)
> -		rewrite_metadata_checksums(fs, rewrite_checksums);
> +	if (rewrite_checksums) {
> +		retval = rewrite_metadata_checksums(fs, rewrite_checksums);
> +		if (retval != 0) {
> +			printf("Failed to rewrite metadata checksums\n");
> +			rc = 1;
> +			goto closefs;
> +		}
> +	}
> 
>  	if (l_flag)
>  		list_super(sb);
lihaoxiang (F) Jan. 10, 2023, 9:02 a.m. UTC | #2
friendly ping...

On 2022/12/9 11:36, lihaoxiang (F) wrote:
> friendly ping...
> 
> On 2022/11/29 14:58, lihaoxiang (F) wrote:
>> Tune2fs hasn't consider about the result of executing ext2fs_mmp_update2
>> when it try to rewrite_metadata_checksums. If the ext2fs_mmp_update2
>> failed, multi-mount protection couldn't guard there has the only node
>> (i.e. this program) accessing this device in the meantime.
>>
>> We solve this problem to verify the return value of ext2fs_mmp_update2.
>> It terminate rewrite_metadata_checksums and exit immediately if the
>> wrong error code returned.
>>
>> Signed-off-by: lihaoxiang <lihaoxiang9@huawei.com>
>> ---
>>  misc/tune2fs.c | 17 +++++++++++++----
>>  1 file changed, 13 insertions(+), 4 deletions(-)
>>
>> diff --git a/misc/tune2fs.c b/misc/tune2fs.c
>> index bed3d95..aa51864 100644
>> --- a/misc/tune2fs.c
>> +++ b/misc/tune2fs.c
>> @@ -930,7 +930,7 @@ static void rewrite_inodes(ext2_filsys fs, unsigned int flags)
>>  	ext2fs_free_mem(&ctx.ea_buf);
>>  }
>>
>> -static void rewrite_metadata_checksums(ext2_filsys fs, unsigned int flags)
>> +static errcode_t rewrite_metadata_checksums(ext2_filsys fs, unsigned int flags)
>>  {
>>  	errcode_t retval;
>>  	dgrp_t i;
>> @@ -945,7 +945,9 @@ static void rewrite_metadata_checksums(ext2_filsys fs, unsigned int flags)
>>  	rewrite_inodes(fs, flags);
>>  	ext2fs_mark_ib_dirty(fs);
>>  	ext2fs_mark_bb_dirty(fs);
>> -	ext2fs_mmp_update2(fs, 1);
>> +	retval = ext2fs_mmp_update2(fs, 1);
>> +	if (retval)
>> +		return retval;
>>  	fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
>>  	fs->flags &= ~EXT2_FLAG_IGNORE_CSUM_ERRORS;
>>  	if (ext2fs_has_feature_metadata_csum(fs->super))
>> @@ -953,6 +955,7 @@ static void rewrite_metadata_checksums(ext2_filsys fs, unsigned int flags)
>>  	else
>>  		fs->super->s_checksum_type = 0;
>>  	ext2fs_mark_super_dirty(fs);
>> +	return 0;
>>  }
>>
>>  static void enable_uninit_bg(ext2_filsys fs)
>> @@ -3410,8 +3413,14 @@ _("Warning: The journal is dirty. You may wish to replay the journal like:\n\n"
>>  		}
>>  	}
>>
>> -	if (rewrite_checksums)
>> -		rewrite_metadata_checksums(fs, rewrite_checksums);
>> +	if (rewrite_checksums) {
>> +		retval = rewrite_metadata_checksums(fs, rewrite_checksums);
>> +		if (retval != 0) {
>> +			printf("Failed to rewrite metadata checksums\n");
>> +			rc = 1;
>> +			goto closefs;
>> +		}
>> +	}
>>
>>  	if (l_flag)
>>  		list_super(sb);
Theodore Ts'o Jan. 26, 2023, 3:50 a.m. UTC | #3
On Tue, 29 Nov 2022 14:58:12 +0800, lihaoxiang (F) wrote:
> Tune2fs hasn't consider about the result of executing ext2fs_mmp_update2
> when it try to rewrite_metadata_checksums. If the ext2fs_mmp_update2
> failed, multi-mount protection couldn't guard there has the only node
> (i.e. this program) accessing this device in the meantime.
> 
> We solve this problem to verify the return value of ext2fs_mmp_update2.
> It terminate rewrite_metadata_checksums and exit immediately if the
> wrong error code returned.
> 
> [...]

Applied, thanks!

[1/1] tune2fs:check return value of ext2fs_mmp_update2 in rewrite_metadata_checksums
      (no commit info)

Best regards,
diff mbox series

Patch

diff --git a/misc/tune2fs.c b/misc/tune2fs.c
index bed3d95..aa51864 100644
--- a/misc/tune2fs.c
+++ b/misc/tune2fs.c
@@ -930,7 +930,7 @@  static void rewrite_inodes(ext2_filsys fs, unsigned int flags)
 	ext2fs_free_mem(&ctx.ea_buf);
 }

-static void rewrite_metadata_checksums(ext2_filsys fs, unsigned int flags)
+static errcode_t rewrite_metadata_checksums(ext2_filsys fs, unsigned int flags)
 {
 	errcode_t retval;
 	dgrp_t i;
@@ -945,7 +945,9 @@  static void rewrite_metadata_checksums(ext2_filsys fs, unsigned int flags)
 	rewrite_inodes(fs, flags);
 	ext2fs_mark_ib_dirty(fs);
 	ext2fs_mark_bb_dirty(fs);
-	ext2fs_mmp_update2(fs, 1);
+	retval = ext2fs_mmp_update2(fs, 1);
+	if (retval)
+		return retval;
 	fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
 	fs->flags &= ~EXT2_FLAG_IGNORE_CSUM_ERRORS;
 	if (ext2fs_has_feature_metadata_csum(fs->super))
@@ -953,6 +955,7 @@  static void rewrite_metadata_checksums(ext2_filsys fs, unsigned int flags)
 	else
 		fs->super->s_checksum_type = 0;
 	ext2fs_mark_super_dirty(fs);
+	return 0;
 }

 static void enable_uninit_bg(ext2_filsys fs)
@@ -3410,8 +3413,14 @@  _("Warning: The journal is dirty. You may wish to replay the journal like:\n\n"
 		}
 	}

-	if (rewrite_checksums)
-		rewrite_metadata_checksums(fs, rewrite_checksums);
+	if (rewrite_checksums) {
+		retval = rewrite_metadata_checksums(fs, rewrite_checksums);
+		if (retval != 0) {
+			printf("Failed to rewrite metadata checksums\n");
+			rc = 1;
+			goto closefs;
+		}
+	}

 	if (l_flag)
 		list_super(sb);