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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
|
/* $Id$ */
/** @file
* VMMDev - Guest <-> VMM/Host communication device, internal header.
*/
/*
* Copyright (C) 2006-2016 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 ___VMMDev_VMMDevState_h
#define ___VMMDev_VMMDevState_h
#include <VBox/VMMDev.h>
#include <VBox/vmm/pdmdev.h>
#include <VBox/vmm/pdmifs.h>
#ifndef VBOX_WITHOUT_TESTING_FEATURES
# include <iprt/test.h>
# include <VBox/VMMDevTesting.h>
#endif
#define VMMDEV_WITH_ALT_TIMESYNC
typedef struct DISPLAYCHANGEINFO
{
uint32_t xres;
uint32_t yres;
uint32_t bpp;
uint32_t display;
int32_t xOrigin;
int32_t yOrigin;
bool fEnabled;
bool fChangeOrigin;
} DISPLAYCHANGEINFO;
typedef struct DISPLAYCHANGEREQUEST
{
bool fPending;
bool afAlignment[3];
DISPLAYCHANGEINFO displayChangeRequest;
DISPLAYCHANGEINFO lastReadDisplayChangeRequest;
} DISPLAYCHANGEREQUEST;
typedef struct DISPLAYCHANGEDATA
{
/* Which monitor is being reported to the guest. */
int iCurrentMonitor;
/** true if the guest responded to VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST at least once */
bool fGuestSentChangeEventAck;
bool afAlignment[3];
DISPLAYCHANGEREQUEST aRequests[64]; /// @todo maxMonitors
} DISPLAYCHANGEDATA;
/**
* Credentials for automatic guest logon and host configured logon (?).
*
* This is not stored in the same block as the instance data in order to make it
* harder to access.
*/
typedef struct VMMDEVCREDS
{
/** credentials for guest logon purposes */
struct
{
char szUserName[VMMDEV_CREDENTIALS_SZ_SIZE];
char szPassword[VMMDEV_CREDENTIALS_SZ_SIZE];
char szDomain[VMMDEV_CREDENTIALS_SZ_SIZE];
bool fAllowInteractiveLogon;
} Logon;
/** credentials for verification by guest */
struct
{
char szUserName[VMMDEV_CREDENTIALS_SZ_SIZE];
char szPassword[VMMDEV_CREDENTIALS_SZ_SIZE];
char szDomain[VMMDEV_CREDENTIALS_SZ_SIZE];
} Judge;
} VMMDEVCREDS;
/**
* Facility status entry.
*/
typedef struct VMMDEVFACILITYSTATUSENTRY
{
/** The facility (may contain values other than the defined ones). */
VBoxGuestFacilityType enmFacility;
/** The status (may contain values other than the defined ones). */
VBoxGuestFacilityStatus enmStatus;
/** Whether this entry is fixed and cannot be reused when inactive. */
bool fFixed;
/** Explicit alignment padding / reserved for future use. MBZ. */
bool afPadding[3];
/** The facility flags (yet to be defined). */
uint32_t fFlags;
/** Last update timestamp. */
RTTIMESPEC TimeSpecTS;
} VMMDEVFACILITYSTATUSENTRY;
/** Pointer to a facility status entry. */
typedef VMMDEVFACILITYSTATUSENTRY *PVMMDEVFACILITYSTATUSENTRY;
/** device structure containing all state information */
typedef struct VMMDevState
{
/** The PCI device structure. */
PDMPCIDEV PciDev;
/** The critical section for this device.
* @remarks We use this rather than the default one, it's simpler with all
* the driver interfaces where we have to waste time digging out the
* PDMDEVINS structure. */
PDMCRITSECT CritSect;
/** hypervisor address space size */
uint32_t hypervisorSize;
/** mouse capabilities of host and guest */
uint32_t mouseCapabilities;
/** absolute mouse position in pixels */
int32_t mouseXAbs;
int32_t mouseYAbs;
/** Does the guest currently want the host pointer to be shown? */
uint32_t fHostCursorRequested;
/** Alignment padding. */
uint32_t u32Alignment0;
/** Pointer to device instance. */
PPDMDEVINSR3 pDevIns;
/** LUN\#0 + Status: VMMDev port base interface. */
PDMIBASE IBase;
/** LUN\#0: VMMDev port interface. */
PDMIVMMDEVPORT IPort;
#ifdef VBOX_WITH_HGCM
/** LUN\#0: HGCM port interface. */
PDMIHGCMPORT IHGCMPort;
#endif
/** Pointer to base interface of the driver. */
R3PTRTYPE(PPDMIBASE) pDrvBase;
/** VMMDev connector interface */
R3PTRTYPE(PPDMIVMMDEVCONNECTOR) pDrv;
#ifdef VBOX_WITH_HGCM
/** HGCM connector interface */
R3PTRTYPE(PPDMIHGCMCONNECTOR) pHGCMDrv;
#endif
/** Alignment padding. */
RTR3PTR PtrR3Alignment1;
/** message buffer for backdoor logging. */
char szMsg[512];
/** message buffer index. */
uint32_t iMsg;
/** Alignment padding. */
uint32_t u32Alignment2;
/** IRQ number assigned to the device */
uint32_t irq;
/** Current host side event flags */
uint32_t u32HostEventFlags;
/** Mask of events guest is interested in.
* @note The HGCM events are enabled automatically by the VMMDev device when
* guest issues HGCM commands. */
uint32_t u32GuestFilterMask;
/** Delayed mask of guest events */
uint32_t u32NewGuestFilterMask;
/** Flag whether u32NewGuestFilterMask is valid */
bool fNewGuestFilterMask;
/** Alignment padding. */
bool afAlignment3[3];
/** GC physical address of VMMDev RAM area */
RTGCPHYS32 GCPhysVMMDevRAM;
/** R3 pointer to VMMDev RAM area */
R3PTRTYPE(VMMDevMemory *) pVMMDevRAMR3;
/** R3 pointer to VMMDev Heap RAM area
*/
R3PTRTYPE(VMMDevMemory *) pVMMDevHeapR3;
/** GC physical address of VMMDev Heap RAM area */
RTGCPHYS32 GCPhysVMMDevHeap;
/** Information reported by guest via VMMDevReportGuestInfo generic request.
* Until this information is reported the VMMDev refuses any other requests.
*/
VBoxGuestInfo guestInfo;
/** Information report \#2, chewed a litte. */
struct
{
uint32_t uFullVersion; /**< non-zero if info is present. */
uint32_t uRevision;
uint32_t fFeatures;
char szName[128];
} guestInfo2;
/** Array of guest facility statuses. */
VMMDEVFACILITYSTATUSENTRY aFacilityStatuses[32];
/** The number of valid entries in the facility status array. */
uint32_t cFacilityStatuses;
/** Information reported by guest via VMMDevReportGuestCapabilities. */
uint32_t guestCaps;
/** "Additions are Ok" indicator, set to true after processing VMMDevReportGuestInfo,
* if additions version is compatible. This flag is here to avoid repeated comparing
* of the version in guestInfo.
*/
uint32_t fu32AdditionsOk;
/** Video acceleration status set by guest. */
uint32_t u32VideoAccelEnabled;
DISPLAYCHANGEDATA displayChangeData;
/** Pointer to the credentials. */
R3PTRTYPE(VMMDEVCREDS *) pCredentials;
bool afAlignment4[HC_ARCH_BITS == 32 ? 3 : 7];
/* memory balloon change request */
uint32_t cMbMemoryBalloon;
/** The last balloon size queried by the guest additions. */
uint32_t cMbMemoryBalloonLast;
/* guest ram size */
uint64_t cbGuestRAM;
/* unique session id; the id will be different after each start, reset or restore of the VM. */
uint64_t idSession;
/* statistics interval change request */
uint32_t u32StatIntervalSize, u32LastStatIntervalSize;
/* seamless mode change request */
bool fLastSeamlessEnabled, fSeamlessEnabled;
bool afAlignment5[1];
bool fVRDPEnabled;
uint32_t uVRDPExperienceLevel;
#ifdef VMMDEV_WITH_ALT_TIMESYNC
uint64_t hostTime;
bool fTimesyncBackdoorLo;
bool afAlignment6[3];
#endif
/** Set if GetHostTime should fail.
* Loaded from the GetHostTimeDisabled configuration value. */
bool fGetHostTimeDisabled;
/** Set if backdoor logging should be disabled (output will be ignored then) */
bool fBackdoorLogDisabled;
/** Don't clear credentials */
bool fKeepCredentials;
/** Heap enabled. */
bool fHeapEnabled;
/** Guest Core Dumping enabled. */
bool fGuestCoreDumpEnabled;
/** Guest Core Dump location. */
char szGuestCoreDumpDir[RTPATH_MAX];
/** Number of additional cores to keep around. */
uint32_t cGuestCoreDumps;
bool afAlignment7[1];
#ifdef VBOX_WITH_HGCM
/** List of pending HGCM requests, used for saving the HGCM state. */
R3PTRTYPE(PVBOXHGCMCMD) pHGCMCmdList;
/** Critical section to protect the list. */
RTCRITSECT critsectHGCMCmdList;
/** Whether the HGCM events are already automatically enabled. */
uint32_t u32HGCMEnabled;
/** Alignment padding. */
uint32_t u32Alignment7;
#endif /* VBOX_WITH_HGCM */
/** Status LUN: Shared folders LED */
struct
{
/** The LED. */
PDMLED Led;
/** The LED ports. */
PDMILEDPORTS ILeds;
/** Partner of ILeds. */
R3PTRTYPE(PPDMILEDCONNECTORS) pLedsConnector;
} SharedFolders;
/** FLag whether CPU hotplug events are monitored */
bool fCpuHotPlugEventsEnabled;
/** Alignment padding. */
bool afPadding8[3];
/** CPU hotplug event */
VMMDevCpuEventType enmCpuHotPlugEvent;
/** Core id of the CPU to change */
uint32_t idCpuCore;
/** Package id of the CPU to change */
uint32_t idCpuPackage;
uint32_t StatMemBalloonChunks;
/** Set if RC/R0 is enabled. */
bool fRZEnabled;
/** Set if testing is enabled. */
bool fTestingEnabled;
/** Set if testing the MMIO testing range is enabled. */
bool fTestingMMIO;
/** Alignment padding. */
bool afPadding9[HC_ARCH_BITS == 32 ? 1 : 5];
#ifndef VBOX_WITHOUT_TESTING_FEATURES
/** The high timestamp value. */
uint32_t u32TestingHighTimestamp;
/** The current testing command (VMMDEV_TESTING_CMD_XXX). */
uint32_t u32TestingCmd;
/** The testing data offset (command specific). */
uint32_t offTestingData;
/** For buffering the what comes in over the testing data port. */
union
{
char padding[1024];
/** VMMDEV_TESTING_CMD_INIT, VMMDEV_TESTING_CMD_SUB_NEW,
* VMMDEV_TESTING_CMD_FAILED. */
struct
{
char sz[1024];
} String, Init, SubNew, Failed;
/** VMMDEV_TESTING_CMD_TERM, VMMDEV_TESTING_CMD_SUB_DONE. */
struct
{
uint32_t c;
} Error, Term, SubDone;
/** VMMDEV_TESTING_CMD_VALUE. */
struct
{
RTUINT64U u64Value;
uint32_t u32Unit;
char szName[1024 - 8 - 4];
} Value;
/** The read back register (VMMDEV_TESTING_MMIO_OFF_READBACK,
* VMMDEV_TESTING_MMIO_OFF_READBACK_R3). */
uint8_t abReadBack[VMMDEV_TESTING_READBACK_SIZE];
} TestingData;
/** The XML output file name (can be a named pipe, doesn't matter to us). */
R3PTRTYPE(char *) pszTestingXmlOutput;
/** Testing instance for dealing with the output. */
RTTEST hTestingTest;
#endif /* !VBOX_WITHOUT_TESTING_FEATURES */
/** @name Heartbeat
* @{ */
/** Timestamp of the last heartbeat from guest in nanosec. */
uint64_t volatile nsLastHeartbeatTS;
/** Indicates whether we missed HB from guest on last check. */
bool volatile fFlatlined;
/** Indicates whether heartbeat check is active. */
bool volatile fHeartbeatActive;
/** Alignment padding. */
bool afAlignment8[6];
/** Guest heartbeat interval in nanoseconds.
* This is the interval the guest is told to produce heartbeats at. */
uint64_t cNsHeartbeatInterval;
/** The amount of time without a heartbeat (nanoseconds) before we
* conclude the guest is doing a Dixie Flatline (Neuromancer) impression. */
uint64_t cNsHeartbeatTimeout;
/** Timer for signalling a flatlined guest. */
PTMTIMERR3 pFlatlinedTimer;
/** @} */
} VMMDevState;
typedef VMMDevState VMMDEV;
/** Pointer to the VMM device state. */
typedef VMMDEV *PVMMDEV;
AssertCompileMemberAlignment(VMMDEV, CritSect, 8);
AssertCompileMemberAlignment(VMMDEV, cbGuestRAM, 8);
AssertCompileMemberAlignment(VMMDEV, enmCpuHotPlugEvent, 4);
AssertCompileMemberAlignment(VMMDEV, aFacilityStatuses, 8);
#ifndef VBOX_WITHOUT_TESTING_FEATURES
AssertCompileMemberAlignment(VMMDEV, TestingData.Value.u64Value, 8);
#endif
void VMMDevNotifyGuest(VMMDEV *pVMMDevState, uint32_t u32EventMask);
void VMMDevCtlSetGuestFilterMask(VMMDEV *pVMMDevState, uint32_t u32OrMask, uint32_t u32NotMask);
#endif /* !___VMMDev_VMMDevState_h */
|