VirtualBox

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

Last change on this file since 52664 was 50512, checked in by vboxsync, 11 years ago

VMMDev.h: missing sanity mask for guest capabilities, better name.

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

© 2024 Oracle
ContactPrivacy/Do Not Sell My InfoTerms of Use