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 |
|
---|
79 | RT_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 |
|
---|
95 | typedef 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 | */
|
---|
106 | DECLVBGL(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 | */
|
---|
116 | DECLVBGL(int) VbglInit (void);
|
---|
117 |
|
---|
118 | # endif
|
---|
119 |
|
---|
120 | /**
|
---|
121 | * The library termination function.
|
---|
122 | */
|
---|
123 | DECLVBGL(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 | */
|
---|
139 | DECLVBGL(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 | */
|
---|
148 | DECLVBGL(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 | */
|
---|
157 | DECLVBGL(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 | */
|
---|
169 | DECLVBGL(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 | */
|
---|
184 | typedef DECLCALLBACK(int) FNVBGLHGCMCALLBACK(VMMDevHGCMRequestHeader *pHeader, void *pvData, uint32_t u32Data);
|
---|
185 | /** Pointer to a FNVBGLHGCMCALLBACK. */
|
---|
186 | typedef 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 |
|
---|
204 | DECLR0VBGL(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 |
|
---|
225 | DECLR0VBGL(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 | */
|
---|
242 | DECLR0VBGL(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 | */
|
---|
259 | DECLR0VBGL(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 |
|
---|
279 | struct VBGLHGCMHANDLEDATA;
|
---|
280 | typedef 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 | */
|
---|
295 | DECLVBGL(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 | */
|
---|
305 | DECLVBGL(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 | */
|
---|
316 | DECLVBGL(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 | */
|
---|
328 | DECLVBGL(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 | */
|
---|
340 | DECLVBGL(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 | */
|
---|
354 | DECLVBGL(int) VbglPhysHeapInit (void);
|
---|
355 |
|
---|
356 | /**
|
---|
357 | * Shutdown the heap.
|
---|
358 | */
|
---|
359 | DECLVBGL(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 | */
|
---|
368 | DECLVBGL(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 | */
|
---|
387 | DECLVBGL(uint32_t) VbglPhysHeapGetPhysAddr (void *p);
|
---|
388 |
|
---|
389 | /**
|
---|
390 | * Free a memory block.
|
---|
391 | *
|
---|
392 | * @param p Virtual address of memory block.
|
---|
393 | */
|
---|
394 | DECLVBGL(void) VbglPhysHeapFree (void *p);
|
---|
395 |
|
---|
396 | DECLVBGL(int) VbglQueryVMMDevMemory (VMMDevMemory **ppVMMDevMemory);
|
---|
397 | DECLR0VBGL(bool) VbglR0CanUsePhysPageList(void);
|
---|
398 |
|
---|
399 | # ifndef VBOX_GUEST
|
---|
400 | /** @name Mouse
|
---|
401 | * @{ */
|
---|
402 | DECLVBGL(int) VbglSetMouseNotifyCallback(PFNVBOXGUESTMOUSENOTIFY pfnNotify, void *pvUser);
|
---|
403 | DECLVBGL(int) VbglGetMouseStatus(uint32_t *pfFeatures, uint32_t *px, uint32_t *py);
|
---|
404 | DECLVBGL(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 | * @{ */
|
---|
425 | VBGLR3DECL(int) VbglR3Init(void);
|
---|
426 | VBGLR3DECL(int) VbglR3InitUser(void);
|
---|
427 | VBGLR3DECL(void) VbglR3Term(void);
|
---|
428 | # ifdef ___iprt_time_h
|
---|
429 | VBGLR3DECL(int) VbglR3GetHostTime(PRTTIMESPEC pTime);
|
---|
430 | # endif
|
---|
431 | VBGLR3DECL(int) VbglR3InterruptEventWaits(void);
|
---|
432 | VBGLR3DECL(int) VbglR3WriteLog(const char *pch, size_t cch);
|
---|
433 | VBGLR3DECL(int) VbglR3CtlFilterMask(uint32_t fOr, uint32_t fNot);
|
---|
434 | VBGLR3DECL(int) VbglR3Daemonize(bool fNoChDir, bool fNoClose);
|
---|
435 | VBGLR3DECL(int) VbglR3PidFile(const char *pszPath, PRTFILE phFile);
|
---|
436 | VBGLR3DECL(void) VbglR3ClosePidFile(const char *pszPath, RTFILE hFile);
|
---|
437 | VBGLR3DECL(int) VbglR3SetGuestCaps(uint32_t fOr, uint32_t fNot);
|
---|
438 | VBGLR3DECL(int) VbglR3WaitEvent(uint32_t fMask, uint32_t cMillies, uint32_t *pfEvents);
|
---|
439 |
|
---|
440 | VBGLR3DECL(int) VbglR3ReportAdditionsStatus(VBoxGuestFacilityType Facility, VBoxGuestFacilityStatus StatusCurrent, uint32_t uFlags);
|
---|
441 | VBGLR3DECL(int) VbglR3GetAdditionsVersion(char **ppszVer, char **ppszVerEx, char **ppszRev);
|
---|
442 | VBGLR3DECL(int) VbglR3GetAdditionsInstallationPath(char **ppszPath);
|
---|
443 | VBGLR3DECL(int) VbglR3GetSessionId(uint64_t *pu64IdSession);
|
---|
444 |
|
---|
445 | /** @} */
|
---|
446 |
|
---|
447 | /** @name Shared clipboard
|
---|
448 | * @{ */
|
---|
449 | VBGLR3DECL(int) VbglR3ClipboardConnect(uint32_t *pu32ClientId);
|
---|
450 | VBGLR3DECL(int) VbglR3ClipboardDisconnect(uint32_t u32ClientId);
|
---|
451 | VBGLR3DECL(int) VbglR3ClipboardGetHostMsg(uint32_t u32ClientId, uint32_t *pMsg, uint32_t *pfFormats);
|
---|
452 | VBGLR3DECL(int) VbglR3ClipboardReadData(uint32_t u32ClientId, uint32_t fFormat, void *pv, uint32_t cb, uint32_t *pcb);
|
---|
453 | VBGLR3DECL(int) VbglR3ClipboardReportFormats(uint32_t u32ClientId, uint32_t fFormats);
|
---|
454 | VBGLR3DECL(int) VbglR3ClipboardWriteData(uint32_t u32ClientId, uint32_t fFormat, void *pv, uint32_t cb);
|
---|
455 | /** @} */
|
---|
456 |
|
---|
457 | /** @name Seamless mode
|
---|
458 | * @{ */
|
---|
459 | VBGLR3DECL(int) VbglR3SeamlessSetCap(bool fState);
|
---|
460 | VBGLR3DECL(int) VbglR3SeamlessWaitEvent(VMMDevSeamlessMode *pMode);
|
---|
461 | VBGLR3DECL(int) VbglR3SeamlessSendRects(uint32_t cRects, PRTRECT pRects);
|
---|
462 | VBGLR3DECL(int) VbglR3SeamlessGetLastEvent(VMMDevSeamlessMode *pMode);
|
---|
463 |
|
---|
464 | /** @} */
|
---|
465 |
|
---|
466 | /** @name Mouse
|
---|
467 | * @{ */
|
---|
468 | VBGLR3DECL(int) VbglR3GetMouseStatus(uint32_t *pfFeatures, uint32_t *px, uint32_t *py);
|
---|
469 | VBGLR3DECL(int) VbglR3SetMouseStatus(uint32_t fFeatures);
|
---|
470 | /** @} */
|
---|
471 |
|
---|
472 | /** @name Video
|
---|
473 | * @{ */
|
---|
474 | VBGLR3DECL(int) VbglR3VideoAccelEnable(bool fEnable);
|
---|
475 | VBGLR3DECL(int) VbglR3VideoAccelFlush(void);
|
---|
476 | VBGLR3DECL(int) VbglR3SetPointerShape(uint32_t fFlags, uint32_t xHot, uint32_t yHot, uint32_t cx, uint32_t cy, const void *pvImg, size_t cbImg);
|
---|
477 | VBGLR3DECL(int) VbglR3SetPointerShapeReq(struct VMMDevReqMousePointer *pReq);
|
---|
478 | /** @} */
|
---|
479 |
|
---|
480 | /** @name Display
|
---|
481 | * @{ */
|
---|
482 | /** The folder for the video mode hint unix domain socket on Unix-like guests.
|
---|
483 | */
|
---|
484 | /** @note This can be safely changed as all users are rebuilt in lock-step. */
|
---|
485 | #define VBGLR3HOSTDISPSOCKETPATH "/tmp/.VBoxService"
|
---|
486 | /** The path to the video mode hint unix domain socket on Unix-like guests. */
|
---|
487 | #define VBGLR3HOSTDISPSOCKET VBGLR3VIDEOMODEHINTSOCKETPATH \
|
---|
488 | "/VideoModeHint"
|
---|
489 |
|
---|
490 | VBGLR3DECL(int) VbglR3GetDisplayChangeRequest(uint32_t *pcx, uint32_t *pcy, uint32_t *pcBits, uint32_t *piDisplay, bool fAck);
|
---|
491 | VBGLR3DECL(int) VbglR3GetDisplayChangeRequestEx(uint32_t *pcx, uint32_t *pcy, uint32_t *pcBits,
|
---|
492 | uint32_t *piDisplay, uint32_t *pcOriginX, uint32_t *pcOriginY,
|
---|
493 | bool *pfEnabled, bool fAck);
|
---|
494 | VBGLR3DECL(bool) VbglR3HostLikesVideoMode(uint32_t cx, uint32_t cy, uint32_t cBits);
|
---|
495 | VBGLR3DECL(int) VbglR3VideoModeGetHighestSavedScreen(unsigned *pcScreen);
|
---|
496 | VBGLR3DECL(int) VbglR3SaveVideoMode(unsigned cScreen, unsigned cx,
|
---|
497 | unsigned cy, unsigned cBits, unsigned x,
|
---|
498 | unsigned y, bool fEnabled);
|
---|
499 | VBGLR3DECL(int) VbglR3RetrieveVideoMode(unsigned cScreen, unsigned *pcx,
|
---|
500 | unsigned *pcy, unsigned *pcBits,
|
---|
501 | unsigned *px, unsigned *py,
|
---|
502 | bool *pfEnabled);
|
---|
503 | /** @} */
|
---|
504 |
|
---|
505 | /** @name VM Statistics
|
---|
506 | * @{ */
|
---|
507 | VBGLR3DECL(int) VbglR3StatQueryInterval(uint32_t *pu32Interval);
|
---|
508 | VBGLR3DECL(int) VbglR3StatReport(VMMDevReportGuestStats *pReq);
|
---|
509 | /** @} */
|
---|
510 |
|
---|
511 | /** @name Memory ballooning
|
---|
512 | * @{ */
|
---|
513 | VBGLR3DECL(int) VbglR3MemBalloonRefresh(uint32_t *pcChunks, bool *pfHandleInR3);
|
---|
514 | VBGLR3DECL(int) VbglR3MemBalloonChange(void *pv, bool fInflate);
|
---|
515 | /** @} */
|
---|
516 |
|
---|
517 | /** @name Core Dump
|
---|
518 | * @{ */
|
---|
519 | VBGLR3DECL(int) VbglR3WriteCoreDump(void);
|
---|
520 |
|
---|
521 | /** @} */
|
---|
522 |
|
---|
523 | # ifdef VBOX_WITH_GUEST_PROPS
|
---|
524 | /** @name Guest properties
|
---|
525 | * @{ */
|
---|
526 | /** @todo Docs. */
|
---|
527 | typedef struct VBGLR3GUESTPROPENUM VBGLR3GUESTPROPENUM;
|
---|
528 | /** @todo Docs. */
|
---|
529 | typedef VBGLR3GUESTPROPENUM *PVBGLR3GUESTPROPENUM;
|
---|
530 | VBGLR3DECL(int) VbglR3GuestPropConnect(uint32_t *pu32ClientId);
|
---|
531 | VBGLR3DECL(int) VbglR3GuestPropDisconnect(uint32_t u32ClientId);
|
---|
532 | VBGLR3DECL(int) VbglR3GuestPropWrite(uint32_t u32ClientId, const char *pszName, const char *pszValue, const char *pszFlags);
|
---|
533 | VBGLR3DECL(int) VbglR3GuestPropWriteValue(uint32_t u32ClientId, const char *pszName, const char *pszValue);
|
---|
534 | VBGLR3DECL(int) VbglR3GuestPropWriteValueV(uint32_t u32ClientId, const char *pszName, const char *pszValueFormat, va_list va);
|
---|
535 | VBGLR3DECL(int) VbglR3GuestPropWriteValueF(uint32_t u32ClientId, const char *pszName, const char *pszValueFormat, ...);
|
---|
536 | VBGLR3DECL(int) VbglR3GuestPropRead(uint32_t u32ClientId, const char *pszName, void *pvBuf, uint32_t cbBuf, char **ppszValue, uint64_t *pu64Timestamp, char **ppszFlags, uint32_t *pcbBufActual);
|
---|
537 | VBGLR3DECL(int) VbglR3GuestPropReadValue(uint32_t ClientId, const char *pszName, char *pszValue, uint32_t cchValue, uint32_t *pcchValueActual);
|
---|
538 | VBGLR3DECL(int) VbglR3GuestPropReadValueAlloc(uint32_t u32ClientId, const char *pszName, char **ppszValue);
|
---|
539 | VBGLR3DECL(void) VbglR3GuestPropReadValueFree(char *pszValue);
|
---|
540 | VBGLR3DECL(int) VbglR3GuestPropEnumRaw(uint32_t u32ClientId, const char *paszPatterns, char *pcBuf, uint32_t cbBuf, uint32_t *pcbBufActual);
|
---|
541 | VBGLR3DECL(int) VbglR3GuestPropEnum(uint32_t u32ClientId, char const * const *ppaszPatterns, uint32_t cPatterns, PVBGLR3GUESTPROPENUM *ppHandle,
|
---|
542 | char const **ppszName, char const **ppszValue, uint64_t *pu64Timestamp, char const **ppszFlags);
|
---|
543 | VBGLR3DECL(int) VbglR3GuestPropEnumNext(PVBGLR3GUESTPROPENUM pHandle, char const **ppszName, char const **ppszValue, uint64_t *pu64Timestamp,
|
---|
544 | char const **ppszFlags);
|
---|
545 | VBGLR3DECL(void) VbglR3GuestPropEnumFree(PVBGLR3GUESTPROPENUM pHandle);
|
---|
546 | VBGLR3DECL(int) VbglR3GuestPropDelete(uint32_t u32ClientId, const char *pszName);
|
---|
547 | VBGLR3DECL(int) VbglR3GuestPropDelSet(uint32_t u32ClientId, char const * const *papszPatterns, uint32_t cPatterns);
|
---|
548 | VBGLR3DECL(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);
|
---|
549 | /** @} */
|
---|
550 |
|
---|
551 | /** @name Guest user handling / reporting.
|
---|
552 | * @{ */
|
---|
553 | VBGLR3DECL(int) VbglR3GuestUserReportState(const char *pszUser, const char *pszDomain, VBoxGuestUserState enmState, uint8_t *puDetails, uint32_t cbDetails);
|
---|
554 | /** @} */
|
---|
555 |
|
---|
556 | /** @name Host version handling
|
---|
557 | * @{ */
|
---|
558 | VBGLR3DECL(int) VbglR3HostVersionCheckForUpdate(uint32_t u32ClientId, bool *pfUpdate, char **ppszHostVersion, char **ppszGuestVersion);
|
---|
559 | VBGLR3DECL(int) VbglR3HostVersionLastCheckedLoad(uint32_t u32ClientId, char **ppszVer);
|
---|
560 | VBGLR3DECL(int) VbglR3HostVersionLastCheckedStore(uint32_t u32ClientId, const char *pszVer);
|
---|
561 | /** @} */
|
---|
562 | # endif /* VBOX_WITH_GUEST_PROPS defined */
|
---|
563 |
|
---|
564 | # ifdef VBOX_WITH_SHARED_FOLDERS
|
---|
565 | /** @name Shared folders
|
---|
566 | * @{ */
|
---|
567 | /**
|
---|
568 | * Structure containing mapping information for a shared folder.
|
---|
569 | */
|
---|
570 | typedef struct VBGLR3SHAREDFOLDERMAPPING
|
---|
571 | {
|
---|
572 | /** Mapping status. */
|
---|
573 | uint32_t u32Status;
|
---|
574 | /** Root handle. */
|
---|
575 | uint32_t u32Root;
|
---|
576 | } VBGLR3SHAREDFOLDERMAPPING;
|
---|
577 | /** Pointer to a shared folder mapping information struct. */
|
---|
578 | typedef VBGLR3SHAREDFOLDERMAPPING *PVBGLR3SHAREDFOLDERMAPPING;
|
---|
579 |
|
---|
580 | VBGLR3DECL(int) VbglR3SharedFolderConnect(uint32_t *pu32ClientId);
|
---|
581 | VBGLR3DECL(int) VbglR3SharedFolderDisconnect(uint32_t u32ClientId);
|
---|
582 | VBGLR3DECL(bool) VbglR3SharedFolderExists(uint32_t u32ClientId, const char *pszShareName);
|
---|
583 | VBGLR3DECL(int) VbglR3SharedFolderGetMappings(uint32_t u32ClientId, bool fAutoMountOnly,
|
---|
584 | PVBGLR3SHAREDFOLDERMAPPING *ppaMappings, uint32_t *pcMappings);
|
---|
585 | VBGLR3DECL(void) VbglR3SharedFolderFreeMappings(PVBGLR3SHAREDFOLDERMAPPING paMappings);
|
---|
586 | VBGLR3DECL(int) VbglR3SharedFolderGetName(uint32_t u32ClientId,uint32_t u32Root, char **ppszName);
|
---|
587 | VBGLR3DECL(int) VbglR3SharedFolderGetMountPrefix(char **ppszPrefix);
|
---|
588 | VBGLR3DECL(int) VbglR3SharedFolderGetMountDir(char **ppszDir);
|
---|
589 | /** @} */
|
---|
590 | # endif /* VBOX_WITH_SHARED_FOLDERS defined */
|
---|
591 |
|
---|
592 | # ifdef VBOX_WITH_GUEST_CONTROL
|
---|
593 | /** @name Guest control
|
---|
594 | * @{ */
|
---|
595 |
|
---|
596 | /**
|
---|
597 | * Structure containing the context required for
|
---|
598 | * either retrieving or sending a HGCM guest control
|
---|
599 | * command from or to the host.
|
---|
600 | *
|
---|
601 | * Note: Do not change parameter order without also
|
---|
602 | * adapting all structure initializers.
|
---|
603 | */
|
---|
604 | typedef struct VBGLR3GUESTCTRLCMDCTX
|
---|
605 | {
|
---|
606 | /** @todo This struct could be handy if we want to implement
|
---|
607 | * a second communication channel, e.g. via TCP/IP.
|
---|
608 | * Use a union for the HGCM stuff then. */
|
---|
609 |
|
---|
610 | /** IN: HGCM client ID to use for
|
---|
611 | * communication. */
|
---|
612 | uint32_t uClientID;
|
---|
613 | /** IN/OUT: Context ID to retrieve
|
---|
614 | * or to use. */
|
---|
615 | uint32_t uContextID;
|
---|
616 | /** IN: Protocol version to use. */
|
---|
617 | uint32_t uProtocol;
|
---|
618 | /** OUT: Number of parameters retrieved. */
|
---|
619 | uint32_t uNumParms;
|
---|
620 | } VBGLR3GUESTCTRLCMDCTX, *PVBGLR3GUESTCTRLCMDCTX;
|
---|
621 |
|
---|
622 | /* General message handling on the guest. */
|
---|
623 | VBGLR3DECL(int) VbglR3GuestCtrlConnect(uint32_t *puClientId);
|
---|
624 | VBGLR3DECL(int) VbglR3GuestCtrlDisconnect(uint32_t uClientId);
|
---|
625 | VBGLR3DECL(int) VbglR3GuestCtrlMsgFilterSet(uint32_t uClientId, uint32_t uValue, uint32_t uMaskAdd, uint32_t uMaskRemove);
|
---|
626 | VBGLR3DECL(int) VbglR3GuestCtrlMsgFilterUnset(uint32_t uClientId);
|
---|
627 | VBGLR3DECL(int) VbglR3GuestCtrlMsgReply(PVBGLR3GUESTCTRLCMDCTX pCtx, int rc);
|
---|
628 | VBGLR3DECL(int) VbglR3GuestCtrlMsgReplyEx(PVBGLR3GUESTCTRLCMDCTX pCtx, int rc, uint32_t uType, void *pvPayload, uint32_t cbPayload);
|
---|
629 | VBGLR3DECL(int) VbglR3GuestCtrlMsgSkip(uint32_t uClientId);
|
---|
630 | VBGLR3DECL(int) VbglR3GuestCtrlMsgWaitFor(uint32_t uClientId, uint32_t *puMsg, uint32_t *puNumParms);
|
---|
631 | VBGLR3DECL(int) VbglR3GuestCtrlCancelPendingWaits(uint32_t u32ClientId);
|
---|
632 | /* Guest session handling. */
|
---|
633 | VBGLR3DECL(int) VbglR3GuestCtrlSessionClose(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uFlags);
|
---|
634 | VBGLR3DECL(int) VbglR3GuestCtrlSessionNotify(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uType, uint32_t uResult);
|
---|
635 | VBGLR3DECL(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);
|
---|
636 | VBGLR3DECL(int) VbglR3GuestCtrlSessionGetClose(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puFlags, uint32_t *puSessionID);
|
---|
637 | /* Guest path handling. */
|
---|
638 | VBGLR3DECL(int) VbglR3GuestCtrlPathGetRename(PVBGLR3GUESTCTRLCMDCTX pCtx, char *pszSource, uint32_t cbSource, char *pszDest, uint32_t cbDest, uint32_t *puFlags);
|
---|
639 | /* Guest process execution. */
|
---|
640 | VBGLR3DECL(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);
|
---|
641 | VBGLR3DECL(int) VbglR3GuestCtrlProcGetTerminate(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puPID);
|
---|
642 | VBGLR3DECL(int) VbglR3GuestCtrlProcGetInput(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puPID, uint32_t *puFlags, void *pvData, uint32_t cbData, uint32_t *pcbSize);
|
---|
643 | VBGLR3DECL(int) VbglR3GuestCtrlProcGetOutput(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puPID, uint32_t *puHandle, uint32_t *puFlags);
|
---|
644 | VBGLR3DECL(int) VbglR3GuestCtrlProcGetWaitFor(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puPID, uint32_t *puWaitFlags, uint32_t *puTimeoutMS);
|
---|
645 | /* Guest native directory handling. */
|
---|
646 | VBGLR3DECL(int) VbglR3GuestCtrlDirGetRemove(PVBGLR3GUESTCTRLCMDCTX pCtx, char *pszPath, uint32_t cbPath, uint32_t *puFlags);
|
---|
647 | /* Guest native file handling. */
|
---|
648 | VBGLR3DECL(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);
|
---|
649 | VBGLR3DECL(int) VbglR3GuestCtrlFileGetClose(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle);
|
---|
650 | VBGLR3DECL(int) VbglR3GuestCtrlFileGetRead(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle, uint32_t *puToRead);
|
---|
651 | VBGLR3DECL(int) VbglR3GuestCtrlFileGetReadAt(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle, uint32_t *puToRead, uint64_t *puOffset);
|
---|
652 | VBGLR3DECL(int) VbglR3GuestCtrlFileGetWrite(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle, void *pvData, uint32_t cbData, uint32_t *pcbSize);
|
---|
653 | VBGLR3DECL(int) VbglR3GuestCtrlFileGetWriteAt(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle, void *pvData, uint32_t cbData, uint32_t *pcbSize, uint64_t *puOffset);
|
---|
654 | VBGLR3DECL(int) VbglR3GuestCtrlFileGetSeek(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle, uint32_t *puSeekMethod, uint64_t *puOffset);
|
---|
655 | VBGLR3DECL(int) VbglR3GuestCtrlFileGetTell(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle);
|
---|
656 | /* Guest -> Host. */
|
---|
657 | VBGLR3DECL(int) VbglR3GuestCtrlFileCbOpen(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, uint32_t uFileHandle);
|
---|
658 | VBGLR3DECL(int) VbglR3GuestCtrlFileCbClose(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc);
|
---|
659 | VBGLR3DECL(int) VbglR3GuestCtrlFileCbError(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc);
|
---|
660 | VBGLR3DECL(int) VbglR3GuestCtrlFileCbRead(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, void *pvData, uint32_t cbData);
|
---|
661 | VBGLR3DECL(int) VbglR3GuestCtrlFileCbWrite(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, uint32_t uWritten);
|
---|
662 | VBGLR3DECL(int) VbglR3GuestCtrlFileCbSeek(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, uint64_t uOffActual);
|
---|
663 | VBGLR3DECL(int) VbglR3GuestCtrlFileCbTell(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, uint64_t uOffActual);
|
---|
664 | VBGLR3DECL(int) VbglR3GuestCtrlProcCbStatus(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uPID, uint32_t uStatus, uint32_t uFlags, void *pvData, uint32_t cbData);
|
---|
665 | VBGLR3DECL(int) VbglR3GuestCtrlProcCbOutput(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uPID, uint32_t uHandle, uint32_t uFlags, void *pvData, uint32_t cbData);
|
---|
666 | VBGLR3DECL(int) VbglR3GuestCtrlProcCbStatusInput(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t u32PID, uint32_t uStatus, uint32_t uFlags, uint32_t cbWritten);
|
---|
667 |
|
---|
668 | /** @} */
|
---|
669 | # endif /* VBOX_WITH_GUEST_CONTROL defined */
|
---|
670 |
|
---|
671 | /** @name Auto-logon handling
|
---|
672 | * @{ */
|
---|
673 | VBGLR3DECL(int) VbglR3AutoLogonReportStatus(VBoxGuestFacilityStatus enmStatus);
|
---|
674 | VBGLR3DECL(bool) VbglR3AutoLogonIsRemoteSession(void);
|
---|
675 | /** @} */
|
---|
676 |
|
---|
677 | /** @name User credentials handling
|
---|
678 | * @{ */
|
---|
679 | VBGLR3DECL(int) VbglR3CredentialsQueryAvailability(void);
|
---|
680 | VBGLR3DECL(int) VbglR3CredentialsRetrieve(char **ppszUser, char **ppszPassword, char **ppszDomain);
|
---|
681 | VBGLR3DECL(int) VbglR3CredentialsRetrieveUtf16(PRTUTF16 *ppwszUser, PRTUTF16 *ppwszPassword, PRTUTF16 *ppwszDomain);
|
---|
682 | VBGLR3DECL(void) VbglR3CredentialsDestroy(char *pszUser, char *pszPassword, char *pszDomain, uint32_t cPasses);
|
---|
683 | VBGLR3DECL(void) VbglR3CredentialsDestroyUtf16(PRTUTF16 pwszUser, PRTUTF16 pwszPassword, PRTUTF16 pwszDomain,
|
---|
684 | uint32_t cPasses);
|
---|
685 | /** @} */
|
---|
686 |
|
---|
687 | /** @name CPU hotplug monitor
|
---|
688 | * @{ */
|
---|
689 | VBGLR3DECL(int) VbglR3CpuHotPlugInit(void);
|
---|
690 | VBGLR3DECL(int) VbglR3CpuHotPlugTerm(void);
|
---|
691 | VBGLR3DECL(int) VbglR3CpuHotPlugWaitForEvent(VMMDevCpuEventType *penmEventType, uint32_t *pidCpuCore, uint32_t *pidCpuPackage);
|
---|
692 | /** @} */
|
---|
693 |
|
---|
694 | /** @name Page sharing
|
---|
695 | * @{ */
|
---|
696 | VBGLR3DECL(int) VbglR3RegisterSharedModule(char *pszModuleName, char *pszVersion, RTGCPTR64 GCBaseAddr, uint32_t cbModule, unsigned cRegions, VMMDEVSHAREDREGIONDESC *pRegions);
|
---|
697 | VBGLR3DECL(int) VbglR3UnregisterSharedModule(char *pszModuleName, char *pszVersion, RTGCPTR64 GCBaseAddr, uint32_t cbModule);
|
---|
698 | VBGLR3DECL(int) VbglR3CheckSharedModules(void);
|
---|
699 | VBGLR3DECL(bool) VbglR3PageSharingIsEnabled(void);
|
---|
700 | VBGLR3DECL(int) VbglR3PageIsShared(RTGCPTR pPage, bool *pfShared, uint64_t *puPageFlags);
|
---|
701 | /** @} */
|
---|
702 |
|
---|
703 | # ifdef VBOX_WITH_DRAG_AND_DROP
|
---|
704 | /** @name Drag and Drop
|
---|
705 | * @{ */
|
---|
706 | typedef struct VBGLR3DNDHGCMEVENT
|
---|
707 | {
|
---|
708 | uint32_t uType; /** The event type this struct contains */
|
---|
709 | uint32_t uScreenId; /** Screen ID this request belongs to */
|
---|
710 | char *pszFormats; /** Format list (\r\n separated) */
|
---|
711 | uint32_t cbFormats; /** Size of pszFormats (\0 included) */
|
---|
712 | union
|
---|
713 | {
|
---|
714 | struct
|
---|
715 | {
|
---|
716 | uint32_t uXpos; /** X position of guest screen */
|
---|
717 | uint32_t uYpos; /** Y position of guest screen */
|
---|
718 | uint32_t uDefAction; /** Proposed DnD action */
|
---|
719 | uint32_t uAllActions; /** Allowed DnD actions */
|
---|
720 | }a; /** Values used in init, move and drop event type */
|
---|
721 | struct
|
---|
722 | {
|
---|
723 | void *pvData; /** Data request */
|
---|
724 | size_t cbData; /** Size of pvData */
|
---|
725 | }b; /** Values used in drop data event type */
|
---|
726 | }u;
|
---|
727 | } VBGLR3DNDHGCMEVENT;
|
---|
728 | typedef VBGLR3DNDHGCMEVENT *PVBGLR3DNDHGCMEVENT;
|
---|
729 | typedef const PVBGLR3DNDHGCMEVENT CPVBGLR3DNDHGCMEVENT;
|
---|
730 | VBGLR3DECL(int) VbglR3DnDConnect(uint32_t *pu32ClientId);
|
---|
731 | VBGLR3DECL(int) VbglR3DnDDisconnect(uint32_t u32ClientId);
|
---|
732 |
|
---|
733 | VBGLR3DECL(int) VbglR3DnDProcessNextMessage(uint32_t u32ClientId, CPVBGLR3DNDHGCMEVENT pEvent);
|
---|
734 |
|
---|
735 | VBGLR3DECL(int) VbglR3DnDHGAcknowledgeOperation(uint32_t u32ClientId, uint32_t uAction);
|
---|
736 | VBGLR3DECL(int) VbglR3DnDHGRequestData(uint32_t u32ClientId, const char* pcszFormat);
|
---|
737 | # ifdef VBOX_WITH_DRAG_AND_DROP_GH
|
---|
738 | VBGLR3DECL(int) VbglR3DnDGHAcknowledgePending(uint32_t u32ClientId, uint32_t uDefAction, uint32_t uAllActions, const char* pcszFormats);
|
---|
739 | VBGLR3DECL(int) VbglR3DnDGHSendData(uint32_t u32ClientId, const char *pszFormat, void *pvData, uint32_t cbData);
|
---|
740 | VBGLR3DECL(int) VbglR3DnDGHSendError(uint32_t u32ClientId, int rcOp);
|
---|
741 | # endif /* VBOX_WITH_DRAG_AND_DROP_GH */
|
---|
742 | /** @} */
|
---|
743 | # endif /* VBOX_WITH_DRAG_AND_DROP */
|
---|
744 |
|
---|
745 | /* Generic Host Channel Service. */
|
---|
746 | VBGLR3DECL(int) VbglR3HostChannelInit(uint32_t *pu32HGCMClientId);
|
---|
747 | VBGLR3DECL(void) VbglR3HostChannelTerm(uint32_t u32HGCMClientId);
|
---|
748 | VBGLR3DECL(int) VbglR3HostChannelAttach(uint32_t *pu32ChannelHandle, uint32_t u32HGCMClientId,
|
---|
749 | const char *pszName, uint32_t u32Flags);
|
---|
750 | VBGLR3DECL(void) VbglR3HostChannelDetach(uint32_t u32ChannelHandle, uint32_t u32HGCMClientId);
|
---|
751 | VBGLR3DECL(int) VbglR3HostChannelSend(uint32_t u32ChannelHandle, uint32_t u32HGCMClientId,
|
---|
752 | void *pvData, uint32_t cbData);
|
---|
753 | VBGLR3DECL(int) VbglR3HostChannelRecv(uint32_t u32ChannelHandle, uint32_t u32HGCMClientId,
|
---|
754 | void *pvData, uint32_t cbData,
|
---|
755 | uint32_t *pu32SizeReceived, uint32_t *pu32SizeRemaining);
|
---|
756 | VBGLR3DECL(int) VbglR3HostChannelControl(uint32_t u32ChannelHandle, uint32_t u32HGCMClientId,
|
---|
757 | uint32_t u32Code, void *pvParm, uint32_t cbParm,
|
---|
758 | void *pvData, uint32_t cbData, uint32_t *pu32SizeDataReturned);
|
---|
759 | VBGLR3DECL(int) VbglR3HostChannelEventWait(uint32_t *pu32ChannelHandle, uint32_t u32HGCMClientId,
|
---|
760 | uint32_t *pu32EventId, void *pvParm, uint32_t cbParm,
|
---|
761 | uint32_t *pu32SizeReturned);
|
---|
762 | VBGLR3DECL(int) VbglR3HostChannelEventCancel(uint32_t u32ChannelHandle, uint32_t u32HGCMClientId);
|
---|
763 | VBGLR3DECL(int) VbglR3HostChannelQuery(const char *pszName, uint32_t u32HGCMClientId, uint32_t u32Code,
|
---|
764 | void *pvParm, uint32_t cbParm, void *pvData, uint32_t cbData,
|
---|
765 | uint32_t *pu32SizeDataReturned);
|
---|
766 |
|
---|
767 | /** @name Mode hint storage
|
---|
768 | * @{ */
|
---|
769 | VBGLR3DECL(int) VbglR3ReadVideoMode(unsigned cDisplay, unsigned *cx,
|
---|
770 | unsigned *cy, unsigned *cBPP, unsigned *x,
|
---|
771 | unsigned *y, unsigned *fEnabled);
|
---|
772 | VBGLR3DECL(int) VbglR3WriteVideoMode(unsigned cDisplay, unsigned cx,
|
---|
773 | unsigned cy, unsigned cBPP, unsigned x,
|
---|
774 | unsigned y, unsigned fEnabled);
|
---|
775 | /** @} */
|
---|
776 |
|
---|
777 | #endif /* IN_RING3 */
|
---|
778 | /** @} */
|
---|
779 |
|
---|
780 | RT_C_DECLS_END
|
---|
781 |
|
---|
782 | /** @} */
|
---|
783 |
|
---|
784 | #endif
|
---|
785 |
|
---|