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