Also update patch-XSA240 from upstream, fixing issues in linear page table handling introduced by the original XSA240 patch. Bump PKGREVISION
23 lines
729 B
Text
23 lines
729 B
Text
$NetBSD: patch-XSA251,v 1.1 2017/12/15 14:00:44 bouyer Exp $
|
|
|
|
From: Jan Beulich <jbeulich@suse.com>
|
|
Subject: x86/paging: don't unconditionally BUG() on finding SHARED_M2P_ENTRY
|
|
|
|
PV guests can fully control the values written into the P2M.
|
|
|
|
This is XSA-251.
|
|
|
|
Signed-off-by: Jan Beulich <jbeulich@suse.com>
|
|
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
|
|
|
|
--- xen/arch/x86/mm/paging.c.orig
|
|
+++ xen/arch/x86/mm/paging.c
|
|
@@ -276,7 +276,7 @@ void paging_mark_pfn_dirty(struct domain
|
|
return;
|
|
|
|
/* Shared MFNs should NEVER be marked dirty */
|
|
- BUG_ON(SHARED_M2P(pfn));
|
|
+ BUG_ON(paging_mode_translate(d) && SHARED_M2P(pfn));
|
|
|
|
/*
|
|
* Values with the MSB set denote MFNs that aren't really part of the
|