mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Gao Xiang <hsiangkao@linux.alibaba.com>
To: linux-erofs@lists.ozlabs.org, Chao Yu <chao@kernel.org>
Cc: LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] erofs: ensure m_llen is reset to 0 if metadata is invalid
Date: Sun, 30 Jun 2024 10:51:19 +0800	[thread overview]
Message-ID: <7adcf002-864e-489a-ac70-99c9850ea4f1@linux.alibaba.com> (raw)
In-Reply-To: <20240629185743.2819229-1-hsiangkao@linux.alibaba.com>



On 2024/6/30 02:57, Gao Xiang wrote:
> Sometimes, the on-disk metadata might be invalid due to storage
> failure or other unknown issues.
user interrupts, storage failures, or other unknown causes.

> 
> In that case, z_erofs_map_blocks_iter() may still return a valid
> m_llen while other fields remain invalid (e.g., m_plen can be 0).
> 
> Due to the return value of z_erofs_scan_folio() in some path will
> be ignored on purpose, the following z_erofs_scan_folio() could
> then use the invalid value by accident.
> 
> Let's reset m_llen to 0 to prevent this.
> 
> Signed-off-by: Gao Xiang <hsiangkao@linux.alibaba.com>
> ---
>   fs/erofs/zmap.c | 2 ++
>   1 file changed, 2 insertions(+)
> 
> diff --git a/fs/erofs/zmap.c b/fs/erofs/zmap.c
> index 9b248ee5fef2..74d3d7bffcf3 100644
> --- a/fs/erofs/zmap.c
> +++ b/fs/erofs/zmap.c
> @@ -711,6 +711,8 @@ int z_erofs_map_blocks_iter(struct inode *inode, struct erofs_map_blocks *map,
>   
>   	err = z_erofs_do_map_blocks(inode, map, flags);
>   out:
> +	if (err)
> +		map->m_llen = 0;
>   	trace_z_erofs_map_blocks_iter_exit(inode, map, flags, err);
>   	return err;
>   }

      reply	other threads:[~2024-06-30  2:51 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-29 18:57 Gao Xiang
2024-06-30  2:51 ` Gao Xiang [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=7adcf002-864e-489a-ac70-99c9850ea4f1@linux.alibaba.com \
    --to=hsiangkao@linux.alibaba.com \
    --cc=chao@kernel.org \
    --cc=linux-erofs@lists.ozlabs.org \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®