qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] migration: Fix madvise breakage if host and guest have different page sizes
@ 2012-11-21  4:59 David Gibson
  2012-11-21  5:04 ` David Gibson
  2012-11-21  5:42 ` David Gibson
  0 siblings, 2 replies; 3+ messages in thread
From: David Gibson @ 2012-11-21  4:59 UTC (permalink / raw)
  To: qemu-devel, quintela; +Cc: David Gibson

madvise(DONTNEED) will throw away the contents of the whole page at the
given address, even if the given length is less than the page size.  One
can argue about whether that's the correct behaviour, but that's what it's
done for a long time in Linux at least.

That means that the madvise() in ram_load(), on a setup where
TARGET_PAGE_SIZE is smaller than the host page size, can throw away data
in guest pages adjacent to the one it's actually processing right now,
leading to guest memory corruption on an incoming migration.

This patch therefore, disables the madvise() if the host page size is
larger than TARGET_PAGE_SIZE.  This means we don't get the benefits of that
madvise() in this case, but a more complete fix is more difficult to
accomplish.  This at least fixes the guest memory corruption.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
---
 arch_init.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch_init.c b/arch_init.c
index b75a4c5..83dcc53 100644
--- a/arch_init.c
+++ b/arch_init.c
@@ -840,7 +840,8 @@ static int ram_load(QEMUFile *f, void *opaque, int version_id)
             memset(host, ch, TARGET_PAGE_SIZE);
 #ifndef _WIN32
             if (ch == 0 &&
-                (!kvm_enabled() || kvm_has_sync_mmu())) {
+                (!kvm_enabled() || kvm_has_sync_mmu()) &&
+                getpagesize() <= TARGET_PAGE_SIZE) {
                 qemu_madvise(host, TARGET_PAGE_SIZE, QEMU_MADV_DONTNEED);
             }
 #endif
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Qemu-devel] [PATCH] migration: Fix madvise breakage if host and guest have different page sizes
  2012-11-21  4:59 [Qemu-devel] [PATCH] migration: Fix madvise breakage if host and guest have different page sizes David Gibson
@ 2012-11-21  5:04 ` David Gibson
  2012-11-21  5:42 ` David Gibson
  1 sibling, 0 replies; 3+ messages in thread
From: David Gibson @ 2012-11-21  5:04 UTC (permalink / raw)
  To: qemu-devel, quintela

On Wed, Nov 21, 2012 at 03:59:25PM +1100, David Gibson wrote:
> madvise(DONTNEED) will throw away the contents of the whole page at the
> given address, even if the given length is less than the page size.  One
> can argue about whether that's the correct behaviour, but that's what it's
> done for a long time in Linux at least.
> 
> That means that the madvise() in ram_load(), on a setup where
> TARGET_PAGE_SIZE is smaller than the host page size, can throw away data
> in guest pages adjacent to the one it's actually processing right now,
> leading to guest memory corruption on an incoming migration.
> 
> This patch therefore, disables the madvise() if the host page size is
> larger than TARGET_PAGE_SIZE.  This means we don't get the benefits of that
> madvise() in this case, but a more complete fix is more difficult to
> accomplish.  This at least fixes the guest memory corruption.

So, discussing the more complete fix here.  The first idea which
occurred to me was to instead madvise(DONTNEED) the entire memory
block in the RAM_SAVE_FLAG_MEM_SIZE phase.  Then skip the memset() in
the RAM_SAVE_FLAG_COMPRESS path if ch == 0, so that we don't force
unneeded zero pages back into host memory.

But that would be a bug in the case where the page is initially
non-zero, we migrate its contents, but then the page is zeroed on the
outgoing guest before the live migration completes.  To handle that
we'd need some kind of dirty flag on the incoming side recording if a
page has already been loaded once or not.  I don't know if anything
suitable exists.

Any thoughts on how to implement a more thorough fix than the one in
my patch?

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Qemu-devel] [PATCH] migration: Fix madvise breakage if host and guest have different page sizes
  2012-11-21  4:59 [Qemu-devel] [PATCH] migration: Fix madvise breakage if host and guest have different page sizes David Gibson
  2012-11-21  5:04 ` David Gibson
@ 2012-11-21  5:42 ` David Gibson
  1 sibling, 0 replies; 3+ messages in thread
From: David Gibson @ 2012-11-21  5:42 UTC (permalink / raw)
  To: qemu-devel, quintela; +Cc: aik

On Wed, Nov 21, 2012 at 03:59:25PM +1100, David Gibson wrote:
> madvise(DONTNEED) will throw away the contents of the whole page at the
> given address, even if the given length is less than the page size.  One
> can argue about whether that's the correct behaviour, but that's what it's
> done for a long time in Linux at least.
> 
> That means that the madvise() in ram_load(), on a setup where
> TARGET_PAGE_SIZE is smaller than the host page size, can throw away data
> in guest pages adjacent to the one it's actually processing right now,
> leading to guest memory corruption on an incoming migration.
> 
> This patch therefore, disables the madvise() if the host page size is
> larger than TARGET_PAGE_SIZE.  This means we don't get the benefits of that
> madvise() in this case, but a more complete fix is more difficult to
> accomplish.  This at least fixes the guest memory corruption.
> 
> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

Sorry, forgot to add:

Reported-by: Alexey Kardashevskiy <aik@ozlabs.ru>

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-11-21  5:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-21  4:59 [Qemu-devel] [PATCH] migration: Fix madvise breakage if host and guest have different page sizes David Gibson
2012-11-21  5:04 ` David Gibson
2012-11-21  5:42 ` David Gibson

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).