VirtualBox

source: vbox/trunk/include/VBox/VMMDev.h@ 47463

Last change on this file since 47463 was 47294, checked in by vboxsync, 11 years ago

Guest user state reporting: Update.

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

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette