qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v9 00/10] qemu-ga: fsfreeze on Windows using VSS
@ 2013-07-31 22:24 Tomoki Sekiyama
  2013-07-31 22:24 ` [Qemu-devel] [PATCH v9 01/10] configure: Support configuring C++ compiler Tomoki Sekiyama
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: Tomoki Sekiyama @ 2013-07-31 22:24 UTC (permalink / raw)
  To: qemu-devel
  Cc: libaiqing, ghammer, stefanha, mdroth, lcapitulino, vrozenfe,
	pbonzini, seiji.aguchi, lersek, areis

Hi,

This is v9 of patch series to add fsfreeze for Windows qemu-guest-agent.

changes from v8:
 - Add hEventTimeout to improve timeout error message (patch 07, see below)
 - Build qga-vss.tlb if configure'd --with-win-sdk (patch 05, 07)
 - Use "qga-vss-dll-obj-$(CONFIG_QGA_VSS)" in Makefile.objs (patch 07)
 - Fix typo in QGAVSSRequesterFunc (patch 07, 08)

v8: http://lists.gnu.org/archive/html/qemu-devel/2013-07/msg04070.html

* Improvement of timeout error message
  According to discussion in v8(*), the timeout error message is more
  informative and consistent in this version when guest-fsfreeze-thaw is
  issued after 60 seconds since guest-fsfreeze-freeze.
  (*) http://lists.nongnu.org/archive/html/qemu-devel/2013-07/msg05924.html

  For example:
    {'execute':'guest-fsfreeze-freeze'}
    {"return": 2}
    /* wait 10+ seconds */
    {'execute':'guest-fsfreeze-thaw'}
    {"error": {"class": "GenericError", "desc": "couldn't hold writes:
    fsfreeze is limited up to 10 seconds:  (error: 80042314)"}}

    {'execute':'guest-fsfreeze-freeze'}
    {"return": 2}
    /* wait 60+ seconds */
    {'execute':'guest-fsfreeze-thaw'}
    {"error": {"class": "GenericError", "desc": "couldn't hold writes:
    fsfreeze is limited up to 10 seconds:  (error: 8004230f)"}}
    /* In v8, "desc": "failed to do snapshot set" due to provider timeout */


* Description
  In Windows, VSS (Volume Shadow Copy Service) provides a facility to
  quiesce filesystems and applications before disk snapshots are taken.
  This patch series implements "fsfreeze" command of qemu-ga using VSS.


* How to build & run qemu-ga with VSS support

 - Download Microsoft VSS SDK from:
   http://www.microsoft.com/en-us/download/details.aspx?id=23490

 - Setup the SDK
   scripts/extract-vsssdk-headers setup.exe (on POSIX-systems)

 - Specify installed SDK directory to configure option as:
   ./configure -with-vss-sdk="path/to/VSS SDK" --cross-prefix=i686-w64-mingw32-

 - make qemu-ga.exe qga/vss-win32/qga-vss.{dll,tlb}

 - Install qemu-ga.exe, qga/vss-win32/qga-vss.{dll,tlb}, and
   the other required mingw libraries into the same directory in guests

 - Run `qemu-ga.exe -s install' and `net start qemu-ga' in the guests

Any feedback are appreciated.

