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