2 * QEMU Guest Agent helpers for win32 service management
4 * Copyright IBM Corp. 2012
7 * Gal Hammer <ghammer@redhat.com>
8 * Michael Roth <mdroth@linux.vnet.ibm.com>
10 * This work is licensed under the terms of the GNU GPL, version 2 or later.
11 * See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
15 #include "qga/service-win32.h"
17 static int printf_win_error(const char *text
)
19 DWORD err
= GetLastError();
23 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER
|
24 FORMAT_MESSAGE_FROM_SYSTEM
| FORMAT_MESSAGE_IGNORE_INSERTS
,
27 MAKELANGID(LANG_NEUTRAL
, SUBLANG_DEFAULT
),
30 n
= fprintf(stderr
, "%s. (Error: %d) %s", text
, (int)err
, message
);
36 /* Windows command line escaping. Based on
37 * <http://blogs.msdn.com/b/oldnewthing/archive/2010/09/17/10063629.aspx> and
38 * <http://msdn.microsoft.com/en-us/library/windows/desktop/17w5ykft%28v=vs.85%29.aspx>.
40 * The caller is responsible for initializing @buffer; prior contents are lost.
42 static const char *win_escape_arg(const char *to_escape
, GString
*buffer
)
44 size_t backslash_count
;
47 /* open with a double quote */
48 g_string_assign(buffer
, "\"");
51 for (c
= to_escape
; *c
!= '\0'; ++c
) {
54 /* The meaning depends on the first non-backslash character coming
61 /* We must escape each pending backslash, then escape the double
62 * quote. This creates a case of "odd number of backslashes [...]
63 * followed by a double quotation mark".
65 while (backslash_count
) {
67 g_string_append(buffer
, "\\\\");
69 g_string_append(buffer
, "\\\"");
73 /* Any pending backslashes are without special meaning, flush them.
74 * "Backslashes are interpreted literally, unless they immediately
75 * precede a double quotation mark."
77 while (backslash_count
) {
79 g_string_append_c(buffer
, '\\');
81 g_string_append_c(buffer
, *c
);
85 /* We're about to close with a double quote in string delimiter role.
86 * Double all pending backslashes, creating a case of "even number of
87 * backslashes [...] followed by a double quotation mark".
89 while (backslash_count
) {
91 g_string_append(buffer
, "\\\\");
93 g_string_append_c(buffer
, '"');
98 int ga_install_service(const char *path
, const char *logfile
,
99 const char *state_dir
)
101 int ret
= EXIT_FAILURE
;
104 TCHAR module_fname
[MAX_PATH
];
107 SERVICE_DESCRIPTION desc
= { (char *)QGA_SERVICE_DESCRIPTION
};
109 if (GetModuleFileName(NULL
, module_fname
, MAX_PATH
) == 0) {
110 printf_win_error("No full path to service's executable");
114 esc
= g_string_new("");
115 cmdline
= g_string_new("");
117 g_string_append_printf(cmdline
, "%s -d",
118 win_escape_arg(module_fname
, esc
));
121 g_string_append_printf(cmdline
, " -p %s", win_escape_arg(path
, esc
));
124 g_string_append_printf(cmdline
, " -l %s -v",
125 win_escape_arg(logfile
, esc
));
128 g_string_append_printf(cmdline
, " -t %s",
129 win_escape_arg(state_dir
, esc
));
132 g_debug("service's cmdline: %s", cmdline
->str
);
134 manager
= OpenSCManager(NULL
, NULL
, SC_MANAGER_ALL_ACCESS
);
135 if (manager
== NULL
) {
136 printf_win_error("No handle to service control manager");
140 service
= CreateService(manager
, QGA_SERVICE_NAME
, QGA_SERVICE_DISPLAY_NAME
,
141 SERVICE_ALL_ACCESS
, SERVICE_WIN32_OWN_PROCESS
, SERVICE_AUTO_START
,
142 SERVICE_ERROR_NORMAL
, cmdline
->str
, NULL
, NULL
, NULL
, NULL
, NULL
);
143 if (service
== NULL
) {
144 printf_win_error("Failed to install service");
148 ChangeServiceConfig2(service
, SERVICE_CONFIG_DESCRIPTION
, &desc
);
149 fprintf(stderr
, "Service was installed successfully.\n");
151 CloseServiceHandle(service
);
154 CloseServiceHandle(manager
);
157 g_string_free(cmdline
, TRUE
);
158 g_string_free(esc
, TRUE
);
162 int ga_uninstall_service(void)
167 manager
= OpenSCManager(NULL
, NULL
, SC_MANAGER_ALL_ACCESS
);
168 if (manager
== NULL
) {
169 printf_win_error("No handle to service control manager");
173 service
= OpenService(manager
, QGA_SERVICE_NAME
, DELETE
);
174 if (service
== NULL
) {
175 printf_win_error("No handle to service");
176 CloseServiceHandle(manager
);
180 if (DeleteService(service
) == FALSE
) {
181 printf_win_error("Failed to delete service");
183 fprintf(stderr
, "Service was deleted successfully.\n");
186 CloseServiceHandle(service
);
187 CloseServiceHandle(manager
);