VirtualBox

source: vbox/trunk/include/VBox/hgcmsvc.h@ 21217

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

include/VBox/*.h: Mark which components the header files relate to.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.8 KB
Line 
1/** @file
2 * Host-Guest Communication Manager (HGCM) - Service library definitions.
3 */
4
5/*
6 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 *
25 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
26 * Clara, CA 95054 USA or visit http://www.sun.com if you need
27 * additional information or have any questions.
28 */
29
30#ifndef ___VBox_hgcm_h
31#define ___VBox_hgcm_h
32
33#include <VBox/cdefs.h>
34#include <VBox/types.h>
35#include <VBox/err.h>
36
37/** @todo proper comments. */
38
39/**
40 * Service interface version.
41 *
42 * Includes layout of both VBOXHGCMSVCFNTABLE and VBOXHGCMSVCHELPERS.
43 *
44 * A service can work with these structures if major version
45 * is equal and minor version of service is <= version of the
46 * structures.
47 *
48 * For example when a new helper is added at the end of helpers
49 * structure, then the minor version will be increased. All older
50 * services still can work because they have their old helpers
51 * unchanged.
52 *
53 * Revision history.
54 * 1.1->2.1 Because the pfnConnect now also has the pvClient parameter.
55 * 2.1->2.2 Because pfnSaveState and pfnLoadState were added
56 * 2.2->3.1 Because pfnHostCall is now synchronous, returns rc, and parameters were changed
57 * 3.1->3.2 Because pfnRegisterExtension was added
58 * 3.2->3.3 Because pfnDisconnectClient helper was added
59 * 3.3->4.1 Because the pvService entry and parameter was added
60 * 4.1->4.2 Because the VBOX_HGCM_SVC_PARM_CALLBACK parameter type was added
61 * 4.2->5.1 Removed the VBOX_HGCM_SVC_PARM_CALLBACK parameter type, as
62 * this problem is already solved by service extension callbacks
63 */
64#define VBOX_HGCM_SVC_VERSION_MAJOR (0x0005)
65#define VBOX_HGCM_SVC_VERSION_MINOR (0x0001)
66#define VBOX_HGCM_SVC_VERSION ((VBOX_HGCM_SVC_VERSION_MAJOR << 16) + VBOX_HGCM_SVC_VERSION_MINOR)
67
68
69/** Typed pointer to distinguish a call to service. */
70struct VBOXHGCMCALLHANDLE_TYPEDEF;
71typedef struct VBOXHGCMCALLHANDLE_TYPEDEF *VBOXHGCMCALLHANDLE;
72
73/** Service helpers pointers table. */
74typedef struct _VBOXHGCMSVCHELPERS
75{
76 /** The service has processed the Call request. */
77 DECLR3CALLBACKMEMBER(void, pfnCallComplete, (VBOXHGCMCALLHANDLE callHandle, int32_t rc));
78
79 void *pvInstance;
80
81 /** The service disconnects the client. */
82 DECLR3CALLBACKMEMBER(void, pfnDisconnectClient, (void *pvInstance, uint32_t u32ClientID));
83} VBOXHGCMSVCHELPERS;
84
85typedef VBOXHGCMSVCHELPERS *PVBOXHGCMSVCHELPERS;
86
87
88#define VBOX_HGCM_SVC_PARM_INVALID (0U)
89#define VBOX_HGCM_SVC_PARM_32BIT (1U)
90#define VBOX_HGCM_SVC_PARM_64BIT (2U)
91#define VBOX_HGCM_SVC_PARM_PTR (3U)
92
93typedef struct VBOXHGCMSVCPARM
94{
95 /** VBOX_HGCM_SVC_PARM_* values. */
96 uint32_t type;
97
98 union
99 {
100 uint32_t uint32;
101 uint64_t uint64;
102 struct
103 {
104 uint32_t size;
105 void *addr;
106 } pointer;
107 } u;
108#ifdef __cplusplus
109 /** Extract a uint32_t value from an HGCM parameter structure */
110 int getUInt32 (uint32_t *u32)
111 {
112 int rc = VINF_SUCCESS;
113 if (type != VBOX_HGCM_SVC_PARM_32BIT)
114 rc = VERR_INVALID_PARAMETER;
115 if (RT_SUCCESS(rc))
116 *u32 = u.uint32;
117 return rc;
118 }
119
120 /** Extract a uint64_t value from an HGCM parameter structure */
121 int getUInt64 (uint64_t *u64)
122 {
123 int rc = VINF_SUCCESS;
124 if (type != VBOX_HGCM_SVC_PARM_64BIT)
125 rc = VERR_INVALID_PARAMETER;
126 if (RT_SUCCESS(rc))
127 *u64 = u.uint64;
128 return rc;
129 }
130
131 /** Extract a pointer value from an HGCM parameter structure */
132 int getPointer (void **ppv, uint32_t *pcb)
133 {
134 if (type == VBOX_HGCM_SVC_PARM_PTR)
135 {
136 *ppv = u.pointer.addr;
137 *pcb = u.pointer.size;
138 return VINF_SUCCESS;
139 }
140
141 return VERR_INVALID_PARAMETER;
142 }
143
144 /** Extract a constant pointer value from an HGCM parameter structure */
145 int getPointer (const void **ppv, uint32_t *pcb)
146 {
147 if (type == VBOX_HGCM_SVC_PARM_PTR)
148 {
149 *ppv = u.pointer.addr;
150 *pcb = u.pointer.size;
151 return VINF_SUCCESS;
152 }
153
154 return VERR_INVALID_PARAMETER;
155 }
156
157 /** Set a uint32_t value to an HGCM parameter structure */
158 void setUInt32(uint32_t u32)
159 {
160 type = VBOX_HGCM_SVC_PARM_32BIT;
161 u.uint32 = u32;
162 }
163
164 /** Set a uint64_t value to an HGCM parameter structure */
165 void setUInt64(uint64_t u64)
166 {
167 type = VBOX_HGCM_SVC_PARM_64BIT;
168 u.uint64 = u64;
169 }
170
171 /** Set a pointer value to an HGCM parameter structure */
172 void setPointer(void *pv, uint32_t cb)
173 {
174 type = VBOX_HGCM_SVC_PARM_PTR;
175 u.pointer.addr = pv;
176 u.pointer.size = cb;
177 }
178
179 VBOXHGCMSVCPARM() : type(VBOX_HGCM_SVC_PARM_INVALID) {}
180#endif
181} VBOXHGCMSVCPARM;
182
183typedef VBOXHGCMSVCPARM *PVBOXHGCMSVCPARM;
184
185/** Service specific extension callback.
186 * This callback is called by the service to perform service specific operation.
187 *
188 * @param pvExtension The extension pointer.
189 * @param u32Function What the callback is supposed to do.
190 * @param pvParm The function parameters.
191 * @param cbParm The size of the function parameters.
192 */
193typedef DECLCALLBACK(int) FNHGCMSVCEXT(void *pvExtension, uint32_t u32Function, void *pvParm, uint32_t cbParms);
194typedef FNHGCMSVCEXT *PFNHGCMSVCEXT;
195
196/** The Service DLL entry points.
197 *
198 * HGCM will call the DLL "VBoxHGCMSvcLoad"
199 * function and the DLL must fill in the VBOXHGCMSVCFNTABLE
200 * with function pointers.
201 */
202
203/* The structure is used in separately compiled binaries so an explicit packing is required. */
204#pragma pack(1)
205typedef struct _VBOXHGCMSVCFNTABLE
206{
207 /** Filled by HGCM */
208
209 /** Size of the structure. */
210 uint32_t cbSize;
211
212 /** Version of the structure, including the helpers. */
213 uint32_t u32Version;
214
215 PVBOXHGCMSVCHELPERS pHelpers;
216
217 /** Filled by the service. */
218
219 /** Size of client information the service want to have. */
220 uint32_t cbClient;
221#if ARCH_BITS == 64
222 /** Ensure that the following pointers are properly aligned on 64-bit system. */
223 uint32_t u32Alignment0;
224#endif
225
226 /** Uninitialize service */
227 DECLR3CALLBACKMEMBER(int, pfnUnload, (void *pvService));
228
229 /** Inform the service about a client connection. */
230 DECLR3CALLBACKMEMBER(int, pfnConnect, (void *pvService, uint32_t u32ClientID, void *pvClient));
231
232 /** Inform the service that the client wants to disconnect. */
233 DECLR3CALLBACKMEMBER(int, pfnDisconnect, (void *pvService, uint32_t u32ClientID, void *pvClient));
234
235 /** Service entry point.
236 * Return code is passed to pfnCallComplete callback.
237 */
238 DECLR3CALLBACKMEMBER(void, pfnCall, (void *pvService, VBOXHGCMCALLHANDLE callHandle, uint32_t u32ClientID, void *pvClient, uint32_t function, uint32_t cParms, VBOXHGCMSVCPARM paParms[]));
239
240 /** Host Service entry point meant for privileged features invisible to the guest.
241 * Return code is passed to pfnCallComplete callback.
242 */
243 DECLR3CALLBACKMEMBER(int, pfnHostCall, (void *pvService, uint32_t function, uint32_t cParms, VBOXHGCMSVCPARM paParms[]));
244
245 /** Inform the service about a VM save operation. */
246 DECLR3CALLBACKMEMBER(int, pfnSaveState, (void *pvService, uint32_t u32ClientID, void *pvClient, PSSMHANDLE pSSM));
247
248 /** Inform the service about a VM load operation. */
249 DECLR3CALLBACKMEMBER(int, pfnLoadState, (void *pvService, uint32_t u32ClientID, void *pvClient, PSSMHANDLE pSSM));
250
251 /** Register a service extension callback. */
252 DECLR3CALLBACKMEMBER(int, pfnRegisterExtension, (void *pvService, PFNHGCMSVCEXT pfnExtension, void *pvExtension));
253
254 /** User/instance data pointer for the service. */
255 void *pvService;
256
257} VBOXHGCMSVCFNTABLE;
258#pragma pack()
259
260
261/** Service initialization entry point. */
262typedef DECLCALLBACK(int) VBOXHGCMSVCLOAD(VBOXHGCMSVCFNTABLE *ptable);
263typedef VBOXHGCMSVCLOAD *PFNVBOXHGCMSVCLOAD;
264#define VBOX_HGCM_SVCLOAD_NAME "VBoxHGCMSvcLoad"
265
266#endif
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use