VirtualBox

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

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

SCSI: Add support for readonly disks

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 12.0 KB
Line 
1/* $Id: vscsi.h 39566 2011-12-09 13:27:31Z 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/** The LUN can handle the UNMAP command. */
98#define VSCSI_LUN_FEATURE_UNMAP RT_BIT(0)
99/** The LUN has a non rotational medium. */
100#define VSCSI_LUN_FEATURE_NON_ROTATIONAL RT_BIT(1)
101/** The medium of the LUN is readonly. */
102#define VSCSI_LUN_FEATURE_READONLY RT_BIT(2)
103
104/**
105 * Virtual SCSI LUN I/O Callback table.
106 */
107typedef struct VSCSILUNIOCALLBACKS
108{
109 /**
110 * Retrieve the size of the underlying medium.
111 *
112 * @returns VBox status status code.
113 * @param hVScsiLun Virtual SCSI LUN handle.
114 * @param pvScsiLunUser Opaque user data which may
115 * be used to identify the medium.
116 * @param pcbSize Where to store the size of the
117 * medium.
118 */
119 DECLR3CALLBACKMEMBER(int, pfnVScsiLunMediumGetSize, (VSCSILUN hVScsiLun,
120 void *pvScsiLunUser,
121 uint64_t *pcbSize));
122
123 /**
124 * Enqueue a read or write request from the medium.
125 *
126 * @returns VBox status status code.
127 * @param hVScsiLun Virtual SCSI LUN handle.
128 * @param pvScsiLunUser Opaque user data which may
129 * be used to identify the medium.
130 * @param hVScsiIoReq Virtual SCSI I/O request handle.
131 */
132 DECLR3CALLBACKMEMBER(int, pfnVScsiLunReqTransferEnqueue, (VSCSILUN hVScsiLun,
133 void *pvScsiLunUser,
134 VSCSIIOREQ hVScsiIoReq));
135
136 /**
137 * Returns flags of supported features.
138 *
139 * @returns VBox status status code.
140 * @param hVScsiLun Virtual SCSI LUN handle.
141 * @param pvScsiLunUser Opaque user data which may
142 * be used to identify the medium.
143 * @param hVScsiIoReq Virtual SCSI I/O request handle.
144 */
145 DECLR3CALLBACKMEMBER(int, pfnVScsiLunGetFeatureFlags, (VSCSILUN hVScsiLun,
146 void *pvScsiLunUser,
147 uint64_t *pfFeatures));
148
149
150} VSCSILUNIOCALLBACKS;
151/** Pointer to a virtual SCSI LUN I/O callback table. */
152typedef VSCSILUNIOCALLBACKS *PVSCSILUNIOCALLBACKS;
153
154/**
155 * The virtual SCSI request completed callback.
156 */
157typedef DECLCALLBACK(void) FNVSCSIREQCOMPLETED(VSCSIDEVICE hVScsiDevice,
158 void *pvVScsiDeviceUser,
159 void *pvVScsiReqUser,
160 int rcScsiCode,
161 bool fRedoPossible,
162 int rcReq);
163/** Pointer to a virtual SCSI request completed callback. */
164typedef FNVSCSIREQCOMPLETED *PFNVSCSIREQCOMPLETED;
165
166/**
167 * Create a new empty SCSI device instance.
168 *
169 * @returns VBox status code.
170 * @param phVScsiDevice Where to store the SCSI device handle.
171 * @param pfnVScsiReqCompleted The method call after a request completed.
172 * @param pvVScsiDeviceUser Opaque user data given in the completion callback.
173 */
174VBOXDDU_DECL(int) VSCSIDeviceCreate(PVSCSIDEVICE phVScsiDevice,
175 PFNVSCSIREQCOMPLETED pfnVScsiReqCompleted,
176 void *pvVScsiDeviceUser);
177
178/**
179 * Destroy a SCSI device instance.
180 *
181 * @returns VBox status code.
182 * @param hScsiDevice The SCSI device handle to destroy.
183 */
184VBOXDDU_DECL(int) VSCSIDeviceDestroy(VSCSIDEVICE hVScsiDevice);
185
186/**
187 * Attach a LUN to the SCSI device.
188 *
189 * @returns VBox status code.
190 * @param hScsiDevice The SCSI device handle to add the LUN to.
191 * @param hScsiLun The LUN handle to add.
192 * @param iLun The LUN number.
193 */
194VBOXDDU_DECL(int) VSCSIDeviceLunAttach(VSCSIDEVICE hVScsiDevice, VSCSILUN hVScsiLun, uint32_t iLun);
195
196/**
197 * Detach a LUN from the SCSI device.
198 *
199 * @returns VBox status code.
200 * @param hVScsiDevice The SCSI device handle to add the LUN to.
201 * @param iLun The LUN number to remove.
202 * @param phVScsiLun Where to store the detached LUN handle.
203 */
204VBOXDDU_DECL(int) VSCSIDeviceLunDetach(VSCSIDEVICE hVScsiDevice, uint32_t iLun,
205 PVSCSILUN phVScsiLun);
206
207/**
208 * Return the SCSI LUN handle.
209 *
210 * @returns VBox status code.
211 * @param hVScsiDevice The SCSI device handle.
212 * @param iLun The LUN number to get.
213 * @param phVScsiLun Where to store the LUN handle.
214 */
215VBOXDDU_DECL(int) VSCSIDeviceLunGet(VSCSIDEVICE hVScsiDevice, uint32_t iLun,
216 PVSCSILUN phVScsiLun);
217
218/**
219 * Enqueue a request to the SCSI device.
220 *
221 * @returns VBox status code.
222 * @param hVScsiDevice The SCSI device handle.
223 * @param hVScsiReq The SCSI request handle to enqueue.
224 */
225VBOXDDU_DECL(int) VSCSIDeviceReqEnqueue(VSCSIDEVICE hVScsiDevice, VSCSIREQ hVScsiReq);
226
227/**
228 * Allocate a new request handle.
229 *
230 * @returns VBox status code.
231 * @param phVScsiDevice The SCSI device handle.
232 * @param phVScsiReq Where to SCSI request handle.
233 * @param iLun The LUN the request is for.
234 * @param pbCDB The CDB for the request.
235 * @param cbCDB The size of the CDB in bytes.
236 * @param cbSGList Number of bytes the S/G list describes.
237 * @param cSGListEntries Number of S/G list entries.
238 * @param paSGList Pointer to the S/G list.
239 * @param pbSense Pointer to the sense buffer.
240 * @param cbSense Size of the sense buffer.
241 * @param pvVScsiReqUser Opqaue user data returned when the request completes.
242 */
243VBOXDDU_DECL(int) VSCSIDeviceReqCreate(VSCSIDEVICE hVScsiDevice, PVSCSIREQ phVScsiReq,
244 uint32_t iLun, uint8_t *pbCDB, size_t cbCDB,
245 size_t cbSGList, unsigned cSGListEntries,
246 PCRTSGSEG paSGList, uint8_t *pbSense,
247 size_t cbSense, void *pvVScsiReqUser);
248
249/**
250 * Create a new LUN.
251 *
252 * @returns VBox status code.
253 * @param phVScsiLun Where to store the SCSI LUN handle.
254 * @param enmLunType The Lun type.
255 * @param pVScsiLunIoCallbacks Pointer to the I/O callbacks to use for his LUN.
256 * @param pvVScsiLunUser Opaque user argument which
257 * is returned in the pvScsiLunUser parameter
258 * when the request completion callback is called.
259 */
260VBOXDDU_DECL(int) VSCSILunCreate(PVSCSILUN phVScsiLun, VSCSILUNTYPE enmLunType,
261 PVSCSILUNIOCALLBACKS pVScsiLunIoCallbacks,
262 void *pvVScsiLunUser);
263
264/**
265 * Destroy virtual SCSI LUN.
266 *
267 * @returns VBox status code.
268 * @param hVScsiLun The virtual SCSI LUN handle to destroy.
269 */
270VBOXDDU_DECL(int) VSCSILunDestroy(VSCSILUN hVScsiLun);
271
272/**
273 * Notify a that a I/O request completed.
274 *
275 * @returns VBox status code.
276 * @param hVScsiIoReq The I/O request handle that completed.
277 * This is given when a I/O callback for
278 * the LUN is called by the virtual SCSI layer.
279 * @param rcIoReq The status code the I/O request completed with.
280 * @param fRedoPossible Flag whether it is possible to redo the request.
281 * If true setting any sense code will be omitted
282 * in case of an error to not alter the device state.
283 */
284VBOXDDU_DECL(int) VSCSIIoReqCompleted(VSCSIIOREQ hVScsiIoReq, int rcIoReq, bool fRedoPossible);
285
286/**
287 * Query the transfer direction of the I/O request.
288 *
289 * @returns Transfer direction.of the given I/O request
290 * @param hVScsiIoReq The SCSI I/O request handle.
291 */
292VBOXDDU_DECL(VSCSIIOREQTXDIR) VSCSIIoReqTxDirGet(VSCSIIOREQ hVScsiIoReq);
293
294/**
295 * Query I/O parameters.
296 *
297 * @returns VBox status code.
298 * @param hVScsiIoReq The SCSI I/O request handle.
299 * @param puOffset Where to store the start offset.
300 * @param pcbTransfer Where to store the amount of bytes to transfer.
301 * @param pcSeg Where to store the number of segments in the S/G list.
302 * @param pcbSeg Where to store the number of bytes the S/G list describes.
303 * @param ppaSeg Where to store the pointer to the S/G list.
304 */
305VBOXDDU_DECL(int) VSCSIIoReqParamsGet(VSCSIIOREQ hVScsiIoReq, uint64_t *puOffset,
306 size_t *pcbTransfer, unsigned *pcSeg,
307 size_t *pcbSeg, PCRTSGSEG *ppaSeg);
308
309/**
310 * Query unmap parameters.
311 *
312 * @returns VBox status code.
313 * @param hVScsiIoReq The SCSI I/O request handle.
314 * @param ppaRanges Where to store the pointer to the range array on success.
315 * @param pcRanges Where to store the number of ranges on success.
316 */
317VBOXDDU_DECL(int) VSCSIIoReqUnmapParamsGet(VSCSIIOREQ hVScsiIoReq, PCRTRANGE *ppaRanges,
318 unsigned *pcRanges);
319
320RT_C_DECLS_END
321
322#endif /* ___VBox_vscsi_h */
323
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