VirtualBox

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

Last change on this file since 2114 was 1711, checked in by vboxsync, 18 years ago

HGCM cleanup.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.1 KB
Line 
1/** @file
2 * VBox - Host-Guest Communication Manager (HGCM):
3 * Service library definitions.
4 */
5
6/*
7 * Copyright (C) 2006 InnoTek Systemberatung 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 */
49#define VBOX_HGCM_SVC_VERSION_MINOR (0x0001)
50#define VBOX_HGCM_SVC_VERSION_MAJOR (0x0003)
51#define VBOX_HGCM_SVC_VERSION ((VBOX_HGCM_SVC_VERSION_MAJOR << 16) + VBOX_HGCM_SVC_VERSION_MINOR)
52
53
54/** Typed pointer to distinguish a call to service. */
55struct VBOXHGCMCALLHANDLE_TYPEDEF;
56typedef struct VBOXHGCMCALLHANDLE_TYPEDEF *VBOXHGCMCALLHANDLE;
57
58/** Service helpers pointers table. */
59typedef struct _VBOXHGCMSVCHELPERS
60{
61 /** The service has processed the Call request. */
62 DECLCALLBACKMEMBER(void, pfnCallComplete) (VBOXHGCMCALLHANDLE callHandle, int32_t rc);
63
64 void *pvInstance;
65} VBOXHGCMSVCHELPERS;
66
67typedef VBOXHGCMSVCHELPERS *PVBOXHGCMSVCHELPERS;
68
69
70#define VBOX_HGCM_SVC_PARM_INVALID (0U)
71#define VBOX_HGCM_SVC_PARM_32BIT (1U)
72#define VBOX_HGCM_SVC_PARM_64BIT (2U)
73#define VBOX_HGCM_SVC_PARM_PTR (3U)
74
75typedef struct VBOXHGCMSVCPARM
76{
77 /** VBOX_HGCM_SVC_PARM_* values. */
78 uint32_t type;
79
80 union
81 {
82 uint32_t uint32;
83 uint64_t uint64;
84 struct
85 {
86 uint32_t size;
87 void *addr;
88 } pointer;
89 } u;
90} VBOXHGCMSVCPARM;
91
92typedef VBOXHGCMSVCPARM *PVBOXHGCMSVCPARM;
93
94/** The Service DLL entry points.
95 *
96 * HGCM will call the DLL "VBoxHGCMSvcLoad"
97 * function and the DLL must fill in the VBOXHGCMSVCFNTABLE
98 * with function pointers.
99 */
100
101/* The structure is used in separately compiled binaries so an explicit packing is required. */
102#pragma pack(1)
103typedef struct _VBOXHGCMSVCFNTABLE
104{
105 /** Filled by HGCM */
106
107 /** Size of the structure. */
108 uint32_t cbSize;
109
110 /** Version of the structure, including the helpers. */
111 uint32_t u32Version;
112
113 PVBOXHGCMSVCHELPERS pHelpers;
114
115 /** Filled by the service. */
116
117 /** Size of client information the service want to have. */
118 uint32_t cbClient;
119#if ARCH_BITS == 64
120 /** Ensure that the following pointers are properly aligned on 64-bit system.
121 * To counter harm done by the paranoid #pragma pack(1). */
122 uint32_t u32Alignment0;
123#endif
124
125 /** Uninitialize service */
126 DECLCALLBACKMEMBER(int, pfnUnload) (void);
127
128 /** Inform the service about a client connection. */
129 DECLCALLBACKMEMBER(int, pfnConnect) (uint32_t u32ClientID, void *pvClient);
130
131 /** Inform the service that the client wants to disconnect. */
132 DECLCALLBACKMEMBER(int, pfnDisconnect) (uint32_t u32ClientID, void *pvClient);
133
134 /** Service entry point.
135 * Return code is passed to pfnCallComplete callback.
136 */
137 DECLCALLBACKMEMBER(void, pfnCall) (VBOXHGCMCALLHANDLE callHandle, uint32_t u32ClientID, void *pvClient, uint32_t function, uint32_t cParms, VBOXHGCMSVCPARM paParms[]);
138
139 /** Host Service entry point meant for privileged features invisible to the guest.
140 * Return code is passed to pfnCallComplete callback.
141 */
142 DECLCALLBACKMEMBER(int, pfnHostCall) (uint32_t function, uint32_t cParms, VBOXHGCMSVCPARM paParms[]);
143
144 /** Inform the service about a VM save operation. */
145 DECLCALLBACKMEMBER(int, pfnSaveState) (uint32_t u32ClientID, void *pvClient, PSSMHANDLE pSSM);
146
147 /** Inform the service about a VM load operation. */
148 DECLCALLBACKMEMBER(int, pfnLoadState) (uint32_t u32ClientID, void *pvClient, PSSMHANDLE pSSM);
149
150} VBOXHGCMSVCFNTABLE;
151#pragma pack()
152
153
154/** Service initialization entry point. */
155typedef DECLCALLBACK(int) VBOXHGCMSVCLOAD(VBOXHGCMSVCFNTABLE *ptable);
156typedef VBOXHGCMSVCLOAD *PFNVBOXHGCMSVCLOAD;
157#define VBOX_HGCM_SVCLOAD_NAME "VBoxHGCMSvcLoad"
158
159#endif /* !__VBox_hgcmsvc_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