VirtualBox

source: vbox/trunk/include/VBox/vscsi.h@ 38757

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

VSCSI+DrvSCSI: Add support for the UNMAP command if discarding is enabled

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 12.2 KB
Line 
1/* $Id: vscsi.h 38680 2011-09-08 07:52:08Z vboxsync $ */
2/** @file
3 * VBox storage drivers: Virtual SCSI driver
4 */
5
6/*
7 * Copyright (C) 2006-2011 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 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27#ifndef ___VBox_vscsi_h
28#define ___VBox_vscsi_h
29
30#include <VBox/cdefs.h>
31#include <VBox/types.h>
32#include <iprt/sg.h>
33
34RT_C_DECLS_BEGIN
35
36#ifdef IN_RING0
37# error "There are no VBox VSCSI APIs available in Ring-0 Host Context!"
38#endif
39
40/** A virtual SCSI device handle */
41typedef struct VSCSIDEVICEINT *VSCSIDEVICE;
42/** A pointer to a virtual SCSI device handle. */
43typedef VSCSIDEVICE *PVSCSIDEVICE;
44/** A virtual SCSI LUN handle. */
45typedef struct VSCSILUNINT *VSCSILUN;
46/** A pointer to a virtual SCSI LUN handle. */
47typedef VSCSILUN *PVSCSILUN;
48/** A virtual SCSI request handle. */
49typedef struct VSCSIREQINT *VSCSIREQ;
50/** A pointer to a virtual SCSI request handle. */
51typedef VSCSIREQ *PVSCSIREQ;
52/** A SCSI I/O request handle. */
53typedef struct VSCSIIOREQINT *VSCSIIOREQ;
54/** A pointer to a SCSI I/O request handle. */
55typedef VSCSIIOREQ *PVSCSIIOREQ;
56
57/**
58 * Virtual SCSI I/O request transfer direction.
59 */
60typedef enum VSCSIIOREQTXDIR
61{
62 /** Invalid direction */
63 VSCSIIOREQTXDIR_INVALID = 0,
64 /** Read */
65 VSCSIIOREQTXDIR_READ,
66 /** Write */
67 VSCSIIOREQTXDIR_WRITE,
68 /** Flush */
69 VSCSIIOREQTXDIR_FLUSH,
70 /** Unmap */
71 VSCSIIOREQTXDIR_UNMAP,
72 /** 32bit hack */
73 VSCSIIOREQTXDIR_32BIT_HACK = 0x7fffffff
74} VSCSIIOREQTXDIR;
75/** Pointer to a SCSI LUN type */
76typedef VSCSIIOREQTXDIR *PVSCSIIOREQTXDIR;
77
78/**
79 * LUN types we support
80 */
81typedef enum VSCSILUNTYPE
82{
83 /** Invalid type */
84 VSCSILUNTYPE_INVALID = 0,
85 /** Hard disk (SBC) */
86 VSCSILUNTYPE_SBC,
87 /** CD/DVD drive (MMC) */
88 VSCSILUNTYPE_MMC,
89 /** Last value to indicate an invalid device */
90 VSCSILUNTYPE_LAST,
91 /** 32bit hack */
92 VSCSILUNTYPE_32BIT_HACK = 0x7fffffff
93} VSCSILUNTYPE;
94/** Pointer to a SCSI LUN type */
95typedef VSCSILUNTYPE *PVSCSILUNTYPE;
96
97/**
98 * Range descriptor.
99 */
100typedef struct VSCSIRANGE
101{
102 /** Start offset. */
103 uint64_t offStart;
104 /** Size of the range. */
105 size_t cbRange;
106} VSCSIRANGE;
107/** Pointer to a range descriptor. */
108typedef VSCSIRANGE *PVSCSIRANGE;
109
110/** The LUN can handle the UNMAP command. */
111#define VSCSI_LUN_FEATURE_UNMAP RT_BIT(0)
112/** The LUN has a non rotational medium. */
113#define VSCSI_LUN_FEATURE_NON_ROTATIONAL RT_BIT(1)
114
115/**
116 * Virtual SCSI LUN I/O Callback table.
117 */
118typedef struct VSCSILUNIOCALLBACKS
119{
120 /**
121 * Retrieve the size of the underlying medium.
122 *
123 * @returns VBox status status code.
124 * @param hVScsiLun Virtual SCSI LUN handle.
125 * @param pvScsiLunUser Opaque user data which may
126 * be used to identify the medium.
127 * @param pcbSize Where to store the size of the
128 * medium.
129 */
130 DECLR3CALLBACKMEMBER(int, pfnVScsiLunMediumGetSize, (VSCSILUN hVScsiLun,
131 void *pvScsiLunUser,
132 uint64_t *pcbSize));
133
134 /**
135 * Enqueue a read or write request from the medium.
136 *
137 * @returns VBox status status code.
138 * @param hVScsiLun Virtual SCSI LUN handle.
139 * @param pvScsiLunUser Opaque user data which may
140 * be used to identify the medium.
141 * @param hVScsiIoReq Virtual SCSI I/O request handle.
142 */
143 DECLR3CALLBACKMEMBER(int, pfnVScsiLunReqTransferEnqueue, (VSCSILUN hVScsiLun,
144 void *pvScsiLunUser,
145 VSCSIIOREQ hVScsiIoReq));
146
147 /**
148 * Returns flags of supported features.
149 *
150 * @returns VBox status status code.
151 * @param hVScsiLun Virtual SCSI LUN handle.
152 * @param pvScsiLunUser Opaque user data which may
153 * be used to identify the medium.
154 * @param hVScsiIoReq Virtual SCSI I/O request handle.
155 */
156 DECLR3CALLBACKMEMBER(int, pfnVScsiLunGetFeatureFlags, (VSCSILUN hVScsiLun,
157 void *pvScsiLunUser,
158 uint64_t *pfFeatures));
159
160
161} VSCSILUNIOCALLBACKS;
162/** Pointer to a virtual SCSI LUN I/O callback table. */
163typedef VSCSILUNIOCALLBACKS *PVSCSILUNIOCALLBACKS;
164
165/**
166 * The virtual SCSI request completed callback.
167 */
168typedef DECLCALLBACK(void) FNVSCSIREQCOMPLETED(VSCSIDEVICE hVScsiDevice,
169 void *pvVScsiDeviceUser,
170 void *pvVScsiReqUser,
171 int rcScsiCode,
172 bool fRedoPossible,
173 int rcReq);
174/** Pointer to a virtual SCSI request completed callback. */
175typedef FNVSCSIREQCOMPLETED *PFNVSCSIREQCOMPLETED;
176
177/**
178 * Create a new empty SCSI device instance.
179 *
180 * @returns VBox status code.
181 * @param phVScsiDevice Where to store the SCSI device handle.
182 * @param pfnVScsiReqCompleted The method call after a request completed.
183 * @param pvVScsiDeviceUser Opaque user data given in the completion callback.
184 */
185VBOXDDU_DECL(int) VSCSIDeviceCreate(PVSCSIDEVICE phVScsiDevice,
186 PFNVSCSIREQCOMPLETED pfnVScsiReqCompleted,
187 void *pvVScsiDeviceUser);
188
189/**
190 * Destroy a SCSI device instance.
191 *
192 * @returns VBox status code.
193 * @param hScsiDevice The SCSI device handle to destroy.
194 */
195VBOXDDU_DECL(int) VSCSIDeviceDestroy(VSCSIDEVICE hVScsiDevice);
196
197/**
198 * Attach a LUN to the SCSI device.
199 *
200 * @returns VBox status code.
201 * @param hScsiDevice The SCSI device handle to add the LUN to.
202 * @param hScsiLun The LUN handle to add.
203 * @param iLun The LUN number.
204 */
205VBOXDDU_DECL(int) VSCSIDeviceLunAttach(VSCSIDEVICE hVScsiDevice, VSCSILUN hVScsiLun, uint32_t iLun);
206
207/**
208 * Detach a LUN from the SCSI device.
209 *
210 * @returns VBox status code.
211 * @param hVScsiDevice The SCSI device handle to add the LUN to.
212 * @param iLun The LUN number to remove.
213 * @param phVScsiLun Where to store the detached LUN handle.
214 */
215VBOXDDU_DECL(int) VSCSIDeviceLunDetach(VSCSIDEVICE hVScsiDevice, uint32_t iLun,
216 PVSCSILUN phVScsiLun);
217
218/**
219 * Return the SCSI LUN handle.
220 *
221 * @returns VBox status code.
222 * @param hVScsiDevice The SCSI device handle.
223 * @param iLun The LUN number to get.
224 * @param phVScsiLun Where to store the LUN handle.
225 */
226VBOXDDU_DECL(int) VSCSIDeviceLunGet(VSCSIDEVICE hVScsiDevice, uint32_t iLun,
227 PVSCSILUN phVScsiLun);
228
229/**
230 * Enqueue a request to the SCSI device.
231 *
232 * @returns VBox status code.
233 * @param hVScsiDevice The SCSI device handle.
234 * @param hVScsiReq The SCSI request handle to enqueue.
235 */
236VBOXDDU_DECL(int) VSCSIDeviceReqEnqueue(VSCSIDEVICE hVScsiDevice, VSCSIREQ hVScsiReq);
237
238/**
239 * Allocate a new request handle.
240 *
241 * @returns VBox status code.
242 * @param phVScsiDevice The SCSI device handle.
243 * @param phVScsiReq Where to SCSI request handle.
244 * @param iLun The LUN the request is for.
245 * @param pbCDB The CDB for the request.
246 * @param cbCDB The size of the CDB in bytes.
247 * @param cbSGList Number of bytes the S/G list describes.
248 * @param cSGListEntries Number of S/G list entries.
249 * @param paSGList Pointer to the S/G list.
250 * @param pbSense Pointer to the sense buffer.
251 * @param cbSense Size of the sense buffer.
252 * @param pvVScsiReqUser Opqaue user data returned when the request completes.
253 */
254VBOXDDU_DECL(int) VSCSIDeviceReqCreate(VSCSIDEVICE hVScsiDevice, PVSCSIREQ phVScsiReq,
255 uint32_t iLun, uint8_t *pbCDB, size_t cbCDB,
256 size_t cbSGList, unsigned cSGListEntries,
257 PCRTSGSEG paSGList, uint8_t *pbSense,
258 size_t cbSense, void *pvVScsiReqUser);
259
260/**
261 * Create a new LUN.
262 *
263 * @returns VBox status code.
264 * @param phVScsiLun Where to store the SCSI LUN handle.
265 * @param enmLunType The Lun type.
266 * @param pVScsiLunIoCallbacks Pointer to the I/O callbacks to use for his LUN.
267 * @param pvVScsiLunUser Opaque user argument which
268 * is returned in the pvScsiLunUser parameter
269 * when the request completion callback is called.
270 */
271VBOXDDU_DECL(int) VSCSILunCreate(PVSCSILUN phVScsiLun, VSCSILUNTYPE enmLunType,
272 PVSCSILUNIOCALLBACKS pVScsiLunIoCallbacks,
273 void *pvVScsiLunUser);
274
275/**
276 * Destroy virtual SCSI LUN.
277 *
278 * @returns VBox status code.
279 * @param hVScsiLun The virtual SCSI LUN handle to destroy.
280 */
281VBOXDDU_DECL(int) VSCSILunDestroy(VSCSILUN hVScsiLun);
282
283/**
284 * Notify a that a I/O request completed.
285 *
286 * @returns VBox status code.
287 * @param hVScsiIoReq The I/O request handle that completed.
288 * This is given when a I/O callback for
289 * the LUN is called by the virtual SCSI layer.
290 * @param rcIoReq The status code the I/O request completed with.
291 * @param fRedoPossible Flag whether it is possible to redo the request.
292 * If true setting any sense code will be omitted
293 * in case of an error to not alter the device state.
294 */
295VBOXDDU_DECL(int) VSCSIIoReqCompleted(VSCSIIOREQ hVScsiIoReq, int rcIoReq, bool fRedoPossible);
296
297/**
298 * Query the transfer direction of the I/O request.
299 *
300 * @returns Transfer direction.of the given I/O request
301 * @param hVScsiIoReq The SCSI I/O request handle.
302 */
303VBOXDDU_DECL(VSCSIIOREQTXDIR) VSCSIIoReqTxDirGet(VSCSIIOREQ hVScsiIoReq);
304
305/**
306 * Query I/O parameters.
307 *
308 * @returns VBox status code.
309 * @param hVScsiIoReq The SCSI I/O request handle.
310 * @param puOffset Where to store the start offset.
311 * @param pcbTransfer Where to store the amount of bytes to transfer.
312 * @param pcSeg Where to store the number of segments in the S/G list.
313 * @param pcbSeg Where to store the number of bytes the S/G list describes.
314 * @param ppaSeg Where to store the pointer to the S/G list.
315 */
316VBOXDDU_DECL(int) VSCSIIoReqParamsGet(VSCSIIOREQ hVScsiIoReq, uint64_t *puOffset,
317 size_t *pcbTransfer, unsigned *pcSeg,
318 size_t *pcbSeg, PCRTSGSEG *ppaSeg);
319
320/**
321 * Query unmap parameters.
322 *
323 * @returns VBox status code.
324 * @param hVScsiIoReq The SCSI I/O request handle.
325 * @param ppaRanges Where to store the pointer to the range array on success.
326 * @param pcRanges Where to store the number of ranges on success.
327 */
328VBOXDDU_DECL(int) VSCSIIoReqUnmapParamsGet(VSCSIIOREQ hVScsiIoReq, PVSCSIRANGE *ppaRanges,
329 unsigned *pcRanges);
330
331RT_C_DECLS_END
332
333#endif /* ___VBox_vscsi_h */
334
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