1 /*******************************************************************************
2 * Filename: target_core_pr.c
4 * This file contains SPC-3 compliant persistent reservations and
5 * legacy SPC-2 reservations with compatible reservation handling (CRH=1)
7 * (c) Copyright 2009-2013 Datera, Inc.
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.
25 ******************************************************************************/
27 #include <linux/slab.h>
28 #include <linux/spinlock.h>
29 #include <linux/list.h>
30 #include <linux/vmalloc.h>
31 #include <linux/file.h>
32 #include <scsi/scsi_proto.h>
33 #include <asm/unaligned.h>
35 #include <target/target_core_base.h>
36 #include <target/target_core_backend.h>
37 #include <target/target_core_fabric.h>
39 #include "target_core_internal.h"
40 #include "target_core_pr.h"
41 #include "target_core_ua.h"
44 * Used for Specify Initiator Ports Capable Bit (SPEC_I_PT)
46 struct pr_transport_id_holder
{
47 struct t10_pr_registration
*dest_pr_reg
;
48 struct se_portal_group
*dest_tpg
;
49 struct se_node_acl
*dest_node_acl
;
50 struct se_dev_entry
*dest_se_deve
;
51 struct list_head dest_list
;
54 void core_pr_dump_initiator_port(
55 struct t10_pr_registration
*pr_reg
,
59 if (!pr_reg
->isid_present_at_reg
)
62 snprintf(buf
, size
, ",i,0x%s", pr_reg
->pr_reg_isid
);
67 REGISTER_AND_IGNORE_EXISTING_KEY
,
76 static void __core_scsi3_complete_pro_release(struct se_device
*, struct se_node_acl
*,
77 struct t10_pr_registration
*, int, int);
79 static int is_reservation_holder(
80 struct t10_pr_registration
*pr_res_holder
,
81 struct t10_pr_registration
*pr_reg
)
86 pr_res_type
= pr_res_holder
->pr_res_type
;
88 return pr_res_holder
== pr_reg
||
89 pr_res_type
== PR_TYPE_WRITE_EXCLUSIVE_ALLREG
||
90 pr_res_type
== PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
;
96 target_scsi2_reservation_check(struct se_cmd
*cmd
)
98 struct se_device
*dev
= cmd
->se_dev
;
99 struct se_session
*sess
= cmd
->se_sess
;
101 switch (cmd
->t_task_cdb
[0]) {
110 if (!dev
->dev_reserved_node_acl
|| !sess
)
113 if (dev
->dev_reserved_node_acl
!= sess
->se_node_acl
)
114 return TCM_RESERVATION_CONFLICT
;
116 if (dev
->dev_reservation_flags
& DRF_SPC2_RESERVATIONS_WITH_ISID
) {
117 if (dev
->dev_res_bin_isid
!= sess
->sess_bin_isid
)
118 return TCM_RESERVATION_CONFLICT
;
124 static struct t10_pr_registration
*core_scsi3_locate_pr_reg(struct se_device
*,
125 struct se_node_acl
*, struct se_session
*);
126 static void core_scsi3_put_pr_reg(struct t10_pr_registration
*);
128 static int target_check_scsi2_reservation_conflict(struct se_cmd
*cmd
)
130 struct se_session
*se_sess
= cmd
->se_sess
;
131 struct se_device
*dev
= cmd
->se_dev
;
132 struct t10_pr_registration
*pr_reg
;
133 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
136 pr_reg
= core_scsi3_locate_pr_reg(cmd
->se_dev
, se_sess
->se_node_acl
,
140 * From spc4r17 5.7.3 Exceptions to SPC-2 RESERVE and RELEASE
143 * A RESERVE(6) or RESERVE(10) command shall complete with GOOD
144 * status, but no reservation shall be established and the
145 * persistent reservation shall not be changed, if the command
146 * is received from a) and b) below.
148 * A RELEASE(6) or RELEASE(10) command shall complete with GOOD
149 * status, but the persistent reservation shall not be released,
150 * if the command is received from a) and b)
152 * a) An I_T nexus that is a persistent reservation holder; or
153 * b) An I_T nexus that is registered if a registrants only or
154 * all registrants type persistent reservation is present.
156 * In all other cases, a RESERVE(6) command, RESERVE(10) command,
157 * RELEASE(6) command, or RELEASE(10) command shall be processed
158 * as defined in SPC-2.
160 if (pr_reg
->pr_res_holder
) {
161 core_scsi3_put_pr_reg(pr_reg
);
164 if ((pr_reg
->pr_res_type
== PR_TYPE_WRITE_EXCLUSIVE_REGONLY
) ||
165 (pr_reg
->pr_res_type
== PR_TYPE_EXCLUSIVE_ACCESS_REGONLY
) ||
166 (pr_reg
->pr_res_type
== PR_TYPE_WRITE_EXCLUSIVE_ALLREG
) ||
167 (pr_reg
->pr_res_type
== PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
)) {
168 core_scsi3_put_pr_reg(pr_reg
);
171 core_scsi3_put_pr_reg(pr_reg
);
175 * Following spc2r20 5.5.1 Reservations overview:
177 * If a logical unit has executed a PERSISTENT RESERVE OUT
178 * command with the REGISTER or the REGISTER AND IGNORE
179 * EXISTING KEY service action and is still registered by any
180 * initiator, all RESERVE commands and all RELEASE commands
181 * regardless of initiator shall conflict and shall terminate
182 * with a RESERVATION CONFLICT status.
184 spin_lock(&pr_tmpl
->registration_lock
);
185 conflict
= (list_empty(&pr_tmpl
->registration_list
)) ? 0 : 1;
186 spin_unlock(&pr_tmpl
->registration_lock
);
190 pr_err("Received legacy SPC-2 RESERVE/RELEASE"
191 " while active SPC-3 registrations exist,"
192 " returning RESERVATION_CONFLICT\n");
200 target_scsi2_reservation_release(struct se_cmd
*cmd
)
202 struct se_device
*dev
= cmd
->se_dev
;
203 struct se_session
*sess
= cmd
->se_sess
;
204 struct se_portal_group
*tpg
;
207 if (!sess
|| !sess
->se_tpg
)
209 rc
= target_check_scsi2_reservation_conflict(cmd
);
213 return TCM_RESERVATION_CONFLICT
;
215 spin_lock(&dev
->dev_reservation_lock
);
216 if (!dev
->dev_reserved_node_acl
|| !sess
)
219 if (dev
->dev_reserved_node_acl
!= sess
->se_node_acl
)
222 if (dev
->dev_res_bin_isid
!= sess
->sess_bin_isid
)
225 dev
->dev_reserved_node_acl
= NULL
;
226 dev
->dev_reservation_flags
&= ~DRF_SPC2_RESERVATIONS
;
227 if (dev
->dev_reservation_flags
& DRF_SPC2_RESERVATIONS_WITH_ISID
) {
228 dev
->dev_res_bin_isid
= 0;
229 dev
->dev_reservation_flags
&= ~DRF_SPC2_RESERVATIONS_WITH_ISID
;
232 pr_debug("SCSI-2 Released reservation for %s LUN: %llu ->"
233 " MAPPED LUN: %llu for %s\n",
234 tpg
->se_tpg_tfo
->get_fabric_name(),
235 cmd
->se_lun
->unpacked_lun
, cmd
->orig_fe_lun
,
236 sess
->se_node_acl
->initiatorname
);
239 spin_unlock(&dev
->dev_reservation_lock
);
241 target_complete_cmd(cmd
, GOOD
);
246 target_scsi2_reservation_reserve(struct se_cmd
*cmd
)
248 struct se_device
*dev
= cmd
->se_dev
;
249 struct se_session
*sess
= cmd
->se_sess
;
250 struct se_portal_group
*tpg
;
251 sense_reason_t ret
= 0;
254 if ((cmd
->t_task_cdb
[1] & 0x01) &&
255 (cmd
->t_task_cdb
[1] & 0x02)) {
256 pr_err("LongIO and Obselete Bits set, returning"
257 " ILLEGAL_REQUEST\n");
258 return TCM_UNSUPPORTED_SCSI_OPCODE
;
261 * This is currently the case for target_core_mod passthrough struct se_cmd
264 if (!sess
|| !sess
->se_tpg
)
266 rc
= target_check_scsi2_reservation_conflict(cmd
);
271 return TCM_RESERVATION_CONFLICT
;
274 spin_lock(&dev
->dev_reservation_lock
);
275 if (dev
->dev_reserved_node_acl
&&
276 (dev
->dev_reserved_node_acl
!= sess
->se_node_acl
)) {
277 pr_err("SCSI-2 RESERVATION CONFLIFT for %s fabric\n",
278 tpg
->se_tpg_tfo
->get_fabric_name());
279 pr_err("Original reserver LUN: %llu %s\n",
280 cmd
->se_lun
->unpacked_lun
,
281 dev
->dev_reserved_node_acl
->initiatorname
);
282 pr_err("Current attempt - LUN: %llu -> MAPPED LUN: %llu"
283 " from %s \n", cmd
->se_lun
->unpacked_lun
,
285 sess
->se_node_acl
->initiatorname
);
286 ret
= TCM_RESERVATION_CONFLICT
;
290 dev
->dev_reserved_node_acl
= sess
->se_node_acl
;
291 dev
->dev_reservation_flags
|= DRF_SPC2_RESERVATIONS
;
292 if (sess
->sess_bin_isid
!= 0) {
293 dev
->dev_res_bin_isid
= sess
->sess_bin_isid
;
294 dev
->dev_reservation_flags
|= DRF_SPC2_RESERVATIONS_WITH_ISID
;
296 pr_debug("SCSI-2 Reserved %s LUN: %llu -> MAPPED LUN: %llu"
297 " for %s\n", tpg
->se_tpg_tfo
->get_fabric_name(),
298 cmd
->se_lun
->unpacked_lun
, cmd
->orig_fe_lun
,
299 sess
->se_node_acl
->initiatorname
);
302 spin_unlock(&dev
->dev_reservation_lock
);
305 target_complete_cmd(cmd
, GOOD
);
311 * Begin SPC-3/SPC-4 Persistent Reservations emulation support
313 * This function is called by those initiator ports who are *NOT*
314 * the active PR reservation holder when a reservation is present.
316 static int core_scsi3_pr_seq_non_holder(struct se_cmd
*cmd
, u32 pr_reg_type
,
319 unsigned char *cdb
= cmd
->t_task_cdb
;
320 struct se_session
*se_sess
= cmd
->se_sess
;
321 struct se_node_acl
*nacl
= se_sess
->se_node_acl
;
323 int registered_nexus
= 0, ret
= 1; /* Conflict by default */
324 int all_reg
= 0, reg_only
= 0; /* ALL_REG, REG_ONLY */
325 int we
= 0; /* Write Exclusive */
326 int legacy
= 0; /* Act like a legacy device and return
327 * RESERVATION CONFLICT on some CDBs */
330 registered_nexus
= 0;
332 struct se_dev_entry
*se_deve
;
335 se_deve
= target_nacl_find_deve(nacl
, cmd
->orig_fe_lun
);
337 registered_nexus
= test_bit(DEF_PR_REG_ACTIVE
,
338 &se_deve
->deve_flags
);
342 switch (pr_reg_type
) {
343 case PR_TYPE_WRITE_EXCLUSIVE
:
345 case PR_TYPE_EXCLUSIVE_ACCESS
:
347 * Some commands are only allowed for the persistent reservation
351 case PR_TYPE_WRITE_EXCLUSIVE_REGONLY
:
353 case PR_TYPE_EXCLUSIVE_ACCESS_REGONLY
:
355 * Some commands are only allowed for registered I_T Nexuses.
359 case PR_TYPE_WRITE_EXCLUSIVE_ALLREG
:
361 case PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
:
363 * Each registered I_T Nexus is a reservation holder.
371 * Referenced from spc4r17 table 45 for *NON* PR holder access
374 case SECURITY_PROTOCOL_IN
:
375 if (registered_nexus
)
383 case RECEIVE_DIAGNOSTIC
:
388 if (registered_nexus
) {
392 ret
= (we
) ? 0 : 1; /* Allowed Write Exclusive */
394 case PERSISTENT_RESERVE_OUT
:
396 * This follows PERSISTENT_RESERVE_OUT service actions that
397 * are allowed in the presence of various reservations.
398 * See spc4r17, table 46
400 switch (cdb
[1] & 0x1f) {
403 case PRO_PREEMPT_AND_ABORT
:
404 ret
= (registered_nexus
) ? 0 : 1;
407 case PRO_REGISTER_AND_IGNORE_EXISTING_KEY
:
410 case PRO_REGISTER_AND_MOVE
:
415 ret
= (registered_nexus
) ? 0 : 1;
418 pr_err("Unknown PERSISTENT_RESERVE_OUT service"
419 " action: 0x%02x\n", cdb
[1] & 0x1f);
425 /* Handled by CRH=1 in target_scsi2_reservation_release() */
430 /* Handled by CRH=1 in target_scsi2_reservation_reserve() */
433 case TEST_UNIT_READY
:
434 ret
= (legacy
) ? 1 : 0; /* Conflict for legacy */
437 switch (cdb
[1] & 0x1f) {
438 case MI_MANAGEMENT_PROTOCOL_IN
:
439 if (registered_nexus
) {
443 ret
= (we
) ? 0 : 1; /* Allowed Write Exclusive */
445 case MI_REPORT_SUPPORTED_OPERATION_CODES
:
446 case MI_REPORT_SUPPORTED_TASK_MANAGEMENT_FUNCTIONS
:
451 if (registered_nexus
) {
455 ret
= (we
) ? 0 : 1; /* Allowed Write Exclusive */
457 case MI_REPORT_ALIASES
:
458 case MI_REPORT_IDENTIFYING_INFORMATION
:
459 case MI_REPORT_PRIORITY
:
460 case MI_REPORT_TARGET_PGS
:
461 case MI_REPORT_TIMESTAMP
:
462 ret
= 0; /* Allowed */
465 pr_err("Unknown MI Service Action: 0x%02x\n",
470 case ACCESS_CONTROL_IN
:
471 case ACCESS_CONTROL_OUT
:
474 case SERVICE_ACTION_IN_12
:
477 case PERSISTENT_RESERVE_IN
:
478 ret
= 0; /*/ Allowed CDBs */
485 * Case where the CDB is explicitly allowed in the above switch
488 if (!ret
&& !other_cdb
) {
489 pr_debug("Allowing explicit CDB: 0x%02x for %s"
490 " reservation holder\n", cdb
[0],
491 core_scsi3_pr_dump_type(pr_reg_type
));
496 * Check if write exclusive initiator ports *NOT* holding the
497 * WRITE_EXCLUSIVE_* reservation.
499 if (we
&& !registered_nexus
) {
500 if (cmd
->data_direction
== DMA_TO_DEVICE
) {
502 * Conflict for write exclusive
504 pr_debug("%s Conflict for unregistered nexus"
505 " %s CDB: 0x%02x to %s reservation\n",
506 transport_dump_cmd_direction(cmd
),
507 se_sess
->se_node_acl
->initiatorname
, cdb
[0],
508 core_scsi3_pr_dump_type(pr_reg_type
));
512 * Allow non WRITE CDBs for all Write Exclusive
513 * PR TYPEs to pass for registered and
514 * non-registered_nexuxes NOT holding the reservation.
516 * We only make noise for the unregisterd nexuses,
517 * as we expect registered non-reservation holding
518 * nexuses to issue CDBs.
521 if (!registered_nexus
) {
522 pr_debug("Allowing implicit CDB: 0x%02x"
523 " for %s reservation on unregistered"
525 core_scsi3_pr_dump_type(pr_reg_type
));
530 } else if ((reg_only
) || (all_reg
)) {
531 if (registered_nexus
) {
533 * For PR_*_REG_ONLY and PR_*_ALL_REG reservations,
534 * allow commands from registered nexuses.
537 pr_debug("Allowing implicit CDB: 0x%02x for %s"
538 " reservation\n", cdb
[0],
539 core_scsi3_pr_dump_type(pr_reg_type
));
543 } else if (we
&& registered_nexus
) {
545 * Reads are allowed for Write Exclusive locks
546 * from all registrants.
548 if (cmd
->data_direction
== DMA_FROM_DEVICE
) {
549 pr_debug("Allowing READ CDB: 0x%02x for %s"
550 " reservation\n", cdb
[0],
551 core_scsi3_pr_dump_type(pr_reg_type
));
556 pr_debug("%s Conflict for %sregistered nexus %s CDB: 0x%2x"
557 " for %s reservation\n", transport_dump_cmd_direction(cmd
),
558 (registered_nexus
) ? "" : "un",
559 se_sess
->se_node_acl
->initiatorname
, cdb
[0],
560 core_scsi3_pr_dump_type(pr_reg_type
));
562 return 1; /* Conflict by default */
565 static sense_reason_t
566 target_scsi3_pr_reservation_check(struct se_cmd
*cmd
)
568 struct se_device
*dev
= cmd
->se_dev
;
569 struct se_session
*sess
= cmd
->se_sess
;
571 bool isid_mismatch
= false;
573 if (!dev
->dev_pr_res_holder
)
576 pr_reg_type
= dev
->dev_pr_res_holder
->pr_res_type
;
577 cmd
->pr_res_key
= dev
->dev_pr_res_holder
->pr_res_key
;
578 if (dev
->dev_pr_res_holder
->pr_reg_nacl
!= sess
->se_node_acl
)
579 goto check_nonholder
;
581 if (dev
->dev_pr_res_holder
->isid_present_at_reg
) {
582 if (dev
->dev_pr_res_holder
->pr_reg_bin_isid
!=
583 sess
->sess_bin_isid
) {
584 isid_mismatch
= true;
585 goto check_nonholder
;
592 if (core_scsi3_pr_seq_non_holder(cmd
, pr_reg_type
, isid_mismatch
))
593 return TCM_RESERVATION_CONFLICT
;
597 static u32
core_scsi3_pr_generation(struct se_device
*dev
)
602 * PRGeneration field shall contain the value of a 32-bit wrapping
603 * counter mainted by the device server.
605 * Note that this is done regardless of Active Persist across
606 * Target PowerLoss (APTPL)
608 * See spc4r17 section 6.3.12 READ_KEYS service action
610 spin_lock(&dev
->dev_reservation_lock
);
611 prg
= dev
->t10_pr
.pr_generation
++;
612 spin_unlock(&dev
->dev_reservation_lock
);
617 static struct t10_pr_registration
*__core_scsi3_do_alloc_registration(
618 struct se_device
*dev
,
619 struct se_node_acl
*nacl
,
621 struct se_dev_entry
*deve
,
628 struct t10_pr_registration
*pr_reg
;
630 pr_reg
= kmem_cache_zalloc(t10_pr_reg_cache
, GFP_ATOMIC
);
632 pr_err("Unable to allocate struct t10_pr_registration\n");
636 INIT_LIST_HEAD(&pr_reg
->pr_reg_list
);
637 INIT_LIST_HEAD(&pr_reg
->pr_reg_abort_list
);
638 INIT_LIST_HEAD(&pr_reg
->pr_reg_aptpl_list
);
639 INIT_LIST_HEAD(&pr_reg
->pr_reg_atp_list
);
640 INIT_LIST_HEAD(&pr_reg
->pr_reg_atp_mem_list
);
641 atomic_set(&pr_reg
->pr_res_holders
, 0);
642 pr_reg
->pr_reg_nacl
= nacl
;
643 pr_reg
->pr_reg_deve
= deve
;
644 pr_reg
->pr_res_mapped_lun
= mapped_lun
;
645 pr_reg
->pr_aptpl_target_lun
= lun
->unpacked_lun
;
646 pr_reg
->tg_pt_sep_rtpi
= lun
->lun_rtpi
;
647 pr_reg
->pr_res_key
= sa_res_key
;
648 pr_reg
->pr_reg_all_tg_pt
= all_tg_pt
;
649 pr_reg
->pr_reg_aptpl
= aptpl
;
651 * If an ISID value for this SCSI Initiator Port exists,
652 * save it to the registration now.
655 pr_reg
->pr_reg_bin_isid
= get_unaligned_be64(isid
);
656 snprintf(pr_reg
->pr_reg_isid
, PR_REG_ISID_LEN
, "%s", isid
);
657 pr_reg
->isid_present_at_reg
= 1;
663 static int core_scsi3_lunacl_depend_item(struct se_dev_entry
*);
664 static void core_scsi3_lunacl_undepend_item(struct se_dev_entry
*);
667 * Function used for handling PR registrations for ALL_TG_PT=1 and ALL_TG_PT=0
670 static struct t10_pr_registration
*__core_scsi3_alloc_registration(
671 struct se_device
*dev
,
672 struct se_node_acl
*nacl
,
674 struct se_dev_entry
*deve
,
681 struct se_dev_entry
*deve_tmp
;
682 struct se_node_acl
*nacl_tmp
;
683 struct se_lun_acl
*lacl_tmp
;
684 struct se_lun
*lun_tmp
, *next
, *dest_lun
;
685 const struct target_core_fabric_ops
*tfo
= nacl
->se_tpg
->se_tpg_tfo
;
686 struct t10_pr_registration
*pr_reg
, *pr_reg_atp
, *pr_reg_tmp
, *pr_reg_tmp_safe
;
689 * Create a registration for the I_T Nexus upon which the
690 * PROUT REGISTER was received.
692 pr_reg
= __core_scsi3_do_alloc_registration(dev
, nacl
, lun
, deve
, mapped_lun
,
693 isid
, sa_res_key
, all_tg_pt
,
698 * Return pointer to pr_reg for ALL_TG_PT=0
703 * Create list of matching SCSI Initiator Port registrations
706 spin_lock(&dev
->se_port_lock
);
707 list_for_each_entry_safe(lun_tmp
, next
, &dev
->dev_sep_list
, lun_dev_link
) {
708 if (!percpu_ref_tryget_live(&lun_tmp
->lun_ref
))
710 spin_unlock(&dev
->se_port_lock
);
712 spin_lock(&lun_tmp
->lun_deve_lock
);
713 list_for_each_entry(deve_tmp
, &lun_tmp
->lun_deve_list
, lun_link
) {
715 * This pointer will be NULL for demo mode MappedLUNs
716 * that have not been make explicit via a ConfigFS
717 * MappedLUN group for the SCSI Initiator Node ACL.
719 if (!deve_tmp
->se_lun_acl
)
722 lacl_tmp
= rcu_dereference_check(deve_tmp
->se_lun_acl
,
723 lockdep_is_held(&lun_tmp
->lun_deve_lock
));
724 nacl_tmp
= lacl_tmp
->se_lun_nacl
;
726 * Skip the matching struct se_node_acl that is allocated
729 if (nacl
== nacl_tmp
)
732 * Only perform PR registrations for target ports on
733 * the same fabric module as the REGISTER w/ ALL_TG_PT=1
736 if (tfo
!= nacl_tmp
->se_tpg
->se_tpg_tfo
)
739 * Look for a matching Initiator Node ACL in ASCII format
741 if (strcmp(nacl
->initiatorname
, nacl_tmp
->initiatorname
))
744 kref_get(&deve_tmp
->pr_kref
);
745 spin_unlock(&lun_tmp
->lun_deve_lock
);
747 * Grab a configfs group dependency that is released
748 * for the exception path at label out: below, or upon
749 * completion of adding ALL_TG_PT=1 registrations in
750 * __core_scsi3_add_registration()
752 ret
= core_scsi3_lunacl_depend_item(deve_tmp
);
754 pr_err("core_scsi3_lunacl_depend"
756 percpu_ref_put(&lun_tmp
->lun_ref
);
757 kref_put(&deve_tmp
->pr_kref
, target_pr_kref_release
);
761 * Located a matching SCSI Initiator Port on a different
762 * port, allocate the pr_reg_atp and attach it to the
763 * pr_reg->pr_reg_atp_list that will be processed once
764 * the original *pr_reg is processed in
765 * __core_scsi3_add_registration()
767 dest_lun
= rcu_dereference_check(deve_tmp
->se_lun
,
768 atomic_read(&deve_tmp
->pr_kref
.refcount
) != 0);
770 pr_reg_atp
= __core_scsi3_do_alloc_registration(dev
,
771 nacl_tmp
, dest_lun
, deve_tmp
,
772 deve_tmp
->mapped_lun
, NULL
,
773 sa_res_key
, all_tg_pt
, aptpl
);
775 percpu_ref_put(&lun_tmp
->lun_ref
);
776 core_scsi3_lunacl_undepend_item(deve_tmp
);
780 list_add_tail(&pr_reg_atp
->pr_reg_atp_mem_list
,
781 &pr_reg
->pr_reg_atp_list
);
782 spin_lock(&lun_tmp
->lun_deve_lock
);
784 spin_unlock(&lun_tmp
->lun_deve_lock
);
786 spin_lock(&dev
->se_port_lock
);
787 percpu_ref_put(&lun_tmp
->lun_ref
);
789 spin_unlock(&dev
->se_port_lock
);
793 list_for_each_entry_safe(pr_reg_tmp
, pr_reg_tmp_safe
,
794 &pr_reg
->pr_reg_atp_list
, pr_reg_atp_mem_list
) {
795 list_del(&pr_reg_tmp
->pr_reg_atp_mem_list
);
796 core_scsi3_lunacl_undepend_item(pr_reg_tmp
->pr_reg_deve
);
797 kmem_cache_free(t10_pr_reg_cache
, pr_reg_tmp
);
799 kmem_cache_free(t10_pr_reg_cache
, pr_reg
);
803 int core_scsi3_alloc_aptpl_registration(
804 struct t10_reservation
*pr_tmpl
,
806 unsigned char *i_port
,
809 unsigned char *t_port
,
816 struct t10_pr_registration
*pr_reg
;
818 if (!i_port
|| !t_port
|| !sa_res_key
) {
819 pr_err("Illegal parameters for APTPL registration\n");
823 pr_reg
= kmem_cache_zalloc(t10_pr_reg_cache
, GFP_KERNEL
);
825 pr_err("Unable to allocate struct t10_pr_registration\n");
829 INIT_LIST_HEAD(&pr_reg
->pr_reg_list
);
830 INIT_LIST_HEAD(&pr_reg
->pr_reg_abort_list
);
831 INIT_LIST_HEAD(&pr_reg
->pr_reg_aptpl_list
);
832 INIT_LIST_HEAD(&pr_reg
->pr_reg_atp_list
);
833 INIT_LIST_HEAD(&pr_reg
->pr_reg_atp_mem_list
);
834 atomic_set(&pr_reg
->pr_res_holders
, 0);
835 pr_reg
->pr_reg_nacl
= NULL
;
836 pr_reg
->pr_reg_deve
= NULL
;
837 pr_reg
->pr_res_mapped_lun
= mapped_lun
;
838 pr_reg
->pr_aptpl_target_lun
= target_lun
;
839 pr_reg
->pr_res_key
= sa_res_key
;
840 pr_reg
->pr_reg_all_tg_pt
= all_tg_pt
;
841 pr_reg
->pr_reg_aptpl
= 1;
842 pr_reg
->pr_res_scope
= 0; /* Always LUN_SCOPE */
843 pr_reg
->pr_res_type
= type
;
845 * If an ISID value had been saved in APTPL metadata for this
846 * SCSI Initiator Port, restore it now.
849 pr_reg
->pr_reg_bin_isid
= get_unaligned_be64(isid
);
850 snprintf(pr_reg
->pr_reg_isid
, PR_REG_ISID_LEN
, "%s", isid
);
851 pr_reg
->isid_present_at_reg
= 1;
854 * Copy the i_port and t_port information from caller.
856 snprintf(pr_reg
->pr_iport
, PR_APTPL_MAX_IPORT_LEN
, "%s", i_port
);
857 snprintf(pr_reg
->pr_tport
, PR_APTPL_MAX_TPORT_LEN
, "%s", t_port
);
858 pr_reg
->pr_reg_tpgt
= tpgt
;
860 * Set pr_res_holder from caller, the pr_reg who is the reservation
861 * holder will get it's pointer set in core_scsi3_aptpl_reserve() once
862 * the Initiator Node LUN ACL from the fabric module is created for
865 pr_reg
->pr_res_holder
= res_holder
;
867 list_add_tail(&pr_reg
->pr_reg_aptpl_list
, &pr_tmpl
->aptpl_reg_list
);
868 pr_debug("SPC-3 PR APTPL Successfully added registration%s from"
869 " metadata\n", (res_holder
) ? "+reservation" : "");
873 static void core_scsi3_aptpl_reserve(
874 struct se_device
*dev
,
875 struct se_portal_group
*tpg
,
876 struct se_node_acl
*node_acl
,
877 struct t10_pr_registration
*pr_reg
)
879 char i_buf
[PR_REG_ISID_ID_LEN
];
881 memset(i_buf
, 0, PR_REG_ISID_ID_LEN
);
882 core_pr_dump_initiator_port(pr_reg
, i_buf
, PR_REG_ISID_ID_LEN
);
884 spin_lock(&dev
->dev_reservation_lock
);
885 dev
->dev_pr_res_holder
= pr_reg
;
886 spin_unlock(&dev
->dev_reservation_lock
);
888 pr_debug("SPC-3 PR [%s] Service Action: APTPL RESERVE created"
889 " new reservation holder TYPE: %s ALL_TG_PT: %d\n",
890 tpg
->se_tpg_tfo
->get_fabric_name(),
891 core_scsi3_pr_dump_type(pr_reg
->pr_res_type
),
892 (pr_reg
->pr_reg_all_tg_pt
) ? 1 : 0);
893 pr_debug("SPC-3 PR [%s] RESERVE Node: %s%s\n",
894 tpg
->se_tpg_tfo
->get_fabric_name(), node_acl
->initiatorname
,
898 static void __core_scsi3_add_registration(struct se_device
*, struct se_node_acl
*,
899 struct t10_pr_registration
*, enum register_type
, int);
901 static int __core_scsi3_check_aptpl_registration(
902 struct se_device
*dev
,
903 struct se_portal_group
*tpg
,
906 struct se_node_acl
*nacl
,
909 struct t10_pr_registration
*pr_reg
, *pr_reg_tmp
;
910 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
911 unsigned char i_port
[PR_APTPL_MAX_IPORT_LEN
];
912 unsigned char t_port
[PR_APTPL_MAX_TPORT_LEN
];
915 memset(i_port
, 0, PR_APTPL_MAX_IPORT_LEN
);
916 memset(t_port
, 0, PR_APTPL_MAX_TPORT_LEN
);
918 * Copy Initiator Port information from struct se_node_acl
920 snprintf(i_port
, PR_APTPL_MAX_IPORT_LEN
, "%s", nacl
->initiatorname
);
921 snprintf(t_port
, PR_APTPL_MAX_TPORT_LEN
, "%s",
922 tpg
->se_tpg_tfo
->tpg_get_wwn(tpg
));
923 tpgt
= tpg
->se_tpg_tfo
->tpg_get_tag(tpg
);
925 * Look for the matching registrations+reservation from those
926 * created from APTPL metadata. Note that multiple registrations
927 * may exist for fabrics that use ISIDs in their SCSI Initiator Port
930 spin_lock(&pr_tmpl
->aptpl_reg_lock
);
931 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
, &pr_tmpl
->aptpl_reg_list
,
934 if (!strcmp(pr_reg
->pr_iport
, i_port
) &&
935 (pr_reg
->pr_res_mapped_lun
== mapped_lun
) &&
936 !(strcmp(pr_reg
->pr_tport
, t_port
)) &&
937 (pr_reg
->pr_reg_tpgt
== tpgt
) &&
938 (pr_reg
->pr_aptpl_target_lun
== target_lun
)) {
940 pr_reg
->pr_reg_nacl
= nacl
;
941 pr_reg
->tg_pt_sep_rtpi
= lun
->lun_rtpi
;
943 list_del(&pr_reg
->pr_reg_aptpl_list
);
944 spin_unlock(&pr_tmpl
->aptpl_reg_lock
);
946 * At this point all of the pointers in *pr_reg will
947 * be setup, so go ahead and add the registration.
950 __core_scsi3_add_registration(dev
, nacl
, pr_reg
, 0, 0);
952 * If this registration is the reservation holder,
953 * make that happen now..
955 if (pr_reg
->pr_res_holder
)
956 core_scsi3_aptpl_reserve(dev
, tpg
,
959 * Reenable pr_aptpl_active to accept new metadata
960 * updates once the SCSI device is active again..
962 spin_lock(&pr_tmpl
->aptpl_reg_lock
);
963 pr_tmpl
->pr_aptpl_active
= 1;
966 spin_unlock(&pr_tmpl
->aptpl_reg_lock
);
971 int core_scsi3_check_aptpl_registration(
972 struct se_device
*dev
,
973 struct se_portal_group
*tpg
,
975 struct se_node_acl
*nacl
,
978 if (dev
->dev_reservation_flags
& DRF_SPC2_RESERVATIONS
)
981 return __core_scsi3_check_aptpl_registration(dev
, tpg
, lun
,
982 lun
->unpacked_lun
, nacl
,
986 static void __core_scsi3_dump_registration(
987 const struct target_core_fabric_ops
*tfo
,
988 struct se_device
*dev
,
989 struct se_node_acl
*nacl
,
990 struct t10_pr_registration
*pr_reg
,
991 enum register_type register_type
)
993 struct se_portal_group
*se_tpg
= nacl
->se_tpg
;
994 char i_buf
[PR_REG_ISID_ID_LEN
];
996 memset(&i_buf
[0], 0, PR_REG_ISID_ID_LEN
);
997 core_pr_dump_initiator_port(pr_reg
, i_buf
, PR_REG_ISID_ID_LEN
);
999 pr_debug("SPC-3 PR [%s] Service Action: REGISTER%s Initiator"
1000 " Node: %s%s\n", tfo
->get_fabric_name(), (register_type
== REGISTER_AND_MOVE
) ?
1001 "_AND_MOVE" : (register_type
== REGISTER_AND_IGNORE_EXISTING_KEY
) ?
1002 "_AND_IGNORE_EXISTING_KEY" : "", nacl
->initiatorname
,
1004 pr_debug("SPC-3 PR [%s] registration on Target Port: %s,0x%04x\n",
1005 tfo
->get_fabric_name(), tfo
->tpg_get_wwn(se_tpg
),
1006 tfo
->tpg_get_tag(se_tpg
));
1007 pr_debug("SPC-3 PR [%s] for %s TCM Subsystem %s Object Target"
1008 " Port(s)\n", tfo
->get_fabric_name(),
1009 (pr_reg
->pr_reg_all_tg_pt
) ? "ALL" : "SINGLE",
1010 dev
->transport
->name
);
1011 pr_debug("SPC-3 PR [%s] SA Res Key: 0x%016Lx PRgeneration:"
1012 " 0x%08x APTPL: %d\n", tfo
->get_fabric_name(),
1013 pr_reg
->pr_res_key
, pr_reg
->pr_res_generation
,
1014 pr_reg
->pr_reg_aptpl
);
1017 static void __core_scsi3_add_registration(
1018 struct se_device
*dev
,
1019 struct se_node_acl
*nacl
,
1020 struct t10_pr_registration
*pr_reg
,
1021 enum register_type register_type
,
1024 const struct target_core_fabric_ops
*tfo
= nacl
->se_tpg
->se_tpg_tfo
;
1025 struct t10_pr_registration
*pr_reg_tmp
, *pr_reg_tmp_safe
;
1026 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
1027 struct se_dev_entry
*deve
;
1030 * Increment PRgeneration counter for struct se_device upon a successful
1031 * REGISTER, see spc4r17 section 6.3.2 READ_KEYS service action
1033 * Also, when register_move = 1 for PROUT REGISTER_AND_MOVE service
1034 * action, the struct se_device->dev_reservation_lock will already be held,
1035 * so we do not call core_scsi3_pr_generation() which grabs the lock
1038 pr_reg
->pr_res_generation
= (register_move
) ?
1039 dev
->t10_pr
.pr_generation
++ :
1040 core_scsi3_pr_generation(dev
);
1042 spin_lock(&pr_tmpl
->registration_lock
);
1043 list_add_tail(&pr_reg
->pr_reg_list
, &pr_tmpl
->registration_list
);
1045 __core_scsi3_dump_registration(tfo
, dev
, nacl
, pr_reg
, register_type
);
1046 spin_unlock(&pr_tmpl
->registration_lock
);
1049 deve
= pr_reg
->pr_reg_deve
;
1051 set_bit(DEF_PR_REG_ACTIVE
, &deve
->deve_flags
);
1055 * Skip extra processing for ALL_TG_PT=0 or REGISTER_AND_MOVE.
1057 if (!pr_reg
->pr_reg_all_tg_pt
|| register_move
)
1060 * Walk pr_reg->pr_reg_atp_list and add registrations for ALL_TG_PT=1
1061 * allocated in __core_scsi3_alloc_registration()
1063 list_for_each_entry_safe(pr_reg_tmp
, pr_reg_tmp_safe
,
1064 &pr_reg
->pr_reg_atp_list
, pr_reg_atp_mem_list
) {
1065 struct se_node_acl
*nacl_tmp
= pr_reg_tmp
->pr_reg_nacl
;
1067 list_del(&pr_reg_tmp
->pr_reg_atp_mem_list
);
1069 pr_reg_tmp
->pr_res_generation
= core_scsi3_pr_generation(dev
);
1071 spin_lock(&pr_tmpl
->registration_lock
);
1072 list_add_tail(&pr_reg_tmp
->pr_reg_list
,
1073 &pr_tmpl
->registration_list
);
1075 __core_scsi3_dump_registration(tfo
, dev
, nacl_tmp
, pr_reg_tmp
,
1077 spin_unlock(&pr_tmpl
->registration_lock
);
1080 deve
= pr_reg_tmp
->pr_reg_deve
;
1082 set_bit(DEF_PR_REG_ACTIVE
, &deve
->deve_flags
);
1086 * Drop configfs group dependency reference from
1087 * __core_scsi3_alloc_registration()
1089 core_scsi3_lunacl_undepend_item(pr_reg_tmp
->pr_reg_deve
);
1093 static int core_scsi3_alloc_registration(
1094 struct se_device
*dev
,
1095 struct se_node_acl
*nacl
,
1097 struct se_dev_entry
*deve
,
1099 unsigned char *isid
,
1103 enum register_type register_type
,
1106 struct t10_pr_registration
*pr_reg
;
1108 pr_reg
= __core_scsi3_alloc_registration(dev
, nacl
, lun
, deve
, mapped_lun
,
1109 isid
, sa_res_key
, all_tg_pt
,
1114 __core_scsi3_add_registration(dev
, nacl
, pr_reg
,
1115 register_type
, register_move
);
1119 static struct t10_pr_registration
*__core_scsi3_locate_pr_reg(
1120 struct se_device
*dev
,
1121 struct se_node_acl
*nacl
,
1122 unsigned char *isid
)
1124 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
1125 struct t10_pr_registration
*pr_reg
, *pr_reg_tmp
;
1126 struct se_portal_group
*tpg
;
1128 spin_lock(&pr_tmpl
->registration_lock
);
1129 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
,
1130 &pr_tmpl
->registration_list
, pr_reg_list
) {
1132 * First look for a matching struct se_node_acl
1134 if (pr_reg
->pr_reg_nacl
!= nacl
)
1137 tpg
= pr_reg
->pr_reg_nacl
->se_tpg
;
1139 * If this registration does NOT contain a fabric provided
1140 * ISID, then we have found a match.
1142 if (!pr_reg
->isid_present_at_reg
) {
1144 * Determine if this SCSI device server requires that
1145 * SCSI Intiatior TransportID w/ ISIDs is enforced
1146 * for fabric modules (iSCSI) requiring them.
1148 if (tpg
->se_tpg_tfo
->sess_get_initiator_sid
!= NULL
) {
1149 if (dev
->dev_attrib
.enforce_pr_isids
)
1152 atomic_inc_mb(&pr_reg
->pr_res_holders
);
1153 spin_unlock(&pr_tmpl
->registration_lock
);
1157 * If the *pr_reg contains a fabric defined ISID for multi-value
1158 * SCSI Initiator Port TransportIDs, then we expect a valid
1159 * matching ISID to be provided by the local SCSI Initiator Port.
1163 if (strcmp(isid
, pr_reg
->pr_reg_isid
))
1166 atomic_inc_mb(&pr_reg
->pr_res_holders
);
1167 spin_unlock(&pr_tmpl
->registration_lock
);
1170 spin_unlock(&pr_tmpl
->registration_lock
);
1175 static struct t10_pr_registration
*core_scsi3_locate_pr_reg(
1176 struct se_device
*dev
,
1177 struct se_node_acl
*nacl
,
1178 struct se_session
*sess
)
1180 struct se_portal_group
*tpg
= nacl
->se_tpg
;
1181 unsigned char buf
[PR_REG_ISID_LEN
], *isid_ptr
= NULL
;
1183 if (tpg
->se_tpg_tfo
->sess_get_initiator_sid
!= NULL
) {
1184 memset(&buf
[0], 0, PR_REG_ISID_LEN
);
1185 tpg
->se_tpg_tfo
->sess_get_initiator_sid(sess
, &buf
[0],
1190 return __core_scsi3_locate_pr_reg(dev
, nacl
, isid_ptr
);
1193 static void core_scsi3_put_pr_reg(struct t10_pr_registration
*pr_reg
)
1195 atomic_dec_mb(&pr_reg
->pr_res_holders
);
1198 static int core_scsi3_check_implicit_release(
1199 struct se_device
*dev
,
1200 struct t10_pr_registration
*pr_reg
)
1202 struct se_node_acl
*nacl
= pr_reg
->pr_reg_nacl
;
1203 struct t10_pr_registration
*pr_res_holder
;
1206 spin_lock(&dev
->dev_reservation_lock
);
1207 pr_res_holder
= dev
->dev_pr_res_holder
;
1208 if (!pr_res_holder
) {
1209 spin_unlock(&dev
->dev_reservation_lock
);
1212 if (pr_res_holder
== pr_reg
) {
1214 * Perform an implicit RELEASE if the registration that
1215 * is being released is holding the reservation.
1217 * From spc4r17, section 5.7.11.1:
1219 * e) If the I_T nexus is the persistent reservation holder
1220 * and the persistent reservation is not an all registrants
1221 * type, then a PERSISTENT RESERVE OUT command with REGISTER
1222 * service action or REGISTER AND IGNORE EXISTING KEY
1223 * service action with the SERVICE ACTION RESERVATION KEY
1224 * field set to zero (see 5.7.11.3).
1226 __core_scsi3_complete_pro_release(dev
, nacl
, pr_reg
, 0, 1);
1229 * For 'All Registrants' reservation types, all existing
1230 * registrations are still processed as reservation holders
1231 * in core_scsi3_pr_seq_non_holder() after the initial
1232 * reservation holder is implicitly released here.
1234 } else if (pr_reg
->pr_reg_all_tg_pt
&&
1235 (!strcmp(pr_res_holder
->pr_reg_nacl
->initiatorname
,
1236 pr_reg
->pr_reg_nacl
->initiatorname
)) &&
1237 (pr_res_holder
->pr_res_key
== pr_reg
->pr_res_key
)) {
1238 pr_err("SPC-3 PR: Unable to perform ALL_TG_PT=1"
1239 " UNREGISTER while existing reservation with matching"
1240 " key 0x%016Lx is present from another SCSI Initiator"
1241 " Port\n", pr_reg
->pr_res_key
);
1244 spin_unlock(&dev
->dev_reservation_lock
);
1250 * Called with struct t10_reservation->registration_lock held.
1252 static void __core_scsi3_free_registration(
1253 struct se_device
*dev
,
1254 struct t10_pr_registration
*pr_reg
,
1255 struct list_head
*preempt_and_abort_list
,
1257 __releases(&pr_tmpl
->registration_lock
)
1258 __acquires(&pr_tmpl
->registration_lock
)
1260 const struct target_core_fabric_ops
*tfo
=
1261 pr_reg
->pr_reg_nacl
->se_tpg
->se_tpg_tfo
;
1262 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
1263 struct se_node_acl
*nacl
= pr_reg
->pr_reg_nacl
;
1264 struct se_dev_entry
*deve
;
1265 char i_buf
[PR_REG_ISID_ID_LEN
];
1267 memset(i_buf
, 0, PR_REG_ISID_ID_LEN
);
1268 core_pr_dump_initiator_port(pr_reg
, i_buf
, PR_REG_ISID_ID_LEN
);
1270 if (!list_empty(&pr_reg
->pr_reg_list
))
1271 list_del(&pr_reg
->pr_reg_list
);
1273 * Caller accessing *pr_reg using core_scsi3_locate_pr_reg(),
1274 * so call core_scsi3_put_pr_reg() to decrement our reference.
1277 core_scsi3_put_pr_reg(pr_reg
);
1279 spin_unlock(&pr_tmpl
->registration_lock
);
1281 * Wait until all reference from any other I_T nexuses for this
1282 * *pr_reg have been released. Because list_del() is called above,
1283 * the last core_scsi3_put_pr_reg(pr_reg) will release this reference
1284 * count back to zero, and we release *pr_reg.
1286 while (atomic_read(&pr_reg
->pr_res_holders
) != 0) {
1287 pr_debug("SPC-3 PR [%s] waiting for pr_res_holders\n",
1288 tfo
->get_fabric_name());
1293 deve
= target_nacl_find_deve(nacl
, pr_reg
->pr_res_mapped_lun
);
1295 clear_bit(DEF_PR_REG_ACTIVE
, &deve
->deve_flags
);
1298 spin_lock(&pr_tmpl
->registration_lock
);
1299 pr_debug("SPC-3 PR [%s] Service Action: UNREGISTER Initiator"
1300 " Node: %s%s\n", tfo
->get_fabric_name(),
1301 pr_reg
->pr_reg_nacl
->initiatorname
,
1303 pr_debug("SPC-3 PR [%s] for %s TCM Subsystem %s Object Target"
1304 " Port(s)\n", tfo
->get_fabric_name(),
1305 (pr_reg
->pr_reg_all_tg_pt
) ? "ALL" : "SINGLE",
1306 dev
->transport
->name
);
1307 pr_debug("SPC-3 PR [%s] SA Res Key: 0x%016Lx PRgeneration:"
1308 " 0x%08x\n", tfo
->get_fabric_name(), pr_reg
->pr_res_key
,
1309 pr_reg
->pr_res_generation
);
1311 if (!preempt_and_abort_list
) {
1312 pr_reg
->pr_reg_deve
= NULL
;
1313 pr_reg
->pr_reg_nacl
= NULL
;
1314 kmem_cache_free(t10_pr_reg_cache
, pr_reg
);
1318 * For PREEMPT_AND_ABORT, the list of *pr_reg in preempt_and_abort_list
1319 * are released once the ABORT_TASK_SET has completed..
1321 list_add_tail(&pr_reg
->pr_reg_abort_list
, preempt_and_abort_list
);
1324 void core_scsi3_free_pr_reg_from_nacl(
1325 struct se_device
*dev
,
1326 struct se_node_acl
*nacl
)
1328 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
1329 struct t10_pr_registration
*pr_reg
, *pr_reg_tmp
, *pr_res_holder
;
1330 bool free_reg
= false;
1332 * If the passed se_node_acl matches the reservation holder,
1333 * release the reservation.
1335 spin_lock(&dev
->dev_reservation_lock
);
1336 pr_res_holder
= dev
->dev_pr_res_holder
;
1337 if ((pr_res_holder
!= NULL
) &&
1338 (pr_res_holder
->pr_reg_nacl
== nacl
)) {
1339 __core_scsi3_complete_pro_release(dev
, nacl
, pr_res_holder
, 0, 1);
1342 spin_unlock(&dev
->dev_reservation_lock
);
1344 * Release any registration associated with the struct se_node_acl.
1346 spin_lock(&pr_tmpl
->registration_lock
);
1347 if (pr_res_holder
&& free_reg
)
1348 __core_scsi3_free_registration(dev
, pr_res_holder
, NULL
, 0);
1350 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
,
1351 &pr_tmpl
->registration_list
, pr_reg_list
) {
1353 if (pr_reg
->pr_reg_nacl
!= nacl
)
1356 __core_scsi3_free_registration(dev
, pr_reg
, NULL
, 0);
1358 spin_unlock(&pr_tmpl
->registration_lock
);
1361 void core_scsi3_free_all_registrations(
1362 struct se_device
*dev
)
1364 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
1365 struct t10_pr_registration
*pr_reg
, *pr_reg_tmp
, *pr_res_holder
;
1367 spin_lock(&dev
->dev_reservation_lock
);
1368 pr_res_holder
= dev
->dev_pr_res_holder
;
1369 if (pr_res_holder
!= NULL
) {
1370 struct se_node_acl
*pr_res_nacl
= pr_res_holder
->pr_reg_nacl
;
1371 __core_scsi3_complete_pro_release(dev
, pr_res_nacl
,
1372 pr_res_holder
, 0, 0);
1374 spin_unlock(&dev
->dev_reservation_lock
);
1376 spin_lock(&pr_tmpl
->registration_lock
);
1377 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
,
1378 &pr_tmpl
->registration_list
, pr_reg_list
) {
1380 __core_scsi3_free_registration(dev
, pr_reg
, NULL
, 0);
1382 spin_unlock(&pr_tmpl
->registration_lock
);
1384 spin_lock(&pr_tmpl
->aptpl_reg_lock
);
1385 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
, &pr_tmpl
->aptpl_reg_list
,
1386 pr_reg_aptpl_list
) {
1387 list_del(&pr_reg
->pr_reg_aptpl_list
);
1388 kmem_cache_free(t10_pr_reg_cache
, pr_reg
);
1390 spin_unlock(&pr_tmpl
->aptpl_reg_lock
);
1393 static int core_scsi3_tpg_depend_item(struct se_portal_group
*tpg
)
1395 return target_depend_item(&tpg
->tpg_group
.cg_item
);
1398 static void core_scsi3_tpg_undepend_item(struct se_portal_group
*tpg
)
1400 target_undepend_item(&tpg
->tpg_group
.cg_item
);
1401 atomic_dec_mb(&tpg
->tpg_pr_ref_count
);
1404 static int core_scsi3_nodeacl_depend_item(struct se_node_acl
*nacl
)
1406 if (nacl
->dynamic_node_acl
)
1408 return target_depend_item(&nacl
->acl_group
.cg_item
);
1411 static void core_scsi3_nodeacl_undepend_item(struct se_node_acl
*nacl
)
1413 if (!nacl
->dynamic_node_acl
)
1414 target_undepend_item(&nacl
->acl_group
.cg_item
);
1415 atomic_dec_mb(&nacl
->acl_pr_ref_count
);
1418 static int core_scsi3_lunacl_depend_item(struct se_dev_entry
*se_deve
)
1420 struct se_lun_acl
*lun_acl
;
1421 struct se_node_acl
*nacl
;
1422 struct se_portal_group
*tpg
;
1424 * For nacl->dynamic_node_acl=1
1426 lun_acl
= rcu_dereference_check(se_deve
->se_lun_acl
,
1427 atomic_read(&se_deve
->pr_kref
.refcount
) != 0);
1431 nacl
= lun_acl
->se_lun_nacl
;
1434 return target_depend_item(&lun_acl
->se_lun_group
.cg_item
);
1437 static void core_scsi3_lunacl_undepend_item(struct se_dev_entry
*se_deve
)
1439 struct se_lun_acl
*lun_acl
;
1440 struct se_node_acl
*nacl
;
1441 struct se_portal_group
*tpg
;
1443 * For nacl->dynamic_node_acl=1
1445 lun_acl
= rcu_dereference_check(se_deve
->se_lun_acl
,
1446 atomic_read(&se_deve
->pr_kref
.refcount
) != 0);
1448 kref_put(&se_deve
->pr_kref
, target_pr_kref_release
);
1451 nacl
= lun_acl
->se_lun_nacl
;
1454 target_undepend_item(&lun_acl
->se_lun_group
.cg_item
);
1455 kref_put(&se_deve
->pr_kref
, target_pr_kref_release
);
1458 static sense_reason_t
1459 core_scsi3_decode_spec_i_port(
1461 struct se_portal_group
*tpg
,
1462 unsigned char *l_isid
,
1467 struct se_device
*dev
= cmd
->se_dev
;
1468 struct se_portal_group
*dest_tpg
= NULL
, *tmp_tpg
;
1469 struct se_session
*se_sess
= cmd
->se_sess
;
1470 struct se_node_acl
*dest_node_acl
= NULL
;
1471 struct se_dev_entry
*dest_se_deve
= NULL
;
1472 struct t10_pr_registration
*dest_pr_reg
, *local_pr_reg
, *pr_reg_e
;
1473 struct t10_pr_registration
*pr_reg_tmp
, *pr_reg_tmp_safe
;
1474 LIST_HEAD(tid_dest_list
);
1475 struct pr_transport_id_holder
*tidh_new
, *tidh
, *tidh_tmp
;
1476 unsigned char *buf
, *ptr
, proto_ident
;
1477 const unsigned char *i_str
= NULL
;
1478 char *iport_ptr
= NULL
, i_buf
[PR_REG_ISID_ID_LEN
];
1480 u32 tpdl
, tid_len
= 0;
1484 * Allocate a struct pr_transport_id_holder and setup the
1485 * local_node_acl pointer and add to struct list_head tid_dest_list
1486 * for add registration processing in the loop of tid_dest_list below.
1488 tidh_new
= kzalloc(sizeof(struct pr_transport_id_holder
), GFP_KERNEL
);
1490 pr_err("Unable to allocate tidh_new\n");
1491 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
1493 INIT_LIST_HEAD(&tidh_new
->dest_list
);
1494 tidh_new
->dest_tpg
= tpg
;
1495 tidh_new
->dest_node_acl
= se_sess
->se_node_acl
;
1497 local_pr_reg
= __core_scsi3_alloc_registration(cmd
->se_dev
,
1498 se_sess
->se_node_acl
, cmd
->se_lun
,
1499 NULL
, cmd
->orig_fe_lun
, l_isid
,
1500 sa_res_key
, all_tg_pt
, aptpl
);
1501 if (!local_pr_reg
) {
1503 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
1505 tidh_new
->dest_pr_reg
= local_pr_reg
;
1507 * The local I_T nexus does not hold any configfs dependances,
1508 * so we set tidh_new->dest_se_deve to NULL to prevent the
1509 * configfs_undepend_item() calls in the tid_dest_list loops below.
1511 tidh_new
->dest_se_deve
= NULL
;
1512 list_add_tail(&tidh_new
->dest_list
, &tid_dest_list
);
1514 if (cmd
->data_length
< 28) {
1515 pr_warn("SPC-PR: Received PR OUT parameter list"
1516 " length too small: %u\n", cmd
->data_length
);
1517 ret
= TCM_INVALID_PARAMETER_LIST
;
1521 buf
= transport_kmap_data_sg(cmd
);
1523 ret
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
1528 * For a PERSISTENT RESERVE OUT specify initiator ports payload,
1529 * first extract TransportID Parameter Data Length, and make sure
1530 * the value matches up to the SCSI expected data transfer length.
1532 tpdl
= (buf
[24] & 0xff) << 24;
1533 tpdl
|= (buf
[25] & 0xff) << 16;
1534 tpdl
|= (buf
[26] & 0xff) << 8;
1535 tpdl
|= buf
[27] & 0xff;
1537 if ((tpdl
+ 28) != cmd
->data_length
) {
1538 pr_err("SPC-3 PR: Illegal tpdl: %u + 28 byte header"
1539 " does not equal CDB data_length: %u\n", tpdl
,
1541 ret
= TCM_INVALID_PARAMETER_LIST
;
1545 * Start processing the received transport IDs using the
1546 * receiving I_T Nexus portal's fabric dependent methods to
1547 * obtain the SCSI Initiator Port/Device Identifiers.
1552 struct se_lun
*dest_lun
, *tmp_lun
;
1554 proto_ident
= (ptr
[0] & 0x0f);
1557 spin_lock(&dev
->se_port_lock
);
1558 list_for_each_entry(tmp_lun
, &dev
->dev_sep_list
, lun_dev_link
) {
1559 tmp_tpg
= tmp_lun
->lun_tpg
;
1562 * Look for the matching proto_ident provided by
1563 * the received TransportID
1565 if (tmp_tpg
->proto_id
!= proto_ident
)
1567 dest_rtpi
= tmp_lun
->lun_rtpi
;
1569 i_str
= target_parse_pr_out_transport_id(tmp_tpg
,
1570 (const char *)ptr
, &tid_len
, &iport_ptr
);
1574 atomic_inc_mb(&tmp_tpg
->tpg_pr_ref_count
);
1575 spin_unlock(&dev
->se_port_lock
);
1577 if (core_scsi3_tpg_depend_item(tmp_tpg
)) {
1578 pr_err(" core_scsi3_tpg_depend_item()"
1580 atomic_dec_mb(&tmp_tpg
->tpg_pr_ref_count
);
1581 ret
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
1585 * Locate the destination initiator ACL to be registered
1586 * from the decoded fabric module specific TransportID
1589 mutex_lock(&tmp_tpg
->acl_node_mutex
);
1590 dest_node_acl
= __core_tpg_get_initiator_node_acl(
1593 atomic_inc_mb(&dest_node_acl
->acl_pr_ref_count
);
1594 mutex_unlock(&tmp_tpg
->acl_node_mutex
);
1596 if (!dest_node_acl
) {
1597 core_scsi3_tpg_undepend_item(tmp_tpg
);
1598 spin_lock(&dev
->se_port_lock
);
1602 if (core_scsi3_nodeacl_depend_item(dest_node_acl
)) {
1603 pr_err("configfs_depend_item() failed"
1604 " for dest_node_acl->acl_group\n");
1605 atomic_dec_mb(&dest_node_acl
->acl_pr_ref_count
);
1606 core_scsi3_tpg_undepend_item(tmp_tpg
);
1607 ret
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
1612 pr_debug("SPC-3 PR SPEC_I_PT: Located %s Node:"
1613 " %s Port RTPI: %hu\n",
1614 dest_tpg
->se_tpg_tfo
->get_fabric_name(),
1615 dest_node_acl
->initiatorname
, dest_rtpi
);
1617 spin_lock(&dev
->se_port_lock
);
1620 spin_unlock(&dev
->se_port_lock
);
1623 pr_err("SPC-3 PR SPEC_I_PT: Unable to locate"
1625 ret
= TCM_INVALID_PARAMETER_LIST
;
1629 pr_debug("SPC-3 PR SPEC_I_PT: Got %s data_length: %u tpdl: %u"
1630 " tid_len: %d for %s + %s\n",
1631 dest_tpg
->se_tpg_tfo
->get_fabric_name(), cmd
->data_length
,
1632 tpdl
, tid_len
, i_str
, iport_ptr
);
1634 if (tid_len
> tpdl
) {
1635 pr_err("SPC-3 PR SPEC_I_PT: Illegal tid_len:"
1636 " %u for Transport ID: %s\n", tid_len
, ptr
);
1637 core_scsi3_nodeacl_undepend_item(dest_node_acl
);
1638 core_scsi3_tpg_undepend_item(dest_tpg
);
1639 ret
= TCM_INVALID_PARAMETER_LIST
;
1643 * Locate the desintation struct se_dev_entry pointer for matching
1644 * RELATIVE TARGET PORT IDENTIFIER on the receiving I_T Nexus
1647 dest_se_deve
= core_get_se_deve_from_rtpi(dest_node_acl
,
1649 if (!dest_se_deve
) {
1650 pr_err("Unable to locate %s dest_se_deve"
1651 " from destination RTPI: %hu\n",
1652 dest_tpg
->se_tpg_tfo
->get_fabric_name(),
1655 core_scsi3_nodeacl_undepend_item(dest_node_acl
);
1656 core_scsi3_tpg_undepend_item(dest_tpg
);
1657 ret
= TCM_INVALID_PARAMETER_LIST
;
1661 if (core_scsi3_lunacl_depend_item(dest_se_deve
)) {
1662 pr_err("core_scsi3_lunacl_depend_item()"
1664 kref_put(&dest_se_deve
->pr_kref
, target_pr_kref_release
);
1665 core_scsi3_nodeacl_undepend_item(dest_node_acl
);
1666 core_scsi3_tpg_undepend_item(dest_tpg
);
1667 ret
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
1671 pr_debug("SPC-3 PR SPEC_I_PT: Located %s Node: %s"
1672 " dest_se_deve mapped_lun: %llu\n",
1673 dest_tpg
->se_tpg_tfo
->get_fabric_name(),
1674 dest_node_acl
->initiatorname
, dest_se_deve
->mapped_lun
);
1677 * Skip any TransportIDs that already have a registration for
1680 pr_reg_e
= __core_scsi3_locate_pr_reg(dev
, dest_node_acl
,
1683 core_scsi3_put_pr_reg(pr_reg_e
);
1684 core_scsi3_lunacl_undepend_item(dest_se_deve
);
1685 core_scsi3_nodeacl_undepend_item(dest_node_acl
);
1686 core_scsi3_tpg_undepend_item(dest_tpg
);
1693 * Allocate a struct pr_transport_id_holder and setup
1694 * the dest_node_acl and dest_se_deve pointers for the
1697 tidh_new
= kzalloc(sizeof(struct pr_transport_id_holder
),
1700 pr_err("Unable to allocate tidh_new\n");
1701 core_scsi3_lunacl_undepend_item(dest_se_deve
);
1702 core_scsi3_nodeacl_undepend_item(dest_node_acl
);
1703 core_scsi3_tpg_undepend_item(dest_tpg
);
1704 ret
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
1707 INIT_LIST_HEAD(&tidh_new
->dest_list
);
1708 tidh_new
->dest_tpg
= dest_tpg
;
1709 tidh_new
->dest_node_acl
= dest_node_acl
;
1710 tidh_new
->dest_se_deve
= dest_se_deve
;
1713 * Allocate, but do NOT add the registration for the
1714 * TransportID referenced SCSI Initiator port. This
1715 * done because of the following from spc4r17 in section
1716 * 6.14.3 wrt SPEC_I_PT:
1718 * "If a registration fails for any initiator port (e.g., if th
1719 * logical unit does not have enough resources available to
1720 * hold the registration information), no registrations shall be
1721 * made, and the command shall be terminated with
1722 * CHECK CONDITION status."
1724 * That means we call __core_scsi3_alloc_registration() here,
1725 * and then call __core_scsi3_add_registration() in the
1726 * 2nd loop which will never fail.
1728 dest_lun
= rcu_dereference_check(dest_se_deve
->se_lun
,
1729 atomic_read(&dest_se_deve
->pr_kref
.refcount
) != 0);
1731 dest_pr_reg
= __core_scsi3_alloc_registration(cmd
->se_dev
,
1732 dest_node_acl
, dest_lun
, dest_se_deve
,
1733 dest_se_deve
->mapped_lun
, iport_ptr
,
1734 sa_res_key
, all_tg_pt
, aptpl
);
1736 core_scsi3_lunacl_undepend_item(dest_se_deve
);
1737 core_scsi3_nodeacl_undepend_item(dest_node_acl
);
1738 core_scsi3_tpg_undepend_item(dest_tpg
);
1740 ret
= TCM_INVALID_PARAMETER_LIST
;
1743 tidh_new
->dest_pr_reg
= dest_pr_reg
;
1744 list_add_tail(&tidh_new
->dest_list
, &tid_dest_list
);
1752 transport_kunmap_data_sg(cmd
);
1755 * Go ahead and create a registrations from tid_dest_list for the
1756 * SPEC_I_PT provided TransportID for the *tidh referenced dest_node_acl
1759 * The SA Reservation Key from the PROUT is set for the
1760 * registration, and ALL_TG_PT is also passed. ALL_TG_PT=1
1761 * means that the TransportID Initiator port will be
1762 * registered on all of the target ports in the SCSI target device
1763 * ALL_TG_PT=0 means the registration will only be for the
1764 * SCSI target port the PROUT REGISTER with SPEC_I_PT=1
1767 list_for_each_entry_safe(tidh
, tidh_tmp
, &tid_dest_list
, dest_list
) {
1768 dest_tpg
= tidh
->dest_tpg
;
1769 dest_node_acl
= tidh
->dest_node_acl
;
1770 dest_se_deve
= tidh
->dest_se_deve
;
1771 dest_pr_reg
= tidh
->dest_pr_reg
;
1773 list_del(&tidh
->dest_list
);
1776 memset(i_buf
, 0, PR_REG_ISID_ID_LEN
);
1777 core_pr_dump_initiator_port(dest_pr_reg
, i_buf
, PR_REG_ISID_ID_LEN
);
1779 __core_scsi3_add_registration(cmd
->se_dev
, dest_node_acl
,
1782 pr_debug("SPC-3 PR [%s] SPEC_I_PT: Successfully"
1783 " registered Transport ID for Node: %s%s Mapped LUN:"
1784 " %llu\n", dest_tpg
->se_tpg_tfo
->get_fabric_name(),
1785 dest_node_acl
->initiatorname
, i_buf
, (dest_se_deve
) ?
1786 dest_se_deve
->mapped_lun
: 0);
1791 core_scsi3_lunacl_undepend_item(dest_se_deve
);
1792 core_scsi3_nodeacl_undepend_item(dest_node_acl
);
1793 core_scsi3_tpg_undepend_item(dest_tpg
);
1798 transport_kunmap_data_sg(cmd
);
1801 * For the failure case, release everything from tid_dest_list
1802 * including *dest_pr_reg and the configfs dependances..
1804 list_for_each_entry_safe(tidh
, tidh_tmp
, &tid_dest_list
, dest_list
) {
1805 dest_tpg
= tidh
->dest_tpg
;
1806 dest_node_acl
= tidh
->dest_node_acl
;
1807 dest_se_deve
= tidh
->dest_se_deve
;
1808 dest_pr_reg
= tidh
->dest_pr_reg
;
1810 list_del(&tidh
->dest_list
);
1813 * Release any extra ALL_TG_PT=1 registrations for
1814 * the SPEC_I_PT=1 case.
1816 list_for_each_entry_safe(pr_reg_tmp
, pr_reg_tmp_safe
,
1817 &dest_pr_reg
->pr_reg_atp_list
,
1818 pr_reg_atp_mem_list
) {
1819 list_del(&pr_reg_tmp
->pr_reg_atp_mem_list
);
1820 core_scsi3_lunacl_undepend_item(pr_reg_tmp
->pr_reg_deve
);
1821 kmem_cache_free(t10_pr_reg_cache
, pr_reg_tmp
);
1824 kmem_cache_free(t10_pr_reg_cache
, dest_pr_reg
);
1829 core_scsi3_lunacl_undepend_item(dest_se_deve
);
1830 core_scsi3_nodeacl_undepend_item(dest_node_acl
);
1831 core_scsi3_tpg_undepend_item(dest_tpg
);
1836 static int core_scsi3_update_aptpl_buf(
1837 struct se_device
*dev
,
1839 u32 pr_aptpl_buf_len
)
1841 struct se_portal_group
*tpg
;
1842 struct t10_pr_registration
*pr_reg
;
1843 unsigned char tmp
[512], isid_buf
[32];
1848 spin_lock(&dev
->dev_reservation_lock
);
1849 spin_lock(&dev
->t10_pr
.registration_lock
);
1851 * Walk the registration list..
1853 list_for_each_entry(pr_reg
, &dev
->t10_pr
.registration_list
,
1858 tpg
= pr_reg
->pr_reg_nacl
->se_tpg
;
1860 * Write out any ISID value to APTPL metadata that was included
1861 * in the original registration.
1863 if (pr_reg
->isid_present_at_reg
)
1864 snprintf(isid_buf
, 32, "initiator_sid=%s\n",
1865 pr_reg
->pr_reg_isid
);
1867 * Include special metadata if the pr_reg matches the
1868 * reservation holder.
1870 if (dev
->dev_pr_res_holder
== pr_reg
) {
1871 snprintf(tmp
, 512, "PR_REG_START: %d"
1872 "\ninitiator_fabric=%s\n"
1873 "initiator_node=%s\n%s"
1875 "res_holder=1\nres_type=%02x\n"
1876 "res_scope=%02x\nres_all_tg_pt=%d\n"
1877 "mapped_lun=%llu\n", reg_count
,
1878 tpg
->se_tpg_tfo
->get_fabric_name(),
1879 pr_reg
->pr_reg_nacl
->initiatorname
, isid_buf
,
1880 pr_reg
->pr_res_key
, pr_reg
->pr_res_type
,
1881 pr_reg
->pr_res_scope
, pr_reg
->pr_reg_all_tg_pt
,
1882 pr_reg
->pr_res_mapped_lun
);
1884 snprintf(tmp
, 512, "PR_REG_START: %d\n"
1885 "initiator_fabric=%s\ninitiator_node=%s\n%s"
1886 "sa_res_key=%llu\nres_holder=0\n"
1887 "res_all_tg_pt=%d\nmapped_lun=%llu\n",
1888 reg_count
, tpg
->se_tpg_tfo
->get_fabric_name(),
1889 pr_reg
->pr_reg_nacl
->initiatorname
, isid_buf
,
1890 pr_reg
->pr_res_key
, pr_reg
->pr_reg_all_tg_pt
,
1891 pr_reg
->pr_res_mapped_lun
);
1894 if ((len
+ strlen(tmp
) >= pr_aptpl_buf_len
)) {
1895 pr_err("Unable to update renaming APTPL metadata,"
1896 " reallocating larger buffer\n");
1900 len
+= sprintf(buf
+len
, "%s", tmp
);
1903 * Include information about the associated SCSI target port.
1905 snprintf(tmp
, 512, "target_fabric=%s\ntarget_node=%s\n"
1906 "tpgt=%hu\nport_rtpi=%hu\ntarget_lun=%llu\nPR_REG_END:"
1907 " %d\n", tpg
->se_tpg_tfo
->get_fabric_name(),
1908 tpg
->se_tpg_tfo
->tpg_get_wwn(tpg
),
1909 tpg
->se_tpg_tfo
->tpg_get_tag(tpg
),
1910 pr_reg
->tg_pt_sep_rtpi
, pr_reg
->pr_aptpl_target_lun
,
1913 if ((len
+ strlen(tmp
) >= pr_aptpl_buf_len
)) {
1914 pr_err("Unable to update renaming APTPL metadata,"
1915 " reallocating larger buffer\n");
1919 len
+= sprintf(buf
+len
, "%s", tmp
);
1924 len
+= sprintf(buf
+len
, "No Registrations or Reservations");
1927 spin_unlock(&dev
->t10_pr
.registration_lock
);
1928 spin_unlock(&dev
->dev_reservation_lock
);
1933 static int __core_scsi3_write_aptpl_to_file(
1934 struct se_device
*dev
,
1937 struct t10_wwn
*wwn
= &dev
->t10_wwn
;
1939 int flags
= O_RDWR
| O_CREAT
| O_TRUNC
;
1941 u32 pr_aptpl_buf_len
;
1944 memset(path
, 0, 512);
1946 if (strlen(&wwn
->unit_serial
[0]) >= 512) {
1947 pr_err("WWN value for struct se_device does not fit"
1948 " into path buffer\n");
1952 snprintf(path
, 512, "/var/target/pr/aptpl_%s", &wwn
->unit_serial
[0]);
1953 file
= filp_open(path
, flags
, 0600);
1955 pr_err("filp_open(%s) for APTPL metadata"
1957 return PTR_ERR(file
);
1960 pr_aptpl_buf_len
= (strlen(buf
) + 1); /* Add extra for NULL */
1962 ret
= kernel_write(file
, buf
, pr_aptpl_buf_len
, 0);
1965 pr_debug("Error writing APTPL metadata file: %s\n", path
);
1968 return (ret
< 0) ? -EIO
: 0;
1972 * Clear the APTPL metadata if APTPL has been disabled, otherwise
1973 * write out the updated metadata to struct file for this SCSI device.
1975 static sense_reason_t
core_scsi3_update_and_write_aptpl(struct se_device
*dev
, bool aptpl
)
1978 int rc
, len
= PR_APTPL_BUF_LEN
;
1981 char *null_buf
= "No Registrations or Reservations\n";
1983 rc
= __core_scsi3_write_aptpl_to_file(dev
, null_buf
);
1984 dev
->t10_pr
.pr_aptpl_active
= 0;
1985 pr_debug("SPC-3 PR: Set APTPL Bit Deactivated\n");
1988 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
1995 return TCM_OUT_OF_RESOURCES
;
1997 rc
= core_scsi3_update_aptpl_buf(dev
, buf
, len
);
2004 rc
= __core_scsi3_write_aptpl_to_file(dev
, buf
);
2006 pr_err("SPC-3 PR: Could not update APTPL\n");
2008 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
2010 dev
->t10_pr
.pr_aptpl_active
= 1;
2012 pr_debug("SPC-3 PR: Set APTPL Bit Activated\n");
2016 static sense_reason_t
2017 core_scsi3_emulate_pro_register(struct se_cmd
*cmd
, u64 res_key
, u64 sa_res_key
,
2018 bool aptpl
, bool all_tg_pt
, bool spec_i_pt
, enum register_type register_type
)
2020 struct se_session
*se_sess
= cmd
->se_sess
;
2021 struct se_device
*dev
= cmd
->se_dev
;
2022 struct se_lun
*se_lun
= cmd
->se_lun
;
2023 struct se_portal_group
*se_tpg
;
2024 struct t10_pr_registration
*pr_reg
, *pr_reg_p
, *pr_reg_tmp
;
2025 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
2026 unsigned char isid_buf
[PR_REG_ISID_LEN
], *isid_ptr
= NULL
;
2027 sense_reason_t ret
= TCM_NO_SENSE
;
2028 int pr_holder
= 0, type
;
2030 if (!se_sess
|| !se_lun
) {
2031 pr_err("SPC-3 PR: se_sess || struct se_lun is NULL!\n");
2032 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
2034 se_tpg
= se_sess
->se_tpg
;
2036 if (se_tpg
->se_tpg_tfo
->sess_get_initiator_sid
) {
2037 memset(&isid_buf
[0], 0, PR_REG_ISID_LEN
);
2038 se_tpg
->se_tpg_tfo
->sess_get_initiator_sid(se_sess
, &isid_buf
[0],
2040 isid_ptr
= &isid_buf
[0];
2043 * Follow logic from spc4r17 Section 5.7.7, Register Behaviors Table 47
2045 pr_reg
= core_scsi3_locate_pr_reg(dev
, se_sess
->se_node_acl
, se_sess
);
2048 pr_warn("SPC-3 PR: Reservation Key non-zero"
2049 " for SA REGISTER, returning CONFLICT\n");
2050 return TCM_RESERVATION_CONFLICT
;
2053 * Do nothing but return GOOD status.
2060 * Perform the Service Action REGISTER on the Initiator
2061 * Port Endpoint that the PRO was received from on the
2062 * Logical Unit of the SCSI device server.
2064 if (core_scsi3_alloc_registration(cmd
->se_dev
,
2065 se_sess
->se_node_acl
, cmd
->se_lun
,
2066 NULL
, cmd
->orig_fe_lun
, isid_ptr
,
2067 sa_res_key
, all_tg_pt
, aptpl
,
2068 register_type
, 0)) {
2069 pr_err("Unable to allocate"
2070 " struct t10_pr_registration\n");
2071 return TCM_INVALID_PARAMETER_LIST
;
2075 * Register both the Initiator port that received
2076 * PROUT SA REGISTER + SPEC_I_PT=1 and extract SCSI
2077 * TransportID from Parameter list and loop through
2078 * fabric dependent parameter list while calling
2079 * logic from of core_scsi3_alloc_registration() for
2080 * each TransportID provided SCSI Initiator Port/Device
2082 ret
= core_scsi3_decode_spec_i_port(cmd
, se_tpg
,
2083 isid_ptr
, sa_res_key
, all_tg_pt
, aptpl
);
2087 return core_scsi3_update_and_write_aptpl(dev
, aptpl
);
2090 /* ok, existing registration */
2092 if ((register_type
== REGISTER
) && (res_key
!= pr_reg
->pr_res_key
)) {
2093 pr_err("SPC-3 PR REGISTER: Received"
2094 " res_key: 0x%016Lx does not match"
2095 " existing SA REGISTER res_key:"
2096 " 0x%016Lx\n", res_key
,
2097 pr_reg
->pr_res_key
);
2098 ret
= TCM_RESERVATION_CONFLICT
;
2103 pr_err("SPC-3 PR REGISTER: SPEC_I_PT"
2104 " set on a registered nexus\n");
2105 ret
= TCM_INVALID_PARAMETER_LIST
;
2110 * An existing ALL_TG_PT=1 registration being released
2111 * must also set ALL_TG_PT=1 in the incoming PROUT.
2113 if (pr_reg
->pr_reg_all_tg_pt
&& !all_tg_pt
) {
2114 pr_err("SPC-3 PR REGISTER: ALL_TG_PT=1"
2115 " registration exists, but ALL_TG_PT=1 bit not"
2116 " present in received PROUT\n");
2117 ret
= TCM_INVALID_CDB_FIELD
;
2122 * sa_res_key=1 Change Reservation Key for registered I_T Nexus.
2126 * Increment PRgeneration counter for struct se_device"
2127 * upon a successful REGISTER, see spc4r17 section 6.3.2
2128 * READ_KEYS service action.
2130 pr_reg
->pr_res_generation
= core_scsi3_pr_generation(cmd
->se_dev
);
2131 pr_reg
->pr_res_key
= sa_res_key
;
2132 pr_debug("SPC-3 PR [%s] REGISTER%s: Changed Reservation"
2133 " Key for %s to: 0x%016Lx PRgeneration:"
2134 " 0x%08x\n", cmd
->se_tfo
->get_fabric_name(),
2135 (register_type
== REGISTER_AND_IGNORE_EXISTING_KEY
) ? "_AND_IGNORE_EXISTING_KEY" : "",
2136 pr_reg
->pr_reg_nacl
->initiatorname
,
2137 pr_reg
->pr_res_key
, pr_reg
->pr_res_generation
);
2141 * sa_res_key=0 Unregister Reservation Key for registered I_T Nexus.
2143 type
= pr_reg
->pr_res_type
;
2144 pr_holder
= core_scsi3_check_implicit_release(cmd
->se_dev
,
2146 if (pr_holder
< 0) {
2147 ret
= TCM_RESERVATION_CONFLICT
;
2151 spin_lock(&pr_tmpl
->registration_lock
);
2153 * Release all ALL_TG_PT=1 for the matching SCSI Initiator Port
2154 * and matching pr_res_key.
2156 if (pr_reg
->pr_reg_all_tg_pt
) {
2157 list_for_each_entry_safe(pr_reg_p
, pr_reg_tmp
,
2158 &pr_tmpl
->registration_list
,
2161 if (!pr_reg_p
->pr_reg_all_tg_pt
)
2163 if (pr_reg_p
->pr_res_key
!= res_key
)
2165 if (pr_reg
== pr_reg_p
)
2167 if (strcmp(pr_reg
->pr_reg_nacl
->initiatorname
,
2168 pr_reg_p
->pr_reg_nacl
->initiatorname
))
2171 __core_scsi3_free_registration(dev
,
2177 * Release the calling I_T Nexus registration now..
2179 __core_scsi3_free_registration(cmd
->se_dev
, pr_reg
, NULL
, 1);
2183 * From spc4r17, section 5.7.11.3 Unregistering
2185 * If the persistent reservation is a registrants only
2186 * type, the device server shall establish a unit
2187 * attention condition for the initiator port associated
2188 * with every registered I_T nexus except for the I_T
2189 * nexus on which the PERSISTENT RESERVE OUT command was
2190 * received, with the additional sense code set to
2191 * RESERVATIONS RELEASED.
2194 (type
== PR_TYPE_WRITE_EXCLUSIVE_REGONLY
||
2195 type
== PR_TYPE_EXCLUSIVE_ACCESS_REGONLY
)) {
2196 list_for_each_entry(pr_reg_p
,
2197 &pr_tmpl
->registration_list
,
2200 target_ua_allocate_lun(
2201 pr_reg_p
->pr_reg_nacl
,
2202 pr_reg_p
->pr_res_mapped_lun
,
2204 ASCQ_2AH_RESERVATIONS_RELEASED
);
2208 spin_unlock(&pr_tmpl
->registration_lock
);
2211 ret
= core_scsi3_update_and_write_aptpl(dev
, aptpl
);
2215 core_scsi3_put_pr_reg(pr_reg
);
2219 unsigned char *core_scsi3_pr_dump_type(int type
)
2222 case PR_TYPE_WRITE_EXCLUSIVE
:
2223 return "Write Exclusive Access";
2224 case PR_TYPE_EXCLUSIVE_ACCESS
:
2225 return "Exclusive Access";
2226 case PR_TYPE_WRITE_EXCLUSIVE_REGONLY
:
2227 return "Write Exclusive Access, Registrants Only";
2228 case PR_TYPE_EXCLUSIVE_ACCESS_REGONLY
:
2229 return "Exclusive Access, Registrants Only";
2230 case PR_TYPE_WRITE_EXCLUSIVE_ALLREG
:
2231 return "Write Exclusive Access, All Registrants";
2232 case PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
:
2233 return "Exclusive Access, All Registrants";
2238 return "Unknown SPC-3 PR Type";
2241 static sense_reason_t
2242 core_scsi3_pro_reserve(struct se_cmd
*cmd
, int type
, int scope
, u64 res_key
)
2244 struct se_device
*dev
= cmd
->se_dev
;
2245 struct se_session
*se_sess
= cmd
->se_sess
;
2246 struct se_lun
*se_lun
= cmd
->se_lun
;
2247 struct t10_pr_registration
*pr_reg
, *pr_res_holder
;
2248 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
2249 char i_buf
[PR_REG_ISID_ID_LEN
];
2252 memset(i_buf
, 0, PR_REG_ISID_ID_LEN
);
2254 if (!se_sess
|| !se_lun
) {
2255 pr_err("SPC-3 PR: se_sess || struct se_lun is NULL!\n");
2256 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
2259 * Locate the existing *pr_reg via struct se_node_acl pointers
2261 pr_reg
= core_scsi3_locate_pr_reg(cmd
->se_dev
, se_sess
->se_node_acl
,
2264 pr_err("SPC-3 PR: Unable to locate"
2265 " PR_REGISTERED *pr_reg for RESERVE\n");
2266 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
2269 * From spc4r17 Section 5.7.9: Reserving:
2271 * An application client creates a persistent reservation by issuing
2272 * a PERSISTENT RESERVE OUT command with RESERVE service action through
2273 * a registered I_T nexus with the following parameters:
2274 * a) RESERVATION KEY set to the value of the reservation key that is
2275 * registered with the logical unit for the I_T nexus; and
2277 if (res_key
!= pr_reg
->pr_res_key
) {
2278 pr_err("SPC-3 PR RESERVE: Received res_key: 0x%016Lx"
2279 " does not match existing SA REGISTER res_key:"
2280 " 0x%016Lx\n", res_key
, pr_reg
->pr_res_key
);
2281 ret
= TCM_RESERVATION_CONFLICT
;
2282 goto out_put_pr_reg
;
2285 * From spc4r17 Section 5.7.9: Reserving:
2288 * b) TYPE field and SCOPE field set to the persistent reservation
2291 * Only one persistent reservation is allowed at a time per logical unit
2292 * and that persistent reservation has a scope of LU_SCOPE.
2294 if (scope
!= PR_SCOPE_LU_SCOPE
) {
2295 pr_err("SPC-3 PR: Illegal SCOPE: 0x%02x\n", scope
);
2296 ret
= TCM_INVALID_PARAMETER_LIST
;
2297 goto out_put_pr_reg
;
2300 * See if we have an existing PR reservation holder pointer at
2301 * struct se_device->dev_pr_res_holder in the form struct t10_pr_registration
2304 spin_lock(&dev
->dev_reservation_lock
);
2305 pr_res_holder
= dev
->dev_pr_res_holder
;
2306 if (pr_res_holder
) {
2308 * From spc4r17 Section 5.7.9: Reserving:
2310 * If the device server receives a PERSISTENT RESERVE OUT
2311 * command from an I_T nexus other than a persistent reservation
2312 * holder (see 5.7.10) that attempts to create a persistent
2313 * reservation when a persistent reservation already exists for
2314 * the logical unit, then the command shall be completed with
2315 * RESERVATION CONFLICT status.
2317 if (!is_reservation_holder(pr_res_holder
, pr_reg
)) {
2318 struct se_node_acl
*pr_res_nacl
= pr_res_holder
->pr_reg_nacl
;
2319 pr_err("SPC-3 PR: Attempted RESERVE from"
2320 " [%s]: %s while reservation already held by"
2321 " [%s]: %s, returning RESERVATION_CONFLICT\n",
2322 cmd
->se_tfo
->get_fabric_name(),
2323 se_sess
->se_node_acl
->initiatorname
,
2324 pr_res_nacl
->se_tpg
->se_tpg_tfo
->get_fabric_name(),
2325 pr_res_holder
->pr_reg_nacl
->initiatorname
);
2327 spin_unlock(&dev
->dev_reservation_lock
);
2328 ret
= TCM_RESERVATION_CONFLICT
;
2329 goto out_put_pr_reg
;
2332 * From spc4r17 Section 5.7.9: Reserving:
2334 * If a persistent reservation holder attempts to modify the
2335 * type or scope of an existing persistent reservation, the
2336 * command shall be completed with RESERVATION CONFLICT status.
2338 if ((pr_res_holder
->pr_res_type
!= type
) ||
2339 (pr_res_holder
->pr_res_scope
!= scope
)) {
2340 struct se_node_acl
*pr_res_nacl
= pr_res_holder
->pr_reg_nacl
;
2341 pr_err("SPC-3 PR: Attempted RESERVE from"
2342 " [%s]: %s trying to change TYPE and/or SCOPE,"
2343 " while reservation already held by [%s]: %s,"
2344 " returning RESERVATION_CONFLICT\n",
2345 cmd
->se_tfo
->get_fabric_name(),
2346 se_sess
->se_node_acl
->initiatorname
,
2347 pr_res_nacl
->se_tpg
->se_tpg_tfo
->get_fabric_name(),
2348 pr_res_holder
->pr_reg_nacl
->initiatorname
);
2350 spin_unlock(&dev
->dev_reservation_lock
);
2351 ret
= TCM_RESERVATION_CONFLICT
;
2352 goto out_put_pr_reg
;
2355 * From spc4r17 Section 5.7.9: Reserving:
2357 * If the device server receives a PERSISTENT RESERVE OUT
2358 * command with RESERVE service action where the TYPE field and
2359 * the SCOPE field contain the same values as the existing type
2360 * and scope from a persistent reservation holder, it shall not
2361 * make any change to the existing persistent reservation and
2362 * shall completethe command with GOOD status.
2364 spin_unlock(&dev
->dev_reservation_lock
);
2366 goto out_put_pr_reg
;
2369 * Otherwise, our *pr_reg becomes the PR reservation holder for said
2370 * TYPE/SCOPE. Also set the received scope and type in *pr_reg.
2372 pr_reg
->pr_res_scope
= scope
;
2373 pr_reg
->pr_res_type
= type
;
2374 pr_reg
->pr_res_holder
= 1;
2375 dev
->dev_pr_res_holder
= pr_reg
;
2376 core_pr_dump_initiator_port(pr_reg
, i_buf
, PR_REG_ISID_ID_LEN
);
2378 pr_debug("SPC-3 PR [%s] Service Action: RESERVE created new"
2379 " reservation holder TYPE: %s ALL_TG_PT: %d\n",
2380 cmd
->se_tfo
->get_fabric_name(), core_scsi3_pr_dump_type(type
),
2381 (pr_reg
->pr_reg_all_tg_pt
) ? 1 : 0);
2382 pr_debug("SPC-3 PR [%s] RESERVE Node: %s%s\n",
2383 cmd
->se_tfo
->get_fabric_name(),
2384 se_sess
->se_node_acl
->initiatorname
,
2386 spin_unlock(&dev
->dev_reservation_lock
);
2388 if (pr_tmpl
->pr_aptpl_active
)
2389 core_scsi3_update_and_write_aptpl(cmd
->se_dev
, true);
2393 core_scsi3_put_pr_reg(pr_reg
);
2397 static sense_reason_t
2398 core_scsi3_emulate_pro_reserve(struct se_cmd
*cmd
, int type
, int scope
,
2402 case PR_TYPE_WRITE_EXCLUSIVE
:
2403 case PR_TYPE_EXCLUSIVE_ACCESS
:
2404 case PR_TYPE_WRITE_EXCLUSIVE_REGONLY
:
2405 case PR_TYPE_EXCLUSIVE_ACCESS_REGONLY
:
2406 case PR_TYPE_WRITE_EXCLUSIVE_ALLREG
:
2407 case PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
:
2408 return core_scsi3_pro_reserve(cmd
, type
, scope
, res_key
);
2410 pr_err("SPC-3 PR: Unknown Service Action RESERVE Type:"
2412 return TCM_INVALID_CDB_FIELD
;
2417 * Called with struct se_device->dev_reservation_lock held.
2419 static void __core_scsi3_complete_pro_release(
2420 struct se_device
*dev
,
2421 struct se_node_acl
*se_nacl
,
2422 struct t10_pr_registration
*pr_reg
,
2426 const struct target_core_fabric_ops
*tfo
= se_nacl
->se_tpg
->se_tpg_tfo
;
2427 char i_buf
[PR_REG_ISID_ID_LEN
];
2428 int pr_res_type
= 0, pr_res_scope
= 0;
2430 memset(i_buf
, 0, PR_REG_ISID_ID_LEN
);
2431 core_pr_dump_initiator_port(pr_reg
, i_buf
, PR_REG_ISID_ID_LEN
);
2433 * Go ahead and release the current PR reservation holder.
2434 * If an All Registrants reservation is currently active and
2435 * a unregister operation is requested, replace the current
2436 * dev_pr_res_holder with another active registration.
2438 if (dev
->dev_pr_res_holder
) {
2439 pr_res_type
= dev
->dev_pr_res_holder
->pr_res_type
;
2440 pr_res_scope
= dev
->dev_pr_res_holder
->pr_res_scope
;
2441 dev
->dev_pr_res_holder
->pr_res_type
= 0;
2442 dev
->dev_pr_res_holder
->pr_res_scope
= 0;
2443 dev
->dev_pr_res_holder
->pr_res_holder
= 0;
2444 dev
->dev_pr_res_holder
= NULL
;
2449 spin_lock(&dev
->t10_pr
.registration_lock
);
2450 list_del_init(&pr_reg
->pr_reg_list
);
2452 * If the I_T nexus is a reservation holder, the persistent reservation
2453 * is of an all registrants type, and the I_T nexus is the last remaining
2454 * registered I_T nexus, then the device server shall also release the
2455 * persistent reservation.
2457 if (!list_empty(&dev
->t10_pr
.registration_list
) &&
2458 ((pr_res_type
== PR_TYPE_WRITE_EXCLUSIVE_ALLREG
) ||
2459 (pr_res_type
== PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
))) {
2460 dev
->dev_pr_res_holder
=
2461 list_entry(dev
->t10_pr
.registration_list
.next
,
2462 struct t10_pr_registration
, pr_reg_list
);
2463 dev
->dev_pr_res_holder
->pr_res_type
= pr_res_type
;
2464 dev
->dev_pr_res_holder
->pr_res_scope
= pr_res_scope
;
2465 dev
->dev_pr_res_holder
->pr_res_holder
= 1;
2467 spin_unlock(&dev
->t10_pr
.registration_lock
);
2469 if (!dev
->dev_pr_res_holder
) {
2470 pr_debug("SPC-3 PR [%s] Service Action: %s RELEASE cleared"
2471 " reservation holder TYPE: %s ALL_TG_PT: %d\n",
2472 tfo
->get_fabric_name(), (explicit) ? "explicit" :
2473 "implicit", core_scsi3_pr_dump_type(pr_res_type
),
2474 (pr_reg
->pr_reg_all_tg_pt
) ? 1 : 0);
2476 pr_debug("SPC-3 PR [%s] RELEASE Node: %s%s\n",
2477 tfo
->get_fabric_name(), se_nacl
->initiatorname
,
2480 * Clear TYPE and SCOPE for the next PROUT Service Action: RESERVE
2482 pr_reg
->pr_res_holder
= pr_reg
->pr_res_type
= pr_reg
->pr_res_scope
= 0;
2485 static sense_reason_t
2486 core_scsi3_emulate_pro_release(struct se_cmd
*cmd
, int type
, int scope
,
2489 struct se_device
*dev
= cmd
->se_dev
;
2490 struct se_session
*se_sess
= cmd
->se_sess
;
2491 struct se_lun
*se_lun
= cmd
->se_lun
;
2492 struct t10_pr_registration
*pr_reg
, *pr_reg_p
, *pr_res_holder
;
2493 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
2494 sense_reason_t ret
= 0;
2496 if (!se_sess
|| !se_lun
) {
2497 pr_err("SPC-3 PR: se_sess || struct se_lun is NULL!\n");
2498 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
2501 * Locate the existing *pr_reg via struct se_node_acl pointers
2503 pr_reg
= core_scsi3_locate_pr_reg(dev
, se_sess
->se_node_acl
, se_sess
);
2505 pr_err("SPC-3 PR: Unable to locate"
2506 " PR_REGISTERED *pr_reg for RELEASE\n");
2507 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
2510 * From spc4r17 Section 5.7.11.2 Releasing:
2512 * If there is no persistent reservation or in response to a persistent
2513 * reservation release request from a registered I_T nexus that is not a
2514 * persistent reservation holder (see 5.7.10), the device server shall
2517 * a) Not release the persistent reservation, if any;
2518 * b) Not remove any registrations; and
2519 * c) Complete the command with GOOD status.
2521 spin_lock(&dev
->dev_reservation_lock
);
2522 pr_res_holder
= dev
->dev_pr_res_holder
;
2523 if (!pr_res_holder
) {
2525 * No persistent reservation, return GOOD status.
2527 spin_unlock(&dev
->dev_reservation_lock
);
2528 goto out_put_pr_reg
;
2531 if (!is_reservation_holder(pr_res_holder
, pr_reg
)) {
2533 * Release request from a registered I_T nexus that is not a
2534 * persistent reservation holder. return GOOD status.
2536 spin_unlock(&dev
->dev_reservation_lock
);
2537 goto out_put_pr_reg
;
2541 * From spc4r17 Section 5.7.11.2 Releasing:
2543 * Only the persistent reservation holder (see 5.7.10) is allowed to
2544 * release a persistent reservation.
2546 * An application client releases the persistent reservation by issuing
2547 * a PERSISTENT RESERVE OUT command with RELEASE service action through
2548 * an I_T nexus that is a persistent reservation holder with the
2549 * following parameters:
2551 * a) RESERVATION KEY field set to the value of the reservation key
2552 * that is registered with the logical unit for the I_T nexus;
2554 if (res_key
!= pr_reg
->pr_res_key
) {
2555 pr_err("SPC-3 PR RELEASE: Received res_key: 0x%016Lx"
2556 " does not match existing SA REGISTER res_key:"
2557 " 0x%016Lx\n", res_key
, pr_reg
->pr_res_key
);
2558 spin_unlock(&dev
->dev_reservation_lock
);
2559 ret
= TCM_RESERVATION_CONFLICT
;
2560 goto out_put_pr_reg
;
2563 * From spc4r17 Section 5.7.11.2 Releasing and above:
2565 * b) TYPE field and SCOPE field set to match the persistent
2566 * reservation being released.
2568 if ((pr_res_holder
->pr_res_type
!= type
) ||
2569 (pr_res_holder
->pr_res_scope
!= scope
)) {
2570 struct se_node_acl
*pr_res_nacl
= pr_res_holder
->pr_reg_nacl
;
2571 pr_err("SPC-3 PR RELEASE: Attempted to release"
2572 " reservation from [%s]: %s with different TYPE "
2573 "and/or SCOPE while reservation already held by"
2574 " [%s]: %s, returning RESERVATION_CONFLICT\n",
2575 cmd
->se_tfo
->get_fabric_name(),
2576 se_sess
->se_node_acl
->initiatorname
,
2577 pr_res_nacl
->se_tpg
->se_tpg_tfo
->get_fabric_name(),
2578 pr_res_holder
->pr_reg_nacl
->initiatorname
);
2580 spin_unlock(&dev
->dev_reservation_lock
);
2581 ret
= TCM_RESERVATION_CONFLICT
;
2582 goto out_put_pr_reg
;
2585 * In response to a persistent reservation release request from the
2586 * persistent reservation holder the device server shall perform a
2587 * release by doing the following as an uninterrupted series of actions:
2588 * a) Release the persistent reservation;
2589 * b) Not remove any registration(s);
2590 * c) If the released persistent reservation is a registrants only type
2591 * or all registrants type persistent reservation,
2592 * the device server shall establish a unit attention condition for
2593 * the initiator port associated with every regis-
2594 * tered I_T nexus other than I_T nexus on which the PERSISTENT
2595 * RESERVE OUT command with RELEASE service action was received,
2596 * with the additional sense code set to RESERVATIONS RELEASED; and
2597 * d) If the persistent reservation is of any other type, the device
2598 * server shall not establish a unit attention condition.
2600 __core_scsi3_complete_pro_release(dev
, se_sess
->se_node_acl
,
2603 spin_unlock(&dev
->dev_reservation_lock
);
2605 if ((type
!= PR_TYPE_WRITE_EXCLUSIVE_REGONLY
) &&
2606 (type
!= PR_TYPE_EXCLUSIVE_ACCESS_REGONLY
) &&
2607 (type
!= PR_TYPE_WRITE_EXCLUSIVE_ALLREG
) &&
2608 (type
!= PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
)) {
2610 * If no UNIT ATTENTION conditions will be established for
2611 * PR_TYPE_WRITE_EXCLUSIVE or PR_TYPE_EXCLUSIVE_ACCESS
2612 * go ahead and check for APTPL=1 update+write below
2617 spin_lock(&pr_tmpl
->registration_lock
);
2618 list_for_each_entry(pr_reg_p
, &pr_tmpl
->registration_list
,
2621 * Do not establish a UNIT ATTENTION condition
2622 * for the calling I_T Nexus
2624 if (pr_reg_p
== pr_reg
)
2627 target_ua_allocate_lun(pr_reg_p
->pr_reg_nacl
,
2628 pr_reg_p
->pr_res_mapped_lun
,
2629 0x2A, ASCQ_2AH_RESERVATIONS_RELEASED
);
2631 spin_unlock(&pr_tmpl
->registration_lock
);
2634 if (pr_tmpl
->pr_aptpl_active
)
2635 core_scsi3_update_and_write_aptpl(cmd
->se_dev
, true);
2638 core_scsi3_put_pr_reg(pr_reg
);
2642 static sense_reason_t
2643 core_scsi3_emulate_pro_clear(struct se_cmd
*cmd
, u64 res_key
)
2645 struct se_device
*dev
= cmd
->se_dev
;
2646 struct se_node_acl
*pr_reg_nacl
;
2647 struct se_session
*se_sess
= cmd
->se_sess
;
2648 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
2649 struct t10_pr_registration
*pr_reg
, *pr_reg_tmp
, *pr_reg_n
, *pr_res_holder
;
2650 u64 pr_res_mapped_lun
= 0;
2651 int calling_it_nexus
= 0;
2653 * Locate the existing *pr_reg via struct se_node_acl pointers
2655 pr_reg_n
= core_scsi3_locate_pr_reg(cmd
->se_dev
,
2656 se_sess
->se_node_acl
, se_sess
);
2658 pr_err("SPC-3 PR: Unable to locate"
2659 " PR_REGISTERED *pr_reg for CLEAR\n");
2660 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
2663 * From spc4r17 section 5.7.11.6, Clearing:
2665 * Any application client may release the persistent reservation and
2666 * remove all registrations from a device server by issuing a
2667 * PERSISTENT RESERVE OUT command with CLEAR service action through a
2668 * registered I_T nexus with the following parameter:
2670 * a) RESERVATION KEY field set to the value of the reservation key
2671 * that is registered with the logical unit for the I_T nexus.
2673 if (res_key
!= pr_reg_n
->pr_res_key
) {
2674 pr_err("SPC-3 PR REGISTER: Received"
2675 " res_key: 0x%016Lx does not match"
2676 " existing SA REGISTER res_key:"
2677 " 0x%016Lx\n", res_key
, pr_reg_n
->pr_res_key
);
2678 core_scsi3_put_pr_reg(pr_reg_n
);
2679 return TCM_RESERVATION_CONFLICT
;
2682 * a) Release the persistent reservation, if any;
2684 spin_lock(&dev
->dev_reservation_lock
);
2685 pr_res_holder
= dev
->dev_pr_res_holder
;
2686 if (pr_res_holder
) {
2687 struct se_node_acl
*pr_res_nacl
= pr_res_holder
->pr_reg_nacl
;
2688 __core_scsi3_complete_pro_release(dev
, pr_res_nacl
,
2689 pr_res_holder
, 0, 0);
2691 spin_unlock(&dev
->dev_reservation_lock
);
2693 * b) Remove all registration(s) (see spc4r17 5.7.7);
2695 spin_lock(&pr_tmpl
->registration_lock
);
2696 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
,
2697 &pr_tmpl
->registration_list
, pr_reg_list
) {
2699 calling_it_nexus
= (pr_reg_n
== pr_reg
) ? 1 : 0;
2700 pr_reg_nacl
= pr_reg
->pr_reg_nacl
;
2701 pr_res_mapped_lun
= pr_reg
->pr_res_mapped_lun
;
2702 __core_scsi3_free_registration(dev
, pr_reg
, NULL
,
2705 * e) Establish a unit attention condition for the initiator
2706 * port associated with every registered I_T nexus other
2707 * than the I_T nexus on which the PERSISTENT RESERVE OUT
2708 * command with CLEAR service action was received, with the
2709 * additional sense code set to RESERVATIONS PREEMPTED.
2711 if (!calling_it_nexus
)
2712 target_ua_allocate_lun(pr_reg_nacl
, pr_res_mapped_lun
,
2713 0x2A, ASCQ_2AH_RESERVATIONS_PREEMPTED
);
2715 spin_unlock(&pr_tmpl
->registration_lock
);
2717 pr_debug("SPC-3 PR [%s] Service Action: CLEAR complete\n",
2718 cmd
->se_tfo
->get_fabric_name());
2720 core_scsi3_update_and_write_aptpl(cmd
->se_dev
, false);
2722 core_scsi3_pr_generation(dev
);
2727 * Called with struct se_device->dev_reservation_lock held.
2729 static void __core_scsi3_complete_pro_preempt(
2730 struct se_device
*dev
,
2731 struct t10_pr_registration
*pr_reg
,
2732 struct list_head
*preempt_and_abort_list
,
2735 enum preempt_type preempt_type
)
2737 struct se_node_acl
*nacl
= pr_reg
->pr_reg_nacl
;
2738 const struct target_core_fabric_ops
*tfo
= nacl
->se_tpg
->se_tpg_tfo
;
2739 char i_buf
[PR_REG_ISID_ID_LEN
];
2741 memset(i_buf
, 0, PR_REG_ISID_ID_LEN
);
2742 core_pr_dump_initiator_port(pr_reg
, i_buf
, PR_REG_ISID_ID_LEN
);
2744 * Do an implicit RELEASE of the existing reservation.
2746 if (dev
->dev_pr_res_holder
)
2747 __core_scsi3_complete_pro_release(dev
, nacl
,
2748 dev
->dev_pr_res_holder
, 0, 0);
2750 dev
->dev_pr_res_holder
= pr_reg
;
2751 pr_reg
->pr_res_holder
= 1;
2752 pr_reg
->pr_res_type
= type
;
2753 pr_reg
->pr_res_scope
= scope
;
2755 pr_debug("SPC-3 PR [%s] Service Action: PREEMPT%s created new"
2756 " reservation holder TYPE: %s ALL_TG_PT: %d\n",
2757 tfo
->get_fabric_name(), (preempt_type
== PREEMPT_AND_ABORT
) ? "_AND_ABORT" : "",
2758 core_scsi3_pr_dump_type(type
),
2759 (pr_reg
->pr_reg_all_tg_pt
) ? 1 : 0);
2760 pr_debug("SPC-3 PR [%s] PREEMPT%s from Node: %s%s\n",
2761 tfo
->get_fabric_name(), (preempt_type
== PREEMPT_AND_ABORT
) ? "_AND_ABORT" : "",
2762 nacl
->initiatorname
, i_buf
);
2764 * For PREEMPT_AND_ABORT, add the preempting reservation's
2765 * struct t10_pr_registration to the list that will be compared
2766 * against received CDBs..
2768 if (preempt_and_abort_list
)
2769 list_add_tail(&pr_reg
->pr_reg_abort_list
,
2770 preempt_and_abort_list
);
2773 static void core_scsi3_release_preempt_and_abort(
2774 struct list_head
*preempt_and_abort_list
,
2775 struct t10_pr_registration
*pr_reg_holder
)
2777 struct t10_pr_registration
*pr_reg
, *pr_reg_tmp
;
2779 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
, preempt_and_abort_list
,
2780 pr_reg_abort_list
) {
2782 list_del(&pr_reg
->pr_reg_abort_list
);
2783 if (pr_reg_holder
== pr_reg
)
2785 if (pr_reg
->pr_res_holder
) {
2786 pr_warn("pr_reg->pr_res_holder still set\n");
2790 pr_reg
->pr_reg_deve
= NULL
;
2791 pr_reg
->pr_reg_nacl
= NULL
;
2792 kmem_cache_free(t10_pr_reg_cache
, pr_reg
);
2796 static sense_reason_t
2797 core_scsi3_pro_preempt(struct se_cmd
*cmd
, int type
, int scope
, u64 res_key
,
2798 u64 sa_res_key
, enum preempt_type preempt_type
)
2800 struct se_device
*dev
= cmd
->se_dev
;
2801 struct se_node_acl
*pr_reg_nacl
;
2802 struct se_session
*se_sess
= cmd
->se_sess
;
2803 LIST_HEAD(preempt_and_abort_list
);
2804 struct t10_pr_registration
*pr_reg
, *pr_reg_tmp
, *pr_reg_n
, *pr_res_holder
;
2805 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
2806 u64 pr_res_mapped_lun
= 0;
2807 int all_reg
= 0, calling_it_nexus
= 0;
2808 bool sa_res_key_unmatched
= sa_res_key
!= 0;
2809 int prh_type
= 0, prh_scope
= 0;
2812 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
2814 pr_reg_n
= core_scsi3_locate_pr_reg(cmd
->se_dev
, se_sess
->se_node_acl
,
2817 pr_err("SPC-3 PR: Unable to locate"
2818 " PR_REGISTERED *pr_reg for PREEMPT%s\n",
2819 (preempt_type
== PREEMPT_AND_ABORT
) ? "_AND_ABORT" : "");
2820 return TCM_RESERVATION_CONFLICT
;
2822 if (pr_reg_n
->pr_res_key
!= res_key
) {
2823 core_scsi3_put_pr_reg(pr_reg_n
);
2824 return TCM_RESERVATION_CONFLICT
;
2826 if (scope
!= PR_SCOPE_LU_SCOPE
) {
2827 pr_err("SPC-3 PR: Illegal SCOPE: 0x%02x\n", scope
);
2828 core_scsi3_put_pr_reg(pr_reg_n
);
2829 return TCM_INVALID_PARAMETER_LIST
;
2832 spin_lock(&dev
->dev_reservation_lock
);
2833 pr_res_holder
= dev
->dev_pr_res_holder
;
2834 if (pr_res_holder
&&
2835 ((pr_res_holder
->pr_res_type
== PR_TYPE_WRITE_EXCLUSIVE_ALLREG
) ||
2836 (pr_res_holder
->pr_res_type
== PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
)))
2839 if (!all_reg
&& !sa_res_key
) {
2840 spin_unlock(&dev
->dev_reservation_lock
);
2841 core_scsi3_put_pr_reg(pr_reg_n
);
2842 return TCM_INVALID_PARAMETER_LIST
;
2845 * From spc4r17, section 5.7.11.4.4 Removing Registrations:
2847 * If the SERVICE ACTION RESERVATION KEY field does not identify a
2848 * persistent reservation holder or there is no persistent reservation
2849 * holder (i.e., there is no persistent reservation), then the device
2850 * server shall perform a preempt by doing the following in an
2851 * uninterrupted series of actions. (See below..)
2853 if (!pr_res_holder
|| (pr_res_holder
->pr_res_key
!= sa_res_key
)) {
2855 * No existing or SA Reservation Key matching reservations..
2857 * PROUT SA PREEMPT with All Registrant type reservations are
2858 * allowed to be processed without a matching SA Reservation Key
2860 spin_lock(&pr_tmpl
->registration_lock
);
2861 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
,
2862 &pr_tmpl
->registration_list
, pr_reg_list
) {
2864 * Removing of registrations in non all registrants
2865 * type reservations without a matching SA reservation
2868 * a) Remove the registrations for all I_T nexuses
2869 * specified by the SERVICE ACTION RESERVATION KEY
2871 * b) Ignore the contents of the SCOPE and TYPE fields;
2872 * c) Process tasks as defined in 5.7.1; and
2873 * d) Establish a unit attention condition for the
2874 * initiator port associated with every I_T nexus
2875 * that lost its registration other than the I_T
2876 * nexus on which the PERSISTENT RESERVE OUT command
2877 * was received, with the additional sense code set
2878 * to REGISTRATIONS PREEMPTED.
2881 if (pr_reg
->pr_res_key
!= sa_res_key
)
2883 sa_res_key_unmatched
= false;
2885 calling_it_nexus
= (pr_reg_n
== pr_reg
) ? 1 : 0;
2886 pr_reg_nacl
= pr_reg
->pr_reg_nacl
;
2887 pr_res_mapped_lun
= pr_reg
->pr_res_mapped_lun
;
2888 __core_scsi3_free_registration(dev
, pr_reg
,
2889 (preempt_type
== PREEMPT_AND_ABORT
) ? &preempt_and_abort_list
:
2890 NULL
, calling_it_nexus
);
2893 * Case for any existing all registrants type
2894 * reservation, follow logic in spc4r17 section
2895 * 5.7.11.4 Preempting, Table 52 and Figure 7.
2897 * For a ZERO SA Reservation key, release
2898 * all other registrations and do an implicit
2899 * release of active persistent reservation.
2901 * For a non-ZERO SA Reservation key, only
2902 * release the matching reservation key from
2906 (pr_reg
->pr_res_key
!= sa_res_key
))
2908 sa_res_key_unmatched
= false;
2910 calling_it_nexus
= (pr_reg_n
== pr_reg
) ? 1 : 0;
2911 if (calling_it_nexus
)
2914 pr_reg_nacl
= pr_reg
->pr_reg_nacl
;
2915 pr_res_mapped_lun
= pr_reg
->pr_res_mapped_lun
;
2916 __core_scsi3_free_registration(dev
, pr_reg
,
2917 (preempt_type
== PREEMPT_AND_ABORT
) ? &preempt_and_abort_list
:
2920 if (!calling_it_nexus
)
2921 target_ua_allocate_lun(pr_reg_nacl
,
2922 pr_res_mapped_lun
, 0x2A,
2923 ASCQ_2AH_REGISTRATIONS_PREEMPTED
);
2925 spin_unlock(&pr_tmpl
->registration_lock
);
2927 * If a PERSISTENT RESERVE OUT with a PREEMPT service action or
2928 * a PREEMPT AND ABORT service action sets the SERVICE ACTION
2929 * RESERVATION KEY field to a value that does not match any
2930 * registered reservation key, then the device server shall
2931 * complete the command with RESERVATION CONFLICT status.
2933 if (sa_res_key_unmatched
) {
2934 spin_unlock(&dev
->dev_reservation_lock
);
2935 core_scsi3_put_pr_reg(pr_reg_n
);
2936 return TCM_RESERVATION_CONFLICT
;
2939 * For an existing all registrants type reservation
2940 * with a zero SA rservation key, preempt the existing
2941 * reservation with the new PR type and scope.
2943 if (pr_res_holder
&& all_reg
&& !(sa_res_key
)) {
2944 __core_scsi3_complete_pro_preempt(dev
, pr_reg_n
,
2945 (preempt_type
== PREEMPT_AND_ABORT
) ? &preempt_and_abort_list
: NULL
,
2946 type
, scope
, preempt_type
);
2948 if (preempt_type
== PREEMPT_AND_ABORT
)
2949 core_scsi3_release_preempt_and_abort(
2950 &preempt_and_abort_list
, pr_reg_n
);
2952 spin_unlock(&dev
->dev_reservation_lock
);
2954 if (pr_tmpl
->pr_aptpl_active
)
2955 core_scsi3_update_and_write_aptpl(cmd
->se_dev
, true);
2957 core_scsi3_put_pr_reg(pr_reg_n
);
2958 core_scsi3_pr_generation(cmd
->se_dev
);
2962 * The PREEMPTing SA reservation key matches that of the
2963 * existing persistent reservation, first, we check if
2964 * we are preempting our own reservation.
2965 * From spc4r17, section 5.7.11.4.3 Preempting
2966 * persistent reservations and registration handling
2968 * If an all registrants persistent reservation is not
2969 * present, it is not an error for the persistent
2970 * reservation holder to preempt itself (i.e., a
2971 * PERSISTENT RESERVE OUT with a PREEMPT service action
2972 * or a PREEMPT AND ABORT service action with the
2973 * SERVICE ACTION RESERVATION KEY value equal to the
2974 * persistent reservation holder's reservation key that
2975 * is received from the persistent reservation holder).
2976 * In that case, the device server shall establish the
2977 * new persistent reservation and maintain the
2980 prh_type
= pr_res_holder
->pr_res_type
;
2981 prh_scope
= pr_res_holder
->pr_res_scope
;
2983 * If the SERVICE ACTION RESERVATION KEY field identifies a
2984 * persistent reservation holder (see 5.7.10), the device
2985 * server shall perform a preempt by doing the following as
2986 * an uninterrupted series of actions:
2988 * a) Release the persistent reservation for the holder
2989 * identified by the SERVICE ACTION RESERVATION KEY field;
2991 if (pr_reg_n
!= pr_res_holder
)
2992 __core_scsi3_complete_pro_release(dev
,
2993 pr_res_holder
->pr_reg_nacl
,
2994 dev
->dev_pr_res_holder
, 0, 0);
2996 * b) Remove the registrations for all I_T nexuses identified
2997 * by the SERVICE ACTION RESERVATION KEY field, except the
2998 * I_T nexus that is being used for the PERSISTENT RESERVE
2999 * OUT command. If an all registrants persistent reservation
3000 * is present and the SERVICE ACTION RESERVATION KEY field
3001 * is set to zero, then all registrations shall be removed
3002 * except for that of the I_T nexus that is being used for
3003 * the PERSISTENT RESERVE OUT command;
3005 spin_lock(&pr_tmpl
->registration_lock
);
3006 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
,
3007 &pr_tmpl
->registration_list
, pr_reg_list
) {
3009 calling_it_nexus
= (pr_reg_n
== pr_reg
) ? 1 : 0;
3010 if (calling_it_nexus
)
3013 if (pr_reg
->pr_res_key
!= sa_res_key
)
3016 pr_reg_nacl
= pr_reg
->pr_reg_nacl
;
3017 pr_res_mapped_lun
= pr_reg
->pr_res_mapped_lun
;
3018 __core_scsi3_free_registration(dev
, pr_reg
,
3019 (preempt_type
== PREEMPT_AND_ABORT
) ? &preempt_and_abort_list
: NULL
,
3022 * e) Establish a unit attention condition for the initiator
3023 * port associated with every I_T nexus that lost its
3024 * persistent reservation and/or registration, with the
3025 * additional sense code set to REGISTRATIONS PREEMPTED;
3027 target_ua_allocate_lun(pr_reg_nacl
, pr_res_mapped_lun
, 0x2A,
3028 ASCQ_2AH_REGISTRATIONS_PREEMPTED
);
3030 spin_unlock(&pr_tmpl
->registration_lock
);
3032 * c) Establish a persistent reservation for the preempting
3033 * I_T nexus using the contents of the SCOPE and TYPE fields;
3035 __core_scsi3_complete_pro_preempt(dev
, pr_reg_n
,
3036 (preempt_type
== PREEMPT_AND_ABORT
) ? &preempt_and_abort_list
: NULL
,
3037 type
, scope
, preempt_type
);
3039 * d) Process tasks as defined in 5.7.1;
3041 * f) If the type or scope has changed, then for every I_T nexus
3042 * whose reservation key was not removed, except for the I_T
3043 * nexus on which the PERSISTENT RESERVE OUT command was
3044 * received, the device server shall establish a unit
3045 * attention condition for the initiator port associated with
3046 * that I_T nexus, with the additional sense code set to
3047 * RESERVATIONS RELEASED. If the type or scope have not
3048 * changed, then no unit attention condition(s) shall be
3049 * established for this reason.
3051 if ((prh_type
!= type
) || (prh_scope
!= scope
)) {
3052 spin_lock(&pr_tmpl
->registration_lock
);
3053 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
,
3054 &pr_tmpl
->registration_list
, pr_reg_list
) {
3056 calling_it_nexus
= (pr_reg_n
== pr_reg
) ? 1 : 0;
3057 if (calling_it_nexus
)
3060 target_ua_allocate_lun(pr_reg
->pr_reg_nacl
,
3061 pr_reg
->pr_res_mapped_lun
, 0x2A,
3062 ASCQ_2AH_RESERVATIONS_RELEASED
);
3064 spin_unlock(&pr_tmpl
->registration_lock
);
3066 spin_unlock(&dev
->dev_reservation_lock
);
3068 * Call LUN_RESET logic upon list of struct t10_pr_registration,
3069 * All received CDBs for the matching existing reservation and
3070 * registrations undergo ABORT_TASK logic.
3072 * From there, core_scsi3_release_preempt_and_abort() will
3073 * release every registration in the list (which have already
3074 * been removed from the primary pr_reg list), except the
3075 * new persistent reservation holder, the calling Initiator Port.
3077 if (preempt_type
== PREEMPT_AND_ABORT
) {
3078 core_tmr_lun_reset(dev
, NULL
, &preempt_and_abort_list
, cmd
);
3079 core_scsi3_release_preempt_and_abort(&preempt_and_abort_list
,
3083 if (pr_tmpl
->pr_aptpl_active
)
3084 core_scsi3_update_and_write_aptpl(cmd
->se_dev
, true);
3086 core_scsi3_put_pr_reg(pr_reg_n
);
3087 core_scsi3_pr_generation(cmd
->se_dev
);
3091 static sense_reason_t
3092 core_scsi3_emulate_pro_preempt(struct se_cmd
*cmd
, int type
, int scope
,
3093 u64 res_key
, u64 sa_res_key
, enum preempt_type preempt_type
)
3096 case PR_TYPE_WRITE_EXCLUSIVE
:
3097 case PR_TYPE_EXCLUSIVE_ACCESS
:
3098 case PR_TYPE_WRITE_EXCLUSIVE_REGONLY
:
3099 case PR_TYPE_EXCLUSIVE_ACCESS_REGONLY
:
3100 case PR_TYPE_WRITE_EXCLUSIVE_ALLREG
:
3101 case PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
:
3102 return core_scsi3_pro_preempt(cmd
, type
, scope
, res_key
,
3103 sa_res_key
, preempt_type
);
3105 pr_err("SPC-3 PR: Unknown Service Action PREEMPT%s"
3106 " Type: 0x%02x\n", (preempt_type
== PREEMPT_AND_ABORT
) ? "_AND_ABORT" : "", type
);
3107 return TCM_INVALID_CDB_FIELD
;
3112 static sense_reason_t
3113 core_scsi3_emulate_pro_register_and_move(struct se_cmd
*cmd
, u64 res_key
,
3114 u64 sa_res_key
, int aptpl
, int unreg
)
3116 struct se_session
*se_sess
= cmd
->se_sess
;
3117 struct se_device
*dev
= cmd
->se_dev
;
3118 struct se_dev_entry
*dest_se_deve
= NULL
;
3119 struct se_lun
*se_lun
= cmd
->se_lun
, *tmp_lun
;
3120 struct se_node_acl
*pr_res_nacl
, *pr_reg_nacl
, *dest_node_acl
= NULL
;
3121 struct se_portal_group
*se_tpg
, *dest_se_tpg
= NULL
;
3122 const struct target_core_fabric_ops
*dest_tf_ops
= NULL
, *tf_ops
;
3123 struct t10_pr_registration
*pr_reg
, *pr_res_holder
, *dest_pr_reg
;
3124 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
3126 const unsigned char *initiator_str
;
3127 char *iport_ptr
= NULL
, i_buf
[PR_REG_ISID_ID_LEN
];
3128 u32 tid_len
, tmp_tid_len
;
3129 int new_reg
= 0, type
, scope
, matching_iname
;
3131 unsigned short rtpi
;
3132 unsigned char proto_ident
;
3134 if (!se_sess
|| !se_lun
) {
3135 pr_err("SPC-3 PR: se_sess || struct se_lun is NULL!\n");
3136 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3139 memset(i_buf
, 0, PR_REG_ISID_ID_LEN
);
3140 se_tpg
= se_sess
->se_tpg
;
3141 tf_ops
= se_tpg
->se_tpg_tfo
;
3143 * Follow logic from spc4r17 Section 5.7.8, Table 50 --
3144 * Register behaviors for a REGISTER AND MOVE service action
3146 * Locate the existing *pr_reg via struct se_node_acl pointers
3148 pr_reg
= core_scsi3_locate_pr_reg(cmd
->se_dev
, se_sess
->se_node_acl
,
3151 pr_err("SPC-3 PR: Unable to locate PR_REGISTERED"
3152 " *pr_reg for REGISTER_AND_MOVE\n");
3153 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3156 * The provided reservation key much match the existing reservation key
3157 * provided during this initiator's I_T nexus registration.
3159 if (res_key
!= pr_reg
->pr_res_key
) {
3160 pr_warn("SPC-3 PR REGISTER_AND_MOVE: Received"
3161 " res_key: 0x%016Lx does not match existing SA REGISTER"
3162 " res_key: 0x%016Lx\n", res_key
, pr_reg
->pr_res_key
);
3163 ret
= TCM_RESERVATION_CONFLICT
;
3164 goto out_put_pr_reg
;
3167 * The service active reservation key needs to be non zero
3170 pr_warn("SPC-3 PR REGISTER_AND_MOVE: Received zero"
3172 ret
= TCM_INVALID_PARAMETER_LIST
;
3173 goto out_put_pr_reg
;
3177 * Determine the Relative Target Port Identifier where the reservation
3178 * will be moved to for the TransportID containing SCSI initiator WWN
3181 buf
= transport_kmap_data_sg(cmd
);
3183 ret
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3184 goto out_put_pr_reg
;
3187 rtpi
= (buf
[18] & 0xff) << 8;
3188 rtpi
|= buf
[19] & 0xff;
3189 tid_len
= (buf
[20] & 0xff) << 24;
3190 tid_len
|= (buf
[21] & 0xff) << 16;
3191 tid_len
|= (buf
[22] & 0xff) << 8;
3192 tid_len
|= buf
[23] & 0xff;
3193 transport_kunmap_data_sg(cmd
);
3196 if ((tid_len
+ 24) != cmd
->data_length
) {
3197 pr_err("SPC-3 PR: Illegal tid_len: %u + 24 byte header"
3198 " does not equal CDB data_length: %u\n", tid_len
,
3200 ret
= TCM_INVALID_PARAMETER_LIST
;
3201 goto out_put_pr_reg
;
3204 spin_lock(&dev
->se_port_lock
);
3205 list_for_each_entry(tmp_lun
, &dev
->dev_sep_list
, lun_dev_link
) {
3206 if (tmp_lun
->lun_rtpi
!= rtpi
)
3208 dest_se_tpg
= tmp_lun
->lun_tpg
;
3209 dest_tf_ops
= dest_se_tpg
->se_tpg_tfo
;
3213 atomic_inc_mb(&dest_se_tpg
->tpg_pr_ref_count
);
3214 spin_unlock(&dev
->se_port_lock
);
3216 if (core_scsi3_tpg_depend_item(dest_se_tpg
)) {
3217 pr_err("core_scsi3_tpg_depend_item() failed"
3218 " for dest_se_tpg\n");
3219 atomic_dec_mb(&dest_se_tpg
->tpg_pr_ref_count
);
3220 ret
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3221 goto out_put_pr_reg
;
3224 spin_lock(&dev
->se_port_lock
);
3227 spin_unlock(&dev
->se_port_lock
);
3229 if (!dest_se_tpg
|| !dest_tf_ops
) {
3230 pr_err("SPC-3 PR REGISTER_AND_MOVE: Unable to locate"
3231 " fabric ops from Relative Target Port Identifier:"
3233 ret
= TCM_INVALID_PARAMETER_LIST
;
3234 goto out_put_pr_reg
;
3237 buf
= transport_kmap_data_sg(cmd
);
3239 ret
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3240 goto out_put_pr_reg
;
3242 proto_ident
= (buf
[24] & 0x0f);
3244 pr_debug("SPC-3 PR REGISTER_AND_MOVE: Extracted Protocol Identifier:"
3245 " 0x%02x\n", proto_ident
);
3247 if (proto_ident
!= dest_se_tpg
->proto_id
) {
3248 pr_err("SPC-3 PR REGISTER_AND_MOVE: Received"
3249 " proto_ident: 0x%02x does not match ident: 0x%02x"
3250 " from fabric: %s\n", proto_ident
,
3251 dest_se_tpg
->proto_id
,
3252 dest_tf_ops
->get_fabric_name());
3253 ret
= TCM_INVALID_PARAMETER_LIST
;
3256 initiator_str
= target_parse_pr_out_transport_id(dest_se_tpg
,
3257 (const char *)&buf
[24], &tmp_tid_len
, &iport_ptr
);
3258 if (!initiator_str
) {
3259 pr_err("SPC-3 PR REGISTER_AND_MOVE: Unable to locate"
3260 " initiator_str from Transport ID\n");
3261 ret
= TCM_INVALID_PARAMETER_LIST
;
3265 transport_kunmap_data_sg(cmd
);
3268 pr_debug("SPC-3 PR [%s] Extracted initiator %s identifier: %s"
3269 " %s\n", dest_tf_ops
->get_fabric_name(), (iport_ptr
!= NULL
) ?
3270 "port" : "device", initiator_str
, (iport_ptr
!= NULL
) ?
3273 * If a PERSISTENT RESERVE OUT command with a REGISTER AND MOVE service
3274 * action specifies a TransportID that is the same as the initiator port
3275 * of the I_T nexus for the command received, then the command shall
3276 * be terminated with CHECK CONDITION status, with the sense key set to
3277 * ILLEGAL REQUEST, and the additional sense code set to INVALID FIELD
3278 * IN PARAMETER LIST.
3280 pr_reg_nacl
= pr_reg
->pr_reg_nacl
;
3281 matching_iname
= (!strcmp(initiator_str
,
3282 pr_reg_nacl
->initiatorname
)) ? 1 : 0;
3283 if (!matching_iname
)
3284 goto after_iport_check
;
3286 if (!iport_ptr
|| !pr_reg
->isid_present_at_reg
) {
3287 pr_err("SPC-3 PR REGISTER_AND_MOVE: TransportID: %s"
3288 " matches: %s on received I_T Nexus\n", initiator_str
,
3289 pr_reg_nacl
->initiatorname
);
3290 ret
= TCM_INVALID_PARAMETER_LIST
;
3293 if (!strcmp(iport_ptr
, pr_reg
->pr_reg_isid
)) {
3294 pr_err("SPC-3 PR REGISTER_AND_MOVE: TransportID: %s %s"
3295 " matches: %s %s on received I_T Nexus\n",
3296 initiator_str
, iport_ptr
, pr_reg_nacl
->initiatorname
,
3297 pr_reg
->pr_reg_isid
);
3298 ret
= TCM_INVALID_PARAMETER_LIST
;
3303 * Locate the destination struct se_node_acl from the received Transport ID
3305 mutex_lock(&dest_se_tpg
->acl_node_mutex
);
3306 dest_node_acl
= __core_tpg_get_initiator_node_acl(dest_se_tpg
,
3309 atomic_inc_mb(&dest_node_acl
->acl_pr_ref_count
);
3310 mutex_unlock(&dest_se_tpg
->acl_node_mutex
);
3312 if (!dest_node_acl
) {
3313 pr_err("Unable to locate %s dest_node_acl for"
3314 " TransportID%s\n", dest_tf_ops
->get_fabric_name(),
3316 ret
= TCM_INVALID_PARAMETER_LIST
;
3320 if (core_scsi3_nodeacl_depend_item(dest_node_acl
)) {
3321 pr_err("core_scsi3_nodeacl_depend_item() for"
3322 " dest_node_acl\n");
3323 atomic_dec_mb(&dest_node_acl
->acl_pr_ref_count
);
3324 dest_node_acl
= NULL
;
3325 ret
= TCM_INVALID_PARAMETER_LIST
;
3329 pr_debug("SPC-3 PR REGISTER_AND_MOVE: Found %s dest_node_acl:"
3330 " %s from TransportID\n", dest_tf_ops
->get_fabric_name(),
3331 dest_node_acl
->initiatorname
);
3334 * Locate the struct se_dev_entry pointer for the matching RELATIVE TARGET
3337 dest_se_deve
= core_get_se_deve_from_rtpi(dest_node_acl
, rtpi
);
3338 if (!dest_se_deve
) {
3339 pr_err("Unable to locate %s dest_se_deve from RTPI:"
3340 " %hu\n", dest_tf_ops
->get_fabric_name(), rtpi
);
3341 ret
= TCM_INVALID_PARAMETER_LIST
;
3345 if (core_scsi3_lunacl_depend_item(dest_se_deve
)) {
3346 pr_err("core_scsi3_lunacl_depend_item() failed\n");
3347 kref_put(&dest_se_deve
->pr_kref
, target_pr_kref_release
);
3348 dest_se_deve
= NULL
;
3349 ret
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3353 pr_debug("SPC-3 PR REGISTER_AND_MOVE: Located %s node %s LUN"
3354 " ACL for dest_se_deve->mapped_lun: %llu\n",
3355 dest_tf_ops
->get_fabric_name(), dest_node_acl
->initiatorname
,
3356 dest_se_deve
->mapped_lun
);
3359 * A persistent reservation needs to already existing in order to
3360 * successfully complete the REGISTER_AND_MOVE service action..
3362 spin_lock(&dev
->dev_reservation_lock
);
3363 pr_res_holder
= dev
->dev_pr_res_holder
;
3364 if (!pr_res_holder
) {
3365 pr_warn("SPC-3 PR REGISTER_AND_MOVE: No reservation"
3366 " currently held\n");
3367 spin_unlock(&dev
->dev_reservation_lock
);
3368 ret
= TCM_INVALID_CDB_FIELD
;
3372 * The received on I_T Nexus must be the reservation holder.
3374 * From spc4r17 section 5.7.8 Table 50 --
3375 * Register behaviors for a REGISTER AND MOVE service action
3377 if (!is_reservation_holder(pr_res_holder
, pr_reg
)) {
3378 pr_warn("SPC-3 PR REGISTER_AND_MOVE: Calling I_T"
3379 " Nexus is not reservation holder\n");
3380 spin_unlock(&dev
->dev_reservation_lock
);
3381 ret
= TCM_RESERVATION_CONFLICT
;
3385 * From spc4r17 section 5.7.8: registering and moving reservation
3387 * If a PERSISTENT RESERVE OUT command with a REGISTER AND MOVE service
3388 * action is received and the established persistent reservation is a
3389 * Write Exclusive - All Registrants type or Exclusive Access -
3390 * All Registrants type reservation, then the command shall be completed
3391 * with RESERVATION CONFLICT status.
3393 if ((pr_res_holder
->pr_res_type
== PR_TYPE_WRITE_EXCLUSIVE_ALLREG
) ||
3394 (pr_res_holder
->pr_res_type
== PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
)) {
3395 pr_warn("SPC-3 PR REGISTER_AND_MOVE: Unable to move"
3396 " reservation for type: %s\n",
3397 core_scsi3_pr_dump_type(pr_res_holder
->pr_res_type
));
3398 spin_unlock(&dev
->dev_reservation_lock
);
3399 ret
= TCM_RESERVATION_CONFLICT
;
3402 pr_res_nacl
= pr_res_holder
->pr_reg_nacl
;
3404 * b) Ignore the contents of the (received) SCOPE and TYPE fields;
3406 type
= pr_res_holder
->pr_res_type
;
3407 scope
= pr_res_holder
->pr_res_type
;
3409 * c) Associate the reservation key specified in the SERVICE ACTION
3410 * RESERVATION KEY field with the I_T nexus specified as the
3411 * destination of the register and move, where:
3412 * A) The I_T nexus is specified by the TransportID and the
3413 * RELATIVE TARGET PORT IDENTIFIER field (see 6.14.4); and
3414 * B) Regardless of the TransportID format used, the association for
3415 * the initiator port is based on either the initiator port name
3416 * (see 3.1.71) on SCSI transport protocols where port names are
3417 * required or the initiator port identifier (see 3.1.70) on SCSI
3418 * transport protocols where port names are not required;
3419 * d) Register the reservation key specified in the SERVICE ACTION
3420 * RESERVATION KEY field;
3421 * e) Retain the reservation key specified in the SERVICE ACTION
3422 * RESERVATION KEY field and associated information;
3424 * Also, It is not an error for a REGISTER AND MOVE service action to
3425 * register an I_T nexus that is already registered with the same
3426 * reservation key or a different reservation key.
3428 dest_pr_reg
= __core_scsi3_locate_pr_reg(dev
, dest_node_acl
,
3431 struct se_lun
*dest_lun
= rcu_dereference_check(dest_se_deve
->se_lun
,
3432 atomic_read(&dest_se_deve
->pr_kref
.refcount
) != 0);
3434 spin_unlock(&dev
->dev_reservation_lock
);
3435 if (core_scsi3_alloc_registration(cmd
->se_dev
, dest_node_acl
,
3436 dest_lun
, dest_se_deve
, dest_se_deve
->mapped_lun
,
3437 iport_ptr
, sa_res_key
, 0, aptpl
, 2, 1)) {
3438 ret
= TCM_INVALID_PARAMETER_LIST
;
3441 spin_lock(&dev
->dev_reservation_lock
);
3442 dest_pr_reg
= __core_scsi3_locate_pr_reg(dev
, dest_node_acl
,
3447 * f) Release the persistent reservation for the persistent reservation
3448 * holder (i.e., the I_T nexus on which the
3450 __core_scsi3_complete_pro_release(dev
, pr_res_nacl
,
3451 dev
->dev_pr_res_holder
, 0, 0);
3453 * g) Move the persistent reservation to the specified I_T nexus using
3454 * the same scope and type as the persistent reservation released in
3457 dev
->dev_pr_res_holder
= dest_pr_reg
;
3458 dest_pr_reg
->pr_res_holder
= 1;
3459 dest_pr_reg
->pr_res_type
= type
;
3460 pr_reg
->pr_res_scope
= scope
;
3461 core_pr_dump_initiator_port(pr_reg
, i_buf
, PR_REG_ISID_ID_LEN
);
3463 * Increment PRGeneration for existing registrations..
3466 dest_pr_reg
->pr_res_generation
= pr_tmpl
->pr_generation
++;
3467 spin_unlock(&dev
->dev_reservation_lock
);
3469 pr_debug("SPC-3 PR [%s] Service Action: REGISTER_AND_MOVE"
3470 " created new reservation holder TYPE: %s on object RTPI:"
3471 " %hu PRGeneration: 0x%08x\n", dest_tf_ops
->get_fabric_name(),
3472 core_scsi3_pr_dump_type(type
), rtpi
,
3473 dest_pr_reg
->pr_res_generation
);
3474 pr_debug("SPC-3 PR Successfully moved reservation from"
3475 " %s Fabric Node: %s%s -> %s Fabric Node: %s %s\n",
3476 tf_ops
->get_fabric_name(), pr_reg_nacl
->initiatorname
,
3477 i_buf
, dest_tf_ops
->get_fabric_name(),
3478 dest_node_acl
->initiatorname
, (iport_ptr
!= NULL
) ?
3481 * It is now safe to release configfs group dependencies for destination
3482 * of Transport ID Initiator Device/Port Identifier
3484 core_scsi3_lunacl_undepend_item(dest_se_deve
);
3485 core_scsi3_nodeacl_undepend_item(dest_node_acl
);
3486 core_scsi3_tpg_undepend_item(dest_se_tpg
);
3488 * h) If the UNREG bit is set to one, unregister (see 5.7.11.3) the I_T
3489 * nexus on which PERSISTENT RESERVE OUT command was received.
3492 spin_lock(&pr_tmpl
->registration_lock
);
3493 __core_scsi3_free_registration(dev
, pr_reg
, NULL
, 1);
3494 spin_unlock(&pr_tmpl
->registration_lock
);
3496 core_scsi3_put_pr_reg(pr_reg
);
3498 core_scsi3_update_and_write_aptpl(cmd
->se_dev
, aptpl
);
3500 transport_kunmap_data_sg(cmd
);
3502 core_scsi3_put_pr_reg(dest_pr_reg
);
3506 transport_kunmap_data_sg(cmd
);
3508 core_scsi3_lunacl_undepend_item(dest_se_deve
);
3510 core_scsi3_nodeacl_undepend_item(dest_node_acl
);
3511 core_scsi3_tpg_undepend_item(dest_se_tpg
);
3514 core_scsi3_put_pr_reg(pr_reg
);
3518 static unsigned long long core_scsi3_extract_reservation_key(unsigned char *cdb
)
3520 unsigned int __v1
, __v2
;
3522 __v1
= (cdb
[0] << 24) | (cdb
[1] << 16) | (cdb
[2] << 8) | cdb
[3];
3523 __v2
= (cdb
[4] << 24) | (cdb
[5] << 16) | (cdb
[6] << 8) | cdb
[7];
3525 return ((unsigned long long)__v2
) | (unsigned long long)__v1
<< 32;
3529 * See spc4r17 section 6.14 Table 170
3532 target_scsi3_emulate_pr_out(struct se_cmd
*cmd
)
3534 struct se_device
*dev
= cmd
->se_dev
;
3535 unsigned char *cdb
= &cmd
->t_task_cdb
[0];
3537 u64 res_key
, sa_res_key
;
3538 int sa
, scope
, type
, aptpl
;
3539 int spec_i_pt
= 0, all_tg_pt
= 0, unreg
= 0;
3543 * Following spc2r20 5.5.1 Reservations overview:
3545 * If a logical unit has been reserved by any RESERVE command and is
3546 * still reserved by any initiator, all PERSISTENT RESERVE IN and all
3547 * PERSISTENT RESERVE OUT commands shall conflict regardless of
3548 * initiator or service action and shall terminate with a RESERVATION
3551 if (cmd
->se_dev
->dev_reservation_flags
& DRF_SPC2_RESERVATIONS
) {
3552 pr_err("Received PERSISTENT_RESERVE CDB while legacy"
3553 " SPC-2 reservation is held, returning"
3554 " RESERVATION_CONFLICT\n");
3555 return TCM_RESERVATION_CONFLICT
;
3559 * FIXME: A NULL struct se_session pointer means an this is not coming from
3560 * a $FABRIC_MOD's nexus, but from internal passthrough ops.
3563 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3565 if (cmd
->data_length
< 24) {
3566 pr_warn("SPC-PR: Received PR OUT parameter list"
3567 " length too small: %u\n", cmd
->data_length
);
3568 return TCM_INVALID_PARAMETER_LIST
;
3572 * From the PERSISTENT_RESERVE_OUT command descriptor block (CDB)
3574 sa
= (cdb
[1] & 0x1f);
3575 scope
= (cdb
[2] & 0xf0);
3576 type
= (cdb
[2] & 0x0f);
3578 buf
= transport_kmap_data_sg(cmd
);
3580 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3583 * From PERSISTENT_RESERVE_OUT parameter list (payload)
3585 res_key
= core_scsi3_extract_reservation_key(&buf
[0]);
3586 sa_res_key
= core_scsi3_extract_reservation_key(&buf
[8]);
3588 * REGISTER_AND_MOVE uses a different SA parameter list containing
3589 * SCSI TransportIDs.
3591 if (sa
!= PRO_REGISTER_AND_MOVE
) {
3592 spec_i_pt
= (buf
[20] & 0x08);
3593 all_tg_pt
= (buf
[20] & 0x04);
3594 aptpl
= (buf
[20] & 0x01);
3596 aptpl
= (buf
[17] & 0x01);
3597 unreg
= (buf
[17] & 0x02);
3600 * If the backend device has been configured to force APTPL metadata
3601 * write-out, go ahead and propigate aptpl=1 down now.
3603 if (dev
->dev_attrib
.force_pr_aptpl
)
3606 transport_kunmap_data_sg(cmd
);
3610 * SPEC_I_PT=1 is only valid for Service action: REGISTER
3612 if (spec_i_pt
&& ((cdb
[1] & 0x1f) != PRO_REGISTER
))
3613 return TCM_INVALID_PARAMETER_LIST
;
3616 * From spc4r17 section 6.14:
3618 * If the SPEC_I_PT bit is set to zero, the service action is not
3619 * REGISTER AND MOVE, and the parameter list length is not 24, then
3620 * the command shall be terminated with CHECK CONDITION status, with
3621 * the sense key set to ILLEGAL REQUEST, and the additional sense
3622 * code set to PARAMETER LIST LENGTH ERROR.
3624 if (!spec_i_pt
&& ((cdb
[1] & 0x1f) != PRO_REGISTER_AND_MOVE
) &&
3625 (cmd
->data_length
!= 24)) {
3626 pr_warn("SPC-PR: Received PR OUT illegal parameter"
3627 " list length: %u\n", cmd
->data_length
);
3628 return TCM_INVALID_PARAMETER_LIST
;
3632 * (core_scsi3_emulate_pro_* function parameters
3633 * are defined by spc4r17 Table 174:
3634 * PERSISTENT_RESERVE_OUT service actions and valid parameters.
3638 ret
= core_scsi3_emulate_pro_register(cmd
,
3639 res_key
, sa_res_key
, aptpl
, all_tg_pt
, spec_i_pt
, REGISTER
);
3642 ret
= core_scsi3_emulate_pro_reserve(cmd
, type
, scope
, res_key
);
3645 ret
= core_scsi3_emulate_pro_release(cmd
, type
, scope
, res_key
);
3648 ret
= core_scsi3_emulate_pro_clear(cmd
, res_key
);
3651 ret
= core_scsi3_emulate_pro_preempt(cmd
, type
, scope
,
3652 res_key
, sa_res_key
, PREEMPT
);
3654 case PRO_PREEMPT_AND_ABORT
:
3655 ret
= core_scsi3_emulate_pro_preempt(cmd
, type
, scope
,
3656 res_key
, sa_res_key
, PREEMPT_AND_ABORT
);
3658 case PRO_REGISTER_AND_IGNORE_EXISTING_KEY
:
3659 ret
= core_scsi3_emulate_pro_register(cmd
,
3660 0, sa_res_key
, aptpl
, all_tg_pt
, spec_i_pt
, REGISTER_AND_IGNORE_EXISTING_KEY
);
3662 case PRO_REGISTER_AND_MOVE
:
3663 ret
= core_scsi3_emulate_pro_register_and_move(cmd
, res_key
,
3664 sa_res_key
, aptpl
, unreg
);
3667 pr_err("Unknown PERSISTENT_RESERVE_OUT service"
3668 " action: 0x%02x\n", cdb
[1] & 0x1f);
3669 return TCM_INVALID_CDB_FIELD
;
3673 target_complete_cmd(cmd
, GOOD
);
3678 * PERSISTENT_RESERVE_IN Service Action READ_KEYS
3680 * See spc4r17 section 5.7.6.2 and section 6.13.2, Table 160
3682 static sense_reason_t
3683 core_scsi3_pri_read_keys(struct se_cmd
*cmd
)
3685 struct se_device
*dev
= cmd
->se_dev
;
3686 struct t10_pr_registration
*pr_reg
;
3688 u32 add_len
= 0, off
= 8;
3690 if (cmd
->data_length
< 8) {
3691 pr_err("PRIN SA READ_KEYS SCSI Data Length: %u"
3692 " too small\n", cmd
->data_length
);
3693 return TCM_INVALID_CDB_FIELD
;
3696 buf
= transport_kmap_data_sg(cmd
);
3698 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3700 buf
[0] = ((dev
->t10_pr
.pr_generation
>> 24) & 0xff);
3701 buf
[1] = ((dev
->t10_pr
.pr_generation
>> 16) & 0xff);
3702 buf
[2] = ((dev
->t10_pr
.pr_generation
>> 8) & 0xff);
3703 buf
[3] = (dev
->t10_pr
.pr_generation
& 0xff);
3705 spin_lock(&dev
->t10_pr
.registration_lock
);
3706 list_for_each_entry(pr_reg
, &dev
->t10_pr
.registration_list
,
3709 * Check for overflow of 8byte PRI READ_KEYS payload and
3710 * next reservation key list descriptor.
3712 if ((add_len
+ 8) > (cmd
->data_length
- 8))
3715 buf
[off
++] = ((pr_reg
->pr_res_key
>> 56) & 0xff);
3716 buf
[off
++] = ((pr_reg
->pr_res_key
>> 48) & 0xff);
3717 buf
[off
++] = ((pr_reg
->pr_res_key
>> 40) & 0xff);
3718 buf
[off
++] = ((pr_reg
->pr_res_key
>> 32) & 0xff);
3719 buf
[off
++] = ((pr_reg
->pr_res_key
>> 24) & 0xff);
3720 buf
[off
++] = ((pr_reg
->pr_res_key
>> 16) & 0xff);
3721 buf
[off
++] = ((pr_reg
->pr_res_key
>> 8) & 0xff);
3722 buf
[off
++] = (pr_reg
->pr_res_key
& 0xff);
3726 spin_unlock(&dev
->t10_pr
.registration_lock
);
3728 buf
[4] = ((add_len
>> 24) & 0xff);
3729 buf
[5] = ((add_len
>> 16) & 0xff);
3730 buf
[6] = ((add_len
>> 8) & 0xff);
3731 buf
[7] = (add_len
& 0xff);
3733 transport_kunmap_data_sg(cmd
);
3739 * PERSISTENT_RESERVE_IN Service Action READ_RESERVATION
3741 * See spc4r17 section 5.7.6.3 and section 6.13.3.2 Table 161 and 162
3743 static sense_reason_t
3744 core_scsi3_pri_read_reservation(struct se_cmd
*cmd
)
3746 struct se_device
*dev
= cmd
->se_dev
;
3747 struct t10_pr_registration
*pr_reg
;
3750 u32 add_len
= 16; /* Hardcoded to 16 when a reservation is held. */
3752 if (cmd
->data_length
< 8) {
3753 pr_err("PRIN SA READ_RESERVATIONS SCSI Data Length: %u"
3754 " too small\n", cmd
->data_length
);
3755 return TCM_INVALID_CDB_FIELD
;
3758 buf
= transport_kmap_data_sg(cmd
);
3760 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3762 buf
[0] = ((dev
->t10_pr
.pr_generation
>> 24) & 0xff);
3763 buf
[1] = ((dev
->t10_pr
.pr_generation
>> 16) & 0xff);
3764 buf
[2] = ((dev
->t10_pr
.pr_generation
>> 8) & 0xff);
3765 buf
[3] = (dev
->t10_pr
.pr_generation
& 0xff);
3767 spin_lock(&dev
->dev_reservation_lock
);
3768 pr_reg
= dev
->dev_pr_res_holder
;
3771 * Set the hardcoded Additional Length
3773 buf
[4] = ((add_len
>> 24) & 0xff);
3774 buf
[5] = ((add_len
>> 16) & 0xff);
3775 buf
[6] = ((add_len
>> 8) & 0xff);
3776 buf
[7] = (add_len
& 0xff);
3778 if (cmd
->data_length
< 22)
3782 * Set the Reservation key.
3784 * From spc4r17, section 5.7.10:
3785 * A persistent reservation holder has its reservation key
3786 * returned in the parameter data from a PERSISTENT
3787 * RESERVE IN command with READ RESERVATION service action as
3789 * a) For a persistent reservation of the type Write Exclusive
3790 * - All Registrants or Exclusive Access  All Regitrants,
3791 * the reservation key shall be set to zero; or
3792 * b) For all other persistent reservation types, the
3793 * reservation key shall be set to the registered
3794 * reservation key for the I_T nexus that holds the
3795 * persistent reservation.
3797 if ((pr_reg
->pr_res_type
== PR_TYPE_WRITE_EXCLUSIVE_ALLREG
) ||
3798 (pr_reg
->pr_res_type
== PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
))
3801 pr_res_key
= pr_reg
->pr_res_key
;
3803 buf
[8] = ((pr_res_key
>> 56) & 0xff);
3804 buf
[9] = ((pr_res_key
>> 48) & 0xff);
3805 buf
[10] = ((pr_res_key
>> 40) & 0xff);
3806 buf
[11] = ((pr_res_key
>> 32) & 0xff);
3807 buf
[12] = ((pr_res_key
>> 24) & 0xff);
3808 buf
[13] = ((pr_res_key
>> 16) & 0xff);
3809 buf
[14] = ((pr_res_key
>> 8) & 0xff);
3810 buf
[15] = (pr_res_key
& 0xff);
3812 * Set the SCOPE and TYPE
3814 buf
[21] = (pr_reg
->pr_res_scope
& 0xf0) |
3815 (pr_reg
->pr_res_type
& 0x0f);
3819 spin_unlock(&dev
->dev_reservation_lock
);
3820 transport_kunmap_data_sg(cmd
);
3826 * PERSISTENT_RESERVE_IN Service Action REPORT_CAPABILITIES
3828 * See spc4r17 section 6.13.4 Table 165
3830 static sense_reason_t
3831 core_scsi3_pri_report_capabilities(struct se_cmd
*cmd
)
3833 struct se_device
*dev
= cmd
->se_dev
;
3834 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
3836 u16 add_len
= 8; /* Hardcoded to 8. */
3838 if (cmd
->data_length
< 6) {
3839 pr_err("PRIN SA REPORT_CAPABILITIES SCSI Data Length:"
3840 " %u too small\n", cmd
->data_length
);
3841 return TCM_INVALID_CDB_FIELD
;
3844 buf
= transport_kmap_data_sg(cmd
);
3846 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3848 buf
[0] = ((add_len
>> 8) & 0xff);
3849 buf
[1] = (add_len
& 0xff);
3850 buf
[2] |= 0x10; /* CRH: Compatible Reservation Hanlding bit. */
3851 buf
[2] |= 0x08; /* SIP_C: Specify Initiator Ports Capable bit */
3852 buf
[2] |= 0x04; /* ATP_C: All Target Ports Capable bit */
3853 buf
[2] |= 0x01; /* PTPL_C: Persistence across Target Power Loss bit */
3855 * We are filling in the PERSISTENT RESERVATION TYPE MASK below, so
3856 * set the TMV: Task Mask Valid bit.
3860 * Change ALLOW COMMANDs to 0x20 or 0x40 later from Table 166
3862 buf
[3] |= 0x10; /* ALLOW COMMANDs field 001b */
3864 * PTPL_A: Persistence across Target Power Loss Active bit
3866 if (pr_tmpl
->pr_aptpl_active
)
3869 * Setup the PERSISTENT RESERVATION TYPE MASK from Table 167
3871 buf
[4] |= 0x80; /* PR_TYPE_EXCLUSIVE_ACCESS_ALLREG */
3872 buf
[4] |= 0x40; /* PR_TYPE_EXCLUSIVE_ACCESS_REGONLY */
3873 buf
[4] |= 0x20; /* PR_TYPE_WRITE_EXCLUSIVE_REGONLY */
3874 buf
[4] |= 0x08; /* PR_TYPE_EXCLUSIVE_ACCESS */
3875 buf
[4] |= 0x02; /* PR_TYPE_WRITE_EXCLUSIVE */
3876 buf
[5] |= 0x01; /* PR_TYPE_EXCLUSIVE_ACCESS_ALLREG */
3878 transport_kunmap_data_sg(cmd
);
3884 * PERSISTENT_RESERVE_IN Service Action READ_FULL_STATUS
3886 * See spc4r17 section 6.13.5 Table 168 and 169
3888 static sense_reason_t
3889 core_scsi3_pri_read_full_status(struct se_cmd
*cmd
)
3891 struct se_device
*dev
= cmd
->se_dev
;
3892 struct se_node_acl
*se_nacl
;
3893 struct se_portal_group
*se_tpg
;
3894 struct t10_pr_registration
*pr_reg
, *pr_reg_tmp
;
3895 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
3897 u32 add_desc_len
= 0, add_len
= 0;
3898 u32 off
= 8; /* off into first Full Status descriptor */
3899 int format_code
= 0, pr_res_type
= 0, pr_res_scope
= 0;
3900 int exp_desc_len
, desc_len
;
3901 bool all_reg
= false;
3903 if (cmd
->data_length
< 8) {
3904 pr_err("PRIN SA READ_FULL_STATUS SCSI Data Length: %u"
3905 " too small\n", cmd
->data_length
);
3906 return TCM_INVALID_CDB_FIELD
;
3909 buf
= transport_kmap_data_sg(cmd
);
3911 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3913 buf
[0] = ((dev
->t10_pr
.pr_generation
>> 24) & 0xff);
3914 buf
[1] = ((dev
->t10_pr
.pr_generation
>> 16) & 0xff);
3915 buf
[2] = ((dev
->t10_pr
.pr_generation
>> 8) & 0xff);
3916 buf
[3] = (dev
->t10_pr
.pr_generation
& 0xff);
3918 spin_lock(&dev
->dev_reservation_lock
);
3919 if (dev
->dev_pr_res_holder
) {
3920 struct t10_pr_registration
*pr_holder
= dev
->dev_pr_res_holder
;
3922 if (pr_holder
->pr_res_type
== PR_TYPE_WRITE_EXCLUSIVE_ALLREG
||
3923 pr_holder
->pr_res_type
== PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
) {
3925 pr_res_type
= pr_holder
->pr_res_type
;
3926 pr_res_scope
= pr_holder
->pr_res_scope
;
3929 spin_unlock(&dev
->dev_reservation_lock
);
3931 spin_lock(&pr_tmpl
->registration_lock
);
3932 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
,
3933 &pr_tmpl
->registration_list
, pr_reg_list
) {
3935 se_nacl
= pr_reg
->pr_reg_nacl
;
3936 se_tpg
= pr_reg
->pr_reg_nacl
->se_tpg
;
3939 atomic_inc_mb(&pr_reg
->pr_res_holders
);
3940 spin_unlock(&pr_tmpl
->registration_lock
);
3942 * Determine expected length of $FABRIC_MOD specific
3943 * TransportID full status descriptor..
3945 exp_desc_len
= target_get_pr_transport_id_len(se_nacl
, pr_reg
,
3947 if (exp_desc_len
< 0 ||
3948 exp_desc_len
+ add_len
> cmd
->data_length
) {
3949 pr_warn("SPC-3 PRIN READ_FULL_STATUS ran"
3950 " out of buffer: %d\n", cmd
->data_length
);
3951 spin_lock(&pr_tmpl
->registration_lock
);
3952 atomic_dec_mb(&pr_reg
->pr_res_holders
);
3956 * Set RESERVATION KEY
3958 buf
[off
++] = ((pr_reg
->pr_res_key
>> 56) & 0xff);
3959 buf
[off
++] = ((pr_reg
->pr_res_key
>> 48) & 0xff);
3960 buf
[off
++] = ((pr_reg
->pr_res_key
>> 40) & 0xff);
3961 buf
[off
++] = ((pr_reg
->pr_res_key
>> 32) & 0xff);
3962 buf
[off
++] = ((pr_reg
->pr_res_key
>> 24) & 0xff);
3963 buf
[off
++] = ((pr_reg
->pr_res_key
>> 16) & 0xff);
3964 buf
[off
++] = ((pr_reg
->pr_res_key
>> 8) & 0xff);
3965 buf
[off
++] = (pr_reg
->pr_res_key
& 0xff);
3966 off
+= 4; /* Skip Over Reserved area */
3969 * Set ALL_TG_PT bit if PROUT SA REGISTER had this set.
3971 if (pr_reg
->pr_reg_all_tg_pt
)
3974 * The struct se_lun pointer will be present for the
3975 * reservation holder for PR_HOLDER bit.
3977 * Also, if this registration is the reservation
3978 * holder or there is an All Registrants reservation
3979 * active, fill in SCOPE and TYPE in the next byte.
3981 if (pr_reg
->pr_res_holder
) {
3983 buf
[off
++] = (pr_reg
->pr_res_scope
& 0xf0) |
3984 (pr_reg
->pr_res_type
& 0x0f);
3985 } else if (all_reg
) {
3987 buf
[off
++] = (pr_res_scope
& 0xf0) |
3988 (pr_res_type
& 0x0f);
3993 off
+= 4; /* Skip over reserved area */
3995 * From spc4r17 6.3.15:
3997 * If the ALL_TG_PT bit set to zero, the RELATIVE TARGET PORT
3998 * IDENTIFIER field contains the relative port identifier (see
3999 * 3.1.120) of the target port that is part of the I_T nexus
4000 * described by this full status descriptor. If the ALL_TG_PT
4001 * bit is set to one, the contents of the RELATIVE TARGET PORT
4002 * IDENTIFIER field are not defined by this standard.
4004 if (!pr_reg
->pr_reg_all_tg_pt
) {
4005 u16 sep_rtpi
= pr_reg
->tg_pt_sep_rtpi
;
4007 buf
[off
++] = ((sep_rtpi
>> 8) & 0xff);
4008 buf
[off
++] = (sep_rtpi
& 0xff);
4010 off
+= 2; /* Skip over RELATIVE TARGET PORT IDENTIFIER */
4012 buf
[off
+4] = se_tpg
->proto_id
;
4015 * Now, have the $FABRIC_MOD fill in the transport ID.
4017 desc_len
= target_get_pr_transport_id(se_nacl
, pr_reg
,
4018 &format_code
, &buf
[off
+4]);
4020 spin_lock(&pr_tmpl
->registration_lock
);
4021 atomic_dec_mb(&pr_reg
->pr_res_holders
);
4026 * Set the ADDITIONAL DESCRIPTOR LENGTH
4028 buf
[off
++] = ((desc_len
>> 24) & 0xff);
4029 buf
[off
++] = ((desc_len
>> 16) & 0xff);
4030 buf
[off
++] = ((desc_len
>> 8) & 0xff);
4031 buf
[off
++] = (desc_len
& 0xff);
4033 * Size of full desctipor header minus TransportID
4034 * containing $FABRIC_MOD specific) initiator device/port
4037 * See spc4r17 Section 6.13.5 Table 169
4039 add_desc_len
= (24 + desc_len
);
4042 add_len
+= add_desc_len
;
4044 spin_unlock(&pr_tmpl
->registration_lock
);
4046 * Set ADDITIONAL_LENGTH
4048 buf
[4] = ((add_len
>> 24) & 0xff);
4049 buf
[5] = ((add_len
>> 16) & 0xff);
4050 buf
[6] = ((add_len
>> 8) & 0xff);
4051 buf
[7] = (add_len
& 0xff);
4053 transport_kunmap_data_sg(cmd
);
4059 target_scsi3_emulate_pr_in(struct se_cmd
*cmd
)
4064 * Following spc2r20 5.5.1 Reservations overview:
4066 * If a logical unit has been reserved by any RESERVE command and is
4067 * still reserved by any initiator, all PERSISTENT RESERVE IN and all
4068 * PERSISTENT RESERVE OUT commands shall conflict regardless of
4069 * initiator or service action and shall terminate with a RESERVATION
4072 if (cmd
->se_dev
->dev_reservation_flags
& DRF_SPC2_RESERVATIONS
) {
4073 pr_err("Received PERSISTENT_RESERVE CDB while legacy"
4074 " SPC-2 reservation is held, returning"
4075 " RESERVATION_CONFLICT\n");
4076 return TCM_RESERVATION_CONFLICT
;
4079 switch (cmd
->t_task_cdb
[1] & 0x1f) {
4081 ret
= core_scsi3_pri_read_keys(cmd
);
4083 case PRI_READ_RESERVATION
:
4084 ret
= core_scsi3_pri_read_reservation(cmd
);
4086 case PRI_REPORT_CAPABILITIES
:
4087 ret
= core_scsi3_pri_report_capabilities(cmd
);
4089 case PRI_READ_FULL_STATUS
:
4090 ret
= core_scsi3_pri_read_full_status(cmd
);
4093 pr_err("Unknown PERSISTENT_RESERVE_IN service"
4094 " action: 0x%02x\n", cmd
->t_task_cdb
[1] & 0x1f);
4095 return TCM_INVALID_CDB_FIELD
;
4099 target_complete_cmd(cmd
, GOOD
);
4104 target_check_reservation(struct se_cmd
*cmd
)
4106 struct se_device
*dev
= cmd
->se_dev
;
4111 if (dev
->se_hba
->hba_flags
& HBA_FLAGS_INTERNAL_USE
)
4113 if (dev
->transport
->transport_flags
& TRANSPORT_FLAG_PASSTHROUGH
)
4116 spin_lock(&dev
->dev_reservation_lock
);
4117 if (dev
->dev_reservation_flags
& DRF_SPC2_RESERVATIONS
)
4118 ret
= target_scsi2_reservation_check(cmd
);
4120 ret
= target_scsi3_pr_reservation_check(cmd
);
4121 spin_unlock(&dev
->dev_reservation_lock
);