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 "qemu-common.h"
20 #include "guest-agent-core.h"
21 #include "qga-qapi-commands.h"
22 #include "qapi/error.h"
23 #include "qapi/qmp/qerror.h"
24 #include "qemu/queue.h"
25 #include "qemu/host-utils.h"
26 #include "qemu/sockets.h"
27 #include "qemu/base64.h"
28 #include "qemu/cutils.h"
34 #ifndef CONFIG_HAS_ENVIRON
36 #include <crt_externs.h>
37 #define environ (*_NSGetEnviron())
39 extern char **environ
;
43 #if defined(__linux__)
47 #include <arpa/inet.h>
48 #include <sys/socket.h>
50 #include <sys/statvfs.h>
57 #define CONFIG_FSFREEZE
64 static void ga_wait_child(pid_t pid
, int *status
, Error
**errp
)
71 rpid
= waitpid(pid
, status
, 0);
72 } while (rpid
== -1 && errno
== EINTR
);
75 error_setg_errno(errp
, errno
, "failed to wait for child (pid: %d)",
80 g_assert(rpid
== pid
);
83 void qmp_guest_shutdown(bool has_mode
, const char *mode
, Error
**errp
)
85 const char *shutdown_flag
;
86 Error
*local_err
= NULL
;
90 slog("guest-shutdown called, mode: %s", mode
);
91 if (!has_mode
|| strcmp(mode
, "powerdown") == 0) {
93 } else if (strcmp(mode
, "halt") == 0) {
95 } else if (strcmp(mode
, "reboot") == 0) {
99 "mode is invalid (valid values are: halt|powerdown|reboot");
105 /* child, start the shutdown */
107 reopen_fd_to_null(0);
108 reopen_fd_to_null(1);
109 reopen_fd_to_null(2);
111 execle("/sbin/shutdown", "shutdown", "-h", shutdown_flag
, "+0",
112 "hypervisor initiated shutdown", (char*)NULL
, environ
);
114 } else if (pid
< 0) {
115 error_setg_errno(errp
, errno
, "failed to create child process");
119 ga_wait_child(pid
, &status
, &local_err
);
121 error_propagate(errp
, local_err
);
125 if (!WIFEXITED(status
)) {
126 error_setg(errp
, "child process has terminated abnormally");
130 if (WEXITSTATUS(status
)) {
131 error_setg(errp
, "child process has failed to shutdown");
138 int64_t qmp_guest_get_time(Error
**errp
)
143 ret
= qemu_gettimeofday(&tq
);
145 error_setg_errno(errp
, errno
, "Failed to get time");
149 return tq
.tv_sec
* 1000000000LL + tq
.tv_usec
* 1000;
152 void qmp_guest_set_time(bool has_time
, int64_t time_ns
, Error
**errp
)
157 Error
*local_err
= NULL
;
159 static const char hwclock_path
[] = "/sbin/hwclock";
160 static int hwclock_available
= -1;
162 if (hwclock_available
< 0) {
163 hwclock_available
= (access(hwclock_path
, X_OK
) == 0);
166 if (!hwclock_available
) {
167 error_setg(errp
, QERR_UNSUPPORTED
);
171 /* If user has passed a time, validate and set it. */
175 /* year-2038 will overflow in case time_t is 32bit */
176 if (time_ns
/ 1000000000 != (time_t)(time_ns
/ 1000000000)) {
177 error_setg(errp
, "Time %" PRId64
" is too large", time_ns
);
181 tv
.tv_sec
= time_ns
/ 1000000000;
182 tv
.tv_usec
= (time_ns
% 1000000000) / 1000;
183 g_date_set_time_t(&date
, tv
.tv_sec
);
184 if (date
.year
< 1970 || date
.year
>= 2070) {
185 error_setg_errno(errp
, errno
, "Invalid time");
189 ret
= settimeofday(&tv
, NULL
);
191 error_setg_errno(errp
, errno
, "Failed to set time to guest");
196 /* Now, if user has passed a time to set and the system time is set, we
197 * just need to synchronize the hardware clock. However, if no time was
198 * passed, user is requesting the opposite: set the system time from the
199 * hardware clock (RTC). */
203 reopen_fd_to_null(0);
204 reopen_fd_to_null(1);
205 reopen_fd_to_null(2);
207 /* Use '/sbin/hwclock -w' to set RTC from the system time,
208 * or '/sbin/hwclock -s' to set the system time from RTC. */
209 execle(hwclock_path
, "hwclock", has_time
? "-w" : "-s",
212 } else if (pid
< 0) {
213 error_setg_errno(errp
, errno
, "failed to create child process");
217 ga_wait_child(pid
, &status
, &local_err
);
219 error_propagate(errp
, local_err
);
223 if (!WIFEXITED(status
)) {
224 error_setg(errp
, "child process has terminated abnormally");
228 if (WEXITSTATUS(status
)) {
229 error_setg(errp
, "hwclock failed to set hardware clock to system time");
240 typedef struct GuestFileHandle
{
244 QTAILQ_ENTRY(GuestFileHandle
) next
;
248 QTAILQ_HEAD(, GuestFileHandle
) filehandles
;
249 } guest_file_state
= {
250 .filehandles
= QTAILQ_HEAD_INITIALIZER(guest_file_state
.filehandles
),
253 static int64_t guest_file_handle_add(FILE *fh
, Error
**errp
)
255 GuestFileHandle
*gfh
;
258 handle
= ga_get_fd_handle(ga_state
, errp
);
263 gfh
= g_new0(GuestFileHandle
, 1);
266 QTAILQ_INSERT_TAIL(&guest_file_state
.filehandles
, gfh
, next
);
271 static GuestFileHandle
*guest_file_handle_find(int64_t id
, Error
**errp
)
273 GuestFileHandle
*gfh
;
275 QTAILQ_FOREACH(gfh
, &guest_file_state
.filehandles
, next
)
282 error_setg(errp
, "handle '%" PRId64
"' has not been found", id
);
286 typedef const char * const ccpc
;
292 /* http://pubs.opengroup.org/onlinepubs/9699919799/functions/fopen.html */
293 static const struct {
296 } guest_file_open_modes
[] = {
297 { (ccpc
[]){ "r", NULL
}, O_RDONLY
},
298 { (ccpc
[]){ "rb", NULL
}, O_RDONLY
| O_BINARY
},
299 { (ccpc
[]){ "w", NULL
}, O_WRONLY
| O_CREAT
| O_TRUNC
},
300 { (ccpc
[]){ "wb", NULL
}, O_WRONLY
| O_CREAT
| O_TRUNC
| O_BINARY
},
301 { (ccpc
[]){ "a", NULL
}, O_WRONLY
| O_CREAT
| O_APPEND
},
302 { (ccpc
[]){ "ab", NULL
}, O_WRONLY
| O_CREAT
| O_APPEND
| O_BINARY
},
303 { (ccpc
[]){ "r+", NULL
}, O_RDWR
},
304 { (ccpc
[]){ "rb+", "r+b", NULL
}, O_RDWR
| O_BINARY
},
305 { (ccpc
[]){ "w+", NULL
}, O_RDWR
| O_CREAT
| O_TRUNC
},
306 { (ccpc
[]){ "wb+", "w+b", NULL
}, O_RDWR
| O_CREAT
| O_TRUNC
| O_BINARY
},
307 { (ccpc
[]){ "a+", NULL
}, O_RDWR
| O_CREAT
| O_APPEND
},
308 { (ccpc
[]){ "ab+", "a+b", NULL
}, O_RDWR
| O_CREAT
| O_APPEND
| O_BINARY
}
312 find_open_flag(const char *mode_str
, Error
**errp
)
316 for (mode
= 0; mode
< ARRAY_SIZE(guest_file_open_modes
); ++mode
) {
319 form
= guest_file_open_modes
[mode
].forms
;
320 while (*form
!= NULL
&& strcmp(*form
, mode_str
) != 0) {
328 if (mode
== ARRAY_SIZE(guest_file_open_modes
)) {
329 error_setg(errp
, "invalid file open mode '%s'", mode_str
);
332 return guest_file_open_modes
[mode
].oflag_base
| O_NOCTTY
| O_NONBLOCK
;
335 #define DEFAULT_NEW_FILE_MODE (S_IRUSR | S_IWUSR | \
336 S_IRGRP | S_IWGRP | \
340 safe_open_or_create(const char *path
, const char *mode
, Error
**errp
)
342 Error
*local_err
= NULL
;
345 oflag
= find_open_flag(mode
, &local_err
);
346 if (local_err
== NULL
) {
349 /* If the caller wants / allows creation of a new file, we implement it
350 * with a two step process: open() + (open() / fchmod()).
352 * First we insist on creating the file exclusively as a new file. If
353 * that succeeds, we're free to set any file-mode bits on it. (The
354 * motivation is that we want to set those file-mode bits independently
355 * of the current umask.)
357 * If the exclusive creation fails because the file already exists
358 * (EEXIST is not possible for any other reason), we just attempt to
359 * open the file, but in this case we won't be allowed to change the
360 * file-mode bits on the preexistent file.
362 * The pathname should never disappear between the two open()s in
363 * practice. If it happens, then someone very likely tried to race us.
364 * In this case just go ahead and report the ENOENT from the second
365 * open() to the caller.
367 * If the caller wants to open a preexistent file, then the first
368 * open() is decisive and its third argument is ignored, and the second
369 * open() and the fchmod() are never called.
371 fd
= open(path
, oflag
| ((oflag
& O_CREAT
) ? O_EXCL
: 0), 0);
372 if (fd
== -1 && errno
== EEXIST
) {
373 oflag
&= ~(unsigned)O_CREAT
;
374 fd
= open(path
, oflag
);
378 error_setg_errno(&local_err
, errno
, "failed to open file '%s' "
379 "(mode: '%s')", path
, mode
);
381 qemu_set_cloexec(fd
);
383 if ((oflag
& O_CREAT
) && fchmod(fd
, DEFAULT_NEW_FILE_MODE
) == -1) {
384 error_setg_errno(&local_err
, errno
, "failed to set permission "
385 "0%03o on new file '%s' (mode: '%s')",
386 (unsigned)DEFAULT_NEW_FILE_MODE
, path
, mode
);
390 f
= fdopen(fd
, mode
);
392 error_setg_errno(&local_err
, errno
, "failed to associate "
393 "stdio stream with file descriptor %d, "
394 "file '%s' (mode: '%s')", fd
, path
, mode
);
401 if (oflag
& O_CREAT
) {
407 error_propagate(errp
, local_err
);
411 int64_t qmp_guest_file_open(const char *path
, bool has_mode
, const char *mode
,
415 Error
*local_err
= NULL
;
421 slog("guest-file-open called, filepath: %s, mode: %s", path
, mode
);
422 fh
= safe_open_or_create(path
, mode
, &local_err
);
423 if (local_err
!= NULL
) {
424 error_propagate(errp
, local_err
);
428 /* set fd non-blocking to avoid common use cases (like reading from a
429 * named pipe) from hanging the agent
431 qemu_set_nonblock(fileno(fh
));
433 handle
= guest_file_handle_add(fh
, errp
);
439 slog("guest-file-open, handle: %" PRId64
, handle
);
443 void qmp_guest_file_close(int64_t handle
, Error
**errp
)
445 GuestFileHandle
*gfh
= guest_file_handle_find(handle
, errp
);
448 slog("guest-file-close called, handle: %" PRId64
, handle
);
453 ret
= fclose(gfh
->fh
);
455 error_setg_errno(errp
, errno
, "failed to close handle");
459 QTAILQ_REMOVE(&guest_file_state
.filehandles
, gfh
, next
);
463 struct GuestFileRead
*qmp_guest_file_read(int64_t handle
, bool has_count
,
464 int64_t count
, Error
**errp
)
466 GuestFileHandle
*gfh
= guest_file_handle_find(handle
, errp
);
467 GuestFileRead
*read_data
= NULL
;
477 count
= QGA_READ_COUNT_DEFAULT
;
478 } else if (count
< 0 || count
>= UINT32_MAX
) {
479 error_setg(errp
, "value '%" PRId64
"' is invalid for argument count",
486 /* explicitly flush when switching from writing to reading */
487 if (gfh
->state
== RW_STATE_WRITING
) {
488 int ret
= fflush(fh
);
490 error_setg_errno(errp
, errno
, "failed to flush file");
493 gfh
->state
= RW_STATE_NEW
;
496 buf
= g_malloc0(count
+1);
497 read_count
= fread(buf
, 1, count
, fh
);
499 error_setg_errno(errp
, errno
, "failed to read file");
500 slog("guest-file-read failed, handle: %" PRId64
, handle
);
503 read_data
= g_new0(GuestFileRead
, 1);
504 read_data
->count
= read_count
;
505 read_data
->eof
= feof(fh
);
507 read_data
->buf_b64
= g_base64_encode(buf
, read_count
);
509 gfh
->state
= RW_STATE_READING
;
517 GuestFileWrite
*qmp_guest_file_write(int64_t handle
, const char *buf_b64
,
518 bool has_count
, int64_t count
,
521 GuestFileWrite
*write_data
= NULL
;
525 GuestFileHandle
*gfh
= guest_file_handle_find(handle
, errp
);
534 if (gfh
->state
== RW_STATE_READING
) {
535 int ret
= fseek(fh
, 0, SEEK_CUR
);
537 error_setg_errno(errp
, errno
, "failed to seek file");
540 gfh
->state
= RW_STATE_NEW
;
543 buf
= qbase64_decode(buf_b64
, -1, &buf_len
, errp
);
550 } else if (count
< 0 || count
> buf_len
) {
551 error_setg(errp
, "value '%" PRId64
"' is invalid for argument count",
557 write_count
= fwrite(buf
, 1, count
, fh
);
559 error_setg_errno(errp
, errno
, "failed to write to file");
560 slog("guest-file-write failed, handle: %" PRId64
, handle
);
562 write_data
= g_new0(GuestFileWrite
, 1);
563 write_data
->count
= write_count
;
564 write_data
->eof
= feof(fh
);
565 gfh
->state
= RW_STATE_WRITING
;
573 struct GuestFileSeek
*qmp_guest_file_seek(int64_t handle
, int64_t offset
,
574 GuestFileWhence
*whence_code
,
577 GuestFileHandle
*gfh
= guest_file_handle_find(handle
, errp
);
578 GuestFileSeek
*seek_data
= NULL
;
588 /* We stupidly exposed 'whence':'int' in our qapi */
589 whence
= ga_parse_whence(whence_code
, &err
);
591 error_propagate(errp
, err
);
596 ret
= fseek(fh
, offset
, whence
);
598 error_setg_errno(errp
, errno
, "failed to seek file");
599 if (errno
== ESPIPE
) {
600 /* file is non-seekable, stdio shouldn't be buffering anyways */
601 gfh
->state
= RW_STATE_NEW
;
604 seek_data
= g_new0(GuestFileSeek
, 1);
605 seek_data
->position
= ftell(fh
);
606 seek_data
->eof
= feof(fh
);
607 gfh
->state
= RW_STATE_NEW
;
614 void qmp_guest_file_flush(int64_t handle
, Error
**errp
)
616 GuestFileHandle
*gfh
= guest_file_handle_find(handle
, errp
);
627 error_setg_errno(errp
, errno
, "failed to flush file");
629 gfh
->state
= RW_STATE_NEW
;
633 /* linux-specific implementations. avoid this if at all possible. */
634 #if defined(__linux__)
636 #if defined(CONFIG_FSFREEZE) || defined(CONFIG_FSTRIM)
637 typedef struct FsMount
{
640 unsigned int devmajor
, devminor
;
641 QTAILQ_ENTRY(FsMount
) next
;
644 typedef QTAILQ_HEAD(FsMountList
, FsMount
) FsMountList
;
646 static void free_fs_mount_list(FsMountList
*mounts
)
648 FsMount
*mount
, *temp
;
654 QTAILQ_FOREACH_SAFE(mount
, mounts
, next
, temp
) {
655 QTAILQ_REMOVE(mounts
, mount
, next
);
656 g_free(mount
->dirname
);
657 g_free(mount
->devtype
);
662 static int dev_major_minor(const char *devpath
,
663 unsigned int *devmajor
, unsigned int *devminor
)
670 if (stat(devpath
, &st
) < 0) {
671 slog("failed to stat device file '%s': %s", devpath
, strerror(errno
));
674 if (S_ISDIR(st
.st_mode
)) {
675 /* It is bind mount */
678 if (S_ISBLK(st
.st_mode
)) {
679 *devmajor
= major(st
.st_rdev
);
680 *devminor
= minor(st
.st_rdev
);
687 * Walk the mount table and build a list of local file systems
689 static void build_fs_mount_list_from_mtab(FsMountList
*mounts
, Error
**errp
)
693 char const *mtab
= "/proc/self/mounts";
695 unsigned int devmajor
, devminor
;
697 fp
= setmntent(mtab
, "r");
699 error_setg(errp
, "failed to open mtab file: '%s'", mtab
);
703 while ((ment
= getmntent(fp
))) {
705 * An entry which device name doesn't start with a '/' is
706 * either a dummy file system or a network file system.
707 * Add special handling for smbfs and cifs as is done by
710 if ((ment
->mnt_fsname
[0] != '/') ||
711 (strcmp(ment
->mnt_type
, "smbfs") == 0) ||
712 (strcmp(ment
->mnt_type
, "cifs") == 0)) {
715 if (dev_major_minor(ment
->mnt_fsname
, &devmajor
, &devminor
) == -2) {
716 /* Skip bind mounts */
720 mount
= g_new0(FsMount
, 1);
721 mount
->dirname
= g_strdup(ment
->mnt_dir
);
722 mount
->devtype
= g_strdup(ment
->mnt_type
);
723 mount
->devmajor
= devmajor
;
724 mount
->devminor
= devminor
;
726 QTAILQ_INSERT_TAIL(mounts
, mount
, next
);
732 static void decode_mntname(char *name
, int len
)
735 for (i
= 0; i
<= len
; i
++) {
736 if (name
[i
] != '\\') {
738 } else if (name
[i
+ 1] == '\\') {
741 } else if (name
[i
+ 1] >= '0' && name
[i
+ 1] <= '3' &&
742 name
[i
+ 2] >= '0' && name
[i
+ 2] <= '7' &&
743 name
[i
+ 3] >= '0' && name
[i
+ 3] <= '7') {
744 name
[j
++] = (name
[i
+ 1] - '0') * 64 +
745 (name
[i
+ 2] - '0') * 8 +
754 static void build_fs_mount_list(FsMountList
*mounts
, Error
**errp
)
757 char const *mountinfo
= "/proc/self/mountinfo";
759 char *line
= NULL
, *dash
;
762 unsigned int devmajor
, devminor
;
763 int ret
, dir_s
, dir_e
, type_s
, type_e
, dev_s
, dev_e
;
765 fp
= fopen(mountinfo
, "r");
767 build_fs_mount_list_from_mtab(mounts
, errp
);
771 while (getline(&line
, &n
, fp
) != -1) {
772 ret
= sscanf(line
, "%*u %*u %u:%u %*s %n%*s%n%c",
773 &devmajor
, &devminor
, &dir_s
, &dir_e
, &check
);
777 dash
= strstr(line
+ dir_e
, " - ");
781 ret
= sscanf(dash
, " - %n%*s%n %n%*s%n%c",
782 &type_s
, &type_e
, &dev_s
, &dev_e
, &check
);
789 decode_mntname(line
+ dir_s
, dir_e
- dir_s
);
790 decode_mntname(dash
+ dev_s
, dev_e
- dev_s
);
792 /* btrfs reports major number = 0 */
793 if (strcmp("btrfs", dash
+ type_s
) != 0 ||
794 dev_major_minor(dash
+ dev_s
, &devmajor
, &devminor
) < 0) {
799 mount
= g_new0(FsMount
, 1);
800 mount
->dirname
= g_strdup(line
+ dir_s
);
801 mount
->devtype
= g_strdup(dash
+ type_s
);
802 mount
->devmajor
= devmajor
;
803 mount
->devminor
= devminor
;
805 QTAILQ_INSERT_TAIL(mounts
, mount
, next
);
813 #if defined(CONFIG_FSFREEZE)
815 static char *get_pci_driver(char const *syspath
, int pathlen
, Error
**errp
)
823 path
= g_strndup(syspath
, pathlen
);
824 dpath
= g_strdup_printf("%s/driver", path
);
825 len
= readlink(dpath
, buf
, sizeof(buf
) - 1);
828 driver
= g_path_get_basename(buf
);
835 static int compare_uint(const void *_a
, const void *_b
)
837 unsigned int a
= *(unsigned int *)_a
;
838 unsigned int b
= *(unsigned int *)_b
;
840 return a
< b
? -1 : a
> b
? 1 : 0;
843 /* Walk the specified sysfs and build a sorted list of host or ata numbers */
844 static int build_hosts(char const *syspath
, char const *host
, bool ata
,
845 unsigned int *hosts
, int hosts_max
, Error
**errp
)
849 struct dirent
*entry
;
852 path
= g_strndup(syspath
, host
- syspath
);
855 error_setg_errno(errp
, errno
, "opendir(\"%s\")", path
);
860 while (i
< hosts_max
) {
861 entry
= readdir(dir
);
865 if (ata
&& sscanf(entry
->d_name
, "ata%d", hosts
+ i
) == 1) {
867 } else if (!ata
&& sscanf(entry
->d_name
, "host%d", hosts
+ i
) == 1) {
872 qsort(hosts
, i
, sizeof(hosts
[0]), compare_uint
);
879 /* Store disk device info specified by @sysfs into @fs */
880 static void build_guest_fsinfo_for_real_device(char const *syspath
,
881 GuestFilesystemInfo
*fs
,
884 unsigned int pci
[4], host
, hosts
[8], tgt
[3];
885 int i
, nhosts
= 0, pcilen
;
886 GuestDiskAddress
*disk
;
887 GuestPCIAddress
*pciaddr
;
888 GuestDiskAddressList
*list
= NULL
;
889 bool has_ata
= false, has_host
= false, has_tgt
= false;
890 char *p
, *q
, *driver
= NULL
;
891 #ifdef CONFIG_LIBUDEV
892 struct udev
*udev
= NULL
;
893 struct udev_device
*udevice
= NULL
;
896 p
= strstr(syspath
, "/devices/pci");
897 if (!p
|| sscanf(p
+ 12, "%*x:%*x/%x:%x:%x.%x%n",
898 pci
, pci
+ 1, pci
+ 2, pci
+ 3, &pcilen
) < 4) {
899 g_debug("only pci device is supported: sysfs path '%s'", syspath
);
905 driver
= get_pci_driver(syspath
, p
- syspath
, errp
);
906 if (driver
&& (g_str_equal(driver
, "ata_piix") ||
907 g_str_equal(driver
, "sym53c8xx") ||
908 g_str_equal(driver
, "virtio-pci") ||
909 g_str_equal(driver
, "ahci"))) {
914 if (sscanf(p
, "/%x:%x:%x.%x%n",
915 pci
, pci
+ 1, pci
+ 2, pci
+ 3, &pcilen
) == 4) {
920 g_debug("unsupported driver or sysfs path '%s'", syspath
);
924 p
= strstr(syspath
, "/target");
925 if (p
&& sscanf(p
+ 7, "%*u:%*u:%*u/%*u:%u:%u:%u",
926 tgt
, tgt
+ 1, tgt
+ 2) == 3) {
930 p
= strstr(syspath
, "/ata");
935 p
= strstr(syspath
, "/host");
938 if (p
&& sscanf(q
, "%u", &host
) == 1) {
940 nhosts
= build_hosts(syspath
, p
, has_ata
, hosts
,
941 ARRAY_SIZE(hosts
), errp
);
947 pciaddr
= g_malloc0(sizeof(*pciaddr
));
948 pciaddr
->domain
= pci
[0];
949 pciaddr
->bus
= pci
[1];
950 pciaddr
->slot
= pci
[2];
951 pciaddr
->function
= pci
[3];
953 disk
= g_malloc0(sizeof(*disk
));
954 disk
->pci_controller
= pciaddr
;
956 list
= g_malloc0(sizeof(*list
));
959 #ifdef CONFIG_LIBUDEV
961 udevice
= udev_device_new_from_syspath(udev
, syspath
);
962 if (udev
== NULL
|| udevice
== NULL
) {
963 g_debug("failed to query udev");
965 const char *devnode
, *serial
;
966 devnode
= udev_device_get_devnode(udevice
);
967 if (devnode
!= NULL
) {
968 disk
->dev
= g_strdup(devnode
);
969 disk
->has_dev
= true;
971 serial
= udev_device_get_property_value(udevice
, "ID_SERIAL");
972 if (serial
!= NULL
&& *serial
!= 0) {
973 disk
->serial
= g_strdup(serial
);
974 disk
->has_serial
= true;
979 if (strcmp(driver
, "ata_piix") == 0) {
980 /* a host per ide bus, target*:0:<unit>:0 */
981 if (!has_host
|| !has_tgt
) {
982 g_debug("invalid sysfs path '%s' (driver '%s')", syspath
, driver
);
985 for (i
= 0; i
< nhosts
; i
++) {
986 if (host
== hosts
[i
]) {
987 disk
->bus_type
= GUEST_DISK_BUS_TYPE_IDE
;
994 g_debug("no host for '%s' (driver '%s')", syspath
, driver
);
997 } else if (strcmp(driver
, "sym53c8xx") == 0) {
998 /* scsi(LSI Logic): target*:0:<unit>:0 */
1000 g_debug("invalid sysfs path '%s' (driver '%s')", syspath
, driver
);
1003 disk
->bus_type
= GUEST_DISK_BUS_TYPE_SCSI
;
1004 disk
->unit
= tgt
[1];
1005 } else if (strcmp(driver
, "virtio-pci") == 0) {
1007 /* virtio-scsi: target*:0:0:<unit> */
1008 disk
->bus_type
= GUEST_DISK_BUS_TYPE_SCSI
;
1009 disk
->unit
= tgt
[2];
1011 /* virtio-blk: 1 disk per 1 device */
1012 disk
->bus_type
= GUEST_DISK_BUS_TYPE_VIRTIO
;
1014 } else if (strcmp(driver
, "ahci") == 0) {
1015 /* ahci: 1 host per 1 unit */
1016 if (!has_host
|| !has_tgt
) {
1017 g_debug("invalid sysfs path '%s' (driver '%s')", syspath
, driver
);
1020 for (i
= 0; i
< nhosts
; i
++) {
1021 if (host
== hosts
[i
]) {
1023 disk
->bus_type
= GUEST_DISK_BUS_TYPE_SATA
;
1028 g_debug("no host for '%s' (driver '%s')", syspath
, driver
);
1032 g_debug("unknown driver '%s' (sysfs path '%s')", driver
, syspath
);
1036 list
->next
= fs
->disk
;
1042 qapi_free_GuestDiskAddressList(list
);
1046 #ifdef CONFIG_LIBUDEV
1048 udev_device_unref(udevice
);
1053 static void build_guest_fsinfo_for_device(char const *devpath
,
1054 GuestFilesystemInfo
*fs
,
1057 /* Store a list of slave devices of virtual volume specified by @syspath into
1059 static void build_guest_fsinfo_for_virtual_device(char const *syspath
,
1060 GuestFilesystemInfo
*fs
,
1066 struct dirent
*entry
;
1068 dirpath
= g_strdup_printf("%s/slaves", syspath
);
1069 dir
= opendir(dirpath
);
1071 if (errno
!= ENOENT
) {
1072 error_setg_errno(errp
, errno
, "opendir(\"%s\")", dirpath
);
1080 entry
= readdir(dir
);
1081 if (entry
== NULL
) {
1083 error_setg_errno(errp
, errno
, "readdir(\"%s\")", dirpath
);
1088 if (entry
->d_type
== DT_LNK
) {
1091 g_debug(" slave device '%s'", entry
->d_name
);
1092 path
= g_strdup_printf("%s/slaves/%s", syspath
, entry
->d_name
);
1093 build_guest_fsinfo_for_device(path
, fs
, &err
);
1097 error_propagate(errp
, err
);
1107 /* Dispatch to functions for virtual/real device */
1108 static void build_guest_fsinfo_for_device(char const *devpath
,
1109 GuestFilesystemInfo
*fs
,
1112 char *syspath
= realpath(devpath
, NULL
);
1115 error_setg_errno(errp
, errno
, "realpath(\"%s\")", devpath
);
1120 fs
->name
= g_path_get_basename(syspath
);
1123 g_debug(" parse sysfs path '%s'", syspath
);
1125 if (strstr(syspath
, "/devices/virtual/block/")) {
1126 build_guest_fsinfo_for_virtual_device(syspath
, fs
, errp
);
1128 build_guest_fsinfo_for_real_device(syspath
, fs
, errp
);
1134 /* Return a list of the disk device(s)' info which @mount lies on */
1135 static GuestFilesystemInfo
*build_guest_fsinfo(struct FsMount
*mount
,
1138 GuestFilesystemInfo
*fs
= g_malloc0(sizeof(*fs
));
1140 unsigned long used
, nonroot_total
, fr_size
;
1141 char *devpath
= g_strdup_printf("/sys/dev/block/%u:%u",
1142 mount
->devmajor
, mount
->devminor
);
1144 fs
->mountpoint
= g_strdup(mount
->dirname
);
1145 fs
->type
= g_strdup(mount
->devtype
);
1146 build_guest_fsinfo_for_device(devpath
, fs
, errp
);
1148 if (statvfs(fs
->mountpoint
, &buf
) == 0) {
1149 fr_size
= buf
.f_frsize
;
1150 used
= buf
.f_blocks
- buf
.f_bfree
;
1151 nonroot_total
= used
+ buf
.f_bavail
;
1152 fs
->used_bytes
= used
* fr_size
;
1153 fs
->total_bytes
= nonroot_total
* fr_size
;
1155 fs
->has_total_bytes
= true;
1156 fs
->has_used_bytes
= true;
1164 GuestFilesystemInfoList
*qmp_guest_get_fsinfo(Error
**errp
)
1167 struct FsMount
*mount
;
1168 GuestFilesystemInfoList
*new, *ret
= NULL
;
1169 Error
*local_err
= NULL
;
1171 QTAILQ_INIT(&mounts
);
1172 build_fs_mount_list(&mounts
, &local_err
);
1174 error_propagate(errp
, local_err
);
1178 QTAILQ_FOREACH(mount
, &mounts
, next
) {
1179 g_debug("Building guest fsinfo for '%s'", mount
->dirname
);
1181 new = g_malloc0(sizeof(*ret
));
1182 new->value
= build_guest_fsinfo(mount
, &local_err
);
1186 error_propagate(errp
, local_err
);
1187 qapi_free_GuestFilesystemInfoList(ret
);
1193 free_fs_mount_list(&mounts
);
1199 FSFREEZE_HOOK_THAW
= 0,
1200 FSFREEZE_HOOK_FREEZE
,
1203 static const char *fsfreeze_hook_arg_string
[] = {
1208 static void execute_fsfreeze_hook(FsfreezeHookArg arg
, Error
**errp
)
1213 const char *arg_str
= fsfreeze_hook_arg_string
[arg
];
1214 Error
*local_err
= NULL
;
1216 hook
= ga_fsfreeze_hook(ga_state
);
1220 if (access(hook
, X_OK
) != 0) {
1221 error_setg_errno(errp
, errno
, "can't access fsfreeze hook '%s'", hook
);
1225 slog("executing fsfreeze hook with arg '%s'", arg_str
);
1229 reopen_fd_to_null(0);
1230 reopen_fd_to_null(1);
1231 reopen_fd_to_null(2);
1233 execle(hook
, hook
, arg_str
, NULL
, environ
);
1234 _exit(EXIT_FAILURE
);
1235 } else if (pid
< 0) {
1236 error_setg_errno(errp
, errno
, "failed to create child process");
1240 ga_wait_child(pid
, &status
, &local_err
);
1242 error_propagate(errp
, local_err
);
1246 if (!WIFEXITED(status
)) {
1247 error_setg(errp
, "fsfreeze hook has terminated abnormally");
1251 status
= WEXITSTATUS(status
);
1253 error_setg(errp
, "fsfreeze hook has failed with status %d", status
);
1259 * Return status of freeze/thaw
1261 GuestFsfreezeStatus
qmp_guest_fsfreeze_status(Error
**errp
)
1263 if (ga_is_frozen(ga_state
)) {
1264 return GUEST_FSFREEZE_STATUS_FROZEN
;
1267 return GUEST_FSFREEZE_STATUS_THAWED
;
1270 int64_t qmp_guest_fsfreeze_freeze(Error
**errp
)
1272 return qmp_guest_fsfreeze_freeze_list(false, NULL
, errp
);
1276 * Walk list of mounted file systems in the guest, and freeze the ones which
1277 * are real local file systems.
1279 int64_t qmp_guest_fsfreeze_freeze_list(bool has_mountpoints
,
1280 strList
*mountpoints
,
1286 struct FsMount
*mount
;
1287 Error
*local_err
= NULL
;
1290 slog("guest-fsfreeze called");
1292 execute_fsfreeze_hook(FSFREEZE_HOOK_FREEZE
, &local_err
);
1294 error_propagate(errp
, local_err
);
1298 QTAILQ_INIT(&mounts
);
1299 build_fs_mount_list(&mounts
, &local_err
);
1301 error_propagate(errp
, local_err
);
1305 /* cannot risk guest agent blocking itself on a write in this state */
1306 ga_set_frozen(ga_state
);
1308 QTAILQ_FOREACH_REVERSE(mount
, &mounts
, next
) {
1309 /* To issue fsfreeze in the reverse order of mounts, check if the
1310 * mount is listed in the list here */
1311 if (has_mountpoints
) {
1312 for (list
= mountpoints
; list
; list
= list
->next
) {
1313 if (strcmp(list
->value
, mount
->dirname
) == 0) {
1322 fd
= qemu_open(mount
->dirname
, O_RDONLY
);
1324 error_setg_errno(errp
, errno
, "failed to open %s", mount
->dirname
);
1328 /* we try to cull filesystems we know won't work in advance, but other
1329 * filesystems may not implement fsfreeze for less obvious reasons.
1330 * these will report EOPNOTSUPP. we simply ignore these when tallying
1331 * the number of frozen filesystems.
1332 * if a filesystem is mounted more than once (aka bind mount) a
1333 * consecutive attempt to freeze an already frozen filesystem will
1336 * any other error means a failure to freeze a filesystem we
1337 * expect to be freezable, so return an error in those cases
1338 * and return system to thawed state.
1340 ret
= ioctl(fd
, FIFREEZE
);
1342 if (errno
!= EOPNOTSUPP
&& errno
!= EBUSY
) {
1343 error_setg_errno(errp
, errno
, "failed to freeze %s",
1354 free_fs_mount_list(&mounts
);
1355 /* We may not issue any FIFREEZE here.
1356 * Just unset ga_state here and ready for the next call.
1359 ga_unset_frozen(ga_state
);
1364 free_fs_mount_list(&mounts
);
1365 qmp_guest_fsfreeze_thaw(NULL
);
1370 * Walk list of frozen file systems in the guest, and thaw them.
1372 int64_t qmp_guest_fsfreeze_thaw(Error
**errp
)
1377 int fd
, i
= 0, logged
;
1378 Error
*local_err
= NULL
;
1380 QTAILQ_INIT(&mounts
);
1381 build_fs_mount_list(&mounts
, &local_err
);
1383 error_propagate(errp
, local_err
);
1387 QTAILQ_FOREACH(mount
, &mounts
, next
) {
1389 fd
= qemu_open(mount
->dirname
, O_RDONLY
);
1393 /* we have no way of knowing whether a filesystem was actually unfrozen
1394 * as a result of a successful call to FITHAW, only that if an error
1395 * was returned the filesystem was *not* unfrozen by that particular
1398 * since multiple preceding FIFREEZEs require multiple calls to FITHAW
1399 * to unfreeze, continuing issuing FITHAW until an error is returned,
1400 * in which case either the filesystem is in an unfreezable state, or,
1401 * more likely, it was thawed previously (and remains so afterward).
1403 * also, since the most recent successful call is the one that did
1404 * the actual unfreeze, we can use this to provide an accurate count
1405 * of the number of filesystems unfrozen by guest-fsfreeze-thaw, which
1406 * may * be useful for determining whether a filesystem was unfrozen
1407 * during the freeze/thaw phase by a process other than qemu-ga.
1410 ret
= ioctl(fd
, FITHAW
);
1411 if (ret
== 0 && !logged
) {
1419 ga_unset_frozen(ga_state
);
1420 free_fs_mount_list(&mounts
);
1422 execute_fsfreeze_hook(FSFREEZE_HOOK_THAW
, errp
);
1427 static void guest_fsfreeze_cleanup(void)
1431 if (ga_is_frozen(ga_state
) == GUEST_FSFREEZE_STATUS_FROZEN
) {
1432 qmp_guest_fsfreeze_thaw(&err
);
1434 slog("failed to clean up frozen filesystems: %s",
1435 error_get_pretty(err
));
1440 #endif /* CONFIG_FSFREEZE */
1442 #if defined(CONFIG_FSTRIM)
1444 * Walk list of mounted file systems in the guest, and trim them.
1446 GuestFilesystemTrimResponse
*
1447 qmp_guest_fstrim(bool has_minimum
, int64_t minimum
, Error
**errp
)
1449 GuestFilesystemTrimResponse
*response
;
1450 GuestFilesystemTrimResultList
*list
;
1451 GuestFilesystemTrimResult
*result
;
1454 struct FsMount
*mount
;
1456 Error
*local_err
= NULL
;
1457 struct fstrim_range r
;
1459 slog("guest-fstrim called");
1461 QTAILQ_INIT(&mounts
);
1462 build_fs_mount_list(&mounts
, &local_err
);
1464 error_propagate(errp
, local_err
);
1468 response
= g_malloc0(sizeof(*response
));
1470 QTAILQ_FOREACH(mount
, &mounts
, next
) {
1471 result
= g_malloc0(sizeof(*result
));
1472 result
->path
= g_strdup(mount
->dirname
);
1474 list
= g_malloc0(sizeof(*list
));
1475 list
->value
= result
;
1476 list
->next
= response
->paths
;
1477 response
->paths
= list
;
1479 fd
= qemu_open(mount
->dirname
, O_RDONLY
);
1481 result
->error
= g_strdup_printf("failed to open: %s",
1483 result
->has_error
= true;
1487 /* We try to cull filesystems we know won't work in advance, but other
1488 * filesystems may not implement fstrim for less obvious reasons.
1489 * These will report EOPNOTSUPP; while in some other cases ENOTTY
1490 * will be reported (e.g. CD-ROMs).
1491 * Any other error means an unexpected error.
1495 r
.minlen
= has_minimum
? minimum
: 0;
1496 ret
= ioctl(fd
, FITRIM
, &r
);
1498 result
->has_error
= true;
1499 if (errno
== ENOTTY
|| errno
== EOPNOTSUPP
) {
1500 result
->error
= g_strdup("trim not supported");
1502 result
->error
= g_strdup_printf("failed to trim: %s",
1509 result
->has_minimum
= true;
1510 result
->minimum
= r
.minlen
;
1511 result
->has_trimmed
= true;
1512 result
->trimmed
= r
.len
;
1516 free_fs_mount_list(&mounts
);
1519 #endif /* CONFIG_FSTRIM */
1522 #define LINUX_SYS_STATE_FILE "/sys/power/state"
1523 #define SUSPEND_SUPPORTED 0
1524 #define SUSPEND_NOT_SUPPORTED 1
1527 SUSPEND_MODE_DISK
= 0,
1528 SUSPEND_MODE_RAM
= 1,
1529 SUSPEND_MODE_HYBRID
= 2,
1533 * Executes a command in a child process using g_spawn_sync,
1534 * returning an int >= 0 representing the exit status of the
1537 * If the program wasn't found in path, returns -1.
1539 * If a problem happened when creating the child process,
1540 * returns -1 and errp is set.
1542 static int run_process_child(const char *command
[], Error
**errp
)
1544 int exit_status
, spawn_flag
;
1545 GError
*g_err
= NULL
;
1548 spawn_flag
= G_SPAWN_SEARCH_PATH
| G_SPAWN_STDOUT_TO_DEV_NULL
|
1549 G_SPAWN_STDERR_TO_DEV_NULL
;
1551 success
= g_spawn_sync(NULL
, (char **)command
, environ
, spawn_flag
,
1552 NULL
, NULL
, NULL
, NULL
,
1553 &exit_status
, &g_err
);
1556 return WEXITSTATUS(exit_status
);
1559 if (g_err
&& (g_err
->code
!= G_SPAWN_ERROR_NOENT
)) {
1560 error_setg(errp
, "failed to create child process, error '%s'",
1564 g_error_free(g_err
);
1568 static bool systemd_supports_mode(SuspendMode mode
, Error
**errp
)
1570 Error
*local_err
= NULL
;
1571 const char *systemctl_args
[3] = {"systemd-hibernate", "systemd-suspend",
1572 "systemd-hybrid-sleep"};
1573 const char *cmd
[4] = {"systemctl", "status", systemctl_args
[mode
], NULL
};
1576 status
= run_process_child(cmd
, &local_err
);
1579 * systemctl status uses LSB return codes so we can expect
1580 * status > 0 and be ok. To assert if the guest has support
1581 * for the selected suspend mode, status should be < 4. 4 is
1582 * the code for unknown service status, the return value when
1583 * the service does not exist. A common value is status = 3
1584 * (program is not running).
1586 if (status
> 0 && status
< 4) {
1590 error_propagate(errp
, local_err
);
1594 static void systemd_suspend(SuspendMode mode
, Error
**errp
)
1596 Error
*local_err
= NULL
;
1597 const char *systemctl_args
[3] = {"hibernate", "suspend", "hybrid-sleep"};
1598 const char *cmd
[3] = {"systemctl", systemctl_args
[mode
], NULL
};
1601 status
= run_process_child(cmd
, &local_err
);
1607 if ((status
== -1) && !local_err
) {
1608 error_setg(errp
, "the helper program 'systemctl %s' was not found",
1609 systemctl_args
[mode
]);
1614 error_propagate(errp
, local_err
);
1616 error_setg(errp
, "the helper program 'systemctl %s' returned an "
1617 "unexpected exit status code (%d)",
1618 systemctl_args
[mode
], status
);
1622 static bool pmutils_supports_mode(SuspendMode mode
, Error
**errp
)
1624 Error
*local_err
= NULL
;
1625 const char *pmutils_args
[3] = {"--hibernate", "--suspend",
1626 "--suspend-hybrid"};
1627 const char *cmd
[3] = {"pm-is-supported", pmutils_args
[mode
], NULL
};
1630 status
= run_process_child(cmd
, &local_err
);
1632 if (status
== SUSPEND_SUPPORTED
) {
1636 if ((status
== -1) && !local_err
) {
1641 error_propagate(errp
, local_err
);
1644 "the helper program '%s' returned an unexpected exit"
1645 " status code (%d)", "pm-is-supported", status
);
1651 static void pmutils_suspend(SuspendMode mode
, Error
**errp
)
1653 Error
*local_err
= NULL
;
1654 const char *pmutils_binaries
[3] = {"pm-hibernate", "pm-suspend",
1655 "pm-suspend-hybrid"};
1656 const char *cmd
[2] = {pmutils_binaries
[mode
], NULL
};
1659 status
= run_process_child(cmd
, &local_err
);
1665 if ((status
== -1) && !local_err
) {
1666 error_setg(errp
, "the helper program '%s' was not found",
1667 pmutils_binaries
[mode
]);
1672 error_propagate(errp
, local_err
);
1675 "the helper program '%s' returned an unexpected exit"
1676 " status code (%d)", pmutils_binaries
[mode
], status
);
1680 static bool linux_sys_state_supports_mode(SuspendMode mode
, Error
**errp
)
1682 const char *sysfile_strs
[3] = {"disk", "mem", NULL
};
1683 const char *sysfile_str
= sysfile_strs
[mode
];
1684 char buf
[32]; /* hopefully big enough */
1689 error_setg(errp
, "unknown guest suspend mode");
1693 fd
= open(LINUX_SYS_STATE_FILE
, O_RDONLY
);
1698 ret
= read(fd
, buf
, sizeof(buf
) - 1);
1705 if (strstr(buf
, sysfile_str
)) {
1711 static void linux_sys_state_suspend(SuspendMode mode
, Error
**errp
)
1713 Error
*local_err
= NULL
;
1714 const char *sysfile_strs
[3] = {"disk", "mem", NULL
};
1715 const char *sysfile_str
= sysfile_strs
[mode
];
1720 error_setg(errp
, "unknown guest suspend mode");
1730 reopen_fd_to_null(0);
1731 reopen_fd_to_null(1);
1732 reopen_fd_to_null(2);
1734 fd
= open(LINUX_SYS_STATE_FILE
, O_WRONLY
);
1736 _exit(EXIT_FAILURE
);
1739 if (write(fd
, sysfile_str
, strlen(sysfile_str
)) < 0) {
1740 _exit(EXIT_FAILURE
);
1743 _exit(EXIT_SUCCESS
);
1744 } else if (pid
< 0) {
1745 error_setg_errno(errp
, errno
, "failed to create child process");
1749 ga_wait_child(pid
, &status
, &local_err
);
1751 error_propagate(errp
, local_err
);
1755 if (WEXITSTATUS(status
)) {
1756 error_setg(errp
, "child process has failed to suspend");
1761 static void guest_suspend(SuspendMode mode
, Error
**errp
)
1763 Error
*local_err
= NULL
;
1764 bool mode_supported
= false;
1766 if (systemd_supports_mode(mode
, &local_err
)) {
1767 mode_supported
= true;
1768 systemd_suspend(mode
, &local_err
);
1775 error_free(local_err
);
1777 if (pmutils_supports_mode(mode
, &local_err
)) {
1778 mode_supported
= true;
1779 pmutils_suspend(mode
, &local_err
);
1786 error_free(local_err
);
1788 if (linux_sys_state_supports_mode(mode
, &local_err
)) {
1789 mode_supported
= true;
1790 linux_sys_state_suspend(mode
, &local_err
);
1793 if (!mode_supported
) {
1795 "the requested suspend mode is not supported by the guest");
1797 error_propagate(errp
, local_err
);
1801 void qmp_guest_suspend_disk(Error
**errp
)
1803 guest_suspend(SUSPEND_MODE_DISK
, errp
);
1806 void qmp_guest_suspend_ram(Error
**errp
)
1808 guest_suspend(SUSPEND_MODE_RAM
, errp
);
1811 void qmp_guest_suspend_hybrid(Error
**errp
)
1813 guest_suspend(SUSPEND_MODE_HYBRID
, errp
);
1816 static GuestNetworkInterfaceList
*
1817 guest_find_interface(GuestNetworkInterfaceList
*head
,
1820 for (; head
; head
= head
->next
) {
1821 if (strcmp(head
->value
->name
, name
) == 0) {
1829 static int guest_get_network_stats(const char *name
,
1830 GuestNetworkInterfaceStat
*stats
)
1833 char const *devinfo
= "/proc/net/dev";
1835 char *line
= NULL
, *colon
;
1837 fp
= fopen(devinfo
, "r");
1841 name_len
= strlen(name
);
1842 while (getline(&line
, &n
, fp
) != -1) {
1845 long long rx_packets
;
1847 long long rx_dropped
;
1849 long long tx_packets
;
1851 long long tx_dropped
;
1853 trim_line
= g_strchug(line
);
1854 if (trim_line
[0] == '\0') {
1857 colon
= strchr(trim_line
, ':');
1861 if (colon
- name_len
== trim_line
&&
1862 strncmp(trim_line
, name
, name_len
) == 0) {
1863 if (sscanf(colon
+ 1,
1864 "%lld %lld %lld %lld %lld %lld %lld %lld %lld %lld %lld %lld %lld %lld %lld %lld",
1865 &rx_bytes
, &rx_packets
, &rx_errs
, &rx_dropped
,
1866 &dummy
, &dummy
, &dummy
, &dummy
,
1867 &tx_bytes
, &tx_packets
, &tx_errs
, &tx_dropped
,
1868 &dummy
, &dummy
, &dummy
, &dummy
) != 16) {
1871 stats
->rx_bytes
= rx_bytes
;
1872 stats
->rx_packets
= rx_packets
;
1873 stats
->rx_errs
= rx_errs
;
1874 stats
->rx_dropped
= rx_dropped
;
1875 stats
->tx_bytes
= tx_bytes
;
1876 stats
->tx_packets
= tx_packets
;
1877 stats
->tx_errs
= tx_errs
;
1878 stats
->tx_dropped
= tx_dropped
;
1886 g_debug("/proc/net/dev: Interface '%s' not found", name
);
1891 * Build information about guest interfaces
1893 GuestNetworkInterfaceList
*qmp_guest_network_get_interfaces(Error
**errp
)
1895 GuestNetworkInterfaceList
*head
= NULL
, *cur_item
= NULL
;
1896 struct ifaddrs
*ifap
, *ifa
;
1898 if (getifaddrs(&ifap
) < 0) {
1899 error_setg_errno(errp
, errno
, "getifaddrs failed");
1903 for (ifa
= ifap
; ifa
; ifa
= ifa
->ifa_next
) {
1904 GuestNetworkInterfaceList
*info
;
1905 GuestIpAddressList
**address_list
= NULL
, *address_item
= NULL
;
1906 GuestNetworkInterfaceStat
*interface_stat
= NULL
;
1907 char addr4
[INET_ADDRSTRLEN
];
1908 char addr6
[INET6_ADDRSTRLEN
];
1911 unsigned char *mac_addr
;
1914 g_debug("Processing %s interface", ifa
->ifa_name
);
1916 info
= guest_find_interface(head
, ifa
->ifa_name
);
1919 info
= g_malloc0(sizeof(*info
));
1920 info
->value
= g_malloc0(sizeof(*info
->value
));
1921 info
->value
->name
= g_strdup(ifa
->ifa_name
);
1924 head
= cur_item
= info
;
1926 cur_item
->next
= info
;
1931 if (!info
->value
->has_hardware_address
&&
1932 ifa
->ifa_flags
& SIOCGIFHWADDR
) {
1933 /* we haven't obtained HW address yet */
1934 sock
= socket(PF_INET
, SOCK_STREAM
, 0);
1936 error_setg_errno(errp
, errno
, "failed to create socket");
1940 memset(&ifr
, 0, sizeof(ifr
));
1941 pstrcpy(ifr
.ifr_name
, IF_NAMESIZE
, info
->value
->name
);
1942 if (ioctl(sock
, SIOCGIFHWADDR
, &ifr
) == -1) {
1943 error_setg_errno(errp
, errno
,
1944 "failed to get MAC address of %s",
1951 mac_addr
= (unsigned char *) &ifr
.ifr_hwaddr
.sa_data
;
1953 info
->value
->hardware_address
=
1954 g_strdup_printf("%02x:%02x:%02x:%02x:%02x:%02x",
1955 (int) mac_addr
[0], (int) mac_addr
[1],
1956 (int) mac_addr
[2], (int) mac_addr
[3],
1957 (int) mac_addr
[4], (int) mac_addr
[5]);
1959 info
->value
->has_hardware_address
= true;
1962 if (ifa
->ifa_addr
&&
1963 ifa
->ifa_addr
->sa_family
== AF_INET
) {
1964 /* interface with IPv4 address */
1965 p
= &((struct sockaddr_in
*)ifa
->ifa_addr
)->sin_addr
;
1966 if (!inet_ntop(AF_INET
, p
, addr4
, sizeof(addr4
))) {
1967 error_setg_errno(errp
, errno
, "inet_ntop failed");
1971 address_item
= g_malloc0(sizeof(*address_item
));
1972 address_item
->value
= g_malloc0(sizeof(*address_item
->value
));
1973 address_item
->value
->ip_address
= g_strdup(addr4
);
1974 address_item
->value
->ip_address_type
= GUEST_IP_ADDRESS_TYPE_IPV4
;
1976 if (ifa
->ifa_netmask
) {
1977 /* Count the number of set bits in netmask.
1978 * This is safe as '1' and '0' cannot be shuffled in netmask. */
1979 p
= &((struct sockaddr_in
*)ifa
->ifa_netmask
)->sin_addr
;
1980 address_item
->value
->prefix
= ctpop32(((uint32_t *) p
)[0]);
1982 } else if (ifa
->ifa_addr
&&
1983 ifa
->ifa_addr
->sa_family
== AF_INET6
) {
1984 /* interface with IPv6 address */
1985 p
= &((struct sockaddr_in6
*)ifa
->ifa_addr
)->sin6_addr
;
1986 if (!inet_ntop(AF_INET6
, p
, addr6
, sizeof(addr6
))) {
1987 error_setg_errno(errp
, errno
, "inet_ntop failed");
1991 address_item
= g_malloc0(sizeof(*address_item
));
1992 address_item
->value
= g_malloc0(sizeof(*address_item
->value
));
1993 address_item
->value
->ip_address
= g_strdup(addr6
);
1994 address_item
->value
->ip_address_type
= GUEST_IP_ADDRESS_TYPE_IPV6
;
1996 if (ifa
->ifa_netmask
) {
1997 /* Count the number of set bits in netmask.
1998 * This is safe as '1' and '0' cannot be shuffled in netmask. */
1999 p
= &((struct sockaddr_in6
*)ifa
->ifa_netmask
)->sin6_addr
;
2000 address_item
->value
->prefix
=
2001 ctpop32(((uint32_t *) p
)[0]) +
2002 ctpop32(((uint32_t *) p
)[1]) +
2003 ctpop32(((uint32_t *) p
)[2]) +
2004 ctpop32(((uint32_t *) p
)[3]);
2008 if (!address_item
) {
2012 address_list
= &info
->value
->ip_addresses
;
2014 while (*address_list
&& (*address_list
)->next
) {
2015 address_list
= &(*address_list
)->next
;
2018 if (!*address_list
) {
2019 *address_list
= address_item
;
2021 (*address_list
)->next
= address_item
;
2024 info
->value
->has_ip_addresses
= true;
2026 if (!info
->value
->has_statistics
) {
2027 interface_stat
= g_malloc0(sizeof(*interface_stat
));
2028 if (guest_get_network_stats(info
->value
->name
,
2029 interface_stat
) == -1) {
2030 info
->value
->has_statistics
= false;
2031 g_free(interface_stat
);
2033 info
->value
->statistics
= interface_stat
;
2034 info
->value
->has_statistics
= true;
2044 qapi_free_GuestNetworkInterfaceList(head
);
2048 #define SYSCONF_EXACT(name, errp) sysconf_exact((name), #name, (errp))
2050 static long sysconf_exact(int name
, const char *name_str
, Error
**errp
)
2055 ret
= sysconf(name
);
2058 error_setg(errp
, "sysconf(%s): value indefinite", name_str
);
2060 error_setg_errno(errp
, errno
, "sysconf(%s)", name_str
);
2066 /* Transfer online/offline status between @vcpu and the guest system.
2068 * On input either @errp or *@errp must be NULL.
2070 * In system-to-@vcpu direction, the following @vcpu fields are accessed:
2071 * - R: vcpu->logical_id
2073 * - W: vcpu->can_offline
2075 * In @vcpu-to-system direction, the following @vcpu fields are accessed:
2076 * - R: vcpu->logical_id
2079 * Written members remain unmodified on error.
2081 static void transfer_vcpu(GuestLogicalProcessor
*vcpu
, bool sys2vcpu
,
2082 char *dirpath
, Error
**errp
)
2087 static const char fn
[] = "online";
2089 dirfd
= open(dirpath
, O_RDONLY
| O_DIRECTORY
);
2091 error_setg_errno(errp
, errno
, "open(\"%s\")", dirpath
);
2095 fd
= openat(dirfd
, fn
, sys2vcpu
? O_RDONLY
: O_RDWR
);
2097 if (errno
!= ENOENT
) {
2098 error_setg_errno(errp
, errno
, "open(\"%s/%s\")", dirpath
, fn
);
2099 } else if (sys2vcpu
) {
2100 vcpu
->online
= true;
2101 vcpu
->can_offline
= false;
2102 } else if (!vcpu
->online
) {
2103 error_setg(errp
, "logical processor #%" PRId64
" can't be "
2104 "offlined", vcpu
->logical_id
);
2105 } /* otherwise pretend successful re-onlining */
2107 unsigned char status
;
2109 res
= pread(fd
, &status
, 1, 0);
2111 error_setg_errno(errp
, errno
, "pread(\"%s/%s\")", dirpath
, fn
);
2112 } else if (res
== 0) {
2113 error_setg(errp
, "pread(\"%s/%s\"): unexpected EOF", dirpath
,
2115 } else if (sys2vcpu
) {
2116 vcpu
->online
= (status
!= '0');
2117 vcpu
->can_offline
= true;
2118 } else if (vcpu
->online
!= (status
!= '0')) {
2119 status
= '0' + vcpu
->online
;
2120 if (pwrite(fd
, &status
, 1, 0) == -1) {
2121 error_setg_errno(errp
, errno
, "pwrite(\"%s/%s\")", dirpath
,
2124 } /* otherwise pretend successful re-(on|off)-lining */
2134 GuestLogicalProcessorList
*qmp_guest_get_vcpus(Error
**errp
)
2137 GuestLogicalProcessorList
*head
, **link
;
2139 Error
*local_err
= NULL
;
2144 sc_max
= SYSCONF_EXACT(_SC_NPROCESSORS_CONF
, &local_err
);
2146 while (local_err
== NULL
&& current
< sc_max
) {
2147 GuestLogicalProcessor
*vcpu
;
2148 GuestLogicalProcessorList
*entry
;
2149 int64_t id
= current
++;
2150 char *path
= g_strdup_printf("/sys/devices/system/cpu/cpu%" PRId64
"/",
2153 if (g_file_test(path
, G_FILE_TEST_EXISTS
)) {
2154 vcpu
= g_malloc0(sizeof *vcpu
);
2155 vcpu
->logical_id
= id
;
2156 vcpu
->has_can_offline
= true; /* lolspeak ftw */
2157 transfer_vcpu(vcpu
, true, path
, &local_err
);
2158 entry
= g_malloc0(sizeof *entry
);
2159 entry
->value
= vcpu
;
2161 link
= &entry
->next
;
2166 if (local_err
== NULL
) {
2167 /* there's no guest with zero VCPUs */
2168 g_assert(head
!= NULL
);
2172 qapi_free_GuestLogicalProcessorList(head
);
2173 error_propagate(errp
, local_err
);
2177 int64_t qmp_guest_set_vcpus(GuestLogicalProcessorList
*vcpus
, Error
**errp
)
2180 Error
*local_err
= NULL
;
2183 while (vcpus
!= NULL
) {
2184 char *path
= g_strdup_printf("/sys/devices/system/cpu/cpu%" PRId64
"/",
2185 vcpus
->value
->logical_id
);
2187 transfer_vcpu(vcpus
->value
, false, path
, &local_err
);
2189 if (local_err
!= NULL
) {
2193 vcpus
= vcpus
->next
;
2196 if (local_err
!= NULL
) {
2197 if (processed
== 0) {
2198 error_propagate(errp
, local_err
);
2200 error_free(local_err
);
2207 void qmp_guest_set_user_password(const char *username
,
2208 const char *password
,
2212 Error
*local_err
= NULL
;
2213 char *passwd_path
= NULL
;
2216 int datafd
[2] = { -1, -1 };
2217 char *rawpasswddata
= NULL
;
2218 size_t rawpasswdlen
;
2219 char *chpasswddata
= NULL
;
2222 rawpasswddata
= (char *)qbase64_decode(password
, -1, &rawpasswdlen
, errp
);
2223 if (!rawpasswddata
) {
2226 rawpasswddata
= g_renew(char, rawpasswddata
, rawpasswdlen
+ 1);
2227 rawpasswddata
[rawpasswdlen
] = '\0';
2229 if (strchr(rawpasswddata
, '\n')) {
2230 error_setg(errp
, "forbidden characters in raw password");
2234 if (strchr(username
, '\n') ||
2235 strchr(username
, ':')) {
2236 error_setg(errp
, "forbidden characters in username");
2240 chpasswddata
= g_strdup_printf("%s:%s\n", username
, rawpasswddata
);
2241 chpasswdlen
= strlen(chpasswddata
);
2243 passwd_path
= g_find_program_in_path("chpasswd");
2246 error_setg(errp
, "cannot find 'passwd' program in PATH");
2250 if (pipe(datafd
) < 0) {
2251 error_setg(errp
, "cannot create pipe FDs");
2261 reopen_fd_to_null(1);
2262 reopen_fd_to_null(2);
2265 execle(passwd_path
, "chpasswd", "-e", NULL
, environ
);
2267 execle(passwd_path
, "chpasswd", NULL
, environ
);
2269 _exit(EXIT_FAILURE
);
2270 } else if (pid
< 0) {
2271 error_setg_errno(errp
, errno
, "failed to create child process");
2277 if (qemu_write_full(datafd
[1], chpasswddata
, chpasswdlen
) != chpasswdlen
) {
2278 error_setg_errno(errp
, errno
, "cannot write new account password");
2284 ga_wait_child(pid
, &status
, &local_err
);
2286 error_propagate(errp
, local_err
);
2290 if (!WIFEXITED(status
)) {
2291 error_setg(errp
, "child process has terminated abnormally");
2295 if (WEXITSTATUS(status
)) {
2296 error_setg(errp
, "child process has failed to set user password");
2301 g_free(chpasswddata
);
2302 g_free(rawpasswddata
);
2303 g_free(passwd_path
);
2304 if (datafd
[0] != -1) {
2307 if (datafd
[1] != -1) {
2312 static void ga_read_sysfs_file(int dirfd
, const char *pathname
, char *buf
,
2313 int size
, Error
**errp
)
2319 fd
= openat(dirfd
, pathname
, O_RDONLY
);
2321 error_setg_errno(errp
, errno
, "open sysfs file \"%s\"", pathname
);
2325 res
= pread(fd
, buf
, size
, 0);
2327 error_setg_errno(errp
, errno
, "pread sysfs file \"%s\"", pathname
);
2328 } else if (res
== 0) {
2329 error_setg(errp
, "pread sysfs file \"%s\": unexpected EOF", pathname
);
2334 static void ga_write_sysfs_file(int dirfd
, const char *pathname
,
2335 const char *buf
, int size
, Error
**errp
)
2340 fd
= openat(dirfd
, pathname
, O_WRONLY
);
2342 error_setg_errno(errp
, errno
, "open sysfs file \"%s\"", pathname
);
2346 if (pwrite(fd
, buf
, size
, 0) == -1) {
2347 error_setg_errno(errp
, errno
, "pwrite sysfs file \"%s\"", pathname
);
2353 /* Transfer online/offline status between @mem_blk and the guest system.
2355 * On input either @errp or *@errp must be NULL.
2357 * In system-to-@mem_blk direction, the following @mem_blk fields are accessed:
2358 * - R: mem_blk->phys_index
2359 * - W: mem_blk->online
2360 * - W: mem_blk->can_offline
2362 * In @mem_blk-to-system direction, the following @mem_blk fields are accessed:
2363 * - R: mem_blk->phys_index
2364 * - R: mem_blk->online
2365 *- R: mem_blk->can_offline
2366 * Written members remain unmodified on error.
2368 static void transfer_memory_block(GuestMemoryBlock
*mem_blk
, bool sys2memblk
,
2369 GuestMemoryBlockResponse
*result
,
2375 Error
*local_err
= NULL
;
2381 error_setg(errp
, "Internal error, 'result' should not be NULL");
2385 dp
= opendir("/sys/devices/system/memory/");
2386 /* if there is no 'memory' directory in sysfs,
2387 * we think this VM does not support online/offline memory block,
2388 * any other solution?
2391 if (errno
== ENOENT
) {
2393 GUEST_MEMORY_BLOCK_RESPONSE_TYPE_OPERATION_NOT_SUPPORTED
;
2400 dirpath
= g_strdup_printf("/sys/devices/system/memory/memory%" PRId64
"/",
2401 mem_blk
->phys_index
);
2402 dirfd
= open(dirpath
, O_RDONLY
| O_DIRECTORY
);
2405 error_setg_errno(errp
, errno
, "open(\"%s\")", dirpath
);
2407 if (errno
== ENOENT
) {
2408 result
->response
= GUEST_MEMORY_BLOCK_RESPONSE_TYPE_NOT_FOUND
;
2411 GUEST_MEMORY_BLOCK_RESPONSE_TYPE_OPERATION_FAILED
;
2419 status
= g_malloc0(10);
2420 ga_read_sysfs_file(dirfd
, "state", status
, 10, &local_err
);
2422 /* treat with sysfs file that not exist in old kernel */
2423 if (errno
== ENOENT
) {
2424 error_free(local_err
);
2426 mem_blk
->online
= true;
2427 mem_blk
->can_offline
= false;
2428 } else if (!mem_blk
->online
) {
2430 GUEST_MEMORY_BLOCK_RESPONSE_TYPE_OPERATION_NOT_SUPPORTED
;
2434 error_propagate(errp
, local_err
);
2437 GUEST_MEMORY_BLOCK_RESPONSE_TYPE_OPERATION_FAILED
;
2444 char removable
= '0';
2446 mem_blk
->online
= (strncmp(status
, "online", 6) == 0);
2448 ga_read_sysfs_file(dirfd
, "removable", &removable
, 1, &local_err
);
2450 /* if no 'removable' file, it doesn't support offline mem blk */
2451 if (errno
== ENOENT
) {
2452 error_free(local_err
);
2453 mem_blk
->can_offline
= false;
2455 error_propagate(errp
, local_err
);
2458 mem_blk
->can_offline
= (removable
!= '0');
2461 if (mem_blk
->online
!= (strncmp(status
, "online", 6) == 0)) {
2462 const char *new_state
= mem_blk
->online
? "online" : "offline";
2464 ga_write_sysfs_file(dirfd
, "state", new_state
, strlen(new_state
),
2467 error_free(local_err
);
2469 GUEST_MEMORY_BLOCK_RESPONSE_TYPE_OPERATION_FAILED
;
2473 result
->response
= GUEST_MEMORY_BLOCK_RESPONSE_TYPE_SUCCESS
;
2474 result
->has_error_code
= false;
2475 } /* otherwise pretend successful re-(on|off)-lining */
2486 result
->has_error_code
= true;
2487 result
->error_code
= errno
;
2491 GuestMemoryBlockList
*qmp_guest_get_memory_blocks(Error
**errp
)
2493 GuestMemoryBlockList
*head
, **link
;
2494 Error
*local_err
= NULL
;
2501 dp
= opendir("/sys/devices/system/memory/");
2503 /* it's ok if this happens to be a system that doesn't expose
2504 * memory blocks via sysfs, but otherwise we should report
2507 if (errno
!= ENOENT
) {
2508 error_setg_errno(errp
, errno
, "Can't open directory"
2509 "\"/sys/devices/system/memory/\"");
2514 /* Note: the phys_index of memory block may be discontinuous,
2515 * this is because a memblk is the unit of the Sparse Memory design, which
2516 * allows discontinuous memory ranges (ex. NUMA), so here we should
2517 * traverse the memory block directory.
2519 while ((de
= readdir(dp
)) != NULL
) {
2520 GuestMemoryBlock
*mem_blk
;
2521 GuestMemoryBlockList
*entry
;
2523 if ((strncmp(de
->d_name
, "memory", 6) != 0) ||
2524 !(de
->d_type
& DT_DIR
)) {
2528 mem_blk
= g_malloc0(sizeof *mem_blk
);
2529 /* The d_name is "memoryXXX", phys_index is block id, same as XXX */
2530 mem_blk
->phys_index
= strtoul(&de
->d_name
[6], NULL
, 10);
2531 mem_blk
->has_can_offline
= true; /* lolspeak ftw */
2532 transfer_memory_block(mem_blk
, true, NULL
, &local_err
);
2534 entry
= g_malloc0(sizeof *entry
);
2535 entry
->value
= mem_blk
;
2538 link
= &entry
->next
;
2542 if (local_err
== NULL
) {
2543 /* there's no guest with zero memory blocks */
2545 error_setg(errp
, "guest reported zero memory blocks!");
2550 qapi_free_GuestMemoryBlockList(head
);
2551 error_propagate(errp
, local_err
);
2555 GuestMemoryBlockResponseList
*
2556 qmp_guest_set_memory_blocks(GuestMemoryBlockList
*mem_blks
, Error
**errp
)
2558 GuestMemoryBlockResponseList
*head
, **link
;
2559 Error
*local_err
= NULL
;
2564 while (mem_blks
!= NULL
) {
2565 GuestMemoryBlockResponse
*result
;
2566 GuestMemoryBlockResponseList
*entry
;
2567 GuestMemoryBlock
*current_mem_blk
= mem_blks
->value
;
2569 result
= g_malloc0(sizeof(*result
));
2570 result
->phys_index
= current_mem_blk
->phys_index
;
2571 transfer_memory_block(current_mem_blk
, false, result
, &local_err
);
2572 if (local_err
) { /* should never happen */
2575 entry
= g_malloc0(sizeof *entry
);
2576 entry
->value
= result
;
2579 link
= &entry
->next
;
2580 mem_blks
= mem_blks
->next
;
2585 qapi_free_GuestMemoryBlockResponseList(head
);
2586 error_propagate(errp
, local_err
);
2590 GuestMemoryBlockInfo
*qmp_guest_get_memory_block_info(Error
**errp
)
2592 Error
*local_err
= NULL
;
2596 GuestMemoryBlockInfo
*info
;
2598 dirpath
= g_strdup_printf("/sys/devices/system/memory/");
2599 dirfd
= open(dirpath
, O_RDONLY
| O_DIRECTORY
);
2601 error_setg_errno(errp
, errno
, "open(\"%s\")", dirpath
);
2607 buf
= g_malloc0(20);
2608 ga_read_sysfs_file(dirfd
, "block_size_bytes", buf
, 20, &local_err
);
2612 error_propagate(errp
, local_err
);
2616 info
= g_new0(GuestMemoryBlockInfo
, 1);
2617 info
->size
= strtol(buf
, NULL
, 16); /* the unit is bytes */
2624 #else /* defined(__linux__) */
2626 void qmp_guest_suspend_disk(Error
**errp
)
2628 error_setg(errp
, QERR_UNSUPPORTED
);
2631 void qmp_guest_suspend_ram(Error
**errp
)
2633 error_setg(errp
, QERR_UNSUPPORTED
);
2636 void qmp_guest_suspend_hybrid(Error
**errp
)
2638 error_setg(errp
, QERR_UNSUPPORTED
);
2641 GuestNetworkInterfaceList
*qmp_guest_network_get_interfaces(Error
**errp
)
2643 error_setg(errp
, QERR_UNSUPPORTED
);
2647 GuestLogicalProcessorList
*qmp_guest_get_vcpus(Error
**errp
)
2649 error_setg(errp
, QERR_UNSUPPORTED
);
2653 int64_t qmp_guest_set_vcpus(GuestLogicalProcessorList
*vcpus
, Error
**errp
)
2655 error_setg(errp
, QERR_UNSUPPORTED
);
2659 void qmp_guest_set_user_password(const char *username
,
2660 const char *password
,
2664 error_setg(errp
, QERR_UNSUPPORTED
);
2667 GuestMemoryBlockList
*qmp_guest_get_memory_blocks(Error
**errp
)
2669 error_setg(errp
, QERR_UNSUPPORTED
);
2673 GuestMemoryBlockResponseList
*
2674 qmp_guest_set_memory_blocks(GuestMemoryBlockList
*mem_blks
, Error
**errp
)
2676 error_setg(errp
, QERR_UNSUPPORTED
);
2680 GuestMemoryBlockInfo
*qmp_guest_get_memory_block_info(Error
**errp
)
2682 error_setg(errp
, QERR_UNSUPPORTED
);
2688 #if !defined(CONFIG_FSFREEZE)
2690 GuestFilesystemInfoList
*qmp_guest_get_fsinfo(Error
**errp
)
2692 error_setg(errp
, QERR_UNSUPPORTED
);
2696 GuestFsfreezeStatus
qmp_guest_fsfreeze_status(Error
**errp
)
2698 error_setg(errp
, QERR_UNSUPPORTED
);
2703 int64_t qmp_guest_fsfreeze_freeze(Error
**errp
)
2705 error_setg(errp
, QERR_UNSUPPORTED
);
2710 int64_t qmp_guest_fsfreeze_freeze_list(bool has_mountpoints
,
2711 strList
*mountpoints
,
2714 error_setg(errp
, QERR_UNSUPPORTED
);
2719 int64_t qmp_guest_fsfreeze_thaw(Error
**errp
)
2721 error_setg(errp
, QERR_UNSUPPORTED
);
2725 #endif /* CONFIG_FSFREEZE */
2727 #if !defined(CONFIG_FSTRIM)
2728 GuestFilesystemTrimResponse
*
2729 qmp_guest_fstrim(bool has_minimum
, int64_t minimum
, Error
**errp
)
2731 error_setg(errp
, QERR_UNSUPPORTED
);
2736 /* add unsupported commands to the blacklist */
2737 GList
*ga_command_blacklist_init(GList
*blacklist
)
2739 #if !defined(__linux__)
2741 const char *list
[] = {
2742 "guest-suspend-disk", "guest-suspend-ram",
2743 "guest-suspend-hybrid", "guest-network-get-interfaces",
2744 "guest-get-vcpus", "guest-set-vcpus",
2745 "guest-get-memory-blocks", "guest-set-memory-blocks",
2746 "guest-get-memory-block-size", "guest-get-memory-block-info",
2748 char **p
= (char **)list
;
2751 blacklist
= g_list_append(blacklist
, g_strdup(*p
++));
2756 #if !defined(CONFIG_FSFREEZE)
2758 const char *list
[] = {
2759 "guest-get-fsinfo", "guest-fsfreeze-status",
2760 "guest-fsfreeze-freeze", "guest-fsfreeze-freeze-list",
2761 "guest-fsfreeze-thaw", "guest-get-fsinfo", NULL
};
2762 char **p
= (char **)list
;
2765 blacklist
= g_list_append(blacklist
, g_strdup(*p
++));
2770 #if !defined(CONFIG_FSTRIM)
2771 blacklist
= g_list_append(blacklist
, g_strdup("guest-fstrim"));
2777 /* register init/cleanup routines for stateful command groups */
2778 void ga_command_state_init(GAState
*s
, GACommandState
*cs
)
2780 #if defined(CONFIG_FSFREEZE)
2781 ga_command_state_add(cs
, NULL
, guest_fsfreeze_cleanup
);
2787 #define QGA_MICRO_SECOND_TO_SECOND 1000000
2789 static double ga_get_login_time(struct utmpx
*user_info
)
2791 double seconds
= (double)user_info
->ut_tv
.tv_sec
;
2792 double useconds
= (double)user_info
->ut_tv
.tv_usec
;
2793 useconds
/= QGA_MICRO_SECOND_TO_SECOND
;
2794 return seconds
+ useconds
;
2797 GuestUserList
*qmp_guest_get_users(Error
**errp
)
2799 GHashTable
*cache
= NULL
;
2800 GuestUserList
*head
= NULL
, *cur_item
= NULL
;
2801 struct utmpx
*user_info
= NULL
;
2802 gpointer value
= NULL
;
2803 GuestUser
*user
= NULL
;
2804 GuestUserList
*item
= NULL
;
2805 double login_time
= 0;
2807 cache
= g_hash_table_new(g_str_hash
, g_str_equal
);
2811 user_info
= getutxent();
2812 if (user_info
== NULL
) {
2814 } else if (user_info
->ut_type
!= USER_PROCESS
) {
2816 } else if (g_hash_table_contains(cache
, user_info
->ut_user
)) {
2817 value
= g_hash_table_lookup(cache
, user_info
->ut_user
);
2818 user
= (GuestUser
*)value
;
2819 login_time
= ga_get_login_time(user_info
);
2820 /* We're ensuring the earliest login time to be sent */
2821 if (login_time
< user
->login_time
) {
2822 user
->login_time
= login_time
;
2827 item
= g_new0(GuestUserList
, 1);
2828 item
->value
= g_new0(GuestUser
, 1);
2829 item
->value
->user
= g_strdup(user_info
->ut_user
);
2830 item
->value
->login_time
= ga_get_login_time(user_info
);
2832 g_hash_table_insert(cache
, item
->value
->user
, item
->value
);
2835 head
= cur_item
= item
;
2837 cur_item
->next
= item
;
2842 g_hash_table_destroy(cache
);
2848 GuestUserList
*qmp_guest_get_users(Error
**errp
)
2850 error_setg(errp
, QERR_UNSUPPORTED
);
2856 /* Replace escaped special characters with theire real values. The replacement
2857 * is done in place -- returned value is in the original string.
2859 static void ga_osrelease_replace_special(gchar
*value
)
2861 gchar
*p
, *p2
, quote
;
2863 /* Trim the string at first space or semicolon if it is not enclosed in
2864 * single or double quotes. */
2865 if ((value
[0] != '"') || (value
[0] == '\'')) {
2866 p
= strchr(value
, ' ');
2870 p
= strchr(value
, ';');
2891 /* Keep literal backslash followed by whatever is there */
2895 } else if (*p
== quote
) {
2903 static GKeyFile
*ga_parse_osrelease(const char *fname
)
2905 gchar
*content
= NULL
;
2906 gchar
*content2
= NULL
;
2908 GKeyFile
*keys
= g_key_file_new();
2909 const char *group
= "[os-release]\n";
2911 if (!g_file_get_contents(fname
, &content
, NULL
, &err
)) {
2912 slog("failed to read '%s', error: %s", fname
, err
->message
);
2916 if (!g_utf8_validate(content
, -1, NULL
)) {
2917 slog("file is not utf-8 encoded: %s", fname
);
2920 content2
= g_strdup_printf("%s%s", group
, content
);
2922 if (!g_key_file_load_from_data(keys
, content2
, -1, G_KEY_FILE_NONE
,
2924 slog("failed to parse file '%s', error: %s", fname
, err
->message
);
2936 g_key_file_free(keys
);
2940 GuestOSInfo
*qmp_guest_get_osinfo(Error
**errp
)
2942 GuestOSInfo
*info
= NULL
;
2943 struct utsname kinfo
;
2944 GKeyFile
*osrelease
= NULL
;
2945 const char *qga_os_release
= g_getenv("QGA_OS_RELEASE");
2947 info
= g_new0(GuestOSInfo
, 1);
2949 if (uname(&kinfo
) != 0) {
2950 error_setg_errno(errp
, errno
, "uname failed");
2952 info
->has_kernel_version
= true;
2953 info
->kernel_version
= g_strdup(kinfo
.version
);
2954 info
->has_kernel_release
= true;
2955 info
->kernel_release
= g_strdup(kinfo
.release
);
2956 info
->has_machine
= true;
2957 info
->machine
= g_strdup(kinfo
.machine
);
2960 if (qga_os_release
!= NULL
) {
2961 osrelease
= ga_parse_osrelease(qga_os_release
);
2963 osrelease
= ga_parse_osrelease("/etc/os-release");
2964 if (osrelease
== NULL
) {
2965 osrelease
= ga_parse_osrelease("/usr/lib/os-release");
2969 if (osrelease
!= NULL
) {
2972 #define GET_FIELD(field, osfield) do { \
2973 value = g_key_file_get_value(osrelease, "os-release", osfield, NULL); \
2974 if (value != NULL) { \
2975 ga_osrelease_replace_special(value); \
2976 info->has_ ## field = true; \
2977 info->field = value; \
2980 GET_FIELD(id
, "ID");
2981 GET_FIELD(name
, "NAME");
2982 GET_FIELD(pretty_name
, "PRETTY_NAME");
2983 GET_FIELD(version
, "VERSION");
2984 GET_FIELD(version_id
, "VERSION_ID");
2985 GET_FIELD(variant
, "VARIANT");
2986 GET_FIELD(variant_id
, "VARIANT_ID");
2989 g_key_file_free(osrelease
);