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"
21 #ifdef CONFIG_QGA_NTDDSCSI
28 #include <devpropdef.h>
33 #include "guest-agent-core.h"
34 #include "vss-win32.h"
35 #include "qga-qapi-commands.h"
36 #include "qapi/error.h"
37 #include "qapi/qmp/qerror.h"
38 #include "qemu/queue.h"
39 #include "qemu/host-utils.h"
40 #include "qemu/base64.h"
41 #include "commands-common.h"
44 * The following should be in devpkey.h, but it isn't. The key names were
45 * prefixed to avoid (future) name clashes. Once the definitions get into
46 * mingw the following lines can be removed.
48 DEFINE_DEVPROPKEY(qga_DEVPKEY_NAME
, 0xb725f130, 0x47ef, 0x101a, 0xa5,
49 0xf1, 0x02, 0x60, 0x8c, 0x9e, 0xeb, 0xac, 10);
50 /* DEVPROP_TYPE_STRING */
51 DEFINE_DEVPROPKEY(qga_DEVPKEY_Device_HardwareIds
, 0xa45c254e, 0xdf1c,
52 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 3);
53 /* DEVPROP_TYPE_STRING_LIST */
54 DEFINE_DEVPROPKEY(qga_DEVPKEY_Device_DriverDate
, 0xa8b865dd, 0x2e3d,
55 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 2);
56 /* DEVPROP_TYPE_FILETIME */
57 DEFINE_DEVPROPKEY(qga_DEVPKEY_Device_DriverVersion
, 0xa8b865dd, 0x2e3d,
58 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 3);
59 /* DEVPROP_TYPE_STRING */
60 /* The CM_Get_DevNode_PropertyW prototype is only sometimes in cfgmgr32.h */
61 #ifndef CM_Get_DevNode_Property
62 #pragma GCC diagnostic push
63 #pragma GCC diagnostic ignored "-Wredundant-decls"
64 CMAPI CONFIGRET WINAPI
CM_Get_DevNode_PropertyW(
66 CONST DEVPROPKEY
* PropertyKey
,
67 DEVPROPTYPE
* PropertyType
,
69 PULONG PropertyBufferSize
,
72 #define CM_Get_DevNode_Property CM_Get_DevNode_PropertyW
73 #pragma GCC diagnostic pop
76 #ifndef SHTDN_REASON_FLAG_PLANNED
77 #define SHTDN_REASON_FLAG_PLANNED 0x80000000
80 /* multiple of 100 nanoseconds elapsed between windows baseline
81 * (1/1/1601) and Unix Epoch (1/1/1970), accounting for leap years */
82 #define W32_FT_OFFSET (10000000ULL * 60 * 60 * 24 * \
83 (365 * (1970 - 1601) + \
84 (1970 - 1601) / 4 - 3))
86 #define INVALID_SET_FILE_POINTER ((DWORD)-1)
88 struct GuestFileHandle
{
91 QTAILQ_ENTRY(GuestFileHandle
) next
;
95 QTAILQ_HEAD(, GuestFileHandle
) filehandles
;
96 } guest_file_state
= {
97 .filehandles
= QTAILQ_HEAD_INITIALIZER(guest_file_state
.filehandles
),
100 #define FILE_GENERIC_APPEND (FILE_GENERIC_WRITE & ~FILE_WRITE_DATA)
102 typedef struct OpenFlags
{
104 DWORD desired_access
;
105 DWORD creation_disposition
;
107 static OpenFlags guest_file_open_modes
[] = {
108 {"r", GENERIC_READ
, OPEN_EXISTING
},
109 {"rb", GENERIC_READ
, OPEN_EXISTING
},
110 {"w", GENERIC_WRITE
, CREATE_ALWAYS
},
111 {"wb", GENERIC_WRITE
, CREATE_ALWAYS
},
112 {"a", FILE_GENERIC_APPEND
, OPEN_ALWAYS
},
113 {"r+", GENERIC_WRITE
|GENERIC_READ
, OPEN_EXISTING
},
114 {"rb+", GENERIC_WRITE
|GENERIC_READ
, OPEN_EXISTING
},
115 {"r+b", GENERIC_WRITE
|GENERIC_READ
, OPEN_EXISTING
},
116 {"w+", GENERIC_WRITE
|GENERIC_READ
, CREATE_ALWAYS
},
117 {"wb+", GENERIC_WRITE
|GENERIC_READ
, CREATE_ALWAYS
},
118 {"w+b", GENERIC_WRITE
|GENERIC_READ
, CREATE_ALWAYS
},
119 {"a+", FILE_GENERIC_APPEND
|GENERIC_READ
, OPEN_ALWAYS
},
120 {"ab+", FILE_GENERIC_APPEND
|GENERIC_READ
, OPEN_ALWAYS
},
121 {"a+b", FILE_GENERIC_APPEND
|GENERIC_READ
, OPEN_ALWAYS
}
124 #define debug_error(msg) do { \
125 char *suffix = g_win32_error_message(GetLastError()); \
126 g_debug("%s: %s", (msg), suffix); \
130 static OpenFlags
*find_open_flag(const char *mode_str
)
135 for (mode
= 0; mode
< ARRAY_SIZE(guest_file_open_modes
); ++mode
) {
136 OpenFlags
*flags
= guest_file_open_modes
+ mode
;
138 if (strcmp(flags
->forms
, mode_str
) == 0) {
143 error_setg(errp
, "invalid file open mode '%s'", mode_str
);
147 static int64_t guest_file_handle_add(HANDLE fh
, Error
**errp
)
149 GuestFileHandle
*gfh
;
152 handle
= ga_get_fd_handle(ga_state
, errp
);
156 gfh
= g_new0(GuestFileHandle
, 1);
159 QTAILQ_INSERT_TAIL(&guest_file_state
.filehandles
, gfh
, next
);
164 GuestFileHandle
*guest_file_handle_find(int64_t id
, Error
**errp
)
166 GuestFileHandle
*gfh
;
167 QTAILQ_FOREACH(gfh
, &guest_file_state
.filehandles
, next
) {
172 error_setg(errp
, "handle '%" PRId64
"' has not been found", id
);
176 static void handle_set_nonblocking(HANDLE fh
)
178 DWORD file_type
, pipe_state
;
179 file_type
= GetFileType(fh
);
180 if (file_type
!= FILE_TYPE_PIPE
) {
183 /* If file_type == FILE_TYPE_PIPE, according to MSDN
184 * the specified file is socket or named pipe */
185 if (!GetNamedPipeHandleState(fh
, &pipe_state
, NULL
,
186 NULL
, NULL
, NULL
, 0)) {
189 /* The fd is named pipe fd */
190 if (pipe_state
& PIPE_NOWAIT
) {
194 pipe_state
|= PIPE_NOWAIT
;
195 SetNamedPipeHandleState(fh
, &pipe_state
, NULL
, NULL
);
198 int64_t qmp_guest_file_open(const char *path
, bool has_mode
,
199 const char *mode
, Error
**errp
)
203 HANDLE templ_file
= NULL
;
204 DWORD share_mode
= FILE_SHARE_READ
;
205 DWORD flags_and_attr
= FILE_ATTRIBUTE_NORMAL
;
206 LPSECURITY_ATTRIBUTES sa_attr
= NULL
;
207 OpenFlags
*guest_flags
;
209 wchar_t *w_path
= NULL
;
214 slog("guest-file-open called, filepath: %s, mode: %s", path
, mode
);
215 guest_flags
= find_open_flag(mode
);
216 if (guest_flags
== NULL
) {
217 error_setg(errp
, "invalid file open mode");
221 w_path
= g_utf8_to_utf16(path
, -1, NULL
, NULL
, &gerr
);
226 fh
= CreateFileW(w_path
, guest_flags
->desired_access
, share_mode
, sa_attr
,
227 guest_flags
->creation_disposition
, flags_and_attr
,
229 if (fh
== INVALID_HANDLE_VALUE
) {
230 error_setg_win32(errp
, GetLastError(), "failed to open file '%s'",
235 /* set fd non-blocking to avoid common use cases (like reading from a
236 * named pipe) from hanging the agent
238 handle_set_nonblocking(fh
);
240 fd
= guest_file_handle_add(fh
, errp
);
243 error_setg(errp
, "failed to add handle to qmp handle table");
247 slog("guest-file-open, handle: % " PRId64
, fd
);
251 error_setg(errp
, QERR_QGA_COMMAND_FAILED
, gerr
->message
);
258 void qmp_guest_file_close(int64_t handle
, Error
**errp
)
261 GuestFileHandle
*gfh
= guest_file_handle_find(handle
, errp
);
262 slog("guest-file-close called, handle: %" PRId64
, handle
);
266 ret
= CloseHandle(gfh
->fh
);
268 error_setg_win32(errp
, GetLastError(), "failed close handle");
272 QTAILQ_REMOVE(&guest_file_state
.filehandles
, gfh
, next
);
276 static void acquire_privilege(const char *name
, Error
**errp
)
279 TOKEN_PRIVILEGES priv
;
280 Error
*local_err
= NULL
;
282 if (OpenProcessToken(GetCurrentProcess(),
283 TOKEN_ADJUST_PRIVILEGES
|TOKEN_QUERY
, &token
))
285 if (!LookupPrivilegeValue(NULL
, name
, &priv
.Privileges
[0].Luid
)) {
286 error_setg(&local_err
, QERR_QGA_COMMAND_FAILED
,
287 "no luid for requested privilege");
291 priv
.PrivilegeCount
= 1;
292 priv
.Privileges
[0].Attributes
= SE_PRIVILEGE_ENABLED
;
294 if (!AdjustTokenPrivileges(token
, FALSE
, &priv
, 0, NULL
, 0)) {
295 error_setg(&local_err
, QERR_QGA_COMMAND_FAILED
,
296 "unable to acquire requested privilege");
301 error_setg(&local_err
, QERR_QGA_COMMAND_FAILED
,
302 "failed to open privilege token");
309 error_propagate(errp
, local_err
);
312 static void execute_async(DWORD
WINAPI (*func
)(LPVOID
), LPVOID opaque
,
315 HANDLE thread
= CreateThread(NULL
, 0, func
, opaque
, 0, NULL
);
317 error_setg(errp
, QERR_QGA_COMMAND_FAILED
,
318 "failed to dispatch asynchronous command");
322 void qmp_guest_shutdown(bool has_mode
, const char *mode
, Error
**errp
)
324 Error
*local_err
= NULL
;
325 UINT shutdown_flag
= EWX_FORCE
;
327 slog("guest-shutdown called, mode: %s", mode
);
329 if (!has_mode
|| strcmp(mode
, "powerdown") == 0) {
330 shutdown_flag
|= EWX_POWEROFF
;
331 } else if (strcmp(mode
, "halt") == 0) {
332 shutdown_flag
|= EWX_SHUTDOWN
;
333 } else if (strcmp(mode
, "reboot") == 0) {
334 shutdown_flag
|= EWX_REBOOT
;
336 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "mode",
337 "halt|powerdown|reboot");
341 /* Request a shutdown privilege, but try to shut down the system
343 acquire_privilege(SE_SHUTDOWN_NAME
, &local_err
);
345 error_propagate(errp
, local_err
);
349 if (!ExitWindowsEx(shutdown_flag
, SHTDN_REASON_FLAG_PLANNED
)) {
350 g_autofree gchar
*emsg
= g_win32_error_message(GetLastError());
351 slog("guest-shutdown failed: %s", emsg
);
352 error_setg_win32(errp
, GetLastError(), "guest-shutdown failed");
356 GuestFileRead
*guest_file_read_unsafe(GuestFileHandle
*gfh
,
357 int64_t count
, Error
**errp
)
359 GuestFileRead
*read_data
= NULL
;
365 buf
= g_malloc0(count
+ 1);
366 is_ok
= ReadFile(fh
, buf
, count
, &read_count
, NULL
);
368 error_setg_win32(errp
, GetLastError(), "failed to read file");
371 read_data
= g_new0(GuestFileRead
, 1);
372 read_data
->count
= (size_t)read_count
;
373 read_data
->eof
= read_count
== 0;
375 if (read_count
!= 0) {
376 read_data
->buf_b64
= g_base64_encode(buf
, read_count
);
384 GuestFileWrite
*qmp_guest_file_write(int64_t handle
, const char *buf_b64
,
385 bool has_count
, int64_t count
,
388 GuestFileWrite
*write_data
= NULL
;
393 GuestFileHandle
*gfh
= guest_file_handle_find(handle
, errp
);
400 buf
= qbase64_decode(buf_b64
, -1, &buf_len
, errp
);
407 } else if (count
< 0 || count
> buf_len
) {
408 error_setg(errp
, "value '%" PRId64
409 "' is invalid for argument count", count
);
413 is_ok
= WriteFile(fh
, buf
, count
, &write_count
, NULL
);
415 error_setg_win32(errp
, GetLastError(), "failed to write to file");
416 slog("guest-file-write-failed, handle: %" PRId64
, handle
);
418 write_data
= g_new0(GuestFileWrite
, 1);
419 write_data
->count
= (size_t) write_count
;
427 GuestFileSeek
*qmp_guest_file_seek(int64_t handle
, int64_t offset
,
428 GuestFileWhence
*whence_code
,
431 GuestFileHandle
*gfh
;
432 GuestFileSeek
*seek_data
;
434 LARGE_INTEGER new_pos
, off_pos
;
435 off_pos
.QuadPart
= offset
;
440 gfh
= guest_file_handle_find(handle
, errp
);
445 /* We stupidly exposed 'whence':'int' in our qapi */
446 whence
= ga_parse_whence(whence_code
, &err
);
448 error_propagate(errp
, err
);
453 res
= SetFilePointerEx(fh
, off_pos
, &new_pos
, whence
);
455 error_setg_win32(errp
, GetLastError(), "failed to seek file");
458 seek_data
= g_new0(GuestFileSeek
, 1);
459 seek_data
->position
= new_pos
.QuadPart
;
463 void qmp_guest_file_flush(int64_t handle
, Error
**errp
)
466 GuestFileHandle
*gfh
= guest_file_handle_find(handle
, errp
);
472 if (!FlushFileBuffers(fh
)) {
473 error_setg_win32(errp
, GetLastError(), "failed to flush file");
477 #ifdef CONFIG_QGA_NTDDSCSI
479 static GuestDiskBusType win2qemu
[] = {
480 [BusTypeUnknown
] = GUEST_DISK_BUS_TYPE_UNKNOWN
,
481 [BusTypeScsi
] = GUEST_DISK_BUS_TYPE_SCSI
,
482 [BusTypeAtapi
] = GUEST_DISK_BUS_TYPE_IDE
,
483 [BusTypeAta
] = GUEST_DISK_BUS_TYPE_IDE
,
484 [BusType1394
] = GUEST_DISK_BUS_TYPE_IEEE1394
,
485 [BusTypeSsa
] = GUEST_DISK_BUS_TYPE_SSA
,
486 [BusTypeFibre
] = GUEST_DISK_BUS_TYPE_SSA
,
487 [BusTypeUsb
] = GUEST_DISK_BUS_TYPE_USB
,
488 [BusTypeRAID
] = GUEST_DISK_BUS_TYPE_RAID
,
489 [BusTypeiScsi
] = GUEST_DISK_BUS_TYPE_ISCSI
,
490 [BusTypeSas
] = GUEST_DISK_BUS_TYPE_SAS
,
491 [BusTypeSata
] = GUEST_DISK_BUS_TYPE_SATA
,
492 [BusTypeSd
] = GUEST_DISK_BUS_TYPE_SD
,
493 [BusTypeMmc
] = GUEST_DISK_BUS_TYPE_MMC
,
494 #if (_WIN32_WINNT >= 0x0601)
495 [BusTypeVirtual
] = GUEST_DISK_BUS_TYPE_VIRTUAL
,
496 [BusTypeFileBackedVirtual
] = GUEST_DISK_BUS_TYPE_FILE_BACKED_VIRTUAL
,
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 GuestPCIAddress
*get_pci_info(int number
, Error
**errp
)
518 SP_DEVINFO_DATA dev_info_data
;
519 SP_DEVICE_INTERFACE_DATA dev_iface_data
;
522 GuestPCIAddress
*pci
= NULL
;
523 bool partial_pci
= false;
525 pci
= g_malloc0(sizeof(*pci
));
531 dev_info
= SetupDiGetClassDevs(&GUID_DEVINTERFACE_DISK
, 0, 0,
532 DIGCF_PRESENT
| DIGCF_DEVICEINTERFACE
);
533 if (dev_info
== INVALID_HANDLE_VALUE
) {
534 error_setg_win32(errp
, GetLastError(), "failed to get devices tree");
538 g_debug("enumerating devices");
539 dev_info_data
.cbSize
= sizeof(SP_DEVINFO_DATA
);
540 dev_iface_data
.cbSize
= sizeof(SP_DEVICE_INTERFACE_DATA
);
541 for (i
= 0; SetupDiEnumDeviceInfo(dev_info
, i
, &dev_info_data
); i
++) {
542 PSP_DEVICE_INTERFACE_DETAIL_DATA pdev_iface_detail_data
= NULL
;
543 STORAGE_DEVICE_NUMBER sdn
;
544 char *parent_dev_id
= NULL
;
545 HDEVINFO parent_dev_info
;
546 SP_DEVINFO_DATA parent_dev_info_data
;
550 g_debug("getting device path");
551 if (SetupDiEnumDeviceInterfaces(dev_info
, &dev_info_data
,
552 &GUID_DEVINTERFACE_DISK
, 0,
554 while (!SetupDiGetDeviceInterfaceDetail(dev_info
, &dev_iface_data
,
555 pdev_iface_detail_data
,
558 if (GetLastError() == ERROR_INSUFFICIENT_BUFFER
) {
559 pdev_iface_detail_data
= g_malloc(size
);
560 pdev_iface_detail_data
->cbSize
=
561 sizeof(*pdev_iface_detail_data
);
563 error_setg_win32(errp
, GetLastError(),
564 "failed to get device interfaces");
569 dev_file
= CreateFile(pdev_iface_detail_data
->DevicePath
, 0,
570 FILE_SHARE_READ
, NULL
, OPEN_EXISTING
, 0,
572 g_free(pdev_iface_detail_data
);
574 if (!DeviceIoControl(dev_file
, IOCTL_STORAGE_GET_DEVICE_NUMBER
,
575 NULL
, 0, &sdn
, sizeof(sdn
), &size
, NULL
)) {
576 CloseHandle(dev_file
);
577 error_setg_win32(errp
, GetLastError(),
578 "failed to get device slot number");
582 CloseHandle(dev_file
);
583 if (sdn
.DeviceNumber
!= number
) {
587 error_setg_win32(errp
, GetLastError(),
588 "failed to get device interfaces");
592 g_debug("found device slot %d. Getting storage controller", number
);
595 DEVINST dev_inst
, parent_dev_inst
;
596 ULONG dev_id_size
= 0;
599 while (!SetupDiGetDeviceInstanceId(dev_info
, &dev_info_data
,
600 parent_dev_id
, size
, &size
)) {
601 if (GetLastError() == ERROR_INSUFFICIENT_BUFFER
) {
602 parent_dev_id
= g_malloc(size
);
604 error_setg_win32(errp
, GetLastError(),
605 "failed to get device instance ID");
611 * CM API used here as opposed to
612 * SetupDiGetDeviceProperty(..., DEVPKEY_Device_Parent, ...)
613 * which exports are only available in mingw-w64 6+
615 cr
= CM_Locate_DevInst(&dev_inst
, parent_dev_id
, 0);
616 if (cr
!= CR_SUCCESS
) {
617 g_error("CM_Locate_DevInst failed with code %lx", cr
);
618 error_setg_win32(errp
, GetLastError(),
619 "failed to get device instance");
622 cr
= CM_Get_Parent(&parent_dev_inst
, dev_inst
, 0);
623 if (cr
!= CR_SUCCESS
) {
624 g_error("CM_Get_Parent failed with code %lx", cr
);
625 error_setg_win32(errp
, GetLastError(),
626 "failed to get parent device instance");
630 cr
= CM_Get_Device_ID_Size(&dev_id_size
, parent_dev_inst
, 0);
631 if (cr
!= CR_SUCCESS
) {
632 g_error("CM_Get_Device_ID_Size failed with code %lx", cr
);
633 error_setg_win32(errp
, GetLastError(),
634 "failed to get parent device ID length");
639 if (dev_id_size
> size
) {
640 g_free(parent_dev_id
);
641 parent_dev_id
= g_malloc(dev_id_size
);
644 cr
= CM_Get_Device_ID(parent_dev_inst
, parent_dev_id
, dev_id_size
,
646 if (cr
!= CR_SUCCESS
) {
647 g_error("CM_Get_Device_ID failed with code %lx", cr
);
648 error_setg_win32(errp
, GetLastError(),
649 "failed to get parent device ID");
654 g_debug("querying storage controller %s for PCI information",
657 SetupDiGetClassDevs(&GUID_DEVINTERFACE_STORAGEPORT
, parent_dev_id
,
658 NULL
, DIGCF_PRESENT
| DIGCF_DEVICEINTERFACE
);
659 g_free(parent_dev_id
);
661 if (parent_dev_info
== INVALID_HANDLE_VALUE
) {
662 error_setg_win32(errp
, GetLastError(),
663 "failed to get parent device");
667 parent_dev_info_data
.cbSize
= sizeof(SP_DEVINFO_DATA
);
668 if (!SetupDiEnumDeviceInfo(parent_dev_info
, 0, &parent_dev_info_data
)) {
669 error_setg_win32(errp
, GetLastError(),
670 "failed to get parent device data");
675 SetupDiEnumDeviceInfo(parent_dev_info
, j
, &parent_dev_info_data
);
677 DWORD addr
, bus
, ui_slot
, type
;
681 * There is no need to allocate buffer in the next functions. The
682 * size is known and ULONG according to
683 * https://msdn.microsoft.com/en-us/library/windows/hardware/ff543095(v=vs.85).aspx
685 if (!SetupDiGetDeviceRegistryProperty(
686 parent_dev_info
, &parent_dev_info_data
, SPDRP_BUSNUMBER
,
687 &type
, (PBYTE
)&bus
, size
, NULL
)) {
688 debug_error("failed to get PCI bus");
694 * The function retrieves the device's address. This value will be
695 * transformed into device function and number
697 if (!SetupDiGetDeviceRegistryProperty(
698 parent_dev_info
, &parent_dev_info_data
, SPDRP_ADDRESS
,
699 &type
, (PBYTE
)&addr
, size
, NULL
)) {
700 debug_error("failed to get PCI address");
706 * This call returns UINumber of DEVICE_CAPABILITIES structure.
707 * This number is typically a user-perceived slot number.
709 if (!SetupDiGetDeviceRegistryProperty(
710 parent_dev_info
, &parent_dev_info_data
, SPDRP_UI_NUMBER
,
711 &type
, (PBYTE
)&ui_slot
, size
, NULL
)) {
712 debug_error("failed to get PCI slot");
718 * SetupApi gives us the same information as driver with
719 * IoGetDeviceProperty. According to Microsoft:
721 * FunctionNumber = (USHORT)((propertyAddress) & 0x0000FFFF)
722 * DeviceNumber = (USHORT)(((propertyAddress) >> 16) & 0x0000FFFF)
723 * SPDRP_ADDRESS is propertyAddress, so we do the same.
725 * https://docs.microsoft.com/en-us/windows/desktop/api/setupapi/nf-setupapi-setupdigetdeviceregistrypropertya
734 func
= ((int)addr
== -1) ? -1 : addr
& 0x0000FFFF;
735 slot
= ((int)addr
== -1) ? -1 : (addr
>> 16) & 0x0000FFFF;
736 if ((int)ui_slot
!= slot
) {
737 g_debug("mismatch with reported slot values: %d vs %d",
741 pci
->slot
= (int)ui_slot
;
742 pci
->function
= func
;
747 SetupDiDestroyDeviceInfoList(parent_dev_info
);
752 SetupDiDestroyDeviceInfoList(dev_info
);
757 static void get_disk_properties(HANDLE vol_h
, GuestDiskAddress
*disk
,
760 STORAGE_PROPERTY_QUERY query
;
761 STORAGE_DEVICE_DESCRIPTOR
*dev_desc
, buf
;
763 ULONG size
= sizeof(buf
);
766 query
.PropertyId
= StorageDeviceProperty
;
767 query
.QueryType
= PropertyStandardQuery
;
769 if (!DeviceIoControl(vol_h
, IOCTL_STORAGE_QUERY_PROPERTY
, &query
,
770 sizeof(STORAGE_PROPERTY_QUERY
), dev_desc
,
771 size
, &received
, NULL
)) {
772 error_setg_win32(errp
, GetLastError(), "failed to get bus type");
775 disk
->bus_type
= find_bus_type(dev_desc
->BusType
);
776 g_debug("bus type %d", disk
->bus_type
);
778 /* Query once more. Now with long enough buffer. */
779 size
= dev_desc
->Size
;
780 dev_desc
= g_malloc0(size
);
781 if (!DeviceIoControl(vol_h
, IOCTL_STORAGE_QUERY_PROPERTY
, &query
,
782 sizeof(STORAGE_PROPERTY_QUERY
), dev_desc
,
783 size
, &received
, NULL
)) {
784 error_setg_win32(errp
, GetLastError(), "failed to get serial number");
785 g_debug("failed to get serial number");
788 if (dev_desc
->SerialNumberOffset
> 0) {
792 if (dev_desc
->SerialNumberOffset
>= received
) {
793 error_setg(errp
, "failed to get serial number: offset outside the buffer");
794 g_debug("serial number offset outside the buffer");
797 serial
= (char *)dev_desc
+ dev_desc
->SerialNumberOffset
;
798 len
= received
- dev_desc
->SerialNumberOffset
;
799 g_debug("serial number \"%s\"", serial
);
801 disk
->serial
= g_strndup(serial
, len
);
802 disk
->has_serial
= true;
811 static void get_single_disk_info(int disk_number
,
812 GuestDiskAddress
*disk
, Error
**errp
)
814 SCSI_ADDRESS addr
, *scsi_ad
;
817 Error
*local_err
= NULL
;
821 g_debug("getting disk info for: %s", disk
->dev
);
822 disk_h
= CreateFile(disk
->dev
, 0, FILE_SHARE_READ
, NULL
, OPEN_EXISTING
,
824 if (disk_h
== INVALID_HANDLE_VALUE
) {
825 error_setg_win32(errp
, GetLastError(), "failed to open disk");
829 get_disk_properties(disk_h
, disk
, &local_err
);
831 error_propagate(errp
, local_err
);
835 g_debug("bus type %d", disk
->bus_type
);
836 /* always set pci_controller as required by schema. get_pci_info() should
837 * report -1 values for non-PCI buses rather than fail. fail the command
838 * if that doesn't hold since that suggests some other unexpected
841 disk
->pci_controller
= get_pci_info(disk_number
, &local_err
);
843 error_propagate(errp
, local_err
);
846 if (disk
->bus_type
== GUEST_DISK_BUS_TYPE_SCSI
847 || disk
->bus_type
== GUEST_DISK_BUS_TYPE_IDE
848 || disk
->bus_type
== GUEST_DISK_BUS_TYPE_RAID
849 /* This bus type is not supported before Windows Server 2003 SP1 */
850 || disk
->bus_type
== GUEST_DISK_BUS_TYPE_SAS
852 /* We are able to use the same ioctls for different bus types
853 * according to Microsoft docs
854 * https://technet.microsoft.com/en-us/library/ee851589(v=ws.10).aspx */
855 g_debug("getting SCSI info");
856 if (DeviceIoControl(disk_h
, IOCTL_SCSI_GET_ADDRESS
, NULL
, 0, scsi_ad
,
857 sizeof(SCSI_ADDRESS
), &len
, NULL
)) {
858 disk
->unit
= addr
.Lun
;
859 disk
->target
= addr
.TargetId
;
860 disk
->bus
= addr
.PathId
;
862 /* We do not set error in this case, because we still have enough
863 * information about volume. */
871 /* VSS provider works with volumes, thus there is no difference if
872 * the volume consist of spanned disks. Info about the first disk in the
873 * volume is returned for the spanned disk group (LVM) */
874 static GuestDiskAddressList
*build_guest_disk_info(char *guid
, Error
**errp
)
876 Error
*local_err
= NULL
;
877 GuestDiskAddressList
*list
= NULL
, *cur_item
= NULL
;
878 GuestDiskAddress
*disk
= NULL
;
882 PVOLUME_DISK_EXTENTS extents
= NULL
;
884 /* strip final backslash */
885 char *name
= g_strdup(guid
);
886 if (g_str_has_suffix(name
, "\\")) {
887 name
[strlen(name
) - 1] = 0;
890 g_debug("opening %s", name
);
891 vol_h
= CreateFile(name
, 0, FILE_SHARE_READ
, NULL
, OPEN_EXISTING
,
893 if (vol_h
== INVALID_HANDLE_VALUE
) {
894 error_setg_win32(errp
, GetLastError(), "failed to open volume");
898 /* Get list of extents */
899 g_debug("getting disk extents");
900 size
= sizeof(VOLUME_DISK_EXTENTS
);
901 extents
= g_malloc0(size
);
902 if (!DeviceIoControl(vol_h
, IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
, NULL
,
903 0, extents
, size
, &size
, NULL
)) {
904 DWORD last_err
= GetLastError();
905 if (last_err
== ERROR_MORE_DATA
) {
906 /* Try once more with big enough buffer */
908 extents
= g_malloc0(size
);
909 if (!DeviceIoControl(
910 vol_h
, IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
, NULL
,
911 0, extents
, size
, NULL
, NULL
)) {
912 error_setg_win32(errp
, GetLastError(),
913 "failed to get disk extents");
916 } else if (last_err
== ERROR_INVALID_FUNCTION
) {
917 /* Possibly CD-ROM or a shared drive. Try to pass the volume */
918 g_debug("volume not on disk");
919 disk
= g_malloc0(sizeof(GuestDiskAddress
));
920 disk
->has_dev
= true;
921 disk
->dev
= g_strdup(name
);
922 get_single_disk_info(0xffffffff, disk
, &local_err
);
924 g_debug("failed to get disk info, ignoring error: %s",
925 error_get_pretty(local_err
));
926 error_free(local_err
);
929 list
= g_malloc0(sizeof(*list
));
935 error_setg_win32(errp
, GetLastError(),
936 "failed to get disk extents");
940 g_debug("Number of extents: %lu", extents
->NumberOfDiskExtents
);
942 /* Go through each extent */
943 for (i
= 0; i
< extents
->NumberOfDiskExtents
; i
++) {
944 disk
= g_malloc0(sizeof(GuestDiskAddress
));
946 /* Disk numbers directly correspond to numbers used in UNCs
948 * See documentation for DISK_EXTENT:
949 * https://docs.microsoft.com/en-us/windows/desktop/api/winioctl/ns-winioctl-_disk_extent
951 * See also Naming Files, Paths and Namespaces:
952 * https://docs.microsoft.com/en-us/windows/desktop/FileIO/naming-a-file#win32-device-namespaces
954 disk
->has_dev
= true;
955 disk
->dev
= g_strdup_printf("\\\\.\\PhysicalDrive%lu",
956 extents
->Extents
[i
].DiskNumber
);
958 get_single_disk_info(extents
->Extents
[i
].DiskNumber
, disk
, &local_err
);
960 error_propagate(errp
, local_err
);
963 cur_item
= g_malloc0(sizeof(*list
));
964 cur_item
->value
= disk
;
966 cur_item
->next
= list
;
972 if (vol_h
!= INVALID_HANDLE_VALUE
) {
975 qapi_free_GuestDiskAddress(disk
);
984 static GuestDiskAddressList
*build_guest_disk_info(char *guid
, Error
**errp
)
989 #endif /* CONFIG_QGA_NTDDSCSI */
991 static GuestFilesystemInfo
*build_guest_fsinfo(char *guid
, Error
**errp
)
994 char mnt
, *mnt_point
;
995 wchar_t wfs_name
[32];
997 wchar_t vol_info
[MAX_PATH
+ 1];
999 uint64_t i64FreeBytesToCaller
, i64TotalBytes
, i64FreeBytes
;
1000 GuestFilesystemInfo
*fs
= NULL
;
1001 HANDLE hLocalDiskHandle
= NULL
;
1003 GetVolumePathNamesForVolumeName(guid
, (LPCH
)&mnt
, 0, &info_size
);
1004 if (GetLastError() != ERROR_MORE_DATA
) {
1005 error_setg_win32(errp
, GetLastError(), "failed to get volume name");
1009 mnt_point
= g_malloc(info_size
+ 1);
1010 if (!GetVolumePathNamesForVolumeName(guid
, mnt_point
, info_size
,
1012 error_setg_win32(errp
, GetLastError(), "failed to get volume name");
1016 hLocalDiskHandle
= CreateFile(guid
, 0 , 0, NULL
, OPEN_EXISTING
,
1017 FILE_ATTRIBUTE_NORMAL
|
1018 FILE_FLAG_BACKUP_SEMANTICS
, NULL
);
1019 if (INVALID_HANDLE_VALUE
== hLocalDiskHandle
) {
1020 error_setg_win32(errp
, GetLastError(), "failed to get handle for volume");
1024 len
= strlen(mnt_point
);
1025 mnt_point
[len
] = '\\';
1026 mnt_point
[len
+1] = 0;
1028 if (!GetVolumeInformationByHandleW(hLocalDiskHandle
, vol_info
,
1029 sizeof(vol_info
), NULL
, NULL
, NULL
,
1030 (LPWSTR
) & wfs_name
, sizeof(wfs_name
))) {
1031 if (GetLastError() != ERROR_NOT_READY
) {
1032 error_setg_win32(errp
, GetLastError(), "failed to get volume info");
1037 fs
= g_malloc(sizeof(*fs
));
1038 fs
->name
= g_strdup(guid
);
1039 fs
->has_total_bytes
= false;
1040 fs
->has_used_bytes
= false;
1042 fs
->mountpoint
= g_strdup("System Reserved");
1044 fs
->mountpoint
= g_strndup(mnt_point
, len
);
1045 if (GetDiskFreeSpaceEx(fs
->mountpoint
,
1046 (PULARGE_INTEGER
) & i64FreeBytesToCaller
,
1047 (PULARGE_INTEGER
) & i64TotalBytes
,
1048 (PULARGE_INTEGER
) & i64FreeBytes
)) {
1049 fs
->used_bytes
= i64TotalBytes
- i64FreeBytes
;
1050 fs
->total_bytes
= i64TotalBytes
;
1051 fs
->has_total_bytes
= true;
1052 fs
->has_used_bytes
= true;
1055 wcstombs(fs_name
, wfs_name
, sizeof(wfs_name
));
1056 fs
->type
= g_strdup(fs_name
);
1057 fs
->disk
= build_guest_disk_info(guid
, errp
);
1059 CloseHandle(hLocalDiskHandle
);
1064 GuestFilesystemInfoList
*qmp_guest_get_fsinfo(Error
**errp
)
1067 GuestFilesystemInfoList
*new, *ret
= NULL
;
1070 vol_h
= FindFirstVolume(guid
, sizeof(guid
));
1071 if (vol_h
== INVALID_HANDLE_VALUE
) {
1072 error_setg_win32(errp
, GetLastError(), "failed to find any volume");
1077 Error
*local_err
= NULL
;
1078 GuestFilesystemInfo
*info
= build_guest_fsinfo(guid
, &local_err
);
1080 g_debug("failed to get filesystem info, ignoring error: %s",
1081 error_get_pretty(local_err
));
1082 error_free(local_err
);
1085 new = g_malloc(sizeof(*ret
));
1089 } while (FindNextVolume(vol_h
, guid
, sizeof(guid
)));
1091 if (GetLastError() != ERROR_NO_MORE_FILES
) {
1092 error_setg_win32(errp
, GetLastError(), "failed to find next volume");
1095 FindVolumeClose(vol_h
);
1100 * Return status of freeze/thaw
1102 GuestFsfreezeStatus
qmp_guest_fsfreeze_status(Error
**errp
)
1104 if (!vss_initialized()) {
1105 error_setg(errp
, QERR_UNSUPPORTED
);
1109 if (ga_is_frozen(ga_state
)) {
1110 return GUEST_FSFREEZE_STATUS_FROZEN
;
1113 return GUEST_FSFREEZE_STATUS_THAWED
;
1117 * Freeze local file systems using Volume Shadow-copy Service.
1118 * The frozen state is limited for up to 10 seconds by VSS.
1120 int64_t qmp_guest_fsfreeze_freeze(Error
**errp
)
1122 return qmp_guest_fsfreeze_freeze_list(false, NULL
, errp
);
1125 int64_t qmp_guest_fsfreeze_freeze_list(bool has_mountpoints
,
1126 strList
*mountpoints
,
1130 Error
*local_err
= NULL
;
1132 if (!vss_initialized()) {
1133 error_setg(errp
, QERR_UNSUPPORTED
);
1137 slog("guest-fsfreeze called");
1139 /* cannot risk guest agent blocking itself on a write in this state */
1140 ga_set_frozen(ga_state
);
1142 qga_vss_fsfreeze(&i
, true, mountpoints
, &local_err
);
1144 error_propagate(errp
, local_err
);
1152 qmp_guest_fsfreeze_thaw(&local_err
);
1154 g_debug("cleanup thaw: %s", error_get_pretty(local_err
));
1155 error_free(local_err
);
1161 * Thaw local file systems using Volume Shadow-copy Service.
1163 int64_t qmp_guest_fsfreeze_thaw(Error
**errp
)
1167 if (!vss_initialized()) {
1168 error_setg(errp
, QERR_UNSUPPORTED
);
1172 qga_vss_fsfreeze(&i
, false, NULL
, errp
);
1174 ga_unset_frozen(ga_state
);
1178 static void guest_fsfreeze_cleanup(void)
1182 if (!vss_initialized()) {
1186 if (ga_is_frozen(ga_state
) == GUEST_FSFREEZE_STATUS_FROZEN
) {
1187 qmp_guest_fsfreeze_thaw(&err
);
1189 slog("failed to clean up frozen filesystems: %s",
1190 error_get_pretty(err
));
1199 * Walk list of mounted file systems in the guest, and discard unused
1202 GuestFilesystemTrimResponse
*
1203 qmp_guest_fstrim(bool has_minimum
, int64_t minimum
, Error
**errp
)
1205 GuestFilesystemTrimResponse
*resp
;
1207 WCHAR guid
[MAX_PATH
] = L
"";
1211 ZeroMemory(&osvi
, sizeof(OSVERSIONINFO
));
1212 osvi
.dwOSVersionInfoSize
= sizeof(OSVERSIONINFO
);
1213 GetVersionEx(&osvi
);
1214 win8_or_later
= (osvi
.dwMajorVersion
> 6 ||
1215 ((osvi
.dwMajorVersion
== 6) &&
1216 (osvi
.dwMinorVersion
>= 2)));
1217 if (!win8_or_later
) {
1218 error_setg(errp
, "fstrim is only supported for Win8+");
1222 handle
= FindFirstVolumeW(guid
, ARRAYSIZE(guid
));
1223 if (handle
== INVALID_HANDLE_VALUE
) {
1224 error_setg_win32(errp
, GetLastError(), "failed to find any volume");
1228 resp
= g_new0(GuestFilesystemTrimResponse
, 1);
1231 GuestFilesystemTrimResult
*res
;
1232 GuestFilesystemTrimResultList
*list
;
1234 DWORD char_count
= 0;
1236 GError
*gerr
= NULL
;
1239 GetVolumePathNamesForVolumeNameW(guid
, NULL
, 0, &char_count
);
1241 if (GetLastError() != ERROR_MORE_DATA
) {
1244 if (GetDriveTypeW(guid
) != DRIVE_FIXED
) {
1248 uc_path
= g_malloc(sizeof(WCHAR
) * char_count
);
1249 if (!GetVolumePathNamesForVolumeNameW(guid
, uc_path
, char_count
,
1250 &char_count
) || !*uc_path
) {
1251 /* strange, but this condition could be faced even with size == 2 */
1256 res
= g_new0(GuestFilesystemTrimResult
, 1);
1258 path
= g_utf16_to_utf8(uc_path
, char_count
, NULL
, NULL
, &gerr
);
1263 res
->has_error
= true;
1264 res
->error
= g_strdup(gerr
->message
);
1271 list
= g_new0(GuestFilesystemTrimResultList
, 1);
1273 list
->next
= resp
->paths
;
1277 memset(argv
, 0, sizeof(argv
));
1278 argv
[0] = (gchar
*)"defrag.exe";
1279 argv
[1] = (gchar
*)"/L";
1282 if (!g_spawn_sync(NULL
, argv
, NULL
, G_SPAWN_SEARCH_PATH
, NULL
, NULL
,
1283 &out
/* stdout */, NULL
/* stdin */,
1285 res
->has_error
= true;
1286 res
->error
= g_strdup(gerr
->message
);
1289 /* defrag.exe is UGLY. Exit code is ALWAYS zero.
1290 Error is reported in the output with something like
1291 (x89000020) etc code in the stdout */
1294 gchar
**lines
= g_strsplit(out
, "\r\n", 0);
1297 for (i
= 0; lines
[i
] != NULL
; i
++) {
1298 if (g_strstr_len(lines
[i
], -1, "(0x") == NULL
) {
1301 res
->has_error
= true;
1302 res
->error
= g_strdup(lines
[i
]);
1307 } while (FindNextVolumeW(handle
, guid
, ARRAYSIZE(guid
)));
1309 FindVolumeClose(handle
);
1314 GUEST_SUSPEND_MODE_DISK
,
1315 GUEST_SUSPEND_MODE_RAM
1318 static void check_suspend_mode(GuestSuspendMode mode
, Error
**errp
)
1320 SYSTEM_POWER_CAPABILITIES sys_pwr_caps
;
1322 ZeroMemory(&sys_pwr_caps
, sizeof(sys_pwr_caps
));
1323 if (!GetPwrCapabilities(&sys_pwr_caps
)) {
1324 error_setg(errp
, QERR_QGA_COMMAND_FAILED
,
1325 "failed to determine guest suspend capabilities");
1330 case GUEST_SUSPEND_MODE_DISK
:
1331 if (!sys_pwr_caps
.SystemS4
) {
1332 error_setg(errp
, QERR_QGA_COMMAND_FAILED
,
1333 "suspend-to-disk not supported by OS");
1336 case GUEST_SUSPEND_MODE_RAM
:
1337 if (!sys_pwr_caps
.SystemS3
) {
1338 error_setg(errp
, QERR_QGA_COMMAND_FAILED
,
1339 "suspend-to-ram not supported by OS");
1343 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "mode",
1344 "GuestSuspendMode");
1348 static DWORD WINAPI
do_suspend(LPVOID opaque
)
1350 GuestSuspendMode
*mode
= opaque
;
1353 if (!SetSuspendState(*mode
== GUEST_SUSPEND_MODE_DISK
, TRUE
, TRUE
)) {
1354 g_autofree gchar
*emsg
= g_win32_error_message(GetLastError());
1355 slog("failed to suspend guest: %s", emsg
);
1362 void qmp_guest_suspend_disk(Error
**errp
)
1364 Error
*local_err
= NULL
;
1365 GuestSuspendMode
*mode
= g_new(GuestSuspendMode
, 1);
1367 *mode
= GUEST_SUSPEND_MODE_DISK
;
1368 check_suspend_mode(*mode
, &local_err
);
1372 acquire_privilege(SE_SHUTDOWN_NAME
, &local_err
);
1376 execute_async(do_suspend
, mode
, &local_err
);
1380 error_propagate(errp
, local_err
);
1385 void qmp_guest_suspend_ram(Error
**errp
)
1387 Error
*local_err
= NULL
;
1388 GuestSuspendMode
*mode
= g_new(GuestSuspendMode
, 1);
1390 *mode
= GUEST_SUSPEND_MODE_RAM
;
1391 check_suspend_mode(*mode
, &local_err
);
1395 acquire_privilege(SE_SHUTDOWN_NAME
, &local_err
);
1399 execute_async(do_suspend
, mode
, &local_err
);
1403 error_propagate(errp
, local_err
);
1408 void qmp_guest_suspend_hybrid(Error
**errp
)
1410 error_setg(errp
, QERR_UNSUPPORTED
);
1413 static IP_ADAPTER_ADDRESSES
*guest_get_adapters_addresses(Error
**errp
)
1415 IP_ADAPTER_ADDRESSES
*adptr_addrs
= NULL
;
1416 ULONG adptr_addrs_len
= 0;
1419 /* Call the first time to get the adptr_addrs_len. */
1420 GetAdaptersAddresses(AF_UNSPEC
, GAA_FLAG_INCLUDE_PREFIX
,
1421 NULL
, adptr_addrs
, &adptr_addrs_len
);
1423 adptr_addrs
= g_malloc(adptr_addrs_len
);
1424 ret
= GetAdaptersAddresses(AF_UNSPEC
, GAA_FLAG_INCLUDE_PREFIX
,
1425 NULL
, adptr_addrs
, &adptr_addrs_len
);
1426 if (ret
!= ERROR_SUCCESS
) {
1427 error_setg_win32(errp
, ret
, "failed to get adapters addresses");
1428 g_free(adptr_addrs
);
1434 static char *guest_wctomb_dup(WCHAR
*wstr
)
1439 str_size
= WideCharToMultiByte(CP_UTF8
, 0, wstr
, -1, NULL
, 0, NULL
, NULL
);
1440 /* add 1 to str_size for NULL terminator */
1441 str
= g_malloc(str_size
+ 1);
1442 WideCharToMultiByte(CP_UTF8
, 0, wstr
, -1, str
, str_size
, NULL
, NULL
);
1446 static char *guest_addr_to_str(IP_ADAPTER_UNICAST_ADDRESS
*ip_addr
,
1449 char addr_str
[INET6_ADDRSTRLEN
+ INET_ADDRSTRLEN
];
1453 if (ip_addr
->Address
.lpSockaddr
->sa_family
== AF_INET
||
1454 ip_addr
->Address
.lpSockaddr
->sa_family
== AF_INET6
) {
1455 len
= sizeof(addr_str
);
1456 ret
= WSAAddressToString(ip_addr
->Address
.lpSockaddr
,
1457 ip_addr
->Address
.iSockaddrLength
,
1462 error_setg_win32(errp
, WSAGetLastError(),
1463 "failed address presentation form conversion");
1466 return g_strdup(addr_str
);
1471 static int64_t guest_ip_prefix(IP_ADAPTER_UNICAST_ADDRESS
*ip_addr
)
1473 /* For Windows Vista/2008 and newer, use the OnLinkPrefixLength
1474 * field to obtain the prefix.
1476 return ip_addr
->OnLinkPrefixLength
;
1479 #define INTERFACE_PATH_BUF_SZ 512
1481 static DWORD
get_interface_index(const char *guid
)
1485 wchar_t wbuf
[INTERFACE_PATH_BUF_SZ
];
1486 snwprintf(wbuf
, INTERFACE_PATH_BUF_SZ
, L
"\\device\\tcpip_%s", guid
);
1487 wbuf
[INTERFACE_PATH_BUF_SZ
- 1] = 0;
1488 status
= GetAdapterIndex (wbuf
, &index
);
1489 if (status
!= NO_ERROR
) {
1496 typedef NETIOAPI_API (WINAPI
*GetIfEntry2Func
)(PMIB_IF_ROW2 Row
);
1498 static int guest_get_network_stats(const char *name
,
1499 GuestNetworkInterfaceStat
*stats
)
1501 OSVERSIONINFO os_ver
;
1503 os_ver
.dwOSVersionInfoSize
= sizeof(OSVERSIONINFO
);
1504 GetVersionEx(&os_ver
);
1505 if (os_ver
.dwMajorVersion
>= 6) {
1506 MIB_IF_ROW2 a_mid_ifrow
;
1507 GetIfEntry2Func getifentry2_ex
;
1509 HMODULE module
= GetModuleHandle("iphlpapi");
1510 PVOID func
= GetProcAddress(module
, "GetIfEntry2");
1516 getifentry2_ex
= (GetIfEntry2Func
)func
;
1517 if_index
= get_interface_index(name
);
1518 if (if_index
== (DWORD
)~0) {
1522 memset(&a_mid_ifrow
, 0, sizeof(a_mid_ifrow
));
1523 a_mid_ifrow
.InterfaceIndex
= if_index
;
1524 if (NO_ERROR
== getifentry2_ex(&a_mid_ifrow
)) {
1525 stats
->rx_bytes
= a_mid_ifrow
.InOctets
;
1526 stats
->rx_packets
= a_mid_ifrow
.InUcastPkts
;
1527 stats
->rx_errs
= a_mid_ifrow
.InErrors
;
1528 stats
->rx_dropped
= a_mid_ifrow
.InDiscards
;
1529 stats
->tx_bytes
= a_mid_ifrow
.OutOctets
;
1530 stats
->tx_packets
= a_mid_ifrow
.OutUcastPkts
;
1531 stats
->tx_errs
= a_mid_ifrow
.OutErrors
;
1532 stats
->tx_dropped
= a_mid_ifrow
.OutDiscards
;
1539 GuestNetworkInterfaceList
*qmp_guest_network_get_interfaces(Error
**errp
)
1541 IP_ADAPTER_ADDRESSES
*adptr_addrs
, *addr
;
1542 IP_ADAPTER_UNICAST_ADDRESS
*ip_addr
= NULL
;
1543 GuestNetworkInterfaceList
*head
= NULL
, *cur_item
= NULL
;
1544 GuestIpAddressList
*head_addr
, *cur_addr
;
1545 GuestNetworkInterfaceList
*info
;
1546 GuestNetworkInterfaceStat
*interface_stat
= NULL
;
1547 GuestIpAddressList
*address_item
= NULL
;
1548 unsigned char *mac_addr
;
1554 adptr_addrs
= guest_get_adapters_addresses(errp
);
1555 if (adptr_addrs
== NULL
) {
1559 /* Make WSA APIs available. */
1560 wsa_version
= MAKEWORD(2, 2);
1561 ret
= WSAStartup(wsa_version
, &wsa_data
);
1563 error_setg_win32(errp
, ret
, "failed socket startup");
1567 for (addr
= adptr_addrs
; addr
; addr
= addr
->Next
) {
1568 info
= g_malloc0(sizeof(*info
));
1570 if (cur_item
== NULL
) {
1571 head
= cur_item
= info
;
1573 cur_item
->next
= info
;
1577 info
->value
= g_malloc0(sizeof(*info
->value
));
1578 info
->value
->name
= guest_wctomb_dup(addr
->FriendlyName
);
1580 if (addr
->PhysicalAddressLength
!= 0) {
1581 mac_addr
= addr
->PhysicalAddress
;
1583 info
->value
->hardware_address
=
1584 g_strdup_printf("%02x:%02x:%02x:%02x:%02x:%02x",
1585 (int) mac_addr
[0], (int) mac_addr
[1],
1586 (int) mac_addr
[2], (int) mac_addr
[3],
1587 (int) mac_addr
[4], (int) mac_addr
[5]);
1589 info
->value
->has_hardware_address
= true;
1594 for (ip_addr
= addr
->FirstUnicastAddress
;
1596 ip_addr
= ip_addr
->Next
) {
1597 addr_str
= guest_addr_to_str(ip_addr
, errp
);
1598 if (addr_str
== NULL
) {
1602 address_item
= g_malloc0(sizeof(*address_item
));
1605 head_addr
= cur_addr
= address_item
;
1607 cur_addr
->next
= address_item
;
1608 cur_addr
= address_item
;
1611 address_item
->value
= g_malloc0(sizeof(*address_item
->value
));
1612 address_item
->value
->ip_address
= addr_str
;
1613 address_item
->value
->prefix
= guest_ip_prefix(ip_addr
);
1614 if (ip_addr
->Address
.lpSockaddr
->sa_family
== AF_INET
) {
1615 address_item
->value
->ip_address_type
=
1616 GUEST_IP_ADDRESS_TYPE_IPV4
;
1617 } else if (ip_addr
->Address
.lpSockaddr
->sa_family
== AF_INET6
) {
1618 address_item
->value
->ip_address_type
=
1619 GUEST_IP_ADDRESS_TYPE_IPV6
;
1623 info
->value
->has_ip_addresses
= true;
1624 info
->value
->ip_addresses
= head_addr
;
1626 if (!info
->value
->has_statistics
) {
1627 interface_stat
= g_malloc0(sizeof(*interface_stat
));
1628 if (guest_get_network_stats(addr
->AdapterName
,
1629 interface_stat
) == -1) {
1630 info
->value
->has_statistics
= false;
1631 g_free(interface_stat
);
1633 info
->value
->statistics
= interface_stat
;
1634 info
->value
->has_statistics
= true;
1640 g_free(adptr_addrs
);
1644 int64_t qmp_guest_get_time(Error
**errp
)
1646 SYSTEMTIME ts
= {0};
1650 if (ts
.wYear
< 1601 || ts
.wYear
> 30827) {
1651 error_setg(errp
, "Failed to get time");
1655 if (!SystemTimeToFileTime(&ts
, &tf
)) {
1656 error_setg(errp
, "Failed to convert system time: %d", (int)GetLastError());
1660 return ((((int64_t)tf
.dwHighDateTime
<< 32) | tf
.dwLowDateTime
)
1661 - W32_FT_OFFSET
) * 100;
1664 void qmp_guest_set_time(bool has_time
, int64_t time_ns
, Error
**errp
)
1666 Error
*local_err
= NULL
;
1672 /* Unfortunately, Windows libraries don't provide an easy way to access
1675 * https://msdn.microsoft.com/en-us/library/aa908981.aspx
1677 * Instead, a workaround is to use the Windows win32tm command to
1678 * resync the time using the Windows Time service.
1683 HRESULT hr
= system("w32tm /resync /nowait");
1685 if (GetLastError() != 0) {
1686 strerror_s((LPTSTR
) & msg_buffer
, 0, errno
);
1687 error_setg(errp
, "system(...) failed: %s", (LPCTSTR
)msg_buffer
);
1688 } else if (hr
!= 0) {
1689 if (hr
== HRESULT_FROM_WIN32(ERROR_SERVICE_NOT_ACTIVE
)) {
1690 error_setg(errp
, "Windows Time service not running on the "
1693 if (!FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER
|
1694 FORMAT_MESSAGE_FROM_SYSTEM
|
1695 FORMAT_MESSAGE_IGNORE_INSERTS
, NULL
,
1696 (DWORD
)hr
, MAKELANGID(LANG_NEUTRAL
,
1697 SUBLANG_DEFAULT
), (LPTSTR
) & msg_buffer
, 0,
1699 error_setg(errp
, "w32tm failed with error (0x%lx), couldn'"
1700 "t retrieve error message", hr
);
1702 error_setg(errp
, "w32tm failed with error (0x%lx): %s", hr
,
1703 (LPCTSTR
)msg_buffer
);
1704 LocalFree(msg_buffer
);
1707 } else if (!InternetGetConnectedState(&ret_flags
, 0)) {
1708 error_setg(errp
, "No internet connection on guest, sync not "
1714 /* Validate time passed by user. */
1715 if (time_ns
< 0 || time_ns
/ 100 > INT64_MAX
- W32_FT_OFFSET
) {
1716 error_setg(errp
, "Time %" PRId64
"is invalid", time_ns
);
1720 time
= time_ns
/ 100 + W32_FT_OFFSET
;
1722 tf
.dwLowDateTime
= (DWORD
) time
;
1723 tf
.dwHighDateTime
= (DWORD
) (time
>> 32);
1725 if (!FileTimeToSystemTime(&tf
, &ts
)) {
1726 error_setg(errp
, "Failed to convert system time %d",
1727 (int)GetLastError());
1731 acquire_privilege(SE_SYSTEMTIME_NAME
, &local_err
);
1733 error_propagate(errp
, local_err
);
1737 if (!SetSystemTime(&ts
)) {
1738 error_setg(errp
, "Failed to set time to guest: %d", (int)GetLastError());
1743 GuestLogicalProcessorList
*qmp_guest_get_vcpus(Error
**errp
)
1745 PSYSTEM_LOGICAL_PROCESSOR_INFORMATION pslpi
, ptr
;
1747 GuestLogicalProcessorList
*head
, **link
;
1748 Error
*local_err
= NULL
;
1757 if ((GetLogicalProcessorInformation(pslpi
, &length
) == FALSE
) &&
1758 (GetLastError() == ERROR_INSUFFICIENT_BUFFER
) &&
1759 (length
> sizeof(SYSTEM_LOGICAL_PROCESSOR_INFORMATION
))) {
1760 ptr
= pslpi
= g_malloc0(length
);
1761 if (GetLogicalProcessorInformation(pslpi
, &length
) == FALSE
) {
1762 error_setg(&local_err
, "Failed to get processor information: %d",
1763 (int)GetLastError());
1766 error_setg(&local_err
,
1767 "Failed to get processor information buffer length: %d",
1768 (int)GetLastError());
1771 while ((local_err
== NULL
) && (length
> 0)) {
1772 if (pslpi
->Relationship
== RelationProcessorCore
) {
1773 ULONG_PTR cpu_bits
= pslpi
->ProcessorMask
;
1775 while (cpu_bits
> 0) {
1776 if (!!(cpu_bits
& 1)) {
1777 GuestLogicalProcessor
*vcpu
;
1778 GuestLogicalProcessorList
*entry
;
1780 vcpu
= g_malloc0(sizeof *vcpu
);
1781 vcpu
->logical_id
= current
++;
1782 vcpu
->online
= true;
1783 vcpu
->has_can_offline
= true;
1785 entry
= g_malloc0(sizeof *entry
);
1786 entry
->value
= vcpu
;
1789 link
= &entry
->next
;
1794 length
-= sizeof(SYSTEM_LOGICAL_PROCESSOR_INFORMATION
);
1795 pslpi
++; /* next entry */
1800 if (local_err
== NULL
) {
1804 /* there's no guest with zero VCPUs */
1805 error_setg(&local_err
, "Guest reported zero VCPUs");
1808 qapi_free_GuestLogicalProcessorList(head
);
1809 error_propagate(errp
, local_err
);
1813 int64_t qmp_guest_set_vcpus(GuestLogicalProcessorList
*vcpus
, Error
**errp
)
1815 error_setg(errp
, QERR_UNSUPPORTED
);
1820 get_net_error_message(gint error
)
1822 HMODULE module
= NULL
;
1823 gchar
*retval
= NULL
;
1824 wchar_t *msg
= NULL
;
1828 flags
= FORMAT_MESSAGE_ALLOCATE_BUFFER
|
1829 FORMAT_MESSAGE_IGNORE_INSERTS
|
1830 FORMAT_MESSAGE_FROM_SYSTEM
;
1832 if (error
>= NERR_BASE
&& error
<= MAX_NERR
) {
1833 module
= LoadLibraryExW(L
"netmsg.dll", NULL
, LOAD_LIBRARY_AS_DATAFILE
);
1835 if (module
!= NULL
) {
1836 flags
|= FORMAT_MESSAGE_FROM_HMODULE
;
1840 FormatMessageW(flags
, module
, error
, 0, (LPWSTR
)&msg
, 0, NULL
);
1843 nchars
= wcslen(msg
);
1846 msg
[nchars
- 1] == L
'\n' &&
1847 msg
[nchars
- 2] == L
'\r') {
1848 msg
[nchars
- 2] = L
'\0';
1851 retval
= g_utf16_to_utf8(msg
, -1, NULL
, NULL
, NULL
);
1856 if (module
!= NULL
) {
1857 FreeLibrary(module
);
1863 void qmp_guest_set_user_password(const char *username
,
1864 const char *password
,
1869 char *rawpasswddata
= NULL
;
1870 size_t rawpasswdlen
;
1871 wchar_t *user
= NULL
, *wpass
= NULL
;
1872 USER_INFO_1003 pi1003
= { 0, };
1873 GError
*gerr
= NULL
;
1876 error_setg(errp
, QERR_UNSUPPORTED
);
1880 rawpasswddata
= (char *)qbase64_decode(password
, -1, &rawpasswdlen
, errp
);
1881 if (!rawpasswddata
) {
1884 rawpasswddata
= g_renew(char, rawpasswddata
, rawpasswdlen
+ 1);
1885 rawpasswddata
[rawpasswdlen
] = '\0';
1887 user
= g_utf8_to_utf16(username
, -1, NULL
, NULL
, &gerr
);
1892 wpass
= g_utf8_to_utf16(rawpasswddata
, -1, NULL
, NULL
, &gerr
);
1897 pi1003
.usri1003_password
= wpass
;
1898 nas
= NetUserSetInfo(NULL
, user
,
1899 1003, (LPBYTE
)&pi1003
,
1902 if (nas
!= NERR_Success
) {
1903 gchar
*msg
= get_net_error_message(nas
);
1904 error_setg(errp
, "failed to set password: %s", msg
);
1910 error_setg(errp
, QERR_QGA_COMMAND_FAILED
, gerr
->message
);
1915 g_free(rawpasswddata
);
1918 GuestMemoryBlockList
*qmp_guest_get_memory_blocks(Error
**errp
)
1920 error_setg(errp
, QERR_UNSUPPORTED
);
1924 GuestMemoryBlockResponseList
*
1925 qmp_guest_set_memory_blocks(GuestMemoryBlockList
*mem_blks
, Error
**errp
)
1927 error_setg(errp
, QERR_UNSUPPORTED
);
1931 GuestMemoryBlockInfo
*qmp_guest_get_memory_block_info(Error
**errp
)
1933 error_setg(errp
, QERR_UNSUPPORTED
);
1937 /* add unsupported commands to the blacklist */
1938 GList
*ga_command_blacklist_init(GList
*blacklist
)
1940 const char *list_unsupported
[] = {
1941 "guest-suspend-hybrid",
1943 "guest-get-memory-blocks", "guest-set-memory-blocks",
1944 "guest-get-memory-block-size", "guest-get-memory-block-info",
1946 char **p
= (char **)list_unsupported
;
1949 blacklist
= g_list_append(blacklist
, g_strdup(*p
++));
1952 if (!vss_init(true)) {
1953 g_debug("vss_init failed, vss commands are going to be disabled");
1954 const char *list
[] = {
1955 "guest-get-fsinfo", "guest-fsfreeze-status",
1956 "guest-fsfreeze-freeze", "guest-fsfreeze-thaw", NULL
};
1960 blacklist
= g_list_append(blacklist
, g_strdup(*p
++));
1967 /* register init/cleanup routines for stateful command groups */
1968 void ga_command_state_init(GAState
*s
, GACommandState
*cs
)
1970 if (!vss_initialized()) {
1971 ga_command_state_add(cs
, NULL
, guest_fsfreeze_cleanup
);
1975 /* MINGW is missing two fields: IncomingFrames & OutgoingFrames */
1976 typedef struct _GA_WTSINFOA
{
1977 WTS_CONNECTSTATE_CLASS State
;
1979 DWORD IncomingBytes
;
1980 DWORD OutgoingBytes
;
1981 DWORD IncomingFrames
;
1982 DWORD OutgoingFrames
;
1983 DWORD IncomingCompressedBytes
;
1984 DWORD OutgoingCompressedBy
;
1985 CHAR WinStationName
[WINSTATIONNAME_LENGTH
];
1986 CHAR Domain
[DOMAIN_LENGTH
];
1987 CHAR UserName
[USERNAME_LENGTH
+ 1];
1988 LARGE_INTEGER ConnectTime
;
1989 LARGE_INTEGER DisconnectTime
;
1990 LARGE_INTEGER LastInputTime
;
1991 LARGE_INTEGER LogonTime
;
1992 LARGE_INTEGER CurrentTime
;
1996 GuestUserList
*qmp_guest_get_users(Error
**errp
)
1998 #define QGA_NANOSECONDS 10000000
2000 GHashTable
*cache
= NULL
;
2001 GuestUserList
*head
= NULL
, *cur_item
= NULL
;
2003 DWORD buffer_size
= 0, count
= 0, i
= 0;
2004 GA_WTSINFOA
*info
= NULL
;
2005 WTS_SESSION_INFOA
*entries
= NULL
;
2006 GuestUserList
*item
= NULL
;
2007 GuestUser
*user
= NULL
;
2008 gpointer value
= NULL
;
2010 double login_time
= 0;
2012 cache
= g_hash_table_new(g_str_hash
, g_str_equal
);
2014 if (WTSEnumerateSessionsA(NULL
, 0, 1, &entries
, &count
)) {
2015 for (i
= 0; i
< count
; ++i
) {
2018 if (WTSQuerySessionInformationA(
2020 entries
[i
].SessionId
,
2026 if (strlen(info
->UserName
) == 0) {
2027 WTSFreeMemory(info
);
2031 login
= info
->LogonTime
.QuadPart
;
2032 login
-= W32_FT_OFFSET
;
2033 login_time
= ((double)login
) / QGA_NANOSECONDS
;
2035 if (g_hash_table_contains(cache
, info
->UserName
)) {
2036 value
= g_hash_table_lookup(cache
, info
->UserName
);
2037 user
= (GuestUser
*)value
;
2038 if (user
->login_time
> login_time
) {
2039 user
->login_time
= login_time
;
2042 item
= g_new0(GuestUserList
, 1);
2043 item
->value
= g_new0(GuestUser
, 1);
2045 item
->value
->user
= g_strdup(info
->UserName
);
2046 item
->value
->domain
= g_strdup(info
->Domain
);
2047 item
->value
->has_domain
= true;
2049 item
->value
->login_time
= login_time
;
2051 g_hash_table_add(cache
, item
->value
->user
);
2054 head
= cur_item
= item
;
2056 cur_item
->next
= item
;
2061 WTSFreeMemory(info
);
2063 WTSFreeMemory(entries
);
2065 g_hash_table_destroy(cache
);
2069 typedef struct _ga_matrix_lookup_t
{
2072 char const *version
;
2073 char const *version_id
;
2074 } ga_matrix_lookup_t
;
2076 static ga_matrix_lookup_t
const WIN_VERSION_MATRIX
[2][8] = {
2078 /* Desktop editions */
2079 { 5, 0, "Microsoft Windows 2000", "2000"},
2080 { 5, 1, "Microsoft Windows XP", "xp"},
2081 { 6, 0, "Microsoft Windows Vista", "vista"},
2082 { 6, 1, "Microsoft Windows 7" "7"},
2083 { 6, 2, "Microsoft Windows 8", "8"},
2084 { 6, 3, "Microsoft Windows 8.1", "8.1"},
2085 {10, 0, "Microsoft Windows 10", "10"},
2088 /* Server editions */
2089 { 5, 2, "Microsoft Windows Server 2003", "2003"},
2090 { 6, 0, "Microsoft Windows Server 2008", "2008"},
2091 { 6, 1, "Microsoft Windows Server 2008 R2", "2008r2"},
2092 { 6, 2, "Microsoft Windows Server 2012", "2012"},
2093 { 6, 3, "Microsoft Windows Server 2012 R2", "2012r2"},
2100 typedef struct _ga_win_10_0_server_t
{
2102 char const *version
;
2103 char const *version_id
;
2104 } ga_win_10_0_server_t
;
2106 static ga_win_10_0_server_t
const WIN_10_0_SERVER_VERSION_MATRIX
[3] = {
2107 {14393, "Microsoft Windows Server 2016", "2016"},
2108 {17763, "Microsoft Windows Server 2019", "2019"},
2112 static void ga_get_win_version(RTL_OSVERSIONINFOEXW
*info
, Error
**errp
)
2114 typedef NTSTATUS(WINAPI
* rtl_get_version_t
)(
2115 RTL_OSVERSIONINFOEXW
*os_version_info_ex
);
2117 info
->dwOSVersionInfoSize
= sizeof(RTL_OSVERSIONINFOEXW
);
2119 HMODULE module
= GetModuleHandle("ntdll");
2120 PVOID fun
= GetProcAddress(module
, "RtlGetVersion");
2122 error_setg(errp
, QERR_QGA_COMMAND_FAILED
,
2123 "Failed to get address of RtlGetVersion");
2127 rtl_get_version_t rtl_get_version
= (rtl_get_version_t
)fun
;
2128 rtl_get_version(info
);
2132 static char *ga_get_win_name(OSVERSIONINFOEXW
const *os_version
, bool id
)
2134 DWORD major
= os_version
->dwMajorVersion
;
2135 DWORD minor
= os_version
->dwMinorVersion
;
2136 DWORD build
= os_version
->dwBuildNumber
;
2137 int tbl_idx
= (os_version
->wProductType
!= VER_NT_WORKSTATION
);
2138 ga_matrix_lookup_t
const *table
= WIN_VERSION_MATRIX
[tbl_idx
];
2139 ga_win_10_0_server_t
const *win_10_0_table
= WIN_10_0_SERVER_VERSION_MATRIX
;
2140 while (table
->version
!= NULL
) {
2141 if (major
== 10 && minor
== 0 && tbl_idx
) {
2142 while (win_10_0_table
->version
!= NULL
) {
2143 if (build
<= win_10_0_table
->final_build
) {
2145 return g_strdup(win_10_0_table
->version_id
);
2147 return g_strdup(win_10_0_table
->version
);
2152 } else if (major
== table
->major
&& minor
== table
->minor
) {
2154 return g_strdup(table
->version_id
);
2156 return g_strdup(table
->version
);
2161 slog("failed to lookup Windows version: major=%lu, minor=%lu",
2163 return g_strdup("N/A");
2166 static char *ga_get_win_product_name(Error
**errp
)
2170 char *result
= g_malloc0(size
);
2171 LONG err
= ERROR_SUCCESS
;
2173 err
= RegOpenKeyA(HKEY_LOCAL_MACHINE
,
2174 "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion",
2176 if (err
!= ERROR_SUCCESS
) {
2177 error_setg_win32(errp
, err
, "failed to open registry key");
2181 err
= RegQueryValueExA(key
, "ProductName", NULL
, NULL
,
2182 (LPBYTE
)result
, &size
);
2183 if (err
== ERROR_MORE_DATA
) {
2184 slog("ProductName longer than expected (%lu bytes), retrying",
2189 result
= g_malloc0(size
);
2190 err
= RegQueryValueExA(key
, "ProductName", NULL
, NULL
,
2191 (LPBYTE
)result
, &size
);
2194 if (err
!= ERROR_SUCCESS
) {
2195 error_setg_win32(errp
, err
, "failed to retrive ProductName");
2206 static char *ga_get_current_arch(void)
2209 GetNativeSystemInfo(&info
);
2210 char *result
= NULL
;
2211 switch (info
.wProcessorArchitecture
) {
2212 case PROCESSOR_ARCHITECTURE_AMD64
:
2213 result
= g_strdup("x86_64");
2215 case PROCESSOR_ARCHITECTURE_ARM
:
2216 result
= g_strdup("arm");
2218 case PROCESSOR_ARCHITECTURE_IA64
:
2219 result
= g_strdup("ia64");
2221 case PROCESSOR_ARCHITECTURE_INTEL
:
2222 result
= g_strdup("x86");
2224 case PROCESSOR_ARCHITECTURE_UNKNOWN
:
2226 slog("unknown processor architecture 0x%0x",
2227 info
.wProcessorArchitecture
);
2228 result
= g_strdup("unknown");
2234 GuestOSInfo
*qmp_guest_get_osinfo(Error
**errp
)
2236 Error
*local_err
= NULL
;
2237 OSVERSIONINFOEXW os_version
= {0};
2242 ga_get_win_version(&os_version
, &local_err
);
2244 error_propagate(errp
, local_err
);
2248 server
= os_version
.wProductType
!= VER_NT_WORKSTATION
;
2249 product_name
= ga_get_win_product_name(errp
);
2250 if (product_name
== NULL
) {
2254 info
= g_new0(GuestOSInfo
, 1);
2256 info
->has_kernel_version
= true;
2257 info
->kernel_version
= g_strdup_printf("%lu.%lu",
2258 os_version
.dwMajorVersion
,
2259 os_version
.dwMinorVersion
);
2260 info
->has_kernel_release
= true;
2261 info
->kernel_release
= g_strdup_printf("%lu",
2262 os_version
.dwBuildNumber
);
2263 info
->has_machine
= true;
2264 info
->machine
= ga_get_current_arch();
2266 info
->has_id
= true;
2267 info
->id
= g_strdup("mswindows");
2268 info
->has_name
= true;
2269 info
->name
= g_strdup("Microsoft Windows");
2270 info
->has_pretty_name
= true;
2271 info
->pretty_name
= product_name
;
2272 info
->has_version
= true;
2273 info
->version
= ga_get_win_name(&os_version
, false);
2274 info
->has_version_id
= true;
2275 info
->version_id
= ga_get_win_name(&os_version
, true);
2276 info
->has_variant
= true;
2277 info
->variant
= g_strdup(server
? "server" : "client");
2278 info
->has_variant_id
= true;
2279 info
->variant_id
= g_strdup(server
? "server" : "client");
2285 * Safely get device property. Returned strings are using wide characters.
2286 * Caller is responsible for freeing the buffer.
2288 static LPBYTE
cm_get_property(DEVINST devInst
, const DEVPROPKEY
*propName
,
2289 PDEVPROPTYPE propType
)
2292 g_autofree LPBYTE buffer
= NULL
;
2293 ULONG buffer_len
= 0;
2295 /* First query for needed space */
2296 cr
= CM_Get_DevNode_PropertyW(devInst
, propName
, propType
,
2297 buffer
, &buffer_len
, 0);
2298 if (cr
!= CR_SUCCESS
&& cr
!= CR_BUFFER_SMALL
) {
2300 slog("failed to get property size, error=0x%lx", cr
);
2303 buffer
= g_new0(BYTE
, buffer_len
+ 1);
2304 cr
= CM_Get_DevNode_PropertyW(devInst
, propName
, propType
,
2305 buffer
, &buffer_len
, 0);
2306 if (cr
!= CR_SUCCESS
) {
2307 slog("failed to get device property, error=0x%lx", cr
);
2310 return g_steal_pointer(&buffer
);
2313 static GStrv
ga_get_hardware_ids(DEVINST devInstance
)
2315 GArray
*values
= NULL
;
2316 DEVPROPTYPE cm_type
;
2318 g_autofree LPWSTR property
= (LPWSTR
)cm_get_property(devInstance
,
2319 &qga_DEVPKEY_Device_HardwareIds
, &cm_type
);
2320 if (property
== NULL
) {
2321 slog("failed to get hardware IDs");
2324 if (*property
== '\0') {
2328 values
= g_array_new(TRUE
, TRUE
, sizeof(gchar
*));
2329 for (id
= property
; '\0' != *id
; id
+= lstrlenW(id
) + 1) {
2330 gchar
*id8
= g_utf16_to_utf8(id
, -1, NULL
, NULL
, NULL
);
2331 g_array_append_val(values
, id8
);
2333 return (GStrv
)g_array_free(values
, FALSE
);
2337 * https://docs.microsoft.com/en-us/windows-hardware/drivers/install/identifiers-for-pci-devices
2339 #define DEVICE_PCI_RE "PCI\\\\VEN_(1AF4|1B36)&DEV_([0-9A-B]{4})(&|$)"
2341 GuestDeviceInfoList
*qmp_guest_get_devices(Error
**errp
)
2343 GuestDeviceInfoList
*head
= NULL
, *cur_item
= NULL
, *item
= NULL
;
2344 HDEVINFO dev_info
= INVALID_HANDLE_VALUE
;
2345 SP_DEVINFO_DATA dev_info_data
;
2347 GError
*gerr
= NULL
;
2348 g_autoptr(GRegex
) device_pci_re
= NULL
;
2349 DEVPROPTYPE cm_type
;
2351 device_pci_re
= g_regex_new(DEVICE_PCI_RE
,
2352 G_REGEX_ANCHORED
| G_REGEX_OPTIMIZE
, 0,
2354 g_assert(device_pci_re
!= NULL
);
2356 dev_info_data
.cbSize
= sizeof(SP_DEVINFO_DATA
);
2357 dev_info
= SetupDiGetClassDevs(0, 0, 0, DIGCF_PRESENT
| DIGCF_ALLCLASSES
);
2358 if (dev_info
== INVALID_HANDLE_VALUE
) {
2359 error_setg(errp
, "failed to get device tree");
2363 slog("enumerating devices");
2364 for (i
= 0; SetupDiEnumDeviceInfo(dev_info
, i
, &dev_info_data
); i
++) {
2366 SYSTEMTIME utc_date
;
2367 g_autofree LPWSTR name
= NULL
;
2368 g_autofree LPFILETIME date
= NULL
;
2369 g_autofree LPWSTR version
= NULL
;
2370 g_auto(GStrv
) hw_ids
= NULL
;
2371 g_autoptr(GuestDeviceInfo
) device
= g_new0(GuestDeviceInfo
, 1);
2372 g_autofree
char *vendor_id
= NULL
;
2373 g_autofree
char *device_id
= NULL
;
2375 name
= (LPWSTR
)cm_get_property(dev_info_data
.DevInst
,
2376 &qga_DEVPKEY_NAME
, &cm_type
);
2378 slog("failed to get device description");
2381 device
->driver_name
= g_utf16_to_utf8(name
, -1, NULL
, NULL
, NULL
);
2382 if (device
->driver_name
== NULL
) {
2383 error_setg(errp
, "conversion to utf8 failed (driver name)");
2386 slog("querying device: %s", device
->driver_name
);
2387 hw_ids
= ga_get_hardware_ids(dev_info_data
.DevInst
);
2388 if (hw_ids
== NULL
) {
2391 for (j
= 0; hw_ids
[j
] != NULL
; j
++) {
2392 GMatchInfo
*match_info
;
2393 GuestDeviceAddressPCI
*address
;
2394 if (!g_regex_match(device_pci_re
, hw_ids
[j
], 0, &match_info
)) {
2399 address
= g_new0(GuestDeviceAddressPCI
, 1);
2400 vendor_id
= g_match_info_fetch(match_info
, 1);
2401 device_id
= g_match_info_fetch(match_info
, 2);
2402 address
->vendor_id
= g_ascii_strtoull(vendor_id
, NULL
, 16);
2403 address
->device_id
= g_ascii_strtoull(device_id
, NULL
, 16);
2405 device
->address
= g_new0(GuestDeviceAddress
, 1);
2406 device
->has_address
= true;
2407 device
->address
->type
= GUEST_DEVICE_ADDRESS_KIND_PCI
;
2408 device
->address
->u
.pci
.data
= address
;
2410 g_match_info_free(match_info
);
2417 version
= (LPWSTR
)cm_get_property(dev_info_data
.DevInst
,
2418 &qga_DEVPKEY_Device_DriverVersion
, &cm_type
);
2419 if (version
== NULL
) {
2420 slog("failed to get driver version");
2423 device
->driver_version
= g_utf16_to_utf8(version
, -1, NULL
,
2425 if (device
->driver_version
== NULL
) {
2426 error_setg(errp
, "conversion to utf8 failed (driver version)");
2429 device
->has_driver_version
= true;
2431 date
= (LPFILETIME
)cm_get_property(dev_info_data
.DevInst
,
2432 &qga_DEVPKEY_Device_DriverDate
, &cm_type
);
2434 slog("failed to get driver date");
2437 FileTimeToSystemTime(date
, &utc_date
);
2438 device
->driver_date
= g_strdup_printf("%04d-%02d-%02d",
2439 utc_date
.wYear
, utc_date
.wMonth
, utc_date
.wDay
);
2440 device
->has_driver_date
= true;
2442 slog("driver: %s\ndriver version: %s,%s\n", device
->driver_name
,
2443 device
->driver_date
, device
->driver_version
);
2444 item
= g_new0(GuestDeviceInfoList
, 1);
2445 item
->value
= g_steal_pointer(&device
);
2447 head
= cur_item
= item
;
2449 cur_item
->next
= item
;
2455 if (dev_info
!= INVALID_HANDLE_VALUE
) {
2456 SetupDiDestroyDeviceInfoList(dev_info
);