2 * CDB emulation for non-READ/WRITE commands.
4 * Copyright (c) 2002, 2003, 2004, 2005 PyX Technologies, Inc.
5 * Copyright (c) 2005, 2006, 2007 SBE, Inc.
6 * Copyright (c) 2007-2010 Rising Tide Systems
7 * Copyright (c) 2008-2010 Linux-iSCSI.org
9 * Nicholas A. Bellinger <nab@kernel.org>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 #include <linux/kernel.h>
27 #include <linux/module.h>
28 #include <asm/unaligned.h>
29 #include <scsi/scsi.h>
31 #include <target/target_core_base.h>
32 #include <target/target_core_backend.h>
33 #include <target/target_core_fabric.h>
35 #include "target_core_internal.h"
36 #include "target_core_ua.h"
39 target_fill_alua_data(struct se_port
*port
, unsigned char *buf
)
41 struct t10_alua_tg_pt_gp
*tg_pt_gp
;
42 struct t10_alua_tg_pt_gp_member
*tg_pt_gp_mem
;
45 * Set SCCS for MAINTENANCE_IN + REPORT_TARGET_PORT_GROUPS.
50 * Set TPGS field for explict and/or implict ALUA access type
53 * See spc4r17 section 6.4.2 Table 135
57 tg_pt_gp_mem
= port
->sep_alua_tg_pt_gp_mem
;
61 spin_lock(&tg_pt_gp_mem
->tg_pt_gp_mem_lock
);
62 tg_pt_gp
= tg_pt_gp_mem
->tg_pt_gp
;
64 buf
[5] |= tg_pt_gp
->tg_pt_gp_alua_access_type
;
65 spin_unlock(&tg_pt_gp_mem
->tg_pt_gp_mem_lock
);
69 target_emulate_inquiry_std(struct se_cmd
*cmd
, char *buf
)
71 struct se_lun
*lun
= cmd
->se_lun
;
72 struct se_device
*dev
= cmd
->se_dev
;
74 /* Set RMB (removable media) for tape devices */
75 if (dev
->transport
->get_device_type(dev
) == TYPE_TAPE
)
78 buf
[2] = dev
->transport
->get_device_rev(dev
);
81 * NORMACA and HISUP = 0, RESPONSE DATA FORMAT = 2
84 * A RESPONSE DATA FORMAT field set to 2h indicates that the
85 * standard INQUIRY data is in the format defined in this
86 * standard. Response data format values less than 2h are
87 * obsolete. Response data format values greater than 2h are
93 * Enable SCCS and TPGS fields for Emulated ALUA
95 if (dev
->se_sub_dev
->t10_alua
.alua_type
== SPC3_ALUA_EMULATED
)
96 target_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
->se_sub_dev
->t10_wwn
.model
);
102 snprintf(&buf
[32], 4, "%s", dev
->se_sub_dev
->t10_wwn
.revision
);
103 buf
[4] = 31; /* Set additional length to 31 */
108 /* unit serial number */
110 target_emulate_evpd_80(struct se_cmd
*cmd
, unsigned char *buf
)
112 struct se_device
*dev
= cmd
->se_dev
;
115 if (dev
->se_sub_dev
->su_dev_flags
&
116 SDF_EMULATED_VPD_UNIT_SERIAL
) {
119 unit_serial_len
= strlen(dev
->se_sub_dev
->t10_wwn
.unit_serial
);
120 unit_serial_len
++; /* For NULL Terminator */
122 len
+= sprintf(&buf
[4], "%s",
123 dev
->se_sub_dev
->t10_wwn
.unit_serial
);
124 len
++; /* Extra Byte for NULL Terminator */
131 target_parse_naa_6h_vendor_specific(struct se_device
*dev
, unsigned char *buf
)
133 unsigned char *p
= &dev
->se_sub_dev
->t10_wwn
.unit_serial
[0];
138 * Generate up to 36 bits of VENDOR SPECIFIC IDENTIFIER starting on
139 * byte 3 bit 3-0 for NAA IEEE Registered Extended DESIGNATOR field
140 * format, followed by 64 bits of VENDOR SPECIFIC IDENTIFIER EXTENSION
141 * to complete the payload. These are based from VPD=0x80 PRODUCT SERIAL
142 * NUMBER set via vpd_unit_serial in target_core_configfs.c to ensure
143 * per device uniqeness.
145 for (cnt
= 0; *p
&& cnt
< 13; p
++) {
146 int val
= hex_to_bin(*p
);
162 * Device identification VPD, for a complete list of
163 * DESIGNATOR TYPEs see spc4r17 Table 459.
166 target_emulate_evpd_83(struct se_cmd
*cmd
, unsigned char *buf
)
168 struct se_device
*dev
= cmd
->se_dev
;
169 struct se_lun
*lun
= cmd
->se_lun
;
170 struct se_port
*port
= NULL
;
171 struct se_portal_group
*tpg
= NULL
;
172 struct t10_alua_lu_gp_member
*lu_gp_mem
;
173 struct t10_alua_tg_pt_gp
*tg_pt_gp
;
174 struct t10_alua_tg_pt_gp_member
*tg_pt_gp_mem
;
175 unsigned char *prod
= &dev
->se_sub_dev
->t10_wwn
.model
[0];
177 u32 unit_serial_len
, off
= 0;
183 * NAA IEEE Registered Extended Assigned designator format, see
184 * spc4r17 section 7.7.3.6.5
186 * We depend upon a target_core_mod/ConfigFS provided
187 * /sys/kernel/config/target/core/$HBA/$DEV/wwn/vpd_unit_serial
188 * value in order to return the NAA id.
190 if (!(dev
->se_sub_dev
->su_dev_flags
& SDF_EMULATED_VPD_UNIT_SERIAL
))
191 goto check_t10_vend_desc
;
193 /* CODE SET == Binary */
196 /* Set ASSOCIATION == addressed logical unit: 0)b */
199 /* Identifier/Designator type == NAA identifier */
203 /* Identifier/Designator length */
207 * Start NAA IEEE Registered Extended Identifier/Designator
209 buf
[off
++] = (0x6 << 4);
212 * Use OpenFabrics IEEE Company ID: 00 14 05
216 buf
[off
] = (0x5 << 4);
219 * Return ConfigFS Unit Serial Number information for
220 * VENDOR_SPECIFIC_IDENTIFIER and
221 * VENDOR_SPECIFIC_IDENTIFIER_EXTENTION
223 target_parse_naa_6h_vendor_specific(dev
, &buf
[off
]);
230 * T10 Vendor Identifier Page, see spc4r17 section 7.7.3.4
232 id_len
= 8; /* For Vendor field */
233 prod_len
= 4; /* For VPD Header */
234 prod_len
+= 8; /* For Vendor field */
235 prod_len
+= strlen(prod
);
236 prod_len
++; /* For : */
238 if (dev
->se_sub_dev
->su_dev_flags
&
239 SDF_EMULATED_VPD_UNIT_SERIAL
) {
241 strlen(&dev
->se_sub_dev
->t10_wwn
.unit_serial
[0]);
242 unit_serial_len
++; /* For NULL Terminator */
244 id_len
+= sprintf(&buf
[off
+12], "%s:%s", prod
,
245 &dev
->se_sub_dev
->t10_wwn
.unit_serial
[0]);
247 buf
[off
] = 0x2; /* ASCII */
248 buf
[off
+1] = 0x1; /* T10 Vendor ID */
250 memcpy(&buf
[off
+4], "LIO-ORG", 8);
251 /* Extra Byte for NULL Terminator */
253 /* Identifier Length */
255 /* Header size for Designation descriptor */
259 * struct se_port is only set for INQUIRY VPD=1 through $FABRIC_MOD
263 struct t10_alua_lu_gp
*lu_gp
;
264 u32 padding
, scsi_name_len
;
271 * Relative target port identifer, see spc4r17
274 * Get the PROTOCOL IDENTIFIER as defined by spc4r17
275 * section 7.5.1 Table 362
278 (tpg
->se_tpg_tfo
->get_fabric_proto_ident(tpg
) << 4);
279 buf
[off
++] |= 0x1; /* CODE SET == Binary */
280 buf
[off
] = 0x80; /* Set PIV=1 */
281 /* Set ASSOCIATION == target port: 01b */
283 /* DESIGNATOR TYPE == Relative target port identifer */
285 off
++; /* Skip over Reserved */
286 buf
[off
++] = 4; /* DESIGNATOR LENGTH */
287 /* Skip over Obsolete field in RTPI payload
290 buf
[off
++] = ((port
->sep_rtpi
>> 8) & 0xff);
291 buf
[off
++] = (port
->sep_rtpi
& 0xff);
292 len
+= 8; /* Header size + Designation descriptor */
294 * Target port group identifier, see spc4r17
297 * Get the PROTOCOL IDENTIFIER as defined by spc4r17
298 * section 7.5.1 Table 362
300 if (dev
->se_sub_dev
->t10_alua
.alua_type
!=
302 goto check_scsi_name
;
304 tg_pt_gp_mem
= port
->sep_alua_tg_pt_gp_mem
;
308 spin_lock(&tg_pt_gp_mem
->tg_pt_gp_mem_lock
);
309 tg_pt_gp
= tg_pt_gp_mem
->tg_pt_gp
;
311 spin_unlock(&tg_pt_gp_mem
->tg_pt_gp_mem_lock
);
314 tg_pt_gp_id
= tg_pt_gp
->tg_pt_gp_id
;
315 spin_unlock(&tg_pt_gp_mem
->tg_pt_gp_mem_lock
);
318 (tpg
->se_tpg_tfo
->get_fabric_proto_ident(tpg
) << 4);
319 buf
[off
++] |= 0x1; /* CODE SET == Binary */
320 buf
[off
] = 0x80; /* Set PIV=1 */
321 /* Set ASSOCIATION == target port: 01b */
323 /* DESIGNATOR TYPE == Target port group identifier */
325 off
++; /* Skip over Reserved */
326 buf
[off
++] = 4; /* DESIGNATOR LENGTH */
327 off
+= 2; /* Skip over Reserved Field */
328 buf
[off
++] = ((tg_pt_gp_id
>> 8) & 0xff);
329 buf
[off
++] = (tg_pt_gp_id
& 0xff);
330 len
+= 8; /* Header size + Designation descriptor */
332 * Logical Unit Group identifier, see spc4r17
336 lu_gp_mem
= dev
->dev_alua_lu_gp_mem
;
338 goto check_scsi_name
;
340 spin_lock(&lu_gp_mem
->lu_gp_mem_lock
);
341 lu_gp
= lu_gp_mem
->lu_gp
;
343 spin_unlock(&lu_gp_mem
->lu_gp_mem_lock
);
344 goto check_scsi_name
;
346 lu_gp_id
= lu_gp
->lu_gp_id
;
347 spin_unlock(&lu_gp_mem
->lu_gp_mem_lock
);
349 buf
[off
++] |= 0x1; /* CODE SET == Binary */
350 /* DESIGNATOR TYPE == Logical Unit Group identifier */
352 off
++; /* Skip over Reserved */
353 buf
[off
++] = 4; /* DESIGNATOR LENGTH */
354 off
+= 2; /* Skip over Reserved Field */
355 buf
[off
++] = ((lu_gp_id
>> 8) & 0xff);
356 buf
[off
++] = (lu_gp_id
& 0xff);
357 len
+= 8; /* Header size + Designation descriptor */
359 * SCSI name string designator, see spc4r17
362 * Get the PROTOCOL IDENTIFIER as defined by spc4r17
363 * section 7.5.1 Table 362
366 scsi_name_len
= strlen(tpg
->se_tpg_tfo
->tpg_get_wwn(tpg
));
367 /* UTF-8 ",t,0x<16-bit TPGT>" + NULL Terminator */
369 /* Check for 4-byte padding */
370 padding
= ((-scsi_name_len
) & 3);
372 scsi_name_len
+= padding
;
373 /* Header size + Designation descriptor */
377 (tpg
->se_tpg_tfo
->get_fabric_proto_ident(tpg
) << 4);
378 buf
[off
++] |= 0x3; /* CODE SET == UTF-8 */
379 buf
[off
] = 0x80; /* Set PIV=1 */
380 /* Set ASSOCIATION == target port: 01b */
382 /* DESIGNATOR TYPE == SCSI name string */
384 off
+= 2; /* Skip over Reserved and length */
386 * SCSI name string identifer containing, $FABRIC_MOD
387 * dependent information. For LIO-Target and iSCSI
388 * Target Port, this means "<iSCSI name>,t,0x<TPGT> in
391 tpgt
= tpg
->se_tpg_tfo
->tpg_get_tag(tpg
);
392 scsi_name_len
= sprintf(&buf
[off
], "%s,t,0x%04x",
393 tpg
->se_tpg_tfo
->tpg_get_wwn(tpg
), tpgt
);
394 scsi_name_len
+= 1 /* Include NULL terminator */;
396 * The null-terminated, null-padded (see 4.4.2) SCSI
397 * NAME STRING field contains a UTF-8 format string.
398 * The number of bytes in the SCSI NAME STRING field
399 * (i.e., the value in the DESIGNATOR LENGTH field)
400 * shall be no larger than 256 and shall be a multiple
404 scsi_name_len
+= padding
;
406 buf
[off
-1] = scsi_name_len
;
407 off
+= scsi_name_len
;
408 /* Header size + Designation descriptor */
409 len
+= (scsi_name_len
+ 4);
411 buf
[2] = ((len
>> 8) & 0xff);
412 buf
[3] = (len
& 0xff); /* Page Length for VPD 0x83 */
416 /* Extended INQUIRY Data VPD Page */
418 target_emulate_evpd_86(struct se_cmd
*cmd
, unsigned char *buf
)
421 /* Set HEADSUP, ORDSUP, SIMPSUP */
424 /* If WriteCache emulation is enabled, set V_SUP */
425 if (cmd
->se_dev
->se_sub_dev
->se_dev_attrib
.emulate_write_cache
> 0)
430 /* Block Limits VPD page */
432 target_emulate_evpd_b0(struct se_cmd
*cmd
, unsigned char *buf
)
434 struct se_device
*dev
= cmd
->se_dev
;
439 * Following sbc3r22 section 6.5.3 Block Limits VPD page, when
440 * emulate_tpu=1 or emulate_tpws=1 we will be expect a
441 * different page length for Thin Provisioning.
443 if (dev
->se_sub_dev
->se_dev_attrib
.emulate_tpu
|| dev
->se_sub_dev
->se_dev_attrib
.emulate_tpws
)
446 buf
[0] = dev
->transport
->get_device_type(dev
);
447 buf
[3] = have_tp
? 0x3c : 0x10;
453 * Set OPTIMAL TRANSFER LENGTH GRANULARITY
455 put_unaligned_be16(1, &buf
[6]);
458 * Set MAXIMUM TRANSFER LENGTH
460 max_sectors
= min(dev
->se_sub_dev
->se_dev_attrib
.fabric_max_sectors
,
461 dev
->se_sub_dev
->se_dev_attrib
.hw_max_sectors
);
462 put_unaligned_be32(max_sectors
, &buf
[8]);
465 * Set OPTIMAL TRANSFER LENGTH
467 put_unaligned_be32(dev
->se_sub_dev
->se_dev_attrib
.optimal_sectors
, &buf
[12]);
470 * Exit now if we don't support TP.
476 * Set MAXIMUM UNMAP LBA COUNT
478 put_unaligned_be32(dev
->se_sub_dev
->se_dev_attrib
.max_unmap_lba_count
, &buf
[20]);
481 * Set MAXIMUM UNMAP BLOCK DESCRIPTOR COUNT
483 put_unaligned_be32(dev
->se_sub_dev
->se_dev_attrib
.max_unmap_block_desc_count
,
487 * Set OPTIMAL UNMAP GRANULARITY
489 put_unaligned_be32(dev
->se_sub_dev
->se_dev_attrib
.unmap_granularity
, &buf
[28]);
492 * UNMAP GRANULARITY ALIGNMENT
494 put_unaligned_be32(dev
->se_sub_dev
->se_dev_attrib
.unmap_granularity_alignment
,
496 if (dev
->se_sub_dev
->se_dev_attrib
.unmap_granularity_alignment
!= 0)
497 buf
[32] |= 0x80; /* Set the UGAVALID bit */
502 /* Block Device Characteristics VPD page */
504 target_emulate_evpd_b1(struct se_cmd
*cmd
, unsigned char *buf
)
506 struct se_device
*dev
= cmd
->se_dev
;
508 buf
[0] = dev
->transport
->get_device_type(dev
);
510 buf
[5] = dev
->se_sub_dev
->se_dev_attrib
.is_nonrot
? 1 : 0;
515 /* Thin Provisioning VPD */
517 target_emulate_evpd_b2(struct se_cmd
*cmd
, unsigned char *buf
)
519 struct se_device
*dev
= cmd
->se_dev
;
522 * From sbc3r22 section 6.5.4 Thin Provisioning VPD page:
524 * The PAGE LENGTH field is defined in SPC-4. If the DP bit is set to
525 * zero, then the page length shall be set to 0004h. If the DP bit
526 * is set to one, then the page length shall be set to the value
527 * defined in table 162.
529 buf
[0] = dev
->transport
->get_device_type(dev
);
532 * Set Hardcoded length mentioned above for DP=0
534 put_unaligned_be16(0x0004, &buf
[2]);
537 * The THRESHOLD EXPONENT field indicates the threshold set size in
538 * LBAs as a power of 2 (i.e., the threshold set size is equal to
539 * 2(threshold exponent)).
541 * Note that this is currently set to 0x00 as mkp says it will be
542 * changing again. We can enable this once it has settled in T10
543 * and is actually used by Linux/SCSI ML code.
548 * A TPU bit set to one indicates that the device server supports
549 * the UNMAP command (see 5.25). A TPU bit set to zero indicates
550 * that the device server does not support the UNMAP command.
552 if (dev
->se_sub_dev
->se_dev_attrib
.emulate_tpu
!= 0)
556 * A TPWS bit set to one indicates that the device server supports
557 * the use of the WRITE SAME (16) command (see 5.42) to unmap LBAs.
558 * A TPWS bit set to zero indicates that the device server does not
559 * support the use of the WRITE SAME (16) command to unmap LBAs.
561 if (dev
->se_sub_dev
->se_dev_attrib
.emulate_tpws
!= 0)
568 target_emulate_evpd_00(struct se_cmd
*cmd
, unsigned char *buf
);
572 int (*emulate
)(struct se_cmd
*, unsigned char *);
573 } evpd_handlers
[] = {
574 { .page
= 0x00, .emulate
= target_emulate_evpd_00
},
575 { .page
= 0x80, .emulate
= target_emulate_evpd_80
},
576 { .page
= 0x83, .emulate
= target_emulate_evpd_83
},
577 { .page
= 0x86, .emulate
= target_emulate_evpd_86
},
578 { .page
= 0xb0, .emulate
= target_emulate_evpd_b0
},
579 { .page
= 0xb1, .emulate
= target_emulate_evpd_b1
},
580 { .page
= 0xb2, .emulate
= target_emulate_evpd_b2
},
583 /* supported vital product data pages */
585 target_emulate_evpd_00(struct se_cmd
*cmd
, unsigned char *buf
)
590 * Only report the INQUIRY EVPD=1 pages after a valid NAA
591 * Registered Extended LUN WWN has been set via ConfigFS
592 * during device creation/restart.
594 if (cmd
->se_dev
->se_sub_dev
->su_dev_flags
&
595 SDF_EMULATED_VPD_UNIT_SERIAL
) {
596 buf
[3] = ARRAY_SIZE(evpd_handlers
);
597 for (p
= 0; p
< ARRAY_SIZE(evpd_handlers
); ++p
)
598 buf
[p
+ 4] = evpd_handlers
[p
].page
;
604 int target_emulate_inquiry(struct se_cmd
*cmd
)
606 struct se_device
*dev
= cmd
->se_dev
;
607 struct se_portal_group
*tpg
= cmd
->se_lun
->lun_sep
->sep_tpg
;
608 unsigned char *buf
, *map_buf
;
609 unsigned char *cdb
= cmd
->t_task_cdb
;
612 map_buf
= transport_kmap_data_sg(cmd
);
614 * If SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC is not set, then we
615 * know we actually allocated a full page. Otherwise, if the
616 * data buffer is too small, allocate a temporary buffer so we
617 * don't have to worry about overruns in all our INQUIRY
618 * emulation handling.
620 if (cmd
->data_length
< SE_INQUIRY_BUF
&&
621 (cmd
->se_cmd_flags
& SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC
)) {
622 buf
= kzalloc(SE_INQUIRY_BUF
, GFP_KERNEL
);
624 transport_kunmap_data_sg(cmd
);
625 cmd
->scsi_sense_reason
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
632 if (dev
== tpg
->tpg_virt_lun0
.lun_se_dev
)
633 buf
[0] = 0x3f; /* Not connected */
635 buf
[0] = dev
->transport
->get_device_type(dev
);
637 if (!(cdb
[1] & 0x1)) {
639 pr_err("INQUIRY with EVPD==0 but PAGE CODE=%02x\n",
641 cmd
->scsi_sense_reason
= TCM_INVALID_CDB_FIELD
;
646 ret
= target_emulate_inquiry_std(cmd
, buf
);
650 for (p
= 0; p
< ARRAY_SIZE(evpd_handlers
); ++p
) {
651 if (cdb
[2] == evpd_handlers
[p
].page
) {
653 ret
= evpd_handlers
[p
].emulate(cmd
, buf
);
658 pr_err("Unknown VPD Code: 0x%02x\n", cdb
[2]);
659 cmd
->scsi_sense_reason
= TCM_INVALID_CDB_FIELD
;
663 if (buf
!= map_buf
) {
664 memcpy(map_buf
, buf
, cmd
->data_length
);
667 transport_kunmap_data_sg(cmd
);
670 target_complete_cmd(cmd
, GOOD
);
674 int target_emulate_readcapacity(struct se_cmd
*cmd
)
676 struct se_device
*dev
= cmd
->se_dev
;
678 unsigned long long blocks_long
= dev
->transport
->get_blocks(dev
);
681 if (blocks_long
>= 0x00000000ffffffff)
684 blocks
= (u32
)blocks_long
;
686 buf
= transport_kmap_data_sg(cmd
);
688 buf
[0] = (blocks
>> 24) & 0xff;
689 buf
[1] = (blocks
>> 16) & 0xff;
690 buf
[2] = (blocks
>> 8) & 0xff;
691 buf
[3] = blocks
& 0xff;
692 buf
[4] = (dev
->se_sub_dev
->se_dev_attrib
.block_size
>> 24) & 0xff;
693 buf
[5] = (dev
->se_sub_dev
->se_dev_attrib
.block_size
>> 16) & 0xff;
694 buf
[6] = (dev
->se_sub_dev
->se_dev_attrib
.block_size
>> 8) & 0xff;
695 buf
[7] = dev
->se_sub_dev
->se_dev_attrib
.block_size
& 0xff;
697 transport_kunmap_data_sg(cmd
);
699 target_complete_cmd(cmd
, GOOD
);
703 int target_emulate_readcapacity_16(struct se_cmd
*cmd
)
705 struct se_device
*dev
= cmd
->se_dev
;
707 unsigned long long blocks
= dev
->transport
->get_blocks(dev
);
709 buf
= transport_kmap_data_sg(cmd
);
711 buf
[0] = (blocks
>> 56) & 0xff;
712 buf
[1] = (blocks
>> 48) & 0xff;
713 buf
[2] = (blocks
>> 40) & 0xff;
714 buf
[3] = (blocks
>> 32) & 0xff;
715 buf
[4] = (blocks
>> 24) & 0xff;
716 buf
[5] = (blocks
>> 16) & 0xff;
717 buf
[6] = (blocks
>> 8) & 0xff;
718 buf
[7] = blocks
& 0xff;
719 buf
[8] = (dev
->se_sub_dev
->se_dev_attrib
.block_size
>> 24) & 0xff;
720 buf
[9] = (dev
->se_sub_dev
->se_dev_attrib
.block_size
>> 16) & 0xff;
721 buf
[10] = (dev
->se_sub_dev
->se_dev_attrib
.block_size
>> 8) & 0xff;
722 buf
[11] = dev
->se_sub_dev
->se_dev_attrib
.block_size
& 0xff;
724 * Set Thin Provisioning Enable bit following sbc3r22 in section
725 * READ CAPACITY (16) byte 14 if emulate_tpu or emulate_tpws is enabled.
727 if (dev
->se_sub_dev
->se_dev_attrib
.emulate_tpu
|| dev
->se_sub_dev
->se_dev_attrib
.emulate_tpws
)
730 transport_kunmap_data_sg(cmd
);
732 target_complete_cmd(cmd
, GOOD
);
737 target_modesense_rwrecovery(unsigned char *p
)
746 target_modesense_control(struct se_device
*dev
, unsigned char *p
)
752 * From spc4r23, 7.4.7 Control mode page
754 * The QUEUE ALGORITHM MODIFIER field (see table 368) specifies
755 * restrictions on the algorithm used for reordering commands
756 * having the SIMPLE task attribute (see SAM-4).
758 * Table 368 -- QUEUE ALGORITHM MODIFIER field
760 * 0h Restricted reordering
761 * 1h Unrestricted reordering allowed
763 * 8h to Fh Vendor specific
765 * A value of zero in the QUEUE ALGORITHM MODIFIER field specifies that
766 * the device server shall order the processing sequence of commands
767 * having the SIMPLE task attribute such that data integrity is maintained
768 * for that I_T nexus (i.e., if the transmission of new SCSI transport protocol
769 * requests is halted at any time, the final value of all data observable
770 * on the medium shall be the same as if all the commands had been processed
771 * with the ORDERED task attribute).
773 * A value of one in the QUEUE ALGORITHM MODIFIER field specifies that the
774 * device server may reorder the processing sequence of commands having the
775 * SIMPLE task attribute in any manner. Any data integrity exposures related to
776 * command sequence order shall be explicitly handled by the application client
777 * through the selection of appropriate ommands and task attributes.
779 p
[3] = (dev
->se_sub_dev
->se_dev_attrib
.emulate_rest_reord
== 1) ? 0x00 : 0x10;
781 * From spc4r17, section 7.4.6 Control mode Page
783 * Unit Attention interlocks control (UN_INTLCK_CTRL) to code 00b
785 * 00b: The logical unit shall clear any unit attention condition
786 * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
787 * status and shall not establish a unit attention condition when a com-
788 * mand is completed with BUSY, TASK SET FULL, or RESERVATION CONFLICT
791 * 10b: The logical unit shall not clear any unit attention condition
792 * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
793 * status and shall not establish a unit attention condition when
794 * a command is completed with BUSY, TASK SET FULL, or RESERVATION
797 * 11b a The logical unit shall not clear any unit attention condition
798 * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
799 * status and shall establish a unit attention condition for the
800 * initiator port associated with the I_T nexus on which the BUSY,
801 * TASK SET FULL, or RESERVATION CONFLICT status is being returned.
802 * Depending on the status, the additional sense code shall be set to
803 * PREVIOUS BUSY STATUS, PREVIOUS TASK SET FULL STATUS, or PREVIOUS
804 * RESERVATION CONFLICT STATUS. Until it is cleared by a REQUEST SENSE
805 * command, a unit attention condition shall be established only once
806 * for a BUSY, TASK SET FULL, or RESERVATION CONFLICT status regardless
807 * to the number of commands completed with one of those status codes.
809 p
[4] = (dev
->se_sub_dev
->se_dev_attrib
.emulate_ua_intlck_ctrl
== 2) ? 0x30 :
810 (dev
->se_sub_dev
->se_dev_attrib
.emulate_ua_intlck_ctrl
== 1) ? 0x20 : 0x00;
812 * From spc4r17, section 7.4.6 Control mode Page
814 * Task Aborted Status (TAS) bit set to zero.
816 * A task aborted status (TAS) bit set to zero specifies that aborted
817 * tasks shall be terminated by the device server without any response
818 * to the application client. A TAS bit set to one specifies that tasks
819 * aborted by the actions of an I_T nexus other than the I_T nexus on
820 * which the command was received shall be completed with TASK ABORTED
821 * status (see SAM-4).
823 p
[5] = (dev
->se_sub_dev
->se_dev_attrib
.emulate_tas
) ? 0x40 : 0x00;
832 target_modesense_caching(struct se_device
*dev
, unsigned char *p
)
836 if (dev
->se_sub_dev
->se_dev_attrib
.emulate_write_cache
> 0)
837 p
[2] = 0x04; /* Write Cache Enable */
838 p
[12] = 0x20; /* Disabled Read Ahead */
844 target_modesense_write_protect(unsigned char *buf
, int type
)
847 * I believe that the WP bit (bit 7) in the mode header is the same for
854 buf
[0] |= 0x80; /* WP bit */
860 target_modesense_dpofua(unsigned char *buf
, int type
)
864 buf
[0] |= 0x10; /* DPOFUA bit */
871 int target_emulate_modesense(struct se_cmd
*cmd
)
873 struct se_device
*dev
= cmd
->se_dev
;
874 char *cdb
= cmd
->t_task_cdb
;
876 int type
= dev
->transport
->get_device_type(dev
);
877 int ten
= (cmd
->t_task_cdb
[0] == MODE_SENSE_10
);
878 int offset
= ten
? 8 : 4;
880 unsigned char buf
[SE_MODE_PAGE_BUF
];
882 memset(buf
, 0, SE_MODE_PAGE_BUF
);
884 switch (cdb
[2] & 0x3f) {
886 length
= target_modesense_rwrecovery(&buf
[offset
]);
889 length
= target_modesense_caching(dev
, &buf
[offset
]);
892 length
= target_modesense_control(dev
, &buf
[offset
]);
895 length
= target_modesense_rwrecovery(&buf
[offset
]);
896 length
+= target_modesense_caching(dev
, &buf
[offset
+length
]);
897 length
+= target_modesense_control(dev
, &buf
[offset
+length
]);
900 pr_err("MODE SENSE: unimplemented page/subpage: 0x%02x/0x%02x\n",
901 cdb
[2] & 0x3f, cdb
[3]);
902 cmd
->scsi_sense_reason
= TCM_UNKNOWN_MODE_PAGE
;
909 buf
[0] = (offset
>> 8) & 0xff;
910 buf
[1] = offset
& 0xff;
912 if ((cmd
->se_lun
->lun_access
& TRANSPORT_LUNFLAGS_READ_ONLY
) ||
914 (cmd
->se_deve
->lun_flags
& TRANSPORT_LUNFLAGS_READ_ONLY
)))
915 target_modesense_write_protect(&buf
[3], type
);
917 if ((dev
->se_sub_dev
->se_dev_attrib
.emulate_write_cache
> 0) &&
918 (dev
->se_sub_dev
->se_dev_attrib
.emulate_fua_write
> 0))
919 target_modesense_dpofua(&buf
[3], type
);
921 if ((offset
+ 2) > cmd
->data_length
)
922 offset
= cmd
->data_length
;
926 buf
[0] = offset
& 0xff;
928 if ((cmd
->se_lun
->lun_access
& TRANSPORT_LUNFLAGS_READ_ONLY
) ||
930 (cmd
->se_deve
->lun_flags
& TRANSPORT_LUNFLAGS_READ_ONLY
)))
931 target_modesense_write_protect(&buf
[2], type
);
933 if ((dev
->se_sub_dev
->se_dev_attrib
.emulate_write_cache
> 0) &&
934 (dev
->se_sub_dev
->se_dev_attrib
.emulate_fua_write
> 0))
935 target_modesense_dpofua(&buf
[2], type
);
937 if ((offset
+ 1) > cmd
->data_length
)
938 offset
= cmd
->data_length
;
941 rbuf
= transport_kmap_data_sg(cmd
);
942 memcpy(rbuf
, buf
, offset
);
943 transport_kunmap_data_sg(cmd
);
945 target_complete_cmd(cmd
, GOOD
);
949 int target_emulate_request_sense(struct se_cmd
*cmd
)
951 unsigned char *cdb
= cmd
->t_task_cdb
;
953 u8 ua_asc
= 0, ua_ascq
= 0;
957 pr_err("REQUEST_SENSE description emulation not"
959 cmd
->scsi_sense_reason
= TCM_INVALID_CDB_FIELD
;
963 buf
= transport_kmap_data_sg(cmd
);
965 if (!core_scsi3_ua_clear_for_request_sense(cmd
, &ua_asc
, &ua_ascq
)) {
967 * CURRENT ERROR, UNIT ATTENTION
970 buf
[SPC_SENSE_KEY_OFFSET
] = UNIT_ATTENTION
;
972 if (cmd
->data_length
< 18) {
978 * The Additional Sense Code (ASC) from the UNIT ATTENTION
980 buf
[SPC_ASC_KEY_OFFSET
] = ua_asc
;
981 buf
[SPC_ASCQ_KEY_OFFSET
] = ua_ascq
;
985 * CURRENT ERROR, NO SENSE
988 buf
[SPC_SENSE_KEY_OFFSET
] = NO_SENSE
;
990 if (cmd
->data_length
< 18) {
996 * NO ADDITIONAL SENSE INFORMATION
998 buf
[SPC_ASC_KEY_OFFSET
] = 0x00;
1003 transport_kunmap_data_sg(cmd
);
1004 target_complete_cmd(cmd
, GOOD
);
1009 * Used for TCM/IBLOCK and TCM/FILEIO for block/blk-lib.c level discard support.
1010 * Note this is not used for TCM/pSCSI passthrough
1012 int target_emulate_unmap(struct se_cmd
*cmd
)
1014 struct se_device
*dev
= cmd
->se_dev
;
1015 unsigned char *buf
, *ptr
= NULL
;
1016 unsigned char *cdb
= &cmd
->t_task_cdb
[0];
1018 unsigned int size
= cmd
->data_length
, range
;
1019 int ret
= 0, offset
;
1020 unsigned short dl
, bd_dl
;
1022 if (!dev
->transport
->do_discard
) {
1023 pr_err("UNMAP emulation not supported for: %s\n",
1024 dev
->transport
->name
);
1025 cmd
->scsi_sense_reason
= TCM_UNSUPPORTED_SCSI_OPCODE
;
1029 /* First UNMAP block descriptor starts at 8 byte offset */
1032 dl
= get_unaligned_be16(&cdb
[0]);
1033 bd_dl
= get_unaligned_be16(&cdb
[2]);
1035 buf
= transport_kmap_data_sg(cmd
);
1038 pr_debug("UNMAP: Sub: %s Using dl: %hu bd_dl: %hu size: %hu"
1039 " ptr: %p\n", dev
->transport
->name
, dl
, bd_dl
, size
, ptr
);
1042 lba
= get_unaligned_be64(&ptr
[0]);
1043 range
= get_unaligned_be32(&ptr
[8]);
1044 pr_debug("UNMAP: Using lba: %llu and range: %u\n",
1045 (unsigned long long)lba
, range
);
1047 ret
= dev
->transport
->do_discard(dev
, lba
, range
);
1049 pr_err("blkdev_issue_discard() failed: %d\n",
1059 transport_kunmap_data_sg(cmd
);
1061 target_complete_cmd(cmd
, GOOD
);
1066 * Used for TCM/IBLOCK and TCM/FILEIO for block/blk-lib.c level discard support.
1067 * Note this is not used for TCM/pSCSI passthrough
1069 int target_emulate_write_same(struct se_cmd
*cmd
)
1071 struct se_device
*dev
= cmd
->se_dev
;
1073 sector_t lba
= cmd
->t_task_lba
;
1077 if (!dev
->transport
->do_discard
) {
1078 pr_err("WRITE_SAME emulation not supported"
1079 " for: %s\n", dev
->transport
->name
);
1080 cmd
->scsi_sense_reason
= TCM_UNSUPPORTED_SCSI_OPCODE
;
1084 if (cmd
->t_task_cdb
[0] == WRITE_SAME
)
1085 num_blocks
= get_unaligned_be16(&cmd
->t_task_cdb
[7]);
1086 else if (cmd
->t_task_cdb
[0] == WRITE_SAME_16
)
1087 num_blocks
= get_unaligned_be32(&cmd
->t_task_cdb
[10]);
1088 else /* WRITE_SAME_32 via VARIABLE_LENGTH_CMD */
1089 num_blocks
= get_unaligned_be32(&cmd
->t_task_cdb
[28]);
1092 * Use the explicit range when non zero is supplied, otherwise calculate
1093 * the remaining range based on ->get_blocks() - starting LBA.
1095 if (num_blocks
!= 0)
1098 range
= (dev
->transport
->get_blocks(dev
) - lba
);
1100 pr_debug("WRITE_SAME UNMAP: LBA: %llu Range: %llu\n",
1101 (unsigned long long)lba
, (unsigned long long)range
);
1103 ret
= dev
->transport
->do_discard(dev
, lba
, range
);
1105 pr_debug("blkdev_issue_discard() failed for WRITE_SAME\n");
1109 target_complete_cmd(cmd
, GOOD
);
1113 int target_emulate_synchronize_cache(struct se_cmd
*cmd
)
1115 if (!cmd
->se_dev
->transport
->do_sync_cache
) {
1116 pr_err("SYNCHRONIZE_CACHE emulation not supported"
1117 " for: %s\n", cmd
->se_dev
->transport
->name
);
1118 cmd
->scsi_sense_reason
= TCM_UNSUPPORTED_SCSI_OPCODE
;
1122 cmd
->se_dev
->transport
->do_sync_cache(cmd
);
1126 int target_emulate_noop(struct se_cmd
*cmd
)
1128 target_complete_cmd(cmd
, GOOD
);