VirtualBox

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

Last change on this file since 5605 was 4698, checked in by vboxsync, 17 years ago

Compile fix

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