diff mbox

[v8,09/10] qemu-ga: Install Windows VSS provider on `qemu-ga -s install'

Message ID 20130723224602.26273.30116.stgit@outback
State New
Headers show

Commit Message

Tomoki Sekiyama July 23, 2013, 10:46 p.m. UTC
Register QGA VSS provider library into Windows when qemu-ga is installed as
Windows service ('-s install' option). It is deregistered when the service
is uninstalled ('-s uninstall' option).

Signed-off-by: Tomoki Sekiyama <tomoki.sekiyama@hds.com>
---
 qga/main.c      |   10 +++++++++-
 qga/vss-win32.c |   25 +++++++++++++++++++++++++
 qga/vss-win32.h |    3 +++
 3 files changed, 37 insertions(+), 1 deletion(-)

Comments

Michael Roth July 30, 2013, 8:20 p.m. UTC | #1
Quoting Tomoki Sekiyama (2013-07-23 17:46:03)
> Register QGA VSS provider library into Windows when qemu-ga is installed as
> Windows service ('-s install' option). It is deregistered when the service
> is uninstalled ('-s uninstall' option).
> 
> Signed-off-by: Tomoki Sekiyama <tomoki.sekiyama@hds.com>

Reviewed-by: Michael Roth <mdroth@linux.vnet.ibm.com>

> ---
>  qga/main.c      |   10 +++++++++-
>  qga/vss-win32.c |   25 +++++++++++++++++++++++++
>  qga/vss-win32.h |    3 +++
>  3 files changed, 37 insertions(+), 1 deletion(-)
> 
> diff --git a/qga/main.c b/qga/main.c
> index 0e04e73..6c746c8 100644
> --- a/qga/main.c
> +++ b/qga/main.c
> @@ -34,6 +34,7 @@
>  #include "qemu/bswap.h"
>  #ifdef _WIN32
>  #include "qga/service-win32.h"
> +#include "qga/vss-win32.h"
>  #include <windows.h>
>  #endif
>  #ifdef __linux__
> @@ -1031,8 +1032,15 @@ int main(int argc, char **argv)
>                  fixed_state_dir = (state_dir == dfl_pathnames.state_dir) ?
>                                    NULL :
>                                    state_dir;
> -                return ga_install_service(path, log_filepath, fixed_state_dir);
> +                if (ga_install_vss_provider()) {
> +                    return EXIT_FAILURE;
> +                }
> +                if (ga_install_service(path, log_filepath, fixed_state_dir)) {
> +                    return EXIT_FAILURE;
> +                }
> +                return 0;
>              } else if (strcmp(service, "uninstall") == 0) {
> +                ga_uninstall_vss_provider();
>                  return ga_uninstall_service();
>              } else {
>                  printf("Unknown service command.\n");
> diff --git a/qga/vss-win32.c b/qga/vss-win32.c
> index ef5f0df..7b77a8c 100644
> --- a/qga/vss-win32.c
> +++ b/qga/vss-win32.c
> @@ -119,6 +119,31 @@ bool vss_initialized(void)
>      return !!provider_lib;
>  }
> 
> +int ga_install_vss_provider(void)
> +{
> +    HRESULT hr;
> +
> +    if (!vss_init(false)) {
> +        fprintf(stderr, "Installation of VSS provider is skipped. "
> +                "fsfreeze will be disabled.\n");
> +        return 0;
> +    }
> +    hr = call_vss_provider_func("COMRegister");
> +    vss_deinit(false);
> +
> +    return SUCCEEDED(hr) ? 0 : EXIT_FAILURE;
> +}
> +
> +void ga_uninstall_vss_provider(void)
> +{
> +    if (!vss_init(false)) {
> +        fprintf(stderr, "Removal of VSS provider is skipped.\n");
> +        return;
> +    }
> +    call_vss_provider_func("COMUnregister");
> +    vss_deinit(false);
> +}
> +
>  /* Call VSS requester and freeze/thaw filesystems and applications */
>  void qga_vss_fsfreeze(int *nr_volume, Error **err, bool freeze)
>  {
> diff --git a/qga/vss-win32.h b/qga/vss-win32.h
> index eac669c..db8fbe5 100644
> --- a/qga/vss-win32.h
> +++ b/qga/vss-win32.h
> @@ -19,6 +19,9 @@ bool vss_init(bool init_requester);
>  void vss_deinit(bool deinit_requester);
>  bool vss_initialized(void);
> 
> +int ga_install_vss_provider(void);
> +void ga_uninstall_vss_provider(void);
> +
>  void qga_vss_fsfreeze(int *nr_volume, Error **err, bool freeze);
> 
>  #endif
diff mbox

Patch

diff --git a/qga/main.c b/qga/main.c
index 0e04e73..6c746c8 100644
--- a/qga/main.c
+++ b/qga/main.c
@@ -34,6 +34,7 @@ 
 #include "qemu/bswap.h"
 #ifdef _WIN32
 #include "qga/service-win32.h"
+#include "qga/vss-win32.h"
 #include <windows.h>
 #endif
 #ifdef __linux__
@@ -1031,8 +1032,15 @@  int main(int argc, char **argv)
                 fixed_state_dir = (state_dir == dfl_pathnames.state_dir) ?
                                   NULL :
                                   state_dir;
-                return ga_install_service(path, log_filepath, fixed_state_dir);
+                if (ga_install_vss_provider()) {
+                    return EXIT_FAILURE;
+                }
+                if (ga_install_service(path, log_filepath, fixed_state_dir)) {
+                    return EXIT_FAILURE;
+                }
+                return 0;
             } else if (strcmp(service, "uninstall") == 0) {
+                ga_uninstall_vss_provider();
                 return ga_uninstall_service();
             } else {
                 printf("Unknown service command.\n");
diff --git a/qga/vss-win32.c b/qga/vss-win32.c
index ef5f0df..7b77a8c 100644
--- a/qga/vss-win32.c
+++ b/qga/vss-win32.c
@@ -119,6 +119,31 @@  bool vss_initialized(void)
     return !!provider_lib;
 }
 
+int ga_install_vss_provider(void)
+{
+    HRESULT hr;
+
+    if (!vss_init(false)) {
+        fprintf(stderr, "Installation of VSS provider is skipped. "
+                "fsfreeze will be disabled.\n");
+        return 0;
+    }
+    hr = call_vss_provider_func("COMRegister");
+    vss_deinit(false);
+
+    return SUCCEEDED(hr) ? 0 : EXIT_FAILURE;
+}
+
+void ga_uninstall_vss_provider(void)
+{
+    if (!vss_init(false)) {
+        fprintf(stderr, "Removal of VSS provider is skipped.\n");
+        return;
+    }
+    call_vss_provider_func("COMUnregister");
+    vss_deinit(false);
+}
+
 /* Call VSS requester and freeze/thaw filesystems and applications */
 void qga_vss_fsfreeze(int *nr_volume, Error **err, bool freeze)
 {
diff --git a/qga/vss-win32.h b/qga/vss-win32.h
index eac669c..db8fbe5 100644
--- a/qga/vss-win32.h
+++ b/qga/vss-win32.h
@@ -19,6 +19,9 @@  bool vss_init(bool init_requester);
 void vss_deinit(bool deinit_requester);
 bool vss_initialized(void);
 
+int ga_install_vss_provider(void);
+void ga_uninstall_vss_provider(void);
+
 void qga_vss_fsfreeze(int *nr_volume, Error **err, bool freeze);
 
 #endif