mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
Add dbus-vmstate object
When instantiated, this object will connect to the given D-Bus bus "addr". During migration, it will take/restore the data from org.qemu.VMState1 instances. See documentation for details. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
@@ -2209,9 +2209,11 @@ F: qapi/migration.json
|
|||||||
D-Bus
|
D-Bus
|
||||||
M: Marc-André Lureau <marcandre.lureau@redhat.com>
|
M: Marc-André Lureau <marcandre.lureau@redhat.com>
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
F: backends/dbus-vmstate.c
|
||||||
F: util/dbus.c
|
F: util/dbus.c
|
||||||
F: include/qemu/dbus.h
|
F: include/qemu/dbus.h
|
||||||
F: docs/interop/dbus.rst
|
F: docs/interop/dbus.rst
|
||||||
|
F: docs/interop/dbus-vmstate.rst
|
||||||
|
|
||||||
Seccomp
|
Seccomp
|
||||||
M: Eduardo Otubo <otubo@redhat.com>
|
M: Eduardo Otubo <otubo@redhat.com>
|
||||||
|
|||||||
@@ -128,6 +128,7 @@ vhost-user-gpu-obj-y = contrib/vhost-user-gpu/
|
|||||||
trace-events-subdirs =
|
trace-events-subdirs =
|
||||||
trace-events-subdirs += accel/kvm
|
trace-events-subdirs += accel/kvm
|
||||||
trace-events-subdirs += accel/tcg
|
trace-events-subdirs += accel/tcg
|
||||||
|
trace-events-subdirs += backends
|
||||||
trace-events-subdirs += crypto
|
trace-events-subdirs += crypto
|
||||||
trace-events-subdirs += monitor
|
trace-events-subdirs += monitor
|
||||||
ifeq ($(CONFIG_USER_ONLY),y)
|
ifeq ($(CONFIG_USER_ONLY),y)
|
||||||
|
|||||||
@@ -17,3 +17,7 @@ endif
|
|||||||
common-obj-$(call land,$(CONFIG_VHOST_USER),$(CONFIG_VIRTIO)) += vhost-user.o
|
common-obj-$(call land,$(CONFIG_VHOST_USER),$(CONFIG_VIRTIO)) += vhost-user.o
|
||||||
|
|
||||||
common-obj-$(CONFIG_LINUX) += hostmem-memfd.o
|
common-obj-$(CONFIG_LINUX) += hostmem-memfd.o
|
||||||
|
|
||||||
|
common-obj-$(CONFIG_GIO) += dbus-vmstate.o
|
||||||
|
dbus-vmstate.o-cflags = $(GIO_CFLAGS)
|
||||||
|
dbus-vmstate.o-libs = $(GIO_LIBS)
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,7 @@
|
|||||||
|
# See docs/devel/tracing.txt for syntax documentation.
|
||||||
|
|
||||||
|
# dbus-vmstate.c
|
||||||
|
dbus_vmstate_pre_save(void)
|
||||||
|
dbus_vmstate_post_load(int version_id) "version_id: %d"
|
||||||
|
dbus_vmstate_loading(const char *id) "id: %s"
|
||||||
|
dbus_vmstate_saving(const char *id) "id: %s"
|
||||||
@@ -0,0 +1,74 @@
|
|||||||
|
=============
|
||||||
|
D-Bus VMState
|
||||||
|
=============
|
||||||
|
|
||||||
|
Introduction
|
||||||
|
============
|
||||||
|
|
||||||
|
The QEMU dbus-vmstate object's aim is to migrate helpers' data running
|
||||||
|
on a QEMU D-Bus bus. (refer to the :doc:`dbus` document for
|
||||||
|
some recommendations on D-Bus usage)
|
||||||
|
|
||||||
|
Upon migration, QEMU will go through the queue of
|
||||||
|
``org.qemu.VMState1`` D-Bus name owners and query their ``Id``. It
|
||||||
|
must be unique among the helpers.
|
||||||
|
|
||||||
|
It will then save arbitrary data of each Id to be transferred in the
|
||||||
|
migration stream and restored/loaded at the corresponding destination
|
||||||
|
helper.
|
||||||
|
|
||||||
|
For now, the data amount to be transferred is arbitrarily limited to
|
||||||
|
1Mb. The state must be saved quickly (a fraction of a second). (D-Bus
|
||||||
|
imposes a time limit on reply anyway, and migration would fail if data
|
||||||
|
isn't given quickly enough.)
|
||||||
|
|
||||||
|
dbus-vmstate object can be configured with the expected list of
|
||||||
|
helpers by setting its ``id-list`` property, with a comma-separated
|
||||||
|
``Id`` list.
|
||||||
|
|
||||||
|
Interface
|
||||||
|
=========
|
||||||
|
|
||||||
|
On object path ``/org/qemu/VMState1``, the following
|
||||||
|
``org.qemu.VMState1`` interface should be implemented:
|
||||||
|
|
||||||
|
.. code:: xml
|
||||||
|
|
||||||
|
<interface name="org.qemu.VMState1">
|
||||||
|
<property name="Id" type="s" access="read"/>
|
||||||
|
<method name="Load">
|
||||||
|
<arg type="ay" name="data" direction="in"/>
|
||||||
|
</method>
|
||||||
|
<method name="Save">
|
||||||
|
<arg type="ay" name="data" direction="out"/>
|
||||||
|
</method>
|
||||||
|
</interface>
|
||||||
|
|
||||||
|
"Id" property
|
||||||
|
-------------
|
||||||
|
|
||||||
|
A string that identifies the helper uniquely. (maximum 256 bytes
|
||||||
|
including terminating NUL byte)
|
||||||
|
|
||||||
|
.. note::
|
||||||
|
|
||||||
|
The helper ID namespace is a separate namespace. In particular, it is not
|
||||||
|
related to QEMU "id" used in -object/-device objects.
|
||||||
|
|
||||||
|
Load(in u8[] bytes) method
|
||||||
|
--------------------------
|
||||||
|
|
||||||
|
The method called on destination with the state to restore.
|
||||||
|
|
||||||
|
The helper may be initially started in a waiting state (with
|
||||||
|
an --incoming argument for example), and it may resume on success.
|
||||||
|
|
||||||
|
An error may be returned to the caller.
|
||||||
|
|
||||||
|
Save(out u8[] bytes) method
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
The method called on the source to get the current state to be
|
||||||
|
migrated. The helper should continue to run normally.
|
||||||
|
|
||||||
|
An error may be returned to the caller.
|
||||||
@@ -103,3 +103,8 @@ https://dbus.freedesktop.org/doc/dbus-api-design.html
|
|||||||
|
|
||||||
The "org.qemu.*" prefix is reserved for services implemented &
|
The "org.qemu.*" prefix is reserved for services implemented &
|
||||||
distributed by the QEMU project.
|
distributed by the QEMU project.
|
||||||
|
|
||||||
|
QEMU Interfaces
|
||||||
|
===============
|
||||||
|
|
||||||
|
:doc:`dbus-vmstate`
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ Contents:
|
|||||||
|
|
||||||
bitmaps
|
bitmaps
|
||||||
dbus
|
dbus
|
||||||
|
dbus-vmstate
|
||||||
live-block-operations
|
live-block-operations
|
||||||
pr-helper
|
pr-helper
|
||||||
qemu-ga
|
qemu-ga
|
||||||
|
|||||||
Reference in New Issue
Block a user