]> git.proxmox.com Git - mirror_qemu.git/commit - qga/Makefile.objs
qemu-ga: Add Windows VSS provider and requester as DLL
authorTomoki Sekiyama <tomoki.sekiyama@hds.com>
Wed, 7 Aug 2013 15:40:18 +0000 (11:40 -0400)
committerMichael Roth <mdroth@linux.vnet.ibm.com>
Mon, 9 Sep 2013 19:17:57 +0000 (14:17 -0500)
commitb39297aedfabe9b2c426cd540413be991500da25
tree9fbd0f9e7da393290df5d70aa0be88e6a1428b44
parent20840d4cfe5198cde313ac953279e76f16c5b76d
qemu-ga: Add Windows VSS provider and requester as DLL

Adds VSS provider and requester as a qga-vss.dll, which is loaded by
Windows VSS service as well as by qemu-ga.

"provider.cpp" implements a basic stub of a software VSS provider.
Currently, this module only relays a frozen event from VSS service to the
agent, and thaw event from the agent to VSS service, to block VSS process
to keep the system frozen while snapshots are taken at the host.

To register the provider to the guest system as COM+ application, the type
library (.tlb) for qga-vss.dll is required. To build it from COM IDL (.idl),
VisualC++, MIDL and stdole2.tlb in Windows SDK are required. This patch also
adds pre-compiled .tlb file in the repository in order to enable
cross-compile qemu-ga.exe for Windows with VSS support.

"requester.cpp" provides the VSS requester to kick the VSS snapshot process.
Qemu-ga.exe works without the DLL, although fsfreeze features are disabled.

These functions are only supported in Windows 2003 or later. In older
systems, fsfreeze features are disabled.

In several versions of Windows which don't support attribute
VSS_VOLSNAP_ATTR_NO_AUTORECOVERY, DoSnapshotSet fails with error
VSS_E_OBJECT_NOT_FOUND. In this patch, we just ignore this error.
To solve this fundamentally, we need a framework to handle mount writable
snapshot on guests, which is required by VSS auto-recovery feature
(cleanup phase after a snapshot is taken).

Signed-off-by: Tomoki Sekiyama <tomoki.sekiyama@hds.com>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
13 files changed:
Makefile
Makefile.objs
configure
qga/Makefile.objs
qga/vss-win32/Makefile.objs [new file with mode: 0644]
qga/vss-win32/install.cpp [new file with mode: 0644]
qga/vss-win32/provider.cpp [new file with mode: 0644]
qga/vss-win32/qga-vss.def [new file with mode: 0644]
qga/vss-win32/qga-vss.idl [new file with mode: 0644]
qga/vss-win32/qga-vss.tlb [new file with mode: 0644]
qga/vss-win32/requester.cpp [new file with mode: 0644]
qga/vss-win32/requester.h [new file with mode: 0644]
qga/vss-win32/vss-common.h [new file with mode: 0644]