1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
|
/* $Id$ */
/** @file
* SSM - Internal header file.
*/
/*
* Copyright (C) 2006-2007 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
#ifndef ___SSMInternal_h
#define ___SSMInternal_h
#include <VBox/cdefs.h>
#include <VBox/types.h>
#include <VBox/vmm/ssm.h>
#include <iprt/critsect.h>
RT_C_DECLS_BEGIN
/** @defgroup grp_ssm_int Internals
* @ingroup grp_ssm
* @internal
* @{
*/
/**
* Data unit callback type.
*/
typedef enum SSMUNITTYPE
{
/** PDM Device . */
SSMUNITTYPE_DEV = 1,
/** PDM Driver. */
SSMUNITTYPE_DRV,
/** VM Internal. */
SSMUNITTYPE_INTERNAL,
/** External Wrapper. */
SSMUNITTYPE_EXTERNAL
} SSMUNITTYPE;
/** Pointer to a data unit descriptor. */
typedef struct SSMUNIT *PSSMUNIT;
/**
* Data unit descriptor.
*/
typedef struct SSMUNIT
{
/** Pointer ot the next one in the list. */
PSSMUNIT pNext;
/** Called in this save/load operation.
* The flag is used to determine whether there is need for a call to
* done or not. */
bool fCalled;
/** Finished its live part.
* This is used to handle VERR_SSM_VOTE_FOR_GIVING_UP. */
bool fDoneLive;
/** Callback interface type. */
SSMUNITTYPE enmType;
/** Type specific data. */
union
{
/** SSMUNITTYPE_DEV. */
struct
{
/** Prepare live save. */
PFNSSMDEVLIVEPREP pfnLivePrep;
/** Execute live save. */
PFNSSMDEVLIVEEXEC pfnLiveExec;
/** Vote live save complete. */
PFNSSMDEVLIVEVOTE pfnLiveVote;
/** Prepare save. */
PFNSSMDEVSAVEPREP pfnSavePrep;
/** Execute save. */
PFNSSMDEVSAVEEXEC pfnSaveExec;
/** Done save. */
PFNSSMDEVSAVEDONE pfnSaveDone;
/** Prepare load. */
PFNSSMDEVLOADPREP pfnLoadPrep;
/** Execute load. */
PFNSSMDEVLOADEXEC pfnLoadExec;
/** Done load. */
PFNSSMDEVLOADDONE pfnLoadDone;
/** Device instance. */
PPDMDEVINS pDevIns;
} Dev;
/** SSMUNITTYPE_DRV. */
struct
{
/** Prepare live save. */
PFNSSMDRVLIVEPREP pfnLivePrep;
/** Execute live save. */
PFNSSMDRVLIVEEXEC pfnLiveExec;
/** Vote live save complete. */
PFNSSMDRVLIVEVOTE pfnLiveVote;
/** Prepare save. */
PFNSSMDRVSAVEPREP pfnSavePrep;
/** Execute save. */
PFNSSMDRVSAVEEXEC pfnSaveExec;
/** Done save. */
PFNSSMDRVSAVEDONE pfnSaveDone;
/** Prepare load. */
PFNSSMDRVLOADPREP pfnLoadPrep;
/** Execute load. */
PFNSSMDRVLOADEXEC pfnLoadExec;
/** Done load. */
PFNSSMDRVLOADDONE pfnLoadDone;
/** Driver instance. */
PPDMDRVINS pDrvIns;
} Drv;
/** SSMUNITTYPE_INTERNAL. */
struct
{
/** Prepare live save. */
PFNSSMINTLIVEPREP pfnLivePrep;
/** Execute live save. */
PFNSSMINTLIVEEXEC pfnLiveExec;
/** Vote live save complete. */
PFNSSMINTLIVEVOTE pfnLiveVote;
/** Prepare save. */
PFNSSMINTSAVEPREP pfnSavePrep;
/** Execute save. */
PFNSSMINTSAVEEXEC pfnSaveExec;
/** Done save. */
PFNSSMINTSAVEDONE pfnSaveDone;
/** Prepare load. */
PFNSSMINTLOADPREP pfnLoadPrep;
/** Execute load. */
PFNSSMINTLOADEXEC pfnLoadExec;
/** Done load. */
PFNSSMINTLOADDONE pfnLoadDone;
} Internal;
/** SSMUNITTYPE_EXTERNAL. */
struct
{
/** Prepare live save. */
PFNSSMEXTLIVEPREP pfnLivePrep;
/** Execute live save. */
PFNSSMEXTLIVEEXEC pfnLiveExec;
/** Vote live save complete. */
PFNSSMEXTLIVEVOTE pfnLiveVote;
/** Prepare save. */
PFNSSMEXTSAVEPREP pfnSavePrep;
/** Execute save. */
PFNSSMEXTSAVEEXEC pfnSaveExec;
/** Done save. */
PFNSSMEXTSAVEDONE pfnSaveDone;
/** Prepare load. */
PFNSSMEXTLOADPREP pfnLoadPrep;
/** Execute load. */
PFNSSMEXTLOADEXEC pfnLoadExec;
/** Done load. */
PFNSSMEXTLOADDONE pfnLoadDone;
/** User data. */
void *pvUser;
} External;
struct
{
/** Prepare live save. */
PFNRT pfnLivePrep;
/** Execute live save. */
PFNRT pfnLiveExec;
/** Vote live save complete. */
PFNRT pfnLiveVote;
/** Prepare save. */
PFNRT pfnSavePrep;
/** Execute save. */
PFNRT pfnSaveExec;
/** Done save. */
PFNRT pfnSaveDone;
/** Prepare load. */
PFNRT pfnLoadPrep;
/** Execute load. */
PFNRT pfnLoadExec;
/** Done load. */
PFNRT pfnLoadDone;
/** User data. */
void *pvKey;
} Common;
} u;
/** Data layout version. */
uint32_t u32Version;
/** Instance number. */
uint32_t u32Instance;
/** The offset of the final data unit.
* This is used for constructing the directory. */
RTFOFF offStream;
/** The guessed size of the data unit - used only for progress indication. */
size_t cbGuess;
/** Name size. (bytes) */
size_t cchName;
/** Name of this unit. (extends beyond the defined size) */
char szName[1];
} SSMUNIT;
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLivePrep, u.Dev.pfnLivePrep);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLiveExec, u.Dev.pfnLiveExec);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLiveVote, u.Dev.pfnLiveVote);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnSavePrep, u.Dev.pfnSavePrep);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnSaveExec, u.Dev.pfnSaveExec);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnSaveDone, u.Dev.pfnSaveDone);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLoadPrep, u.Dev.pfnLoadPrep);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLoadExec, u.Dev.pfnLoadExec);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLoadDone, u.Dev.pfnLoadDone);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pvKey, u.Dev.pDevIns);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLivePrep, u.Drv.pfnLivePrep);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLiveExec, u.Drv.pfnLiveExec);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLiveVote, u.Drv.pfnLiveVote);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnSavePrep, u.Drv.pfnSavePrep);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnSaveExec, u.Drv.pfnSaveExec);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnSaveDone, u.Drv.pfnSaveDone);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLoadPrep, u.Drv.pfnLoadPrep);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLoadExec, u.Drv.pfnLoadExec);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLoadDone, u.Drv.pfnLoadDone);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pvKey, u.Drv.pDrvIns);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLivePrep, u.Internal.pfnLivePrep);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLiveExec, u.Internal.pfnLiveExec);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLiveVote, u.Internal.pfnLiveVote);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnSavePrep, u.Internal.pfnSavePrep);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnSaveExec, u.Internal.pfnSaveExec);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnSaveDone, u.Internal.pfnSaveDone);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLoadPrep, u.Internal.pfnLoadPrep);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLoadExec, u.Internal.pfnLoadExec);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLoadDone, u.Internal.pfnLoadDone);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLivePrep, u.External.pfnLivePrep);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLiveExec, u.External.pfnLiveExec);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLiveVote, u.External.pfnLiveVote);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnSavePrep, u.External.pfnSavePrep);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnSaveExec, u.External.pfnSaveExec);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnSaveDone, u.External.pfnSaveDone);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLoadPrep, u.External.pfnLoadPrep);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLoadExec, u.External.pfnLoadExec);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pfnLoadDone, u.External.pfnLoadDone);
AssertCompile2MemberOffsets(SSMUNIT, u.Common.pvKey, u.External.pvUser);
/**
* SSM VM Instance data.
* Changes to this must checked against the padding of the cfgm union in VM!
*
* @todo Move this to UVM.
*/
typedef struct SSM
{
/** Critical section for serializing cancellation (pSSM). */
RTCRITSECT CancelCritSect;
/** The handle of the current save or load operation.
* This is used by SSMR3Cancel. */
PSSMHANDLE volatile pSSM;
/** FIFO of data entity descriptors. */
R3PTRTYPE(PSSMUNIT) pHead;
/** The number of register units. */
uint32_t cUnits;
/** For lazy init. */
bool fInitialized;
/** Current pass (for STAM). */
uint32_t uPass;
uint32_t u32Alignment;
} SSM;
/** Pointer to SSM VM instance data. */
typedef SSM *PSSM;
/** @} */
RT_C_DECLS_END
#endif /* !___SSMInternal_h */
|