2 * SCSI Primary Commands (SPC) parsing and emulation.
4 * (c) Copyright 2002-2012 RisingTide Systems LLC.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <asm/unaligned.h>
27 #include <scsi/scsi.h>
28 #include <scsi/scsi_tcq.h>
30 #include <target/target_core_base.h>
31 #include <target/target_core_backend.h>
32 #include <target/target_core_fabric.h>
34 #include "target_core_internal.h"
35 #include "target_core_alua.h"
36 #include "target_core_pr.h"
37 #include "target_core_ua.h"
40 static void spc_fill_alua_data(struct se_port *port, unsigned char *buf)
42 struct t10_alua_tg_pt_gp *tg_pt_gp;
43 struct t10_alua_tg_pt_gp_member *tg_pt_gp_mem;
46 * Set SCCS for MAINTENANCE_IN + REPORT_TARGET_PORT_GROUPS.
51 * Set TPGS field for explict and/or implict ALUA access type
54 * See spc4r17 section 6.4.2 Table 135
58 tg_pt_gp_mem = port->sep_alua_tg_pt_gp_mem;
62 spin_lock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
63 tg_pt_gp = tg_pt_gp_mem->tg_pt_gp;
65 buf[5] |= tg_pt_gp->tg_pt_gp_alua_access_type;
66 spin_unlock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
70 spc_emulate_inquiry_std(struct se_cmd *cmd, unsigned char *buf)
72 struct se_lun *lun = cmd->se_lun;
73 struct se_device *dev = cmd->se_dev;
75 /* Set RMB (removable media) for tape devices */
76 if (dev->transport->get_device_type(dev) == TYPE_TAPE)
79 buf[2] = 0x05; /* SPC-3 */
82 * NORMACA and HISUP = 0, RESPONSE DATA FORMAT = 2
85 * A RESPONSE DATA FORMAT field set to 2h indicates that the
86 * standard INQUIRY data is in the format defined in this
87 * standard. Response data format values less than 2h are
88 * obsolete. Response data format values greater than 2h are
94 * Enable SCCS and TPGS fields for Emulated ALUA
96 spc_fill_alua_data(lun->lun_sep, buf);
98 buf[7] = 0x2; /* CmdQue=1 */
100 snprintf(&buf[8], 8, "LIO-ORG");
101 snprintf(&buf[16], 16, "%s", dev->t10_wwn.model);
102 snprintf(&buf[32], 4, "%s", dev->t10_wwn.revision);
103 buf[4] = 31; /* Set additional length to 31 */
107 EXPORT_SYMBOL(spc_emulate_inquiry_std);
109 /* unit serial number */
110 static sense_reason_t
111 spc_emulate_evpd_80(struct se_cmd *cmd, unsigned char *buf)
113 struct se_device *dev = cmd->se_dev;
116 if (dev->dev_flags & DF_EMULATED_VPD_UNIT_SERIAL) {
119 unit_serial_len = strlen(dev->t10_wwn.unit_serial);
120 unit_serial_len++; /* For NULL Terminator */
122 len += sprintf(&buf[4], "%s", dev->t10_wwn.unit_serial);
123 len++; /* Extra Byte for NULL Terminator */
129 static void spc_parse_naa_6h_vendor_specific(struct se_device *dev,
132 unsigned char *p = &dev->t10_wwn.unit_serial[0];
137 * Generate up to 36 bits of VENDOR SPECIFIC IDENTIFIER starting on
138 * byte 3 bit 3-0 for NAA IEEE Registered Extended DESIGNATOR field
139 * format, followed by 64 bits of VENDOR SPECIFIC IDENTIFIER EXTENSION
140 * to complete the payload. These are based from VPD=0x80 PRODUCT SERIAL
141 * NUMBER set via vpd_unit_serial in target_core_configfs.c to ensure
142 * per device uniqeness.
144 for (cnt = 0; *p && cnt < 13; p++) {
145 int val = hex_to_bin(*p);
161 * Device identification VPD, for a complete list of
162 * DESIGNATOR TYPEs see spc4r17 Table 459.
165 spc_emulate_evpd_83(struct se_cmd *cmd, unsigned char *buf)
167 struct se_device *dev = cmd->se_dev;
168 struct se_lun *lun = cmd->se_lun;
169 struct se_port *port = NULL;
170 struct se_portal_group *tpg = NULL;
171 struct t10_alua_lu_gp_member *lu_gp_mem;
172 struct t10_alua_tg_pt_gp *tg_pt_gp;
173 struct t10_alua_tg_pt_gp_member *tg_pt_gp_mem;
174 unsigned char *prod = &dev->t10_wwn.model[0];
176 u32 unit_serial_len, off = 0;
182 * NAA IEEE Registered Extended Assigned designator format, see
183 * spc4r17 section 7.7.3.6.5
185 * We depend upon a target_core_mod/ConfigFS provided
186 * /sys/kernel/config/target/core/$HBA/$DEV/wwn/vpd_unit_serial
187 * value in order to return the NAA id.
189 if (!(dev->dev_flags & DF_EMULATED_VPD_UNIT_SERIAL))
190 goto check_t10_vend_desc;
192 /* CODE SET == Binary */
195 /* Set ASSOCIATION == addressed logical unit: 0)b */
198 /* Identifier/Designator type == NAA identifier */
202 /* Identifier/Designator length */
206 * Start NAA IEEE Registered Extended Identifier/Designator
208 buf[off++] = (0x6 << 4);
211 * Use OpenFabrics IEEE Company ID: 00 14 05
215 buf[off] = (0x5 << 4);
218 * Return ConfigFS Unit Serial Number information for
219 * VENDOR_SPECIFIC_IDENTIFIER and
220 * VENDOR_SPECIFIC_IDENTIFIER_EXTENTION
222 spc_parse_naa_6h_vendor_specific(dev, &buf[off]);
229 * T10 Vendor Identifier Page, see spc4r17 section 7.7.3.4
231 id_len = 8; /* For Vendor field */
232 prod_len = 4; /* For VPD Header */
233 prod_len += 8; /* For Vendor field */
234 prod_len += strlen(prod);
235 prod_len++; /* For : */
237 if (dev->dev_flags & DF_EMULATED_VPD_UNIT_SERIAL) {
238 unit_serial_len = strlen(&dev->t10_wwn.unit_serial[0]);
239 unit_serial_len++; /* For NULL Terminator */
241 id_len += sprintf(&buf[off+12], "%s:%s", prod,
242 &dev->t10_wwn.unit_serial[0]);
244 buf[off] = 0x2; /* ASCII */
245 buf[off+1] = 0x1; /* T10 Vendor ID */
247 memcpy(&buf[off+4], "LIO-ORG", 8);
248 /* Extra Byte for NULL Terminator */
250 /* Identifier Length */
252 /* Header size for Designation descriptor */
256 * struct se_port is only set for INQUIRY VPD=1 through $FABRIC_MOD
260 struct t10_alua_lu_gp *lu_gp;
261 u32 padding, scsi_name_len;
268 * Relative target port identifer, see spc4r17
271 * Get the PROTOCOL IDENTIFIER as defined by spc4r17
272 * section 7.5.1 Table 362
275 (tpg->se_tpg_tfo->get_fabric_proto_ident(tpg) << 4);
276 buf[off++] |= 0x1; /* CODE SET == Binary */
277 buf[off] = 0x80; /* Set PIV=1 */
278 /* Set ASSOCIATION == target port: 01b */
280 /* DESIGNATOR TYPE == Relative target port identifer */
282 off++; /* Skip over Reserved */
283 buf[off++] = 4; /* DESIGNATOR LENGTH */
284 /* Skip over Obsolete field in RTPI payload
287 buf[off++] = ((port->sep_rtpi >> 8) & 0xff);
288 buf[off++] = (port->sep_rtpi & 0xff);
289 len += 8; /* Header size + Designation descriptor */
291 * Target port group identifier, see spc4r17
294 * Get the PROTOCOL IDENTIFIER as defined by spc4r17
295 * section 7.5.1 Table 362
297 tg_pt_gp_mem = port->sep_alua_tg_pt_gp_mem;
301 spin_lock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
302 tg_pt_gp = tg_pt_gp_mem->tg_pt_gp;
304 spin_unlock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
307 tg_pt_gp_id = tg_pt_gp->tg_pt_gp_id;
308 spin_unlock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
311 (tpg->se_tpg_tfo->get_fabric_proto_ident(tpg) << 4);
312 buf[off++] |= 0x1; /* CODE SET == Binary */
313 buf[off] = 0x80; /* Set PIV=1 */
314 /* Set ASSOCIATION == target port: 01b */
316 /* DESIGNATOR TYPE == Target port group identifier */
318 off++; /* Skip over Reserved */
319 buf[off++] = 4; /* DESIGNATOR LENGTH */
320 off += 2; /* Skip over Reserved Field */
321 buf[off++] = ((tg_pt_gp_id >> 8) & 0xff);
322 buf[off++] = (tg_pt_gp_id & 0xff);
323 len += 8; /* Header size + Designation descriptor */
325 * Logical Unit Group identifier, see spc4r17
329 lu_gp_mem = dev->dev_alua_lu_gp_mem;
331 goto check_scsi_name;
333 spin_lock(&lu_gp_mem->lu_gp_mem_lock);
334 lu_gp = lu_gp_mem->lu_gp;
336 spin_unlock(&lu_gp_mem->lu_gp_mem_lock);
337 goto check_scsi_name;
339 lu_gp_id = lu_gp->lu_gp_id;
340 spin_unlock(&lu_gp_mem->lu_gp_mem_lock);
342 buf[off++] |= 0x1; /* CODE SET == Binary */
343 /* DESIGNATOR TYPE == Logical Unit Group identifier */
345 off++; /* Skip over Reserved */
346 buf[off++] = 4; /* DESIGNATOR LENGTH */
347 off += 2; /* Skip over Reserved Field */
348 buf[off++] = ((lu_gp_id >> 8) & 0xff);
349 buf[off++] = (lu_gp_id & 0xff);
350 len += 8; /* Header size + Designation descriptor */
352 * SCSI name string designator, see spc4r17
355 * Get the PROTOCOL IDENTIFIER as defined by spc4r17
356 * section 7.5.1 Table 362
359 scsi_name_len = strlen(tpg->se_tpg_tfo->tpg_get_wwn(tpg));
360 /* UTF-8 ",t,0x<16-bit TPGT>" + NULL Terminator */
362 /* Check for 4-byte padding */
363 padding = ((-scsi_name_len) & 3);
365 scsi_name_len += padding;
366 /* Header size + Designation descriptor */
370 (tpg->se_tpg_tfo->get_fabric_proto_ident(tpg) << 4);
371 buf[off++] |= 0x3; /* CODE SET == UTF-8 */
372 buf[off] = 0x80; /* Set PIV=1 */
373 /* Set ASSOCIATION == target port: 01b */
375 /* DESIGNATOR TYPE == SCSI name string */
377 off += 2; /* Skip over Reserved and length */
379 * SCSI name string identifer containing, $FABRIC_MOD
380 * dependent information. For LIO-Target and iSCSI
381 * Target Port, this means "<iSCSI name>,t,0x<TPGT> in
384 tpgt = tpg->se_tpg_tfo->tpg_get_tag(tpg);
385 scsi_name_len = sprintf(&buf[off], "%s,t,0x%04x",
386 tpg->se_tpg_tfo->tpg_get_wwn(tpg), tpgt);
387 scsi_name_len += 1 /* Include NULL terminator */;
389 * The null-terminated, null-padded (see 4.4.2) SCSI
390 * NAME STRING field contains a UTF-8 format string.
391 * The number of bytes in the SCSI NAME STRING field
392 * (i.e., the value in the DESIGNATOR LENGTH field)
393 * shall be no larger than 256 and shall be a multiple
397 scsi_name_len += padding;
399 buf[off-1] = scsi_name_len;
400 off += scsi_name_len;
401 /* Header size + Designation descriptor */
402 len += (scsi_name_len + 4);
404 buf[2] = ((len >> 8) & 0xff);
405 buf[3] = (len & 0xff); /* Page Length for VPD 0x83 */
408 EXPORT_SYMBOL(spc_emulate_evpd_83);
411 spc_check_dev_wce(struct se_device *dev)
415 if (dev->transport->get_write_cache)
416 wce = dev->transport->get_write_cache(dev);
417 else if (dev->dev_attrib.emulate_write_cache > 0)
423 /* Extended INQUIRY Data VPD Page */
424 static sense_reason_t
425 spc_emulate_evpd_86(struct se_cmd *cmd, unsigned char *buf)
427 struct se_device *dev = cmd->se_dev;
430 /* Set HEADSUP, ORDSUP, SIMPSUP */
433 /* If WriteCache emulation is enabled, set V_SUP */
434 if (spc_check_dev_wce(dev))
439 /* Block Limits VPD page */
440 static sense_reason_t
441 spc_emulate_evpd_b0(struct se_cmd *cmd, unsigned char *buf)
443 struct se_device *dev = cmd->se_dev;
448 * Following spc3r22 section 6.5.3 Block Limits VPD page, when
449 * emulate_tpu=1 or emulate_tpws=1 we will be expect a
450 * different page length for Thin Provisioning.
452 if (dev->dev_attrib.emulate_tpu || dev->dev_attrib.emulate_tpws)
455 buf[0] = dev->transport->get_device_type(dev);
456 buf[3] = have_tp ? 0x3c : 0x10;
462 * Set OPTIMAL TRANSFER LENGTH GRANULARITY
464 put_unaligned_be16(1, &buf[6]);
467 * Set MAXIMUM TRANSFER LENGTH
469 max_sectors = min(dev->dev_attrib.fabric_max_sectors,
470 dev->dev_attrib.hw_max_sectors);
471 put_unaligned_be32(max_sectors, &buf[8]);
474 * Set OPTIMAL TRANSFER LENGTH
476 put_unaligned_be32(dev->dev_attrib.optimal_sectors, &buf[12]);
479 * Exit now if we don't support TP.
485 * Set MAXIMUM UNMAP LBA COUNT
487 put_unaligned_be32(dev->dev_attrib.max_unmap_lba_count, &buf[20]);
490 * Set MAXIMUM UNMAP BLOCK DESCRIPTOR COUNT
492 put_unaligned_be32(dev->dev_attrib.max_unmap_block_desc_count,
496 * Set OPTIMAL UNMAP GRANULARITY
498 put_unaligned_be32(dev->dev_attrib.unmap_granularity, &buf[28]);
501 * UNMAP GRANULARITY ALIGNMENT
503 put_unaligned_be32(dev->dev_attrib.unmap_granularity_alignment,
505 if (dev->dev_attrib.unmap_granularity_alignment != 0)
506 buf[32] |= 0x80; /* Set the UGAVALID bit */
509 * MAXIMUM WRITE SAME LENGTH
512 put_unaligned_be64(dev->dev_attrib.max_write_same_len, &buf[36]);
517 /* Block Device Characteristics VPD page */
518 static sense_reason_t
519 spc_emulate_evpd_b1(struct se_cmd *cmd, unsigned char *buf)
521 struct se_device *dev = cmd->se_dev;
523 buf[0] = dev->transport->get_device_type(dev);
525 buf[5] = dev->dev_attrib.is_nonrot ? 1 : 0;
530 /* Thin Provisioning VPD */
531 static sense_reason_t
532 spc_emulate_evpd_b2(struct se_cmd *cmd, unsigned char *buf)
534 struct se_device *dev = cmd->se_dev;
537 * From spc3r22 section 6.5.4 Thin Provisioning VPD page:
539 * The PAGE LENGTH field is defined in SPC-4. If the DP bit is set to
540 * zero, then the page length shall be set to 0004h. If the DP bit
541 * is set to one, then the page length shall be set to the value
542 * defined in table 162.
544 buf[0] = dev->transport->get_device_type(dev);
547 * Set Hardcoded length mentioned above for DP=0
549 put_unaligned_be16(0x0004, &buf[2]);
552 * The THRESHOLD EXPONENT field indicates the threshold set size in
553 * LBAs as a power of 2 (i.e., the threshold set size is equal to
554 * 2(threshold exponent)).
556 * Note that this is currently set to 0x00 as mkp says it will be
557 * changing again. We can enable this once it has settled in T10
558 * and is actually used by Linux/SCSI ML code.
563 * A TPU bit set to one indicates that the device server supports
564 * the UNMAP command (see 5.25). A TPU bit set to zero indicates
565 * that the device server does not support the UNMAP command.
567 if (dev->dev_attrib.emulate_tpu != 0)
571 * A TPWS bit set to one indicates that the device server supports
572 * the use of the WRITE SAME (16) command (see 5.42) to unmap LBAs.
573 * A TPWS bit set to zero indicates that the device server does not
574 * support the use of the WRITE SAME (16) command to unmap LBAs.
576 if (dev->dev_attrib.emulate_tpws != 0)
582 static sense_reason_t
583 spc_emulate_evpd_00(struct se_cmd *cmd, unsigned char *buf);
587 sense_reason_t (*emulate)(struct se_cmd *, unsigned char *);
588 } evpd_handlers[] = {
589 { .page = 0x00, .emulate = spc_emulate_evpd_00 },
590 { .page = 0x80, .emulate = spc_emulate_evpd_80 },
591 { .page = 0x83, .emulate = spc_emulate_evpd_83 },
592 { .page = 0x86, .emulate = spc_emulate_evpd_86 },
593 { .page = 0xb0, .emulate = spc_emulate_evpd_b0 },
594 { .page = 0xb1, .emulate = spc_emulate_evpd_b1 },
595 { .page = 0xb2, .emulate = spc_emulate_evpd_b2 },
598 /* supported vital product data pages */
599 static sense_reason_t
600 spc_emulate_evpd_00(struct se_cmd *cmd, unsigned char *buf)
605 * Only report the INQUIRY EVPD=1 pages after a valid NAA
606 * Registered Extended LUN WWN has been set via ConfigFS
607 * during device creation/restart.
609 if (cmd->se_dev->dev_flags & DF_EMULATED_VPD_UNIT_SERIAL) {
610 buf[3] = ARRAY_SIZE(evpd_handlers);
611 for (p = 0; p < ARRAY_SIZE(evpd_handlers); ++p)
612 buf[p + 4] = evpd_handlers[p].page;
618 static sense_reason_t
619 spc_emulate_inquiry(struct se_cmd *cmd)
621 struct se_device *dev = cmd->se_dev;
622 struct se_portal_group *tpg = cmd->se_lun->lun_sep->sep_tpg;
624 unsigned char *cdb = cmd->t_task_cdb;
625 unsigned char buf[SE_INQUIRY_BUF];
629 memset(buf, 0, SE_INQUIRY_BUF);
631 if (dev == tpg->tpg_virt_lun0.lun_se_dev)
632 buf[0] = 0x3f; /* Not connected */
634 buf[0] = dev->transport->get_device_type(dev);
636 if (!(cdb[1] & 0x1)) {
638 pr_err("INQUIRY with EVPD==0 but PAGE CODE=%02x\n",
640 ret = TCM_INVALID_CDB_FIELD;
644 ret = spc_emulate_inquiry_std(cmd, buf);
648 for (p = 0; p < ARRAY_SIZE(evpd_handlers); ++p) {
649 if (cdb[2] == evpd_handlers[p].page) {
651 ret = evpd_handlers[p].emulate(cmd, buf);
656 pr_err("Unknown VPD Code: 0x%02x\n", cdb[2]);
657 ret = TCM_INVALID_CDB_FIELD;
660 rbuf = transport_kmap_data_sg(cmd);
662 memcpy(rbuf, buf, min_t(u32, sizeof(buf), cmd->data_length));
663 transport_kunmap_data_sg(cmd);
667 target_complete_cmd(cmd, GOOD);
671 static int spc_modesense_rwrecovery(struct se_device *dev, u8 pc, u8 *p)
676 /* No changeable values for now */
684 static int spc_modesense_control(struct se_device *dev, u8 pc, u8 *p)
689 /* No changeable values for now */
695 * From spc4r23, 7.4.7 Control mode page
697 * The QUEUE ALGORITHM MODIFIER field (see table 368) specifies
698 * restrictions on the algorithm used for reordering commands
699 * having the SIMPLE task attribute (see SAM-4).
701 * Table 368 -- QUEUE ALGORITHM MODIFIER field
703 * 0h Restricted reordering
704 * 1h Unrestricted reordering allowed
706 * 8h to Fh Vendor specific
708 * A value of zero in the QUEUE ALGORITHM MODIFIER field specifies that
709 * the device server shall order the processing sequence of commands
710 * having the SIMPLE task attribute such that data integrity is maintained
711 * for that I_T nexus (i.e., if the transmission of new SCSI transport protocol
712 * requests is halted at any time, the final value of all data observable
713 * on the medium shall be the same as if all the commands had been processed
714 * with the ORDERED task attribute).
716 * A value of one in the QUEUE ALGORITHM MODIFIER field specifies that the
717 * device server may reorder the processing sequence of commands having the
718 * SIMPLE task attribute in any manner. Any data integrity exposures related to
719 * command sequence order shall be explicitly handled by the application client
720 * through the selection of appropriate ommands and task attributes.
722 p[3] = (dev->dev_attrib.emulate_rest_reord == 1) ? 0x00 : 0x10;
724 * From spc4r17, section 7.4.6 Control mode Page
726 * Unit Attention interlocks control (UN_INTLCK_CTRL) to code 00b
728 * 00b: The logical unit shall clear any unit attention condition
729 * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
730 * status and shall not establish a unit attention condition when a com-
731 * mand is completed with BUSY, TASK SET FULL, or RESERVATION CONFLICT
734 * 10b: The logical unit shall not clear any unit attention condition
735 * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
736 * status and shall not establish a unit attention condition when
737 * a command is completed with BUSY, TASK SET FULL, or RESERVATION
740 * 11b a The logical unit shall not clear any unit attention condition
741 * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
742 * status and shall establish a unit attention condition for the
743 * initiator port associated with the I_T nexus on which the BUSY,
744 * TASK SET FULL, or RESERVATION CONFLICT status is being returned.
745 * Depending on the status, the additional sense code shall be set to
746 * PREVIOUS BUSY STATUS, PREVIOUS TASK SET FULL STATUS, or PREVIOUS
747 * RESERVATION CONFLICT STATUS. Until it is cleared by a REQUEST SENSE
748 * command, a unit attention condition shall be established only once
749 * for a BUSY, TASK SET FULL, or RESERVATION CONFLICT status regardless
750 * to the number of commands completed with one of those status codes.
752 p[4] = (dev->dev_attrib.emulate_ua_intlck_ctrl == 2) ? 0x30 :
753 (dev->dev_attrib.emulate_ua_intlck_ctrl == 1) ? 0x20 : 0x00;
755 * From spc4r17, section 7.4.6 Control mode Page
757 * Task Aborted Status (TAS) bit set to zero.
759 * A task aborted status (TAS) bit set to zero specifies that aborted
760 * tasks shall be terminated by the device server without any response
761 * to the application client. A TAS bit set to one specifies that tasks
762 * aborted by the actions of an I_T nexus other than the I_T nexus on
763 * which the command was received shall be completed with TASK ABORTED
764 * status (see SAM-4).
766 p[5] = (dev->dev_attrib.emulate_tas) ? 0x40 : 0x00;
775 static int spc_modesense_caching(struct se_device *dev, u8 pc, u8 *p)
780 /* No changeable values for now */
784 if (spc_check_dev_wce(dev))
785 p[2] = 0x04; /* Write Cache Enable */
786 p[12] = 0x20; /* Disabled Read Ahead */
792 static int spc_modesense_informational_exceptions(struct se_device *dev, u8 pc, unsigned char *p)
797 /* No changeable values for now */
808 int (*emulate)(struct se_device *, u8, unsigned char *);
809 } modesense_handlers[] = {
810 { .page = 0x01, .subpage = 0x00, .emulate = spc_modesense_rwrecovery },
811 { .page = 0x08, .subpage = 0x00, .emulate = spc_modesense_caching },
812 { .page = 0x0a, .subpage = 0x00, .emulate = spc_modesense_control },
813 { .page = 0x1c, .subpage = 0x00, .emulate = spc_modesense_informational_exceptions },
816 static void spc_modesense_write_protect(unsigned char *buf, int type)
819 * I believe that the WP bit (bit 7) in the mode header is the same for
826 buf[0] |= 0x80; /* WP bit */
831 static void spc_modesense_dpofua(unsigned char *buf, int type)
835 buf[0] |= 0x10; /* DPOFUA bit */
842 static int spc_modesense_blockdesc(unsigned char *buf, u64 blocks, u32 block_size)
845 put_unaligned_be32(min(blocks, 0xffffffffull), buf);
847 put_unaligned_be32(block_size, buf);
851 static int spc_modesense_long_blockdesc(unsigned char *buf, u64 blocks, u32 block_size)
853 if (blocks <= 0xffffffff)
854 return spc_modesense_blockdesc(buf + 3, blocks, block_size) + 3;
856 *buf++ = 1; /* LONGLBA */
859 put_unaligned_be64(blocks, buf);
861 put_unaligned_be32(block_size, buf);
866 static sense_reason_t spc_emulate_modesense(struct se_cmd *cmd)
868 struct se_device *dev = cmd->se_dev;
869 char *cdb = cmd->t_task_cdb;
870 unsigned char buf[SE_MODE_PAGE_BUF], *rbuf;
871 int type = dev->transport->get_device_type(dev);
872 int ten = (cmd->t_task_cdb[0] == MODE_SENSE_10);
873 bool dbd = !!(cdb[1] & 0x08);
874 bool llba = ten ? !!(cdb[1] & 0x10) : false;
876 u8 page = cdb[2] & 0x3f;
882 memset(buf, 0, SE_MODE_PAGE_BUF);
885 * Skip over MODE DATA LENGTH + MEDIUM TYPE fields to byte 3 for
886 * MODE_SENSE_10 and byte 2 for MODE_SENSE (6).
888 length = ten ? 3 : 2;
890 /* DEVICE-SPECIFIC PARAMETER */
891 if ((cmd->se_lun->lun_access & TRANSPORT_LUNFLAGS_READ_ONLY) ||
893 (cmd->se_deve->lun_flags & TRANSPORT_LUNFLAGS_READ_ONLY)))
894 spc_modesense_write_protect(&buf[length], type);
896 if ((spc_check_dev_wce(dev)) &&
897 (dev->dev_attrib.emulate_fua_write > 0))
898 spc_modesense_dpofua(&buf[length], type);
902 /* BLOCK DESCRIPTOR */
905 * For now we only include a block descriptor for disk (SBC)
906 * devices; other command sets use a slightly different format.
908 if (!dbd && type == TYPE_DISK) {
909 u64 blocks = dev->transport->get_blocks(dev);
910 u32 block_size = dev->dev_attrib.block_size;
914 length += spc_modesense_long_blockdesc(&buf[length],
918 length += spc_modesense_blockdesc(&buf[length],
922 length += spc_modesense_blockdesc(&buf[length], blocks,
933 if (subpage != 0x00 && subpage != 0xff) {
934 pr_warn("MODE_SENSE: Invalid subpage code: 0x%02x\n", subpage);
935 return TCM_INVALID_CDB_FIELD;
938 for (i = 0; i < ARRAY_SIZE(modesense_handlers); ++i) {
940 * Tricky way to say all subpage 00h for
941 * subpage==0, all subpages for subpage==0xff
942 * (and we just checked above that those are
943 * the only two possibilities).
945 if ((modesense_handlers[i].subpage & ~subpage) == 0) {
946 ret = modesense_handlers[i].emulate(dev, pc, &buf[length]);
947 if (!ten && length + ret >= 255)
956 for (i = 0; i < ARRAY_SIZE(modesense_handlers); ++i)
957 if (modesense_handlers[i].page == page &&
958 modesense_handlers[i].subpage == subpage) {
959 length += modesense_handlers[i].emulate(dev, pc, &buf[length]);
964 * We don't intend to implement:
965 * - obsolete page 03h "format parameters" (checked by Solaris)
968 pr_err("MODE SENSE: unimplemented page/subpage: 0x%02x/0x%02x\n",
971 return TCM_UNKNOWN_MODE_PAGE;
975 put_unaligned_be16(length - 2, buf);
979 rbuf = transport_kmap_data_sg(cmd);
981 memcpy(rbuf, buf, min_t(u32, SE_MODE_PAGE_BUF, cmd->data_length));
982 transport_kunmap_data_sg(cmd);
985 target_complete_cmd(cmd, GOOD);
989 static sense_reason_t spc_emulate_modeselect(struct se_cmd *cmd)
991 struct se_device *dev = cmd->se_dev;
992 char *cdb = cmd->t_task_cdb;
993 bool ten = cdb[0] == MODE_SELECT_10;
994 int off = ten ? 8 : 4;
995 bool pf = !!(cdb[1] & 0x10);
998 unsigned char tbuf[SE_MODE_PAGE_BUF];
1003 if (!cmd->data_length) {
1004 target_complete_cmd(cmd, GOOD);
1008 if (cmd->data_length < off + 2)
1009 return TCM_PARAMETER_LIST_LENGTH_ERROR;
1011 buf = transport_kmap_data_sg(cmd);
1013 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1016 ret = TCM_INVALID_CDB_FIELD;
1020 page = buf[off] & 0x3f;
1021 subpage = buf[off] & 0x40 ? buf[off + 1] : 0;
1023 for (i = 0; i < ARRAY_SIZE(modesense_handlers); ++i)
1024 if (modesense_handlers[i].page == page &&
1025 modesense_handlers[i].subpage == subpage) {
1026 memset(tbuf, 0, SE_MODE_PAGE_BUF);
1027 length = modesense_handlers[i].emulate(dev, 0, tbuf);
1028 goto check_contents;
1031 ret = TCM_UNKNOWN_MODE_PAGE;
1035 if (cmd->data_length < off + length) {
1036 ret = TCM_PARAMETER_LIST_LENGTH_ERROR;
1040 if (memcmp(buf + off, tbuf, length))
1041 ret = TCM_INVALID_PARAMETER_LIST;
1044 transport_kunmap_data_sg(cmd);
1047 target_complete_cmd(cmd, GOOD);
1051 static sense_reason_t spc_emulate_request_sense(struct se_cmd *cmd)
1053 unsigned char *cdb = cmd->t_task_cdb;
1054 unsigned char *rbuf;
1055 u8 ua_asc = 0, ua_ascq = 0;
1056 unsigned char buf[SE_SENSE_BUF];
1058 memset(buf, 0, SE_SENSE_BUF);
1060 if (cdb[1] & 0x01) {
1061 pr_err("REQUEST_SENSE description emulation not"
1063 return TCM_INVALID_CDB_FIELD;
1066 rbuf = transport_kmap_data_sg(cmd);
1068 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1070 if (!core_scsi3_ua_clear_for_request_sense(cmd, &ua_asc, &ua_ascq)) {
1072 * CURRENT ERROR, UNIT ATTENTION
1075 buf[SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
1078 * The Additional Sense Code (ASC) from the UNIT ATTENTION
1080 buf[SPC_ASC_KEY_OFFSET] = ua_asc;
1081 buf[SPC_ASCQ_KEY_OFFSET] = ua_ascq;
1085 * CURRENT ERROR, NO SENSE
1088 buf[SPC_SENSE_KEY_OFFSET] = NO_SENSE;
1091 * NO ADDITIONAL SENSE INFORMATION
1093 buf[SPC_ASC_KEY_OFFSET] = 0x00;
1097 memcpy(rbuf, buf, min_t(u32, sizeof(buf), cmd->data_length));
1098 transport_kunmap_data_sg(cmd);
1100 target_complete_cmd(cmd, GOOD);
1104 sense_reason_t spc_emulate_report_luns(struct se_cmd *cmd)
1106 struct se_dev_entry *deve;
1107 struct se_session *sess = cmd->se_sess;
1109 u32 lun_count = 0, offset = 8, i;
1111 if (cmd->data_length < 16) {
1112 pr_warn("REPORT LUNS allocation length %u too small\n",
1114 return TCM_INVALID_CDB_FIELD;
1117 buf = transport_kmap_data_sg(cmd);
1119 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1122 * If no struct se_session pointer is present, this struct se_cmd is
1123 * coming via a target_core_mod PASSTHROUGH op, and not through
1124 * a $FABRIC_MOD. In that case, report LUN=0 only.
1127 int_to_scsilun(0, (struct scsi_lun *)&buf[offset]);
1132 spin_lock_irq(&sess->se_node_acl->device_list_lock);
1133 for (i = 0; i < TRANSPORT_MAX_LUNS_PER_TPG; i++) {
1134 deve = sess->se_node_acl->device_list[i];
1135 if (!(deve->lun_flags & TRANSPORT_LUNFLAGS_INITIATOR_ACCESS))
1138 * We determine the correct LUN LIST LENGTH even once we
1139 * have reached the initial allocation length.
1140 * See SPC2-R20 7.19.
1143 if ((offset + 8) > cmd->data_length)
1146 int_to_scsilun(deve->mapped_lun, (struct scsi_lun *)&buf[offset]);
1149 spin_unlock_irq(&sess->se_node_acl->device_list_lock);
1152 * See SPC3 r07, page 159.
1156 buf[0] = ((lun_count >> 24) & 0xff);
1157 buf[1] = ((lun_count >> 16) & 0xff);
1158 buf[2] = ((lun_count >> 8) & 0xff);
1159 buf[3] = (lun_count & 0xff);
1160 transport_kunmap_data_sg(cmd);
1162 target_complete_cmd(cmd, GOOD);
1165 EXPORT_SYMBOL(spc_emulate_report_luns);
1167 static sense_reason_t
1168 spc_emulate_testunitready(struct se_cmd *cmd)
1170 target_complete_cmd(cmd, GOOD);
1175 spc_parse_cdb(struct se_cmd *cmd, unsigned int *size)
1177 struct se_device *dev = cmd->se_dev;
1178 unsigned char *cdb = cmd->t_task_cdb;
1183 cmd->execute_cmd = spc_emulate_modeselect;
1185 case MODE_SELECT_10:
1186 *size = (cdb[7] << 8) + cdb[8];
1187 cmd->execute_cmd = spc_emulate_modeselect;
1191 cmd->execute_cmd = spc_emulate_modesense;
1194 *size = (cdb[7] << 8) + cdb[8];
1195 cmd->execute_cmd = spc_emulate_modesense;
1199 *size = (cdb[7] << 8) + cdb[8];
1201 case PERSISTENT_RESERVE_IN:
1202 *size = (cdb[7] << 8) + cdb[8];
1203 cmd->execute_cmd = target_scsi3_emulate_pr_in;
1205 case PERSISTENT_RESERVE_OUT:
1206 *size = (cdb[7] << 8) + cdb[8];
1207 cmd->execute_cmd = target_scsi3_emulate_pr_out;
1211 if (cdb[0] == RELEASE_10)
1212 *size = (cdb[7] << 8) | cdb[8];
1214 *size = cmd->data_length;
1216 cmd->execute_cmd = target_scsi2_reservation_release;
1221 * The SPC-2 RESERVE does not contain a size in the SCSI CDB.
1222 * Assume the passthrough or $FABRIC_MOD will tell us about it.
1224 if (cdb[0] == RESERVE_10)
1225 *size = (cdb[7] << 8) | cdb[8];
1227 *size = cmd->data_length;
1229 cmd->execute_cmd = target_scsi2_reservation_reserve;
1233 cmd->execute_cmd = spc_emulate_request_sense;
1236 *size = (cdb[3] << 8) + cdb[4];
1239 * Do implict HEAD_OF_QUEUE processing for INQUIRY.
1240 * See spc4r17 section 5.3
1242 cmd->sam_task_attr = MSG_HEAD_TAG;
1243 cmd->execute_cmd = spc_emulate_inquiry;
1245 case SECURITY_PROTOCOL_IN:
1246 case SECURITY_PROTOCOL_OUT:
1247 *size = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9];
1250 case READ_ATTRIBUTE:
1251 case RECEIVE_COPY_RESULTS:
1252 case WRITE_ATTRIBUTE:
1253 *size = (cdb[10] << 24) | (cdb[11] << 16) |
1254 (cdb[12] << 8) | cdb[13];
1256 case RECEIVE_DIAGNOSTIC:
1257 case SEND_DIAGNOSTIC:
1258 *size = (cdb[3] << 8) | cdb[4];
1261 *size = (cdb[6] << 16) + (cdb[7] << 8) + cdb[8];
1264 cmd->execute_cmd = spc_emulate_report_luns;
1265 *size = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9];
1267 * Do implict HEAD_OF_QUEUE processing for REPORT_LUNS
1268 * See spc4r17 section 5.3
1270 cmd->sam_task_attr = MSG_HEAD_TAG;
1272 case TEST_UNIT_READY:
1273 cmd->execute_cmd = spc_emulate_testunitready;
1276 case MAINTENANCE_IN:
1277 if (dev->transport->get_device_type(dev) != TYPE_ROM) {
1279 * MAINTENANCE_IN from SCC-2
1280 * Check for emulated MI_REPORT_TARGET_PGS
1282 if ((cdb[1] & 0x1f) == MI_REPORT_TARGET_PGS) {
1284 target_emulate_report_target_port_groups;
1286 *size = get_unaligned_be32(&cdb[6]);
1289 * GPCMD_SEND_KEY from multi media commands
1291 *size = get_unaligned_be16(&cdb[8]);
1294 case MAINTENANCE_OUT:
1295 if (dev->transport->get_device_type(dev) != TYPE_ROM) {
1297 * MAINTENANCE_OUT from SCC-2
1298 * Check for emulated MO_SET_TARGET_PGS.
1300 if (cdb[1] == MO_SET_TARGET_PGS) {
1302 target_emulate_set_target_port_groups;
1304 *size = get_unaligned_be32(&cdb[6]);
1307 * GPCMD_SEND_KEY from multi media commands
1309 *size = get_unaligned_be16(&cdb[8]);
1313 pr_warn("TARGET_CORE[%s]: Unsupported SCSI Opcode"
1314 " 0x%02x, sending CHECK_CONDITION.\n",
1315 cmd->se_tfo->get_fabric_name(), cdb[0]);
1316 return TCM_UNSUPPORTED_SCSI_OPCODE;
1321 EXPORT_SYMBOL(spc_parse_cdb);