---
Tomoki Sekiyama (10):
      configure: Support configuring C++ compiler
      Add c++ keywords to QAPI helper script
      checkpatch.pl: Check .cpp files
      Add a script to extract VSS SDK headers on POSIX system
      qemu-ga: Add configure options to specify path to Windows/VSS SDK
      error: Add error_set_win32 and error_setg_win32
      qemu-ga: Add Windows VSS provider and requester as DLL
      qemu-ga: Call Windows VSS requester in fsfreeze command handler
      qemu-ga: Install Windows VSS provider on `qemu-ga -s install'
      QMP/qemu-ga-client: Make timeout longer for guest-fsfreeze-freeze command


 .gitignore                     |    1 
 Makefile                       |    3 
 Makefile.objs                  |    2 
 QMP/qemu-ga-client             |    4 
 configure                      |   96 +++++++
 hmp.c                          |    2 
 hw/pci/pci.c                   |    2 
 include/qapi/error.h           |   13 +
 qga/Makefile.objs              |    3 
 qga/commands-win32.c           |   82 ++++++
 qga/main.c                     |   10 +
 qga/vss-win32.c                |  166 +++++++++++++
 qga/vss-win32.h                |   27 ++
 qga/vss-win32/Makefile.objs    |   23 ++
 qga/vss-win32/install.cpp      |  458 +++++++++++++++++++++++++++++++++++
 qga/vss-win32/provider.cpp     |  523 ++++++++++++++++++++++++++++++++++++++++
 qga/vss-win32/qga-vss.def      |   13 +
 qga/vss-win32/qga-vss.idl      |   20 ++
 qga/vss-win32/qga-vss.tlb      |  Bin
 qga/vss-win32/requester.cpp    |  507 +++++++++++++++++++++++++++++++++++++++
 qga/vss-win32/requester.h      |   42 +++
 qga/vss-win32/vss-common.h     |  129 ++++++++++
 rules.mak                      |    9 +
 scripts/checkpatch.pl          |   34 ++-
 scripts/extract-vsssdk-headers |   35 +++
 scripts/qapi.py                |   12 +
 util/error.c                   |   35 +++
 27 files changed, 2229 insertions(+), 22 deletions(-)
 create mode 100644 qga/vss-win32.c
 create mode 100644 qga/vss-win32.h
 create mode 100644 qga/vss-win32/Makefile.objs
 create mode 100644 qga/vss-win32/install.cpp
 create mode 100644 qga/vss-win32/provider.cpp
 create mode 100644 qga/vss-win32/qga-vss.def
 create mode 100644 qga/vss-win32/qga-vss.idl
 create mode 100644 qga/vss-win32/qga-vss.tlb
 create mode 100644 qga/vss-win32/requester.cpp
 create mode 100644 qga/vss-win32/requester.h
 create mode 100644 qga/vss-win32/vss-common.h
 create mode 100755 scripts/extract-vsssdk-headers

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

end of thread, other threads:[~2013-07-31 23:26 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-31 22:24 [Qemu-devel] [PATCH v9 00/10] qemu-ga: fsfreeze on Windows using VSS Tomoki Sekiyama
2013-07-31 22:24 ` [Qemu-devel] [PATCH v9 01/10] configure: Support configuring C++ compiler Tomoki Sekiyama
2013-07-31 22:24 ` [Qemu-devel] [PATCH v9 02/10] Add c++ keywords to QAPI helper script Tomoki Sekiyama
2013-07-31 22:24 ` [Qemu-devel] [PATCH v9 03/10] checkpatch.pl: Check .cpp files Tomoki Sekiyama
2013-07-31 22:24 ` [Qemu-devel] [PATCH v9 04/10] Add a script to extract VSS SDK headers on POSIX system Tomoki Sekiyama
2013-07-31 22:24 ` [Qemu-devel] [PATCH v9 05/10] qemu-ga: Add configure options to specify path to Windows/VSS SDK Tomoki Sekiyama
2013-07-31 22:24 ` [Qemu-devel] [PATCH v9 06/10] error: Add error_set_win32 and error_setg_win32 Tomoki Sekiyama
2013-07-31 22:25 ` [Qemu-devel] [PATCH v9 07/10] qemu-ga: Add Windows VSS provider and requester as DLL Tomoki Sekiyama
2013-07-31 22:25 ` [Qemu-devel] [PATCH v9 08/10] qemu-ga: Call Windows VSS requester in fsfreeze command handler Tomoki Sekiyama
2013-07-31 22:25 ` [Qemu-devel] [PATCH v9 09/10] qemu-ga: Install Windows VSS provider on `qemu-ga -s install' Tomoki Sekiyama
2013-07-31 22:25 ` [Qemu-devel] [PATCH v9 10/10] QMP/qemu-ga-client: Make timeout longer for guest-fsfreeze-freeze command Tomoki Sekiyama

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