VirtualBox

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

Last change on this file since 17420 was 14389, checked in by vboxsync, 16 years ago

HGCM: fixed service version

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