VirtualBox

source: vbox/trunk/src/VBox/Devices/Storage/VSCSI/VSCSISense.cpp@ 42891

Last change on this file since 42891 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: 2.5 KB
Line 
1/* $Id: VSCSISense.cpp 38680 2011-09-08 07:52:08Z vboxsync $ */
2/** @file
3 * Virtual SCSI driver: Sense handling
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#define LOG_GROUP LOG_GROUP_VSCSI
18#include <VBox/log.h>
19#include <iprt/assert.h>
20#include <iprt/string.h>
21
22#include "VSCSIInternal.h"
23
24void vscsiSenseInit(PVSCSISENSE pVScsiSense)
25{
26 memset(pVScsiSense->abSenseBuf, 0, sizeof(pVScsiSense->abSenseBuf));
27}
28
29int vscsiReqSenseOkSet(PVSCSISENSE pVScsiSense, PVSCSIREQINT pVScsiReq)
30{
31 memset(pVScsiSense->abSenseBuf, 0, sizeof(pVScsiSense->abSenseBuf));
32
33 pVScsiSense->abSenseBuf[0] = (1 << 7) | SCSI_SENSE_RESPONSE_CODE_CURR_FIXED; /* Fixed format */
34 pVScsiSense->abSenseBuf[2] = SCSI_SENSE_NONE;
35 pVScsiSense->abSenseBuf[7] = 10;
36 pVScsiSense->abSenseBuf[12] = SCSI_ASC_NONE;
37 pVScsiSense->abSenseBuf[13] = SCSI_ASC_NONE; /* Should be ASCQ but it has the same value for success. */
38
39 if (pVScsiReq->pbSense && pVScsiReq->cbSense)
40 memcpy(pVScsiReq->pbSense, pVScsiSense->abSenseBuf, RT_MIN(sizeof(pVScsiSense->abSenseBuf), pVScsiReq->cbSense));
41
42 return SCSI_STATUS_OK;
43}
44
45int vscsiReqSenseErrorSet(PVSCSISENSE pVScsiSense, PVSCSIREQINT pVScsiReq, uint8_t uSCSISenseKey, uint8_t uSCSIASC, uint8_t uSCSIASCQ)
46{
47 memset(pVScsiSense->abSenseBuf, 0, sizeof(pVScsiSense->abSenseBuf));
48 pVScsiSense->abSenseBuf[0] = (1 << 7) | SCSI_SENSE_RESPONSE_CODE_CURR_FIXED; /* Fixed format */
49 pVScsiSense->abSenseBuf[2] = uSCSISenseKey;
50 pVScsiSense->abSenseBuf[7] = 10;
51 pVScsiSense->abSenseBuf[12] = uSCSIASC;
52 pVScsiSense->abSenseBuf[13] = uSCSIASCQ;
53
54 if (pVScsiReq->pbSense && pVScsiReq->cbSense)
55 memcpy(pVScsiReq->pbSense, pVScsiSense->abSenseBuf, RT_MIN(sizeof(pVScsiSense->abSenseBuf), pVScsiReq->cbSense));
56
57 return SCSI_STATUS_CHECK_CONDITION;
58}
59
60int vscsiReqSenseCmd(PVSCSISENSE pVScsiSense, PVSCSIREQINT pVScsiReq)
61{
62 /* Copy the current sense data to the buffer. */
63 RTSgBufCopyFromBuf(&pVScsiReq->SgBuf, pVScsiSense->abSenseBuf, sizeof(pVScsiSense->abSenseBuf));
64 return vscsiReqSenseOkSet(pVScsiSense, pVScsiReq);
65}
66
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