2 * QEMU Guest Agent POSIX-specific command implementations
4 * Copyright IBM Corp. 2011
7 * Michael Roth <mdroth@linux.vnet.ibm.com>
8 * Michal Privoznik <mprivozn@redhat.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"
15 #include <sys/ioctl.h>
16 #include <sys/utsname.h>
19 #include "qga-qapi-commands.h"
20 #include "qapi/error.h"
21 #include "qapi/qmp/qerror.h"
22 #include "qemu/host-utils.h"
23 #include "qemu/sockets.h"
24 #include "qemu/base64.h"
25 #include "qemu/cutils.h"
26 #include "commands-common.h"
27 #include "block/nvme.h"
34 #if defined(__linux__)
36 #include <sys/statvfs.h>
37 #include <linux/nvme_ioctl.h>
44 #ifdef HAVE_GETIFADDRS
45 #include <arpa/inet.h>
46 #include <sys/socket.h>
48 #if defined(__NetBSD__) || defined(__OpenBSD__)
49 #include <net/if_arp.h>
50 #include <netinet/if_ether.h>
52 #include <net/ethernet.h>
54 #include <sys/types.h>
56 #include <sys/sockio.h>
60 static void ga_wait_child(pid_t pid
, int *status
, Error
**errp
)
66 rpid
= RETRY_ON_EINTR(waitpid(pid
, status
, 0));
69 error_setg_errno(errp
, errno
, "failed to wait for child (pid: %d)",
74 g_assert(rpid
== pid
);
77 void qmp_guest_shutdown(const char *mode
, Error
**errp
)
79 const char *shutdown_flag
;
80 Error
*local_err
= NULL
;
85 const char *powerdown_flag
= "-i5";
86 const char *halt_flag
= "-i0";
87 const char *reboot_flag
= "-i6";
88 #elif defined(CONFIG_BSD)
89 const char *powerdown_flag
= "-p";
90 const char *halt_flag
= "-h";
91 const char *reboot_flag
= "-r";
93 const char *powerdown_flag
= "-P";
94 const char *halt_flag
= "-H";
95 const char *reboot_flag
= "-r";
98 slog("guest-shutdown called, mode: %s", mode
);
99 if (!mode
|| strcmp(mode
, "powerdown") == 0) {
100 shutdown_flag
= powerdown_flag
;
101 } else if (strcmp(mode
, "halt") == 0) {
102 shutdown_flag
= halt_flag
;
103 } else if (strcmp(mode
, "reboot") == 0) {
104 shutdown_flag
= reboot_flag
;
107 "mode is invalid (valid values are: halt|powerdown|reboot");
113 /* child, start the shutdown */
115 reopen_fd_to_null(0);
116 reopen_fd_to_null(1);
117 reopen_fd_to_null(2);
119 #ifdef CONFIG_SOLARIS
120 execl("/sbin/shutdown", "shutdown", shutdown_flag
, "-g0", "-y",
121 "hypervisor initiated shutdown", (char *)NULL
);
122 #elif defined(CONFIG_BSD)
123 execl("/sbin/shutdown", "shutdown", shutdown_flag
, "+0",
124 "hypervisor initiated shutdown", (char *)NULL
);
126 execl("/sbin/shutdown", "shutdown", "-h", shutdown_flag
, "+0",
127 "hypervisor initiated shutdown", (char *)NULL
);
130 } else if (pid
< 0) {
131 error_setg_errno(errp
, errno
, "failed to create child process");
135 ga_wait_child(pid
, &status
, &local_err
);
137 error_propagate(errp
, local_err
);
141 if (!WIFEXITED(status
)) {
142 error_setg(errp
, "child process has terminated abnormally");
146 if (WEXITSTATUS(status
)) {
147 error_setg(errp
, "child process has failed to shutdown");
154 void qmp_guest_set_time(bool has_time
, int64_t time_ns
, Error
**errp
)
159 Error
*local_err
= NULL
;
161 static const char hwclock_path
[] = "/sbin/hwclock";
162 static int hwclock_available
= -1;
164 if (hwclock_available
< 0) {
165 hwclock_available
= (access(hwclock_path
, X_OK
) == 0);
168 if (!hwclock_available
) {
169 error_setg(errp
, QERR_UNSUPPORTED
);
173 /* If user has passed a time, validate and set it. */
177 /* year-2038 will overflow in case time_t is 32bit */
178 if (time_ns
/ 1000000000 != (time_t)(time_ns
/ 1000000000)) {
179 error_setg(errp
, "Time %" PRId64
" is too large", time_ns
);
183 tv
.tv_sec
= time_ns
/ 1000000000;
184 tv
.tv_usec
= (time_ns
% 1000000000) / 1000;
185 g_date_set_time_t(&date
, tv
.tv_sec
);
186 if (date
.year
< 1970 || date
.year
>= 2070) {
187 error_setg_errno(errp
, errno
, "Invalid time");
191 ret
= settimeofday(&tv
, NULL
);
193 error_setg_errno(errp
, errno
, "Failed to set time to guest");
198 /* Now, if user has passed a time to set and the system time is set, we
199 * just need to synchronize the hardware clock. However, if no time was
200 * passed, user is requesting the opposite: set the system time from the
201 * hardware clock (RTC). */
205 reopen_fd_to_null(0);
206 reopen_fd_to_null(1);
207 reopen_fd_to_null(2);
209 /* Use '/sbin/hwclock -w' to set RTC from the system time,
210 * or '/sbin/hwclock -s' to set the system time from RTC. */
211 execl(hwclock_path
, "hwclock", has_time
? "-w" : "-s", NULL
);
213 } else if (pid
< 0) {
214 error_setg_errno(errp
, errno
, "failed to create child process");
218 ga_wait_child(pid
, &status
, &local_err
);
220 error_propagate(errp
, local_err
);
224 if (!WIFEXITED(status
)) {
225 error_setg(errp
, "child process has terminated abnormally");
229 if (WEXITSTATUS(status
)) {
230 error_setg(errp
, "hwclock failed to set hardware clock to system time");
241 struct GuestFileHandle
{
245 QTAILQ_ENTRY(GuestFileHandle
) next
;
249 QTAILQ_HEAD(, GuestFileHandle
) filehandles
;
250 } guest_file_state
= {
251 .filehandles
= QTAILQ_HEAD_INITIALIZER(guest_file_state
.filehandles
),
254 static int64_t guest_file_handle_add(FILE *fh
, Error
**errp
)
256 GuestFileHandle
*gfh
;
259 handle
= ga_get_fd_handle(ga_state
, errp
);
264 gfh
= g_new0(GuestFileHandle
, 1);
267 QTAILQ_INSERT_TAIL(&guest_file_state
.filehandles
, gfh
, next
);
272 GuestFileHandle
*guest_file_handle_find(int64_t id
, Error
**errp
)
274 GuestFileHandle
*gfh
;
276 QTAILQ_FOREACH(gfh
, &guest_file_state
.filehandles
, next
)
283 error_setg(errp
, "handle '%" PRId64
"' has not been found", id
);
287 typedef const char * const ccpc
;
293 /* http://pubs.opengroup.org/onlinepubs/9699919799/functions/fopen.html */
294 static const struct {
297 } guest_file_open_modes
[] = {
298 { (ccpc
[]){ "r", NULL
}, O_RDONLY
},
299 { (ccpc
[]){ "rb", NULL
}, O_RDONLY
| O_BINARY
},
300 { (ccpc
[]){ "w", NULL
}, O_WRONLY
| O_CREAT
| O_TRUNC
},
301 { (ccpc
[]){ "wb", NULL
}, O_WRONLY
| O_CREAT
| O_TRUNC
| O_BINARY
},
302 { (ccpc
[]){ "a", NULL
}, O_WRONLY
| O_CREAT
| O_APPEND
},
303 { (ccpc
[]){ "ab", NULL
}, O_WRONLY
| O_CREAT
| O_APPEND
| O_BINARY
},
304 { (ccpc
[]){ "r+", NULL
}, O_RDWR
},
305 { (ccpc
[]){ "rb+", "r+b", NULL
}, O_RDWR
| O_BINARY
},
306 { (ccpc
[]){ "w+", NULL
}, O_RDWR
| O_CREAT
| O_TRUNC
},
307 { (ccpc
[]){ "wb+", "w+b", NULL
}, O_RDWR
| O_CREAT
| O_TRUNC
| O_BINARY
},
308 { (ccpc
[]){ "a+", NULL
}, O_RDWR
| O_CREAT
| O_APPEND
},
309 { (ccpc
[]){ "ab+", "a+b", NULL
}, O_RDWR
| O_CREAT
| O_APPEND
| O_BINARY
}
313 find_open_flag(const char *mode_str
, Error
**errp
)
317 for (mode
= 0; mode
< ARRAY_SIZE(guest_file_open_modes
); ++mode
) {
320 form
= guest_file_open_modes
[mode
].forms
;
321 while (*form
!= NULL
&& strcmp(*form
, mode_str
) != 0) {
329 if (mode
== ARRAY_SIZE(guest_file_open_modes
)) {
330 error_setg(errp
, "invalid file open mode '%s'", mode_str
);
333 return guest_file_open_modes
[mode
].oflag_base
| O_NOCTTY
| O_NONBLOCK
;
336 #define DEFAULT_NEW_FILE_MODE (S_IRUSR | S_IWUSR | \
337 S_IRGRP | S_IWGRP | \
341 safe_open_or_create(const char *path
, const char *mode
, Error
**errp
)
347 oflag
= find_open_flag(mode
, errp
);
352 /* If the caller wants / allows creation of a new file, we implement it
353 * with a two step process: open() + (open() / fchmod()).
355 * First we insist on creating the file exclusively as a new file. If
356 * that succeeds, we're free to set any file-mode bits on it. (The
357 * motivation is that we want to set those file-mode bits independently
358 * of the current umask.)
360 * If the exclusive creation fails because the file already exists
361 * (EEXIST is not possible for any other reason), we just attempt to
362 * open the file, but in this case we won't be allowed to change the
363 * file-mode bits on the preexistent file.
365 * The pathname should never disappear between the two open()s in
366 * practice. If it happens, then someone very likely tried to race us.
367 * In this case just go ahead and report the ENOENT from the second
368 * open() to the caller.
370 * If the caller wants to open a preexistent file, then the first
371 * open() is decisive and its third argument is ignored, and the second
372 * open() and the fchmod() are never called.
374 fd
= qga_open_cloexec(path
, oflag
| ((oflag
& O_CREAT
) ? O_EXCL
: 0), 0);
375 if (fd
== -1 && errno
== EEXIST
) {
376 oflag
&= ~(unsigned)O_CREAT
;
377 fd
= qga_open_cloexec(path
, oflag
, 0);
380 error_setg_errno(errp
, errno
,
381 "failed to open file '%s' (mode: '%s')",
386 if ((oflag
& O_CREAT
) && fchmod(fd
, DEFAULT_NEW_FILE_MODE
) == -1) {
387 error_setg_errno(errp
, errno
, "failed to set permission "
388 "0%03o on new file '%s' (mode: '%s')",
389 (unsigned)DEFAULT_NEW_FILE_MODE
, path
, mode
);
393 f
= fdopen(fd
, mode
);
395 error_setg_errno(errp
, errno
, "failed to associate stdio stream with "
396 "file descriptor %d, file '%s' (mode: '%s')",
401 if (f
== NULL
&& fd
!= -1) {
403 if (oflag
& O_CREAT
) {
410 int64_t qmp_guest_file_open(const char *path
, const char *mode
,
414 Error
*local_err
= NULL
;
420 slog("guest-file-open called, filepath: %s, mode: %s", path
, mode
);
421 fh
= safe_open_or_create(path
, mode
, &local_err
);
422 if (local_err
!= NULL
) {
423 error_propagate(errp
, local_err
);
427 /* set fd non-blocking to avoid common use cases (like reading from a
428 * named pipe) from hanging the agent
430 if (!g_unix_set_fd_nonblocking(fileno(fh
), true, NULL
)) {
432 error_setg_errno(errp
, errno
, "Failed to set FD nonblocking");
436 handle
= guest_file_handle_add(fh
, errp
);
442 slog("guest-file-open, handle: %" PRId64
, handle
);
446 void qmp_guest_file_close(int64_t handle
, Error
**errp
)
448 GuestFileHandle
*gfh
= guest_file_handle_find(handle
, errp
);
451 slog("guest-file-close called, handle: %" PRId64
, handle
);
456 ret
= fclose(gfh
->fh
);
458 error_setg_errno(errp
, errno
, "failed to close handle");
462 QTAILQ_REMOVE(&guest_file_state
.filehandles
, gfh
, next
);
466 GuestFileRead
*guest_file_read_unsafe(GuestFileHandle
*gfh
,
467 int64_t count
, Error
**errp
)
469 GuestFileRead
*read_data
= NULL
;
474 /* explicitly flush when switching from writing to reading */
475 if (gfh
->state
== RW_STATE_WRITING
) {
476 int ret
= fflush(fh
);
478 error_setg_errno(errp
, errno
, "failed to flush file");
481 gfh
->state
= RW_STATE_NEW
;
484 buf
= g_malloc0(count
+ 1);
485 read_count
= fread(buf
, 1, count
, fh
);
487 error_setg_errno(errp
, errno
, "failed to read file");
490 read_data
= g_new0(GuestFileRead
, 1);
491 read_data
->count
= read_count
;
492 read_data
->eof
= feof(fh
);
494 read_data
->buf_b64
= g_base64_encode(buf
, read_count
);
496 gfh
->state
= RW_STATE_READING
;
504 GuestFileWrite
*qmp_guest_file_write(int64_t handle
, const char *buf_b64
,
505 bool has_count
, int64_t count
,
508 GuestFileWrite
*write_data
= NULL
;
512 GuestFileHandle
*gfh
= guest_file_handle_find(handle
, errp
);
521 if (gfh
->state
== RW_STATE_READING
) {
522 int ret
= fseek(fh
, 0, SEEK_CUR
);
524 error_setg_errno(errp
, errno
, "failed to seek file");
527 gfh
->state
= RW_STATE_NEW
;
530 buf
= qbase64_decode(buf_b64
, -1, &buf_len
, errp
);
537 } else if (count
< 0 || count
> buf_len
) {
538 error_setg(errp
, "value '%" PRId64
"' is invalid for argument count",
544 write_count
= fwrite(buf
, 1, count
, fh
);
546 error_setg_errno(errp
, errno
, "failed to write to file");
547 slog("guest-file-write failed, handle: %" PRId64
, handle
);
549 write_data
= g_new0(GuestFileWrite
, 1);
550 write_data
->count
= write_count
;
551 write_data
->eof
= feof(fh
);
552 gfh
->state
= RW_STATE_WRITING
;
560 struct GuestFileSeek
*qmp_guest_file_seek(int64_t handle
, int64_t offset
,
561 GuestFileWhence
*whence_code
,
564 GuestFileHandle
*gfh
= guest_file_handle_find(handle
, errp
);
565 GuestFileSeek
*seek_data
= NULL
;
575 /* We stupidly exposed 'whence':'int' in our qapi */
576 whence
= ga_parse_whence(whence_code
, &err
);
578 error_propagate(errp
, err
);
583 ret
= fseek(fh
, offset
, whence
);
585 error_setg_errno(errp
, errno
, "failed to seek file");
586 if (errno
== ESPIPE
) {
587 /* file is non-seekable, stdio shouldn't be buffering anyways */
588 gfh
->state
= RW_STATE_NEW
;
591 seek_data
= g_new0(GuestFileSeek
, 1);
592 seek_data
->position
= ftell(fh
);
593 seek_data
->eof
= feof(fh
);
594 gfh
->state
= RW_STATE_NEW
;
601 void qmp_guest_file_flush(int64_t handle
, Error
**errp
)
603 GuestFileHandle
*gfh
= guest_file_handle_find(handle
, errp
);
614 error_setg_errno(errp
, errno
, "failed to flush file");
616 gfh
->state
= RW_STATE_NEW
;
620 #if defined(CONFIG_FSFREEZE) || defined(CONFIG_FSTRIM)
621 void free_fs_mount_list(FsMountList
*mounts
)
623 FsMount
*mount
, *temp
;
629 QTAILQ_FOREACH_SAFE(mount
, mounts
, next
, temp
) {
630 QTAILQ_REMOVE(mounts
, mount
, next
);
631 g_free(mount
->dirname
);
632 g_free(mount
->devtype
);
638 #if defined(CONFIG_FSFREEZE)
640 FSFREEZE_HOOK_THAW
= 0,
641 FSFREEZE_HOOK_FREEZE
,
644 static const char *fsfreeze_hook_arg_string
[] = {
649 static void execute_fsfreeze_hook(FsfreezeHookArg arg
, Error
**errp
)
654 const char *arg_str
= fsfreeze_hook_arg_string
[arg
];
655 Error
*local_err
= NULL
;
657 hook
= ga_fsfreeze_hook(ga_state
);
661 if (access(hook
, X_OK
) != 0) {
662 error_setg_errno(errp
, errno
, "can't access fsfreeze hook '%s'", hook
);
666 slog("executing fsfreeze hook with arg '%s'", arg_str
);
670 reopen_fd_to_null(0);
671 reopen_fd_to_null(1);
672 reopen_fd_to_null(2);
674 execl(hook
, hook
, arg_str
, NULL
);
676 } else if (pid
< 0) {
677 error_setg_errno(errp
, errno
, "failed to create child process");
681 ga_wait_child(pid
, &status
, &local_err
);
683 error_propagate(errp
, local_err
);
687 if (!WIFEXITED(status
)) {
688 error_setg(errp
, "fsfreeze hook has terminated abnormally");
692 status
= WEXITSTATUS(status
);
694 error_setg(errp
, "fsfreeze hook has failed with status %d", status
);
700 * Return status of freeze/thaw
702 GuestFsfreezeStatus
qmp_guest_fsfreeze_status(Error
**errp
)
704 if (ga_is_frozen(ga_state
)) {
705 return GUEST_FSFREEZE_STATUS_FROZEN
;
708 return GUEST_FSFREEZE_STATUS_THAWED
;
711 int64_t qmp_guest_fsfreeze_freeze(Error
**errp
)
713 return qmp_guest_fsfreeze_freeze_list(false, NULL
, errp
);
716 int64_t qmp_guest_fsfreeze_freeze_list(bool has_mountpoints
,
717 strList
*mountpoints
,
722 Error
*local_err
= NULL
;
724 slog("guest-fsfreeze called");
726 execute_fsfreeze_hook(FSFREEZE_HOOK_FREEZE
, &local_err
);
728 error_propagate(errp
, local_err
);
732 QTAILQ_INIT(&mounts
);
733 if (!build_fs_mount_list(&mounts
, &local_err
)) {
734 error_propagate(errp
, local_err
);
738 /* cannot risk guest agent blocking itself on a write in this state */
739 ga_set_frozen(ga_state
);
741 ret
= qmp_guest_fsfreeze_do_freeze_list(has_mountpoints
, mountpoints
,
744 free_fs_mount_list(&mounts
);
745 /* We may not issue any FIFREEZE here.
746 * Just unset ga_state here and ready for the next call.
749 ga_unset_frozen(ga_state
);
750 } else if (ret
< 0) {
751 qmp_guest_fsfreeze_thaw(NULL
);
756 int64_t qmp_guest_fsfreeze_thaw(Error
**errp
)
760 ret
= qmp_guest_fsfreeze_do_thaw(errp
);
762 ga_unset_frozen(ga_state
);
763 execute_fsfreeze_hook(FSFREEZE_HOOK_THAW
, errp
);
771 static void guest_fsfreeze_cleanup(void)
775 if (ga_is_frozen(ga_state
) == GUEST_FSFREEZE_STATUS_FROZEN
) {
776 qmp_guest_fsfreeze_thaw(&err
);
778 slog("failed to clean up frozen filesystems: %s",
779 error_get_pretty(err
));
786 /* linux-specific implementations. avoid this if at all possible. */
787 #if defined(__linux__)
788 #if defined(CONFIG_FSFREEZE)
790 static char *get_pci_driver(char const *syspath
, int pathlen
, Error
**errp
)
798 path
= g_strndup(syspath
, pathlen
);
799 dpath
= g_strdup_printf("%s/driver", path
);
800 len
= readlink(dpath
, buf
, sizeof(buf
) - 1);
803 driver
= g_path_get_basename(buf
);
810 static int compare_uint(const void *_a
, const void *_b
)
812 unsigned int a
= *(unsigned int *)_a
;
813 unsigned int b
= *(unsigned int *)_b
;
815 return a
< b
? -1 : a
> b
? 1 : 0;
818 /* Walk the specified sysfs and build a sorted list of host or ata numbers */
819 static int build_hosts(char const *syspath
, char const *host
, bool ata
,
820 unsigned int *hosts
, int hosts_max
, Error
**errp
)
824 struct dirent
*entry
;
827 path
= g_strndup(syspath
, host
- syspath
);
830 error_setg_errno(errp
, errno
, "opendir(\"%s\")", path
);
835 while (i
< hosts_max
) {
836 entry
= readdir(dir
);
840 if (ata
&& sscanf(entry
->d_name
, "ata%d", hosts
+ i
) == 1) {
842 } else if (!ata
&& sscanf(entry
->d_name
, "host%d", hosts
+ i
) == 1) {
847 qsort(hosts
, i
, sizeof(hosts
[0]), compare_uint
);
855 * Store disk device info for devices on the PCI bus.
856 * Returns true if information has been stored, or false for failure.
858 static bool build_guest_fsinfo_for_pci_dev(char const *syspath
,
859 GuestDiskAddress
*disk
,
862 unsigned int pci
[4], host
, hosts
[8], tgt
[3];
863 int i
, nhosts
= 0, pcilen
;
864 GuestPCIAddress
*pciaddr
= disk
->pci_controller
;
865 bool has_ata
= false, has_host
= false, has_tgt
= false;
866 char *p
, *q
, *driver
= NULL
;
869 p
= strstr(syspath
, "/devices/pci");
870 if (!p
|| sscanf(p
+ 12, "%*x:%*x/%x:%x:%x.%x%n",
871 pci
, pci
+ 1, pci
+ 2, pci
+ 3, &pcilen
) < 4) {
872 g_debug("only pci device is supported: sysfs path '%s'", syspath
);
878 driver
= get_pci_driver(syspath
, p
- syspath
, errp
);
879 if (driver
&& (g_str_equal(driver
, "ata_piix") ||
880 g_str_equal(driver
, "sym53c8xx") ||
881 g_str_equal(driver
, "virtio-pci") ||
882 g_str_equal(driver
, "ahci") ||
883 g_str_equal(driver
, "nvme"))) {
888 if (sscanf(p
, "/%x:%x:%x.%x%n",
889 pci
, pci
+ 1, pci
+ 2, pci
+ 3, &pcilen
) == 4) {
894 g_debug("unsupported driver or sysfs path '%s'", syspath
);
898 p
= strstr(syspath
, "/target");
899 if (p
&& sscanf(p
+ 7, "%*u:%*u:%*u/%*u:%u:%u:%u",
900 tgt
, tgt
+ 1, tgt
+ 2) == 3) {
904 p
= strstr(syspath
, "/ata");
909 p
= strstr(syspath
, "/host");
912 if (p
&& sscanf(q
, "%u", &host
) == 1) {
914 nhosts
= build_hosts(syspath
, p
, has_ata
, hosts
,
915 ARRAY_SIZE(hosts
), errp
);
921 pciaddr
->domain
= pci
[0];
922 pciaddr
->bus
= pci
[1];
923 pciaddr
->slot
= pci
[2];
924 pciaddr
->function
= pci
[3];
926 if (strcmp(driver
, "ata_piix") == 0) {
927 /* a host per ide bus, target*:0:<unit>:0 */
928 if (!has_host
|| !has_tgt
) {
929 g_debug("invalid sysfs path '%s' (driver '%s')", syspath
, driver
);
932 for (i
= 0; i
< nhosts
; i
++) {
933 if (host
== hosts
[i
]) {
934 disk
->bus_type
= GUEST_DISK_BUS_TYPE_IDE
;
941 g_debug("no host for '%s' (driver '%s')", syspath
, driver
);
944 } else if (strcmp(driver
, "sym53c8xx") == 0) {
945 /* scsi(LSI Logic): target*:0:<unit>:0 */
947 g_debug("invalid sysfs path '%s' (driver '%s')", syspath
, driver
);
950 disk
->bus_type
= GUEST_DISK_BUS_TYPE_SCSI
;
952 } else if (strcmp(driver
, "virtio-pci") == 0) {
954 /* virtio-scsi: target*:0:0:<unit> */
955 disk
->bus_type
= GUEST_DISK_BUS_TYPE_SCSI
;
958 /* virtio-blk: 1 disk per 1 device */
959 disk
->bus_type
= GUEST_DISK_BUS_TYPE_VIRTIO
;
961 } else if (strcmp(driver
, "ahci") == 0) {
962 /* ahci: 1 host per 1 unit */
963 if (!has_host
|| !has_tgt
) {
964 g_debug("invalid sysfs path '%s' (driver '%s')", syspath
, driver
);
967 for (i
= 0; i
< nhosts
; i
++) {
968 if (host
== hosts
[i
]) {
970 disk
->bus_type
= GUEST_DISK_BUS_TYPE_SATA
;
975 g_debug("no host for '%s' (driver '%s')", syspath
, driver
);
978 } else if (strcmp(driver
, "nvme") == 0) {
979 disk
->bus_type
= GUEST_DISK_BUS_TYPE_NVME
;
981 g_debug("unknown driver '%s' (sysfs path '%s')", driver
, syspath
);
993 * Store disk device info for non-PCI virtio devices (for example s390x
994 * channel I/O devices). Returns true if information has been stored, or
997 static bool build_guest_fsinfo_for_nonpci_virtio(char const *syspath
,
998 GuestDiskAddress
*disk
,
1001 unsigned int tgt
[3];
1004 if (!strstr(syspath
, "/virtio") || !strstr(syspath
, "/block")) {
1005 g_debug("Unsupported virtio device '%s'", syspath
);
1009 p
= strstr(syspath
, "/target");
1010 if (p
&& sscanf(p
+ 7, "%*u:%*u:%*u/%*u:%u:%u:%u",
1011 &tgt
[0], &tgt
[1], &tgt
[2]) == 3) {
1012 /* virtio-scsi: target*:0:<target>:<unit> */
1013 disk
->bus_type
= GUEST_DISK_BUS_TYPE_SCSI
;
1015 disk
->target
= tgt
[1];
1016 disk
->unit
= tgt
[2];
1018 /* virtio-blk: 1 disk per 1 device */
1019 disk
->bus_type
= GUEST_DISK_BUS_TYPE_VIRTIO
;
1026 * Store disk device info for CCW devices (s390x channel I/O devices).
1027 * Returns true if information has been stored, or false for failure.
1029 static bool build_guest_fsinfo_for_ccw_dev(char const *syspath
,
1030 GuestDiskAddress
*disk
,
1033 unsigned int cssid
, ssid
, subchno
, devno
;
1036 p
= strstr(syspath
, "/devices/css");
1037 if (!p
|| sscanf(p
+ 12, "%*x/%x.%x.%x/%*x.%*x.%x/",
1038 &cssid
, &ssid
, &subchno
, &devno
) < 4) {
1039 g_debug("could not parse ccw device sysfs path: %s", syspath
);
1043 disk
->ccw_address
= g_new0(GuestCCWAddress
, 1);
1044 disk
->ccw_address
->cssid
= cssid
;
1045 disk
->ccw_address
->ssid
= ssid
;
1046 disk
->ccw_address
->subchno
= subchno
;
1047 disk
->ccw_address
->devno
= devno
;
1049 if (strstr(p
, "/virtio")) {
1050 build_guest_fsinfo_for_nonpci_virtio(syspath
, disk
, errp
);
1056 /* Store disk device info specified by @sysfs into @fs */
1057 static void build_guest_fsinfo_for_real_device(char const *syspath
,
1058 GuestFilesystemInfo
*fs
,
1061 GuestDiskAddress
*disk
;
1062 GuestPCIAddress
*pciaddr
;
1064 #ifdef CONFIG_LIBUDEV
1065 struct udev
*udev
= NULL
;
1066 struct udev_device
*udevice
= NULL
;
1069 pciaddr
= g_new0(GuestPCIAddress
, 1);
1070 pciaddr
->domain
= -1; /* -1 means field is invalid */
1073 pciaddr
->function
= -1;
1075 disk
= g_new0(GuestDiskAddress
, 1);
1076 disk
->pci_controller
= pciaddr
;
1077 disk
->bus_type
= GUEST_DISK_BUS_TYPE_UNKNOWN
;
1079 #ifdef CONFIG_LIBUDEV
1081 udevice
= udev_device_new_from_syspath(udev
, syspath
);
1082 if (udev
== NULL
|| udevice
== NULL
) {
1083 g_debug("failed to query udev");
1085 const char *devnode
, *serial
;
1086 devnode
= udev_device_get_devnode(udevice
);
1087 if (devnode
!= NULL
) {
1088 disk
->dev
= g_strdup(devnode
);
1090 serial
= udev_device_get_property_value(udevice
, "ID_SERIAL");
1091 if (serial
!= NULL
&& *serial
!= 0) {
1092 disk
->serial
= g_strdup(serial
);
1097 udev_device_unref(udevice
);
1100 if (strstr(syspath
, "/devices/pci")) {
1101 has_hwinf
= build_guest_fsinfo_for_pci_dev(syspath
, disk
, errp
);
1102 } else if (strstr(syspath
, "/devices/css")) {
1103 has_hwinf
= build_guest_fsinfo_for_ccw_dev(syspath
, disk
, errp
);
1104 } else if (strstr(syspath
, "/virtio")) {
1105 has_hwinf
= build_guest_fsinfo_for_nonpci_virtio(syspath
, disk
, errp
);
1107 g_debug("Unsupported device type for '%s'", syspath
);
1111 if (has_hwinf
|| disk
->dev
|| disk
->serial
) {
1112 QAPI_LIST_PREPEND(fs
->disk
, disk
);
1114 qapi_free_GuestDiskAddress(disk
);
1118 static void build_guest_fsinfo_for_device(char const *devpath
,
1119 GuestFilesystemInfo
*fs
,
1122 /* Store a list of slave devices of virtual volume specified by @syspath into
1124 static void build_guest_fsinfo_for_virtual_device(char const *syspath
,
1125 GuestFilesystemInfo
*fs
,
1131 struct dirent
*entry
;
1133 dirpath
= g_strdup_printf("%s/slaves", syspath
);
1134 dir
= opendir(dirpath
);
1136 if (errno
!= ENOENT
) {
1137 error_setg_errno(errp
, errno
, "opendir(\"%s\")", dirpath
);
1145 entry
= readdir(dir
);
1146 if (entry
== NULL
) {
1148 error_setg_errno(errp
, errno
, "readdir(\"%s\")", dirpath
);
1153 if (entry
->d_type
== DT_LNK
) {
1156 g_debug(" slave device '%s'", entry
->d_name
);
1157 path
= g_strdup_printf("%s/slaves/%s", syspath
, entry
->d_name
);
1158 build_guest_fsinfo_for_device(path
, fs
, &err
);
1162 error_propagate(errp
, err
);
1172 static bool is_disk_virtual(const char *devpath
, Error
**errp
)
1174 g_autofree
char *syspath
= realpath(devpath
, NULL
);
1177 error_setg_errno(errp
, errno
, "realpath(\"%s\")", devpath
);
1180 return strstr(syspath
, "/devices/virtual/block/") != NULL
;
1183 /* Dispatch to functions for virtual/real device */
1184 static void build_guest_fsinfo_for_device(char const *devpath
,
1185 GuestFilesystemInfo
*fs
,
1189 g_autofree
char *syspath
= NULL
;
1190 bool is_virtual
= false;
1192 syspath
= realpath(devpath
, NULL
);
1194 if (errno
!= ENOENT
) {
1195 error_setg_errno(errp
, errno
, "realpath(\"%s\")", devpath
);
1199 /* ENOENT: This devpath may not exist because of container config */
1201 fs
->name
= g_path_get_basename(devpath
);
1207 fs
->name
= g_path_get_basename(syspath
);
1210 g_debug(" parse sysfs path '%s'", syspath
);
1211 is_virtual
= is_disk_virtual(syspath
, errp
);
1212 if (*errp
!= NULL
) {
1216 build_guest_fsinfo_for_virtual_device(syspath
, fs
, errp
);
1218 build_guest_fsinfo_for_real_device(syspath
, fs
, errp
);
1222 #ifdef CONFIG_LIBUDEV
1225 * Wrapper around build_guest_fsinfo_for_device() for getting just
1228 static GuestDiskAddress
*get_disk_address(const char *syspath
, Error
**errp
)
1230 g_autoptr(GuestFilesystemInfo
) fs
= NULL
;
1232 fs
= g_new0(GuestFilesystemInfo
, 1);
1233 build_guest_fsinfo_for_device(syspath
, fs
, errp
);
1234 if (fs
->disk
!= NULL
) {
1235 return g_steal_pointer(&fs
->disk
->value
);
1240 static char *get_alias_for_syspath(const char *syspath
)
1242 struct udev
*udev
= NULL
;
1243 struct udev_device
*udevice
= NULL
;
1248 g_debug("failed to query udev");
1251 udevice
= udev_device_new_from_syspath(udev
, syspath
);
1252 if (udevice
== NULL
) {
1253 g_debug("failed to query udev for path: %s", syspath
);
1256 const char *alias
= udev_device_get_property_value(
1257 udevice
, "DM_NAME");
1259 * NULL means there was an error and empty string means there is no
1260 * alias. In case of no alias we return NULL instead of empty string.
1262 if (alias
== NULL
) {
1263 g_debug("failed to query udev for device alias for: %s",
1265 } else if (*alias
!= 0) {
1266 ret
= g_strdup(alias
);
1272 udev_device_unref(udevice
);
1276 static char *get_device_for_syspath(const char *syspath
)
1278 struct udev
*udev
= NULL
;
1279 struct udev_device
*udevice
= NULL
;
1284 g_debug("failed to query udev");
1287 udevice
= udev_device_new_from_syspath(udev
, syspath
);
1288 if (udevice
== NULL
) {
1289 g_debug("failed to query udev for path: %s", syspath
);
1292 ret
= g_strdup(udev_device_get_devnode(udevice
));
1297 udev_device_unref(udevice
);
1301 static void get_disk_deps(const char *disk_dir
, GuestDiskInfo
*disk
)
1303 g_autofree
char *deps_dir
= NULL
;
1305 GDir
*dp_deps
= NULL
;
1307 /* List dependent disks */
1308 deps_dir
= g_strdup_printf("%s/slaves", disk_dir
);
1309 g_debug(" listing entries in: %s", deps_dir
);
1310 dp_deps
= g_dir_open(deps_dir
, 0, NULL
);
1311 if (dp_deps
== NULL
) {
1312 g_debug("failed to list entries in %s", deps_dir
);
1315 disk
->has_dependencies
= true;
1316 while ((dep
= g_dir_read_name(dp_deps
)) != NULL
) {
1317 g_autofree
char *dep_dir
= NULL
;
1320 /* Add dependent disks */
1321 dep_dir
= g_strdup_printf("%s/%s", deps_dir
, dep
);
1322 dev_name
= get_device_for_syspath(dep_dir
);
1323 if (dev_name
!= NULL
) {
1324 g_debug(" adding dependent device: %s", dev_name
);
1325 QAPI_LIST_PREPEND(disk
->dependencies
, dev_name
);
1328 g_dir_close(dp_deps
);
1332 * Detect partitions subdirectory, name is "<disk_name><number>" or
1333 * "<disk_name>p<number>"
1335 * @disk_name -- last component of /sys path (e.g. sda)
1336 * @disk_dir -- sys path of the disk (e.g. /sys/block/sda)
1337 * @disk_dev -- device node of the disk (e.g. /dev/sda)
1339 static GuestDiskInfoList
*get_disk_partitions(
1340 GuestDiskInfoList
*list
,
1341 const char *disk_name
, const char *disk_dir
,
1342 const char *disk_dev
)
1344 GuestDiskInfoList
*ret
= list
;
1345 struct dirent
*de_disk
;
1346 DIR *dp_disk
= NULL
;
1347 size_t len
= strlen(disk_name
);
1349 dp_disk
= opendir(disk_dir
);
1350 while ((de_disk
= readdir(dp_disk
)) != NULL
) {
1351 g_autofree
char *partition_dir
= NULL
;
1353 GuestDiskInfo
*partition
;
1355 if (!(de_disk
->d_type
& DT_DIR
)) {
1359 if (!(strncmp(disk_name
, de_disk
->d_name
, len
) == 0 &&
1360 ((*(de_disk
->d_name
+ len
) == 'p' &&
1361 isdigit(*(de_disk
->d_name
+ len
+ 1))) ||
1362 isdigit(*(de_disk
->d_name
+ len
))))) {
1366 partition_dir
= g_strdup_printf("%s/%s",
1367 disk_dir
, de_disk
->d_name
);
1368 dev_name
= get_device_for_syspath(partition_dir
);
1369 if (dev_name
== NULL
) {
1370 g_debug("Failed to get device name for syspath: %s",
1374 partition
= g_new0(GuestDiskInfo
, 1);
1375 partition
->name
= dev_name
;
1376 partition
->partition
= true;
1377 partition
->has_dependencies
= true;
1378 /* Add parent disk as dependent for easier tracking of hierarchy */
1379 QAPI_LIST_PREPEND(partition
->dependencies
, g_strdup(disk_dev
));
1381 QAPI_LIST_PREPEND(ret
, partition
);
1388 static void get_nvme_smart(GuestDiskInfo
*disk
)
1391 GuestNVMeSmart
*smart
;
1392 NvmeSmartLog log
= {0};
1393 struct nvme_admin_cmd cmd
= {
1394 .opcode
= NVME_ADM_CMD_GET_LOG_PAGE
,
1395 .nsid
= NVME_NSID_BROADCAST
,
1396 .addr
= (uintptr_t)&log
,
1397 .data_len
= sizeof(log
),
1398 .cdw10
= NVME_LOG_SMART_INFO
| (1 << 15) /* RAE bit */
1399 | (((sizeof(log
) >> 2) - 1) << 16)
1402 fd
= qga_open_cloexec(disk
->name
, O_RDONLY
, 0);
1404 g_debug("Failed to open device: %s: %s", disk
->name
, g_strerror(errno
));
1408 if (ioctl(fd
, NVME_IOCTL_ADMIN_CMD
, &cmd
)) {
1409 g_debug("Failed to get smart: %s: %s", disk
->name
, g_strerror(errno
));
1414 disk
->smart
= g_new0(GuestDiskSmart
, 1);
1415 disk
->smart
->type
= GUEST_DISK_BUS_TYPE_NVME
;
1417 smart
= &disk
->smart
->u
.nvme
;
1418 smart
->critical_warning
= log
.critical_warning
;
1419 smart
->temperature
= lduw_le_p(&log
.temperature
); /* unaligned field */
1420 smart
->available_spare
= log
.available_spare
;
1421 smart
->available_spare_threshold
= log
.available_spare_threshold
;
1422 smart
->percentage_used
= log
.percentage_used
;
1423 smart
->data_units_read_lo
= le64_to_cpu(log
.data_units_read
[0]);
1424 smart
->data_units_read_hi
= le64_to_cpu(log
.data_units_read
[1]);
1425 smart
->data_units_written_lo
= le64_to_cpu(log
.data_units_written
[0]);
1426 smart
->data_units_written_hi
= le64_to_cpu(log
.data_units_written
[1]);
1427 smart
->host_read_commands_lo
= le64_to_cpu(log
.host_read_commands
[0]);
1428 smart
->host_read_commands_hi
= le64_to_cpu(log
.host_read_commands
[1]);
1429 smart
->host_write_commands_lo
= le64_to_cpu(log
.host_write_commands
[0]);
1430 smart
->host_write_commands_hi
= le64_to_cpu(log
.host_write_commands
[1]);
1431 smart
->controller_busy_time_lo
= le64_to_cpu(log
.controller_busy_time
[0]);
1432 smart
->controller_busy_time_hi
= le64_to_cpu(log
.controller_busy_time
[1]);
1433 smart
->power_cycles_lo
= le64_to_cpu(log
.power_cycles
[0]);
1434 smart
->power_cycles_hi
= le64_to_cpu(log
.power_cycles
[1]);
1435 smart
->power_on_hours_lo
= le64_to_cpu(log
.power_on_hours
[0]);
1436 smart
->power_on_hours_hi
= le64_to_cpu(log
.power_on_hours
[1]);
1437 smart
->unsafe_shutdowns_lo
= le64_to_cpu(log
.unsafe_shutdowns
[0]);
1438 smart
->unsafe_shutdowns_hi
= le64_to_cpu(log
.unsafe_shutdowns
[1]);
1439 smart
->media_errors_lo
= le64_to_cpu(log
.media_errors
[0]);
1440 smart
->media_errors_hi
= le64_to_cpu(log
.media_errors
[1]);
1441 smart
->number_of_error_log_entries_lo
=
1442 le64_to_cpu(log
.number_of_error_log_entries
[0]);
1443 smart
->number_of_error_log_entries_hi
=
1444 le64_to_cpu(log
.number_of_error_log_entries
[1]);
1449 static void get_disk_smart(GuestDiskInfo
*disk
)
1452 && (disk
->address
->bus_type
== GUEST_DISK_BUS_TYPE_NVME
)) {
1453 get_nvme_smart(disk
);
1457 GuestDiskInfoList
*qmp_guest_get_disks(Error
**errp
)
1459 GuestDiskInfoList
*ret
= NULL
;
1460 GuestDiskInfo
*disk
;
1462 struct dirent
*de
= NULL
;
1464 g_debug("listing /sys/block directory");
1465 dp
= opendir("/sys/block");
1467 error_setg_errno(errp
, errno
, "Can't open directory \"/sys/block\"");
1470 while ((de
= readdir(dp
)) != NULL
) {
1471 g_autofree
char *disk_dir
= NULL
, *line
= NULL
,
1474 Error
*local_err
= NULL
;
1475 if (de
->d_type
!= DT_LNK
) {
1476 g_debug(" skipping entry: %s", de
->d_name
);
1480 /* Check size and skip zero-sized disks */
1481 g_debug(" checking disk size");
1482 size_path
= g_strdup_printf("/sys/block/%s/size", de
->d_name
);
1483 if (!g_file_get_contents(size_path
, &line
, NULL
, NULL
)) {
1484 g_debug(" failed to read disk size");
1487 if (g_strcmp0(line
, "0\n") == 0) {
1488 g_debug(" skipping zero-sized disk");
1492 g_debug(" adding %s", de
->d_name
);
1493 disk_dir
= g_strdup_printf("/sys/block/%s", de
->d_name
);
1494 dev_name
= get_device_for_syspath(disk_dir
);
1495 if (dev_name
== NULL
) {
1496 g_debug("Failed to get device name for syspath: %s",
1500 disk
= g_new0(GuestDiskInfo
, 1);
1501 disk
->name
= dev_name
;
1502 disk
->partition
= false;
1503 disk
->alias
= get_alias_for_syspath(disk_dir
);
1504 QAPI_LIST_PREPEND(ret
, disk
);
1506 /* Get address for non-virtual devices */
1507 bool is_virtual
= is_disk_virtual(disk_dir
, &local_err
);
1508 if (local_err
!= NULL
) {
1509 g_debug(" failed to check disk path, ignoring error: %s",
1510 error_get_pretty(local_err
));
1511 error_free(local_err
);
1513 /* Don't try to get the address */
1517 disk
->address
= get_disk_address(disk_dir
, &local_err
);
1518 if (local_err
!= NULL
) {
1519 g_debug(" failed to get device info, ignoring error: %s",
1520 error_get_pretty(local_err
));
1521 error_free(local_err
);
1526 get_disk_deps(disk_dir
, disk
);
1527 get_disk_smart(disk
);
1528 ret
= get_disk_partitions(ret
, de
->d_name
, disk_dir
, dev_name
);
1538 GuestDiskInfoList
*qmp_guest_get_disks(Error
**errp
)
1540 error_setg(errp
, QERR_UNSUPPORTED
);
1546 /* Return a list of the disk device(s)' info which @mount lies on */
1547 static GuestFilesystemInfo
*build_guest_fsinfo(struct FsMount
*mount
,
1550 GuestFilesystemInfo
*fs
= g_malloc0(sizeof(*fs
));
1552 unsigned long used
, nonroot_total
, fr_size
;
1553 char *devpath
= g_strdup_printf("/sys/dev/block/%u:%u",
1554 mount
->devmajor
, mount
->devminor
);
1556 fs
->mountpoint
= g_strdup(mount
->dirname
);
1557 fs
->type
= g_strdup(mount
->devtype
);
1558 build_guest_fsinfo_for_device(devpath
, fs
, errp
);
1560 if (statvfs(fs
->mountpoint
, &buf
) == 0) {
1561 fr_size
= buf
.f_frsize
;
1562 used
= buf
.f_blocks
- buf
.f_bfree
;
1563 nonroot_total
= used
+ buf
.f_bavail
;
1564 fs
->used_bytes
= used
* fr_size
;
1565 fs
->total_bytes
= nonroot_total
* fr_size
;
1567 fs
->has_total_bytes
= true;
1568 fs
->has_used_bytes
= true;
1576 GuestFilesystemInfoList
*qmp_guest_get_fsinfo(Error
**errp
)
1579 struct FsMount
*mount
;
1580 GuestFilesystemInfoList
*ret
= NULL
;
1581 Error
*local_err
= NULL
;
1583 QTAILQ_INIT(&mounts
);
1584 if (!build_fs_mount_list(&mounts
, &local_err
)) {
1585 error_propagate(errp
, local_err
);
1589 QTAILQ_FOREACH(mount
, &mounts
, next
) {
1590 g_debug("Building guest fsinfo for '%s'", mount
->dirname
);
1592 QAPI_LIST_PREPEND(ret
, build_guest_fsinfo(mount
, &local_err
));
1594 error_propagate(errp
, local_err
);
1595 qapi_free_GuestFilesystemInfoList(ret
);
1601 free_fs_mount_list(&mounts
);
1604 #endif /* CONFIG_FSFREEZE */
1606 #if defined(CONFIG_FSTRIM)
1608 * Walk list of mounted file systems in the guest, and trim them.
1610 GuestFilesystemTrimResponse
*
1611 qmp_guest_fstrim(bool has_minimum
, int64_t minimum
, Error
**errp
)
1613 GuestFilesystemTrimResponse
*response
;
1614 GuestFilesystemTrimResult
*result
;
1617 struct FsMount
*mount
;
1619 struct fstrim_range r
;
1621 slog("guest-fstrim called");
1623 QTAILQ_INIT(&mounts
);
1624 if (!build_fs_mount_list(&mounts
, errp
)) {
1628 response
= g_malloc0(sizeof(*response
));
1630 QTAILQ_FOREACH(mount
, &mounts
, next
) {
1631 result
= g_malloc0(sizeof(*result
));
1632 result
->path
= g_strdup(mount
->dirname
);
1634 QAPI_LIST_PREPEND(response
->paths
, result
);
1636 fd
= qga_open_cloexec(mount
->dirname
, O_RDONLY
, 0);
1638 result
->error
= g_strdup_printf("failed to open: %s",
1643 /* We try to cull filesystems we know won't work in advance, but other
1644 * filesystems may not implement fstrim for less obvious reasons.
1645 * These will report EOPNOTSUPP; while in some other cases ENOTTY
1646 * will be reported (e.g. CD-ROMs).
1647 * Any other error means an unexpected error.
1651 r
.minlen
= has_minimum
? minimum
: 0;
1652 ret
= ioctl(fd
, FITRIM
, &r
);
1654 if (errno
== ENOTTY
|| errno
== EOPNOTSUPP
) {
1655 result
->error
= g_strdup("trim not supported");
1657 result
->error
= g_strdup_printf("failed to trim: %s",
1664 result
->has_minimum
= true;
1665 result
->minimum
= r
.minlen
;
1666 result
->has_trimmed
= true;
1667 result
->trimmed
= r
.len
;
1671 free_fs_mount_list(&mounts
);
1674 #endif /* CONFIG_FSTRIM */
1677 #define LINUX_SYS_STATE_FILE "/sys/power/state"
1678 #define SUSPEND_SUPPORTED 0
1679 #define SUSPEND_NOT_SUPPORTED 1
1682 SUSPEND_MODE_DISK
= 0,
1683 SUSPEND_MODE_RAM
= 1,
1684 SUSPEND_MODE_HYBRID
= 2,
1688 * Executes a command in a child process using g_spawn_sync,
1689 * returning an int >= 0 representing the exit status of the
1692 * If the program wasn't found in path, returns -1.
1694 * If a problem happened when creating the child process,
1695 * returns -1 and errp is set.
1697 static int run_process_child(const char *command
[], Error
**errp
)
1699 int exit_status
, spawn_flag
;
1700 GError
*g_err
= NULL
;
1703 spawn_flag
= G_SPAWN_SEARCH_PATH
| G_SPAWN_STDOUT_TO_DEV_NULL
|
1704 G_SPAWN_STDERR_TO_DEV_NULL
;
1706 success
= g_spawn_sync(NULL
, (char **)command
, NULL
, spawn_flag
,
1707 NULL
, NULL
, NULL
, NULL
,
1708 &exit_status
, &g_err
);
1711 return WEXITSTATUS(exit_status
);
1714 if (g_err
&& (g_err
->code
!= G_SPAWN_ERROR_NOENT
)) {
1715 error_setg(errp
, "failed to create child process, error '%s'",
1719 g_error_free(g_err
);
1723 static bool systemd_supports_mode(SuspendMode mode
, Error
**errp
)
1725 const char *systemctl_args
[3] = {"systemd-hibernate", "systemd-suspend",
1726 "systemd-hybrid-sleep"};
1727 const char *cmd
[4] = {"systemctl", "status", systemctl_args
[mode
], NULL
};
1730 status
= run_process_child(cmd
, errp
);
1733 * systemctl status uses LSB return codes so we can expect
1734 * status > 0 and be ok. To assert if the guest has support
1735 * for the selected suspend mode, status should be < 4. 4 is
1736 * the code for unknown service status, the return value when
1737 * the service does not exist. A common value is status = 3
1738 * (program is not running).
1740 if (status
> 0 && status
< 4) {
1747 static void systemd_suspend(SuspendMode mode
, Error
**errp
)
1749 Error
*local_err
= NULL
;
1750 const char *systemctl_args
[3] = {"hibernate", "suspend", "hybrid-sleep"};
1751 const char *cmd
[3] = {"systemctl", systemctl_args
[mode
], NULL
};
1754 status
= run_process_child(cmd
, &local_err
);
1760 if ((status
== -1) && !local_err
) {
1761 error_setg(errp
, "the helper program 'systemctl %s' was not found",
1762 systemctl_args
[mode
]);
1767 error_propagate(errp
, local_err
);
1769 error_setg(errp
, "the helper program 'systemctl %s' returned an "
1770 "unexpected exit status code (%d)",
1771 systemctl_args
[mode
], status
);
1775 static bool pmutils_supports_mode(SuspendMode mode
, Error
**errp
)
1777 Error
*local_err
= NULL
;
1778 const char *pmutils_args
[3] = {"--hibernate", "--suspend",
1779 "--suspend-hybrid"};
1780 const char *cmd
[3] = {"pm-is-supported", pmutils_args
[mode
], NULL
};
1783 status
= run_process_child(cmd
, &local_err
);
1785 if (status
== SUSPEND_SUPPORTED
) {
1789 if ((status
== -1) && !local_err
) {
1794 error_propagate(errp
, local_err
);
1797 "the helper program '%s' returned an unexpected exit"
1798 " status code (%d)", "pm-is-supported", status
);
1804 static void pmutils_suspend(SuspendMode mode
, Error
**errp
)
1806 Error
*local_err
= NULL
;
1807 const char *pmutils_binaries
[3] = {"pm-hibernate", "pm-suspend",
1808 "pm-suspend-hybrid"};
1809 const char *cmd
[2] = {pmutils_binaries
[mode
], NULL
};
1812 status
= run_process_child(cmd
, &local_err
);
1818 if ((status
== -1) && !local_err
) {
1819 error_setg(errp
, "the helper program '%s' was not found",
1820 pmutils_binaries
[mode
]);
1825 error_propagate(errp
, local_err
);
1828 "the helper program '%s' returned an unexpected exit"
1829 " status code (%d)", pmutils_binaries
[mode
], status
);
1833 static bool linux_sys_state_supports_mode(SuspendMode mode
, Error
**errp
)
1835 const char *sysfile_strs
[3] = {"disk", "mem", NULL
};
1836 const char *sysfile_str
= sysfile_strs
[mode
];
1837 char buf
[32]; /* hopefully big enough */
1842 error_setg(errp
, "unknown guest suspend mode");
1846 fd
= open(LINUX_SYS_STATE_FILE
, O_RDONLY
);
1851 ret
= read(fd
, buf
, sizeof(buf
) - 1);
1858 if (strstr(buf
, sysfile_str
)) {
1864 static void linux_sys_state_suspend(SuspendMode mode
, Error
**errp
)
1866 Error
*local_err
= NULL
;
1867 const char *sysfile_strs
[3] = {"disk", "mem", NULL
};
1868 const char *sysfile_str
= sysfile_strs
[mode
];
1873 error_setg(errp
, "unknown guest suspend mode");
1883 reopen_fd_to_null(0);
1884 reopen_fd_to_null(1);
1885 reopen_fd_to_null(2);
1887 fd
= open(LINUX_SYS_STATE_FILE
, O_WRONLY
);
1889 _exit(EXIT_FAILURE
);
1892 if (write(fd
, sysfile_str
, strlen(sysfile_str
)) < 0) {
1893 _exit(EXIT_FAILURE
);
1896 _exit(EXIT_SUCCESS
);
1897 } else if (pid
< 0) {
1898 error_setg_errno(errp
, errno
, "failed to create child process");
1902 ga_wait_child(pid
, &status
, &local_err
);
1904 error_propagate(errp
, local_err
);
1908 if (WEXITSTATUS(status
)) {
1909 error_setg(errp
, "child process has failed to suspend");
1914 static void guest_suspend(SuspendMode mode
, Error
**errp
)
1916 Error
*local_err
= NULL
;
1917 bool mode_supported
= false;
1919 if (systemd_supports_mode(mode
, &local_err
)) {
1920 mode_supported
= true;
1921 systemd_suspend(mode
, &local_err
);
1928 error_free(local_err
);
1931 if (pmutils_supports_mode(mode
, &local_err
)) {
1932 mode_supported
= true;
1933 pmutils_suspend(mode
, &local_err
);
1940 error_free(local_err
);
1943 if (linux_sys_state_supports_mode(mode
, &local_err
)) {
1944 mode_supported
= true;
1945 linux_sys_state_suspend(mode
, &local_err
);
1948 if (!mode_supported
) {
1949 error_free(local_err
);
1951 "the requested suspend mode is not supported by the guest");
1953 error_propagate(errp
, local_err
);
1957 void qmp_guest_suspend_disk(Error
**errp
)
1959 guest_suspend(SUSPEND_MODE_DISK
, errp
);
1962 void qmp_guest_suspend_ram(Error
**errp
)
1964 guest_suspend(SUSPEND_MODE_RAM
, errp
);
1967 void qmp_guest_suspend_hybrid(Error
**errp
)
1969 guest_suspend(SUSPEND_MODE_HYBRID
, errp
);
1972 /* Transfer online/offline status between @vcpu and the guest system.
1974 * On input either @errp or *@errp must be NULL.
1976 * In system-to-@vcpu direction, the following @vcpu fields are accessed:
1977 * - R: vcpu->logical_id
1979 * - W: vcpu->can_offline
1981 * In @vcpu-to-system direction, the following @vcpu fields are accessed:
1982 * - R: vcpu->logical_id
1985 * Written members remain unmodified on error.
1987 static void transfer_vcpu(GuestLogicalProcessor
*vcpu
, bool sys2vcpu
,
1988 char *dirpath
, Error
**errp
)
1993 static const char fn
[] = "online";
1995 dirfd
= open(dirpath
, O_RDONLY
| O_DIRECTORY
);
1997 error_setg_errno(errp
, errno
, "open(\"%s\")", dirpath
);
2001 fd
= openat(dirfd
, fn
, sys2vcpu
? O_RDONLY
: O_RDWR
);
2003 if (errno
!= ENOENT
) {
2004 error_setg_errno(errp
, errno
, "open(\"%s/%s\")", dirpath
, fn
);
2005 } else if (sys2vcpu
) {
2006 vcpu
->online
= true;
2007 vcpu
->can_offline
= false;
2008 } else if (!vcpu
->online
) {
2009 error_setg(errp
, "logical processor #%" PRId64
" can't be "
2010 "offlined", vcpu
->logical_id
);
2011 } /* otherwise pretend successful re-onlining */
2013 unsigned char status
;
2015 res
= pread(fd
, &status
, 1, 0);
2017 error_setg_errno(errp
, errno
, "pread(\"%s/%s\")", dirpath
, fn
);
2018 } else if (res
== 0) {
2019 error_setg(errp
, "pread(\"%s/%s\"): unexpected EOF", dirpath
,
2021 } else if (sys2vcpu
) {
2022 vcpu
->online
= (status
!= '0');
2023 vcpu
->can_offline
= true;
2024 } else if (vcpu
->online
!= (status
!= '0')) {
2025 status
= '0' + vcpu
->online
;
2026 if (pwrite(fd
, &status
, 1, 0) == -1) {
2027 error_setg_errno(errp
, errno
, "pwrite(\"%s/%s\")", dirpath
,
2030 } /* otherwise pretend successful re-(on|off)-lining */
2040 GuestLogicalProcessorList
*qmp_guest_get_vcpus(Error
**errp
)
2042 GuestLogicalProcessorList
*head
, **tail
;
2043 const char *cpu_dir
= "/sys/devices/system/cpu";
2045 g_autoptr(GDir
) cpu_gdir
= NULL
;
2046 Error
*local_err
= NULL
;
2050 cpu_gdir
= g_dir_open(cpu_dir
, 0, NULL
);
2052 if (cpu_gdir
== NULL
) {
2053 error_setg_errno(errp
, errno
, "failed to list entries: %s", cpu_dir
);
2057 while (local_err
== NULL
&& (line
= g_dir_read_name(cpu_gdir
)) != NULL
) {
2058 GuestLogicalProcessor
*vcpu
;
2060 if (sscanf(line
, "cpu%" PRId64
, &id
)) {
2061 g_autofree
char *path
= g_strdup_printf("/sys/devices/system/cpu/"
2062 "cpu%" PRId64
"/", id
);
2063 vcpu
= g_malloc0(sizeof *vcpu
);
2064 vcpu
->logical_id
= id
;
2065 vcpu
->has_can_offline
= true; /* lolspeak ftw */
2066 transfer_vcpu(vcpu
, true, path
, &local_err
);
2067 QAPI_LIST_APPEND(tail
, vcpu
);
2071 if (local_err
== NULL
) {
2072 /* there's no guest with zero VCPUs */
2073 g_assert(head
!= NULL
);
2077 qapi_free_GuestLogicalProcessorList(head
);
2078 error_propagate(errp
, local_err
);
2082 int64_t qmp_guest_set_vcpus(GuestLogicalProcessorList
*vcpus
, Error
**errp
)
2085 Error
*local_err
= NULL
;
2088 while (vcpus
!= NULL
) {
2089 char *path
= g_strdup_printf("/sys/devices/system/cpu/cpu%" PRId64
"/",
2090 vcpus
->value
->logical_id
);
2092 transfer_vcpu(vcpus
->value
, false, path
, &local_err
);
2094 if (local_err
!= NULL
) {
2098 vcpus
= vcpus
->next
;
2101 if (local_err
!= NULL
) {
2102 if (processed
== 0) {
2103 error_propagate(errp
, local_err
);
2105 error_free(local_err
);
2111 #endif /* __linux__ */
2113 #if defined(__linux__) || defined(__FreeBSD__)
2114 void qmp_guest_set_user_password(const char *username
,
2115 const char *password
,
2119 Error
*local_err
= NULL
;
2120 char *passwd_path
= NULL
;
2123 int datafd
[2] = { -1, -1 };
2124 char *rawpasswddata
= NULL
;
2125 size_t rawpasswdlen
;
2126 char *chpasswddata
= NULL
;
2129 rawpasswddata
= (char *)qbase64_decode(password
, -1, &rawpasswdlen
, errp
);
2130 if (!rawpasswddata
) {
2133 rawpasswddata
= g_renew(char, rawpasswddata
, rawpasswdlen
+ 1);
2134 rawpasswddata
[rawpasswdlen
] = '\0';
2136 if (strchr(rawpasswddata
, '\n')) {
2137 error_setg(errp
, "forbidden characters in raw password");
2141 if (strchr(username
, '\n') ||
2142 strchr(username
, ':')) {
2143 error_setg(errp
, "forbidden characters in username");
2148 chpasswddata
= g_strdup(rawpasswddata
);
2149 passwd_path
= g_find_program_in_path("pw");
2151 chpasswddata
= g_strdup_printf("%s:%s\n", username
, rawpasswddata
);
2152 passwd_path
= g_find_program_in_path("chpasswd");
2155 chpasswdlen
= strlen(chpasswddata
);
2158 error_setg(errp
, "cannot find 'passwd' program in PATH");
2162 if (!g_unix_open_pipe(datafd
, FD_CLOEXEC
, NULL
)) {
2163 error_setg(errp
, "cannot create pipe FDs");
2173 reopen_fd_to_null(1);
2174 reopen_fd_to_null(2);
2178 h_arg
= (crypted
) ? "-H" : "-h";
2179 execl(passwd_path
, "pw", "usermod", "-n", username
, h_arg
, "0", NULL
);
2182 execl(passwd_path
, "chpasswd", "-e", NULL
);
2184 execl(passwd_path
, "chpasswd", NULL
);
2187 _exit(EXIT_FAILURE
);
2188 } else if (pid
< 0) {
2189 error_setg_errno(errp
, errno
, "failed to create child process");
2195 if (qemu_write_full(datafd
[1], chpasswddata
, chpasswdlen
) != chpasswdlen
) {
2196 error_setg_errno(errp
, errno
, "cannot write new account password");
2202 ga_wait_child(pid
, &status
, &local_err
);
2204 error_propagate(errp
, local_err
);
2208 if (!WIFEXITED(status
)) {
2209 error_setg(errp
, "child process has terminated abnormally");
2213 if (WEXITSTATUS(status
)) {
2214 error_setg(errp
, "child process has failed to set user password");
2219 g_free(chpasswddata
);
2220 g_free(rawpasswddata
);
2221 g_free(passwd_path
);
2222 if (datafd
[0] != -1) {
2225 if (datafd
[1] != -1) {
2229 #else /* __linux__ || __FreeBSD__ */
2230 void qmp_guest_set_user_password(const char *username
,
2231 const char *password
,
2235 error_setg(errp
, QERR_UNSUPPORTED
);
2237 #endif /* __linux__ || __FreeBSD__ */
2240 static void ga_read_sysfs_file(int dirfd
, const char *pathname
, char *buf
,
2241 int size
, Error
**errp
)
2247 fd
= openat(dirfd
, pathname
, O_RDONLY
);
2249 error_setg_errno(errp
, errno
, "open sysfs file \"%s\"", pathname
);
2253 res
= pread(fd
, buf
, size
, 0);
2255 error_setg_errno(errp
, errno
, "pread sysfs file \"%s\"", pathname
);
2256 } else if (res
== 0) {
2257 error_setg(errp
, "pread sysfs file \"%s\": unexpected EOF", pathname
);
2262 static void ga_write_sysfs_file(int dirfd
, const char *pathname
,
2263 const char *buf
, int size
, Error
**errp
)
2268 fd
= openat(dirfd
, pathname
, O_WRONLY
);
2270 error_setg_errno(errp
, errno
, "open sysfs file \"%s\"", pathname
);
2274 if (pwrite(fd
, buf
, size
, 0) == -1) {
2275 error_setg_errno(errp
, errno
, "pwrite sysfs file \"%s\"", pathname
);
2281 /* Transfer online/offline status between @mem_blk and the guest system.
2283 * On input either @errp or *@errp must be NULL.
2285 * In system-to-@mem_blk direction, the following @mem_blk fields are accessed:
2286 * - R: mem_blk->phys_index
2287 * - W: mem_blk->online
2288 * - W: mem_blk->can_offline
2290 * In @mem_blk-to-system direction, the following @mem_blk fields are accessed:
2291 * - R: mem_blk->phys_index
2292 * - R: mem_blk->online
2293 *- R: mem_blk->can_offline
2294 * Written members remain unmodified on error.
2296 static void transfer_memory_block(GuestMemoryBlock
*mem_blk
, bool sys2memblk
,
2297 GuestMemoryBlockResponse
*result
,
2303 Error
*local_err
= NULL
;
2309 error_setg(errp
, "Internal error, 'result' should not be NULL");
2313 dp
= opendir("/sys/devices/system/memory/");
2314 /* if there is no 'memory' directory in sysfs,
2315 * we think this VM does not support online/offline memory block,
2316 * any other solution?
2319 if (errno
== ENOENT
) {
2321 GUEST_MEMORY_BLOCK_RESPONSE_TYPE_OPERATION_NOT_SUPPORTED
;
2328 dirpath
= g_strdup_printf("/sys/devices/system/memory/memory%" PRId64
"/",
2329 mem_blk
->phys_index
);
2330 dirfd
= open(dirpath
, O_RDONLY
| O_DIRECTORY
);
2333 error_setg_errno(errp
, errno
, "open(\"%s\")", dirpath
);
2335 if (errno
== ENOENT
) {
2336 result
->response
= GUEST_MEMORY_BLOCK_RESPONSE_TYPE_NOT_FOUND
;
2339 GUEST_MEMORY_BLOCK_RESPONSE_TYPE_OPERATION_FAILED
;
2347 status
= g_malloc0(10);
2348 ga_read_sysfs_file(dirfd
, "state", status
, 10, &local_err
);
2350 /* treat with sysfs file that not exist in old kernel */
2351 if (errno
== ENOENT
) {
2352 error_free(local_err
);
2354 mem_blk
->online
= true;
2355 mem_blk
->can_offline
= false;
2356 } else if (!mem_blk
->online
) {
2358 GUEST_MEMORY_BLOCK_RESPONSE_TYPE_OPERATION_NOT_SUPPORTED
;
2362 error_propagate(errp
, local_err
);
2364 error_free(local_err
);
2366 GUEST_MEMORY_BLOCK_RESPONSE_TYPE_OPERATION_FAILED
;
2373 char removable
= '0';
2375 mem_blk
->online
= (strncmp(status
, "online", 6) == 0);
2377 ga_read_sysfs_file(dirfd
, "removable", &removable
, 1, &local_err
);
2379 /* if no 'removable' file, it doesn't support offline mem blk */
2380 if (errno
== ENOENT
) {
2381 error_free(local_err
);
2382 mem_blk
->can_offline
= false;
2384 error_propagate(errp
, local_err
);
2387 mem_blk
->can_offline
= (removable
!= '0');
2390 if (mem_blk
->online
!= (strncmp(status
, "online", 6) == 0)) {
2391 const char *new_state
= mem_blk
->online
? "online" : "offline";
2393 ga_write_sysfs_file(dirfd
, "state", new_state
, strlen(new_state
),
2396 error_free(local_err
);
2398 GUEST_MEMORY_BLOCK_RESPONSE_TYPE_OPERATION_FAILED
;
2402 result
->response
= GUEST_MEMORY_BLOCK_RESPONSE_TYPE_SUCCESS
;
2403 result
->has_error_code
= false;
2404 } /* otherwise pretend successful re-(on|off)-lining */
2415 result
->has_error_code
= true;
2416 result
->error_code
= errno
;
2420 GuestMemoryBlockList
*qmp_guest_get_memory_blocks(Error
**errp
)
2422 GuestMemoryBlockList
*head
, **tail
;
2423 Error
*local_err
= NULL
;
2430 dp
= opendir("/sys/devices/system/memory/");
2432 /* it's ok if this happens to be a system that doesn't expose
2433 * memory blocks via sysfs, but otherwise we should report
2436 if (errno
!= ENOENT
) {
2437 error_setg_errno(errp
, errno
, "Can't open directory"
2438 "\"/sys/devices/system/memory/\"");
2443 /* Note: the phys_index of memory block may be discontinuous,
2444 * this is because a memblk is the unit of the Sparse Memory design, which
2445 * allows discontinuous memory ranges (ex. NUMA), so here we should
2446 * traverse the memory block directory.
2448 while ((de
= readdir(dp
)) != NULL
) {
2449 GuestMemoryBlock
*mem_blk
;
2451 if ((strncmp(de
->d_name
, "memory", 6) != 0) ||
2452 !(de
->d_type
& DT_DIR
)) {
2456 mem_blk
= g_malloc0(sizeof *mem_blk
);
2457 /* The d_name is "memoryXXX", phys_index is block id, same as XXX */
2458 mem_blk
->phys_index
= strtoul(&de
->d_name
[6], NULL
, 10);
2459 mem_blk
->has_can_offline
= true; /* lolspeak ftw */
2460 transfer_memory_block(mem_blk
, true, NULL
, &local_err
);
2465 QAPI_LIST_APPEND(tail
, mem_blk
);
2469 if (local_err
== NULL
) {
2470 /* there's no guest with zero memory blocks */
2472 error_setg(errp
, "guest reported zero memory blocks!");
2477 qapi_free_GuestMemoryBlockList(head
);
2478 error_propagate(errp
, local_err
);
2482 GuestMemoryBlockResponseList
*
2483 qmp_guest_set_memory_blocks(GuestMemoryBlockList
*mem_blks
, Error
**errp
)
2485 GuestMemoryBlockResponseList
*head
, **tail
;
2486 Error
*local_err
= NULL
;
2491 while (mem_blks
!= NULL
) {
2492 GuestMemoryBlockResponse
*result
;
2493 GuestMemoryBlock
*current_mem_blk
= mem_blks
->value
;
2495 result
= g_malloc0(sizeof(*result
));
2496 result
->phys_index
= current_mem_blk
->phys_index
;
2497 transfer_memory_block(current_mem_blk
, false, result
, &local_err
);
2498 if (local_err
) { /* should never happen */
2502 QAPI_LIST_APPEND(tail
, result
);
2503 mem_blks
= mem_blks
->next
;
2508 qapi_free_GuestMemoryBlockResponseList(head
);
2509 error_propagate(errp
, local_err
);
2513 GuestMemoryBlockInfo
*qmp_guest_get_memory_block_info(Error
**errp
)
2515 Error
*local_err
= NULL
;
2519 GuestMemoryBlockInfo
*info
;
2521 dirpath
= g_strdup_printf("/sys/devices/system/memory/");
2522 dirfd
= open(dirpath
, O_RDONLY
| O_DIRECTORY
);
2524 error_setg_errno(errp
, errno
, "open(\"%s\")", dirpath
);
2530 buf
= g_malloc0(20);
2531 ga_read_sysfs_file(dirfd
, "block_size_bytes", buf
, 20, &local_err
);
2535 error_propagate(errp
, local_err
);
2539 info
= g_new0(GuestMemoryBlockInfo
, 1);
2540 info
->size
= strtol(buf
, NULL
, 16); /* the unit is bytes */
2547 #define MAX_NAME_LEN 128
2548 static GuestDiskStatsInfoList
*guest_get_diskstats(Error
**errp
)
2551 GuestDiskStatsInfoList
*head
= NULL
, **tail
= &head
;
2552 const char *diskstats
= "/proc/diskstats";
2557 fp
= fopen(diskstats
, "r");
2559 error_setg_errno(errp
, errno
, "open(\"%s\")", diskstats
);
2563 while (getline(&line
, &n
, fp
) != -1) {
2564 g_autofree GuestDiskStatsInfo
*diskstatinfo
= NULL
;
2565 g_autofree GuestDiskStats
*diskstat
= NULL
;
2566 char dev_name
[MAX_NAME_LEN
];
2567 unsigned int ios_pgr
, tot_ticks
, rq_ticks
, wr_ticks
, dc_ticks
, fl_ticks
;
2568 unsigned long rd_ios
, rd_merges_or_rd_sec
, rd_ticks_or_wr_sec
, wr_ios
;
2569 unsigned long wr_merges
, rd_sec_or_wr_ios
, wr_sec
;
2570 unsigned long dc_ios
, dc_merges
, dc_sec
, fl_ios
;
2571 unsigned int major
, minor
;
2574 i
= sscanf(line
, "%u %u %s %lu %lu %lu"
2575 "%lu %lu %lu %lu %u %u %u %u"
2576 "%lu %lu %lu %u %lu %u",
2577 &major
, &minor
, dev_name
,
2578 &rd_ios
, &rd_merges_or_rd_sec
, &rd_sec_or_wr_ios
,
2579 &rd_ticks_or_wr_sec
, &wr_ios
, &wr_merges
, &wr_sec
,
2580 &wr_ticks
, &ios_pgr
, &tot_ticks
, &rq_ticks
,
2581 &dc_ios
, &dc_merges
, &dc_sec
, &dc_ticks
,
2582 &fl_ios
, &fl_ticks
);
2588 diskstatinfo
= g_new0(GuestDiskStatsInfo
, 1);
2589 diskstatinfo
->name
= g_strdup(dev_name
);
2590 diskstatinfo
->major
= major
;
2591 diskstatinfo
->minor
= minor
;
2593 diskstat
= g_new0(GuestDiskStats
, 1);
2595 diskstat
->has_read_ios
= true;
2596 diskstat
->read_ios
= rd_ios
;
2597 diskstat
->has_read_sectors
= true;
2598 diskstat
->read_sectors
= rd_merges_or_rd_sec
;
2599 diskstat
->has_write_ios
= true;
2600 diskstat
->write_ios
= rd_sec_or_wr_ios
;
2601 diskstat
->has_write_sectors
= true;
2602 diskstat
->write_sectors
= rd_ticks_or_wr_sec
;
2605 diskstat
->has_read_ios
= true;
2606 diskstat
->read_ios
= rd_ios
;
2607 diskstat
->has_read_sectors
= true;
2608 diskstat
->read_sectors
= rd_sec_or_wr_ios
;
2609 diskstat
->has_read_merges
= true;
2610 diskstat
->read_merges
= rd_merges_or_rd_sec
;
2611 diskstat
->has_read_ticks
= true;
2612 diskstat
->read_ticks
= rd_ticks_or_wr_sec
;
2613 diskstat
->has_write_ios
= true;
2614 diskstat
->write_ios
= wr_ios
;
2615 diskstat
->has_write_sectors
= true;
2616 diskstat
->write_sectors
= wr_sec
;
2617 diskstat
->has_write_merges
= true;
2618 diskstat
->write_merges
= wr_merges
;
2619 diskstat
->has_write_ticks
= true;
2620 diskstat
->write_ticks
= wr_ticks
;
2621 diskstat
->has_ios_pgr
= true;
2622 diskstat
->ios_pgr
= ios_pgr
;
2623 diskstat
->has_total_ticks
= true;
2624 diskstat
->total_ticks
= tot_ticks
;
2625 diskstat
->has_weight_ticks
= true;
2626 diskstat
->weight_ticks
= rq_ticks
;
2629 diskstat
->has_discard_ios
= true;
2630 diskstat
->discard_ios
= dc_ios
;
2631 diskstat
->has_discard_merges
= true;
2632 diskstat
->discard_merges
= dc_merges
;
2633 diskstat
->has_discard_sectors
= true;
2634 diskstat
->discard_sectors
= dc_sec
;
2635 diskstat
->has_discard_ticks
= true;
2636 diskstat
->discard_ticks
= dc_ticks
;
2639 diskstat
->has_flush_ios
= true;
2640 diskstat
->flush_ios
= fl_ios
;
2641 diskstat
->has_flush_ticks
= true;
2642 diskstat
->flush_ticks
= fl_ticks
;
2645 diskstatinfo
->stats
= g_steal_pointer(&diskstat
);
2646 QAPI_LIST_APPEND(tail
, diskstatinfo
);
2647 diskstatinfo
= NULL
;
2653 g_debug("disk stats reporting available only for Linux");
2658 GuestDiskStatsInfoList
*qmp_guest_get_diskstats(Error
**errp
)
2660 return guest_get_diskstats(errp
);
2663 GuestCpuStatsList
*qmp_guest_get_cpustats(Error
**errp
)
2665 GuestCpuStatsList
*head
= NULL
, **tail
= &head
;
2666 const char *cpustats
= "/proc/stat";
2667 int clk_tck
= sysconf(_SC_CLK_TCK
);
2672 fp
= fopen(cpustats
, "r");
2674 error_setg_errno(errp
, errno
, "open(\"%s\")", cpustats
);
2678 while (getline(&line
, &n
, fp
) != -1) {
2679 GuestCpuStats
*cpustat
= NULL
;
2680 GuestLinuxCpuStats
*linuxcpustat
;
2682 unsigned long user
, system
, idle
, iowait
, irq
, softirq
, steal
, guest
;
2683 unsigned long nice
, guest_nice
;
2686 i
= sscanf(line
, "%s %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu",
2687 name
, &user
, &nice
, &system
, &idle
, &iowait
, &irq
, &softirq
,
2688 &steal
, &guest
, &guest_nice
);
2690 /* drop "cpu 1 2 3 ...", get "cpuX 1 2 3 ..." only */
2691 if ((i
== EOF
) || strncmp(name
, "cpu", 3) || (name
[3] == '\0')) {
2696 slog("Parsing cpu stat from %s failed, see \"man proc\"", cpustats
);
2700 cpustat
= g_new0(GuestCpuStats
, 1);
2701 cpustat
->type
= GUEST_CPU_STATS_TYPE_LINUX
;
2703 linuxcpustat
= &cpustat
->u
.q_linux
;
2704 linuxcpustat
->cpu
= atoi(&name
[3]);
2705 linuxcpustat
->user
= user
* 1000 / clk_tck
;
2706 linuxcpustat
->nice
= nice
* 1000 / clk_tck
;
2707 linuxcpustat
->system
= system
* 1000 / clk_tck
;
2708 linuxcpustat
->idle
= idle
* 1000 / clk_tck
;
2711 linuxcpustat
->has_iowait
= true;
2712 linuxcpustat
->iowait
= iowait
* 1000 / clk_tck
;
2716 linuxcpustat
->has_irq
= true;
2717 linuxcpustat
->irq
= irq
* 1000 / clk_tck
;
2718 linuxcpustat
->has_softirq
= true;
2719 linuxcpustat
->softirq
= softirq
* 1000 / clk_tck
;
2723 linuxcpustat
->has_steal
= true;
2724 linuxcpustat
->steal
= steal
* 1000 / clk_tck
;
2728 linuxcpustat
->has_guest
= true;
2729 linuxcpustat
->guest
= guest
* 1000 / clk_tck
;
2733 linuxcpustat
->has_guest
= true;
2734 linuxcpustat
->guest
= guest
* 1000 / clk_tck
;
2735 linuxcpustat
->has_guestnice
= true;
2736 linuxcpustat
->guestnice
= guest_nice
* 1000 / clk_tck
;
2739 QAPI_LIST_APPEND(tail
, cpustat
);
2747 #else /* defined(__linux__) */
2749 void qmp_guest_suspend_disk(Error
**errp
)
2751 error_setg(errp
, QERR_UNSUPPORTED
);
2754 void qmp_guest_suspend_ram(Error
**errp
)
2756 error_setg(errp
, QERR_UNSUPPORTED
);
2759 void qmp_guest_suspend_hybrid(Error
**errp
)
2761 error_setg(errp
, QERR_UNSUPPORTED
);
2764 GuestLogicalProcessorList
*qmp_guest_get_vcpus(Error
**errp
)
2766 error_setg(errp
, QERR_UNSUPPORTED
);
2770 int64_t qmp_guest_set_vcpus(GuestLogicalProcessorList
*vcpus
, Error
**errp
)
2772 error_setg(errp
, QERR_UNSUPPORTED
);
2776 GuestMemoryBlockList
*qmp_guest_get_memory_blocks(Error
**errp
)
2778 error_setg(errp
, QERR_UNSUPPORTED
);
2782 GuestMemoryBlockResponseList
*
2783 qmp_guest_set_memory_blocks(GuestMemoryBlockList
*mem_blks
, Error
**errp
)
2785 error_setg(errp
, QERR_UNSUPPORTED
);
2789 GuestMemoryBlockInfo
*qmp_guest_get_memory_block_info(Error
**errp
)
2791 error_setg(errp
, QERR_UNSUPPORTED
);
2797 #ifdef HAVE_GETIFADDRS
2798 static GuestNetworkInterface
*
2799 guest_find_interface(GuestNetworkInterfaceList
*head
,
2802 for (; head
; head
= head
->next
) {
2803 if (strcmp(head
->value
->name
, name
) == 0) {
2811 static int guest_get_network_stats(const char *name
,
2812 GuestNetworkInterfaceStat
*stats
)
2816 char const *devinfo
= "/proc/net/dev";
2818 char *line
= NULL
, *colon
;
2820 fp
= fopen(devinfo
, "r");
2822 g_debug("failed to open network stats %s: %s", devinfo
,
2826 name_len
= strlen(name
);
2827 while (getline(&line
, &n
, fp
) != -1) {
2830 long long rx_packets
;
2832 long long rx_dropped
;
2834 long long tx_packets
;
2836 long long tx_dropped
;
2838 trim_line
= g_strchug(line
);
2839 if (trim_line
[0] == '\0') {
2842 colon
= strchr(trim_line
, ':');
2846 if (colon
- name_len
== trim_line
&&
2847 strncmp(trim_line
, name
, name_len
) == 0) {
2848 if (sscanf(colon
+ 1,
2849 "%lld %lld %lld %lld %lld %lld %lld %lld %lld %lld %lld %lld %lld %lld %lld %lld",
2850 &rx_bytes
, &rx_packets
, &rx_errs
, &rx_dropped
,
2851 &dummy
, &dummy
, &dummy
, &dummy
,
2852 &tx_bytes
, &tx_packets
, &tx_errs
, &tx_dropped
,
2853 &dummy
, &dummy
, &dummy
, &dummy
) != 16) {
2856 stats
->rx_bytes
= rx_bytes
;
2857 stats
->rx_packets
= rx_packets
;
2858 stats
->rx_errs
= rx_errs
;
2859 stats
->rx_dropped
= rx_dropped
;
2860 stats
->tx_bytes
= tx_bytes
;
2861 stats
->tx_packets
= tx_packets
;
2862 stats
->tx_errs
= tx_errs
;
2863 stats
->tx_dropped
= tx_dropped
;
2871 g_debug("/proc/net/dev: Interface '%s' not found", name
);
2872 #else /* !CONFIG_LINUX */
2873 g_debug("Network stats reporting available only for Linux");
2874 #endif /* !CONFIG_LINUX */
2880 * Fill "buf" with MAC address by ifaddrs. Pointer buf must point to a
2881 * buffer with ETHER_ADDR_LEN length at least.
2883 * Returns false in case of an error, otherwise true. "obtained" argument
2884 * is true if a MAC address was obtained successful, otherwise false.
2886 bool guest_get_hw_addr(struct ifaddrs
*ifa
, unsigned char *buf
,
2887 bool *obtained
, Error
**errp
)
2894 /* we haven't obtained HW address yet */
2895 sock
= socket(PF_INET
, SOCK_STREAM
, 0);
2897 error_setg_errno(errp
, errno
, "failed to create socket");
2901 memset(&ifr
, 0, sizeof(ifr
));
2902 pstrcpy(ifr
.ifr_name
, IF_NAMESIZE
, ifa
->ifa_name
);
2903 if (ioctl(sock
, SIOCGIFHWADDR
, &ifr
) == -1) {
2905 * We can't get the hw addr of this interface, but that's not a
2908 if (errno
== EADDRNOTAVAIL
) {
2909 /* The interface doesn't have a hw addr (e.g. loopback). */
2910 g_debug("failed to get MAC address of %s: %s",
2911 ifa
->ifa_name
, strerror(errno
));
2913 g_warning("failed to get MAC address of %s: %s",
2914 ifa
->ifa_name
, strerror(errno
));
2917 #ifdef CONFIG_SOLARIS
2918 memcpy(buf
, &ifr
.ifr_addr
.sa_data
, ETHER_ADDR_LEN
);
2920 memcpy(buf
, &ifr
.ifr_hwaddr
.sa_data
, ETHER_ADDR_LEN
);
2927 #endif /* CONFIG_BSD */
2930 * Build information about guest interfaces
2932 GuestNetworkInterfaceList
*qmp_guest_network_get_interfaces(Error
**errp
)
2934 GuestNetworkInterfaceList
*head
= NULL
, **tail
= &head
;
2935 struct ifaddrs
*ifap
, *ifa
;
2937 if (getifaddrs(&ifap
) < 0) {
2938 error_setg_errno(errp
, errno
, "getifaddrs failed");
2942 for (ifa
= ifap
; ifa
; ifa
= ifa
->ifa_next
) {
2943 GuestNetworkInterface
*info
;
2944 GuestIpAddressList
**address_tail
;
2945 GuestIpAddress
*address_item
= NULL
;
2946 GuestNetworkInterfaceStat
*interface_stat
= NULL
;
2947 char addr4
[INET_ADDRSTRLEN
];
2948 char addr6
[INET6_ADDRSTRLEN
];
2949 unsigned char mac_addr
[ETHER_ADDR_LEN
];
2953 g_debug("Processing %s interface", ifa
->ifa_name
);
2955 info
= guest_find_interface(head
, ifa
->ifa_name
);
2958 info
= g_malloc0(sizeof(*info
));
2959 info
->name
= g_strdup(ifa
->ifa_name
);
2961 QAPI_LIST_APPEND(tail
, info
);
2964 if (!info
->hardware_address
) {
2965 if (!guest_get_hw_addr(ifa
, mac_addr
, &obtained
, errp
)) {
2969 info
->hardware_address
=
2970 g_strdup_printf("%02x:%02x:%02x:%02x:%02x:%02x",
2971 (int) mac_addr
[0], (int) mac_addr
[1],
2972 (int) mac_addr
[2], (int) mac_addr
[3],
2973 (int) mac_addr
[4], (int) mac_addr
[5]);
2977 if (ifa
->ifa_addr
&&
2978 ifa
->ifa_addr
->sa_family
== AF_INET
) {
2979 /* interface with IPv4 address */
2980 p
= &((struct sockaddr_in
*)ifa
->ifa_addr
)->sin_addr
;
2981 if (!inet_ntop(AF_INET
, p
, addr4
, sizeof(addr4
))) {
2982 error_setg_errno(errp
, errno
, "inet_ntop failed");
2986 address_item
= g_malloc0(sizeof(*address_item
));
2987 address_item
->ip_address
= g_strdup(addr4
);
2988 address_item
->ip_address_type
= GUEST_IP_ADDRESS_TYPE_IPV4
;
2990 if (ifa
->ifa_netmask
) {
2991 /* Count the number of set bits in netmask.
2992 * This is safe as '1' and '0' cannot be shuffled in netmask. */
2993 p
= &((struct sockaddr_in
*)ifa
->ifa_netmask
)->sin_addr
;
2994 address_item
->prefix
= ctpop32(((uint32_t *) p
)[0]);
2996 } else if (ifa
->ifa_addr
&&
2997 ifa
->ifa_addr
->sa_family
== AF_INET6
) {
2998 /* interface with IPv6 address */
2999 p
= &((struct sockaddr_in6
*)ifa
->ifa_addr
)->sin6_addr
;
3000 if (!inet_ntop(AF_INET6
, p
, addr6
, sizeof(addr6
))) {
3001 error_setg_errno(errp
, errno
, "inet_ntop failed");
3005 address_item
= g_malloc0(sizeof(*address_item
));
3006 address_item
->ip_address
= g_strdup(addr6
);
3007 address_item
->ip_address_type
= GUEST_IP_ADDRESS_TYPE_IPV6
;
3009 if (ifa
->ifa_netmask
) {
3010 /* Count the number of set bits in netmask.
3011 * This is safe as '1' and '0' cannot be shuffled in netmask. */
3012 p
= &((struct sockaddr_in6
*)ifa
->ifa_netmask
)->sin6_addr
;
3013 address_item
->prefix
=
3014 ctpop32(((uint32_t *) p
)[0]) +
3015 ctpop32(((uint32_t *) p
)[1]) +
3016 ctpop32(((uint32_t *) p
)[2]) +
3017 ctpop32(((uint32_t *) p
)[3]);
3021 if (!address_item
) {
3025 address_tail
= &info
->ip_addresses
;
3026 while (*address_tail
) {
3027 address_tail
= &(*address_tail
)->next
;
3029 QAPI_LIST_APPEND(address_tail
, address_item
);
3031 info
->has_ip_addresses
= true;
3033 if (!info
->statistics
) {
3034 interface_stat
= g_malloc0(sizeof(*interface_stat
));
3035 if (guest_get_network_stats(info
->name
, interface_stat
) == -1) {
3036 g_free(interface_stat
);
3038 info
->statistics
= interface_stat
;
3048 qapi_free_GuestNetworkInterfaceList(head
);
3054 GuestNetworkInterfaceList
*qmp_guest_network_get_interfaces(Error
**errp
)
3056 error_setg(errp
, QERR_UNSUPPORTED
);
3060 #endif /* HAVE_GETIFADDRS */
3062 #if !defined(CONFIG_FSFREEZE)
3064 GuestFilesystemInfoList
*qmp_guest_get_fsinfo(Error
**errp
)
3066 error_setg(errp
, QERR_UNSUPPORTED
);
3070 GuestFsfreezeStatus
qmp_guest_fsfreeze_status(Error
**errp
)
3072 error_setg(errp
, QERR_UNSUPPORTED
);
3077 int64_t qmp_guest_fsfreeze_freeze(Error
**errp
)
3079 error_setg(errp
, QERR_UNSUPPORTED
);
3084 int64_t qmp_guest_fsfreeze_freeze_list(bool has_mountpoints
,
3085 strList
*mountpoints
,
3088 error_setg(errp
, QERR_UNSUPPORTED
);
3093 int64_t qmp_guest_fsfreeze_thaw(Error
**errp
)
3095 error_setg(errp
, QERR_UNSUPPORTED
);
3100 GuestDiskInfoList
*qmp_guest_get_disks(Error
**errp
)
3102 error_setg(errp
, QERR_UNSUPPORTED
);
3106 GuestDiskStatsInfoList
*qmp_guest_get_diskstats(Error
**errp
)
3108 error_setg(errp
, QERR_UNSUPPORTED
);
3112 GuestCpuStatsList
*qmp_guest_get_cpustats(Error
**errp
)
3114 error_setg(errp
, QERR_UNSUPPORTED
);
3118 #endif /* CONFIG_FSFREEZE */
3120 #if !defined(CONFIG_FSTRIM)
3121 GuestFilesystemTrimResponse
*
3122 qmp_guest_fstrim(bool has_minimum
, int64_t minimum
, Error
**errp
)
3124 error_setg(errp
, QERR_UNSUPPORTED
);
3129 /* add unsupported commands to the list of blocked RPCs */
3130 GList
*ga_command_init_blockedrpcs(GList
*blockedrpcs
)
3132 #if !defined(__linux__)
3134 const char *list
[] = {
3135 "guest-suspend-disk", "guest-suspend-ram",
3136 "guest-suspend-hybrid", "guest-get-vcpus", "guest-set-vcpus",
3137 "guest-get-memory-blocks", "guest-set-memory-blocks",
3138 "guest-get-memory-block-size", "guest-get-memory-block-info",
3140 char **p
= (char **)list
;
3143 blockedrpcs
= g_list_append(blockedrpcs
, g_strdup(*p
++));
3148 #if !defined(HAVE_GETIFADDRS)
3149 blockedrpcs
= g_list_append(blockedrpcs
,
3150 g_strdup("guest-network-get-interfaces"));
3153 #if !defined(CONFIG_FSFREEZE)
3155 const char *list
[] = {
3156 "guest-get-fsinfo", "guest-fsfreeze-status",
3157 "guest-fsfreeze-freeze", "guest-fsfreeze-freeze-list",
3158 "guest-fsfreeze-thaw", "guest-get-fsinfo",
3159 "guest-get-disks", NULL
};
3160 char **p
= (char **)list
;
3163 blockedrpcs
= g_list_append(blockedrpcs
, g_strdup(*p
++));
3168 #if !defined(CONFIG_FSTRIM)
3169 blockedrpcs
= g_list_append(blockedrpcs
, g_strdup("guest-fstrim"));
3172 blockedrpcs
= g_list_append(blockedrpcs
, g_strdup("guest-get-devices"));
3177 /* register init/cleanup routines for stateful command groups */
3178 void ga_command_state_init(GAState
*s
, GACommandState
*cs
)
3180 #if defined(CONFIG_FSFREEZE)
3181 ga_command_state_add(cs
, NULL
, guest_fsfreeze_cleanup
);
3187 #define QGA_MICRO_SECOND_TO_SECOND 1000000
3189 static double ga_get_login_time(struct utmpx
*user_info
)
3191 double seconds
= (double)user_info
->ut_tv
.tv_sec
;
3192 double useconds
= (double)user_info
->ut_tv
.tv_usec
;
3193 useconds
/= QGA_MICRO_SECOND_TO_SECOND
;
3194 return seconds
+ useconds
;
3197 GuestUserList
*qmp_guest_get_users(Error
**errp
)
3199 GHashTable
*cache
= NULL
;
3200 GuestUserList
*head
= NULL
, **tail
= &head
;
3201 struct utmpx
*user_info
= NULL
;
3202 gpointer value
= NULL
;
3203 GuestUser
*user
= NULL
;
3204 double login_time
= 0;
3206 cache
= g_hash_table_new(g_str_hash
, g_str_equal
);
3210 user_info
= getutxent();
3211 if (user_info
== NULL
) {
3213 } else if (user_info
->ut_type
!= USER_PROCESS
) {
3215 } else if (g_hash_table_contains(cache
, user_info
->ut_user
)) {
3216 value
= g_hash_table_lookup(cache
, user_info
->ut_user
);
3217 user
= (GuestUser
*)value
;
3218 login_time
= ga_get_login_time(user_info
);
3219 /* We're ensuring the earliest login time to be sent */
3220 if (login_time
< user
->login_time
) {
3221 user
->login_time
= login_time
;
3226 user
= g_new0(GuestUser
, 1);
3227 user
->user
= g_strdup(user_info
->ut_user
);
3228 user
->login_time
= ga_get_login_time(user_info
);
3230 g_hash_table_insert(cache
, user
->user
, user
);
3232 QAPI_LIST_APPEND(tail
, user
);
3235 g_hash_table_destroy(cache
);
3241 GuestUserList
*qmp_guest_get_users(Error
**errp
)
3243 error_setg(errp
, QERR_UNSUPPORTED
);
3249 /* Replace escaped special characters with theire real values. The replacement
3250 * is done in place -- returned value is in the original string.
3252 static void ga_osrelease_replace_special(gchar
*value
)
3254 gchar
*p
, *p2
, quote
;
3256 /* Trim the string at first space or semicolon if it is not enclosed in
3257 * single or double quotes. */
3258 if ((value
[0] != '"') || (value
[0] == '\'')) {
3259 p
= strchr(value
, ' ');
3263 p
= strchr(value
, ';');
3284 /* Keep literal backslash followed by whatever is there */
3288 } else if (*p
== quote
) {
3296 static GKeyFile
*ga_parse_osrelease(const char *fname
)
3298 gchar
*content
= NULL
;
3299 gchar
*content2
= NULL
;
3301 GKeyFile
*keys
= g_key_file_new();
3302 const char *group
= "[os-release]\n";
3304 if (!g_file_get_contents(fname
, &content
, NULL
, &err
)) {
3305 slog("failed to read '%s', error: %s", fname
, err
->message
);
3309 if (!g_utf8_validate(content
, -1, NULL
)) {
3310 slog("file is not utf-8 encoded: %s", fname
);
3313 content2
= g_strdup_printf("%s%s", group
, content
);
3315 if (!g_key_file_load_from_data(keys
, content2
, -1, G_KEY_FILE_NONE
,
3317 slog("failed to parse file '%s', error: %s", fname
, err
->message
);
3329 g_key_file_free(keys
);
3333 GuestOSInfo
*qmp_guest_get_osinfo(Error
**errp
)
3335 GuestOSInfo
*info
= NULL
;
3336 struct utsname kinfo
;
3337 GKeyFile
*osrelease
= NULL
;
3338 const char *qga_os_release
= g_getenv("QGA_OS_RELEASE");
3340 info
= g_new0(GuestOSInfo
, 1);
3342 if (uname(&kinfo
) != 0) {
3343 error_setg_errno(errp
, errno
, "uname failed");
3345 info
->kernel_version
= g_strdup(kinfo
.version
);
3346 info
->kernel_release
= g_strdup(kinfo
.release
);
3347 info
->machine
= g_strdup(kinfo
.machine
);
3350 if (qga_os_release
!= NULL
) {
3351 osrelease
= ga_parse_osrelease(qga_os_release
);
3353 osrelease
= ga_parse_osrelease("/etc/os-release");
3354 if (osrelease
== NULL
) {
3355 osrelease
= ga_parse_osrelease("/usr/lib/os-release");
3359 if (osrelease
!= NULL
) {
3362 #define GET_FIELD(field, osfield) do { \
3363 value = g_key_file_get_value(osrelease, "os-release", osfield, NULL); \
3364 if (value != NULL) { \
3365 ga_osrelease_replace_special(value); \
3366 info->field = value; \
3369 GET_FIELD(id
, "ID");
3370 GET_FIELD(name
, "NAME");
3371 GET_FIELD(pretty_name
, "PRETTY_NAME");
3372 GET_FIELD(version
, "VERSION");
3373 GET_FIELD(version_id
, "VERSION_ID");
3374 GET_FIELD(variant
, "VARIANT");
3375 GET_FIELD(variant_id
, "VARIANT_ID");
3378 g_key_file_free(osrelease
);
3384 GuestDeviceInfoList
*qmp_guest_get_devices(Error
**errp
)
3386 error_setg(errp
, QERR_UNSUPPORTED
);
3391 #ifndef HOST_NAME_MAX
3392 # ifdef _POSIX_HOST_NAME_MAX
3393 # define HOST_NAME_MAX _POSIX_HOST_NAME_MAX
3395 # define HOST_NAME_MAX 255
3399 char *qga_get_host_name(Error
**errp
)
3402 g_autofree
char *hostname
= NULL
;
3404 #ifdef _SC_HOST_NAME_MAX
3405 len
= sysconf(_SC_HOST_NAME_MAX
);
3406 #endif /* _SC_HOST_NAME_MAX */
3409 len
= HOST_NAME_MAX
;
3412 /* Unfortunately, gethostname() below does not guarantee a
3413 * NULL terminated string. Therefore, allocate one byte more
3415 hostname
= g_new0(char, len
+ 1);
3417 if (gethostname(hostname
, len
) < 0) {
3418 error_setg_errno(errp
, errno
,
3419 "cannot get hostname");
3423 return g_steal_pointer(&hostname
);