VirtualBox

source: vbox/trunk/include/VBox/VBoxGuestLib.h@ 22650

Last change on this file since 22650 was 21978, checked in by vboxsync, 15 years ago

VbglR3: u32Timeout -> cMillies and other nitpicking.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 17.7 KB
Line 
1/** @file
2 * VBoxGuestLib - VirtualBox Guest Additions Library.
3 */
4
5/*
6 * Copyright (C) 2006-2009 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_VBoxGuestLib_h
31#define ___VBox_VBoxGuestLib_h
32
33#include <VBox/types.h>
34#include <VBox/VMMDev2.h>
35#ifdef IN_RING0
36# include <VBox/VMMDev.h> /* grumble */
37# include <VBox/VBoxGuest2.h>
38#endif
39
40
41/** @defgroup grp_guest_lib VirtualBox Guest Additions Library
42 * @{
43 */
44
45/** @page pg_guest_lib VirtualBox Guest Library
46 *
47 * This is a library for abstracting the additions driver interface. There are
48 * multiple versions of the library depending on the context. The main
49 * distinction is between kernel and user mode where the interfaces are very
50 * different.
51 *
52 *
53 * @section sec_guest_lib_ring0 Ring-0
54 *
55 * In ring-0 there are two version:
56 * - VBOX_LIB_VBGL_R0_BASE / VBoxGuestR0LibBase for the VBoxGuest main driver,
57 * who is responsible for managing the VMMDev virtual hardware.
58 * - VBOX_LIB_VBGL_R0 / VBoxGuestR0Lib for other (client) guest drivers.
59 *
60 *
61 * The library source code and the header have a define VBGL_VBOXGUEST, which is
62 * defined for VBoxGuest and undefined for other drivers. Drivers must choose
63 * right library in their makefiles and set VBGL_VBOXGUEST accordingly.
64 *
65 * The libraries consists of:
66 * - common code to be used by both VBoxGuest and other drivers;
67 * - VBoxGuest specific code;
68 * - code for other drivers which communicate with VBoxGuest via an IOCTL.
69 *
70 *
71 * @section sec_guest_lib_ring3 Ring-3
72 *
73 * There are more variants of the library here:
74 * - VBOX_LIB_VBGL_R3 / VBoxGuestR3Lib for programs.
75 * - VBOX_LIB_VBGL_R3_XFREE86 / VBoxGuestR3LibXFree86 for old style XFree
76 * drivers which uses special loader and or symbol resolving strategy.
77 * - VBOX_LIB_VBGL_R3_SHARED / VBoxGuestR3LibShared for shared objects / DLLs /
78 * Dylibs.
79 *
80 */
81
82RT_C_DECLS_BEGIN
83
84
85/** @defgroup grp_guest_lib_r0 Ring-0 interface.
86 * @{
87 */
88#if defined(IN_RING0) && !defined(IN_RING0_AGNOSTIC)
89/** @def DECLR0VBGL
90 * Declare a VBGL ring-0 API with the right calling convention and visibilitiy.
91 * @param type Return type. */
92# define DECLR0VBGL(type) type VBOXCALL
93# define DECLVBGL(type) DECLR0VBGL(type)
94
95typedef uint32_t VBGLIOPORT; /**< @todo r=bird: We have RTIOPORT (uint16_t) for this. */
96
97
98# ifdef VBGL_VBOXGUEST
99
100/**
101 * The library initialization function to be used by the main
102 * VBoxGuest system driver.
103 *
104 * @return VBox status code.
105 */
106DECLVBGL(int) VbglInit (VBGLIOPORT portVMMDev, struct VMMDevMemory *pVMMDevMemory);
107
108# else
109
110/**
111 * The library initialization function to be used by all drivers
112 * other than the main VBoxGuest system driver.
113 *
114 * @return VBox status code.
115 */
116DECLVBGL(int) VbglInit (void);
117
118# endif
119
120/**
121 * The library termination function.
122 */
123DECLVBGL(void) VbglTerminate (void);
124
125
126/** @name Generic request functions.
127 * @{
128 */
129
130/**
131 * Allocate memory for generic request and initialize the request header.
132 *
133 * @param ppReq pointer to resulting memory address.
134 * @param cbSize size of memory block required for the request.
135 * @param reqType the generic request type.
136 *
137 * @return VBox status code.
138 */
139DECLVBGL(int) VbglGRAlloc (VMMDevRequestHeader **ppReq, uint32_t cbSize, VMMDevRequestType reqType);
140
141/**
142 * Perform the generic request.
143 *
144 * @param pReq pointer the request structure.
145 *
146 * @return VBox status code.
147 */
148DECLVBGL(int) VbglGRPerform (VMMDevRequestHeader *pReq);
149
150/**
151 * Free the generic request memory.
152 *
153 * @param pReq pointer the request structure.
154 *
155 * @return VBox status code.
156 */
157DECLVBGL(void) VbglGRFree (VMMDevRequestHeader *pReq);
158/** @} */
159
160# ifdef VBOX_WITH_HGCM
161
162# ifdef VBGL_VBOXGUEST
163
164/**
165 * Callback function called from HGCM helpers when a wait for request
166 * completion IRQ is required.
167 *
168 * @returns VINF_SUCCESS, VERR_INTERRUPT or VERR_TIMEOUT.
169 * @param pvData VBoxGuest pointer to be passed to callback.
170 * @param u32Data VBoxGuest 32 bit value to be passed to callback.
171 */
172typedef DECLVBGL(int) FNVBGLHGCMCALLBACK(VMMDevHGCMRequestHeader *pHeader, void *pvData, uint32_t u32Data);
173/** Pointer to a FNVBGLHGCMCALLBACK. */
174typedef FNVBGLHGCMCALLBACK *PFNVBGLHGCMCALLBACK;
175
176/**
177 * Perform a connect request. That is locate required service and
178 * obtain a client identifier for future access.
179 *
180 * @note This function can NOT handle cancelled requests!
181 *
182 * @param pConnectInfo The request data.
183 * @param pfnAsyncCallback Required pointer to function that is calledwhen
184 * host returns VINF_HGCM_ASYNC_EXECUTE. VBoxGuest
185 * implements waiting for an IRQ in this function.
186 * @param pvAsyncData An arbitrary VBoxGuest pointer to be passed to callback.
187 * @param u32AsyncData An arbitrary VBoxGuest 32 bit value to be passed to callback.
188 *
189 * @return VBox status code.
190 */
191
192DECLR0VBGL(int) VbglR0HGCMInternalConnect (VBoxGuestHGCMConnectInfo *pConnectInfo,
193 PFNVBGLHGCMCALLBACK pfnAsyncCallback, void *pvAsyncData, uint32_t u32AsyncData);
194
195
196/**
197 * Perform a disconnect request. That is tell the host that
198 * the client will not call the service anymore.
199 *
200 * @note This function can NOT handle cancelled requests!
201 *
202 * @param pDisconnectInfo The request data.
203 * @param pfnAsyncCallback Required pointer to function that is called when
204 * host returns VINF_HGCM_ASYNC_EXECUTE. VBoxGuest
205 * implements waiting for an IRQ in this function.
206 * @param pvAsyncData An arbitrary VBoxGuest pointer to be passed to callback.
207 * @param u32AsyncData An arbitrary VBoxGuest 32 bit value to be passed to
208 * callback.
209 *
210 * @return VBox status code.
211 */
212
213DECLR0VBGL(int) VbglR0HGCMInternalDisconnect (VBoxGuestHGCMDisconnectInfo *pDisconnectInfo,
214 PFNVBGLHGCMCALLBACK pfnAsyncCallback, void *pvAsyncData, uint32_t u32AsyncData);
215
216/** Call a HGCM service.
217 *
218 * @note This function can deal with cancelled requests.
219 *
220 * @param pCallInfo The request data.
221 * @param fFlags Flags, see VBGLR0_HGCMCALL_F_XXX.
222 * @param pfnAsyncCallback Required pointer to function that is called when
223 * host returns VINF_HGCM_ASYNC_EXECUTE. VBoxGuest
224 * implements waiting for an IRQ in this function.
225 * @param pvAsyncData An arbitrary VBoxGuest pointer to be passed to callback.
226 * @param u32AsyncData An arbitrary VBoxGuest 32 bit value to be passed to callback.
227 *
228 * @return VBox status code.
229 */
230DECLR0VBGL(int) VbglR0HGCMInternalCall (VBoxGuestHGCMCallInfo *pCallInfo, uint32_t cbCallInfo, uint32_t fFlags,
231 PFNVBGLHGCMCALLBACK pfnAsyncCallback, void *pvAsyncData, uint32_t u32AsyncData);
232
233/** Call a HGCM service. (32 bits packet structure in a 64 bits guest)
234 *
235 * @note This function can deal with cancelled requests.
236 *
237 * @param pCallInfo The request data.
238 * @param fFlags Flags, see VBGLR0_HGCMCALL_F_XXX.
239 * @param pfnAsyncCallback Required pointer to function that is called when
240 * host returns VINF_HGCM_ASYNC_EXECUTE. VBoxGuest
241 * implements waiting for an IRQ in this function.
242 * @param pvAsyncData An arbitrary VBoxGuest pointer to be passed to callback.
243 * @param u32AsyncData An arbitrary VBoxGuest 32 bit value to be passed to callback.
244 *
245 * @return VBox status code.
246 */
247DECLR0VBGL(int) VbglR0HGCMInternalCall32 (VBoxGuestHGCMCallInfo *pCallInfo, uint32_t cbCallInfo, uint32_t fFlags,
248 PFNVBGLHGCMCALLBACK pfnAsyncCallback, void *pvAsyncData, uint32_t u32AsyncData);
249
250/** @name VbglR0HGCMInternalCall flags
251 * @{ */
252/** User mode request.
253 * Indicates that only user mode addresses are permitted as parameters. */
254#define VBGLR0_HGCMCALL_F_USER UINT32_C(0)
255/** Kernel mode request.
256 * Indicates that kernel mode addresses are permitted as parameters. Whether or
257 * not user mode addresses are permitted is, unfortunately, OS specific. The
258 * following OSes allows user mode addresses: Windows, TODO.
259 */
260#define VBGLR0_HGCMCALL_F_KERNEL UINT32_C(1)
261/** Mode mask. */
262#define VBGLR0_HGCMCALL_F_MODE_MASK UINT32_C(1)
263/** @} */
264
265# else /* !VBGL_VBOXGUEST */
266
267struct VBGLHGCMHANDLEDATA;
268typedef struct VBGLHGCMHANDLEDATA *VBGLHGCMHANDLE;
269
270/** @name HGCM functions
271 * @{
272 */
273
274/**
275 * Connect to a service.
276 *
277 * @param pHandle Pointer to variable that will hold a handle to be used
278 * further in VbglHGCMCall and VbglHGCMClose.
279 * @param pData Connection information structure.
280 *
281 * @return VBox status code.
282 */
283DECLVBGL(int) VbglHGCMConnect (VBGLHGCMHANDLE *pHandle, VBoxGuestHGCMConnectInfo *pData);
284
285/**
286 * Connect to a service.
287 *
288 * @param handle Handle of the connection.
289 * @param pData Disconnect request information structure.
290 *
291 * @return VBox status code.
292 */
293DECLVBGL(int) VbglHGCMDisconnect (VBGLHGCMHANDLE handle, VBoxGuestHGCMDisconnectInfo *pData);
294
295/**
296 * Call to a service.
297 *
298 * @param handle Handle of the connection.
299 * @param pData Call request information structure, including function parameters.
300 * @param cbData Length in bytes of data.
301 *
302 * @return VBox status code.
303 */
304DECLVBGL(int) VbglHGCMCall (VBGLHGCMHANDLE handle, VBoxGuestHGCMCallInfo *pData, uint32_t cbData);
305
306/**
307 * Call to a service with timeout.
308 *
309 * @param handle Handle of the connection.
310 * @param pData Call request information structure, including function parameters.
311 * @param cbData Length in bytes of data.
312 * @param cMillies Timeout in milliseconds. Use RT_INDEFINITE_WAIT to wait forever.
313 *
314 * @return VBox status code.
315 */
316DECLVBGL(int) VbglHGCMCallTimed (VBGLHGCMHANDLE handle,
317 VBoxGuestHGCMCallInfoTimed *pData, uint32_t cbData);
318/** @} */
319
320# endif /* !VBGL_VBOXGUEST */
321
322# endif /* VBOX_WITH_HGCM */
323
324
325/**
326 * Initialize the heap.
327 *
328 * @return VBox error code.
329 */
330DECLVBGL(int) VbglPhysHeapInit (void);
331
332/**
333 * Shutdown the heap.
334 */
335DECLVBGL(void) VbglPhysHeapTerminate (void);
336
337
338/**
339 * Allocate a memory block.
340 *
341 * @param cbSize Size of block to be allocated.
342 * @return Virtual address of allocated memory block.
343 */
344DECLVBGL(void *) VbglPhysHeapAlloc (uint32_t cbSize);
345
346/**
347 * Get physical address of memory block pointed by
348 * the virtual address.
349 *
350 * @note WARNING!
351 * The function does not acquire the Heap mutex!
352 * When calling the function make sure that
353 * the pointer is a valid one and is not being
354 * deallocated.
355 * This function can NOT be used for verifying
356 * if the given pointer is a valid one allocated
357 * from the heap.
358 *
359 *
360 * @param p Virtual address of memory block.
361 * @return Physical memory block.
362 */
363DECLVBGL(RTCCPHYS) VbglPhysHeapGetPhysAddr (void *p);
364
365/**
366 * Free a memory block.
367 *
368 * @param p Virtual address of memory block.
369 */
370DECLVBGL(void) VbglPhysHeapFree (void *p);
371
372DECLVBGL(int) VbglQueryVMMDevMemory (VMMDevMemory **ppVMMDevMemory);
373DECLR0VBGL(bool) VbglR0CanUsePhysPageList(void);
374
375#endif /* IN_RING0 && !IN_RING0_AGNOSTIC */
376/** @} */
377
378
379/** @defgroup grp_guest_lib_r3 Ring-3 interface.
380 * @{
381 */
382#ifdef IN_RING3
383
384/** @def VBGLR3DECL
385 * Ring 3 VBGL declaration.
386 * @param type The return type of the function declaration.
387 */
388# define VBGLR3DECL(type) type VBOXCALL
389
390/** @name General-purpose functions
391 * @{ */
392VBGLR3DECL(int) VbglR3Init(void);
393VBGLR3DECL(int) VbglR3InitUser(void);
394VBGLR3DECL(void) VbglR3Term(void);
395# ifdef ___iprt_time_h
396VBGLR3DECL(int) VbglR3GetHostTime(PRTTIMESPEC pTime);
397# endif
398VBGLR3DECL(int) VbglR3InterruptEventWaits(void);
399VBGLR3DECL(int) VbglR3WriteLog(const char *pch, size_t cb);
400VBGLR3DECL(int) VbglR3CtlFilterMask(uint32_t fOr, uint32_t fNot);
401VBGLR3DECL(int) VbglR3Daemonize(bool fNoChDir, bool fNoClose);
402VBGLR3DECL(int) VbglR3PidFile(const char *pszPath, PRTFILE phFile);
403VBGLR3DECL(void) VbglR3ClosePidFile(const char *pszPath, RTFILE hFile);
404VBGLR3DECL(int) VbglR3SetGuestCaps(uint32_t fOr, uint32_t fNot);
405VBGLR3DECL(int) VbglR3WaitEvent(uint32_t fMask, uint32_t cMillies, uint32_t *pfEvents);
406/** @} */
407
408/** @name Shared clipboard
409 * @{ */
410VBGLR3DECL(int) VbglR3ClipboardConnect(uint32_t *pu32ClientId);
411VBGLR3DECL(int) VbglR3ClipboardDisconnect(uint32_t u32ClientId);
412VBGLR3DECL(int) VbglR3ClipboardGetHostMsg(uint32_t u32ClientId, uint32_t *pMsg, uint32_t *pfFormats);
413VBGLR3DECL(int) VbglR3ClipboardReadData(uint32_t u32ClientId, uint32_t fFormat, void *pv, uint32_t cb, uint32_t *pcb);
414VBGLR3DECL(int) VbglR3ClipboardReportFormats(uint32_t u32ClientId, uint32_t fFormats);
415VBGLR3DECL(int) VbglR3ClipboardWriteData(uint32_t u32ClientId, uint32_t fFormat, void *pv, uint32_t cb);
416/** @} */
417
418/** @name Seamless mode
419 * @{ */
420VBGLR3DECL(int) VbglR3SeamlessSetCap(bool fState);
421VBGLR3DECL(int) VbglR3SeamlessWaitEvent(VMMDevSeamlessMode *pMode);
422VBGLR3DECL(int) VbglR3SeamlessSendRects(uint32_t cRects, PRTRECT pRects);
423/** @} */
424
425/** @name Mouse
426 * @{ */
427VBGLR3DECL(int) VbglR3GetMouseStatus(uint32_t *pfFeatures, uint32_t *px, uint32_t *py);
428VBGLR3DECL(int) VbglR3SetMouseStatus(uint32_t fFeatures);
429/** @} */
430
431/** @name Video
432 * @{ */
433VBGLR3DECL(int) VbglR3VideoAccelEnable(bool fEnable);
434VBGLR3DECL(int) VbglR3VideoAccelFlush(void);
435VBGLR3DECL(int) VbglR3SetPointerShape(uint32_t fFlags, uint32_t xHot, uint32_t yHot, uint32_t cx, uint32_t cy, const void *pvImg, size_t cbImg);
436VBGLR3DECL(int) VbglR3SetPointerShapeReq(struct VMMDevReqMousePointer *pReq);
437/** @} */
438
439/** @name Display
440 * @{ */
441VBGLR3DECL(int) VbglR3GetDisplayChangeRequest(uint32_t *pcx, uint32_t *pcy, uint32_t *pcBits, uint32_t *piDisplay, bool fAck);
442VBGLR3DECL(bool) VbglR3HostLikesVideoMode(uint32_t cx, uint32_t cy, uint32_t cBits);
443VBGLR3DECL(int) VbglR3SaveVideoMode(const char *pszName, uint32_t cx, uint32_t cy, uint32_t cBits);
444VBGLR3DECL(int) VbglR3RetrieveVideoMode(const char *pszName, uint32_t *pcx, uint32_t *pcy, uint32_t *pcBits);
445/** @} */
446
447# ifdef VBOX_WITH_GUEST_PROPS
448/** @name Guest properties
449 * @{ */
450/** @todo Docs. */
451typedef struct VBGLR3GUESTPROPENUM VBGLR3GUESTPROPENUM;
452/** @todo Docs. */
453typedef VBGLR3GUESTPROPENUM *PVBGLR3GUESTPROPENUM;
454VBGLR3DECL(int) VbglR3GuestPropConnect(uint32_t *pu32ClientId);
455VBGLR3DECL(int) VbglR3GuestPropDisconnect(uint32_t u32ClientId);
456VBGLR3DECL(int) VbglR3GuestPropWrite(uint32_t u32ClientId, const char *pszName, const char *pszValue, const char *pszFlags);
457VBGLR3DECL(int) VbglR3GuestPropWriteValue(uint32_t u32ClientId, const char *pszName, const char *pszValue);
458VBGLR3DECL(int) VbglR3GuestPropWriteValueV(uint32_t u32ClientId, const char *pszName, const char *pszValueFormat, va_list va);
459VBGLR3DECL(int) VbglR3GuestPropWriteValueF(uint32_t u32ClientId, const char *pszName, const char *pszValueFormat, ...);
460VBGLR3DECL(int) VbglR3GuestPropRead(uint32_t u32ClientId, const char *pszName, void *pvBuf, uint32_t cbBuf, char **ppszValue, uint64_t *pu64Timestamp, char **ppszFlags, uint32_t *pcbBufActual);
461VBGLR3DECL(int) VbglR3GuestPropReadValue(uint32_t ClientId, const char *pszName, char *pszValue, uint32_t cchValue, uint32_t *pcchValueActual);
462VBGLR3DECL(int) VbglR3GuestPropReadValueAlloc(uint32_t u32ClientId, const char *pszName, char **ppszValue);
463VBGLR3DECL(void) VbglR3GuestPropReadValueFree(char *pszValue);
464VBGLR3DECL(int) VbglR3GuestPropEnumRaw(uint32_t u32ClientId, const char *paszPatterns, char *pcBuf, uint32_t cbBuf, uint32_t *pcbBufActual);
465VBGLR3DECL(int) VbglR3GuestPropEnum(uint32_t u32ClientId, char const * const *ppaszPatterns, uint32_t cPatterns, PVBGLR3GUESTPROPENUM *ppHandle,
466 char const **ppszName, char const **ppszValue, uint64_t *pu64Timestamp, char const **ppszFlags);
467VBGLR3DECL(int) VbglR3GuestPropEnumNext(PVBGLR3GUESTPROPENUM pHandle, char const **ppszName, char const **ppszValue, uint64_t *pu64Timestamp,
468 char const **ppszFlags);
469VBGLR3DECL(void) VbglR3GuestPropEnumFree(PVBGLR3GUESTPROPENUM pHandle);
470VBGLR3DECL(int) VbglR3GuestPropDelSet(uint32_t u32ClientId, char const * const *papszPatterns, uint32_t cPatterns);
471VBGLR3DECL(int) VbglR3GuestPropWait(uint32_t u32ClientId, const char *pszPatterns, void *pvBuf, uint32_t cbBuf, uint64_t u64Timestamp, uint32_t cMillies, char ** ppszName, char **ppszValue, uint64_t *pu64Timestamp, char **ppszFlags, uint32_t *pcbBufActual);
472/** @} */
473# endif /* VBOX_WITH_GUEST_PROPS defined */
474
475#endif /* IN_RING3 */
476/** @} */
477
478RT_C_DECLS_END
479
480/** @} */
481
482#endif
483
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