]> git.proxmox.com Git - mirror_qemu.git/blame - qemu-ga.c
qemu-nbd: rewrite termination conditions to use a state machine
[mirror_qemu.git] / qemu-ga.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>
d8ca685a 18#ifndef _WIN32
48ff7a62 19#include <syslog.h>
11d0f125 20#include <sys/wait.h>
f789aa7b 21#include <sys/stat.h>
d8ca685a 22#endif
48ff7a62
MR
23#include "json-streamer.h"
24#include "json-parser.h"
25#include "qint.h"
26#include "qjson.h"
27#include "qga/guest-agent-core.h"
28#include "module.h"
29#include "signal.h"
30#include "qerror.h"
abd6cf6d 31#include "qapi/qmp-core.h"
125b310e 32#include "qga/channel.h"
bc62fa03
MR
33#ifdef _WIN32
34#include "qga/service-win32.h"
35#include <windows.h>
36#endif
48ff7a62 37
7868e26e 38#ifndef _WIN32
48ff7a62 39#define QGA_VIRTIO_PATH_DEFAULT "/dev/virtio-ports/org.qemu.guest_agent.0"
7868e26e
MR
40#else
41#define QGA_VIRTIO_PATH_DEFAULT "\\\\.\\Global\\org.qemu.guest_agent.0"
42#endif
48ff7a62 43#define QGA_PIDFILE_DEFAULT "/var/run/qemu-ga.pid"
f789aa7b 44#define QGA_STATEDIR_DEFAULT "/tmp"
3cf0bed8 45#define QGA_SENTINEL_BYTE 0xFF
48ff7a62
MR
46
47struct GAState {
48 JSONMessageParser parser;
49 GMainLoop *main_loop;
125b310e 50 GAChannel *channel;
48ff7a62
MR
51 bool virtio; /* fastpath to check for virtio to deal with poll() quirks */
52 GACommandState *command_state;
53 GLogLevelFlags log_level;
54 FILE *log_file;
55 bool logging_enabled;
bc62fa03
MR
56#ifdef _WIN32
57 GAService service;
58#endif
3cf0bed8 59 bool delimit_response;
f22d85e9
MR
60 bool frozen;
61 GList *blacklist;
f789aa7b
MR
62 const char *state_filepath_isfrozen;
63 struct {
64 const char *log_filepath;
65 const char *pid_filepath;
66 } deferred_options;
48ff7a62
MR
67};
68
3cf0bed8 69struct GAState *ga_state;
48ff7a62 70
f22d85e9
MR
71/* commands that are safe to issue while filesystems are frozen */
72static const char *ga_freeze_whitelist[] = {
73 "guest-ping",
74 "guest-info",
75 "guest-sync",
76 "guest-fsfreeze-status",
77 "guest-fsfreeze-thaw",
78 NULL
79};
80
bc62fa03
MR
81#ifdef _WIN32
82DWORD WINAPI service_ctrl_handler(DWORD ctrl, DWORD type, LPVOID data,
83 LPVOID ctx);
84VOID WINAPI service_main(DWORD argc, TCHAR *argv[]);
85#endif
86
48ff7a62
MR
87static void quit_handler(int sig)
88{
f22d85e9
MR
89 /* if we're frozen, don't exit unless we're absolutely forced to,
90 * because it's basically impossible for graceful exit to complete
91 * unless all log/pid files are on unfreezable filesystems. there's
92 * also a very likely chance killing the agent before unfreezing
93 * the filesystems is a mistake (or will be viewed as one later).
94 */
95 if (ga_is_frozen(ga_state)) {
96 return;
97 }
2542bfd5 98 g_debug("received signal num %d, quitting", sig);
48ff7a62
MR
99
100 if (g_main_loop_is_running(ga_state->main_loop)) {
101 g_main_loop_quit(ga_state->main_loop);
102 }
103}
104
bc62fa03 105#ifndef _WIN32
125b310e 106static gboolean register_signal_handlers(void)
48ff7a62 107{
dc8764f0 108 struct sigaction sigact;
48ff7a62
MR
109 int ret;
110
111 memset(&sigact, 0, sizeof(struct sigaction));
112 sigact.sa_handler = quit_handler;
113
114 ret = sigaction(SIGINT, &sigact, NULL);
115 if (ret == -1) {
116 g_error("error configuring signal handler: %s", strerror(errno));
125b310e 117 return false;
48ff7a62
MR
118 }
119 ret = sigaction(SIGTERM, &sigact, NULL);
120 if (ret == -1) {
121 g_error("error configuring signal handler: %s", strerror(errno));
125b310e 122 return false;
48ff7a62 123 }
11d0f125 124
125b310e 125 return true;
48ff7a62 126}
04b4e75f
LC
127
128/* TODO: use this in place of all post-fork() fclose(std*) callers */
129void reopen_fd_to_null(int fd)
130{
131 int nullfd;
132
133 nullfd = open("/dev/null", O_RDWR);
134 if (nullfd < 0) {
135 return;
136 }
137
138 dup2(nullfd, fd);
139
140 if (nullfd != fd) {
141 close(nullfd);
142 }
143}
d8ca685a 144#endif
48ff7a62
MR
145
146static void usage(const char *cmd)
147{
148 printf(
4bdd0416 149"Usage: %s [-m <method> -p <path>] [<options>]\n"
48ff7a62
MR
150"QEMU Guest Agent %s\n"
151"\n"
152" -m, --method transport method: one of unix-listen, virtio-serial, or\n"
153" isa-serial (virtio-serial is the default)\n"
4bdd0416
MR
154" -p, --path device/socket path (the default for virtio-serial is:\n"
155" %s)\n"
48ff7a62
MR
156" -l, --logfile set logfile path, logs to stderr by default\n"
157" -f, --pidfile specify pidfile (default is %s)\n"
f789aa7b
MR
158" -t, --statedir specify dir to store state information (absolute paths\n"
159" only, default is %s)\n"
48ff7a62
MR
160" -v, --verbose log extra debugging information\n"
161" -V, --version print version information and exit\n"
162" -d, --daemonize become a daemon\n"
bc62fa03
MR
163#ifdef _WIN32
164" -s, --service service commands: install, uninstall\n"
d8ca685a 165#endif
4bdd0416 166" -b, --blacklist comma-separated list of RPCs to disable (no spaces, \"?\"\n"
abd6cf6d 167" to list available RPCs)\n"
48ff7a62
MR
168" -h, --help display this help and exit\n"
169"\n"
170"Report bugs to <mdroth@linux.vnet.ibm.com>\n"
8efacc43 171 , cmd, QEMU_VERSION, QGA_VIRTIO_PATH_DEFAULT, QGA_PIDFILE_DEFAULT,
f789aa7b 172 QGA_STATEDIR_DEFAULT);
48ff7a62
MR
173}
174
48ff7a62
MR
175static const char *ga_log_level_str(GLogLevelFlags level)
176{
177 switch (level & G_LOG_LEVEL_MASK) {
178 case G_LOG_LEVEL_ERROR:
179 return "error";
180 case G_LOG_LEVEL_CRITICAL:
181 return "critical";
182 case G_LOG_LEVEL_WARNING:
183 return "warning";
184 case G_LOG_LEVEL_MESSAGE:
185 return "message";
186 case G_LOG_LEVEL_INFO:
187 return "info";
188 case G_LOG_LEVEL_DEBUG:
189 return "debug";
190 default:
191 return "user";
192 }
193}
194
195bool ga_logging_enabled(GAState *s)
196{
197 return s->logging_enabled;
198}
199
200void ga_disable_logging(GAState *s)
201{
202 s->logging_enabled = false;
203}
204
205void ga_enable_logging(GAState *s)
206{
207 s->logging_enabled = true;
208}
209
210static void ga_log(const gchar *domain, GLogLevelFlags level,
211 const gchar *msg, gpointer opaque)
212{
213 GAState *s = opaque;
214 GTimeVal time;
215 const char *level_str = ga_log_level_str(level);
216
217 if (!ga_logging_enabled(s)) {
218 return;
219 }
220
221 level &= G_LOG_LEVEL_MASK;
d8ca685a 222#ifndef _WIN32
8f477478 223 if (domain && strcmp(domain, "syslog") == 0) {
48ff7a62
MR
224 syslog(LOG_INFO, "%s: %s", level_str, msg);
225 } else if (level & s->log_level) {
d8ca685a
MR
226#else
227 if (level & s->log_level) {
228#endif
48ff7a62
MR
229 g_get_current_time(&time);
230 fprintf(s->log_file,
231 "%lu.%lu: %s: %s\n", time.tv_sec, time.tv_usec, level_str, msg);
232 fflush(s->log_file);
233 }
234}
235
3cf0bed8
MR
236void ga_set_response_delimited(GAState *s)
237{
238 s->delimit_response = true;
239}
240
f789aa7b
MR
241#ifndef _WIN32
242static bool ga_open_pidfile(const char *pidfile)
243{
244 int pidfd;
245 char pidstr[32];
246
247 pidfd = open(pidfile, O_CREAT|O_WRONLY, S_IRUSR|S_IWUSR);
248 if (pidfd == -1 || lockf(pidfd, F_TLOCK, 0)) {
249 g_critical("Cannot lock pid file, %s", strerror(errno));
4144f122
JM
250 if (pidfd != -1) {
251 close(pidfd);
252 }
f789aa7b
MR
253 return false;
254 }
255
256 if (ftruncate(pidfd, 0) || lseek(pidfd, 0, SEEK_SET)) {
257 g_critical("Failed to truncate pid file");
258 goto fail;
259 }
260 sprintf(pidstr, "%d", getpid());
261 if (write(pidfd, pidstr, strlen(pidstr)) != strlen(pidstr)) {
262 g_critical("Failed to write pid file");
263 goto fail;
264 }
265
266 return true;
267
268fail:
269 unlink(pidfile);
270 return false;
271}
272#else /* _WIN32 */
273static bool ga_open_pidfile(const char *pidfile)
274{
275 return true;
276}
277#endif
278
f22d85e9
MR
279static gint ga_strcmp(gconstpointer str1, gconstpointer str2)
280{
281 return strcmp(str1, str2);
282}
283
284/* disable commands that aren't safe for fsfreeze */
285static void ga_disable_non_whitelisted(void)
286{
287 char **list_head, **list;
288 bool whitelisted;
289 int i;
290
291 list_head = list = qmp_get_command_list();
292 while (*list != NULL) {
293 whitelisted = false;
294 i = 0;
295 while (ga_freeze_whitelist[i] != NULL) {
296 if (strcmp(*list, ga_freeze_whitelist[i]) == 0) {
297 whitelisted = true;
298 }
299 i++;
300 }
301 if (!whitelisted) {
302 g_debug("disabling command: %s", *list);
303 qmp_disable_command(*list);
304 }
305 g_free(*list);
306 list++;
307 }
308 g_free(list_head);
309}
310
a31f0531 311/* [re-]enable all commands, except those explicitly blacklisted by user */
f22d85e9
MR
312static void ga_enable_non_blacklisted(GList *blacklist)
313{
314 char **list_head, **list;
315
316 list_head = list = qmp_get_command_list();
317 while (*list != NULL) {
318 if (g_list_find_custom(blacklist, *list, ga_strcmp) == NULL &&
319 !qmp_command_is_enabled(*list)) {
320 g_debug("enabling command: %s", *list);
321 qmp_enable_command(*list);
322 }
323 g_free(*list);
324 list++;
325 }
326 g_free(list_head);
327}
328
f789aa7b
MR
329static bool ga_create_file(const char *path)
330{
331 int fd = open(path, O_CREAT | O_WRONLY, S_IWUSR | S_IRUSR);
332 if (fd == -1) {
333 g_warning("unable to open/create file %s: %s", path, strerror(errno));
334 return false;
335 }
336 close(fd);
337 return true;
338}
339
340static bool ga_delete_file(const char *path)
341{
342 int ret = unlink(path);
343 if (ret == -1) {
344 g_warning("unable to delete file: %s: %s", path, strerror(errno));
345 return false;
346 }
347
348 return true;
349}
350
f22d85e9
MR
351bool ga_is_frozen(GAState *s)
352{
353 return s->frozen;
354}
355
356void ga_set_frozen(GAState *s)
357{
358 if (ga_is_frozen(s)) {
359 return;
360 }
361 /* disable all non-whitelisted (for frozen state) commands */
362 ga_disable_non_whitelisted();
363 g_warning("disabling logging due to filesystem freeze");
364 ga_disable_logging(s);
365 s->frozen = true;
f789aa7b
MR
366 if (!ga_create_file(s->state_filepath_isfrozen)) {
367 g_warning("unable to create %s, fsfreeze may not function properly",
368 s->state_filepath_isfrozen);
369 }
f22d85e9
MR
370}
371
372void ga_unset_frozen(GAState *s)
373{
374 if (!ga_is_frozen(s)) {
375 return;
376 }
377
f789aa7b
MR
378 /* if we delayed creation/opening of pid/log files due to being
379 * in a frozen state at start up, do it now
380 */
381 if (s->deferred_options.log_filepath) {
382 s->log_file = fopen(s->deferred_options.log_filepath, "a");
383 if (!s->log_file) {
384 s->log_file = stderr;
385 }
386 s->deferred_options.log_filepath = NULL;
387 }
f22d85e9 388 ga_enable_logging(s);
f789aa7b
MR
389 g_warning("logging re-enabled due to filesystem unfreeze");
390 if (s->deferred_options.pid_filepath) {
391 if (!ga_open_pidfile(s->deferred_options.pid_filepath)) {
392 g_warning("failed to create/open pid file");
393 }
394 s->deferred_options.pid_filepath = NULL;
395 }
f22d85e9
MR
396
397 /* enable all disabled, non-blacklisted commands */
398 ga_enable_non_blacklisted(s->blacklist);
399 s->frozen = false;
f789aa7b
MR
400 if (!ga_delete_file(s->state_filepath_isfrozen)) {
401 g_warning("unable to delete %s, fsfreeze may not function properly",
402 s->state_filepath_isfrozen);
403 }
f22d85e9
MR
404}
405
48ff7a62
MR
406static void become_daemon(const char *pidfile)
407{
f789aa7b 408#ifndef _WIN32
48ff7a62 409 pid_t pid, sid;
48ff7a62
MR
410
411 pid = fork();
412 if (pid < 0) {
413 exit(EXIT_FAILURE);
414 }
415 if (pid > 0) {
416 exit(EXIT_SUCCESS);
417 }
418
f789aa7b
MR
419 if (pidfile) {
420 if (!ga_open_pidfile(pidfile)) {
421 g_critical("failed to create pidfile");
422 exit(EXIT_FAILURE);
423 }
48ff7a62
MR
424 }
425
426 umask(0);
427 sid = setsid();
428 if (sid < 0) {
429 goto fail;
430 }
431 if ((chdir("/")) < 0) {
432 goto fail;
433 }
434
226a4894
LC
435 reopen_fd_to_null(STDIN_FILENO);
436 reopen_fd_to_null(STDOUT_FILENO);
437 reopen_fd_to_null(STDERR_FILENO);
48ff7a62
MR
438 return;
439
440fail:
4bdb1a30
SW
441 if (pidfile) {
442 unlink(pidfile);
443 }
48ff7a62
MR
444 g_critical("failed to daemonize");
445 exit(EXIT_FAILURE);
d8ca685a 446#endif
f789aa7b 447}
48ff7a62 448
125b310e 449static int send_response(GAState *s, QObject *payload)
48ff7a62 450{
48ff7a62 451 const char *buf;
3cf0bed8 452 QString *payload_qstr, *response_qstr;
125b310e 453 GIOStatus status;
48ff7a62 454
125b310e 455 g_assert(payload && s->channel);
48ff7a62
MR
456
457 payload_qstr = qobject_to_json(payload);
458 if (!payload_qstr) {
459 return -EINVAL;
460 }
461
3cf0bed8
MR
462 if (s->delimit_response) {
463 s->delimit_response = false;
464 response_qstr = qstring_new();
465 qstring_append_chr(response_qstr, QGA_SENTINEL_BYTE);
466 qstring_append(response_qstr, qstring_get_str(payload_qstr));
467 QDECREF(payload_qstr);
468 } else {
469 response_qstr = payload_qstr;
470 }
471
472 qstring_append_chr(response_qstr, '\n');
473 buf = qstring_get_str(response_qstr);
125b310e 474 status = ga_channel_write_all(s->channel, buf, strlen(buf));
3cf0bed8 475 QDECREF(response_qstr);
125b310e
MR
476 if (status != G_IO_STATUS_NORMAL) {
477 return -EIO;
48ff7a62 478 }
125b310e
MR
479
480 return 0;
48ff7a62
MR
481}
482
483static void process_command(GAState *s, QDict *req)
484{
485 QObject *rsp = NULL;
486 int ret;
487
488 g_assert(req);
489 g_debug("processing command");
490 rsp = qmp_dispatch(QOBJECT(req));
491 if (rsp) {
125b310e 492 ret = send_response(s, rsp);
48ff7a62 493 if (ret) {
125b310e 494 g_warning("error sending response: %s", strerror(ret));
48ff7a62
MR
495 }
496 qobject_decref(rsp);
48ff7a62
MR
497 }
498}
499
500/* handle requests/control events coming in over the channel */
501static void process_event(JSONMessageParser *parser, QList *tokens)
502{
503 GAState *s = container_of(parser, GAState, parser);
504 QObject *obj;
505 QDict *qdict;
506 Error *err = NULL;
507 int ret;
508
509 g_assert(s && parser);
510
511 g_debug("process_event: called");
512 obj = json_parser_parse_err(tokens, NULL, &err);
513 if (err || !obj || qobject_type(obj) != QTYPE_QDICT) {
514 qobject_decref(obj);
515 qdict = qdict_new();
516 if (!err) {
517 g_warning("failed to parse event: unknown error");
518 error_set(&err, QERR_JSON_PARSING);
519 } else {
520 g_warning("failed to parse event: %s", error_get_pretty(err));
521 }
93b91c59 522 qdict_put_obj(qdict, "error", qmp_build_error_object(err));
48ff7a62
MR
523 error_free(err);
524 } else {
525 qdict = qobject_to_qdict(obj);
526 }
527
528 g_assert(qdict);
529
530 /* handle host->guest commands */
531 if (qdict_haskey(qdict, "execute")) {
532 process_command(s, qdict);
533 } else {
534 if (!qdict_haskey(qdict, "error")) {
535 QDECREF(qdict);
536 qdict = qdict_new();
537 g_warning("unrecognized payload format");
538 error_set(&err, QERR_UNSUPPORTED);
93b91c59 539 qdict_put_obj(qdict, "error", qmp_build_error_object(err));
48ff7a62
MR
540 error_free(err);
541 }
125b310e 542 ret = send_response(s, QOBJECT(qdict));
48ff7a62 543 if (ret) {
125b310e 544 g_warning("error sending error response: %s", strerror(ret));
48ff7a62
MR
545 }
546 }
547
548 QDECREF(qdict);
549}
550
125b310e
MR
551/* false return signals GAChannel to close the current client connection */
552static gboolean channel_event_cb(GIOCondition condition, gpointer data)
48ff7a62
MR
553{
554 GAState *s = data;
125b310e 555 gchar buf[QGA_READ_COUNT_DEFAULT+1];
48ff7a62
MR
556 gsize count;
557 GError *err = NULL;
125b310e 558 GIOStatus status = ga_channel_read(s->channel, buf, QGA_READ_COUNT_DEFAULT, &count);
48ff7a62
MR
559 if (err != NULL) {
560 g_warning("error reading channel: %s", err->message);
48ff7a62
MR
561 g_error_free(err);
562 return false;
563 }
564 switch (status) {
565 case G_IO_STATUS_ERROR:
125b310e 566 g_warning("error reading channel");
48ff7a62
MR
567 return false;
568 case G_IO_STATUS_NORMAL:
125b310e 569 buf[count] = 0;
48ff7a62
MR
570 g_debug("read data, count: %d, data: %s", (int)count, buf);
571 json_message_parser_feed(&s->parser, (char *)buf, (int)count);
125b310e
MR
572 break;
573 case G_IO_STATUS_EOF:
574 g_debug("received EOF");
575 if (!s->virtio) {
576 return false;
577 }
48ff7a62
MR
578 case G_IO_STATUS_AGAIN:
579 /* virtio causes us to spin here when no process is attached to
580 * host-side chardev. sleep a bit to mitigate this
581 */
582 if (s->virtio) {
583 usleep(100*1000);
584 }
585 return true;
48ff7a62
MR
586 default:
587 g_warning("unknown channel read status, closing");
48ff7a62
MR
588 return false;
589 }
590 return true;
591}
592
125b310e 593static gboolean channel_init(GAState *s, const gchar *method, const gchar *path)
48ff7a62 594{
125b310e 595 GAChannelMethod channel_method;
48ff7a62 596
125b310e
MR
597 if (method == NULL) {
598 method = "virtio-serial";
48ff7a62
MR
599 }
600
125b310e
MR
601 if (path == NULL) {
602 if (strcmp(method, "virtio-serial") != 0) {
48ff7a62 603 g_critical("must specify a path for this channel");
125b310e 604 return false;
48ff7a62
MR
605 }
606 /* try the default path for the virtio-serial port */
125b310e 607 path = QGA_VIRTIO_PATH_DEFAULT;
48ff7a62
MR
608 }
609
125b310e
MR
610 if (strcmp(method, "virtio-serial") == 0) {
611 s->virtio = true; /* virtio requires special handling in some cases */
612 channel_method = GA_CHANNEL_VIRTIO_SERIAL;
613 } else if (strcmp(method, "isa-serial") == 0) {
614 channel_method = GA_CHANNEL_ISA_SERIAL;
615 } else if (strcmp(method, "unix-listen") == 0) {
616 channel_method = GA_CHANNEL_UNIX_LISTEN;
48ff7a62 617 } else {
125b310e
MR
618 g_critical("unsupported channel method/type: %s", method);
619 return false;
48ff7a62
MR
620 }
621
125b310e
MR
622 s->channel = ga_channel_new(channel_method, path, channel_event_cb, s);
623 if (!s->channel) {
624 g_critical("failed to create guest agent channel");
625 return false;
626 }
627
628 return true;
48ff7a62
MR
629}
630
bc62fa03
MR
631#ifdef _WIN32
632DWORD WINAPI service_ctrl_handler(DWORD ctrl, DWORD type, LPVOID data,
633 LPVOID ctx)
634{
635 DWORD ret = NO_ERROR;
636 GAService *service = &ga_state->service;
637
638 switch (ctrl)
639 {
640 case SERVICE_CONTROL_STOP:
641 case SERVICE_CONTROL_SHUTDOWN:
642 quit_handler(SIGTERM);
643 service->status.dwCurrentState = SERVICE_STOP_PENDING;
644 SetServiceStatus(service->status_handle, &service->status);
645 break;
646
647 default:
648 ret = ERROR_CALL_NOT_IMPLEMENTED;
649 }
650 return ret;
651}
652
653VOID WINAPI service_main(DWORD argc, TCHAR *argv[])
654{
655 GAService *service = &ga_state->service;
656
657 service->status_handle = RegisterServiceCtrlHandlerEx(QGA_SERVICE_NAME,
658 service_ctrl_handler, NULL);
659
660 if (service->status_handle == 0) {
661 g_critical("Failed to register extended requests function!\n");
662 return;
663 }
664
665 service->status.dwServiceType = SERVICE_WIN32;
666 service->status.dwCurrentState = SERVICE_RUNNING;
667 service->status.dwControlsAccepted = SERVICE_ACCEPT_STOP | SERVICE_ACCEPT_SHUTDOWN;
668 service->status.dwWin32ExitCode = NO_ERROR;
669 service->status.dwServiceSpecificExitCode = NO_ERROR;
670 service->status.dwCheckPoint = 0;
671 service->status.dwWaitHint = 0;
672 SetServiceStatus(service->status_handle, &service->status);
673
674 g_main_loop_run(ga_state->main_loop);
675
676 service->status.dwCurrentState = SERVICE_STOPPED;
677 SetServiceStatus(service->status_handle, &service->status);
678}
679#endif
680
48ff7a62
MR
681int main(int argc, char **argv)
682{
f789aa7b
MR
683 const char *sopt = "hVvdm:p:l:f:b:s:t:";
684 const char *method = NULL, *path = NULL;
685 const char *log_filepath = NULL;
686 const char *pid_filepath = QGA_PIDFILE_DEFAULT;
687 const char *state_dir = QGA_STATEDIR_DEFAULT;
bc62fa03
MR
688#ifdef _WIN32
689 const char *service = NULL;
690#endif
48ff7a62
MR
691 const struct option lopt[] = {
692 { "help", 0, NULL, 'h' },
693 { "version", 0, NULL, 'V' },
bc62fa03
MR
694 { "logfile", 1, NULL, 'l' },
695 { "pidfile", 1, NULL, 'f' },
48ff7a62 696 { "verbose", 0, NULL, 'v' },
bc62fa03
MR
697 { "method", 1, NULL, 'm' },
698 { "path", 1, NULL, 'p' },
48ff7a62 699 { "daemonize", 0, NULL, 'd' },
bc62fa03
MR
700 { "blacklist", 1, NULL, 'b' },
701#ifdef _WIN32
702 { "service", 1, NULL, 's' },
f22d85e9 703#endif
f789aa7b 704 { "statedir", 1, NULL, 't' },
48ff7a62
MR
705 { NULL, 0, NULL, 0 }
706 };
abd6cf6d 707 int opt_ind = 0, ch, daemonize = 0, i, j, len;
48ff7a62 708 GLogLevelFlags log_level = G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL;
f22d85e9 709 GList *blacklist = NULL;
48ff7a62
MR
710 GAState *s;
711
abd6cf6d
MR
712 module_call_init(MODULE_INIT_QAPI);
713
48ff7a62
MR
714 while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) {
715 switch (ch) {
716 case 'm':
717 method = optarg;
718 break;
719 case 'p':
720 path = optarg;
721 break;
722 case 'l':
f789aa7b 723 log_filepath = optarg;
48ff7a62
MR
724 break;
725 case 'f':
f789aa7b 726 pid_filepath = optarg;
48ff7a62 727 break;
f789aa7b
MR
728 case 't':
729 state_dir = optarg;
730 break;
48ff7a62
MR
731 case 'v':
732 /* enable all log levels */
733 log_level = G_LOG_LEVEL_MASK;
734 break;
735 case 'V':
8efacc43 736 printf("QEMU Guest Agent %s\n", QEMU_VERSION);
48ff7a62
MR
737 return 0;
738 case 'd':
739 daemonize = 1;
740 break;
abd6cf6d
MR
741 case 'b': {
742 char **list_head, **list;
c8057f95 743 if (is_help_option(optarg)) {
abd6cf6d
MR
744 list_head = list = qmp_get_command_list();
745 while (*list != NULL) {
746 printf("%s\n", *list);
747 g_free(*list);
748 list++;
749 }
750 g_free(list_head);
751 return 0;
752 }
753 for (j = 0, i = 0, len = strlen(optarg); i < len; i++) {
754 if (optarg[i] == ',') {
755 optarg[i] = 0;
f22d85e9 756 blacklist = g_list_append(blacklist, &optarg[j]);
abd6cf6d
MR
757 j = i + 1;
758 }
759 }
760 if (j < i) {
f22d85e9 761 blacklist = g_list_append(blacklist, &optarg[j]);
abd6cf6d
MR
762 }
763 break;
764 }
bc62fa03
MR
765#ifdef _WIN32
766 case 's':
767 service = optarg;
768 if (strcmp(service, "install") == 0) {
f789aa7b 769 return ga_install_service(path, log_filepath);
bc62fa03
MR
770 } else if (strcmp(service, "uninstall") == 0) {
771 return ga_uninstall_service();
772 } else {
773 printf("Unknown service command.\n");
774 return EXIT_FAILURE;
775 }
776 break;
777#endif
48ff7a62
MR
778 case 'h':
779 usage(argv[0]);
780 return 0;
781 case '?':
782 g_print("Unknown option, try '%s --help' for more information.\n",
783 argv[0]);
784 return EXIT_FAILURE;
785 }
786 }
787
7267c094 788 s = g_malloc0(sizeof(GAState));
48ff7a62 789 s->log_level = log_level;
f789aa7b 790 s->log_file = stderr;
48ff7a62
MR
791 g_log_set_default_handler(ga_log, s);
792 g_log_set_fatal_mask(NULL, G_LOG_LEVEL_ERROR);
f789aa7b
MR
793 ga_enable_logging(s);
794 s->state_filepath_isfrozen = g_strdup_printf("%s/qga.state.isfrozen",
795 state_dir);
f22d85e9 796 s->frozen = false;
f789aa7b
MR
797#ifndef _WIN32
798 /* check if a previous instance of qemu-ga exited with filesystems' state
799 * marked as frozen. this could be a stale value (a non-qemu-ga process
800 * or reboot may have since unfrozen them), but better to require an
801 * uneeded unfreeze than to risk hanging on start-up
802 */
803 struct stat st;
804 if (stat(s->state_filepath_isfrozen, &st) == -1) {
805 /* it's okay if the file doesn't exist, but if we can't access for
806 * some other reason, such as permissions, there's a configuration
807 * that needs to be addressed. so just bail now before we get into
808 * more trouble later
809 */
810 if (errno != ENOENT) {
811 g_critical("unable to access state file at path %s: %s",
812 s->state_filepath_isfrozen, strerror(errno));
813 return EXIT_FAILURE;
814 }
815 } else {
816 g_warning("previous instance appears to have exited with frozen"
817 " filesystems. deferring logging/pidfile creation and"
818 " disabling non-fsfreeze-safe commands until"
819 " guest-fsfreeze-thaw is issued, or filesystems are"
820 " manually unfrozen and the file %s is removed",
821 s->state_filepath_isfrozen);
822 s->frozen = true;
823 }
824#endif
825
826 if (ga_is_frozen(s)) {
827 if (daemonize) {
828 /* delay opening/locking of pidfile till filesystem are unfrozen */
829 s->deferred_options.pid_filepath = pid_filepath;
830 become_daemon(NULL);
831 }
832 if (log_filepath) {
833 /* delay opening the log file till filesystems are unfrozen */
834 s->deferred_options.log_filepath = log_filepath;
835 }
836 ga_disable_logging(s);
837 ga_disable_non_whitelisted();
838 } else {
839 if (daemonize) {
840 become_daemon(pid_filepath);
841 }
842 if (log_filepath) {
6c615ec5
MR
843 FILE *log_file = fopen(log_filepath, "a");
844 if (!log_file) {
f789aa7b
MR
845 g_critical("unable to open specified log file: %s",
846 strerror(errno));
847 goto out_bad;
848 }
6c615ec5 849 s->log_file = log_file;
f789aa7b
MR
850 }
851 }
852
f22d85e9
MR
853 if (blacklist) {
854 s->blacklist = blacklist;
855 do {
856 g_debug("disabling command: %s", (char *)blacklist->data);
857 qmp_disable_command(blacklist->data);
858 blacklist = g_list_next(blacklist);
859 } while (blacklist);
860 }
e3d4d252
MR
861 s->command_state = ga_command_state_new();
862 ga_command_state_init(s, s->command_state);
863 ga_command_state_init_all(s->command_state);
125b310e 864 json_message_parser_init(&s->parser, process_event);
48ff7a62 865 ga_state = s;
d8ca685a 866#ifndef _WIN32
125b310e
MR
867 if (!register_signal_handlers()) {
868 g_critical("failed to register signal handlers");
869 goto out_bad;
870 }
d8ca685a 871#endif
48ff7a62 872
125b310e
MR
873 s->main_loop = g_main_loop_new(NULL, false);
874 if (!channel_init(ga_state, method, path)) {
875 g_critical("failed to initialize guest agent channel");
876 goto out_bad;
877 }
bc62fa03 878#ifndef _WIN32
48ff7a62 879 g_main_loop_run(ga_state->main_loop);
bc62fa03
MR
880#else
881 if (daemonize) {
882 SERVICE_TABLE_ENTRY service_table[] = {
883 { (char *)QGA_SERVICE_NAME, service_main }, { NULL, NULL } };
884 StartServiceCtrlDispatcher(service_table);
885 } else {
886 g_main_loop_run(ga_state->main_loop);
887 }
888#endif
48ff7a62 889
e3d4d252 890 ga_command_state_cleanup_all(ga_state->command_state);
125b310e 891 ga_channel_free(ga_state->channel);
48ff7a62 892
125b310e 893 if (daemonize) {
f789aa7b 894 unlink(pid_filepath);
125b310e 895 }
48ff7a62 896 return 0;
125b310e
MR
897
898out_bad:
899 if (daemonize) {
f789aa7b 900 unlink(pid_filepath);
125b310e
MR
901 }
902 return EXIT_FAILURE;
48ff7a62 903}