2 * QEMU Guest Agent win32-specific command implementations
4 * Copyright IBM Corp. 2012
7 * Michael Roth <mdroth@linux.vnet.ibm.com>
8 * Gal Hammer <ghammer@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.
13 #include "qemu/osdep.h"
26 #include <devpropdef.h>
31 #include "guest-agent-core.h"
32 #include "vss-win32.h"
33 #include "qga-qapi-commands.h"
34 #include "qapi/error.h"
35 #include "qapi/qmp/qerror.h"
36 #include "qemu/queue.h"
37 #include "qemu/host-utils.h"
38 #include "qemu/base64.h"
39 #include "commands-common.h"
42 * The following should be in devpkey.h, but it isn't. The key names were
43 * prefixed to avoid (future) name clashes. Once the definitions get into
44 * mingw the following lines can be removed.
46 DEFINE_DEVPROPKEY(qga_DEVPKEY_NAME
, 0xb725f130, 0x47ef, 0x101a, 0xa5,
47 0xf1, 0x02, 0x60, 0x8c, 0x9e, 0xeb, 0xac, 10);
48 /* DEVPROP_TYPE_STRING */
49 DEFINE_DEVPROPKEY(qga_DEVPKEY_Device_HardwareIds
, 0xa45c254e, 0xdf1c,
50 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 3);
51 /* DEVPROP_TYPE_STRING_LIST */
52 DEFINE_DEVPROPKEY(qga_DEVPKEY_Device_DriverDate
, 0xa8b865dd, 0x2e3d,
53 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 2);
54 /* DEVPROP_TYPE_FILETIME */
55 DEFINE_DEVPROPKEY(qga_DEVPKEY_Device_DriverVersion
, 0xa8b865dd, 0x2e3d,
56 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 3);
57 /* DEVPROP_TYPE_STRING */
58 /* The CM_Get_DevNode_PropertyW prototype is only sometimes in cfgmgr32.h */
59 #ifndef CM_Get_DevNode_Property
60 #pragma GCC diagnostic push
61 #pragma GCC diagnostic ignored "-Wredundant-decls"
62 CMAPI CONFIGRET WINAPI
CM_Get_DevNode_PropertyW(
64 CONST DEVPROPKEY
* PropertyKey
,
65 DEVPROPTYPE
* PropertyType
,
67 PULONG PropertyBufferSize
,
70 #define CM_Get_DevNode_Property CM_Get_DevNode_PropertyW
71 #pragma GCC diagnostic pop
74 #ifndef SHTDN_REASON_FLAG_PLANNED
75 #define SHTDN_REASON_FLAG_PLANNED 0x80000000
78 /* multiple of 100 nanoseconds elapsed between windows baseline
79 * (1/1/1601) and Unix Epoch (1/1/1970), accounting for leap years */
80 #define W32_FT_OFFSET (10000000ULL * 60 * 60 * 24 * \
81 (365 * (1970 - 1601) + \
82 (1970 - 1601) / 4 - 3))
84 #define INVALID_SET_FILE_POINTER ((DWORD)-1)
86 struct GuestFileHandle
{
89 QTAILQ_ENTRY(GuestFileHandle
) next
;
93 QTAILQ_HEAD(, GuestFileHandle
) filehandles
;
94 } guest_file_state
= {
95 .filehandles
= QTAILQ_HEAD_INITIALIZER(guest_file_state
.filehandles
),
98 #define FILE_GENERIC_APPEND (FILE_GENERIC_WRITE & ~FILE_WRITE_DATA)
100 typedef struct OpenFlags
{
102 DWORD desired_access
;
103 DWORD creation_disposition
;
105 static OpenFlags guest_file_open_modes
[] = {
106 {"r", GENERIC_READ
, OPEN_EXISTING
},
107 {"rb", GENERIC_READ
, OPEN_EXISTING
},
108 {"w", GENERIC_WRITE
, CREATE_ALWAYS
},
109 {"wb", GENERIC_WRITE
, CREATE_ALWAYS
},
110 {"a", FILE_GENERIC_APPEND
, OPEN_ALWAYS
},
111 {"r+", GENERIC_WRITE
| GENERIC_READ
, OPEN_EXISTING
},
112 {"rb+", GENERIC_WRITE
| GENERIC_READ
, OPEN_EXISTING
},
113 {"r+b", GENERIC_WRITE
| GENERIC_READ
, OPEN_EXISTING
},
114 {"w+", GENERIC_WRITE
| GENERIC_READ
, CREATE_ALWAYS
},
115 {"wb+", GENERIC_WRITE
| GENERIC_READ
, CREATE_ALWAYS
},
116 {"w+b", GENERIC_WRITE
| GENERIC_READ
, CREATE_ALWAYS
},
117 {"a+", FILE_GENERIC_APPEND
| GENERIC_READ
, OPEN_ALWAYS
},
118 {"ab+", FILE_GENERIC_APPEND
| GENERIC_READ
, OPEN_ALWAYS
},
119 {"a+b", FILE_GENERIC_APPEND
| GENERIC_READ
, OPEN_ALWAYS
}
122 #define debug_error(msg) do { \
123 char *suffix = g_win32_error_message(GetLastError()); \
124 g_debug("%s: %s", (msg), suffix); \
128 static OpenFlags
*find_open_flag(const char *mode_str
)
133 for (mode
= 0; mode
< ARRAY_SIZE(guest_file_open_modes
); ++mode
) {
134 OpenFlags
*flags
= guest_file_open_modes
+ mode
;
136 if (strcmp(flags
->forms
, mode_str
) == 0) {
141 error_setg(errp
, "invalid file open mode '%s'", mode_str
);
145 static int64_t guest_file_handle_add(HANDLE fh
, Error
**errp
)
147 GuestFileHandle
*gfh
;
150 handle
= ga_get_fd_handle(ga_state
, errp
);
154 gfh
= g_new0(GuestFileHandle
, 1);
157 QTAILQ_INSERT_TAIL(&guest_file_state
.filehandles
, gfh
, next
);
162 GuestFileHandle
*guest_file_handle_find(int64_t id
, Error
**errp
)
164 GuestFileHandle
*gfh
;
165 QTAILQ_FOREACH(gfh
, &guest_file_state
.filehandles
, next
) {
170 error_setg(errp
, "handle '%" PRId64
"' has not been found", id
);
174 static void handle_set_nonblocking(HANDLE fh
)
176 DWORD file_type
, pipe_state
;
177 file_type
= GetFileType(fh
);
178 if (file_type
!= FILE_TYPE_PIPE
) {
181 /* If file_type == FILE_TYPE_PIPE, according to MSDN
182 * the specified file is socket or named pipe */
183 if (!GetNamedPipeHandleState(fh
, &pipe_state
, NULL
,
184 NULL
, NULL
, NULL
, 0)) {
187 /* The fd is named pipe fd */
188 if (pipe_state
& PIPE_NOWAIT
) {
192 pipe_state
|= PIPE_NOWAIT
;
193 SetNamedPipeHandleState(fh
, &pipe_state
, NULL
, NULL
);
196 int64_t qmp_guest_file_open(const char *path
, const char *mode
, Error
**errp
)
200 HANDLE templ_file
= NULL
;
201 DWORD share_mode
= FILE_SHARE_READ
;
202 DWORD flags_and_attr
= FILE_ATTRIBUTE_NORMAL
;
203 LPSECURITY_ATTRIBUTES sa_attr
= NULL
;
204 OpenFlags
*guest_flags
;
206 wchar_t *w_path
= NULL
;
211 slog("guest-file-open called, filepath: %s, mode: %s", path
, mode
);
212 guest_flags
= find_open_flag(mode
);
213 if (guest_flags
== NULL
) {
214 error_setg(errp
, "invalid file open mode");
218 w_path
= g_utf8_to_utf16(path
, -1, NULL
, NULL
, &gerr
);
223 fh
= CreateFileW(w_path
, guest_flags
->desired_access
, share_mode
, sa_attr
,
224 guest_flags
->creation_disposition
, flags_and_attr
,
226 if (fh
== INVALID_HANDLE_VALUE
) {
227 error_setg_win32(errp
, GetLastError(), "failed to open file '%s'",
232 /* set fd non-blocking to avoid common use cases (like reading from a
233 * named pipe) from hanging the agent
235 handle_set_nonblocking(fh
);
237 fd
= guest_file_handle_add(fh
, errp
);
240 error_setg(errp
, "failed to add handle to qmp handle table");
244 slog("guest-file-open, handle: % " PRId64
, fd
);
248 error_setg(errp
, QERR_QGA_COMMAND_FAILED
, gerr
->message
);
255 void qmp_guest_file_close(int64_t handle
, Error
**errp
)
258 GuestFileHandle
*gfh
= guest_file_handle_find(handle
, errp
);
259 slog("guest-file-close called, handle: %" PRId64
, handle
);
263 ret
= CloseHandle(gfh
->fh
);
265 error_setg_win32(errp
, GetLastError(), "failed close handle");
269 QTAILQ_REMOVE(&guest_file_state
.filehandles
, gfh
, next
);
273 static void acquire_privilege(const char *name
, Error
**errp
)
276 TOKEN_PRIVILEGES priv
;
277 Error
*local_err
= NULL
;
279 if (OpenProcessToken(GetCurrentProcess(),
280 TOKEN_ADJUST_PRIVILEGES
| TOKEN_QUERY
, &token
))
282 if (!LookupPrivilegeValue(NULL
, name
, &priv
.Privileges
[0].Luid
)) {
283 error_setg(&local_err
, QERR_QGA_COMMAND_FAILED
,
284 "no luid for requested privilege");
288 priv
.PrivilegeCount
= 1;
289 priv
.Privileges
[0].Attributes
= SE_PRIVILEGE_ENABLED
;
291 if (!AdjustTokenPrivileges(token
, FALSE
, &priv
, 0, NULL
, 0)) {
292 error_setg(&local_err
, QERR_QGA_COMMAND_FAILED
,
293 "unable to acquire requested privilege");
298 error_setg(&local_err
, QERR_QGA_COMMAND_FAILED
,
299 "failed to open privilege token");
306 error_propagate(errp
, local_err
);
309 static void execute_async(DWORD
WINAPI (*func
)(LPVOID
), LPVOID opaque
,
312 HANDLE thread
= CreateThread(NULL
, 0, func
, opaque
, 0, NULL
);
314 error_setg(errp
, QERR_QGA_COMMAND_FAILED
,
315 "failed to dispatch asynchronous command");
319 void qmp_guest_shutdown(const char *mode
, Error
**errp
)
321 Error
*local_err
= NULL
;
322 UINT shutdown_flag
= EWX_FORCE
;
324 slog("guest-shutdown called, mode: %s", mode
);
326 if (!mode
|| strcmp(mode
, "powerdown") == 0) {
327 shutdown_flag
|= EWX_POWEROFF
;
328 } else if (strcmp(mode
, "halt") == 0) {
329 shutdown_flag
|= EWX_SHUTDOWN
;
330 } else if (strcmp(mode
, "reboot") == 0) {
331 shutdown_flag
|= EWX_REBOOT
;
333 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "mode",
334 "'halt', 'powerdown', or 'reboot'");
338 /* Request a shutdown privilege, but try to shut down the system
340 acquire_privilege(SE_SHUTDOWN_NAME
, &local_err
);
342 error_propagate(errp
, local_err
);
346 if (!ExitWindowsEx(shutdown_flag
, SHTDN_REASON_FLAG_PLANNED
)) {
347 g_autofree gchar
*emsg
= g_win32_error_message(GetLastError());
348 slog("guest-shutdown failed: %s", emsg
);
349 error_setg_win32(errp
, GetLastError(), "guest-shutdown failed");
353 GuestFileRead
*guest_file_read_unsafe(GuestFileHandle
*gfh
,
354 int64_t count
, Error
**errp
)
356 GuestFileRead
*read_data
= NULL
;
362 buf
= g_malloc0(count
+ 1);
363 is_ok
= ReadFile(fh
, buf
, count
, &read_count
, NULL
);
365 error_setg_win32(errp
, GetLastError(), "failed to read file");
368 read_data
= g_new0(GuestFileRead
, 1);
369 read_data
->count
= (size_t)read_count
;
370 read_data
->eof
= read_count
== 0;
372 if (read_count
!= 0) {
373 read_data
->buf_b64
= g_base64_encode(buf
, read_count
);
381 GuestFileWrite
*qmp_guest_file_write(int64_t handle
, const char *buf_b64
,
382 bool has_count
, int64_t count
,
385 GuestFileWrite
*write_data
= NULL
;
390 GuestFileHandle
*gfh
= guest_file_handle_find(handle
, errp
);
397 buf
= qbase64_decode(buf_b64
, -1, &buf_len
, errp
);
404 } else if (count
< 0 || count
> buf_len
) {
405 error_setg(errp
, "value '%" PRId64
406 "' is invalid for argument count", count
);
410 is_ok
= WriteFile(fh
, buf
, count
, &write_count
, NULL
);
412 error_setg_win32(errp
, GetLastError(), "failed to write to file");
413 slog("guest-file-write-failed, handle: %" PRId64
, handle
);
415 write_data
= g_new0(GuestFileWrite
, 1);
416 write_data
->count
= (size_t) write_count
;
424 GuestFileSeek
*qmp_guest_file_seek(int64_t handle
, int64_t offset
,
425 GuestFileWhence
*whence_code
,
428 GuestFileHandle
*gfh
;
429 GuestFileSeek
*seek_data
;
431 LARGE_INTEGER new_pos
, off_pos
;
432 off_pos
.QuadPart
= offset
;
437 gfh
= guest_file_handle_find(handle
, errp
);
442 /* We stupidly exposed 'whence':'int' in our qapi */
443 whence
= ga_parse_whence(whence_code
, &err
);
445 error_propagate(errp
, err
);
450 res
= SetFilePointerEx(fh
, off_pos
, &new_pos
, whence
);
452 error_setg_win32(errp
, GetLastError(), "failed to seek file");
455 seek_data
= g_new0(GuestFileSeek
, 1);
456 seek_data
->position
= new_pos
.QuadPart
;
460 void qmp_guest_file_flush(int64_t handle
, Error
**errp
)
463 GuestFileHandle
*gfh
= guest_file_handle_find(handle
, errp
);
469 if (!FlushFileBuffers(fh
)) {
470 error_setg_win32(errp
, GetLastError(), "failed to flush file");
474 static GuestDiskBusType win2qemu
[] = {
475 [BusTypeUnknown
] = GUEST_DISK_BUS_TYPE_UNKNOWN
,
476 [BusTypeScsi
] = GUEST_DISK_BUS_TYPE_SCSI
,
477 [BusTypeAtapi
] = GUEST_DISK_BUS_TYPE_IDE
,
478 [BusTypeAta
] = GUEST_DISK_BUS_TYPE_IDE
,
479 [BusType1394
] = GUEST_DISK_BUS_TYPE_IEEE1394
,
480 [BusTypeSsa
] = GUEST_DISK_BUS_TYPE_SSA
,
481 [BusTypeFibre
] = GUEST_DISK_BUS_TYPE_SSA
,
482 [BusTypeUsb
] = GUEST_DISK_BUS_TYPE_USB
,
483 [BusTypeRAID
] = GUEST_DISK_BUS_TYPE_RAID
,
484 [BusTypeiScsi
] = GUEST_DISK_BUS_TYPE_ISCSI
,
485 [BusTypeSas
] = GUEST_DISK_BUS_TYPE_SAS
,
486 [BusTypeSata
] = GUEST_DISK_BUS_TYPE_SATA
,
487 [BusTypeSd
] = GUEST_DISK_BUS_TYPE_SD
,
488 [BusTypeMmc
] = GUEST_DISK_BUS_TYPE_MMC
,
489 #if (_WIN32_WINNT >= 0x0601)
490 [BusTypeVirtual
] = GUEST_DISK_BUS_TYPE_VIRTUAL
,
491 [BusTypeFileBackedVirtual
] = GUEST_DISK_BUS_TYPE_FILE_BACKED_VIRTUAL
,
493 * BusTypeSpaces currently is not suported
495 [BusTypeSpaces
] = GUEST_DISK_BUS_TYPE_UNKNOWN
,
496 [BusTypeNvme
] = GUEST_DISK_BUS_TYPE_NVME
,
500 static GuestDiskBusType
find_bus_type(STORAGE_BUS_TYPE bus
)
502 if (bus
>= ARRAY_SIZE(win2qemu
) || (int)bus
< 0) {
503 return GUEST_DISK_BUS_TYPE_UNKNOWN
;
505 return win2qemu
[(int)bus
];
508 DEFINE_GUID(GUID_DEVINTERFACE_DISK
,
509 0x53f56307L
, 0xb6bf, 0x11d0, 0x94, 0xf2,
510 0x00, 0xa0, 0xc9, 0x1e, 0xfb, 0x8b);
511 DEFINE_GUID(GUID_DEVINTERFACE_STORAGEPORT
,
512 0x2accfe60L
, 0xc130, 0x11d2, 0xb0, 0x82,
513 0x00, 0xa0, 0xc9, 0x1e, 0xfb, 0x8b);
515 static void get_pci_address_for_device(GuestPCIAddress
*pci
,
518 SP_DEVINFO_DATA dev_info_data
;
521 bool partial_pci
= false;
523 dev_info_data
.cbSize
= sizeof(SP_DEVINFO_DATA
);
526 SetupDiEnumDeviceInfo(dev_info
, j
, &dev_info_data
);
528 DWORD addr
, bus
, ui_slot
, type
;
530 size
= sizeof(DWORD
);
533 * There is no need to allocate buffer in the next functions. The
534 * size is known and ULONG according to
535 * https://msdn.microsoft.com/en-us/library/windows/hardware/ff543095(v=vs.85).aspx
537 if (!SetupDiGetDeviceRegistryProperty(
538 dev_info
, &dev_info_data
, SPDRP_BUSNUMBER
,
539 &type
, (PBYTE
)&bus
, size
, NULL
)) {
540 debug_error("failed to get PCI bus");
546 * The function retrieves the device's address. This value will be
547 * transformed into device function and number
549 if (!SetupDiGetDeviceRegistryProperty(
550 dev_info
, &dev_info_data
, SPDRP_ADDRESS
,
551 &type
, (PBYTE
)&addr
, size
, NULL
)) {
552 debug_error("failed to get PCI address");
558 * This call returns UINumber of DEVICE_CAPABILITIES structure.
559 * This number is typically a user-perceived slot number.
561 if (!SetupDiGetDeviceRegistryProperty(
562 dev_info
, &dev_info_data
, SPDRP_UI_NUMBER
,
563 &type
, (PBYTE
)&ui_slot
, size
, NULL
)) {
564 debug_error("failed to get PCI slot");
570 * SetupApi gives us the same information as driver with
571 * IoGetDeviceProperty. According to Microsoft:
573 * FunctionNumber = (USHORT)((propertyAddress) & 0x0000FFFF)
574 * DeviceNumber = (USHORT)(((propertyAddress) >> 16) & 0x0000FFFF)
575 * SPDRP_ADDRESS is propertyAddress, so we do the same.
577 * https://docs.microsoft.com/en-us/windows/desktop/api/setupapi/nf-setupapi-setupdigetdeviceregistrypropertya
586 func
= ((int)addr
== -1) ? -1 : addr
& 0x0000FFFF;
587 slot
= ((int)addr
== -1) ? -1 : (addr
>> 16) & 0x0000FFFF;
588 if ((int)ui_slot
!= slot
) {
589 g_debug("mismatch with reported slot values: %d vs %d",
593 pci
->slot
= (int)ui_slot
;
594 pci
->function
= func
;
601 static GuestPCIAddress
*get_pci_info(int number
, Error
**errp
)
603 HDEVINFO dev_info
= INVALID_HANDLE_VALUE
;
604 HDEVINFO parent_dev_info
= INVALID_HANDLE_VALUE
;
606 SP_DEVINFO_DATA dev_info_data
;
607 SP_DEVICE_INTERFACE_DATA dev_iface_data
;
610 GuestPCIAddress
*pci
= NULL
;
612 pci
= g_malloc0(sizeof(*pci
));
618 dev_info
= SetupDiGetClassDevs(&GUID_DEVINTERFACE_DISK
, 0, 0,
619 DIGCF_PRESENT
| DIGCF_DEVICEINTERFACE
);
620 if (dev_info
== INVALID_HANDLE_VALUE
) {
621 error_setg_win32(errp
, GetLastError(), "failed to get devices tree");
625 g_debug("enumerating devices");
626 dev_info_data
.cbSize
= sizeof(SP_DEVINFO_DATA
);
627 dev_iface_data
.cbSize
= sizeof(SP_DEVICE_INTERFACE_DATA
);
628 for (i
= 0; SetupDiEnumDeviceInfo(dev_info
, i
, &dev_info_data
); i
++) {
629 g_autofree PSP_DEVICE_INTERFACE_DETAIL_DATA pdev_iface_detail_data
= NULL
;
630 STORAGE_DEVICE_NUMBER sdn
;
631 g_autofree
char *parent_dev_id
= NULL
;
632 SP_DEVINFO_DATA parent_dev_info_data
;
635 g_debug("getting device path");
636 if (SetupDiEnumDeviceInterfaces(dev_info
, &dev_info_data
,
637 &GUID_DEVINTERFACE_DISK
, 0,
639 if (!SetupDiGetDeviceInterfaceDetail(dev_info
, &dev_iface_data
,
640 pdev_iface_detail_data
,
643 if (GetLastError() == ERROR_INSUFFICIENT_BUFFER
) {
644 pdev_iface_detail_data
= g_malloc(size
);
645 pdev_iface_detail_data
->cbSize
=
646 sizeof(*pdev_iface_detail_data
);
648 error_setg_win32(errp
, GetLastError(),
649 "failed to get device interfaces");
654 if (!SetupDiGetDeviceInterfaceDetail(dev_info
, &dev_iface_data
,
655 pdev_iface_detail_data
,
658 // pdev_iface_detail_data already is allocated
659 error_setg_win32(errp
, GetLastError(),
660 "failed to get device interfaces");
664 dev_file
= CreateFile(pdev_iface_detail_data
->DevicePath
, 0,
665 FILE_SHARE_READ
, NULL
, OPEN_EXISTING
, 0,
668 if (!DeviceIoControl(dev_file
, IOCTL_STORAGE_GET_DEVICE_NUMBER
,
669 NULL
, 0, &sdn
, sizeof(sdn
), &size
, NULL
)) {
670 CloseHandle(dev_file
);
671 error_setg_win32(errp
, GetLastError(),
672 "failed to get device slot number");
676 CloseHandle(dev_file
);
677 if (sdn
.DeviceNumber
!= number
) {
681 error_setg_win32(errp
, GetLastError(),
682 "failed to get device interfaces");
686 g_debug("found device slot %d. Getting storage controller", number
);
689 DEVINST dev_inst
, parent_dev_inst
;
690 ULONG dev_id_size
= 0;
693 if (!SetupDiGetDeviceInstanceId(dev_info
, &dev_info_data
,
694 parent_dev_id
, size
, &size
)) {
695 if (GetLastError() == ERROR_INSUFFICIENT_BUFFER
) {
696 parent_dev_id
= g_malloc(size
);
698 error_setg_win32(errp
, GetLastError(),
699 "failed to get device instance ID");
704 if (!SetupDiGetDeviceInstanceId(dev_info
, &dev_info_data
,
705 parent_dev_id
, size
, &size
)) {
706 // parent_dev_id already is allocated
707 error_setg_win32(errp
, GetLastError(),
708 "failed to get device instance ID");
713 * CM API used here as opposed to
714 * SetupDiGetDeviceProperty(..., DEVPKEY_Device_Parent, ...)
715 * which exports are only available in mingw-w64 6+
717 cr
= CM_Locate_DevInst(&dev_inst
, parent_dev_id
, 0);
718 if (cr
!= CR_SUCCESS
) {
719 g_error("CM_Locate_DevInst failed with code %lx", cr
);
720 error_setg_win32(errp
, GetLastError(),
721 "failed to get device instance");
724 cr
= CM_Get_Parent(&parent_dev_inst
, dev_inst
, 0);
725 if (cr
!= CR_SUCCESS
) {
726 g_error("CM_Get_Parent failed with code %lx", cr
);
727 error_setg_win32(errp
, GetLastError(),
728 "failed to get parent device instance");
732 cr
= CM_Get_Device_ID_Size(&dev_id_size
, parent_dev_inst
, 0);
733 if (cr
!= CR_SUCCESS
) {
734 g_error("CM_Get_Device_ID_Size failed with code %lx", cr
);
735 error_setg_win32(errp
, GetLastError(),
736 "failed to get parent device ID length");
741 if (dev_id_size
> size
) {
742 g_free(parent_dev_id
);
743 parent_dev_id
= g_malloc(dev_id_size
);
746 cr
= CM_Get_Device_ID(parent_dev_inst
, parent_dev_id
, dev_id_size
,
748 if (cr
!= CR_SUCCESS
) {
749 g_error("CM_Get_Device_ID failed with code %lx", cr
);
750 error_setg_win32(errp
, GetLastError(),
751 "failed to get parent device ID");
756 g_debug("querying storage controller %s for PCI information",
759 SetupDiGetClassDevs(&GUID_DEVINTERFACE_STORAGEPORT
, parent_dev_id
,
760 NULL
, DIGCF_PRESENT
| DIGCF_DEVICEINTERFACE
);
762 if (parent_dev_info
== INVALID_HANDLE_VALUE
) {
763 error_setg_win32(errp
, GetLastError(),
764 "failed to get parent device");
768 parent_dev_info_data
.cbSize
= sizeof(SP_DEVINFO_DATA
);
769 if (!SetupDiEnumDeviceInfo(parent_dev_info
, 0, &parent_dev_info_data
)) {
770 error_setg_win32(errp
, GetLastError(),
771 "failed to get parent device data");
775 get_pci_address_for_device(pci
, parent_dev_info
);
781 if (parent_dev_info
!= INVALID_HANDLE_VALUE
) {
782 SetupDiDestroyDeviceInfoList(parent_dev_info
);
784 if (dev_info
!= INVALID_HANDLE_VALUE
) {
785 SetupDiDestroyDeviceInfoList(dev_info
);
790 static void get_disk_properties(HANDLE vol_h
, GuestDiskAddress
*disk
,
793 STORAGE_PROPERTY_QUERY query
;
794 STORAGE_DEVICE_DESCRIPTOR
*dev_desc
, buf
;
796 ULONG size
= sizeof(buf
);
799 query
.PropertyId
= StorageDeviceProperty
;
800 query
.QueryType
= PropertyStandardQuery
;
802 if (!DeviceIoControl(vol_h
, IOCTL_STORAGE_QUERY_PROPERTY
, &query
,
803 sizeof(STORAGE_PROPERTY_QUERY
), dev_desc
,
804 size
, &received
, NULL
)) {
805 error_setg_win32(errp
, GetLastError(), "failed to get bus type");
808 disk
->bus_type
= find_bus_type(dev_desc
->BusType
);
809 g_debug("bus type %d", disk
->bus_type
);
811 /* Query once more. Now with long enough buffer. */
812 size
= dev_desc
->Size
;
813 dev_desc
= g_malloc0(size
);
814 if (!DeviceIoControl(vol_h
, IOCTL_STORAGE_QUERY_PROPERTY
, &query
,
815 sizeof(STORAGE_PROPERTY_QUERY
), dev_desc
,
816 size
, &received
, NULL
)) {
817 error_setg_win32(errp
, GetLastError(), "failed to get serial number");
818 g_debug("failed to get serial number");
821 if (dev_desc
->SerialNumberOffset
> 0) {
825 if (dev_desc
->SerialNumberOffset
>= received
) {
826 error_setg(errp
, "failed to get serial number: offset outside the buffer");
827 g_debug("serial number offset outside the buffer");
830 serial
= (char *)dev_desc
+ dev_desc
->SerialNumberOffset
;
831 len
= received
- dev_desc
->SerialNumberOffset
;
832 g_debug("serial number \"%s\"", serial
);
834 disk
->serial
= g_strndup(serial
, len
);
843 static void get_single_disk_info(int disk_number
,
844 GuestDiskAddress
*disk
, Error
**errp
)
846 SCSI_ADDRESS addr
, *scsi_ad
;
849 Error
*local_err
= NULL
;
853 g_debug("getting disk info for: %s", disk
->dev
);
854 disk_h
= CreateFile(disk
->dev
, 0, FILE_SHARE_READ
, NULL
, OPEN_EXISTING
,
856 if (disk_h
== INVALID_HANDLE_VALUE
) {
857 error_setg_win32(errp
, GetLastError(), "failed to open disk");
861 get_disk_properties(disk_h
, disk
, &local_err
);
863 error_propagate(errp
, local_err
);
867 g_debug("bus type %d", disk
->bus_type
);
868 /* always set pci_controller as required by schema. get_pci_info() should
869 * report -1 values for non-PCI buses rather than fail. fail the command
870 * if that doesn't hold since that suggests some other unexpected
873 disk
->pci_controller
= get_pci_info(disk_number
, &local_err
);
875 error_propagate(errp
, local_err
);
878 if (disk
->bus_type
== GUEST_DISK_BUS_TYPE_SCSI
879 || disk
->bus_type
== GUEST_DISK_BUS_TYPE_IDE
880 || disk
->bus_type
== GUEST_DISK_BUS_TYPE_RAID
881 /* This bus type is not supported before Windows Server 2003 SP1 */
882 || disk
->bus_type
== GUEST_DISK_BUS_TYPE_SAS
884 /* We are able to use the same ioctls for different bus types
885 * according to Microsoft docs
886 * https://technet.microsoft.com/en-us/library/ee851589(v=ws.10).aspx */
887 g_debug("getting SCSI info");
888 if (DeviceIoControl(disk_h
, IOCTL_SCSI_GET_ADDRESS
, NULL
, 0, scsi_ad
,
889 sizeof(SCSI_ADDRESS
), &len
, NULL
)) {
890 disk
->unit
= addr
.Lun
;
891 disk
->target
= addr
.TargetId
;
892 disk
->bus
= addr
.PathId
;
894 /* We do not set error in this case, because we still have enough
895 * information about volume. */
903 /* VSS provider works with volumes, thus there is no difference if
904 * the volume consist of spanned disks. Info about the first disk in the
905 * volume is returned for the spanned disk group (LVM) */
906 static GuestDiskAddressList
*build_guest_disk_info(char *guid
, Error
**errp
)
908 Error
*local_err
= NULL
;
909 GuestDiskAddressList
*list
= NULL
;
910 GuestDiskAddress
*disk
= NULL
;
914 PVOLUME_DISK_EXTENTS extents
= NULL
;
916 /* strip final backslash */
917 char *name
= g_strdup(guid
);
918 if (g_str_has_suffix(name
, "\\")) {
919 name
[strlen(name
) - 1] = 0;
922 g_debug("opening %s", name
);
923 vol_h
= CreateFile(name
, 0, FILE_SHARE_READ
, NULL
, OPEN_EXISTING
,
925 if (vol_h
== INVALID_HANDLE_VALUE
) {
926 error_setg_win32(errp
, GetLastError(), "failed to open volume");
930 /* Get list of extents */
931 g_debug("getting disk extents");
932 size
= sizeof(VOLUME_DISK_EXTENTS
);
933 extents
= g_malloc0(size
);
934 if (!DeviceIoControl(vol_h
, IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
, NULL
,
935 0, extents
, size
, &size
, NULL
)) {
936 DWORD last_err
= GetLastError();
937 if (last_err
== ERROR_MORE_DATA
) {
938 /* Try once more with big enough buffer */
940 extents
= g_malloc0(size
);
941 if (!DeviceIoControl(
942 vol_h
, IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
, NULL
,
943 0, extents
, size
, NULL
, NULL
)) {
944 error_setg_win32(errp
, GetLastError(),
945 "failed to get disk extents");
948 } else if (last_err
== ERROR_INVALID_FUNCTION
) {
949 /* Possibly CD-ROM or a shared drive. Try to pass the volume */
950 g_debug("volume not on disk");
951 disk
= g_new0(GuestDiskAddress
, 1);
952 disk
->dev
= g_strdup(name
);
953 get_single_disk_info(0xffffffff, disk
, &local_err
);
955 g_debug("failed to get disk info, ignoring error: %s",
956 error_get_pretty(local_err
));
957 error_free(local_err
);
960 QAPI_LIST_PREPEND(list
, disk
);
964 error_setg_win32(errp
, GetLastError(),
965 "failed to get disk extents");
969 g_debug("Number of extents: %lu", extents
->NumberOfDiskExtents
);
971 /* Go through each extent */
972 for (i
= 0; i
< extents
->NumberOfDiskExtents
; i
++) {
973 disk
= g_new0(GuestDiskAddress
, 1);
975 /* Disk numbers directly correspond to numbers used in UNCs
977 * See documentation for DISK_EXTENT:
978 * https://docs.microsoft.com/en-us/windows/desktop/api/winioctl/ns-winioctl-_disk_extent
980 * See also Naming Files, Paths and Namespaces:
981 * https://docs.microsoft.com/en-us/windows/desktop/FileIO/naming-a-file#win32-device-namespaces
983 disk
->dev
= g_strdup_printf("\\\\.\\PhysicalDrive%lu",
984 extents
->Extents
[i
].DiskNumber
);
986 get_single_disk_info(extents
->Extents
[i
].DiskNumber
, disk
, &local_err
);
988 error_propagate(errp
, local_err
);
991 QAPI_LIST_PREPEND(list
, disk
);
997 if (vol_h
!= INVALID_HANDLE_VALUE
) {
1000 qapi_free_GuestDiskAddress(disk
);
1007 GuestDiskInfoList
*qmp_guest_get_disks(Error
**errp
)
1009 GuestDiskInfoList
*ret
= NULL
;
1011 SP_DEVICE_INTERFACE_DATA dev_iface_data
;
1014 dev_info
= SetupDiGetClassDevs(&GUID_DEVINTERFACE_DISK
, 0, 0,
1015 DIGCF_PRESENT
| DIGCF_DEVICEINTERFACE
);
1016 if (dev_info
== INVALID_HANDLE_VALUE
) {
1017 error_setg_win32(errp
, GetLastError(), "failed to get device tree");
1021 g_debug("enumerating devices");
1022 dev_iface_data
.cbSize
= sizeof(SP_DEVICE_INTERFACE_DATA
);
1024 SetupDiEnumDeviceInterfaces(dev_info
, NULL
, &GUID_DEVINTERFACE_DISK
,
1025 i
, &dev_iface_data
);
1027 GuestDiskAddress
*address
= NULL
;
1028 GuestDiskInfo
*disk
= NULL
;
1029 Error
*local_err
= NULL
;
1030 g_autofree PSP_DEVICE_INTERFACE_DETAIL_DATA
1031 pdev_iface_detail_data
= NULL
;
1032 STORAGE_DEVICE_NUMBER sdn
;
1038 g_debug(" getting device path");
1039 for (attempt
= 0, result
= FALSE
; attempt
< 2 && !result
; attempt
++) {
1040 result
= SetupDiGetDeviceInterfaceDetail(dev_info
,
1041 &dev_iface_data
, pdev_iface_detail_data
, size
, &size
, NULL
);
1045 if (GetLastError() == ERROR_INSUFFICIENT_BUFFER
) {
1046 pdev_iface_detail_data
= g_realloc(pdev_iface_detail_data
,
1048 pdev_iface_detail_data
->cbSize
=
1049 sizeof(*pdev_iface_detail_data
);
1051 g_debug("failed to get device interface details");
1056 g_debug("skipping device");
1060 g_debug(" device: %s", pdev_iface_detail_data
->DevicePath
);
1061 dev_file
= CreateFile(pdev_iface_detail_data
->DevicePath
, 0,
1062 FILE_SHARE_READ
, NULL
, OPEN_EXISTING
, 0, NULL
);
1063 if (!DeviceIoControl(dev_file
, IOCTL_STORAGE_GET_DEVICE_NUMBER
,
1064 NULL
, 0, &sdn
, sizeof(sdn
), &size
, NULL
)) {
1065 CloseHandle(dev_file
);
1066 debug_error("failed to get storage device number");
1069 CloseHandle(dev_file
);
1071 disk
= g_new0(GuestDiskInfo
, 1);
1072 disk
->name
= g_strdup_printf("\\\\.\\PhysicalDrive%lu",
1075 g_debug(" number: %lu", sdn
.DeviceNumber
);
1076 address
= g_new0(GuestDiskAddress
, 1);
1077 address
->dev
= g_strdup(disk
->name
);
1078 get_single_disk_info(sdn
.DeviceNumber
, address
, &local_err
);
1080 g_debug("failed to get disk info: %s",
1081 error_get_pretty(local_err
));
1082 error_free(local_err
);
1083 qapi_free_GuestDiskAddress(address
);
1086 disk
->address
= address
;
1089 QAPI_LIST_PREPEND(ret
, disk
);
1092 SetupDiDestroyDeviceInfoList(dev_info
);
1096 static GuestFilesystemInfo
*build_guest_fsinfo(char *guid
, Error
**errp
)
1099 char mnt
, *mnt_point
;
1100 wchar_t wfs_name
[32];
1102 wchar_t vol_info
[MAX_PATH
+ 1];
1104 uint64_t i64FreeBytesToCaller
, i64TotalBytes
, i64FreeBytes
;
1105 GuestFilesystemInfo
*fs
= NULL
;
1106 HANDLE hLocalDiskHandle
= INVALID_HANDLE_VALUE
;
1108 GetVolumePathNamesForVolumeName(guid
, (LPCH
)&mnt
, 0, &info_size
);
1109 if (GetLastError() != ERROR_MORE_DATA
) {
1110 error_setg_win32(errp
, GetLastError(), "failed to get volume name");
1114 mnt_point
= g_malloc(info_size
+ 1);
1115 if (!GetVolumePathNamesForVolumeName(guid
, mnt_point
, info_size
,
1117 error_setg_win32(errp
, GetLastError(), "failed to get volume name");
1121 hLocalDiskHandle
= CreateFile(guid
, 0 , 0, NULL
, OPEN_EXISTING
,
1122 FILE_ATTRIBUTE_NORMAL
|
1123 FILE_FLAG_BACKUP_SEMANTICS
, NULL
);
1124 if (INVALID_HANDLE_VALUE
== hLocalDiskHandle
) {
1125 error_setg_win32(errp
, GetLastError(), "failed to get handle for volume");
1129 len
= strlen(mnt_point
);
1130 mnt_point
[len
] = '\\';
1131 mnt_point
[len
+ 1] = 0;
1133 if (!GetVolumeInformationByHandleW(hLocalDiskHandle
, vol_info
,
1134 sizeof(vol_info
), NULL
, NULL
, NULL
,
1135 (LPWSTR
) & wfs_name
, sizeof(wfs_name
))) {
1136 if (GetLastError() != ERROR_NOT_READY
) {
1137 error_setg_win32(errp
, GetLastError(), "failed to get volume info");
1142 fs
= g_malloc(sizeof(*fs
));
1143 fs
->name
= g_strdup(guid
);
1144 fs
->has_total_bytes
= false;
1145 fs
->has_used_bytes
= false;
1147 fs
->mountpoint
= g_strdup("System Reserved");
1149 fs
->mountpoint
= g_strndup(mnt_point
, len
);
1150 if (GetDiskFreeSpaceEx(fs
->mountpoint
,
1151 (PULARGE_INTEGER
) & i64FreeBytesToCaller
,
1152 (PULARGE_INTEGER
) & i64TotalBytes
,
1153 (PULARGE_INTEGER
) & i64FreeBytes
)) {
1154 fs
->used_bytes
= i64TotalBytes
- i64FreeBytes
;
1155 fs
->total_bytes
= i64TotalBytes
;
1156 fs
->has_total_bytes
= true;
1157 fs
->has_used_bytes
= true;
1160 wcstombs(fs_name
, wfs_name
, sizeof(wfs_name
));
1161 fs
->type
= g_strdup(fs_name
);
1162 fs
->disk
= build_guest_disk_info(guid
, errp
);
1164 if (hLocalDiskHandle
!= INVALID_HANDLE_VALUE
) {
1165 CloseHandle(hLocalDiskHandle
);
1171 GuestFilesystemInfoList
*qmp_guest_get_fsinfo(Error
**errp
)
1174 GuestFilesystemInfoList
*ret
= NULL
;
1177 vol_h
= FindFirstVolume(guid
, sizeof(guid
));
1178 if (vol_h
== INVALID_HANDLE_VALUE
) {
1179 error_setg_win32(errp
, GetLastError(), "failed to find any volume");
1184 Error
*local_err
= NULL
;
1185 GuestFilesystemInfo
*info
= build_guest_fsinfo(guid
, &local_err
);
1187 g_debug("failed to get filesystem info, ignoring error: %s",
1188 error_get_pretty(local_err
));
1189 error_free(local_err
);
1192 QAPI_LIST_PREPEND(ret
, info
);
1193 } while (FindNextVolume(vol_h
, guid
, sizeof(guid
)));
1195 if (GetLastError() != ERROR_NO_MORE_FILES
) {
1196 error_setg_win32(errp
, GetLastError(), "failed to find next volume");
1199 FindVolumeClose(vol_h
);
1204 * Return status of freeze/thaw
1206 GuestFsfreezeStatus
qmp_guest_fsfreeze_status(Error
**errp
)
1208 if (!vss_initialized()) {
1209 error_setg(errp
, QERR_UNSUPPORTED
);
1213 if (ga_is_frozen(ga_state
)) {
1214 return GUEST_FSFREEZE_STATUS_FROZEN
;
1217 return GUEST_FSFREEZE_STATUS_THAWED
;
1221 * Freeze local file systems using Volume Shadow-copy Service.
1222 * The frozen state is limited for up to 10 seconds by VSS.
1224 int64_t qmp_guest_fsfreeze_freeze(Error
**errp
)
1226 return qmp_guest_fsfreeze_freeze_list(false, NULL
, errp
);
1229 int64_t qmp_guest_fsfreeze_freeze_list(bool has_mountpoints
,
1230 strList
*mountpoints
,
1234 Error
*local_err
= NULL
;
1236 if (!vss_initialized()) {
1237 error_setg(errp
, QERR_UNSUPPORTED
);
1241 slog("guest-fsfreeze called");
1243 /* cannot risk guest agent blocking itself on a write in this state */
1244 ga_set_frozen(ga_state
);
1246 qga_vss_fsfreeze(&i
, true, mountpoints
, &local_err
);
1248 error_propagate(errp
, local_err
);
1256 qmp_guest_fsfreeze_thaw(&local_err
);
1258 g_debug("cleanup thaw: %s", error_get_pretty(local_err
));
1259 error_free(local_err
);
1265 * Thaw local file systems using Volume Shadow-copy Service.
1267 int64_t qmp_guest_fsfreeze_thaw(Error
**errp
)
1271 if (!vss_initialized()) {
1272 error_setg(errp
, QERR_UNSUPPORTED
);
1276 qga_vss_fsfreeze(&i
, false, NULL
, errp
);
1278 ga_unset_frozen(ga_state
);
1282 static void guest_fsfreeze_cleanup(void)
1286 if (!vss_initialized()) {
1290 if (ga_is_frozen(ga_state
) == GUEST_FSFREEZE_STATUS_FROZEN
) {
1291 qmp_guest_fsfreeze_thaw(&err
);
1293 slog("failed to clean up frozen filesystems: %s",
1294 error_get_pretty(err
));
1303 * Walk list of mounted file systems in the guest, and discard unused
1306 GuestFilesystemTrimResponse
*
1307 qmp_guest_fstrim(bool has_minimum
, int64_t minimum
, Error
**errp
)
1309 GuestFilesystemTrimResponse
*resp
;
1311 WCHAR guid
[MAX_PATH
] = L
"";
1315 ZeroMemory(&osvi
, sizeof(OSVERSIONINFO
));
1316 osvi
.dwOSVersionInfoSize
= sizeof(OSVERSIONINFO
);
1317 GetVersionEx(&osvi
);
1318 win8_or_later
= (osvi
.dwMajorVersion
> 6 ||
1319 ((osvi
.dwMajorVersion
== 6) &&
1320 (osvi
.dwMinorVersion
>= 2)));
1321 if (!win8_or_later
) {
1322 error_setg(errp
, "fstrim is only supported for Win8+");
1326 handle
= FindFirstVolumeW(guid
, ARRAYSIZE(guid
));
1327 if (handle
== INVALID_HANDLE_VALUE
) {
1328 error_setg_win32(errp
, GetLastError(), "failed to find any volume");
1332 resp
= g_new0(GuestFilesystemTrimResponse
, 1);
1335 GuestFilesystemTrimResult
*res
;
1337 DWORD char_count
= 0;
1339 GError
*gerr
= NULL
;
1342 GetVolumePathNamesForVolumeNameW(guid
, NULL
, 0, &char_count
);
1344 if (GetLastError() != ERROR_MORE_DATA
) {
1347 if (GetDriveTypeW(guid
) != DRIVE_FIXED
) {
1351 uc_path
= g_new(WCHAR
, char_count
);
1352 if (!GetVolumePathNamesForVolumeNameW(guid
, uc_path
, char_count
,
1353 &char_count
) || !*uc_path
) {
1354 /* strange, but this condition could be faced even with size == 2 */
1359 res
= g_new0(GuestFilesystemTrimResult
, 1);
1361 path
= g_utf16_to_utf8(uc_path
, char_count
, NULL
, NULL
, &gerr
);
1366 res
->error
= g_strdup(gerr
->message
);
1373 QAPI_LIST_PREPEND(resp
->paths
, res
);
1375 memset(argv
, 0, sizeof(argv
));
1376 argv
[0] = (gchar
*)"defrag.exe";
1377 argv
[1] = (gchar
*)"/L";
1380 if (!g_spawn_sync(NULL
, argv
, NULL
, G_SPAWN_SEARCH_PATH
, NULL
, NULL
,
1381 &out
/* stdout */, NULL
/* stdin */,
1383 res
->error
= g_strdup(gerr
->message
);
1386 /* defrag.exe is UGLY. Exit code is ALWAYS zero.
1387 Error is reported in the output with something like
1388 (x89000020) etc code in the stdout */
1391 gchar
**lines
= g_strsplit(out
, "\r\n", 0);
1394 for (i
= 0; lines
[i
] != NULL
; i
++) {
1395 if (g_strstr_len(lines
[i
], -1, "(0x") == NULL
) {
1398 res
->error
= g_strdup(lines
[i
]);
1403 } while (FindNextVolumeW(handle
, guid
, ARRAYSIZE(guid
)));
1405 FindVolumeClose(handle
);
1410 GUEST_SUSPEND_MODE_DISK
,
1411 GUEST_SUSPEND_MODE_RAM
1414 static void check_suspend_mode(GuestSuspendMode mode
, Error
**errp
)
1416 SYSTEM_POWER_CAPABILITIES sys_pwr_caps
;
1418 ZeroMemory(&sys_pwr_caps
, sizeof(sys_pwr_caps
));
1419 if (!GetPwrCapabilities(&sys_pwr_caps
)) {
1420 error_setg(errp
, QERR_QGA_COMMAND_FAILED
,
1421 "failed to determine guest suspend capabilities");
1426 case GUEST_SUSPEND_MODE_DISK
:
1427 if (!sys_pwr_caps
.SystemS4
) {
1428 error_setg(errp
, QERR_QGA_COMMAND_FAILED
,
1429 "suspend-to-disk not supported by OS");
1432 case GUEST_SUSPEND_MODE_RAM
:
1433 if (!sys_pwr_caps
.SystemS3
) {
1434 error_setg(errp
, QERR_QGA_COMMAND_FAILED
,
1435 "suspend-to-ram not supported by OS");
1443 static DWORD WINAPI
do_suspend(LPVOID opaque
)
1445 GuestSuspendMode
*mode
= opaque
;
1448 if (!SetSuspendState(*mode
== GUEST_SUSPEND_MODE_DISK
, TRUE
, TRUE
)) {
1449 g_autofree gchar
*emsg
= g_win32_error_message(GetLastError());
1450 slog("failed to suspend guest: %s", emsg
);
1457 void qmp_guest_suspend_disk(Error
**errp
)
1459 Error
*local_err
= NULL
;
1460 GuestSuspendMode
*mode
= g_new(GuestSuspendMode
, 1);
1462 *mode
= GUEST_SUSPEND_MODE_DISK
;
1463 check_suspend_mode(*mode
, &local_err
);
1467 acquire_privilege(SE_SHUTDOWN_NAME
, &local_err
);
1471 execute_async(do_suspend
, mode
, &local_err
);
1475 error_propagate(errp
, local_err
);
1480 void qmp_guest_suspend_ram(Error
**errp
)
1482 Error
*local_err
= NULL
;
1483 GuestSuspendMode
*mode
= g_new(GuestSuspendMode
, 1);
1485 *mode
= GUEST_SUSPEND_MODE_RAM
;
1486 check_suspend_mode(*mode
, &local_err
);
1490 acquire_privilege(SE_SHUTDOWN_NAME
, &local_err
);
1494 execute_async(do_suspend
, mode
, &local_err
);
1498 error_propagate(errp
, local_err
);
1503 void qmp_guest_suspend_hybrid(Error
**errp
)
1505 error_setg(errp
, QERR_UNSUPPORTED
);
1508 static IP_ADAPTER_ADDRESSES
*guest_get_adapters_addresses(Error
**errp
)
1510 IP_ADAPTER_ADDRESSES
*adptr_addrs
= NULL
;
1511 ULONG adptr_addrs_len
= 0;
1514 /* Call the first time to get the adptr_addrs_len. */
1515 GetAdaptersAddresses(AF_UNSPEC
, GAA_FLAG_INCLUDE_PREFIX
,
1516 NULL
, adptr_addrs
, &adptr_addrs_len
);
1518 adptr_addrs
= g_malloc(adptr_addrs_len
);
1519 ret
= GetAdaptersAddresses(AF_UNSPEC
, GAA_FLAG_INCLUDE_PREFIX
,
1520 NULL
, adptr_addrs
, &adptr_addrs_len
);
1521 if (ret
!= ERROR_SUCCESS
) {
1522 error_setg_win32(errp
, ret
, "failed to get adapters addresses");
1523 g_free(adptr_addrs
);
1529 static char *guest_wctomb_dup(WCHAR
*wstr
)
1534 str_size
= WideCharToMultiByte(CP_UTF8
, 0, wstr
, -1, NULL
, 0, NULL
, NULL
);
1535 /* add 1 to str_size for NULL terminator */
1536 str
= g_malloc(str_size
+ 1);
1537 WideCharToMultiByte(CP_UTF8
, 0, wstr
, -1, str
, str_size
, NULL
, NULL
);
1541 static char *guest_addr_to_str(IP_ADAPTER_UNICAST_ADDRESS
*ip_addr
,
1544 char addr_str
[INET6_ADDRSTRLEN
+ INET_ADDRSTRLEN
];
1548 if (ip_addr
->Address
.lpSockaddr
->sa_family
== AF_INET
||
1549 ip_addr
->Address
.lpSockaddr
->sa_family
== AF_INET6
) {
1550 len
= sizeof(addr_str
);
1551 ret
= WSAAddressToString(ip_addr
->Address
.lpSockaddr
,
1552 ip_addr
->Address
.iSockaddrLength
,
1557 error_setg_win32(errp
, WSAGetLastError(),
1558 "failed address presentation form conversion");
1561 return g_strdup(addr_str
);
1566 static int64_t guest_ip_prefix(IP_ADAPTER_UNICAST_ADDRESS
*ip_addr
)
1568 /* For Windows Vista/2008 and newer, use the OnLinkPrefixLength
1569 * field to obtain the prefix.
1571 return ip_addr
->OnLinkPrefixLength
;
1574 #define INTERFACE_PATH_BUF_SZ 512
1576 static DWORD
get_interface_index(const char *guid
)
1580 wchar_t wbuf
[INTERFACE_PATH_BUF_SZ
];
1581 snwprintf(wbuf
, INTERFACE_PATH_BUF_SZ
, L
"\\device\\tcpip_%s", guid
);
1582 wbuf
[INTERFACE_PATH_BUF_SZ
- 1] = 0;
1583 status
= GetAdapterIndex (wbuf
, &index
);
1584 if (status
!= NO_ERROR
) {
1591 typedef NETIOAPI_API (WINAPI
*GetIfEntry2Func
)(PMIB_IF_ROW2 Row
);
1593 static int guest_get_network_stats(const char *name
,
1594 GuestNetworkInterfaceStat
*stats
)
1596 OSVERSIONINFO os_ver
;
1598 os_ver
.dwOSVersionInfoSize
= sizeof(OSVERSIONINFO
);
1599 GetVersionEx(&os_ver
);
1600 if (os_ver
.dwMajorVersion
>= 6) {
1601 MIB_IF_ROW2 a_mid_ifrow
;
1602 GetIfEntry2Func getifentry2_ex
;
1604 HMODULE module
= GetModuleHandle("iphlpapi");
1605 PVOID func
= GetProcAddress(module
, "GetIfEntry2");
1611 getifentry2_ex
= (GetIfEntry2Func
)func
;
1612 if_index
= get_interface_index(name
);
1613 if (if_index
== (DWORD
)~0) {
1617 memset(&a_mid_ifrow
, 0, sizeof(a_mid_ifrow
));
1618 a_mid_ifrow
.InterfaceIndex
= if_index
;
1619 if (NO_ERROR
== getifentry2_ex(&a_mid_ifrow
)) {
1620 stats
->rx_bytes
= a_mid_ifrow
.InOctets
;
1621 stats
->rx_packets
= a_mid_ifrow
.InUcastPkts
;
1622 stats
->rx_errs
= a_mid_ifrow
.InErrors
;
1623 stats
->rx_dropped
= a_mid_ifrow
.InDiscards
;
1624 stats
->tx_bytes
= a_mid_ifrow
.OutOctets
;
1625 stats
->tx_packets
= a_mid_ifrow
.OutUcastPkts
;
1626 stats
->tx_errs
= a_mid_ifrow
.OutErrors
;
1627 stats
->tx_dropped
= a_mid_ifrow
.OutDiscards
;
1634 GuestNetworkInterfaceList
*qmp_guest_network_get_interfaces(Error
**errp
)
1636 IP_ADAPTER_ADDRESSES
*adptr_addrs
, *addr
;
1637 IP_ADAPTER_UNICAST_ADDRESS
*ip_addr
= NULL
;
1638 GuestNetworkInterfaceList
*head
= NULL
, **tail
= &head
;
1639 GuestIpAddressList
*head_addr
, **tail_addr
;
1640 GuestNetworkInterface
*info
;
1641 GuestNetworkInterfaceStat
*interface_stat
= NULL
;
1642 GuestIpAddress
*address_item
= NULL
;
1643 unsigned char *mac_addr
;
1649 adptr_addrs
= guest_get_adapters_addresses(errp
);
1650 if (adptr_addrs
== NULL
) {
1654 /* Make WSA APIs available. */
1655 wsa_version
= MAKEWORD(2, 2);
1656 ret
= WSAStartup(wsa_version
, &wsa_data
);
1658 error_setg_win32(errp
, ret
, "failed socket startup");
1662 for (addr
= adptr_addrs
; addr
; addr
= addr
->Next
) {
1663 info
= g_malloc0(sizeof(*info
));
1665 QAPI_LIST_APPEND(tail
, info
);
1667 info
->name
= guest_wctomb_dup(addr
->FriendlyName
);
1669 if (addr
->PhysicalAddressLength
!= 0) {
1670 mac_addr
= addr
->PhysicalAddress
;
1672 info
->hardware_address
=
1673 g_strdup_printf("%02x:%02x:%02x:%02x:%02x:%02x",
1674 (int) mac_addr
[0], (int) mac_addr
[1],
1675 (int) mac_addr
[2], (int) mac_addr
[3],
1676 (int) mac_addr
[4], (int) mac_addr
[5]);
1680 tail_addr
= &head_addr
;
1681 for (ip_addr
= addr
->FirstUnicastAddress
;
1683 ip_addr
= ip_addr
->Next
) {
1684 addr_str
= guest_addr_to_str(ip_addr
, errp
);
1685 if (addr_str
== NULL
) {
1689 address_item
= g_malloc0(sizeof(*address_item
));
1691 QAPI_LIST_APPEND(tail_addr
, address_item
);
1693 address_item
->ip_address
= addr_str
;
1694 address_item
->prefix
= guest_ip_prefix(ip_addr
);
1695 if (ip_addr
->Address
.lpSockaddr
->sa_family
== AF_INET
) {
1696 address_item
->ip_address_type
= GUEST_IP_ADDRESS_TYPE_IPV4
;
1697 } else if (ip_addr
->Address
.lpSockaddr
->sa_family
== AF_INET6
) {
1698 address_item
->ip_address_type
= GUEST_IP_ADDRESS_TYPE_IPV6
;
1702 info
->has_ip_addresses
= true;
1703 info
->ip_addresses
= head_addr
;
1705 if (!info
->statistics
) {
1706 interface_stat
= g_malloc0(sizeof(*interface_stat
));
1707 if (guest_get_network_stats(addr
->AdapterName
, interface_stat
)
1709 g_free(interface_stat
);
1711 info
->statistics
= interface_stat
;
1717 g_free(adptr_addrs
);
1721 static int64_t filetime_to_ns(const FILETIME
*tf
)
1723 return ((((int64_t)tf
->dwHighDateTime
<< 32) | tf
->dwLowDateTime
)
1724 - W32_FT_OFFSET
) * 100;
1727 void qmp_guest_set_time(bool has_time
, int64_t time_ns
, Error
**errp
)
1729 Error
*local_err
= NULL
;
1735 /* Unfortunately, Windows libraries don't provide an easy way to access
1738 * https://msdn.microsoft.com/en-us/library/aa908981.aspx
1740 * Instead, a workaround is to use the Windows win32tm command to
1741 * resync the time using the Windows Time service.
1746 HRESULT hr
= system("w32tm /resync /nowait");
1748 if (GetLastError() != 0) {
1749 strerror_s((LPTSTR
) & msg_buffer
, 0, errno
);
1750 error_setg(errp
, "system(...) failed: %s", (LPCTSTR
)msg_buffer
);
1751 } else if (hr
!= 0) {
1752 if (hr
== HRESULT_FROM_WIN32(ERROR_SERVICE_NOT_ACTIVE
)) {
1753 error_setg(errp
, "Windows Time service not running on the "
1756 if (!FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER
|
1757 FORMAT_MESSAGE_FROM_SYSTEM
|
1758 FORMAT_MESSAGE_IGNORE_INSERTS
, NULL
,
1759 (DWORD
)hr
, MAKELANGID(LANG_NEUTRAL
,
1760 SUBLANG_DEFAULT
), (LPTSTR
) & msg_buffer
, 0,
1762 error_setg(errp
, "w32tm failed with error (0x%lx), couldn'"
1763 "t retrieve error message", hr
);
1765 error_setg(errp
, "w32tm failed with error (0x%lx): %s", hr
,
1766 (LPCTSTR
)msg_buffer
);
1767 LocalFree(msg_buffer
);
1770 } else if (!InternetGetConnectedState(&ret_flags
, 0)) {
1771 error_setg(errp
, "No internet connection on guest, sync not "
1777 /* Validate time passed by user. */
1778 if (time_ns
< 0 || time_ns
/ 100 > INT64_MAX
- W32_FT_OFFSET
) {
1779 error_setg(errp
, "Time %" PRId64
"is invalid", time_ns
);
1783 time
= time_ns
/ 100 + W32_FT_OFFSET
;
1785 tf
.dwLowDateTime
= (DWORD
) time
;
1786 tf
.dwHighDateTime
= (DWORD
) (time
>> 32);
1788 if (!FileTimeToSystemTime(&tf
, &ts
)) {
1789 error_setg(errp
, "Failed to convert system time %d",
1790 (int)GetLastError());
1794 acquire_privilege(SE_SYSTEMTIME_NAME
, &local_err
);
1796 error_propagate(errp
, local_err
);
1800 if (!SetSystemTime(&ts
)) {
1801 error_setg(errp
, "Failed to set time to guest: %d", (int)GetLastError());
1806 GuestLogicalProcessorList
*qmp_guest_get_vcpus(Error
**errp
)
1808 PSYSTEM_LOGICAL_PROCESSOR_INFORMATION pslpi
, ptr
;
1810 GuestLogicalProcessorList
*head
, **tail
;
1811 Error
*local_err
= NULL
;
1820 if ((GetLogicalProcessorInformation(pslpi
, &length
) == FALSE
) &&
1821 (GetLastError() == ERROR_INSUFFICIENT_BUFFER
) &&
1822 (length
> sizeof(SYSTEM_LOGICAL_PROCESSOR_INFORMATION
))) {
1823 ptr
= pslpi
= g_malloc0(length
);
1824 if (GetLogicalProcessorInformation(pslpi
, &length
) == FALSE
) {
1825 error_setg(&local_err
, "Failed to get processor information: %d",
1826 (int)GetLastError());
1829 error_setg(&local_err
,
1830 "Failed to get processor information buffer length: %d",
1831 (int)GetLastError());
1834 while ((local_err
== NULL
) && (length
> 0)) {
1835 if (pslpi
->Relationship
== RelationProcessorCore
) {
1836 ULONG_PTR cpu_bits
= pslpi
->ProcessorMask
;
1838 while (cpu_bits
> 0) {
1839 if (!!(cpu_bits
& 1)) {
1840 GuestLogicalProcessor
*vcpu
;
1842 vcpu
= g_malloc0(sizeof *vcpu
);
1843 vcpu
->logical_id
= current
++;
1844 vcpu
->online
= true;
1845 vcpu
->has_can_offline
= true;
1847 QAPI_LIST_APPEND(tail
, vcpu
);
1852 length
-= sizeof(SYSTEM_LOGICAL_PROCESSOR_INFORMATION
);
1853 pslpi
++; /* next entry */
1858 if (local_err
== NULL
) {
1862 /* there's no guest with zero VCPUs */
1863 error_setg(&local_err
, "Guest reported zero VCPUs");
1866 qapi_free_GuestLogicalProcessorList(head
);
1867 error_propagate(errp
, local_err
);
1871 int64_t qmp_guest_set_vcpus(GuestLogicalProcessorList
*vcpus
, Error
**errp
)
1873 error_setg(errp
, QERR_UNSUPPORTED
);
1878 get_net_error_message(gint error
)
1880 HMODULE module
= NULL
;
1881 gchar
*retval
= NULL
;
1882 wchar_t *msg
= NULL
;
1886 flags
= FORMAT_MESSAGE_ALLOCATE_BUFFER
|
1887 FORMAT_MESSAGE_IGNORE_INSERTS
|
1888 FORMAT_MESSAGE_FROM_SYSTEM
;
1890 if (error
>= NERR_BASE
&& error
<= MAX_NERR
) {
1891 module
= LoadLibraryExW(L
"netmsg.dll", NULL
, LOAD_LIBRARY_AS_DATAFILE
);
1893 if (module
!= NULL
) {
1894 flags
|= FORMAT_MESSAGE_FROM_HMODULE
;
1898 FormatMessageW(flags
, module
, error
, 0, (LPWSTR
)&msg
, 0, NULL
);
1901 nchars
= wcslen(msg
);
1904 msg
[nchars
- 1] == L
'\n' &&
1905 msg
[nchars
- 2] == L
'\r') {
1906 msg
[nchars
- 2] = L
'\0';
1909 retval
= g_utf16_to_utf8(msg
, -1, NULL
, NULL
, NULL
);
1914 if (module
!= NULL
) {
1915 FreeLibrary(module
);
1921 void qmp_guest_set_user_password(const char *username
,
1922 const char *password
,
1927 char *rawpasswddata
= NULL
;
1928 size_t rawpasswdlen
;
1929 wchar_t *user
= NULL
, *wpass
= NULL
;
1930 USER_INFO_1003 pi1003
= { 0, };
1931 GError
*gerr
= NULL
;
1934 error_setg(errp
, QERR_UNSUPPORTED
);
1938 rawpasswddata
= (char *)qbase64_decode(password
, -1, &rawpasswdlen
, errp
);
1939 if (!rawpasswddata
) {
1942 rawpasswddata
= g_renew(char, rawpasswddata
, rawpasswdlen
+ 1);
1943 rawpasswddata
[rawpasswdlen
] = '\0';
1945 user
= g_utf8_to_utf16(username
, -1, NULL
, NULL
, &gerr
);
1950 wpass
= g_utf8_to_utf16(rawpasswddata
, -1, NULL
, NULL
, &gerr
);
1955 pi1003
.usri1003_password
= wpass
;
1956 nas
= NetUserSetInfo(NULL
, user
,
1957 1003, (LPBYTE
)&pi1003
,
1960 if (nas
!= NERR_Success
) {
1961 gchar
*msg
= get_net_error_message(nas
);
1962 error_setg(errp
, "failed to set password: %s", msg
);
1968 error_setg(errp
, QERR_QGA_COMMAND_FAILED
, gerr
->message
);
1973 g_free(rawpasswddata
);
1976 GuestMemoryBlockList
*qmp_guest_get_memory_blocks(Error
**errp
)
1978 error_setg(errp
, QERR_UNSUPPORTED
);
1982 GuestMemoryBlockResponseList
*
1983 qmp_guest_set_memory_blocks(GuestMemoryBlockList
*mem_blks
, Error
**errp
)
1985 error_setg(errp
, QERR_UNSUPPORTED
);
1989 GuestMemoryBlockInfo
*qmp_guest_get_memory_block_info(Error
**errp
)
1991 error_setg(errp
, QERR_UNSUPPORTED
);
1995 /* add unsupported commands to the list of blocked RPCs */
1996 GList
*ga_command_init_blockedrpcs(GList
*blockedrpcs
)
1998 const char *list_unsupported
[] = {
1999 "guest-suspend-hybrid",
2001 "guest-get-memory-blocks", "guest-set-memory-blocks",
2002 "guest-get-memory-block-size", "guest-get-memory-block-info",
2004 char **p
= (char **)list_unsupported
;
2007 blockedrpcs
= g_list_append(blockedrpcs
, g_strdup(*p
++));
2010 if (!vss_init(true)) {
2011 g_debug("vss_init failed, vss commands are going to be disabled");
2012 const char *list
[] = {
2013 "guest-get-fsinfo", "guest-fsfreeze-status",
2014 "guest-fsfreeze-freeze", "guest-fsfreeze-thaw", NULL
};
2018 blockedrpcs
= g_list_append(blockedrpcs
, g_strdup(*p
++));
2025 /* register init/cleanup routines for stateful command groups */
2026 void ga_command_state_init(GAState
*s
, GACommandState
*cs
)
2028 if (!vss_initialized()) {
2029 ga_command_state_add(cs
, NULL
, guest_fsfreeze_cleanup
);
2033 /* MINGW is missing two fields: IncomingFrames & OutgoingFrames */
2034 typedef struct _GA_WTSINFOA
{
2035 WTS_CONNECTSTATE_CLASS State
;
2037 DWORD IncomingBytes
;
2038 DWORD OutgoingBytes
;
2039 DWORD IncomingFrames
;
2040 DWORD OutgoingFrames
;
2041 DWORD IncomingCompressedBytes
;
2042 DWORD OutgoingCompressedBy
;
2043 CHAR WinStationName
[WINSTATIONNAME_LENGTH
];
2044 CHAR Domain
[DOMAIN_LENGTH
];
2045 CHAR UserName
[USERNAME_LENGTH
+ 1];
2046 LARGE_INTEGER ConnectTime
;
2047 LARGE_INTEGER DisconnectTime
;
2048 LARGE_INTEGER LastInputTime
;
2049 LARGE_INTEGER LogonTime
;
2050 LARGE_INTEGER CurrentTime
;
2054 GuestUserList
*qmp_guest_get_users(Error
**errp
)
2056 #define QGA_NANOSECONDS 10000000
2058 GHashTable
*cache
= NULL
;
2059 GuestUserList
*head
= NULL
, **tail
= &head
;
2061 DWORD buffer_size
= 0, count
= 0, i
= 0;
2062 GA_WTSINFOA
*info
= NULL
;
2063 WTS_SESSION_INFOA
*entries
= NULL
;
2064 GuestUser
*user
= NULL
;
2065 gpointer value
= NULL
;
2067 double login_time
= 0;
2069 cache
= g_hash_table_new(g_str_hash
, g_str_equal
);
2071 if (WTSEnumerateSessionsA(NULL
, 0, 1, &entries
, &count
)) {
2072 for (i
= 0; i
< count
; ++i
) {
2075 if (WTSQuerySessionInformationA(
2077 entries
[i
].SessionId
,
2083 if (strlen(info
->UserName
) == 0) {
2084 WTSFreeMemory(info
);
2088 login
= info
->LogonTime
.QuadPart
;
2089 login
-= W32_FT_OFFSET
;
2090 login_time
= ((double)login
) / QGA_NANOSECONDS
;
2092 if (g_hash_table_contains(cache
, info
->UserName
)) {
2093 value
= g_hash_table_lookup(cache
, info
->UserName
);
2094 user
= (GuestUser
*)value
;
2095 if (user
->login_time
> login_time
) {
2096 user
->login_time
= login_time
;
2099 user
= g_new0(GuestUser
, 1);
2101 user
->user
= g_strdup(info
->UserName
);
2102 user
->domain
= g_strdup(info
->Domain
);
2104 user
->login_time
= login_time
;
2106 g_hash_table_add(cache
, user
->user
);
2108 QAPI_LIST_APPEND(tail
, user
);
2111 WTSFreeMemory(info
);
2113 WTSFreeMemory(entries
);
2115 g_hash_table_destroy(cache
);
2119 typedef struct _ga_matrix_lookup_t
{
2122 char const *version
;
2123 char const *version_id
;
2124 } ga_matrix_lookup_t
;
2126 static ga_matrix_lookup_t
const WIN_VERSION_MATRIX
[2][7] = {
2128 /* Desktop editions */
2129 { 5, 0, "Microsoft Windows 2000", "2000"},
2130 { 5, 1, "Microsoft Windows XP", "xp"},
2131 { 6, 0, "Microsoft Windows Vista", "vista"},
2132 { 6, 1, "Microsoft Windows 7" "7"},
2133 { 6, 2, "Microsoft Windows 8", "8"},
2134 { 6, 3, "Microsoft Windows 8.1", "8.1"},
2137 /* Server editions */
2138 { 5, 2, "Microsoft Windows Server 2003", "2003"},
2139 { 6, 0, "Microsoft Windows Server 2008", "2008"},
2140 { 6, 1, "Microsoft Windows Server 2008 R2", "2008r2"},
2141 { 6, 2, "Microsoft Windows Server 2012", "2012"},
2142 { 6, 3, "Microsoft Windows Server 2012 R2", "2012r2"},
2148 typedef struct _ga_win_10_0_t
{
2150 char const *version
;
2151 char const *version_id
;
2154 static ga_win_10_0_t
const WIN_10_0_SERVER_VERSION_MATRIX
[4] = {
2155 {14393, "Microsoft Windows Server 2016", "2016"},
2156 {17763, "Microsoft Windows Server 2019", "2019"},
2157 {20344, "Microsoft Windows Server 2022", "2022"},
2161 static ga_win_10_0_t
const WIN_10_0_CLIENT_VERSION_MATRIX
[3] = {
2162 {10240, "Microsoft Windows 10", "10"},
2163 {22000, "Microsoft Windows 11", "11"},
2167 static void ga_get_win_version(RTL_OSVERSIONINFOEXW
*info
, Error
**errp
)
2169 typedef NTSTATUS(WINAPI
*rtl_get_version_t
)(
2170 RTL_OSVERSIONINFOEXW
*os_version_info_ex
);
2172 info
->dwOSVersionInfoSize
= sizeof(RTL_OSVERSIONINFOEXW
);
2174 HMODULE module
= GetModuleHandle("ntdll");
2175 PVOID fun
= GetProcAddress(module
, "RtlGetVersion");
2177 error_setg(errp
, QERR_QGA_COMMAND_FAILED
,
2178 "Failed to get address of RtlGetVersion");
2182 rtl_get_version_t rtl_get_version
= (rtl_get_version_t
)fun
;
2183 rtl_get_version(info
);
2187 static char *ga_get_win_name(OSVERSIONINFOEXW
const *os_version
, bool id
)
2189 DWORD major
= os_version
->dwMajorVersion
;
2190 DWORD minor
= os_version
->dwMinorVersion
;
2191 DWORD build
= os_version
->dwBuildNumber
;
2192 int tbl_idx
= (os_version
->wProductType
!= VER_NT_WORKSTATION
);
2193 ga_matrix_lookup_t
const *table
= WIN_VERSION_MATRIX
[tbl_idx
];
2194 ga_win_10_0_t
const *win_10_0_table
= tbl_idx
?
2195 WIN_10_0_SERVER_VERSION_MATRIX
: WIN_10_0_CLIENT_VERSION_MATRIX
;
2196 ga_win_10_0_t
const *win_10_0_version
= NULL
;
2197 while (table
->version
!= NULL
) {
2198 if (major
== 10 && minor
== 0) {
2199 while (win_10_0_table
->version
!= NULL
) {
2200 if (build
>= win_10_0_table
->first_build
) {
2201 win_10_0_version
= win_10_0_table
;
2205 if (win_10_0_table
) {
2207 return g_strdup(win_10_0_version
->version_id
);
2209 return g_strdup(win_10_0_version
->version
);
2212 } else if (major
== table
->major
&& minor
== table
->minor
) {
2214 return g_strdup(table
->version_id
);
2216 return g_strdup(table
->version
);
2221 slog("failed to lookup Windows version: major=%lu, minor=%lu",
2223 return g_strdup("N/A");
2226 static char *ga_get_win_product_name(Error
**errp
)
2228 HKEY key
= INVALID_HANDLE_VALUE
;
2230 char *result
= g_malloc0(size
);
2231 LONG err
= ERROR_SUCCESS
;
2233 err
= RegOpenKeyA(HKEY_LOCAL_MACHINE
,
2234 "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion",
2236 if (err
!= ERROR_SUCCESS
) {
2237 error_setg_win32(errp
, err
, "failed to open registry key");
2242 err
= RegQueryValueExA(key
, "ProductName", NULL
, NULL
,
2243 (LPBYTE
)result
, &size
);
2244 if (err
== ERROR_MORE_DATA
) {
2245 slog("ProductName longer than expected (%lu bytes), retrying",
2250 result
= g_malloc0(size
);
2251 err
= RegQueryValueExA(key
, "ProductName", NULL
, NULL
,
2252 (LPBYTE
)result
, &size
);
2255 if (err
!= ERROR_SUCCESS
) {
2256 error_setg_win32(errp
, err
, "failed to retrive ProductName");
2264 if (key
!= INVALID_HANDLE_VALUE
) {
2271 static char *ga_get_current_arch(void)
2274 GetNativeSystemInfo(&info
);
2275 char *result
= NULL
;
2276 switch (info
.wProcessorArchitecture
) {
2277 case PROCESSOR_ARCHITECTURE_AMD64
:
2278 result
= g_strdup("x86_64");
2280 case PROCESSOR_ARCHITECTURE_ARM
:
2281 result
= g_strdup("arm");
2283 case PROCESSOR_ARCHITECTURE_IA64
:
2284 result
= g_strdup("ia64");
2286 case PROCESSOR_ARCHITECTURE_INTEL
:
2287 result
= g_strdup("x86");
2289 case PROCESSOR_ARCHITECTURE_UNKNOWN
:
2291 slog("unknown processor architecture 0x%0x",
2292 info
.wProcessorArchitecture
);
2293 result
= g_strdup("unknown");
2299 GuestOSInfo
*qmp_guest_get_osinfo(Error
**errp
)
2301 Error
*local_err
= NULL
;
2302 OSVERSIONINFOEXW os_version
= {0};
2307 ga_get_win_version(&os_version
, &local_err
);
2309 error_propagate(errp
, local_err
);
2313 server
= os_version
.wProductType
!= VER_NT_WORKSTATION
;
2314 product_name
= ga_get_win_product_name(errp
);
2315 if (product_name
== NULL
) {
2319 info
= g_new0(GuestOSInfo
, 1);
2321 info
->kernel_version
= g_strdup_printf("%lu.%lu",
2322 os_version
.dwMajorVersion
,
2323 os_version
.dwMinorVersion
);
2324 info
->kernel_release
= g_strdup_printf("%lu",
2325 os_version
.dwBuildNumber
);
2326 info
->machine
= ga_get_current_arch();
2328 info
->id
= g_strdup("mswindows");
2329 info
->name
= g_strdup("Microsoft Windows");
2330 info
->pretty_name
= product_name
;
2331 info
->version
= ga_get_win_name(&os_version
, false);
2332 info
->version_id
= ga_get_win_name(&os_version
, true);
2333 info
->variant
= g_strdup(server
? "server" : "client");
2334 info
->variant_id
= g_strdup(server
? "server" : "client");
2340 * Safely get device property. Returned strings are using wide characters.
2341 * Caller is responsible for freeing the buffer.
2343 static LPBYTE
cm_get_property(DEVINST devInst
, const DEVPROPKEY
*propName
,
2344 PDEVPROPTYPE propType
)
2347 g_autofree LPBYTE buffer
= NULL
;
2348 ULONG buffer_len
= 0;
2350 /* First query for needed space */
2351 cr
= CM_Get_DevNode_PropertyW(devInst
, propName
, propType
,
2352 buffer
, &buffer_len
, 0);
2353 if (cr
!= CR_SUCCESS
&& cr
!= CR_BUFFER_SMALL
) {
2355 slog("failed to get property size, error=0x%lx", cr
);
2358 buffer
= g_new0(BYTE
, buffer_len
+ 1);
2359 cr
= CM_Get_DevNode_PropertyW(devInst
, propName
, propType
,
2360 buffer
, &buffer_len
, 0);
2361 if (cr
!= CR_SUCCESS
) {
2362 slog("failed to get device property, error=0x%lx", cr
);
2365 return g_steal_pointer(&buffer
);
2368 static GStrv
ga_get_hardware_ids(DEVINST devInstance
)
2370 GArray
*values
= NULL
;
2371 DEVPROPTYPE cm_type
;
2373 g_autofree LPWSTR property
= (LPWSTR
)cm_get_property(devInstance
,
2374 &qga_DEVPKEY_Device_HardwareIds
, &cm_type
);
2375 if (property
== NULL
) {
2376 slog("failed to get hardware IDs");
2379 if (*property
== '\0') {
2383 values
= g_array_new(TRUE
, TRUE
, sizeof(gchar
*));
2384 for (id
= property
; '\0' != *id
; id
+= lstrlenW(id
) + 1) {
2385 gchar
*id8
= g_utf16_to_utf8(id
, -1, NULL
, NULL
, NULL
);
2386 g_array_append_val(values
, id8
);
2388 return (GStrv
)g_array_free(values
, FALSE
);
2392 * https://docs.microsoft.com/en-us/windows-hardware/drivers/install/identifiers-for-pci-devices
2394 #define DEVICE_PCI_RE "PCI\\\\VEN_(1AF4|1B36)&DEV_([0-9A-B]{4})(&|$)"
2396 GuestDeviceInfoList
*qmp_guest_get_devices(Error
**errp
)
2398 GuestDeviceInfoList
*head
= NULL
, **tail
= &head
;
2399 HDEVINFO dev_info
= INVALID_HANDLE_VALUE
;
2400 SP_DEVINFO_DATA dev_info_data
;
2402 GError
*gerr
= NULL
;
2403 g_autoptr(GRegex
) device_pci_re
= NULL
;
2404 DEVPROPTYPE cm_type
;
2406 device_pci_re
= g_regex_new(DEVICE_PCI_RE
,
2407 G_REGEX_ANCHORED
| G_REGEX_OPTIMIZE
, 0,
2409 g_assert(device_pci_re
!= NULL
);
2411 dev_info_data
.cbSize
= sizeof(SP_DEVINFO_DATA
);
2412 dev_info
= SetupDiGetClassDevs(0, 0, 0, DIGCF_PRESENT
| DIGCF_ALLCLASSES
);
2413 if (dev_info
== INVALID_HANDLE_VALUE
) {
2414 error_setg(errp
, "failed to get device tree");
2418 slog("enumerating devices");
2419 for (i
= 0; SetupDiEnumDeviceInfo(dev_info
, i
, &dev_info_data
); i
++) {
2421 g_autofree LPWSTR name
= NULL
;
2422 g_autofree LPFILETIME date
= NULL
;
2423 g_autofree LPWSTR version
= NULL
;
2424 g_auto(GStrv
) hw_ids
= NULL
;
2425 g_autoptr(GuestDeviceInfo
) device
= g_new0(GuestDeviceInfo
, 1);
2426 g_autofree
char *vendor_id
= NULL
;
2427 g_autofree
char *device_id
= NULL
;
2429 name
= (LPWSTR
)cm_get_property(dev_info_data
.DevInst
,
2430 &qga_DEVPKEY_NAME
, &cm_type
);
2432 slog("failed to get device description");
2435 device
->driver_name
= g_utf16_to_utf8(name
, -1, NULL
, NULL
, NULL
);
2436 if (device
->driver_name
== NULL
) {
2437 error_setg(errp
, "conversion to utf8 failed (driver name)");
2440 slog("querying device: %s", device
->driver_name
);
2441 hw_ids
= ga_get_hardware_ids(dev_info_data
.DevInst
);
2442 if (hw_ids
== NULL
) {
2445 for (j
= 0; hw_ids
[j
] != NULL
; j
++) {
2446 g_autoptr(GMatchInfo
) match_info
;
2447 GuestDeviceIdPCI
*id
;
2448 if (!g_regex_match(device_pci_re
, hw_ids
[j
], 0, &match_info
)) {
2453 vendor_id
= g_match_info_fetch(match_info
, 1);
2454 device_id
= g_match_info_fetch(match_info
, 2);
2456 device
->id
= g_new0(GuestDeviceId
, 1);
2457 device
->id
->type
= GUEST_DEVICE_TYPE_PCI
;
2458 id
= &device
->id
->u
.pci
;
2459 id
->vendor_id
= g_ascii_strtoull(vendor_id
, NULL
, 16);
2460 id
->device_id
= g_ascii_strtoull(device_id
, NULL
, 16);
2468 version
= (LPWSTR
)cm_get_property(dev_info_data
.DevInst
,
2469 &qga_DEVPKEY_Device_DriverVersion
, &cm_type
);
2470 if (version
== NULL
) {
2471 slog("failed to get driver version");
2474 device
->driver_version
= g_utf16_to_utf8(version
, -1, NULL
,
2476 if (device
->driver_version
== NULL
) {
2477 error_setg(errp
, "conversion to utf8 failed (driver version)");
2481 date
= (LPFILETIME
)cm_get_property(dev_info_data
.DevInst
,
2482 &qga_DEVPKEY_Device_DriverDate
, &cm_type
);
2484 slog("failed to get driver date");
2487 device
->driver_date
= filetime_to_ns(date
);
2488 device
->has_driver_date
= true;
2490 slog("driver: %s\ndriver version: %" PRId64
",%s\n",
2491 device
->driver_name
, device
->driver_date
,
2492 device
->driver_version
);
2493 QAPI_LIST_APPEND(tail
, g_steal_pointer(&device
));
2496 if (dev_info
!= INVALID_HANDLE_VALUE
) {
2497 SetupDiDestroyDeviceInfoList(dev_info
);
2502 char *qga_get_host_name(Error
**errp
)
2504 wchar_t tmp
[MAX_COMPUTERNAME_LENGTH
+ 1];
2505 DWORD size
= G_N_ELEMENTS(tmp
);
2507 if (GetComputerNameW(tmp
, &size
) == 0) {
2508 error_setg_win32(errp
, GetLastError(), "failed close handle");
2512 return g_utf16_to_utf8(tmp
, size
, NULL
, NULL
, NULL
);
2515 GuestDiskStatsInfoList
*qmp_guest_get_diskstats(Error
**errp
)
2517 error_setg(errp
, QERR_UNSUPPORTED
);
2521 GuestCpuStatsList
*qmp_guest_get_cpustats(Error
**errp
)
2523 error_setg(errp
, QERR_UNSUPPORTED
);