VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-win.h@ 62484

Last change on this file since 62484 was 58113, checked in by vboxsync, 9 years ago

VBoxGuest: Vbgd -> VGDrv, cleanups - will probably not build cleanly everywhere. :)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.3 KB
Line 
1/* $Id: VBoxGuest-win.h 58113 2015-10-08 10:13:54Z vboxsync $ */
2/** @file
3 * VBoxGuest - Windows specifics.
4 */
5
6/*
7 * Copyright (C) 2010-2015 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 ___VBoxGuest_win_h
19#define ___VBoxGuest_win_h
20
21
22#include <iprt/cdefs.h>
23
24RT_C_DECLS_BEGIN
25#ifdef RT_ARCH_X86
26# define _InterlockedAddLargeStatistic _InterlockedAddLargeStatistic_StupidDDKVsCompilerCrap
27#endif
28#include <ntddk.h>
29#ifdef RT_ARCH_X86
30# undef _InterlockedAddLargeStatistic
31#endif
32RT_C_DECLS_END
33
34#include <iprt/spinlock.h>
35#include <iprt/memobj.h>
36
37#include <VBox/VMMDev.h>
38#include <VBox/VBoxGuest.h>
39#include "VBoxGuestInternal.h"
40
41
42
43/** Possible device states for our state machine. */
44typedef enum VGDRVNTDEVSTATE
45{
46 VGDRVNTDEVSTATE_STOPPED,
47 VGDRVNTDEVSTATE_WORKING,
48 VGDRVNTDEVSTATE_PENDINGSTOP,
49 VGDRVNTDEVSTATE_PENDINGREMOVE,
50 VGDRVNTDEVSTATE_SURPRISEREMOVED,
51 VGDRVNTDEVSTATE_REMOVED
52} VGDRVNTDEVSTATE;
53
54typedef struct VBOXGUESTWINBASEADDRESS
55{
56 /** Original device physical address. */
57 PHYSICAL_ADDRESS RangeStart;
58 /** Length of I/O or memory range. */
59 ULONG RangeLength;
60 /** Flag: Unmapped range is I/O or memory range. */
61 BOOLEAN RangeInMemory;
62 /** Mapped I/O or memory range. */
63 PVOID MappedRangeStart;
64 /** Flag: mapped range is I/O or memory range. */
65 BOOLEAN MappedRangeInMemory;
66 /** Flag: resource is mapped (i.e. MmMapIoSpace called). */
67 BOOLEAN ResourceMapped;
68} VBOXGUESTWINBASEADDRESS, *PVBOXGUESTWINBASEADDRESS;
69
70
71/** Windows-specific device extension bits. */
72typedef struct VBOXGUESTDEVEXTWIN
73{
74 VBOXGUESTDEVEXT Core;
75
76 /** Our functional driver object. */
77 PDEVICE_OBJECT pDeviceObject;
78 /** Top of the stack. */
79 PDEVICE_OBJECT pNextLowerDriver;
80 /** Currently active Irp. */
81 IRP *pCurrentIrp;
82 /** Interrupt object pointer. */
83 PKINTERRUPT pInterruptObject;
84
85 /** Bus number where the device is located. */
86 ULONG busNumber;
87 /** Slot number where the device is located. */
88 ULONG slotNumber;
89 /** Device interrupt level. */
90 ULONG interruptLevel;
91 /** Device interrupt vector. */
92 ULONG interruptVector;
93 /** Affinity mask. */
94 KAFFINITY interruptAffinity;
95 /** LevelSensitive or Latched. */
96 KINTERRUPT_MODE interruptMode;
97
98 /** PCI base address information. */
99 ULONG pciAddressCount;
100 VBOXGUESTWINBASEADDRESS pciBaseAddress[PCI_TYPE0_ADDRESSES];
101
102 /** Physical address and length of VMMDev memory. */
103 PHYSICAL_ADDRESS vmmDevPhysMemoryAddress;
104 ULONG vmmDevPhysMemoryLength;
105
106 /** Device state. */
107 VGDRVNTDEVSTATE enmDevState;
108 /** The previous device state. */
109 VGDRVNTDEVSTATE enmPrevDevState;
110
111 /** Last system power action set (see VBoxGuestPower). */
112 POWER_ACTION LastSystemPowerAction;
113 /** Preallocated generic request for shutdown. */
114 VMMDevPowerStateRequest *pPowerStateRequest;
115 /** Preallocated VMMDevEvents for IRQ handler. */
116 VMMDevEvents *pIrqAckEvents;
117
118 /** Pre-allocated kernel session data. This is needed
119 * for handling kernel IOCtls. */
120 struct VBOXGUESTSESSION *pKernelSession;
121
122 /** Spinlock protecting MouseNotifyCallback. Required since the consumer is
123 * in a DPC callback and not the ISR. */
124 KSPIN_LOCK MouseEventAccessLock;
125} VBOXGUESTDEVEXTWIN, *PVBOXGUESTDEVEXTWIN;
126
127
128/** NT (windows) version identifier. */
129typedef enum VGDRVNTVER
130{
131 VGDRVNTVER_INVALID = 0,
132 VGDRVNTVER_WINNT4,
133 VGDRVNTVER_WIN2K,
134 VGDRVNTVER_WINXP,
135 VGDRVNTVER_WIN2K3,
136 VGDRVNTVER_WINVISTA,
137 VGDRVNTVER_WIN7,
138 VGDRVNTVER_WIN8,
139 VGDRVNTVER_WIN81,
140 VGDRVNTVER_WIN10
141} VGDRVNTVER;
142extern VGDRVNTVER g_enmVGDrvNtVer;
143
144
145#define VBOXGUEST_UPDATE_DEVSTATE(a_pDevExt, a_enmNewDevState) \
146 do { \
147 (a_pDevExt)->enmPrevDevState = (a_pDevExt)->enmDevState; \
148 (a_pDevExt)->enmDevState = (a_enmNewDevState); \
149 } while (0)
150
151/** CM_RESOURCE_MEMORY_* flags which were used on XP or earlier. */
152#define VBOX_CM_PRE_VISTA_MASK (0x3f)
153
154
155RT_C_DECLS_BEGIN
156
157#ifdef TARGET_NT4
158NTSTATUS vgdrvNt4CreateDevice(PDRIVER_OBJECT pDrvObj, PDEVICE_OBJECT pDevObj, PUNICODE_STRING pRegPath);
159#else
160NTSTATUS vgdrvNtPnP(PDEVICE_OBJECT pDevObj, PIRP pIrp);
161NTSTATUS vgdrvNtPower(PDEVICE_OBJECT pDevObj, PIRP pIrp);
162#endif
163
164/** @name Common routines used in both (PnP and legacy) driver versions.
165 * @{
166 */
167#ifdef TARGET_NT4
168NTSTATUS vgdrvNtInit(PDRIVER_OBJECT pDrvObj, PDEVICE_OBJECT pDevObj, PUNICODE_STRING pRegPath);
169#else
170NTSTATUS vgdrvNtInit(PDEVICE_OBJECT pDevObj, PIRP pIrp);
171#endif
172NTSTATUS vgdrvNtCleanup(PDEVICE_OBJECT pDevObj);
173void vgdrvNtUnmapVMMDevMemory(PVBOXGUESTDEVEXTWIN pDevExt); /**< @todo make static once buggy vgdrvNtInit is fixed. */
174VBOXOSTYPE vgdrvNtVersionToOSType(VGDRVNTVER enmNtVer);
175/** @} */
176
177RT_C_DECLS_END
178
179#ifdef TARGET_NT4
180/*
181 * XP DDK #defines ExFreePool to ExFreePoolWithTag. The latter does not exist
182 * on NT4, so... The same for ExAllocatePool.
183 */
184# undef ExAllocatePool
185# undef ExFreePool
186#endif
187
188#endif /* !___VBoxGuest_win_h */
189
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