linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@linux-foundation.org>
To: Kefeng Wang <wangkefeng.wang@huawei.com>
Cc: Naoya Horiguchi <naoya.horiguchi@nec.com>,
	Alexander Viro <viro@zeniv.linux.org.uk>,
	Christian Brauner <brauner@kernel.org>,
	<linux-fsdevel@vger.kernel.org>, <linux-mm@kvack.org>,
	Miaohe Lin <linmiaohe@huawei.com>, <linux-kernel@vger.kernel.org>,
	<tongtiangen@huawei.com>, Jens Axboe <axboe@kernel.dk>
Subject: Re: [PATCH] mm: hwpoison: coredump: support recovery from dump_user_range()
Date: Thu, 13 Apr 2023 15:04:09 -0700	[thread overview]
Message-ID: <20230413150409.f772cbafca5e7e3a658c58ee@linux-foundation.org> (raw)
In-Reply-To: <20230413041336.26874-1-wangkefeng.wang@huawei.com>

On Thu, 13 Apr 2023 12:13:36 +0800 Kefeng Wang <wangkefeng.wang@huawei.com> wrote:

> The dump_user_range() is used to copy the user page to a coredump
> file, but if a hardware memory error occurred during copy, which
> called from __kernel_write_iter() in dump_user_range(), it crashs,
> 
>  CPU: 112 PID: 7014 Comm: mca-recover Not tainted 6.3.0-rc2 #425
> 
>  pc : __memcpy+0x110/0x260
>  lr : _copy_from_iter+0x3bc/0x4c8
>  ...
>  Call trace:
>   __memcpy+0x110/0x260
>   copy_page_from_iter+0xcc/0x130
>   pipe_write+0x164/0x6d8
>   __kernel_write_iter+0x9c/0x210
>   dump_user_range+0xc8/0x1d8
>   elf_core_dump+0x308/0x368
>   do_coredump+0x2e8/0xa40
>   get_signal+0x59c/0x788
>   do_signal+0x118/0x1f8
>   do_notify_resume+0xf0/0x280
>   el0_da+0x130/0x138
>   el0t_64_sync_handler+0x68/0xc0
>   el0t_64_sync+0x188/0x190
> 
> Generally, the '->write_iter' of file ops will use copy_page_from_iter()
> and copy_page_from_iter_atomic(), change memcpy() to copy_mc_to_kernel()
> in both of them to handle #MC during source read, which stop coredump
> processing and kill the task instead of kernel panic, but the source
> address may not always an user address, so introduce a new copy_mc flag
> in struct iov_iter{} to indicate that the iter could do a safe memory
> copy, also introduce the helpers to set/clear/check the flag, for now,
> it's only used in coredump's dump_user_range(), but it could expand to
> any other scenarios to fix the similar issue.
> 
> ...
>
> --- a/lib/iov_iter.c
> +++ b/lib/iov_iter.c
> @@ -291,6 +291,7 @@ void iov_iter_init(struct iov_iter *i, unsigned int direction,
>  		.nofault = false,
>  		.user_backed = true,
>  		.data_source = direction,
> +		.copy_mc = false,
>  		.__iov = iov,
>  		.nr_segs = nr_segs,
>  		.iov_offset = 0,

hm, linux-next.  mm.git doesn't have the other iov_iter changes, so I
repositioned the iov_iter.copy_mc field so the patch should fuzzily
apply to kernels with or without de4f5fed3f231a8 ("iov_iter: add
iter_iovec() helper"),




      reply	other threads:[~2023-04-13 22:04 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-13  4:13 [PATCH] mm: hwpoison: coredump: support recovery from dump_user_range() Kefeng Wang
2023-04-13 22:04 ` Andrew Morton [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=20230413150409.f772cbafca5e7e3a658c58ee@linux-foundation.org \
    --to=akpm@linux-foundation.org \
    --cc=axboe@kernel.dk \
    --cc=brauner@kernel.org \
    --cc=linmiaohe@huawei.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=naoya.horiguchi@nec.com \
    --cc=tongtiangen@huawei.com \
    --cc=viro@zeniv.linux.org.uk \
    --cc=wangkefeng.wang@huawei.com \
    /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;
as well as URLs for NNTP newsgroup(s).