VirtualBox

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

Last change on this file since 85123 was 85121, checked in by vboxsync, 4 years ago

iprt/cdefs.h: Refactored the typedef use of DECLCALLBACK as well as DECLCALLBACKMEMBER to wrap the whole expression, similar to the DECLR?CALLBACKMEMBER macros. This allows adding a throw() at the end when compiling with the VC++ compiler to indicate that the callbacks won't throw anything, so we can stop supressing the C5039 warning about passing functions that can potential throw C++ exceptions to extern C code that can't necessarily cope with such (unwind,++). Introduced a few _EX variations that allows specifying different/no calling convention too, as that's handy when dynamically resolving host APIs. Fixed numerous places missing DECLCALLBACK and such. Left two angry @todos regarding use of CreateThread. bugref:9794

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 59.5 KB
Line 
1/** @file
2 * VBoxGuestLib - VirtualBox Guest Additions Library.
3 */
4
5/*
6 * Copyright (C) 2006-2020 Oracle Corporation
7 *
8 * Permission is hereby granted, free of charge, to any person
9 * obtaining a copy of this software and associated documentation
10 * files (the "Software"), to deal in the Software without
11 * restriction, including without limitation the rights to use,
12 * copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following
15 * conditions:
16 *
17 * The above copyright notice and this permission notice shall be
18 * included in all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
22 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
24 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
25 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
27 * OTHER DEALINGS IN THE SOFTWARE.
28 */
29
30#ifndef VBOX_INCLUDED_VBoxGuestLib_h
31#define VBOX_INCLUDED_VBoxGuestLib_h
32#ifndef RT_WITHOUT_PRAGMA_ONCE
33# pragma once
34#endif
35
36#include <VBox/types.h>
37#include <VBox/VMMDev.h>
38#include <VBox/VBoxGuestCoreTypes.h>
39# ifdef VBOX_WITH_DRAG_AND_DROP
40# include <VBox/GuestHost/DragAndDropDefs.h>
41# endif
42# ifdef VBOX_WITH_SHARED_CLIPBOARD
43# include <VBox/GuestHost/SharedClipboard.h>
44# ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS
45# include <VBox/GuestHost/SharedClipboard-transfers.h>
46# endif
47# endif /* VBOX_WITH_SHARED_CLIPBOARD */
48
49/** @defgroup grp_vboxguest_lib VirtualBox Guest Additions Library
50 * @ingroup grp_vboxguest
51 * @{
52 */
53
54/** @page pg_guest_lib VirtualBox Guest Library
55 *
56 * This is a library for abstracting the additions driver interface. There are
57 * multiple versions of the library depending on the context. The main
58 * distinction is between kernel and user mode where the interfaces are very
59 * different.
60 *
61 *
62 * @section sec_guest_lib_ring0 Ring-0
63 *
64 * In ring-0 there are two version:
65 * - VBOX_LIB_VBGL_R0_BASE / VBoxGuestR0LibBase for the VBoxGuest main driver,
66 * who is responsible for managing the VMMDev virtual hardware.
67 * - VBOX_LIB_VBGL_R0 / VBoxGuestR0Lib for other (client) guest drivers.
68 *
69 *
70 * The library source code and the header have a define VBGL_VBOXGUEST, which is
71 * defined for VBoxGuest and undefined for other drivers. Drivers must choose
72 * right library in their makefiles and set VBGL_VBOXGUEST accordingly.
73 *
74 * The libraries consists of:
75 * - common code to be used by both VBoxGuest and other drivers;
76 * - VBoxGuest specific code;
77 * - code for other drivers which communicate with VBoxGuest via an IOCTL.
78 *
79 *
80 * @section sec_guest_lib_ring3 Ring-3
81 *
82 * There are more variants of the library here:
83 * - VBOX_LIB_VBGL_R3 / VBoxGuestR3Lib for programs.
84 * - VBOX_LIB_VBGL_R3_XFREE86 / VBoxGuestR3LibXFree86 for old style XFree
85 * drivers which uses special loader and or symbol resolving strategy.
86 * - VBOX_LIB_VBGL_R3_SHARED / VBoxGuestR3LibShared for shared objects / DLLs /
87 * Dylibs.
88 *
89 */
90
91RT_C_DECLS_BEGIN
92
93/** HGCM client ID.
94 * @todo Promote to VBox/types.h */
95typedef uint32_t HGCMCLIENTID;
96
97
98/** @defgroup grp_vboxguest_lib_r0 Ring-0 interface.
99 * @{
100 */
101#ifdef IN_RING0
102/** @def DECLR0VBGL
103 * Declare a VBGL ring-0 API with the right calling convention and visibilitiy.
104 * @param type Return type. */
105# ifdef RT_OS_DARWIN /** @todo probably apply to all, but don't want a forest fire on our hands right now. */
106# define DECLR0VBGL(type) DECLHIDDEN(DECL_NOTHROW(type)) VBOXCALL
107# else
108# define DECLR0VBGL(type) DECL_NOTHROW(type) VBOXCALL
109# endif
110# define DECLVBGL(type) DECLR0VBGL(type)
111
112
113/**
114 * The library initialization function to be used by the main VBoxGuest driver.
115 *
116 * @return VBox status code.
117 */
118DECLR0VBGL(int) VbglR0InitPrimary(RTIOPORT portVMMDev, VMMDevMemory *pVMMDevMemory, uint32_t *pfFeatures);
119
120/**
121 * The library termination function to be used by the main VBoxGuest driver.
122 *
123 * @author bird (2017-08-23)
124 */
125DECLR0VBGL(void) VbglR0TerminatePrimary(void);
126
127/**
128 * The library initialization function to be used by all drivers
129 * other than the main VBoxGuest system driver.
130 *
131 * @return VBox status code.
132 */
133DECLR0VBGL(int) VbglR0InitClient(void);
134
135/**
136 * The library termination function.
137 */
138DECLR0VBGL(void) VbglR0TerminateClient(void);
139
140/**
141 * Query the host feature mask.
142 *
143 * @returns VBox status code.
144 * @param pfHostFeatures Where to return the host feature mask,
145 * VMMDEV_HVF_XXX.
146 * @note Client only. May fail we're unable to connect VBoxGuest.
147 */
148DECLR0VBGL(int) VbglR0QueryHostFeatures(uint32_t *pfHostFeatures);
149
150
151/** @name The IDC Client Interface
152 * @{
153 */
154
155/**
156 * Inter-Driver Communication Handle.
157 */
158typedef union VBGLIDCHANDLE
159{
160 /** Padding for opaque usage.
161 * Must be greater or equal in size than the private struct. */
162 void *apvPadding[4];
163#ifdef VBGLIDCHANDLEPRIVATE_DECLARED
164 /** The private view. */
165 struct VBGLIDCHANDLEPRIVATE s;
166#endif
167} VBGLIDCHANDLE;
168/** Pointer to a handle. */
169typedef VBGLIDCHANDLE *PVBGLIDCHANDLE;
170
171DECLR0VBGL(int) VbglR0IdcOpen(PVBGLIDCHANDLE pHandle, uint32_t uReqVersion, uint32_t uMinVersion,
172 uint32_t *puSessionVersion, uint32_t *puDriverVersion, uint32_t *puDriverRevision);
173struct VBGLREQHDR;
174DECLR0VBGL(int) VbglR0IdcCallRaw(PVBGLIDCHANDLE pHandle, uintptr_t uReq, struct VBGLREQHDR *pReqHdr, uint32_t cbReq);
175DECLR0VBGL(int) VbglR0IdcCall(PVBGLIDCHANDLE pHandle, uintptr_t uReq, struct VBGLREQHDR *pReqHdr, uint32_t cbReq);
176DECLR0VBGL(int) VbglR0IdcClose(PVBGLIDCHANDLE pHandle);
177
178/** @} */
179
180
181/** @name Generic request functions.
182 * @{
183 */
184
185/**
186 * Allocate memory for generic request and initialize the request header.
187 *
188 * @returns VBox status code.
189 * @param ppReq Where to return the pointer to the allocated memory.
190 * @param cbReq Size of memory block required for the request.
191 * @param enmReqType the generic request type.
192 */
193# if defined(VBOX_INCLUDED_VMMDev_h) || defined(DOXYGEN_RUNNING)
194DECLR0VBGL(int) VbglR0GRAlloc(struct VMMDevRequestHeader **ppReq, size_t cbReq, VMMDevRequestType enmReqType);
195# else
196DECLR0VBGL(int) VbglR0GRAlloc(struct VMMDevRequestHeader **ppReq, size_t cbReq, int32_t enmReqType);
197# endif
198
199/**
200 * Perform the generic request.
201 *
202 * @param pReq pointer the request structure.
203 *
204 * @return VBox status code.
205 */
206DECLR0VBGL(int) VbglR0GRPerform(struct VMMDevRequestHeader *pReq);
207
208/**
209 * Free the generic request memory.
210 *
211 * @param pReq pointer the request structure.
212 *
213 * @return VBox status code.
214 */
215DECLR0VBGL(void) VbglR0GRFree(struct VMMDevRequestHeader *pReq);
216
217/**
218 * Verify the generic request header.
219 *
220 * @param pReq pointer the request header structure.
221 * @param cbReq size of the request memory block. It should be equal to the request size
222 * for fixed size requests. It can be greater than the request size for
223 * variable size requests.
224 *
225 * @return VBox status code.
226 */
227DECLR0VBGL(int) VbglGR0Verify(const struct VMMDevRequestHeader *pReq, size_t cbReq);
228
229/** @} */
230
231# ifdef VBOX_WITH_HGCM
232struct VBGLIOCHGCMCALL;
233struct VBGLIOCIDCHGCMFASTCALL;
234
235# ifdef VBGL_VBOXGUEST
236
237/**
238 * Callback function called from HGCM helpers when a wait for request
239 * completion IRQ is required.
240 *
241 * @returns VINF_SUCCESS, VERR_INTERRUPT or VERR_TIMEOUT.
242 * @param pvData VBoxGuest pointer to be passed to callback.
243 * @param u32Data VBoxGuest 32 bit value to be passed to callback.
244 */
245typedef DECLCALLBACKTYPE(int, FNVBGLHGCMCALLBACK,(VMMDevHGCMRequestHeader *pHeader, void *pvData, uint32_t u32Data));
246/** Pointer to a FNVBGLHGCMCALLBACK. */
247typedef FNVBGLHGCMCALLBACK *PFNVBGLHGCMCALLBACK;
248
249/**
250 * Perform a connect request.
251 *
252 * That is locate required service and obtain a client identifier for future
253 * access.
254 *
255 * @note This function can NOT handle cancelled requests!
256 *
257 * @param pLoc The service to connect to.
258 * @param fRequestor VMMDEV_REQUESTOR_XXX.
259 * @param pidClient Where to return the client ID on success.
260 * @param pfnAsyncCallback Required pointer to function that is calledwhen
261 * host returns VINF_HGCM_ASYNC_EXECUTE. VBoxGuest
262 * implements waiting for an IRQ in this function.
263 * @param pvAsyncData An arbitrary VBoxGuest pointer to be passed to callback.
264 * @param u32AsyncData An arbitrary VBoxGuest 32 bit value to be passed to callback.
265 *
266 * @return VBox status code.
267 */
268DECLR0VBGL(int) VbglR0HGCMInternalConnect(HGCMServiceLocation const *pLoc, uint32_t fRequestor, HGCMCLIENTID *pidClient,
269 PFNVBGLHGCMCALLBACK pfnAsyncCallback, void *pvAsyncData, uint32_t u32AsyncData);
270
271
272/**
273 * Perform a disconnect request.
274 *
275 * That is tell the host that the client will not call the service anymore.
276 *
277 * @note This function can NOT handle cancelled requests!
278 *
279 * @param idClient The client ID to disconnect.
280 * @param fRequestor VMMDEV_REQUESTOR_XXX.
281 * @param pfnAsyncCallback Required pointer to function that is called when
282 * host returns VINF_HGCM_ASYNC_EXECUTE. VBoxGuest
283 * implements waiting for an IRQ in this function.
284 * @param pvAsyncData An arbitrary VBoxGuest pointer to be passed to callback.
285 * @param u32AsyncData An arbitrary VBoxGuest 32 bit value to be passed to
286 * callback.
287 *
288 * @return VBox status code.
289 */
290
291DECLR0VBGL(int) VbglR0HGCMInternalDisconnect(HGCMCLIENTID idClient, uint32_t fRequestor,
292 PFNVBGLHGCMCALLBACK pfnAsyncCallback, void *pvAsyncData, uint32_t u32AsyncData);
293
294/** Call a HGCM service.
295 *
296 * @note This function can deal with cancelled requests.
297 *
298 * @param pCallInfo The request data.
299 * @param fFlags Flags, see VBGLR0_HGCMCALL_F_XXX.
300 * @param fRequestor VMMDEV_REQUESTOR_XXX.
301 * @param pfnAsyncCallback Required pointer to function that is called when
302 * host returns VINF_HGCM_ASYNC_EXECUTE. VBoxGuest
303 * implements waiting for an IRQ in this function.
304 * @param pvAsyncData An arbitrary VBoxGuest pointer to be passed to callback.
305 * @param u32AsyncData An arbitrary VBoxGuest 32 bit value to be passed to callback.
306 *
307 * @return VBox status code.
308 */
309DECLR0VBGL(int) VbglR0HGCMInternalCall(struct VBGLIOCHGCMCALL *pCallInfo, uint32_t cbCallInfo, uint32_t fFlags, uint32_t fRequestor,
310 PFNVBGLHGCMCALLBACK pfnAsyncCallback, void *pvAsyncData, uint32_t u32AsyncData);
311
312/** Call a HGCM service. (32 bits packet structure in a 64 bits guest)
313 *
314 * @note This function can deal with cancelled requests.
315 *
316 * @param pCallInfo The request data.
317 * @param fFlags Flags, see VBGLR0_HGCMCALL_F_XXX.
318 * @param fRequestor VMMDEV_REQUESTOR_XXX.
319 * @param pfnAsyncCallback Required pointer to function that is called when
320 * host returns VINF_HGCM_ASYNC_EXECUTE. VBoxGuest
321 * implements waiting for an IRQ in this function.
322 * @param pvAsyncData An arbitrary VBoxGuest pointer to be passed to callback.
323 * @param u32AsyncData An arbitrary VBoxGuest 32 bit value to be passed to callback.
324 *
325 * @return VBox status code.
326 */
327DECLR0VBGL(int) VbglR0HGCMInternalCall32(struct VBGLIOCHGCMCALL *pCallInfo, uint32_t cbCallInfo, uint32_t fFlags, uint32_t fRequestor,
328 PFNVBGLHGCMCALLBACK pfnAsyncCallback, void *pvAsyncData, uint32_t u32AsyncData);
329
330/** @name VbglR0HGCMInternalCall flags
331 * @{ */
332/** User mode request.
333 * Indicates that only user mode addresses are permitted as parameters. */
334#define VBGLR0_HGCMCALL_F_USER UINT32_C(0)
335/** Kernel mode request.
336 * Indicates that kernel mode addresses are permitted as parameters. Whether or
337 * not user mode addresses are permitted is, unfortunately, OS specific. The
338 * following OSes allows user mode addresses: Windows, TODO.
339 */
340#define VBGLR0_HGCMCALL_F_KERNEL UINT32_C(1)
341/** Mode mask. */
342#define VBGLR0_HGCMCALL_F_MODE_MASK UINT32_C(1)
343/** @} */
344
345# else /* !VBGL_VBOXGUEST */
346
347#ifndef VBGL_VBOXGUEST
348/** @internal */
349typedef struct VBGLHGCMHANDLEDATA
350{
351 uint32_t fAllocated;
352 VBGLIDCHANDLE IdcHandle;
353} VBGLHGCMHANDLEDATA;
354#else
355struct VBGLHGCMHANDLEDATA;
356#endif
357
358typedef struct VBGLHGCMHANDLEDATA *VBGLHGCMHANDLE;
359
360/** @name HGCM functions
361 * @{
362 */
363
364/**
365 * Initializes HGCM in the R0 guest library. Must be called before any HGCM
366 * connections are made. Is called by VbglInitClient().
367 *
368 * @return VBox status code.
369 */
370DECLR0VBGL(int) VbglR0HGCMInit(void);
371
372/**
373 * Terminates HGCM in the R0 guest library. Is called by VbglTerminate().
374 *
375 * @return VBox status code.
376 */
377DECLR0VBGL(int) VbglR0HGCMTerminate(void);
378
379/**
380 * Connect to a service.
381 *
382 * @param pHandle Pointer to variable that will hold a handle to be used
383 * further in VbglHGCMCall and VbglHGCMClose.
384 * @param pszServiceName The service to connect to.
385 * @param pidClient Where to return the client ID for the connection.
386 *
387 * @return VBox status code.
388 *
389 * @todo consider baking the client Id into the handle.
390 */
391DECLR0VBGL(int) VbglR0HGCMConnect(VBGLHGCMHANDLE *pHandle, const char *pszServiceName, HGCMCLIENTID *pidClient);
392
393/**
394 * Connect to a service.
395 *
396 * @param handle Handle of the connection.
397 * @param idClient The ID of the client connection.
398 *
399 * @return VBox status code.
400 *
401 * @todo consider baking the client Id into the handle.
402 */
403DECLR0VBGL(int) VbglR0HGCMDisconnect(VBGLHGCMHANDLE handle, HGCMCLIENTID idClient);
404
405/**
406 * Call to a service, returning only the I/O control status code.
407 *
408 * @param handle Handle of the connection.
409 * @param pData Call request information structure, including function parameters.
410 * @param cbData Length in bytes of data.
411 *
412 * @return VBox status code.
413 */
414DECLR0VBGL(int) VbglR0HGCMCallRaw(VBGLHGCMHANDLE handle, struct VBGLIOCHGCMCALL *pData, uint32_t cbData);
415
416/**
417 * Call to a service, returning the HGCM status code.
418 *
419 * @param handle Handle of the connection.
420 * @param pData Call request information structure, including function parameters.
421 * @param cbData Length in bytes of data.
422 *
423 * @return VBox status code. Either the I/O control status code if that failed,
424 * or the HGCM status code (pData->Hdr.rc).
425 */
426DECLR0VBGL(int) VbglR0HGCMCall(VBGLHGCMHANDLE handle, struct VBGLIOCHGCMCALL *pData, uint32_t cbData);
427
428/**
429 * Call to a service with user-mode data received by the calling driver from the User-Mode process.
430 * The call must be done in the context of a calling process.
431 *
432 * @param handle Handle of the connection.
433 * @param pData Call request information structure, including function parameters.
434 * @param cbData Length in bytes of data.
435 *
436 * @return VBox status code.
437 */
438DECLR0VBGL(int) VbglR0HGCMCallUserDataRaw(VBGLHGCMHANDLE handle, struct VBGLIOCHGCMCALL *pData, uint32_t cbData);
439
440/**
441 * Call to a service, w/o any repacking and buffer locking in VBoxGuest,
442 * returning the only request related status code (not HGCM).
443 *
444 * The driver only submits the request and waits for completion, nothing else.
445 *
446 * @param hHandle The connection handle.
447 * @param pCallReq The call request. Will be passed directly to the host.
448 * @param cbCallReq The size of the whole call request.
449 *
450 * @return VBox status code.
451 *
452 * @remarks The result of the HGCM call is found in
453 * @a pCallReq->HgcmCallReq.header.result on a successful return. The
454 * @a pCallReq->Hdr.rc and @a pCallReq->HgcmCallReq.header.header.rc
455 * fields are the same as the return value and can safely be ignored.
456 */
457DECLR0VBGL(int) VbglR0HGCMFastCall(VBGLHGCMHANDLE hHandle, struct VBGLIOCIDCHGCMFASTCALL *pCallReq, uint32_t cbCallReq);
458
459/** @} */
460
461/** @name Undocumented helpers for talking to the Chromium OpenGL Host Service
462 * @{ */
463typedef VBGLHGCMHANDLE VBGLCRCTLHANDLE;
464DECLR0VBGL(int) VbglR0CrCtlCreate(VBGLCRCTLHANDLE *phCtl);
465DECLR0VBGL(int) VbglR0CrCtlDestroy(VBGLCRCTLHANDLE hCtl);
466DECLR0VBGL(int) VbglR0CrCtlConConnect(VBGLCRCTLHANDLE hCtl, HGCMCLIENTID *pidClient);
467DECLR0VBGL(int) VbglR0CrCtlConDisconnect(VBGLCRCTLHANDLE hCtl, HGCMCLIENTID idClient);
468struct VBGLIOCHGCMCALL;
469DECLR0VBGL(int) VbglR0CrCtlConCallRaw(VBGLCRCTLHANDLE hCtl, struct VBGLIOCHGCMCALL *pCallInfo, int cbCallInfo);
470DECLR0VBGL(int) VbglR0CrCtlConCall(VBGLCRCTLHANDLE hCtl, struct VBGLIOCHGCMCALL *pCallInfo, int cbCallInfo);
471DECLR0VBGL(int) VbglR0CrCtlConCallUserDataRaw(VBGLCRCTLHANDLE hCtl, struct VBGLIOCHGCMCALL *pCallInfo, int cbCallInfo);
472/** @} */
473
474# endif /* !VBGL_VBOXGUEST */
475
476# endif /* VBOX_WITH_HGCM */
477
478
479/**
480 * Initialize the heap.
481 *
482 * @returns VBox status code.
483 */
484DECLR0VBGL(int) VbglR0PhysHeapInit(void);
485
486/**
487 * Shutdown the heap.
488 */
489DECLR0VBGL(void) VbglR0PhysHeapTerminate(void);
490
491/**
492 * Allocate a memory block.
493 *
494 * @returns Virtual address of the allocated memory block.
495 * @param cbSize Size of block to be allocated.
496 */
497DECLR0VBGL(void *) VbglR0PhysHeapAlloc(uint32_t cbSize);
498
499/**
500 * Get physical address of memory block pointed by the virtual address.
501 *
502 * @note WARNING!
503 * The function does not acquire the Heap mutex!
504 * When calling the function make sure that the pointer is a valid one and
505 * is not being deallocated. This function can NOT be used for verifying
506 * if the given pointer is a valid one allocated from the heap.
507 *
508 * @param pv Virtual address of memory block.
509 * @returns Physical address of the memory block.
510 */
511DECLR0VBGL(uint32_t) VbglR0PhysHeapGetPhysAddr(void *pv);
512
513/**
514 * Free a memory block.
515 *
516 * @param pv Virtual address of memory block.
517 */
518DECLR0VBGL(void) VbglR0PhysHeapFree(void *pv);
519
520DECLR0VBGL(int) VbglR0QueryVMMDevMemory(struct VMMDevMemory **ppVMMDevMemory);
521DECLR0VBGL(bool) VbglR0CanUsePhysPageList(void);
522
523# ifndef VBOX_GUEST
524/** @name Mouse
525 * @{ */
526DECLR0VBGL(int) VbglR0SetMouseNotifyCallback(PFNVBOXGUESTMOUSENOTIFY pfnNotify, void *pvUser);
527DECLR0VBGL(int) VbglR0GetMouseStatus(uint32_t *pfFeatures, uint32_t *px, uint32_t *py);
528DECLR0VBGL(int) VbglR0SetMouseStatus(uint32_t fFeatures);
529/** @} */
530# endif /* VBOX_GUEST */
531
532#endif /* IN_RING0 */
533
534/** @} */
535
536
537/** @defgroup grp_vboxguest_lib_r3 Ring-3 interface.
538 * @{
539 */
540#ifdef IN_RING3
541
542/** @def VBGLR3DECL
543 * Ring 3 VBGL declaration.
544 * @param type The return type of the function declaration.
545 */
546# define VBGLR3DECL(type) DECL_HIDDEN_NOTHROW(type) VBOXCALL
547
548/** @name General-purpose functions
549 * @{ */
550VBGLR3DECL(int) VbglR3Init(void);
551VBGLR3DECL(int) VbglR3InitUser(void);
552VBGLR3DECL(void) VbglR3Term(void);
553# ifdef IPRT_INCLUDED_time_h
554VBGLR3DECL(int) VbglR3GetHostTime(PRTTIMESPEC pTime);
555# endif
556VBGLR3DECL(int) VbglR3InterruptEventWaits(void);
557VBGLR3DECL(int) VbglR3WriteLog(const char *pch, size_t cch);
558VBGLR3DECL(int) VbglR3CtlFilterMask(uint32_t fOr, uint32_t fNot);
559VBGLR3DECL(int) VbglR3Daemonize(bool fNoChDir, bool fNoClose, bool fRespawn, unsigned *pcRespawn);
560VBGLR3DECL(int) VbglR3PidFile(const char *pszPath, PRTFILE phFile);
561VBGLR3DECL(void) VbglR3ClosePidFile(const char *pszPath, RTFILE hFile);
562VBGLR3DECL(int) VbglR3SetGuestCaps(uint32_t fOr, uint32_t fNot);
563VBGLR3DECL(int) VbglR3AcquireGuestCaps(uint32_t fOr, uint32_t fNot, bool fConfig);
564VBGLR3DECL(int) VbglR3WaitEvent(uint32_t fMask, uint32_t cMillies, uint32_t *pfEvents);
565
566VBGLR3DECL(int) VbglR3ReportAdditionsStatus(VBoxGuestFacilityType Facility, VBoxGuestFacilityStatus StatusCurrent,
567 uint32_t fFlags);
568VBGLR3DECL(int) VbglR3GetAdditionsVersion(char **ppszVer, char **ppszVerEx, char **ppszRev);
569VBGLR3DECL(int) VbglR3GetAdditionsInstallationPath(char **ppszPath);
570VBGLR3DECL(int) VbglR3GetSessionId(uint64_t *pu64IdSession);
571
572/** @} */
573
574# ifdef VBOX_WITH_SHARED_CLIPBOARD
575/** @name Shared Clipboard
576 * @{ */
577
578/**
579 * The context required for either retrieving or sending a HGCM shared clipboard
580 * commands from or to the host.
581 *
582 * @todo This struct could be handy if we want to implement a second
583 * communication channel, e.g. via TCP/IP. Use a union for the HGCM stuff then.
584 */
585typedef struct VBGLR3SHCLCMDCTX
586{
587 /** HGCM client ID to use for communication.
588 * This is set by VbglR3ClipboardConnectEx(). */
589 uint32_t idClient;
590 /** This is @c false if both VBOX_SHCL_HF_0_CONTEXT_ID and
591 * VBOX_SHCL_GF_0_CONTEXT_ID are set, otherwise @c true and only the old
592 * protocol (< 6.1) should be used.
593 * This is set by VbglR3ClipboardConnectEx(). */
594 bool fUseLegacyProtocol;
595 /** Host feature flags (VBOX_SHCL_HF_XXX).
596 * This is set by VbglR3ClipboardConnectEx(). */
597 uint64_t fHostFeatures;
598 /** The guest feature flags reported to the host (VBOX_SHCL_GF_XXX).
599 * This is set by VbglR3ClipboardConnectEx(). */
600 uint64_t fGuestFeatures;
601# ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS
602 /** Default chunk size (in bytes).
603 * This is set by VbglR3ClipboardConnectEx(). */
604 uint32_t cbChunkSize;
605 /** Max chunk size (in bytes).
606 * This is set by VbglR3ClipboardConnectEx(). */
607 uint32_t cbMaxChunkSize;
608# endif
609
610 /** The context ID - input or/and output depending on the operation. */
611 uint64_t idContext;
612 /** OUT: Number of parameters retrieved.
613 * This is set by ??. */
614 uint32_t cParmsRecived;
615
616# ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS
617 /** Callback table to use for all transfers. */
618 SHCLTRANSFERCALLBACKS Callbacks;
619# endif
620} VBGLR3SHCLCMDCTX;
621/** Pointer to a shared clipboard context for Vbgl. */
622typedef VBGLR3SHCLCMDCTX *PVBGLR3SHCLCMDCTX;
623
624/**
625 * Enumeration specifying a Shared Clipboard event type.
626 * @todo r=bird: Surely, this isn't necessary?!
627 */
628typedef enum _VBGLR3CLIPBOARDEVENTTYPE
629{
630 /** No event needed / defined. */
631 VBGLR3CLIPBOARDEVENTTYPE_NONE = 0,
632 /** Host reports available clipboard formats to the guest. */
633 VBGLR3CLIPBOARDEVENTTYPE_REPORT_FORMATS,
634 /** Host wants to read Shared Clipboard data from the guest. */
635 VBGLR3CLIPBOARDEVENTTYPE_READ_DATA,
636 /** Terminates the Shared Clipboard service. */
637 VBGLR3CLIPBOARDEVENTTYPE_QUIT,
638# ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS
639 /** Reports a transfer status to the guest. */
640 VBGLR3CLIPBOARDEVENTTYPE_TRANSFER_STATUS,
641# endif
642 /** Blow the type up to 32-bit. */
643 VBGLR3CLIPBOARDEVENTTYPE_32BIT_HACK = 0x7fffffff
644} VBGLR3CLIPBOARDEVENTTYPE;
645
646/**
647 * Structure for keeping a Shared Clipboard VbglR3 event.
648 */
649typedef struct _VBGLR3CLIPBOARDEVENT
650{
651 /** The event type the union contains. */
652 VBGLR3CLIPBOARDEVENTTYPE enmType;
653 /** Command context bound to this event. */
654 VBGLR3SHCLCMDCTX cmdCtx;
655 union
656 {
657 /** Reports available formats from the host. */
658 SHCLFORMATS fReportedFormats;
659 /** Reports that data needs to be read from the guest. */
660 SHCLFORMAT fReadData;
661# ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS
662 /** Reports a transfer status to the guest. */
663 struct
664 {
665 /** ID of the trnasfer. */
666 SHCLTRANSFERID uID;
667 /** Transfer direction. */
668 SHCLTRANSFERDIR enmDir;
669 /** Additional reproting information. */
670 SHCLTRANSFERREPORT Report;
671 } TransferStatus;
672# endif /* VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS */
673 } u;
674} VBGLR3CLIPBOARDEVENT, *PVBGLR3CLIPBOARDEVENT;
675typedef const PVBGLR3CLIPBOARDEVENT CPVBGLR3CLIPBOARDEVENT;
676
677/** @todo r=bird: I'm not sure it is appropriate for the VbglR3 to use types
678 * from VBox/GuestHost/SharedClipboard*.h, doesn't seem clean to me. */
679
680VBGLR3DECL(int) VbglR3ClipboardConnect(HGCMCLIENTID *pidClient);
681VBGLR3DECL(int) VbglR3ClipboardDisconnect(HGCMCLIENTID idClient);
682VBGLR3DECL(int) VbglR3ClipboardGetHostMsgOld(HGCMCLIENTID idClient, uint32_t *pMsg, uint32_t *pfFormats);
683VBGLR3DECL(int) VbglR3ClipboardReadData(HGCMCLIENTID idClient, uint32_t fFormat, void *pv, uint32_t cb, uint32_t *pcb);
684VBGLR3DECL(int) VbglR3ClipboardReadDataEx(PVBGLR3SHCLCMDCTX pCtx, SHCLFORMAT uFormat, void *pvData, uint32_t cbData, uint32_t *pcbRead);
685VBGLR3DECL(int) VbglR3ClipboardWriteData(HGCMCLIENTID idClient, uint32_t fFormat, void *pv, uint32_t cb);
686VBGLR3DECL(int) VbglR3ClipboardWriteDataEx(PVBGLR3SHCLCMDCTX pCtx, SHCLFORMAT uFormat, void *pvData, uint32_t cbData);
687VBGLR3DECL(int) VbglR3ClipboardReportFormats(HGCMCLIENTID idClient, uint32_t fFormats);
688
689VBGLR3DECL(int) VbglR3ClipboardConnectEx(PVBGLR3SHCLCMDCTX pCtx, uint64_t fGuestFeatures);
690VBGLR3DECL(int) VbglR3ClipboardDisconnectEx(PVBGLR3SHCLCMDCTX pCtx);
691
692VBGLR3DECL(int) VbglR3ClipboardReportFeatures(uint32_t idClient, uint64_t fGuestFeatures, uint64_t *pfHostFeatures);
693VBGLR3DECL(int) VbglR3ClipboardQueryFeatures(uint32_t idClient, uint64_t *pfHostFeatures);
694VBGLR3DECL(int) VbglR3ClipboardMsgPeekWait(PVBGLR3SHCLCMDCTX pCtx, uint32_t *pidMsg, uint32_t *pcParameters, uint64_t *pidRestoreCheck);
695VBGLR3DECL(int) VbglR3ClipboardEventGetNext(uint32_t idMsg, uint32_t cParms, PVBGLR3SHCLCMDCTX pCtx, PVBGLR3CLIPBOARDEVENT pEvent);
696VBGLR3DECL(void) VbglR3ClipboardEventFree(PVBGLR3CLIPBOARDEVENT pEvent);
697
698VBGLR3DECL(int) VbglR3ClipboardWriteError(HGCMCLIENTID idClient, int rcErr);
699
700# ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS
701VBGLR3DECL(int) VbglR3ClipboardEventGetNextEx(uint32_t idMsg, uint32_t cParms, PVBGLR3SHCLCMDCTX pCtx, PSHCLTRANSFERCTX pTransferCtx, PVBGLR3CLIPBOARDEVENT pEvent);
702
703VBGLR3DECL(int) VbglR3ClipboardTransferStatusReply(PVBGLR3SHCLCMDCTX pCtx, PSHCLTRANSFER pTransfer, SHCLTRANSFERSTATUS uStatus);
704
705VBGLR3DECL(int) VbglR3ClipboardRootListRead(PVBGLR3SHCLCMDCTX pCtx, PSHCLROOTLIST *ppRootList);
706
707VBGLR3DECL(int) VbglR3ClipboardRootListHdrReadReq(PVBGLR3SHCLCMDCTX pCtx, uint32_t *pfRoots);
708VBGLR3DECL(int) VbglR3ClipboardRootListHdrReadReply(PVBGLR3SHCLCMDCTX pCtx, PSHCLROOTLIST pRootList);
709VBGLR3DECL(int) VbglR3ClipboardRootsWrite(PVBGLR3SHCLCMDCTX pCtx, PSHCLROOTLISTHDR pRoots);
710
711VBGLR3DECL(int) VbglR3ClipboardListOpenSend(PVBGLR3SHCLCMDCTX pCtx, PSHCLLISTOPENPARMS pOpenParms, PSHCLLISTHANDLE phList);
712VBGLR3DECL(int) VbglR3ClipboardListOpenRecv(PVBGLR3SHCLCMDCTX pCtx, PSHCLLISTOPENPARMS pOpenParms);
713VBGLR3DECL(int) VbglR3ClipboardListOpenReply(PVBGLR3SHCLCMDCTX pCtx, int rcReply, SHCLLISTHANDLE hList);
714
715VBGLR3DECL(int) VbglR3ClipboardListCloseSend(PVBGLR3SHCLCMDCTX pCtx, SHCLLISTHANDLE hList);
716VBGLR3DECL(int) VbglR3ClipboardListCloseRecv(PVBGLR3SHCLCMDCTX pCtx, PSHCLLISTHANDLE phList);
717
718VBGLR3DECL(int) VbglR3ClipboardListHdrWrite(PVBGLR3SHCLCMDCTX pCtx, SHCLLISTHANDLE hList, PSHCLLISTHDR pListHdr);
719VBGLR3DECL(int) VbglR3ClipboardListEntryWrite(PVBGLR3SHCLCMDCTX pCtx, SHCLLISTHANDLE hList, PSHCLLISTENTRY pListEntry);
720
721VBGLR3DECL(int) VbglR3ClipboardObjOpenRecv(PVBGLR3SHCLCMDCTX pCtx, PSHCLOBJOPENCREATEPARMS pCreateParms);
722VBGLR3DECL(int) VbglR3ClipboardObjOpenReply(PVBGLR3SHCLCMDCTX pCtx, int rcReply, SHCLOBJHANDLE hObj);
723VBGLR3DECL(int) VbglR3ClipboardObjOpenSend(PVBGLR3SHCLCMDCTX pCtx, PSHCLOBJOPENCREATEPARMS pCreateParms,
724 PSHCLOBJHANDLE phObj);
725
726VBGLR3DECL(int) VbglR3ClipboardObjCloseRecv(PVBGLR3SHCLCMDCTX pCtx, PSHCLOBJHANDLE phObj);
727VBGLR3DECL(int) VbglR3ClipboardObjCloseReply(PVBGLR3SHCLCMDCTX pCtx, int rcReply, SHCLOBJHANDLE hObj);
728VBGLR3DECL(int) VbglR3ClipboardObjCloseSend(PVBGLR3SHCLCMDCTX pCtx, SHCLOBJHANDLE hObj);
729
730VBGLR3DECL(int) VbglR3ClipboardObjReadRecv(PVBGLR3SHCLCMDCTX pCtx, PSHCLOBJHANDLE phObj, uint32_t pcbToRead,
731 uint32_t *pfFlags);
732VBGLR3DECL(int) VbglR3ClipboardObjReadSend(PVBGLR3SHCLCMDCTX pCtx, SHCLOBJHANDLE hObj, void *pvBuf, uint32_t cbBuf,
733 uint32_t *pcbRead);
734VBGLR3DECL(int) VbglR3ClipboardObjWriteSend(PVBGLR3SHCLCMDCTX pCtx, SHCLOBJHANDLE hObj, void *pvBuf, uint32_t cbBuf,
735 uint32_t *pcbWritten);
736# endif /* VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS */
737/** @} */
738# endif /* VBOX_WITH_SHARED_CLIPBOARD */
739
740/** @name Seamless mode
741 * @{ */
742VBGLR3DECL(int) VbglR3SeamlessSetCap(bool fState);
743VBGLR3DECL(int) VbglR3SeamlessWaitEvent(VMMDevSeamlessMode *pMode);
744VBGLR3DECL(int) VbglR3SeamlessSendRects(uint32_t cRects, PRTRECT pRects);
745VBGLR3DECL(int) VbglR3SeamlessSendMonitorPositions(uint32_t cPositions, PRTPOINT pPositions);
746VBGLR3DECL(int) VbglR3SeamlessGetLastEvent(VMMDevSeamlessMode *pMode);
747
748/** @} */
749
750/** @name Mouse
751 * @{ */
752VBGLR3DECL(int) VbglR3GetMouseStatus(uint32_t *pfFeatures, uint32_t *px, uint32_t *py);
753VBGLR3DECL(int) VbglR3SetMouseStatus(uint32_t fFeatures);
754/** @} */
755
756/** @name Video
757 * @{ */
758VBGLR3DECL(int) VbglR3VideoAccelEnable(bool fEnable);
759VBGLR3DECL(int) VbglR3VideoAccelFlush(void);
760VBGLR3DECL(int) VbglR3SetPointerShape(uint32_t fFlags, uint32_t xHot, uint32_t yHot, uint32_t cx, uint32_t cy,
761 const void *pvImg, size_t cbImg);
762VBGLR3DECL(int) VbglR3SetPointerShapeReq(struct VMMDevReqMousePointer *pReq);
763/** @} */
764
765/** @name Display
766 * @{ */
767/** The folder for the video mode hint unix domain socket on Unix-like guests.
768 * @note This can be safely changed as all users are rebuilt in lock-step. */
769#define VBGLR3HOSTDISPSOCKETPATH "/tmp/.VBoxService"
770/** The path to the video mode hint unix domain socket on Unix-like guests. */
771#define VBGLR3HOSTDISPSOCKET VBGLR3VIDEOMODEHINTSOCKETPATH "/VideoModeHint"
772
773/** The folder for saving video mode hints to between sessions. */
774#define VBGLR3HOSTDISPSAVEDMODEPATH "/var/lib/VBoxGuestAdditions"
775/** The path to the file for saving video mode hints to between sessions. */
776#define VBGLR3HOSTDISPSAVEDMODE VBGLR3HOSTDISPSAVEDMODEPATH "/SavedVideoModes"
777
778VBGLR3DECL(int) VbglR3GetDisplayChangeRequest(uint32_t *pcx, uint32_t *pcy, uint32_t *pcBits, uint32_t *piDisplay,
779 uint32_t *pdx, uint32_t *pdy, bool *pfEnabled, bool *pfChangeOrigin, bool fAck);
780VBGLR3DECL(int) VbglR3GetDisplayChangeRequestMulti(uint32_t cDisplaysIn, uint32_t *pcDisplaysOut,
781 VMMDevDisplayDef *paDisplays, bool fAck);
782VBGLR3DECL(bool) VbglR3HostLikesVideoMode(uint32_t cx, uint32_t cy, uint32_t cBits);
783VBGLR3DECL(int) VbglR3VideoModeGetHighestSavedScreen(unsigned *pcScreen);
784VBGLR3DECL(int) VbglR3SaveVideoMode(unsigned cScreen, unsigned cx, unsigned cy, unsigned cBits,
785 unsigned x, unsigned y, bool fEnabled);
786VBGLR3DECL(int) VbglR3RetrieveVideoMode(unsigned cScreen, unsigned *pcx, unsigned *pcy, unsigned *pcBits,
787 unsigned *px, unsigned *py, bool *pfEnabled);
788/** @} */
789
790/** @name VRDP
791 * @{ */
792VBGLR3DECL(int) VbglR3VrdpGetChangeRequest(bool *pfActive, uint32_t *puExperienceLevel);
793/** @} */
794
795/** @name VM Statistics
796 * @{ */
797VBGLR3DECL(int) VbglR3StatQueryInterval(uint32_t *pu32Interval);
798# if defined(VBOX_INCLUDED_VMMDev_h) || defined(DOXYGEN_RUNNING)
799VBGLR3DECL(int) VbglR3StatReport(VMMDevReportGuestStats *pReq);
800# endif
801/** @} */
802
803/** @name Memory ballooning
804 * @{ */
805VBGLR3DECL(int) VbglR3MemBalloonRefresh(uint32_t *pcChunks, bool *pfHandleInR3);
806VBGLR3DECL(int) VbglR3MemBalloonChange(void *pv, bool fInflate);
807/** @} */
808
809/** @name Core Dump
810 * @{ */
811VBGLR3DECL(int) VbglR3WriteCoreDump(void);
812
813/** @} */
814
815# ifdef VBOX_WITH_GUEST_PROPS
816/** @name Guest properties
817 * @{ */
818/** @todo Docs. */
819typedef struct VBGLR3GUESTPROPENUM VBGLR3GUESTPROPENUM;
820/** @todo Docs. */
821typedef VBGLR3GUESTPROPENUM *PVBGLR3GUESTPROPENUM;
822VBGLR3DECL(int) VbglR3GuestPropConnect(uint32_t *pidClient);
823VBGLR3DECL(int) VbglR3GuestPropDisconnect(HGCMCLIENTID idClient);
824VBGLR3DECL(int) VbglR3GuestPropWrite(HGCMCLIENTID idClient, const char *pszName, const char *pszValue, const char *pszFlags);
825VBGLR3DECL(int) VbglR3GuestPropWriteValue(HGCMCLIENTID idClient, const char *pszName, const char *pszValue);
826VBGLR3DECL(int) VbglR3GuestPropWriteValueV(HGCMCLIENTID idClient, const char *pszName,
827 const char *pszValueFormat, va_list va) RT_IPRT_FORMAT_ATTR(3, 0);
828VBGLR3DECL(int) VbglR3GuestPropWriteValueF(HGCMCLIENTID idClient, const char *pszName,
829 const char *pszValueFormat, ...) RT_IPRT_FORMAT_ATTR(3, 4);
830VBGLR3DECL(int) VbglR3GuestPropRead(HGCMCLIENTID idClient, const char *pszName, void *pvBuf, uint32_t cbBuf, char **ppszValue,
831 uint64_t *pu64Timestamp, char **ppszFlags, uint32_t *pcbBufActual);
832VBGLR3DECL(int) VbglR3GuestPropReadValue(uint32_t ClientId, const char *pszName, char *pszValue, uint32_t cchValue,
833 uint32_t *pcchValueActual);
834VBGLR3DECL(int) VbglR3GuestPropReadValueAlloc(HGCMCLIENTID idClient, const char *pszName, char **ppszValue);
835VBGLR3DECL(void) VbglR3GuestPropReadValueFree(char *pszValue);
836VBGLR3DECL(int) VbglR3GuestPropEnumRaw(HGCMCLIENTID idClient, const char *paszPatterns, char *pcBuf, uint32_t cbBuf,
837 uint32_t *pcbBufActual);
838VBGLR3DECL(int) VbglR3GuestPropEnum(HGCMCLIENTID idClient, char const * const *ppaszPatterns, uint32_t cPatterns,
839 PVBGLR3GUESTPROPENUM *ppHandle, char const **ppszName, char const **ppszValue,
840 uint64_t *pu64Timestamp, char const **ppszFlags);
841VBGLR3DECL(int) VbglR3GuestPropEnumNext(PVBGLR3GUESTPROPENUM pHandle, char const **ppszName, char const **ppszValue,
842 uint64_t *pu64Timestamp, char const **ppszFlags);
843VBGLR3DECL(void) VbglR3GuestPropEnumFree(PVBGLR3GUESTPROPENUM pHandle);
844VBGLR3DECL(int) VbglR3GuestPropDelete(HGCMCLIENTID idClient, const char *pszName);
845VBGLR3DECL(int) VbglR3GuestPropDelSet(HGCMCLIENTID idClient, char const * const *papszPatterns, uint32_t cPatterns);
846VBGLR3DECL(int) VbglR3GuestPropWait(HGCMCLIENTID idClient, const char *pszPatterns, void *pvBuf, uint32_t cbBuf,
847 uint64_t u64Timestamp, uint32_t cMillies, char ** ppszName, char **ppszValue,
848 uint64_t *pu64Timestamp, char **ppszFlags, uint32_t *pcbBufActual);
849/** @} */
850
851/** @name Guest user handling / reporting.
852 * @{ */
853VBGLR3DECL(int) VbglR3GuestUserReportState(const char *pszUser, const char *pszDomain, VBoxGuestUserState enmState,
854 uint8_t *pbDetails, uint32_t cbDetails);
855/** @} */
856
857/** @name Host version handling
858 * @{ */
859VBGLR3DECL(int) VbglR3HostVersionCheckForUpdate(HGCMCLIENTID idClient, bool *pfUpdate, char **ppszHostVersion,
860 char **ppszGuestVersion);
861VBGLR3DECL(int) VbglR3HostVersionLastCheckedLoad(HGCMCLIENTID idClient, char **ppszVer);
862VBGLR3DECL(int) VbglR3HostVersionLastCheckedStore(HGCMCLIENTID idClient, const char *pszVer);
863/** @} */
864# endif /* VBOX_WITH_GUEST_PROPS defined */
865
866# ifdef VBOX_WITH_SHARED_FOLDERS
867/** @name Shared folders
868 * @{ */
869/**
870 * Structure containing mapping information for a shared folder.
871 */
872typedef struct VBGLR3SHAREDFOLDERMAPPING
873{
874 /** Mapping status. */
875 uint32_t u32Status;
876 /** Root handle. */
877 uint32_t u32Root;
878} VBGLR3SHAREDFOLDERMAPPING;
879/** Pointer to a shared folder mapping information structure. */
880typedef VBGLR3SHAREDFOLDERMAPPING *PVBGLR3SHAREDFOLDERMAPPING;
881/** Pointer to a const shared folder mapping information structure. */
882typedef VBGLR3SHAREDFOLDERMAPPING const *PCVBGLR3SHAREDFOLDERMAPPING;
883
884VBGLR3DECL(int) VbglR3SharedFolderConnect(uint32_t *pidClient);
885VBGLR3DECL(int) VbglR3SharedFolderDisconnect(HGCMCLIENTID idClient);
886VBGLR3DECL(bool) VbglR3SharedFolderExists(HGCMCLIENTID idClient, const char *pszShareName);
887VBGLR3DECL(int) VbglR3SharedFolderGetMappings(HGCMCLIENTID idClient, bool fAutoMountOnly,
888 PVBGLR3SHAREDFOLDERMAPPING *ppaMappings, uint32_t *pcMappings);
889VBGLR3DECL(void) VbglR3SharedFolderFreeMappings(PVBGLR3SHAREDFOLDERMAPPING paMappings);
890VBGLR3DECL(int) VbglR3SharedFolderGetName(HGCMCLIENTID idClient,uint32_t u32Root, char **ppszName); /**< @todo r=bird: GET functions return the value, not a status code!*/
891VBGLR3DECL(int) VbglR3SharedFolderQueryFolderInfo(HGCMCLIENTID idClient, uint32_t idRoot, uint64_t fQueryFlags,
892 char **ppszName, char **ppszMountPoint,
893 uint64_t *pfFlags, uint32_t *puRootIdVersion);
894VBGLR3DECL(int) VbglR3SharedFolderWaitForMappingsChanges(HGCMCLIENTID idClient, uint32_t uPrevVersion, uint32_t *puCurVersion);
895VBGLR3DECL(int) VbglR3SharedFolderCancelMappingsChangesWaits(HGCMCLIENTID idClient);
896
897VBGLR3DECL(int) VbglR3SharedFolderGetMountPrefix(char **ppszPrefix); /**< @todo r=bird: GET functions return the value, not a status code! */
898VBGLR3DECL(int) VbglR3SharedFolderGetMountDir(char **ppszDir); /**< @todo r=bird: GET functions return the value, not a status code! */
899/** @} */
900# endif /* VBOX_WITH_SHARED_FOLDERS defined */
901
902# ifdef VBOX_WITH_GUEST_CONTROL
903/** @name Guest control
904 * @{ */
905
906/**
907 * Structure containing the context required for
908 * either retrieving or sending a HGCM guest control
909 * commands from or to the host.
910 *
911 * Note: Do not change parameter order without also
912 * adapting all structure initializers.
913 */
914typedef struct VBGLR3GUESTCTRLCMDCTX
915{
916 /** @todo This struct could be handy if we want to implement
917 * a second communication channel, e.g. via TCP/IP.
918 * Use a union for the HGCM stuff then. */
919
920 /** IN: HGCM client ID to use for communication. */
921 uint32_t uClientID;
922 /** IN/OUT: Context ID to retrieve or to use. */
923 uint32_t uContextID;
924 /** IN: Protocol version to use. */
925 uint32_t uProtocol;
926 /** OUT: Number of parameters retrieved. */
927 uint32_t uNumParms;
928} VBGLR3GUESTCTRLCMDCTX, *PVBGLR3GUESTCTRLCMDCTX;
929
930/**
931 * Structure holding information for starting a guest
932 * session.
933 */
934typedef struct VBGLR3GUESTCTRLSESSIONSTARTUPINFO
935{
936 /** The session's protocol version to use. */
937 uint32_t uProtocol;
938 /** The session's ID. */
939 uint32_t uSessionID;
940 /** User name (account) to start the guest session under. */
941 char *pszUser;
942 /** Size (in bytes) of allocated pszUser. */
943 uint32_t cbUser;
944 /** Password of specified user name (account). */
945 char *pszPassword;
946 /** Size (in bytes) of allocated pszPassword. */
947 uint32_t cbPassword;
948 /** Domain of the user account. */
949 char *pszDomain;
950 /** Size (in bytes) of allocated pszDomain. */
951 uint32_t cbDomain;
952 /** Session creation flags.
953 * @sa VBOXSERVICECTRLSESSIONSTARTUPFLAG_* flags. */
954 uint32_t fFlags;
955} VBGLR3GUESTCTRLSESSIONSTARTUPINFO;
956/** Pointer to a guest session startup info. */
957typedef VBGLR3GUESTCTRLSESSIONSTARTUPINFO *PVBGLR3GUESTCTRLSESSIONSTARTUPINFO;
958
959/**
960 * Structure holding information for starting a guest
961 * process.
962 */
963typedef struct VBGLR3GUESTCTRLPROCSTARTUPINFO
964{
965 /** Full qualified path of process to start (without arguments).
966 * Note: This is *not* argv[0]! */
967 char *pszCmd;
968 /** Size (in bytes) of allocated pszCmd. */
969 uint32_t cbCmd;
970 /** Process execution flags. @sa */
971 uint32_t fFlags;
972 /** Command line arguments. */
973 char *pszArgs;
974 /** Size (in bytes) of allocated pszArgs. */
975 uint32_t cbArgs;
976 /** Number of arguments specified in pszArgs. */
977 uint32_t cArgs;
978 /** String of environment variables ("FOO=BAR") to pass to the process
979 * to start. */
980 char *pszEnv;
981 /** Size (in bytes) of environment variables block. */
982 uint32_t cbEnv;
983 /** Number of environment variables specified in pszEnv. */
984 uint32_t cEnvVars;
985 /** User name (account) to start the process under. */
986 char *pszUser;
987 /** Size (in bytes) of allocated pszUser. */
988 uint32_t cbUser;
989 /** Password of specified user name (account). */
990 char *pszPassword;
991 /** Size (in bytes) of allocated pszPassword. */
992 uint32_t cbPassword;
993 /** Domain to be used for authenticating the specified user name (account). */
994 char *pszDomain;
995 /** Size (in bytes) of allocated pszDomain. */
996 uint32_t cbDomain;
997 /** Time limit (in ms) of the process' life time. */
998 uint32_t uTimeLimitMS;
999 /** Process priority. */
1000 uint32_t uPriority;
1001 /** Process affinity block. At the moment we support
1002 * up to 4 blocks, that is, 4 * 64 = 256 CPUs total. */
1003 uint64_t uAffinity[4];
1004 /** Number of used process affinity blocks. */
1005 uint32_t cAffinity;
1006} VBGLR3GUESTCTRLPROCSTARTUPINFO;
1007/** Pointer to a guest process startup info. */
1008typedef VBGLR3GUESTCTRLPROCSTARTUPINFO *PVBGLR3GUESTCTRLPROCSTARTUPINFO;
1009
1010/* General message handling on the guest. */
1011VBGLR3DECL(int) VbglR3GuestCtrlConnect(uint32_t *pidClient);
1012VBGLR3DECL(int) VbglR3GuestCtrlDisconnect(uint32_t idClient);
1013VBGLR3DECL(bool) VbglR3GuestCtrlSupportsOptimizations(uint32_t idClient);
1014VBGLR3DECL(int) VbglR3GuestCtrlMakeMeMaster(uint32_t idClient);
1015VBGLR3DECL(int) VbglR3GuestCtrlReportFeatures(uint32_t idClient, uint64_t fGuestFeatures, uint64_t *pfHostFeatures);
1016VBGLR3DECL(int) VbglR3GuestCtrlQueryFeatures(uint32_t idClient, uint64_t *pfHostFeatures);
1017VBGLR3DECL(int) VbglR3GuestCtrlMsgFilterSet(uint32_t uClientId, uint32_t uValue, uint32_t uMaskAdd, uint32_t uMaskRemove);
1018VBGLR3DECL(int) VbglR3GuestCtrlMsgReply(PVBGLR3GUESTCTRLCMDCTX pCtx, int rc);
1019VBGLR3DECL(int) VbglR3GuestCtrlMsgReplyEx(PVBGLR3GUESTCTRLCMDCTX pCtx, int rc, uint32_t uType,
1020 void *pvPayload, uint32_t cbPayload);
1021VBGLR3DECL(int) VbglR3GuestCtrlMsgSkip(uint32_t idClient, int rcSkip, uint32_t idMsg);
1022VBGLR3DECL(int) VbglR3GuestCtrlMsgSkipOld(uint32_t uClientId);
1023VBGLR3DECL(int) VbglR3GuestCtrlMsgPeekWait(uint32_t idClient, uint32_t *pidMsg, uint32_t *pcParameters, uint64_t *pidRestoreCheck);
1024VBGLR3DECL(int) VbglR3GuestCtrlCancelPendingWaits(HGCMCLIENTID idClient);
1025/* Guest session handling. */
1026VBGLR3DECL(int) VbglR3GuestCtrlSessionStartupInfoInit(PVBGLR3GUESTCTRLSESSIONSTARTUPINFO pStartupInfo);
1027VBGLR3DECL(int) VbglR3GuestCtrlSessionStartupInfoInitEx(PVBGLR3GUESTCTRLSESSIONSTARTUPINFO pStartupInfo, size_t cbUser, size_t cbPassword, size_t cbDomain);
1028VBGLR3DECL(void) VbglR3GuestCtrlSessionStartupInfoDestroy(PVBGLR3GUESTCTRLSESSIONSTARTUPINFO pStartupInfo);
1029VBGLR3DECL(void) VbglR3GuestCtrlSessionStartupInfoFree(PVBGLR3GUESTCTRLSESSIONSTARTUPINFO pStartupInfo);
1030VBGLR3DECL(PVBGLR3GUESTCTRLSESSIONSTARTUPINFO) VbglR3GuestCtrlSessionStartupInfoDup(PVBGLR3GUESTCTRLSESSIONSTARTUPINFO pStartupInfo);
1031VBGLR3DECL(int) VbglR3GuestCtrlSessionPrepare(uint32_t idClient, uint32_t idSession, void const *pvKey, uint32_t cbKey);
1032VBGLR3DECL(int) VbglR3GuestCtrlSessionAccept(uint32_t idClient, uint32_t idSession, void const *pvKey, uint32_t cbKey);
1033VBGLR3DECL(int) VbglR3GuestCtrlSessionCancelPrepared(uint32_t idClient, uint32_t idSession);
1034VBGLR3DECL(int) VbglR3GuestCtrlSessionHasChanged(uint32_t idClient, uint64_t idNewControlSession);
1035VBGLR3DECL(int) VbglR3GuestCtrlSessionClose(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t fFlags);
1036VBGLR3DECL(int) VbglR3GuestCtrlSessionNotify(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uType, int32_t iResult);
1037VBGLR3DECL(int) VbglR3GuestCtrlSessionGetOpen(PVBGLR3GUESTCTRLCMDCTX pCtx, PVBGLR3GUESTCTRLSESSIONSTARTUPINFO *ppStartupInfo);
1038VBGLR3DECL(int) VbglR3GuestCtrlSessionGetClose(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *pfFlags, uint32_t *pidSession);
1039/* Guest path handling. */
1040VBGLR3DECL(int) VbglR3GuestCtrlPathGetRename(PVBGLR3GUESTCTRLCMDCTX pCtx, char *pszSource, uint32_t cbSource, char *pszDest,
1041 uint32_t cbDest, uint32_t *pfFlags);
1042VBGLR3DECL(int) VbglR3GuestCtrlPathGetUserDocuments(PVBGLR3GUESTCTRLCMDCTX pCtx);
1043VBGLR3DECL(int) VbglR3GuestCtrlPathGetUserHome(PVBGLR3GUESTCTRLCMDCTX pCtx);
1044VBGLR3DECL(int) VbglR3GuestCtrlGetShutdown(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *pfAction);
1045/* Guest process execution. */
1046VBGLR3DECL(int) VbglR3GuestCtrlProcStartupInfoInit(PVBGLR3GUESTCTRLPROCSTARTUPINFO pStartupInfo);
1047VBGLR3DECL(int) VbglR3GuestCtrlProcStartupInfoInitEx(PVBGLR3GUESTCTRLPROCSTARTUPINFO pStartupInfo, size_t cbCmd, size_t cbUser, size_t cbPassword, size_t cbDomain, size_t cbArgs, size_t cbEnv);
1048VBGLR3DECL(void) VbglR3GuestCtrlProcStartupInfoDestroy(PVBGLR3GUESTCTRLPROCSTARTUPINFO pStartupInfo);
1049VBGLR3DECL(void) VbglR3GuestCtrlProcStartupInfoFree(PVBGLR3GUESTCTRLPROCSTARTUPINFO pStartupInfo);
1050VBGLR3DECL(PVBGLR3GUESTCTRLPROCSTARTUPINFO) VbglR3GuestCtrlProcStartupInfoDup(PVBGLR3GUESTCTRLPROCSTARTUPINFO pStartupInfo);
1051VBGLR3DECL(int) VbglR3GuestCtrlProcGetStart(PVBGLR3GUESTCTRLCMDCTX pCtx, PVBGLR3GUESTCTRLPROCSTARTUPINFO *ppStartupInfo);
1052VBGLR3DECL(int) VbglR3GuestCtrlProcGetTerminate(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puPID);
1053VBGLR3DECL(int) VbglR3GuestCtrlProcGetInput(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puPID, uint32_t *pfFlags, void *pvData,
1054 uint32_t cbData, uint32_t *pcbSize);
1055VBGLR3DECL(int) VbglR3GuestCtrlProcGetOutput(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puPID, uint32_t *puHandle, uint32_t *pfFlags);
1056VBGLR3DECL(int) VbglR3GuestCtrlProcGetWaitFor(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puPID, uint32_t *puWaitFlags,
1057 uint32_t *puTimeoutMS);
1058/* Guest native directory handling. */
1059VBGLR3DECL(int) VbglR3GuestCtrlDirGetRemove(PVBGLR3GUESTCTRLCMDCTX pCtx, char *pszPath, uint32_t cbPath, uint32_t *pfFlags);
1060/* Guest native file handling. */
1061VBGLR3DECL(int) VbglR3GuestCtrlFileGetOpen(PVBGLR3GUESTCTRLCMDCTX pCtx, char *pszFileName, uint32_t cbFileName, char *pszOpenMode,
1062 uint32_t cbOpenMode, char *pszDisposition, uint32_t cbDisposition, char *pszSharing,
1063 uint32_t cbSharing, uint32_t *puCreationMode, uint64_t *puOffset);
1064VBGLR3DECL(int) VbglR3GuestCtrlFileGetClose(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle);
1065VBGLR3DECL(int) VbglR3GuestCtrlFileGetRead(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle, uint32_t *puToRead);
1066VBGLR3DECL(int) VbglR3GuestCtrlFileGetReadAt(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle,
1067 uint32_t *puToRead, uint64_t *poffRead);
1068VBGLR3DECL(int) VbglR3GuestCtrlFileGetWrite(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle,
1069 void *pvData, uint32_t cbData, uint32_t *pcbActual);
1070VBGLR3DECL(int) VbglR3GuestCtrlFileGetWriteAt(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle, void *pvData, uint32_t cbData,
1071 uint32_t *pcbActual, uint64_t *poffWrite);
1072VBGLR3DECL(int) VbglR3GuestCtrlFileGetSeek(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle,
1073 uint32_t *puSeekMethod, uint64_t *poffSeek);
1074VBGLR3DECL(int) VbglR3GuestCtrlFileGetTell(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle);
1075VBGLR3DECL(int) VbglR3GuestCtrlFileGetSetSize(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle, uint64_t *pcbNew);
1076
1077/* Guest -> Host. */
1078VBGLR3DECL(int) VbglR3GuestCtrlFileCbOpen(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, uint32_t uFileHandle);
1079VBGLR3DECL(int) VbglR3GuestCtrlFileCbClose(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc);
1080VBGLR3DECL(int) VbglR3GuestCtrlFileCbError(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc);
1081VBGLR3DECL(int) VbglR3GuestCtrlFileCbRead(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, void *pvData, uint32_t cbData);
1082VBGLR3DECL(int) VbglR3GuestCtrlFileCbReadOffset(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc,
1083 void *pvData, uint32_t cbData, int64_t offNew);
1084VBGLR3DECL(int) VbglR3GuestCtrlFileCbWrite(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, uint32_t cbWritten);
1085VBGLR3DECL(int) VbglR3GuestCtrlFileCbWriteOffset(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, uint32_t cbWritten, int64_t offNew);
1086
1087VBGLR3DECL(int) VbglR3GuestCtrlFileCbSeek(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, uint64_t offCurrent);
1088VBGLR3DECL(int) VbglR3GuestCtrlFileCbTell(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, uint64_t offCurrent);
1089VBGLR3DECL(int) VbglR3GuestCtrlFileCbSetSize(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, uint64_t cbNew);
1090VBGLR3DECL(int) VbglR3GuestCtrlProcCbStatus(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uPID, uint32_t uStatus, uint32_t fFlags,
1091 void *pvData, uint32_t cbData);
1092VBGLR3DECL(int) VbglR3GuestCtrlProcCbOutput(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uPID, uint32_t uHandle, uint32_t fFlags,
1093 void *pvData, uint32_t cbData);
1094VBGLR3DECL(int) VbglR3GuestCtrlProcCbStatusInput(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t u32PID, uint32_t uStatus,
1095 uint32_t fFlags, uint32_t cbWritten);
1096
1097/** @} */
1098# endif /* VBOX_WITH_GUEST_CONTROL defined */
1099
1100/** @name Auto-logon handling
1101 * @{ */
1102VBGLR3DECL(int) VbglR3AutoLogonReportStatus(VBoxGuestFacilityStatus enmStatus);
1103VBGLR3DECL(bool) VbglR3AutoLogonIsRemoteSession(void);
1104/** @} */
1105
1106/** @name User credentials handling
1107 * @{ */
1108VBGLR3DECL(int) VbglR3CredentialsQueryAvailability(void);
1109VBGLR3DECL(int) VbglR3CredentialsRetrieve(char **ppszUser, char **ppszPassword, char **ppszDomain);
1110VBGLR3DECL(int) VbglR3CredentialsRetrieveUtf16(PRTUTF16 *ppwszUser, PRTUTF16 *ppwszPassword, PRTUTF16 *ppwszDomain);
1111VBGLR3DECL(void) VbglR3CredentialsDestroy(char *pszUser, char *pszPassword, char *pszDomain, uint32_t cPasses);
1112VBGLR3DECL(void) VbglR3CredentialsDestroyUtf16(PRTUTF16 pwszUser, PRTUTF16 pwszPassword, PRTUTF16 pwszDomain,
1113 uint32_t cPasses);
1114/** @} */
1115
1116/** @name CPU hotplug monitor
1117 * @{ */
1118VBGLR3DECL(int) VbglR3CpuHotPlugInit(void);
1119VBGLR3DECL(int) VbglR3CpuHotPlugTerm(void);
1120VBGLR3DECL(int) VbglR3CpuHotPlugWaitForEvent(VMMDevCpuEventType *penmEventType, uint32_t *pidCpuCore, uint32_t *pidCpuPackage);
1121/** @} */
1122
1123/** @name Page sharing
1124 * @{ */
1125struct VMMDEVSHAREDREGIONDESC;
1126VBGLR3DECL(int) VbglR3RegisterSharedModule(char *pszModuleName, char *pszVersion, RTGCPTR64 GCBaseAddr, uint32_t cbModule,
1127 unsigned cRegions, struct VMMDEVSHAREDREGIONDESC *pRegions);
1128VBGLR3DECL(int) VbglR3UnregisterSharedModule(char *pszModuleName, char *pszVersion, RTGCPTR64 GCBaseAddr, uint32_t cbModule);
1129VBGLR3DECL(int) VbglR3CheckSharedModules(void);
1130VBGLR3DECL(bool) VbglR3PageSharingIsEnabled(void);
1131VBGLR3DECL(int) VbglR3PageIsShared(RTGCPTR pPage, bool *pfShared, uint64_t *puPageFlags);
1132/** @} */
1133
1134# ifdef VBOX_WITH_DRAG_AND_DROP
1135/** @name Drag and Drop
1136 * @{ */
1137/**
1138 * Structure containing the context required for
1139 * either retrieving or sending a HGCM guest drag'n drop
1140 * commands from or to the host.
1141 *
1142 * Note: Do not change parameter order without also
1143 * adapting all structure initializers.
1144 */
1145typedef struct VBGLR3GUESTDNDCMDCTX
1146{
1147 /** @todo This struct could be handy if we want to implement
1148 * a second communication channel, e.g. via TCP/IP.
1149 * Use a union for the HGCM stuff then. */
1150
1151 /** HGCM client ID to use for communication. */
1152 uint32_t uClientID;
1153 /** The VM's current session ID. */
1154 uint64_t uSessionID;
1155 /** Protocol version to use. */
1156 uint32_t uProtocol;
1157 /** Number of parameters retrieved for the current command. */
1158 uint32_t uNumParms;
1159 /** Max chunk size (in bytes) for data transfers. */
1160 uint32_t cbMaxChunkSize;
1161} VBGLR3GUESTDNDCMDCTX, *PVBGLR3GUESTDNDCMDCTX;
1162
1163/**
1164 * Enumeration for specifying the DnD meta data type.
1165 */
1166typedef enum VBGLR3GUESTDNDMETADATATYPE
1167{
1168 /** Unknown meta data type; don't use. */
1169 VBGLR3GUESTDNDMETADATATYPE_UNKNOWN = 0,
1170 /** Raw meta data; can be everything. */
1171 VBGLR3GUESTDNDMETADATATYPE_RAW,
1172 /** Meta data is a transfer list, specifying objects. */
1173 VBGLR3GUESTDNDMETADATATYPE_URI_LIST,
1174 /** Blow the type up to 32-bit. */
1175 VBGLR3GUESTDNDMETADATATYPE_32BIT_HACK = 0x7fffffff
1176} VBGLR3GUESTDNDMETADATATYPE;
1177
1178/**
1179 * Structure for keeping + handling DnD meta data.
1180 *
1181 * Note: Don't treat this struct as POD object, as the union has classes in it.
1182 */
1183typedef struct VBGLR3GUESTDNDMETADATA
1184{
1185 /** The meta data type the union contains. */
1186 VBGLR3GUESTDNDMETADATATYPE enmType;
1187 /** Pointer to actual meta data. */
1188 void *pvMeta;
1189 /** Size (in bytes) of meta data. */
1190 uint32_t cbMeta;
1191} VBGLR3GUESTDNDMETADATA;
1192
1193/** Pointer to VBGLR3GUESTDNDMETADATA. */
1194typedef VBGLR3GUESTDNDMETADATA *PVBGLR3GUESTDNDMETADATA;
1195
1196/** Const pointer to VBGLR3GUESTDNDMETADATA. */
1197typedef const PVBGLR3GUESTDNDMETADATA CPVBGLR3GUESTDNDMETADATA;
1198
1199/**
1200 * Enumeration specifying a DnD event type.
1201 */
1202typedef enum VBGLR3DNDEVENTTYPE
1203{
1204 VBGLR3DNDEVENTTYPE_INVALID = 0,
1205 VBGLR3DNDEVENTTYPE_HG_ERROR = 1,
1206 VBGLR3DNDEVENTTYPE_HG_ENTER = 2,
1207 VBGLR3DNDEVENTTYPE_HG_MOVE = 3,
1208 VBGLR3DNDEVENTTYPE_HG_LEAVE = 4,
1209 VBGLR3DNDEVENTTYPE_HG_DROP = 5,
1210 VBGLR3DNDEVENTTYPE_HG_RECEIVE = 6,
1211 VBGLR3DNDEVENTTYPE_HG_CANCEL = 7,
1212# ifdef VBOX_WITH_DRAG_AND_DROP_GH
1213 VBGLR3DNDEVENTTYPE_GH_ERROR = 100,
1214 VBGLR3DNDEVENTTYPE_GH_REQ_PENDING = 101,
1215 VBGLR3DNDEVENTTYPE_GH_DROP = 102,
1216# endif
1217 /** Blow the type up to 32-bit. */
1218 VBGLR3DNDEVENTTYPE_32BIT_HACK = 0x7fffffff
1219} VBGLR3DNDEVENTTYPE;
1220
1221typedef struct VBGLR3DNDEVENT
1222{
1223 /** The event type the union contains. */
1224 VBGLR3DNDEVENTTYPE enmType;
1225 union
1226 {
1227 struct
1228 {
1229 /** Screen ID this request belongs to. */
1230 uint32_t uScreenID;
1231 /** Format list (UTF-8, \r\n separated). */
1232 char *pszFormats;
1233 /** Size (in bytes) of pszFormats (\0 included). */
1234 uint32_t cbFormats;
1235 /** List of allowed DnD actions. */
1236 VBOXDNDACTIONLIST dndLstActionsAllowed;
1237 } HG_Enter;
1238 struct
1239 {
1240 /** Absolute X position of guest screen. */
1241 uint32_t uXpos;
1242 /** Absolute Y position of guest screen. */
1243 uint32_t uYpos;
1244 /** Default DnD action. */
1245 VBOXDNDACTION dndActionDefault;
1246 } HG_Move;
1247 struct
1248 {
1249 /** Absolute X position of guest screen. */
1250 uint32_t uXpos;
1251 /** Absolute Y position of guest screen. */
1252 uint32_t uYpos;
1253 /** Default DnD action. */
1254 VBOXDNDACTION dndActionDefault;
1255 } HG_Drop;
1256 struct
1257 {
1258 /** Meta data for the operation. */
1259 VBGLR3GUESTDNDMETADATA Meta;
1260 } HG_Received;
1261 struct
1262 {
1263 /** IPRT-style error code. */
1264 int rc;
1265 } HG_Error;
1266# ifdef VBOX_WITH_DRAG_AND_DROP_GH
1267 struct
1268 {
1269 /** Screen ID this request belongs to. */
1270 uint32_t uScreenID;
1271 } GH_IsPending;
1272 struct
1273 {
1274 /** Requested format by the host. */
1275 char *pszFormat;
1276 /** Size (in bytes) of pszFormat (\0 included). */
1277 uint32_t cbFormat;
1278 /** Requested DnD action. */
1279 VBOXDNDACTION dndActionRequested;
1280 } GH_Drop;
1281# endif
1282 } u;
1283} VBGLR3DNDEVENT;
1284typedef VBGLR3DNDEVENT *PVBGLR3DNDEVENT;
1285typedef const PVBGLR3DNDEVENT CPVBGLR3DNDEVENT;
1286
1287VBGLR3DECL(int) VbglR3DnDConnect(PVBGLR3GUESTDNDCMDCTX pCtx);
1288VBGLR3DECL(int) VbglR3DnDDisconnect(PVBGLR3GUESTDNDCMDCTX pCtx);
1289
1290VBGLR3DECL(int) VbglR3DnDEventGetNext(PVBGLR3GUESTDNDCMDCTX pCtx, PVBGLR3DNDEVENT *ppEvent);
1291VBGLR3DECL(void) VbglR3DnDEventFree(PVBGLR3DNDEVENT pEvent);
1292
1293VBGLR3DECL(int) VbglR3DnDHGSendAckOp(PVBGLR3GUESTDNDCMDCTX pCtx, VBOXDNDACTION dndAction);
1294VBGLR3DECL(int) VbglR3DnDHGSendReqData(PVBGLR3GUESTDNDCMDCTX pCtx, const char *pcszFormat);
1295VBGLR3DECL(int) VbglR3DnDHGSendProgress(PVBGLR3GUESTDNDCMDCTX pCtx, uint32_t uStatus, uint8_t uPercent, int rcErr);
1296# ifdef VBOX_WITH_DRAG_AND_DROP_GH
1297VBGLR3DECL(int) VbglR3DnDGHSendAckPending(PVBGLR3GUESTDNDCMDCTX pCtx, VBOXDNDACTION dndActionDefault, VBOXDNDACTIONLIST dndLstActionsAllowed, const char* pcszFormats, uint32_t cbFormats);
1298VBGLR3DECL(int) VbglR3DnDGHSendData(PVBGLR3GUESTDNDCMDCTX pCtx, const char *pszFormat, void *pvData, uint32_t cbData);
1299VBGLR3DECL(int) VbglR3DnDGHSendError(PVBGLR3GUESTDNDCMDCTX pCtx, int rcOp);
1300# endif /* VBOX_WITH_DRAG_AND_DROP_GH */
1301/** @} */
1302# endif /* VBOX_WITH_DRAG_AND_DROP */
1303
1304/* Generic Host Channel Service. */
1305VBGLR3DECL(int) VbglR3HostChannelInit(uint32_t *pidClient);
1306VBGLR3DECL(void) VbglR3HostChannelTerm(uint32_t idClient);
1307VBGLR3DECL(int) VbglR3HostChannelAttach(uint32_t *pu32ChannelHandle, uint32_t u32HGCMClientId,
1308 const char *pszName, uint32_t u32Flags);
1309VBGLR3DECL(void) VbglR3HostChannelDetach(uint32_t u32ChannelHandle, uint32_t u32HGCMClientId);
1310VBGLR3DECL(int) VbglR3HostChannelSend(uint32_t u32ChannelHandle, uint32_t u32HGCMClientId,
1311 void *pvData, uint32_t cbData);
1312VBGLR3DECL(int) VbglR3HostChannelRecv(uint32_t u32ChannelHandle, uint32_t u32HGCMClientId,
1313 void *pvData, uint32_t cbData,
1314 uint32_t *pu32SizeReceived, uint32_t *pu32SizeRemaining);
1315VBGLR3DECL(int) VbglR3HostChannelControl(uint32_t u32ChannelHandle, uint32_t u32HGCMClientId,
1316 uint32_t u32Code, void *pvParm, uint32_t cbParm,
1317 void *pvData, uint32_t cbData, uint32_t *pu32SizeDataReturned);
1318VBGLR3DECL(int) VbglR3HostChannelEventWait(uint32_t *pu32ChannelHandle, uint32_t u32HGCMClientId,
1319 uint32_t *pu32EventId, void *pvParm, uint32_t cbParm,
1320 uint32_t *pu32SizeReturned);
1321VBGLR3DECL(int) VbglR3HostChannelEventCancel(uint32_t u32ChannelHandle, uint32_t u32HGCMClientId);
1322VBGLR3DECL(int) VbglR3HostChannelQuery(const char *pszName, uint32_t u32HGCMClientId, uint32_t u32Code,
1323 void *pvParm, uint32_t cbParm, void *pvData, uint32_t cbData,
1324 uint32_t *pu32SizeDataReturned);
1325
1326/** @name Mode hint storage
1327 * @{ */
1328VBGLR3DECL(int) VbglR3ReadVideoMode(unsigned cDisplay, unsigned *cx,
1329 unsigned *cy, unsigned *cBPP, unsigned *x,
1330 unsigned *y, unsigned *fEnabled);
1331VBGLR3DECL(int) VbglR3WriteVideoMode(unsigned cDisplay, unsigned cx,
1332 unsigned cy, unsigned cBPP, unsigned x,
1333 unsigned y, unsigned fEnabled);
1334/** @} */
1335
1336/** @name Generic HGCM
1337 * @{ */
1338VBGLR3DECL(int) VbglR3HGCMConnect(const char *pszServiceName, HGCMCLIENTID *pidClient);
1339VBGLR3DECL(int) VbglR3HGCMDisconnect(HGCMCLIENTID idClient);
1340struct VBGLIOCHGCMCALL;
1341VBGLR3DECL(int) VbglR3HGCMCall(struct VBGLIOCHGCMCALL *pInfo, size_t cbInfo);
1342/** @} */
1343
1344#endif /* IN_RING3 */
1345/** @} */
1346
1347RT_C_DECLS_END
1348
1349/** @} */
1350
1351#endif /* !VBOX_INCLUDED_VBoxGuestLib_h */
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