[pve-devel] [PATCH v3 qemu-server] Fix ACPI-suspended VMs resuming after migration

Fiona Ebner f.ebner at proxmox.com
Tue Oct 10 16:19:55 CEST 2023


Am 10.10.23 um 13:45 schrieb Thomas Lamprecht:
> Am 09/10/2023 um 15:25 schrieb Filip Schauer:
>> Add checks for "suspended" and "prelaunch" runstates when checking
>> whether a VM is paused.
>>
>> This fixes the following issues:
>> * ACPI-suspended VMs automatically resuming after migration
>> * Shutdown and reboot commands timing out instead of failing
>>   immediately on suspended VMs
>>
> 
> I checked the call-sites and what I'm wondering is, can the VM from those
> new states get waked up without QMP intervention, say a ACPI-suspension
> be triggered by some (virtual) RTC or via network (like wake-on-lan),
> as then, we should add a big notice comment on this method to ensure
> new users of it are informed about that possibility.

Sorry! I did not consider this. Yes, it can get woken up without QMP.
Even just with keyboard presses in case of my Debian test VM. So our
config locks are useless here :/

It'll also be an issue for migration:
1. migration is started and remembers that "vm_was_paused"
2. migration continues
3. during migration VM wakes up
4. migration finishes, but doesn't resume guest on the target, because
"vm_was_paused"

We could either:

1. tolerate the old behavior (VM might get resumed on target if it was
suspended) - if we declare migration an ACPI-wake-up event ;)
2. tolerate the new behavior (VM might wake up and not be resumed on
target later) - seems worse then old behavior when it happens
3. disallow migration when in 'suspended' runstate
4. add new check just before moving guest to target - but not sure how
we'd do that without races again...

> Also, with that change we might have added a race for suspend-mode backups,
> at least if VMs really can wake up without a QMP command (which I find likely).
> I.e., between the time we checked and set vm_was_paused until we actually
> suspend, because if the VM would wake up in between we might get inconsistent
> stuff and skip things like fs-freeze.

That race is already there without the patch. QEMU does not transition
from 'suspended' state to 'paused' state when QMP 'stop' is issued, i.e.
what our 'qm suspend' or vm_suspend() actually does. So it doesn't
matter if we call that during backup or not when the VM is already in
'suspended' state.

The window for the race is a bit larger though:
now: VM wakes up between check if paused and 'backup' QMP
before: VM wakes up after fsfreeze was skipped because guest agent was
detected as not running

We could either:

1. (ironically) disallow 'suspend' mode backup when in 'suspended' runstate.
2. resume and pause the VM upon 'suspend' mode backup, but is also
surprising
3. make the race window smaller again by doing the qga_check_running()
and fs-freeze if true, if VM was in 'suspended' runstate.

I don't see how to avoid the possibility of a wake-up during an
inconvenient time except with one of the first two options.

> While we recommend stop and snapshot modes over suspend mode, the latter is
> still exposed via UI and API and should work OK enough.
> 
> Note that ACPI S3 suspend and our vm_suspend are very different things, our
> vm_suspend is doing a "stop" monitor command, resulting in all vCPUs being
> stopped, while S3 is a (virtual) firmware/machine feature – I mean, I guess
> there's a reason that those things are reported as different states..
> It doesn't help that our vm_suspend method doesn't actually do a (ACPI S3
> like) suspension, but a (vCPU) "stop".
> 
> The "prelaunch" state, OTOH., seems pretty much like "paused", with the
> difference that the VM vCPUs never ran in the former, this seems fine to
> handle the same. But for "suspended" I'm not sure if we'd like to detect
> that as paused only if conflating both is OK for a call-site, so maybe
> with an opt-in parameter. Alternatively we could return the status in
> the "true" case so that call-sites can decide what to do for any such
> special handling without an extra parameter.

Yes, I like the opt-in approach.





More information about the pve-devel mailing list