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