1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*******************************************************************************
3 * Filename: target_core_xcopy.c
5 * This file contains support for SPC-4 Extended-Copy offload with generic
8 * Copyright (c) 2011-2013 Datera, Inc. All rights reserved.
11 * Nicholas A. Bellinger <nab@daterainc.com>
13 ******************************************************************************/
15 #include <linux/slab.h>
16 #include <linux/spinlock.h>
17 #include <linux/list.h>
18 #include <linux/configfs.h>
19 #include <linux/ratelimit.h>
20 #include <scsi/scsi_proto.h>
21 #include <asm/unaligned.h>
23 #include <target/target_core_base.h>
24 #include <target/target_core_backend.h>
25 #include <target/target_core_fabric.h>
27 #include "target_core_internal.h"
28 #include "target_core_pr.h"
29 #include "target_core_ua.h"
30 #include "target_core_xcopy.h"
32 static struct workqueue_struct
*xcopy_wq
= NULL
;
34 static sense_reason_t
target_parse_xcopy_cmd(struct xcopy_op
*xop
);
36 static int target_xcopy_gen_naa_ieee(struct se_device
*dev
, unsigned char *buf
)
40 buf
[off
++] = (0x6 << 4);
43 buf
[off
] = (0x5 << 4);
45 spc_parse_naa_6h_vendor_specific(dev
, &buf
[off
]);
50 * target_xcopy_locate_se_dev_e4_iter - compare XCOPY NAA device identifiers
52 * @se_dev: device being considered for match
53 * @dev_wwn: XCOPY requested NAA dev_wwn
54 * @return: 1 on match, 0 on no-match
56 static int target_xcopy_locate_se_dev_e4_iter(struct se_device
*se_dev
,
57 const unsigned char *dev_wwn
)
59 unsigned char tmp_dev_wwn
[XCOPY_NAA_IEEE_REGEX_LEN
];
62 if (!se_dev
->dev_attrib
.emulate_3pc
) {
63 pr_debug("XCOPY: emulate_3pc disabled on se_dev %p\n", se_dev
);
67 memset(&tmp_dev_wwn
[0], 0, XCOPY_NAA_IEEE_REGEX_LEN
);
68 target_xcopy_gen_naa_ieee(se_dev
, &tmp_dev_wwn
[0]);
70 rc
= memcmp(&tmp_dev_wwn
[0], dev_wwn
, XCOPY_NAA_IEEE_REGEX_LEN
);
72 pr_debug("XCOPY: skip non-matching: %*ph\n",
73 XCOPY_NAA_IEEE_REGEX_LEN
, tmp_dev_wwn
);
76 pr_debug("XCOPY 0xe4: located se_dev: %p\n", se_dev
);
81 static int target_xcopy_locate_se_dev_e4(struct se_session
*sess
,
82 const unsigned char *dev_wwn
,
83 struct se_device
**_found_dev
,
84 struct percpu_ref
**_found_lun_ref
)
86 struct se_dev_entry
*deve
;
87 struct se_node_acl
*nacl
;
88 struct se_lun
*this_lun
= NULL
;
89 struct se_device
*found_dev
= NULL
;
91 /* cmd with NULL sess indicates no associated $FABRIC_MOD */
95 pr_debug("XCOPY 0xe4: searching for: %*ph\n",
96 XCOPY_NAA_IEEE_REGEX_LEN
, dev_wwn
);
98 nacl
= sess
->se_node_acl
;
100 hlist_for_each_entry_rcu(deve
, &nacl
->lun_entry_hlist
, link
) {
101 struct se_device
*this_dev
;
104 this_lun
= rcu_dereference(deve
->se_lun
);
105 this_dev
= rcu_dereference_raw(this_lun
->lun_se_dev
);
107 rc
= target_xcopy_locate_se_dev_e4_iter(this_dev
, dev_wwn
);
109 if (percpu_ref_tryget_live(&this_lun
->lun_ref
))
110 found_dev
= this_dev
;
115 if (found_dev
== NULL
)
118 pr_debug("lun_ref held for se_dev: %p se_dev->se_dev_group: %p\n",
119 found_dev
, &found_dev
->dev_group
);
120 *_found_dev
= found_dev
;
121 *_found_lun_ref
= &this_lun
->lun_ref
;
124 pr_debug_ratelimited("Unable to locate 0xe4 descriptor for EXTENDED_COPY\n");
128 static int target_xcopy_parse_tiddesc_e4(struct se_cmd
*se_cmd
, struct xcopy_op
*xop
,
129 unsigned char *p
, unsigned short cscd_index
)
131 unsigned char *desc
= p
;
135 * Extract RELATIVE INITIATOR PORT IDENTIFIER
137 ript
= get_unaligned_be16(&desc
[2]);
138 pr_debug("XCOPY 0xe4: RELATIVE INITIATOR PORT IDENTIFIER: %hu\n", ript
);
140 * Check for supported code set, association, and designator type
142 if ((desc
[4] & 0x0f) != 0x1) {
143 pr_err("XCOPY 0xe4: code set of non binary type not supported\n");
146 if ((desc
[5] & 0x30) != 0x00) {
147 pr_err("XCOPY 0xe4: association other than LUN not supported\n");
150 if ((desc
[5] & 0x0f) != 0x3) {
151 pr_err("XCOPY 0xe4: designator type unsupported: 0x%02x\n",
156 * Check for matching 16 byte length for NAA IEEE Registered Extended
157 * Assigned designator
160 if (desig_len
!= XCOPY_NAA_IEEE_REGEX_LEN
) {
161 pr_err("XCOPY 0xe4: invalid desig_len: %d\n", (int)desig_len
);
164 pr_debug("XCOPY 0xe4: desig_len: %d\n", (int)desig_len
);
166 * Check for NAA IEEE Registered Extended Assigned header..
168 if ((desc
[8] & 0xf0) != 0x60) {
169 pr_err("XCOPY 0xe4: Unsupported DESIGNATOR TYPE: 0x%02x\n",
174 if (cscd_index
!= xop
->stdi
&& cscd_index
!= xop
->dtdi
) {
175 pr_debug("XCOPY 0xe4: ignoring CSCD entry %d - neither src nor "
176 "dest\n", cscd_index
);
180 if (cscd_index
== xop
->stdi
) {
181 memcpy(&xop
->src_tid_wwn
[0], &desc
[8], XCOPY_NAA_IEEE_REGEX_LEN
);
183 * Determine if the source designator matches the local device
185 if (!memcmp(&xop
->local_dev_wwn
[0], &xop
->src_tid_wwn
[0],
186 XCOPY_NAA_IEEE_REGEX_LEN
)) {
187 xop
->op_origin
= XCOL_SOURCE_RECV_OP
;
188 xop
->src_dev
= se_cmd
->se_dev
;
189 pr_debug("XCOPY 0xe4: Set xop->src_dev %p from source"
190 " received xop\n", xop
->src_dev
);
194 if (cscd_index
== xop
->dtdi
) {
195 memcpy(&xop
->dst_tid_wwn
[0], &desc
[8], XCOPY_NAA_IEEE_REGEX_LEN
);
197 * Determine if the destination designator matches the local
198 * device. If @cscd_index corresponds to both source (stdi) and
199 * destination (dtdi), or dtdi comes after stdi, then
200 * XCOL_DEST_RECV_OP wins.
202 if (!memcmp(&xop
->local_dev_wwn
[0], &xop
->dst_tid_wwn
[0],
203 XCOPY_NAA_IEEE_REGEX_LEN
)) {
204 xop
->op_origin
= XCOL_DEST_RECV_OP
;
205 xop
->dst_dev
= se_cmd
->se_dev
;
206 pr_debug("XCOPY 0xe4: Set xop->dst_dev: %p from destination"
207 " received xop\n", xop
->dst_dev
);
214 static int target_xcopy_parse_target_descriptors(struct se_cmd
*se_cmd
,
215 struct xcopy_op
*xop
, unsigned char *p
,
216 unsigned short tdll
, sense_reason_t
*sense_ret
)
218 struct se_device
*local_dev
= se_cmd
->se_dev
;
219 unsigned char *desc
= p
;
220 int offset
= tdll
% XCOPY_TARGET_DESC_LEN
, rc
;
221 unsigned short cscd_index
= 0;
222 unsigned short start
= 0;
224 *sense_ret
= TCM_INVALID_PARAMETER_LIST
;
227 pr_err("XCOPY target descriptor list length is not"
228 " multiple of %d\n", XCOPY_TARGET_DESC_LEN
);
229 *sense_ret
= TCM_UNSUPPORTED_TARGET_DESC_TYPE_CODE
;
232 if (tdll
> RCR_OP_MAX_TARGET_DESC_COUNT
* XCOPY_TARGET_DESC_LEN
) {
233 pr_err("XCOPY target descriptor supports a maximum"
234 " two src/dest descriptors, tdll: %hu too large..\n", tdll
);
235 /* spc4r37 6.4.3.4 CSCD DESCRIPTOR LIST LENGTH field */
236 *sense_ret
= TCM_TOO_MANY_TARGET_DESCS
;
240 * Generate an IEEE Registered Extended designator based upon the
241 * se_device the XCOPY was received upon..
243 memset(&xop
->local_dev_wwn
[0], 0, XCOPY_NAA_IEEE_REGEX_LEN
);
244 target_xcopy_gen_naa_ieee(local_dev
, &xop
->local_dev_wwn
[0]);
246 while (start
< tdll
) {
248 * Check target descriptor identification with 0xE4 type, and
249 * compare the current index with the CSCD descriptor IDs in
250 * the segment descriptor. Use VPD 0x83 WWPN matching ..
254 rc
= target_xcopy_parse_tiddesc_e4(se_cmd
, xop
,
255 &desc
[0], cscd_index
);
258 start
+= XCOPY_TARGET_DESC_LEN
;
259 desc
+= XCOPY_TARGET_DESC_LEN
;
263 pr_err("XCOPY unsupported descriptor type code:"
264 " 0x%02x\n", desc
[0]);
265 *sense_ret
= TCM_UNSUPPORTED_TARGET_DESC_TYPE_CODE
;
270 switch (xop
->op_origin
) {
271 case XCOL_SOURCE_RECV_OP
:
272 rc
= target_xcopy_locate_se_dev_e4(se_cmd
->se_sess
,
275 &xop
->remote_lun_ref
);
277 case XCOL_DEST_RECV_OP
:
278 rc
= target_xcopy_locate_se_dev_e4(se_cmd
->se_sess
,
281 &xop
->remote_lun_ref
);
284 pr_err("XCOPY CSCD descriptor IDs not found in CSCD list - "
285 "stdi: %hu dtdi: %hu\n", xop
->stdi
, xop
->dtdi
);
290 * If a matching IEEE NAA 0x83 descriptor for the requested device
291 * is not located on this node, return COPY_ABORTED with ASQ/ASQC
292 * 0x0d/0x02 - COPY_TARGET_DEVICE_NOT_REACHABLE to request the
293 * initiator to fall back to normal copy method.
296 *sense_ret
= TCM_COPY_TARGET_DEVICE_NOT_REACHABLE
;
300 pr_debug("XCOPY TGT desc: Source dev: %p NAA IEEE WWN: 0x%16phN\n",
301 xop
->src_dev
, &xop
->src_tid_wwn
[0]);
302 pr_debug("XCOPY TGT desc: Dest dev: %p NAA IEEE WWN: 0x%16phN\n",
303 xop
->dst_dev
, &xop
->dst_tid_wwn
[0]);
311 static int target_xcopy_parse_segdesc_02(struct se_cmd
*se_cmd
, struct xcopy_op
*xop
,
314 unsigned char *desc
= p
;
315 int dc
= (desc
[1] & 0x02);
316 unsigned short desc_len
;
318 desc_len
= get_unaligned_be16(&desc
[2]);
319 if (desc_len
!= 0x18) {
320 pr_err("XCOPY segment desc 0x02: Illegal desc_len:"
325 xop
->stdi
= get_unaligned_be16(&desc
[4]);
326 xop
->dtdi
= get_unaligned_be16(&desc
[6]);
328 if (xop
->stdi
> XCOPY_CSCD_DESC_ID_LIST_OFF_MAX
||
329 xop
->dtdi
> XCOPY_CSCD_DESC_ID_LIST_OFF_MAX
) {
330 pr_err("XCOPY segment desc 0x02: unsupported CSCD ID > 0x%x; stdi: %hu dtdi: %hu\n",
331 XCOPY_CSCD_DESC_ID_LIST_OFF_MAX
, xop
->stdi
, xop
->dtdi
);
335 pr_debug("XCOPY seg desc 0x02: desc_len: %hu stdi: %hu dtdi: %hu, DC: %d\n",
336 desc_len
, xop
->stdi
, xop
->dtdi
, dc
);
338 xop
->nolb
= get_unaligned_be16(&desc
[10]);
339 xop
->src_lba
= get_unaligned_be64(&desc
[12]);
340 xop
->dst_lba
= get_unaligned_be64(&desc
[20]);
341 pr_debug("XCOPY seg desc 0x02: nolb: %hu src_lba: %llu dst_lba: %llu\n",
342 xop
->nolb
, (unsigned long long)xop
->src_lba
,
343 (unsigned long long)xop
->dst_lba
);
348 static int target_xcopy_parse_segment_descriptors(struct se_cmd
*se_cmd
,
349 struct xcopy_op
*xop
, unsigned char *p
,
350 unsigned int sdll
, sense_reason_t
*sense_ret
)
352 unsigned char *desc
= p
;
353 unsigned int start
= 0;
354 int offset
= sdll
% XCOPY_SEGMENT_DESC_LEN
, rc
, ret
= 0;
356 *sense_ret
= TCM_INVALID_PARAMETER_LIST
;
359 pr_err("XCOPY segment descriptor list length is not"
360 " multiple of %d\n", XCOPY_SEGMENT_DESC_LEN
);
361 *sense_ret
= TCM_UNSUPPORTED_SEGMENT_DESC_TYPE_CODE
;
364 if (sdll
> RCR_OP_MAX_SG_DESC_COUNT
* XCOPY_SEGMENT_DESC_LEN
) {
365 pr_err("XCOPY supports %u segment descriptor(s), sdll: %u too"
366 " large..\n", RCR_OP_MAX_SG_DESC_COUNT
, sdll
);
367 /* spc4r37 6.4.3.5 SEGMENT DESCRIPTOR LIST LENGTH field */
368 *sense_ret
= TCM_TOO_MANY_SEGMENT_DESCS
;
372 while (start
< sdll
) {
374 * Check segment descriptor type code for block -> block
378 rc
= target_xcopy_parse_segdesc_02(se_cmd
, xop
, desc
);
383 start
+= XCOPY_SEGMENT_DESC_LEN
;
384 desc
+= XCOPY_SEGMENT_DESC_LEN
;
387 pr_err("XCOPY unsupported segment descriptor"
388 "type: 0x%02x\n", desc
[0]);
389 *sense_ret
= TCM_UNSUPPORTED_SEGMENT_DESC_TYPE_CODE
;
404 struct xcopy_pt_cmd
{
405 struct se_cmd se_cmd
;
406 struct completion xpt_passthrough_sem
;
407 unsigned char sense_buffer
[TRANSPORT_SENSE_BUFFER
];
410 struct se_portal_group xcopy_pt_tpg
;
411 static struct se_session xcopy_pt_sess
;
412 static struct se_node_acl xcopy_pt_nacl
;
414 static int xcopy_pt_get_cmd_state(struct se_cmd
*se_cmd
)
419 static void xcopy_pt_undepend_remotedev(struct xcopy_op
*xop
)
421 if (xop
->op_origin
== XCOL_SOURCE_RECV_OP
)
422 pr_debug("putting dst lun_ref for %p\n", xop
->dst_dev
);
424 pr_debug("putting src lun_ref for %p\n", xop
->src_dev
);
426 percpu_ref_put(xop
->remote_lun_ref
);
429 static void xcopy_pt_release_cmd(struct se_cmd
*se_cmd
)
431 struct xcopy_pt_cmd
*xpt_cmd
= container_of(se_cmd
,
432 struct xcopy_pt_cmd
, se_cmd
);
434 /* xpt_cmd is on the stack, nothing to free here */
435 pr_debug("xpt_cmd done: %p\n", xpt_cmd
);
438 static int xcopy_pt_check_stop_free(struct se_cmd
*se_cmd
)
440 struct xcopy_pt_cmd
*xpt_cmd
= container_of(se_cmd
,
441 struct xcopy_pt_cmd
, se_cmd
);
443 complete(&xpt_cmd
->xpt_passthrough_sem
);
447 static int xcopy_pt_write_pending(struct se_cmd
*se_cmd
)
452 static int xcopy_pt_queue_data_in(struct se_cmd
*se_cmd
)
457 static int xcopy_pt_queue_status(struct se_cmd
*se_cmd
)
462 static const struct target_core_fabric_ops xcopy_pt_tfo
= {
463 .fabric_name
= "xcopy-pt",
464 .get_cmd_state
= xcopy_pt_get_cmd_state
,
465 .release_cmd
= xcopy_pt_release_cmd
,
466 .check_stop_free
= xcopy_pt_check_stop_free
,
467 .write_pending
= xcopy_pt_write_pending
,
468 .queue_data_in
= xcopy_pt_queue_data_in
,
469 .queue_status
= xcopy_pt_queue_status
,
476 int target_xcopy_setup_pt(void)
480 xcopy_wq
= alloc_workqueue("xcopy_wq", WQ_MEM_RECLAIM
, 0);
482 pr_err("Unable to allocate xcopy_wq\n");
486 memset(&xcopy_pt_tpg
, 0, sizeof(struct se_portal_group
));
487 INIT_LIST_HEAD(&xcopy_pt_tpg
.acl_node_list
);
488 INIT_LIST_HEAD(&xcopy_pt_tpg
.tpg_sess_list
);
490 xcopy_pt_tpg
.se_tpg_tfo
= &xcopy_pt_tfo
;
492 memset(&xcopy_pt_nacl
, 0, sizeof(struct se_node_acl
));
493 INIT_LIST_HEAD(&xcopy_pt_nacl
.acl_list
);
494 INIT_LIST_HEAD(&xcopy_pt_nacl
.acl_sess_list
);
495 memset(&xcopy_pt_sess
, 0, sizeof(struct se_session
));
496 ret
= transport_init_session(&xcopy_pt_sess
);
500 xcopy_pt_nacl
.se_tpg
= &xcopy_pt_tpg
;
501 xcopy_pt_nacl
.nacl_sess
= &xcopy_pt_sess
;
503 xcopy_pt_sess
.se_tpg
= &xcopy_pt_tpg
;
504 xcopy_pt_sess
.se_node_acl
= &xcopy_pt_nacl
;
509 destroy_workqueue(xcopy_wq
);
514 void target_xcopy_release_pt(void)
517 destroy_workqueue(xcopy_wq
);
518 transport_uninit_session(&xcopy_pt_sess
);
523 * target_xcopy_setup_pt_cmd - set up a pass-through command
524 * @xpt_cmd: Data structure to initialize.
525 * @xop: Describes the XCOPY operation received from an initiator.
526 * @se_dev: Backend device to associate with @xpt_cmd if
527 * @remote_port == true.
528 * @cdb: SCSI CDB to be copied into @xpt_cmd.
529 * @remote_port: If false, use the LUN through which the XCOPY command has
530 * been received. If true, use @se_dev->xcopy_lun.
532 * Set up a SCSI command (READ or WRITE) that will be used to execute an
535 static int target_xcopy_setup_pt_cmd(
536 struct xcopy_pt_cmd
*xpt_cmd
,
537 struct xcopy_op
*xop
,
538 struct se_device
*se_dev
,
542 struct se_cmd
*cmd
= &xpt_cmd
->se_cmd
;
545 * Setup LUN+port to honor reservations based upon xop->op_origin for
546 * X-COPY PUSH or X-COPY PULL based upon where the CDB was received.
549 cmd
->se_lun
= &se_dev
->xcopy_lun
;
550 cmd
->se_dev
= se_dev
;
552 cmd
->se_lun
= xop
->xop_se_cmd
->se_lun
;
553 cmd
->se_dev
= xop
->xop_se_cmd
->se_dev
;
555 cmd
->se_cmd_flags
|= SCF_SE_LUN_CMD
;
557 if (target_cmd_init_cdb(cmd
, cdb
))
561 if (target_cmd_parse_cdb(cmd
))
564 if (transport_generic_map_mem_to_cmd(cmd
, xop
->xop_data_sg
,
565 xop
->xop_data_nents
, NULL
, 0))
568 pr_debug("Setup PASSTHROUGH_NOALLOC t_data_sg: %p t_data_nents:"
569 " %u\n", cmd
->t_data_sg
, cmd
->t_data_nents
);
574 static int target_xcopy_issue_pt_cmd(struct xcopy_pt_cmd
*xpt_cmd
)
576 struct se_cmd
*se_cmd
= &xpt_cmd
->se_cmd
;
577 sense_reason_t sense_rc
;
579 sense_rc
= transport_generic_new_cmd(se_cmd
);
583 if (se_cmd
->data_direction
== DMA_TO_DEVICE
)
584 target_execute_cmd(se_cmd
);
586 wait_for_completion_interruptible(&xpt_cmd
->xpt_passthrough_sem
);
588 pr_debug("target_xcopy_issue_pt_cmd(): SCSI status: 0x%02x\n",
589 se_cmd
->scsi_status
);
591 return (se_cmd
->scsi_status
) ? -EINVAL
: 0;
594 static int target_xcopy_read_source(
595 struct se_cmd
*ec_cmd
,
596 struct xcopy_op
*xop
,
597 struct se_device
*src_dev
,
601 struct xcopy_pt_cmd xpt_cmd
;
602 struct se_cmd
*se_cmd
= &xpt_cmd
.se_cmd
;
603 u32 length
= (src_sectors
* src_dev
->dev_attrib
.block_size
);
605 unsigned char cdb
[16];
606 bool remote_port
= (xop
->op_origin
== XCOL_DEST_RECV_OP
);
608 memset(&xpt_cmd
, 0, sizeof(xpt_cmd
));
609 init_completion(&xpt_cmd
.xpt_passthrough_sem
);
611 memset(&cdb
[0], 0, 16);
613 put_unaligned_be64(src_lba
, &cdb
[2]);
614 put_unaligned_be32(src_sectors
, &cdb
[10]);
615 pr_debug("XCOPY: Built READ_16: LBA: %llu Sectors: %u Length: %u\n",
616 (unsigned long long)src_lba
, src_sectors
, length
);
618 transport_init_se_cmd(se_cmd
, &xcopy_pt_tfo
, &xcopy_pt_sess
, length
,
619 DMA_FROM_DEVICE
, 0, &xpt_cmd
.sense_buffer
[0], 0);
621 rc
= target_xcopy_setup_pt_cmd(&xpt_cmd
, xop
, src_dev
, &cdb
[0],
624 ec_cmd
->scsi_status
= se_cmd
->scsi_status
;
628 pr_debug("XCOPY-READ: Saved xop->xop_data_sg: %p, num: %u for READ"
629 " memory\n", xop
->xop_data_sg
, xop
->xop_data_nents
);
631 rc
= target_xcopy_issue_pt_cmd(&xpt_cmd
);
633 ec_cmd
->scsi_status
= se_cmd
->scsi_status
;
635 transport_generic_free_cmd(se_cmd
, 0);
639 static int target_xcopy_write_destination(
640 struct se_cmd
*ec_cmd
,
641 struct xcopy_op
*xop
,
642 struct se_device
*dst_dev
,
646 struct xcopy_pt_cmd xpt_cmd
;
647 struct se_cmd
*se_cmd
= &xpt_cmd
.se_cmd
;
648 u32 length
= (dst_sectors
* dst_dev
->dev_attrib
.block_size
);
650 unsigned char cdb
[16];
651 bool remote_port
= (xop
->op_origin
== XCOL_SOURCE_RECV_OP
);
653 memset(&xpt_cmd
, 0, sizeof(xpt_cmd
));
654 init_completion(&xpt_cmd
.xpt_passthrough_sem
);
656 memset(&cdb
[0], 0, 16);
658 put_unaligned_be64(dst_lba
, &cdb
[2]);
659 put_unaligned_be32(dst_sectors
, &cdb
[10]);
660 pr_debug("XCOPY: Built WRITE_16: LBA: %llu Sectors: %u Length: %u\n",
661 (unsigned long long)dst_lba
, dst_sectors
, length
);
663 transport_init_se_cmd(se_cmd
, &xcopy_pt_tfo
, &xcopy_pt_sess
, length
,
664 DMA_TO_DEVICE
, 0, &xpt_cmd
.sense_buffer
[0], 0);
666 rc
= target_xcopy_setup_pt_cmd(&xpt_cmd
, xop
, dst_dev
, &cdb
[0],
669 ec_cmd
->scsi_status
= se_cmd
->scsi_status
;
673 rc
= target_xcopy_issue_pt_cmd(&xpt_cmd
);
675 ec_cmd
->scsi_status
= se_cmd
->scsi_status
;
677 transport_generic_free_cmd(se_cmd
, 0);
681 static void target_xcopy_do_work(struct work_struct
*work
)
683 struct xcopy_op
*xop
= container_of(work
, struct xcopy_op
, xop_work
);
684 struct se_cmd
*ec_cmd
= xop
->xop_se_cmd
;
685 struct se_device
*src_dev
, *dst_dev
;
686 sector_t src_lba
, dst_lba
, end_lba
;
687 unsigned int max_sectors
;
689 unsigned short nolb
, max_nolb
, copied_nolb
= 0;
691 if (target_parse_xcopy_cmd(xop
) != TCM_NO_SENSE
)
694 if (WARN_ON_ONCE(!xop
->src_dev
) || WARN_ON_ONCE(!xop
->dst_dev
))
697 src_dev
= xop
->src_dev
;
698 dst_dev
= xop
->dst_dev
;
699 src_lba
= xop
->src_lba
;
700 dst_lba
= xop
->dst_lba
;
702 end_lba
= src_lba
+ nolb
;
704 * Break up XCOPY I/O into hw_max_sectors sized I/O based on the
705 * smallest max_sectors between src_dev + dev_dev, or
707 max_sectors
= min(src_dev
->dev_attrib
.hw_max_sectors
,
708 dst_dev
->dev_attrib
.hw_max_sectors
);
709 max_sectors
= min_t(u32
, max_sectors
, XCOPY_MAX_SECTORS
);
711 max_nolb
= min_t(u16
, max_sectors
, ((u16
)(~0U)));
713 pr_debug("target_xcopy_do_work: nolb: %hu, max_nolb: %hu end_lba: %llu\n",
714 nolb
, max_nolb
, (unsigned long long)end_lba
);
715 pr_debug("target_xcopy_do_work: Starting src_lba: %llu, dst_lba: %llu\n",
716 (unsigned long long)src_lba
, (unsigned long long)dst_lba
);
718 while (src_lba
< end_lba
) {
719 unsigned short cur_nolb
= min(nolb
, max_nolb
);
720 u32 cur_bytes
= cur_nolb
* src_dev
->dev_attrib
.block_size
;
722 if (cur_bytes
!= xop
->xop_data_bytes
) {
724 * (Re)allocate a buffer large enough to hold the XCOPY
725 * I/O size, which can be reused each read / write loop.
727 target_free_sgl(xop
->xop_data_sg
, xop
->xop_data_nents
);
728 rc
= target_alloc_sgl(&xop
->xop_data_sg
,
729 &xop
->xop_data_nents
,
734 xop
->xop_data_bytes
= cur_bytes
;
737 pr_debug("target_xcopy_do_work: Calling read src_dev: %p src_lba: %llu,"
738 " cur_nolb: %hu\n", src_dev
, (unsigned long long)src_lba
, cur_nolb
);
740 rc
= target_xcopy_read_source(ec_cmd
, xop
, src_dev
, src_lba
, cur_nolb
);
745 pr_debug("target_xcopy_do_work: Incremented READ src_lba to %llu\n",
746 (unsigned long long)src_lba
);
748 pr_debug("target_xcopy_do_work: Calling write dst_dev: %p dst_lba: %llu,"
749 " cur_nolb: %hu\n", dst_dev
, (unsigned long long)dst_lba
, cur_nolb
);
751 rc
= target_xcopy_write_destination(ec_cmd
, xop
, dst_dev
,
757 pr_debug("target_xcopy_do_work: Incremented WRITE dst_lba to %llu\n",
758 (unsigned long long)dst_lba
);
760 copied_nolb
+= cur_nolb
;
764 xcopy_pt_undepend_remotedev(xop
);
765 target_free_sgl(xop
->xop_data_sg
, xop
->xop_data_nents
);
768 pr_debug("target_xcopy_do_work: Final src_lba: %llu, dst_lba: %llu\n",
769 (unsigned long long)src_lba
, (unsigned long long)dst_lba
);
770 pr_debug("target_xcopy_do_work: Blocks copied: %hu, Bytes Copied: %u\n",
771 copied_nolb
, copied_nolb
* dst_dev
->dev_attrib
.block_size
);
773 pr_debug("target_xcopy_do_work: Setting X-COPY GOOD status -> sending response\n");
774 target_complete_cmd(ec_cmd
, SAM_STAT_GOOD
);
778 xcopy_pt_undepend_remotedev(xop
);
779 target_free_sgl(xop
->xop_data_sg
, xop
->xop_data_nents
);
784 * Don't override an error scsi status if it has already been set
786 if (ec_cmd
->scsi_status
== SAM_STAT_GOOD
) {
787 pr_warn_ratelimited("target_xcopy_do_work: rc: %d, Setting X-COPY"
788 " CHECK_CONDITION -> sending response\n", rc
);
789 ec_cmd
->scsi_status
= SAM_STAT_CHECK_CONDITION
;
791 target_complete_cmd(ec_cmd
, ec_cmd
->scsi_status
);
795 * Returns TCM_NO_SENSE upon success or a sense code != TCM_NO_SENSE if parsing
798 static sense_reason_t
target_parse_xcopy_cmd(struct xcopy_op
*xop
)
800 struct se_cmd
*se_cmd
= xop
->xop_se_cmd
;
801 unsigned char *p
= NULL
, *seg_desc
;
802 unsigned int list_id
, list_id_usage
, sdll
, inline_dl
;
803 sense_reason_t ret
= TCM_INVALID_PARAMETER_LIST
;
807 p
= transport_kmap_data_sg(se_cmd
);
809 pr_err("transport_kmap_data_sg() failed in target_do_xcopy\n");
810 return TCM_OUT_OF_RESOURCES
;
814 list_id_usage
= (p
[1] & 0x18) >> 3;
817 * Determine TARGET DESCRIPTOR LIST LENGTH + SEGMENT DESCRIPTOR LIST LENGTH
819 tdll
= get_unaligned_be16(&p
[2]);
820 sdll
= get_unaligned_be32(&p
[8]);
821 if (tdll
+ sdll
> RCR_OP_MAX_DESC_LIST_LEN
) {
822 pr_err("XCOPY descriptor list length %u exceeds maximum %u\n",
823 tdll
+ sdll
, RCR_OP_MAX_DESC_LIST_LEN
);
824 ret
= TCM_PARAMETER_LIST_LENGTH_ERROR
;
828 inline_dl
= get_unaligned_be32(&p
[12]);
829 if (inline_dl
!= 0) {
830 pr_err("XCOPY with non zero inline data length\n");
834 if (se_cmd
->data_length
< (XCOPY_HDR_LEN
+ tdll
+ sdll
+ inline_dl
)) {
835 pr_err("XCOPY parameter truncation: data length %u too small "
836 "for tdll: %hu sdll: %u inline_dl: %u\n",
837 se_cmd
->data_length
, tdll
, sdll
, inline_dl
);
838 ret
= TCM_PARAMETER_LIST_LENGTH_ERROR
;
842 pr_debug("Processing XCOPY with list_id: 0x%02x list_id_usage: 0x%02x"
843 " tdll: %hu sdll: %u inline_dl: %u\n", list_id
, list_id_usage
,
844 tdll
, sdll
, inline_dl
);
847 * skip over the target descriptors until segment descriptors
848 * have been passed - CSCD ids are needed to determine src and dest.
850 seg_desc
= &p
[16] + tdll
;
852 rc
= target_xcopy_parse_segment_descriptors(se_cmd
, xop
, seg_desc
,
857 pr_debug("XCOPY: Processed %d segment descriptors, length: %u\n", rc
,
858 rc
* XCOPY_SEGMENT_DESC_LEN
);
860 rc
= target_xcopy_parse_target_descriptors(se_cmd
, xop
, &p
[16], tdll
, &ret
);
864 if (xop
->src_dev
->dev_attrib
.block_size
!=
865 xop
->dst_dev
->dev_attrib
.block_size
) {
866 pr_err("XCOPY: Non matching src_dev block_size: %u + dst_dev"
867 " block_size: %u currently unsupported\n",
868 xop
->src_dev
->dev_attrib
.block_size
,
869 xop
->dst_dev
->dev_attrib
.block_size
);
870 xcopy_pt_undepend_remotedev(xop
);
871 ret
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
875 pr_debug("XCOPY: Processed %d target descriptors, length: %u\n", rc
,
876 rc
* XCOPY_TARGET_DESC_LEN
);
877 transport_kunmap_data_sg(se_cmd
);
882 transport_kunmap_data_sg(se_cmd
);
886 sense_reason_t
target_do_xcopy(struct se_cmd
*se_cmd
)
888 struct se_device
*dev
= se_cmd
->se_dev
;
889 struct xcopy_op
*xop
;
892 if (!dev
->dev_attrib
.emulate_3pc
) {
893 pr_err("EXTENDED_COPY operation explicitly disabled\n");
894 return TCM_UNSUPPORTED_SCSI_OPCODE
;
897 sa
= se_cmd
->t_task_cdb
[1] & 0x1f;
899 pr_err("EXTENDED_COPY(LID4) not supported\n");
900 return TCM_UNSUPPORTED_SCSI_OPCODE
;
903 if (se_cmd
->data_length
== 0) {
904 target_complete_cmd(se_cmd
, SAM_STAT_GOOD
);
907 if (se_cmd
->data_length
< XCOPY_HDR_LEN
) {
908 pr_err("XCOPY parameter truncation: length %u < hdr_len %u\n",
909 se_cmd
->data_length
, XCOPY_HDR_LEN
);
910 return TCM_PARAMETER_LIST_LENGTH_ERROR
;
913 xop
= kzalloc(sizeof(struct xcopy_op
), GFP_KERNEL
);
916 xop
->xop_se_cmd
= se_cmd
;
917 INIT_WORK(&xop
->xop_work
, target_xcopy_do_work
);
918 if (WARN_ON_ONCE(!queue_work(xcopy_wq
, &xop
->xop_work
)))
926 return TCM_OUT_OF_RESOURCES
;
929 static sense_reason_t
target_rcr_operating_parameters(struct se_cmd
*se_cmd
)
933 p
= transport_kmap_data_sg(se_cmd
);
935 pr_err("transport_kmap_data_sg failed in"
936 " target_rcr_operating_parameters\n");
937 return TCM_OUT_OF_RESOURCES
;
940 if (se_cmd
->data_length
< 54) {
941 pr_err("Receive Copy Results Op Parameters length"
942 " too small: %u\n", se_cmd
->data_length
);
943 transport_kunmap_data_sg(se_cmd
);
944 return TCM_INVALID_CDB_FIELD
;
947 * Set SNLID=1 (Supports no List ID)
951 * MAXIMUM TARGET DESCRIPTOR COUNT
953 put_unaligned_be16(RCR_OP_MAX_TARGET_DESC_COUNT
, &p
[8]);
955 * MAXIMUM SEGMENT DESCRIPTOR COUNT
957 put_unaligned_be16(RCR_OP_MAX_SG_DESC_COUNT
, &p
[10]);
959 * MAXIMUM DESCRIPTOR LIST LENGTH
961 put_unaligned_be32(RCR_OP_MAX_DESC_LIST_LEN
, &p
[12]);
963 * MAXIMUM SEGMENT LENGTH
965 put_unaligned_be32(RCR_OP_MAX_SEGMENT_LEN
, &p
[16]);
967 * MAXIMUM INLINE DATA LENGTH for SA 0x04 (NOT SUPPORTED)
969 put_unaligned_be32(0x0, &p
[20]);
973 put_unaligned_be32(0x0, &p
[24]);
975 * MAXIMUM STREAM DEVICE TRANSFER SIZE
977 put_unaligned_be32(0x0, &p
[28]);
979 * TOTAL CONCURRENT COPIES
981 put_unaligned_be16(RCR_OP_TOTAL_CONCURR_COPIES
, &p
[34]);
983 * MAXIMUM CONCURRENT COPIES
985 p
[36] = RCR_OP_MAX_CONCURR_COPIES
;
987 * DATA SEGMENT GRANULARITY (log 2)
989 p
[37] = RCR_OP_DATA_SEG_GRAN_LOG2
;
991 * INLINE DATA GRANULARITY log 2)
993 p
[38] = RCR_OP_INLINE_DATA_GRAN_LOG2
;
995 * HELD DATA GRANULARITY
997 p
[39] = RCR_OP_HELD_DATA_GRAN_LOG2
;
999 * IMPLEMENTED DESCRIPTOR LIST LENGTH
1003 * List of implemented descriptor type codes (ordered)
1005 p
[44] = 0x02; /* Copy Block to Block device */
1006 p
[45] = 0xe4; /* Identification descriptor target descriptor */
1009 * AVAILABLE DATA (n-3)
1011 put_unaligned_be32(42, &p
[0]);
1013 transport_kunmap_data_sg(se_cmd
);
1014 target_complete_cmd(se_cmd
, GOOD
);
1016 return TCM_NO_SENSE
;
1019 sense_reason_t
target_do_receive_copy_results(struct se_cmd
*se_cmd
)
1021 unsigned char *cdb
= &se_cmd
->t_task_cdb
[0];
1022 int sa
= (cdb
[1] & 0x1f), list_id
= cdb
[2];
1023 sense_reason_t rc
= TCM_NO_SENSE
;
1025 pr_debug("Entering target_do_receive_copy_results: SA: 0x%02x, List ID:"
1026 " 0x%02x, AL: %u\n", sa
, list_id
, se_cmd
->data_length
);
1029 pr_err("Receive Copy Results with non zero list identifier"
1030 " not supported\n");
1031 return TCM_INVALID_CDB_FIELD
;
1035 case RCR_SA_OPERATING_PARAMETERS
:
1036 rc
= target_rcr_operating_parameters(se_cmd
);
1038 case RCR_SA_COPY_STATUS
:
1039 case RCR_SA_RECEIVE_DATA
:
1040 case RCR_SA_FAILED_SEGMENT_DETAILS
:
1042 pr_err("Unsupported SA for receive copy results: 0x%02x\n", sa
);
1043 return TCM_INVALID_CDB_FIELD
;