1 | /* $Id: FTMInternal.h 35346 2010-12-27 16:13:13Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * FTM - Internal header file.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2010 Oracle Corporation
|
---|
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 (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef ___FTMInternal_h
|
---|
19 | #define ___FTMInternal_h
|
---|
20 |
|
---|
21 | #include <VBox/cdefs.h>
|
---|
22 | #include <VBox/types.h>
|
---|
23 | #include <VBox/vmm/ftm.h>
|
---|
24 | #include <VBox/vmm/stam.h>
|
---|
25 | #include <VBox/vmm/pdmcritsect.h>
|
---|
26 | #include <iprt/avl.h>
|
---|
27 |
|
---|
28 | /** @defgroup grp_ftm_int Internals.
|
---|
29 | * @ingroup grp_ftm
|
---|
30 | * @{
|
---|
31 | */
|
---|
32 |
|
---|
33 | /** Physical page tree node. */
|
---|
34 | typedef struct FTMPHYSPAGETREENODE
|
---|
35 | {
|
---|
36 | AVLGCPHYSNODECORE Core;
|
---|
37 | void *pPage;
|
---|
38 | } FTMPHYSPAGETREENODE;
|
---|
39 | /** Pointer to FTMPHYSPAGETREENODE */
|
---|
40 | typedef FTMPHYSPAGETREENODE *PFTMPHYSPAGETREENODE;
|
---|
41 |
|
---|
42 | /**
|
---|
43 | * FTM VM Instance data.
|
---|
44 | * Changes to this must checked against the padding of the ftm union in VM!
|
---|
45 | */
|
---|
46 | typedef struct FTM
|
---|
47 | {
|
---|
48 | /** Address of the standby VM. */
|
---|
49 | R3PTRTYPE(char *) pszAddress;
|
---|
50 | /** Password to access the syncing server of the standby VM. */
|
---|
51 | R3PTRTYPE(char *) pszPassword;
|
---|
52 | /** Port of the standby VM. */
|
---|
53 | unsigned uPort;
|
---|
54 | /** Syncing interval in ms. */
|
---|
55 | unsigned uInterval;
|
---|
56 |
|
---|
57 | /** Set when this VM is the standby FT node. */
|
---|
58 | bool fIsStandbyNode;
|
---|
59 | /** Set when this master VM is busy with checkpointing. */
|
---|
60 | bool fCheckpointingActive;
|
---|
61 | /** Set when VM save/restore should only include changed pages. */
|
---|
62 | bool fDeltaLoadSaveActive;
|
---|
63 | /** Fallover to the standby VM. */
|
---|
64 | bool fActivateStandby;
|
---|
65 | bool fAlignment[4];
|
---|
66 |
|
---|
67 | /** Current active socket. */
|
---|
68 | RTSOCKET hSocket;
|
---|
69 |
|
---|
70 | /* Shutdown event semaphore. */
|
---|
71 | RTSEMEVENT hShutdownEvent;
|
---|
72 |
|
---|
73 | /** State sync. */
|
---|
74 | struct
|
---|
75 | {
|
---|
76 | unsigned uOffStream;
|
---|
77 | unsigned cbReadBlock;
|
---|
78 | bool fStopReading;
|
---|
79 | bool fIOError;
|
---|
80 | bool fEndOfStream;
|
---|
81 | bool fAlignment[5];
|
---|
82 | } syncstate;
|
---|
83 |
|
---|
84 | struct
|
---|
85 | {
|
---|
86 | R3PTRTYPE(PRTTCPSERVER) hServer;
|
---|
87 | R3PTRTYPE(AVLGCPHYSTREE) pPhysPageTree;
|
---|
88 | uint64_t u64LastHeartbeat;
|
---|
89 | } standby;
|
---|
90 |
|
---|
91 | /*
|
---|
92 | struct
|
---|
93 | {
|
---|
94 | } master;
|
---|
95 | */
|
---|
96 |
|
---|
97 | /** FTM critical section.
|
---|
98 | * This makes sure only the checkpoint or sync is active
|
---|
99 | */
|
---|
100 | PDMCRITSECT CritSect;
|
---|
101 |
|
---|
102 | STAMCOUNTER StatReceivedMem;
|
---|
103 | STAMCOUNTER StatReceivedState;
|
---|
104 | STAMCOUNTER StatSentMem;
|
---|
105 | STAMCOUNTER StatSentState;
|
---|
106 | STAMCOUNTER StatDeltaMem;
|
---|
107 | STAMCOUNTER StatDeltaVM;
|
---|
108 | STAMCOUNTER StatFullSync;
|
---|
109 | STAMCOUNTER StatCheckpointNetwork;
|
---|
110 | STAMCOUNTER StatCheckpointStorage;
|
---|
111 | #ifdef VBOX_WITH_STATISTICS
|
---|
112 | STAMPROFILE StatCheckpoint;
|
---|
113 | STAMPROFILE StatCheckpointResume;
|
---|
114 | STAMPROFILE StatCheckpointPause;
|
---|
115 | STAMCOUNTER StatSentMemRAM;
|
---|
116 | STAMCOUNTER StatSentMemMMIO2;
|
---|
117 | STAMCOUNTER StatSentMemShwROM;
|
---|
118 | STAMCOUNTER StatSentStateWrite;
|
---|
119 | #endif
|
---|
120 | } FTM;
|
---|
121 | AssertCompileMemberAlignment(FTM, CritSect, 8);
|
---|
122 |
|
---|
123 | /** @} */
|
---|
124 |
|
---|
125 | #endif
|
---|