VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuestInternal.h@ 38598

Last change on this file since 38598 was 38598, checked in by vboxsync, 13 years ago

Additions/common/VBoxGuest: try to fix a burn

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 10.5 KB
Line 
1/* $Id: VBoxGuestInternal.h 38598 2011-09-01 13:14:53Z vboxsync $ */
2/** @file
3 * VBoxGuest - Guest Additions Driver.
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 ___VBoxGuestInternal_h
19#define ___VBoxGuestInternal_h
20
21#include <iprt/types.h>
22#include <iprt/list.h>
23#include <iprt/semaphore.h>
24#include <iprt/spinlock.h>
25#include <VBox/VMMDev.h>
26#include <VBox/VBoxGuest.h>
27#include <VBox/VBoxGuestLib.h>
28
29/** @def VBOXGUEST_USE_WAKE_UP_LIST
30 * Defer wake-up of waiting thread when defined. */
31#if defined(RT_OS_SOLARIS) || defined(RT_OS_WINDOWS) || defined(DOXYGEN_RUNNING)
32# define VBOXGUEST_USE_DEFERRED_WAKE_UP
33#endif
34
35
36/** Pointer to the VBoxGuest per session data. */
37typedef struct VBOXGUESTSESSION *PVBOXGUESTSESSION;
38
39/** Pointer to a wait-for-event entry. */
40typedef struct VBOXGUESTWAIT *PVBOXGUESTWAIT;
41
42/**
43 * VBox guest wait for event entry.
44 *
45 * Each waiting thread allocates one of these items and adds
46 * it to the wait list before going to sleep on the event sem.
47 */
48typedef struct VBOXGUESTWAIT
49{
50 /** The list node. */
51 RTLISTNODE ListNode;
52 /** The events we are waiting on. */
53 uint32_t fReqEvents;
54 /** The events we received. */
55 uint32_t volatile fResEvents;
56#ifdef VBOXGUEST_USE_DEFERRED_WAKE_UP
57 /** Set by VBoxGuestWaitDoWakeUps before leaving the spinlock to call
58 * RTSemEventMultiSignal. */
59 bool volatile fPendingWakeUp;
60 /** Set by the requestor thread if it got the spinlock before the
61 * signaller. Deals with the race in VBoxGuestWaitDoWakeUps. */
62 bool volatile fFreeMe;
63#endif
64 /** The event semaphore. */
65 RTSEMEVENTMULTI Event;
66 /** The session that's waiting. */
67 PVBOXGUESTSESSION pSession;
68#ifdef VBOX_WITH_HGCM
69 /** The HGCM request we're waiting for to complete. */
70 VMMDevHGCMRequestHeader volatile *pHGCMReq;
71#endif
72} VBOXGUESTWAIT;
73
74
75/**
76 * VBox guest memory balloon.
77 */
78typedef struct VBOXGUESTMEMBALLOON
79{
80 /** Mutex protecting the members below from concurrent access.. */
81 RTSEMFASTMUTEX hMtx;
82 /** The current number of chunks in the balloon. */
83 uint32_t cChunks;
84 /** The maximum number of chunks in the balloon (typically the amount of guest
85 * memory / chunksize). */
86 uint32_t cMaxChunks;
87 /** This is true if we are using RTR0MemObjAllocPhysNC() / RTR0MemObjGetPagePhysAddr()
88 * and false otherwise. */
89 bool fUseKernelAPI;
90 /** The current owner of the balloon.
91 * This is automatically assigned to the first session using the ballooning
92 * API and first released when the session closes. */
93 PVBOXGUESTSESSION pOwner;
94 /** The pointer to the array of memory objects holding the chunks of the
95 * balloon. This array is cMaxChunks in size when present. */
96 PRTR0MEMOBJ paMemObj;
97} VBOXGUESTMEMBALLOON;
98/** Pointer to a memory balloon. */
99typedef VBOXGUESTMEMBALLOON *PVBOXGUESTMEMBALLOON;
100
101
102/**
103 * VBox guest device (data) extension.
104 */
105typedef struct VBOXGUESTDEVEXT
106{
107 /** The base of the adapter I/O ports. */
108 RTIOPORT IOPortBase;
109 /** Pointer to the mapping of the VMMDev adapter memory. */
110 VMMDevMemory volatile *pVMMDevMemory;
111 /** Events we won't permit anyone to filter out. */
112 uint32_t fFixedEvents;
113 /** The memory object reserving space for the guest mappings. */
114 RTR0MEMOBJ hGuestMappings;
115
116 /** Spinlock protecting the signaling and resetting of the wait-for-event
117 * semaphores as well as the event acking in the ISR. */
118 RTSPINLOCK EventSpinlock;
119 /** Preallocated VMMDevEvents for the IRQ handler. */
120 VMMDevEvents *pIrqAckEvents;
121 /** The physical address of pIrqAckEvents. */
122 RTCCPHYS PhysIrqAckEvents;
123 /** Wait-for-event list for threads waiting for multiple events. */
124 RTLISTNODE WaitList;
125#ifdef VBOX_WITH_HGCM
126 /** Wait-for-event list for threads waiting on HGCM async completion.
127 * The entire list is evaluated upon the arrival of an HGCM event, unlike
128 * the other lists which are only evaluated till the first thread has been woken up. */
129 RTLISTNODE HGCMWaitList;
130#endif
131#ifdef VBOXGUEST_USE_DEFERRED_WAKE_UP
132 /** List of wait-for-event entries that needs waking up. */
133 RTLISTNODE WakeUpList;
134#endif
135 /** List of wait-for-event entries that has been woken up. */
136 RTLISTNODE WokenUpList;
137 /** List of free wait-for-event entries. */
138 RTLISTNODE FreeList;
139 /** Mask of pending events. */
140 uint32_t volatile f32PendingEvents;
141 /** Current VMMDEV_EVENT_MOUSE_POSITION_CHANGED sequence number.
142 * Used to implement polling. */
143 uint32_t volatile u32MousePosChangedSeq;
144
145 /** Spinlock various items in the VBOXGUESTSESSION. */
146 RTSPINLOCK SessionSpinlock;
147
148 /** The current clipboard client ID, 0 if no client.
149 * For implementing the VBOXGUEST_IOCTL_CLIPBOARD_CONNECT interface. */
150 uint32_t u32ClipboardClientId;
151#ifdef VBOX_WITH_VRDP_SESSION_HANDLING
152 BOOL fVRDPEnabled;
153#endif
154 /** Memory balloon information for RTR0MemObjAllocPhysNC(). */
155 VBOXGUESTMEMBALLOON MemBalloon;
156 /** For each mouse status feature the number of sessions which have
157 * enabled it. A feature is enabled globally if at least one session has
158 * requested it. */
159 /** @todo can we programmatically determine the size of the array and
160 * still get the following alignment right? */
161 uint32_t volatile cMouseFeatureUsage[32];
162 /** The mouse feature status matching the counts above. These are updated
163 * together inside the session spinlock. */
164 uint32_t volatile fMouseStatus;
165 /** Align the next bit on a 64-byte boundary and make sure it starts at the same
166 * offset in both 64-bit and 32-bit builds.
167 *
168 * @remarks The alignments of the members that are larger than 48 bytes should be
169 * 64-byte for cache line reasons. structs containing small amounts of
170 * data could be lumped together at the end with a < 64 byte padding
171 * following it (to grow into and align the struct size).
172 */
173#if HC_ARCH_BITS == 32 /* Disabled for now to prevent a zero-sized array. */
174 uint8_t abAlignment1[HC_ARCH_BITS == 32 ? 20 : 0];
175#endif
176
177 /** Windows part. */
178 union
179 {
180#ifdef ___VBoxGuest_win_h
181 VBOXGUESTDEVEXTWIN s;
182#endif
183 uint8_t padding[256]; /* Multiple of 64; fix me! */
184 } win;
185
186} VBOXGUESTDEVEXT;
187/** Pointer to the VBoxGuest driver data. */
188typedef VBOXGUESTDEVEXT *PVBOXGUESTDEVEXT;
189
190AssertCompileMemberSizeAlignment(VBOXGUESTDEVEXT, win, 64);
191
192/**
193 * The VBoxGuest per session data.
194 *
195 * @remark Not quite sure whether this will be useful or not, but since
196 * its already there let's keep it for now in case it might come
197 * in handy later.
198 */
199typedef struct VBOXGUESTSESSION
200{
201#if defined(RT_OS_OS2) || defined(RT_OS_FREEBSD) || defined(RT_OS_SOLARIS)
202 /** Pointer to the next session with the same hash. */
203 PVBOXGUESTSESSION pNextHash;
204#endif
205#if defined(RT_OS_OS2)
206 /** The system file number of this session. */
207 uint16_t sfn;
208 uint16_t Alignment; /**< Alignment */
209#endif
210 /** The process (id) of the session.
211 * This is NIL if it's a kernel session. */
212 RTPROCESS Process;
213 /** Which process this session is associated with.
214 * This is NIL if it's a kernel session. */
215 RTR0PROCESS R0Process;
216 /** Pointer to the device extension. */
217 PVBOXGUESTDEVEXT pDevExt;
218
219#ifdef VBOX_WITH_HGCM
220 /** Array containing HGCM client IDs associated with this session.
221 * This will be automatically disconnected when the session is closed. */
222 uint32_t volatile aHGCMClientIds[64];
223#endif
224 /** The last consumed VMMDEV_EVENT_MOUSE_POSITION_CHANGED sequence number.
225 * Used to implement polling. */
226 uint32_t volatile u32MousePosChangedSeq;
227 /** Mouse features supported. A feature enabled in any guest session will
228 * be enabled for the host. */
229 uint32_t volatile fMouseStatus;
230
231} VBOXGUESTSESSION;
232
233RT_C_DECLS_BEGIN
234
235int VBoxGuestInitDevExt(PVBOXGUESTDEVEXT pDevExt, uint16_t IOPortBase, void *pvMMIOBase, uint32_t cbMMIO, VBOXOSTYPE enmOSType, uint32_t fEvents);
236bool VBoxGuestCommonISR(PVBOXGUESTDEVEXT pDevExt);
237void VBoxGuestDeleteDevExt(PVBOXGUESTDEVEXT pDevExt);
238int VBoxGuestReinitDevExtAfterHibernation(PVBOXGUESTDEVEXT pDevExt, VBOXOSTYPE enmOSType);
239int VBoxGuestSetGuestCapabilities(uint32_t fOr, uint32_t fNot);
240#ifdef VBOXGUEST_USE_DEFERRED_WAKE_UP
241void VBoxGuestWaitDoWakeUps(PVBOXGUESTDEVEXT pDevExt);
242#endif
243
244int VBoxGuestCreateUserSession(PVBOXGUESTDEVEXT pDevExt, PVBOXGUESTSESSION *ppSession);
245int VBoxGuestCreateKernelSession(PVBOXGUESTDEVEXT pDevExt, PVBOXGUESTSESSION *ppSession);
246void VBoxGuestCloseSession(PVBOXGUESTDEVEXT pDevExt, PVBOXGUESTSESSION pSession);
247
248int VBoxGuestCommonIOCtlFast(unsigned iFunction, PVBOXGUESTDEVEXT pDevExt, PVBOXGUESTSESSION pSession);
249int VBoxGuestCommonIOCtl(unsigned iFunction, PVBOXGUESTDEVEXT pDevExt, PVBOXGUESTSESSION pSession,
250 void *pvData, size_t cbData, size_t *pcbDataReturned);
251
252#if defined(RT_OS_SOLARIS) \
253 || defined(RT_OS_FREEBSD) \
254 || defined(RT_OS_LINUX)
255DECLVBGL(void *) VBoxGuestNativeServiceOpen(uint32_t *pu32Version);
256DECLVBGL(void) VBoxGuestNativeServiceClose(void *pvOpaque);
257DECLVBGL(int) VBoxGuestNativeServiceCall(void *pvOpaque, unsigned int iCmd, void *pvData, size_t cbSize, size_t *pcbReturn);
258#endif
259
260/**
261 * ISR callback for notifying threads polling for mouse events.
262 *
263 * This is called at the end of the ISR, after leaving the event spinlock, if
264 * VMMDEV_EVENT_MOUSE_POSITION_CHANGED was raised by the host.
265 *
266 * @param pDevExt The device extension.
267 */
268void VBoxGuestNativeISRMousePollEvent(PVBOXGUESTDEVEXT pDevExt);
269
270RT_C_DECLS_END
271
272#endif
273
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