1 | /** @file
|
---|
2 | * VBox - Host-Guest Communication Manager (HGCM):
|
---|
3 | * Service library definitions.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
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 as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * If you received this file as part of a commercial VirtualBox
|
---|
18 | * distribution, then only the terms of your commercial VirtualBox
|
---|
19 | * license agreement apply instead of the previous paragraph.
|
---|
20 | */
|
---|
21 |
|
---|
22 | #ifndef ___VBox_hgcm_h
|
---|
23 | #define ___VBox_hgcm_h
|
---|
24 |
|
---|
25 | #include <VBox/cdefs.h>
|
---|
26 | #include <VBox/types.h>
|
---|
27 |
|
---|
28 | /** @todo proper comments. */
|
---|
29 |
|
---|
30 | /**
|
---|
31 | * Service interface version.
|
---|
32 | *
|
---|
33 | * Includes layout of both VBOXHGCMSVCFNTABLE and VBOXHGCMSVCHELPERS.
|
---|
34 | *
|
---|
35 | * A service can work with these structures if major version
|
---|
36 | * is equal and minor version of service is <= version of the
|
---|
37 | * structures.
|
---|
38 | *
|
---|
39 | * For example when a new helper is added at the end of helpers
|
---|
40 | * structure, then the minor version will be increased. All older
|
---|
41 | * services still can work because they have their old helpers
|
---|
42 | * unchanged.
|
---|
43 | *
|
---|
44 | * Revision history.
|
---|
45 | * 1.1->2.1 Because the pfnConnect now also has the pvClient parameter.
|
---|
46 | * 2.1->2.2 Because pfnSaveState and pfnLoadState were added
|
---|
47 | * 2.2->3.1 Because pfnHostCall is now synchronous, returns rc, and parameters were changed
|
---|
48 | * 3.1->3.2 Because pfnRegisterExtension was added
|
---|
49 | */
|
---|
50 | #define VBOX_HGCM_SVC_VERSION_MAJOR (0x0003)
|
---|
51 | #define VBOX_HGCM_SVC_VERSION_MINOR (0x0002)
|
---|
52 | #define VBOX_HGCM_SVC_VERSION ((VBOX_HGCM_SVC_VERSION_MAJOR << 16) + VBOX_HGCM_SVC_VERSION_MINOR)
|
---|
53 |
|
---|
54 |
|
---|
55 | /** Typed pointer to distinguish a call to service. */
|
---|
56 | struct VBOXHGCMCALLHANDLE_TYPEDEF;
|
---|
57 | typedef struct VBOXHGCMCALLHANDLE_TYPEDEF *VBOXHGCMCALLHANDLE;
|
---|
58 |
|
---|
59 | /** Service helpers pointers table. */
|
---|
60 | typedef struct _VBOXHGCMSVCHELPERS
|
---|
61 | {
|
---|
62 | /** The service has processed the Call request. */
|
---|
63 | DECLCALLBACKMEMBER(void, pfnCallComplete) (VBOXHGCMCALLHANDLE callHandle, int32_t rc);
|
---|
64 |
|
---|
65 | void *pvInstance;
|
---|
66 | } VBOXHGCMSVCHELPERS;
|
---|
67 |
|
---|
68 | typedef VBOXHGCMSVCHELPERS *PVBOXHGCMSVCHELPERS;
|
---|
69 |
|
---|
70 |
|
---|
71 | #define VBOX_HGCM_SVC_PARM_INVALID (0U)
|
---|
72 | #define VBOX_HGCM_SVC_PARM_32BIT (1U)
|
---|
73 | #define VBOX_HGCM_SVC_PARM_64BIT (2U)
|
---|
74 | #define VBOX_HGCM_SVC_PARM_PTR (3U)
|
---|
75 |
|
---|
76 | typedef struct VBOXHGCMSVCPARM
|
---|
77 | {
|
---|
78 | /** VBOX_HGCM_SVC_PARM_* values. */
|
---|
79 | uint32_t type;
|
---|
80 |
|
---|
81 | union
|
---|
82 | {
|
---|
83 | uint32_t uint32;
|
---|
84 | uint64_t uint64;
|
---|
85 | struct
|
---|
86 | {
|
---|
87 | uint32_t size;
|
---|
88 | void *addr;
|
---|
89 | } pointer;
|
---|
90 | } u;
|
---|
91 | } VBOXHGCMSVCPARM;
|
---|
92 |
|
---|
93 | typedef VBOXHGCMSVCPARM *PVBOXHGCMSVCPARM;
|
---|
94 |
|
---|
95 | /** Service specific extension callback.
|
---|
96 | * This callback is called by the service to perform service specific operation.
|
---|
97 | *
|
---|
98 | * @param pvExtension The extension pointer.
|
---|
99 | * @param u32Function What the callback is supposed to do.
|
---|
100 | * @param pvParm The function parameters.
|
---|
101 | * @param cbParm The size of the function parameters.
|
---|
102 | */
|
---|
103 | typedef DECLCALLBACK(int) FNHGCMSVCEXT(void *pvExtension, uint32_t u32Function, void *pvParm, uint32_t cbParms);
|
---|
104 | typedef FNHGCMSVCEXT *PFNHGCMSVCEXT;
|
---|
105 |
|
---|
106 | /** The Service DLL entry points.
|
---|
107 | *
|
---|
108 | * HGCM will call the DLL "VBoxHGCMSvcLoad"
|
---|
109 | * function and the DLL must fill in the VBOXHGCMSVCFNTABLE
|
---|
110 | * with function pointers.
|
---|
111 | */
|
---|
112 |
|
---|
113 | /* The structure is used in separately compiled binaries so an explicit packing is required. */
|
---|
114 | #pragma pack(1)
|
---|
115 | typedef struct _VBOXHGCMSVCFNTABLE
|
---|
116 | {
|
---|
117 | /** Filled by HGCM */
|
---|
118 |
|
---|
119 | /** Size of the structure. */
|
---|
120 | uint32_t cbSize;
|
---|
121 |
|
---|
122 | /** Version of the structure, including the helpers. */
|
---|
123 | uint32_t u32Version;
|
---|
124 |
|
---|
125 | PVBOXHGCMSVCHELPERS pHelpers;
|
---|
126 |
|
---|
127 | /** Filled by the service. */
|
---|
128 |
|
---|
129 | /** Size of client information the service want to have. */
|
---|
130 | uint32_t cbClient;
|
---|
131 | #if ARCH_BITS == 64
|
---|
132 | /** Ensure that the following pointers are properly aligned on 64-bit system. */
|
---|
133 | uint32_t u32Alignment0;
|
---|
134 | #endif
|
---|
135 |
|
---|
136 | /** Uninitialize service */
|
---|
137 | DECLCALLBACKMEMBER(int, pfnUnload) (void);
|
---|
138 |
|
---|
139 | /** Inform the service about a client connection. */
|
---|
140 | DECLCALLBACKMEMBER(int, pfnConnect) (uint32_t u32ClientID, void *pvClient);
|
---|
141 |
|
---|
142 | /** Inform the service that the client wants to disconnect. */
|
---|
143 | DECLCALLBACKMEMBER(int, pfnDisconnect) (uint32_t u32ClientID, void *pvClient);
|
---|
144 |
|
---|
145 | /** Service entry point.
|
---|
146 | * Return code is passed to pfnCallComplete callback.
|
---|
147 | */
|
---|
148 | DECLCALLBACKMEMBER(void, pfnCall) (VBOXHGCMCALLHANDLE callHandle, uint32_t u32ClientID, void *pvClient, uint32_t function, uint32_t cParms, VBOXHGCMSVCPARM paParms[]);
|
---|
149 |
|
---|
150 | /** Host Service entry point meant for privileged features invisible to the guest.
|
---|
151 | * Return code is passed to pfnCallComplete callback.
|
---|
152 | */
|
---|
153 | DECLCALLBACKMEMBER(int, pfnHostCall) (uint32_t function, uint32_t cParms, VBOXHGCMSVCPARM paParms[]);
|
---|
154 |
|
---|
155 | /** Inform the service about a VM save operation. */
|
---|
156 | DECLCALLBACKMEMBER(int, pfnSaveState) (uint32_t u32ClientID, void *pvClient, PSSMHANDLE pSSM);
|
---|
157 |
|
---|
158 | /** Inform the service about a VM load operation. */
|
---|
159 | DECLCALLBACKMEMBER(int, pfnLoadState) (uint32_t u32ClientID, void *pvClient, PSSMHANDLE pSSM);
|
---|
160 |
|
---|
161 | /** Manage the service extension. */
|
---|
162 | DECLCALLBACKMEMBER(int, pfnRegisterExtension) (PFNHGCMSVCEXT pfnExtension, void *pvExtension);
|
---|
163 |
|
---|
164 | } VBOXHGCMSVCFNTABLE;
|
---|
165 | #pragma pack()
|
---|
166 |
|
---|
167 |
|
---|
168 | /** Service initialization entry point. */
|
---|
169 | typedef DECLCALLBACK(int) VBOXHGCMSVCLOAD(VBOXHGCMSVCFNTABLE *ptable);
|
---|
170 | typedef VBOXHGCMSVCLOAD *PFNVBOXHGCMSVCLOAD;
|
---|
171 | #define VBOX_HGCM_SVCLOAD_NAME "VBoxHGCMSvcLoad"
|
---|
172 |
|
---|
173 | #endif
|
---|