Re: [Xen-devel] Linux 5.0 regression: BUG: unable to handle kernel paging request at ffff888023e26778

From: Andrew Cooper
Date: Sat Feb 09 2019 - 14:44:34 EST


On 09/02/2019 18:54, Linus Torvalds wrote:
> On Sat, Feb 9, 2019 at 12:24 AM Sander Eikelenboom <linux@xxxxxxxxxxxxxx> wrote:
>> I haven't got a reproducer so i might be hard to hit it again,
>> system is AMD and this is from the host kernel running under
>> the Xen hypervisor might it matter.
> I think this is a Xen bug.
>
> In particular, there's a few poison values in there that look like
> zen. Like this:
>
> R10: deadbeefdeadf00d
>
> looks like a special poison value that is from Xen itself.

Xen's hypercall ABI states that parameters in registers may be changed
as part of the hypercall. This is used restart hypercalls midway
through their processing if we had to deliver an interrupt to the vcpu.

As a result, debug builds of Xen deliberately poison all hypercall
parameters, to help catch guest code which doesn't follow the rules.

~Andrew