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