Re: [PATCH v4 2/2] mm,hwpoison: send SIGBUS when the page has already been poisoned

From: HORIGUCHI NAOYA(堀口 直也)
Date: Mon May 10 2021 - 03:21:48 EST


On Fri, May 07, 2021 at 05:38:52PM +0800, Aili Yao wrote:
> On Tue, 27 Apr 2021 15:29:53 +0900
> Naoya Horiguchi <nao.horiguchi@xxxxxxxxx> wrote:
>
> > From: Naoya Horiguchi <naoya.horiguchi@xxxxxxx>
> >
> > When memory_failure() is called with MF_ACTION_REQUIRED on the
> > page that has already been hwpoisoned, memory_failure() could fail
> > to send SIGBUS to the affected process, which results in infinite
> > loop of MCEs.
> >
> > Currently memory_failure() returns 0 if it's called for already
> > hwpoisoned page, then the caller, kill_me_maybe(), could return
> > without sending SIGBUS to current process. An action required MCE
> > is raised when the current process accesses to the broken memory,
> > so no SIGBUS means that the current process continues to run and
> > access to the error page again soon, so running into MCE loop.
> >
> > This issue can arise for example in the following scenarios:
> >
> > - Two or more threads access to the poisoned page concurrently.
> > If local MCE is enabled, MCE handler independently handles the
> > MCE events. So there's a race among MCE events, and the
> > second or latter threads fall into the situation in question.
> >
> > - If there was a precedent memory error event and memory_failure()
> > for the event failed to unmap the error page for some reason,
> > the subsequent memory access to the error page triggers the
> > MCE loop situation.
> >
> > To fix the issue, make memory_failure() return some error code when the
> > error page has already been hwpoisoned. This allows memory error
> > handler to control how it sends signals to userspace. And make sure
> > that any process touching a hwpoisoned page should get a SIGBUS (if
> > possible) with the error virtual address, even in "already hwpoisoned"
> > path of memory_failure() as is done in page fault path.
> >
> > kill_accessing_process() does pagetable walk to find the error virtual
> > address. If multiple virtual addresses are found in the pagetable walk,
> > no one knows which address is the correct one, so we fall back to sending
> > SIGBUS in kill_me_maybe() without error address info as we do now.
> > This corner case is left to be solved in the future.
> >
> > Signed-off-by: Naoya Horiguchi <naoya.horiguchi@xxxxxxx>
>
> Sorry for my late response, I just get time to rethink the pagewalk patch. Please let me share my thoughts,
> If anything wrong, just point out, thanks!

Thank you for the feedback.

>
> This whole pagewalk patch is meant to fix invalid virtual address along SIGBUS, For this invalid virtual address issue,
> It seems this is one existing issue before this race issue is posted. while the issue is not fixed for a long time.
>
> Then I think why this issue is not fixed, maybe just no process will care this virtual address as it will be killed.
> Maybe virtual guest will need this address to forward it to vCPU, but untill now the memory recovery function in the VM doesn't
> work at all, and without this address, It seems not a big impact though.
>
> Maybe there are some other cases will care the virtual address, if anyone knows, just point out.
>
> But invalid virtual address is still no good.
>
> Before this, I post one RFC patch try to fix this issue with one knowing issue:it failed for mutiple pte entry;
> Then this patch is posted trying to address this.
>
> First I read this patch, I think this method is good and right and i test it. But now I think it again, I am wondering even the process
> have multi pte entry and wrong virtuall address, but it still pointing to the same page, right?

Yes, it is.

> If the process won't exit and get the wrong virtual address, what wrong action will it do?

I have no clear idea. Typical action for the SIGBUS is to kill the process with
some logging, so the obviously wrong action like killing wrong process never happens.
A possible wrong result is invalid address in log, which might not be critical.

> while I can just think the virtual machine example, but the qemu will translate the wrong virtual address to right guest physical address?
> I am not sure VM will have multi pte entry?

As long as I know, qemu maintains one-to-one mapping between host virtual address
and guest physical address, so no multi entry issue should happen around qemu.

>
> And I think the virtual address along SIGBUS is not mean to backtrace the code, it just want to tell where the error memory is, for multi pte
> entry, one virtual address for the same physical page is not enough?
>
> Compare this patch with my RFC patch, difference:
> 1.This patch will just fix the race issue's invalid virtual address. while my RFC patch will cover all the error case for recovery;
> 2.For multi entry, this patch will do one force_sig with no other infomation, But the RFC patch will take one possible right address, I don't know which one is better.
>
> And if this multi pte entry is one real issue, it seems the normal recovey work will aslo trigger this, would it be better to fix that first?

Assuming that your RFC is https://lore.kernel.org/lkml/20210317162304.58ff188c@alex-virtual-machine/,
it simply uses the first-found virtual address. I start thinking that this
approach could be fine. And it's easy to change the patch with this approach.
I have no preference, so if you like, I switch to the "first-found" approach.

Thanks,
Naoya Horiguchi