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 <asm/unaligned.h>
28 #include <scsi/scsi.h>
30 #include <target/target_core_base.h>
31 #include <target/target_core_transport.h>
32 #include <target/target_core_fabric_ops.h>
33 #include "target_core_ua.h"
36 target_fill_alua_data(struct se_port
*port
, unsigned char *buf
)
38 struct t10_alua_tg_pt_gp
*tg_pt_gp
;
39 struct t10_alua_tg_pt_gp_member
*tg_pt_gp_mem
;
42 * Set SCCS for MAINTENANCE_IN + REPORT_TARGET_PORT_GROUPS.
47 * Set TPGS field for explict and/or implict ALUA access type
50 * See spc4r17 section 6.4.2 Table 135
54 tg_pt_gp_mem
= port
->sep_alua_tg_pt_gp_mem
;
58 spin_lock(&tg_pt_gp_mem
->tg_pt_gp_mem_lock
);
59 tg_pt_gp
= tg_pt_gp_mem
->tg_pt_gp
;
61 buf
[5] |= tg_pt_gp
->tg_pt_gp_alua_access_type
;
62 spin_unlock(&tg_pt_gp_mem
->tg_pt_gp_mem_lock
);
66 target_emulate_inquiry_std(struct se_cmd
*cmd
)
68 struct se_lun
*lun
= cmd
->se_lun
;
69 struct se_device
*dev
= cmd
->se_dev
;
70 struct se_portal_group
*tpg
= lun
->lun_sep
->sep_tpg
;
74 * Make sure we at least have 6 bytes of INQUIRY response
75 * payload going back for EVPD=0
77 if (cmd
->data_length
< 6) {
78 pr_err("SCSI Inquiry payload length: %u"
79 " too small for EVPD=0\n", cmd
->data_length
);
83 buf
= transport_kmap_first_data_page(cmd
);
85 if (dev
== tpg
->tpg_virt_lun0
.lun_se_dev
) {
86 buf
[0] = 0x3f; /* Not connected */
88 buf
[0] = dev
->transport
->get_device_type(dev
);
89 if (buf
[0] == TYPE_TAPE
)
92 buf
[2] = dev
->transport
->get_device_rev(dev
);
95 * Enable SCCS and TPGS fields for Emulated ALUA
97 if (dev
->se_sub_dev
->t10_alua
.alua_type
== SPC3_ALUA_EMULATED
)
98 target_fill_alua_data(lun
->lun_sep
, buf
);
100 if (cmd
->data_length
< 8) {
101 buf
[4] = 1; /* Set additional length to 1 */
105 buf
[7] = 0x32; /* Sync=1 and CmdQue=1 */
108 * Do not include vendor, product, reversion info in INQUIRY
109 * response payload for cdbs with a small allocation length.
111 if (cmd
->data_length
< 36) {
112 buf
[4] = 3; /* Set additional length to 3 */
116 snprintf((unsigned char *)&buf
[8], 8, "LIO-ORG");
117 snprintf((unsigned char *)&buf
[16], 16, "%s",
118 &dev
->se_sub_dev
->t10_wwn
.model
[0]);
119 snprintf((unsigned char *)&buf
[32], 4, "%s",
120 &dev
->se_sub_dev
->t10_wwn
.revision
[0]);
121 buf
[4] = 31; /* Set additional length to 31 */
124 transport_kunmap_first_data_page(cmd
);
128 /* unit serial number */
130 target_emulate_evpd_80(struct se_cmd
*cmd
, unsigned char *buf
)
132 struct se_device
*dev
= cmd
->se_dev
;
135 if (dev
->se_sub_dev
->su_dev_flags
&
136 SDF_EMULATED_VPD_UNIT_SERIAL
) {
140 strlen(&dev
->se_sub_dev
->t10_wwn
.unit_serial
[0]);
141 unit_serial_len
++; /* For NULL Terminator */
143 if (((len
+ 4) + unit_serial_len
) > cmd
->data_length
) {
144 len
+= unit_serial_len
;
145 buf
[2] = ((len
>> 8) & 0xff);
146 buf
[3] = (len
& 0xff);
149 len
+= sprintf((unsigned char *)&buf
[4], "%s",
150 &dev
->se_sub_dev
->t10_wwn
.unit_serial
[0]);
151 len
++; /* Extra Byte for NULL Terminator */
158 * Device identification VPD, for a complete list of
159 * DESIGNATOR TYPEs see spc4r17 Table 459.
162 target_emulate_evpd_83(struct se_cmd
*cmd
, unsigned char *buf
)
164 struct se_device
*dev
= cmd
->se_dev
;
165 struct se_lun
*lun
= cmd
->se_lun
;
166 struct se_port
*port
= NULL
;
167 struct se_portal_group
*tpg
= NULL
;
168 struct t10_alua_lu_gp_member
*lu_gp_mem
;
169 struct t10_alua_tg_pt_gp
*tg_pt_gp
;
170 struct t10_alua_tg_pt_gp_member
*tg_pt_gp_mem
;
171 unsigned char *prod
= &dev
->se_sub_dev
->t10_wwn
.model
[0];
173 u32 unit_serial_len
, off
= 0;
179 * NAA IEEE Registered Extended Assigned designator format, see
180 * spc4r17 section 7.7.3.6.5
182 * We depend upon a target_core_mod/ConfigFS provided
183 * /sys/kernel/config/target/core/$HBA/$DEV/wwn/vpd_unit_serial
184 * value in order to return the NAA id.
186 if (!(dev
->se_sub_dev
->su_dev_flags
& SDF_EMULATED_VPD_UNIT_SERIAL
))
187 goto check_t10_vend_desc
;
189 if (off
+ 20 > cmd
->data_length
)
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 buf
[off
++] |= hex_to_bin(dev
->se_sub_dev
->t10_wwn
.unit_serial
[0]);
223 hex2bin(&buf
[off
], &dev
->se_sub_dev
->t10_wwn
.unit_serial
[1], 12);
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 if ((len
+ (id_len
+ 4) +
245 (prod_len
+ unit_serial_len
)) >
247 len
+= (prod_len
+ unit_serial_len
);
250 id_len
+= sprintf((unsigned char *)&buf
[off
+12],
252 &dev
->se_sub_dev
->t10_wwn
.unit_serial
[0]);
254 buf
[off
] = 0x2; /* ASCII */
255 buf
[off
+1] = 0x1; /* T10 Vendor ID */
257 memcpy((unsigned char *)&buf
[off
+4], "LIO-ORG", 8);
258 /* Extra Byte for NULL Terminator */
260 /* Identifier Length */
262 /* Header size for Designation descriptor */
266 * struct se_port is only set for INQUIRY VPD=1 through $FABRIC_MOD
271 struct t10_alua_lu_gp
*lu_gp
;
272 u32 padding
, scsi_name_len
;
279 * Relative target port identifer, see spc4r17
282 * Get the PROTOCOL IDENTIFIER as defined by spc4r17
283 * section 7.5.1 Table 362
285 if (((len
+ 4) + 8) > cmd
->data_length
) {
290 (tpg
->se_tpg_tfo
->get_fabric_proto_ident(tpg
) << 4);
291 buf
[off
++] |= 0x1; /* CODE SET == Binary */
292 buf
[off
] = 0x80; /* Set PIV=1 */
293 /* Set ASSOCIATION == target port: 01b */
295 /* DESIGNATOR TYPE == Relative target port identifer */
297 off
++; /* Skip over Reserved */
298 buf
[off
++] = 4; /* DESIGNATOR LENGTH */
299 /* Skip over Obsolete field in RTPI payload
302 buf
[off
++] = ((port
->sep_rtpi
>> 8) & 0xff);
303 buf
[off
++] = (port
->sep_rtpi
& 0xff);
304 len
+= 8; /* Header size + Designation descriptor */
306 * Target port group identifier, see spc4r17
309 * Get the PROTOCOL IDENTIFIER as defined by spc4r17
310 * section 7.5.1 Table 362
313 if (dev
->se_sub_dev
->t10_alua
.alua_type
!=
315 goto check_scsi_name
;
317 if (((len
+ 4) + 8) > cmd
->data_length
) {
321 tg_pt_gp_mem
= port
->sep_alua_tg_pt_gp_mem
;
325 spin_lock(&tg_pt_gp_mem
->tg_pt_gp_mem_lock
);
326 tg_pt_gp
= tg_pt_gp_mem
->tg_pt_gp
;
328 spin_unlock(&tg_pt_gp_mem
->tg_pt_gp_mem_lock
);
331 tg_pt_gp_id
= tg_pt_gp
->tg_pt_gp_id
;
332 spin_unlock(&tg_pt_gp_mem
->tg_pt_gp_mem_lock
);
335 (tpg
->se_tpg_tfo
->get_fabric_proto_ident(tpg
) << 4);
336 buf
[off
++] |= 0x1; /* CODE SET == Binary */
337 buf
[off
] = 0x80; /* Set PIV=1 */
338 /* Set ASSOCIATION == target port: 01b */
340 /* DESIGNATOR TYPE == Target port group identifier */
342 off
++; /* Skip over Reserved */
343 buf
[off
++] = 4; /* DESIGNATOR LENGTH */
344 off
+= 2; /* Skip over Reserved Field */
345 buf
[off
++] = ((tg_pt_gp_id
>> 8) & 0xff);
346 buf
[off
++] = (tg_pt_gp_id
& 0xff);
347 len
+= 8; /* Header size + Designation descriptor */
349 * Logical Unit Group identifier, see spc4r17
353 if (((len
+ 4) + 8) > cmd
->data_length
) {
355 goto check_scsi_name
;
357 lu_gp_mem
= dev
->dev_alua_lu_gp_mem
;
359 goto check_scsi_name
;
361 spin_lock(&lu_gp_mem
->lu_gp_mem_lock
);
362 lu_gp
= lu_gp_mem
->lu_gp
;
364 spin_unlock(&lu_gp_mem
->lu_gp_mem_lock
);
365 goto check_scsi_name
;
367 lu_gp_id
= lu_gp
->lu_gp_id
;
368 spin_unlock(&lu_gp_mem
->lu_gp_mem_lock
);
370 buf
[off
++] |= 0x1; /* CODE SET == Binary */
371 /* DESIGNATOR TYPE == Logical Unit Group identifier */
373 off
++; /* Skip over Reserved */
374 buf
[off
++] = 4; /* DESIGNATOR LENGTH */
375 off
+= 2; /* Skip over Reserved Field */
376 buf
[off
++] = ((lu_gp_id
>> 8) & 0xff);
377 buf
[off
++] = (lu_gp_id
& 0xff);
378 len
+= 8; /* Header size + Designation descriptor */
380 * SCSI name string designator, see spc4r17
383 * Get the PROTOCOL IDENTIFIER as defined by spc4r17
384 * section 7.5.1 Table 362
387 scsi_name_len
= strlen(tpg
->se_tpg_tfo
->tpg_get_wwn(tpg
));
388 /* UTF-8 ",t,0x<16-bit TPGT>" + NULL Terminator */
390 /* Check for 4-byte padding */
391 padding
= ((-scsi_name_len
) & 3);
393 scsi_name_len
+= padding
;
394 /* Header size + Designation descriptor */
397 if (((len
+ 4) + scsi_name_len
) > cmd
->data_length
) {
398 len
+= scsi_name_len
;
402 (tpg
->se_tpg_tfo
->get_fabric_proto_ident(tpg
) << 4);
403 buf
[off
++] |= 0x3; /* CODE SET == UTF-8 */
404 buf
[off
] = 0x80; /* Set PIV=1 */
405 /* Set ASSOCIATION == target port: 01b */
407 /* DESIGNATOR TYPE == SCSI name string */
409 off
+= 2; /* Skip over Reserved and length */
411 * SCSI name string identifer containing, $FABRIC_MOD
412 * dependent information. For LIO-Target and iSCSI
413 * Target Port, this means "<iSCSI name>,t,0x<TPGT> in
416 tpgt
= tpg
->se_tpg_tfo
->tpg_get_tag(tpg
);
417 scsi_name_len
= sprintf(&buf
[off
], "%s,t,0x%04x",
418 tpg
->se_tpg_tfo
->tpg_get_wwn(tpg
), tpgt
);
419 scsi_name_len
+= 1 /* Include NULL terminator */;
421 * The null-terminated, null-padded (see 4.4.2) SCSI
422 * NAME STRING field contains a UTF-8 format string.
423 * The number of bytes in the SCSI NAME STRING field
424 * (i.e., the value in the DESIGNATOR LENGTH field)
425 * shall be no larger than 256 and shall be a multiple
429 scsi_name_len
+= padding
;
431 buf
[off
-1] = scsi_name_len
;
432 off
+= scsi_name_len
;
433 /* Header size + Designation descriptor */
434 len
+= (scsi_name_len
+ 4);
437 buf
[2] = ((len
>> 8) & 0xff);
438 buf
[3] = (len
& 0xff); /* Page Length for VPD 0x83 */
442 /* Extended INQUIRY Data VPD Page */
444 target_emulate_evpd_86(struct se_cmd
*cmd
, unsigned char *buf
)
446 if (cmd
->data_length
< 60)
450 /* Set HEADSUP, ORDSUP, SIMPSUP */
453 /* If WriteCache emulation is enabled, set V_SUP */
454 if (cmd
->se_dev
->se_sub_dev
->se_dev_attrib
.emulate_write_cache
> 0)
459 /* Block Limits VPD page */
461 target_emulate_evpd_b0(struct se_cmd
*cmd
, unsigned char *buf
)
463 struct se_device
*dev
= cmd
->se_dev
;
467 * Following sbc3r22 section 6.5.3 Block Limits VPD page, when
468 * emulate_tpu=1 or emulate_tpws=1 we will be expect a
469 * different page length for Thin Provisioning.
471 if (dev
->se_sub_dev
->se_dev_attrib
.emulate_tpu
|| dev
->se_sub_dev
->se_dev_attrib
.emulate_tpws
)
474 if (cmd
->data_length
< (0x10 + 4)) {
475 pr_debug("Received data_length: %u"
476 " too small for EVPD 0xb0\n",
481 if (have_tp
&& cmd
->data_length
< (0x3c + 4)) {
482 pr_debug("Received data_length: %u"
483 " too small for TPE=1 EVPD 0xb0\n",
488 buf
[0] = dev
->transport
->get_device_type(dev
);
489 buf
[3] = have_tp
? 0x3c : 0x10;
495 * Set OPTIMAL TRANSFER LENGTH GRANULARITY
497 put_unaligned_be16(1, &buf
[6]);
500 * Set MAXIMUM TRANSFER LENGTH
502 put_unaligned_be32(dev
->se_sub_dev
->se_dev_attrib
.max_sectors
, &buf
[8]);
505 * Set OPTIMAL TRANSFER LENGTH
507 put_unaligned_be32(dev
->se_sub_dev
->se_dev_attrib
.optimal_sectors
, &buf
[12]);
510 * Exit now if we don't support TP or the initiator sent a too
513 if (!have_tp
|| cmd
->data_length
< (0x3c + 4))
517 * Set MAXIMUM UNMAP LBA COUNT
519 put_unaligned_be32(dev
->se_sub_dev
->se_dev_attrib
.max_unmap_lba_count
, &buf
[20]);
522 * Set MAXIMUM UNMAP BLOCK DESCRIPTOR COUNT
524 put_unaligned_be32(dev
->se_sub_dev
->se_dev_attrib
.max_unmap_block_desc_count
,
528 * Set OPTIMAL UNMAP GRANULARITY
530 put_unaligned_be32(dev
->se_sub_dev
->se_dev_attrib
.unmap_granularity
, &buf
[28]);
533 * UNMAP GRANULARITY ALIGNMENT
535 put_unaligned_be32(dev
->se_sub_dev
->se_dev_attrib
.unmap_granularity_alignment
,
537 if (dev
->se_sub_dev
->se_dev_attrib
.unmap_granularity_alignment
!= 0)
538 buf
[32] |= 0x80; /* Set the UGAVALID bit */
543 /* Block Device Characteristics VPD page */
545 target_emulate_evpd_b1(struct se_cmd
*cmd
, unsigned char *buf
)
547 struct se_device
*dev
= cmd
->se_dev
;
549 buf
[0] = dev
->transport
->get_device_type(dev
);
552 if (cmd
->data_length
>= 5 &&
553 dev
->se_sub_dev
->se_dev_attrib
.is_nonrot
)
559 /* Thin Provisioning VPD */
561 target_emulate_evpd_b2(struct se_cmd
*cmd
, unsigned char *buf
)
563 struct se_device
*dev
= cmd
->se_dev
;
566 * From sbc3r22 section 6.5.4 Thin Provisioning VPD page:
568 * The PAGE LENGTH field is defined in SPC-4. If the DP bit is set to
569 * zero, then the page length shall be set to 0004h. If the DP bit
570 * is set to one, then the page length shall be set to the value
571 * defined in table 162.
573 buf
[0] = dev
->transport
->get_device_type(dev
);
576 * Set Hardcoded length mentioned above for DP=0
578 put_unaligned_be16(0x0004, &buf
[2]);
581 * The THRESHOLD EXPONENT field indicates the threshold set size in
582 * LBAs as a power of 2 (i.e., the threshold set size is equal to
583 * 2(threshold exponent)).
585 * Note that this is currently set to 0x00 as mkp says it will be
586 * changing again. We can enable this once it has settled in T10
587 * and is actually used by Linux/SCSI ML code.
592 * A TPU bit set to one indicates that the device server supports
593 * the UNMAP command (see 5.25). A TPU bit set to zero indicates
594 * that the device server does not support the UNMAP command.
596 if (dev
->se_sub_dev
->se_dev_attrib
.emulate_tpu
!= 0)
600 * A TPWS bit set to one indicates that the device server supports
601 * the use of the WRITE SAME (16) command (see 5.42) to unmap LBAs.
602 * A TPWS bit set to zero indicates that the device server does not
603 * support the use of the WRITE SAME (16) command to unmap LBAs.
605 if (dev
->se_sub_dev
->se_dev_attrib
.emulate_tpws
!= 0)
612 target_emulate_evpd_00(struct se_cmd
*cmd
, unsigned char *buf
);
616 int (*emulate
)(struct se_cmd
*, unsigned char *);
617 } evpd_handlers
[] = {
618 { .page
= 0x00, .emulate
= target_emulate_evpd_00
},
619 { .page
= 0x80, .emulate
= target_emulate_evpd_80
},
620 { .page
= 0x83, .emulate
= target_emulate_evpd_83
},
621 { .page
= 0x86, .emulate
= target_emulate_evpd_86
},
622 { .page
= 0xb0, .emulate
= target_emulate_evpd_b0
},
623 { .page
= 0xb1, .emulate
= target_emulate_evpd_b1
},
624 { .page
= 0xb2, .emulate
= target_emulate_evpd_b2
},
627 /* supported vital product data pages */
629 target_emulate_evpd_00(struct se_cmd
*cmd
, unsigned char *buf
)
633 if (cmd
->data_length
< 8)
636 * Only report the INQUIRY EVPD=1 pages after a valid NAA
637 * Registered Extended LUN WWN has been set via ConfigFS
638 * during device creation/restart.
640 if (cmd
->se_dev
->se_sub_dev
->su_dev_flags
&
641 SDF_EMULATED_VPD_UNIT_SERIAL
) {
642 buf
[3] = ARRAY_SIZE(evpd_handlers
);
643 for (p
= 0; p
< min_t(int, ARRAY_SIZE(evpd_handlers
),
644 cmd
->data_length
- 4); ++p
)
645 buf
[p
+ 4] = evpd_handlers
[p
].page
;
652 target_emulate_inquiry(struct se_cmd
*cmd
)
654 struct se_device
*dev
= cmd
->se_dev
;
656 unsigned char *cdb
= cmd
->t_task_cdb
;
660 return target_emulate_inquiry_std(cmd
);
663 * Make sure we at least have 4 bytes of INQUIRY response
664 * payload for 0x00 going back for EVPD=1. Note that 0x80
665 * and 0x83 will check for enough payload data length and
666 * jump to set_len: label when there is not enough inquiry EVPD
667 * payload length left for the next outgoing EVPD metadata
669 if (cmd
->data_length
< 4) {
670 pr_err("SCSI Inquiry payload length: %u"
671 " too small for EVPD=1\n", cmd
->data_length
);
675 buf
= transport_kmap_first_data_page(cmd
);
677 buf
[0] = dev
->transport
->get_device_type(dev
);
679 for (p
= 0; p
< ARRAY_SIZE(evpd_handlers
); ++p
)
680 if (cdb
[2] == evpd_handlers
[p
].page
) {
682 ret
= evpd_handlers
[p
].emulate(cmd
, buf
);
683 transport_kunmap_first_data_page(cmd
);
687 transport_kunmap_first_data_page(cmd
);
688 pr_err("Unknown VPD Code: 0x%02x\n", cdb
[2]);
693 target_emulate_readcapacity(struct se_cmd
*cmd
)
695 struct se_device
*dev
= cmd
->se_dev
;
697 unsigned long long blocks_long
= dev
->transport
->get_blocks(dev
);
700 if (blocks_long
>= 0x00000000ffffffff)
703 blocks
= (u32
)blocks_long
;
705 buf
= transport_kmap_first_data_page(cmd
);
707 buf
[0] = (blocks
>> 24) & 0xff;
708 buf
[1] = (blocks
>> 16) & 0xff;
709 buf
[2] = (blocks
>> 8) & 0xff;
710 buf
[3] = blocks
& 0xff;
711 buf
[4] = (dev
->se_sub_dev
->se_dev_attrib
.block_size
>> 24) & 0xff;
712 buf
[5] = (dev
->se_sub_dev
->se_dev_attrib
.block_size
>> 16) & 0xff;
713 buf
[6] = (dev
->se_sub_dev
->se_dev_attrib
.block_size
>> 8) & 0xff;
714 buf
[7] = dev
->se_sub_dev
->se_dev_attrib
.block_size
& 0xff;
716 * Set max 32-bit blocks to signal SERVICE ACTION READ_CAPACITY_16
718 if (dev
->se_sub_dev
->se_dev_attrib
.emulate_tpu
|| dev
->se_sub_dev
->se_dev_attrib
.emulate_tpws
)
719 put_unaligned_be32(0xFFFFFFFF, &buf
[0]);
721 transport_kunmap_first_data_page(cmd
);
727 target_emulate_readcapacity_16(struct se_cmd
*cmd
)
729 struct se_device
*dev
= cmd
->se_dev
;
731 unsigned long long blocks
= dev
->transport
->get_blocks(dev
);
733 buf
= transport_kmap_first_data_page(cmd
);
735 buf
[0] = (blocks
>> 56) & 0xff;
736 buf
[1] = (blocks
>> 48) & 0xff;
737 buf
[2] = (blocks
>> 40) & 0xff;
738 buf
[3] = (blocks
>> 32) & 0xff;
739 buf
[4] = (blocks
>> 24) & 0xff;
740 buf
[5] = (blocks
>> 16) & 0xff;
741 buf
[6] = (blocks
>> 8) & 0xff;
742 buf
[7] = blocks
& 0xff;
743 buf
[8] = (dev
->se_sub_dev
->se_dev_attrib
.block_size
>> 24) & 0xff;
744 buf
[9] = (dev
->se_sub_dev
->se_dev_attrib
.block_size
>> 16) & 0xff;
745 buf
[10] = (dev
->se_sub_dev
->se_dev_attrib
.block_size
>> 8) & 0xff;
746 buf
[11] = dev
->se_sub_dev
->se_dev_attrib
.block_size
& 0xff;
748 * Set Thin Provisioning Enable bit following sbc3r22 in section
749 * READ CAPACITY (16) byte 14 if emulate_tpu or emulate_tpws is enabled.
751 if (dev
->se_sub_dev
->se_dev_attrib
.emulate_tpu
|| dev
->se_sub_dev
->se_dev_attrib
.emulate_tpws
)
754 transport_kunmap_first_data_page(cmd
);
760 target_modesense_rwrecovery(unsigned char *p
)
769 target_modesense_control(struct se_device
*dev
, unsigned char *p
)
775 * From spc4r23, 7.4.7 Control mode page
777 * The QUEUE ALGORITHM MODIFIER field (see table 368) specifies
778 * restrictions on the algorithm used for reordering commands
779 * having the SIMPLE task attribute (see SAM-4).
781 * Table 368 -- QUEUE ALGORITHM MODIFIER field
783 * 0h Restricted reordering
784 * 1h Unrestricted reordering allowed
786 * 8h to Fh Vendor specific
788 * A value of zero in the QUEUE ALGORITHM MODIFIER field specifies that
789 * the device server shall order the processing sequence of commands
790 * having the SIMPLE task attribute such that data integrity is maintained
791 * for that I_T nexus (i.e., if the transmission of new SCSI transport protocol
792 * requests is halted at any time, the final value of all data observable
793 * on the medium shall be the same as if all the commands had been processed
794 * with the ORDERED task attribute).
796 * A value of one in the QUEUE ALGORITHM MODIFIER field specifies that the
797 * device server may reorder the processing sequence of commands having the
798 * SIMPLE task attribute in any manner. Any data integrity exposures related to
799 * command sequence order shall be explicitly handled by the application client
800 * through the selection of appropriate ommands and task attributes.
802 p
[3] = (dev
->se_sub_dev
->se_dev_attrib
.emulate_rest_reord
== 1) ? 0x00 : 0x10;
804 * From spc4r17, section 7.4.6 Control mode Page
806 * Unit Attention interlocks control (UN_INTLCK_CTRL) to code 00b
808 * 00b: The logical unit shall clear any unit attention condition
809 * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
810 * status and shall not establish a unit attention condition when a com-
811 * mand is completed with BUSY, TASK SET FULL, or RESERVATION CONFLICT
814 * 10b: The logical unit shall not clear any unit attention condition
815 * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
816 * status and shall not establish a unit attention condition when
817 * a command is completed with BUSY, TASK SET FULL, or RESERVATION
820 * 11b a The logical unit shall not clear any unit attention condition
821 * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
822 * status and shall establish a unit attention condition for the
823 * initiator port associated with the I_T nexus on which the BUSY,
824 * TASK SET FULL, or RESERVATION CONFLICT status is being returned.
825 * Depending on the status, the additional sense code shall be set to
826 * PREVIOUS BUSY STATUS, PREVIOUS TASK SET FULL STATUS, or PREVIOUS
827 * RESERVATION CONFLICT STATUS. Until it is cleared by a REQUEST SENSE
828 * command, a unit attention condition shall be established only once
829 * for a BUSY, TASK SET FULL, or RESERVATION CONFLICT status regardless
830 * to the number of commands completed with one of those status codes.
832 p
[4] = (dev
->se_sub_dev
->se_dev_attrib
.emulate_ua_intlck_ctrl
== 2) ? 0x30 :
833 (dev
->se_sub_dev
->se_dev_attrib
.emulate_ua_intlck_ctrl
== 1) ? 0x20 : 0x00;
835 * From spc4r17, section 7.4.6 Control mode Page
837 * Task Aborted Status (TAS) bit set to zero.
839 * A task aborted status (TAS) bit set to zero specifies that aborted
840 * tasks shall be terminated by the device server without any response
841 * to the application client. A TAS bit set to one specifies that tasks
842 * aborted by the actions of an I_T nexus other than the I_T nexus on
843 * which the command was received shall be completed with TASK ABORTED
844 * status (see SAM-4).
846 p
[5] = (dev
->se_sub_dev
->se_dev_attrib
.emulate_tas
) ? 0x40 : 0x00;
855 target_modesense_caching(struct se_device
*dev
, unsigned char *p
)
859 if (dev
->se_sub_dev
->se_dev_attrib
.emulate_write_cache
> 0)
860 p
[2] = 0x04; /* Write Cache Enable */
861 p
[12] = 0x20; /* Disabled Read Ahead */
867 target_modesense_write_protect(unsigned char *buf
, int type
)
870 * I believe that the WP bit (bit 7) in the mode header is the same for
877 buf
[0] |= 0x80; /* WP bit */
883 target_modesense_dpofua(unsigned char *buf
, int type
)
887 buf
[0] |= 0x10; /* DPOFUA bit */
895 target_emulate_modesense(struct se_cmd
*cmd
, int ten
)
897 struct se_device
*dev
= cmd
->se_dev
;
898 char *cdb
= cmd
->t_task_cdb
;
900 int type
= dev
->transport
->get_device_type(dev
);
901 int offset
= (ten
) ? 8 : 4;
903 unsigned char buf
[SE_MODE_PAGE_BUF
];
905 memset(buf
, 0, SE_MODE_PAGE_BUF
);
907 switch (cdb
[2] & 0x3f) {
909 length
= target_modesense_rwrecovery(&buf
[offset
]);
912 length
= target_modesense_caching(dev
, &buf
[offset
]);
915 length
= target_modesense_control(dev
, &buf
[offset
]);
918 length
= target_modesense_rwrecovery(&buf
[offset
]);
919 length
+= target_modesense_caching(dev
, &buf
[offset
+length
]);
920 length
+= target_modesense_control(dev
, &buf
[offset
+length
]);
923 pr_err("MODE SENSE: unimplemented page/subpage: 0x%02x/0x%02x\n",
924 cdb
[2] & 0x3f, cdb
[3]);
925 return PYX_TRANSPORT_UNKNOWN_MODE_PAGE
;
931 buf
[0] = (offset
>> 8) & 0xff;
932 buf
[1] = offset
& 0xff;
934 if ((cmd
->se_lun
->lun_access
& TRANSPORT_LUNFLAGS_READ_ONLY
) ||
936 (cmd
->se_deve
->lun_flags
& TRANSPORT_LUNFLAGS_READ_ONLY
)))
937 target_modesense_write_protect(&buf
[3], type
);
939 if ((dev
->se_sub_dev
->se_dev_attrib
.emulate_write_cache
> 0) &&
940 (dev
->se_sub_dev
->se_dev_attrib
.emulate_fua_write
> 0))
941 target_modesense_dpofua(&buf
[3], type
);
943 if ((offset
+ 2) > cmd
->data_length
)
944 offset
= cmd
->data_length
;
948 buf
[0] = offset
& 0xff;
950 if ((cmd
->se_lun
->lun_access
& TRANSPORT_LUNFLAGS_READ_ONLY
) ||
952 (cmd
->se_deve
->lun_flags
& TRANSPORT_LUNFLAGS_READ_ONLY
)))
953 target_modesense_write_protect(&buf
[2], type
);
955 if ((dev
->se_sub_dev
->se_dev_attrib
.emulate_write_cache
> 0) &&
956 (dev
->se_sub_dev
->se_dev_attrib
.emulate_fua_write
> 0))
957 target_modesense_dpofua(&buf
[2], type
);
959 if ((offset
+ 1) > cmd
->data_length
)
960 offset
= cmd
->data_length
;
963 rbuf
= transport_kmap_first_data_page(cmd
);
964 memcpy(rbuf
, buf
, offset
);
965 transport_kunmap_first_data_page(cmd
);
971 target_emulate_request_sense(struct se_cmd
*cmd
)
973 unsigned char *cdb
= cmd
->t_task_cdb
;
975 u8 ua_asc
= 0, ua_ascq
= 0;
979 pr_err("REQUEST_SENSE description emulation not"
981 return PYX_TRANSPORT_INVALID_CDB_FIELD
;
984 buf
= transport_kmap_first_data_page(cmd
);
986 if (!core_scsi3_ua_clear_for_request_sense(cmd
, &ua_asc
, &ua_ascq
)) {
988 * CURRENT ERROR, UNIT ATTENTION
991 buf
[SPC_SENSE_KEY_OFFSET
] = UNIT_ATTENTION
;
993 * Make sure request data length is enough for additional
996 if (cmd
->data_length
<= 18) {
1002 * The Additional Sense Code (ASC) from the UNIT ATTENTION
1004 buf
[SPC_ASC_KEY_OFFSET
] = ua_asc
;
1005 buf
[SPC_ASCQ_KEY_OFFSET
] = ua_ascq
;
1009 * CURRENT ERROR, NO SENSE
1012 buf
[SPC_SENSE_KEY_OFFSET
] = NO_SENSE
;
1014 * Make sure request data length is enough for additional
1017 if (cmd
->data_length
<= 18) {
1023 * NO ADDITIONAL SENSE INFORMATION
1025 buf
[SPC_ASC_KEY_OFFSET
] = 0x00;
1030 transport_kunmap_first_data_page(cmd
);
1036 * Used for TCM/IBLOCK and TCM/FILEIO for block/blk-lib.c level discard support.
1037 * Note this is not used for TCM/pSCSI passthrough
1040 target_emulate_unmap(struct se_task
*task
)
1042 struct se_cmd
*cmd
= task
->task_se_cmd
;
1043 struct se_device
*dev
= cmd
->se_dev
;
1044 unsigned char *buf
, *ptr
= NULL
;
1045 unsigned char *cdb
= &cmd
->t_task_cdb
[0];
1047 unsigned int size
= cmd
->data_length
, range
;
1048 int ret
= 0, offset
;
1049 unsigned short dl
, bd_dl
;
1051 /* First UNMAP block descriptor starts at 8 byte offset */
1054 dl
= get_unaligned_be16(&cdb
[0]);
1055 bd_dl
= get_unaligned_be16(&cdb
[2]);
1057 buf
= transport_kmap_first_data_page(cmd
);
1060 pr_debug("UNMAP: Sub: %s Using dl: %hu bd_dl: %hu size: %hu"
1061 " ptr: %p\n", dev
->transport
->name
, dl
, bd_dl
, size
, ptr
);
1064 lba
= get_unaligned_be64(&ptr
[0]);
1065 range
= get_unaligned_be32(&ptr
[8]);
1066 pr_debug("UNMAP: Using lba: %llu and range: %u\n",
1067 (unsigned long long)lba
, range
);
1069 ret
= dev
->transport
->do_discard(dev
, lba
, range
);
1071 pr_err("blkdev_issue_discard() failed: %d\n",
1081 transport_kunmap_first_data_page(cmd
);
1087 * Used for TCM/IBLOCK and TCM/FILEIO for block/blk-lib.c level discard support.
1088 * Note this is not used for TCM/pSCSI passthrough
1091 target_emulate_write_same(struct se_task
*task
, u32 num_blocks
)
1093 struct se_cmd
*cmd
= task
->task_se_cmd
;
1094 struct se_device
*dev
= cmd
->se_dev
;
1096 sector_t lba
= cmd
->t_task_lba
;
1099 * Use the explicit range when non zero is supplied, otherwise calculate
1100 * the remaining range based on ->get_blocks() - starting LBA.
1102 if (num_blocks
!= 0)
1105 range
= (dev
->transport
->get_blocks(dev
) - lba
);
1107 pr_debug("WRITE_SAME UNMAP: LBA: %llu Range: %llu\n",
1108 (unsigned long long)lba
, (unsigned long long)range
);
1110 ret
= dev
->transport
->do_discard(dev
, lba
, range
);
1112 pr_debug("blkdev_issue_discard() failed for WRITE_SAME\n");
1120 transport_emulate_control_cdb(struct se_task
*task
)
1122 struct se_cmd
*cmd
= task
->task_se_cmd
;
1123 struct se_device
*dev
= cmd
->se_dev
;
1124 unsigned short service_action
;
1127 switch (cmd
->t_task_cdb
[0]) {
1129 ret
= target_emulate_inquiry(cmd
);
1132 ret
= target_emulate_readcapacity(cmd
);
1135 ret
= target_emulate_modesense(cmd
, 0);
1138 ret
= target_emulate_modesense(cmd
, 1);
1140 case SERVICE_ACTION_IN
:
1141 switch (cmd
->t_task_cdb
[1] & 0x1f) {
1142 case SAI_READ_CAPACITY_16
:
1143 ret
= target_emulate_readcapacity_16(cmd
);
1146 pr_err("Unsupported SA: 0x%02x\n",
1147 cmd
->t_task_cdb
[1] & 0x1f);
1148 return PYX_TRANSPORT_UNKNOWN_SAM_OPCODE
;
1152 ret
= target_emulate_request_sense(cmd
);
1155 if (!dev
->transport
->do_discard
) {
1156 pr_err("UNMAP emulation not supported for: %s\n",
1157 dev
->transport
->name
);
1158 return PYX_TRANSPORT_UNKNOWN_SAM_OPCODE
;
1160 ret
= target_emulate_unmap(task
);
1163 if (!dev
->transport
->do_discard
) {
1164 pr_err("WRITE_SAME emulation not supported"
1165 " for: %s\n", dev
->transport
->name
);
1166 return PYX_TRANSPORT_UNKNOWN_SAM_OPCODE
;
1168 ret
= target_emulate_write_same(task
,
1169 get_unaligned_be16(&cmd
->t_task_cdb
[7]));
1172 if (!dev
->transport
->do_discard
) {
1173 pr_err("WRITE_SAME_16 emulation not supported"
1174 " for: %s\n", dev
->transport
->name
);
1175 return PYX_TRANSPORT_UNKNOWN_SAM_OPCODE
;
1177 ret
= target_emulate_write_same(task
,
1178 get_unaligned_be32(&cmd
->t_task_cdb
[10]));
1180 case VARIABLE_LENGTH_CMD
:
1182 get_unaligned_be16(&cmd
->t_task_cdb
[8]);
1183 switch (service_action
) {
1185 if (!dev
->transport
->do_discard
) {
1186 pr_err("WRITE_SAME_32 SA emulation not"
1187 " supported for: %s\n",
1188 dev
->transport
->name
);
1189 return PYX_TRANSPORT_UNKNOWN_SAM_OPCODE
;
1191 ret
= target_emulate_write_same(task
,
1192 get_unaligned_be32(&cmd
->t_task_cdb
[28]));
1195 pr_err("Unsupported VARIABLE_LENGTH_CMD SA:"
1196 " 0x%02x\n", service_action
);
1200 case SYNCHRONIZE_CACHE
:
1201 case 0x91: /* SYNCHRONIZE_CACHE_16: */
1202 if (!dev
->transport
->do_sync_cache
) {
1203 pr_err("SYNCHRONIZE_CACHE emulation not supported"
1204 " for: %s\n", dev
->transport
->name
);
1205 return PYX_TRANSPORT_UNKNOWN_SAM_OPCODE
;
1207 dev
->transport
->do_sync_cache(task
);
1209 case ALLOW_MEDIUM_REMOVAL
:
1215 case TEST_UNIT_READY
:
1217 case WRITE_FILEMARKS
:
1220 pr_err("Unsupported SCSI Opcode: 0x%02x for %s\n",
1221 cmd
->t_task_cdb
[0], dev
->transport
->name
);
1222 return PYX_TRANSPORT_UNKNOWN_SAM_OPCODE
;
1228 * Handle the successful completion here unless a caller
1229 * has explictly requested an asychronous completion.
1231 if (!(cmd
->se_cmd_flags
& SCF_EMULATE_CDB_ASYNC
)) {
1232 task
->task_scsi_status
= GOOD
;
1233 transport_complete_task(task
, 1);
1236 return PYX_TRANSPORT_SENT_TO_TRANSPORT
;