All of lore.kernel.org
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
Cc: "Claudio Fontana" <claudio.fontana@huawei.com>,
	"Cam Macdonell" <cam@cs.ualberta.ca>,
	"Marc-André Lureau" <mlureau@redhat.com>,
	qemu-devel@nongnu.org,
	"David Marchand" <david.marchand@6wind.com>
Subject: Re: [Qemu-devel] ivshmem migration restrictions and bugs
Date: Thu, 25 Feb 2016 14:37:55 +0100	[thread overview]
Message-ID: <871t80kj0s.fsf@blackfin.pond.sub.org> (raw)
In-Reply-To: <20160225130315.GD2163@work-vm> (David Alan Gilbert's message of "Thu, 25 Feb 2016 13:03:16 +0000")

"Dr. David Alan Gilbert" <dgilbert@redhat.com> writes:

> * Markus Armbruster (armbru@redhat.com) wrote:
>> TL;DR: I recommend to stay away from migration when using chardev=...
>> 
>> ivshmem migration is messed up in several entertaining ways.
>> 
>> = General lossage =
>> 
>> G1. Migrating more than one peer doesn't work, but that's a (badly)
>>     documented restriction, not a bug (see documentation of property
>>     "role" in qemu-doc.texi).  If you migrate more than one, the shared
>>     memory can get messed up.
>> 
>> G2. If peers connect on the destination before migration is complete,
>>     the shared memory can get messed up.  This isn't even badly
>>     documented.
>> 
>> Management applications can deal with this in principle.
>> 
>> = Lossage with MSI-X (msi=on) =
>> 
>> M1. s->intrstatus and s->intrmask (registers INTRSTATUS and INTRMASK)
>>     are not migrated, even though they have guest-visible contents.
>>     They reset to zero instead.  Wrong, but unlikely to cause trouble,
>>     because the registers are inert in this configuration.
>> 
>> There's nothing management applications can do about this.
>> 
>> = Lossage with interrupts (chardev=...) =
>> 
>> I1. s->vm_id (register IVPOSITION) is not migrated.  It briefly changes
>>     to -1, then to whatever ID the server on the destination assigns.
>>     To get the same ID back, you must carefully control the order in
>>     which devices connect to the server on the destination: if this
>>     device was the n-th to connect on the source, it must also be the
>>     n-th on the destination.
>> 
>>     We can hope that the guest reads IVPOSITION rarely or not at all
>>     after device driver initialization, so the temporary change to -1
>>     will be overlooked most of the time.
>> 
>> I2. If the shared memory's ramblock arrives at the destination before
>>     shared memory setup completes, migration fails.  Shared memory setup
>>     completes shortly after the shared memory is received from the
>>     server.
>> 
>> I3. If migration completes before the shared memory setup completes on
>>     the source, shared memory contents is lost (zeroed?).

Lost, not zeroed.  You get whatever the server on the destination put
into shared memory.

>>                                                            I don't yet
>>     know what happens when shared memory setup completes during
>>     migration.

My best guess: it works.

>> G2 + I1 implies that you can only migrate the peer with ID zero.
>> Management applications need make sure the device with role=master
>> connects first both on source and destination, which seems feasible.
>> 
>> There's nothing management applications can do about the temporary
>> IVPOSITION change (I1).
>> 
>> There is no known way for a management application to wait for shared
>> memory setup to complete.
>> 
>> Migration failure due to I2 is recoverable: restart the server on the
>> destination, and retry the migration with a bit more time between
>> running the destination QEMU and the migrate command.  The server
>> restart is necessary to preserve ID zero.
>> 
>> I'm not aware of a way to guard against or mitigate I3.  Fortunately,
>> shared memory setup should almost always win the race.
>> 
>> = What can we do about it? =
>> 
>> G1 and G2 are a matter of improving documentation.
>> 
>> M1 is easy enough to fix, if we care.
>> 
>> That leaves I1, I2 and I3.  Common root cause: we don't finish setup in
>> realize(), we merely arrange for messages from the server to be received
>> and processed.  This exposes both guest and migration to an incompletely
>> set up device.
>> 
>> Completing setup right in realize() would be simpler and race-free.
>> However, it could also make realize() hang waiting for a hung server.
>> Probably okay for -device, but what about hot plug?
>> 
>> If it's not okay, we could split ivshmem into a frontend and a backend.
>> Hot plug could create the backend asynchronously, wait for it to
>> complete, then create the frontend / device model.  Command line would
>> have to create the backend synchronously, of course.
>
> How can you tell when 'shared memory setup' is complete?

The device model knows, but it's not telling anybody.

> You could delay starting incoming migration on the destination or starting
> a migration on the source until that setup is complete.

That would require new hooks, I guess.

Completing setup in realize() achieves the same effect without such
hackery.
>
> Dave
>
>> 
>> Other ideas?
>> 
> --
> Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK

      reply	other threads:[~2016-02-25 13:38 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-24 20:29 [Qemu-devel] ivshmem migration restrictions and bugs Markus Armbruster
2016-02-25 13:03 ` Dr. David Alan Gilbert
2016-02-25 13:37   ` Markus Armbruster [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=871t80kj0s.fsf@blackfin.pond.sub.org \
    --to=armbru@redhat.com \
    --cc=cam@cs.ualberta.ca \
    --cc=claudio.fontana@huawei.com \
    --cc=david.marchand@6wind.com \
    --cc=dgilbert@redhat.com \
    --cc=mlureau@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.