VirtualBox

source: vbox/trunk/include/VBox/VBoxGuest.h@ 18050

Last change on this file since 18050 was 17998, checked in by vboxsync, 16 years ago

Additions/VBoxGuest.h: made HGCM requests return a signed value which was a long-standing todo

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 58.9 KB
Line 
1/** @file
2 * VBoxGuest - VirtualBox Guest Additions interface
3 */
4
5/*
6 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
26 * Clara, CA 95054 USA or visit http://www.sun.com if you need
27 * additional information or have any questions.
28 */
29
30#ifndef ___VBox_VBoxGuest_h
31#define ___VBox_VBoxGuest_h
32
33#include <iprt/cdefs.h>
34#include <iprt/types.h>
35#ifdef IN_RING3
36# include <iprt/stdarg.h>
37#endif
38#include <iprt/assert.h>
39#include <VBox/err.h>
40#include <VBox/ostypes.h>
41
42/*******************************************************************************
43* Defined Constants And Macros *
44*******************************************************************************/
45
46/** @todo The following is a temporary fix for the problem of accessing
47 hypervisor pointers from within guest additions */
48
49/** Hypervisor linear pointer size type */
50typedef RTGCPTR32 VMMDEVHYPPTR32;
51typedef RTGCPTR64 VMMDEVHYPPTR64;
52/** Hypervisor physical pointer size type */
53typedef RTGCPHYS32 VMMDEVHYPPHYS32;
54typedef RTGCPHYS64 VMMDEVHYPPHYS64;
55
56#if defined(VBOX_WITH_64_BITS_GUESTS) && ARCH_BITS == 64
57# define VMMDEVHYPPTR VMMDEVHYPPTR64
58# define VMMDEVHYPPHYS VMMDEVHYPPHYS64
59# else
60# define VMMDEVHYPPTR VMMDEVHYPPTR32
61# define VMMDEVHYPPHYS VMMDEVHYPPHYS32
62#endif
63
64#if defined(RT_OS_LINUX)
65/** The support device name. */
66# define VBOXGUEST_DEVICE_NAME "/dev/vboxadd"
67# define VBOXGUEST_USER_DEVICE_NAME "/dev/vboxuser"
68
69#elif defined(RT_OS_OS2)
70/** The support device name. */
71# define VBOXGUEST_DEVICE_NAME "\\Dev\\VBoxGst$"
72# define VBOXGUEST_USER_DEVICE_NAME "\\Dev\\VBoxGst$"
73
74#elif defined(RT_OS_SOLARIS)
75/** The support device name. */
76# define VBOXGUEST_DEVICE_NAME "/dev/vboxguest"
77# define VBOXGUEST_USER_DEVICE_NAME "/dev/vboxguest"
78
79#elif defined(RT_OS_WINDOWS)
80/** The support service name. */
81# define VBOXGUEST_SERVICE_NAME "VBoxGuest"
82/** Win32 Device name. */
83# define VBOXGUEST_DEVICE_NAME "\\\\.\\VBoxGuest"
84# define VBOXGUEST_USER_DEVICE_NAME "\\\\.\\VBoxGuest"
85/** Global name for Win2k+ */
86# define VBOXGUEST_DEVICE_NAME_GLOBAL "\\\\.\\Global\\VBoxGuest"
87/** Win32 driver name */
88# define VBOXGUEST_DEVICE_NAME_NT L"\\Device\\VBoxGuest"
89/** device name */
90# define VBOXGUEST_DEVICE_NAME_DOS L"\\DosDevices\\VBoxGuest"
91
92#elif defined(RT_OS_FREEBSD)
93/** The support device name. */
94# define VBOXGUEST_DEVICE_NAME "/dev/vboxguest"
95# define VBOXGUEST_USER_DEVICE_NAME "/dev/vboxguest"
96
97#else
98/* PORTME */
99#endif
100
101/** VirtualBox vendor ID */
102#define VBOX_PCI_VENDORID (0x80ee)
103
104/** VMMDev PCI card identifiers */
105#define VMMDEV_VENDORID VBOX_PCI_VENDORID
106#define VMMDEV_DEVICEID (0xcafe)
107
108/** VirtualBox graphics card identifiers */
109#define VBOX_VENDORID VBOX_PCI_VENDORID
110#define VBOX_VESA_VENDORID VBOX_PCI_VENDORID
111#define VBOX_DEVICEID (0xbeef)
112#define VBOX_VESA_DEVICEID (0xbeef)
113
114/**
115 * VBoxGuest port definitions
116 * @{
117 */
118
119/** guest can (== wants to) handle absolute coordinates */
120#define VBOXGUEST_MOUSE_GUEST_CAN_ABSOLUTE RT_BIT(0)
121/** host can (== wants to) send absolute coordinates */
122#define VBOXGUEST_MOUSE_HOST_CAN_ABSOLUTE RT_BIT(1)
123/** guest can *NOT* switch to software cursor and therefore depends on the host cursor */
124#define VBOXGUEST_MOUSE_GUEST_NEEDS_HOST_CURSOR RT_BIT(2)
125/** host does NOT provide support for drawing the cursor itself (e.g. L4 console) */
126#define VBOXGUEST_MOUSE_HOST_CANNOT_HWPOINTER RT_BIT(3)
127
128/** fictive start address of the hypervisor physical memory for MmMapIoSpace */
129#define HYPERVISOR_PHYSICAL_START 0xf8000000
130
131/*
132 * VMMDev Generic Request Interface
133 */
134
135/** port for generic request interface */
136#define PORT_VMMDEV_REQUEST_OFFSET 0
137
138/** Current version of the VMMDev interface.
139 *
140 * Additions are allowed to work only if
141 * additions_major == vmmdev_current && additions_minor <= vmmdev_current.
142 * Additions version is reported to host (VMMDev) by VMMDevReq_ReportGuestInfo.
143 *
144 * @remark These defines also live in the 16-bit and assembly versions of this header.
145 */
146#define VMMDEV_VERSION 0x00010004
147#define VMMDEV_VERSION_MAJOR (VMMDEV_VERSION >> 16)
148#define VMMDEV_VERSION_MINOR (VMMDEV_VERSION & 0xffff)
149
150/* Maximum request packet size */
151#define VMMDEV_MAX_VMMDEVREQ_SIZE _1M
152
153/**
154 * VMMDev request types.
155 * @note when updating this, adjust vmmdevGetRequestSize() as well
156 */
157typedef enum
158{
159 VMMDevReq_InvalidRequest = 0,
160 VMMDevReq_GetMouseStatus = 1,
161 VMMDevReq_SetMouseStatus = 2,
162 VMMDevReq_SetPointerShape = 3,
163 /** @todo implement on host side */
164 VMMDevReq_GetHostVersion = 4,
165 VMMDevReq_Idle = 5,
166 VMMDevReq_GetHostTime = 10,
167 VMMDevReq_GetHypervisorInfo = 20,
168 VMMDevReq_SetHypervisorInfo = 21,
169 VMMDevReq_SetPowerStatus = 30,
170 VMMDevReq_AcknowledgeEvents = 41,
171 VMMDevReq_CtlGuestFilterMask = 42,
172 VMMDevReq_ReportGuestInfo = 50,
173 VMMDevReq_GetDisplayChangeRequest = 51,
174 VMMDevReq_VideoModeSupported = 52,
175 VMMDevReq_GetHeightReduction = 53,
176 VMMDevReq_GetDisplayChangeRequest2 = 54,
177 VMMDevReq_ReportGuestCapabilities = 55,
178 VMMDevReq_SetGuestCapabilities = 56,
179#ifdef VBOX_WITH_HGCM
180 VMMDevReq_HGCMConnect = 60,
181 VMMDevReq_HGCMDisconnect = 61,
182#ifdef VBOX_WITH_64_BITS_GUESTS
183 VMMDevReq_HGCMCall32 = 62,
184 VMMDevReq_HGCMCall64 = 63,
185#else
186 VMMDevReq_HGCMCall = 62,
187#endif /* VBOX_WITH_64_BITS_GUESTS */
188 VMMDevReq_HGCMCancel = 64,
189#endif
190 VMMDevReq_VideoAccelEnable = 70,
191 VMMDevReq_VideoAccelFlush = 71,
192 VMMDevReq_VideoSetVisibleRegion = 72,
193 VMMDevReq_GetSeamlessChangeRequest = 73,
194 VMMDevReq_QueryCredentials = 100,
195 VMMDevReq_ReportCredentialsJudgement = 101,
196 VMMDevReq_ReportGuestStats = 110,
197 VMMDevReq_GetMemBalloonChangeRequest = 111,
198 VMMDevReq_GetStatisticsChangeRequest = 112,
199 VMMDevReq_ChangeMemBalloon = 113,
200 VMMDevReq_GetVRDPChangeRequest = 150,
201 VMMDevReq_LogString = 200,
202 VMMDevReq_SizeHack = 0x7fffffff
203} VMMDevRequestType;
204
205#ifdef VBOX_WITH_64_BITS_GUESTS
206/*
207 * Constants and structures are redefined for the guest.
208 *
209 * Host code MUST always use either *32 or *64 variant explicitely.
210 * Host source code will use VBOX_HGCM_HOST_CODE define to catch undefined
211 * data types and constants.
212 *
213 * This redefinition means that the new additions builds will use
214 * the *64 or *32 variants depending on the current architecture bit count (ARCH_BITS).
215 */
216# ifndef VBOX_HGCM_HOST_CODE
217# if ARCH_BITS == 64
218# define VMMDevReq_HGCMCall VMMDevReq_HGCMCall64
219# elif ARCH_BITS == 32
220# define VMMDevReq_HGCMCall VMMDevReq_HGCMCall32
221# else
222# error "Unsupported ARCH_BITS"
223# endif
224# endif /* !VBOX_HGCM_HOST_CODE */
225#endif /* VBOX_WITH_64_BITS_GUESTS */
226
227/** Version of VMMDevRequestHeader structure. */
228#define VMMDEV_REQUEST_HEADER_VERSION (0x10001)
229
230#pragma pack(4)
231/** generic VMMDev request header */
232typedef struct
233{
234 /** size of the structure in bytes (including body). Filled by caller */
235 uint32_t size;
236 /** version of the structure. Filled by caller */
237 uint32_t version;
238 /** type of the request */
239 VMMDevRequestType requestType;
240 /** return code. Filled by VMMDev */
241 int32_t rc;
242 /** reserved fields */
243 uint32_t reserved1;
244 uint32_t reserved2;
245} VMMDevRequestHeader;
246AssertCompileSize(VMMDevRequestHeader, 24);
247
248/** mouse status request structure */
249typedef struct
250{
251 /** header */
252 VMMDevRequestHeader header;
253 /** mouse feature mask */
254 uint32_t mouseFeatures;
255 /** mouse x position */
256 uint32_t pointerXPos;
257 /** mouse y position */
258 uint32_t pointerYPos;
259} VMMDevReqMouseStatus;
260
261/** Note VBOX_MOUSE_POINTER_* flags are used in guest video driver,
262 * values must be <= 0x8000 and must not be changed.
263 */
264
265/** pointer is visible */
266#define VBOX_MOUSE_POINTER_VISIBLE (0x0001)
267/** pointer has alpha channel */
268#define VBOX_MOUSE_POINTER_ALPHA (0x0002)
269/** pointerData contains new pointer shape */
270#define VBOX_MOUSE_POINTER_SHAPE (0x0004)
271
272/** mouse pointer shape/visibility change request */
273typedef struct
274{
275 /** header */
276 VMMDevRequestHeader header;
277 /** VBOX_MOUSE_POINTER_* bit flags */
278 uint32_t fFlags;
279 /** x coordinate of hot spot */
280 uint32_t xHot;
281 /** y coordinate of hot spot */
282 uint32_t yHot;
283 /** width of the pointer in pixels */
284 uint32_t width;
285 /** height of the pointer in scanlines */
286 uint32_t height;
287 /** Pointer data.
288 *
289 ****
290 * The data consists of 1 bpp AND mask followed by 32 bpp XOR (color) mask.
291 *
292 * For pointers without alpha channel the XOR mask pixels are 32 bit values: (lsb)BGR0(msb).
293 * For pointers with alpha channel the XOR mask consists of (lsb)BGRA(msb) 32 bit values.
294 *
295 * Guest driver must create the AND mask for pointers with alpha channel, so if host does not
296 * support alpha, the pointer could be displayed as a normal color pointer. The AND mask can
297 * be constructed from alpha values. For example alpha value >= 0xf0 means bit 0 in the AND mask.
298 *
299 * The AND mask is 1 bpp bitmap with byte aligned scanlines. Size of AND mask,
300 * therefore, is cbAnd = (width + 7) / 8 * height. The padding bits at the
301 * end of any scanline are undefined.
302 *
303 * The XOR mask follows the AND mask on the next 4 bytes aligned offset:
304 * uint8_t *pXor = pAnd + (cbAnd + 3) & ~3
305 * Bytes in the gap between the AND and the XOR mask are undefined.
306 * XOR mask scanlines have no gap between them and size of XOR mask is:
307 * cXor = width * 4 * height.
308 ****
309 *
310 * Preallocate 4 bytes for accessing actual data as p->pointerData
311 */
312 char pointerData[4];
313} VMMDevReqMousePointer;
314
315/** string log request structure */
316typedef struct
317{
318 /** header */
319 VMMDevRequestHeader header;
320 /** variable length string data */
321 char szString[1];
322} VMMDevReqLogString;
323
324/** host version request structure */
325typedef struct
326{
327 /** header */
328 VMMDevRequestHeader header;
329 /** major version */
330 uint32_t major;
331 /** minor version */
332 uint32_t minor;
333 /** build number */
334 uint32_t build;
335} VMMDevReqHostVersion;
336
337/** guest capabilites structure */
338typedef struct
339{
340 /** header */
341 VMMDevRequestHeader header;
342 /** capabilities (VMMDEV_GUEST_*) */
343 uint32_t caps;
344} VMMDevReqGuestCapabilities;
345
346/** guest capabilites structure */
347typedef struct
348{
349 /** header */
350 VMMDevRequestHeader header;
351 /** mask of capabilities to be added */
352 uint32_t u32OrMask;
353 /** mask of capabilities to be removed */
354 uint32_t u32NotMask;
355} VMMDevReqGuestCapabilities2;
356
357/** idle request structure */
358typedef struct
359{
360 /** header */
361 VMMDevRequestHeader header;
362} VMMDevReqIdle;
363
364/** host time request structure */
365typedef struct
366{
367 /** header */
368 VMMDevRequestHeader header;
369 /** time in milliseconds since unix epoch. Filled by VMMDev. */
370 uint64_t time;
371} VMMDevReqHostTime;
372
373/** hypervisor info structure */
374typedef struct
375{
376 /** header */
377 VMMDevRequestHeader header;
378 /** guest virtual address of proposed hypervisor start */
379 /** TODO: Make this 64-bit compatible */
380 VMMDEVHYPPTR32 hypervisorStart;
381 /** hypervisor size in bytes */
382 uint32_t hypervisorSize;
383} VMMDevReqHypervisorInfo;
384
385/** system power requests */
386typedef enum
387{
388 VMMDevPowerState_Invalid = 0,
389 VMMDevPowerState_Pause = 1,
390 VMMDevPowerState_PowerOff = 2,
391 VMMDevPowerState_SaveState = 3,
392 VMMDevPowerState_SizeHack = 0x7fffffff
393} VMMDevPowerState;
394
395/** system power status structure */
396typedef struct
397{
398 /** header */
399 VMMDevRequestHeader header;
400 /** power state request */
401 VMMDevPowerState powerState;
402} VMMDevPowerStateRequest;
403
404/** pending events structure */
405typedef struct
406{
407 /** header */
408 VMMDevRequestHeader header;
409 /** pending event bitmap */
410 uint32_t events;
411} VMMDevEvents;
412
413/** guest filter mask control */
414typedef struct
415{
416 /** header */
417 VMMDevRequestHeader header;
418 /** mask of events to be added to filter */
419 uint32_t u32OrMask;
420 /** mask of events to be removed from filter */
421 uint32_t u32NotMask;
422} VMMDevCtlGuestFilterMask;
423
424/** guest information structure */
425typedef struct VBoxGuestInfo
426{
427 /** The VMMDev interface version expected by additions. */
428 uint32_t additionsVersion;
429 /** guest OS type */
430 VBOXOSTYPE osType;
431 /** @todo */
432} VBoxGuestInfo;
433
434/** guest information structure */
435typedef struct
436{
437 /** header */
438 VMMDevRequestHeader header;
439 /** Guest information. */
440 VBoxGuestInfo guestInfo;
441} VMMDevReportGuestInfo;
442
443/** guest statistics values */
444#define VBOX_GUEST_STAT_CPU_LOAD_IDLE RT_BIT(0)
445#define VBOX_GUEST_STAT_CPU_LOAD_KERNEL RT_BIT(1)
446#define VBOX_GUEST_STAT_CPU_LOAD_USER RT_BIT(2)
447#define VBOX_GUEST_STAT_THREADS RT_BIT(3)
448#define VBOX_GUEST_STAT_PROCESSES RT_BIT(4)
449#define VBOX_GUEST_STAT_HANDLES RT_BIT(5)
450#define VBOX_GUEST_STAT_MEMORY_LOAD RT_BIT(6)
451#define VBOX_GUEST_STAT_PHYS_MEM_TOTAL RT_BIT(7)
452#define VBOX_GUEST_STAT_PHYS_MEM_AVAIL RT_BIT(8)
453#define VBOX_GUEST_STAT_PHYS_MEM_BALLOON RT_BIT(9)
454#define VBOX_GUEST_STAT_MEM_COMMIT_TOTAL RT_BIT(10)
455#define VBOX_GUEST_STAT_MEM_KERNEL_TOTAL RT_BIT(11)
456#define VBOX_GUEST_STAT_MEM_KERNEL_PAGED RT_BIT(12)
457#define VBOX_GUEST_STAT_MEM_KERNEL_NONPAGED RT_BIT(13)
458#define VBOX_GUEST_STAT_MEM_SYSTEM_CACHE RT_BIT(14)
459#define VBOX_GUEST_STAT_PAGE_FILE_SIZE RT_BIT(15)
460
461
462/** guest statistics structure */
463typedef struct VBoxGuestStatistics
464{
465 /** Virtual CPU id */
466 uint32_t u32CpuId;
467 /** Reported statistics */
468 uint32_t u32StatCaps;
469 /** Idle CPU load (0-100) for last interval */
470 uint32_t u32CpuLoad_Idle;
471 /** Kernel CPU load (0-100) for last interval */
472 uint32_t u32CpuLoad_Kernel;
473 /** User CPU load (0-100) for last interval */
474 uint32_t u32CpuLoad_User;
475 /** Nr of threads */
476 uint32_t u32Threads;
477 /** Nr of processes */
478 uint32_t u32Processes;
479 /** Nr of handles */
480 uint32_t u32Handles;
481 /** Memory load (0-100) */
482 uint32_t u32MemoryLoad;
483 /** Page size of guest system */
484 uint32_t u32PageSize;
485 /** Total physical memory (in 4kb pages) */
486 uint32_t u32PhysMemTotal;
487 /** Available physical memory (in 4kb pages) */
488 uint32_t u32PhysMemAvail;
489 /** Ballooned physical memory (in 4kb pages) */
490 uint32_t u32PhysMemBalloon;
491 /** Total number of committed memory (which is not necessarily in-use) (in 4kb pages) */
492 uint32_t u32MemCommitTotal;
493 /** Total amount of memory used by the kernel (in 4kb pages) */
494 uint32_t u32MemKernelTotal;
495 /** Total amount of paged memory used by the kernel (in 4kb pages) */
496 uint32_t u32MemKernelPaged;
497 /** Total amount of nonpaged memory used by the kernel (in 4kb pages) */
498 uint32_t u32MemKernelNonPaged;
499 /** Total amount of memory used for the system cache (in 4kb pages) */
500 uint32_t u32MemSystemCache;
501 /** Pagefile size (in 4kb pages) */
502 uint32_t u32PageFileSize;
503} VBoxGuestStatistics;
504
505/** guest statistics command structure */
506typedef struct
507{
508 /** header */
509 VMMDevRequestHeader header;
510 /** Guest information. */
511 VBoxGuestStatistics guestStats;
512} VMMDevReportGuestStats;
513
514/** memory balloon change request structure */
515#define VMMDEV_MAX_MEMORY_BALLOON(PhysMemTotal) ((90*PhysMemTotal)/100)
516
517typedef struct
518{
519 /** header */
520 VMMDevRequestHeader header;
521 uint32_t u32BalloonSize; /* balloon size in megabytes */
522 uint32_t u32PhysMemSize; /* guest ram size in megabytes */
523 uint32_t eventAck;
524} VMMDevGetMemBalloonChangeRequest;
525
526/** inflate/deflate memory balloon structure */
527#define VMMDEV_MEMORY_BALLOON_CHUNK_PAGES (_1M/4096)
528#define VMMDEV_MEMORY_BALLOON_CHUNK_SIZE (VMMDEV_MEMORY_BALLOON_CHUNK_PAGES*4096)
529
530typedef struct
531{
532 /** header */
533 VMMDevRequestHeader header;
534 uint32_t cPages;
535 uint32_t fInflate; /* true = inflate, false = defalte */
536 /** Physical address (RTGCPHYS) of each page, variable size. */
537 RTGCPHYS aPhysPage[1];
538} VMMDevChangeMemBalloon;
539
540/** guest statistics interval change request structure */
541typedef struct
542{
543 /** header */
544 VMMDevRequestHeader header;
545 uint32_t u32StatInterval; /* interval in seconds */
546 uint32_t eventAck;
547} VMMDevGetStatisticsChangeRequest;
548
549/** display change request structure */
550typedef struct
551{
552 /** header */
553 VMMDevRequestHeader header;
554 /** horizontal pixel resolution (0 = do not change) */
555 uint32_t xres;
556 /** vertical pixel resolution (0 = do not change) */
557 uint32_t yres;
558 /** bits per pixel (0 = do not change) */
559 uint32_t bpp;
560 /** Flag that the request is an acknowlegement for the VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST.
561 * Values: 0 - just querying, VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST - event acknowledged.
562 */
563 uint32_t eventAck;
564} VMMDevDisplayChangeRequest;
565
566typedef struct
567{
568 /** header */
569 VMMDevRequestHeader header;
570 /** horizontal pixel resolution (0 = do not change) */
571 uint32_t xres;
572 /** vertical pixel resolution (0 = do not change) */
573 uint32_t yres;
574 /** bits per pixel (0 = do not change) */
575 uint32_t bpp;
576 /** Flag that the request is an acknowlegement for the VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST.
577 * Values: 0 - just querying, VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST - event acknowledged.
578 */
579 uint32_t eventAck;
580 /** 0 for primary display, 1 for the first secondary, etc. */
581 uint32_t display;
582} VMMDevDisplayChangeRequest2;
583
584/** video mode supported request structure */
585typedef struct
586{
587 /** header */
588 VMMDevRequestHeader header;
589 /** horizontal pixel resolution (input) */
590 uint32_t width;
591 /** vertical pixel resolution (input) */
592 uint32_t height;
593 /** bits per pixel (input) */
594 uint32_t bpp;
595 /** supported flag (output) */
596 bool fSupported;
597} VMMDevVideoModeSupportedRequest;
598
599/** video modes height reduction request structure */
600typedef struct
601{
602 /** header */
603 VMMDevRequestHeader header;
604 /** height reduction in pixels (output) */
605 uint32_t heightReduction;
606} VMMDevGetHeightReductionRequest;
607
608#define VRDP_EXPERIENCE_LEVEL_ZERO 0 /* Theming disabled. */
609#define VRDP_EXPERIENCE_LEVEL_LOW 1 /* Full window dragging and desktop wallpaper disabled. */
610#define VRDP_EXPERIENCE_LEVEL_MEDIUM 2 /* Font smoothing, gradients. */
611#define VRDP_EXPERIENCE_LEVEL_HIGH 3 /* Animation effects disabled. */
612#define VRDP_EXPERIENCE_LEVEL_FULL 4 /* Everything enabled. */
613
614typedef struct
615{
616 /** header */
617 VMMDevRequestHeader header;
618 /** Whether VRDP is active or not */
619 uint8_t u8VRDPActive;
620 /** The configured experience level for active VRDP. */
621 uint32_t u32VRDPExperienceLevel;
622} VMMDevVRDPChangeRequest;
623
624
625
626#pragma pack()
627
628#ifdef VBOX_WITH_HGCM
629
630/** HGCM flags.
631 * @{
632 */
633#define VBOX_HGCM_REQ_DONE (0x1)
634#define VBOX_HGCM_REQ_CANCELLED (0x2)
635/** @} */
636
637#pragma pack(4)
638typedef struct _VMMDevHGCMRequestHeader
639{
640 /** Request header. */
641 VMMDevRequestHeader header;
642
643 /** HGCM flags. */
644 uint32_t fu32Flags;
645
646 /** Result code. */
647 int32_t result;
648} VMMDevHGCMRequestHeader;
649AssertCompileSize(VMMDevHGCMRequestHeader, 24+8);
650
651/** HGCM service location types. */
652typedef enum
653{
654 VMMDevHGCMLoc_Invalid = 0,
655 VMMDevHGCMLoc_LocalHost = 1,
656 VMMDevHGCMLoc_LocalHost_Existing = 2,
657 VMMDevHGCMLoc_SizeHack = 0x7fffffff
658} HGCMServiceLocationType;
659
660typedef struct
661{
662 char achName[128]; /**< This is really szName. */
663} HGCMServiceLocationHost;
664
665typedef struct HGCMSERVICELOCATION
666{
667 /** Type of the location. */
668 HGCMServiceLocationType type;
669
670 union
671 {
672 HGCMServiceLocationHost host;
673 } u;
674} HGCMServiceLocation;
675
676typedef struct
677{
678 /* request header */
679 VMMDevHGCMRequestHeader header;
680
681 /** IN: Description of service to connect to. */
682 HGCMServiceLocation loc;
683
684 /** OUT: Client identifier assigned by local instance of HGCM. */
685 uint32_t u32ClientID;
686} VMMDevHGCMConnect;
687
688typedef struct
689{
690 /* request header */
691 VMMDevHGCMRequestHeader header;
692
693 /** IN: Client identifier. */
694 uint32_t u32ClientID;
695} VMMDevHGCMDisconnect;
696
697typedef enum
698{
699 VMMDevHGCMParmType_Invalid = 0,
700 VMMDevHGCMParmType_32bit = 1,
701 VMMDevHGCMParmType_64bit = 2,
702 VMMDevHGCMParmType_PhysAddr = 3,
703 VMMDevHGCMParmType_LinAddr = 4, /**< In and Out */
704 VMMDevHGCMParmType_LinAddr_In = 5, /**< In (read; host<-guest) */
705 VMMDevHGCMParmType_LinAddr_Out = 6, /**< Out (write; host->guest) */
706 VMMDevHGCMParmType_LinAddr_Locked = 7, /**< Locked In and Out */
707 VMMDevHGCMParmType_LinAddr_Locked_In = 8, /**< Locked In (read; host<-guest) */
708 VMMDevHGCMParmType_LinAddr_Locked_Out = 9, /**< Locked Out (write; host->guest) */
709 VMMDevHGCMParmType_SizeHack = 0x7fffffff
710} HGCMFunctionParameterType;
711
712#ifdef VBOX_WITH_64_BITS_GUESTS
713typedef struct _HGCMFUNCTIONPARAMETER32
714{
715 HGCMFunctionParameterType type;
716 union
717 {
718 uint32_t value32;
719 uint64_t value64;
720 struct
721 {
722 uint32_t size;
723
724 union
725 {
726 VMMDEVHYPPHYS32 physAddr;
727 VMMDEVHYPPTR32 linearAddr;
728 } u;
729 } Pointer;
730 } u;
731#ifdef __cplusplus
732 void SetUInt32(uint32_t u32)
733 {
734 type = VMMDevHGCMParmType_32bit;
735 u.value64 = 0; /* init unused bits to 0 */
736 u.value32 = u32;
737 }
738
739 int GetUInt32(uint32_t *pu32)
740 {
741 if (type == VMMDevHGCMParmType_32bit)
742 {
743 *pu32 = u.value32;
744 return VINF_SUCCESS;
745 }
746 return VERR_INVALID_PARAMETER;
747 }
748
749 void SetUInt64(uint64_t u64)
750 {
751 type = VMMDevHGCMParmType_64bit;
752 u.value64 = u64;
753 }
754
755 int GetUInt64(uint64_t *pu64)
756 {
757 if (type == VMMDevHGCMParmType_64bit)
758 {
759 *pu64 = u.value64;
760 return VINF_SUCCESS;
761 }
762 return VERR_INVALID_PARAMETER;
763 }
764
765 void SetPtr(void *pv, uint32_t cb)
766 {
767 type = VMMDevHGCMParmType_LinAddr;
768 u.Pointer.size = cb;
769 u.Pointer.u.linearAddr = (VMMDEVHYPPTR32)(uintptr_t)pv;
770 }
771#endif
772} HGCMFunctionParameter32;
773
774typedef struct _HGCMFUNCTIONPARAMETER64
775{
776 HGCMFunctionParameterType type;
777 union
778 {
779 uint32_t value32;
780 uint64_t value64;
781 struct
782 {
783 uint32_t size;
784
785 union
786 {
787 VMMDEVHYPPHYS64 physAddr;
788 VMMDEVHYPPTR64 linearAddr;
789 } u;
790 } Pointer;
791 } u;
792#ifdef __cplusplus
793 void SetUInt32(uint32_t u32)
794 {
795 type = VMMDevHGCMParmType_32bit;
796 u.value64 = 0; /* init unused bits to 0 */
797 u.value32 = u32;
798 }
799
800 int GetUInt32(uint32_t *pu32)
801 {
802 if (type == VMMDevHGCMParmType_32bit)
803 {
804 *pu32 = u.value32;
805 return VINF_SUCCESS;
806 }
807 return VERR_INVALID_PARAMETER;
808 }
809
810 void SetUInt64(uint64_t u64)
811 {
812 type = VMMDevHGCMParmType_64bit;
813 u.value64 = u64;
814 }
815
816 int GetUInt64(uint64_t *pu64)
817 {
818 if (type == VMMDevHGCMParmType_64bit)
819 {
820 *pu64 = u.value64;
821 return VINF_SUCCESS;
822 }
823 return VERR_INVALID_PARAMETER;
824 }
825
826 void SetPtr(void *pv, uint32_t cb)
827 {
828 type = VMMDevHGCMParmType_LinAddr;
829 u.Pointer.size = cb;
830 u.Pointer.u.linearAddr = (uintptr_t)pv;
831 }
832#endif
833} HGCMFunctionParameter64;
834#else /* !VBOX_WITH_64_BITS_GUESTS */
835typedef struct _HGCMFUNCTIONPARAMETER
836{
837 HGCMFunctionParameterType type;
838 union
839 {
840 uint32_t value32;
841 uint64_t value64;
842 struct
843 {
844 uint32_t size;
845
846 union
847 {
848 VMMDEVHYPPHYS32 physAddr;
849 VMMDEVHYPPTR32 linearAddr;
850 } u;
851 } Pointer;
852 } u;
853#ifdef __cplusplus
854 void SetUInt32(uint32_t u32)
855 {
856 type = VMMDevHGCMParmType_32bit;
857 u.value64 = 0; /* init unused bits to 0 */
858 u.value32 = u32;
859 }
860
861 int GetUInt32(uint32_t *pu32)
862 {
863 if (type == VMMDevHGCMParmType_32bit)
864 {
865 *pu32 = u.value32;
866 return VINF_SUCCESS;
867 }
868 return VERR_INVALID_PARAMETER;
869 }
870
871 void SetUInt64(uint64_t u64)
872 {
873 type = VMMDevHGCMParmType_64bit;
874 u.value64 = u64;
875 }
876
877 int GetUInt64(uint64_t *pu64)
878 {
879 if (type == VMMDevHGCMParmType_64bit)
880 {
881 *pu64 = u.value64;
882 return VINF_SUCCESS;
883 }
884 return VERR_INVALID_PARAMETER;
885 }
886
887 void SetPtr(void *pv, uint32_t cb)
888 {
889 type = VMMDevHGCMParmType_LinAddr;
890 u.Pointer.size = cb;
891 u.Pointer.u.linearAddr = (uintptr_t)pv;
892 }
893#endif
894} HGCMFunctionParameter;
895#endif /* !VBOX_WITH_64_BITS_GUESTS */
896
897
898#ifdef VBOX_WITH_64_BITS_GUESTS
899/* Redefine the structure type for the guest code. */
900# ifndef VBOX_HGCM_HOST_CODE
901# if ARCH_BITS == 64
902# define HGCMFunctionParameter HGCMFunctionParameter64
903# elif ARCH_BITS == 32
904# define HGCMFunctionParameter HGCMFunctionParameter32
905# else
906# error "Unsupported sizeof (void *)"
907# endif
908# endif /* !VBOX_HGCM_HOST_CODE */
909#endif /* VBOX_WITH_64_BITS_GUESTS */
910
911typedef struct
912{
913 /* request header */
914 VMMDevHGCMRequestHeader header;
915
916 /** IN: Client identifier. */
917 uint32_t u32ClientID;
918 /** IN: Service function number. */
919 uint32_t u32Function;
920 /** IN: Number of parameters. */
921 uint32_t cParms;
922 /** Parameters follow in form: HGCMFunctionParameter aParms[X]; */
923} VMMDevHGCMCall;
924#pragma pack()
925
926#define VMMDEV_HGCM_CALL_PARMS(a) ((HGCMFunctionParameter *)((uint8_t *)a + sizeof (VMMDevHGCMCall)))
927#define VMMDEV_HGCM_CALL_PARMS32(a) ((HGCMFunctionParameter32 *)((uint8_t *)a + sizeof (VMMDevHGCMCall)))
928
929#ifdef VBOX_WITH_64_BITS_GUESTS
930/* Explicit defines for the host code. */
931# ifdef VBOX_HGCM_HOST_CODE
932# define VMMDEV_HGCM_CALL_PARMS32(a) ((HGCMFunctionParameter32 *)((uint8_t *)a + sizeof (VMMDevHGCMCall)))
933# define VMMDEV_HGCM_CALL_PARMS64(a) ((HGCMFunctionParameter64 *)((uint8_t *)a + sizeof (VMMDevHGCMCall)))
934# endif /* VBOX_HGCM_HOST_CODE */
935#endif /* VBOX_WITH_64_BITS_GUESTS */
936
937#define VBOX_HGCM_MAX_PARMS 32
938
939/* The Cancel request is issued using the same physical memory address
940 * as was used for the corresponding initial HGCMCall.
941 */
942typedef struct
943{
944 /* request header */
945 VMMDevHGCMRequestHeader header;
946} VMMDevHGCMCancel;
947
948#endif /* VBOX_WITH_HGCM */
949
950
951#define VBVA_F_STATUS_ACCEPTED (0x01)
952#define VBVA_F_STATUS_ENABLED (0x02)
953
954#pragma pack(4)
955
956typedef struct _VMMDevVideoAccelEnable
957{
958 /* request header */
959 VMMDevRequestHeader header;
960
961 /** 0 - disable, !0 - enable. */
962 uint32_t u32Enable;
963
964 /** The size of VBVAMEMORY::au8RingBuffer expected by driver.
965 * The host will refuse to enable VBVA if the size is not equal to
966 * VBVA_RING_BUFFER_SIZE.
967 */
968 uint32_t cbRingBuffer;
969
970 /** Guest initializes the status to 0. Host sets appropriate VBVA_F_STATUS_ flags. */
971 uint32_t fu32Status;
972
973} VMMDevVideoAccelEnable;
974
975typedef struct _VMMDevVideoAccelFlush
976{
977 /* request header */
978 VMMDevRequestHeader header;
979
980} VMMDevVideoAccelFlush;
981
982
983typedef struct _VMMDevVideoSetVisibleRegion
984{
985 /* request header */
986 VMMDevRequestHeader header;
987
988 /** Number of rectangles */
989 uint32_t cRect;
990
991 /** Rectangle array */
992 RTRECT Rect;
993} VMMDevVideoSetVisibleRegion;
994
995
996/** Seamless mode */
997typedef enum
998{
999 VMMDev_Seamless_Disabled = 0, /* normal mode; entire guest desktop displayed */
1000 VMMDev_Seamless_Visible_Region = 1, /* visible region mode; only top-level guest windows displayed */
1001 VMMDev_Seamless_Host_Window = 2 /* windowed mode; each top-level guest window is represented in a host window */
1002} VMMDevSeamlessMode;
1003
1004typedef struct
1005{
1006 /** header */
1007 VMMDevRequestHeader header;
1008
1009 /** New seamless mode */
1010 VMMDevSeamlessMode mode;
1011 /** Flag that the request is an acknowlegement for the VMMDEV_EVENT_SEAMLESS_MODE_CHANGE_REQUEST.
1012 * Values: 0 - just querying, VMMDEV_EVENT_SEAMLESS_MODE_CHANGE_REQUEST - event acknowledged.
1013 */
1014 uint32_t eventAck;
1015} VMMDevSeamlessChangeRequest;
1016
1017#pragma pack()
1018
1019#pragma pack(1)
1020/** VBVA command header. */
1021typedef struct _VBVACMDHDR
1022{
1023 /** Coordinates of affected rectangle. */
1024 int16_t x;
1025 int16_t y;
1026 uint16_t w;
1027 uint16_t h;
1028} VBVACMDHDR;
1029#pragma pack()
1030
1031/* The VBVA ring buffer is suitable for transferring large (< 2gb) amount of data.
1032 * For example big bitmaps which do not fit to the buffer.
1033 *
1034 * Guest starts writing to the buffer by initializing a record entry in the
1035 * aRecords queue. VBVA_F_RECORD_PARTIAL indicates that the record is being
1036 * written. As data is written to the ring buffer, the guest increases off32End
1037 * for the record.
1038 *
1039 * The host reads the aRecords on flushes and processes all completed records.
1040 * When host encounters situation when only a partial record presents and
1041 * cbRecord & ~VBVA_F_RECORD_PARTIAL >= VBVA_RING_BUFFER_SIZE - VBVA_RING_BUFFER_THRESHOLD,
1042 * the host fetched all record data and updates off32Head. After that on each flush
1043 * the host continues fetching the data until the record is completed.
1044 *
1045 */
1046
1047#define VBVA_RING_BUFFER_SIZE (_4M - _1K)
1048#define VBVA_RING_BUFFER_THRESHOLD (4 * _1K)
1049
1050#define VBVA_MAX_RECORDS (64)
1051
1052#define VBVA_F_MODE_ENABLED (0x00000001)
1053#define VBVA_F_MODE_VRDP (0x00000002)
1054#define VBVA_F_MODE_VRDP_RESET (0x00000004)
1055#define VBVA_F_MODE_VRDP_ORDER_MASK (0x00000008)
1056
1057#define VBVA_F_RECORD_PARTIAL (0x80000000)
1058
1059#pragma pack(1)
1060typedef struct _VBVARECORD
1061{
1062 /** The length of the record. Changed by guest. */
1063 uint32_t cbRecord;
1064} VBVARECORD;
1065
1066typedef struct _VBVAMEMORY
1067{
1068 /** VBVA_F_MODE_* */
1069 uint32_t fu32ModeFlags;
1070
1071 /** The offset where the data start in the buffer. */
1072 uint32_t off32Data;
1073 /** The offset where next data must be placed in the buffer. */
1074 uint32_t off32Free;
1075
1076 /** The ring buffer for data. */
1077 uint8_t au8RingBuffer[VBVA_RING_BUFFER_SIZE];
1078
1079 /** The queue of record descriptions. */
1080 VBVARECORD aRecords[VBVA_MAX_RECORDS];
1081 uint32_t indexRecordFirst;
1082 uint32_t indexRecordFree;
1083
1084 /* RDP orders supported by the client. The guest reports only them
1085 * and falls back to DIRTY rects for not supported ones.
1086 *
1087 * (1 << VBVA_VRDP_*)
1088 */
1089 uint32_t fu32SupportedOrders;
1090
1091} VBVAMEMORY;
1092#pragma pack()
1093
1094/** @} */
1095
1096
1097/**
1098 * VMMDev RAM
1099 * @{
1100 */
1101
1102#pragma pack(1)
1103/** Layout of VMMDEV RAM region that contains information for guest */
1104typedef struct
1105{
1106 /** size */
1107 uint32_t u32Size;
1108 /** version */
1109 uint32_t u32Version;
1110
1111 union {
1112 /** Flag telling that VMMDev set the IRQ and acknowlegment is required */
1113 struct {
1114 bool fHaveEvents;
1115 } V1_04;
1116
1117 struct {
1118 /** Pending events flags, set by host. */
1119 uint32_t u32HostEvents;
1120 /** Mask of events the guest wants to see, set by guest. */
1121 uint32_t u32GuestEventMask;
1122 } V1_03;
1123 } V;
1124
1125 VBVAMEMORY vbvaMemory;
1126
1127} VMMDevMemory;
1128#pragma pack()
1129
1130/** Version of VMMDevMemory structure. */
1131#define VMMDEV_MEMORY_VERSION (1)
1132
1133/** @} */
1134
1135
1136/**
1137 * VMMDev events.
1138 * @{
1139 */
1140
1141/** Host mouse capabilities has been changed. */
1142#define VMMDEV_EVENT_MOUSE_CAPABILITIES_CHANGED RT_BIT(0)
1143/** HGCM event. */
1144#define VMMDEV_EVENT_HGCM RT_BIT(1)
1145/** A display change request has been issued. */
1146#define VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST RT_BIT(2)
1147/** Credentials are available for judgement. */
1148#define VMMDEV_EVENT_JUDGE_CREDENTIALS RT_BIT(3)
1149/** The guest has been restored. */
1150#define VMMDEV_EVENT_RESTORED RT_BIT(4)
1151/** Seamless mode state changed */
1152#define VMMDEV_EVENT_SEAMLESS_MODE_CHANGE_REQUEST RT_BIT(5)
1153/** Memory balloon size changed */
1154#define VMMDEV_EVENT_BALLOON_CHANGE_REQUEST RT_BIT(6)
1155/** Statistics interval changed */
1156#define VMMDEV_EVENT_STATISTICS_INTERVAL_CHANGE_REQUEST RT_BIT(7)
1157/** VRDP status changed. */
1158#define VMMDEV_EVENT_VRDP RT_BIT(8)
1159/** New mouse position data available */
1160#define VMMDEV_EVENT_MOUSE_POSITION_CHANGED RT_BIT(9)
1161
1162/** @} */
1163
1164
1165#if !defined(IN_RC) && !defined(IN_RING0_AGNOSTIC) && !defined(IPRT_NO_CRT)
1166/** @name VBoxGuest IOCTL codes and structures.
1167 *
1168 * The range 0..15 is for basic driver communication.
1169 * The range 16..31 is for HGCM communcation.
1170 * The range 32..47 is reserved for future use.
1171 * The range 48..63 is for OS specific communcation.
1172 * The 7th bit is reserved for future hacks.
1173 * The 8th bit is reserved for distinguishing between 32-bit and 64-bit
1174 * processes in future 64-bit guest additions.
1175 *
1176 * While windows IOCTL function number has to start at 2048 and stop at 4096 there
1177 * never was any need to do this for everyone. A simple ((Function) | 0x800) would
1178 * have sufficed. On Linux we're now intruding upon the type field. Fortunately
1179 * this hasn't caused any trouble because the FILE_DEVICE_UNKNOWN value was set
1180 * to 0x22 (if it were 0x2C it would not have worked soo smoothly). The situation
1181 * would've been the same for *BSD and Darwin since they seems to share common
1182 * _IOC() heritage.
1183 *
1184 * However, on good old OS/2 we only have 8-bit handy for the function number. The
1185 * result from using the old IOCTL function numbers her would've been overlapping
1186 * between the two ranges.
1187 *
1188 * To fix this problem and get rid of all the unnecessary windowsy crap that I
1189 * bet was copied from my SUPDRVIOC.h once upon a time (although the concept of
1190 * prefixing macros with the purpose of avoid clashes with system stuff and
1191 * to indicate exactly how owns them seems to have been lost somewhere along
1192 * the way), I've introduced a VBOXGUEST_IOCTL_CODE for defining generic IN/OUT
1193 * IOCtls on new ports of the additions.
1194 *
1195 * @remarks When creating new IOCtl interfaces keep in mind that not all OSes supports
1196 * reporting back the output size. (This got messed up a little bit in VBoxDrv.)
1197 *
1198 * The request size is also a little bit tricky as it's passed as part of the
1199 * request code on unix. The size field is 14 bits on Linux, 12 bits on *BSD,
1200 * 13 bits Darwin, and 8-bits on Solaris. All the BSDs and Darwin kernels
1201 * will make use of the size field, while Linux and Solaris will not. We're of
1202 * course using the size to validate and/or map/lock the request, so it has
1203 * to be valid.
1204 *
1205 * For Solaris we will have to do something special though, 255 isn't
1206 * sufficent for all we need. A 4KB restriction (BSD) is probably not
1207 * too problematic (yet) as a general one.
1208 *
1209 * More info can be found in SUPDRVIOC.h and related sources.
1210 *
1211 * @remarks If adding interfaces that only has input or only has output, some new macros
1212 * needs to be created so the most efficient IOCtl data buffering method can be
1213 * used.
1214 * @{
1215 */
1216#ifdef RT_ARCH_AMD64
1217# define VBOXGUEST_IOCTL_FLAG 128
1218#elif defined(RT_ARCH_X86)
1219# define VBOXGUEST_IOCTL_FLAG 0
1220#else
1221# error "dunno which arch this is!"
1222#endif
1223
1224/** Ring-3 request wrapper for big requests.
1225 *
1226 * This is necessary because the ioctl number scheme on many Unixy OSes (esp. Solaris)
1227 * only allows a relatively small size to be encoded into the request. So, for big
1228 * request this generic form is used instead. */
1229typedef struct VBGLBIGREQ
1230{
1231 /** Magic value (VBGLBIGREQ_MAGIC). */
1232 uint32_t u32Magic;
1233 /** The size of the data buffer. */
1234 uint32_t cbData;
1235 /** The user address of the data buffer. */
1236 RTR3PTR pvDataR3;
1237#if HC_ARCH_BITS == 32
1238 uint32_t u32Padding;
1239#endif
1240} VBGLBIGREQ;
1241/** Pointer to a request wrapper for solaris guests. */
1242typedef VBGLBIGREQ *PVBGLBIGREQ;
1243/** Pointer to a const request wrapper for solaris guests. */
1244typedef const VBGLBIGREQ *PCVBGLBIGREQ;
1245
1246/** The VBGLBIGREQ::u32Magic value (Ryuu Murakami). */
1247#define VBGLBIGREQ_MAGIC 0x19520219
1248
1249
1250#if defined(RT_OS_WINDOWS)
1251/* @todo Remove IOCTL_CODE later! Integrate it in VBOXGUEST_IOCTL_CODE below. */
1252/** @todo r=bird: IOCTL_CODE is supposedly defined in some header included by Windows.h or ntddk.h, which is why it wasn't in the #if 0 earlier. See HostDrivers/Support/SUPDrvIOC.h... */
1253# define IOCTL_CODE(DeviceType, Function, Method, Access, DataSize_ignored) \
1254 ( ((DeviceType) << 16) | ((Access) << 14) | ((Function) << 2) | (Method))
1255# define VBOXGUEST_IOCTL_CODE_(Function, Size) IOCTL_CODE(FILE_DEVICE_UNKNOWN, 2048 + (Function), METHOD_BUFFERED, FILE_WRITE_ACCESS, 0)
1256# define VBOXGUEST_IOCTL_STRIP_SIZE_(Code) (Code)
1257
1258#elif defined(RT_OS_OS2)
1259 /* No automatic buffering, size not encoded. */
1260# define VBOXGUEST_IOCTL_CATEGORY 0xc2
1261# define VBOXGUEST_IOCTL_CODE_(Function, Size) ((unsigned char)(Function))
1262# define VBOXGUEST_IOCTL_CATEGORY_FAST 0xc3 /**< Also defined in VBoxGuestA-os2.asm. */
1263# define VBOXGUEST_IOCTL_CODE_FAST_(Function) ((unsigned char)(Function))
1264# define VBOXGUEST_IOCTL_STRIP_SIZE(Code) (Code)
1265
1266#elif defined(RT_OS_SOLARIS)
1267 /* No automatic buffering, size limited to 255 bytes => use VBGLBIGREQ for everything. */
1268# include <sys/ioccom.h>
1269# define VBOXGUEST_IOCTL_CODE_(Function, Size) _IOWRN('V', (Function), sizeof(VBGLBIGREQ))
1270# define VBOXGUEST_IOCTL_CODE_FAST_(Function) _IO( 'V', (Function))
1271# define VBOXGUEST_IOCTL_STRIP_SIZE(Code) (Code)
1272
1273#elif defined(RT_OS_LINUX)
1274 /* No automatic buffering, size limited to 16KB. */
1275# include <linux/ioctl.h>
1276# define VBOXGUEST_IOCTL_CODE_(Function, Size) _IOC(_IOC_READ|_IOC_WRITE, 'V', (Function), (Size))
1277# define VBOXGUEST_IOCTL_CODE_FAST_(Function) _IO( 'V', (Function))
1278# define VBOXGUEST_IOCTL_STRIP_SIZE(Code) VBOXGUEST_IOCTL_CODE_(_IOC_NR((Code)), 0)
1279
1280#elif defined(RT_OS_FREEBSD) /** @todo r=bird: Please do it like SUPDRVIOC to keep it as similar as possible. */
1281# include <sys/ioccom.h>
1282
1283# define VBOXGUEST_IOCTL_CODE_(Function, Size) _IOWR('V', (Function), VBGLBIGREQ)
1284# define VBOXGUEST_IOCTL_CODE_FAST_(Function) _IO( 'V', (Function))
1285# define VBOXGUEST_IOCTL_STRIP_SIZE(Code) IOCBASECMD(Code)
1286
1287#else
1288/* PORTME */
1289#endif
1290
1291#define VBOXGUEST_IOCTL_CODE(Function, Size) VBOXGUEST_IOCTL_CODE_((Function) | VBOXGUEST_IOCTL_FLAG, Size)
1292#define VBOXGUEST_IOCTL_CODE_FAST(Function) VBOXGUEST_IOCTL_CODE_FAST_((Function) | VBOXGUEST_IOCTL_FLAG)
1293
1294/* Define 32 bit codes to support 32 bit applications requests in the 64 bit guest driver. */
1295#ifdef RT_ARCH_AMD64
1296# define VBOXGUEST_IOCTL_CODE_32(Function, Size) VBOXGUEST_IOCTL_CODE_(Function, Size)
1297# define VBOXGUEST_IOCTL_CODE_FAST_32(Function) VBOXGUEST_IOCTL_CODE_FAST_(Function)
1298#endif /* RT_ARCH_AMD64 */
1299
1300/** IOCTL to VBoxGuest to query the VMMDev IO port region start.
1301 * @remarks Ring-0 only. */
1302#define VBOXGUEST_IOCTL_GETVMMDEVPORT VBOXGUEST_IOCTL_CODE(1, sizeof(VBoxGuestPortInfo))
1303
1304#pragma pack(4)
1305typedef struct _VBoxGuestPortInfo
1306{
1307 uint32_t portAddress;
1308 VMMDevMemory *pVMMDevMemory;
1309} VBoxGuestPortInfo;
1310
1311/** IOCTL to VBoxGuest to wait for a VMMDev host notification */
1312#define VBOXGUEST_IOCTL_WAITEVENT VBOXGUEST_IOCTL_CODE_(2, sizeof(VBoxGuestWaitEventInfo))
1313
1314/** IOCTL to VBoxGuest to interrupt (cancel) any pending WAITEVENTs and return.
1315 * Handled inside the guest additions and not seen by the host at all.
1316 * @see VBOXGUEST_IOCTL_WAITEVENT */
1317#define VBOXGUEST_IOCTL_CANCEL_ALL_WAITEVENTS VBOXGUEST_IOCTL_CODE_(5, 0)
1318
1319/** @name Result codes for VBoxGuestWaitEventInfo::u32Result
1320 * @{
1321 */
1322/** Successful completion, an event occured. */
1323#define VBOXGUEST_WAITEVENT_OK (0)
1324/** Successful completion, timed out. */
1325#define VBOXGUEST_WAITEVENT_TIMEOUT (1)
1326/** Wait was interrupted. */
1327#define VBOXGUEST_WAITEVENT_INTERRUPTED (2)
1328/** An error occured while processing the request. */
1329#define VBOXGUEST_WAITEVENT_ERROR (3)
1330/** @} */
1331
1332/** Input and output buffers layout of the IOCTL_VBOXGUEST_WAITEVENT */
1333typedef struct _VBoxGuestWaitEventInfo
1334{
1335 /** timeout in milliseconds */
1336 uint32_t u32TimeoutIn;
1337 /** events to wait for */
1338 uint32_t u32EventMaskIn;
1339 /** result code */
1340 uint32_t u32Result;
1341 /** events occured */
1342 uint32_t u32EventFlagsOut;
1343} VBoxGuestWaitEventInfo;
1344AssertCompileSize(VBoxGuestWaitEventInfo, 16);
1345
1346/** IOCTL to VBoxGuest to perform a VMM request
1347 * @remark The data buffer for this IOCtl has an variable size, keep this in mind
1348 * on systems where this matters. */
1349#define VBOXGUEST_IOCTL_VMMREQUEST(Size) VBOXGUEST_IOCTL_CODE_(3, (Size))
1350
1351/** Input and output buffer layout of the IOCTL_VBOXGUEST_CTL_FILTER_MASK. */
1352typedef struct _VBoxGuestFilterMaskInfo
1353{
1354 uint32_t u32OrMask;
1355 uint32_t u32NotMask;
1356} VBoxGuestFilterMaskInfo;
1357AssertCompileSize(VBoxGuestFilterMaskInfo, 8);
1358#pragma pack()
1359
1360/** IOCTL to VBoxGuest to control event filter mask. */
1361#define VBOXGUEST_IOCTL_CTL_FILTER_MASK VBOXGUEST_IOCTL_CODE_(4, sizeof(VBoxGuestFilterMaskInfo))
1362
1363/** IOCTL to VBoxGuest to check memory ballooning. */
1364#define VBOXGUEST_IOCTL_CTL_CHECK_BALLOON_MASK VBOXGUEST_IOCTL_CODE_(7, 100)
1365
1366/** IOCTL to VBoxGuest to perform backdoor logging. */
1367#define VBOXGUEST_IOCTL_LOG(Size) VBOXGUEST_IOCTL_CODE_(6, (Size))
1368
1369
1370#ifdef VBOX_WITH_HGCM
1371/* These structures are shared between the driver and other binaries,
1372 * therefore packing must be defined explicitely.
1373 */
1374# pragma pack(1)
1375typedef struct _VBoxGuestHGCMConnectInfo
1376{
1377 int32_t result; /**< OUT */
1378 HGCMServiceLocation Loc; /**< IN */
1379 uint32_t u32ClientID; /**< OUT */
1380} VBoxGuestHGCMConnectInfo;
1381AssertCompileSize(VBoxGuestHGCMConnectInfo, 4+4+128+4);
1382
1383typedef struct _VBoxGuestHGCMDisconnectInfo
1384{
1385 int32_t result; /**< OUT */
1386 uint32_t u32ClientID; /**< IN */
1387} VBoxGuestHGCMDisconnectInfo;
1388AssertCompileSize(VBoxGuestHGCMDisconnectInfo, 8);
1389
1390typedef struct _VBoxGuestHGCMCallInfo
1391{
1392 int32_t result; /**< OUT Host HGCM return code.*/
1393 uint32_t u32ClientID; /**< IN The id of the caller. */
1394 uint32_t u32Function; /**< IN Function number. */
1395 uint32_t cParms; /**< IN How many parms. */
1396 /* Parameters follow in form HGCMFunctionParameter aParms[cParms] */
1397} VBoxGuestHGCMCallInfo;
1398AssertCompileSize(VBoxGuestHGCMCallInfo, 16);
1399
1400typedef struct _VBoxGuestHGCMCallInfoTimed
1401{
1402 uint32_t u32Timeout; /**< IN How long to wait for completion before cancelling the call */
1403 uint32_t fInterruptible; /**< IN Is this request interruptible? */
1404 VBoxGuestHGCMCallInfo info; /**< IN/OUT The rest of the call information. Placed after the timeout
1405 * so that the parameters follow as they would for a normal call. */
1406 /* Parameters follow in form HGCMFunctionParameter aParms[cParms] */
1407} VBoxGuestHGCMCallInfoTimed;
1408AssertCompileSize(VBoxGuestHGCMCallInfoTimed, 8+16);
1409# pragma pack()
1410
1411# define VBOXGUEST_IOCTL_HGCM_CONNECT VBOXGUEST_IOCTL_CODE(16, sizeof(VBoxGuestHGCMConnectInfo))
1412# define VBOXGUEST_IOCTL_HGCM_DISCONNECT VBOXGUEST_IOCTL_CODE(17, sizeof(VBoxGuestHGCMDisconnectInfo))
1413# define VBOXGUEST_IOCTL_HGCM_CALL(Size) VBOXGUEST_IOCTL_CODE(18, (Size))
1414# define VBOXGUEST_IOCTL_HGCM_CALL_TIMED(Size) VBOXGUEST_IOCTL_CODE(20, (Size))
1415# define VBOXGUEST_IOCTL_CLIPBOARD_CONNECT VBOXGUEST_IOCTL_CODE_(19, sizeof(uint32_t))
1416# ifdef RT_ARCH_AMD64
1417/* Following HGCM IOCtls can be used by a 32 bit application on a 64 bit guest (Windows OpenGL guest driver). */
1418# define VBOXGUEST_IOCTL_HGCM_CONNECT_32 VBOXGUEST_IOCTL_CODE_32(16, sizeof(VBoxGuestHGCMConnectInfo))
1419# define VBOXGUEST_IOCTL_HGCM_DISCONNECT_32 VBOXGUEST_IOCTL_CODE_32(17, sizeof(VBoxGuestHGCMDisconnectInfo))
1420# define VBOXGUEST_IOCTL_HGCM_CALL_32(Size) VBOXGUEST_IOCTL_CODE_32(18, (Size))
1421# define VBOXGUEST_IOCTL_HGCM_CALL_TIMED_32(Size) VBOXGUEST_IOCTL_CODE_32(20, (Size))
1422# endif /* RT_ARCH_AMD64 */
1423
1424# define VBOXGUEST_HGCM_CALL_PARMS(a) ((HGCMFunctionParameter *)((uint8_t *)(a) + sizeof (VBoxGuestHGCMCallInfo)))
1425# define VBOXGUEST_HGCM_CALL_PARMS32(a) ((HGCMFunctionParameter32 *)((uint8_t *)(a) + sizeof (VBoxGuestHGCMCallInfo)))
1426
1427#endif /* VBOX_WITH_HGCM */
1428
1429/*
1430 * Credentials request flags and structure
1431 */
1432
1433#define VMMDEV_CREDENTIALS_STRLEN 128
1434
1435/** query from host whether credentials are present */
1436#define VMMDEV_CREDENTIALS_QUERYPRESENCE RT_BIT(1)
1437/** read credentials from host (can be combined with clear) */
1438#define VMMDEV_CREDENTIALS_READ RT_BIT(2)
1439/** clear credentials on host (can be combined with read) */
1440#define VMMDEV_CREDENTIALS_CLEAR RT_BIT(3)
1441/** read credentials for judgement in the guest */
1442#define VMMDEV_CREDENTIALS_READJUDGE RT_BIT(8)
1443/** clear credentials for judegement on the host */
1444#define VMMDEV_CREDENTIALS_CLEARJUDGE RT_BIT(9)
1445/** report credentials acceptance by guest */
1446#define VMMDEV_CREDENTIALS_JUDGE_OK RT_BIT(10)
1447/** report credentials denial by guest */
1448#define VMMDEV_CREDENTIALS_JUDGE_DENY RT_BIT(11)
1449/** report that no judgement could be made by guest */
1450#define VMMDEV_CREDENTIALS_JUDGE_NOJUDGEMENT RT_BIT(12)
1451
1452/** flag telling the guest that credentials are present */
1453#define VMMDEV_CREDENTIALS_PRESENT RT_BIT(16)
1454/** flag telling guest that local logons should be prohibited */
1455#define VMMDEV_CREDENTIALS_NOLOCALLOGON RT_BIT(17)
1456
1457/** credentials request structure */
1458#pragma pack(4)
1459typedef struct _VMMDevCredentials
1460{
1461 /* request header */
1462 VMMDevRequestHeader header;
1463 /* request flags (in/out) */
1464 uint32_t u32Flags;
1465 /* user name (UTF-8) (out) */
1466 char szUserName[VMMDEV_CREDENTIALS_STRLEN];
1467 /* password (UTF-8) (out) */
1468 char szPassword[VMMDEV_CREDENTIALS_STRLEN];
1469 /* domain name (UTF-8) (out) */
1470 char szDomain[VMMDEV_CREDENTIALS_STRLEN];
1471} VMMDevCredentials;
1472#pragma pack()
1473
1474/** inline helper to determine the request size for the given operation */
1475DECLINLINE(size_t) vmmdevGetRequestSize(VMMDevRequestType requestType)
1476{
1477 switch (requestType)
1478 {
1479 case VMMDevReq_GetMouseStatus:
1480 case VMMDevReq_SetMouseStatus:
1481 return sizeof(VMMDevReqMouseStatus);
1482 case VMMDevReq_SetPointerShape:
1483 return sizeof(VMMDevReqMousePointer);
1484 case VMMDevReq_GetHostVersion:
1485 return sizeof(VMMDevReqHostVersion);
1486 case VMMDevReq_Idle:
1487 return sizeof(VMMDevReqIdle);
1488 case VMMDevReq_GetHostTime:
1489 return sizeof(VMMDevReqHostTime);
1490 case VMMDevReq_GetHypervisorInfo:
1491 case VMMDevReq_SetHypervisorInfo:
1492 return sizeof(VMMDevReqHypervisorInfo);
1493 case VMMDevReq_SetPowerStatus:
1494 return sizeof(VMMDevPowerStateRequest);
1495 case VMMDevReq_AcknowledgeEvents:
1496 return sizeof(VMMDevEvents);
1497 case VMMDevReq_ReportGuestInfo:
1498 return sizeof(VMMDevReportGuestInfo);
1499 case VMMDevReq_GetDisplayChangeRequest:
1500 return sizeof(VMMDevDisplayChangeRequest);
1501 case VMMDevReq_GetDisplayChangeRequest2:
1502 return sizeof(VMMDevDisplayChangeRequest2);
1503 case VMMDevReq_VideoModeSupported:
1504 return sizeof(VMMDevVideoModeSupportedRequest);
1505 case VMMDevReq_GetHeightReduction:
1506 return sizeof(VMMDevGetHeightReductionRequest);
1507 case VMMDevReq_ReportGuestCapabilities:
1508 return sizeof(VMMDevReqGuestCapabilities);
1509 case VMMDevReq_SetGuestCapabilities:
1510 return sizeof(VMMDevReqGuestCapabilities2);
1511#ifdef VBOX_WITH_HGCM
1512 case VMMDevReq_HGCMConnect:
1513 return sizeof(VMMDevHGCMConnect);
1514 case VMMDevReq_HGCMDisconnect:
1515 return sizeof(VMMDevHGCMDisconnect);
1516#ifdef VBOX_WITH_64_BITS_GUESTS
1517 case VMMDevReq_HGCMCall32:
1518 return sizeof(VMMDevHGCMCall);
1519 case VMMDevReq_HGCMCall64:
1520 return sizeof(VMMDevHGCMCall);
1521#else
1522 case VMMDevReq_HGCMCall:
1523 return sizeof(VMMDevHGCMCall);
1524#endif /* VBOX_WITH_64_BITS_GUESTS */
1525 case VMMDevReq_HGCMCancel:
1526 return sizeof(VMMDevHGCMCancel);
1527#endif /* VBOX_WITH_HGCM */
1528 case VMMDevReq_VideoAccelEnable:
1529 return sizeof(VMMDevVideoAccelEnable);
1530 case VMMDevReq_VideoAccelFlush:
1531 return sizeof(VMMDevVideoAccelFlush);
1532 case VMMDevReq_VideoSetVisibleRegion:
1533 return sizeof(VMMDevVideoSetVisibleRegion);
1534 case VMMDevReq_GetSeamlessChangeRequest:
1535 return sizeof(VMMDevSeamlessChangeRequest);
1536 case VMMDevReq_QueryCredentials:
1537 return sizeof(VMMDevCredentials);
1538 case VMMDevReq_ReportGuestStats:
1539 return sizeof(VMMDevReportGuestStats);
1540 case VMMDevReq_GetMemBalloonChangeRequest:
1541 return sizeof(VMMDevGetMemBalloonChangeRequest);
1542 case VMMDevReq_GetStatisticsChangeRequest:
1543 return sizeof(VMMDevGetStatisticsChangeRequest);
1544 case VMMDevReq_ChangeMemBalloon:
1545 return sizeof(VMMDevChangeMemBalloon);
1546 case VMMDevReq_GetVRDPChangeRequest:
1547 return sizeof(VMMDevVRDPChangeRequest);
1548 case VMMDevReq_LogString:
1549 return sizeof(VMMDevReqLogString);
1550 default:
1551 return 0;
1552 }
1553}
1554
1555/**
1556 * Initializes a request structure.
1557 *
1558 */
1559DECLINLINE(int) vmmdevInitRequest(VMMDevRequestHeader *req, VMMDevRequestType type)
1560{
1561 uint32_t requestSize;
1562 if (!req)
1563 return VERR_INVALID_PARAMETER;
1564 requestSize = (uint32_t)vmmdevGetRequestSize(type);
1565 if (!requestSize)
1566 return VERR_INVALID_PARAMETER;
1567 req->size = requestSize;
1568 req->version = VMMDEV_REQUEST_HEADER_VERSION;
1569 req->requestType = type;
1570 req->rc = VERR_GENERAL_FAILURE;
1571 req->reserved1 = 0;
1572 req->reserved2 = 0;
1573 return VINF_SUCCESS;
1574}
1575
1576
1577#ifdef RT_OS_OS2
1578
1579/**
1580 * The data buffer layout for the IDC entry point (AttachDD).
1581 *
1582 * @remark This is defined in multiple 16-bit headers / sources.
1583 * Some places it's called VBGOS2IDC to short things a bit.
1584 */
1585typedef struct VBOXGUESTOS2IDCCONNECT
1586{
1587 /** VMMDEV_VERSION. */
1588 uint32_t u32Version;
1589 /** Opaque session handle. */
1590 uint32_t u32Session;
1591
1592 /**
1593 * The 32-bit service entry point.
1594 *
1595 * @returns VBox status code.
1596 * @param u32Session The above session handle.
1597 * @param iFunction The requested function.
1598 * @param pvData The input/output data buffer. The caller ensures that this
1599 * cannot be swapped out, or that it's acceptable to take a
1600 * page in fault in the current context. If the request doesn't
1601 * take input or produces output, apssing NULL is okay.
1602 * @param cbData The size of the data buffer.
1603 * @param pcbDataReturned Where to store the amount of data that's returned.
1604 * This can be NULL if pvData is NULL.
1605 */
1606 DECLCALLBACKMEMBER(int, pfnServiceEP)(uint32_t u32Session, unsigned iFunction, void *pvData, size_t cbData, size_t *pcbDataReturned);
1607
1608 /** The 16-bit service entry point for C code (cdecl).
1609 *
1610 * It's the same as the 32-bit entry point, but the types has
1611 * changed to 16-bit equivalents.
1612 *
1613 * @code
1614 * int far cdecl
1615 * VBoxGuestOs2IDCService16(uint32_t u32Session, uint16_t iFunction,
1616 * void far *fpvData, uint16_t cbData, uint16_t far *pcbDataReturned);
1617 * @endcode
1618 */
1619 RTFAR16 fpfnServiceEP;
1620
1621 /** The 16-bit service entry point for Assembly code (register).
1622 *
1623 * This is just a wrapper around fpfnServiceEP to simplify calls
1624 * from 16-bit assembly code.
1625 *
1626 * @returns (e)ax: VBox status code; cx: The amount of data returned.
1627 *
1628 * @param u32Session eax - The above session handle.
1629 * @param iFunction dl - The requested function.
1630 * @param pvData es:bx - The input/output data buffer.
1631 * @param cbData cx - The size of the data buffer.
1632 */
1633 RTFAR16 fpfnServiceAsmEP;
1634} VBOXGUESTOS2IDCCONNECT;
1635/** Pointer to VBOXGUESTOS2IDCCONNECT buffer. */
1636typedef VBOXGUESTOS2IDCCONNECT *PVBOXGUESTOS2IDCCONNECT;
1637
1638/** OS/2 specific: IDC client disconnect request.
1639 *
1640 * This takes no input and it doesn't return anything. Obviously this
1641 * is only recognized if it arrives thru the IDC service EP.
1642 */
1643#define VBOXGUEST_IOCTL_OS2_IDC_DISCONNECT VBOXGUEST_IOCTL_CODE(48, sizeof(uint32_t))
1644
1645#endif /* RT_OS_OS2 */
1646
1647/** @} */
1648#endif /* !defined(IN_RC) && !defined(IN_RING0_AGNOSTIC) && !defined(IPRT_NO_CRT) */
1649
1650
1651#ifdef IN_RING3
1652
1653/** @def VBGLR3DECL
1654 * Ring 3 VBGL declaration.
1655 * @param type The return type of the function declaration.
1656 */
1657#define VBGLR3DECL(type) type VBOXCALL
1658
1659/* General-purpose functions */
1660
1661__BEGIN_DECLS
1662VBGLR3DECL(int) VbglR3Init(void);
1663VBGLR3DECL(int) VbglR3InitUser(void);
1664VBGLR3DECL(void) VbglR3Term(void);
1665# ifdef ___iprt_time_h
1666VBGLR3DECL(int) VbglR3GetHostTime(PRTTIMESPEC pTime);
1667# endif
1668VBGLR3DECL(int) VbglR3InterruptEventWaits(void);
1669VBGLR3DECL(int) VbglR3WriteLog(const char *pch, size_t cb);
1670VBGLR3DECL(int) VbglR3CtlFilterMask(uint32_t fOr, uint32_t fNot);
1671VBGLR3DECL(int) VbglR3Daemonize(bool fNoChDir, bool fNoClose, char const *pszPidfile);
1672VBGLR3DECL(int) VbglR3SetGuestCaps(uint32_t fOr, uint32_t fNot);
1673
1674/** @name Shared clipboard
1675 * @{ */
1676VBGLR3DECL(int) VbglR3ClipboardConnect(uint32_t *pu32ClientId);
1677VBGLR3DECL(int) VbglR3ClipboardDisconnect(uint32_t u32ClientId);
1678VBGLR3DECL(int) VbglR3ClipboardGetHostMsg(uint32_t u32ClientId, uint32_t *pMsg, uint32_t *pfFormats);
1679VBGLR3DECL(int) VbglR3ClipboardReadData(uint32_t u32ClientId, uint32_t fFormat, void *pv, uint32_t cb, uint32_t *pcb);
1680VBGLR3DECL(int) VbglR3ClipboardReportFormats(uint32_t u32ClientId, uint32_t fFormats);
1681VBGLR3DECL(int) VbglR3ClipboardWriteData(uint32_t u32ClientId, uint32_t fFormat, void *pv, uint32_t cb);
1682/** @} */
1683
1684/** @name Seamless mode
1685 * @{ */
1686VBGLR3DECL(int) VbglR3SeamlessSetCap(bool fState);
1687VBGLR3DECL(int) VbglR3SeamlessWaitEvent(VMMDevSeamlessMode *pMode);
1688VBGLR3DECL(int) VbglR3SeamlessSendRects(uint32_t cRects, PRTRECT pRects);
1689/** @} */
1690
1691/** @name Mouse
1692 * @{ */
1693VBGLR3DECL(int) VbglR3GetMouseStatus(uint32_t *pfFeatures, uint32_t *px, uint32_t *py);
1694VBGLR3DECL(int) VbglR3SetMouseStatus(uint32_t fFeatures);
1695/** @} */
1696
1697/** @name Video
1698 * @{ */
1699VBGLR3DECL(int) VbglR3VideoAccelEnable(bool fEnable);
1700VBGLR3DECL(int) VbglR3VideoAccelFlush(void);
1701VBGLR3DECL(int) VbglR3SetPointerShape(uint32_t fFlags, uint32_t xHot, uint32_t yHot, uint32_t cx, uint32_t cy, const void *pvImg, size_t cbImg);
1702VBGLR3DECL(int) VbglR3SetPointerShapeReq(VMMDevReqMousePointer *pReq);
1703/** @} */
1704
1705/** @name Display
1706 * @{ */
1707VBGLR3DECL(int) VbglR3GetLastDisplayChangeRequest(uint32_t *pcx, uint32_t *pcy, uint32_t *pcBits, uint32_t *piDisplay);
1708VBGLR3DECL(int) VbglR3DisplayChangeWaitEvent(uint32_t *pcx, uint32_t *pcy, uint32_t *pcBits, uint32_t *piDisplay);
1709VBGLR3DECL(bool) VbglR3HostLikesVideoMode(uint32_t cx, uint32_t cy, uint32_t cBits);
1710VBGLR3DECL(int) VbglR3SaveVideoMode(const char *pszName, uint32_t cx, uint32_t cy, uint32_t cBits);
1711VBGLR3DECL(int) VbglR3RetrieveVideoMode(const char *pszName, uint32_t *pcx, uint32_t *pcy, uint32_t *pcBits);
1712/** @} */
1713
1714#ifdef VBOX_WITH_GUEST_PROPS
1715/** @name Guest properties
1716 * @{ */
1717typedef struct VBGLR3GUESTPROPENUM VBGLR3GUESTPROPENUM, *PVBGLR3GUESTPROPENUM;
1718VBGLR3DECL(int) VbglR3GuestPropConnect(uint32_t *pu32ClientId);
1719VBGLR3DECL(int) VbglR3GuestPropDisconnect(uint32_t u32ClientId);
1720VBGLR3DECL(int) VbglR3GuestPropWrite(uint32_t u32ClientId, const char *pszName, const char *pszValue, const char *pszFlags);
1721VBGLR3DECL(int) VbglR3GuestPropWriteValue(uint32_t u32ClientId, const char *pszName, const char *pszValue);
1722VBGLR3DECL(int) VbglR3GuestPropWriteValueV(uint32_t u32ClientId, const char *pszName, const char *pszValueFormat, va_list va);
1723VBGLR3DECL(int) VbglR3GuestPropWriteValueF(uint32_t u32ClientId, const char *pszName, const char *pszValueFormat, ...);
1724VBGLR3DECL(int) VbglR3GuestPropRead(uint32_t u32ClientId, const char *pszName, void *pvBuf, uint32_t cbBuf, char **ppszValue, uint64_t *pu64Timestamp, char **ppszFlags, uint32_t *pcbBufActual);
1725VBGLR3DECL(int) VbglR3GuestPropReadValue(uint32_t ClientId, const char *pszName, char *pszValue, uint32_t cchValue, uint32_t *pcchValueActual);
1726VBGLR3DECL(int) VbglR3GuestPropReadValueAlloc(uint32_t u32ClientId, const char *pszName, char **ppszValue);
1727VBGLR3DECL(void) VbglR3GuestPropReadValueFree(char *pszValue);
1728VBGLR3DECL(int) VbglR3GuestPropEnumRaw(uint32_t u32ClientId, const char *paszPatterns, char *pcBuf, uint32_t cbBuf, uint32_t *pcbBufActual);
1729VBGLR3DECL(int) VbglR3GuestPropEnum(uint32_t u32ClientId, char const * const *ppaszPatterns, uint32_t cPatterns, PVBGLR3GUESTPROPENUM *ppHandle,
1730 char const **ppszName, char const **ppszValue, uint64_t *pu64Timestamp, char const **ppszFlags);
1731VBGLR3DECL(int) VbglR3GuestPropEnumNext(PVBGLR3GUESTPROPENUM pHandle, char const **ppszName, char const **ppszValue, uint64_t *pu64Timestamp,
1732 char const **ppszFlags);
1733VBGLR3DECL(void) VbglR3GuestPropEnumFree(PVBGLR3GUESTPROPENUM pHandle);
1734VBGLR3DECL(int) VbglR3GuestPropDelSet(uint32_t u32ClientId, char const * const *papszPatterns, uint32_t cPatterns);
1735VBGLR3DECL(int) VbglR3GuestPropWait(uint32_t u32ClientId, const char *pszPatterns, void *pvBuf, uint32_t cbBuf, uint64_t u64Timestamp, uint32_t u32Timeout, char ** ppszName, char **ppszValue, uint64_t *pu64Timestamp, char **ppszFlags, uint32_t *pcbBufActual);
1736/** @} */
1737#endif /* VBOX_WITH_GUEST_PROPS defined */
1738
1739
1740__END_DECLS
1741
1742#endif /* IN_RING3 */
1743
1744#endif
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