VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/VBoxGuest/VBoxGuest_Internal.h@ 25022

Last change on this file since 25022 was 25022, checked in by vboxsync, 15 years ago

VBoxGuest: Comma.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.7 KB
Line 
1/** @file
2 *
3 * VBoxGuest -- VirtualBox Win32 guest support driver
4 *
5 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
6 *
7 * This file is part of VirtualBox Open Source Edition (OSE), as
8 * available from http://www.virtualbox.org. This file is free software;
9 * you can redistribute it and/or modify it under the terms of the GNU
10 * General Public License (GPL) as published by the Free Software
11 * Foundation, in version 2 as it comes in the "COPYING" file of the
12 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
13 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
14 *
15 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
16 * Clara, CA 95054 USA or visit http://www.sun.com if you need
17 * additional information or have any questions.
18 */
19
20#ifndef __VBOXGUESTINTERNAL_h__
21#define __VBOXGUESTINTERNAL_h__
22
23
24/*******************************************************************************
25* Header Files *
26*******************************************************************************/
27
28#include <iprt/cdefs.h>
29
30/** @todo Use the-nt-kernel.h and keep the messy stuff all in one place? */
31#ifdef IN_RING0
32# if (_MSC_VER >= 1400) && !defined(VBOX_WITH_PATCHED_DDK)
33# include <iprt/asm.h>
34# define _InterlockedExchange _InterlockedExchange_StupidDDKVsCompilerCrap
35# define _InterlockedExchangeAdd _InterlockedExchangeAdd_StupidDDKVsCompilerCrap
36# define _InterlockedCompareExchange _InterlockedCompareExchange_StupidDDKVsCompilerCrap
37# define _InterlockedAddLargeStatistic _InterlockedAddLargeStatistic_StupidDDKVsCompilerCrap
38# pragma warning(disable : 4163)
39RT_C_DECLS_BEGIN
40# include <ntddk.h>
41RT_C_DECLS_END
42# pragma warning(default : 4163)
43# undef _InterlockedExchange
44# undef _InterlockedExchangeAdd
45# undef _InterlockedCompareExchange
46# undef _InterlockedAddLargeStatistic
47# else
48RT_C_DECLS_BEGIN
49# include <ntddk.h>
50RT_C_DECLS_END
51# endif
52#endif
53
54#include <iprt/spinlock.h>
55#include <iprt/memobj.h>
56
57#include <VBox/VMMDev.h>
58#include <VBox/VBoxGuest.h>
59
60
61/*******************************************************************************
62* Defined Constants And Macros *
63*******************************************************************************/
64
65/* debug printf */
66# define OSDBGPRINT(a) DbgPrint a
67
68/* dprintf */
69#if (defined(DEBUG) && !defined(NO_LOGGING)) || defined(LOG_ENABLED)
70# ifdef LOG_TO_BACKDOOR
71# include <VBox/log.h>
72# define dprintf(a) RTLogBackdoorPrintf a
73# else
74# define dprintf(a) OSDBGPRINT(a)
75# endif
76#else
77# define dprintf(a) do {} while (0)
78#endif
79
80/* dprintf2 - extended logging. */
81#if 0
82# define dprintf2 dprintf
83#else
84# define dprintf2(a) do { } while (0)
85#endif
86
87// the maximum scatter/gather transfer length
88#define MAXIMUM_TRANSFER_LENGTH 64*1024
89
90#define PCI_MAX_BUSES 256
91
92/*
93 * Error codes.
94 */
95
96
97/*******************************************************************************
98* Structures and Typedefs *
99*******************************************************************************/
100
101// possible device states for our state machine
102enum DEVSTATE
103{
104 STOPPED,
105 WORKING,
106 PENDINGSTOP,
107 PENDINGREMOVE,
108 SURPRISEREMOVED,
109 REMOVED
110};
111
112// undocumented API to set the system time
113extern "C"
114{
115NTSYSAPI NTSTATUS NTAPI ZwSetSystemTime(IN PLARGE_INTEGER NewTime, OUT PLARGE_INTEGER OldTime OPTIONAL);
116}
117
118#ifdef IN_RING0
119typedef struct _BASE_ADDRESS {
120
121 PHYSICAL_ADDRESS RangeStart; // Original device physical address
122 ULONG RangeLength; // Length of I/O or memory range
123 BOOLEAN RangeInMemory; // Flag: unmapped range is I/O or memory range
124
125 PVOID MappedRangeStart; // Mapped I/O or memory range
126 BOOLEAN MappedRangeInMemory; // Flag: mapped range is I/O or memory range
127
128 BOOLEAN ResourceMapped; // Flag: resource is mapped (i.e. MmMapIoSpace called)
129
130} BASE_ADDRESS, *PBASE_ADDRESS;
131
132
133/**
134 * Device extension.
135 */
136typedef struct VBOXGUESTDEVEXT
137{
138//// legacy stuff
139 // bus number where the device is located
140 ULONG busNumber;
141 // slot number where the device is located
142 ULONG slotNumber;
143 // device interrupt level
144 ULONG interruptLevel;
145 // device interrupt vector
146 ULONG interruptVector;
147 // affinity mask
148 KAFFINITY interruptAffinity;
149 // LevelSensitive or Latched
150 KINTERRUPT_MODE interruptMode;
151
152 // PCI base address information
153 ULONG addressCount;
154 BASE_ADDRESS baseAddress[PCI_TYPE0_ADDRESSES];
155
156 // adapter object pointer, returned by HalGetAdapter
157 PADAPTER_OBJECT adapterObject;
158
159 // interrupt object pointer
160 PKINTERRUPT interruptObject;
161/////
162
163 // the driver name
164 UCHAR szDriverName[32];
165 // our functional driver object
166 PDEVICE_OBJECT deviceObject;
167 // the top of the stack
168 PDEVICE_OBJECT nextLowerDriver;
169 // currently active Irp
170 IRP *currentIrp;
171 PKTHREAD workerThread;
172 PKTHREAD idleThread;
173 KEVENT workerThreadRequest;
174 BOOLEAN stopThread;
175 // device state
176 DEVSTATE devState;
177 // start port address
178 ULONG startPortAddress;
179 // start of hypervisor mapping
180 PVOID hypervisorMapping;
181 // size in bytes of the hypervisor mapping
182 ULONG hypervisorMappingSize;
183
184 /* Patch memory object. */
185 RTR0MEMOBJ PatchMemObj;
186
187 /* Physical address and length of VMMDev memory */
188 PHYSICAL_ADDRESS memoryAddress;
189 ULONG memoryLength;
190
191 /* Virtual address of VMMDev memory */
192 VMMDevMemory *pVMMDevMemory;
193
194 /* Pending event flags signalled by host */
195 ULONG u32Events;
196
197 /* Notification semaphore */
198 KEVENT keventNotification;
199
200 LARGE_INTEGER HGCMWaitTimeout;
201
202 /* Old Windows session id */
203 ULONG ulOldActiveConsoleId;
204
205 /* VRDP hook state */
206 BOOLEAN fVRDPEnabled;
207
208 /* Preallocated VMMDevEvents for IRQ handler */
209 VMMDevEvents *irqAckEvents;
210
211#ifdef VBOX_WITH_HGCM
212 /** Spinlock various items in the VBOXGUESTSESSION. */
213 RTSPINLOCK SessionSpinlock;
214#endif
215
216 struct
217 {
218 uint32_t cBalloons;
219 uint32_t cMaxBalloons;
220 PMDL *paMdlMemBalloon;
221 } MemBalloon;
222
223 /* Preallocated generic request for shutdown. */
224 VMMDevPowerStateRequest *powerStateRequest;
225
226 /** Is the bugcheck callback registered? */
227 BOOLEAN bBugcheckCallbackRegistered;
228 /** The bugcheck registration record. */
229 KBUGCHECK_CALLBACK_RECORD bugcheckRecord;
230
231} VBOXGUESTDEVEXT, *PVBOXGUESTDEVEXT;
232
233// Windows version identifier
234typedef enum
235{
236 WINNT4 = 1,
237 WIN2K = 2,
238 WINXP = 3,
239 WIN2K3 = 4,
240 WINVISTA = 5,
241 WIN7 = 6
242} winVersion_t;
243extern winVersion_t winVersion;
244
245#ifdef VBOX_WITH_HGCM
246/**
247 * The VBoxGuest per session data.
248 *
249 * @remark Just to store hgcm ID's, perhaps could combine with one from common/VBoxGuest/vboxguestinternal.h?
250 */
251typedef struct VBOXGUESTSESSION
252{
253 /** Array containing HGCM client IDs associated with this session.
254 * This will be automatically disconnected when the session is closed.
255 * Note that array size also affects/is maximum number of supported opengl threads per guest process.
256 */
257 uint32_t volatile aHGCMClientIds[8];
258} VBOXGUESTSESSION, *PVBOXGUESTSESSION;
259#endif
260
261extern "C"
262{
263VOID VBoxGuestDpcHandler(PKDPC dpc, PDEVICE_OBJECT pDevObj,
264 PIRP irp, PVOID context);
265BOOLEAN VBoxGuestIsrHandler(PKINTERRUPT interrupt, PVOID serviceContext);
266NTSTATUS createThreads(PVBOXGUESTDEVEXT pDevExt);
267VOID unreserveHypervisorMemory(PVBOXGUESTDEVEXT pDevExt);
268void VBoxInitMemBalloon(PVBOXGUESTDEVEXT pDevExt);
269void VBoxCleanupMemBalloon(PVBOXGUESTDEVEXT pDevExt);
270}
271
272#endif
273
274#endif // __H_VBOXGUESTINTERNAL
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