4 * Copyright IBM Corp. 2011
7 * Adam Litke <aglitke@linux.vnet.ibm.com>
8 * Michael Roth <mdroth@linux.vnet.ibm.com>
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.
18 #include <glib/gstdio.h>
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"
28 #include "qga/guest-agent-core.h"
29 #include "qemu/module.h"
31 #include "qapi/qmp/qerror.h"
32 #include "qapi/qmp/dispatch.h"
33 #include "qga/channel.h"
34 #include "qemu/bswap.h"
36 #include "qga/service-win32.h"
37 #include "qga/vss-win32.h"
43 #define CONFIG_FSFREEZE
48 #define QGA_VIRTIO_PATH_DEFAULT "/dev/virtio-ports/org.qemu.guest_agent.0"
49 #define QGA_STATE_RELATIVE_DIR "run"
51 #define QGA_VIRTIO_PATH_DEFAULT "\\\\.\\Global\\org.qemu.guest_agent.0"
52 #define QGA_STATE_RELATIVE_DIR "qemu-ga"
54 #ifdef CONFIG_FSFREEZE
55 #define QGA_FSFREEZE_HOOK_DEFAULT CONFIG_QEMU_CONFDIR "/fsfreeze-hook"
57 #define QGA_SENTINEL_BYTE 0xFF
60 const char *state_dir
;
64 typedef struct GAPersistentState
{
65 #define QGA_PSTATE_DEFAULT_FD_COUNTER 1000
70 JSONMessageParser parser
;
73 bool virtio
; /* fastpath to check for virtio to deal with poll() quirks */
74 GACommandState
*command_state
;
75 GLogLevelFlags log_level
;
81 bool delimit_response
;
84 const char *state_filepath_isfrozen
;
86 const char *log_filepath
;
87 const char *pid_filepath
;
89 #ifdef CONFIG_FSFREEZE
90 const char *fsfreeze_hook
;
92 const gchar
*pstate_filepath
;
93 GAPersistentState pstate
;
96 struct GAState
*ga_state
;
98 /* commands that are safe to issue while filesystems are frozen */
99 static const char *ga_freeze_whitelist
[] = {
103 "guest-sync-delimited",
104 "guest-fsfreeze-status",
105 "guest-fsfreeze-thaw",
110 DWORD WINAPI
service_ctrl_handler(DWORD ctrl
, DWORD type
, LPVOID data
,
112 VOID WINAPI
service_main(DWORD argc
, TCHAR
*argv
[]);
116 init_dfl_pathnames(void)
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");
126 static void quit_handler(int sig
)
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).
134 if (ga_is_frozen(ga_state
)) {
137 g_debug("received signal num %d, quitting", sig
);
139 if (g_main_loop_is_running(ga_state
->main_loop
)) {
140 g_main_loop_quit(ga_state
->main_loop
);
145 static gboolean
register_signal_handlers(void)
147 struct sigaction sigact
;
150 memset(&sigact
, 0, sizeof(struct sigaction
));
151 sigact
.sa_handler
= quit_handler
;
153 ret
= sigaction(SIGINT
, &sigact
, NULL
);
155 g_error("error configuring signal handler: %s", strerror(errno
));
157 ret
= sigaction(SIGTERM
, &sigact
, NULL
);
159 g_error("error configuring signal handler: %s", strerror(errno
));
165 /* TODO: use this in place of all post-fork() fclose(std*) callers */
166 void reopen_fd_to_null(int fd
)
170 nullfd
= open("/dev/null", O_RDWR
);
183 static void usage(const char *cmd
)
186 "Usage: %s [-m <method> -p <path>] [<options>]\n"
187 "QEMU Guest Agent %s\n"
189 " -m, --method transport method: one of unix-listen, virtio-serial, or\n"
190 " isa-serial (virtio-serial is the default)\n"
191 " -p, --path device/socket path (the default for virtio-serial is:\n"
193 " -l, --logfile set logfile path, logs to stderr by default\n"
194 " -f, --pidfile specify pidfile (default is %s)\n"
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"
201 " If using -F with an argument, do not follow -F with a\n"
203 " (for example: -F/var/run/fsfreezehook.sh)\n"
205 " -t, --statedir specify dir to store state information (absolute paths\n"
206 " only, default is %s)\n"
207 " -v, --verbose log extra debugging information\n"
208 " -V, --version print version information and exit\n"
209 " -d, --daemonize become a daemon\n"
211 " -s, --service service commands: install, uninstall\n"
213 " -b, --blacklist comma-separated list of RPCs to disable (no spaces, \"?\"\n"
214 " to list available RPCs)\n"
215 " -h, --help display this help and exit\n"
217 "Report bugs to <mdroth@linux.vnet.ibm.com>\n"
218 , cmd
, QEMU_VERSION
, QGA_VIRTIO_PATH_DEFAULT
, dfl_pathnames
.pidfile
,
219 #ifdef CONFIG_FSFREEZE
220 QGA_FSFREEZE_HOOK_DEFAULT
,
222 dfl_pathnames
.state_dir
);
225 static const char *ga_log_level_str(GLogLevelFlags level
)
227 switch (level
& G_LOG_LEVEL_MASK
) {
228 case G_LOG_LEVEL_ERROR
:
230 case G_LOG_LEVEL_CRITICAL
:
232 case G_LOG_LEVEL_WARNING
:
234 case G_LOG_LEVEL_MESSAGE
:
236 case G_LOG_LEVEL_INFO
:
238 case G_LOG_LEVEL_DEBUG
:
245 bool ga_logging_enabled(GAState
*s
)
247 return s
->logging_enabled
;
250 void ga_disable_logging(GAState
*s
)
252 s
->logging_enabled
= false;
255 void ga_enable_logging(GAState
*s
)
257 s
->logging_enabled
= true;
260 static void ga_log(const gchar
*domain
, GLogLevelFlags level
,
261 const gchar
*msg
, gpointer opaque
)
265 const char *level_str
= ga_log_level_str(level
);
267 if (!ga_logging_enabled(s
)) {
271 level
&= G_LOG_LEVEL_MASK
;
273 if (domain
&& strcmp(domain
, "syslog") == 0) {
274 syslog(LOG_INFO
, "%s: %s", level_str
, msg
);
275 } else if (level
& s
->log_level
) {
277 if (level
& s
->log_level
) {
279 g_get_current_time(&time
);
281 "%lu.%lu: %s: %s\n", time
.tv_sec
, time
.tv_usec
, level_str
, msg
);
286 void ga_set_response_delimited(GAState
*s
)
288 s
->delimit_response
= true;
291 static FILE *ga_open_logfile(const char *logfile
)
295 f
= fopen(logfile
, "a");
300 qemu_set_cloexec(fileno(f
));
305 static bool ga_open_pidfile(const char *pidfile
)
310 pidfd
= qemu_open(pidfile
, O_CREAT
|O_WRONLY
, S_IRUSR
|S_IWUSR
);
311 if (pidfd
== -1 || lockf(pidfd
, F_TLOCK
, 0)) {
312 g_critical("Cannot lock pid file, %s", strerror(errno
));
319 if (ftruncate(pidfd
, 0)) {
320 g_critical("Failed to truncate pid file");
323 snprintf(pidstr
, sizeof(pidstr
), "%d\n", getpid());
324 if (write(pidfd
, pidstr
, strlen(pidstr
)) != strlen(pidstr
)) {
325 g_critical("Failed to write pid file");
329 /* keep pidfile open & locked forever */
338 static bool ga_open_pidfile(const char *pidfile
)
344 static gint
ga_strcmp(gconstpointer str1
, gconstpointer str2
)
346 return strcmp(str1
, str2
);
349 /* disable commands that aren't safe for fsfreeze */
350 static void ga_disable_non_whitelisted(QmpCommand
*cmd
, void *opaque
)
352 bool whitelisted
= false;
354 const char *name
= qmp_command_name(cmd
);
356 while (ga_freeze_whitelist
[i
] != NULL
) {
357 if (strcmp(name
, ga_freeze_whitelist
[i
]) == 0) {
363 g_debug("disabling command: %s", name
);
364 qmp_disable_command(name
);
368 /* [re-]enable all commands, except those explicitly blacklisted by user */
369 static void ga_enable_non_blacklisted(QmpCommand
*cmd
, void *opaque
)
371 GList
*blacklist
= opaque
;
372 const char *name
= qmp_command_name(cmd
);
374 if (g_list_find_custom(blacklist
, name
, ga_strcmp
) == NULL
&&
375 !qmp_command_is_enabled(cmd
)) {
376 g_debug("enabling command: %s", name
);
377 qmp_enable_command(name
);
381 static bool ga_create_file(const char *path
)
383 int fd
= open(path
, O_CREAT
| O_WRONLY
, S_IWUSR
| S_IRUSR
);
385 g_warning("unable to open/create file %s: %s", path
, strerror(errno
));
392 static bool ga_delete_file(const char *path
)
394 int ret
= unlink(path
);
396 g_warning("unable to delete file: %s: %s", path
, strerror(errno
));
403 bool ga_is_frozen(GAState
*s
)
408 void ga_set_frozen(GAState
*s
)
410 if (ga_is_frozen(s
)) {
413 /* disable all non-whitelisted (for frozen state) commands */
414 qmp_for_each_command(ga_disable_non_whitelisted
, NULL
);
415 g_warning("disabling logging due to filesystem freeze");
416 ga_disable_logging(s
);
418 if (!ga_create_file(s
->state_filepath_isfrozen
)) {
419 g_warning("unable to create %s, fsfreeze may not function properly",
420 s
->state_filepath_isfrozen
);
424 void ga_unset_frozen(GAState
*s
)
426 if (!ga_is_frozen(s
)) {
430 /* if we delayed creation/opening of pid/log files due to being
431 * in a frozen state at start up, do it now
433 if (s
->deferred_options
.log_filepath
) {
434 s
->log_file
= ga_open_logfile(s
->deferred_options
.log_filepath
);
436 s
->log_file
= stderr
;
438 s
->deferred_options
.log_filepath
= NULL
;
440 ga_enable_logging(s
);
441 g_warning("logging re-enabled due to filesystem unfreeze");
442 if (s
->deferred_options
.pid_filepath
) {
443 if (!ga_open_pidfile(s
->deferred_options
.pid_filepath
)) {
444 g_warning("failed to create/open pid file");
446 s
->deferred_options
.pid_filepath
= NULL
;
449 /* enable all disabled, non-blacklisted commands */
450 qmp_for_each_command(ga_enable_non_blacklisted
, s
->blacklist
);
452 if (!ga_delete_file(s
->state_filepath_isfrozen
)) {
453 g_warning("unable to delete %s, fsfreeze may not function properly",
454 s
->state_filepath_isfrozen
);
458 #ifdef CONFIG_FSFREEZE
459 const char *ga_fsfreeze_hook(GAState
*s
)
461 return s
->fsfreeze_hook
;
465 static void become_daemon(const char *pidfile
)
479 if (!ga_open_pidfile(pidfile
)) {
480 g_critical("failed to create pidfile");
485 umask(S_IRWXG
| S_IRWXO
);
490 if ((chdir("/")) < 0) {
494 reopen_fd_to_null(STDIN_FILENO
);
495 reopen_fd_to_null(STDOUT_FILENO
);
496 reopen_fd_to_null(STDERR_FILENO
);
503 g_critical("failed to daemonize");
508 static int send_response(GAState
*s
, QObject
*payload
)
511 QString
*payload_qstr
, *response_qstr
;
514 g_assert(payload
&& s
->channel
);
516 payload_qstr
= qobject_to_json(payload
);
521 if (s
->delimit_response
) {
522 s
->delimit_response
= false;
523 response_qstr
= qstring_new();
524 qstring_append_chr(response_qstr
, QGA_SENTINEL_BYTE
);
525 qstring_append(response_qstr
, qstring_get_str(payload_qstr
));
526 QDECREF(payload_qstr
);
528 response_qstr
= payload_qstr
;
531 qstring_append_chr(response_qstr
, '\n');
532 buf
= qstring_get_str(response_qstr
);
533 status
= ga_channel_write_all(s
->channel
, buf
, strlen(buf
));
534 QDECREF(response_qstr
);
535 if (status
!= G_IO_STATUS_NORMAL
) {
542 static void process_command(GAState
*s
, QDict
*req
)
548 g_debug("processing command");
549 rsp
= qmp_dispatch(QOBJECT(req
));
551 ret
= send_response(s
, rsp
);
553 g_warning("error sending response: %s", strerror(ret
));
559 /* handle requests/control events coming in over the channel */
560 static void process_event(JSONMessageParser
*parser
, QList
*tokens
)
562 GAState
*s
= container_of(parser
, GAState
, parser
);
568 g_assert(s
&& parser
);
570 g_debug("process_event: called");
571 obj
= json_parser_parse_err(tokens
, NULL
, &err
);
572 if (err
|| !obj
|| qobject_type(obj
) != QTYPE_QDICT
) {
576 g_warning("failed to parse event: unknown error");
577 error_set(&err
, QERR_JSON_PARSING
);
579 g_warning("failed to parse event: %s", error_get_pretty(err
));
581 qdict_put_obj(qdict
, "error", qmp_build_error_object(err
));
584 qdict
= qobject_to_qdict(obj
);
589 /* handle host->guest commands */
590 if (qdict_haskey(qdict
, "execute")) {
591 process_command(s
, qdict
);
593 if (!qdict_haskey(qdict
, "error")) {
596 g_warning("unrecognized payload format");
597 error_set(&err
, QERR_UNSUPPORTED
);
598 qdict_put_obj(qdict
, "error", qmp_build_error_object(err
));
601 ret
= send_response(s
, QOBJECT(qdict
));
603 g_warning("error sending error response: %s", strerror(ret
));
610 /* false return signals GAChannel to close the current client connection */
611 static gboolean
channel_event_cb(GIOCondition condition
, gpointer data
)
614 gchar buf
[QGA_READ_COUNT_DEFAULT
+1];
617 GIOStatus status
= ga_channel_read(s
->channel
, buf
, QGA_READ_COUNT_DEFAULT
, &count
);
619 g_warning("error reading channel: %s", err
->message
);
624 case G_IO_STATUS_ERROR
:
625 g_warning("error reading channel");
627 case G_IO_STATUS_NORMAL
:
629 g_debug("read data, count: %d, data: %s", (int)count
, buf
);
630 json_message_parser_feed(&s
->parser
, (char *)buf
, (int)count
);
632 case G_IO_STATUS_EOF
:
633 g_debug("received EOF");
638 case G_IO_STATUS_AGAIN
:
639 /* virtio causes us to spin here when no process is attached to
640 * host-side chardev. sleep a bit to mitigate this
647 g_warning("unknown channel read status, closing");
653 static gboolean
channel_init(GAState
*s
, const gchar
*method
, const gchar
*path
)
655 GAChannelMethod channel_method
;
657 if (method
== NULL
) {
658 method
= "virtio-serial";
662 if (strcmp(method
, "virtio-serial") != 0) {
663 g_critical("must specify a path for this channel");
666 /* try the default path for the virtio-serial port */
667 path
= QGA_VIRTIO_PATH_DEFAULT
;
670 if (strcmp(method
, "virtio-serial") == 0) {
671 s
->virtio
= true; /* virtio requires special handling in some cases */
672 channel_method
= GA_CHANNEL_VIRTIO_SERIAL
;
673 } else if (strcmp(method
, "isa-serial") == 0) {
674 channel_method
= GA_CHANNEL_ISA_SERIAL
;
675 } else if (strcmp(method
, "unix-listen") == 0) {
676 channel_method
= GA_CHANNEL_UNIX_LISTEN
;
678 g_critical("unsupported channel method/type: %s", method
);
682 s
->channel
= ga_channel_new(channel_method
, path
, channel_event_cb
, s
);
684 g_critical("failed to create guest agent channel");
692 DWORD WINAPI
service_ctrl_handler(DWORD ctrl
, DWORD type
, LPVOID data
,
695 DWORD ret
= NO_ERROR
;
696 GAService
*service
= &ga_state
->service
;
700 case SERVICE_CONTROL_STOP
:
701 case SERVICE_CONTROL_SHUTDOWN
:
702 quit_handler(SIGTERM
);
703 service
->status
.dwCurrentState
= SERVICE_STOP_PENDING
;
704 SetServiceStatus(service
->status_handle
, &service
->status
);
708 ret
= ERROR_CALL_NOT_IMPLEMENTED
;
713 VOID WINAPI
service_main(DWORD argc
, TCHAR
*argv
[])
715 GAService
*service
= &ga_state
->service
;
717 service
->status_handle
= RegisterServiceCtrlHandlerEx(QGA_SERVICE_NAME
,
718 service_ctrl_handler
, NULL
);
720 if (service
->status_handle
== 0) {
721 g_critical("Failed to register extended requests function!\n");
725 service
->status
.dwServiceType
= SERVICE_WIN32
;
726 service
->status
.dwCurrentState
= SERVICE_RUNNING
;
727 service
->status
.dwControlsAccepted
= SERVICE_ACCEPT_STOP
| SERVICE_ACCEPT_SHUTDOWN
;
728 service
->status
.dwWin32ExitCode
= NO_ERROR
;
729 service
->status
.dwServiceSpecificExitCode
= NO_ERROR
;
730 service
->status
.dwCheckPoint
= 0;
731 service
->status
.dwWaitHint
= 0;
732 SetServiceStatus(service
->status_handle
, &service
->status
);
734 g_main_loop_run(ga_state
->main_loop
);
736 service
->status
.dwCurrentState
= SERVICE_STOPPED
;
737 SetServiceStatus(service
->status_handle
, &service
->status
);
741 static void set_persistent_state_defaults(GAPersistentState
*pstate
)
744 pstate
->fd_counter
= QGA_PSTATE_DEFAULT_FD_COUNTER
;
747 static void persistent_state_from_keyfile(GAPersistentState
*pstate
,
752 /* if any fields are missing, either because the file was tampered with
753 * by agents of chaos, or because the field wasn't present at the time the
754 * file was created, the best we can ever do is start over with the default
755 * values. so load them now, and ignore any errors in accessing key-value
758 set_persistent_state_defaults(pstate
);
760 if (g_key_file_has_key(keyfile
, "global", "fd_counter", NULL
)) {
762 g_key_file_get_integer(keyfile
, "global", "fd_counter", NULL
);
766 static void persistent_state_to_keyfile(const GAPersistentState
*pstate
,
772 g_key_file_set_integer(keyfile
, "global", "fd_counter", pstate
->fd_counter
);
775 static gboolean
write_persistent_state(const GAPersistentState
*pstate
,
778 GKeyFile
*keyfile
= g_key_file_new();
786 persistent_state_to_keyfile(pstate
, keyfile
);
787 data
= g_key_file_to_data(keyfile
, &data_len
, &gerr
);
789 g_critical("failed to convert persistent state to string: %s",
795 g_file_set_contents(path
, data
, data_len
, &gerr
);
797 g_critical("failed to write persistent state to %s: %s",
798 path
, gerr
->message
);
808 g_key_file_free(keyfile
);
814 static gboolean
read_persistent_state(GAPersistentState
*pstate
,
815 const gchar
*path
, gboolean frozen
)
817 GKeyFile
*keyfile
= NULL
;
824 if (stat(path
, &st
) == -1) {
825 /* it's okay if state file doesn't exist, but any other error
826 * indicates a permissions issue or some other misconfiguration
827 * that we likely won't be able to recover from.
829 if (errno
!= ENOENT
) {
830 g_critical("unable to access state file at path %s: %s",
831 path
, strerror(errno
));
836 /* file doesn't exist. initialize state to default values and
837 * attempt to save now. (we could wait till later when we have
838 * modified state we need to commit, but if there's a problem,
839 * such as a missing parent directory, we want to catch it now)
841 * there is a potential scenario where someone either managed to
842 * update the agent from a version that didn't use a key store
843 * while qemu-ga thought the filesystem was frozen, or
844 * deleted the key store prior to issuing a fsfreeze, prior
845 * to restarting the agent. in this case we go ahead and defer
846 * initial creation till we actually have modified state to
847 * write, otherwise fail to recover from freeze.
849 set_persistent_state_defaults(pstate
);
851 ret
= write_persistent_state(pstate
, path
);
853 g_critical("unable to create state file at path %s", path
);
862 keyfile
= g_key_file_new();
863 g_key_file_load_from_file(keyfile
, path
, 0, &gerr
);
865 g_critical("error loading persistent state from path: %s, %s",
866 path
, gerr
->message
);
871 persistent_state_from_keyfile(pstate
, keyfile
);
875 g_key_file_free(keyfile
);
884 int64_t ga_get_fd_handle(GAState
*s
, Error
**errp
)
888 g_assert(s
->pstate_filepath
);
889 /* we blacklist commands and avoid operations that potentially require
890 * writing to disk when we're in a frozen state. this includes opening
891 * new files, so we should never get here in that situation
893 g_assert(!ga_is_frozen(s
));
895 handle
= s
->pstate
.fd_counter
++;
897 /* This should never happen on a reasonable timeframe, as guest-file-open
898 * would have to be issued 2^63 times */
899 if (s
->pstate
.fd_counter
== INT64_MAX
) {
903 if (!write_persistent_state(&s
->pstate
, s
->pstate_filepath
)) {
904 error_setg(errp
, "failed to commit persistent state to disk");
910 static void ga_print_cmd(QmpCommand
*cmd
, void *opaque
)
912 printf("%s\n", qmp_command_name(cmd
));
915 int main(int argc
, char **argv
)
917 const char *sopt
= "hVvdm:p:l:f:F::b:s:t:";
918 const char *method
= NULL
, *path
= NULL
;
919 const char *log_filepath
= NULL
;
920 const char *pid_filepath
;
921 #ifdef CONFIG_FSFREEZE
922 const char *fsfreeze_hook
= NULL
;
924 const char *state_dir
;
926 const char *service
= NULL
;
928 const struct option lopt
[] = {
929 { "help", 0, NULL
, 'h' },
930 { "version", 0, NULL
, 'V' },
931 { "logfile", 1, NULL
, 'l' },
932 { "pidfile", 1, NULL
, 'f' },
933 #ifdef CONFIG_FSFREEZE
934 { "fsfreeze-hook", 2, NULL
, 'F' },
936 { "verbose", 0, NULL
, 'v' },
937 { "method", 1, NULL
, 'm' },
938 { "path", 1, NULL
, 'p' },
939 { "daemonize", 0, NULL
, 'd' },
940 { "blacklist", 1, NULL
, 'b' },
942 { "service", 1, NULL
, 's' },
944 { "statedir", 1, NULL
, 't' },
947 int opt_ind
= 0, ch
, daemonize
= 0, i
, j
, len
;
948 GLogLevelFlags log_level
= G_LOG_LEVEL_ERROR
| G_LOG_LEVEL_CRITICAL
;
949 GList
*blacklist
= NULL
;
952 module_call_init(MODULE_INIT_QAPI
);
954 init_dfl_pathnames();
955 pid_filepath
= dfl_pathnames
.pidfile
;
956 state_dir
= dfl_pathnames
.state_dir
;
958 while ((ch
= getopt_long(argc
, argv
, sopt
, lopt
, &opt_ind
)) != -1) {
967 log_filepath
= optarg
;
970 pid_filepath
= optarg
;
972 #ifdef CONFIG_FSFREEZE
974 fsfreeze_hook
= optarg
? optarg
: QGA_FSFREEZE_HOOK_DEFAULT
;
981 /* enable all log levels */
982 log_level
= G_LOG_LEVEL_MASK
;
985 printf("QEMU Guest Agent %s\n", QEMU_VERSION
);
991 if (is_help_option(optarg
)) {
992 qmp_for_each_command(ga_print_cmd
, NULL
);
995 for (j
= 0, i
= 0, len
= strlen(optarg
); i
< len
; i
++) {
996 if (optarg
[i
] == ',') {
998 blacklist
= g_list_append(blacklist
, &optarg
[j
]);
1003 blacklist
= g_list_append(blacklist
, &optarg
[j
]);
1010 if (strcmp(service
, "install") == 0) {
1011 const char *fixed_state_dir
;
1013 /* If the user passed the "-t" option, we save that state dir
1014 * in the service. Otherwise we let the service fetch the state
1015 * dir from the environment when it starts.
1017 fixed_state_dir
= (state_dir
== dfl_pathnames
.state_dir
) ?
1020 if (ga_install_vss_provider()) {
1021 return EXIT_FAILURE
;
1023 if (ga_install_service(path
, log_filepath
, fixed_state_dir
)) {
1024 return EXIT_FAILURE
;
1027 } else if (strcmp(service
, "uninstall") == 0) {
1028 ga_uninstall_vss_provider();
1029 return ga_uninstall_service();
1031 printf("Unknown service command.\n");
1032 return EXIT_FAILURE
;
1040 g_print("Unknown option, try '%s --help' for more information.\n",
1042 return EXIT_FAILURE
;
1047 /* On win32 the state directory is application specific (be it the default
1048 * or a user override). We got past the command line parsing; let's create
1049 * the directory (with any intermediate directories). If we run into an
1050 * error later on, we won't try to clean up the directory, it is considered
1053 if (g_mkdir_with_parents(state_dir
, S_IRWXU
) == -1) {
1054 g_critical("unable to create (an ancestor of) the state directory"
1055 " '%s': %s", state_dir
, strerror(errno
));
1056 return EXIT_FAILURE
;
1060 s
= g_malloc0(sizeof(GAState
));
1061 s
->log_level
= log_level
;
1062 s
->log_file
= stderr
;
1063 #ifdef CONFIG_FSFREEZE
1064 s
->fsfreeze_hook
= fsfreeze_hook
;
1066 g_log_set_default_handler(ga_log
, s
);
1067 g_log_set_fatal_mask(NULL
, G_LOG_LEVEL_ERROR
);
1068 ga_enable_logging(s
);
1069 s
->state_filepath_isfrozen
= g_strdup_printf("%s/qga.state.isfrozen",
1071 s
->pstate_filepath
= g_strdup_printf("%s/qga.state", state_dir
);
1075 /* check if a previous instance of qemu-ga exited with filesystems' state
1076 * marked as frozen. this could be a stale value (a non-qemu-ga process
1077 * or reboot may have since unfrozen them), but better to require an
1078 * uneeded unfreeze than to risk hanging on start-up
1081 if (stat(s
->state_filepath_isfrozen
, &st
) == -1) {
1082 /* it's okay if the file doesn't exist, but if we can't access for
1083 * some other reason, such as permissions, there's a configuration
1084 * that needs to be addressed. so just bail now before we get into
1085 * more trouble later
1087 if (errno
!= ENOENT
) {
1088 g_critical("unable to access state file at path %s: %s",
1089 s
->state_filepath_isfrozen
, strerror(errno
));
1090 return EXIT_FAILURE
;
1093 g_warning("previous instance appears to have exited with frozen"
1094 " filesystems. deferring logging/pidfile creation and"
1095 " disabling non-fsfreeze-safe commands until"
1096 " guest-fsfreeze-thaw is issued, or filesystems are"
1097 " manually unfrozen and the file %s is removed",
1098 s
->state_filepath_isfrozen
);
1103 if (ga_is_frozen(s
)) {
1105 /* delay opening/locking of pidfile till filesystem are unfrozen */
1106 s
->deferred_options
.pid_filepath
= pid_filepath
;
1107 become_daemon(NULL
);
1110 /* delay opening the log file till filesystems are unfrozen */
1111 s
->deferred_options
.log_filepath
= log_filepath
;
1113 ga_disable_logging(s
);
1114 qmp_for_each_command(ga_disable_non_whitelisted
, NULL
);
1117 become_daemon(pid_filepath
);
1120 FILE *log_file
= ga_open_logfile(log_filepath
);
1122 g_critical("unable to open specified log file: %s",
1126 s
->log_file
= log_file
;
1130 /* load persistent state from disk */
1131 if (!read_persistent_state(&s
->pstate
,
1134 g_critical("failed to load persistent state");
1139 s
->blacklist
= blacklist
;
1141 g_debug("disabling command: %s", (char *)blacklist
->data
);
1142 qmp_disable_command(blacklist
->data
);
1143 blacklist
= g_list_next(blacklist
);
1144 } while (blacklist
);
1146 s
->command_state
= ga_command_state_new();
1147 ga_command_state_init(s
, s
->command_state
);
1148 ga_command_state_init_all(s
->command_state
);
1149 json_message_parser_init(&s
->parser
, process_event
);
1152 if (!register_signal_handlers()) {
1153 g_critical("failed to register signal handlers");
1158 s
->main_loop
= g_main_loop_new(NULL
, false);
1159 if (!channel_init(ga_state
, method
, path
)) {
1160 g_critical("failed to initialize guest agent channel");
1164 g_main_loop_run(ga_state
->main_loop
);
1167 SERVICE_TABLE_ENTRY service_table
[] = {
1168 { (char *)QGA_SERVICE_NAME
, service_main
}, { NULL
, NULL
} };
1169 StartServiceCtrlDispatcher(service_table
);
1171 g_main_loop_run(ga_state
->main_loop
);
1175 ga_command_state_cleanup_all(ga_state
->command_state
);
1176 ga_channel_free(ga_state
->channel
);
1179 unlink(pid_filepath
);
1185 unlink(pid_filepath
);
1187 return EXIT_FAILURE
;