]>
Commit | Line | Data |
---|---|---|
48ff7a62 MR |
1 | /* |
2 | * QEMU Guest Agent | |
3 | * | |
4 | * Copyright IBM Corp. 2011 | |
5 | * | |
6 | * Authors: | |
7 | * Adam Litke <[email protected]> | |
8 | * Michael Roth <[email protected]> | |
9 | * | |
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. | |
12 | */ | |
e688df6b | 13 | |
4459bf38 | 14 | #include "qemu/osdep.h" |
48ff7a62 | 15 | #include <getopt.h> |
39097daf | 16 | #include <glib/gstdio.h> |
d8ca685a | 17 | #ifndef _WIN32 |
48ff7a62 | 18 | #include <syslog.h> |
11d0f125 | 19 | #include <sys/wait.h> |
d8ca685a | 20 | #endif |
a8d25326 | 21 | #include "qemu-common.h" |
86cdf9ec | 22 | #include "qapi/qmp/json-parser.h" |
452fcdbc | 23 | #include "qapi/qmp/qdict.h" |
7b1b5d19 | 24 | #include "qapi/qmp/qjson.h" |
fc81fa1e | 25 | #include "qapi/qmp/qstring.h" |
dc03272d | 26 | #include "guest-agent-core.h" |
00ca24ff | 27 | #include "qga-qapi-init-commands.h" |
7b1b5d19 | 28 | #include "qapi/qmp/qerror.h" |
e688df6b | 29 | #include "qapi/error.h" |
dc03272d | 30 | #include "channel.h" |
39097daf | 31 | #include "qemu/bswap.h" |
a9eacf8b | 32 | #include "qemu/cutils.h" |
f348b6d1 | 33 | #include "qemu/help_option.h" |
26de2296 | 34 | #include "qemu/sockets.h" |
53fabd4b | 35 | #include "qemu/systemd.h" |
8f1c29af | 36 | #include "qemu-version.h" |
bc62fa03 | 37 | #ifdef _WIN32 |
b70d6afe | 38 | #include <dbt.h> |
bc62fa03 | 39 | #include "qga/service-win32.h" |
f311f2c2 | 40 | #include "qga/vss-win32.h" |
bc62fa03 | 41 | #endif |
ec0f694c TS |
42 | #ifdef __linux__ |
43 | #include <linux/fs.h> | |
44 | #ifdef FIFREEZE | |
45 | #define CONFIG_FSFREEZE | |
46 | #endif | |
47 | #endif | |
48ff7a62 | 48 | |
7868e26e | 49 | #ifndef _WIN32 |
48ff7a62 | 50 | #define QGA_VIRTIO_PATH_DEFAULT "/dev/virtio-ports/org.qemu.guest_agent.0" |
c394ecb7 | 51 | #define QGA_STATE_RELATIVE_DIR "run" |
a749f42d | 52 | #define QGA_SERIAL_PATH_DEFAULT "/dev/ttyS0" |
7868e26e MR |
53 | #else |
54 | #define QGA_VIRTIO_PATH_DEFAULT "\\\\.\\Global\\org.qemu.guest_agent.0" | |
c394ecb7 | 55 | #define QGA_STATE_RELATIVE_DIR "qemu-ga" |
a749f42d | 56 | #define QGA_SERIAL_PATH_DEFAULT "COM1" |
7868e26e | 57 | #endif |
ec0f694c TS |
58 | #ifdef CONFIG_FSFREEZE |
59 | #define QGA_FSFREEZE_HOOK_DEFAULT CONFIG_QEMU_CONFDIR "/fsfreeze-hook" | |
60 | #endif | |
3cf0bed8 | 61 | #define QGA_SENTINEL_BYTE 0xFF |
e236d060 | 62 | #define QGA_CONF_DEFAULT CONFIG_QEMU_CONFDIR G_DIR_SEPARATOR_S "qemu-ga.conf" |
d951fada | 63 | #define QGA_RETRY_INTERVAL 5 |
48ff7a62 | 64 | |
c394ecb7 LE |
65 | static struct { |
66 | const char *state_dir; | |
67 | const char *pidfile; | |
68 | } dfl_pathnames; | |
69 | ||
39097daf MR |
70 | typedef struct GAPersistentState { |
71 | #define QGA_PSTATE_DEFAULT_FD_COUNTER 1000 | |
72 | int64_t fd_counter; | |
73 | } GAPersistentState; | |
74 | ||
0f4d3a49 MR |
75 | typedef struct GAConfig GAConfig; |
76 | ||
48ff7a62 MR |
77 | struct GAState { |
78 | JSONMessageParser parser; | |
79 | GMainLoop *main_loop; | |
125b310e | 80 | GAChannel *channel; |
48ff7a62 MR |
81 | bool virtio; /* fastpath to check for virtio to deal with poll() quirks */ |
82 | GACommandState *command_state; | |
83 | GLogLevelFlags log_level; | |
84 | FILE *log_file; | |
85 | bool logging_enabled; | |
bc62fa03 MR |
86 | #ifdef _WIN32 |
87 | GAService service; | |
b70d6afe | 88 | HANDLE wakeup_event; |
bc62fa03 | 89 | #endif |
3cf0bed8 | 90 | bool delimit_response; |
f22d85e9 MR |
91 | bool frozen; |
92 | GList *blacklist; | |
d4c8a5d4 | 93 | char *state_filepath_isfrozen; |
f789aa7b MR |
94 | struct { |
95 | const char *log_filepath; | |
96 | const char *pid_filepath; | |
97 | } deferred_options; | |
ec0f694c TS |
98 | #ifdef CONFIG_FSFREEZE |
99 | const char *fsfreeze_hook; | |
100 | #endif | |
d4c8a5d4 | 101 | gchar *pstate_filepath; |
39097daf | 102 | GAPersistentState pstate; |
0f4d3a49 MR |
103 | GAConfig *config; |
104 | int socket_activation; | |
d951fada | 105 | bool force_exit; |
48ff7a62 MR |
106 | }; |
107 | ||
3cf0bed8 | 108 | struct GAState *ga_state; |
1527badb | 109 | QmpCommandList ga_commands; |
48ff7a62 | 110 | |
f22d85e9 MR |
111 | /* commands that are safe to issue while filesystems are frozen */ |
112 | static const char *ga_freeze_whitelist[] = { | |
113 | "guest-ping", | |
114 | "guest-info", | |
115 | "guest-sync", | |
c5dcb6ae | 116 | "guest-sync-delimited", |
f22d85e9 MR |
117 | "guest-fsfreeze-status", |
118 | "guest-fsfreeze-thaw", | |
119 | NULL | |
120 | }; | |
121 | ||
bc62fa03 MR |
122 | #ifdef _WIN32 |
123 | DWORD WINAPI service_ctrl_handler(DWORD ctrl, DWORD type, LPVOID data, | |
124 | LPVOID ctx); | |
b70d6afe | 125 | DWORD WINAPI handle_serial_device_events(DWORD type, LPVOID data); |
bc62fa03 MR |
126 | VOID WINAPI service_main(DWORD argc, TCHAR *argv[]); |
127 | #endif | |
d88495a8 | 128 | static int run_agent(GAState *s); |
d951fada | 129 | static void stop_agent(GAState *s, bool requested); |
bc62fa03 | 130 | |
c394ecb7 LE |
131 | static void |
132 | init_dfl_pathnames(void) | |
133 | { | |
134 | g_assert(dfl_pathnames.state_dir == NULL); | |
135 | g_assert(dfl_pathnames.pidfile == NULL); | |
136 | dfl_pathnames.state_dir = qemu_get_local_state_pathname( | |
137 | QGA_STATE_RELATIVE_DIR); | |
138 | dfl_pathnames.pidfile = qemu_get_local_state_pathname( | |
139 | QGA_STATE_RELATIVE_DIR G_DIR_SEPARATOR_S "qemu-ga.pid"); | |
140 | } | |
141 | ||
48ff7a62 MR |
142 | static void quit_handler(int sig) |
143 | { | |
f22d85e9 MR |
144 | /* if we're frozen, don't exit unless we're absolutely forced to, |
145 | * because it's basically impossible for graceful exit to complete | |
146 | * unless all log/pid files are on unfreezable filesystems. there's | |
147 | * also a very likely chance killing the agent before unfreezing | |
148 | * the filesystems is a mistake (or will be viewed as one later). | |
94d81ae8 SJ |
149 | * On Windows the freeze interval is limited to 10 seconds, so |
150 | * we should quit, but first we should wait for the timeout, thaw | |
151 | * the filesystem and quit. | |
f22d85e9 MR |
152 | */ |
153 | if (ga_is_frozen(ga_state)) { | |
94d81ae8 SJ |
154 | #ifdef _WIN32 |
155 | int i = 0; | |
156 | Error *err = NULL; | |
157 | HANDLE hEventTimeout; | |
158 | ||
159 | g_debug("Thawing filesystems before exiting"); | |
160 | ||
161 | hEventTimeout = OpenEvent(EVENT_ALL_ACCESS, FALSE, EVENT_NAME_TIMEOUT); | |
162 | if (hEventTimeout) { | |
163 | WaitForSingleObject(hEventTimeout, 0); | |
164 | CloseHandle(hEventTimeout); | |
165 | } | |
0692b03e | 166 | qga_vss_fsfreeze(&i, false, NULL, &err); |
94d81ae8 SJ |
167 | if (err) { |
168 | g_debug("Error unfreezing filesystems prior to exiting: %s", | |
169 | error_get_pretty(err)); | |
170 | error_free(err); | |
171 | } | |
172 | #else | |
f22d85e9 | 173 | return; |
94d81ae8 | 174 | #endif |
f22d85e9 | 175 | } |
2542bfd5 | 176 | g_debug("received signal num %d, quitting", sig); |
48ff7a62 | 177 | |
d951fada | 178 | stop_agent(ga_state, true); |
48ff7a62 MR |
179 | } |
180 | ||
bc62fa03 | 181 | #ifndef _WIN32 |
125b310e | 182 | static gboolean register_signal_handlers(void) |
48ff7a62 | 183 | { |
dc8764f0 | 184 | struct sigaction sigact; |
48ff7a62 MR |
185 | int ret; |
186 | ||
187 | memset(&sigact, 0, sizeof(struct sigaction)); | |
188 | sigact.sa_handler = quit_handler; | |
189 | ||
190 | ret = sigaction(SIGINT, &sigact, NULL); | |
191 | if (ret == -1) { | |
192 | g_error("error configuring signal handler: %s", strerror(errno)); | |
48ff7a62 MR |
193 | } |
194 | ret = sigaction(SIGTERM, &sigact, NULL); | |
195 | if (ret == -1) { | |
196 | g_error("error configuring signal handler: %s", strerror(errno)); | |
197 | } | |
11d0f125 | 198 | |
4005b473 DL |
199 | sigact.sa_handler = SIG_IGN; |
200 | if (sigaction(SIGPIPE, &sigact, NULL) != 0) { | |
201 | g_error("error configuring SIGPIPE signal handler: %s", | |
202 | strerror(errno)); | |
203 | } | |
204 | ||
125b310e | 205 | return true; |
48ff7a62 | 206 | } |
04b4e75f LC |
207 | |
208 | /* TODO: use this in place of all post-fork() fclose(std*) callers */ | |
209 | void reopen_fd_to_null(int fd) | |
210 | { | |
211 | int nullfd; | |
212 | ||
213 | nullfd = open("/dev/null", O_RDWR); | |
214 | if (nullfd < 0) { | |
215 | return; | |
216 | } | |
217 | ||
218 | dup2(nullfd, fd); | |
219 | ||
220 | if (nullfd != fd) { | |
221 | close(nullfd); | |
222 | } | |
223 | } | |
d8ca685a | 224 | #endif |
48ff7a62 MR |
225 | |
226 | static void usage(const char *cmd) | |
227 | { | |
228 | printf( | |
4bdd0416 | 229 | "Usage: %s [-m <method> -p <path>] [<options>]\n" |
7e563bfb | 230 | "QEMU Guest Agent " QEMU_FULL_VERSION "\n" |
8f1c29af | 231 | QEMU_COPYRIGHT "\n" |
48ff7a62 | 232 | "\n" |
586ef5de SH |
233 | " -m, --method transport method: one of unix-listen, virtio-serial,\n" |
234 | " isa-serial, or vsock-listen (virtio-serial is the default)\n" | |
4bdd0416 | 235 | " -p, --path device/socket path (the default for virtio-serial is:\n" |
a749f42d MM |
236 | " %s,\n" |
237 | " the default for isa-serial is:\n" | |
7b46aadb SH |
238 | " %s).\n" |
239 | " Socket addresses for vsock-listen are written as\n" | |
240 | " <cid>:<port>.\n" | |
48ff7a62 MR |
241 | " -l, --logfile set logfile path, logs to stderr by default\n" |
242 | " -f, --pidfile specify pidfile (default is %s)\n" | |
ec0f694c TS |
243 | #ifdef CONFIG_FSFREEZE |
244 | " -F, --fsfreeze-hook\n" | |
245 | " enable fsfreeze hook. Accepts an optional argument that\n" | |
246 | " specifies script to run on freeze/thaw. Script will be\n" | |
247 | " called with 'freeze'/'thaw' arguments accordingly.\n" | |
248 | " (default is %s)\n" | |
249 | " If using -F with an argument, do not follow -F with a\n" | |
250 | " space.\n" | |
251 | " (for example: -F/var/run/fsfreezehook.sh)\n" | |
252 | #endif | |
f789aa7b MR |
253 | " -t, --statedir specify dir to store state information (absolute paths\n" |
254 | " only, default is %s)\n" | |
48ff7a62 MR |
255 | " -v, --verbose log extra debugging information\n" |
256 | " -V, --version print version information and exit\n" | |
257 | " -d, --daemonize become a daemon\n" | |
bc62fa03 | 258 | #ifdef _WIN32 |
5e031072 | 259 | " -s, --service service commands: install, uninstall, vss-install, vss-uninstall\n" |
d8ca685a | 260 | #endif |
4bdd0416 | 261 | " -b, --blacklist comma-separated list of RPCs to disable (no spaces, \"?\"\n" |
abd6cf6d | 262 | " to list available RPCs)\n" |
aeadcbb6 MAL |
263 | " -D, --dump-conf dump a qemu-ga config file based on current config\n" |
264 | " options / command-line parameters to stdout\n" | |
d951fada MR |
265 | " -r, --retry-path attempt re-opening path if it's unavailable or closed\n" |
266 | " due to an error which may be recoverable in the future\n" | |
267 | " (virtio-serial driver re-install, serial device hot\n" | |
268 | " plug/unplug, etc.)\n" | |
48ff7a62 MR |
269 | " -h, --help display this help and exit\n" |
270 | "\n" | |
f5048cb7 | 271 | QEMU_HELP_BOTTOM "\n" |
8f1c29af | 272 | , cmd, QGA_VIRTIO_PATH_DEFAULT, QGA_SERIAL_PATH_DEFAULT, |
a749f42d | 273 | dfl_pathnames.pidfile, |
ec0f694c TS |
274 | #ifdef CONFIG_FSFREEZE |
275 | QGA_FSFREEZE_HOOK_DEFAULT, | |
276 | #endif | |
c394ecb7 | 277 | dfl_pathnames.state_dir); |
48ff7a62 MR |
278 | } |
279 | ||
48ff7a62 MR |
280 | static const char *ga_log_level_str(GLogLevelFlags level) |
281 | { | |
282 | switch (level & G_LOG_LEVEL_MASK) { | |
283 | case G_LOG_LEVEL_ERROR: | |
284 | return "error"; | |
285 | case G_LOG_LEVEL_CRITICAL: | |
286 | return "critical"; | |
287 | case G_LOG_LEVEL_WARNING: | |
288 | return "warning"; | |
289 | case G_LOG_LEVEL_MESSAGE: | |
290 | return "message"; | |
291 | case G_LOG_LEVEL_INFO: | |
292 | return "info"; | |
293 | case G_LOG_LEVEL_DEBUG: | |
294 | return "debug"; | |
295 | default: | |
296 | return "user"; | |
297 | } | |
298 | } | |
299 | ||
300 | bool ga_logging_enabled(GAState *s) | |
301 | { | |
302 | return s->logging_enabled; | |
303 | } | |
304 | ||
305 | void ga_disable_logging(GAState *s) | |
306 | { | |
307 | s->logging_enabled = false; | |
308 | } | |
309 | ||
310 | void ga_enable_logging(GAState *s) | |
311 | { | |
312 | s->logging_enabled = true; | |
313 | } | |
314 | ||
315 | static void ga_log(const gchar *domain, GLogLevelFlags level, | |
316 | const gchar *msg, gpointer opaque) | |
317 | { | |
318 | GAState *s = opaque; | |
319 | GTimeVal time; | |
320 | const char *level_str = ga_log_level_str(level); | |
321 | ||
322 | if (!ga_logging_enabled(s)) { | |
323 | return; | |
324 | } | |
325 | ||
326 | level &= G_LOG_LEVEL_MASK; | |
d8ca685a | 327 | #ifndef _WIN32 |
f300414c | 328 | if (g_strcmp0(domain, "syslog") == 0) { |
48ff7a62 MR |
329 | syslog(LOG_INFO, "%s: %s", level_str, msg); |
330 | } else if (level & s->log_level) { | |
d8ca685a MR |
331 | #else |
332 | if (level & s->log_level) { | |
333 | #endif | |
48ff7a62 MR |
334 | g_get_current_time(&time); |
335 | fprintf(s->log_file, | |
336 | "%lu.%lu: %s: %s\n", time.tv_sec, time.tv_usec, level_str, msg); | |
337 | fflush(s->log_file); | |
338 | } | |
339 | } | |
340 | ||
3cf0bed8 MR |
341 | void ga_set_response_delimited(GAState *s) |
342 | { | |
343 | s->delimit_response = true; | |
344 | } | |
345 | ||
9e92f6d4 LC |
346 | static FILE *ga_open_logfile(const char *logfile) |
347 | { | |
348 | FILE *f; | |
349 | ||
350 | f = fopen(logfile, "a"); | |
351 | if (!f) { | |
352 | return NULL; | |
353 | } | |
354 | ||
355 | qemu_set_cloexec(fileno(f)); | |
356 | return f; | |
357 | } | |
358 | ||
f22d85e9 MR |
359 | static gint ga_strcmp(gconstpointer str1, gconstpointer str2) |
360 | { | |
361 | return strcmp(str1, str2); | |
362 | } | |
363 | ||
364 | /* disable commands that aren't safe for fsfreeze */ | |
f0ccc00b | 365 | static void ga_disable_non_whitelisted(const QmpCommand *cmd, void *opaque) |
f22d85e9 | 366 | { |
8dc4d915 MW |
367 | bool whitelisted = false; |
368 | int i = 0; | |
369 | const char *name = qmp_command_name(cmd); | |
370 | ||
371 | while (ga_freeze_whitelist[i] != NULL) { | |
372 | if (strcmp(name, ga_freeze_whitelist[i]) == 0) { | |
373 | whitelisted = true; | |
f22d85e9 | 374 | } |
8dc4d915 MW |
375 | i++; |
376 | } | |
377 | if (!whitelisted) { | |
378 | g_debug("disabling command: %s", name); | |
1527badb | 379 | qmp_disable_command(&ga_commands, name); |
f22d85e9 | 380 | } |
f22d85e9 MR |
381 | } |
382 | ||
a31f0531 | 383 | /* [re-]enable all commands, except those explicitly blacklisted by user */ |
f0ccc00b | 384 | static void ga_enable_non_blacklisted(const QmpCommand *cmd, void *opaque) |
f22d85e9 | 385 | { |
8dc4d915 MW |
386 | GList *blacklist = opaque; |
387 | const char *name = qmp_command_name(cmd); | |
388 | ||
389 | if (g_list_find_custom(blacklist, name, ga_strcmp) == NULL && | |
390 | !qmp_command_is_enabled(cmd)) { | |
391 | g_debug("enabling command: %s", name); | |
1527badb | 392 | qmp_enable_command(&ga_commands, name); |
f22d85e9 | 393 | } |
f22d85e9 MR |
394 | } |
395 | ||
f789aa7b MR |
396 | static bool ga_create_file(const char *path) |
397 | { | |
398 | int fd = open(path, O_CREAT | O_WRONLY, S_IWUSR | S_IRUSR); | |
399 | if (fd == -1) { | |
400 | g_warning("unable to open/create file %s: %s", path, strerror(errno)); | |
401 | return false; | |
402 | } | |
403 | close(fd); | |
404 | return true; | |
405 | } | |
406 | ||
407 | static bool ga_delete_file(const char *path) | |
408 | { | |
409 | int ret = unlink(path); | |
410 | if (ret == -1) { | |
411 | g_warning("unable to delete file: %s: %s", path, strerror(errno)); | |
412 | return false; | |
413 | } | |
414 | ||
415 | return true; | |
416 | } | |
417 | ||
f22d85e9 MR |
418 | bool ga_is_frozen(GAState *s) |
419 | { | |
420 | return s->frozen; | |
421 | } | |
422 | ||
423 | void ga_set_frozen(GAState *s) | |
424 | { | |
425 | if (ga_is_frozen(s)) { | |
426 | return; | |
427 | } | |
428 | /* disable all non-whitelisted (for frozen state) commands */ | |
1527badb | 429 | qmp_for_each_command(&ga_commands, ga_disable_non_whitelisted, NULL); |
f22d85e9 MR |
430 | g_warning("disabling logging due to filesystem freeze"); |
431 | ga_disable_logging(s); | |
432 | s->frozen = true; | |
f789aa7b MR |
433 | if (!ga_create_file(s->state_filepath_isfrozen)) { |
434 | g_warning("unable to create %s, fsfreeze may not function properly", | |
435 | s->state_filepath_isfrozen); | |
436 | } | |
f22d85e9 MR |
437 | } |
438 | ||
439 | void ga_unset_frozen(GAState *s) | |
440 | { | |
441 | if (!ga_is_frozen(s)) { | |
442 | return; | |
443 | } | |
444 | ||
f789aa7b MR |
445 | /* if we delayed creation/opening of pid/log files due to being |
446 | * in a frozen state at start up, do it now | |
447 | */ | |
448 | if (s->deferred_options.log_filepath) { | |
9e92f6d4 | 449 | s->log_file = ga_open_logfile(s->deferred_options.log_filepath); |
f789aa7b MR |
450 | if (!s->log_file) { |
451 | s->log_file = stderr; | |
452 | } | |
453 | s->deferred_options.log_filepath = NULL; | |
454 | } | |
f22d85e9 | 455 | ga_enable_logging(s); |
f789aa7b MR |
456 | g_warning("logging re-enabled due to filesystem unfreeze"); |
457 | if (s->deferred_options.pid_filepath) { | |
9e6bdef2 MAL |
458 | Error *err = NULL; |
459 | ||
460 | if (!qemu_write_pidfile(s->deferred_options.pid_filepath, &err)) { | |
461 | g_warning("%s", error_get_pretty(err)); | |
462 | error_free(err); | |
f789aa7b MR |
463 | } |
464 | s->deferred_options.pid_filepath = NULL; | |
465 | } | |
f22d85e9 MR |
466 | |
467 | /* enable all disabled, non-blacklisted commands */ | |
1527badb | 468 | qmp_for_each_command(&ga_commands, ga_enable_non_blacklisted, s->blacklist); |
f22d85e9 | 469 | s->frozen = false; |
f789aa7b MR |
470 | if (!ga_delete_file(s->state_filepath_isfrozen)) { |
471 | g_warning("unable to delete %s, fsfreeze may not function properly", | |
472 | s->state_filepath_isfrozen); | |
473 | } | |
f22d85e9 MR |
474 | } |
475 | ||
ec0f694c TS |
476 | #ifdef CONFIG_FSFREEZE |
477 | const char *ga_fsfreeze_hook(GAState *s) | |
478 | { | |
479 | return s->fsfreeze_hook; | |
480 | } | |
481 | #endif | |
482 | ||
48ff7a62 MR |
483 | static void become_daemon(const char *pidfile) |
484 | { | |
f789aa7b | 485 | #ifndef _WIN32 |
48ff7a62 | 486 | pid_t pid, sid; |
48ff7a62 MR |
487 | |
488 | pid = fork(); | |
489 | if (pid < 0) { | |
490 | exit(EXIT_FAILURE); | |
491 | } | |
492 | if (pid > 0) { | |
493 | exit(EXIT_SUCCESS); | |
494 | } | |
495 | ||
f789aa7b | 496 | if (pidfile) { |
9e6bdef2 MAL |
497 | Error *err = NULL; |
498 | ||
499 | if (!qemu_write_pidfile(pidfile, &err)) { | |
500 | g_critical("%s", error_get_pretty(err)); | |
501 | error_free(err); | |
f789aa7b MR |
502 | exit(EXIT_FAILURE); |
503 | } | |
48ff7a62 MR |
504 | } |
505 | ||
c689b4f1 | 506 | umask(S_IRWXG | S_IRWXO); |
48ff7a62 MR |
507 | sid = setsid(); |
508 | if (sid < 0) { | |
509 | goto fail; | |
510 | } | |
511 | if ((chdir("/")) < 0) { | |
512 | goto fail; | |
513 | } | |
514 | ||
226a4894 LC |
515 | reopen_fd_to_null(STDIN_FILENO); |
516 | reopen_fd_to_null(STDOUT_FILENO); | |
517 | reopen_fd_to_null(STDERR_FILENO); | |
48ff7a62 MR |
518 | return; |
519 | ||
520 | fail: | |
4bdb1a30 SW |
521 | if (pidfile) { |
522 | unlink(pidfile); | |
523 | } | |
48ff7a62 MR |
524 | g_critical("failed to daemonize"); |
525 | exit(EXIT_FAILURE); | |
d8ca685a | 526 | #endif |
f789aa7b | 527 | } |
48ff7a62 | 528 | |
781f2b3d | 529 | static int send_response(GAState *s, const QDict *rsp) |
48ff7a62 | 530 | { |
48ff7a62 | 531 | const char *buf; |
3cf0bed8 | 532 | QString *payload_qstr, *response_qstr; |
125b310e | 533 | GIOStatus status; |
48ff7a62 | 534 | |
844bd70b MAL |
535 | g_assert(s->channel); |
536 | ||
537 | if (!rsp) { | |
538 | return 0; | |
539 | } | |
48ff7a62 | 540 | |
781f2b3d | 541 | payload_qstr = qobject_to_json(QOBJECT(rsp)); |
48ff7a62 MR |
542 | if (!payload_qstr) { |
543 | return -EINVAL; | |
544 | } | |
545 | ||
3cf0bed8 MR |
546 | if (s->delimit_response) { |
547 | s->delimit_response = false; | |
548 | response_qstr = qstring_new(); | |
549 | qstring_append_chr(response_qstr, QGA_SENTINEL_BYTE); | |
550 | qstring_append(response_qstr, qstring_get_str(payload_qstr)); | |
cb3e7f08 | 551 | qobject_unref(payload_qstr); |
3cf0bed8 MR |
552 | } else { |
553 | response_qstr = payload_qstr; | |
554 | } | |
555 | ||
556 | qstring_append_chr(response_qstr, '\n'); | |
557 | buf = qstring_get_str(response_qstr); | |
125b310e | 558 | status = ga_channel_write_all(s->channel, buf, strlen(buf)); |
cb3e7f08 | 559 | qobject_unref(response_qstr); |
125b310e MR |
560 | if (status != G_IO_STATUS_NORMAL) { |
561 | return -EIO; | |
48ff7a62 | 562 | } |
125b310e MR |
563 | |
564 | return 0; | |
48ff7a62 MR |
565 | } |
566 | ||
48ff7a62 | 567 | /* handle requests/control events coming in over the channel */ |
62815d85 | 568 | static void process_event(void *opaque, QObject *obj, Error *err) |
48ff7a62 | 569 | { |
62815d85 | 570 | GAState *s = opaque; |
781f2b3d | 571 | QDict *rsp; |
48ff7a62 MR |
572 | int ret; |
573 | ||
48ff7a62 | 574 | g_debug("process_event: called"); |
84a56f38 | 575 | assert(!obj != !err); |
ae7da1e5 | 576 | if (err) { |
781f2b3d MAL |
577 | rsp = qmp_error_response(err); |
578 | goto end; | |
48ff7a62 MR |
579 | } |
580 | ||
781f2b3d | 581 | g_debug("processing command"); |
41725fa7 | 582 | rsp = qmp_dispatch(&ga_commands, obj, false, NULL); |
ae7da1e5 | 583 | |
781f2b3d | 584 | end: |
ae7da1e5 MAL |
585 | ret = send_response(s, rsp); |
586 | if (ret < 0) { | |
587 | g_warning("error sending error response: %s", strerror(-ret)); | |
588 | } | |
589 | qobject_unref(rsp); | |
590 | qobject_unref(obj); | |
48ff7a62 MR |
591 | } |
592 | ||
125b310e MR |
593 | /* false return signals GAChannel to close the current client connection */ |
594 | static gboolean channel_event_cb(GIOCondition condition, gpointer data) | |
48ff7a62 MR |
595 | { |
596 | GAState *s = data; | |
125b310e | 597 | gchar buf[QGA_READ_COUNT_DEFAULT+1]; |
48ff7a62 | 598 | gsize count; |
125b310e | 599 | GIOStatus status = ga_channel_read(s->channel, buf, QGA_READ_COUNT_DEFAULT, &count); |
48ff7a62 MR |
600 | switch (status) { |
601 | case G_IO_STATUS_ERROR: | |
125b310e | 602 | g_warning("error reading channel"); |
d951fada | 603 | stop_agent(s, false); |
48ff7a62 MR |
604 | return false; |
605 | case G_IO_STATUS_NORMAL: | |
125b310e | 606 | buf[count] = 0; |
48ff7a62 MR |
607 | g_debug("read data, count: %d, data: %s", (int)count, buf); |
608 | json_message_parser_feed(&s->parser, (char *)buf, (int)count); | |
125b310e MR |
609 | break; |
610 | case G_IO_STATUS_EOF: | |
611 | g_debug("received EOF"); | |
612 | if (!s->virtio) { | |
613 | return false; | |
614 | } | |
f5b79578 | 615 | /* fall through */ |
48ff7a62 MR |
616 | case G_IO_STATUS_AGAIN: |
617 | /* virtio causes us to spin here when no process is attached to | |
618 | * host-side chardev. sleep a bit to mitigate this | |
619 | */ | |
620 | if (s->virtio) { | |
621 | usleep(100*1000); | |
622 | } | |
623 | return true; | |
48ff7a62 MR |
624 | default: |
625 | g_warning("unknown channel read status, closing"); | |
48ff7a62 MR |
626 | return false; |
627 | } | |
628 | return true; | |
629 | } | |
630 | ||
26de2296 SH |
631 | static gboolean channel_init(GAState *s, const gchar *method, const gchar *path, |
632 | int listen_fd) | |
48ff7a62 | 633 | { |
125b310e | 634 | GAChannelMethod channel_method; |
48ff7a62 | 635 | |
125b310e MR |
636 | if (strcmp(method, "virtio-serial") == 0) { |
637 | s->virtio = true; /* virtio requires special handling in some cases */ | |
638 | channel_method = GA_CHANNEL_VIRTIO_SERIAL; | |
639 | } else if (strcmp(method, "isa-serial") == 0) { | |
640 | channel_method = GA_CHANNEL_ISA_SERIAL; | |
641 | } else if (strcmp(method, "unix-listen") == 0) { | |
642 | channel_method = GA_CHANNEL_UNIX_LISTEN; | |
586ef5de SH |
643 | } else if (strcmp(method, "vsock-listen") == 0) { |
644 | channel_method = GA_CHANNEL_VSOCK_LISTEN; | |
48ff7a62 | 645 | } else { |
125b310e MR |
646 | g_critical("unsupported channel method/type: %s", method); |
647 | return false; | |
48ff7a62 MR |
648 | } |
649 | ||
26de2296 SH |
650 | s->channel = ga_channel_new(channel_method, path, listen_fd, |
651 | channel_event_cb, s); | |
125b310e MR |
652 | if (!s->channel) { |
653 | g_critical("failed to create guest agent channel"); | |
654 | return false; | |
655 | } | |
656 | ||
657 | return true; | |
48ff7a62 MR |
658 | } |
659 | ||
bc62fa03 | 660 | #ifdef _WIN32 |
b70d6afe BA |
661 | DWORD WINAPI handle_serial_device_events(DWORD type, LPVOID data) |
662 | { | |
663 | DWORD ret = NO_ERROR; | |
664 | PDEV_BROADCAST_HDR broadcast_header = (PDEV_BROADCAST_HDR)data; | |
665 | ||
666 | if (broadcast_header->dbch_devicetype == DBT_DEVTYP_DEVICEINTERFACE) { | |
667 | switch (type) { | |
668 | /* Device inserted */ | |
669 | case DBT_DEVICEARRIVAL: | |
670 | /* Start QEMU-ga's service */ | |
671 | if (!SetEvent(ga_state->wakeup_event)) { | |
672 | ret = GetLastError(); | |
673 | } | |
674 | break; | |
675 | /* Device removed */ | |
676 | case DBT_DEVICEQUERYREMOVE: | |
677 | case DBT_DEVICEREMOVEPENDING: | |
678 | case DBT_DEVICEREMOVECOMPLETE: | |
679 | /* Stop QEMU-ga's service */ | |
680 | if (!ResetEvent(ga_state->wakeup_event)) { | |
681 | ret = GetLastError(); | |
682 | } | |
683 | break; | |
684 | default: | |
685 | ret = ERROR_CALL_NOT_IMPLEMENTED; | |
686 | } | |
687 | } | |
688 | return ret; | |
689 | } | |
690 | ||
bc62fa03 MR |
691 | DWORD WINAPI service_ctrl_handler(DWORD ctrl, DWORD type, LPVOID data, |
692 | LPVOID ctx) | |
693 | { | |
694 | DWORD ret = NO_ERROR; | |
695 | GAService *service = &ga_state->service; | |
696 | ||
697 | switch (ctrl) | |
698 | { | |
699 | case SERVICE_CONTROL_STOP: | |
700 | case SERVICE_CONTROL_SHUTDOWN: | |
701 | quit_handler(SIGTERM); | |
b70d6afe | 702 | SetEvent(ga_state->wakeup_event); |
bc62fa03 MR |
703 | service->status.dwCurrentState = SERVICE_STOP_PENDING; |
704 | SetServiceStatus(service->status_handle, &service->status); | |
705 | break; | |
b70d6afe BA |
706 | case SERVICE_CONTROL_DEVICEEVENT: |
707 | handle_serial_device_events(type, data); | |
708 | break; | |
bc62fa03 MR |
709 | |
710 | default: | |
711 | ret = ERROR_CALL_NOT_IMPLEMENTED; | |
712 | } | |
713 | return ret; | |
714 | } | |
715 | ||
716 | VOID WINAPI service_main(DWORD argc, TCHAR *argv[]) | |
717 | { | |
718 | GAService *service = &ga_state->service; | |
719 | ||
720 | service->status_handle = RegisterServiceCtrlHandlerEx(QGA_SERVICE_NAME, | |
721 | service_ctrl_handler, NULL); | |
722 | ||
723 | if (service->status_handle == 0) { | |
724 | g_critical("Failed to register extended requests function!\n"); | |
725 | return; | |
726 | } | |
727 | ||
728 | service->status.dwServiceType = SERVICE_WIN32; | |
729 | service->status.dwCurrentState = SERVICE_RUNNING; | |
730 | service->status.dwControlsAccepted = SERVICE_ACCEPT_STOP | SERVICE_ACCEPT_SHUTDOWN; | |
731 | service->status.dwWin32ExitCode = NO_ERROR; | |
732 | service->status.dwServiceSpecificExitCode = NO_ERROR; | |
733 | service->status.dwCheckPoint = 0; | |
734 | service->status.dwWaitHint = 0; | |
b70d6afe BA |
735 | DEV_BROADCAST_DEVICEINTERFACE notification_filter; |
736 | ZeroMemory(¬ification_filter, sizeof(notification_filter)); | |
737 | notification_filter.dbcc_devicetype = DBT_DEVTYP_DEVICEINTERFACE; | |
738 | notification_filter.dbcc_size = sizeof(DEV_BROADCAST_DEVICEINTERFACE); | |
739 | notification_filter.dbcc_classguid = GUID_VIOSERIAL_PORT; | |
740 | ||
741 | service->device_notification_handle = | |
742 | RegisterDeviceNotification(service->status_handle, | |
743 | ¬ification_filter, DEVICE_NOTIFY_SERVICE_HANDLE); | |
744 | if (!service->device_notification_handle) { | |
745 | g_critical("Failed to register device notification handle!\n"); | |
746 | return; | |
747 | } | |
bc62fa03 MR |
748 | SetServiceStatus(service->status_handle, &service->status); |
749 | ||
d88495a8 | 750 | run_agent(ga_state); |
bc62fa03 | 751 | |
b70d6afe | 752 | UnregisterDeviceNotification(service->device_notification_handle); |
bc62fa03 MR |
753 | service->status.dwCurrentState = SERVICE_STOPPED; |
754 | SetServiceStatus(service->status_handle, &service->status); | |
755 | } | |
756 | #endif | |
757 | ||
39097daf MR |
758 | static void set_persistent_state_defaults(GAPersistentState *pstate) |
759 | { | |
760 | g_assert(pstate); | |
761 | pstate->fd_counter = QGA_PSTATE_DEFAULT_FD_COUNTER; | |
762 | } | |
763 | ||
764 | static void persistent_state_from_keyfile(GAPersistentState *pstate, | |
765 | GKeyFile *keyfile) | |
766 | { | |
767 | g_assert(pstate); | |
768 | g_assert(keyfile); | |
769 | /* if any fields are missing, either because the file was tampered with | |
770 | * by agents of chaos, or because the field wasn't present at the time the | |
771 | * file was created, the best we can ever do is start over with the default | |
772 | * values. so load them now, and ignore any errors in accessing key-value | |
773 | * pairs | |
774 | */ | |
775 | set_persistent_state_defaults(pstate); | |
776 | ||
777 | if (g_key_file_has_key(keyfile, "global", "fd_counter", NULL)) { | |
778 | pstate->fd_counter = | |
4f306496 | 779 | g_key_file_get_integer(keyfile, "global", "fd_counter", NULL); |
39097daf MR |
780 | } |
781 | } | |
782 | ||
783 | static void persistent_state_to_keyfile(const GAPersistentState *pstate, | |
784 | GKeyFile *keyfile) | |
785 | { | |
786 | g_assert(pstate); | |
787 | g_assert(keyfile); | |
788 | ||
4f306496 | 789 | g_key_file_set_integer(keyfile, "global", "fd_counter", pstate->fd_counter); |
39097daf MR |
790 | } |
791 | ||
792 | static gboolean write_persistent_state(const GAPersistentState *pstate, | |
793 | const gchar *path) | |
794 | { | |
795 | GKeyFile *keyfile = g_key_file_new(); | |
796 | GError *gerr = NULL; | |
797 | gboolean ret = true; | |
798 | gchar *data = NULL; | |
799 | gsize data_len; | |
800 | ||
801 | g_assert(pstate); | |
802 | ||
803 | persistent_state_to_keyfile(pstate, keyfile); | |
804 | data = g_key_file_to_data(keyfile, &data_len, &gerr); | |
805 | if (gerr) { | |
806 | g_critical("failed to convert persistent state to string: %s", | |
807 | gerr->message); | |
808 | ret = false; | |
809 | goto out; | |
810 | } | |
811 | ||
812 | g_file_set_contents(path, data, data_len, &gerr); | |
813 | if (gerr) { | |
814 | g_critical("failed to write persistent state to %s: %s", | |
815 | path, gerr->message); | |
816 | ret = false; | |
817 | goto out; | |
818 | } | |
819 | ||
820 | out: | |
821 | if (gerr) { | |
822 | g_error_free(gerr); | |
823 | } | |
824 | if (keyfile) { | |
825 | g_key_file_free(keyfile); | |
826 | } | |
827 | g_free(data); | |
828 | return ret; | |
829 | } | |
830 | ||
831 | static gboolean read_persistent_state(GAPersistentState *pstate, | |
832 | const gchar *path, gboolean frozen) | |
833 | { | |
834 | GKeyFile *keyfile = NULL; | |
835 | GError *gerr = NULL; | |
836 | struct stat st; | |
837 | gboolean ret = true; | |
838 | ||
839 | g_assert(pstate); | |
840 | ||
841 | if (stat(path, &st) == -1) { | |
842 | /* it's okay if state file doesn't exist, but any other error | |
843 | * indicates a permissions issue or some other misconfiguration | |
844 | * that we likely won't be able to recover from. | |
845 | */ | |
846 | if (errno != ENOENT) { | |
847 | g_critical("unable to access state file at path %s: %s", | |
848 | path, strerror(errno)); | |
849 | ret = false; | |
850 | goto out; | |
851 | } | |
852 | ||
853 | /* file doesn't exist. initialize state to default values and | |
854 | * attempt to save now. (we could wait till later when we have | |
855 | * modified state we need to commit, but if there's a problem, | |
856 | * such as a missing parent directory, we want to catch it now) | |
857 | * | |
858 | * there is a potential scenario where someone either managed to | |
859 | * update the agent from a version that didn't use a key store | |
860 | * while qemu-ga thought the filesystem was frozen, or | |
861 | * deleted the key store prior to issuing a fsfreeze, prior | |
862 | * to restarting the agent. in this case we go ahead and defer | |
863 | * initial creation till we actually have modified state to | |
864 | * write, otherwise fail to recover from freeze. | |
865 | */ | |
866 | set_persistent_state_defaults(pstate); | |
867 | if (!frozen) { | |
868 | ret = write_persistent_state(pstate, path); | |
869 | if (!ret) { | |
870 | g_critical("unable to create state file at path %s", path); | |
871 | ret = false; | |
872 | goto out; | |
873 | } | |
874 | } | |
875 | ret = true; | |
876 | goto out; | |
877 | } | |
878 | ||
879 | keyfile = g_key_file_new(); | |
880 | g_key_file_load_from_file(keyfile, path, 0, &gerr); | |
881 | if (gerr) { | |
882 | g_critical("error loading persistent state from path: %s, %s", | |
883 | path, gerr->message); | |
884 | ret = false; | |
885 | goto out; | |
886 | } | |
887 | ||
888 | persistent_state_from_keyfile(pstate, keyfile); | |
889 | ||
890 | out: | |
891 | if (keyfile) { | |
892 | g_key_file_free(keyfile); | |
893 | } | |
894 | if (gerr) { | |
895 | g_error_free(gerr); | |
896 | } | |
897 | ||
898 | return ret; | |
899 | } | |
900 | ||
901 | int64_t ga_get_fd_handle(GAState *s, Error **errp) | |
902 | { | |
903 | int64_t handle; | |
904 | ||
905 | g_assert(s->pstate_filepath); | |
906 | /* we blacklist commands and avoid operations that potentially require | |
907 | * writing to disk when we're in a frozen state. this includes opening | |
908 | * new files, so we should never get here in that situation | |
909 | */ | |
910 | g_assert(!ga_is_frozen(s)); | |
911 | ||
912 | handle = s->pstate.fd_counter++; | |
ce7f7cc2 LC |
913 | |
914 | /* This should never happen on a reasonable timeframe, as guest-file-open | |
915 | * would have to be issued 2^63 times */ | |
916 | if (s->pstate.fd_counter == INT64_MAX) { | |
917 | abort(); | |
39097daf | 918 | } |
ce7f7cc2 | 919 | |
39097daf MR |
920 | if (!write_persistent_state(&s->pstate, s->pstate_filepath)) { |
921 | error_setg(errp, "failed to commit persistent state to disk"); | |
a903f40c | 922 | return -1; |
39097daf MR |
923 | } |
924 | ||
925 | return handle; | |
926 | } | |
927 | ||
f0ccc00b | 928 | static void ga_print_cmd(const QmpCommand *cmd, void *opaque) |
8dc4d915 MW |
929 | { |
930 | printf("%s\n", qmp_command_name(cmd)); | |
931 | } | |
932 | ||
4bca81ce | 933 | static GList *split_list(const gchar *str, const gchar *delim) |
23b42894 MAL |
934 | { |
935 | GList *list = NULL; | |
4bca81ce MAL |
936 | int i; |
937 | gchar **strv; | |
23b42894 | 938 | |
4bca81ce MAL |
939 | strv = g_strsplit(str, delim, -1); |
940 | for (i = 0; strv[i]; i++) { | |
941 | list = g_list_prepend(list, strv[i]); | |
23b42894 | 942 | } |
4bca81ce | 943 | g_free(strv); |
23b42894 MAL |
944 | |
945 | return list; | |
946 | } | |
947 | ||
0f4d3a49 | 948 | struct GAConfig { |
7a406694 MAL |
949 | char *channel_path; |
950 | char *method; | |
951 | char *log_filepath; | |
952 | char *pid_filepath; | |
ec0f694c | 953 | #ifdef CONFIG_FSFREEZE |
7a406694 | 954 | char *fsfreeze_hook; |
ec0f694c | 955 | #endif |
7a406694 | 956 | char *state_dir; |
bc62fa03 | 957 | #ifdef _WIN32 |
7a406694 | 958 | const char *service; |
bc62fa03 | 959 | #endif |
e236d060 | 960 | gchar *bliststr; /* blacklist may point to this string */ |
7a406694 MAL |
961 | GList *blacklist; |
962 | int daemonize; | |
963 | GLogLevelFlags log_level; | |
aeadcbb6 | 964 | int dumpconf; |
d951fada | 965 | bool retry_path; |
0f4d3a49 | 966 | }; |
7a406694 | 967 | |
e236d060 MAL |
968 | static void config_load(GAConfig *config) |
969 | { | |
970 | GError *gerr = NULL; | |
971 | GKeyFile *keyfile; | |
a9eacf8b | 972 | g_autofree char *conf = g_strdup(g_getenv("QGA_CONF")) ?: get_relocated_path(QGA_CONF_DEFAULT); |
e236d060 MAL |
973 | |
974 | /* read system config */ | |
975 | keyfile = g_key_file_new(); | |
8e34bf36 | 976 | if (!g_key_file_load_from_file(keyfile, conf, 0, &gerr)) { |
e236d060 MAL |
977 | goto end; |
978 | } | |
979 | if (g_key_file_has_key(keyfile, "general", "daemon", NULL)) { | |
980 | config->daemonize = | |
981 | g_key_file_get_boolean(keyfile, "general", "daemon", &gerr); | |
982 | } | |
983 | if (g_key_file_has_key(keyfile, "general", "method", NULL)) { | |
984 | config->method = | |
985 | g_key_file_get_string(keyfile, "general", "method", &gerr); | |
986 | } | |
987 | if (g_key_file_has_key(keyfile, "general", "path", NULL)) { | |
988 | config->channel_path = | |
989 | g_key_file_get_string(keyfile, "general", "path", &gerr); | |
990 | } | |
991 | if (g_key_file_has_key(keyfile, "general", "logfile", NULL)) { | |
992 | config->log_filepath = | |
993 | g_key_file_get_string(keyfile, "general", "logfile", &gerr); | |
994 | } | |
995 | if (g_key_file_has_key(keyfile, "general", "pidfile", NULL)) { | |
996 | config->pid_filepath = | |
997 | g_key_file_get_string(keyfile, "general", "pidfile", &gerr); | |
998 | } | |
999 | #ifdef CONFIG_FSFREEZE | |
1000 | if (g_key_file_has_key(keyfile, "general", "fsfreeze-hook", NULL)) { | |
1001 | config->fsfreeze_hook = | |
1002 | g_key_file_get_string(keyfile, | |
1003 | "general", "fsfreeze-hook", &gerr); | |
1004 | } | |
1005 | #endif | |
1006 | if (g_key_file_has_key(keyfile, "general", "statedir", NULL)) { | |
1007 | config->state_dir = | |
1008 | g_key_file_get_string(keyfile, "general", "statedir", &gerr); | |
1009 | } | |
1010 | if (g_key_file_has_key(keyfile, "general", "verbose", NULL) && | |
1011 | g_key_file_get_boolean(keyfile, "general", "verbose", &gerr)) { | |
1012 | /* enable all log levels */ | |
1013 | config->log_level = G_LOG_LEVEL_MASK; | |
1014 | } | |
d951fada MR |
1015 | if (g_key_file_has_key(keyfile, "general", "retry-path", NULL)) { |
1016 | config->retry_path = | |
1017 | g_key_file_get_boolean(keyfile, "general", "retry-path", &gerr); | |
1018 | } | |
e236d060 MAL |
1019 | if (g_key_file_has_key(keyfile, "general", "blacklist", NULL)) { |
1020 | config->bliststr = | |
1021 | g_key_file_get_string(keyfile, "general", "blacklist", &gerr); | |
1022 | config->blacklist = g_list_concat(config->blacklist, | |
1023 | split_list(config->bliststr, ",")); | |
1024 | } | |
1025 | ||
1026 | end: | |
1027 | g_key_file_free(keyfile); | |
1028 | if (gerr && | |
1029 | !(gerr->domain == G_FILE_ERROR && gerr->code == G_FILE_ERROR_NOENT)) { | |
1030 | g_critical("error loading configuration from path: %s, %s", | |
a9eacf8b | 1031 | conf, gerr->message); |
e236d060 MAL |
1032 | exit(EXIT_FAILURE); |
1033 | } | |
1034 | g_clear_error(&gerr); | |
1035 | } | |
1036 | ||
aeadcbb6 MAL |
1037 | static gchar *list_join(GList *list, const gchar separator) |
1038 | { | |
1039 | GString *str = g_string_new(""); | |
1040 | ||
1041 | while (list) { | |
1042 | str = g_string_append(str, (gchar *)list->data); | |
1043 | list = g_list_next(list); | |
1044 | if (list) { | |
1045 | str = g_string_append_c(str, separator); | |
1046 | } | |
1047 | } | |
1048 | ||
1049 | return g_string_free(str, FALSE); | |
1050 | } | |
1051 | ||
1052 | static void config_dump(GAConfig *config) | |
1053 | { | |
1054 | GError *error = NULL; | |
1055 | GKeyFile *keyfile; | |
1056 | gchar *tmp; | |
1057 | ||
1058 | keyfile = g_key_file_new(); | |
1059 | g_assert(keyfile); | |
1060 | ||
1061 | g_key_file_set_boolean(keyfile, "general", "daemon", config->daemonize); | |
1062 | g_key_file_set_string(keyfile, "general", "method", config->method); | |
26de2296 SH |
1063 | if (config->channel_path) { |
1064 | g_key_file_set_string(keyfile, "general", "path", config->channel_path); | |
1065 | } | |
aeadcbb6 MAL |
1066 | if (config->log_filepath) { |
1067 | g_key_file_set_string(keyfile, "general", "logfile", | |
1068 | config->log_filepath); | |
1069 | } | |
1070 | g_key_file_set_string(keyfile, "general", "pidfile", config->pid_filepath); | |
1071 | #ifdef CONFIG_FSFREEZE | |
1072 | if (config->fsfreeze_hook) { | |
1073 | g_key_file_set_string(keyfile, "general", "fsfreeze-hook", | |
1074 | config->fsfreeze_hook); | |
1075 | } | |
1076 | #endif | |
1077 | g_key_file_set_string(keyfile, "general", "statedir", config->state_dir); | |
1078 | g_key_file_set_boolean(keyfile, "general", "verbose", | |
1079 | config->log_level == G_LOG_LEVEL_MASK); | |
d951fada MR |
1080 | g_key_file_set_boolean(keyfile, "general", "retry-path", |
1081 | config->retry_path); | |
aeadcbb6 MAL |
1082 | tmp = list_join(config->blacklist, ','); |
1083 | g_key_file_set_string(keyfile, "general", "blacklist", tmp); | |
1084 | g_free(tmp); | |
1085 | ||
1086 | tmp = g_key_file_to_data(keyfile, NULL, &error); | |
cbcd9ba1 MAL |
1087 | if (error) { |
1088 | g_critical("Failed to dump keyfile: %s", error->message); | |
1089 | g_clear_error(&error); | |
1090 | } else { | |
1091 | printf("%s", tmp); | |
1092 | } | |
aeadcbb6 MAL |
1093 | |
1094 | g_free(tmp); | |
1095 | g_key_file_free(keyfile); | |
1096 | } | |
1097 | ||
e236d060 | 1098 | static void config_parse(GAConfig *config, int argc, char **argv) |
7a406694 | 1099 | { |
d951fada | 1100 | const char *sopt = "hVvdm:p:l:f:F::b:s:t:Dr"; |
7a406694 | 1101 | int opt_ind = 0, ch; |
48ff7a62 MR |
1102 | const struct option lopt[] = { |
1103 | { "help", 0, NULL, 'h' }, | |
1104 | { "version", 0, NULL, 'V' }, | |
aeadcbb6 | 1105 | { "dump-conf", 0, NULL, 'D' }, |
bc62fa03 MR |
1106 | { "logfile", 1, NULL, 'l' }, |
1107 | { "pidfile", 1, NULL, 'f' }, | |
ec0f694c TS |
1108 | #ifdef CONFIG_FSFREEZE |
1109 | { "fsfreeze-hook", 2, NULL, 'F' }, | |
1110 | #endif | |
48ff7a62 | 1111 | { "verbose", 0, NULL, 'v' }, |
bc62fa03 MR |
1112 | { "method", 1, NULL, 'm' }, |
1113 | { "path", 1, NULL, 'p' }, | |
48ff7a62 | 1114 | { "daemonize", 0, NULL, 'd' }, |
bc62fa03 MR |
1115 | { "blacklist", 1, NULL, 'b' }, |
1116 | #ifdef _WIN32 | |
1117 | { "service", 1, NULL, 's' }, | |
f22d85e9 | 1118 | #endif |
f789aa7b | 1119 | { "statedir", 1, NULL, 't' }, |
d951fada | 1120 | { "retry-path", 0, NULL, 'r' }, |
48ff7a62 MR |
1121 | { NULL, 0, NULL, 0 } |
1122 | }; | |
48ff7a62 MR |
1123 | |
1124 | while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) { | |
1125 | switch (ch) { | |
1126 | case 'm': | |
e236d060 | 1127 | g_free(config->method); |
7a406694 | 1128 | config->method = g_strdup(optarg); |
48ff7a62 MR |
1129 | break; |
1130 | case 'p': | |
e236d060 | 1131 | g_free(config->channel_path); |
7a406694 | 1132 | config->channel_path = g_strdup(optarg); |
48ff7a62 MR |
1133 | break; |
1134 | case 'l': | |
e236d060 | 1135 | g_free(config->log_filepath); |
7a406694 | 1136 | config->log_filepath = g_strdup(optarg); |
48ff7a62 MR |
1137 | break; |
1138 | case 'f': | |
e236d060 | 1139 | g_free(config->pid_filepath); |
7a406694 | 1140 | config->pid_filepath = g_strdup(optarg); |
48ff7a62 | 1141 | break; |
ec0f694c TS |
1142 | #ifdef CONFIG_FSFREEZE |
1143 | case 'F': | |
e236d060 | 1144 | g_free(config->fsfreeze_hook); |
a9eacf8b | 1145 | config->fsfreeze_hook = optarg ? g_strdup(optarg) : get_relocated_path(QGA_FSFREEZE_HOOK_DEFAULT); |
ec0f694c TS |
1146 | break; |
1147 | #endif | |
f789aa7b | 1148 | case 't': |
e236d060 | 1149 | g_free(config->state_dir); |
7a406694 | 1150 | config->state_dir = g_strdup(optarg); |
2e38d990 | 1151 | break; |
48ff7a62 MR |
1152 | case 'v': |
1153 | /* enable all log levels */ | |
7a406694 | 1154 | config->log_level = G_LOG_LEVEL_MASK; |
48ff7a62 MR |
1155 | break; |
1156 | case 'V': | |
8efacc43 | 1157 | printf("QEMU Guest Agent %s\n", QEMU_VERSION); |
c6c84523 | 1158 | exit(EXIT_SUCCESS); |
48ff7a62 | 1159 | case 'd': |
7a406694 | 1160 | config->daemonize = 1; |
48ff7a62 | 1161 | break; |
aeadcbb6 MAL |
1162 | case 'D': |
1163 | config->dumpconf = 1; | |
1164 | break; | |
d951fada MR |
1165 | case 'r': |
1166 | config->retry_path = true; | |
1167 | break; | |
abd6cf6d | 1168 | case 'b': { |
c8057f95 | 1169 | if (is_help_option(optarg)) { |
1527badb | 1170 | qmp_for_each_command(&ga_commands, ga_print_cmd, NULL); |
c6c84523 | 1171 | exit(EXIT_SUCCESS); |
abd6cf6d | 1172 | } |
7a406694 MAL |
1173 | config->blacklist = g_list_concat(config->blacklist, |
1174 | split_list(optarg, ",")); | |
abd6cf6d MR |
1175 | break; |
1176 | } | |
bc62fa03 MR |
1177 | #ifdef _WIN32 |
1178 | case 's': | |
7a406694 MAL |
1179 | config->service = optarg; |
1180 | if (strcmp(config->service, "install") == 0) { | |
f311f2c2 | 1181 | if (ga_install_vss_provider()) { |
c6c84523 | 1182 | exit(EXIT_FAILURE); |
f311f2c2 | 1183 | } |
7a406694 MAL |
1184 | if (ga_install_service(config->channel_path, |
1185 | config->log_filepath, config->state_dir)) { | |
c6c84523 | 1186 | exit(EXIT_FAILURE); |
f311f2c2 | 1187 | } |
c6c84523 | 1188 | exit(EXIT_SUCCESS); |
7a406694 | 1189 | } else if (strcmp(config->service, "uninstall") == 0) { |
f311f2c2 | 1190 | ga_uninstall_vss_provider(); |
c6c84523 | 1191 | exit(ga_uninstall_service()); |
7a406694 | 1192 | } else if (strcmp(config->service, "vss-install") == 0) { |
5e031072 | 1193 | if (ga_install_vss_provider()) { |
c6c84523 | 1194 | exit(EXIT_FAILURE); |
5e031072 | 1195 | } |
c6c84523 | 1196 | exit(EXIT_SUCCESS); |
7a406694 | 1197 | } else if (strcmp(config->service, "vss-uninstall") == 0) { |
5e031072 | 1198 | ga_uninstall_vss_provider(); |
c6c84523 | 1199 | exit(EXIT_SUCCESS); |
bc62fa03 MR |
1200 | } else { |
1201 | printf("Unknown service command.\n"); | |
c6c84523 | 1202 | exit(EXIT_FAILURE); |
bc62fa03 MR |
1203 | } |
1204 | break; | |
1205 | #endif | |
48ff7a62 MR |
1206 | case 'h': |
1207 | usage(argv[0]); | |
c6c84523 | 1208 | exit(EXIT_SUCCESS); |
48ff7a62 MR |
1209 | case '?': |
1210 | g_print("Unknown option, try '%s --help' for more information.\n", | |
1211 | argv[0]); | |
c6c84523 | 1212 | exit(EXIT_FAILURE); |
48ff7a62 MR |
1213 | } |
1214 | } | |
7a406694 MAL |
1215 | } |
1216 | ||
1217 | static void config_free(GAConfig *config) | |
1218 | { | |
1219 | g_free(config->method); | |
1220 | g_free(config->log_filepath); | |
1221 | g_free(config->pid_filepath); | |
1222 | g_free(config->state_dir); | |
1223 | g_free(config->channel_path); | |
e236d060 | 1224 | g_free(config->bliststr); |
7a406694 MAL |
1225 | #ifdef CONFIG_FSFREEZE |
1226 | g_free(config->fsfreeze_hook); | |
1227 | #endif | |
2aa67a91 | 1228 | g_list_free_full(config->blacklist, g_free); |
7a406694 MAL |
1229 | g_free(config); |
1230 | } | |
1231 | ||
e3d31039 | 1232 | static bool check_is_frozen(GAState *s) |
7a406694 | 1233 | { |
f789aa7b MR |
1234 | #ifndef _WIN32 |
1235 | /* check if a previous instance of qemu-ga exited with filesystems' state | |
1236 | * marked as frozen. this could be a stale value (a non-qemu-ga process | |
1237 | * or reboot may have since unfrozen them), but better to require an | |
1238 | * uneeded unfreeze than to risk hanging on start-up | |
1239 | */ | |
1240 | struct stat st; | |
1241 | if (stat(s->state_filepath_isfrozen, &st) == -1) { | |
1242 | /* it's okay if the file doesn't exist, but if we can't access for | |
1243 | * some other reason, such as permissions, there's a configuration | |
1244 | * that needs to be addressed. so just bail now before we get into | |
1245 | * more trouble later | |
1246 | */ | |
1247 | if (errno != ENOENT) { | |
1248 | g_critical("unable to access state file at path %s: %s", | |
1249 | s->state_filepath_isfrozen, strerror(errno)); | |
1250 | return EXIT_FAILURE; | |
1251 | } | |
1252 | } else { | |
1253 | g_warning("previous instance appears to have exited with frozen" | |
1254 | " filesystems. deferring logging/pidfile creation and" | |
1255 | " disabling non-fsfreeze-safe commands until" | |
1256 | " guest-fsfreeze-thaw is issued, or filesystems are" | |
1257 | " manually unfrozen and the file %s is removed", | |
1258 | s->state_filepath_isfrozen); | |
e3d31039 MAL |
1259 | return true; |
1260 | } | |
1261 | #endif | |
1262 | return false; | |
1263 | } | |
1264 | ||
0f4d3a49 | 1265 | static GAState *initialize_agent(GAConfig *config, int socket_activation) |
e3d31039 | 1266 | { |
50d5b3c4 MR |
1267 | GAState *s = g_new0(GAState, 1); |
1268 | ||
1269 | g_assert(ga_state == NULL); | |
1270 | ||
1271 | s->log_level = config->log_level; | |
1272 | s->log_file = stderr; | |
1273 | #ifdef CONFIG_FSFREEZE | |
1274 | s->fsfreeze_hook = config->fsfreeze_hook; | |
1275 | #endif | |
1276 | s->pstate_filepath = g_strdup_printf("%s/qga.state", config->state_dir); | |
1277 | s->state_filepath_isfrozen = g_strdup_printf("%s/qga.state.isfrozen", | |
1278 | config->state_dir); | |
1279 | s->frozen = check_is_frozen(s); | |
e3d31039 MAL |
1280 | |
1281 | g_log_set_default_handler(ga_log, s); | |
1282 | g_log_set_fatal_mask(NULL, G_LOG_LEVEL_ERROR); | |
1283 | ga_enable_logging(s); | |
1284 | ||
1285 | #ifdef _WIN32 | |
1286 | /* On win32 the state directory is application specific (be it the default | |
1287 | * or a user override). We got past the command line parsing; let's create | |
1288 | * the directory (with any intermediate directories). If we run into an | |
1289 | * error later on, we won't try to clean up the directory, it is considered | |
1290 | * persistent. | |
1291 | */ | |
1292 | if (g_mkdir_with_parents(config->state_dir, S_IRWXU) == -1) { | |
1293 | g_critical("unable to create (an ancestor of) the state directory" | |
1294 | " '%s': %s", config->state_dir, strerror(errno)); | |
50d5b3c4 | 1295 | return NULL; |
f789aa7b MR |
1296 | } |
1297 | #endif | |
1298 | ||
1299 | if (ga_is_frozen(s)) { | |
7a406694 | 1300 | if (config->daemonize) { |
8e8be266 | 1301 | /* delay opening/locking of pidfile till filesystems are unfrozen */ |
7a406694 | 1302 | s->deferred_options.pid_filepath = config->pid_filepath; |
f789aa7b MR |
1303 | become_daemon(NULL); |
1304 | } | |
7a406694 | 1305 | if (config->log_filepath) { |
f789aa7b | 1306 | /* delay opening the log file till filesystems are unfrozen */ |
7a406694 | 1307 | s->deferred_options.log_filepath = config->log_filepath; |
f789aa7b MR |
1308 | } |
1309 | ga_disable_logging(s); | |
1527badb | 1310 | qmp_for_each_command(&ga_commands, ga_disable_non_whitelisted, NULL); |
f789aa7b | 1311 | } else { |
7a406694 MAL |
1312 | if (config->daemonize) { |
1313 | become_daemon(config->pid_filepath); | |
f789aa7b | 1314 | } |
7a406694 MAL |
1315 | if (config->log_filepath) { |
1316 | FILE *log_file = ga_open_logfile(config->log_filepath); | |
6c615ec5 | 1317 | if (!log_file) { |
f789aa7b MR |
1318 | g_critical("unable to open specified log file: %s", |
1319 | strerror(errno)); | |
50d5b3c4 | 1320 | return NULL; |
f789aa7b | 1321 | } |
6c615ec5 | 1322 | s->log_file = log_file; |
f789aa7b MR |
1323 | } |
1324 | } | |
1325 | ||
39097daf MR |
1326 | /* load persistent state from disk */ |
1327 | if (!read_persistent_state(&s->pstate, | |
1328 | s->pstate_filepath, | |
1329 | ga_is_frozen(s))) { | |
1330 | g_critical("failed to load persistent state"); | |
50d5b3c4 | 1331 | return NULL; |
39097daf MR |
1332 | } |
1333 | ||
7a406694 MAL |
1334 | config->blacklist = ga_command_blacklist_init(config->blacklist); |
1335 | if (config->blacklist) { | |
1336 | GList *l = config->blacklist; | |
1337 | s->blacklist = config->blacklist; | |
f22d85e9 | 1338 | do { |
7a406694 | 1339 | g_debug("disabling command: %s", (char *)l->data); |
1527badb | 1340 | qmp_disable_command(&ga_commands, l->data); |
7a406694 MAL |
1341 | l = g_list_next(l); |
1342 | } while (l); | |
f22d85e9 | 1343 | } |
e3d4d252 MR |
1344 | s->command_state = ga_command_state_new(); |
1345 | ga_command_state_init(s, s->command_state); | |
1346 | ga_command_state_init_all(s->command_state); | |
62815d85 | 1347 | json_message_parser_init(&s->parser, process_event, s, NULL); |
f8837b37 | 1348 | |
d8ca685a | 1349 | #ifndef _WIN32 |
125b310e MR |
1350 | if (!register_signal_handlers()) { |
1351 | g_critical("failed to register signal handlers"); | |
50d5b3c4 | 1352 | return NULL; |
125b310e | 1353 | } |
d8ca685a | 1354 | #endif |
48ff7a62 | 1355 | |
125b310e | 1356 | s->main_loop = g_main_loop_new(NULL, false); |
26de2296 | 1357 | |
0f4d3a49 MR |
1358 | s->config = config; |
1359 | s->socket_activation = socket_activation; | |
b70d6afe BA |
1360 | |
1361 | #ifdef _WIN32 | |
1362 | s->wakeup_event = CreateEvent(NULL, TRUE, FALSE, TEXT("WakeUp")); | |
1363 | if (s->wakeup_event == NULL) { | |
1364 | g_critical("CreateEvent failed"); | |
1365 | return NULL; | |
1366 | } | |
1367 | #endif | |
1368 | ||
50d5b3c4 MR |
1369 | ga_state = s; |
1370 | return s; | |
1371 | } | |
1372 | ||
1373 | static void cleanup_agent(GAState *s) | |
1374 | { | |
b70d6afe BA |
1375 | #ifdef _WIN32 |
1376 | CloseHandle(s->wakeup_event); | |
1377 | #endif | |
50d5b3c4 MR |
1378 | if (s->command_state) { |
1379 | ga_command_state_cleanup_all(s->command_state); | |
1380 | ga_command_state_free(s->command_state); | |
1381 | json_message_parser_destroy(&s->parser); | |
1382 | } | |
50d5b3c4 MR |
1383 | g_free(s->pstate_filepath); |
1384 | g_free(s->state_filepath_isfrozen); | |
1385 | if (s->main_loop) { | |
1386 | g_main_loop_unref(s->main_loop); | |
1387 | } | |
1388 | g_free(s); | |
1389 | ga_state = NULL; | |
1390 | } | |
1391 | ||
d951fada | 1392 | static int run_agent_once(GAState *s) |
50d5b3c4 | 1393 | { |
0f4d3a49 MR |
1394 | if (!channel_init(s, s->config->method, s->config->channel_path, |
1395 | s->socket_activation ? FIRST_SOCKET_ACTIVATION_FD : -1)) { | |
125b310e | 1396 | g_critical("failed to initialize guest agent channel"); |
e3d31039 | 1397 | return EXIT_FAILURE; |
125b310e | 1398 | } |
d88495a8 | 1399 | |
48ff7a62 MR |
1400 | g_main_loop_run(ga_state->main_loop); |
1401 | ||
d951fada MR |
1402 | if (s->channel) { |
1403 | ga_channel_free(s->channel); | |
1404 | } | |
1405 | ||
e3d31039 MAL |
1406 | return EXIT_SUCCESS; |
1407 | } | |
48ff7a62 | 1408 | |
b70d6afe BA |
1409 | static void wait_for_channel_availability(GAState *s) |
1410 | { | |
1411 | g_warning("waiting for channel path..."); | |
1412 | #ifndef _WIN32 | |
1413 | sleep(QGA_RETRY_INTERVAL); | |
1414 | #else | |
1415 | DWORD dwWaitResult; | |
1416 | ||
1417 | dwWaitResult = WaitForSingleObject(s->wakeup_event, INFINITE); | |
1418 | ||
1419 | switch (dwWaitResult) { | |
1420 | case WAIT_OBJECT_0: | |
1421 | break; | |
1422 | case WAIT_TIMEOUT: | |
1423 | break; | |
1424 | default: | |
1425 | g_critical("WaitForSingleObject failed"); | |
1426 | } | |
1427 | #endif | |
1428 | } | |
1429 | ||
d951fada MR |
1430 | static int run_agent(GAState *s) |
1431 | { | |
1432 | int ret = EXIT_SUCCESS; | |
1433 | ||
1434 | s->force_exit = false; | |
1435 | ||
1436 | do { | |
1437 | ret = run_agent_once(s); | |
1438 | if (s->config->retry_path && !s->force_exit) { | |
1439 | g_warning("agent stopped unexpectedly, restarting..."); | |
b70d6afe | 1440 | wait_for_channel_availability(s); |
d951fada MR |
1441 | } |
1442 | } while (s->config->retry_path && !s->force_exit); | |
1443 | ||
1444 | return ret; | |
1445 | } | |
1446 | ||
1447 | static void stop_agent(GAState *s, bool requested) | |
1448 | { | |
1449 | if (!s->force_exit) { | |
1450 | s->force_exit = requested; | |
1451 | } | |
1452 | ||
1453 | if (g_main_loop_is_running(s->main_loop)) { | |
1454 | g_main_loop_quit(s->main_loop); | |
1455 | } | |
1456 | } | |
1457 | ||
e3d31039 MAL |
1458 | int main(int argc, char **argv) |
1459 | { | |
1460 | int ret = EXIT_SUCCESS; | |
50d5b3c4 | 1461 | GAState *s; |
e236d060 | 1462 | GAConfig *config = g_new0(GAConfig, 1); |
53fabd4b | 1463 | int socket_activation; |
e3d31039 | 1464 | |
6eaeae37 MAL |
1465 | config->log_level = G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL; |
1466 | ||
a9eacf8b | 1467 | qemu_init_exec_dir(argv[0]); |
1527badb | 1468 | qga_qmp_init_marshal(&ga_commands); |
e3d31039 MAL |
1469 | |
1470 | init_dfl_pathnames(); | |
e236d060 MAL |
1471 | config_load(config); |
1472 | config_parse(config, argc, argv); | |
e3d31039 MAL |
1473 | |
1474 | if (config->pid_filepath == NULL) { | |
1475 | config->pid_filepath = g_strdup(dfl_pathnames.pidfile); | |
1476 | } | |
1477 | ||
1478 | if (config->state_dir == NULL) { | |
1479 | config->state_dir = g_strdup(dfl_pathnames.state_dir); | |
1480 | } | |
1481 | ||
1482 | if (config->method == NULL) { | |
1483 | config->method = g_strdup("virtio-serial"); | |
125b310e | 1484 | } |
125b310e | 1485 | |
53fabd4b PB |
1486 | socket_activation = check_socket_activation(); |
1487 | if (socket_activation > 1) { | |
1488 | g_critical("qemu-ga only supports listening on one socket"); | |
1489 | ret = EXIT_FAILURE; | |
1490 | goto end; | |
1491 | } | |
1492 | if (socket_activation) { | |
bd269ebc | 1493 | SocketAddress *addr; |
26de2296 SH |
1494 | |
1495 | g_free(config->method); | |
1496 | g_free(config->channel_path); | |
1497 | config->method = NULL; | |
1498 | config->channel_path = NULL; | |
1499 | ||
53fabd4b | 1500 | addr = socket_local_address(FIRST_SOCKET_ACTIVATION_FD, NULL); |
26de2296 | 1501 | if (addr) { |
bd269ebc | 1502 | if (addr->type == SOCKET_ADDRESS_TYPE_UNIX) { |
26de2296 | 1503 | config->method = g_strdup("unix-listen"); |
bd269ebc | 1504 | } else if (addr->type == SOCKET_ADDRESS_TYPE_VSOCK) { |
26de2296 SH |
1505 | config->method = g_strdup("vsock-listen"); |
1506 | } | |
1507 | ||
bd269ebc | 1508 | qapi_free_SocketAddress(addr); |
26de2296 SH |
1509 | } |
1510 | ||
1511 | if (!config->method) { | |
1512 | g_critical("unsupported listen fd type"); | |
1513 | ret = EXIT_FAILURE; | |
1514 | goto end; | |
1515 | } | |
1516 | } else if (config->channel_path == NULL) { | |
e3d31039 MAL |
1517 | if (strcmp(config->method, "virtio-serial") == 0) { |
1518 | /* try the default path for the virtio-serial port */ | |
1519 | config->channel_path = g_strdup(QGA_VIRTIO_PATH_DEFAULT); | |
1520 | } else if (strcmp(config->method, "isa-serial") == 0) { | |
1521 | /* try the default path for the serial port - COM1 */ | |
1522 | config->channel_path = g_strdup(QGA_SERIAL_PATH_DEFAULT); | |
1523 | } else { | |
1524 | g_critical("must specify a path for this channel"); | |
1525 | ret = EXIT_FAILURE; | |
1526 | goto end; | |
1527 | } | |
1528 | } | |
1529 | ||
aeadcbb6 MAL |
1530 | if (config->dumpconf) { |
1531 | config_dump(config); | |
1532 | goto end; | |
1533 | } | |
1534 | ||
0f4d3a49 | 1535 | s = initialize_agent(config, socket_activation); |
50d5b3c4 MR |
1536 | if (!s) { |
1537 | g_critical("error initializing guest agent"); | |
1538 | goto end; | |
1539 | } | |
d88495a8 MR |
1540 | |
1541 | #ifdef _WIN32 | |
1542 | if (config->daemonize) { | |
1543 | SERVICE_TABLE_ENTRY service_table[] = { | |
1544 | { (char *)QGA_SERVICE_NAME, service_main }, { NULL, NULL } }; | |
1545 | StartServiceCtrlDispatcher(service_table); | |
1546 | } else { | |
1547 | ret = run_agent(s); | |
1548 | } | |
1549 | #else | |
0f4d3a49 | 1550 | ret = run_agent(s); |
d88495a8 MR |
1551 | #endif |
1552 | ||
50d5b3c4 | 1553 | cleanup_agent(s); |
e3d31039 MAL |
1554 | |
1555 | end: | |
7a406694 MAL |
1556 | if (config->daemonize) { |
1557 | unlink(config->pid_filepath); | |
125b310e | 1558 | } |
2e38d990 | 1559 | |
7a406694 | 1560 | config_free(config); |
2e38d990 | 1561 | |
e3d31039 | 1562 | return ret; |
48ff7a62 | 1563 | } |