vscsi.h revision ad27e1d5e48ca41245120c331cc88b50464813ce
366N/A/* $Id$ */
366N/A/** @file
366N/A * VBox storage drivers: Virtual SCSI driver
366N/A */
943N/A
366N/A/*
366N/A * Copyright (C) 2006-2010 Oracle Corporation
919N/A *
919N/A * This file is part of VirtualBox Open Source Edition (OSE), as
919N/A * available from http://www.virtualbox.org. This file is free software;
919N/A * you can redistribute it and/or modify it under the terms of the GNU
919N/A * General Public License (GPL) as published by the Free Software
919N/A * Foundation, in version 2 as it comes in the "COPYING" file of the
919N/A * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
919N/A * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
919N/A *
919N/A * The contents of this file may alternatively be used under the terms
919N/A * of the Common Development and Distribution License Version 1.0
919N/A * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
919N/A * VirtualBox OSE distribution, in which case the provisions of the
919N/A * CDDL are applicable instead of those of the GPL.
919N/A *
919N/A * You may elect to license modified versions of this file under the
919N/A * terms and conditions of either the GPL or the CDDL or both.
366N/A */
366N/A
366N/A#ifndef ___VBox_vscsi_h
366N/A#define ___VBox_vscsi_h
493N/A
366N/A#include <VBox/cdefs.h>
366N/A#include <VBox/types.h>
493N/A#include <iprt/sg.h>
366N/A
911N/ART_C_DECLS_BEGIN
911N/A
911N/A#ifdef IN_RING0
911N/A# error "There are no VBox VSCSI APIs available in Ring-0 Host Context!"
366N/A#endif
366N/A
366N/A/** A virtual SCSI device handle */
366N/Atypedef struct VSCSIDEVICEINT *VSCSIDEVICE;
366N/A/** A pointer to a virtual SCSI device handle. */
366N/Atypedef VSCSIDEVICE *PVSCSIDEVICE;
970N/A/** A virtual SCSI LUN handle. */
970N/Atypedef struct VSCSILUNINT *VSCSILUN;
970N/A/** A pointer to a virtual SCSI LUN handle. */
970N/Atypedef VSCSILUN *PVSCSILUN;
970N/A/** A virtual SCSI request handle. */
970N/Atypedef struct VSCSIREQINT *VSCSIREQ;
366N/A/** A pointer to a virtual SCSI request handle. */
366N/Atypedef VSCSIREQ *PVSCSIREQ;
493N/A/** A SCSI I/O request handle. */
969N/Atypedef struct VSCSIIOREQINT *VSCSIIOREQ;
366N/A/** A pointer to a SCSI I/O request handle. */
965N/Atypedef VSCSIIOREQ *PVSCSIIOREQ;
965N/A
366N/A/**
366N/A * Virtual SCSI I/O request transfer direction.
366N/A */
366N/Atypedef enum VSCSIIOREQTXDIR
366N/A{
493N/A /** Invalid direction */
366N/A VSCSIIOREQTXDIR_INVALID = 0,
970N/A /** Read */
970N/A VSCSIIOREQTXDIR_READ,
970N/A /** Write */
366N/A VSCSIIOREQTXDIR_WRITE,
/** Flush */
VSCSIIOREQTXDIR_FLUSH,
/** 32bit hack */
VSCSIIOREQTXDIR_32BIT_HACK = 0x7fffffff
} VSCSIIOREQTXDIR;
/** Pointer to a SCSI LUN type */
typedef VSCSIIOREQTXDIR *PVSCSIIOREQTXDIR;
/**
* LUN types we support
*/
typedef enum VSCSILUNTYPE
{
/** Invalid type */
VSCSILUNTYPE_INVALID = 0,
/** Hard disk (SBC) */
VSCSILUNTYPE_SBC,
/** CD/DVD drive (MMC) */
VSCSILUNTYPE_MMC,
/** Last value to indicate an invalid device */
VSCSILUNTYPE_LAST,
/** 32bit hack */
VSCSILUNTYPE_32BIT_HACK = 0x7fffffff
} VSCSILUNTYPE;
/** Pointer to a SCSI LUN type */
typedef VSCSILUNTYPE *PVSCSILUNTYPE;
/**
* Virtual SCSI LUN I/O Callback table.
*/
typedef struct VSCSILUNIOCALLBACKS
{
/**
* Retrieve the size of the underlying medium.
*
* @returns VBox status status code.
* @param hVScsiLun Virtual SCSI LUN handle.
* @param pvScsiLunUser Opaque user data which may
* be used to identify the medium.
* @param pcbSize Where to store the size of the
* medium.
*/
DECLR3CALLBACKMEMBER(int, pfnVScsiLunMediumGetSize, (VSCSILUN hVScsiLun,
void *pvScsiLunUser,
uint64_t *pcbSize));
/**
* Enqueue a read or write request from the medium.
*
* @returns VBox status status code.
* @param hVScsiLun Virtual SCSI LUN handle.
* @param pvScsiLunUser Opaque user data which may
* be used to identify the medium.
* @param hVScsiIoReq Virtual SCSI I/O request handle.
*/
DECLR3CALLBACKMEMBER(int, pfnVScsiLunReqTransferEnqueue, (VSCSILUN hVScsiLun,
void *pvScsiLunUser,
VSCSIIOREQ hVScsiIoReq));
} VSCSILUNIOCALLBACKS;
/** Pointer to a virtual SCSI LUN I/O callback table. */
typedef VSCSILUNIOCALLBACKS *PVSCSILUNIOCALLBACKS;
/**
* The virtual SCSI request completed callback.
*/
typedef DECLCALLBACK(void) FNVSCSIREQCOMPLETED(VSCSIDEVICE hVScsiDevice,
void *pvVScsiDeviceUser,
void *pvVScsiReqUser,
int rcScsiCode,
bool fRedoPossible,
int rcReq);
/** Pointer to a virtual SCSI request completed callback. */
typedef FNVSCSIREQCOMPLETED *PFNVSCSIREQCOMPLETED;
/**
* Create a new empty SCSI device instance.
*
* @returns VBox status code.
* @param phVScsiDevice Where to store the SCSI device handle.
* @param pfnVScsiReqCompleted The method call after a request completed.
* @param pvVScsiDeviceUser Opaque user data given in the completion callback.
*/
VBOXDDU_DECL(int) VSCSIDeviceCreate(PVSCSIDEVICE phVScsiDevice,
PFNVSCSIREQCOMPLETED pfnVScsiReqCompleted,
void *pvVScsiDeviceUser);
/**
* Destroy a SCSI device instance.
*
* @returns VBox status code.
* @param hScsiDevice The SCSI device handle to destroy.
*/
VBOXDDU_DECL(int) VSCSIDeviceDestroy(VSCSIDEVICE hVScsiDevice);
/**
* Attach a LUN to the SCSI device.
*
* @returns VBox status code.
* @param hScsiDevice The SCSI device handle to add the LUN to.
* @param hScsiLun The LUN handle to add.
* @param iLun The LUN number.
*/
VBOXDDU_DECL(int) VSCSIDeviceLunAttach(VSCSIDEVICE hVScsiDevice, VSCSILUN hVScsiLun, uint32_t iLun);
/**
* Detach a LUN from the SCSI device.
*
* @returns VBox status code.
* @param hVScsiDevice The SCSI device handle to add the LUN to.
* @param iLun The LUN number to remove.
* @param phVScsiLun Where to store the detached LUN handle.
*/
VBOXDDU_DECL(int) VSCSIDeviceLunDetach(VSCSIDEVICE hVScsiDevice, uint32_t iLun,
PVSCSILUN phVScsiLun);
/**
* Return the SCSI LUN handle.
*
* @returns VBox status code.
* @param hVScsiDevice The SCSI device handle.
* @param iLun The LUN number to get.
* @param phVScsiLun Where to store the LUN handle.
*/
VBOXDDU_DECL(int) VSCSIDeviceLunGet(VSCSIDEVICE hVScsiDevice, uint32_t iLun,
PVSCSILUN phVScsiLun);
/**
* Enqueue a request to the SCSI device.
*
* @returns VBox status code.
* @param hVScsiDevice The SCSI device handle.
* @param hVScsiReq The SCSI request handle to enqueue.
*/
VBOXDDU_DECL(int) VSCSIDeviceReqEnqueue(VSCSIDEVICE hVScsiDevice, VSCSIREQ hVScsiReq);
/**
* Allocate a new request handle.
*
* @returns VBox status code.
* @param phVScsiDevice The SCSI device handle.
* @param phVScsiReq Where to SCSI request handle.
* @param iLun The LUN the request is for.
* @param pbCDB The CDB for the request.
* @param cbCDB The size of the CDB in bytes.
* @param cbSGList Number of bytes the S/G list describes.
* @param cSGListEntries Number of S/G list entries.
* @param paSGList Pointer to the S/G list.
* @param pbSense Pointer to the sense buffer.
* @param cbSense Size of the sense buffer.
* @param pvVScsiReqUser Opqaue user data returned when the request completes.
*/
VBOXDDU_DECL(int) VSCSIDeviceReqCreate(VSCSIDEVICE hVScsiDevice, PVSCSIREQ phVScsiReq,
uint32_t iLun, uint8_t *pbCDB, size_t cbCDB,
size_t cbSGList, unsigned cSGListEntries,
PCRTSGSEG paSGList, uint8_t *pbSense,
size_t cbSense, void *pvVScsiReqUser);
/**
* Create a new LUN.
*
* @returns VBox status code.
* @param phVScsiLun Where to store the SCSI LUN handle.
* @param enmLunType The Lun type.
* @param pVScsiLunIoCallbacks Pointer to the I/O callbacks to use for his LUN.
* @param pvVScsiLunUser Opaque user argument which
* is returned in the pvScsiLunUser parameter
* when the request completion callback is called.
*/
VBOXDDU_DECL(int) VSCSILunCreate(PVSCSILUN phVScsiLun, VSCSILUNTYPE enmLunType,
PVSCSILUNIOCALLBACKS pVScsiLunIoCallbacks,
void *pvVScsiLunUser);
/**
* Destroy virtual SCSI LUN.
*
* @returns VBox status code.
* @param hVScsiLun The virtual SCSI LUN handle to destroy.
*/
VBOXDDU_DECL(int) VSCSILunDestroy(VSCSILUN hVScsiLun);
/**
* Notify a that a I/O request completed.
*
* @returns VBox status code.
* @param hVScsiIoReq The I/O request handle that completed.
* This is given when a I/O callback for
* the LUN is called by the virtual SCSI layer.
* @param rcIoReq The status code the I/O request completed with.
* @param fRedoPossible Flag whether it is possible to redo the request.
* If true setting any sense code will be omitted
* in case of an error to not alter the device state.
*/
VBOXDDU_DECL(int) VSCSIIoReqCompleted(VSCSIIOREQ hVScsiIoReq, int rcIoReq, bool fRedoPossible);
/**
* Query the transfer direction of the I/O request.
*
* @returns Transfer direction.of the given I/O request
* @param hVScsiIoReq The SCSI I/O request handle.
*/
VBOXDDU_DECL(VSCSIIOREQTXDIR) VSCSIIoReqTxDirGet(VSCSIIOREQ hVScsiIoReq);
/**
* Query I/O parameters.
*
* @returns VBox status code.
* @param hVScsiIoReq The SCSI I/O request handle.
* @param puOffset Where to store the start offset.
* @param pcbTransfer Where to store the amount of bytes to transfer.
* @param pcSeg Where to store the number of segments in the S/G list.
* @param pcbSeg Where to store the number of bytes the S/G list describes.
* @param ppaSeg Where to store the pointer to the S/G list.
*/
VBOXDDU_DECL(int) VSCSIIoReqParamsGet(VSCSIIOREQ hVScsiIoReq, uint64_t *puOffset,
size_t *pcbTransfer, unsigned *pcSeg,
size_t *pcbSeg, PCRTSGSEG *ppaSeg);
RT_C_DECLS_END
#endif /* ___VBox_vscsi_h */