VirtualBox

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

Last change on this file since 52664 was 51490, checked in by vboxsync, 10 years ago

Additions: Darwin: apply the same approach as in r94097 when preventing 3rd party Apps from connecting to VBox IOServices.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 23.2 KB
Line 
1/** @file
2 * VBoxGuest - VirtualBox Guest Additions Driver Interface. (ADD,DEV)
3 *
4 * @remarks This is in the process of being split up and usage cleaned up.
5 */
6
7/*
8 * Copyright (C) 2006-2012 Oracle Corporation
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 *
18 * The contents of this file may alternatively be used under the terms
19 * of the Common Development and Distribution License Version 1.0
20 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
21 * VirtualBox OSE distribution, in which case the provisions of the
22 * CDDL are applicable instead of those of the GPL.
23 *
24 * You may elect to license modified versions of this file under the
25 * terms and conditions of either the GPL or the CDDL or both.
26 */
27
28#ifndef ___VBox_VBoxGuest_h
29#define ___VBox_VBoxGuest_h
30
31#include <VBox/cdefs.h>
32#include <VBox/types.h>
33#include <iprt/assert.h>
34#include <VBox/VMMDev2.h>
35#include <VBox/VBoxGuest2.h>
36
37
38/** @defgroup grp_vboxguest VirtualBox Guest Additions Driver Interface
39 * @{
40 */
41
42/** @todo it would be nice if we could have two define without paths. */
43
44/** @def VBOXGUEST_DEVICE_NAME
45 * The support device name. */
46/** @def VBOXGUEST_USER_DEVICE_NAME
47 * The support device name of the user accessible device node. */
48
49#if defined(RT_OS_OS2)
50# define VBOXGUEST_DEVICE_NAME "\\Dev\\VBoxGst$"
51
52#elif defined(RT_OS_WINDOWS)
53# define VBOXGUEST_DEVICE_NAME "\\\\.\\VBoxGuest"
54
55/** The support service name. */
56# define VBOXGUEST_SERVICE_NAME "VBoxGuest"
57/** Global name for Win2k+ */
58# define VBOXGUEST_DEVICE_NAME_GLOBAL "\\\\.\\Global\\VBoxGuest"
59/** Win32 driver name */
60# define VBOXGUEST_DEVICE_NAME_NT L"\\Device\\VBoxGuest"
61/** Device name. */
62# define VBOXGUEST_DEVICE_NAME_DOS L"\\DosDevices\\VBoxGuest"
63
64#elif defined(RT_OS_HAIKU)
65# define VBOXGUEST_DEVICE_NAME "/dev/misc/vboxguest"
66
67#else /* (PORTME) */
68# define VBOXGUEST_DEVICE_NAME "/dev/vboxguest"
69# if defined(RT_OS_LINUX)
70# define VBOXGUEST_USER_DEVICE_NAME "/dev/vboxuser"
71# endif
72#endif
73
74#ifndef VBOXGUEST_USER_DEVICE_NAME
75# define VBOXGUEST_USER_DEVICE_NAME VBOXGUEST_DEVICE_NAME
76#endif
77
78/** Fictive start address of the hypervisor physical memory for MmMapIoSpace. */
79#define VBOXGUEST_HYPERVISOR_PHYSICAL_START UINT32_C(0xf8000000)
80
81#ifdef RT_OS_DARWIN
82/** Cookie used to fend off some unwanted clients to the IOService. */
83#define VBOXGUEST_DARWIN_IOSERVICE_COOKIE 0x56426F78 /* 'VBox' */
84#endif
85
86#if !defined(IN_RC) && !defined(IN_RING0_AGNOSTIC) && !defined(IPRT_NO_CRT)
87/** @name VBoxGuest IOCTL codes and structures.
88 *
89 * The range 0..15 is for basic driver communication.
90 * The range 16..31 is for HGCM communication.
91 * The range 32..47 is reserved for future use.
92 * The range 48..63 is for OS specific communication.
93 * The 7th bit is reserved for future hacks.
94 * The 8th bit is reserved for distinguishing between 32-bit and 64-bit
95 * processes in future 64-bit guest additions.
96 *
97 * @remarks When creating new IOCtl interfaces keep in mind that not all OSes supports
98 * reporting back the output size. (This got messed up a little bit in VBoxDrv.)
99 *
100 * The request size is also a little bit tricky as it's passed as part of the
101 * request code on unix. The size field is 14 bits on Linux, 12 bits on *BSD,
102 * 13 bits Darwin, and 8-bits on Solaris. All the BSDs and Darwin kernels
103 * will make use of the size field, while Linux and Solaris will not. We're of
104 * course using the size to validate and/or map/lock the request, so it has
105 * to be valid.
106 *
107 * For Solaris we will have to do something special though, 255 isn't
108 * sufficient for all we need. A 4KB restriction (BSD) is probably not
109 * too problematic (yet) as a general one.
110 *
111 * More info can be found in SUPDRVIOC.h and related sources.
112 *
113 * @remarks If adding interfaces that only has input or only has output, some new macros
114 * needs to be created so the most efficient IOCtl data buffering method can be
115 * used.
116 * @{
117 */
118#if defined(RT_ARCH_AMD64) || defined(RT_ARCH_SPARC64)
119# define VBOXGUEST_IOCTL_FLAG 128
120#elif defined(RT_ARCH_X86) || defined(RT_ARCH_SPARC)
121# define VBOXGUEST_IOCTL_FLAG 0
122#else
123# error "dunno which arch this is!"
124#endif
125/** @} */
126
127/** Ring-3 request wrapper for big requests.
128 *
129 * This is necessary because the ioctl number scheme on many Unixy OSes (esp. Solaris)
130 * only allows a relatively small size to be encoded into the request. So, for big
131 * request this generic form is used instead. */
132typedef struct VBGLBIGREQ
133{
134 /** Magic value (VBGLBIGREQ_MAGIC). */
135 uint32_t u32Magic;
136 /** The size of the data buffer. */
137 uint32_t cbData;
138 /** The user address of the data buffer. */
139 RTR3PTR pvDataR3;
140#if HC_ARCH_BITS == 32
141 uint32_t u32Padding;
142#endif
143/** @todo r=bird: We need a 'rc' field for passing VBox status codes. Reused
144 * some input field as rc on output. */
145} VBGLBIGREQ;
146/** Pointer to a request wrapper for solaris guests. */
147typedef VBGLBIGREQ *PVBGLBIGREQ;
148/** Pointer to a const request wrapper for solaris guests. */
149typedef const VBGLBIGREQ *PCVBGLBIGREQ;
150
151/** The VBGLBIGREQ::u32Magic value (Ryuu Murakami). */
152#define VBGLBIGREQ_MAGIC 0x19520219
153
154
155#if defined(RT_OS_WINDOWS)
156/** @todo Remove IOCTL_CODE later! Integrate it in VBOXGUEST_IOCTL_CODE below. */
157/** @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... */
158# define IOCTL_CODE(DeviceType, Function, Method, Access, DataSize_ignored) \
159 ( ((DeviceType) << 16) | ((Access) << 14) | ((Function) << 2) | (Method))
160# define VBOXGUEST_IOCTL_CODE_(Function, Size) IOCTL_CODE(FILE_DEVICE_UNKNOWN, 2048 + (Function), METHOD_BUFFERED, FILE_WRITE_ACCESS, 0)
161# define VBOXGUEST_IOCTL_STRIP_SIZE(Code) (Code)
162
163#elif defined(RT_OS_OS2)
164 /* No automatic buffering, size not encoded. */
165# define VBOXGUEST_IOCTL_CATEGORY 0xc2
166# define VBOXGUEST_IOCTL_CODE_(Function, Size) ((unsigned char)(Function))
167# define VBOXGUEST_IOCTL_CATEGORY_FAST 0xc3 /**< Also defined in VBoxGuestA-os2.asm. */
168# define VBOXGUEST_IOCTL_CODE_FAST_(Function) ((unsigned char)(Function))
169# define VBOXGUEST_IOCTL_STRIP_SIZE(Code) (Code)
170
171#elif defined(RT_OS_SOLARIS)
172 /* No automatic buffering, size limited to 255 bytes => use VBGLBIGREQ for everything. */
173# include <sys/ioccom.h>
174# define VBOXGUEST_IOCTL_CODE_(Function, Size) _IOWRN('V', (Function), sizeof(VBGLBIGREQ))
175# define VBOXGUEST_IOCTL_CODE_FAST_(Function) _IO( 'V', (Function))
176# define VBOXGUEST_IOCTL_STRIP_SIZE(Code) (Code)
177
178#elif defined(RT_OS_LINUX)
179 /* No automatic buffering, size limited to 16KB. */
180# include <linux/ioctl.h>
181# define VBOXGUEST_IOCTL_CODE_(Function, Size) _IOC(_IOC_READ|_IOC_WRITE, 'V', (Function), (Size))
182# define VBOXGUEST_IOCTL_CODE_FAST_(Function) _IO( 'V', (Function))
183# define VBOXGUEST_IOCTL_STRIP_SIZE(Code) VBOXGUEST_IOCTL_CODE_(_IOC_NR((Code)), 0)
184
185#elif defined(RT_OS_HAIKU)
186 /* No automatic buffering, size not encoded. */
187 /** @todo do something better */
188# define VBOXGUEST_IOCTL_CODE_(Function, Size) (0x56420000 | (Function))
189# define VBOXGUEST_IOCTL_CODE_FAST_(Function) (0x56420000 | (Function))
190# define VBOXGUEST_IOCTL_STRIP_SIZE(Code) (Code)
191
192#elif defined(RT_OS_FREEBSD) /** @todo r=bird: Please do it like SUPDRVIOC to keep it as similar as possible. */
193# include <sys/ioccom.h>
194
195# define VBOXGUEST_IOCTL_CODE_(Function, Size) _IOWR('V', (Function), VBGLBIGREQ)
196# define VBOXGUEST_IOCTL_CODE_FAST_(Function) _IO( 'V', (Function))
197# define VBOXGUEST_IOCTL_STRIP_SIZE(Code) IOCBASECMD(Code)
198
199#else /* BSD Like */
200 /* Automatic buffering, size limited to 4KB on *BSD and 8KB on Darwin - commands the limit, 4KB. */
201# include <sys/ioccom.h>
202# define VBOXGUEST_IOCTL_CODE_(Function, Size) _IOC(IOC_INOUT, 'V', (Function), (Size))
203# define VBOXGUEST_IOCTL_CODE_FAST_(Function) _IO('V', (Function))
204# define VBOXGUEST_IOCTL_STRIP_SIZE(uIOCtl) ( (uIOCtl) & ~_IOC(0,0,0,IOCPARM_MASK) )
205#endif
206
207#define VBOXGUEST_IOCTL_CODE(Function, Size) VBOXGUEST_IOCTL_CODE_((Function) | VBOXGUEST_IOCTL_FLAG, Size)
208#define VBOXGUEST_IOCTL_CODE_FAST(Function) VBOXGUEST_IOCTL_CODE_FAST_((Function) | VBOXGUEST_IOCTL_FLAG)
209
210/* Define 32 bit codes to support 32 bit applications requests in the 64 bit guest driver. */
211#ifdef RT_ARCH_AMD64
212# define VBOXGUEST_IOCTL_CODE_32(Function, Size) VBOXGUEST_IOCTL_CODE_(Function, Size)
213# define VBOXGUEST_IOCTL_CODE_FAST_32(Function) VBOXGUEST_IOCTL_CODE_FAST_(Function)
214#endif /* RT_ARCH_AMD64 */
215
216
217
218/** IOCTL to VBoxGuest to query the VMMDev IO port region start.
219 * @remarks Ring-0 only. */
220#define VBOXGUEST_IOCTL_GETVMMDEVPORT VBOXGUEST_IOCTL_CODE(1, sizeof(VBoxGuestPortInfo))
221
222#pragma pack(4)
223typedef struct VBoxGuestPortInfo
224{
225 uint32_t portAddress;
226 struct VMMDevMemory *pVMMDevMemory;
227} VBoxGuestPortInfo;
228
229
230/** IOCTL to VBoxGuest to wait for a VMMDev host notification */
231#define VBOXGUEST_IOCTL_WAITEVENT VBOXGUEST_IOCTL_CODE_(2, sizeof(VBoxGuestWaitEventInfo))
232
233/** @name Result codes for VBoxGuestWaitEventInfo::u32Result
234 * @{
235 */
236/** Successful completion, an event occurred. */
237#define VBOXGUEST_WAITEVENT_OK (0)
238/** Successful completion, timed out. */
239#define VBOXGUEST_WAITEVENT_TIMEOUT (1)
240/** Wait was interrupted. */
241#define VBOXGUEST_WAITEVENT_INTERRUPTED (2)
242/** An error occurred while processing the request. */
243#define VBOXGUEST_WAITEVENT_ERROR (3)
244/** @} */
245
246/** Input and output buffers layout of the IOCTL_VBOXGUEST_WAITEVENT */
247typedef struct VBoxGuestWaitEventInfo
248{
249 /** timeout in milliseconds */
250 uint32_t u32TimeoutIn;
251 /** events to wait for */
252 uint32_t u32EventMaskIn;
253 /** result code */
254 uint32_t u32Result;
255 /** events occurred */
256 uint32_t u32EventFlagsOut;
257} VBoxGuestWaitEventInfo;
258AssertCompileSize(VBoxGuestWaitEventInfo, 16);
259
260
261/** IOCTL to VBoxGuest to perform a VMM request
262 * @remark The data buffer for this IOCtl has an variable size, keep this in mind
263 * on systems where this matters. */
264#define VBOXGUEST_IOCTL_VMMREQUEST(Size) VBOXGUEST_IOCTL_CODE_(3, (Size))
265
266
267/** IOCTL to VBoxGuest to control event filter mask. */
268#define VBOXGUEST_IOCTL_CTL_FILTER_MASK VBOXGUEST_IOCTL_CODE_(4, sizeof(VBoxGuestFilterMaskInfo))
269
270/** Input and output buffer layout of the IOCTL_VBOXGUEST_CTL_FILTER_MASK. */
271typedef struct VBoxGuestFilterMaskInfo
272{
273 uint32_t u32OrMask;
274 uint32_t u32NotMask;
275} VBoxGuestFilterMaskInfo;
276AssertCompileSize(VBoxGuestFilterMaskInfo, 8);
277#pragma pack()
278
279/** IOCTL to VBoxGuest to interrupt (cancel) any pending WAITEVENTs and return.
280 * Handled inside the guest additions and not seen by the host at all.
281 * @see VBOXGUEST_IOCTL_WAITEVENT */
282#define VBOXGUEST_IOCTL_CANCEL_ALL_WAITEVENTS VBOXGUEST_IOCTL_CODE_(5, 0)
283
284/** IOCTL to VBoxGuest to perform backdoor logging.
285 * The argument is a string buffer of the specified size. */
286#define VBOXGUEST_IOCTL_LOG(Size) VBOXGUEST_IOCTL_CODE_(6, (Size))
287
288/** IOCTL to VBoxGuest to check memory ballooning.
289 * The guest kernel module / device driver will ask the host for the current size of
290 * the balloon and adjust the size. Or it will set fHandledInR0 = false and R3 is
291 * responsible for allocating memory and calling R0 (VBOXGUEST_IOCTL_CHANGE_BALLOON). */
292#define VBOXGUEST_IOCTL_CHECK_BALLOON VBOXGUEST_IOCTL_CODE_(7, sizeof(VBoxGuestCheckBalloonInfo))
293
294/** Output buffer layout of the VBOXGUEST_IOCTL_CHECK_BALLOON. */
295typedef struct VBoxGuestCheckBalloonInfo
296{
297 /** The size of the balloon in chunks of 1MB. */
298 uint32_t cBalloonChunks;
299 /** false = handled in R0, no further action required.
300 * true = allocate balloon memory in R3. */
301 uint32_t fHandleInR3;
302} VBoxGuestCheckBalloonInfo;
303AssertCompileSize(VBoxGuestCheckBalloonInfo, 8);
304
305
306/** IOCTL to VBoxGuest to supply or revoke one chunk for ballooning.
307 * The guest kernel module / device driver will lock down supplied memory or
308 * unlock reclaimed memory and then forward the physical addresses of the
309 * changed balloon chunk to the host. */
310#define VBOXGUEST_IOCTL_CHANGE_BALLOON VBOXGUEST_IOCTL_CODE_(8, sizeof(VBoxGuestChangeBalloonInfo))
311
312/** Input buffer layout of the VBOXGUEST_IOCTL_CHANGE_BALLOON request.
313 * Information about a memory chunk used to inflate or deflate the balloon. */
314typedef struct VBoxGuestChangeBalloonInfo
315{
316 /** Address of the chunk. */
317 uint64_t u64ChunkAddr;
318 /** true = inflate, false = deflate. */
319 uint32_t fInflate;
320 /** Alignment padding. */
321 uint32_t u32Align;
322} VBoxGuestChangeBalloonInfo;
323AssertCompileSize(VBoxGuestChangeBalloonInfo, 16);
324
325/** IOCTL to VBoxGuest to write guest core. */
326#define VBOXGUEST_IOCTL_WRITE_CORE_DUMP VBOXGUEST_IOCTL_CODE(9, sizeof(VBoxGuestWriteCoreDump))
327
328/** Input and output buffer layout of the VBOXGUEST_IOCTL_WRITE_CORE
329 * request. */
330typedef struct VBoxGuestWriteCoreDump
331{
332 /** Flags (reserved, MBZ). */
333 uint32_t fFlags;
334} VBoxGuestWriteCoreDump;
335AssertCompileSize(VBoxGuestWriteCoreDump, 4);
336
337/** IOCTL to VBoxGuest to update the mouse status features. */
338# define VBOXGUEST_IOCTL_SET_MOUSE_STATUS VBOXGUEST_IOCTL_CODE_(10, sizeof(uint32_t))
339
340#ifdef VBOX_WITH_HGCM
341/** IOCTL to VBoxGuest to connect to a HGCM service. */
342# define VBOXGUEST_IOCTL_HGCM_CONNECT VBOXGUEST_IOCTL_CODE(16, sizeof(VBoxGuestHGCMConnectInfo))
343
344/** IOCTL to VBoxGuest to disconnect from a HGCM service. */
345# define VBOXGUEST_IOCTL_HGCM_DISCONNECT VBOXGUEST_IOCTL_CODE(17, sizeof(VBoxGuestHGCMDisconnectInfo))
346
347/** IOCTL to VBoxGuest to make a call to a HGCM service.
348 * @see VBoxGuestHGCMCallInfo */
349# define VBOXGUEST_IOCTL_HGCM_CALL(Size) VBOXGUEST_IOCTL_CODE(18, (Size))
350
351/** IOCTL to VBoxGuest to make a timed call to a HGCM service. */
352# define VBOXGUEST_IOCTL_HGCM_CALL_TIMED(Size) VBOXGUEST_IOCTL_CODE(20, (Size))
353
354/** IOCTL to VBoxGuest passed from the Kernel Mode driver, but containing a user mode data in VBoxGuestHGCMCallInfo
355 * the driver received from the UM. Called in the context of the process passing the data.
356 * @see VBoxGuestHGCMCallInfo */
357# define VBOXGUEST_IOCTL_HGCM_CALL_USERDATA(Size) VBOXGUEST_IOCTL_CODE(21, (Size))
358
359# ifdef RT_ARCH_AMD64
360/** @name IOCTL numbers that 32-bit clients, like the Windows OpenGL guest
361 * driver, will use when taking to a 64-bit driver.
362 * @remarks These are only used by the driver implementation! */
363# define VBOXGUEST_IOCTL_HGCM_CONNECT_32 VBOXGUEST_IOCTL_CODE_32(16, sizeof(VBoxGuestHGCMConnectInfo))
364# define VBOXGUEST_IOCTL_HGCM_DISCONNECT_32 VBOXGUEST_IOCTL_CODE_32(17, sizeof(VBoxGuestHGCMDisconnectInfo))
365# define VBOXGUEST_IOCTL_HGCM_CALL_32(Size) VBOXGUEST_IOCTL_CODE_32(18, (Size))
366# define VBOXGUEST_IOCTL_HGCM_CALL_TIMED_32(Size) VBOXGUEST_IOCTL_CODE_32(20, (Size))
367/** @} */
368# endif /* RT_ARCH_AMD64 */
369
370/** Get the pointer to the first HGCM parameter. */
371# define VBOXGUEST_HGCM_CALL_PARMS(a) ( (HGCMFunctionParameter *)((uint8_t *)(a) + sizeof(VBoxGuestHGCMCallInfo)) )
372/** Get the pointer to the first HGCM parameter in a 32-bit request. */
373# define VBOXGUEST_HGCM_CALL_PARMS32(a) ( (HGCMFunctionParameter32 *)((uint8_t *)(a) + sizeof(VBoxGuestHGCMCallInfo)) )
374
375#endif /* VBOX_WITH_HGCM */
376
377#ifdef VBOX_WITH_DPC_LATENCY_CHECKER
378/** IOCTL to VBoxGuest to perform DPC latency tests, printing the result in
379 * the release log on the host. Takes no data, returns no data. */
380# define VBOXGUEST_IOCTL_DPC_LATENCY_CHECKER VBOXGUEST_IOCTL_CODE_(30, 0)
381#endif
382
383/** IOCTL to for setting the mouse driver callback. (kernel only) */
384/** @note The callback will be called in interrupt context with the VBoxGuest
385 * device event spinlock held. */
386#define VBOXGUEST_IOCTL_SET_MOUSE_NOTIFY_CALLBACK VBOXGUEST_IOCTL_CODE(31, sizeof(VBoxGuestMouseSetNotifyCallback))
387
388typedef DECLCALLBACK(void) FNVBOXGUESTMOUSENOTIFY(void *pfnUser);
389typedef FNVBOXGUESTMOUSENOTIFY *PFNVBOXGUESTMOUSENOTIFY;
390
391/** Input buffer for VBOXGUEST_IOCTL_INTERNAL_SET_MOUSE_NOTIFY_CALLBACK. */
392typedef struct VBoxGuestMouseSetNotifyCallback
393{
394 /**
395 * Mouse notification callback.
396 *
397 * @param pvUser The callback argument.
398 */
399 PFNVBOXGUESTMOUSENOTIFY pfnNotify;
400 /** The callback argument*/
401 void *pvUser;
402} VBoxGuestMouseSetNotifyCallback;
403
404
405typedef enum VBOXGUESTCAPSACQUIRE_FLAGS
406{
407 VBOXGUESTCAPSACQUIRE_FLAGS_NONE = 0,
408 /* configures VBoxGuest to use the specified caps in Acquire mode, w/o making any caps acquisition/release.
409 * so far it is only possible to set acquire mode for caps, but not clear it,
410 * so u32NotMask is ignored for this request */
411 VBOXGUESTCAPSACQUIRE_FLAGS_CONFIG_ACQUIRE_MODE,
412 /* to ensure enum is 32bit*/
413 VBOXGUESTCAPSACQUIRE_FLAGS_32bit = 0x7fffffff
414} VBOXGUESTCAPSACQUIRE_FLAGS;
415
416typedef struct VBoxGuestCapsAquire
417{
418 /* result status
419 * VINF_SUCCESS - on success
420 * VERR_RESOURCE_BUSY - some caps in the u32OrMask are acquired by some other VBoxGuest connection.
421 * NOTE: no u32NotMask caps are cleaned in this case, i.e. no modifications are done on failure
422 * VER_INVALID_PARAMETER - invalid Caps are specified with either u32OrMask or u32NotMask. No modifications are done on failure.
423 */
424 int32_t rc;
425 /* Acquire command */
426 VBOXGUESTCAPSACQUIRE_FLAGS enmFlags;
427 /* caps to acquire, OR-ed VMMDEV_GUEST_SUPPORTS_XXX flags */
428 uint32_t u32OrMask;
429 /* caps to release, OR-ed VMMDEV_GUEST_SUPPORTS_XXX flags */
430 uint32_t u32NotMask;
431} VBoxGuestCapsAquire;
432
433/** IOCTL to for Acquiring/Releasing Guest Caps
434 * This is used for multiple purposes:
435 * 1. By doing Acquire r3 client application (e.g. VBoxTray) claims it will use
436 * the given connection for performing operations like Seamles or Auto-resize,
437 * thus, if the application terminates, the driver will automatically cleanup the caps reported to host,
438 * so that host knows guest does not support them anymore
439 * 2. In a multy-user environment this will not allow r3 applications (like VBoxTray)
440 * running in different user sessions simultaneously to interfere with each other.
441 * An r3 client application (like VBoxTray) is responsible for Acquiring/Releasing caps properly as needed.
442 **/
443#define VBOXGUEST_IOCTL_GUEST_CAPS_ACQUIRE VBOXGUEST_IOCTL_CODE(32, sizeof(VBoxGuestCapsAquire))
444
445/** IOCTL to VBoxGuest to set guest capabilities. */
446#define VBOXGUEST_IOCTL_SET_GUEST_CAPABILITIES VBOXGUEST_IOCTL_CODE_(33, sizeof(VBoxGuestSetCapabilitiesInfo))
447
448/** Input and output buffer layout of the VBOXGUEST_IOCTL_SET_GUEST_CAPABILITIES
449 * IOCtl. */
450typedef struct VBoxGuestSetCapabilitiesInfo
451{
452 uint32_t u32OrMask;
453 uint32_t u32NotMask;
454} VBoxGuestSetCapabilitiesInfo;
455AssertCompileSize(VBoxGuestSetCapabilitiesInfo, 8);
456
457
458#ifdef RT_OS_OS2
459
460/**
461 * The data buffer layout for the IDC entry point (AttachDD).
462 *
463 * @remark This is defined in multiple 16-bit headers / sources.
464 * Some places it's called VBGOS2IDC to short things a bit.
465 */
466typedef struct VBOXGUESTOS2IDCCONNECT
467{
468 /** VMMDEV_VERSION. */
469 uint32_t u32Version;
470 /** Opaque session handle. */
471 uint32_t u32Session;
472
473 /**
474 * The 32-bit service entry point.
475 *
476 * @returns VBox status code.
477 * @param u32Session The above session handle.
478 * @param iFunction The requested function.
479 * @param pvData The input/output data buffer. The caller ensures that this
480 * cannot be swapped out, or that it's acceptable to take a
481 * page in fault in the current context. If the request doesn't
482 * take input or produces output, apssing NULL is okay.
483 * @param cbData The size of the data buffer.
484 * @param pcbDataReturned Where to store the amount of data that's returned.
485 * This can be NULL if pvData is NULL.
486 */
487 DECLCALLBACKMEMBER(int, pfnServiceEP)(uint32_t u32Session, unsigned iFunction, void *pvData, size_t cbData, size_t *pcbDataReturned);
488
489 /** The 16-bit service entry point for C code (cdecl).
490 *
491 * It's the same as the 32-bit entry point, but the types has
492 * changed to 16-bit equivalents.
493 *
494 * @code
495 * int far cdecl
496 * VBoxGuestOs2IDCService16(uint32_t u32Session, uint16_t iFunction,
497 * void far *fpvData, uint16_t cbData, uint16_t far *pcbDataReturned);
498 * @endcode
499 */
500 RTFAR16 fpfnServiceEP;
501
502 /** The 16-bit service entry point for Assembly code (register).
503 *
504 * This is just a wrapper around fpfnServiceEP to simplify calls
505 * from 16-bit assembly code.
506 *
507 * @returns (e)ax: VBox status code; cx: The amount of data returned.
508 *
509 * @param u32Session eax - The above session handle.
510 * @param iFunction dl - The requested function.
511 * @param pvData es:bx - The input/output data buffer.
512 * @param cbData cx - The size of the data buffer.
513 */
514 RTFAR16 fpfnServiceAsmEP;
515} VBOXGUESTOS2IDCCONNECT;
516/** Pointer to VBOXGUESTOS2IDCCONNECT buffer. */
517typedef VBOXGUESTOS2IDCCONNECT *PVBOXGUESTOS2IDCCONNECT;
518
519/** OS/2 specific: IDC client disconnect request.
520 *
521 * This takes no input and it doesn't return anything. Obviously this
522 * is only recognized if it arrives thru the IDC service EP.
523 */
524# define VBOXGUEST_IOCTL_OS2_IDC_DISCONNECT VBOXGUEST_IOCTL_CODE(48, sizeof(uint32_t))
525
526#endif /* RT_OS_OS2 */
527
528#if defined(RT_OS_LINUX) || defined(RT_OS_SOLARIS) || defined(RT_OS_FREEBSD)
529
530/* Private IOCtls between user space and the kernel video driver. DRM private
531 * IOCtls always have the type 'd' and a number between 0x40 and 0x99 (0x9F?) */
532
533# define VBOX_DRM_IOCTL(a) (0x40 + DRM_VBOX_ ## a)
534
535/** Stop using HGSMI in the kernel driver until it is re-enabled, so that a
536 * user-space driver can use it. It must be re-enabled before the kernel
537 * driver can be used again in a sensible way. */
538/** @note These are only implemented on Linux currently and should fail
539 * silently on other platforms. */
540# define DRM_VBOX_DISABLE_HGSMI 0
541# define DRM_IOCTL_VBOX_DISABLE_HGSMI VBOX_DRM_IOCTL(DISABLE_HGSMI)
542# define VBOXVIDEO_IOCTL_DISABLE_HGSMI _IO('d', DRM_IOCTL_VBOX_DISABLE_HGSMI)
543/** Enable HGSMI in the kernel driver after it was previously disabled. */
544# define DRM_VBOX_ENABLE_HGSMI 1
545# define DRM_IOCTL_VBOX_ENABLE_HGSMI VBOX_DRM_IOCTL(ENABLE_HGSMI)
546# define VBOXVIDEO_IOCTL_ENABLE_HGSMI _IO('d', DRM_IOCTL_VBOX_ENABLE_HGSMI)
547
548#endif /* RT_OS_LINUX || RT_OS_SOLARIS || RT_OS_FREEBSD */
549
550/** @} */
551#endif /* !defined(IN_RC) && !defined(IN_RING0_AGNOSTIC) && !defined(IPRT_NO_CRT) */
552
553#endif
554
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