2 Copyright (C) 2010 by Ronnie Sahlberg <ronniesahlberg@gmail.com>
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, see <http://www.gnu.org/licenses/>.
17 #ifndef CCAN_ISCSI_SCSI_LOWLEVEL_H
18 #define CCAN_ISCSI_SCSI_LOWLEVEL_H
20 #define SCSI_CDB_MAX_SIZE 16
22 enum scsi_opcode {SCSI_OPCODE_TESTUNITREADY=0x00,
23 SCSI_OPCODE_INQUIRY=0x12,
24 SCSI_OPCODE_MODESENSE6=0x1a,
25 SCSI_OPCODE_READCAPACITY10=0x25,
26 SCSI_OPCODE_READ10=0x28,
27 SCSI_OPCODE_WRITE10=0x2A,
28 SCSI_OPCODE_REPORTLUNS=0xA0};
31 #define SCSI_SENSE_KEY_ILLEGAL_REQUEST 0x05
32 #define SCSI_SENSE_KEY_UNIT_ATTENTION 0x06
35 #define SCSI_SENSE_ASCQ_INVALID_FIELD_IN_CDB 0x2400
36 #define SCSI_SENSE_ASCQ_BUS_RESET 0x2900
38 enum scsi_xfer_dir {SCSI_XFER_NONE=0,
42 struct scsi_reportluns_params {
45 struct scsi_readcapacity10_params {
49 struct scsi_inquiry_params {
53 struct scsi_modesense6_params {
61 unsigned char error_type;
71 struct scsi_allocated_memory {
72 struct scsi_allocated_memory *prev, *next;
80 unsigned char cdb[SCSI_CDB_MAX_SIZE];
82 struct scsi_readcapacity10_params readcapacity10;
83 struct scsi_reportluns_params reportluns;
84 struct scsi_inquiry_params inquiry;
85 struct scsi_modesense6_params modesense6;
88 struct scsi_sense sense;
89 struct scsi_data datain;
90 struct scsi_allocated_memory *mem;
93 void scsi_free_scsi_task(struct scsi_task *task);
99 struct scsi_task *scsi_cdb_testunitready(void);
105 #define SCSI_REPORTLUNS_REPORT_ALL_LUNS 0x00
106 #define SCSI_REPORTLUNS_REPORT_WELL_KNOWN_ONLY 0x01
107 #define SCSI_REPORTLUNS_REPORT_AVAILABLE_LUNS_ONLY 0x02
109 struct scsi_reportluns_list {
114 struct scsi_task *scsi_reportluns_cdb(int report_type, int alloc_len);
119 struct scsi_readcapacity10 {
123 struct scsi_task *scsi_cdb_readcapacity10(int lba, int pmi);
129 enum scsi_inquiry_peripheral_qualifier {SCSI_INQUIRY_PERIPHERAL_QUALIFIER_CONNECTED=0x00,
130 SCSI_INQUIRY_PERIPHERAL_QUALIFIER_DISCONNECTED=0x01,
131 SCSI_INQUIRY_PERIPHERAL_QUALIFIER_NOT_SUPPORTED=0x03};
133 enum scsi_inquiry_peripheral_device_type {SCSI_INQUIRY_PERIPHERAL_DEVICE_TYPE_DIRECT_ACCESS=0x00,
134 SCSI_INQUIRY_PERIPHERAL_DEVICE_TYPE_SEQUENTIAL_ACCESS=0x01,
135 SCSI_INQUIRY_PERIPHERAL_DEVICE_TYPE_PRINTER=0x02,
136 SCSI_INQUIRY_PERIPHERAL_DEVICE_TYPE_PROCESSOR=0x03,
137 SCSI_INQUIRY_PERIPHERAL_DEVICE_TYPE_WRITE_ONCE=0x04,
138 SCSI_INQUIRY_PERIPHERAL_DEVICE_TYPE_MMC=0x05,
139 SCSI_INQUIRY_PERIPHERAL_DEVICE_TYPE_SCANNER=0x06,
140 SCSI_INQUIRY_PERIPHERAL_DEVICE_TYPE_OPTICAL_MEMORY=0x07,
141 SCSI_INQUIRY_PERIPHERAL_DEVICE_TYPE_MEDIA_CHANGER=0x08,
142 SCSI_INQUIRY_PERIPHERAL_DEVICE_TYPE_COMMUNICATIONS=0x09,
143 SCSI_INQUIRY_PERIPHERAL_DEVICE_TYPE_STORAGE_ARRAY_CONTROLLER=0x0c,
144 SCSI_INQUIRY_PERIPHERAL_DEVICE_TYPE_ENCLOSURE_SERVICES=0x0d,
145 SCSI_INQUIRY_PERIPHERAL_DEVICE_TYPE_SIMPLIFIED_DIRECT_ACCESS=0x0e,
146 SCSI_INQUIRY_PERIPHERAL_DEVICE_TYPE_OPTICAL_CARD_READER=0x0f,
147 SCSI_INQUIRY_PERIPHERAL_DEVICE_TYPE_BRIDGE_CONTROLLER=0x10,
148 SCSI_INQUIRY_PERIPHERAL_DEVICE_TYPE_OSD=0x11,
149 SCSI_INQUIRY_PERIPHERAL_DEVICE_TYPE_AUTOMATION=0x12,
150 SCSI_INQUIRY_PERIPHERAL_DEVICE_TYPE_SEQURITY_MANAGER=0x13,
151 SCSI_INQUIRY_PERIPHERAL_DEVICE_TYPE_WELL_KNOWN_LUN=0x1e,
152 SCSI_INQUIRY_PERIPHERAL_DEVICE_TYPE_UNKNOWN=0x1f};
154 struct scsi_inquiry_standard {
155 enum scsi_inquiry_peripheral_qualifier periperal_qualifier;
156 enum scsi_inquiry_peripheral_device_type periperal_device_type;
161 int response_data_format;
163 char vendor_identification[8+1];
164 char product_identification[16+1];
165 char product_revision_level[4+1];
168 struct scsi_task *scsi_cdb_inquiry(int evpd, int page_code, int alloc_len);
175 enum scsi_modesense_page_control {SCSI_MODESENSE_PC_CURRENT=0x00,
176 SCSI_MODESENSE_PC_CHANGEABLE=0x01,
177 SCSI_MODESENSE_PC_DEFAULT=0x02,
178 SCSI_MODESENSE_PC_SAVED=0x03};
180 enum scsi_modesense_page_code {SCSI_MODESENSE_PAGECODE_RETURN_ALL_PAGES=0x3f};
182 struct scsi_task *scsi_cdb_modesense6(int dbd, enum scsi_modesense_page_control pc, enum scsi_modesense_page_code page_code, int sub_page_code, unsigned char alloc_len);
187 int scsi_datain_getfullsize(struct scsi_task *task);
188 void *scsi_datain_unmarshall(struct scsi_task *task);
190 struct scsi_task *scsi_cdb_read10(int lba, int xferlen, int blocksize);
191 struct scsi_task *scsi_cdb_write10(int lba, int xferlen, int fua, int fuanv, int blocksize);
193 #endif /* CCAN_ISCSI_SCSI_LOWLEVEL_H */