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.
14 #include "qemu/osdep.h"
16 #include <glib/gstdio.h>
21 #include "qemu-common.h"
22 #include "qapi/qmp/json-parser.h"
23 #include "qapi/qmp/qdict.h"
24 #include "qapi/qmp/qjson.h"
25 #include "qapi/qmp/qstring.h"
26 #include "guest-agent-core.h"
27 #include "qga-qapi-init-commands.h"
28 #include "qapi/qmp/qerror.h"
29 #include "qapi/error.h"
31 #include "qemu/bswap.h"
32 #include "qemu/cutils.h"
33 #include "qemu/help_option.h"
34 #include "qemu/sockets.h"
35 #include "qemu/systemd.h"
36 #include "qemu-version.h"
39 #include "qga/service-win32.h"
40 #include "qga/vss-win32.h"
45 #define CONFIG_FSFREEZE
50 #define QGA_VIRTIO_PATH_DEFAULT "/dev/virtio-ports/org.qemu.guest_agent.0"
51 #define QGA_STATE_RELATIVE_DIR "run"
52 #define QGA_SERIAL_PATH_DEFAULT "/dev/ttyS0"
54 #define QGA_VIRTIO_PATH_DEFAULT "\\\\.\\Global\\org.qemu.guest_agent.0"
55 #define QGA_STATE_RELATIVE_DIR "qemu-ga"
56 #define QGA_SERIAL_PATH_DEFAULT "COM1"
58 #ifdef CONFIG_FSFREEZE
59 #define QGA_FSFREEZE_HOOK_DEFAULT CONFIG_QEMU_CONFDIR "/fsfreeze-hook"
61 #define QGA_SENTINEL_BYTE 0xFF
62 #define QGA_CONF_DEFAULT CONFIG_QEMU_CONFDIR G_DIR_SEPARATOR_S "qemu-ga.conf"
63 #define QGA_RETRY_INTERVAL 5
66 const char *state_dir
;
70 typedef struct GAPersistentState
{
71 #define QGA_PSTATE_DEFAULT_FD_COUNTER 1000
75 typedef struct GAConfig GAConfig
;
78 JSONMessageParser parser
;
81 bool virtio
; /* fastpath to check for virtio to deal with poll() quirks */
82 GACommandState
*command_state
;
83 GLogLevelFlags log_level
;
90 bool delimit_response
;
93 char *state_filepath_isfrozen
;
95 const char *log_filepath
;
96 const char *pid_filepath
;
98 #ifdef CONFIG_FSFREEZE
99 const char *fsfreeze_hook
;
101 gchar
*pstate_filepath
;
102 GAPersistentState pstate
;
104 int socket_activation
;
108 struct GAState
*ga_state
;
109 QmpCommandList ga_commands
;
111 /* commands that are safe to issue while filesystems are frozen */
112 static const char *ga_freeze_whitelist
[] = {
116 "guest-sync-delimited",
117 "guest-fsfreeze-status",
118 "guest-fsfreeze-thaw",
123 DWORD WINAPI
service_ctrl_handler(DWORD ctrl
, DWORD type
, LPVOID data
,
125 DWORD WINAPI
handle_serial_device_events(DWORD type
, LPVOID data
);
126 VOID WINAPI
service_main(DWORD argc
, TCHAR
*argv
[]);
128 static int run_agent(GAState
*s
);
129 static void stop_agent(GAState
*s
, bool requested
);
132 init_dfl_pathnames(void)
134 g_assert(dfl_pathnames
.state_dir
== NULL
);
135 g_assert(dfl_pathnames
.pidfile
== NULL
);
136 dfl_pathnames
.state_dir
= qemu_get_local_state_pathname(
137 QGA_STATE_RELATIVE_DIR
);
138 dfl_pathnames
.pidfile
= qemu_get_local_state_pathname(
139 QGA_STATE_RELATIVE_DIR G_DIR_SEPARATOR_S
"qemu-ga.pid");
142 static void quit_handler(int sig
)
144 /* if we're frozen, don't exit unless we're absolutely forced to,
145 * because it's basically impossible for graceful exit to complete
146 * unless all log/pid files are on unfreezable filesystems. there's
147 * also a very likely chance killing the agent before unfreezing
148 * the filesystems is a mistake (or will be viewed as one later).
149 * On Windows the freeze interval is limited to 10 seconds, so
150 * we should quit, but first we should wait for the timeout, thaw
151 * the filesystem and quit.
153 if (ga_is_frozen(ga_state
)) {
157 HANDLE hEventTimeout
;
159 g_debug("Thawing filesystems before exiting");
161 hEventTimeout
= OpenEvent(EVENT_ALL_ACCESS
, FALSE
, EVENT_NAME_TIMEOUT
);
163 WaitForSingleObject(hEventTimeout
, 0);
164 CloseHandle(hEventTimeout
);
166 qga_vss_fsfreeze(&i
, false, NULL
, &err
);
168 g_debug("Error unfreezing filesystems prior to exiting: %s",
169 error_get_pretty(err
));
176 g_debug("received signal num %d, quitting", sig
);
178 stop_agent(ga_state
, true);
182 static gboolean
register_signal_handlers(void)
184 struct sigaction sigact
;
187 memset(&sigact
, 0, sizeof(struct sigaction
));
188 sigact
.sa_handler
= quit_handler
;
190 ret
= sigaction(SIGINT
, &sigact
, NULL
);
192 g_error("error configuring signal handler: %s", strerror(errno
));
194 ret
= sigaction(SIGTERM
, &sigact
, NULL
);
196 g_error("error configuring signal handler: %s", strerror(errno
));
199 sigact
.sa_handler
= SIG_IGN
;
200 if (sigaction(SIGPIPE
, &sigact
, NULL
) != 0) {
201 g_error("error configuring SIGPIPE signal handler: %s",
208 /* TODO: use this in place of all post-fork() fclose(std*) callers */
209 void reopen_fd_to_null(int fd
)
213 nullfd
= open("/dev/null", O_RDWR
);
226 static void usage(const char *cmd
)
229 "Usage: %s [-m <method> -p <path>] [<options>]\n"
230 "QEMU Guest Agent " QEMU_FULL_VERSION
"\n"
233 " -m, --method transport method: one of unix-listen, virtio-serial,\n"
234 " isa-serial, or vsock-listen (virtio-serial is the default)\n"
235 " -p, --path device/socket path (the default for virtio-serial is:\n"
237 " the default for isa-serial is:\n"
239 " Socket addresses for vsock-listen are written as\n"
241 " -l, --logfile set logfile path, logs to stderr by default\n"
242 " -f, --pidfile specify pidfile (default is %s)\n"
243 #ifdef CONFIG_FSFREEZE
244 " -F, --fsfreeze-hook\n"
245 " enable fsfreeze hook. Accepts an optional argument that\n"
246 " specifies script to run on freeze/thaw. Script will be\n"
247 " called with 'freeze'/'thaw' arguments accordingly.\n"
249 " If using -F with an argument, do not follow -F with a\n"
251 " (for example: -F/var/run/fsfreezehook.sh)\n"
253 " -t, --statedir specify dir to store state information (absolute paths\n"
254 " only, default is %s)\n"
255 " -v, --verbose log extra debugging information\n"
256 " -V, --version print version information and exit\n"
257 " -d, --daemonize become a daemon\n"
259 " -s, --service service commands: install, uninstall, vss-install, vss-uninstall\n"
261 " -b, --blacklist comma-separated list of RPCs to disable (no spaces, \"?\"\n"
262 " to list available RPCs)\n"
263 " -D, --dump-conf dump a qemu-ga config file based on current config\n"
264 " options / command-line parameters to stdout\n"
265 " -r, --retry-path attempt re-opening path if it's unavailable or closed\n"
266 " due to an error which may be recoverable in the future\n"
267 " (virtio-serial driver re-install, serial device hot\n"
268 " plug/unplug, etc.)\n"
269 " -h, --help display this help and exit\n"
271 QEMU_HELP_BOTTOM
"\n"
272 , cmd
, QGA_VIRTIO_PATH_DEFAULT
, QGA_SERIAL_PATH_DEFAULT
,
273 dfl_pathnames
.pidfile
,
274 #ifdef CONFIG_FSFREEZE
275 QGA_FSFREEZE_HOOK_DEFAULT
,
277 dfl_pathnames
.state_dir
);
280 static const char *ga_log_level_str(GLogLevelFlags level
)
282 switch (level
& G_LOG_LEVEL_MASK
) {
283 case G_LOG_LEVEL_ERROR
:
285 case G_LOG_LEVEL_CRITICAL
:
287 case G_LOG_LEVEL_WARNING
:
289 case G_LOG_LEVEL_MESSAGE
:
291 case G_LOG_LEVEL_INFO
:
293 case G_LOG_LEVEL_DEBUG
:
300 bool ga_logging_enabled(GAState
*s
)
302 return s
->logging_enabled
;
305 void ga_disable_logging(GAState
*s
)
307 s
->logging_enabled
= false;
310 void ga_enable_logging(GAState
*s
)
312 s
->logging_enabled
= true;
315 static void ga_log(const gchar
*domain
, GLogLevelFlags level
,
316 const gchar
*msg
, gpointer opaque
)
320 const char *level_str
= ga_log_level_str(level
);
322 if (!ga_logging_enabled(s
)) {
326 level
&= G_LOG_LEVEL_MASK
;
328 if (g_strcmp0(domain
, "syslog") == 0) {
329 syslog(LOG_INFO
, "%s: %s", level_str
, msg
);
330 } else if (level
& s
->log_level
) {
332 if (level
& s
->log_level
) {
334 g_get_current_time(&time
);
336 "%lu.%lu: %s: %s\n", time
.tv_sec
, time
.tv_usec
, level_str
, msg
);
341 void ga_set_response_delimited(GAState
*s
)
343 s
->delimit_response
= true;
346 static FILE *ga_open_logfile(const char *logfile
)
350 f
= fopen(logfile
, "a");
355 qemu_set_cloexec(fileno(f
));
359 static gint
ga_strcmp(gconstpointer str1
, gconstpointer str2
)
361 return strcmp(str1
, str2
);
364 /* disable commands that aren't safe for fsfreeze */
365 static void ga_disable_non_whitelisted(const QmpCommand
*cmd
, void *opaque
)
367 bool whitelisted
= false;
369 const char *name
= qmp_command_name(cmd
);
371 while (ga_freeze_whitelist
[i
] != NULL
) {
372 if (strcmp(name
, ga_freeze_whitelist
[i
]) == 0) {
378 g_debug("disabling command: %s", name
);
379 qmp_disable_command(&ga_commands
, name
);
383 /* [re-]enable all commands, except those explicitly blacklisted by user */
384 static void ga_enable_non_blacklisted(const QmpCommand
*cmd
, void *opaque
)
386 GList
*blacklist
= opaque
;
387 const char *name
= qmp_command_name(cmd
);
389 if (g_list_find_custom(blacklist
, name
, ga_strcmp
) == NULL
&&
390 !qmp_command_is_enabled(cmd
)) {
391 g_debug("enabling command: %s", name
);
392 qmp_enable_command(&ga_commands
, name
);
396 static bool ga_create_file(const char *path
)
398 int fd
= open(path
, O_CREAT
| O_WRONLY
, S_IWUSR
| S_IRUSR
);
400 g_warning("unable to open/create file %s: %s", path
, strerror(errno
));
407 static bool ga_delete_file(const char *path
)
409 int ret
= unlink(path
);
411 g_warning("unable to delete file: %s: %s", path
, strerror(errno
));
418 bool ga_is_frozen(GAState
*s
)
423 void ga_set_frozen(GAState
*s
)
425 if (ga_is_frozen(s
)) {
428 /* disable all non-whitelisted (for frozen state) commands */
429 qmp_for_each_command(&ga_commands
, ga_disable_non_whitelisted
, NULL
);
430 g_warning("disabling logging due to filesystem freeze");
431 ga_disable_logging(s
);
433 if (!ga_create_file(s
->state_filepath_isfrozen
)) {
434 g_warning("unable to create %s, fsfreeze may not function properly",
435 s
->state_filepath_isfrozen
);
439 void ga_unset_frozen(GAState
*s
)
441 if (!ga_is_frozen(s
)) {
445 /* if we delayed creation/opening of pid/log files due to being
446 * in a frozen state at start up, do it now
448 if (s
->deferred_options
.log_filepath
) {
449 s
->log_file
= ga_open_logfile(s
->deferred_options
.log_filepath
);
451 s
->log_file
= stderr
;
453 s
->deferred_options
.log_filepath
= NULL
;
455 ga_enable_logging(s
);
456 g_warning("logging re-enabled due to filesystem unfreeze");
457 if (s
->deferred_options
.pid_filepath
) {
460 if (!qemu_write_pidfile(s
->deferred_options
.pid_filepath
, &err
)) {
461 g_warning("%s", error_get_pretty(err
));
464 s
->deferred_options
.pid_filepath
= NULL
;
467 /* enable all disabled, non-blacklisted commands */
468 qmp_for_each_command(&ga_commands
, ga_enable_non_blacklisted
, s
->blacklist
);
470 if (!ga_delete_file(s
->state_filepath_isfrozen
)) {
471 g_warning("unable to delete %s, fsfreeze may not function properly",
472 s
->state_filepath_isfrozen
);
476 #ifdef CONFIG_FSFREEZE
477 const char *ga_fsfreeze_hook(GAState
*s
)
479 return s
->fsfreeze_hook
;
483 static void become_daemon(const char *pidfile
)
499 if (!qemu_write_pidfile(pidfile
, &err
)) {
500 g_critical("%s", error_get_pretty(err
));
506 umask(S_IRWXG
| S_IRWXO
);
511 if ((chdir("/")) < 0) {
515 reopen_fd_to_null(STDIN_FILENO
);
516 reopen_fd_to_null(STDOUT_FILENO
);
517 reopen_fd_to_null(STDERR_FILENO
);
524 g_critical("failed to daemonize");
529 static int send_response(GAState
*s
, const QDict
*rsp
)
532 QString
*payload_qstr
, *response_qstr
;
535 g_assert(s
->channel
);
541 payload_qstr
= qobject_to_json(QOBJECT(rsp
));
546 if (s
->delimit_response
) {
547 s
->delimit_response
= false;
548 response_qstr
= qstring_new();
549 qstring_append_chr(response_qstr
, QGA_SENTINEL_BYTE
);
550 qstring_append(response_qstr
, qstring_get_str(payload_qstr
));
551 qobject_unref(payload_qstr
);
553 response_qstr
= payload_qstr
;
556 qstring_append_chr(response_qstr
, '\n');
557 buf
= qstring_get_str(response_qstr
);
558 status
= ga_channel_write_all(s
->channel
, buf
, strlen(buf
));
559 qobject_unref(response_qstr
);
560 if (status
!= G_IO_STATUS_NORMAL
) {
567 /* handle requests/control events coming in over the channel */
568 static void process_event(void *opaque
, QObject
*obj
, Error
*err
)
574 g_debug("process_event: called");
575 assert(!obj
!= !err
);
577 rsp
= qmp_error_response(err
);
581 g_debug("processing command");
582 rsp
= qmp_dispatch(&ga_commands
, obj
, false, NULL
);
585 ret
= send_response(s
, rsp
);
587 g_warning("error sending error response: %s", strerror(-ret
));
593 /* false return signals GAChannel to close the current client connection */
594 static gboolean
channel_event_cb(GIOCondition condition
, gpointer data
)
597 gchar buf
[QGA_READ_COUNT_DEFAULT
+1];
599 GIOStatus status
= ga_channel_read(s
->channel
, buf
, QGA_READ_COUNT_DEFAULT
, &count
);
601 case G_IO_STATUS_ERROR
:
602 g_warning("error reading channel");
603 stop_agent(s
, false);
605 case G_IO_STATUS_NORMAL
:
607 g_debug("read data, count: %d, data: %s", (int)count
, buf
);
608 json_message_parser_feed(&s
->parser
, (char *)buf
, (int)count
);
610 case G_IO_STATUS_EOF
:
611 g_debug("received EOF");
616 case G_IO_STATUS_AGAIN
:
617 /* virtio causes us to spin here when no process is attached to
618 * host-side chardev. sleep a bit to mitigate this
625 g_warning("unknown channel read status, closing");
631 static gboolean
channel_init(GAState
*s
, const gchar
*method
, const gchar
*path
,
634 GAChannelMethod channel_method
;
636 if (strcmp(method
, "virtio-serial") == 0) {
637 s
->virtio
= true; /* virtio requires special handling in some cases */
638 channel_method
= GA_CHANNEL_VIRTIO_SERIAL
;
639 } else if (strcmp(method
, "isa-serial") == 0) {
640 channel_method
= GA_CHANNEL_ISA_SERIAL
;
641 } else if (strcmp(method
, "unix-listen") == 0) {
642 channel_method
= GA_CHANNEL_UNIX_LISTEN
;
643 } else if (strcmp(method
, "vsock-listen") == 0) {
644 channel_method
= GA_CHANNEL_VSOCK_LISTEN
;
646 g_critical("unsupported channel method/type: %s", method
);
650 s
->channel
= ga_channel_new(channel_method
, path
, listen_fd
,
651 channel_event_cb
, s
);
653 g_critical("failed to create guest agent channel");
661 DWORD WINAPI
handle_serial_device_events(DWORD type
, LPVOID data
)
663 DWORD ret
= NO_ERROR
;
664 PDEV_BROADCAST_HDR broadcast_header
= (PDEV_BROADCAST_HDR
)data
;
666 if (broadcast_header
->dbch_devicetype
== DBT_DEVTYP_DEVICEINTERFACE
) {
668 /* Device inserted */
669 case DBT_DEVICEARRIVAL
:
670 /* Start QEMU-ga's service */
671 if (!SetEvent(ga_state
->wakeup_event
)) {
672 ret
= GetLastError();
676 case DBT_DEVICEQUERYREMOVE
:
677 case DBT_DEVICEREMOVEPENDING
:
678 case DBT_DEVICEREMOVECOMPLETE
:
679 /* Stop QEMU-ga's service */
680 if (!ResetEvent(ga_state
->wakeup_event
)) {
681 ret
= GetLastError();
685 ret
= ERROR_CALL_NOT_IMPLEMENTED
;
691 DWORD WINAPI
service_ctrl_handler(DWORD ctrl
, DWORD type
, LPVOID data
,
694 DWORD ret
= NO_ERROR
;
695 GAService
*service
= &ga_state
->service
;
699 case SERVICE_CONTROL_STOP
:
700 case SERVICE_CONTROL_SHUTDOWN
:
701 quit_handler(SIGTERM
);
702 SetEvent(ga_state
->wakeup_event
);
703 service
->status
.dwCurrentState
= SERVICE_STOP_PENDING
;
704 SetServiceStatus(service
->status_handle
, &service
->status
);
706 case SERVICE_CONTROL_DEVICEEVENT
:
707 handle_serial_device_events(type
, data
);
711 ret
= ERROR_CALL_NOT_IMPLEMENTED
;
716 VOID WINAPI
service_main(DWORD argc
, TCHAR
*argv
[])
718 GAService
*service
= &ga_state
->service
;
720 service
->status_handle
= RegisterServiceCtrlHandlerEx(QGA_SERVICE_NAME
,
721 service_ctrl_handler
, NULL
);
723 if (service
->status_handle
== 0) {
724 g_critical("Failed to register extended requests function!\n");
728 service
->status
.dwServiceType
= SERVICE_WIN32
;
729 service
->status
.dwCurrentState
= SERVICE_RUNNING
;
730 service
->status
.dwControlsAccepted
= SERVICE_ACCEPT_STOP
| SERVICE_ACCEPT_SHUTDOWN
;
731 service
->status
.dwWin32ExitCode
= NO_ERROR
;
732 service
->status
.dwServiceSpecificExitCode
= NO_ERROR
;
733 service
->status
.dwCheckPoint
= 0;
734 service
->status
.dwWaitHint
= 0;
735 DEV_BROADCAST_DEVICEINTERFACE notification_filter
;
736 ZeroMemory(¬ification_filter
, sizeof(notification_filter
));
737 notification_filter
.dbcc_devicetype
= DBT_DEVTYP_DEVICEINTERFACE
;
738 notification_filter
.dbcc_size
= sizeof(DEV_BROADCAST_DEVICEINTERFACE
);
739 notification_filter
.dbcc_classguid
= GUID_VIOSERIAL_PORT
;
741 service
->device_notification_handle
=
742 RegisterDeviceNotification(service
->status_handle
,
743 ¬ification_filter
, DEVICE_NOTIFY_SERVICE_HANDLE
);
744 if (!service
->device_notification_handle
) {
745 g_critical("Failed to register device notification handle!\n");
748 SetServiceStatus(service
->status_handle
, &service
->status
);
752 UnregisterDeviceNotification(service
->device_notification_handle
);
753 service
->status
.dwCurrentState
= SERVICE_STOPPED
;
754 SetServiceStatus(service
->status_handle
, &service
->status
);
758 static void set_persistent_state_defaults(GAPersistentState
*pstate
)
761 pstate
->fd_counter
= QGA_PSTATE_DEFAULT_FD_COUNTER
;
764 static void persistent_state_from_keyfile(GAPersistentState
*pstate
,
769 /* if any fields are missing, either because the file was tampered with
770 * by agents of chaos, or because the field wasn't present at the time the
771 * file was created, the best we can ever do is start over with the default
772 * values. so load them now, and ignore any errors in accessing key-value
775 set_persistent_state_defaults(pstate
);
777 if (g_key_file_has_key(keyfile
, "global", "fd_counter", NULL
)) {
779 g_key_file_get_integer(keyfile
, "global", "fd_counter", NULL
);
783 static void persistent_state_to_keyfile(const GAPersistentState
*pstate
,
789 g_key_file_set_integer(keyfile
, "global", "fd_counter", pstate
->fd_counter
);
792 static gboolean
write_persistent_state(const GAPersistentState
*pstate
,
795 GKeyFile
*keyfile
= g_key_file_new();
803 persistent_state_to_keyfile(pstate
, keyfile
);
804 data
= g_key_file_to_data(keyfile
, &data_len
, &gerr
);
806 g_critical("failed to convert persistent state to string: %s",
812 g_file_set_contents(path
, data
, data_len
, &gerr
);
814 g_critical("failed to write persistent state to %s: %s",
815 path
, gerr
->message
);
825 g_key_file_free(keyfile
);
831 static gboolean
read_persistent_state(GAPersistentState
*pstate
,
832 const gchar
*path
, gboolean frozen
)
834 GKeyFile
*keyfile
= NULL
;
841 if (stat(path
, &st
) == -1) {
842 /* it's okay if state file doesn't exist, but any other error
843 * indicates a permissions issue or some other misconfiguration
844 * that we likely won't be able to recover from.
846 if (errno
!= ENOENT
) {
847 g_critical("unable to access state file at path %s: %s",
848 path
, strerror(errno
));
853 /* file doesn't exist. initialize state to default values and
854 * attempt to save now. (we could wait till later when we have
855 * modified state we need to commit, but if there's a problem,
856 * such as a missing parent directory, we want to catch it now)
858 * there is a potential scenario where someone either managed to
859 * update the agent from a version that didn't use a key store
860 * while qemu-ga thought the filesystem was frozen, or
861 * deleted the key store prior to issuing a fsfreeze, prior
862 * to restarting the agent. in this case we go ahead and defer
863 * initial creation till we actually have modified state to
864 * write, otherwise fail to recover from freeze.
866 set_persistent_state_defaults(pstate
);
868 ret
= write_persistent_state(pstate
, path
);
870 g_critical("unable to create state file at path %s", path
);
879 keyfile
= g_key_file_new();
880 g_key_file_load_from_file(keyfile
, path
, 0, &gerr
);
882 g_critical("error loading persistent state from path: %s, %s",
883 path
, gerr
->message
);
888 persistent_state_from_keyfile(pstate
, keyfile
);
892 g_key_file_free(keyfile
);
901 int64_t ga_get_fd_handle(GAState
*s
, Error
**errp
)
905 g_assert(s
->pstate_filepath
);
906 /* we blacklist commands and avoid operations that potentially require
907 * writing to disk when we're in a frozen state. this includes opening
908 * new files, so we should never get here in that situation
910 g_assert(!ga_is_frozen(s
));
912 handle
= s
->pstate
.fd_counter
++;
914 /* This should never happen on a reasonable timeframe, as guest-file-open
915 * would have to be issued 2^63 times */
916 if (s
->pstate
.fd_counter
== INT64_MAX
) {
920 if (!write_persistent_state(&s
->pstate
, s
->pstate_filepath
)) {
921 error_setg(errp
, "failed to commit persistent state to disk");
928 static void ga_print_cmd(const QmpCommand
*cmd
, void *opaque
)
930 printf("%s\n", qmp_command_name(cmd
));
933 static GList
*split_list(const gchar
*str
, const gchar
*delim
)
939 strv
= g_strsplit(str
, delim
, -1);
940 for (i
= 0; strv
[i
]; i
++) {
941 list
= g_list_prepend(list
, strv
[i
]);
953 #ifdef CONFIG_FSFREEZE
960 gchar
*bliststr
; /* blacklist may point to this string */
963 GLogLevelFlags log_level
;
968 static void config_load(GAConfig
*config
)
972 g_autofree
char *conf
= g_strdup(g_getenv("QGA_CONF")) ?: get_relocated_path(QGA_CONF_DEFAULT
);
974 /* read system config */
975 keyfile
= g_key_file_new();
976 if (!g_key_file_load_from_file(keyfile
, conf
, 0, &gerr
)) {
979 if (g_key_file_has_key(keyfile
, "general", "daemon", NULL
)) {
981 g_key_file_get_boolean(keyfile
, "general", "daemon", &gerr
);
983 if (g_key_file_has_key(keyfile
, "general", "method", NULL
)) {
985 g_key_file_get_string(keyfile
, "general", "method", &gerr
);
987 if (g_key_file_has_key(keyfile
, "general", "path", NULL
)) {
988 config
->channel_path
=
989 g_key_file_get_string(keyfile
, "general", "path", &gerr
);
991 if (g_key_file_has_key(keyfile
, "general", "logfile", NULL
)) {
992 config
->log_filepath
=
993 g_key_file_get_string(keyfile
, "general", "logfile", &gerr
);
995 if (g_key_file_has_key(keyfile
, "general", "pidfile", NULL
)) {
996 config
->pid_filepath
=
997 g_key_file_get_string(keyfile
, "general", "pidfile", &gerr
);
999 #ifdef CONFIG_FSFREEZE
1000 if (g_key_file_has_key(keyfile
, "general", "fsfreeze-hook", NULL
)) {
1001 config
->fsfreeze_hook
=
1002 g_key_file_get_string(keyfile
,
1003 "general", "fsfreeze-hook", &gerr
);
1006 if (g_key_file_has_key(keyfile
, "general", "statedir", NULL
)) {
1008 g_key_file_get_string(keyfile
, "general", "statedir", &gerr
);
1010 if (g_key_file_has_key(keyfile
, "general", "verbose", NULL
) &&
1011 g_key_file_get_boolean(keyfile
, "general", "verbose", &gerr
)) {
1012 /* enable all log levels */
1013 config
->log_level
= G_LOG_LEVEL_MASK
;
1015 if (g_key_file_has_key(keyfile
, "general", "retry-path", NULL
)) {
1016 config
->retry_path
=
1017 g_key_file_get_boolean(keyfile
, "general", "retry-path", &gerr
);
1019 if (g_key_file_has_key(keyfile
, "general", "blacklist", NULL
)) {
1021 g_key_file_get_string(keyfile
, "general", "blacklist", &gerr
);
1022 config
->blacklist
= g_list_concat(config
->blacklist
,
1023 split_list(config
->bliststr
, ","));
1027 g_key_file_free(keyfile
);
1029 !(gerr
->domain
== G_FILE_ERROR
&& gerr
->code
== G_FILE_ERROR_NOENT
)) {
1030 g_critical("error loading configuration from path: %s, %s",
1031 conf
, gerr
->message
);
1034 g_clear_error(&gerr
);
1037 static gchar
*list_join(GList
*list
, const gchar separator
)
1039 GString
*str
= g_string_new("");
1042 str
= g_string_append(str
, (gchar
*)list
->data
);
1043 list
= g_list_next(list
);
1045 str
= g_string_append_c(str
, separator
);
1049 return g_string_free(str
, FALSE
);
1052 static void config_dump(GAConfig
*config
)
1054 GError
*error
= NULL
;
1058 keyfile
= g_key_file_new();
1061 g_key_file_set_boolean(keyfile
, "general", "daemon", config
->daemonize
);
1062 g_key_file_set_string(keyfile
, "general", "method", config
->method
);
1063 if (config
->channel_path
) {
1064 g_key_file_set_string(keyfile
, "general", "path", config
->channel_path
);
1066 if (config
->log_filepath
) {
1067 g_key_file_set_string(keyfile
, "general", "logfile",
1068 config
->log_filepath
);
1070 g_key_file_set_string(keyfile
, "general", "pidfile", config
->pid_filepath
);
1071 #ifdef CONFIG_FSFREEZE
1072 if (config
->fsfreeze_hook
) {
1073 g_key_file_set_string(keyfile
, "general", "fsfreeze-hook",
1074 config
->fsfreeze_hook
);
1077 g_key_file_set_string(keyfile
, "general", "statedir", config
->state_dir
);
1078 g_key_file_set_boolean(keyfile
, "general", "verbose",
1079 config
->log_level
== G_LOG_LEVEL_MASK
);
1080 g_key_file_set_boolean(keyfile
, "general", "retry-path",
1081 config
->retry_path
);
1082 tmp
= list_join(config
->blacklist
, ',');
1083 g_key_file_set_string(keyfile
, "general", "blacklist", tmp
);
1086 tmp
= g_key_file_to_data(keyfile
, NULL
, &error
);
1088 g_critical("Failed to dump keyfile: %s", error
->message
);
1089 g_clear_error(&error
);
1095 g_key_file_free(keyfile
);
1098 static void config_parse(GAConfig
*config
, int argc
, char **argv
)
1100 const char *sopt
= "hVvdm:p:l:f:F::b:s:t:Dr";
1101 int opt_ind
= 0, ch
;
1102 const struct option lopt
[] = {
1103 { "help", 0, NULL
, 'h' },
1104 { "version", 0, NULL
, 'V' },
1105 { "dump-conf", 0, NULL
, 'D' },
1106 { "logfile", 1, NULL
, 'l' },
1107 { "pidfile", 1, NULL
, 'f' },
1108 #ifdef CONFIG_FSFREEZE
1109 { "fsfreeze-hook", 2, NULL
, 'F' },
1111 { "verbose", 0, NULL
, 'v' },
1112 { "method", 1, NULL
, 'm' },
1113 { "path", 1, NULL
, 'p' },
1114 { "daemonize", 0, NULL
, 'd' },
1115 { "blacklist", 1, NULL
, 'b' },
1117 { "service", 1, NULL
, 's' },
1119 { "statedir", 1, NULL
, 't' },
1120 { "retry-path", 0, NULL
, 'r' },
1121 { NULL
, 0, NULL
, 0 }
1124 while ((ch
= getopt_long(argc
, argv
, sopt
, lopt
, &opt_ind
)) != -1) {
1127 g_free(config
->method
);
1128 config
->method
= g_strdup(optarg
);
1131 g_free(config
->channel_path
);
1132 config
->channel_path
= g_strdup(optarg
);
1135 g_free(config
->log_filepath
);
1136 config
->log_filepath
= g_strdup(optarg
);
1139 g_free(config
->pid_filepath
);
1140 config
->pid_filepath
= g_strdup(optarg
);
1142 #ifdef CONFIG_FSFREEZE
1144 g_free(config
->fsfreeze_hook
);
1145 config
->fsfreeze_hook
= optarg
? g_strdup(optarg
) : get_relocated_path(QGA_FSFREEZE_HOOK_DEFAULT
);
1149 g_free(config
->state_dir
);
1150 config
->state_dir
= g_strdup(optarg
);
1153 /* enable all log levels */
1154 config
->log_level
= G_LOG_LEVEL_MASK
;
1157 printf("QEMU Guest Agent %s\n", QEMU_VERSION
);
1160 config
->daemonize
= 1;
1163 config
->dumpconf
= 1;
1166 config
->retry_path
= true;
1169 if (is_help_option(optarg
)) {
1170 qmp_for_each_command(&ga_commands
, ga_print_cmd
, NULL
);
1173 config
->blacklist
= g_list_concat(config
->blacklist
,
1174 split_list(optarg
, ","));
1179 config
->service
= optarg
;
1180 if (strcmp(config
->service
, "install") == 0) {
1181 if (ga_install_vss_provider()) {
1184 if (ga_install_service(config
->channel_path
,
1185 config
->log_filepath
, config
->state_dir
)) {
1189 } else if (strcmp(config
->service
, "uninstall") == 0) {
1190 ga_uninstall_vss_provider();
1191 exit(ga_uninstall_service());
1192 } else if (strcmp(config
->service
, "vss-install") == 0) {
1193 if (ga_install_vss_provider()) {
1197 } else if (strcmp(config
->service
, "vss-uninstall") == 0) {
1198 ga_uninstall_vss_provider();
1201 printf("Unknown service command.\n");
1210 g_print("Unknown option, try '%s --help' for more information.\n",
1217 static void config_free(GAConfig
*config
)
1219 g_free(config
->method
);
1220 g_free(config
->log_filepath
);
1221 g_free(config
->pid_filepath
);
1222 g_free(config
->state_dir
);
1223 g_free(config
->channel_path
);
1224 g_free(config
->bliststr
);
1225 #ifdef CONFIG_FSFREEZE
1226 g_free(config
->fsfreeze_hook
);
1228 g_list_free_full(config
->blacklist
, g_free
);
1232 static bool check_is_frozen(GAState
*s
)
1235 /* check if a previous instance of qemu-ga exited with filesystems' state
1236 * marked as frozen. this could be a stale value (a non-qemu-ga process
1237 * or reboot may have since unfrozen them), but better to require an
1238 * uneeded unfreeze than to risk hanging on start-up
1241 if (stat(s
->state_filepath_isfrozen
, &st
) == -1) {
1242 /* it's okay if the file doesn't exist, but if we can't access for
1243 * some other reason, such as permissions, there's a configuration
1244 * that needs to be addressed. so just bail now before we get into
1245 * more trouble later
1247 if (errno
!= ENOENT
) {
1248 g_critical("unable to access state file at path %s: %s",
1249 s
->state_filepath_isfrozen
, strerror(errno
));
1250 return EXIT_FAILURE
;
1253 g_warning("previous instance appears to have exited with frozen"
1254 " filesystems. deferring logging/pidfile creation and"
1255 " disabling non-fsfreeze-safe commands until"
1256 " guest-fsfreeze-thaw is issued, or filesystems are"
1257 " manually unfrozen and the file %s is removed",
1258 s
->state_filepath_isfrozen
);
1265 static GAState
*initialize_agent(GAConfig
*config
, int socket_activation
)
1267 GAState
*s
= g_new0(GAState
, 1);
1269 g_assert(ga_state
== NULL
);
1271 s
->log_level
= config
->log_level
;
1272 s
->log_file
= stderr
;
1273 #ifdef CONFIG_FSFREEZE
1274 s
->fsfreeze_hook
= config
->fsfreeze_hook
;
1276 s
->pstate_filepath
= g_strdup_printf("%s/qga.state", config
->state_dir
);
1277 s
->state_filepath_isfrozen
= g_strdup_printf("%s/qga.state.isfrozen",
1279 s
->frozen
= check_is_frozen(s
);
1281 g_log_set_default_handler(ga_log
, s
);
1282 g_log_set_fatal_mask(NULL
, G_LOG_LEVEL_ERROR
);
1283 ga_enable_logging(s
);
1286 /* On win32 the state directory is application specific (be it the default
1287 * or a user override). We got past the command line parsing; let's create
1288 * the directory (with any intermediate directories). If we run into an
1289 * error later on, we won't try to clean up the directory, it is considered
1292 if (g_mkdir_with_parents(config
->state_dir
, S_IRWXU
) == -1) {
1293 g_critical("unable to create (an ancestor of) the state directory"
1294 " '%s': %s", config
->state_dir
, strerror(errno
));
1299 if (ga_is_frozen(s
)) {
1300 if (config
->daemonize
) {
1301 /* delay opening/locking of pidfile till filesystems are unfrozen */
1302 s
->deferred_options
.pid_filepath
= config
->pid_filepath
;
1303 become_daemon(NULL
);
1305 if (config
->log_filepath
) {
1306 /* delay opening the log file till filesystems are unfrozen */
1307 s
->deferred_options
.log_filepath
= config
->log_filepath
;
1309 ga_disable_logging(s
);
1310 qmp_for_each_command(&ga_commands
, ga_disable_non_whitelisted
, NULL
);
1312 if (config
->daemonize
) {
1313 become_daemon(config
->pid_filepath
);
1315 if (config
->log_filepath
) {
1316 FILE *log_file
= ga_open_logfile(config
->log_filepath
);
1318 g_critical("unable to open specified log file: %s",
1322 s
->log_file
= log_file
;
1326 /* load persistent state from disk */
1327 if (!read_persistent_state(&s
->pstate
,
1330 g_critical("failed to load persistent state");
1334 config
->blacklist
= ga_command_blacklist_init(config
->blacklist
);
1335 if (config
->blacklist
) {
1336 GList
*l
= config
->blacklist
;
1337 s
->blacklist
= config
->blacklist
;
1339 g_debug("disabling command: %s", (char *)l
->data
);
1340 qmp_disable_command(&ga_commands
, l
->data
);
1344 s
->command_state
= ga_command_state_new();
1345 ga_command_state_init(s
, s
->command_state
);
1346 ga_command_state_init_all(s
->command_state
);
1347 json_message_parser_init(&s
->parser
, process_event
, s
, NULL
);
1350 if (!register_signal_handlers()) {
1351 g_critical("failed to register signal handlers");
1356 s
->main_loop
= g_main_loop_new(NULL
, false);
1359 s
->socket_activation
= socket_activation
;
1362 s
->wakeup_event
= CreateEvent(NULL
, TRUE
, FALSE
, TEXT("WakeUp"));
1363 if (s
->wakeup_event
== NULL
) {
1364 g_critical("CreateEvent failed");
1373 static void cleanup_agent(GAState
*s
)
1376 CloseHandle(s
->wakeup_event
);
1378 if (s
->command_state
) {
1379 ga_command_state_cleanup_all(s
->command_state
);
1380 ga_command_state_free(s
->command_state
);
1381 json_message_parser_destroy(&s
->parser
);
1383 g_free(s
->pstate_filepath
);
1384 g_free(s
->state_filepath_isfrozen
);
1386 g_main_loop_unref(s
->main_loop
);
1392 static int run_agent_once(GAState
*s
)
1394 if (!channel_init(s
, s
->config
->method
, s
->config
->channel_path
,
1395 s
->socket_activation
? FIRST_SOCKET_ACTIVATION_FD
: -1)) {
1396 g_critical("failed to initialize guest agent channel");
1397 return EXIT_FAILURE
;
1400 g_main_loop_run(ga_state
->main_loop
);
1403 ga_channel_free(s
->channel
);
1406 return EXIT_SUCCESS
;
1409 static void wait_for_channel_availability(GAState
*s
)
1411 g_warning("waiting for channel path...");
1413 sleep(QGA_RETRY_INTERVAL
);
1417 dwWaitResult
= WaitForSingleObject(s
->wakeup_event
, INFINITE
);
1419 switch (dwWaitResult
) {
1425 g_critical("WaitForSingleObject failed");
1430 static int run_agent(GAState
*s
)
1432 int ret
= EXIT_SUCCESS
;
1434 s
->force_exit
= false;
1437 ret
= run_agent_once(s
);
1438 if (s
->config
->retry_path
&& !s
->force_exit
) {
1439 g_warning("agent stopped unexpectedly, restarting...");
1440 wait_for_channel_availability(s
);
1442 } while (s
->config
->retry_path
&& !s
->force_exit
);
1447 static void stop_agent(GAState
*s
, bool requested
)
1449 if (!s
->force_exit
) {
1450 s
->force_exit
= requested
;
1453 if (g_main_loop_is_running(s
->main_loop
)) {
1454 g_main_loop_quit(s
->main_loop
);
1458 int main(int argc
, char **argv
)
1460 int ret
= EXIT_SUCCESS
;
1462 GAConfig
*config
= g_new0(GAConfig
, 1);
1463 int socket_activation
;
1465 config
->log_level
= G_LOG_LEVEL_ERROR
| G_LOG_LEVEL_CRITICAL
;
1467 qemu_init_exec_dir(argv
[0]);
1468 qga_qmp_init_marshal(&ga_commands
);
1470 init_dfl_pathnames();
1471 config_load(config
);
1472 config_parse(config
, argc
, argv
);
1474 if (config
->pid_filepath
== NULL
) {
1475 config
->pid_filepath
= g_strdup(dfl_pathnames
.pidfile
);
1478 if (config
->state_dir
== NULL
) {
1479 config
->state_dir
= g_strdup(dfl_pathnames
.state_dir
);
1482 if (config
->method
== NULL
) {
1483 config
->method
= g_strdup("virtio-serial");
1486 socket_activation
= check_socket_activation();
1487 if (socket_activation
> 1) {
1488 g_critical("qemu-ga only supports listening on one socket");
1492 if (socket_activation
) {
1493 SocketAddress
*addr
;
1495 g_free(config
->method
);
1496 g_free(config
->channel_path
);
1497 config
->method
= NULL
;
1498 config
->channel_path
= NULL
;
1500 addr
= socket_local_address(FIRST_SOCKET_ACTIVATION_FD
, NULL
);
1502 if (addr
->type
== SOCKET_ADDRESS_TYPE_UNIX
) {
1503 config
->method
= g_strdup("unix-listen");
1504 } else if (addr
->type
== SOCKET_ADDRESS_TYPE_VSOCK
) {
1505 config
->method
= g_strdup("vsock-listen");
1508 qapi_free_SocketAddress(addr
);
1511 if (!config
->method
) {
1512 g_critical("unsupported listen fd type");
1516 } else if (config
->channel_path
== NULL
) {
1517 if (strcmp(config
->method
, "virtio-serial") == 0) {
1518 /* try the default path for the virtio-serial port */
1519 config
->channel_path
= g_strdup(QGA_VIRTIO_PATH_DEFAULT
);
1520 } else if (strcmp(config
->method
, "isa-serial") == 0) {
1521 /* try the default path for the serial port - COM1 */
1522 config
->channel_path
= g_strdup(QGA_SERIAL_PATH_DEFAULT
);
1524 g_critical("must specify a path for this channel");
1530 if (config
->dumpconf
) {
1531 config_dump(config
);
1535 s
= initialize_agent(config
, socket_activation
);
1537 g_critical("error initializing guest agent");
1542 if (config
->daemonize
) {
1543 SERVICE_TABLE_ENTRY service_table
[] = {
1544 { (char *)QGA_SERVICE_NAME
, service_main
}, { NULL
, NULL
} };
1545 StartServiceCtrlDispatcher(service_table
);
1556 if (config
->daemonize
) {
1557 unlink(config
->pid_filepath
);
1560 config_free(config
);