VirtualBox

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

Last change on this file since 30681 was 28800, checked in by vboxsync, 14 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 17.0 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-2009 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#else /* (PORTME) */
65# define VBOXGUEST_DEVICE_NAME "/dev/vboxguest"
66# if defined(RT_OS_LINUX)
67# define VBOXGUEST_USER_DEVICE_NAME "/dev/vboxuser"
68# endif
69#endif
70
71#ifndef VBOXGUEST_USER_DEVICE_NAME
72# define VBOXGUEST_USER_DEVICE_NAME VBOXGUEST_DEVICE_NAME
73#endif
74
75/** Fictive start address of the hypervisor physical memory for MmMapIoSpace. */
76#define VBOXGUEST_HYPERVISOR_PHYSICAL_START UINT32_C(0xf8000000)
77
78
79#if !defined(IN_RC) && !defined(IN_RING0_AGNOSTIC) && !defined(IPRT_NO_CRT)
80/** @name VBoxGuest IOCTL codes and structures.
81 *
82 * The range 0..15 is for basic driver communication.
83 * The range 16..31 is for HGCM communcation.
84 * The range 32..47 is reserved for future use.
85 * The range 48..63 is for OS specific communcation.
86 * The 7th bit is reserved for future hacks.
87 * The 8th bit is reserved for distinguishing between 32-bit and 64-bit
88 * processes in future 64-bit guest additions.
89 *
90 * @remarks When creating new IOCtl interfaces keep in mind that not all OSes supports
91 * reporting back the output size. (This got messed up a little bit in VBoxDrv.)
92 *
93 * The request size is also a little bit tricky as it's passed as part of the
94 * request code on unix. The size field is 14 bits on Linux, 12 bits on *BSD,
95 * 13 bits Darwin, and 8-bits on Solaris. All the BSDs and Darwin kernels
96 * will make use of the size field, while Linux and Solaris will not. We're of
97 * course using the size to validate and/or map/lock the request, so it has
98 * to be valid.
99 *
100 * For Solaris we will have to do something special though, 255 isn't
101 * sufficent for all we need. A 4KB restriction (BSD) is probably not
102 * too problematic (yet) as a general one.
103 *
104 * More info can be found in SUPDRVIOC.h and related sources.
105 *
106 * @remarks If adding interfaces that only has input or only has output, some new macros
107 * needs to be created so the most efficient IOCtl data buffering method can be
108 * used.
109 * @{
110 */
111#if defined(RT_ARCH_AMD64) || defined(RT_ARCH_SPARC64)
112# define VBOXGUEST_IOCTL_FLAG 128
113#elif defined(RT_ARCH_X86) || defined(RT_ARCH_SPARC)
114# define VBOXGUEST_IOCTL_FLAG 0
115#else
116# error "dunno which arch this is!"
117#endif
118
119/** Ring-3 request wrapper for big requests.
120 *
121 * This is necessary because the ioctl number scheme on many Unixy OSes (esp. Solaris)
122 * only allows a relatively small size to be encoded into the request. So, for big
123 * request this generic form is used instead. */
124typedef struct VBGLBIGREQ
125{
126 /** Magic value (VBGLBIGREQ_MAGIC). */
127 uint32_t u32Magic;
128 /** The size of the data buffer. */
129 uint32_t cbData;
130 /** The user address of the data buffer. */
131 RTR3PTR pvDataR3;
132#if HC_ARCH_BITS == 32
133 uint32_t u32Padding;
134#endif
135/** @todo r=bird: We need a 'rc' field for passing VBox status codes. Reused
136 * some input field as rc on output. */
137} VBGLBIGREQ;
138/** Pointer to a request wrapper for solaris guests. */
139typedef VBGLBIGREQ *PVBGLBIGREQ;
140/** Pointer to a const request wrapper for solaris guests. */
141typedef const VBGLBIGREQ *PCVBGLBIGREQ;
142
143/** The VBGLBIGREQ::u32Magic value (Ryuu Murakami). */
144#define VBGLBIGREQ_MAGIC 0x19520219
145
146
147#if defined(RT_OS_WINDOWS)
148/* @todo Remove IOCTL_CODE later! Integrate it in VBOXGUEST_IOCTL_CODE below. */
149/** @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... */
150# define IOCTL_CODE(DeviceType, Function, Method, Access, DataSize_ignored) \
151 ( ((DeviceType) << 16) | ((Access) << 14) | ((Function) << 2) | (Method))
152# define VBOXGUEST_IOCTL_CODE_(Function, Size) IOCTL_CODE(FILE_DEVICE_UNKNOWN, 2048 + (Function), METHOD_BUFFERED, FILE_WRITE_ACCESS, 0)
153# define VBOXGUEST_IOCTL_STRIP_SIZE_(Code) (Code)
154
155#elif defined(RT_OS_OS2)
156 /* No automatic buffering, size not encoded. */
157# define VBOXGUEST_IOCTL_CATEGORY 0xc2
158# define VBOXGUEST_IOCTL_CODE_(Function, Size) ((unsigned char)(Function))
159# define VBOXGUEST_IOCTL_CATEGORY_FAST 0xc3 /**< Also defined in VBoxGuestA-os2.asm. */
160# define VBOXGUEST_IOCTL_CODE_FAST_(Function) ((unsigned char)(Function))
161# define VBOXGUEST_IOCTL_STRIP_SIZE(Code) (Code)
162
163#elif defined(RT_OS_SOLARIS)
164 /* No automatic buffering, size limited to 255 bytes => use VBGLBIGREQ for everything. */
165# include <sys/ioccom.h>
166# define VBOXGUEST_IOCTL_CODE_(Function, Size) _IOWRN('V', (Function), sizeof(VBGLBIGREQ))
167# define VBOXGUEST_IOCTL_CODE_FAST_(Function) _IO( 'V', (Function))
168# define VBOXGUEST_IOCTL_STRIP_SIZE(Code) (Code)
169
170#elif defined(RT_OS_LINUX)
171 /* No automatic buffering, size limited to 16KB. */
172# include <linux/ioctl.h>
173# define VBOXGUEST_IOCTL_CODE_(Function, Size) _IOC(_IOC_READ|_IOC_WRITE, 'V', (Function), (Size))
174# define VBOXGUEST_IOCTL_CODE_FAST_(Function) _IO( 'V', (Function))
175# define VBOXGUEST_IOCTL_STRIP_SIZE(Code) VBOXGUEST_IOCTL_CODE_(_IOC_NR((Code)), 0)
176
177#elif defined(RT_OS_FREEBSD) /** @todo r=bird: Please do it like SUPDRVIOC to keep it as similar as possible. */
178# include <sys/ioccom.h>
179
180# define VBOXGUEST_IOCTL_CODE_(Function, Size) _IOWR('V', (Function), VBGLBIGREQ)
181# define VBOXGUEST_IOCTL_CODE_FAST_(Function) _IO( 'V', (Function))
182# define VBOXGUEST_IOCTL_STRIP_SIZE(Code) IOCBASECMD(Code)
183
184#else
185/* PORTME */
186#endif
187
188#define VBOXGUEST_IOCTL_CODE(Function, Size) VBOXGUEST_IOCTL_CODE_((Function) | VBOXGUEST_IOCTL_FLAG, Size)
189#define VBOXGUEST_IOCTL_CODE_FAST(Function) VBOXGUEST_IOCTL_CODE_FAST_((Function) | VBOXGUEST_IOCTL_FLAG)
190
191/* Define 32 bit codes to support 32 bit applications requests in the 64 bit guest driver. */
192#ifdef RT_ARCH_AMD64
193# define VBOXGUEST_IOCTL_CODE_32(Function, Size) VBOXGUEST_IOCTL_CODE_(Function, Size)
194# define VBOXGUEST_IOCTL_CODE_FAST_32(Function) VBOXGUEST_IOCTL_CODE_FAST_(Function)
195#endif /* RT_ARCH_AMD64 */
196
197
198
199/** IOCTL to VBoxGuest to query the VMMDev IO port region start.
200 * @remarks Ring-0 only. */
201#define VBOXGUEST_IOCTL_GETVMMDEVPORT VBOXGUEST_IOCTL_CODE(1, sizeof(VBoxGuestPortInfo))
202
203#pragma pack(4)
204typedef struct VBoxGuestPortInfo
205{
206 uint32_t portAddress;
207 struct VMMDevMemory *pVMMDevMemory;
208} VBoxGuestPortInfo;
209
210
211/** IOCTL to VBoxGuest to wait for a VMMDev host notification */
212#define VBOXGUEST_IOCTL_WAITEVENT VBOXGUEST_IOCTL_CODE_(2, sizeof(VBoxGuestWaitEventInfo))
213
214/** @name Result codes for VBoxGuestWaitEventInfo::u32Result
215 * @{
216 */
217/** Successful completion, an event occured. */
218#define VBOXGUEST_WAITEVENT_OK (0)
219/** Successful completion, timed out. */
220#define VBOXGUEST_WAITEVENT_TIMEOUT (1)
221/** Wait was interrupted. */
222#define VBOXGUEST_WAITEVENT_INTERRUPTED (2)
223/** An error occured while processing the request. */
224#define VBOXGUEST_WAITEVENT_ERROR (3)
225/** @} */
226
227/** Input and output buffers layout of the IOCTL_VBOXGUEST_WAITEVENT */
228typedef struct VBoxGuestWaitEventInfo
229{
230 /** timeout in milliseconds */
231 uint32_t u32TimeoutIn;
232 /** events to wait for */
233 uint32_t u32EventMaskIn;
234 /** result code */
235 uint32_t u32Result;
236 /** events occured */
237 uint32_t u32EventFlagsOut;
238} VBoxGuestWaitEventInfo;
239AssertCompileSize(VBoxGuestWaitEventInfo, 16);
240
241
242/** IOCTL to VBoxGuest to interrupt (cancel) any pending WAITEVENTs and return.
243 * Handled inside the guest additions and not seen by the host at all.
244 * @see VBOXGUEST_IOCTL_WAITEVENT */
245#define VBOXGUEST_IOCTL_CANCEL_ALL_WAITEVENTS VBOXGUEST_IOCTL_CODE_(5, 0)
246
247
248
249/** IOCTL to VBoxGuest to perform a VMM request
250 * @remark The data buffer for this IOCtl has an variable size, keep this in mind
251 * on systems where this matters. */
252#define VBOXGUEST_IOCTL_VMMREQUEST(Size) VBOXGUEST_IOCTL_CODE_(3, (Size))
253
254
255/** IOCTL to VBoxGuest to control event filter mask. */
256#define VBOXGUEST_IOCTL_CTL_FILTER_MASK VBOXGUEST_IOCTL_CODE_(4, sizeof(VBoxGuestFilterMaskInfo))
257
258/** Input and output buffer layout of the IOCTL_VBOXGUEST_CTL_FILTER_MASK. */
259typedef struct VBoxGuestFilterMaskInfo
260{
261 uint32_t u32OrMask;
262 uint32_t u32NotMask;
263} VBoxGuestFilterMaskInfo;
264AssertCompileSize(VBoxGuestFilterMaskInfo, 8);
265#pragma pack()
266
267
268/** IOCTL to VBoxGuest to check memory ballooning.
269 * The guest kernel module / device driver will ask the host for the current size of
270 * the balloon and adjust the size. Or it will set fHandledInR0 = false and R3 is
271 * responsible for allocating memory and calling R0 (VBOXGUEST_IOCTL_CHANGE_BALLOON). */
272#define VBOXGUEST_IOCTL_CHECK_BALLOON VBOXGUEST_IOCTL_CODE_(7, sizeof(VBoxGuestCheckBalloonInfo))
273
274/** Output buffer layout of the VBOXGUEST_IOCTL_CHECK_BALLOON. */
275typedef struct VBoxGuestCheckBalloonInfo
276{
277 /** The size of the balloon in chunks of 1MB. */
278 uint32_t cBalloonChunks;
279 /** false = handled in R0, no further action required.
280 * true = allocate balloon memory in R3. */
281 uint32_t fHandleInR3;
282} VBoxGuestCheckBalloonInfo;
283AssertCompileSize(VBoxGuestCheckBalloonInfo, 8);
284
285
286/** IOCTL to VBoxGuest to supply or revoke one chunk for ballooning.
287 * The guest kernel module / device driver will lock down supplied memory or
288 * unlock reclaimed memory and then forward the physical addresses of the
289 * changed balloon chunk to the host. */
290#define VBOXGUEST_IOCTL_CHANGE_BALLOON VBOXGUEST_IOCTL_CODE_(8, sizeof(VBoxGuestChangeBalloonInfo))
291
292/** Input buffer layout of the VBOXGUEST_IOCTL_CHANGE_BALLOON request.
293 * Information about a memory chunk used to inflate or deflate the balloon. */
294typedef struct VBoxGuestChangeBalloonInfo
295{
296 /** Address of the chunk. */
297 uint64_t u64ChunkAddr;
298 /** true = inflate, false = deflate. */
299 uint32_t fInflate;
300 /** Alignment padding. */
301 uint32_t u32Align;
302} VBoxGuestChangeBalloonInfo;
303AssertCompileSize(VBoxGuestChangeBalloonInfo, 16);
304
305
306/** IOCTL to VBoxGuest to perform backdoor logging.
307 * The argument is a string buffer of the specified size. */
308#define VBOXGUEST_IOCTL_LOG(Size) VBOXGUEST_IOCTL_CODE_(6, (Size))
309
310
311#ifdef VBOX_WITH_HGCM
312/** IOCTL to VBoxGuest to connect to a HGCM service. */
313# define VBOXGUEST_IOCTL_HGCM_CONNECT VBOXGUEST_IOCTL_CODE(16, sizeof(VBoxGuestHGCMConnectInfo))
314
315/** IOCTL to VBoxGuest to disconnect from a HGCM service. */
316# define VBOXGUEST_IOCTL_HGCM_DISCONNECT VBOXGUEST_IOCTL_CODE(17, sizeof(VBoxGuestHGCMDisconnectInfo))
317
318/** IOCTL to VBoxGuest to make a call to a HGCM service.
319 * @see VBoxGuestHGCMCallInfo */
320# define VBOXGUEST_IOCTL_HGCM_CALL(Size) VBOXGUEST_IOCTL_CODE(18, (Size))
321
322/** IOCTL to VBoxGuest to make a timed call to a HGCM service. */
323# define VBOXGUEST_IOCTL_HGCM_CALL_TIMED(Size) VBOXGUEST_IOCTL_CODE(20, (Size))
324
325# ifdef RT_ARCH_AMD64
326/** @name IOCTL numbers that 32-bit clients, like the Windows OpenGL guest
327 * driver, will use when taking to a 64-bit driver.
328 * @remarks These are only used by the driver implementation! */
329# define VBOXGUEST_IOCTL_HGCM_CONNECT_32 VBOXGUEST_IOCTL_CODE_32(16, sizeof(VBoxGuestHGCMConnectInfo))
330# define VBOXGUEST_IOCTL_HGCM_DISCONNECT_32 VBOXGUEST_IOCTL_CODE_32(17, sizeof(VBoxGuestHGCMDisconnectInfo))
331# define VBOXGUEST_IOCTL_HGCM_CALL_32(Size) VBOXGUEST_IOCTL_CODE_32(18, (Size))
332# define VBOXGUEST_IOCTL_HGCM_CALL_TIMED_32(Size) VBOXGUEST_IOCTL_CODE_32(20, (Size))
333/** @} */
334# endif /* RT_ARCH_AMD64 */
335
336/** Get the pointer to the first HGCM parameter. */
337# define VBOXGUEST_HGCM_CALL_PARMS(a) ( (HGCMFunctionParameter *)((uint8_t *)(a) + sizeof(VBoxGuestHGCMCallInfo)) )
338/** Get the pointer to the first HGCM parameter in a 32-bit request. */
339# define VBOXGUEST_HGCM_CALL_PARMS32(a) ( (HGCMFunctionParameter32 *)((uint8_t *)(a) + sizeof(VBoxGuestHGCMCallInfo)) )
340
341/** IOCTL to VBoxGuest to make a connect to the clipboard service.
342 * @todo Seems this is no longer is use. Try remove it. */
343# define VBOXGUEST_IOCTL_CLIPBOARD_CONNECT VBOXGUEST_IOCTL_CODE_(19, sizeof(uint32_t))
344
345#endif /* VBOX_WITH_HGCM */
346
347
348#ifdef RT_OS_OS2
349
350/**
351 * The data buffer layout for the IDC entry point (AttachDD).
352 *
353 * @remark This is defined in multiple 16-bit headers / sources.
354 * Some places it's called VBGOS2IDC to short things a bit.
355 */
356typedef struct VBOXGUESTOS2IDCCONNECT
357{
358 /** VMMDEV_VERSION. */
359 uint32_t u32Version;
360 /** Opaque session handle. */
361 uint32_t u32Session;
362
363 /**
364 * The 32-bit service entry point.
365 *
366 * @returns VBox status code.
367 * @param u32Session The above session handle.
368 * @param iFunction The requested function.
369 * @param pvData The input/output data buffer. The caller ensures that this
370 * cannot be swapped out, or that it's acceptable to take a
371 * page in fault in the current context. If the request doesn't
372 * take input or produces output, apssing NULL is okay.
373 * @param cbData The size of the data buffer.
374 * @param pcbDataReturned Where to store the amount of data that's returned.
375 * This can be NULL if pvData is NULL.
376 */
377 DECLCALLBACKMEMBER(int, pfnServiceEP)(uint32_t u32Session, unsigned iFunction, void *pvData, size_t cbData, size_t *pcbDataReturned);
378
379 /** The 16-bit service entry point for C code (cdecl).
380 *
381 * It's the same as the 32-bit entry point, but the types has
382 * changed to 16-bit equivalents.
383 *
384 * @code
385 * int far cdecl
386 * VBoxGuestOs2IDCService16(uint32_t u32Session, uint16_t iFunction,
387 * void far *fpvData, uint16_t cbData, uint16_t far *pcbDataReturned);
388 * @endcode
389 */
390 RTFAR16 fpfnServiceEP;
391
392 /** The 16-bit service entry point for Assembly code (register).
393 *
394 * This is just a wrapper around fpfnServiceEP to simplify calls
395 * from 16-bit assembly code.
396 *
397 * @returns (e)ax: VBox status code; cx: The amount of data returned.
398 *
399 * @param u32Session eax - The above session handle.
400 * @param iFunction dl - The requested function.
401 * @param pvData es:bx - The input/output data buffer.
402 * @param cbData cx - The size of the data buffer.
403 */
404 RTFAR16 fpfnServiceAsmEP;
405} VBOXGUESTOS2IDCCONNECT;
406/** Pointer to VBOXGUESTOS2IDCCONNECT buffer. */
407typedef VBOXGUESTOS2IDCCONNECT *PVBOXGUESTOS2IDCCONNECT;
408
409/** OS/2 specific: IDC client disconnect request.
410 *
411 * This takes no input and it doesn't return anything. Obviously this
412 * is only recognized if it arrives thru the IDC service EP.
413 */
414# define VBOXGUEST_IOCTL_OS2_IDC_DISCONNECT VBOXGUEST_IOCTL_CODE(48, sizeof(uint32_t))
415
416#endif /* RT_OS_OS2 */
417
418/** @} */
419#endif /* !defined(IN_RC) && !defined(IN_RING0_AGNOSTIC) && !defined(IPRT_NO_CRT) */
420
421#endif
422
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