VirtualBox

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

Last change on this file since 19968 was 19654, checked in by vboxsync, 15 years ago

Main and Devices/absolute mouse: do not send movement events to the virutal PS/2 device if the guest can read them from VMMDev

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