VirtualBox

source: vbox/trunk/src/VBox/Devices/Storage/DrvHostBase.h@ 4849

Last change on this file since 4849 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.4 KB
Line 
1/** @file
2 *
3 * VBox storage devices:
4 * Host base drive access driver
5 */
6
7/*
8 * Copyright (C) 2006-2007 innotek GmbH
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License as published by the Free Software Foundation,
14 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
15 * distribution. VirtualBox OSE is distributed in the hope that it will
16 * be useful, but WITHOUT ANY WARRANTY of any kind.
17 */
18
19#ifndef __HostDrvBase_h__
20#define __HostDrvBase_h__
21
22#include <VBox/cdefs.h>
23
24__BEGIN_DECLS
25
26
27/** Pointer to host base drive access driver instance data. */
28typedef struct DRVHOSTBASE *PDRVHOSTBASE;
29/**
30 * Host base drive access driver instance data.
31 */
32typedef struct DRVHOSTBASE
33{
34 /** Critical section used to serialize access to the handle and other
35 * members of this struct. */
36 RTCRITSECT CritSect;
37 /** Pointer driver instance. */
38 PPDMDRVINS pDrvIns;
39 /** Drive type. */
40 PDMBLOCKTYPE enmType;
41 /** Visible to the BIOS. */
42 bool fBiosVisible;
43 /** The configuration readonly value. */
44 bool fReadOnlyConfig;
45 /** The current readonly status. */
46 bool fReadOnly;
47 /** Flag whether failure to attach is an error or not. */
48 bool fAttachFailError;
49 /** Flag whether to keep instance working (as unmounted though). */
50 bool fKeepInstance;
51 /** Device name (MMHeap). */
52 char *pszDevice;
53 /** Device name to open (RTStrFree). */
54 char *pszDeviceOpen;
55 /** Uuid of the drive. */
56 RTUUID Uuid;
57
58 /** Pointer to the block port interface above us. */
59 PPDMIBLOCKPORT pDrvBlockPort;
60 /** Pointer to the mount notify interface above us. */
61 PPDMIMOUNTNOTIFY pDrvMountNotify;
62 /** Our block interface. */
63 PDMIBLOCK IBlock;
64 /** Our block interface. */
65 PDMIBLOCKBIOS IBlockBios;
66 /** Our mountable interface. */
67 PDMIMOUNT IMount;
68
69 /** Media present indicator. */
70 bool volatile fMediaPresent;
71 /** Locked indicator. */
72 bool fLocked;
73 /** The size of the media currently in the drive.
74 * This is invalid if no drive is in the drive. */
75 uint64_t volatile cbSize;
76#ifndef RT_OS_DARWIN
77 /** The filehandle of the device. */
78 RTFILE FileDevice;
79#endif
80
81 /** Handle of the poller thread. */
82 RTTHREAD ThreadPoller;
83#ifndef RT_OS_WINDOWS
84 /** Event semaphore the thread will wait on. */
85 RTSEMEVENT EventPoller;
86#endif
87 /** The poller interval. */
88 unsigned cMilliesPoller;
89 /** The shutdown indicator. */
90 bool volatile fShutdownPoller;
91
92 /** Whether or not enmTranslation is valid. */
93 bool fTranslationSet;
94 /** BIOS Geometry: Translation mode. */
95 PDMBIOSTRANSLATION enmTranslation;
96 /** BIOS Geometry: Cylinders. */
97 uint32_t cCylinders;
98 /** BIOS Geometry: Heads. */
99 uint32_t cHeads;
100 /** BIOS Geometry: Sectors. */
101 uint32_t cSectors;
102
103 /** The number of errors that could go into the release log. (flood gate) */
104 uint32_t cLogRelErrors;
105
106#ifdef RT_OS_DARWIN
107 /** The master port. */
108 mach_port_t MasterPort;
109 /** The MMC-2 Device Interface. (This is only used to get the scsi task interface.) */
110 MMCDeviceInterface **ppMMCDI;
111 /** The SCSI Task Device Interface. */
112 SCSITaskDeviceInterface **ppScsiTaskDI;
113 /** The block size. Set when querying the media size. */
114 uint32_t cbBlock;
115 /** The disk arbitration session reference. NULL if we didn't have to claim & unmount the device. */
116 DASessionRef pDASession;
117 /** The disk arbritation disk reference. NULL if we didn't have to claim & unmount the device. */
118 DADiskRef pDADisk;
119#endif
120
121#ifdef RT_OS_WINDOWS
122 /** Handle to the window we use to catch the device change broadcast messages. */
123 volatile HWND hwndDeviceChange;
124 /** The unit mask. */
125 DWORD fUnitMask;
126#endif
127
128
129 /**
130 * Performs the locking / unlocking of the device.
131 *
132 * This callback pointer should be set to NULL if the device doesn't support this action.
133 *
134 * @returns VBox status code.
135 * @param pThis Pointer to the instance data.
136 * @param fLock Set if locking, clear if unlocking.
137 */
138 DECLCALLBACKMEMBER(int, pfnDoLock)(PDRVHOSTBASE pThis, bool fLock);
139
140 /**
141 * Queries the media size.
142 * Can also be used to perform actions on media change.
143 *
144 * This callback pointer should be set to NULL if the default action is fine for this device.
145 *
146 * @returns VBox status code.
147 * @param pThis Pointer to the instance data.
148 * @param pcb Where to store the media size in bytes.
149 */
150 DECLCALLBACKMEMBER(int, pfnGetMediaSize)(PDRVHOSTBASE pThis, uint64_t *pcb);
151
152 /***
153 * Performs the polling operation.
154 *
155 * @returns VBox status code. (Failure means retry.)
156 * @param pThis Pointer to the instance data.
157 */
158 DECLCALLBACKMEMBER(int, pfnPoll)(PDRVHOSTBASE pThis);
159} DRVHOSTBASE;
160
161
162int DRVHostBaseInitData(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle, PDMBLOCKTYPE enmType);
163int DRVHostBaseInitFinish(PDRVHOSTBASE pThis);
164int DRVHostBaseMediaPresent(PDRVHOSTBASE pThis);
165void DRVHostBaseMediaNotPresent(PDRVHOSTBASE pThis);
166DECLCALLBACK(void) DRVHostBaseDestruct(PPDMDRVINS pDrvIns);
167#ifdef RT_OS_DARWIN
168DECLCALLBACK(int) DRVHostBaseScsiCmd(PDRVHOSTBASE pThis, const uint8_t *pbCmd, size_t cbCmd, PDMBLOCKTXDIR enmTxDir,
169 void *pvBuf, size_t *pcbBuf, uint8_t *pbSense, size_t cbSense, uint32_t cTimeoutMillies);
170#endif
171
172
173/** Makes a PDRVHOSTBASE out of a PPDMIMOUNT. */
174#define PDMIMOUNT_2_DRVHOSTBASE(pInterface) ( (PDRVHOSTBASE)((uintptr_t)pInterface - RT_OFFSETOF(DRVHOSTBASE, IMount)) )
175
176/** Makes a PDRVHOSTBASE out of a PPDMIBLOCK. */
177#define PDMIBLOCK_2_DRVHOSTBASE(pInterface) ( (PDRVHOSTBASE)((uintptr_t)pInterface - RT_OFFSETOF(DRVHOSTBASE, IBlock)) )
178
179__END_DECLS
180
181#endif
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