1 | /** @file
|
---|
2 | * Virtual Device for Guest <-> VMM/Host communication (ADD,DEV).
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2011 Oracle Corporation
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | */
|
---|
25 |
|
---|
26 | #ifndef ___VBox_VMMDev_h
|
---|
27 | #define ___VBox_VMMDev_h
|
---|
28 |
|
---|
29 | #include <VBox/cdefs.h>
|
---|
30 | #include <VBox/param.h> /* for the PCI IDs. */
|
---|
31 | #include <VBox/types.h>
|
---|
32 | #include <VBox/err.h>
|
---|
33 | #include <VBox/ostypes.h>
|
---|
34 | #include <VBox/VMMDev2.h>
|
---|
35 | #include <iprt/assert.h>
|
---|
36 |
|
---|
37 |
|
---|
38 | RT_C_DECLS_BEGIN
|
---|
39 |
|
---|
40 | /** @defgroup grp_vmmdev VMM Device
|
---|
41 | *
|
---|
42 | * Note! This interface cannot be changed, it can only be extended!
|
---|
43 | *
|
---|
44 | * @{
|
---|
45 | */
|
---|
46 |
|
---|
47 |
|
---|
48 | /** Size of VMMDev RAM region accessible by guest.
|
---|
49 | * Must be big enough to contain VMMDevMemory structure (see further down).
|
---|
50 | * For now: 4 megabyte.
|
---|
51 | */
|
---|
52 | #define VMMDEV_RAM_SIZE (4 * 256 * PAGE_SIZE)
|
---|
53 |
|
---|
54 | /** Size of VMMDev heap region accessible by guest.
|
---|
55 | * (Must be a power of two (pci range).)
|
---|
56 | */
|
---|
57 | #define VMMDEV_HEAP_SIZE (4 * PAGE_SIZE)
|
---|
58 |
|
---|
59 | /** Port for generic request interface (relative offset). */
|
---|
60 | #define VMMDEV_PORT_OFF_REQUEST 0
|
---|
61 |
|
---|
62 |
|
---|
63 | /** @name VMMDev events.
|
---|
64 | *
|
---|
65 | * Used mainly by VMMDevReq_AcknowledgeEvents/VMMDevEvents and version 1.3 of
|
---|
66 | * VMMDevMemory.
|
---|
67 | *
|
---|
68 | * @{
|
---|
69 | */
|
---|
70 | /** Host mouse capabilities has been changed. */
|
---|
71 | #define VMMDEV_EVENT_MOUSE_CAPABILITIES_CHANGED RT_BIT(0)
|
---|
72 | /** HGCM event. */
|
---|
73 | #define VMMDEV_EVENT_HGCM RT_BIT(1)
|
---|
74 | /** A display change request has been issued. */
|
---|
75 | #define VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST RT_BIT(2)
|
---|
76 | /** Credentials are available for judgement. */
|
---|
77 | #define VMMDEV_EVENT_JUDGE_CREDENTIALS RT_BIT(3)
|
---|
78 | /** The guest has been restored. */
|
---|
79 | #define VMMDEV_EVENT_RESTORED RT_BIT(4)
|
---|
80 | /** Seamless mode state changed. */
|
---|
81 | #define VMMDEV_EVENT_SEAMLESS_MODE_CHANGE_REQUEST RT_BIT(5)
|
---|
82 | /** Memory balloon size changed. */
|
---|
83 | #define VMMDEV_EVENT_BALLOON_CHANGE_REQUEST RT_BIT(6)
|
---|
84 | /** Statistics interval changed. */
|
---|
85 | #define VMMDEV_EVENT_STATISTICS_INTERVAL_CHANGE_REQUEST RT_BIT(7)
|
---|
86 | /** VRDP status changed. */
|
---|
87 | #define VMMDEV_EVENT_VRDP RT_BIT(8)
|
---|
88 | /** New mouse position data available. */
|
---|
89 | #define VMMDEV_EVENT_MOUSE_POSITION_CHANGED RT_BIT(9)
|
---|
90 | /** CPU hotplug event occurred. */
|
---|
91 | #define VMMDEV_EVENT_CPU_HOTPLUG RT_BIT(10)
|
---|
92 | /** The mask of valid events, for sanity checking. */
|
---|
93 | #define VMMDEV_EVENT_VALID_EVENT_MASK UINT32_C(0x000007ff)
|
---|
94 | /** @} */
|
---|
95 |
|
---|
96 |
|
---|
97 | /** @defgroup grp_vmmdev_req VMMDev Generic Request Interface
|
---|
98 | * @{
|
---|
99 | */
|
---|
100 |
|
---|
101 | /** @name Current version of the VMMDev interface.
|
---|
102 | *
|
---|
103 | * Additions are allowed to work only if
|
---|
104 | * additions_major == vmmdev_current && additions_minor <= vmmdev_current.
|
---|
105 | * Additions version is reported to host (VMMDev) by VMMDevReq_ReportGuestInfo.
|
---|
106 | *
|
---|
107 | * @remarks These defines also live in the 16-bit and assembly versions of this
|
---|
108 | * header.
|
---|
109 | */
|
---|
110 | #define VMMDEV_VERSION 0x00010004
|
---|
111 | #define VMMDEV_VERSION_MAJOR (VMMDEV_VERSION >> 16)
|
---|
112 | #define VMMDEV_VERSION_MINOR (VMMDEV_VERSION & 0xffff)
|
---|
113 | /** @} */
|
---|
114 |
|
---|
115 | /** Maximum request packet size. */
|
---|
116 | #define VMMDEV_MAX_VMMDEVREQ_SIZE _1M
|
---|
117 |
|
---|
118 | /**
|
---|
119 | * VMMDev request types.
|
---|
120 | * @note when updating this, adjust vmmdevGetRequestSize() as well
|
---|
121 | */
|
---|
122 | typedef enum
|
---|
123 | {
|
---|
124 | VMMDevReq_InvalidRequest = 0,
|
---|
125 | VMMDevReq_GetMouseStatus = 1,
|
---|
126 | VMMDevReq_SetMouseStatus = 2,
|
---|
127 | VMMDevReq_SetPointerShape = 3,
|
---|
128 | VMMDevReq_GetHostVersion = 4,
|
---|
129 | VMMDevReq_Idle = 5,
|
---|
130 | VMMDevReq_GetHostTime = 10,
|
---|
131 | VMMDevReq_GetHypervisorInfo = 20,
|
---|
132 | VMMDevReq_SetHypervisorInfo = 21,
|
---|
133 | VMMDevReq_RegisterPatchMemory = 22, /* since version 3.0.6 */
|
---|
134 | VMMDevReq_DeregisterPatchMemory = 23, /* since version 3.0.6 */
|
---|
135 | VMMDevReq_SetPowerStatus = 30,
|
---|
136 | VMMDevReq_AcknowledgeEvents = 41,
|
---|
137 | VMMDevReq_CtlGuestFilterMask = 42,
|
---|
138 | VMMDevReq_ReportGuestInfo = 50,
|
---|
139 | VMMDevReq_ReportGuestInfo2 = 58, /* since version 3.2.0 */
|
---|
140 | VMMDevReq_ReportGuestStatus = 59, /* since version 3.2.8 */
|
---|
141 | /**
|
---|
142 | * Retrieve a display resize request sent by the host using
|
---|
143 | * @a IDisplay:setVideoModeHint. Deprecated.
|
---|
144 | *
|
---|
145 | * Similar to @a VMMDevReq_GetDisplayChangeRequest2, except that it only
|
---|
146 | * considers host requests sent for the first virtual display. This guest
|
---|
147 | * request should not be used in new guest code, and the results are
|
---|
148 | * undefined if a guest mixes calls to this and
|
---|
149 | * @a VMMDevReq_GetDisplayChangeRequest2.
|
---|
150 | */
|
---|
151 | VMMDevReq_GetDisplayChangeRequest = 51,
|
---|
152 | VMMDevReq_VideoModeSupported = 52,
|
---|
153 | VMMDevReq_GetHeightReduction = 53,
|
---|
154 | /**
|
---|
155 | * Retrieve a display resize request sent by the host using
|
---|
156 | * @a IDisplay:setVideoModeHint.
|
---|
157 | *
|
---|
158 | * Queries a display resize request sent from the host. If the
|
---|
159 | * @a eventAck member is sent to true and there is an unqueried
|
---|
160 | * request available for one of the virtual display then that request will
|
---|
161 | * be returned. If several displays have unqueried requests the lowest
|
---|
162 | * numbered display will be chosen first. Only the most recent unseen
|
---|
163 | * request for each display is remembered.
|
---|
164 | * If @a eventAck is set to false, the last host request queried with
|
---|
165 | * @a eventAck set is resent, or failing that the most recent received from
|
---|
166 | * the host. If no host request was ever received then all zeros are
|
---|
167 | * returned.
|
---|
168 | */
|
---|
169 | VMMDevReq_GetDisplayChangeRequest2 = 54,
|
---|
170 | VMMDevReq_ReportGuestCapabilities = 55,
|
---|
171 | VMMDevReq_SetGuestCapabilities = 56,
|
---|
172 | VMMDevReq_VideoModeSupported2 = 57, /* since version 3.2.0 */
|
---|
173 | #ifdef VBOX_WITH_HGCM
|
---|
174 | VMMDevReq_HGCMConnect = 60,
|
---|
175 | VMMDevReq_HGCMDisconnect = 61,
|
---|
176 | #ifdef VBOX_WITH_64_BITS_GUESTS
|
---|
177 | VMMDevReq_HGCMCall32 = 62,
|
---|
178 | VMMDevReq_HGCMCall64 = 63,
|
---|
179 | #else
|
---|
180 | VMMDevReq_HGCMCall = 62,
|
---|
181 | #endif /* VBOX_WITH_64_BITS_GUESTS */
|
---|
182 | VMMDevReq_HGCMCancel = 64,
|
---|
183 | VMMDevReq_HGCMCancel2 = 65,
|
---|
184 | #endif
|
---|
185 | VMMDevReq_VideoAccelEnable = 70,
|
---|
186 | VMMDevReq_VideoAccelFlush = 71,
|
---|
187 | VMMDevReq_VideoSetVisibleRegion = 72,
|
---|
188 | VMMDevReq_GetSeamlessChangeRequest = 73,
|
---|
189 | VMMDevReq_QueryCredentials = 100,
|
---|
190 | VMMDevReq_ReportCredentialsJudgement = 101,
|
---|
191 | VMMDevReq_ReportGuestStats = 110,
|
---|
192 | VMMDevReq_GetMemBalloonChangeRequest = 111,
|
---|
193 | VMMDevReq_GetStatisticsChangeRequest = 112,
|
---|
194 | VMMDevReq_ChangeMemBalloon = 113,
|
---|
195 | VMMDevReq_GetVRDPChangeRequest = 150,
|
---|
196 | VMMDevReq_LogString = 200,
|
---|
197 | VMMDevReq_GetCpuHotPlugRequest = 210,
|
---|
198 | VMMDevReq_SetCpuHotPlugStatus = 211,
|
---|
199 | VMMDevReq_RegisterSharedModule = 212,
|
---|
200 | VMMDevReq_UnregisterSharedModule = 213,
|
---|
201 | VMMDevReq_CheckSharedModules = 214,
|
---|
202 | VMMDevReq_GetPageSharingStatus = 215,
|
---|
203 | VMMDevReq_DebugIsPageShared = 216,
|
---|
204 | VMMDevReq_GetSessionId = 217, /* since version 3.2.8 */
|
---|
205 | VMMDevReq_WriteCoreDump = 218,
|
---|
206 | VMMDevReq_SizeHack = 0x7fffffff
|
---|
207 | } VMMDevRequestType;
|
---|
208 |
|
---|
209 | #ifdef VBOX_WITH_64_BITS_GUESTS
|
---|
210 | /*
|
---|
211 | * Constants and structures are redefined for the guest.
|
---|
212 | *
|
---|
213 | * Host code MUST always use either *32 or *64 variant explicitely.
|
---|
214 | * Host source code will use VBOX_HGCM_HOST_CODE define to catch undefined
|
---|
215 | * data types and constants.
|
---|
216 | *
|
---|
217 | * This redefinition means that the new additions builds will use
|
---|
218 | * the *64 or *32 variants depending on the current architecture bit count (ARCH_BITS).
|
---|
219 | */
|
---|
220 | # ifndef VBOX_HGCM_HOST_CODE
|
---|
221 | # if ARCH_BITS == 64
|
---|
222 | # define VMMDevReq_HGCMCall VMMDevReq_HGCMCall64
|
---|
223 | # elif ARCH_BITS == 32
|
---|
224 | # define VMMDevReq_HGCMCall VMMDevReq_HGCMCall32
|
---|
225 | # else
|
---|
226 | # error "Unsupported ARCH_BITS"
|
---|
227 | # endif
|
---|
228 | # endif /* !VBOX_HGCM_HOST_CODE */
|
---|
229 | #endif /* VBOX_WITH_64_BITS_GUESTS */
|
---|
230 |
|
---|
231 | /** Version of VMMDevRequestHeader structure. */
|
---|
232 | #define VMMDEV_REQUEST_HEADER_VERSION (0x10001)
|
---|
233 |
|
---|
234 | #pragma pack(4) /* force structure dword packing here. */
|
---|
235 |
|
---|
236 | /**
|
---|
237 | * Generic VMMDev request header.
|
---|
238 | */
|
---|
239 | typedef struct
|
---|
240 | {
|
---|
241 | /** IN: Size of the structure in bytes (including body). */
|
---|
242 | uint32_t size;
|
---|
243 | /** IN: Version of the structure. */
|
---|
244 | uint32_t version;
|
---|
245 | /** IN: Type of the request. */
|
---|
246 | VMMDevRequestType requestType;
|
---|
247 | /** OUT: Return code. */
|
---|
248 | int32_t rc;
|
---|
249 | /** Reserved field no.1. MBZ. */
|
---|
250 | uint32_t reserved1;
|
---|
251 | /** Reserved field no.2. MBZ. */
|
---|
252 | uint32_t reserved2;
|
---|
253 | } VMMDevRequestHeader;
|
---|
254 | AssertCompileSize(VMMDevRequestHeader, 24);
|
---|
255 |
|
---|
256 |
|
---|
257 | /**
|
---|
258 | * Mouse status request structure.
|
---|
259 | *
|
---|
260 | * Used by VMMDevReq_GetMouseStatus and VMMDevReq_SetMouseStatus.
|
---|
261 | */
|
---|
262 | typedef struct
|
---|
263 | {
|
---|
264 | /** header */
|
---|
265 | VMMDevRequestHeader header;
|
---|
266 | /** Mouse feature mask. See VMMDEV_MOUSE_*. */
|
---|
267 | uint32_t mouseFeatures;
|
---|
268 | /** Mouse x position. */
|
---|
269 | int32_t pointerXPos;
|
---|
270 | /** Mouse y position. */
|
---|
271 | int32_t pointerYPos;
|
---|
272 | } VMMDevReqMouseStatus;
|
---|
273 | AssertCompileSize(VMMDevReqMouseStatus, 24+12);
|
---|
274 |
|
---|
275 | /** @name Mouse capability bits (VMMDevReqMouseStatus::mouseFeatures).
|
---|
276 | * @{ */
|
---|
277 | /** The guest can (== wants to) handle absolute coordinates. */
|
---|
278 | #define VMMDEV_MOUSE_GUEST_CAN_ABSOLUTE RT_BIT(0)
|
---|
279 | /** The host can (== wants to) send absolute coordinates.
|
---|
280 | * (Input not captured.) */
|
---|
281 | #define VMMDEV_MOUSE_HOST_WANTS_ABSOLUTE RT_BIT(1)
|
---|
282 | /** The guest can *NOT* switch to software cursor and therefore depends on the
|
---|
283 | * host cursor.
|
---|
284 | *
|
---|
285 | * When guest additions are installed and the host has promised to display the
|
---|
286 | * cursor itself, the guest installs a hardware mouse driver. Don't ask the
|
---|
287 | * guest to switch to a software cursor then. */
|
---|
288 | #define VMMDEV_MOUSE_GUEST_NEEDS_HOST_CURSOR RT_BIT(2)
|
---|
289 | /** The host does NOT provide support for drawing the cursor itself.
|
---|
290 | * This is for instance the case for the L4 console. */
|
---|
291 | #define VMMDEV_MOUSE_HOST_CANNOT_HWPOINTER RT_BIT(3)
|
---|
292 | /** The guest can read VMMDev events to find out about pointer movement */
|
---|
293 | #define VMMDEV_MOUSE_NEW_PROTOCOL RT_BIT(4)
|
---|
294 | /** If the guest changes the status of the
|
---|
295 | * VMMDEV_MOUSE_GUEST_NEEDS_HOST_CURSOR bit, the host will honour this */
|
---|
296 | #define VMMDEV_MOUSE_HOST_RECHECKS_NEEDS_HOST_CURSOR RT_BIT(5)
|
---|
297 | /** The host supplies an absolute pointing device. The Guest Additions may
|
---|
298 | * wish to use this to decide whether to install their own driver */
|
---|
299 | #define VMMDEV_MOUSE_HOST_HAS_ABS_DEV RT_BIT(6)
|
---|
300 | /** The mask of all VMMDEV_MOUSE_* flags */
|
---|
301 | #define VMMDEV_MOUSE_MASK UINT32_C(0x0000007f)
|
---|
302 | /** The mask of guest capability changes for which notification events should
|
---|
303 | * be sent */
|
---|
304 | #define VMMDEV_MOUSE_NOTIFY_HOST_MASK \
|
---|
305 | (VMMDEV_MOUSE_GUEST_CAN_ABSOLUTE | VMMDEV_MOUSE_GUEST_NEEDS_HOST_CURSOR)
|
---|
306 | /** The mask of all capabilities which the guest can legitimately change */
|
---|
307 | #define VMMDEV_MOUSE_GUEST_MASK \
|
---|
308 | (VMMDEV_MOUSE_NOTIFY_HOST_MASK | VMMDEV_MOUSE_NEW_PROTOCOL)
|
---|
309 | /** The mask of host capability changes for which notification events should
|
---|
310 | * be sent */
|
---|
311 | #define VMMDEV_MOUSE_NOTIFY_GUEST_MASK \
|
---|
312 | VMMDEV_MOUSE_HOST_WANTS_ABSOLUTE
|
---|
313 | /** The mask of all capabilities which the host can legitimately change */
|
---|
314 | #define VMMDEV_MOUSE_HOST_MASK \
|
---|
315 | ( VMMDEV_MOUSE_NOTIFY_GUEST_MASK \
|
---|
316 | | VMMDEV_MOUSE_HOST_CANNOT_HWPOINTER \
|
---|
317 | | VMMDEV_MOUSE_HOST_RECHECKS_NEEDS_HOST_CURSOR \
|
---|
318 | | VMMDEV_MOUSE_HOST_HAS_ABS_DEV)
|
---|
319 | /** @} */
|
---|
320 |
|
---|
321 | /** @name Absolute mouse reporting range
|
---|
322 | * @{ */
|
---|
323 | /** @todo Should these be here? They are needed by both host and guest. */
|
---|
324 | /** The minumum value our pointing device can return. */
|
---|
325 | #define VMMDEV_MOUSE_RANGE_MIN 0
|
---|
326 | /** The maximum value our pointing device can return. */
|
---|
327 | #define VMMDEV_MOUSE_RANGE_MAX 0xFFFF
|
---|
328 | /** The full range our pointing device can return. */
|
---|
329 | #define VMMDEV_MOUSE_RANGE (VMMDEV_MOUSE_RANGE_MAX - VMMDEV_MOUSE_RANGE_MIN)
|
---|
330 | /** @} */
|
---|
331 |
|
---|
332 |
|
---|
333 | /**
|
---|
334 | * Mouse pointer shape/visibility change request.
|
---|
335 | *
|
---|
336 | * Used by VMMDevReq_SetPointerShape. The size is variable.
|
---|
337 | */
|
---|
338 | typedef struct VMMDevReqMousePointer
|
---|
339 | {
|
---|
340 | /** Header. */
|
---|
341 | VMMDevRequestHeader header;
|
---|
342 | /** VBOX_MOUSE_POINTER_* bit flags. */
|
---|
343 | uint32_t fFlags;
|
---|
344 | /** x coordinate of hot spot. */
|
---|
345 | uint32_t xHot;
|
---|
346 | /** y coordinate of hot spot. */
|
---|
347 | uint32_t yHot;
|
---|
348 | /** Width of the pointer in pixels. */
|
---|
349 | uint32_t width;
|
---|
350 | /** Height of the pointer in scanlines. */
|
---|
351 | uint32_t height;
|
---|
352 | /** Pointer data.
|
---|
353 | *
|
---|
354 | ****
|
---|
355 | * The data consists of 1 bpp AND mask followed by 32 bpp XOR (color) mask.
|
---|
356 | *
|
---|
357 | * For pointers without alpha channel the XOR mask pixels are 32 bit values: (lsb)BGR0(msb).
|
---|
358 | * For pointers with alpha channel the XOR mask consists of (lsb)BGRA(msb) 32 bit values.
|
---|
359 | *
|
---|
360 | * Guest driver must create the AND mask for pointers with alpha channel, so if host does not
|
---|
361 | * support alpha, the pointer could be displayed as a normal color pointer. The AND mask can
|
---|
362 | * be constructed from alpha values. For example alpha value >= 0xf0 means bit 0 in the AND mask.
|
---|
363 | *
|
---|
364 | * The AND mask is 1 bpp bitmap with byte aligned scanlines. Size of AND mask,
|
---|
365 | * therefore, is cbAnd = (width + 7) / 8 * height. The padding bits at the
|
---|
366 | * end of any scanline are undefined.
|
---|
367 | *
|
---|
368 | * The XOR mask follows the AND mask on the next 4 bytes aligned offset:
|
---|
369 | * uint8_t *pXor = pAnd + (cbAnd + 3) & ~3
|
---|
370 | * Bytes in the gap between the AND and the XOR mask are undefined.
|
---|
371 | * XOR mask scanlines have no gap between them and size of XOR mask is:
|
---|
372 | * cXor = width * 4 * height.
|
---|
373 | ****
|
---|
374 | *
|
---|
375 | * Preallocate 4 bytes for accessing actual data as p->pointerData.
|
---|
376 | */
|
---|
377 | char pointerData[4];
|
---|
378 | } VMMDevReqMousePointer;
|
---|
379 | AssertCompileSize(VMMDevReqMousePointer, 24+24);
|
---|
380 |
|
---|
381 | /**
|
---|
382 | * Get the size that a VMMDevReqMousePointer request should have for a given
|
---|
383 | * size of cursor, including the trailing cursor image and mask data.
|
---|
384 | * @note an "empty" request still has the four preallocated bytes of data
|
---|
385 | *
|
---|
386 | * @returns the size
|
---|
387 | * @param width the cursor width
|
---|
388 | * @param height the cursor height
|
---|
389 | */
|
---|
390 | DECLINLINE(size_t) vmmdevGetMousePointerReqSize(uint32_t width, uint32_t height)
|
---|
391 | {
|
---|
392 | size_t cbBase = RT_OFFSETOF(VMMDevReqMousePointer, pointerData);
|
---|
393 | size_t cbMask = (width + 7) / 8 * height;
|
---|
394 | size_t cbArgb = width * height * 4;
|
---|
395 | return RT_MAX(cbBase + ((cbMask + 3) & ~3) + cbArgb,
|
---|
396 | sizeof(VMMDevReqMousePointer));
|
---|
397 | }
|
---|
398 |
|
---|
399 | /** @name VMMDevReqMousePointer::fFlags
|
---|
400 | * @note The VBOX_MOUSE_POINTER_* flags are used in the guest video driver,
|
---|
401 | * values must be <= 0x8000 and must not be changed. (try make more sense
|
---|
402 | * of this, please).
|
---|
403 | * @{
|
---|
404 | */
|
---|
405 | /** pointer is visible */
|
---|
406 | #define VBOX_MOUSE_POINTER_VISIBLE (0x0001)
|
---|
407 | /** pointer has alpha channel */
|
---|
408 | #define VBOX_MOUSE_POINTER_ALPHA (0x0002)
|
---|
409 | /** pointerData contains new pointer shape */
|
---|
410 | #define VBOX_MOUSE_POINTER_SHAPE (0x0004)
|
---|
411 | /** @} */
|
---|
412 |
|
---|
413 |
|
---|
414 | /**
|
---|
415 | * String log request structure.
|
---|
416 | *
|
---|
417 | * Used by VMMDevReq_LogString.
|
---|
418 | * @deprecated Use the IPRT logger or VbglR3WriteLog instead.
|
---|
419 | */
|
---|
420 | typedef struct
|
---|
421 | {
|
---|
422 | /** header */
|
---|
423 | VMMDevRequestHeader header;
|
---|
424 | /** variable length string data */
|
---|
425 | char szString[1];
|
---|
426 | } VMMDevReqLogString;
|
---|
427 | AssertCompileSize(VMMDevReqLogString, 24+4);
|
---|
428 |
|
---|
429 |
|
---|
430 | /**
|
---|
431 | * VirtualBox host version request structure.
|
---|
432 | *
|
---|
433 | * Used by VMMDevReq_GetHostVersion.
|
---|
434 | *
|
---|
435 | * @remarks VBGL uses this to detect the precense of new features in the
|
---|
436 | * interface.
|
---|
437 | */
|
---|
438 | typedef struct
|
---|
439 | {
|
---|
440 | /** Header. */
|
---|
441 | VMMDevRequestHeader header;
|
---|
442 | /** Major version. */
|
---|
443 | uint16_t major;
|
---|
444 | /** Minor version. */
|
---|
445 | uint16_t minor;
|
---|
446 | /** Build number. */
|
---|
447 | uint32_t build;
|
---|
448 | /** SVN revision. */
|
---|
449 | uint32_t revision;
|
---|
450 | /** Feature mask. */
|
---|
451 | uint32_t features;
|
---|
452 | } VMMDevReqHostVersion;
|
---|
453 | AssertCompileSize(VMMDevReqHostVersion, 24+16);
|
---|
454 |
|
---|
455 | /** @name VMMDevReqHostVersion::features
|
---|
456 | * @{ */
|
---|
457 | /** Physical page lists are supported by HGCM. */
|
---|
458 | #define VMMDEV_HVF_HGCM_PHYS_PAGE_LIST RT_BIT(0)
|
---|
459 | /** @} */
|
---|
460 |
|
---|
461 |
|
---|
462 | /**
|
---|
463 | * Guest capabilities structure.
|
---|
464 | *
|
---|
465 | * Used by VMMDevReq_ReportGuestCapabilities.
|
---|
466 | */
|
---|
467 | typedef struct
|
---|
468 | {
|
---|
469 | /** Header. */
|
---|
470 | VMMDevRequestHeader header;
|
---|
471 | /** Capabilities (VMMDEV_GUEST_*). */
|
---|
472 | uint32_t caps;
|
---|
473 | } VMMDevReqGuestCapabilities;
|
---|
474 | AssertCompileSize(VMMDevReqGuestCapabilities, 24+4);
|
---|
475 |
|
---|
476 | /**
|
---|
477 | * Guest capabilities structure, version 2.
|
---|
478 | *
|
---|
479 | * Used by VMMDevReq_SetGuestCapabilities.
|
---|
480 | */
|
---|
481 | typedef struct
|
---|
482 | {
|
---|
483 | /** Header. */
|
---|
484 | VMMDevRequestHeader header;
|
---|
485 | /** Mask of capabilities to be added. */
|
---|
486 | uint32_t u32OrMask;
|
---|
487 | /** Mask of capabilities to be removed. */
|
---|
488 | uint32_t u32NotMask;
|
---|
489 | } VMMDevReqGuestCapabilities2;
|
---|
490 | AssertCompileSize(VMMDevReqGuestCapabilities2, 24+8);
|
---|
491 |
|
---|
492 | /** @name Guest capability bits.
|
---|
493 | * Used by VMMDevReq_ReportGuestCapabilities and VMMDevReq_SetGuestCapabilities.
|
---|
494 | * @{ */
|
---|
495 | /** The guest supports seamless display rendering. */
|
---|
496 | #define VMMDEV_GUEST_SUPPORTS_SEAMLESS RT_BIT_32(0)
|
---|
497 | /** The guest supports mapping guest to host windows. */
|
---|
498 | #define VMMDEV_GUEST_SUPPORTS_GUEST_HOST_WINDOW_MAPPING RT_BIT_32(1)
|
---|
499 | /** The guest graphical additions are active.
|
---|
500 | * Used for fast activation and deactivation of certain graphical operations
|
---|
501 | * (e.g. resizing & seamless). The legacy VMMDevReq_ReportGuestCapabilities
|
---|
502 | * request sets this automatically, but VMMDevReq_SetGuestCapabilities does
|
---|
503 | * not. */
|
---|
504 | #define VMMDEV_GUEST_SUPPORTS_GRAPHICS RT_BIT_32(2)
|
---|
505 | /** @} */
|
---|
506 |
|
---|
507 |
|
---|
508 | /**
|
---|
509 | * Idle request structure.
|
---|
510 | *
|
---|
511 | * Used by VMMDevReq_Idle.
|
---|
512 | */
|
---|
513 | typedef struct
|
---|
514 | {
|
---|
515 | /** Header. */
|
---|
516 | VMMDevRequestHeader header;
|
---|
517 | } VMMDevReqIdle;
|
---|
518 | AssertCompileSize(VMMDevReqIdle, 24);
|
---|
519 |
|
---|
520 |
|
---|
521 | /**
|
---|
522 | * Host time request structure.
|
---|
523 | *
|
---|
524 | * Used by VMMDevReq_GetHostTime.
|
---|
525 | */
|
---|
526 | typedef struct
|
---|
527 | {
|
---|
528 | /** Header */
|
---|
529 | VMMDevRequestHeader header;
|
---|
530 | /** OUT: Time in milliseconds since unix epoch. */
|
---|
531 | uint64_t time;
|
---|
532 | } VMMDevReqHostTime;
|
---|
533 | AssertCompileSize(VMMDevReqHostTime, 24+8);
|
---|
534 |
|
---|
535 |
|
---|
536 | /**
|
---|
537 | * Hypervisor info structure.
|
---|
538 | *
|
---|
539 | * Used by VMMDevReq_GetHypervisorInfo and VMMDevReq_SetHypervisorInfo.
|
---|
540 | */
|
---|
541 | typedef struct
|
---|
542 | {
|
---|
543 | /** Header. */
|
---|
544 | VMMDevRequestHeader header;
|
---|
545 | /** Guest virtual address of proposed hypervisor start.
|
---|
546 | * Not used by VMMDevReq_GetHypervisorInfo.
|
---|
547 | * @todo Make this 64-bit compatible? */
|
---|
548 | RTGCPTR32 hypervisorStart;
|
---|
549 | /** Hypervisor size in bytes. */
|
---|
550 | uint32_t hypervisorSize;
|
---|
551 | } VMMDevReqHypervisorInfo;
|
---|
552 | AssertCompileSize(VMMDevReqHypervisorInfo, 24+8);
|
---|
553 |
|
---|
554 | /** @name Default patch memory size .
|
---|
555 | * Used by VMMDevReq_RegisterPatchMemory and VMMDevReq_DeregisterPatchMemory.
|
---|
556 | * @{ */
|
---|
557 | #define VMMDEV_GUEST_DEFAULT_PATCHMEM_SIZE 8192
|
---|
558 | /** @} */
|
---|
559 |
|
---|
560 | /**
|
---|
561 | * Patching memory structure. (locked executable & read-only page from the guest's perspective)
|
---|
562 | *
|
---|
563 | * Used by VMMDevReq_RegisterPatchMemory and VMMDevReq_DeregisterPatchMemory
|
---|
564 | */
|
---|
565 | typedef struct
|
---|
566 | {
|
---|
567 | /** Header. */
|
---|
568 | VMMDevRequestHeader header;
|
---|
569 | /** Guest virtual address of the patching page(s). */
|
---|
570 | RTGCPTR64 pPatchMem;
|
---|
571 | /** Patch page size in bytes. */
|
---|
572 | uint32_t cbPatchMem;
|
---|
573 | } VMMDevReqPatchMemory;
|
---|
574 | AssertCompileSize(VMMDevReqPatchMemory, 24+12);
|
---|
575 |
|
---|
576 |
|
---|
577 | /**
|
---|
578 | * Guest power requests.
|
---|
579 | *
|
---|
580 | * See VMMDevReq_SetPowerStatus and VMMDevPowerStateRequest.
|
---|
581 | */
|
---|
582 | typedef enum
|
---|
583 | {
|
---|
584 | VMMDevPowerState_Invalid = 0,
|
---|
585 | VMMDevPowerState_Pause = 1,
|
---|
586 | VMMDevPowerState_PowerOff = 2,
|
---|
587 | VMMDevPowerState_SaveState = 3,
|
---|
588 | VMMDevPowerState_SizeHack = 0x7fffffff
|
---|
589 | } VMMDevPowerState;
|
---|
590 | AssertCompileSize(VMMDevPowerState, 4);
|
---|
591 |
|
---|
592 | /**
|
---|
593 | * VM power status structure.
|
---|
594 | *
|
---|
595 | * Used by VMMDevReq_SetPowerStatus.
|
---|
596 | */
|
---|
597 | typedef struct
|
---|
598 | {
|
---|
599 | /** Header. */
|
---|
600 | VMMDevRequestHeader header;
|
---|
601 | /** Power state request. */
|
---|
602 | VMMDevPowerState powerState;
|
---|
603 | } VMMDevPowerStateRequest;
|
---|
604 | AssertCompileSize(VMMDevPowerStateRequest, 24+4);
|
---|
605 |
|
---|
606 |
|
---|
607 | /**
|
---|
608 | * Pending events structure.
|
---|
609 | *
|
---|
610 | * Used by VMMDevReq_AcknowledgeEvents.
|
---|
611 | */
|
---|
612 | typedef struct
|
---|
613 | {
|
---|
614 | /** Header. */
|
---|
615 | VMMDevRequestHeader header;
|
---|
616 | /** OUT: Pending event mask. */
|
---|
617 | uint32_t events;
|
---|
618 | } VMMDevEvents;
|
---|
619 | AssertCompileSize(VMMDevEvents, 24+4);
|
---|
620 |
|
---|
621 |
|
---|
622 | /**
|
---|
623 | * Guest event filter mask control.
|
---|
624 | *
|
---|
625 | * Used by VMMDevReq_CtlGuestFilterMask.
|
---|
626 | */
|
---|
627 | typedef struct
|
---|
628 | {
|
---|
629 | /** Header. */
|
---|
630 | VMMDevRequestHeader header;
|
---|
631 | /** Mask of events to be added to the filter. */
|
---|
632 | uint32_t u32OrMask;
|
---|
633 | /** Mask of events to be removed from the filter. */
|
---|
634 | uint32_t u32NotMask;
|
---|
635 | } VMMDevCtlGuestFilterMask;
|
---|
636 | AssertCompileSize(VMMDevCtlGuestFilterMask, 24+8);
|
---|
637 |
|
---|
638 |
|
---|
639 | /**
|
---|
640 | * Guest information structure.
|
---|
641 | *
|
---|
642 | * Used by VMMDevReportGuestInfo and PDMIVMMDEVCONNECTOR::pfnUpdateGuestVersion.
|
---|
643 | */
|
---|
644 | typedef struct VBoxGuestInfo
|
---|
645 | {
|
---|
646 | /** The VMMDev interface version expected by additions.
|
---|
647 | * *Deprecated*, do not use anymore! Will be removed. */
|
---|
648 | uint32_t interfaceVersion;
|
---|
649 | /** Guest OS type. */
|
---|
650 | VBOXOSTYPE osType;
|
---|
651 | } VBoxGuestInfo;
|
---|
652 | AssertCompileSize(VBoxGuestInfo, 8);
|
---|
653 |
|
---|
654 | /**
|
---|
655 | * Guest information report.
|
---|
656 | *
|
---|
657 | * Used by VMMDevReq_ReportGuestInfo.
|
---|
658 | */
|
---|
659 | typedef struct
|
---|
660 | {
|
---|
661 | /** Header. */
|
---|
662 | VMMDevRequestHeader header;
|
---|
663 | /** Guest information. */
|
---|
664 | VBoxGuestInfo guestInfo;
|
---|
665 | } VMMDevReportGuestInfo;
|
---|
666 | AssertCompileSize(VMMDevReportGuestInfo, 24+8);
|
---|
667 |
|
---|
668 |
|
---|
669 | /**
|
---|
670 | * Guest information structure, version 2.
|
---|
671 | *
|
---|
672 | * Used by VMMDevReportGuestInfo2 and PDMIVMMDEVCONNECTOR::pfnUpdateGuestVersion2.
|
---|
673 | */
|
---|
674 | typedef struct VBoxGuestInfo2
|
---|
675 | {
|
---|
676 | /** Major version. */
|
---|
677 | uint16_t additionsMajor;
|
---|
678 | /** Minor version. */
|
---|
679 | uint16_t additionsMinor;
|
---|
680 | /** Build number. */
|
---|
681 | uint32_t additionsBuild;
|
---|
682 | /** SVN revision. */
|
---|
683 | uint32_t additionsRevision;
|
---|
684 | /** Feature mask, currently unused. */
|
---|
685 | uint32_t additionsFeatures;
|
---|
686 | /** The intentional meaning of this field was:
|
---|
687 | * Some additional information, for example 'Beta 1' or something like that.
|
---|
688 | *
|
---|
689 | * The way it was implemented was implemented: VBOX_VERSION_STRING.
|
---|
690 | *
|
---|
691 | * This means the first three members are duplicated in this field (if the guest
|
---|
692 | * build config is sane). So, the user must check this and chop it off before
|
---|
693 | * usage. There is, because of the Main code's blind trust in the field's
|
---|
694 | * content, no way back. */
|
---|
695 | char szName[128];
|
---|
696 | } VBoxGuestInfo2;
|
---|
697 | AssertCompileSize(VBoxGuestInfo2, 144);
|
---|
698 |
|
---|
699 | /**
|
---|
700 | * Guest information report, version 2.
|
---|
701 | *
|
---|
702 | * Used by VMMDevReq_ReportGuestInfo2.
|
---|
703 | */
|
---|
704 | typedef struct
|
---|
705 | {
|
---|
706 | /** Header. */
|
---|
707 | VMMDevRequestHeader header;
|
---|
708 | /** Guest information. */
|
---|
709 | VBoxGuestInfo2 guestInfo;
|
---|
710 | } VMMDevReportGuestInfo2;
|
---|
711 | AssertCompileSize(VMMDevReportGuestInfo2, 24+144);
|
---|
712 |
|
---|
713 |
|
---|
714 | /**
|
---|
715 | * The guest facility.
|
---|
716 | * This needs to be kept in sync with AdditionsFacilityType of the Main API!
|
---|
717 | */
|
---|
718 | typedef enum
|
---|
719 | {
|
---|
720 | VBoxGuestFacilityType_Unknown = 0,
|
---|
721 | VBoxGuestFacilityType_VBoxGuestDriver = 20,
|
---|
722 | VBoxGuestFacilityType_AutoLogon = 90, /* VBoxGINA / VBoxCredProv / pam_vbox. */
|
---|
723 | VBoxGuestFacilityType_VBoxService = 100,
|
---|
724 | VBoxGuestFacilityType_VBoxTrayClient = 101, /* VBoxTray (Windows), VBoxClient (Linux, Unix). */
|
---|
725 | VBoxGuestFacilityType_Seamless = 1000,
|
---|
726 | VBoxGuestFacilityType_Graphics = 1100,
|
---|
727 | VBoxGuestFacilityType_All = 0x7ffffffe,
|
---|
728 | VBoxGuestFacilityType_SizeHack = 0x7fffffff
|
---|
729 | } VBoxGuestFacilityType;
|
---|
730 | AssertCompileSize(VBoxGuestFacilityType, 4);
|
---|
731 |
|
---|
732 |
|
---|
733 | /**
|
---|
734 | * The current guest status of a facility.
|
---|
735 | * This needs to be kept in sync with AdditionsFacilityStatus of the Main API!
|
---|
736 | */
|
---|
737 | typedef enum
|
---|
738 | {
|
---|
739 | VBoxGuestFacilityStatus_Inactive = 0,
|
---|
740 | VBoxGuestFacilityStatus_Paused = 1,
|
---|
741 | VBoxGuestFacilityStatus_PreInit = 20,
|
---|
742 | VBoxGuestFacilityStatus_Init = 30,
|
---|
743 | VBoxGuestFacilityStatus_Active = 50,
|
---|
744 | VBoxGuestFacilityStatus_Terminating = 100,
|
---|
745 | VBoxGuestFacilityStatus_Terminated = 101,
|
---|
746 | VBoxGuestFacilityStatus_Failed = 800,
|
---|
747 | VBoxGuestFacilityStatus_Unknown = 999,
|
---|
748 | VBoxGuestFacilityStatus_SizeHack = 0x7fffffff
|
---|
749 | } VBoxGuestFacilityStatus;
|
---|
750 | AssertCompileSize(VBoxGuestFacilityStatus, 4);
|
---|
751 |
|
---|
752 |
|
---|
753 | /**
|
---|
754 | * The facility class.
|
---|
755 | * This needs to be kept in sync with AdditionsFacilityClass of the Main API!
|
---|
756 | */
|
---|
757 | typedef enum
|
---|
758 | {
|
---|
759 | VBoxGuestFacilityClass_None = 0,
|
---|
760 | VBoxGuestFacilityClass_Driver = 10,
|
---|
761 | VBoxGuestFacilityClass_Service = 30,
|
---|
762 | VBoxGuestFacilityClass_Program = 50,
|
---|
763 | VBoxGuestFacilityClass_Feature = 100,
|
---|
764 | VBoxGuestFacilityClass_ThirdParty = 999,
|
---|
765 | VBoxGuestFacilityClass_All = 0x7ffffffe,
|
---|
766 | VBoxGuestFacilityClass_SizeHack = 0x7fffffff
|
---|
767 | } VBoxGuestFacilityClass;
|
---|
768 | AssertCompileSize(VBoxGuestFacilityClass, 4);
|
---|
769 |
|
---|
770 |
|
---|
771 | /**
|
---|
772 | * Guest status structure.
|
---|
773 | *
|
---|
774 | * Used by VMMDevReqGuestStatus.
|
---|
775 | */
|
---|
776 | typedef struct VBoxGuestStatus
|
---|
777 | {
|
---|
778 | /** Facility the status is indicated for. */
|
---|
779 | VBoxGuestFacilityType facility;
|
---|
780 | /** Current guest status. */
|
---|
781 | VBoxGuestFacilityStatus status;
|
---|
782 | /** Flags, not used at the moment. */
|
---|
783 | uint32_t flags;
|
---|
784 | } VBoxGuestStatus;
|
---|
785 | AssertCompileSize(VBoxGuestStatus, 12);
|
---|
786 |
|
---|
787 | /**
|
---|
788 | * Guest Additions status structure.
|
---|
789 | *
|
---|
790 | * Used by VMMDevReq_ReportGuestStatus.
|
---|
791 | */
|
---|
792 | typedef struct
|
---|
793 | {
|
---|
794 | /** Header. */
|
---|
795 | VMMDevRequestHeader header;
|
---|
796 | /** Guest information. */
|
---|
797 | VBoxGuestStatus guestStatus;
|
---|
798 | } VMMDevReportGuestStatus;
|
---|
799 | AssertCompileSize(VMMDevReportGuestStatus, 24+12);
|
---|
800 |
|
---|
801 |
|
---|
802 | /**
|
---|
803 | * Guest statistics structure.
|
---|
804 | *
|
---|
805 | * Used by VMMDevReportGuestStats and PDMIVMMDEVCONNECTOR::pfnReportStatistics.
|
---|
806 | */
|
---|
807 | typedef struct VBoxGuestStatistics
|
---|
808 | {
|
---|
809 | /** Virtual CPU ID. */
|
---|
810 | uint32_t u32CpuId;
|
---|
811 | /** Reported statistics. */
|
---|
812 | uint32_t u32StatCaps;
|
---|
813 | /** Idle CPU load (0-100) for last interval. */
|
---|
814 | uint32_t u32CpuLoad_Idle;
|
---|
815 | /** Kernel CPU load (0-100) for last interval. */
|
---|
816 | uint32_t u32CpuLoad_Kernel;
|
---|
817 | /** User CPU load (0-100) for last interval. */
|
---|
818 | uint32_t u32CpuLoad_User;
|
---|
819 | /** Nr of threads. */
|
---|
820 | uint32_t u32Threads;
|
---|
821 | /** Nr of processes. */
|
---|
822 | uint32_t u32Processes;
|
---|
823 | /** Nr of handles. */
|
---|
824 | uint32_t u32Handles;
|
---|
825 | /** Memory load (0-100). */
|
---|
826 | uint32_t u32MemoryLoad;
|
---|
827 | /** Page size of guest system. */
|
---|
828 | uint32_t u32PageSize;
|
---|
829 | /** Total physical memory (in 4KB pages). */
|
---|
830 | uint32_t u32PhysMemTotal;
|
---|
831 | /** Available physical memory (in 4KB pages). */
|
---|
832 | uint32_t u32PhysMemAvail;
|
---|
833 | /** Ballooned physical memory (in 4KB pages). */
|
---|
834 | uint32_t u32PhysMemBalloon;
|
---|
835 | /** Total number of committed memory (which is not necessarily in-use) (in 4KB pages). */
|
---|
836 | uint32_t u32MemCommitTotal;
|
---|
837 | /** Total amount of memory used by the kernel (in 4KB pages). */
|
---|
838 | uint32_t u32MemKernelTotal;
|
---|
839 | /** Total amount of paged memory used by the kernel (in 4KB pages). */
|
---|
840 | uint32_t u32MemKernelPaged;
|
---|
841 | /** Total amount of nonpaged memory used by the kernel (in 4KB pages). */
|
---|
842 | uint32_t u32MemKernelNonPaged;
|
---|
843 | /** Total amount of memory used for the system cache (in 4KB pages). */
|
---|
844 | uint32_t u32MemSystemCache;
|
---|
845 | /** Pagefile size (in 4KB pages). */
|
---|
846 | uint32_t u32PageFileSize;
|
---|
847 | } VBoxGuestStatistics;
|
---|
848 | AssertCompileSize(VBoxGuestStatistics, 19*4);
|
---|
849 |
|
---|
850 | /** @name Guest statistics values (VBoxGuestStatistics::u32StatCaps).
|
---|
851 | * @{ */
|
---|
852 | #define VBOX_GUEST_STAT_CPU_LOAD_IDLE RT_BIT(0)
|
---|
853 | #define VBOX_GUEST_STAT_CPU_LOAD_KERNEL RT_BIT(1)
|
---|
854 | #define VBOX_GUEST_STAT_CPU_LOAD_USER RT_BIT(2)
|
---|
855 | #define VBOX_GUEST_STAT_THREADS RT_BIT(3)
|
---|
856 | #define VBOX_GUEST_STAT_PROCESSES RT_BIT(4)
|
---|
857 | #define VBOX_GUEST_STAT_HANDLES RT_BIT(5)
|
---|
858 | #define VBOX_GUEST_STAT_MEMORY_LOAD RT_BIT(6)
|
---|
859 | #define VBOX_GUEST_STAT_PHYS_MEM_TOTAL RT_BIT(7)
|
---|
860 | #define VBOX_GUEST_STAT_PHYS_MEM_AVAIL RT_BIT(8)
|
---|
861 | #define VBOX_GUEST_STAT_PHYS_MEM_BALLOON RT_BIT(9)
|
---|
862 | #define VBOX_GUEST_STAT_MEM_COMMIT_TOTAL RT_BIT(10)
|
---|
863 | #define VBOX_GUEST_STAT_MEM_KERNEL_TOTAL RT_BIT(11)
|
---|
864 | #define VBOX_GUEST_STAT_MEM_KERNEL_PAGED RT_BIT(12)
|
---|
865 | #define VBOX_GUEST_STAT_MEM_KERNEL_NONPAGED RT_BIT(13)
|
---|
866 | #define VBOX_GUEST_STAT_MEM_SYSTEM_CACHE RT_BIT(14)
|
---|
867 | #define VBOX_GUEST_STAT_PAGE_FILE_SIZE RT_BIT(15)
|
---|
868 | /** @} */
|
---|
869 |
|
---|
870 | /**
|
---|
871 | * Guest statistics command structure.
|
---|
872 | *
|
---|
873 | * Used by VMMDevReq_ReportGuestStats.
|
---|
874 | */
|
---|
875 | typedef struct
|
---|
876 | {
|
---|
877 | /** Header. */
|
---|
878 | VMMDevRequestHeader header;
|
---|
879 | /** Guest information. */
|
---|
880 | VBoxGuestStatistics guestStats;
|
---|
881 | } VMMDevReportGuestStats;
|
---|
882 | AssertCompileSize(VMMDevReportGuestStats, 24+19*4);
|
---|
883 |
|
---|
884 |
|
---|
885 | /** Memory balloon change request structure. */
|
---|
886 | #define VMMDEV_MAX_MEMORY_BALLOON(PhysMemTotal) ( (9 * (PhysMemTotal)) / 10 )
|
---|
887 |
|
---|
888 | /**
|
---|
889 | * Poll for ballooning change request.
|
---|
890 | *
|
---|
891 | * Used by VMMDevReq_GetMemBalloonChangeRequest.
|
---|
892 | */
|
---|
893 | typedef struct
|
---|
894 | {
|
---|
895 | /** Header. */
|
---|
896 | VMMDevRequestHeader header;
|
---|
897 | /** Balloon size in megabytes. */
|
---|
898 | uint32_t cBalloonChunks;
|
---|
899 | /** Guest ram size in megabytes. */
|
---|
900 | uint32_t cPhysMemChunks;
|
---|
901 | /** Setting this to VMMDEV_EVENT_BALLOON_CHANGE_REQUEST indicates that the
|
---|
902 | * request is a response to that event.
|
---|
903 | * (Don't confuse this with VMMDevReq_AcknowledgeEvents.) */
|
---|
904 | uint32_t eventAck;
|
---|
905 | } VMMDevGetMemBalloonChangeRequest;
|
---|
906 | AssertCompileSize(VMMDevGetMemBalloonChangeRequest, 24+12);
|
---|
907 |
|
---|
908 |
|
---|
909 | /**
|
---|
910 | * Change the size of the balloon.
|
---|
911 | *
|
---|
912 | * Used by VMMDevReq_ChangeMemBalloon.
|
---|
913 | */
|
---|
914 | typedef struct
|
---|
915 | {
|
---|
916 | /** Header. */
|
---|
917 | VMMDevRequestHeader header;
|
---|
918 | /** The number of pages in the array. */
|
---|
919 | uint32_t cPages;
|
---|
920 | /** true = inflate, false = deflate. */
|
---|
921 | uint32_t fInflate;
|
---|
922 | /** Physical address (RTGCPHYS) of each page, variable size. */
|
---|
923 | RTGCPHYS aPhysPage[1];
|
---|
924 | } VMMDevChangeMemBalloon;
|
---|
925 | AssertCompileSize(VMMDevChangeMemBalloon, 24+16);
|
---|
926 |
|
---|
927 | /** @name The ballooning chunk size which VMMDev works at.
|
---|
928 | * @{ */
|
---|
929 | #define VMMDEV_MEMORY_BALLOON_CHUNK_PAGES (_1M/4096)
|
---|
930 | #define VMMDEV_MEMORY_BALLOON_CHUNK_SIZE (VMMDEV_MEMORY_BALLOON_CHUNK_PAGES*4096)
|
---|
931 | /** @} */
|
---|
932 |
|
---|
933 |
|
---|
934 | /**
|
---|
935 | * Guest statistics interval change request structure.
|
---|
936 | *
|
---|
937 | * Used by VMMDevReq_GetStatisticsChangeRequest.
|
---|
938 | */
|
---|
939 | typedef struct
|
---|
940 | {
|
---|
941 | /** Header. */
|
---|
942 | VMMDevRequestHeader header;
|
---|
943 | /** The interval in seconds. */
|
---|
944 | uint32_t u32StatInterval;
|
---|
945 | /** Setting this to VMMDEV_EVENT_STATISTICS_INTERVAL_CHANGE_REQUEST indicates
|
---|
946 | * that the request is a response to that event.
|
---|
947 | * (Don't confuse this with VMMDevReq_AcknowledgeEvents.) */
|
---|
948 | uint32_t eventAck;
|
---|
949 | } VMMDevGetStatisticsChangeRequest;
|
---|
950 | AssertCompileSize(VMMDevGetStatisticsChangeRequest, 24+8);
|
---|
951 |
|
---|
952 |
|
---|
953 | /** The size of a string field in the credentials request (including '\\0').
|
---|
954 | * @see VMMDevCredentials */
|
---|
955 | #define VMMDEV_CREDENTIALS_SZ_SIZE 128
|
---|
956 |
|
---|
957 | /**
|
---|
958 | * Credentials request structure.
|
---|
959 | *
|
---|
960 | * Used by VMMDevReq_QueryCredentials.
|
---|
961 | */
|
---|
962 | #pragma pack(4)
|
---|
963 | typedef struct
|
---|
964 | {
|
---|
965 | /** Header. */
|
---|
966 | VMMDevRequestHeader header;
|
---|
967 | /** IN/OUT: Request flags. */
|
---|
968 | uint32_t u32Flags;
|
---|
969 | /** OUT: User name (UTF-8). */
|
---|
970 | char szUserName[VMMDEV_CREDENTIALS_SZ_SIZE];
|
---|
971 | /** OUT: Password (UTF-8). */
|
---|
972 | char szPassword[VMMDEV_CREDENTIALS_SZ_SIZE];
|
---|
973 | /** OUT: Domain name (UTF-8). */
|
---|
974 | char szDomain[VMMDEV_CREDENTIALS_SZ_SIZE];
|
---|
975 | } VMMDevCredentials;
|
---|
976 | AssertCompileSize(VMMDevCredentials, 24+4+3*128);
|
---|
977 | #pragma pack()
|
---|
978 |
|
---|
979 | /** @name Credentials request flag (VMMDevCredentials::u32Flags)
|
---|
980 | * @{ */
|
---|
981 | /** query from host whether credentials are present */
|
---|
982 | #define VMMDEV_CREDENTIALS_QUERYPRESENCE RT_BIT(1)
|
---|
983 | /** read credentials from host (can be combined with clear) */
|
---|
984 | #define VMMDEV_CREDENTIALS_READ RT_BIT(2)
|
---|
985 | /** clear credentials on host (can be combined with read) */
|
---|
986 | #define VMMDEV_CREDENTIALS_CLEAR RT_BIT(3)
|
---|
987 | /** read credentials for judgement in the guest */
|
---|
988 | #define VMMDEV_CREDENTIALS_READJUDGE RT_BIT(8)
|
---|
989 | /** clear credentials for judegement on the host */
|
---|
990 | #define VMMDEV_CREDENTIALS_CLEARJUDGE RT_BIT(9)
|
---|
991 | /** report credentials acceptance by guest */
|
---|
992 | #define VMMDEV_CREDENTIALS_JUDGE_OK RT_BIT(10)
|
---|
993 | /** report credentials denial by guest */
|
---|
994 | #define VMMDEV_CREDENTIALS_JUDGE_DENY RT_BIT(11)
|
---|
995 | /** report that no judgement could be made by guest */
|
---|
996 | #define VMMDEV_CREDENTIALS_JUDGE_NOJUDGEMENT RT_BIT(12)
|
---|
997 |
|
---|
998 | /** flag telling the guest that credentials are present */
|
---|
999 | #define VMMDEV_CREDENTIALS_PRESENT RT_BIT(16)
|
---|
1000 | /** flag telling guest that local logons should be prohibited */
|
---|
1001 | #define VMMDEV_CREDENTIALS_NOLOCALLOGON RT_BIT(17)
|
---|
1002 | /** @} */
|
---|
1003 |
|
---|
1004 |
|
---|
1005 | /**
|
---|
1006 | * Seamless mode change request structure.
|
---|
1007 | *
|
---|
1008 | * Used by VMMDevReq_GetSeamlessChangeRequest.
|
---|
1009 | */
|
---|
1010 | typedef struct
|
---|
1011 | {
|
---|
1012 | /** Header. */
|
---|
1013 | VMMDevRequestHeader header;
|
---|
1014 |
|
---|
1015 | /** New seamless mode. */
|
---|
1016 | VMMDevSeamlessMode mode;
|
---|
1017 | /** Setting this to VMMDEV_EVENT_SEAMLESS_MODE_CHANGE_REQUEST indicates
|
---|
1018 | * that the request is a response to that event.
|
---|
1019 | * (Don't confuse this with VMMDevReq_AcknowledgeEvents.) */
|
---|
1020 | uint32_t eventAck;
|
---|
1021 | } VMMDevSeamlessChangeRequest;
|
---|
1022 | AssertCompileSize(VMMDevSeamlessChangeRequest, 24+8);
|
---|
1023 | AssertCompileMemberOffset(VMMDevSeamlessChangeRequest, eventAck, 24+4);
|
---|
1024 |
|
---|
1025 |
|
---|
1026 | /**
|
---|
1027 | * Display change request structure.
|
---|
1028 | *
|
---|
1029 | * Used by VMMDevReq_GetDisplayChangeRequest.
|
---|
1030 | */
|
---|
1031 | typedef struct
|
---|
1032 | {
|
---|
1033 | /** Header. */
|
---|
1034 | VMMDevRequestHeader header;
|
---|
1035 | /** Horizontal pixel resolution (0 = do not change). */
|
---|
1036 | uint32_t xres;
|
---|
1037 | /** Vertical pixel resolution (0 = do not change). */
|
---|
1038 | uint32_t yres;
|
---|
1039 | /** Bits per pixel (0 = do not change). */
|
---|
1040 | uint32_t bpp;
|
---|
1041 | /** Setting this to VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST indicates
|
---|
1042 | * that the request is a response to that event.
|
---|
1043 | * (Don't confuse this with VMMDevReq_AcknowledgeEvents.) */
|
---|
1044 | uint32_t eventAck;
|
---|
1045 | } VMMDevDisplayChangeRequest;
|
---|
1046 | AssertCompileSize(VMMDevDisplayChangeRequest, 24+16);
|
---|
1047 |
|
---|
1048 |
|
---|
1049 | /**
|
---|
1050 | * Display change request structure, version 2.
|
---|
1051 | *
|
---|
1052 | * Used by VMMDevReq_GetDisplayChangeRequest2.
|
---|
1053 | */
|
---|
1054 | typedef struct
|
---|
1055 | {
|
---|
1056 | /** Header. */
|
---|
1057 | VMMDevRequestHeader header;
|
---|
1058 | /** Horizontal pixel resolution (0 = do not change). */
|
---|
1059 | uint32_t xres;
|
---|
1060 | /** Vertical pixel resolution (0 = do not change). */
|
---|
1061 | uint32_t yres;
|
---|
1062 | /** Bits per pixel (0 = do not change). */
|
---|
1063 | uint32_t bpp;
|
---|
1064 | /** Setting this to VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST indicates
|
---|
1065 | * that the request is a response to that event.
|
---|
1066 | * (Don't confuse this with VMMDevReq_AcknowledgeEvents.) */
|
---|
1067 | uint32_t eventAck;
|
---|
1068 | /** 0 for primary display, 1 for the first secondary, etc. */
|
---|
1069 | uint32_t display;
|
---|
1070 | } VMMDevDisplayChangeRequest2;
|
---|
1071 | AssertCompileSize(VMMDevDisplayChangeRequest2, 24+20);
|
---|
1072 |
|
---|
1073 |
|
---|
1074 | /**
|
---|
1075 | * Video mode supported request structure.
|
---|
1076 | *
|
---|
1077 | * Used by VMMDevReq_VideoModeSupported.
|
---|
1078 | */
|
---|
1079 | typedef struct
|
---|
1080 | {
|
---|
1081 | /** Header. */
|
---|
1082 | VMMDevRequestHeader header;
|
---|
1083 | /** IN: Horizontal pixel resolution. */
|
---|
1084 | uint32_t width;
|
---|
1085 | /** IN: Vertical pixel resolution. */
|
---|
1086 | uint32_t height;
|
---|
1087 | /** IN: Bits per pixel. */
|
---|
1088 | uint32_t bpp;
|
---|
1089 | /** OUT: Support indicator. */
|
---|
1090 | bool fSupported;
|
---|
1091 | } VMMDevVideoModeSupportedRequest;
|
---|
1092 | AssertCompileSize(VMMDevVideoModeSupportedRequest, 24+16);
|
---|
1093 |
|
---|
1094 | /**
|
---|
1095 | * Video mode supported request structure for a specific display.
|
---|
1096 | *
|
---|
1097 | * Used by VMMDevReq_VideoModeSupported2.
|
---|
1098 | */
|
---|
1099 | typedef struct
|
---|
1100 | {
|
---|
1101 | /** Header. */
|
---|
1102 | VMMDevRequestHeader header;
|
---|
1103 | /** IN: The guest display number. */
|
---|
1104 | uint32_t display;
|
---|
1105 | /** IN: Horizontal pixel resolution. */
|
---|
1106 | uint32_t width;
|
---|
1107 | /** IN: Vertical pixel resolution. */
|
---|
1108 | uint32_t height;
|
---|
1109 | /** IN: Bits per pixel. */
|
---|
1110 | uint32_t bpp;
|
---|
1111 | /** OUT: Support indicator. */
|
---|
1112 | bool fSupported;
|
---|
1113 | } VMMDevVideoModeSupportedRequest2;
|
---|
1114 | AssertCompileSize(VMMDevVideoModeSupportedRequest2, 24+20);
|
---|
1115 |
|
---|
1116 | /**
|
---|
1117 | * Video modes height reduction request structure.
|
---|
1118 | *
|
---|
1119 | * Used by VMMDevReq_GetHeightReduction.
|
---|
1120 | */
|
---|
1121 | typedef struct
|
---|
1122 | {
|
---|
1123 | /** Header. */
|
---|
1124 | VMMDevRequestHeader header;
|
---|
1125 | /** OUT: Height reduction in pixels. */
|
---|
1126 | uint32_t heightReduction;
|
---|
1127 | } VMMDevGetHeightReductionRequest;
|
---|
1128 | AssertCompileSize(VMMDevGetHeightReductionRequest, 24+4);
|
---|
1129 |
|
---|
1130 |
|
---|
1131 | /**
|
---|
1132 | * VRDP change request structure.
|
---|
1133 | *
|
---|
1134 | * Used by VMMDevReq_GetVRDPChangeRequest.
|
---|
1135 | */
|
---|
1136 | typedef struct
|
---|
1137 | {
|
---|
1138 | /** Header */
|
---|
1139 | VMMDevRequestHeader header;
|
---|
1140 | /** Whether VRDP is active or not. */
|
---|
1141 | uint8_t u8VRDPActive;
|
---|
1142 | /** The configured experience level for active VRDP. */
|
---|
1143 | uint32_t u32VRDPExperienceLevel;
|
---|
1144 | } VMMDevVRDPChangeRequest;
|
---|
1145 | AssertCompileSize(VMMDevVRDPChangeRequest, 24+8);
|
---|
1146 | AssertCompileMemberOffset(VMMDevVRDPChangeRequest, u8VRDPActive, 24);
|
---|
1147 | AssertCompileMemberOffset(VMMDevVRDPChangeRequest, u32VRDPExperienceLevel, 24+4);
|
---|
1148 |
|
---|
1149 | /** @name VRDP Experience level (VMMDevVRDPChangeRequest::u32VRDPExperienceLevel)
|
---|
1150 | * @{ */
|
---|
1151 | #define VRDP_EXPERIENCE_LEVEL_ZERO 0 /**< Theming disabled. */
|
---|
1152 | #define VRDP_EXPERIENCE_LEVEL_LOW 1 /**< Full window dragging and desktop wallpaper disabled. */
|
---|
1153 | #define VRDP_EXPERIENCE_LEVEL_MEDIUM 2 /**< Font smoothing, gradients. */
|
---|
1154 | #define VRDP_EXPERIENCE_LEVEL_HIGH 3 /**< Animation effects disabled. */
|
---|
1155 | #define VRDP_EXPERIENCE_LEVEL_FULL 4 /**< Everything enabled. */
|
---|
1156 | /** @} */
|
---|
1157 |
|
---|
1158 |
|
---|
1159 | /**
|
---|
1160 | * VBVA enable request structure.
|
---|
1161 | *
|
---|
1162 | * Used by VMMDevReq_VideoAccelEnable.
|
---|
1163 | */
|
---|
1164 | typedef struct
|
---|
1165 | {
|
---|
1166 | /** Header. */
|
---|
1167 | VMMDevRequestHeader header;
|
---|
1168 | /** 0 - disable, !0 - enable. */
|
---|
1169 | uint32_t u32Enable;
|
---|
1170 | /** The size of VBVAMEMORY::au8RingBuffer expected by driver.
|
---|
1171 | * The host will refuse to enable VBVA if the size is not equal to
|
---|
1172 | * VBVA_RING_BUFFER_SIZE.
|
---|
1173 | */
|
---|
1174 | uint32_t cbRingBuffer;
|
---|
1175 | /** Guest initializes the status to 0. Host sets appropriate VBVA_F_STATUS_ flags. */
|
---|
1176 | uint32_t fu32Status;
|
---|
1177 | } VMMDevVideoAccelEnable;
|
---|
1178 | AssertCompileSize(VMMDevVideoAccelEnable, 24+12);
|
---|
1179 |
|
---|
1180 | /** @name VMMDevVideoAccelEnable::fu32Status.
|
---|
1181 | * @{ */
|
---|
1182 | #define VBVA_F_STATUS_ACCEPTED (0x01)
|
---|
1183 | #define VBVA_F_STATUS_ENABLED (0x02)
|
---|
1184 | /** @} */
|
---|
1185 |
|
---|
1186 |
|
---|
1187 | /**
|
---|
1188 | * VBVA flush request structure.
|
---|
1189 | *
|
---|
1190 | * Used by VMMDevReq_VideoAccelFlush.
|
---|
1191 | */
|
---|
1192 | typedef struct
|
---|
1193 | {
|
---|
1194 | /** Header. */
|
---|
1195 | VMMDevRequestHeader header;
|
---|
1196 | } VMMDevVideoAccelFlush;
|
---|
1197 | AssertCompileSize(VMMDevVideoAccelFlush, 24);
|
---|
1198 |
|
---|
1199 |
|
---|
1200 | /**
|
---|
1201 | * VBVA set visible region request structure.
|
---|
1202 | *
|
---|
1203 | * Used by VMMDevReq_VideoSetVisibleRegion.
|
---|
1204 | */
|
---|
1205 | typedef struct
|
---|
1206 | {
|
---|
1207 | /** Header. */
|
---|
1208 | VMMDevRequestHeader header;
|
---|
1209 | /** Number of rectangles */
|
---|
1210 | uint32_t cRect;
|
---|
1211 | /** Rectangle array.
|
---|
1212 | * @todo array is spelled aRects[1]. */
|
---|
1213 | RTRECT Rect;
|
---|
1214 | } VMMDevVideoSetVisibleRegion;
|
---|
1215 | AssertCompileSize(RTRECT, 16);
|
---|
1216 | AssertCompileSize(VMMDevVideoSetVisibleRegion, 24+4+16);
|
---|
1217 |
|
---|
1218 | /**
|
---|
1219 | * CPU event types.
|
---|
1220 | */
|
---|
1221 | typedef enum
|
---|
1222 | {
|
---|
1223 | VMMDevCpuStatusType_Invalid = 0,
|
---|
1224 | VMMDevCpuStatusType_Disable = 1,
|
---|
1225 | VMMDevCpuStatusType_Enable = 2,
|
---|
1226 | VMMDevCpuStatusType_SizeHack = 0x7fffffff
|
---|
1227 | } VMMDevCpuStatusType;
|
---|
1228 |
|
---|
1229 | /**
|
---|
1230 | * CPU hotplug event status request.
|
---|
1231 | */
|
---|
1232 | typedef struct
|
---|
1233 | {
|
---|
1234 | /** Header. */
|
---|
1235 | VMMDevRequestHeader header;
|
---|
1236 | /** Status type */
|
---|
1237 | VMMDevCpuStatusType enmStatusType;
|
---|
1238 | } VMMDevCpuHotPlugStatusRequest;
|
---|
1239 | AssertCompileSize(VMMDevCpuHotPlugStatusRequest, 24+4);
|
---|
1240 |
|
---|
1241 | /**
|
---|
1242 | * Get the ID of the changed CPU and event type.
|
---|
1243 | */
|
---|
1244 | typedef struct
|
---|
1245 | {
|
---|
1246 | /** Header. */
|
---|
1247 | VMMDevRequestHeader header;
|
---|
1248 | /** Event type */
|
---|
1249 | VMMDevCpuEventType enmEventType;
|
---|
1250 | /** core id of the CPU changed */
|
---|
1251 | uint32_t idCpuCore;
|
---|
1252 | /** package id of the CPU changed */
|
---|
1253 | uint32_t idCpuPackage;
|
---|
1254 | } VMMDevGetCpuHotPlugRequest;
|
---|
1255 | AssertCompileSize(VMMDevGetCpuHotPlugRequest, 24+4+4+4);
|
---|
1256 |
|
---|
1257 |
|
---|
1258 | /**
|
---|
1259 | * Shared region description
|
---|
1260 | */
|
---|
1261 | typedef struct VMMDEVSHAREDREGIONDESC
|
---|
1262 | {
|
---|
1263 | RTGCPTR64 GCRegionAddr;
|
---|
1264 | uint32_t cbRegion;
|
---|
1265 | uint32_t u32Alignment;
|
---|
1266 | } VMMDEVSHAREDREGIONDESC;
|
---|
1267 | AssertCompileSize(VMMDEVSHAREDREGIONDESC, 16);
|
---|
1268 |
|
---|
1269 | #define VMMDEVSHAREDREGIONDESC_MAX 32
|
---|
1270 |
|
---|
1271 | /**
|
---|
1272 | * Shared module registration
|
---|
1273 | */
|
---|
1274 | typedef struct
|
---|
1275 | {
|
---|
1276 | /** Header. */
|
---|
1277 | VMMDevRequestHeader header;
|
---|
1278 | /** Shared module size. */
|
---|
1279 | uint32_t cbModule;
|
---|
1280 | /** Number of included region descriptors */
|
---|
1281 | uint32_t cRegions;
|
---|
1282 | /** Base address of the shared module. */
|
---|
1283 | RTGCPTR64 GCBaseAddr;
|
---|
1284 | /** Guest OS type. */
|
---|
1285 | VBOXOSFAMILY enmGuestOS;
|
---|
1286 | /** Alignment. */
|
---|
1287 | uint32_t u32Align;
|
---|
1288 | /** Module name */
|
---|
1289 | char szName[128];
|
---|
1290 | /** Module version */
|
---|
1291 | char szVersion[16];
|
---|
1292 | /** Shared region descriptor(s). */
|
---|
1293 | VMMDEVSHAREDREGIONDESC aRegions[1];
|
---|
1294 | } VMMDevSharedModuleRegistrationRequest;
|
---|
1295 | AssertCompileSize(VMMDevSharedModuleRegistrationRequest, 24+4+4+8+4+4+128+16+16);
|
---|
1296 |
|
---|
1297 |
|
---|
1298 | /**
|
---|
1299 | * Shared module unregistration
|
---|
1300 | */
|
---|
1301 | typedef struct
|
---|
1302 | {
|
---|
1303 | /** Header. */
|
---|
1304 | VMMDevRequestHeader header;
|
---|
1305 | /** Shared module size. */
|
---|
1306 | uint32_t cbModule;
|
---|
1307 | /** Align at 8 byte boundary. */
|
---|
1308 | uint32_t u32Alignment;
|
---|
1309 | /** Base address of the shared module. */
|
---|
1310 | RTGCPTR64 GCBaseAddr;
|
---|
1311 | /** Module name */
|
---|
1312 | char szName[128];
|
---|
1313 | /** Module version */
|
---|
1314 | char szVersion[16];
|
---|
1315 | } VMMDevSharedModuleUnregistrationRequest;
|
---|
1316 | AssertCompileSize(VMMDevSharedModuleUnregistrationRequest, 24+4+4+8+128+16);
|
---|
1317 |
|
---|
1318 |
|
---|
1319 | /**
|
---|
1320 | * Shared module periodic check
|
---|
1321 | */
|
---|
1322 | typedef struct
|
---|
1323 | {
|
---|
1324 | /** Header. */
|
---|
1325 | VMMDevRequestHeader header;
|
---|
1326 | } VMMDevSharedModuleCheckRequest;
|
---|
1327 | AssertCompileSize(VMMDevSharedModuleCheckRequest, 24);
|
---|
1328 |
|
---|
1329 | /**
|
---|
1330 | * Paging sharing enabled query
|
---|
1331 | */
|
---|
1332 | typedef struct
|
---|
1333 | {
|
---|
1334 | /** Header. */
|
---|
1335 | VMMDevRequestHeader header;
|
---|
1336 | /** Enabled flag (out) */
|
---|
1337 | bool fEnabled;
|
---|
1338 | /** Alignment */
|
---|
1339 | bool fAlignment[3];
|
---|
1340 | } VMMDevPageSharingStatusRequest;
|
---|
1341 | AssertCompileSize(VMMDevPageSharingStatusRequest, 24+4);
|
---|
1342 |
|
---|
1343 |
|
---|
1344 | /**
|
---|
1345 | * Page sharing status query (debug build only)
|
---|
1346 | */
|
---|
1347 | typedef struct
|
---|
1348 | {
|
---|
1349 | /** Header. */
|
---|
1350 | VMMDevRequestHeader header;
|
---|
1351 | /** Page address. */
|
---|
1352 | RTGCPTR GCPtrPage;
|
---|
1353 | /** Page flags. */
|
---|
1354 | uint64_t uPageFlags;
|
---|
1355 | /** Shared flag (out) */
|
---|
1356 | bool fShared;
|
---|
1357 | /** Alignment */
|
---|
1358 | bool fAlignment[3];
|
---|
1359 | } VMMDevPageIsSharedRequest;
|
---|
1360 |
|
---|
1361 | /**
|
---|
1362 | * Session id request structure.
|
---|
1363 | *
|
---|
1364 | * Used by VMMDevReq_GetSessionId.
|
---|
1365 | */
|
---|
1366 | typedef struct
|
---|
1367 | {
|
---|
1368 | /** Header */
|
---|
1369 | VMMDevRequestHeader header;
|
---|
1370 | /** OUT: unique session id; the id will be different after each start, reset or restore of the VM */
|
---|
1371 | uint64_t idSession;
|
---|
1372 | } VMMDevReqSessionId;
|
---|
1373 | AssertCompileSize(VMMDevReqSessionId, 24+8);
|
---|
1374 |
|
---|
1375 |
|
---|
1376 | /**
|
---|
1377 | * Write Core Dump request.
|
---|
1378 | *
|
---|
1379 | * Used by VMMDevReq_WriteCoreDump.
|
---|
1380 | */
|
---|
1381 | typedef struct
|
---|
1382 | {
|
---|
1383 | /** Header. */
|
---|
1384 | VMMDevRequestHeader header;
|
---|
1385 | /** Flags (reserved, MBZ). */
|
---|
1386 | uint32_t fFlags;
|
---|
1387 | } VMMDevReqWriteCoreDump;
|
---|
1388 | AssertCompileSize(VMMDevReqWriteCoreDump, 24+4);
|
---|
1389 |
|
---|
1390 |
|
---|
1391 | #pragma pack()
|
---|
1392 |
|
---|
1393 |
|
---|
1394 | #ifdef VBOX_WITH_HGCM
|
---|
1395 |
|
---|
1396 | /** @name HGCM flags.
|
---|
1397 | * @{
|
---|
1398 | */
|
---|
1399 | # define VBOX_HGCM_REQ_DONE RT_BIT_32(VBOX_HGCM_REQ_DONE_BIT)
|
---|
1400 | # define VBOX_HGCM_REQ_DONE_BIT 0
|
---|
1401 | # define VBOX_HGCM_REQ_CANCELLED (0x2)
|
---|
1402 | /** @} */
|
---|
1403 |
|
---|
1404 | # pragma pack(4)
|
---|
1405 |
|
---|
1406 | /**
|
---|
1407 | * HGCM request header.
|
---|
1408 | */
|
---|
1409 | typedef struct VMMDevHGCMRequestHeader
|
---|
1410 | {
|
---|
1411 | /** Request header. */
|
---|
1412 | VMMDevRequestHeader header;
|
---|
1413 |
|
---|
1414 | /** HGCM flags. */
|
---|
1415 | uint32_t fu32Flags;
|
---|
1416 |
|
---|
1417 | /** Result code. */
|
---|
1418 | int32_t result;
|
---|
1419 | } VMMDevHGCMRequestHeader;
|
---|
1420 | AssertCompileSize(VMMDevHGCMRequestHeader, 24+8);
|
---|
1421 |
|
---|
1422 | /**
|
---|
1423 | * HGCM connect request structure.
|
---|
1424 | *
|
---|
1425 | * Used by VMMDevReq_HGCMConnect.
|
---|
1426 | */
|
---|
1427 | typedef struct
|
---|
1428 | {
|
---|
1429 | /** HGCM request header. */
|
---|
1430 | VMMDevHGCMRequestHeader header;
|
---|
1431 |
|
---|
1432 | /** IN: Description of service to connect to. */
|
---|
1433 | HGCMServiceLocation loc;
|
---|
1434 |
|
---|
1435 | /** OUT: Client identifier assigned by local instance of HGCM. */
|
---|
1436 | uint32_t u32ClientID;
|
---|
1437 | } VMMDevHGCMConnect;
|
---|
1438 | AssertCompileSize(VMMDevHGCMConnect, 32+132+4);
|
---|
1439 |
|
---|
1440 |
|
---|
1441 | /**
|
---|
1442 | * HGCM disconnect request structure.
|
---|
1443 | *
|
---|
1444 | * Used by VMMDevReq_HGCMDisconnect.
|
---|
1445 | */
|
---|
1446 | typedef struct
|
---|
1447 | {
|
---|
1448 | /** HGCM request header. */
|
---|
1449 | VMMDevHGCMRequestHeader header;
|
---|
1450 |
|
---|
1451 | /** IN: Client identifier. */
|
---|
1452 | uint32_t u32ClientID;
|
---|
1453 | } VMMDevHGCMDisconnect;
|
---|
1454 | AssertCompileSize(VMMDevHGCMDisconnect, 32+4);
|
---|
1455 |
|
---|
1456 | /**
|
---|
1457 | * HGCM parameter type.
|
---|
1458 | */
|
---|
1459 | typedef enum
|
---|
1460 | {
|
---|
1461 | VMMDevHGCMParmType_Invalid = 0,
|
---|
1462 | VMMDevHGCMParmType_32bit = 1,
|
---|
1463 | VMMDevHGCMParmType_64bit = 2,
|
---|
1464 | VMMDevHGCMParmType_PhysAddr = 3, /**< @deprecated Doesn't work, use PageList. */
|
---|
1465 | VMMDevHGCMParmType_LinAddr = 4, /**< In and Out */
|
---|
1466 | VMMDevHGCMParmType_LinAddr_In = 5, /**< In (read; host<-guest) */
|
---|
1467 | VMMDevHGCMParmType_LinAddr_Out = 6, /**< Out (write; host->guest) */
|
---|
1468 | VMMDevHGCMParmType_LinAddr_Locked = 7, /**< Locked In and Out */
|
---|
1469 | VMMDevHGCMParmType_LinAddr_Locked_In = 8, /**< Locked In (read; host<-guest) */
|
---|
1470 | VMMDevHGCMParmType_LinAddr_Locked_Out = 9, /**< Locked Out (write; host->guest) */
|
---|
1471 | VMMDevHGCMParmType_PageList = 10, /**< Physical addresses of locked pages for a buffer. */
|
---|
1472 | VMMDevHGCMParmType_SizeHack = 0x7fffffff
|
---|
1473 | } HGCMFunctionParameterType;
|
---|
1474 | AssertCompileSize(HGCMFunctionParameterType, 4);
|
---|
1475 |
|
---|
1476 | # ifdef VBOX_WITH_64_BITS_GUESTS
|
---|
1477 | /**
|
---|
1478 | * HGCM function parameter, 32-bit client.
|
---|
1479 | */
|
---|
1480 | typedef struct
|
---|
1481 | {
|
---|
1482 | HGCMFunctionParameterType type;
|
---|
1483 | union
|
---|
1484 | {
|
---|
1485 | uint32_t value32;
|
---|
1486 | uint64_t value64;
|
---|
1487 | struct
|
---|
1488 | {
|
---|
1489 | uint32_t size;
|
---|
1490 |
|
---|
1491 | union
|
---|
1492 | {
|
---|
1493 | RTGCPHYS32 physAddr;
|
---|
1494 | RTGCPTR32 linearAddr;
|
---|
1495 | } u;
|
---|
1496 | } Pointer;
|
---|
1497 | struct
|
---|
1498 | {
|
---|
1499 | uint32_t size; /**< Size of the buffer described by the page list. */
|
---|
1500 | uint32_t offset; /**< Relative to the request header, valid if size != 0. */
|
---|
1501 | } PageList;
|
---|
1502 | } u;
|
---|
1503 | # ifdef __cplusplus
|
---|
1504 | void SetUInt32(uint32_t u32)
|
---|
1505 | {
|
---|
1506 | type = VMMDevHGCMParmType_32bit;
|
---|
1507 | u.value64 = 0; /* init unused bits to 0 */
|
---|
1508 | u.value32 = u32;
|
---|
1509 | }
|
---|
1510 |
|
---|
1511 | int GetUInt32(uint32_t *pu32)
|
---|
1512 | {
|
---|
1513 | if (type == VMMDevHGCMParmType_32bit)
|
---|
1514 | {
|
---|
1515 | *pu32 = u.value32;
|
---|
1516 | return VINF_SUCCESS;
|
---|
1517 | }
|
---|
1518 | return VERR_INVALID_PARAMETER;
|
---|
1519 | }
|
---|
1520 |
|
---|
1521 | void SetUInt64(uint64_t u64)
|
---|
1522 | {
|
---|
1523 | type = VMMDevHGCMParmType_64bit;
|
---|
1524 | u.value64 = u64;
|
---|
1525 | }
|
---|
1526 |
|
---|
1527 | int GetUInt64(uint64_t *pu64)
|
---|
1528 | {
|
---|
1529 | if (type == VMMDevHGCMParmType_64bit)
|
---|
1530 | {
|
---|
1531 | *pu64 = u.value64;
|
---|
1532 | return VINF_SUCCESS;
|
---|
1533 | }
|
---|
1534 | return VERR_INVALID_PARAMETER;
|
---|
1535 | }
|
---|
1536 |
|
---|
1537 | void SetPtr(void *pv, uint32_t cb)
|
---|
1538 | {
|
---|
1539 | type = VMMDevHGCMParmType_LinAddr;
|
---|
1540 | u.Pointer.size = cb;
|
---|
1541 | u.Pointer.u.linearAddr = (RTGCPTR32)(uintptr_t)pv;
|
---|
1542 | }
|
---|
1543 | # endif /* __cplusplus */
|
---|
1544 | } HGCMFunctionParameter32;
|
---|
1545 | AssertCompileSize(HGCMFunctionParameter32, 4+8);
|
---|
1546 |
|
---|
1547 | /**
|
---|
1548 | * HGCM function parameter, 64-bit client.
|
---|
1549 | */
|
---|
1550 | typedef struct
|
---|
1551 | {
|
---|
1552 | HGCMFunctionParameterType type;
|
---|
1553 | union
|
---|
1554 | {
|
---|
1555 | uint32_t value32;
|
---|
1556 | uint64_t value64;
|
---|
1557 | struct
|
---|
1558 | {
|
---|
1559 | uint32_t size;
|
---|
1560 |
|
---|
1561 | union
|
---|
1562 | {
|
---|
1563 | RTGCPHYS64 physAddr;
|
---|
1564 | RTGCPTR64 linearAddr;
|
---|
1565 | } u;
|
---|
1566 | } Pointer;
|
---|
1567 | struct
|
---|
1568 | {
|
---|
1569 | uint32_t size; /**< Size of the buffer described by the page list. */
|
---|
1570 | uint32_t offset; /**< Relative to the request header, valid if size != 0. */
|
---|
1571 | } PageList;
|
---|
1572 | } u;
|
---|
1573 | # ifdef __cplusplus
|
---|
1574 | void SetUInt32(uint32_t u32)
|
---|
1575 | {
|
---|
1576 | type = VMMDevHGCMParmType_32bit;
|
---|
1577 | u.value64 = 0; /* init unused bits to 0 */
|
---|
1578 | u.value32 = u32;
|
---|
1579 | }
|
---|
1580 |
|
---|
1581 | int GetUInt32(uint32_t *pu32)
|
---|
1582 | {
|
---|
1583 | if (type == VMMDevHGCMParmType_32bit)
|
---|
1584 | {
|
---|
1585 | *pu32 = u.value32;
|
---|
1586 | return VINF_SUCCESS;
|
---|
1587 | }
|
---|
1588 | return VERR_INVALID_PARAMETER;
|
---|
1589 | }
|
---|
1590 |
|
---|
1591 | void SetUInt64(uint64_t u64)
|
---|
1592 | {
|
---|
1593 | type = VMMDevHGCMParmType_64bit;
|
---|
1594 | u.value64 = u64;
|
---|
1595 | }
|
---|
1596 |
|
---|
1597 | int GetUInt64(uint64_t *pu64)
|
---|
1598 | {
|
---|
1599 | if (type == VMMDevHGCMParmType_64bit)
|
---|
1600 | {
|
---|
1601 | *pu64 = u.value64;
|
---|
1602 | return VINF_SUCCESS;
|
---|
1603 | }
|
---|
1604 | return VERR_INVALID_PARAMETER;
|
---|
1605 | }
|
---|
1606 |
|
---|
1607 | void SetPtr(void *pv, uint32_t cb)
|
---|
1608 | {
|
---|
1609 | type = VMMDevHGCMParmType_LinAddr;
|
---|
1610 | u.Pointer.size = cb;
|
---|
1611 | u.Pointer.u.linearAddr = (uintptr_t)pv;
|
---|
1612 | }
|
---|
1613 | # endif /** __cplusplus */
|
---|
1614 | } HGCMFunctionParameter64;
|
---|
1615 | AssertCompileSize(HGCMFunctionParameter64, 4+12);
|
---|
1616 |
|
---|
1617 | /* Redefine the structure type for the guest code. */
|
---|
1618 | # ifndef VBOX_HGCM_HOST_CODE
|
---|
1619 | # if ARCH_BITS == 64
|
---|
1620 | # define HGCMFunctionParameter HGCMFunctionParameter64
|
---|
1621 | # elif ARCH_BITS == 32
|
---|
1622 | # define HGCMFunctionParameter HGCMFunctionParameter32
|
---|
1623 | # else
|
---|
1624 | # error "Unsupported sizeof (void *)"
|
---|
1625 | # endif
|
---|
1626 | # endif /* !VBOX_HGCM_HOST_CODE */
|
---|
1627 |
|
---|
1628 | # else /* !VBOX_WITH_64_BITS_GUESTS */
|
---|
1629 |
|
---|
1630 | /**
|
---|
1631 | * HGCM function parameter, 32-bit client.
|
---|
1632 | *
|
---|
1633 | * @todo If this is the same as HGCMFunctionParameter32, why the duplication?
|
---|
1634 | */
|
---|
1635 | typedef struct
|
---|
1636 | {
|
---|
1637 | HGCMFunctionParameterType type;
|
---|
1638 | union
|
---|
1639 | {
|
---|
1640 | uint32_t value32;
|
---|
1641 | uint64_t value64;
|
---|
1642 | struct
|
---|
1643 | {
|
---|
1644 | uint32_t size;
|
---|
1645 |
|
---|
1646 | union
|
---|
1647 | {
|
---|
1648 | RTGCPHYS32 physAddr;
|
---|
1649 | RTGCPTR32 linearAddr;
|
---|
1650 | } u;
|
---|
1651 | } Pointer;
|
---|
1652 | struct
|
---|
1653 | {
|
---|
1654 | uint32_t size; /**< Size of the buffer described by the page list. */
|
---|
1655 | uint32_t offset; /**< Relative to the request header, valid if size != 0. */
|
---|
1656 | } PageList;
|
---|
1657 | } u;
|
---|
1658 | # ifdef __cplusplus
|
---|
1659 | void SetUInt32(uint32_t u32)
|
---|
1660 | {
|
---|
1661 | type = VMMDevHGCMParmType_32bit;
|
---|
1662 | u.value64 = 0; /* init unused bits to 0 */
|
---|
1663 | u.value32 = u32;
|
---|
1664 | }
|
---|
1665 |
|
---|
1666 | int GetUInt32(uint32_t *pu32)
|
---|
1667 | {
|
---|
1668 | if (type == VMMDevHGCMParmType_32bit)
|
---|
1669 | {
|
---|
1670 | *pu32 = u.value32;
|
---|
1671 | return VINF_SUCCESS;
|
---|
1672 | }
|
---|
1673 | return VERR_INVALID_PARAMETER;
|
---|
1674 | }
|
---|
1675 |
|
---|
1676 | void SetUInt64(uint64_t u64)
|
---|
1677 | {
|
---|
1678 | type = VMMDevHGCMParmType_64bit;
|
---|
1679 | u.value64 = u64;
|
---|
1680 | }
|
---|
1681 |
|
---|
1682 | int GetUInt64(uint64_t *pu64)
|
---|
1683 | {
|
---|
1684 | if (type == VMMDevHGCMParmType_64bit)
|
---|
1685 | {
|
---|
1686 | *pu64 = u.value64;
|
---|
1687 | return VINF_SUCCESS;
|
---|
1688 | }
|
---|
1689 | return VERR_INVALID_PARAMETER;
|
---|
1690 | }
|
---|
1691 |
|
---|
1692 | void SetPtr(void *pv, uint32_t cb)
|
---|
1693 | {
|
---|
1694 | type = VMMDevHGCMParmType_LinAddr;
|
---|
1695 | u.Pointer.size = cb;
|
---|
1696 | u.Pointer.u.linearAddr = (uintptr_t)pv;
|
---|
1697 | }
|
---|
1698 | # endif /* __cplusplus */
|
---|
1699 | } HGCMFunctionParameter;
|
---|
1700 | AssertCompileSize(HGCMFunctionParameter, 4+8);
|
---|
1701 | # endif /* !VBOX_WITH_64_BITS_GUESTS */
|
---|
1702 |
|
---|
1703 | /**
|
---|
1704 | * HGCM call request structure.
|
---|
1705 | *
|
---|
1706 | * Used by VMMDevReq_HGCMCall, VMMDevReq_HGCMCall32 and VMMDevReq_HGCMCall64.
|
---|
1707 | */
|
---|
1708 | typedef struct
|
---|
1709 | {
|
---|
1710 | /* request header */
|
---|
1711 | VMMDevHGCMRequestHeader header;
|
---|
1712 |
|
---|
1713 | /** IN: Client identifier. */
|
---|
1714 | uint32_t u32ClientID;
|
---|
1715 | /** IN: Service function number. */
|
---|
1716 | uint32_t u32Function;
|
---|
1717 | /** IN: Number of parameters. */
|
---|
1718 | uint32_t cParms;
|
---|
1719 | /** Parameters follow in form: HGCMFunctionParameter aParms[X]; */
|
---|
1720 | } VMMDevHGCMCall;
|
---|
1721 | AssertCompileSize(VMMDevHGCMCall, 32+12);
|
---|
1722 |
|
---|
1723 | /** @name Direction of data transfer (HGCMPageListInfo::flags). Bit flags.
|
---|
1724 | * @{ */
|
---|
1725 | #define VBOX_HGCM_F_PARM_DIRECTION_NONE UINT32_C(0x00000000)
|
---|
1726 | #define VBOX_HGCM_F_PARM_DIRECTION_TO_HOST UINT32_C(0x00000001)
|
---|
1727 | #define VBOX_HGCM_F_PARM_DIRECTION_FROM_HOST UINT32_C(0x00000002)
|
---|
1728 | #define VBOX_HGCM_F_PARM_DIRECTION_BOTH UINT32_C(0x00000003)
|
---|
1729 | /** Macro for validating that the specified flags are valid. */
|
---|
1730 | #define VBOX_HGCM_F_PARM_ARE_VALID(fFlags) \
|
---|
1731 | ( (fFlags) > VBOX_HGCM_F_PARM_DIRECTION_NONE \
|
---|
1732 | && (fFlags) < VBOX_HGCM_F_PARM_DIRECTION_BOTH )
|
---|
1733 | /** @} */
|
---|
1734 |
|
---|
1735 | /**
|
---|
1736 | * VMMDevHGCMParmType_PageList points to this structure to actually describe the
|
---|
1737 | * buffer.
|
---|
1738 | */
|
---|
1739 | typedef struct
|
---|
1740 | {
|
---|
1741 | uint32_t flags; /**< VBOX_HGCM_F_PARM_*. */
|
---|
1742 | uint16_t offFirstPage; /**< Offset in the first page where data begins. */
|
---|
1743 | uint16_t cPages; /**< Number of pages. */
|
---|
1744 | RTGCPHYS64 aPages[1]; /**< Page addresses. */
|
---|
1745 | } HGCMPageListInfo;
|
---|
1746 | AssertCompileSize(HGCMPageListInfo, 4+2+2+8);
|
---|
1747 |
|
---|
1748 | # pragma pack()
|
---|
1749 |
|
---|
1750 | /** Get the pointer to the first parmater of a HGCM call request. */
|
---|
1751 | # define VMMDEV_HGCM_CALL_PARMS(a) ((HGCMFunctionParameter *)((uint8_t *)(a) + sizeof (VMMDevHGCMCall)))
|
---|
1752 | /** Get the pointer to the first parmater of a 32-bit HGCM call request. */
|
---|
1753 | # define VMMDEV_HGCM_CALL_PARMS32(a) ((HGCMFunctionParameter32 *)((uint8_t *)(a) + sizeof (VMMDevHGCMCall)))
|
---|
1754 |
|
---|
1755 | # ifdef VBOX_WITH_64_BITS_GUESTS
|
---|
1756 | /* Explicit defines for the host code. */
|
---|
1757 | # ifdef VBOX_HGCM_HOST_CODE
|
---|
1758 | # define VMMDEV_HGCM_CALL_PARMS32(a) ((HGCMFunctionParameter32 *)((uint8_t *)(a) + sizeof (VMMDevHGCMCall)))
|
---|
1759 | # define VMMDEV_HGCM_CALL_PARMS64(a) ((HGCMFunctionParameter64 *)((uint8_t *)(a) + sizeof (VMMDevHGCMCall)))
|
---|
1760 | # endif /* VBOX_HGCM_HOST_CODE */
|
---|
1761 | # endif /* VBOX_WITH_64_BITS_GUESTS */
|
---|
1762 |
|
---|
1763 | # define VBOX_HGCM_MAX_PARMS 32
|
---|
1764 |
|
---|
1765 | /**
|
---|
1766 | * HGCM cancel request structure.
|
---|
1767 | *
|
---|
1768 | * The Cancel request is issued using the same physical memory address as was
|
---|
1769 | * used for the corresponding initial HGCMCall.
|
---|
1770 | *
|
---|
1771 | * Used by VMMDevReq_HGCMCancel.
|
---|
1772 | */
|
---|
1773 | typedef struct
|
---|
1774 | {
|
---|
1775 | /** Header. */
|
---|
1776 | VMMDevHGCMRequestHeader header;
|
---|
1777 | } VMMDevHGCMCancel;
|
---|
1778 | AssertCompileSize(VMMDevHGCMCancel, 32);
|
---|
1779 |
|
---|
1780 | /**
|
---|
1781 | * HGCM cancel request structure, version 2.
|
---|
1782 | *
|
---|
1783 | * Used by VMMDevReq_HGCMCancel2.
|
---|
1784 | *
|
---|
1785 | * VINF_SUCCESS when cancelled.
|
---|
1786 | * VERR_NOT_FOUND if the specified request cannot be found.
|
---|
1787 | * VERR_INVALID_PARAMETER if the address is invalid valid.
|
---|
1788 | */
|
---|
1789 | typedef struct
|
---|
1790 | {
|
---|
1791 | /** Header. */
|
---|
1792 | VMMDevRequestHeader header;
|
---|
1793 | /** The physical address of the request to cancel. */
|
---|
1794 | RTGCPHYS32 physReqToCancel;
|
---|
1795 | } VMMDevHGCMCancel2;
|
---|
1796 | AssertCompileSize(VMMDevHGCMCancel2, 24+4);
|
---|
1797 |
|
---|
1798 | #endif /* VBOX_WITH_HGCM */
|
---|
1799 |
|
---|
1800 |
|
---|
1801 | /**
|
---|
1802 | * Inline helper to determine the request size for the given operation.
|
---|
1803 | *
|
---|
1804 | * @returns Size.
|
---|
1805 | * @param requestType The VMMDev request type.
|
---|
1806 | */
|
---|
1807 | DECLINLINE(size_t) vmmdevGetRequestSize(VMMDevRequestType requestType)
|
---|
1808 | {
|
---|
1809 | switch (requestType)
|
---|
1810 | {
|
---|
1811 | case VMMDevReq_GetMouseStatus:
|
---|
1812 | case VMMDevReq_SetMouseStatus:
|
---|
1813 | return sizeof(VMMDevReqMouseStatus);
|
---|
1814 | case VMMDevReq_SetPointerShape:
|
---|
1815 | return sizeof(VMMDevReqMousePointer);
|
---|
1816 | case VMMDevReq_GetHostVersion:
|
---|
1817 | return sizeof(VMMDevReqHostVersion);
|
---|
1818 | case VMMDevReq_Idle:
|
---|
1819 | return sizeof(VMMDevReqIdle);
|
---|
1820 | case VMMDevReq_GetHostTime:
|
---|
1821 | return sizeof(VMMDevReqHostTime);
|
---|
1822 | case VMMDevReq_GetHypervisorInfo:
|
---|
1823 | case VMMDevReq_SetHypervisorInfo:
|
---|
1824 | return sizeof(VMMDevReqHypervisorInfo);
|
---|
1825 | case VMMDevReq_RegisterPatchMemory:
|
---|
1826 | case VMMDevReq_DeregisterPatchMemory:
|
---|
1827 | return sizeof(VMMDevReqPatchMemory);
|
---|
1828 | case VMMDevReq_SetPowerStatus:
|
---|
1829 | return sizeof(VMMDevPowerStateRequest);
|
---|
1830 | case VMMDevReq_AcknowledgeEvents:
|
---|
1831 | return sizeof(VMMDevEvents);
|
---|
1832 | case VMMDevReq_ReportGuestInfo:
|
---|
1833 | return sizeof(VMMDevReportGuestInfo);
|
---|
1834 | case VMMDevReq_ReportGuestInfo2:
|
---|
1835 | return sizeof(VMMDevReportGuestInfo2);
|
---|
1836 | case VMMDevReq_ReportGuestStatus:
|
---|
1837 | return sizeof(VMMDevReportGuestStatus);
|
---|
1838 | case VMMDevReq_GetDisplayChangeRequest:
|
---|
1839 | return sizeof(VMMDevDisplayChangeRequest);
|
---|
1840 | case VMMDevReq_GetDisplayChangeRequest2:
|
---|
1841 | return sizeof(VMMDevDisplayChangeRequest2);
|
---|
1842 | case VMMDevReq_VideoModeSupported:
|
---|
1843 | return sizeof(VMMDevVideoModeSupportedRequest);
|
---|
1844 | case VMMDevReq_GetHeightReduction:
|
---|
1845 | return sizeof(VMMDevGetHeightReductionRequest);
|
---|
1846 | case VMMDevReq_ReportGuestCapabilities:
|
---|
1847 | return sizeof(VMMDevReqGuestCapabilities);
|
---|
1848 | case VMMDevReq_SetGuestCapabilities:
|
---|
1849 | return sizeof(VMMDevReqGuestCapabilities2);
|
---|
1850 | #ifdef VBOX_WITH_HGCM
|
---|
1851 | case VMMDevReq_HGCMConnect:
|
---|
1852 | return sizeof(VMMDevHGCMConnect);
|
---|
1853 | case VMMDevReq_HGCMDisconnect:
|
---|
1854 | return sizeof(VMMDevHGCMDisconnect);
|
---|
1855 | #ifdef VBOX_WITH_64_BITS_GUESTS
|
---|
1856 | case VMMDevReq_HGCMCall32:
|
---|
1857 | return sizeof(VMMDevHGCMCall);
|
---|
1858 | case VMMDevReq_HGCMCall64:
|
---|
1859 | return sizeof(VMMDevHGCMCall);
|
---|
1860 | #else
|
---|
1861 | case VMMDevReq_HGCMCall:
|
---|
1862 | return sizeof(VMMDevHGCMCall);
|
---|
1863 | #endif /* VBOX_WITH_64_BITS_GUESTS */
|
---|
1864 | case VMMDevReq_HGCMCancel:
|
---|
1865 | return sizeof(VMMDevHGCMCancel);
|
---|
1866 | #endif /* VBOX_WITH_HGCM */
|
---|
1867 | case VMMDevReq_VideoAccelEnable:
|
---|
1868 | return sizeof(VMMDevVideoAccelEnable);
|
---|
1869 | case VMMDevReq_VideoAccelFlush:
|
---|
1870 | return sizeof(VMMDevVideoAccelFlush);
|
---|
1871 | case VMMDevReq_VideoSetVisibleRegion:
|
---|
1872 | /* The original protocol didn't consider a guest with NO visible
|
---|
1873 | * windows */
|
---|
1874 | return sizeof(VMMDevVideoSetVisibleRegion) - sizeof(RTRECT);
|
---|
1875 | case VMMDevReq_GetSeamlessChangeRequest:
|
---|
1876 | return sizeof(VMMDevSeamlessChangeRequest);
|
---|
1877 | case VMMDevReq_QueryCredentials:
|
---|
1878 | return sizeof(VMMDevCredentials);
|
---|
1879 | case VMMDevReq_ReportGuestStats:
|
---|
1880 | return sizeof(VMMDevReportGuestStats);
|
---|
1881 | case VMMDevReq_GetMemBalloonChangeRequest:
|
---|
1882 | return sizeof(VMMDevGetMemBalloonChangeRequest);
|
---|
1883 | case VMMDevReq_GetStatisticsChangeRequest:
|
---|
1884 | return sizeof(VMMDevGetStatisticsChangeRequest);
|
---|
1885 | case VMMDevReq_ChangeMemBalloon:
|
---|
1886 | return sizeof(VMMDevChangeMemBalloon);
|
---|
1887 | case VMMDevReq_GetVRDPChangeRequest:
|
---|
1888 | return sizeof(VMMDevVRDPChangeRequest);
|
---|
1889 | case VMMDevReq_LogString:
|
---|
1890 | return sizeof(VMMDevReqLogString);
|
---|
1891 | case VMMDevReq_CtlGuestFilterMask:
|
---|
1892 | return sizeof(VMMDevCtlGuestFilterMask);
|
---|
1893 | case VMMDevReq_GetCpuHotPlugRequest:
|
---|
1894 | return sizeof(VMMDevGetCpuHotPlugRequest);
|
---|
1895 | case VMMDevReq_SetCpuHotPlugStatus:
|
---|
1896 | return sizeof(VMMDevCpuHotPlugStatusRequest);
|
---|
1897 | case VMMDevReq_RegisterSharedModule:
|
---|
1898 | return sizeof(VMMDevSharedModuleRegistrationRequest);
|
---|
1899 | case VMMDevReq_UnregisterSharedModule:
|
---|
1900 | return sizeof(VMMDevSharedModuleUnregistrationRequest);
|
---|
1901 | case VMMDevReq_CheckSharedModules:
|
---|
1902 | return sizeof(VMMDevSharedModuleCheckRequest);
|
---|
1903 | case VMMDevReq_GetPageSharingStatus:
|
---|
1904 | return sizeof(VMMDevPageSharingStatusRequest);
|
---|
1905 | case VMMDevReq_DebugIsPageShared:
|
---|
1906 | return sizeof(VMMDevPageIsSharedRequest);
|
---|
1907 | case VMMDevReq_GetSessionId:
|
---|
1908 | return sizeof(VMMDevReqSessionId);
|
---|
1909 | default:
|
---|
1910 | return 0;
|
---|
1911 | }
|
---|
1912 | }
|
---|
1913 |
|
---|
1914 |
|
---|
1915 | /**
|
---|
1916 | * Initializes a request structure.
|
---|
1917 | *
|
---|
1918 | * @returns VBox status code.
|
---|
1919 | * @param req The request structure to initialize.
|
---|
1920 | * @param type The request type.
|
---|
1921 | */
|
---|
1922 | DECLINLINE(int) vmmdevInitRequest(VMMDevRequestHeader *req, VMMDevRequestType type)
|
---|
1923 | {
|
---|
1924 | uint32_t requestSize;
|
---|
1925 | if (!req)
|
---|
1926 | return VERR_INVALID_PARAMETER;
|
---|
1927 | requestSize = (uint32_t)vmmdevGetRequestSize(type);
|
---|
1928 | if (!requestSize)
|
---|
1929 | return VERR_INVALID_PARAMETER;
|
---|
1930 | req->size = requestSize;
|
---|
1931 | req->version = VMMDEV_REQUEST_HEADER_VERSION;
|
---|
1932 | req->requestType = type;
|
---|
1933 | req->rc = VERR_GENERAL_FAILURE;
|
---|
1934 | req->reserved1 = 0;
|
---|
1935 | req->reserved2 = 0;
|
---|
1936 | return VINF_SUCCESS;
|
---|
1937 | }
|
---|
1938 |
|
---|
1939 | /** @} */
|
---|
1940 |
|
---|
1941 |
|
---|
1942 | /**
|
---|
1943 | * VBVA command header.
|
---|
1944 | *
|
---|
1945 | * @todo Where does this fit in?
|
---|
1946 | */
|
---|
1947 | #pragma pack(1) /* unnecessary */
|
---|
1948 | typedef struct VBVACMDHDR
|
---|
1949 | {
|
---|
1950 | /** Coordinates of affected rectangle. */
|
---|
1951 | int16_t x;
|
---|
1952 | int16_t y;
|
---|
1953 | uint16_t w;
|
---|
1954 | uint16_t h;
|
---|
1955 | } VBVACMDHDR;
|
---|
1956 | #pragma pack()
|
---|
1957 |
|
---|
1958 | /** @name VBVA ring defines.
|
---|
1959 | *
|
---|
1960 | * The VBVA ring buffer is suitable for transferring large (< 2GB) amount of
|
---|
1961 | * data. For example big bitmaps which do not fit to the buffer.
|
---|
1962 | *
|
---|
1963 | * Guest starts writing to the buffer by initializing a record entry in the
|
---|
1964 | * aRecords queue. VBVA_F_RECORD_PARTIAL indicates that the record is being
|
---|
1965 | * written. As data is written to the ring buffer, the guest increases off32End
|
---|
1966 | * for the record.
|
---|
1967 | *
|
---|
1968 | * The host reads the aRecords on flushes and processes all completed records.
|
---|
1969 | * When host encounters situation when only a partial record presents and
|
---|
1970 | * cbRecord & ~VBVA_F_RECORD_PARTIAL >= VBVA_RING_BUFFER_SIZE -
|
---|
1971 | * VBVA_RING_BUFFER_THRESHOLD, the host fetched all record data and updates
|
---|
1972 | * off32Head. After that on each flush the host continues fetching the data
|
---|
1973 | * until the record is completed.
|
---|
1974 | *
|
---|
1975 | */
|
---|
1976 | #define VBVA_RING_BUFFER_SIZE (_4M - _1K)
|
---|
1977 | #define VBVA_RING_BUFFER_THRESHOLD (4 * _1K)
|
---|
1978 |
|
---|
1979 | #define VBVA_MAX_RECORDS (64)
|
---|
1980 |
|
---|
1981 | #define VBVA_F_MODE_ENABLED (0x00000001)
|
---|
1982 | #define VBVA_F_MODE_VRDP (0x00000002)
|
---|
1983 | #define VBVA_F_MODE_VRDP_RESET (0x00000004)
|
---|
1984 | #define VBVA_F_MODE_VRDP_ORDER_MASK (0x00000008)
|
---|
1985 |
|
---|
1986 | #define VBVA_F_RECORD_PARTIAL (0x80000000)
|
---|
1987 | /** @} */
|
---|
1988 |
|
---|
1989 | /**
|
---|
1990 | * VBVA record.
|
---|
1991 | */
|
---|
1992 | typedef struct VBVARECORD
|
---|
1993 | {
|
---|
1994 | /** The length of the record. Changed by guest. */
|
---|
1995 | uint32_t cbRecord;
|
---|
1996 | } VBVARECORD;
|
---|
1997 | AssertCompileSize(VBVARECORD, 4);
|
---|
1998 |
|
---|
1999 |
|
---|
2000 | /**
|
---|
2001 | * VBVA memory layout.
|
---|
2002 | *
|
---|
2003 | * This is a subsection of the VMMDevMemory structure.
|
---|
2004 | */
|
---|
2005 | #pragma pack(1) /* paranoia */
|
---|
2006 | typedef struct VBVAMEMORY
|
---|
2007 | {
|
---|
2008 | /** VBVA_F_MODE_*. */
|
---|
2009 | uint32_t fu32ModeFlags;
|
---|
2010 |
|
---|
2011 | /** The offset where the data start in the buffer. */
|
---|
2012 | uint32_t off32Data;
|
---|
2013 | /** The offset where next data must be placed in the buffer. */
|
---|
2014 | uint32_t off32Free;
|
---|
2015 |
|
---|
2016 | /** The ring buffer for data. */
|
---|
2017 | uint8_t au8RingBuffer[VBVA_RING_BUFFER_SIZE];
|
---|
2018 |
|
---|
2019 | /** The queue of record descriptions. */
|
---|
2020 | VBVARECORD aRecords[VBVA_MAX_RECORDS];
|
---|
2021 | uint32_t indexRecordFirst;
|
---|
2022 | uint32_t indexRecordFree;
|
---|
2023 |
|
---|
2024 | /** RDP orders supported by the client. The guest reports only them
|
---|
2025 | * and falls back to DIRTY rects for not supported ones.
|
---|
2026 | *
|
---|
2027 | * (1 << VBVA_VRDP_*)
|
---|
2028 | */
|
---|
2029 | uint32_t fu32SupportedOrders;
|
---|
2030 |
|
---|
2031 | } VBVAMEMORY;
|
---|
2032 | #pragma pack()
|
---|
2033 | AssertCompileSize(VBVAMEMORY, 12 + (_4M-_1K) + 4*64 + 12);
|
---|
2034 |
|
---|
2035 |
|
---|
2036 | /**
|
---|
2037 | * The layout of VMMDEV RAM region that contains information for guest.
|
---|
2038 | */
|
---|
2039 | #pragma pack(1) /* paranoia */
|
---|
2040 | typedef struct VMMDevMemory
|
---|
2041 | {
|
---|
2042 | /** The size of this structure. */
|
---|
2043 | uint32_t u32Size;
|
---|
2044 | /** The structure version. (VMMDEV_MEMORY_VERSION) */
|
---|
2045 | uint32_t u32Version;
|
---|
2046 |
|
---|
2047 | union
|
---|
2048 | {
|
---|
2049 | struct
|
---|
2050 | {
|
---|
2051 | /** Flag telling that VMMDev set the IRQ and acknowlegment is required */
|
---|
2052 | bool fHaveEvents;
|
---|
2053 | } V1_04;
|
---|
2054 |
|
---|
2055 | struct
|
---|
2056 | {
|
---|
2057 | /** Pending events flags, set by host. */
|
---|
2058 | uint32_t u32HostEvents;
|
---|
2059 | /** Mask of events the guest wants to see, set by guest. */
|
---|
2060 | uint32_t u32GuestEventMask;
|
---|
2061 | } V1_03;
|
---|
2062 | } V;
|
---|
2063 |
|
---|
2064 | VBVAMEMORY vbvaMemory;
|
---|
2065 |
|
---|
2066 | } VMMDevMemory;
|
---|
2067 | AssertCompileSize(VMMDevMemory, 8+8 + (12 + (_4M-_1K) + 4*64 + 12) );
|
---|
2068 | #pragma pack()
|
---|
2069 |
|
---|
2070 | /** Version of VMMDevMemory structure (VMMDevMemory::u32Version). */
|
---|
2071 | #define VMMDEV_MEMORY_VERSION (1)
|
---|
2072 |
|
---|
2073 | /** @} */
|
---|
2074 | RT_C_DECLS_END
|
---|
2075 |
|
---|
2076 | #endif
|
---|
2077 |
|
---|