public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Make pte writes in map_pages_to_xen() atomic
@ 2007-04-15 15:53 Avi Kivity
  0 siblings, 0 replies; only message in thread
From: Avi Kivity @ 2007-04-15 15:53 UTC (permalink / raw)
  To: xen-devel; +Cc: kvm-devel, Jeremy Fitzhardinge

[-- Attachment #1: Type: text/plain, Size: 729 bytes --]

With debug=y, Xen calls map_pages_to_xen() to remap its own page 
tables.  On pae builds, the pte writes are nonatomic.  This causes Xen 
to crash under kvm (and presumably under other shadow page table caching 
VMMs), because after the first half of the pte update, the code under 
eip is no longer accessible.  It's also possible under bare metal if an 
SMI arrives exactly at the wrong moment, and in addition that SMI 
flushes the tlb.

Fix by using atomic pte writes.  With this, xen pae debug=y boots under kvm.

Reported by Jeremy Fitzhardinge <jeremy-TSDbQ3PG+2Y@public.gmane.org>.

Signed-off-by: Avi Kivity <avi-atKUWr5tajBWk0Htik3J/w@public.gmane.org>

-- 
error compiling committee.c: too many arguments to function


[-- Attachment #2: make-map_pages_to_xen-atomic.patch --]
[-- Type: text/x-patch, Size: 961 bytes --]

diff -r 039daabebad5 xen/arch/x86/mm.c
--- a/xen/arch/x86/mm.c	Fri Apr 13 16:07:48 2007 +0100
+++ b/xen/arch/x86/mm.c	Sun Apr 15 18:36:59 2007 +0300
@@ -3454,14 +3454,14 @@ int map_pages_to_xen(
                     l1e_write(&pl1e[i],
                               l1e_from_pfn(l2e_get_pfn(*pl2e) + i,
                                            l2e_get_flags(*pl2e) & ~_PAGE_PSE));
-                l2e_write(pl2e, l2e_from_pfn(virt_to_mfn(pl1e),
+                l2e_write_atomic(pl2e, l2e_from_pfn(virt_to_mfn(pl1e),
                                              __PAGE_HYPERVISOR));
                 local_flush_tlb_pge();
             }
 
             pl1e  = l2e_to_l1e(*pl2e) + l1_table_offset(virt);
             ol1e  = *pl1e;
-            l1e_write(pl1e, l1e_from_pfn(mfn, flags));
+            l1e_write_atomic(pl1e, l1e_from_pfn(mfn, flags));
             if ( (l1e_get_flags(ol1e) & _PAGE_PRESENT) )
                 local_flush_tlb_one(virt);
 

[-- Attachment #3: Type: text/plain, Size: 286 bytes --]

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

[-- Attachment #4: Type: text/plain, Size: 186 bytes --]

_______________________________________________
kvm-devel mailing list
kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/kvm-devel

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-04-15 15:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-15 15:53 [PATCH] Make pte writes in map_pages_to_xen() atomic Avi Kivity

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox