VirtualBox

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

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

Additions/x11/VBoxClient: make remembering screen size between sessions work for multiple monitors, first take, missing header change.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 34.1 KB
Line 
1/** @file
2 * VBoxGuestLib - VirtualBox Guest Additions Library.
3 */
4
5/*
6 * Copyright (C) 2006-2014 Oracle Corporation
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
26#ifndef ___VBox_VBoxGuestLib_h
27#define ___VBox_VBoxGuestLib_h
28
29#include <VBox/types.h>
30#include <VBox/VMMDev2.h>
31#include <VBox/VMMDev.h> /* grumble */
32#ifdef IN_RING0
33# include <VBox/VBoxGuest.h>
34# include <VBox/VBoxGuest2.h>
35#endif
36
37
38/** @defgroup grp_guest_lib VirtualBox Guest Additions Library
39 * @{
40 */
41
42/** @page pg_guest_lib VirtualBox Guest Library
43 *
44 * This is a library for abstracting the additions driver interface. There are
45 * multiple versions of the library depending on the context. The main
46 * distinction is between kernel and user mode where the interfaces are very
47 * different.
48 *
49 *
50 * @section sec_guest_lib_ring0 Ring-0
51 *
52 * In ring-0 there are two version:
53 * - VBOX_LIB_VBGL_R0_BASE / VBoxGuestR0LibBase for the VBoxGuest main driver,
54 * who is responsible for managing the VMMDev virtual hardware.
55 * - VBOX_LIB_VBGL_R0 / VBoxGuestR0Lib for other (client) guest drivers.
56 *
57 *
58 * The library source code and the header have a define VBGL_VBOXGUEST, which is
59 * defined for VBoxGuest and undefined for other drivers. Drivers must choose
60 * right library in their makefiles and set VBGL_VBOXGUEST accordingly.
61 *
62 * The libraries consists of:
63 * - common code to be used by both VBoxGuest and other drivers;
64 * - VBoxGuest specific code;
65 * - code for other drivers which communicate with VBoxGuest via an IOCTL.
66 *
67 *
68 * @section sec_guest_lib_ring3 Ring-3
69 *
70 * There are more variants of the library here:
71 * - VBOX_LIB_VBGL_R3 / VBoxGuestR3Lib for programs.
72 * - VBOX_LIB_VBGL_R3_XFREE86 / VBoxGuestR3LibXFree86 for old style XFree
73 * drivers which uses special loader and or symbol resolving strategy.
74 * - VBOX_LIB_VBGL_R3_SHARED / VBoxGuestR3LibShared for shared objects / DLLs /
75 * Dylibs.
76 *
77 */
78
79RT_C_DECLS_BEGIN
80
81/** @defgroup grp_guest_lib_r0 Ring-0 interface.
82 * @{
83 */
84#if defined(IN_RING0) && !defined(IN_RING0_AGNOSTIC)
85/** @def DECLR0VBGL
86 * Declare a VBGL ring-0 API with the right calling convention and visibilitiy.
87 * @param type Return type. */
88# ifdef RT_OS_DARWIN /** @todo probably apply to all, but don't want a forest fire on our hands right now. */
89# define DECLR0VBGL(type) DECLHIDDEN(type) VBOXCALL
90# else
91# define DECLR0VBGL(type) type VBOXCALL
92# endif
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 * Verify the generic request header.
161 *
162 * @param pReq pointer the request header structure.
163 * @param cbReq size of the request memory block. It should be equal to the request size
164 * for fixed size requests. It can be greater than the request size for
165 * variable size requests.
166 *
167 * @return VBox status code.
168 */
169DECLVBGL(int) VbglGRVerify (const VMMDevRequestHeader *pReq, size_t cbReq);
170/** @} */
171
172# ifdef VBOX_WITH_HGCM
173
174# ifdef VBGL_VBOXGUEST
175
176/**
177 * Callback function called from HGCM helpers when a wait for request
178 * completion IRQ is required.
179 *
180 * @returns VINF_SUCCESS, VERR_INTERRUPT or VERR_TIMEOUT.
181 * @param pvData VBoxGuest pointer to be passed to callback.
182 * @param u32Data VBoxGuest 32 bit value to be passed to callback.
183 */
184typedef DECLCALLBACK(int) FNVBGLHGCMCALLBACK(VMMDevHGCMRequestHeader *pHeader, void *pvData, uint32_t u32Data);
185/** Pointer to a FNVBGLHGCMCALLBACK. */
186typedef FNVBGLHGCMCALLBACK *PFNVBGLHGCMCALLBACK;
187
188/**
189 * Perform a connect request. That is locate required service and
190 * obtain a client identifier for future access.
191 *
192 * @note This function can NOT handle cancelled requests!
193 *
194 * @param pConnectInfo The request data.
195 * @param pfnAsyncCallback Required pointer to function that is calledwhen
196 * host returns VINF_HGCM_ASYNC_EXECUTE. VBoxGuest
197 * implements waiting for an IRQ in this function.
198 * @param pvAsyncData An arbitrary VBoxGuest pointer to be passed to callback.
199 * @param u32AsyncData An arbitrary VBoxGuest 32 bit value to be passed to callback.
200 *
201 * @return VBox status code.
202 */
203
204DECLR0VBGL(int) VbglR0HGCMInternalConnect (VBoxGuestHGCMConnectInfo *pConnectInfo,
205 PFNVBGLHGCMCALLBACK pfnAsyncCallback, void *pvAsyncData, uint32_t u32AsyncData);
206
207
208/**
209 * Perform a disconnect request. That is tell the host that
210 * the client will not call the service anymore.
211 *
212 * @note This function can NOT handle cancelled requests!
213 *
214 * @param pDisconnectInfo The request data.
215 * @param pfnAsyncCallback Required pointer to function that is called when
216 * host returns VINF_HGCM_ASYNC_EXECUTE. VBoxGuest
217 * implements waiting for an IRQ in this function.
218 * @param pvAsyncData An arbitrary VBoxGuest pointer to be passed to callback.
219 * @param u32AsyncData An arbitrary VBoxGuest 32 bit value to be passed to
220 * callback.
221 *
222 * @return VBox status code.
223 */
224
225DECLR0VBGL(int) VbglR0HGCMInternalDisconnect (VBoxGuestHGCMDisconnectInfo *pDisconnectInfo,
226 PFNVBGLHGCMCALLBACK pfnAsyncCallback, void *pvAsyncData, uint32_t u32AsyncData);
227
228/** Call a HGCM service.
229 *
230 * @note This function can deal with cancelled requests.
231 *
232 * @param pCallInfo The request data.
233 * @param fFlags Flags, see VBGLR0_HGCMCALL_F_XXX.
234 * @param pfnAsyncCallback Required pointer to function that is called when
235 * host returns VINF_HGCM_ASYNC_EXECUTE. VBoxGuest
236 * implements waiting for an IRQ in this function.
237 * @param pvAsyncData An arbitrary VBoxGuest pointer to be passed to callback.
238 * @param u32AsyncData An arbitrary VBoxGuest 32 bit value to be passed to callback.
239 *
240 * @return VBox status code.
241 */
242DECLR0VBGL(int) VbglR0HGCMInternalCall (VBoxGuestHGCMCallInfo *pCallInfo, uint32_t cbCallInfo, uint32_t fFlags,
243 PFNVBGLHGCMCALLBACK pfnAsyncCallback, void *pvAsyncData, uint32_t u32AsyncData);
244
245/** Call a HGCM service. (32 bits packet structure in a 64 bits guest)
246 *
247 * @note This function can deal with cancelled requests.
248 *
249 * @param pCallInfo The request data.
250 * @param fFlags Flags, see VBGLR0_HGCMCALL_F_XXX.
251 * @param pfnAsyncCallback Required pointer to function that is called when
252 * host returns VINF_HGCM_ASYNC_EXECUTE. VBoxGuest
253 * implements waiting for an IRQ in this function.
254 * @param pvAsyncData An arbitrary VBoxGuest pointer to be passed to callback.
255 * @param u32AsyncData An arbitrary VBoxGuest 32 bit value to be passed to callback.
256 *
257 * @return VBox status code.
258 */
259DECLR0VBGL(int) VbglR0HGCMInternalCall32 (VBoxGuestHGCMCallInfo *pCallInfo, uint32_t cbCallInfo, uint32_t fFlags,
260 PFNVBGLHGCMCALLBACK pfnAsyncCallback, void *pvAsyncData, uint32_t u32AsyncData);
261
262/** @name VbglR0HGCMInternalCall flags
263 * @{ */
264/** User mode request.
265 * Indicates that only user mode addresses are permitted as parameters. */
266#define VBGLR0_HGCMCALL_F_USER UINT32_C(0)
267/** Kernel mode request.
268 * Indicates that kernel mode addresses are permitted as parameters. Whether or
269 * not user mode addresses are permitted is, unfortunately, OS specific. The
270 * following OSes allows user mode addresses: Windows, TODO.
271 */
272#define VBGLR0_HGCMCALL_F_KERNEL UINT32_C(1)
273/** Mode mask. */
274#define VBGLR0_HGCMCALL_F_MODE_MASK UINT32_C(1)
275/** @} */
276
277# else /* !VBGL_VBOXGUEST */
278
279struct VBGLHGCMHANDLEDATA;
280typedef struct VBGLHGCMHANDLEDATA *VBGLHGCMHANDLE;
281
282/** @name HGCM functions
283 * @{
284 */
285
286/**
287 * Connect to a service.
288 *
289 * @param pHandle Pointer to variable that will hold a handle to be used
290 * further in VbglHGCMCall and VbglHGCMClose.
291 * @param pData Connection information structure.
292 *
293 * @return VBox status code.
294 */
295DECLVBGL(int) VbglHGCMConnect (VBGLHGCMHANDLE *pHandle, VBoxGuestHGCMConnectInfo *pData);
296
297/**
298 * Connect to a service.
299 *
300 * @param handle Handle of the connection.
301 * @param pData Disconnect request information structure.
302 *
303 * @return VBox status code.
304 */
305DECLVBGL(int) VbglHGCMDisconnect (VBGLHGCMHANDLE handle, VBoxGuestHGCMDisconnectInfo *pData);
306
307/**
308 * Call to a service.
309 *
310 * @param handle Handle of the connection.
311 * @param pData Call request information structure, including function parameters.
312 * @param cbData Length in bytes of data.
313 *
314 * @return VBox status code.
315 */
316DECLVBGL(int) VbglHGCMCall (VBGLHGCMHANDLE handle, VBoxGuestHGCMCallInfo *pData, uint32_t cbData);
317
318/**
319 * Call to a service with user-mode data received by the calling driver from the User-Mode process.
320 * The call must be done in the context of a calling process.
321 *
322 * @param handle Handle of the connection.
323 * @param pData Call request information structure, including function parameters.
324 * @param cbData Length in bytes of data.
325 *
326 * @return VBox status code.
327 */
328DECLVBGL(int) VbglHGCMCallUserData (VBGLHGCMHANDLE handle, VBoxGuestHGCMCallInfo *pData, uint32_t cbData);
329
330/**
331 * Call to a service with timeout.
332 *
333 * @param handle Handle of the connection.
334 * @param pData Call request information structure, including function parameters.
335 * @param cbData Length in bytes of data.
336 * @param cMillies Timeout in milliseconds. Use RT_INDEFINITE_WAIT to wait forever.
337 *
338 * @return VBox status code.
339 */
340DECLVBGL(int) VbglHGCMCallTimed (VBGLHGCMHANDLE handle,
341 VBoxGuestHGCMCallInfoTimed *pData, uint32_t cbData);
342/** @} */
343
344# endif /* !VBGL_VBOXGUEST */
345
346# endif /* VBOX_WITH_HGCM */
347
348
349/**
350 * Initialize the heap.
351 *
352 * @return VBox error code.
353 */
354DECLVBGL(int) VbglPhysHeapInit (void);
355
356/**
357 * Shutdown the heap.
358 */
359DECLVBGL(void) VbglPhysHeapTerminate (void);
360
361
362/**
363 * Allocate a memory block.
364 *
365 * @param cbSize Size of block to be allocated.
366 * @return Virtual address of allocated memory block.
367 */
368DECLVBGL(void *) VbglPhysHeapAlloc (uint32_t cbSize);
369
370/**
371 * Get physical address of memory block pointed by
372 * the virtual address.
373 *
374 * @note WARNING!
375 * The function does not acquire the Heap mutex!
376 * When calling the function make sure that
377 * the pointer is a valid one and is not being
378 * deallocated.
379 * This function can NOT be used for verifying
380 * if the given pointer is a valid one allocated
381 * from the heap.
382 *
383 *
384 * @param p Virtual address of memory block.
385 * @return Physical address of the memory block.
386 */
387DECLVBGL(uint32_t) VbglPhysHeapGetPhysAddr (void *p);
388
389/**
390 * Free a memory block.
391 *
392 * @param p Virtual address of memory block.
393 */
394DECLVBGL(void) VbglPhysHeapFree (void *p);
395
396DECLVBGL(int) VbglQueryVMMDevMemory (VMMDevMemory **ppVMMDevMemory);
397DECLR0VBGL(bool) VbglR0CanUsePhysPageList(void);
398
399# ifndef VBOX_GUEST
400/** @name Mouse
401 * @{ */
402DECLVBGL(int) VbglSetMouseNotifyCallback(PFNVBOXGUESTMOUSENOTIFY pfnNotify, void *pvUser);
403DECLVBGL(int) VbglGetMouseStatus(uint32_t *pfFeatures, uint32_t *px, uint32_t *py);
404DECLVBGL(int) VbglSetMouseStatus(uint32_t fFeatures);
405/** @} */
406# endif /* VBOX_GUEST */
407
408#endif /* IN_RING0 && !IN_RING0_AGNOSTIC */
409/** @} */
410
411
412/** @defgroup grp_guest_lib_r3 Ring-3 interface.
413 * @{
414 */
415#ifdef IN_RING3
416
417/** @def VBGLR3DECL
418 * Ring 3 VBGL declaration.
419 * @param type The return type of the function declaration.
420 */
421# define VBGLR3DECL(type) type VBOXCALL
422
423/** @name General-purpose functions
424 * @{ */
425VBGLR3DECL(int) VbglR3Init(void);
426VBGLR3DECL(int) VbglR3InitUser(void);
427VBGLR3DECL(void) VbglR3Term(void);
428# ifdef ___iprt_time_h
429VBGLR3DECL(int) VbglR3GetHostTime(PRTTIMESPEC pTime);
430# endif
431VBGLR3DECL(int) VbglR3InterruptEventWaits(void);
432VBGLR3DECL(int) VbglR3WriteLog(const char *pch, size_t cch);
433VBGLR3DECL(int) VbglR3CtlFilterMask(uint32_t fOr, uint32_t fNot);
434VBGLR3DECL(int) VbglR3Daemonize(bool fNoChDir, bool fNoClose);
435VBGLR3DECL(int) VbglR3PidFile(const char *pszPath, PRTFILE phFile);
436VBGLR3DECL(void) VbglR3ClosePidFile(const char *pszPath, RTFILE hFile);
437VBGLR3DECL(int) VbglR3SetGuestCaps(uint32_t fOr, uint32_t fNot);
438VBGLR3DECL(int) VbglR3WaitEvent(uint32_t fMask, uint32_t cMillies, uint32_t *pfEvents);
439
440VBGLR3DECL(int) VbglR3ReportAdditionsStatus(VBoxGuestFacilityType Facility, VBoxGuestFacilityStatus StatusCurrent, uint32_t uFlags);
441VBGLR3DECL(int) VbglR3GetAdditionsVersion(char **ppszVer, char **ppszVerEx, char **ppszRev);
442VBGLR3DECL(int) VbglR3GetAdditionsInstallationPath(char **ppszPath);
443VBGLR3DECL(int) VbglR3GetSessionId(uint64_t *pu64IdSession);
444
445/** @} */
446
447/** @name Shared clipboard
448 * @{ */
449VBGLR3DECL(int) VbglR3ClipboardConnect(uint32_t *pu32ClientId);
450VBGLR3DECL(int) VbglR3ClipboardDisconnect(uint32_t u32ClientId);
451VBGLR3DECL(int) VbglR3ClipboardGetHostMsg(uint32_t u32ClientId, uint32_t *pMsg, uint32_t *pfFormats);
452VBGLR3DECL(int) VbglR3ClipboardReadData(uint32_t u32ClientId, uint32_t fFormat, void *pv, uint32_t cb, uint32_t *pcb);
453VBGLR3DECL(int) VbglR3ClipboardReportFormats(uint32_t u32ClientId, uint32_t fFormats);
454VBGLR3DECL(int) VbglR3ClipboardWriteData(uint32_t u32ClientId, uint32_t fFormat, void *pv, uint32_t cb);
455/** @} */
456
457/** @name Seamless mode
458 * @{ */
459VBGLR3DECL(int) VbglR3SeamlessSetCap(bool fState);
460VBGLR3DECL(int) VbglR3SeamlessWaitEvent(VMMDevSeamlessMode *pMode);
461VBGLR3DECL(int) VbglR3SeamlessSendRects(uint32_t cRects, PRTRECT pRects);
462VBGLR3DECL(int) VbglR3SeamlessGetLastEvent(VMMDevSeamlessMode *pMode);
463
464/** @} */
465
466/** @name Mouse
467 * @{ */
468VBGLR3DECL(int) VbglR3GetMouseStatus(uint32_t *pfFeatures, uint32_t *px, uint32_t *py);
469VBGLR3DECL(int) VbglR3SetMouseStatus(uint32_t fFeatures);
470/** @} */
471
472/** @name Video
473 * @{ */
474VBGLR3DECL(int) VbglR3VideoAccelEnable(bool fEnable);
475VBGLR3DECL(int) VbglR3VideoAccelFlush(void);
476VBGLR3DECL(int) VbglR3SetPointerShape(uint32_t fFlags, uint32_t xHot, uint32_t yHot, uint32_t cx, uint32_t cy, const void *pvImg, size_t cbImg);
477VBGLR3DECL(int) VbglR3SetPointerShapeReq(struct VMMDevReqMousePointer *pReq);
478/** @} */
479
480/** @name Display
481 * @{ */
482VBGLR3DECL(int) VbglR3GetDisplayChangeRequest(uint32_t *pcx, uint32_t *pcy, uint32_t *pcBits, uint32_t *piDisplay, bool fAck);
483VBGLR3DECL(int) VbglR3GetDisplayChangeRequestEx(uint32_t *pcx, uint32_t *pcy, uint32_t *pcBits,
484 uint32_t *piDisplay, uint32_t *pcOriginX, uint32_t *pcOriginY,
485 bool *pfEnabled, bool fAck);
486VBGLR3DECL(bool) VbglR3HostLikesVideoMode(uint32_t cx, uint32_t cy, uint32_t cBits);
487VBGLR3DECL(int) VbglR3SaveVideoMode(unsigned cScreen, unsigned cx,
488 unsigned cy, unsigned cBits, unsigned x,
489 unsigned y, bool fEnabled);
490VBGLR3DECL(int) VbglR3RetrieveVideoMode(unsigned cScreen, unsigned *pcx,
491 unsigned *pcy, unsigned *pcBits,
492 unsigned *px, unsigned *py,
493 bool *pfEnabled);
494/** @} */
495
496/** @name VM Statistics
497 * @{ */
498VBGLR3DECL(int) VbglR3StatQueryInterval(uint32_t *pu32Interval);
499VBGLR3DECL(int) VbglR3StatReport(VMMDevReportGuestStats *pReq);
500/** @} */
501
502/** @name Memory ballooning
503 * @{ */
504VBGLR3DECL(int) VbglR3MemBalloonRefresh(uint32_t *pcChunks, bool *pfHandleInR3);
505VBGLR3DECL(int) VbglR3MemBalloonChange(void *pv, bool fInflate);
506/** @} */
507
508/** @name Core Dump
509 * @{ */
510VBGLR3DECL(int) VbglR3WriteCoreDump(void);
511
512/** @} */
513
514# ifdef VBOX_WITH_GUEST_PROPS
515/** @name Guest properties
516 * @{ */
517/** @todo Docs. */
518typedef struct VBGLR3GUESTPROPENUM VBGLR3GUESTPROPENUM;
519/** @todo Docs. */
520typedef VBGLR3GUESTPROPENUM *PVBGLR3GUESTPROPENUM;
521VBGLR3DECL(int) VbglR3GuestPropConnect(uint32_t *pu32ClientId);
522VBGLR3DECL(int) VbglR3GuestPropDisconnect(uint32_t u32ClientId);
523VBGLR3DECL(int) VbglR3GuestPropWrite(uint32_t u32ClientId, const char *pszName, const char *pszValue, const char *pszFlags);
524VBGLR3DECL(int) VbglR3GuestPropWriteValue(uint32_t u32ClientId, const char *pszName, const char *pszValue);
525VBGLR3DECL(int) VbglR3GuestPropWriteValueV(uint32_t u32ClientId, const char *pszName, const char *pszValueFormat, va_list va);
526VBGLR3DECL(int) VbglR3GuestPropWriteValueF(uint32_t u32ClientId, const char *pszName, const char *pszValueFormat, ...);
527VBGLR3DECL(int) VbglR3GuestPropRead(uint32_t u32ClientId, const char *pszName, void *pvBuf, uint32_t cbBuf, char **ppszValue, uint64_t *pu64Timestamp, char **ppszFlags, uint32_t *pcbBufActual);
528VBGLR3DECL(int) VbglR3GuestPropReadValue(uint32_t ClientId, const char *pszName, char *pszValue, uint32_t cchValue, uint32_t *pcchValueActual);
529VBGLR3DECL(int) VbglR3GuestPropReadValueAlloc(uint32_t u32ClientId, const char *pszName, char **ppszValue);
530VBGLR3DECL(void) VbglR3GuestPropReadValueFree(char *pszValue);
531VBGLR3DECL(int) VbglR3GuestPropEnumRaw(uint32_t u32ClientId, const char *paszPatterns, char *pcBuf, uint32_t cbBuf, uint32_t *pcbBufActual);
532VBGLR3DECL(int) VbglR3GuestPropEnum(uint32_t u32ClientId, char const * const *ppaszPatterns, uint32_t cPatterns, PVBGLR3GUESTPROPENUM *ppHandle,
533 char const **ppszName, char const **ppszValue, uint64_t *pu64Timestamp, char const **ppszFlags);
534VBGLR3DECL(int) VbglR3GuestPropEnumNext(PVBGLR3GUESTPROPENUM pHandle, char const **ppszName, char const **ppszValue, uint64_t *pu64Timestamp,
535 char const **ppszFlags);
536VBGLR3DECL(void) VbglR3GuestPropEnumFree(PVBGLR3GUESTPROPENUM pHandle);
537VBGLR3DECL(int) VbglR3GuestPropDelete(uint32_t u32ClientId, const char *pszName);
538VBGLR3DECL(int) VbglR3GuestPropDelSet(uint32_t u32ClientId, char const * const *papszPatterns, uint32_t cPatterns);
539VBGLR3DECL(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);
540/** @} */
541
542/** @name Guest user handling / reporting.
543 * @{ */
544VBGLR3DECL(int) VbglR3GuestUserReportState(const char *pszUser, const char *pszDomain, VBoxGuestUserState enmState, uint8_t *puDetails, uint32_t cbDetails);
545/** @} */
546
547/** @name Host version handling
548 * @{ */
549VBGLR3DECL(int) VbglR3HostVersionCheckForUpdate(uint32_t u32ClientId, bool *pfUpdate, char **ppszHostVersion, char **ppszGuestVersion);
550VBGLR3DECL(int) VbglR3HostVersionLastCheckedLoad(uint32_t u32ClientId, char **ppszVer);
551VBGLR3DECL(int) VbglR3HostVersionLastCheckedStore(uint32_t u32ClientId, const char *pszVer);
552/** @} */
553# endif /* VBOX_WITH_GUEST_PROPS defined */
554
555# ifdef VBOX_WITH_SHARED_FOLDERS
556/** @name Shared folders
557 * @{ */
558/**
559 * Structure containing mapping information for a shared folder.
560 */
561typedef struct VBGLR3SHAREDFOLDERMAPPING
562{
563 /** Mapping status. */
564 uint32_t u32Status;
565 /** Root handle. */
566 uint32_t u32Root;
567} VBGLR3SHAREDFOLDERMAPPING;
568/** Pointer to a shared folder mapping information struct. */
569typedef VBGLR3SHAREDFOLDERMAPPING *PVBGLR3SHAREDFOLDERMAPPING;
570
571VBGLR3DECL(int) VbglR3SharedFolderConnect(uint32_t *pu32ClientId);
572VBGLR3DECL(int) VbglR3SharedFolderDisconnect(uint32_t u32ClientId);
573VBGLR3DECL(bool) VbglR3SharedFolderExists(uint32_t u32ClientId, const char *pszShareName);
574VBGLR3DECL(int) VbglR3SharedFolderGetMappings(uint32_t u32ClientId, bool fAutoMountOnly,
575 PVBGLR3SHAREDFOLDERMAPPING *ppaMappings, uint32_t *pcMappings);
576VBGLR3DECL(void) VbglR3SharedFolderFreeMappings(PVBGLR3SHAREDFOLDERMAPPING paMappings);
577VBGLR3DECL(int) VbglR3SharedFolderGetName(uint32_t u32ClientId,uint32_t u32Root, char **ppszName);
578VBGLR3DECL(int) VbglR3SharedFolderGetMountPrefix(char **ppszPrefix);
579VBGLR3DECL(int) VbglR3SharedFolderGetMountDir(char **ppszDir);
580/** @} */
581# endif /* VBOX_WITH_SHARED_FOLDERS defined */
582
583# ifdef VBOX_WITH_GUEST_CONTROL
584/** @name Guest control
585 * @{ */
586
587/**
588 * Structure containing the context required for
589 * either retrieving or sending a HGCM guest control
590 * command from or to the host.
591 *
592 * Note: Do not change parameter order without also
593 * adapting all structure initializers.
594 */
595typedef struct VBGLR3GUESTCTRLCMDCTX
596{
597 /** @todo This struct could be handy if we want to implement
598 * a second communication channel, e.g. via TCP/IP.
599 * Use a union for the HGCM stuff then. */
600
601 /** IN: HGCM client ID to use for
602 * communication. */
603 uint32_t uClientID;
604 /** IN/OUT: Context ID to retrieve
605 * or to use. */
606 uint32_t uContextID;
607 /** IN: Protocol version to use. */
608 uint32_t uProtocol;
609 /** OUT: Number of parameters retrieved. */
610 uint32_t uNumParms;
611} VBGLR3GUESTCTRLCMDCTX, *PVBGLR3GUESTCTRLCMDCTX;
612
613/* General message handling on the guest. */
614VBGLR3DECL(int) VbglR3GuestCtrlConnect(uint32_t *puClientId);
615VBGLR3DECL(int) VbglR3GuestCtrlDisconnect(uint32_t uClientId);
616VBGLR3DECL(int) VbglR3GuestCtrlMsgFilterSet(uint32_t uClientId, uint32_t uValue, uint32_t uMaskAdd, uint32_t uMaskRemove);
617VBGLR3DECL(int) VbglR3GuestCtrlMsgFilterUnset(uint32_t uClientId);
618VBGLR3DECL(int) VbglR3GuestCtrlMsgReply(PVBGLR3GUESTCTRLCMDCTX pCtx, int rc);
619VBGLR3DECL(int) VbglR3GuestCtrlMsgReplyEx(PVBGLR3GUESTCTRLCMDCTX pCtx, int rc, uint32_t uType, void *pvPayload, uint32_t cbPayload);
620VBGLR3DECL(int) VbglR3GuestCtrlMsgSkip(uint32_t uClientId);
621VBGLR3DECL(int) VbglR3GuestCtrlMsgWaitFor(uint32_t uClientId, uint32_t *puMsg, uint32_t *puNumParms);
622VBGLR3DECL(int) VbglR3GuestCtrlCancelPendingWaits(uint32_t u32ClientId);
623/* Guest session handling. */
624VBGLR3DECL(int) VbglR3GuestCtrlSessionClose(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uFlags);
625VBGLR3DECL(int) VbglR3GuestCtrlSessionNotify(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uType, uint32_t uResult);
626VBGLR3DECL(int) VbglR3GuestCtrlSessionGetOpen(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puProtocol, char *pszUser, uint32_t cbUser, char *pszPassword, uint32_t cbPassword, char *pszDomain, uint32_t cbDomain, uint32_t *puFlags, uint32_t *puSessionID);
627VBGLR3DECL(int) VbglR3GuestCtrlSessionGetClose(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puFlags, uint32_t *puSessionID);
628/* Guest path handling. */
629VBGLR3DECL(int) VbglR3GuestCtrlPathGetRename(PVBGLR3GUESTCTRLCMDCTX pCtx, char *pszSource, uint32_t cbSource, char *pszDest, uint32_t cbDest, uint32_t *puFlags);
630/* Guest process execution. */
631VBGLR3DECL(int) VbglR3GuestCtrlProcGetStart(PVBGLR3GUESTCTRLCMDCTX pCtx, char *pszCmd, uint32_t cbCmd, uint32_t *puFlags, char *pszArgs, uint32_t cbArgs, uint32_t *puNumArgs, char *pszEnv, uint32_t *pcbEnv, uint32_t *puNumEnvVars, char *pszUser, uint32_t cbUser, char *pszPassword, uint32_t cbPassword, uint32_t *puTimeoutMS, uint32_t *puPriority, uint64_t *puAffinity, uint32_t cbAffinity, uint32_t *pcAffinity);
632VBGLR3DECL(int) VbglR3GuestCtrlProcGetTerminate(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puPID);
633VBGLR3DECL(int) VbglR3GuestCtrlProcGetInput(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puPID, uint32_t *puFlags, void *pvData, uint32_t cbData, uint32_t *pcbSize);
634VBGLR3DECL(int) VbglR3GuestCtrlProcGetOutput(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puPID, uint32_t *puHandle, uint32_t *puFlags);
635VBGLR3DECL(int) VbglR3GuestCtrlProcGetWaitFor(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puPID, uint32_t *puWaitFlags, uint32_t *puTimeoutMS);
636/* Guest native directory handling. */
637VBGLR3DECL(int) VbglR3GuestCtrlDirGetRemove(PVBGLR3GUESTCTRLCMDCTX pCtx, char *pszPath, uint32_t cbPath, uint32_t *puFlags);
638/* Guest native file handling. */
639VBGLR3DECL(int) VbglR3GuestCtrlFileGetOpen(PVBGLR3GUESTCTRLCMDCTX pCtx, char *pszFileName, uint32_t cbFileName, char *pszOpenMode, uint32_t cbOpenMode, char *pszDisposition, uint32_t cbDisposition, char *pszSharing, uint32_t cbSharing, uint32_t *puCreationMode, uint64_t *puOffset);
640VBGLR3DECL(int) VbglR3GuestCtrlFileGetClose(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle);
641VBGLR3DECL(int) VbglR3GuestCtrlFileGetRead(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle, uint32_t *puToRead);
642VBGLR3DECL(int) VbglR3GuestCtrlFileGetReadAt(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle, uint32_t *puToRead, uint64_t *puOffset);
643VBGLR3DECL(int) VbglR3GuestCtrlFileGetWrite(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle, void *pvData, uint32_t cbData, uint32_t *pcbSize);
644VBGLR3DECL(int) VbglR3GuestCtrlFileGetWriteAt(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle, void *pvData, uint32_t cbData, uint32_t *pcbSize, uint64_t *puOffset);
645VBGLR3DECL(int) VbglR3GuestCtrlFileGetSeek(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle, uint32_t *puSeekMethod, uint64_t *puOffset);
646VBGLR3DECL(int) VbglR3GuestCtrlFileGetTell(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle);
647/* Guest -> Host. */
648VBGLR3DECL(int) VbglR3GuestCtrlFileCbOpen(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, uint32_t uFileHandle);
649VBGLR3DECL(int) VbglR3GuestCtrlFileCbClose(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc);
650VBGLR3DECL(int) VbglR3GuestCtrlFileCbError(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc);
651VBGLR3DECL(int) VbglR3GuestCtrlFileCbRead(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, void *pvData, uint32_t cbData);
652VBGLR3DECL(int) VbglR3GuestCtrlFileCbWrite(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, uint32_t uWritten);
653VBGLR3DECL(int) VbglR3GuestCtrlFileCbSeek(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, uint64_t uOffActual);
654VBGLR3DECL(int) VbglR3GuestCtrlFileCbTell(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, uint64_t uOffActual);
655VBGLR3DECL(int) VbglR3GuestCtrlProcCbStatus(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uPID, uint32_t uStatus, uint32_t uFlags, void *pvData, uint32_t cbData);
656VBGLR3DECL(int) VbglR3GuestCtrlProcCbOutput(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uPID, uint32_t uHandle, uint32_t uFlags, void *pvData, uint32_t cbData);
657VBGLR3DECL(int) VbglR3GuestCtrlProcCbStatusInput(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t u32PID, uint32_t uStatus, uint32_t uFlags, uint32_t cbWritten);
658
659/** @} */
660# endif /* VBOX_WITH_GUEST_CONTROL defined */
661
662/** @name Auto-logon handling
663 * @{ */
664VBGLR3DECL(int) VbglR3AutoLogonReportStatus(VBoxGuestFacilityStatus enmStatus);
665VBGLR3DECL(bool) VbglR3AutoLogonIsRemoteSession(void);
666/** @} */
667
668/** @name User credentials handling
669 * @{ */
670VBGLR3DECL(int) VbglR3CredentialsQueryAvailability(void);
671VBGLR3DECL(int) VbglR3CredentialsRetrieve(char **ppszUser, char **ppszPassword, char **ppszDomain);
672VBGLR3DECL(int) VbglR3CredentialsRetrieveUtf16(PRTUTF16 *ppwszUser, PRTUTF16 *ppwszPassword, PRTUTF16 *ppwszDomain);
673VBGLR3DECL(void) VbglR3CredentialsDestroy(char *pszUser, char *pszPassword, char *pszDomain, uint32_t cPasses);
674VBGLR3DECL(void) VbglR3CredentialsDestroyUtf16(PRTUTF16 pwszUser, PRTUTF16 pwszPassword, PRTUTF16 pwszDomain,
675 uint32_t cPasses);
676/** @} */
677
678/** @name CPU hotplug monitor
679 * @{ */
680VBGLR3DECL(int) VbglR3CpuHotPlugInit(void);
681VBGLR3DECL(int) VbglR3CpuHotPlugTerm(void);
682VBGLR3DECL(int) VbglR3CpuHotPlugWaitForEvent(VMMDevCpuEventType *penmEventType, uint32_t *pidCpuCore, uint32_t *pidCpuPackage);
683/** @} */
684
685/** @name Page sharing
686 * @{ */
687VBGLR3DECL(int) VbglR3RegisterSharedModule(char *pszModuleName, char *pszVersion, RTGCPTR64 GCBaseAddr, uint32_t cbModule, unsigned cRegions, VMMDEVSHAREDREGIONDESC *pRegions);
688VBGLR3DECL(int) VbglR3UnregisterSharedModule(char *pszModuleName, char *pszVersion, RTGCPTR64 GCBaseAddr, uint32_t cbModule);
689VBGLR3DECL(int) VbglR3CheckSharedModules(void);
690VBGLR3DECL(bool) VbglR3PageSharingIsEnabled(void);
691VBGLR3DECL(int) VbglR3PageIsShared(RTGCPTR pPage, bool *pfShared, uint64_t *puPageFlags);
692/** @} */
693
694# ifdef VBOX_WITH_DRAG_AND_DROP
695/** @name Drag and Drop
696 * @{ */
697typedef struct VBGLR3DNDHGCMEVENT
698{
699 uint32_t uType; /** The event type this struct contains */
700 uint32_t uScreenId; /** Screen ID this request belongs to */
701 char *pszFormats; /** Format list (\r\n separated) */
702 uint32_t cbFormats; /** Size of pszFormats (\0 included) */
703 union
704 {
705 struct
706 {
707 uint32_t uXpos; /** X position of guest screen */
708 uint32_t uYpos; /** Y position of guest screen */
709 uint32_t uDefAction; /** Proposed DnD action */
710 uint32_t uAllActions; /** Allowed DnD actions */
711 }a; /** Values used in init, move and drop event type */
712 struct
713 {
714 void *pvData; /** Data request */
715 size_t cbData; /** Size of pvData */
716 }b; /** Values used in drop data event type */
717 }u;
718} VBGLR3DNDHGCMEVENT;
719typedef VBGLR3DNDHGCMEVENT *PVBGLR3DNDHGCMEVENT;
720typedef const PVBGLR3DNDHGCMEVENT CPVBGLR3DNDHGCMEVENT;
721VBGLR3DECL(int) VbglR3DnDConnect(uint32_t *pu32ClientId);
722VBGLR3DECL(int) VbglR3DnDDisconnect(uint32_t u32ClientId);
723
724VBGLR3DECL(int) VbglR3DnDProcessNextMessage(uint32_t u32ClientId, CPVBGLR3DNDHGCMEVENT pEvent);
725
726VBGLR3DECL(int) VbglR3DnDHGAcknowledgeOperation(uint32_t u32ClientId, uint32_t uAction);
727VBGLR3DECL(int) VbglR3DnDHGRequestData(uint32_t u32ClientId, const char* pcszFormat);
728# ifdef VBOX_WITH_DRAG_AND_DROP_GH
729VBGLR3DECL(int) VbglR3DnDGHAcknowledgePending(uint32_t u32ClientId, uint32_t uDefAction, uint32_t uAllActions, const char* pcszFormats);
730VBGLR3DECL(int) VbglR3DnDGHSendData(uint32_t u32ClientId, const char *pszFormat, void *pvData, uint32_t cbData);
731VBGLR3DECL(int) VbglR3DnDGHSendError(uint32_t u32ClientId, int rcOp);
732# endif /* VBOX_WITH_DRAG_AND_DROP_GH */
733/** @} */
734# endif /* VBOX_WITH_DRAG_AND_DROP */
735
736/* Generic Host Channel Service. */
737VBGLR3DECL(int) VbglR3HostChannelInit(uint32_t *pu32HGCMClientId);
738VBGLR3DECL(void) VbglR3HostChannelTerm(uint32_t u32HGCMClientId);
739VBGLR3DECL(int) VbglR3HostChannelAttach(uint32_t *pu32ChannelHandle, uint32_t u32HGCMClientId,
740 const char *pszName, uint32_t u32Flags);
741VBGLR3DECL(void) VbglR3HostChannelDetach(uint32_t u32ChannelHandle, uint32_t u32HGCMClientId);
742VBGLR3DECL(int) VbglR3HostChannelSend(uint32_t u32ChannelHandle, uint32_t u32HGCMClientId,
743 void *pvData, uint32_t cbData);
744VBGLR3DECL(int) VbglR3HostChannelRecv(uint32_t u32ChannelHandle, uint32_t u32HGCMClientId,
745 void *pvData, uint32_t cbData,
746 uint32_t *pu32SizeReceived, uint32_t *pu32SizeRemaining);
747VBGLR3DECL(int) VbglR3HostChannelControl(uint32_t u32ChannelHandle, uint32_t u32HGCMClientId,
748 uint32_t u32Code, void *pvParm, uint32_t cbParm,
749 void *pvData, uint32_t cbData, uint32_t *pu32SizeDataReturned);
750VBGLR3DECL(int) VbglR3HostChannelEventWait(uint32_t *pu32ChannelHandle, uint32_t u32HGCMClientId,
751 uint32_t *pu32EventId, void *pvParm, uint32_t cbParm,
752 uint32_t *pu32SizeReturned);
753VBGLR3DECL(int) VbglR3HostChannelEventCancel(uint32_t u32ChannelHandle, uint32_t u32HGCMClientId);
754VBGLR3DECL(int) VbglR3HostChannelQuery(const char *pszName, uint32_t u32HGCMClientId, uint32_t u32Code,
755 void *pvParm, uint32_t cbParm, void *pvData, uint32_t cbData,
756 uint32_t *pu32SizeDataReturned);
757
758/** @name Mode hint storage
759 * @{ */
760VBGLR3DECL(int) VbglR3ReadVideoMode(unsigned cDisplay, unsigned *cx,
761 unsigned *cy, unsigned *cBPP, unsigned *x,
762 unsigned *y, unsigned *fEnabled);
763VBGLR3DECL(int) VbglR3WriteVideoMode(unsigned cDisplay, unsigned cx,
764 unsigned cy, unsigned cBPP, unsigned x,
765 unsigned y, unsigned fEnabled);
766/** @} */
767
768#endif /* IN_RING3 */
769/** @} */
770
771RT_C_DECLS_END
772
773/** @} */
774
775#endif
776
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