VirtualBox

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

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

Save and load state notifications for HGCM host services added.

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