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/file.h>
31 #include <scsi/scsi.h>
32 #include <scsi/scsi_cmnd.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>
38 #include <target/target_core_configfs.h>
40 #include "target_core_internal.h"
41 #include "target_core_pr.h"
42 #include "target_core_ua.h"
45 * Used for Specify Initiator Ports Capable Bit (SPEC_I_PT)
47 struct pr_transport_id_holder
{
49 struct t10_pr_registration
*dest_pr_reg
;
50 struct se_portal_group
*dest_tpg
;
51 struct se_node_acl
*dest_node_acl
;
52 struct se_dev_entry
*dest_se_deve
;
53 struct list_head dest_list
;
56 void core_pr_dump_initiator_port(
57 struct t10_pr_registration
*pr_reg
,
61 if (!pr_reg
->isid_present_at_reg
)
64 snprintf(buf
, size
, ",i,0x%s", pr_reg
->pr_reg_isid
);
69 REGISTER_AND_IGNORE_EXISTING_KEY
,
78 static void __core_scsi3_complete_pro_release(struct se_device
*, struct se_node_acl
*,
79 struct t10_pr_registration
*, int, int);
82 target_scsi2_reservation_check(struct se_cmd
*cmd
)
84 struct se_device
*dev
= cmd
->se_dev
;
85 struct se_session
*sess
= cmd
->se_sess
;
87 switch (cmd
->t_task_cdb
[0]) {
96 if (!dev
->dev_reserved_node_acl
|| !sess
)
99 if (dev
->dev_reserved_node_acl
!= sess
->se_node_acl
)
100 return TCM_RESERVATION_CONFLICT
;
102 if (dev
->dev_reservation_flags
& DRF_SPC2_RESERVATIONS_WITH_ISID
) {
103 if (dev
->dev_res_bin_isid
!= sess
->sess_bin_isid
)
104 return TCM_RESERVATION_CONFLICT
;
110 static struct t10_pr_registration
*core_scsi3_locate_pr_reg(struct se_device
*,
111 struct se_node_acl
*, struct se_session
*);
112 static void core_scsi3_put_pr_reg(struct t10_pr_registration
*);
114 static int target_check_scsi2_reservation_conflict(struct se_cmd
*cmd
)
116 struct se_session
*se_sess
= cmd
->se_sess
;
117 struct se_device
*dev
= cmd
->se_dev
;
118 struct t10_pr_registration
*pr_reg
;
119 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
122 pr_reg
= core_scsi3_locate_pr_reg(cmd
->se_dev
, se_sess
->se_node_acl
,
126 * From spc4r17 5.7.3 Exceptions to SPC-2 RESERVE and RELEASE
129 * A RESERVE(6) or RESERVE(10) command shall complete with GOOD
130 * status, but no reservation shall be established and the
131 * persistent reservation shall not be changed, if the command
132 * is received from a) and b) below.
134 * A RELEASE(6) or RELEASE(10) command shall complete with GOOD
135 * status, but the persistent reservation shall not be released,
136 * if the command is received from a) and b)
138 * a) An I_T nexus that is a persistent reservation holder; or
139 * b) An I_T nexus that is registered if a registrants only or
140 * all registrants type persistent reservation is present.
142 * In all other cases, a RESERVE(6) command, RESERVE(10) command,
143 * RELEASE(6) command, or RELEASE(10) command shall be processed
144 * as defined in SPC-2.
146 if (pr_reg
->pr_res_holder
) {
147 core_scsi3_put_pr_reg(pr_reg
);
150 if ((pr_reg
->pr_res_type
== PR_TYPE_WRITE_EXCLUSIVE_REGONLY
) ||
151 (pr_reg
->pr_res_type
== PR_TYPE_EXCLUSIVE_ACCESS_REGONLY
) ||
152 (pr_reg
->pr_res_type
== PR_TYPE_WRITE_EXCLUSIVE_ALLREG
) ||
153 (pr_reg
->pr_res_type
== PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
)) {
154 core_scsi3_put_pr_reg(pr_reg
);
157 core_scsi3_put_pr_reg(pr_reg
);
161 * Following spc2r20 5.5.1 Reservations overview:
163 * If a logical unit has executed a PERSISTENT RESERVE OUT
164 * command with the REGISTER or the REGISTER AND IGNORE
165 * EXISTING KEY service action and is still registered by any
166 * initiator, all RESERVE commands and all RELEASE commands
167 * regardless of initiator shall conflict and shall terminate
168 * with a RESERVATION CONFLICT status.
170 spin_lock(&pr_tmpl
->registration_lock
);
171 conflict
= (list_empty(&pr_tmpl
->registration_list
)) ? 0 : 1;
172 spin_unlock(&pr_tmpl
->registration_lock
);
176 pr_err("Received legacy SPC-2 RESERVE/RELEASE"
177 " while active SPC-3 registrations exist,"
178 " returning RESERVATION_CONFLICT\n");
186 target_scsi2_reservation_release(struct se_cmd
*cmd
)
188 struct se_device
*dev
= cmd
->se_dev
;
189 struct se_session
*sess
= cmd
->se_sess
;
190 struct se_portal_group
*tpg
;
193 if (!sess
|| !sess
->se_tpg
)
195 rc
= target_check_scsi2_reservation_conflict(cmd
);
199 return TCM_RESERVATION_CONFLICT
;
201 spin_lock(&dev
->dev_reservation_lock
);
202 if (!dev
->dev_reserved_node_acl
|| !sess
)
205 if (dev
->dev_reserved_node_acl
!= sess
->se_node_acl
)
208 if (dev
->dev_res_bin_isid
!= sess
->sess_bin_isid
)
211 dev
->dev_reserved_node_acl
= NULL
;
212 dev
->dev_reservation_flags
&= ~DRF_SPC2_RESERVATIONS
;
213 if (dev
->dev_reservation_flags
& DRF_SPC2_RESERVATIONS_WITH_ISID
) {
214 dev
->dev_res_bin_isid
= 0;
215 dev
->dev_reservation_flags
&= ~DRF_SPC2_RESERVATIONS_WITH_ISID
;
218 pr_debug("SCSI-2 Released reservation for %s LUN: %u ->"
219 " MAPPED LUN: %u for %s\n", tpg
->se_tpg_tfo
->get_fabric_name(),
220 cmd
->se_lun
->unpacked_lun
, cmd
->se_deve
->mapped_lun
,
221 sess
->se_node_acl
->initiatorname
);
224 spin_unlock(&dev
->dev_reservation_lock
);
226 target_complete_cmd(cmd
, GOOD
);
231 target_scsi2_reservation_reserve(struct se_cmd
*cmd
)
233 struct se_device
*dev
= cmd
->se_dev
;
234 struct se_session
*sess
= cmd
->se_sess
;
235 struct se_portal_group
*tpg
;
236 sense_reason_t ret
= 0;
239 if ((cmd
->t_task_cdb
[1] & 0x01) &&
240 (cmd
->t_task_cdb
[1] & 0x02)) {
241 pr_err("LongIO and Obselete Bits set, returning"
242 " ILLEGAL_REQUEST\n");
243 return TCM_UNSUPPORTED_SCSI_OPCODE
;
246 * This is currently the case for target_core_mod passthrough struct se_cmd
249 if (!sess
|| !sess
->se_tpg
)
251 rc
= target_check_scsi2_reservation_conflict(cmd
);
256 return TCM_RESERVATION_CONFLICT
;
259 spin_lock(&dev
->dev_reservation_lock
);
260 if (dev
->dev_reserved_node_acl
&&
261 (dev
->dev_reserved_node_acl
!= sess
->se_node_acl
)) {
262 pr_err("SCSI-2 RESERVATION CONFLIFT for %s fabric\n",
263 tpg
->se_tpg_tfo
->get_fabric_name());
264 pr_err("Original reserver LUN: %u %s\n",
265 cmd
->se_lun
->unpacked_lun
,
266 dev
->dev_reserved_node_acl
->initiatorname
);
267 pr_err("Current attempt - LUN: %u -> MAPPED LUN: %u"
268 " from %s \n", cmd
->se_lun
->unpacked_lun
,
269 cmd
->se_deve
->mapped_lun
,
270 sess
->se_node_acl
->initiatorname
);
271 ret
= TCM_RESERVATION_CONFLICT
;
275 dev
->dev_reserved_node_acl
= sess
->se_node_acl
;
276 dev
->dev_reservation_flags
|= DRF_SPC2_RESERVATIONS
;
277 if (sess
->sess_bin_isid
!= 0) {
278 dev
->dev_res_bin_isid
= sess
->sess_bin_isid
;
279 dev
->dev_reservation_flags
|= DRF_SPC2_RESERVATIONS_WITH_ISID
;
281 pr_debug("SCSI-2 Reserved %s LUN: %u -> MAPPED LUN: %u"
282 " for %s\n", tpg
->se_tpg_tfo
->get_fabric_name(),
283 cmd
->se_lun
->unpacked_lun
, cmd
->se_deve
->mapped_lun
,
284 sess
->se_node_acl
->initiatorname
);
287 spin_unlock(&dev
->dev_reservation_lock
);
290 target_complete_cmd(cmd
, GOOD
);
296 * Begin SPC-3/SPC-4 Persistent Reservations emulation support
298 * This function is called by those initiator ports who are *NOT*
299 * the active PR reservation holder when a reservation is present.
301 static int core_scsi3_pr_seq_non_holder(
305 unsigned char *cdb
= cmd
->t_task_cdb
;
306 struct se_dev_entry
*se_deve
;
307 struct se_session
*se_sess
= cmd
->se_sess
;
308 int other_cdb
= 0, ignore_reg
;
309 int registered_nexus
= 0, ret
= 1; /* Conflict by default */
310 int all_reg
= 0, reg_only
= 0; /* ALL_REG, REG_ONLY */
311 int we
= 0; /* Write Exclusive */
312 int legacy
= 0; /* Act like a legacy device and return
313 * RESERVATION CONFLICT on some CDBs */
315 se_deve
= se_sess
->se_node_acl
->device_list
[cmd
->orig_fe_lun
];
317 * Determine if the registration should be ignored due to
318 * non-matching ISIDs in target_scsi3_pr_reservation_check().
320 ignore_reg
= (pr_reg_type
& 0x80000000);
322 pr_reg_type
&= ~0x80000000;
324 switch (pr_reg_type
) {
325 case PR_TYPE_WRITE_EXCLUSIVE
:
327 case PR_TYPE_EXCLUSIVE_ACCESS
:
329 * Some commands are only allowed for the persistent reservation
332 if ((se_deve
->def_pr_registered
) && !(ignore_reg
))
333 registered_nexus
= 1;
335 case PR_TYPE_WRITE_EXCLUSIVE_REGONLY
:
337 case PR_TYPE_EXCLUSIVE_ACCESS_REGONLY
:
339 * Some commands are only allowed for registered I_T Nexuses.
342 if ((se_deve
->def_pr_registered
) && !(ignore_reg
))
343 registered_nexus
= 1;
345 case PR_TYPE_WRITE_EXCLUSIVE_ALLREG
:
347 case PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
:
349 * Each registered I_T Nexus is a reservation holder.
352 if ((se_deve
->def_pr_registered
) && !(ignore_reg
))
353 registered_nexus
= 1;
359 * Referenced from spc4r17 table 45 for *NON* PR holder access
362 case SECURITY_PROTOCOL_IN
:
363 if (registered_nexus
)
371 case RECEIVE_DIAGNOSTIC
:
376 if (registered_nexus
) {
380 ret
= (we
) ? 0 : 1; /* Allowed Write Exclusive */
382 case PERSISTENT_RESERVE_OUT
:
384 * This follows PERSISTENT_RESERVE_OUT service actions that
385 * are allowed in the presence of various reservations.
386 * See spc4r17, table 46
388 switch (cdb
[1] & 0x1f) {
391 case PRO_PREEMPT_AND_ABORT
:
392 ret
= (registered_nexus
) ? 0 : 1;
395 case PRO_REGISTER_AND_IGNORE_EXISTING_KEY
:
398 case PRO_REGISTER_AND_MOVE
:
403 ret
= (registered_nexus
) ? 0 : 1;
406 pr_err("Unknown PERSISTENT_RESERVE_OUT service"
407 " action: 0x%02x\n", cdb
[1] & 0x1f);
413 /* Handled by CRH=1 in target_scsi2_reservation_release() */
418 /* Handled by CRH=1 in target_scsi2_reservation_reserve() */
421 case TEST_UNIT_READY
:
422 ret
= (legacy
) ? 1 : 0; /* Conflict for legacy */
425 switch (cdb
[1] & 0x1f) {
426 case MI_MANAGEMENT_PROTOCOL_IN
:
427 if (registered_nexus
) {
431 ret
= (we
) ? 0 : 1; /* Allowed Write Exclusive */
433 case MI_REPORT_SUPPORTED_OPERATION_CODES
:
434 case MI_REPORT_SUPPORTED_TASK_MANAGEMENT_FUNCTIONS
:
439 if (registered_nexus
) {
443 ret
= (we
) ? 0 : 1; /* Allowed Write Exclusive */
445 case MI_REPORT_ALIASES
:
446 case MI_REPORT_IDENTIFYING_INFORMATION
:
447 case MI_REPORT_PRIORITY
:
448 case MI_REPORT_TARGET_PGS
:
449 case MI_REPORT_TIMESTAMP
:
450 ret
= 0; /* Allowed */
453 pr_err("Unknown MI Service Action: 0x%02x\n",
458 case ACCESS_CONTROL_IN
:
459 case ACCESS_CONTROL_OUT
:
462 case READ_MEDIA_SERIAL_NUMBER
:
465 case PERSISTENT_RESERVE_IN
:
466 ret
= 0; /*/ Allowed CDBs */
473 * Case where the CDB is explicitly allowed in the above switch
476 if (!ret
&& !other_cdb
) {
477 pr_debug("Allowing explict CDB: 0x%02x for %s"
478 " reservation holder\n", cdb
[0],
479 core_scsi3_pr_dump_type(pr_reg_type
));
484 * Check if write exclusive initiator ports *NOT* holding the
485 * WRITE_EXCLUSIVE_* reservation.
487 if (we
&& !registered_nexus
) {
488 if (cmd
->data_direction
== DMA_TO_DEVICE
) {
490 * Conflict for write exclusive
492 pr_debug("%s Conflict for unregistered nexus"
493 " %s CDB: 0x%02x to %s reservation\n",
494 transport_dump_cmd_direction(cmd
),
495 se_sess
->se_node_acl
->initiatorname
, cdb
[0],
496 core_scsi3_pr_dump_type(pr_reg_type
));
500 * Allow non WRITE CDBs for all Write Exclusive
501 * PR TYPEs to pass for registered and
502 * non-registered_nexuxes NOT holding the reservation.
504 * We only make noise for the unregisterd nexuses,
505 * as we expect registered non-reservation holding
506 * nexuses to issue CDBs.
509 if (!registered_nexus
) {
510 pr_debug("Allowing implict CDB: 0x%02x"
511 " for %s reservation on unregistered"
513 core_scsi3_pr_dump_type(pr_reg_type
));
518 } else if ((reg_only
) || (all_reg
)) {
519 if (registered_nexus
) {
521 * For PR_*_REG_ONLY and PR_*_ALL_REG reservations,
522 * allow commands from registered nexuses.
525 pr_debug("Allowing implict CDB: 0x%02x for %s"
526 " reservation\n", cdb
[0],
527 core_scsi3_pr_dump_type(pr_reg_type
));
531 } else if (we
&& registered_nexus
) {
533 * Reads are allowed for Write Exclusive locks
534 * from all registrants.
536 if (cmd
->data_direction
== DMA_FROM_DEVICE
) {
537 pr_debug("Allowing READ CDB: 0x%02x for %s"
538 " reservation\n", cdb
[0],
539 core_scsi3_pr_dump_type(pr_reg_type
));
544 pr_debug("%s Conflict for %sregistered nexus %s CDB: 0x%2x"
545 " for %s reservation\n", transport_dump_cmd_direction(cmd
),
546 (registered_nexus
) ? "" : "un",
547 se_sess
->se_node_acl
->initiatorname
, cdb
[0],
548 core_scsi3_pr_dump_type(pr_reg_type
));
550 return 1; /* Conflict by default */
553 static sense_reason_t
554 target_scsi3_pr_reservation_check(struct se_cmd
*cmd
)
556 struct se_device
*dev
= cmd
->se_dev
;
557 struct se_session
*sess
= cmd
->se_sess
;
560 if (!dev
->dev_pr_res_holder
)
563 pr_reg_type
= dev
->dev_pr_res_holder
->pr_res_type
;
564 cmd
->pr_res_key
= dev
->dev_pr_res_holder
->pr_res_key
;
565 if (dev
->dev_pr_res_holder
->pr_reg_nacl
!= sess
->se_node_acl
)
566 goto check_nonholder
;
568 if (dev
->dev_pr_res_holder
->isid_present_at_reg
) {
569 if (dev
->dev_pr_res_holder
->pr_reg_bin_isid
!=
570 sess
->sess_bin_isid
) {
571 pr_reg_type
|= 0x80000000;
572 goto check_nonholder
;
579 if (core_scsi3_pr_seq_non_holder(cmd
, pr_reg_type
))
580 return TCM_RESERVATION_CONFLICT
;
584 static u32
core_scsi3_pr_generation(struct se_device
*dev
)
589 * PRGeneration field shall contain the value of a 32-bit wrapping
590 * counter mainted by the device server.
592 * Note that this is done regardless of Active Persist across
593 * Target PowerLoss (APTPL)
595 * See spc4r17 section 6.3.12 READ_KEYS service action
597 spin_lock(&dev
->dev_reservation_lock
);
598 prg
= dev
->t10_pr
.pr_generation
++;
599 spin_unlock(&dev
->dev_reservation_lock
);
604 static struct t10_pr_registration
*__core_scsi3_do_alloc_registration(
605 struct se_device
*dev
,
606 struct se_node_acl
*nacl
,
607 struct se_dev_entry
*deve
,
613 struct t10_pr_registration
*pr_reg
;
615 pr_reg
= kmem_cache_zalloc(t10_pr_reg_cache
, GFP_ATOMIC
);
617 pr_err("Unable to allocate struct t10_pr_registration\n");
621 INIT_LIST_HEAD(&pr_reg
->pr_reg_list
);
622 INIT_LIST_HEAD(&pr_reg
->pr_reg_abort_list
);
623 INIT_LIST_HEAD(&pr_reg
->pr_reg_aptpl_list
);
624 INIT_LIST_HEAD(&pr_reg
->pr_reg_atp_list
);
625 INIT_LIST_HEAD(&pr_reg
->pr_reg_atp_mem_list
);
626 atomic_set(&pr_reg
->pr_res_holders
, 0);
627 pr_reg
->pr_reg_nacl
= nacl
;
628 pr_reg
->pr_reg_deve
= deve
;
629 pr_reg
->pr_res_mapped_lun
= deve
->mapped_lun
;
630 pr_reg
->pr_aptpl_target_lun
= deve
->se_lun
->unpacked_lun
;
631 pr_reg
->pr_res_key
= sa_res_key
;
632 pr_reg
->pr_reg_all_tg_pt
= all_tg_pt
;
633 pr_reg
->pr_reg_aptpl
= aptpl
;
634 pr_reg
->pr_reg_tg_pt_lun
= deve
->se_lun
;
636 * If an ISID value for this SCSI Initiator Port exists,
637 * save it to the registration now.
640 pr_reg
->pr_reg_bin_isid
= get_unaligned_be64(isid
);
641 snprintf(pr_reg
->pr_reg_isid
, PR_REG_ISID_LEN
, "%s", isid
);
642 pr_reg
->isid_present_at_reg
= 1;
648 static int core_scsi3_lunacl_depend_item(struct se_dev_entry
*);
649 static void core_scsi3_lunacl_undepend_item(struct se_dev_entry
*);
652 * Function used for handling PR registrations for ALL_TG_PT=1 and ALL_TG_PT=0
655 static struct t10_pr_registration
*__core_scsi3_alloc_registration(
656 struct se_device
*dev
,
657 struct se_node_acl
*nacl
,
658 struct se_dev_entry
*deve
,
664 struct se_dev_entry
*deve_tmp
;
665 struct se_node_acl
*nacl_tmp
;
666 struct se_port
*port
, *port_tmp
;
667 struct target_core_fabric_ops
*tfo
= nacl
->se_tpg
->se_tpg_tfo
;
668 struct t10_pr_registration
*pr_reg
, *pr_reg_atp
, *pr_reg_tmp
, *pr_reg_tmp_safe
;
671 * Create a registration for the I_T Nexus upon which the
672 * PROUT REGISTER was received.
674 pr_reg
= __core_scsi3_do_alloc_registration(dev
, nacl
, deve
, isid
,
675 sa_res_key
, all_tg_pt
, aptpl
);
679 * Return pointer to pr_reg for ALL_TG_PT=0
684 * Create list of matching SCSI Initiator Port registrations
687 spin_lock(&dev
->se_port_lock
);
688 list_for_each_entry_safe(port
, port_tmp
, &dev
->dev_sep_list
, sep_list
) {
689 atomic_inc(&port
->sep_tg_pt_ref_cnt
);
690 smp_mb__after_atomic_inc();
691 spin_unlock(&dev
->se_port_lock
);
693 spin_lock_bh(&port
->sep_alua_lock
);
694 list_for_each_entry(deve_tmp
, &port
->sep_alua_list
,
697 * This pointer will be NULL for demo mode MappedLUNs
698 * that have not been make explict via a ConfigFS
699 * MappedLUN group for the SCSI Initiator Node ACL.
701 if (!deve_tmp
->se_lun_acl
)
704 nacl_tmp
= deve_tmp
->se_lun_acl
->se_lun_nacl
;
706 * Skip the matching struct se_node_acl that is allocated
709 if (nacl
== nacl_tmp
)
712 * Only perform PR registrations for target ports on
713 * the same fabric module as the REGISTER w/ ALL_TG_PT=1
716 if (tfo
!= nacl_tmp
->se_tpg
->se_tpg_tfo
)
719 * Look for a matching Initiator Node ACL in ASCII format
721 if (strcmp(nacl
->initiatorname
, nacl_tmp
->initiatorname
))
724 atomic_inc(&deve_tmp
->pr_ref_count
);
725 smp_mb__after_atomic_inc();
726 spin_unlock_bh(&port
->sep_alua_lock
);
728 * Grab a configfs group dependency that is released
729 * for the exception path at label out: below, or upon
730 * completion of adding ALL_TG_PT=1 registrations in
731 * __core_scsi3_add_registration()
733 ret
= core_scsi3_lunacl_depend_item(deve_tmp
);
735 pr_err("core_scsi3_lunacl_depend"
737 atomic_dec(&port
->sep_tg_pt_ref_cnt
);
738 smp_mb__after_atomic_dec();
739 atomic_dec(&deve_tmp
->pr_ref_count
);
740 smp_mb__after_atomic_dec();
744 * Located a matching SCSI Initiator Port on a different
745 * port, allocate the pr_reg_atp and attach it to the
746 * pr_reg->pr_reg_atp_list that will be processed once
747 * the original *pr_reg is processed in
748 * __core_scsi3_add_registration()
750 pr_reg_atp
= __core_scsi3_do_alloc_registration(dev
,
751 nacl_tmp
, deve_tmp
, NULL
,
752 sa_res_key
, all_tg_pt
, aptpl
);
754 atomic_dec(&port
->sep_tg_pt_ref_cnt
);
755 smp_mb__after_atomic_dec();
756 atomic_dec(&deve_tmp
->pr_ref_count
);
757 smp_mb__after_atomic_dec();
758 core_scsi3_lunacl_undepend_item(deve_tmp
);
762 list_add_tail(&pr_reg_atp
->pr_reg_atp_mem_list
,
763 &pr_reg
->pr_reg_atp_list
);
764 spin_lock_bh(&port
->sep_alua_lock
);
766 spin_unlock_bh(&port
->sep_alua_lock
);
768 spin_lock(&dev
->se_port_lock
);
769 atomic_dec(&port
->sep_tg_pt_ref_cnt
);
770 smp_mb__after_atomic_dec();
772 spin_unlock(&dev
->se_port_lock
);
776 list_for_each_entry_safe(pr_reg_tmp
, pr_reg_tmp_safe
,
777 &pr_reg
->pr_reg_atp_list
, pr_reg_atp_mem_list
) {
778 list_del(&pr_reg_tmp
->pr_reg_atp_mem_list
);
779 core_scsi3_lunacl_undepend_item(pr_reg_tmp
->pr_reg_deve
);
780 kmem_cache_free(t10_pr_reg_cache
, pr_reg_tmp
);
782 kmem_cache_free(t10_pr_reg_cache
, pr_reg
);
786 int core_scsi3_alloc_aptpl_registration(
787 struct t10_reservation
*pr_tmpl
,
789 unsigned char *i_port
,
792 unsigned char *t_port
,
799 struct t10_pr_registration
*pr_reg
;
801 if (!i_port
|| !t_port
|| !sa_res_key
) {
802 pr_err("Illegal parameters for APTPL registration\n");
806 pr_reg
= kmem_cache_zalloc(t10_pr_reg_cache
, GFP_KERNEL
);
808 pr_err("Unable to allocate struct t10_pr_registration\n");
812 INIT_LIST_HEAD(&pr_reg
->pr_reg_list
);
813 INIT_LIST_HEAD(&pr_reg
->pr_reg_abort_list
);
814 INIT_LIST_HEAD(&pr_reg
->pr_reg_aptpl_list
);
815 INIT_LIST_HEAD(&pr_reg
->pr_reg_atp_list
);
816 INIT_LIST_HEAD(&pr_reg
->pr_reg_atp_mem_list
);
817 atomic_set(&pr_reg
->pr_res_holders
, 0);
818 pr_reg
->pr_reg_nacl
= NULL
;
819 pr_reg
->pr_reg_deve
= NULL
;
820 pr_reg
->pr_res_mapped_lun
= mapped_lun
;
821 pr_reg
->pr_aptpl_target_lun
= target_lun
;
822 pr_reg
->pr_res_key
= sa_res_key
;
823 pr_reg
->pr_reg_all_tg_pt
= all_tg_pt
;
824 pr_reg
->pr_reg_aptpl
= 1;
825 pr_reg
->pr_reg_tg_pt_lun
= NULL
;
826 pr_reg
->pr_res_scope
= 0; /* Always LUN_SCOPE */
827 pr_reg
->pr_res_type
= type
;
829 * If an ISID value had been saved in APTPL metadata for this
830 * SCSI Initiator Port, restore it now.
833 pr_reg
->pr_reg_bin_isid
= get_unaligned_be64(isid
);
834 snprintf(pr_reg
->pr_reg_isid
, PR_REG_ISID_LEN
, "%s", isid
);
835 pr_reg
->isid_present_at_reg
= 1;
838 * Copy the i_port and t_port information from caller.
840 snprintf(pr_reg
->pr_iport
, PR_APTPL_MAX_IPORT_LEN
, "%s", i_port
);
841 snprintf(pr_reg
->pr_tport
, PR_APTPL_MAX_TPORT_LEN
, "%s", t_port
);
842 pr_reg
->pr_reg_tpgt
= tpgt
;
844 * Set pr_res_holder from caller, the pr_reg who is the reservation
845 * holder will get it's pointer set in core_scsi3_aptpl_reserve() once
846 * the Initiator Node LUN ACL from the fabric module is created for
849 pr_reg
->pr_res_holder
= res_holder
;
851 list_add_tail(&pr_reg
->pr_reg_aptpl_list
, &pr_tmpl
->aptpl_reg_list
);
852 pr_debug("SPC-3 PR APTPL Successfully added registration%s from"
853 " metadata\n", (res_holder
) ? "+reservation" : "");
857 static void core_scsi3_aptpl_reserve(
858 struct se_device
*dev
,
859 struct se_portal_group
*tpg
,
860 struct se_node_acl
*node_acl
,
861 struct t10_pr_registration
*pr_reg
)
863 char i_buf
[PR_REG_ISID_ID_LEN
];
865 memset(i_buf
, 0, PR_REG_ISID_ID_LEN
);
866 core_pr_dump_initiator_port(pr_reg
, i_buf
, PR_REG_ISID_ID_LEN
);
868 spin_lock(&dev
->dev_reservation_lock
);
869 dev
->dev_pr_res_holder
= pr_reg
;
870 spin_unlock(&dev
->dev_reservation_lock
);
872 pr_debug("SPC-3 PR [%s] Service Action: APTPL RESERVE created"
873 " new reservation holder TYPE: %s ALL_TG_PT: %d\n",
874 tpg
->se_tpg_tfo
->get_fabric_name(),
875 core_scsi3_pr_dump_type(pr_reg
->pr_res_type
),
876 (pr_reg
->pr_reg_all_tg_pt
) ? 1 : 0);
877 pr_debug("SPC-3 PR [%s] RESERVE Node: %s%s\n",
878 tpg
->se_tpg_tfo
->get_fabric_name(), node_acl
->initiatorname
,
882 static void __core_scsi3_add_registration(struct se_device
*, struct se_node_acl
*,
883 struct t10_pr_registration
*, enum register_type
, int);
885 static int __core_scsi3_check_aptpl_registration(
886 struct se_device
*dev
,
887 struct se_portal_group
*tpg
,
890 struct se_node_acl
*nacl
,
891 struct se_dev_entry
*deve
)
893 struct t10_pr_registration
*pr_reg
, *pr_reg_tmp
;
894 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
895 unsigned char i_port
[PR_APTPL_MAX_IPORT_LEN
];
896 unsigned char t_port
[PR_APTPL_MAX_TPORT_LEN
];
899 memset(i_port
, 0, PR_APTPL_MAX_IPORT_LEN
);
900 memset(t_port
, 0, PR_APTPL_MAX_TPORT_LEN
);
902 * Copy Initiator Port information from struct se_node_acl
904 snprintf(i_port
, PR_APTPL_MAX_IPORT_LEN
, "%s", nacl
->initiatorname
);
905 snprintf(t_port
, PR_APTPL_MAX_TPORT_LEN
, "%s",
906 tpg
->se_tpg_tfo
->tpg_get_wwn(tpg
));
907 tpgt
= tpg
->se_tpg_tfo
->tpg_get_tag(tpg
);
909 * Look for the matching registrations+reservation from those
910 * created from APTPL metadata. Note that multiple registrations
911 * may exist for fabrics that use ISIDs in their SCSI Initiator Port
914 spin_lock(&pr_tmpl
->aptpl_reg_lock
);
915 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
, &pr_tmpl
->aptpl_reg_list
,
917 if (!strcmp(pr_reg
->pr_iport
, i_port
) &&
918 (pr_reg
->pr_res_mapped_lun
== deve
->mapped_lun
) &&
919 !(strcmp(pr_reg
->pr_tport
, t_port
)) &&
920 (pr_reg
->pr_reg_tpgt
== tpgt
) &&
921 (pr_reg
->pr_aptpl_target_lun
== target_lun
)) {
923 pr_reg
->pr_reg_nacl
= nacl
;
924 pr_reg
->pr_reg_deve
= deve
;
925 pr_reg
->pr_reg_tg_pt_lun
= lun
;
927 list_del(&pr_reg
->pr_reg_aptpl_list
);
928 spin_unlock(&pr_tmpl
->aptpl_reg_lock
);
930 * At this point all of the pointers in *pr_reg will
931 * be setup, so go ahead and add the registration.
934 __core_scsi3_add_registration(dev
, nacl
, pr_reg
, 0, 0);
936 * If this registration is the reservation holder,
937 * make that happen now..
939 if (pr_reg
->pr_res_holder
)
940 core_scsi3_aptpl_reserve(dev
, tpg
,
943 * Reenable pr_aptpl_active to accept new metadata
944 * updates once the SCSI device is active again..
946 spin_lock(&pr_tmpl
->aptpl_reg_lock
);
947 pr_tmpl
->pr_aptpl_active
= 1;
950 spin_unlock(&pr_tmpl
->aptpl_reg_lock
);
955 int core_scsi3_check_aptpl_registration(
956 struct se_device
*dev
,
957 struct se_portal_group
*tpg
,
959 struct se_node_acl
*nacl
,
962 struct se_dev_entry
*deve
= nacl
->device_list
[mapped_lun
];
964 if (dev
->dev_reservation_flags
& DRF_SPC2_RESERVATIONS
)
967 return __core_scsi3_check_aptpl_registration(dev
, tpg
, lun
,
968 lun
->unpacked_lun
, nacl
, deve
);
971 static void __core_scsi3_dump_registration(
972 struct target_core_fabric_ops
*tfo
,
973 struct se_device
*dev
,
974 struct se_node_acl
*nacl
,
975 struct t10_pr_registration
*pr_reg
,
976 enum register_type register_type
)
978 struct se_portal_group
*se_tpg
= nacl
->se_tpg
;
979 char i_buf
[PR_REG_ISID_ID_LEN
];
981 memset(&i_buf
[0], 0, PR_REG_ISID_ID_LEN
);
982 core_pr_dump_initiator_port(pr_reg
, i_buf
, PR_REG_ISID_ID_LEN
);
984 pr_debug("SPC-3 PR [%s] Service Action: REGISTER%s Initiator"
985 " Node: %s%s\n", tfo
->get_fabric_name(), (register_type
== REGISTER_AND_MOVE
) ?
986 "_AND_MOVE" : (register_type
== REGISTER_AND_IGNORE_EXISTING_KEY
) ?
987 "_AND_IGNORE_EXISTING_KEY" : "", nacl
->initiatorname
,
989 pr_debug("SPC-3 PR [%s] registration on Target Port: %s,0x%04x\n",
990 tfo
->get_fabric_name(), tfo
->tpg_get_wwn(se_tpg
),
991 tfo
->tpg_get_tag(se_tpg
));
992 pr_debug("SPC-3 PR [%s] for %s TCM Subsystem %s Object Target"
993 " Port(s)\n", tfo
->get_fabric_name(),
994 (pr_reg
->pr_reg_all_tg_pt
) ? "ALL" : "SINGLE",
995 dev
->transport
->name
);
996 pr_debug("SPC-3 PR [%s] SA Res Key: 0x%016Lx PRgeneration:"
997 " 0x%08x APTPL: %d\n", tfo
->get_fabric_name(),
998 pr_reg
->pr_res_key
, pr_reg
->pr_res_generation
,
999 pr_reg
->pr_reg_aptpl
);
1003 * this function can be called with struct se_device->dev_reservation_lock
1004 * when register_move = 1
1006 static void __core_scsi3_add_registration(
1007 struct se_device
*dev
,
1008 struct se_node_acl
*nacl
,
1009 struct t10_pr_registration
*pr_reg
,
1010 enum register_type register_type
,
1013 struct target_core_fabric_ops
*tfo
= nacl
->se_tpg
->se_tpg_tfo
;
1014 struct t10_pr_registration
*pr_reg_tmp
, *pr_reg_tmp_safe
;
1015 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
1018 * Increment PRgeneration counter for struct se_device upon a successful
1019 * REGISTER, see spc4r17 section 6.3.2 READ_KEYS service action
1021 * Also, when register_move = 1 for PROUT REGISTER_AND_MOVE service
1022 * action, the struct se_device->dev_reservation_lock will already be held,
1023 * so we do not call core_scsi3_pr_generation() which grabs the lock
1026 pr_reg
->pr_res_generation
= (register_move
) ?
1027 dev
->t10_pr
.pr_generation
++ :
1028 core_scsi3_pr_generation(dev
);
1030 spin_lock(&pr_tmpl
->registration_lock
);
1031 list_add_tail(&pr_reg
->pr_reg_list
, &pr_tmpl
->registration_list
);
1032 pr_reg
->pr_reg_deve
->def_pr_registered
= 1;
1034 __core_scsi3_dump_registration(tfo
, dev
, nacl
, pr_reg
, register_type
);
1035 spin_unlock(&pr_tmpl
->registration_lock
);
1037 * Skip extra processing for ALL_TG_PT=0 or REGISTER_AND_MOVE.
1039 if (!pr_reg
->pr_reg_all_tg_pt
|| register_move
)
1042 * Walk pr_reg->pr_reg_atp_list and add registrations for ALL_TG_PT=1
1043 * allocated in __core_scsi3_alloc_registration()
1045 list_for_each_entry_safe(pr_reg_tmp
, pr_reg_tmp_safe
,
1046 &pr_reg
->pr_reg_atp_list
, pr_reg_atp_mem_list
) {
1047 list_del(&pr_reg_tmp
->pr_reg_atp_mem_list
);
1049 pr_reg_tmp
->pr_res_generation
= core_scsi3_pr_generation(dev
);
1051 spin_lock(&pr_tmpl
->registration_lock
);
1052 list_add_tail(&pr_reg_tmp
->pr_reg_list
,
1053 &pr_tmpl
->registration_list
);
1054 pr_reg_tmp
->pr_reg_deve
->def_pr_registered
= 1;
1056 __core_scsi3_dump_registration(tfo
, dev
,
1057 pr_reg_tmp
->pr_reg_nacl
, pr_reg_tmp
,
1059 spin_unlock(&pr_tmpl
->registration_lock
);
1061 * Drop configfs group dependency reference from
1062 * __core_scsi3_alloc_registration()
1064 core_scsi3_lunacl_undepend_item(pr_reg_tmp
->pr_reg_deve
);
1068 static int core_scsi3_alloc_registration(
1069 struct se_device
*dev
,
1070 struct se_node_acl
*nacl
,
1071 struct se_dev_entry
*deve
,
1072 unsigned char *isid
,
1076 enum register_type register_type
,
1079 struct t10_pr_registration
*pr_reg
;
1081 pr_reg
= __core_scsi3_alloc_registration(dev
, nacl
, deve
, isid
,
1082 sa_res_key
, all_tg_pt
, aptpl
);
1086 __core_scsi3_add_registration(dev
, nacl
, pr_reg
,
1087 register_type
, register_move
);
1091 static struct t10_pr_registration
*__core_scsi3_locate_pr_reg(
1092 struct se_device
*dev
,
1093 struct se_node_acl
*nacl
,
1094 unsigned char *isid
)
1096 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
1097 struct t10_pr_registration
*pr_reg
, *pr_reg_tmp
;
1098 struct se_portal_group
*tpg
;
1100 spin_lock(&pr_tmpl
->registration_lock
);
1101 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
,
1102 &pr_tmpl
->registration_list
, pr_reg_list
) {
1104 * First look for a matching struct se_node_acl
1106 if (pr_reg
->pr_reg_nacl
!= nacl
)
1109 tpg
= pr_reg
->pr_reg_nacl
->se_tpg
;
1111 * If this registration does NOT contain a fabric provided
1112 * ISID, then we have found a match.
1114 if (!pr_reg
->isid_present_at_reg
) {
1116 * Determine if this SCSI device server requires that
1117 * SCSI Intiatior TransportID w/ ISIDs is enforced
1118 * for fabric modules (iSCSI) requiring them.
1120 if (tpg
->se_tpg_tfo
->sess_get_initiator_sid
!= NULL
) {
1121 if (dev
->dev_attrib
.enforce_pr_isids
)
1124 atomic_inc(&pr_reg
->pr_res_holders
);
1125 smp_mb__after_atomic_inc();
1126 spin_unlock(&pr_tmpl
->registration_lock
);
1130 * If the *pr_reg contains a fabric defined ISID for multi-value
1131 * SCSI Initiator Port TransportIDs, then we expect a valid
1132 * matching ISID to be provided by the local SCSI Initiator Port.
1136 if (strcmp(isid
, pr_reg
->pr_reg_isid
))
1139 atomic_inc(&pr_reg
->pr_res_holders
);
1140 smp_mb__after_atomic_inc();
1141 spin_unlock(&pr_tmpl
->registration_lock
);
1144 spin_unlock(&pr_tmpl
->registration_lock
);
1149 static struct t10_pr_registration
*core_scsi3_locate_pr_reg(
1150 struct se_device
*dev
,
1151 struct se_node_acl
*nacl
,
1152 struct se_session
*sess
)
1154 struct se_portal_group
*tpg
= nacl
->se_tpg
;
1155 unsigned char buf
[PR_REG_ISID_LEN
], *isid_ptr
= NULL
;
1157 if (tpg
->se_tpg_tfo
->sess_get_initiator_sid
!= NULL
) {
1158 memset(&buf
[0], 0, PR_REG_ISID_LEN
);
1159 tpg
->se_tpg_tfo
->sess_get_initiator_sid(sess
, &buf
[0],
1164 return __core_scsi3_locate_pr_reg(dev
, nacl
, isid_ptr
);
1167 static void core_scsi3_put_pr_reg(struct t10_pr_registration
*pr_reg
)
1169 atomic_dec(&pr_reg
->pr_res_holders
);
1170 smp_mb__after_atomic_dec();
1173 static int core_scsi3_check_implict_release(
1174 struct se_device
*dev
,
1175 struct t10_pr_registration
*pr_reg
)
1177 struct se_node_acl
*nacl
= pr_reg
->pr_reg_nacl
;
1178 struct t10_pr_registration
*pr_res_holder
;
1181 spin_lock(&dev
->dev_reservation_lock
);
1182 pr_res_holder
= dev
->dev_pr_res_holder
;
1183 if (!pr_res_holder
) {
1184 spin_unlock(&dev
->dev_reservation_lock
);
1187 if (pr_res_holder
== pr_reg
) {
1189 * Perform an implict RELEASE if the registration that
1190 * is being released is holding the reservation.
1192 * From spc4r17, section 5.7.11.1:
1194 * e) If the I_T nexus is the persistent reservation holder
1195 * and the persistent reservation is not an all registrants
1196 * type, then a PERSISTENT RESERVE OUT command with REGISTER
1197 * service action or REGISTER AND IGNORE EXISTING KEY
1198 * service action with the SERVICE ACTION RESERVATION KEY
1199 * field set to zero (see 5.7.11.3).
1201 __core_scsi3_complete_pro_release(dev
, nacl
, pr_reg
, 0, 1);
1204 * For 'All Registrants' reservation types, all existing
1205 * registrations are still processed as reservation holders
1206 * in core_scsi3_pr_seq_non_holder() after the initial
1207 * reservation holder is implictly released here.
1209 } else if (pr_reg
->pr_reg_all_tg_pt
&&
1210 (!strcmp(pr_res_holder
->pr_reg_nacl
->initiatorname
,
1211 pr_reg
->pr_reg_nacl
->initiatorname
)) &&
1212 (pr_res_holder
->pr_res_key
== pr_reg
->pr_res_key
)) {
1213 pr_err("SPC-3 PR: Unable to perform ALL_TG_PT=1"
1214 " UNREGISTER while existing reservation with matching"
1215 " key 0x%016Lx is present from another SCSI Initiator"
1216 " Port\n", pr_reg
->pr_res_key
);
1219 spin_unlock(&dev
->dev_reservation_lock
);
1225 * Called with struct t10_reservation->registration_lock held.
1227 static void __core_scsi3_free_registration(
1228 struct se_device
*dev
,
1229 struct t10_pr_registration
*pr_reg
,
1230 struct list_head
*preempt_and_abort_list
,
1233 struct target_core_fabric_ops
*tfo
=
1234 pr_reg
->pr_reg_nacl
->se_tpg
->se_tpg_tfo
;
1235 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
1236 char i_buf
[PR_REG_ISID_ID_LEN
];
1238 memset(i_buf
, 0, PR_REG_ISID_ID_LEN
);
1239 core_pr_dump_initiator_port(pr_reg
, i_buf
, PR_REG_ISID_ID_LEN
);
1241 pr_reg
->pr_reg_deve
->def_pr_registered
= 0;
1242 pr_reg
->pr_reg_deve
->pr_res_key
= 0;
1243 if (!list_empty(&pr_reg
->pr_reg_list
))
1244 list_del(&pr_reg
->pr_reg_list
);
1246 * Caller accessing *pr_reg using core_scsi3_locate_pr_reg(),
1247 * so call core_scsi3_put_pr_reg() to decrement our reference.
1250 core_scsi3_put_pr_reg(pr_reg
);
1252 * Wait until all reference from any other I_T nexuses for this
1253 * *pr_reg have been released. Because list_del() is called above,
1254 * the last core_scsi3_put_pr_reg(pr_reg) will release this reference
1255 * count back to zero, and we release *pr_reg.
1257 while (atomic_read(&pr_reg
->pr_res_holders
) != 0) {
1258 spin_unlock(&pr_tmpl
->registration_lock
);
1259 pr_debug("SPC-3 PR [%s] waiting for pr_res_holders\n",
1260 tfo
->get_fabric_name());
1262 spin_lock(&pr_tmpl
->registration_lock
);
1265 pr_debug("SPC-3 PR [%s] Service Action: UNREGISTER Initiator"
1266 " Node: %s%s\n", tfo
->get_fabric_name(),
1267 pr_reg
->pr_reg_nacl
->initiatorname
,
1269 pr_debug("SPC-3 PR [%s] for %s TCM Subsystem %s Object Target"
1270 " Port(s)\n", tfo
->get_fabric_name(),
1271 (pr_reg
->pr_reg_all_tg_pt
) ? "ALL" : "SINGLE",
1272 dev
->transport
->name
);
1273 pr_debug("SPC-3 PR [%s] SA Res Key: 0x%016Lx PRgeneration:"
1274 " 0x%08x\n", tfo
->get_fabric_name(), pr_reg
->pr_res_key
,
1275 pr_reg
->pr_res_generation
);
1277 if (!preempt_and_abort_list
) {
1278 pr_reg
->pr_reg_deve
= NULL
;
1279 pr_reg
->pr_reg_nacl
= NULL
;
1280 kmem_cache_free(t10_pr_reg_cache
, pr_reg
);
1284 * For PREEMPT_AND_ABORT, the list of *pr_reg in preempt_and_abort_list
1285 * are released once the ABORT_TASK_SET has completed..
1287 list_add_tail(&pr_reg
->pr_reg_abort_list
, preempt_and_abort_list
);
1290 void core_scsi3_free_pr_reg_from_nacl(
1291 struct se_device
*dev
,
1292 struct se_node_acl
*nacl
)
1294 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
1295 struct t10_pr_registration
*pr_reg
, *pr_reg_tmp
, *pr_res_holder
;
1296 bool free_reg
= false;
1298 * If the passed se_node_acl matches the reservation holder,
1299 * release the reservation.
1301 spin_lock(&dev
->dev_reservation_lock
);
1302 pr_res_holder
= dev
->dev_pr_res_holder
;
1303 if ((pr_res_holder
!= NULL
) &&
1304 (pr_res_holder
->pr_reg_nacl
== nacl
)) {
1305 __core_scsi3_complete_pro_release(dev
, nacl
, pr_res_holder
, 0, 1);
1308 spin_unlock(&dev
->dev_reservation_lock
);
1310 * Release any registration associated with the struct se_node_acl.
1312 spin_lock(&pr_tmpl
->registration_lock
);
1313 if (pr_res_holder
&& free_reg
)
1314 __core_scsi3_free_registration(dev
, pr_res_holder
, NULL
, 0);
1316 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
,
1317 &pr_tmpl
->registration_list
, pr_reg_list
) {
1319 if (pr_reg
->pr_reg_nacl
!= nacl
)
1322 __core_scsi3_free_registration(dev
, pr_reg
, NULL
, 0);
1324 spin_unlock(&pr_tmpl
->registration_lock
);
1327 void core_scsi3_free_all_registrations(
1328 struct se_device
*dev
)
1330 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
1331 struct t10_pr_registration
*pr_reg
, *pr_reg_tmp
, *pr_res_holder
;
1333 spin_lock(&dev
->dev_reservation_lock
);
1334 pr_res_holder
= dev
->dev_pr_res_holder
;
1335 if (pr_res_holder
!= NULL
) {
1336 struct se_node_acl
*pr_res_nacl
= pr_res_holder
->pr_reg_nacl
;
1337 __core_scsi3_complete_pro_release(dev
, pr_res_nacl
,
1338 pr_res_holder
, 0, 0);
1340 spin_unlock(&dev
->dev_reservation_lock
);
1342 spin_lock(&pr_tmpl
->registration_lock
);
1343 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
,
1344 &pr_tmpl
->registration_list
, pr_reg_list
) {
1346 __core_scsi3_free_registration(dev
, pr_reg
, NULL
, 0);
1348 spin_unlock(&pr_tmpl
->registration_lock
);
1350 spin_lock(&pr_tmpl
->aptpl_reg_lock
);
1351 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
, &pr_tmpl
->aptpl_reg_list
,
1352 pr_reg_aptpl_list
) {
1353 list_del(&pr_reg
->pr_reg_aptpl_list
);
1354 kmem_cache_free(t10_pr_reg_cache
, pr_reg
);
1356 spin_unlock(&pr_tmpl
->aptpl_reg_lock
);
1359 static int core_scsi3_tpg_depend_item(struct se_portal_group
*tpg
)
1361 return configfs_depend_item(tpg
->se_tpg_tfo
->tf_subsys
,
1362 &tpg
->tpg_group
.cg_item
);
1365 static void core_scsi3_tpg_undepend_item(struct se_portal_group
*tpg
)
1367 configfs_undepend_item(tpg
->se_tpg_tfo
->tf_subsys
,
1368 &tpg
->tpg_group
.cg_item
);
1370 atomic_dec(&tpg
->tpg_pr_ref_count
);
1371 smp_mb__after_atomic_dec();
1374 static int core_scsi3_nodeacl_depend_item(struct se_node_acl
*nacl
)
1376 struct se_portal_group
*tpg
= nacl
->se_tpg
;
1378 if (nacl
->dynamic_node_acl
)
1381 return configfs_depend_item(tpg
->se_tpg_tfo
->tf_subsys
,
1382 &nacl
->acl_group
.cg_item
);
1385 static void core_scsi3_nodeacl_undepend_item(struct se_node_acl
*nacl
)
1387 struct se_portal_group
*tpg
= nacl
->se_tpg
;
1389 if (nacl
->dynamic_node_acl
) {
1390 atomic_dec(&nacl
->acl_pr_ref_count
);
1391 smp_mb__after_atomic_dec();
1395 configfs_undepend_item(tpg
->se_tpg_tfo
->tf_subsys
,
1396 &nacl
->acl_group
.cg_item
);
1398 atomic_dec(&nacl
->acl_pr_ref_count
);
1399 smp_mb__after_atomic_dec();
1402 static int core_scsi3_lunacl_depend_item(struct se_dev_entry
*se_deve
)
1404 struct se_lun_acl
*lun_acl
= se_deve
->se_lun_acl
;
1405 struct se_node_acl
*nacl
;
1406 struct se_portal_group
*tpg
;
1408 * For nacl->dynamic_node_acl=1
1413 nacl
= lun_acl
->se_lun_nacl
;
1416 return configfs_depend_item(tpg
->se_tpg_tfo
->tf_subsys
,
1417 &lun_acl
->se_lun_group
.cg_item
);
1420 static void core_scsi3_lunacl_undepend_item(struct se_dev_entry
*se_deve
)
1422 struct se_lun_acl
*lun_acl
= se_deve
->se_lun_acl
;
1423 struct se_node_acl
*nacl
;
1424 struct se_portal_group
*tpg
;
1426 * For nacl->dynamic_node_acl=1
1429 atomic_dec(&se_deve
->pr_ref_count
);
1430 smp_mb__after_atomic_dec();
1433 nacl
= lun_acl
->se_lun_nacl
;
1436 configfs_undepend_item(tpg
->se_tpg_tfo
->tf_subsys
,
1437 &lun_acl
->se_lun_group
.cg_item
);
1439 atomic_dec(&se_deve
->pr_ref_count
);
1440 smp_mb__after_atomic_dec();
1443 static sense_reason_t
1444 core_scsi3_decode_spec_i_port(
1446 struct se_portal_group
*tpg
,
1447 unsigned char *l_isid
,
1452 struct se_device
*dev
= cmd
->se_dev
;
1453 struct se_port
*tmp_port
;
1454 struct se_portal_group
*dest_tpg
= NULL
, *tmp_tpg
;
1455 struct se_session
*se_sess
= cmd
->se_sess
;
1456 struct se_node_acl
*dest_node_acl
= NULL
;
1457 struct se_dev_entry
*dest_se_deve
= NULL
, *local_se_deve
;
1458 struct t10_pr_registration
*dest_pr_reg
, *local_pr_reg
, *pr_reg_e
;
1459 struct t10_pr_registration
*pr_reg_tmp
, *pr_reg_tmp_safe
;
1460 LIST_HEAD(tid_dest_list
);
1461 struct pr_transport_id_holder
*tidh_new
, *tidh
, *tidh_tmp
;
1462 struct target_core_fabric_ops
*tmp_tf_ops
;
1464 unsigned char *ptr
, *i_str
= NULL
, proto_ident
, tmp_proto_ident
;
1465 char *iport_ptr
= NULL
, dest_iport
[64], i_buf
[PR_REG_ISID_ID_LEN
];
1467 u32 tpdl
, tid_len
= 0;
1468 int dest_local_nexus
;
1471 memset(dest_iport
, 0, 64);
1473 local_se_deve
= se_sess
->se_node_acl
->device_list
[cmd
->orig_fe_lun
];
1475 * Allocate a struct pr_transport_id_holder and setup the
1476 * local_node_acl and local_se_deve pointers and add to
1477 * struct list_head tid_dest_list for add registration
1478 * processing in the loop of tid_dest_list below.
1480 tidh_new
= kzalloc(sizeof(struct pr_transport_id_holder
), GFP_KERNEL
);
1482 pr_err("Unable to allocate tidh_new\n");
1483 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
1485 INIT_LIST_HEAD(&tidh_new
->dest_list
);
1486 tidh_new
->dest_tpg
= tpg
;
1487 tidh_new
->dest_node_acl
= se_sess
->se_node_acl
;
1488 tidh_new
->dest_se_deve
= local_se_deve
;
1490 local_pr_reg
= __core_scsi3_alloc_registration(cmd
->se_dev
,
1491 se_sess
->se_node_acl
, local_se_deve
, l_isid
,
1492 sa_res_key
, all_tg_pt
, aptpl
);
1493 if (!local_pr_reg
) {
1495 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
1497 tidh_new
->dest_pr_reg
= local_pr_reg
;
1499 * The local I_T nexus does not hold any configfs dependances,
1500 * so we set tid_h->dest_local_nexus=1 to prevent the
1501 * configfs_undepend_item() calls in the tid_dest_list loops below.
1503 tidh_new
->dest_local_nexus
= 1;
1504 list_add_tail(&tidh_new
->dest_list
, &tid_dest_list
);
1506 if (cmd
->data_length
< 28) {
1507 pr_warn("SPC-PR: Received PR OUT parameter list"
1508 " length too small: %u\n", cmd
->data_length
);
1509 ret
= TCM_INVALID_PARAMETER_LIST
;
1513 buf
= transport_kmap_data_sg(cmd
);
1515 ret
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
1520 * For a PERSISTENT RESERVE OUT specify initiator ports payload,
1521 * first extract TransportID Parameter Data Length, and make sure
1522 * the value matches up to the SCSI expected data transfer length.
1524 tpdl
= (buf
[24] & 0xff) << 24;
1525 tpdl
|= (buf
[25] & 0xff) << 16;
1526 tpdl
|= (buf
[26] & 0xff) << 8;
1527 tpdl
|= buf
[27] & 0xff;
1529 if ((tpdl
+ 28) != cmd
->data_length
) {
1530 pr_err("SPC-3 PR: Illegal tpdl: %u + 28 byte header"
1531 " does not equal CDB data_length: %u\n", tpdl
,
1533 ret
= TCM_INVALID_PARAMETER_LIST
;
1537 * Start processing the received transport IDs using the
1538 * receiving I_T Nexus portal's fabric dependent methods to
1539 * obtain the SCSI Initiator Port/Device Identifiers.
1544 proto_ident
= (ptr
[0] & 0x0f);
1547 spin_lock(&dev
->se_port_lock
);
1548 list_for_each_entry(tmp_port
, &dev
->dev_sep_list
, sep_list
) {
1549 tmp_tpg
= tmp_port
->sep_tpg
;
1552 tmp_tf_ops
= tmp_tpg
->se_tpg_tfo
;
1555 if (!tmp_tf_ops
->get_fabric_proto_ident
||
1556 !tmp_tf_ops
->tpg_parse_pr_out_transport_id
)
1559 * Look for the matching proto_ident provided by
1560 * the received TransportID
1562 tmp_proto_ident
= tmp_tf_ops
->get_fabric_proto_ident(tmp_tpg
);
1563 if (tmp_proto_ident
!= proto_ident
)
1565 dest_rtpi
= tmp_port
->sep_rtpi
;
1567 i_str
= tmp_tf_ops
->tpg_parse_pr_out_transport_id(
1568 tmp_tpg
, (const char *)ptr
, &tid_len
,
1573 atomic_inc(&tmp_tpg
->tpg_pr_ref_count
);
1574 smp_mb__after_atomic_inc();
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(&tmp_tpg
->tpg_pr_ref_count
);
1581 smp_mb__after_atomic_dec();
1582 ret
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
1586 * Locate the destination initiator ACL to be registered
1587 * from the decoded fabric module specific TransportID
1590 spin_lock_irq(&tmp_tpg
->acl_node_lock
);
1591 dest_node_acl
= __core_tpg_get_initiator_node_acl(
1593 if (dest_node_acl
) {
1594 atomic_inc(&dest_node_acl
->acl_pr_ref_count
);
1595 smp_mb__after_atomic_inc();
1597 spin_unlock_irq(&tmp_tpg
->acl_node_lock
);
1599 if (!dest_node_acl
) {
1600 core_scsi3_tpg_undepend_item(tmp_tpg
);
1601 spin_lock(&dev
->se_port_lock
);
1605 if (core_scsi3_nodeacl_depend_item(dest_node_acl
)) {
1606 pr_err("configfs_depend_item() failed"
1607 " for dest_node_acl->acl_group\n");
1608 atomic_dec(&dest_node_acl
->acl_pr_ref_count
);
1609 smp_mb__after_atomic_dec();
1610 core_scsi3_tpg_undepend_item(tmp_tpg
);
1611 ret
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
1616 pr_debug("SPC-3 PR SPEC_I_PT: Located %s Node:"
1617 " %s Port RTPI: %hu\n",
1618 dest_tpg
->se_tpg_tfo
->get_fabric_name(),
1619 dest_node_acl
->initiatorname
, dest_rtpi
);
1621 spin_lock(&dev
->se_port_lock
);
1624 spin_unlock(&dev
->se_port_lock
);
1627 pr_err("SPC-3 PR SPEC_I_PT: Unable to locate"
1629 ret
= TCM_INVALID_PARAMETER_LIST
;
1633 pr_debug("SPC-3 PR SPEC_I_PT: Got %s data_length: %u tpdl: %u"
1634 " tid_len: %d for %s + %s\n",
1635 dest_tpg
->se_tpg_tfo
->get_fabric_name(), cmd
->data_length
,
1636 tpdl
, tid_len
, i_str
, iport_ptr
);
1638 if (tid_len
> tpdl
) {
1639 pr_err("SPC-3 PR SPEC_I_PT: Illegal tid_len:"
1640 " %u for Transport ID: %s\n", tid_len
, ptr
);
1641 core_scsi3_nodeacl_undepend_item(dest_node_acl
);
1642 core_scsi3_tpg_undepend_item(dest_tpg
);
1643 ret
= TCM_INVALID_PARAMETER_LIST
;
1647 * Locate the desintation struct se_dev_entry pointer for matching
1648 * RELATIVE TARGET PORT IDENTIFIER on the receiving I_T Nexus
1651 dest_se_deve
= core_get_se_deve_from_rtpi(dest_node_acl
,
1653 if (!dest_se_deve
) {
1654 pr_err("Unable to locate %s dest_se_deve"
1655 " from destination RTPI: %hu\n",
1656 dest_tpg
->se_tpg_tfo
->get_fabric_name(),
1659 core_scsi3_nodeacl_undepend_item(dest_node_acl
);
1660 core_scsi3_tpg_undepend_item(dest_tpg
);
1661 ret
= TCM_INVALID_PARAMETER_LIST
;
1665 if (core_scsi3_lunacl_depend_item(dest_se_deve
)) {
1666 pr_err("core_scsi3_lunacl_depend_item()"
1668 atomic_dec(&dest_se_deve
->pr_ref_count
);
1669 smp_mb__after_atomic_dec();
1670 core_scsi3_nodeacl_undepend_item(dest_node_acl
);
1671 core_scsi3_tpg_undepend_item(dest_tpg
);
1672 ret
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
1676 pr_debug("SPC-3 PR SPEC_I_PT: Located %s Node: %s"
1677 " dest_se_deve mapped_lun: %u\n",
1678 dest_tpg
->se_tpg_tfo
->get_fabric_name(),
1679 dest_node_acl
->initiatorname
, dest_se_deve
->mapped_lun
);
1682 * Skip any TransportIDs that already have a registration for
1685 pr_reg_e
= __core_scsi3_locate_pr_reg(dev
, dest_node_acl
,
1688 core_scsi3_put_pr_reg(pr_reg_e
);
1689 core_scsi3_lunacl_undepend_item(dest_se_deve
);
1690 core_scsi3_nodeacl_undepend_item(dest_node_acl
);
1691 core_scsi3_tpg_undepend_item(dest_tpg
);
1698 * Allocate a struct pr_transport_id_holder and setup
1699 * the dest_node_acl and dest_se_deve pointers for the
1702 tidh_new
= kzalloc(sizeof(struct pr_transport_id_holder
),
1705 pr_err("Unable to allocate tidh_new\n");
1706 core_scsi3_lunacl_undepend_item(dest_se_deve
);
1707 core_scsi3_nodeacl_undepend_item(dest_node_acl
);
1708 core_scsi3_tpg_undepend_item(dest_tpg
);
1709 ret
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
1712 INIT_LIST_HEAD(&tidh_new
->dest_list
);
1713 tidh_new
->dest_tpg
= dest_tpg
;
1714 tidh_new
->dest_node_acl
= dest_node_acl
;
1715 tidh_new
->dest_se_deve
= dest_se_deve
;
1718 * Allocate, but do NOT add the registration for the
1719 * TransportID referenced SCSI Initiator port. This
1720 * done because of the following from spc4r17 in section
1721 * 6.14.3 wrt SPEC_I_PT:
1723 * "If a registration fails for any initiator port (e.g., if th
1724 * logical unit does not have enough resources available to
1725 * hold the registration information), no registrations shall be
1726 * made, and the command shall be terminated with
1727 * CHECK CONDITION status."
1729 * That means we call __core_scsi3_alloc_registration() here,
1730 * and then call __core_scsi3_add_registration() in the
1731 * 2nd loop which will never fail.
1733 dest_pr_reg
= __core_scsi3_alloc_registration(cmd
->se_dev
,
1734 dest_node_acl
, dest_se_deve
, iport_ptr
,
1735 sa_res_key
, all_tg_pt
, aptpl
);
1737 core_scsi3_lunacl_undepend_item(dest_se_deve
);
1738 core_scsi3_nodeacl_undepend_item(dest_node_acl
);
1739 core_scsi3_tpg_undepend_item(dest_tpg
);
1741 ret
= TCM_INVALID_PARAMETER_LIST
;
1744 tidh_new
->dest_pr_reg
= dest_pr_reg
;
1745 list_add_tail(&tidh_new
->dest_list
, &tid_dest_list
);
1753 transport_kunmap_data_sg(cmd
);
1756 * Go ahead and create a registrations from tid_dest_list for the
1757 * SPEC_I_PT provided TransportID for the *tidh referenced dest_node_acl
1760 * The SA Reservation Key from the PROUT is set for the
1761 * registration, and ALL_TG_PT is also passed. ALL_TG_PT=1
1762 * means that the TransportID Initiator port will be
1763 * registered on all of the target ports in the SCSI target device
1764 * ALL_TG_PT=0 means the registration will only be for the
1765 * SCSI target port the PROUT REGISTER with SPEC_I_PT=1
1768 list_for_each_entry_safe(tidh
, tidh_tmp
, &tid_dest_list
, dest_list
) {
1769 dest_tpg
= tidh
->dest_tpg
;
1770 dest_node_acl
= tidh
->dest_node_acl
;
1771 dest_se_deve
= tidh
->dest_se_deve
;
1772 dest_pr_reg
= tidh
->dest_pr_reg
;
1773 dest_local_nexus
= tidh
->dest_local_nexus
;
1775 list_del(&tidh
->dest_list
);
1778 memset(i_buf
, 0, PR_REG_ISID_ID_LEN
);
1779 core_pr_dump_initiator_port(dest_pr_reg
, i_buf
, PR_REG_ISID_ID_LEN
);
1781 __core_scsi3_add_registration(cmd
->se_dev
, dest_node_acl
,
1784 pr_debug("SPC-3 PR [%s] SPEC_I_PT: Successfully"
1785 " registered Transport ID for Node: %s%s Mapped LUN:"
1786 " %u\n", dest_tpg
->se_tpg_tfo
->get_fabric_name(),
1787 dest_node_acl
->initiatorname
, i_buf
, dest_se_deve
->mapped_lun
);
1789 if (dest_local_nexus
)
1792 core_scsi3_lunacl_undepend_item(dest_se_deve
);
1793 core_scsi3_nodeacl_undepend_item(dest_node_acl
);
1794 core_scsi3_tpg_undepend_item(dest_tpg
);
1799 transport_kunmap_data_sg(cmd
);
1802 * For the failure case, release everything from tid_dest_list
1803 * including *dest_pr_reg and the configfs dependances..
1805 list_for_each_entry_safe(tidh
, tidh_tmp
, &tid_dest_list
, dest_list
) {
1806 dest_tpg
= tidh
->dest_tpg
;
1807 dest_node_acl
= tidh
->dest_node_acl
;
1808 dest_se_deve
= tidh
->dest_se_deve
;
1809 dest_pr_reg
= tidh
->dest_pr_reg
;
1810 dest_local_nexus
= tidh
->dest_local_nexus
;
1812 list_del(&tidh
->dest_list
);
1815 * Release any extra ALL_TG_PT=1 registrations for
1816 * the SPEC_I_PT=1 case.
1818 list_for_each_entry_safe(pr_reg_tmp
, pr_reg_tmp_safe
,
1819 &dest_pr_reg
->pr_reg_atp_list
,
1820 pr_reg_atp_mem_list
) {
1821 list_del(&pr_reg_tmp
->pr_reg_atp_mem_list
);
1822 core_scsi3_lunacl_undepend_item(pr_reg_tmp
->pr_reg_deve
);
1823 kmem_cache_free(t10_pr_reg_cache
, pr_reg_tmp
);
1826 kmem_cache_free(t10_pr_reg_cache
, dest_pr_reg
);
1828 if (dest_local_nexus
)
1831 core_scsi3_lunacl_undepend_item(dest_se_deve
);
1832 core_scsi3_nodeacl_undepend_item(dest_node_acl
);
1833 core_scsi3_tpg_undepend_item(dest_tpg
);
1838 static int core_scsi3_update_aptpl_buf(
1839 struct se_device
*dev
,
1841 u32 pr_aptpl_buf_len
)
1844 struct se_portal_group
*tpg
;
1845 struct t10_pr_registration
*pr_reg
;
1846 unsigned char tmp
[512], isid_buf
[32];
1851 spin_lock(&dev
->dev_reservation_lock
);
1852 spin_lock(&dev
->t10_pr
.registration_lock
);
1854 * Walk the registration list..
1856 list_for_each_entry(pr_reg
, &dev
->t10_pr
.registration_list
,
1861 tpg
= pr_reg
->pr_reg_nacl
->se_tpg
;
1862 lun
= pr_reg
->pr_reg_tg_pt_lun
;
1864 * Write out any ISID value to APTPL metadata that was included
1865 * in the original registration.
1867 if (pr_reg
->isid_present_at_reg
)
1868 snprintf(isid_buf
, 32, "initiator_sid=%s\n",
1869 pr_reg
->pr_reg_isid
);
1871 * Include special metadata if the pr_reg matches the
1872 * reservation holder.
1874 if (dev
->dev_pr_res_holder
== pr_reg
) {
1875 snprintf(tmp
, 512, "PR_REG_START: %d"
1876 "\ninitiator_fabric=%s\n"
1877 "initiator_node=%s\n%s"
1879 "res_holder=1\nres_type=%02x\n"
1880 "res_scope=%02x\nres_all_tg_pt=%d\n"
1881 "mapped_lun=%u\n", reg_count
,
1882 tpg
->se_tpg_tfo
->get_fabric_name(),
1883 pr_reg
->pr_reg_nacl
->initiatorname
, isid_buf
,
1884 pr_reg
->pr_res_key
, pr_reg
->pr_res_type
,
1885 pr_reg
->pr_res_scope
, pr_reg
->pr_reg_all_tg_pt
,
1886 pr_reg
->pr_res_mapped_lun
);
1888 snprintf(tmp
, 512, "PR_REG_START: %d\n"
1889 "initiator_fabric=%s\ninitiator_node=%s\n%s"
1890 "sa_res_key=%llu\nres_holder=0\n"
1891 "res_all_tg_pt=%d\nmapped_lun=%u\n",
1892 reg_count
, tpg
->se_tpg_tfo
->get_fabric_name(),
1893 pr_reg
->pr_reg_nacl
->initiatorname
, isid_buf
,
1894 pr_reg
->pr_res_key
, pr_reg
->pr_reg_all_tg_pt
,
1895 pr_reg
->pr_res_mapped_lun
);
1898 if ((len
+ strlen(tmp
) >= pr_aptpl_buf_len
)) {
1899 pr_err("Unable to update renaming APTPL metadata,"
1900 " reallocating larger buffer\n");
1904 len
+= sprintf(buf
+len
, "%s", tmp
);
1907 * Include information about the associated SCSI target port.
1909 snprintf(tmp
, 512, "target_fabric=%s\ntarget_node=%s\n"
1910 "tpgt=%hu\nport_rtpi=%hu\ntarget_lun=%u\nPR_REG_END:"
1911 " %d\n", tpg
->se_tpg_tfo
->get_fabric_name(),
1912 tpg
->se_tpg_tfo
->tpg_get_wwn(tpg
),
1913 tpg
->se_tpg_tfo
->tpg_get_tag(tpg
),
1914 lun
->lun_sep
->sep_rtpi
, lun
->unpacked_lun
, reg_count
);
1916 if ((len
+ strlen(tmp
) >= pr_aptpl_buf_len
)) {
1917 pr_err("Unable to update renaming APTPL metadata,"
1918 " reallocating larger buffer\n");
1922 len
+= sprintf(buf
+len
, "%s", tmp
);
1927 len
+= sprintf(buf
+len
, "No Registrations or Reservations");
1930 spin_unlock(&dev
->t10_pr
.registration_lock
);
1931 spin_unlock(&dev
->dev_reservation_lock
);
1936 static int __core_scsi3_write_aptpl_to_file(
1937 struct se_device
*dev
,
1940 struct t10_wwn
*wwn
= &dev
->t10_wwn
;
1942 int flags
= O_RDWR
| O_CREAT
| O_TRUNC
;
1944 u32 pr_aptpl_buf_len
;
1947 memset(path
, 0, 512);
1949 if (strlen(&wwn
->unit_serial
[0]) >= 512) {
1950 pr_err("WWN value for struct se_device does not fit"
1951 " into path buffer\n");
1955 snprintf(path
, 512, "/var/target/pr/aptpl_%s", &wwn
->unit_serial
[0]);
1956 file
= filp_open(path
, flags
, 0600);
1958 pr_err("filp_open(%s) for APTPL metadata"
1960 return PTR_ERR(file
);
1963 pr_aptpl_buf_len
= (strlen(buf
) + 1); /* Add extra for NULL */
1965 ret
= kernel_write(file
, buf
, pr_aptpl_buf_len
, 0);
1968 pr_debug("Error writing APTPL metadata file: %s\n", path
);
1971 return (ret
< 0) ? -EIO
: 0;
1975 * Clear the APTPL metadata if APTPL has been disabled, otherwise
1976 * write out the updated metadata to struct file for this SCSI device.
1978 static sense_reason_t
core_scsi3_update_and_write_aptpl(struct se_device
*dev
, bool aptpl
)
1981 int rc
, len
= PR_APTPL_BUF_LEN
;
1984 char *null_buf
= "No Registrations or Reservations\n";
1986 rc
= __core_scsi3_write_aptpl_to_file(dev
, null_buf
);
1987 dev
->t10_pr
.pr_aptpl_active
= 0;
1988 pr_debug("SPC-3 PR: Set APTPL Bit Deactivated\n");
1991 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
1998 return TCM_OUT_OF_RESOURCES
;
2000 rc
= core_scsi3_update_aptpl_buf(dev
, buf
, len
);
2007 rc
= __core_scsi3_write_aptpl_to_file(dev
, buf
);
2009 pr_err("SPC-3 PR: Could not update APTPL\n");
2011 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
2013 dev
->t10_pr
.pr_aptpl_active
= 1;
2015 pr_debug("SPC-3 PR: Set APTPL Bit Activated\n");
2019 static sense_reason_t
2020 core_scsi3_emulate_pro_register(struct se_cmd
*cmd
, u64 res_key
, u64 sa_res_key
,
2021 bool aptpl
, bool all_tg_pt
, bool spec_i_pt
, enum register_type register_type
)
2023 struct se_session
*se_sess
= cmd
->se_sess
;
2024 struct se_device
*dev
= cmd
->se_dev
;
2025 struct se_dev_entry
*se_deve
;
2026 struct se_lun
*se_lun
= cmd
->se_lun
;
2027 struct se_portal_group
*se_tpg
;
2028 struct t10_pr_registration
*pr_reg
, *pr_reg_p
, *pr_reg_tmp
;
2029 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
2030 unsigned char isid_buf
[PR_REG_ISID_LEN
], *isid_ptr
= NULL
;
2031 sense_reason_t ret
= TCM_NO_SENSE
;
2032 int pr_holder
= 0, type
;
2034 if (!se_sess
|| !se_lun
) {
2035 pr_err("SPC-3 PR: se_sess || struct se_lun is NULL!\n");
2036 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
2038 se_tpg
= se_sess
->se_tpg
;
2039 se_deve
= se_sess
->se_node_acl
->device_list
[cmd
->orig_fe_lun
];
2041 if (se_tpg
->se_tpg_tfo
->sess_get_initiator_sid
) {
2042 memset(&isid_buf
[0], 0, PR_REG_ISID_LEN
);
2043 se_tpg
->se_tpg_tfo
->sess_get_initiator_sid(se_sess
, &isid_buf
[0],
2045 isid_ptr
= &isid_buf
[0];
2048 * Follow logic from spc4r17 Section 5.7.7, Register Behaviors Table 47
2050 pr_reg
= core_scsi3_locate_pr_reg(dev
, se_sess
->se_node_acl
, se_sess
);
2053 pr_warn("SPC-3 PR: Reservation Key non-zero"
2054 " for SA REGISTER, returning CONFLICT\n");
2055 return TCM_RESERVATION_CONFLICT
;
2058 * Do nothing but return GOOD status.
2065 * Perform the Service Action REGISTER on the Initiator
2066 * Port Endpoint that the PRO was received from on the
2067 * Logical Unit of the SCSI device server.
2069 if (core_scsi3_alloc_registration(cmd
->se_dev
,
2070 se_sess
->se_node_acl
, se_deve
, isid_ptr
,
2071 sa_res_key
, all_tg_pt
, aptpl
,
2072 register_type
, 0)) {
2073 pr_err("Unable to allocate"
2074 " struct t10_pr_registration\n");
2075 return TCM_INVALID_PARAMETER_LIST
;
2079 * Register both the Initiator port that received
2080 * PROUT SA REGISTER + SPEC_I_PT=1 and extract SCSI
2081 * TransportID from Parameter list and loop through
2082 * fabric dependent parameter list while calling
2083 * logic from of core_scsi3_alloc_registration() for
2084 * each TransportID provided SCSI Initiator Port/Device
2086 ret
= core_scsi3_decode_spec_i_port(cmd
, se_tpg
,
2087 isid_ptr
, sa_res_key
, all_tg_pt
, aptpl
);
2092 return core_scsi3_update_and_write_aptpl(dev
, aptpl
);
2095 /* ok, existing registration */
2097 if ((register_type
== REGISTER
) && (res_key
!= pr_reg
->pr_res_key
)) {
2098 pr_err("SPC-3 PR REGISTER: Received"
2099 " res_key: 0x%016Lx does not match"
2100 " existing SA REGISTER res_key:"
2101 " 0x%016Lx\n", res_key
,
2102 pr_reg
->pr_res_key
);
2103 ret
= TCM_RESERVATION_CONFLICT
;
2108 pr_err("SPC-3 PR REGISTER: SPEC_I_PT"
2109 " set on a registered nexus\n");
2110 ret
= TCM_INVALID_PARAMETER_LIST
;
2115 * An existing ALL_TG_PT=1 registration being released
2116 * must also set ALL_TG_PT=1 in the incoming PROUT.
2118 if (pr_reg
->pr_reg_all_tg_pt
&& !all_tg_pt
) {
2119 pr_err("SPC-3 PR REGISTER: ALL_TG_PT=1"
2120 " registration exists, but ALL_TG_PT=1 bit not"
2121 " present in received PROUT\n");
2122 ret
= TCM_INVALID_CDB_FIELD
;
2127 * sa_res_key=1 Change Reservation Key for registered I_T Nexus.
2131 * Increment PRgeneration counter for struct se_device"
2132 * upon a successful REGISTER, see spc4r17 section 6.3.2
2133 * READ_KEYS service action.
2135 pr_reg
->pr_res_generation
= core_scsi3_pr_generation(cmd
->se_dev
);
2136 pr_reg
->pr_res_key
= sa_res_key
;
2137 pr_debug("SPC-3 PR [%s] REGISTER%s: Changed Reservation"
2138 " Key for %s to: 0x%016Lx PRgeneration:"
2139 " 0x%08x\n", cmd
->se_tfo
->get_fabric_name(),
2140 (register_type
== REGISTER_AND_IGNORE_EXISTING_KEY
) ? "_AND_IGNORE_EXISTING_KEY" : "",
2141 pr_reg
->pr_reg_nacl
->initiatorname
,
2142 pr_reg
->pr_res_key
, pr_reg
->pr_res_generation
);
2146 * sa_res_key=0 Unregister Reservation Key for registered I_T Nexus.
2148 type
= pr_reg
->pr_res_type
;
2149 pr_holder
= core_scsi3_check_implict_release(cmd
->se_dev
,
2151 if (pr_holder
< 0) {
2152 ret
= TCM_RESERVATION_CONFLICT
;
2156 spin_lock(&pr_tmpl
->registration_lock
);
2158 * Release all ALL_TG_PT=1 for the matching SCSI Initiator Port
2159 * and matching pr_res_key.
2161 if (pr_reg
->pr_reg_all_tg_pt
) {
2162 list_for_each_entry_safe(pr_reg_p
, pr_reg_tmp
,
2163 &pr_tmpl
->registration_list
,
2166 if (!pr_reg_p
->pr_reg_all_tg_pt
)
2168 if (pr_reg_p
->pr_res_key
!= res_key
)
2170 if (pr_reg
== pr_reg_p
)
2172 if (strcmp(pr_reg
->pr_reg_nacl
->initiatorname
,
2173 pr_reg_p
->pr_reg_nacl
->initiatorname
))
2176 __core_scsi3_free_registration(dev
,
2182 * Release the calling I_T Nexus registration now..
2184 __core_scsi3_free_registration(cmd
->se_dev
, pr_reg
, NULL
, 1);
2188 * From spc4r17, section 5.7.11.3 Unregistering
2190 * If the persistent reservation is a registrants only
2191 * type, the device server shall establish a unit
2192 * attention condition for the initiator port associated
2193 * with every registered I_T nexus except for the I_T
2194 * nexus on which the PERSISTENT RESERVE OUT command was
2195 * received, with the additional sense code set to
2196 * RESERVATIONS RELEASED.
2199 (type
== PR_TYPE_WRITE_EXCLUSIVE_REGONLY
||
2200 type
== PR_TYPE_EXCLUSIVE_ACCESS_REGONLY
)) {
2201 list_for_each_entry(pr_reg_p
,
2202 &pr_tmpl
->registration_list
,
2205 core_scsi3_ua_allocate(
2206 pr_reg_p
->pr_reg_nacl
,
2207 pr_reg_p
->pr_res_mapped_lun
,
2209 ASCQ_2AH_RESERVATIONS_RELEASED
);
2213 spin_unlock(&pr_tmpl
->registration_lock
);
2216 ret
= core_scsi3_update_and_write_aptpl(dev
, aptpl
);
2220 core_scsi3_put_pr_reg(pr_reg
);
2224 unsigned char *core_scsi3_pr_dump_type(int type
)
2227 case PR_TYPE_WRITE_EXCLUSIVE
:
2228 return "Write Exclusive Access";
2229 case PR_TYPE_EXCLUSIVE_ACCESS
:
2230 return "Exclusive Access";
2231 case PR_TYPE_WRITE_EXCLUSIVE_REGONLY
:
2232 return "Write Exclusive Access, Registrants Only";
2233 case PR_TYPE_EXCLUSIVE_ACCESS_REGONLY
:
2234 return "Exclusive Access, Registrants Only";
2235 case PR_TYPE_WRITE_EXCLUSIVE_ALLREG
:
2236 return "Write Exclusive Access, All Registrants";
2237 case PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
:
2238 return "Exclusive Access, All Registrants";
2243 return "Unknown SPC-3 PR Type";
2246 static sense_reason_t
2247 core_scsi3_pro_reserve(struct se_cmd
*cmd
, int type
, int scope
, u64 res_key
)
2249 struct se_device
*dev
= cmd
->se_dev
;
2250 struct se_session
*se_sess
= cmd
->se_sess
;
2251 struct se_lun
*se_lun
= cmd
->se_lun
;
2252 struct t10_pr_registration
*pr_reg
, *pr_res_holder
;
2253 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
2254 char i_buf
[PR_REG_ISID_ID_LEN
];
2257 memset(i_buf
, 0, PR_REG_ISID_ID_LEN
);
2259 if (!se_sess
|| !se_lun
) {
2260 pr_err("SPC-3 PR: se_sess || struct se_lun is NULL!\n");
2261 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
2264 * Locate the existing *pr_reg via struct se_node_acl pointers
2266 pr_reg
= core_scsi3_locate_pr_reg(cmd
->se_dev
, se_sess
->se_node_acl
,
2269 pr_err("SPC-3 PR: Unable to locate"
2270 " PR_REGISTERED *pr_reg for RESERVE\n");
2271 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
2274 * From spc4r17 Section 5.7.9: Reserving:
2276 * An application client creates a persistent reservation by issuing
2277 * a PERSISTENT RESERVE OUT command with RESERVE service action through
2278 * a registered I_T nexus with the following parameters:
2279 * a) RESERVATION KEY set to the value of the reservation key that is
2280 * registered with the logical unit for the I_T nexus; and
2282 if (res_key
!= pr_reg
->pr_res_key
) {
2283 pr_err("SPC-3 PR RESERVE: Received res_key: 0x%016Lx"
2284 " does not match existing SA REGISTER res_key:"
2285 " 0x%016Lx\n", res_key
, pr_reg
->pr_res_key
);
2286 ret
= TCM_RESERVATION_CONFLICT
;
2287 goto out_put_pr_reg
;
2290 * From spc4r17 Section 5.7.9: Reserving:
2293 * b) TYPE field and SCOPE field set to the persistent reservation
2296 * Only one persistent reservation is allowed at a time per logical unit
2297 * and that persistent reservation has a scope of LU_SCOPE.
2299 if (scope
!= PR_SCOPE_LU_SCOPE
) {
2300 pr_err("SPC-3 PR: Illegal SCOPE: 0x%02x\n", scope
);
2301 ret
= TCM_INVALID_PARAMETER_LIST
;
2302 goto out_put_pr_reg
;
2305 * See if we have an existing PR reservation holder pointer at
2306 * struct se_device->dev_pr_res_holder in the form struct t10_pr_registration
2309 spin_lock(&dev
->dev_reservation_lock
);
2310 pr_res_holder
= dev
->dev_pr_res_holder
;
2311 if (pr_res_holder
) {
2312 int pr_res_type
= pr_res_holder
->pr_res_type
;
2314 * From spc4r17 Section 5.7.9: Reserving:
2316 * If the device server receives a PERSISTENT RESERVE OUT
2317 * command from an I_T nexus other than a persistent reservation
2318 * holder (see 5.7.10) that attempts to create a persistent
2319 * reservation when a persistent reservation already exists for
2320 * the logical unit, then the command shall be completed with
2321 * RESERVATION CONFLICT status.
2323 if ((pr_res_holder
!= pr_reg
) &&
2324 (pr_res_type
!= PR_TYPE_WRITE_EXCLUSIVE_ALLREG
) &&
2325 (pr_res_type
!= PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
)) {
2326 struct se_node_acl
*pr_res_nacl
= pr_res_holder
->pr_reg_nacl
;
2327 pr_err("SPC-3 PR: Attempted RESERVE from"
2328 " [%s]: %s while reservation already held by"
2329 " [%s]: %s, returning RESERVATION_CONFLICT\n",
2330 cmd
->se_tfo
->get_fabric_name(),
2331 se_sess
->se_node_acl
->initiatorname
,
2332 pr_res_nacl
->se_tpg
->se_tpg_tfo
->get_fabric_name(),
2333 pr_res_holder
->pr_reg_nacl
->initiatorname
);
2335 spin_unlock(&dev
->dev_reservation_lock
);
2336 ret
= TCM_RESERVATION_CONFLICT
;
2337 goto out_put_pr_reg
;
2340 * From spc4r17 Section 5.7.9: Reserving:
2342 * If a persistent reservation holder attempts to modify the
2343 * type or scope of an existing persistent reservation, the
2344 * command shall be completed with RESERVATION CONFLICT status.
2346 if ((pr_res_holder
->pr_res_type
!= type
) ||
2347 (pr_res_holder
->pr_res_scope
!= scope
)) {
2348 struct se_node_acl
*pr_res_nacl
= pr_res_holder
->pr_reg_nacl
;
2349 pr_err("SPC-3 PR: Attempted RESERVE from"
2350 " [%s]: %s trying to change TYPE and/or SCOPE,"
2351 " while reservation already held by [%s]: %s,"
2352 " returning RESERVATION_CONFLICT\n",
2353 cmd
->se_tfo
->get_fabric_name(),
2354 se_sess
->se_node_acl
->initiatorname
,
2355 pr_res_nacl
->se_tpg
->se_tpg_tfo
->get_fabric_name(),
2356 pr_res_holder
->pr_reg_nacl
->initiatorname
);
2358 spin_unlock(&dev
->dev_reservation_lock
);
2359 ret
= TCM_RESERVATION_CONFLICT
;
2360 goto out_put_pr_reg
;
2363 * From spc4r17 Section 5.7.9: Reserving:
2365 * If the device server receives a PERSISTENT RESERVE OUT
2366 * command with RESERVE service action where the TYPE field and
2367 * the SCOPE field contain the same values as the existing type
2368 * and scope from a persistent reservation holder, it shall not
2369 * make any change to the existing persistent reservation and
2370 * shall completethe command with GOOD status.
2372 spin_unlock(&dev
->dev_reservation_lock
);
2374 goto out_put_pr_reg
;
2377 * Otherwise, our *pr_reg becomes the PR reservation holder for said
2378 * TYPE/SCOPE. Also set the received scope and type in *pr_reg.
2380 pr_reg
->pr_res_scope
= scope
;
2381 pr_reg
->pr_res_type
= type
;
2382 pr_reg
->pr_res_holder
= 1;
2383 dev
->dev_pr_res_holder
= pr_reg
;
2384 core_pr_dump_initiator_port(pr_reg
, i_buf
, PR_REG_ISID_ID_LEN
);
2386 pr_debug("SPC-3 PR [%s] Service Action: RESERVE created new"
2387 " reservation holder TYPE: %s ALL_TG_PT: %d\n",
2388 cmd
->se_tfo
->get_fabric_name(), core_scsi3_pr_dump_type(type
),
2389 (pr_reg
->pr_reg_all_tg_pt
) ? 1 : 0);
2390 pr_debug("SPC-3 PR [%s] RESERVE Node: %s%s\n",
2391 cmd
->se_tfo
->get_fabric_name(),
2392 se_sess
->se_node_acl
->initiatorname
,
2394 spin_unlock(&dev
->dev_reservation_lock
);
2396 if (pr_tmpl
->pr_aptpl_active
)
2397 core_scsi3_update_and_write_aptpl(cmd
->se_dev
, true);
2401 core_scsi3_put_pr_reg(pr_reg
);
2405 static sense_reason_t
2406 core_scsi3_emulate_pro_reserve(struct se_cmd
*cmd
, int type
, int scope
,
2410 case PR_TYPE_WRITE_EXCLUSIVE
:
2411 case PR_TYPE_EXCLUSIVE_ACCESS
:
2412 case PR_TYPE_WRITE_EXCLUSIVE_REGONLY
:
2413 case PR_TYPE_EXCLUSIVE_ACCESS_REGONLY
:
2414 case PR_TYPE_WRITE_EXCLUSIVE_ALLREG
:
2415 case PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
:
2416 return core_scsi3_pro_reserve(cmd
, type
, scope
, res_key
);
2418 pr_err("SPC-3 PR: Unknown Service Action RESERVE Type:"
2420 return TCM_INVALID_CDB_FIELD
;
2425 * Called with struct se_device->dev_reservation_lock held.
2427 static void __core_scsi3_complete_pro_release(
2428 struct se_device
*dev
,
2429 struct se_node_acl
*se_nacl
,
2430 struct t10_pr_registration
*pr_reg
,
2434 struct target_core_fabric_ops
*tfo
= se_nacl
->se_tpg
->se_tpg_tfo
;
2435 char i_buf
[PR_REG_ISID_ID_LEN
];
2436 int pr_res_type
= 0, pr_res_scope
= 0;
2438 memset(i_buf
, 0, PR_REG_ISID_ID_LEN
);
2439 core_pr_dump_initiator_port(pr_reg
, i_buf
, PR_REG_ISID_ID_LEN
);
2441 * Go ahead and release the current PR reservation holder.
2442 * If an All Registrants reservation is currently active and
2443 * a unregister operation is requested, replace the current
2444 * dev_pr_res_holder with another active registration.
2446 if (dev
->dev_pr_res_holder
) {
2447 pr_res_type
= dev
->dev_pr_res_holder
->pr_res_type
;
2448 pr_res_scope
= dev
->dev_pr_res_holder
->pr_res_scope
;
2449 dev
->dev_pr_res_holder
->pr_res_type
= 0;
2450 dev
->dev_pr_res_holder
->pr_res_scope
= 0;
2451 dev
->dev_pr_res_holder
->pr_res_holder
= 0;
2452 dev
->dev_pr_res_holder
= NULL
;
2457 spin_lock(&dev
->t10_pr
.registration_lock
);
2458 list_del_init(&pr_reg
->pr_reg_list
);
2460 * If the I_T nexus is a reservation holder, the persistent reservation
2461 * is of an all registrants type, and the I_T nexus is the last remaining
2462 * registered I_T nexus, then the device server shall also release the
2463 * persistent reservation.
2465 if (!list_empty(&dev
->t10_pr
.registration_list
) &&
2466 ((pr_res_type
== PR_TYPE_WRITE_EXCLUSIVE_ALLREG
) ||
2467 (pr_res_type
== PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
))) {
2468 dev
->dev_pr_res_holder
=
2469 list_entry(dev
->t10_pr
.registration_list
.next
,
2470 struct t10_pr_registration
, pr_reg_list
);
2471 dev
->dev_pr_res_holder
->pr_res_type
= pr_res_type
;
2472 dev
->dev_pr_res_holder
->pr_res_scope
= pr_res_scope
;
2473 dev
->dev_pr_res_holder
->pr_res_holder
= 1;
2475 spin_unlock(&dev
->t10_pr
.registration_lock
);
2477 if (!dev
->dev_pr_res_holder
) {
2478 pr_debug("SPC-3 PR [%s] Service Action: %s RELEASE cleared"
2479 " reservation holder TYPE: %s ALL_TG_PT: %d\n",
2480 tfo
->get_fabric_name(), (explict
) ? "explict" :
2481 "implict", core_scsi3_pr_dump_type(pr_res_type
),
2482 (pr_reg
->pr_reg_all_tg_pt
) ? 1 : 0);
2484 pr_debug("SPC-3 PR [%s] RELEASE Node: %s%s\n",
2485 tfo
->get_fabric_name(), se_nacl
->initiatorname
,
2488 * Clear TYPE and SCOPE for the next PROUT Service Action: RESERVE
2490 pr_reg
->pr_res_holder
= pr_reg
->pr_res_type
= pr_reg
->pr_res_scope
= 0;
2493 static sense_reason_t
2494 core_scsi3_emulate_pro_release(struct se_cmd
*cmd
, int type
, int scope
,
2497 struct se_device
*dev
= cmd
->se_dev
;
2498 struct se_session
*se_sess
= cmd
->se_sess
;
2499 struct se_lun
*se_lun
= cmd
->se_lun
;
2500 struct t10_pr_registration
*pr_reg
, *pr_reg_p
, *pr_res_holder
;
2501 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
2503 sense_reason_t ret
= 0;
2505 if (!se_sess
|| !se_lun
) {
2506 pr_err("SPC-3 PR: se_sess || struct se_lun is NULL!\n");
2507 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
2510 * Locate the existing *pr_reg via struct se_node_acl pointers
2512 pr_reg
= core_scsi3_locate_pr_reg(dev
, se_sess
->se_node_acl
, se_sess
);
2514 pr_err("SPC-3 PR: Unable to locate"
2515 " PR_REGISTERED *pr_reg for RELEASE\n");
2516 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
2519 * From spc4r17 Section 5.7.11.2 Releasing:
2521 * If there is no persistent reservation or in response to a persistent
2522 * reservation release request from a registered I_T nexus that is not a
2523 * persistent reservation holder (see 5.7.10), the device server shall
2526 * a) Not release the persistent reservation, if any;
2527 * b) Not remove any registrations; and
2528 * c) Complete the command with GOOD status.
2530 spin_lock(&dev
->dev_reservation_lock
);
2531 pr_res_holder
= dev
->dev_pr_res_holder
;
2532 if (!pr_res_holder
) {
2534 * No persistent reservation, return GOOD status.
2536 spin_unlock(&dev
->dev_reservation_lock
);
2537 goto out_put_pr_reg
;
2539 if ((pr_res_holder
->pr_res_type
== PR_TYPE_WRITE_EXCLUSIVE_ALLREG
) ||
2540 (pr_res_holder
->pr_res_type
== PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
))
2543 if ((all_reg
== 0) && (pr_res_holder
!= pr_reg
)) {
2545 * Non 'All Registrants' PR Type cases..
2546 * Release request from a registered I_T nexus that is not a
2547 * persistent reservation holder. return GOOD status.
2549 spin_unlock(&dev
->dev_reservation_lock
);
2550 goto out_put_pr_reg
;
2554 * From spc4r17 Section 5.7.11.2 Releasing:
2556 * Only the persistent reservation holder (see 5.7.10) is allowed to
2557 * release a persistent reservation.
2559 * An application client releases the persistent reservation by issuing
2560 * a PERSISTENT RESERVE OUT command with RELEASE service action through
2561 * an I_T nexus that is a persistent reservation holder with the
2562 * following parameters:
2564 * a) RESERVATION KEY field set to the value of the reservation key
2565 * that is registered with the logical unit for the I_T nexus;
2567 if (res_key
!= pr_reg
->pr_res_key
) {
2568 pr_err("SPC-3 PR RELEASE: Received res_key: 0x%016Lx"
2569 " does not match existing SA REGISTER res_key:"
2570 " 0x%016Lx\n", res_key
, pr_reg
->pr_res_key
);
2571 spin_unlock(&dev
->dev_reservation_lock
);
2572 ret
= TCM_RESERVATION_CONFLICT
;
2573 goto out_put_pr_reg
;
2576 * From spc4r17 Section 5.7.11.2 Releasing and above:
2578 * b) TYPE field and SCOPE field set to match the persistent
2579 * reservation being released.
2581 if ((pr_res_holder
->pr_res_type
!= type
) ||
2582 (pr_res_holder
->pr_res_scope
!= scope
)) {
2583 struct se_node_acl
*pr_res_nacl
= pr_res_holder
->pr_reg_nacl
;
2584 pr_err("SPC-3 PR RELEASE: Attempted to release"
2585 " reservation from [%s]: %s with different TYPE "
2586 "and/or SCOPE while reservation already held by"
2587 " [%s]: %s, returning RESERVATION_CONFLICT\n",
2588 cmd
->se_tfo
->get_fabric_name(),
2589 se_sess
->se_node_acl
->initiatorname
,
2590 pr_res_nacl
->se_tpg
->se_tpg_tfo
->get_fabric_name(),
2591 pr_res_holder
->pr_reg_nacl
->initiatorname
);
2593 spin_unlock(&dev
->dev_reservation_lock
);
2594 ret
= TCM_RESERVATION_CONFLICT
;
2595 goto out_put_pr_reg
;
2598 * In response to a persistent reservation release request from the
2599 * persistent reservation holder the device server shall perform a
2600 * release by doing the following as an uninterrupted series of actions:
2601 * a) Release the persistent reservation;
2602 * b) Not remove any registration(s);
2603 * c) If the released persistent reservation is a registrants only type
2604 * or all registrants type persistent reservation,
2605 * the device server shall establish a unit attention condition for
2606 * the initiator port associated with every regis-
2607 * tered I_T nexus other than I_T nexus on which the PERSISTENT
2608 * RESERVE OUT command with RELEASE service action was received,
2609 * with the additional sense code set to RESERVATIONS RELEASED; and
2610 * d) If the persistent reservation is of any other type, the device
2611 * server shall not establish a unit attention condition.
2613 __core_scsi3_complete_pro_release(dev
, se_sess
->se_node_acl
,
2616 spin_unlock(&dev
->dev_reservation_lock
);
2618 if ((type
!= PR_TYPE_WRITE_EXCLUSIVE_REGONLY
) &&
2619 (type
!= PR_TYPE_EXCLUSIVE_ACCESS_REGONLY
) &&
2620 (type
!= PR_TYPE_WRITE_EXCLUSIVE_ALLREG
) &&
2621 (type
!= PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
)) {
2623 * If no UNIT ATTENTION conditions will be established for
2624 * PR_TYPE_WRITE_EXCLUSIVE or PR_TYPE_EXCLUSIVE_ACCESS
2625 * go ahead and check for APTPL=1 update+write below
2630 spin_lock(&pr_tmpl
->registration_lock
);
2631 list_for_each_entry(pr_reg_p
, &pr_tmpl
->registration_list
,
2634 * Do not establish a UNIT ATTENTION condition
2635 * for the calling I_T Nexus
2637 if (pr_reg_p
== pr_reg
)
2640 core_scsi3_ua_allocate(pr_reg_p
->pr_reg_nacl
,
2641 pr_reg_p
->pr_res_mapped_lun
,
2642 0x2A, ASCQ_2AH_RESERVATIONS_RELEASED
);
2644 spin_unlock(&pr_tmpl
->registration_lock
);
2647 if (pr_tmpl
->pr_aptpl_active
)
2648 core_scsi3_update_and_write_aptpl(cmd
->se_dev
, true);
2651 core_scsi3_put_pr_reg(pr_reg
);
2655 static sense_reason_t
2656 core_scsi3_emulate_pro_clear(struct se_cmd
*cmd
, u64 res_key
)
2658 struct se_device
*dev
= cmd
->se_dev
;
2659 struct se_node_acl
*pr_reg_nacl
;
2660 struct se_session
*se_sess
= cmd
->se_sess
;
2661 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
2662 struct t10_pr_registration
*pr_reg
, *pr_reg_tmp
, *pr_reg_n
, *pr_res_holder
;
2663 u32 pr_res_mapped_lun
= 0;
2664 int calling_it_nexus
= 0;
2666 * Locate the existing *pr_reg via struct se_node_acl pointers
2668 pr_reg_n
= core_scsi3_locate_pr_reg(cmd
->se_dev
,
2669 se_sess
->se_node_acl
, se_sess
);
2671 pr_err("SPC-3 PR: Unable to locate"
2672 " PR_REGISTERED *pr_reg for CLEAR\n");
2673 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
2676 * From spc4r17 section 5.7.11.6, Clearing:
2678 * Any application client may release the persistent reservation and
2679 * remove all registrations from a device server by issuing a
2680 * PERSISTENT RESERVE OUT command with CLEAR service action through a
2681 * registered I_T nexus with the following parameter:
2683 * a) RESERVATION KEY field set to the value of the reservation key
2684 * that is registered with the logical unit for the I_T nexus.
2686 if (res_key
!= pr_reg_n
->pr_res_key
) {
2687 pr_err("SPC-3 PR REGISTER: Received"
2688 " res_key: 0x%016Lx does not match"
2689 " existing SA REGISTER res_key:"
2690 " 0x%016Lx\n", res_key
, pr_reg_n
->pr_res_key
);
2691 core_scsi3_put_pr_reg(pr_reg_n
);
2692 return TCM_RESERVATION_CONFLICT
;
2695 * a) Release the persistent reservation, if any;
2697 spin_lock(&dev
->dev_reservation_lock
);
2698 pr_res_holder
= dev
->dev_pr_res_holder
;
2699 if (pr_res_holder
) {
2700 struct se_node_acl
*pr_res_nacl
= pr_res_holder
->pr_reg_nacl
;
2701 __core_scsi3_complete_pro_release(dev
, pr_res_nacl
,
2702 pr_res_holder
, 0, 0);
2704 spin_unlock(&dev
->dev_reservation_lock
);
2706 * b) Remove all registration(s) (see spc4r17 5.7.7);
2708 spin_lock(&pr_tmpl
->registration_lock
);
2709 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
,
2710 &pr_tmpl
->registration_list
, pr_reg_list
) {
2712 calling_it_nexus
= (pr_reg_n
== pr_reg
) ? 1 : 0;
2713 pr_reg_nacl
= pr_reg
->pr_reg_nacl
;
2714 pr_res_mapped_lun
= pr_reg
->pr_res_mapped_lun
;
2715 __core_scsi3_free_registration(dev
, pr_reg
, NULL
,
2718 * e) Establish a unit attention condition for the initiator
2719 * port associated with every registered I_T nexus other
2720 * than the I_T nexus on which the PERSISTENT RESERVE OUT
2721 * command with CLEAR service action was received, with the
2722 * additional sense code set to RESERVATIONS PREEMPTED.
2724 if (!calling_it_nexus
)
2725 core_scsi3_ua_allocate(pr_reg_nacl
, pr_res_mapped_lun
,
2726 0x2A, ASCQ_2AH_RESERVATIONS_PREEMPTED
);
2728 spin_unlock(&pr_tmpl
->registration_lock
);
2730 pr_debug("SPC-3 PR [%s] Service Action: CLEAR complete\n",
2731 cmd
->se_tfo
->get_fabric_name());
2733 core_scsi3_update_and_write_aptpl(cmd
->se_dev
, false);
2735 core_scsi3_pr_generation(dev
);
2740 * Called with struct se_device->dev_reservation_lock held.
2742 static void __core_scsi3_complete_pro_preempt(
2743 struct se_device
*dev
,
2744 struct t10_pr_registration
*pr_reg
,
2745 struct list_head
*preempt_and_abort_list
,
2748 enum preempt_type preempt_type
)
2750 struct se_node_acl
*nacl
= pr_reg
->pr_reg_nacl
;
2751 struct target_core_fabric_ops
*tfo
= nacl
->se_tpg
->se_tpg_tfo
;
2752 char i_buf
[PR_REG_ISID_ID_LEN
];
2754 memset(i_buf
, 0, PR_REG_ISID_ID_LEN
);
2755 core_pr_dump_initiator_port(pr_reg
, i_buf
, PR_REG_ISID_ID_LEN
);
2757 * Do an implict RELEASE of the existing reservation.
2759 if (dev
->dev_pr_res_holder
)
2760 __core_scsi3_complete_pro_release(dev
, nacl
,
2761 dev
->dev_pr_res_holder
, 0, 0);
2763 dev
->dev_pr_res_holder
= pr_reg
;
2764 pr_reg
->pr_res_holder
= 1;
2765 pr_reg
->pr_res_type
= type
;
2766 pr_reg
->pr_res_scope
= scope
;
2768 pr_debug("SPC-3 PR [%s] Service Action: PREEMPT%s created new"
2769 " reservation holder TYPE: %s ALL_TG_PT: %d\n",
2770 tfo
->get_fabric_name(), (preempt_type
== PREEMPT_AND_ABORT
) ? "_AND_ABORT" : "",
2771 core_scsi3_pr_dump_type(type
),
2772 (pr_reg
->pr_reg_all_tg_pt
) ? 1 : 0);
2773 pr_debug("SPC-3 PR [%s] PREEMPT%s from Node: %s%s\n",
2774 tfo
->get_fabric_name(), (preempt_type
== PREEMPT_AND_ABORT
) ? "_AND_ABORT" : "",
2775 nacl
->initiatorname
, i_buf
);
2777 * For PREEMPT_AND_ABORT, add the preempting reservation's
2778 * struct t10_pr_registration to the list that will be compared
2779 * against received CDBs..
2781 if (preempt_and_abort_list
)
2782 list_add_tail(&pr_reg
->pr_reg_abort_list
,
2783 preempt_and_abort_list
);
2786 static void core_scsi3_release_preempt_and_abort(
2787 struct list_head
*preempt_and_abort_list
,
2788 struct t10_pr_registration
*pr_reg_holder
)
2790 struct t10_pr_registration
*pr_reg
, *pr_reg_tmp
;
2792 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
, preempt_and_abort_list
,
2793 pr_reg_abort_list
) {
2795 list_del(&pr_reg
->pr_reg_abort_list
);
2796 if (pr_reg_holder
== pr_reg
)
2798 if (pr_reg
->pr_res_holder
) {
2799 pr_warn("pr_reg->pr_res_holder still set\n");
2803 pr_reg
->pr_reg_deve
= NULL
;
2804 pr_reg
->pr_reg_nacl
= NULL
;
2805 kmem_cache_free(t10_pr_reg_cache
, pr_reg
);
2809 static sense_reason_t
2810 core_scsi3_pro_preempt(struct se_cmd
*cmd
, int type
, int scope
, u64 res_key
,
2811 u64 sa_res_key
, enum preempt_type preempt_type
)
2813 struct se_device
*dev
= cmd
->se_dev
;
2814 struct se_node_acl
*pr_reg_nacl
;
2815 struct se_session
*se_sess
= cmd
->se_sess
;
2816 LIST_HEAD(preempt_and_abort_list
);
2817 struct t10_pr_registration
*pr_reg
, *pr_reg_tmp
, *pr_reg_n
, *pr_res_holder
;
2818 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
2819 u32 pr_res_mapped_lun
= 0;
2820 int all_reg
= 0, calling_it_nexus
= 0, released_regs
= 0;
2821 int prh_type
= 0, prh_scope
= 0;
2824 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
2826 pr_reg_n
= core_scsi3_locate_pr_reg(cmd
->se_dev
, se_sess
->se_node_acl
,
2829 pr_err("SPC-3 PR: Unable to locate"
2830 " PR_REGISTERED *pr_reg for PREEMPT%s\n",
2831 (preempt_type
== PREEMPT_AND_ABORT
) ? "_AND_ABORT" : "");
2832 return TCM_RESERVATION_CONFLICT
;
2834 if (pr_reg_n
->pr_res_key
!= res_key
) {
2835 core_scsi3_put_pr_reg(pr_reg_n
);
2836 return TCM_RESERVATION_CONFLICT
;
2838 if (scope
!= PR_SCOPE_LU_SCOPE
) {
2839 pr_err("SPC-3 PR: Illegal SCOPE: 0x%02x\n", scope
);
2840 core_scsi3_put_pr_reg(pr_reg_n
);
2841 return TCM_INVALID_PARAMETER_LIST
;
2844 spin_lock(&dev
->dev_reservation_lock
);
2845 pr_res_holder
= dev
->dev_pr_res_holder
;
2846 if (pr_res_holder
&&
2847 ((pr_res_holder
->pr_res_type
== PR_TYPE_WRITE_EXCLUSIVE_ALLREG
) ||
2848 (pr_res_holder
->pr_res_type
== PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
)))
2851 if (!all_reg
&& !sa_res_key
) {
2852 spin_unlock(&dev
->dev_reservation_lock
);
2853 core_scsi3_put_pr_reg(pr_reg_n
);
2854 return TCM_INVALID_PARAMETER_LIST
;
2857 * From spc4r17, section 5.7.11.4.4 Removing Registrations:
2859 * If the SERVICE ACTION RESERVATION KEY field does not identify a
2860 * persistent reservation holder or there is no persistent reservation
2861 * holder (i.e., there is no persistent reservation), then the device
2862 * server shall perform a preempt by doing the following in an
2863 * uninterrupted series of actions. (See below..)
2865 if (!pr_res_holder
|| (pr_res_holder
->pr_res_key
!= sa_res_key
)) {
2867 * No existing or SA Reservation Key matching reservations..
2869 * PROUT SA PREEMPT with All Registrant type reservations are
2870 * allowed to be processed without a matching SA Reservation Key
2872 spin_lock(&pr_tmpl
->registration_lock
);
2873 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
,
2874 &pr_tmpl
->registration_list
, pr_reg_list
) {
2876 * Removing of registrations in non all registrants
2877 * type reservations without a matching SA reservation
2880 * a) Remove the registrations for all I_T nexuses
2881 * specified by the SERVICE ACTION RESERVATION KEY
2883 * b) Ignore the contents of the SCOPE and TYPE fields;
2884 * c) Process tasks as defined in 5.7.1; and
2885 * d) Establish a unit attention condition for the
2886 * initiator port associated with every I_T nexus
2887 * that lost its registration other than the I_T
2888 * nexus on which the PERSISTENT RESERVE OUT command
2889 * was received, with the additional sense code set
2890 * to REGISTRATIONS PREEMPTED.
2893 if (pr_reg
->pr_res_key
!= sa_res_key
)
2896 calling_it_nexus
= (pr_reg_n
== pr_reg
) ? 1 : 0;
2897 pr_reg_nacl
= pr_reg
->pr_reg_nacl
;
2898 pr_res_mapped_lun
= pr_reg
->pr_res_mapped_lun
;
2899 __core_scsi3_free_registration(dev
, pr_reg
,
2900 (preempt_type
== PREEMPT_AND_ABORT
) ? &preempt_and_abort_list
:
2901 NULL
, calling_it_nexus
);
2905 * Case for any existing all registrants type
2906 * reservation, follow logic in spc4r17 section
2907 * 5.7.11.4 Preempting, Table 52 and Figure 7.
2909 * For a ZERO SA Reservation key, release
2910 * all other registrations and do an implict
2911 * release of active persistent reservation.
2913 * For a non-ZERO SA Reservation key, only
2914 * release the matching reservation key from
2918 (pr_reg
->pr_res_key
!= sa_res_key
))
2921 calling_it_nexus
= (pr_reg_n
== pr_reg
) ? 1 : 0;
2922 if (calling_it_nexus
)
2925 pr_reg_nacl
= pr_reg
->pr_reg_nacl
;
2926 pr_res_mapped_lun
= pr_reg
->pr_res_mapped_lun
;
2927 __core_scsi3_free_registration(dev
, pr_reg
,
2928 (preempt_type
== PREEMPT_AND_ABORT
) ? &preempt_and_abort_list
:
2932 if (!calling_it_nexus
)
2933 core_scsi3_ua_allocate(pr_reg_nacl
,
2934 pr_res_mapped_lun
, 0x2A,
2935 ASCQ_2AH_REGISTRATIONS_PREEMPTED
);
2937 spin_unlock(&pr_tmpl
->registration_lock
);
2939 * If a PERSISTENT RESERVE OUT with a PREEMPT service action or
2940 * a PREEMPT AND ABORT service action sets the SERVICE ACTION
2941 * RESERVATION KEY field to a value that does not match any
2942 * registered reservation key, then the device server shall
2943 * complete the command with RESERVATION CONFLICT status.
2945 if (!released_regs
) {
2946 spin_unlock(&dev
->dev_reservation_lock
);
2947 core_scsi3_put_pr_reg(pr_reg_n
);
2948 return TCM_RESERVATION_CONFLICT
;
2951 * For an existing all registrants type reservation
2952 * with a zero SA rservation key, preempt the existing
2953 * reservation with the new PR type and scope.
2955 if (pr_res_holder
&& all_reg
&& !(sa_res_key
)) {
2956 __core_scsi3_complete_pro_preempt(dev
, pr_reg_n
,
2957 (preempt_type
== PREEMPT_AND_ABORT
) ? &preempt_and_abort_list
: NULL
,
2958 type
, scope
, preempt_type
);
2960 if (preempt_type
== PREEMPT_AND_ABORT
)
2961 core_scsi3_release_preempt_and_abort(
2962 &preempt_and_abort_list
, pr_reg_n
);
2964 spin_unlock(&dev
->dev_reservation_lock
);
2966 if (pr_tmpl
->pr_aptpl_active
)
2967 core_scsi3_update_and_write_aptpl(cmd
->se_dev
, true);
2969 core_scsi3_put_pr_reg(pr_reg_n
);
2970 core_scsi3_pr_generation(cmd
->se_dev
);
2974 * The PREEMPTing SA reservation key matches that of the
2975 * existing persistent reservation, first, we check if
2976 * we are preempting our own reservation.
2977 * From spc4r17, section 5.7.11.4.3 Preempting
2978 * persistent reservations and registration handling
2980 * If an all registrants persistent reservation is not
2981 * present, it is not an error for the persistent
2982 * reservation holder to preempt itself (i.e., a
2983 * PERSISTENT RESERVE OUT with a PREEMPT service action
2984 * or a PREEMPT AND ABORT service action with the
2985 * SERVICE ACTION RESERVATION KEY value equal to the
2986 * persistent reservation holder's reservation key that
2987 * is received from the persistent reservation holder).
2988 * In that case, the device server shall establish the
2989 * new persistent reservation and maintain the
2992 prh_type
= pr_res_holder
->pr_res_type
;
2993 prh_scope
= pr_res_holder
->pr_res_scope
;
2995 * If the SERVICE ACTION RESERVATION KEY field identifies a
2996 * persistent reservation holder (see 5.7.10), the device
2997 * server shall perform a preempt by doing the following as
2998 * an uninterrupted series of actions:
3000 * a) Release the persistent reservation for the holder
3001 * identified by the SERVICE ACTION RESERVATION KEY field;
3003 if (pr_reg_n
!= pr_res_holder
)
3004 __core_scsi3_complete_pro_release(dev
,
3005 pr_res_holder
->pr_reg_nacl
,
3006 dev
->dev_pr_res_holder
, 0, 0);
3008 * b) Remove the registrations for all I_T nexuses identified
3009 * by the SERVICE ACTION RESERVATION KEY field, except the
3010 * I_T nexus that is being used for the PERSISTENT RESERVE
3011 * OUT command. If an all registrants persistent reservation
3012 * is present and the SERVICE ACTION RESERVATION KEY field
3013 * is set to zero, then all registrations shall be removed
3014 * except for that of the I_T nexus that is being used for
3015 * the PERSISTENT RESERVE OUT command;
3017 spin_lock(&pr_tmpl
->registration_lock
);
3018 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
,
3019 &pr_tmpl
->registration_list
, pr_reg_list
) {
3021 calling_it_nexus
= (pr_reg_n
== pr_reg
) ? 1 : 0;
3022 if (calling_it_nexus
)
3025 if (pr_reg
->pr_res_key
!= sa_res_key
)
3028 pr_reg_nacl
= pr_reg
->pr_reg_nacl
;
3029 pr_res_mapped_lun
= pr_reg
->pr_res_mapped_lun
;
3030 __core_scsi3_free_registration(dev
, pr_reg
,
3031 (preempt_type
== PREEMPT_AND_ABORT
) ? &preempt_and_abort_list
: NULL
,
3034 * e) Establish a unit attention condition for the initiator
3035 * port associated with every I_T nexus that lost its
3036 * persistent reservation and/or registration, with the
3037 * additional sense code set to REGISTRATIONS PREEMPTED;
3039 core_scsi3_ua_allocate(pr_reg_nacl
, pr_res_mapped_lun
, 0x2A,
3040 ASCQ_2AH_REGISTRATIONS_PREEMPTED
);
3042 spin_unlock(&pr_tmpl
->registration_lock
);
3044 * c) Establish a persistent reservation for the preempting
3045 * I_T nexus using the contents of the SCOPE and TYPE fields;
3047 __core_scsi3_complete_pro_preempt(dev
, pr_reg_n
,
3048 (preempt_type
== PREEMPT_AND_ABORT
) ? &preempt_and_abort_list
: NULL
,
3049 type
, scope
, preempt_type
);
3051 * d) Process tasks as defined in 5.7.1;
3053 * f) If the type or scope has changed, then for every I_T nexus
3054 * whose reservation key was not removed, except for the I_T
3055 * nexus on which the PERSISTENT RESERVE OUT command was
3056 * received, the device server shall establish a unit
3057 * attention condition for the initiator port associated with
3058 * that I_T nexus, with the additional sense code set to
3059 * RESERVATIONS RELEASED. If the type or scope have not
3060 * changed, then no unit attention condition(s) shall be
3061 * established for this reason.
3063 if ((prh_type
!= type
) || (prh_scope
!= scope
)) {
3064 spin_lock(&pr_tmpl
->registration_lock
);
3065 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
,
3066 &pr_tmpl
->registration_list
, pr_reg_list
) {
3068 calling_it_nexus
= (pr_reg_n
== pr_reg
) ? 1 : 0;
3069 if (calling_it_nexus
)
3072 core_scsi3_ua_allocate(pr_reg
->pr_reg_nacl
,
3073 pr_reg
->pr_res_mapped_lun
, 0x2A,
3074 ASCQ_2AH_RESERVATIONS_RELEASED
);
3076 spin_unlock(&pr_tmpl
->registration_lock
);
3078 spin_unlock(&dev
->dev_reservation_lock
);
3080 * Call LUN_RESET logic upon list of struct t10_pr_registration,
3081 * All received CDBs for the matching existing reservation and
3082 * registrations undergo ABORT_TASK logic.
3084 * From there, core_scsi3_release_preempt_and_abort() will
3085 * release every registration in the list (which have already
3086 * been removed from the primary pr_reg list), except the
3087 * new persistent reservation holder, the calling Initiator Port.
3089 if (preempt_type
== PREEMPT_AND_ABORT
) {
3090 core_tmr_lun_reset(dev
, NULL
, &preempt_and_abort_list
, cmd
);
3091 core_scsi3_release_preempt_and_abort(&preempt_and_abort_list
,
3095 if (pr_tmpl
->pr_aptpl_active
)
3096 core_scsi3_update_and_write_aptpl(cmd
->se_dev
, true);
3098 core_scsi3_put_pr_reg(pr_reg_n
);
3099 core_scsi3_pr_generation(cmd
->se_dev
);
3103 static sense_reason_t
3104 core_scsi3_emulate_pro_preempt(struct se_cmd
*cmd
, int type
, int scope
,
3105 u64 res_key
, u64 sa_res_key
, enum preempt_type preempt_type
)
3108 case PR_TYPE_WRITE_EXCLUSIVE
:
3109 case PR_TYPE_EXCLUSIVE_ACCESS
:
3110 case PR_TYPE_WRITE_EXCLUSIVE_REGONLY
:
3111 case PR_TYPE_EXCLUSIVE_ACCESS_REGONLY
:
3112 case PR_TYPE_WRITE_EXCLUSIVE_ALLREG
:
3113 case PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
:
3114 return core_scsi3_pro_preempt(cmd
, type
, scope
, res_key
,
3115 sa_res_key
, preempt_type
);
3117 pr_err("SPC-3 PR: Unknown Service Action PREEMPT%s"
3118 " Type: 0x%02x\n", (preempt_type
== PREEMPT_AND_ABORT
) ? "_AND_ABORT" : "", type
);
3119 return TCM_INVALID_CDB_FIELD
;
3124 static sense_reason_t
3125 core_scsi3_emulate_pro_register_and_move(struct se_cmd
*cmd
, u64 res_key
,
3126 u64 sa_res_key
, int aptpl
, int unreg
)
3128 struct se_session
*se_sess
= cmd
->se_sess
;
3129 struct se_device
*dev
= cmd
->se_dev
;
3130 struct se_dev_entry
*dest_se_deve
= NULL
;
3131 struct se_lun
*se_lun
= cmd
->se_lun
;
3132 struct se_node_acl
*pr_res_nacl
, *pr_reg_nacl
, *dest_node_acl
= NULL
;
3133 struct se_port
*se_port
;
3134 struct se_portal_group
*se_tpg
, *dest_se_tpg
= NULL
;
3135 struct target_core_fabric_ops
*dest_tf_ops
= NULL
, *tf_ops
;
3136 struct t10_pr_registration
*pr_reg
, *pr_res_holder
, *dest_pr_reg
;
3137 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
3139 unsigned char *initiator_str
;
3140 char *iport_ptr
= NULL
, dest_iport
[64], i_buf
[PR_REG_ISID_ID_LEN
];
3141 u32 tid_len
, tmp_tid_len
;
3142 int new_reg
= 0, type
, scope
, matching_iname
;
3144 unsigned short rtpi
;
3145 unsigned char proto_ident
;
3147 if (!se_sess
|| !se_lun
) {
3148 pr_err("SPC-3 PR: se_sess || struct se_lun is NULL!\n");
3149 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3152 memset(dest_iport
, 0, 64);
3153 memset(i_buf
, 0, PR_REG_ISID_ID_LEN
);
3154 se_tpg
= se_sess
->se_tpg
;
3155 tf_ops
= se_tpg
->se_tpg_tfo
;
3157 * Follow logic from spc4r17 Section 5.7.8, Table 50 --
3158 * Register behaviors for a REGISTER AND MOVE service action
3160 * Locate the existing *pr_reg via struct se_node_acl pointers
3162 pr_reg
= core_scsi3_locate_pr_reg(cmd
->se_dev
, se_sess
->se_node_acl
,
3165 pr_err("SPC-3 PR: Unable to locate PR_REGISTERED"
3166 " *pr_reg for REGISTER_AND_MOVE\n");
3167 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3170 * The provided reservation key much match the existing reservation key
3171 * provided during this initiator's I_T nexus registration.
3173 if (res_key
!= pr_reg
->pr_res_key
) {
3174 pr_warn("SPC-3 PR REGISTER_AND_MOVE: Received"
3175 " res_key: 0x%016Lx does not match existing SA REGISTER"
3176 " res_key: 0x%016Lx\n", res_key
, pr_reg
->pr_res_key
);
3177 ret
= TCM_RESERVATION_CONFLICT
;
3178 goto out_put_pr_reg
;
3181 * The service active reservation key needs to be non zero
3184 pr_warn("SPC-3 PR REGISTER_AND_MOVE: Received zero"
3186 ret
= TCM_INVALID_PARAMETER_LIST
;
3187 goto out_put_pr_reg
;
3191 * Determine the Relative Target Port Identifier where the reservation
3192 * will be moved to for the TransportID containing SCSI initiator WWN
3195 buf
= transport_kmap_data_sg(cmd
);
3197 ret
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3198 goto out_put_pr_reg
;
3201 rtpi
= (buf
[18] & 0xff) << 8;
3202 rtpi
|= buf
[19] & 0xff;
3203 tid_len
= (buf
[20] & 0xff) << 24;
3204 tid_len
|= (buf
[21] & 0xff) << 16;
3205 tid_len
|= (buf
[22] & 0xff) << 8;
3206 tid_len
|= buf
[23] & 0xff;
3207 transport_kunmap_data_sg(cmd
);
3210 if ((tid_len
+ 24) != cmd
->data_length
) {
3211 pr_err("SPC-3 PR: Illegal tid_len: %u + 24 byte header"
3212 " does not equal CDB data_length: %u\n", tid_len
,
3214 ret
= TCM_INVALID_PARAMETER_LIST
;
3215 goto out_put_pr_reg
;
3218 spin_lock(&dev
->se_port_lock
);
3219 list_for_each_entry(se_port
, &dev
->dev_sep_list
, sep_list
) {
3220 if (se_port
->sep_rtpi
!= rtpi
)
3222 dest_se_tpg
= se_port
->sep_tpg
;
3225 dest_tf_ops
= dest_se_tpg
->se_tpg_tfo
;
3229 atomic_inc(&dest_se_tpg
->tpg_pr_ref_count
);
3230 smp_mb__after_atomic_inc();
3231 spin_unlock(&dev
->se_port_lock
);
3233 if (core_scsi3_tpg_depend_item(dest_se_tpg
)) {
3234 pr_err("core_scsi3_tpg_depend_item() failed"
3235 " for dest_se_tpg\n");
3236 atomic_dec(&dest_se_tpg
->tpg_pr_ref_count
);
3237 smp_mb__after_atomic_dec();
3238 ret
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3239 goto out_put_pr_reg
;
3242 spin_lock(&dev
->se_port_lock
);
3245 spin_unlock(&dev
->se_port_lock
);
3247 if (!dest_se_tpg
|| !dest_tf_ops
) {
3248 pr_err("SPC-3 PR REGISTER_AND_MOVE: Unable to locate"
3249 " fabric ops from Relative Target Port Identifier:"
3251 ret
= TCM_INVALID_PARAMETER_LIST
;
3252 goto out_put_pr_reg
;
3255 buf
= transport_kmap_data_sg(cmd
);
3257 ret
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3258 goto out_put_pr_reg
;
3260 proto_ident
= (buf
[24] & 0x0f);
3262 pr_debug("SPC-3 PR REGISTER_AND_MOVE: Extracted Protocol Identifier:"
3263 " 0x%02x\n", proto_ident
);
3265 if (proto_ident
!= dest_tf_ops
->get_fabric_proto_ident(dest_se_tpg
)) {
3266 pr_err("SPC-3 PR REGISTER_AND_MOVE: Received"
3267 " proto_ident: 0x%02x does not match ident: 0x%02x"
3268 " from fabric: %s\n", proto_ident
,
3269 dest_tf_ops
->get_fabric_proto_ident(dest_se_tpg
),
3270 dest_tf_ops
->get_fabric_name());
3271 ret
= TCM_INVALID_PARAMETER_LIST
;
3274 if (dest_tf_ops
->tpg_parse_pr_out_transport_id
== NULL
) {
3275 pr_err("SPC-3 PR REGISTER_AND_MOVE: Fabric does not"
3276 " containg a valid tpg_parse_pr_out_transport_id"
3277 " function pointer\n");
3278 ret
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3281 initiator_str
= dest_tf_ops
->tpg_parse_pr_out_transport_id(dest_se_tpg
,
3282 (const char *)&buf
[24], &tmp_tid_len
, &iport_ptr
);
3283 if (!initiator_str
) {
3284 pr_err("SPC-3 PR REGISTER_AND_MOVE: Unable to locate"
3285 " initiator_str from Transport ID\n");
3286 ret
= TCM_INVALID_PARAMETER_LIST
;
3290 transport_kunmap_data_sg(cmd
);
3293 pr_debug("SPC-3 PR [%s] Extracted initiator %s identifier: %s"
3294 " %s\n", dest_tf_ops
->get_fabric_name(), (iport_ptr
!= NULL
) ?
3295 "port" : "device", initiator_str
, (iport_ptr
!= NULL
) ?
3298 * If a PERSISTENT RESERVE OUT command with a REGISTER AND MOVE service
3299 * action specifies a TransportID that is the same as the initiator port
3300 * of the I_T nexus for the command received, then the command shall
3301 * be terminated with CHECK CONDITION status, with the sense key set to
3302 * ILLEGAL REQUEST, and the additional sense code set to INVALID FIELD
3303 * IN PARAMETER LIST.
3305 pr_reg_nacl
= pr_reg
->pr_reg_nacl
;
3306 matching_iname
= (!strcmp(initiator_str
,
3307 pr_reg_nacl
->initiatorname
)) ? 1 : 0;
3308 if (!matching_iname
)
3309 goto after_iport_check
;
3311 if (!iport_ptr
|| !pr_reg
->isid_present_at_reg
) {
3312 pr_err("SPC-3 PR REGISTER_AND_MOVE: TransportID: %s"
3313 " matches: %s on received I_T Nexus\n", initiator_str
,
3314 pr_reg_nacl
->initiatorname
);
3315 ret
= TCM_INVALID_PARAMETER_LIST
;
3318 if (!strcmp(iport_ptr
, pr_reg
->pr_reg_isid
)) {
3319 pr_err("SPC-3 PR REGISTER_AND_MOVE: TransportID: %s %s"
3320 " matches: %s %s on received I_T Nexus\n",
3321 initiator_str
, iport_ptr
, pr_reg_nacl
->initiatorname
,
3322 pr_reg
->pr_reg_isid
);
3323 ret
= TCM_INVALID_PARAMETER_LIST
;
3328 * Locate the destination struct se_node_acl from the received Transport ID
3330 spin_lock_irq(&dest_se_tpg
->acl_node_lock
);
3331 dest_node_acl
= __core_tpg_get_initiator_node_acl(dest_se_tpg
,
3333 if (dest_node_acl
) {
3334 atomic_inc(&dest_node_acl
->acl_pr_ref_count
);
3335 smp_mb__after_atomic_inc();
3337 spin_unlock_irq(&dest_se_tpg
->acl_node_lock
);
3339 if (!dest_node_acl
) {
3340 pr_err("Unable to locate %s dest_node_acl for"
3341 " TransportID%s\n", dest_tf_ops
->get_fabric_name(),
3343 ret
= TCM_INVALID_PARAMETER_LIST
;
3347 if (core_scsi3_nodeacl_depend_item(dest_node_acl
)) {
3348 pr_err("core_scsi3_nodeacl_depend_item() for"
3349 " dest_node_acl\n");
3350 atomic_dec(&dest_node_acl
->acl_pr_ref_count
);
3351 smp_mb__after_atomic_dec();
3352 dest_node_acl
= NULL
;
3353 ret
= TCM_INVALID_PARAMETER_LIST
;
3357 pr_debug("SPC-3 PR REGISTER_AND_MOVE: Found %s dest_node_acl:"
3358 " %s from TransportID\n", dest_tf_ops
->get_fabric_name(),
3359 dest_node_acl
->initiatorname
);
3362 * Locate the struct se_dev_entry pointer for the matching RELATIVE TARGET
3365 dest_se_deve
= core_get_se_deve_from_rtpi(dest_node_acl
, rtpi
);
3366 if (!dest_se_deve
) {
3367 pr_err("Unable to locate %s dest_se_deve from RTPI:"
3368 " %hu\n", dest_tf_ops
->get_fabric_name(), rtpi
);
3369 ret
= TCM_INVALID_PARAMETER_LIST
;
3373 if (core_scsi3_lunacl_depend_item(dest_se_deve
)) {
3374 pr_err("core_scsi3_lunacl_depend_item() failed\n");
3375 atomic_dec(&dest_se_deve
->pr_ref_count
);
3376 smp_mb__after_atomic_dec();
3377 dest_se_deve
= NULL
;
3378 ret
= TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3382 pr_debug("SPC-3 PR REGISTER_AND_MOVE: Located %s node %s LUN"
3383 " ACL for dest_se_deve->mapped_lun: %u\n",
3384 dest_tf_ops
->get_fabric_name(), dest_node_acl
->initiatorname
,
3385 dest_se_deve
->mapped_lun
);
3388 * A persistent reservation needs to already existing in order to
3389 * successfully complete the REGISTER_AND_MOVE service action..
3391 spin_lock(&dev
->dev_reservation_lock
);
3392 pr_res_holder
= dev
->dev_pr_res_holder
;
3393 if (!pr_res_holder
) {
3394 pr_warn("SPC-3 PR REGISTER_AND_MOVE: No reservation"
3395 " currently held\n");
3396 spin_unlock(&dev
->dev_reservation_lock
);
3397 ret
= TCM_INVALID_CDB_FIELD
;
3401 * The received on I_T Nexus must be the reservation holder.
3403 * From spc4r17 section 5.7.8 Table 50 --
3404 * Register behaviors for a REGISTER AND MOVE service action
3406 if (pr_res_holder
!= pr_reg
) {
3407 pr_warn("SPC-3 PR REGISTER_AND_MOVE: Calling I_T"
3408 " Nexus is not reservation holder\n");
3409 spin_unlock(&dev
->dev_reservation_lock
);
3410 ret
= TCM_RESERVATION_CONFLICT
;
3414 * From spc4r17 section 5.7.8: registering and moving reservation
3416 * If a PERSISTENT RESERVE OUT command with a REGISTER AND MOVE service
3417 * action is received and the established persistent reservation is a
3418 * Write Exclusive - All Registrants type or Exclusive Access -
3419 * All Registrants type reservation, then the command shall be completed
3420 * with RESERVATION CONFLICT status.
3422 if ((pr_res_holder
->pr_res_type
== PR_TYPE_WRITE_EXCLUSIVE_ALLREG
) ||
3423 (pr_res_holder
->pr_res_type
== PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
)) {
3424 pr_warn("SPC-3 PR REGISTER_AND_MOVE: Unable to move"
3425 " reservation for type: %s\n",
3426 core_scsi3_pr_dump_type(pr_res_holder
->pr_res_type
));
3427 spin_unlock(&dev
->dev_reservation_lock
);
3428 ret
= TCM_RESERVATION_CONFLICT
;
3431 pr_res_nacl
= pr_res_holder
->pr_reg_nacl
;
3433 * b) Ignore the contents of the (received) SCOPE and TYPE fields;
3435 type
= pr_res_holder
->pr_res_type
;
3436 scope
= pr_res_holder
->pr_res_type
;
3438 * c) Associate the reservation key specified in the SERVICE ACTION
3439 * RESERVATION KEY field with the I_T nexus specified as the
3440 * destination of the register and move, where:
3441 * A) The I_T nexus is specified by the TransportID and the
3442 * RELATIVE TARGET PORT IDENTIFIER field (see 6.14.4); and
3443 * B) Regardless of the TransportID format used, the association for
3444 * the initiator port is based on either the initiator port name
3445 * (see 3.1.71) on SCSI transport protocols where port names are
3446 * required or the initiator port identifier (see 3.1.70) on SCSI
3447 * transport protocols where port names are not required;
3448 * d) Register the reservation key specified in the SERVICE ACTION
3449 * RESERVATION KEY field;
3450 * e) Retain the reservation key specified in the SERVICE ACTION
3451 * RESERVATION KEY field and associated information;
3453 * Also, It is not an error for a REGISTER AND MOVE service action to
3454 * register an I_T nexus that is already registered with the same
3455 * reservation key or a different reservation key.
3457 dest_pr_reg
= __core_scsi3_locate_pr_reg(dev
, dest_node_acl
,
3460 if (core_scsi3_alloc_registration(cmd
->se_dev
,
3461 dest_node_acl
, dest_se_deve
, iport_ptr
,
3462 sa_res_key
, 0, aptpl
, 2, 1)) {
3463 spin_unlock(&dev
->dev_reservation_lock
);
3464 ret
= TCM_INVALID_PARAMETER_LIST
;
3467 dest_pr_reg
= __core_scsi3_locate_pr_reg(dev
, dest_node_acl
,
3472 * f) Release the persistent reservation for the persistent reservation
3473 * holder (i.e., the I_T nexus on which the
3475 __core_scsi3_complete_pro_release(dev
, pr_res_nacl
,
3476 dev
->dev_pr_res_holder
, 0, 0);
3478 * g) Move the persistent reservation to the specified I_T nexus using
3479 * the same scope and type as the persistent reservation released in
3482 dev
->dev_pr_res_holder
= dest_pr_reg
;
3483 dest_pr_reg
->pr_res_holder
= 1;
3484 dest_pr_reg
->pr_res_type
= type
;
3485 pr_reg
->pr_res_scope
= scope
;
3486 core_pr_dump_initiator_port(pr_reg
, i_buf
, PR_REG_ISID_ID_LEN
);
3488 * Increment PRGeneration for existing registrations..
3491 dest_pr_reg
->pr_res_generation
= pr_tmpl
->pr_generation
++;
3492 spin_unlock(&dev
->dev_reservation_lock
);
3494 pr_debug("SPC-3 PR [%s] Service Action: REGISTER_AND_MOVE"
3495 " created new reservation holder TYPE: %s on object RTPI:"
3496 " %hu PRGeneration: 0x%08x\n", dest_tf_ops
->get_fabric_name(),
3497 core_scsi3_pr_dump_type(type
), rtpi
,
3498 dest_pr_reg
->pr_res_generation
);
3499 pr_debug("SPC-3 PR Successfully moved reservation from"
3500 " %s Fabric Node: %s%s -> %s Fabric Node: %s %s\n",
3501 tf_ops
->get_fabric_name(), pr_reg_nacl
->initiatorname
,
3502 i_buf
, dest_tf_ops
->get_fabric_name(),
3503 dest_node_acl
->initiatorname
, (iport_ptr
!= NULL
) ?
3506 * It is now safe to release configfs group dependencies for destination
3507 * of Transport ID Initiator Device/Port Identifier
3509 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
);
3513 * h) If the UNREG bit is set to one, unregister (see 5.7.11.3) the I_T
3514 * nexus on which PERSISTENT RESERVE OUT command was received.
3517 spin_lock(&pr_tmpl
->registration_lock
);
3518 __core_scsi3_free_registration(dev
, pr_reg
, NULL
, 1);
3519 spin_unlock(&pr_tmpl
->registration_lock
);
3521 core_scsi3_put_pr_reg(pr_reg
);
3523 core_scsi3_update_and_write_aptpl(cmd
->se_dev
, aptpl
);
3525 transport_kunmap_data_sg(cmd
);
3527 core_scsi3_put_pr_reg(dest_pr_reg
);
3531 transport_kunmap_data_sg(cmd
);
3533 core_scsi3_lunacl_undepend_item(dest_se_deve
);
3535 core_scsi3_nodeacl_undepend_item(dest_node_acl
);
3536 core_scsi3_tpg_undepend_item(dest_se_tpg
);
3539 core_scsi3_put_pr_reg(pr_reg
);
3543 static unsigned long long core_scsi3_extract_reservation_key(unsigned char *cdb
)
3545 unsigned int __v1
, __v2
;
3547 __v1
= (cdb
[0] << 24) | (cdb
[1] << 16) | (cdb
[2] << 8) | cdb
[3];
3548 __v2
= (cdb
[4] << 24) | (cdb
[5] << 16) | (cdb
[6] << 8) | cdb
[7];
3550 return ((unsigned long long)__v2
) | (unsigned long long)__v1
<< 32;
3554 * See spc4r17 section 6.14 Table 170
3557 target_scsi3_emulate_pr_out(struct se_cmd
*cmd
)
3559 unsigned char *cdb
= &cmd
->t_task_cdb
[0];
3561 u64 res_key
, sa_res_key
;
3562 int sa
, scope
, type
, aptpl
;
3563 int spec_i_pt
= 0, all_tg_pt
= 0, unreg
= 0;
3567 * Following spc2r20 5.5.1 Reservations overview:
3569 * If a logical unit has been reserved by any RESERVE command and is
3570 * still reserved by any initiator, all PERSISTENT RESERVE IN and all
3571 * PERSISTENT RESERVE OUT commands shall conflict regardless of
3572 * initiator or service action and shall terminate with a RESERVATION
3575 if (cmd
->se_dev
->dev_reservation_flags
& DRF_SPC2_RESERVATIONS
) {
3576 pr_err("Received PERSISTENT_RESERVE CDB while legacy"
3577 " SPC-2 reservation is held, returning"
3578 " RESERVATION_CONFLICT\n");
3579 return TCM_RESERVATION_CONFLICT
;
3583 * FIXME: A NULL struct se_session pointer means an this is not coming from
3584 * a $FABRIC_MOD's nexus, but from internal passthrough ops.
3587 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3589 if (cmd
->data_length
< 24) {
3590 pr_warn("SPC-PR: Received PR OUT parameter list"
3591 " length too small: %u\n", cmd
->data_length
);
3592 return TCM_INVALID_PARAMETER_LIST
;
3596 * From the PERSISTENT_RESERVE_OUT command descriptor block (CDB)
3598 sa
= (cdb
[1] & 0x1f);
3599 scope
= (cdb
[2] & 0xf0);
3600 type
= (cdb
[2] & 0x0f);
3602 buf
= transport_kmap_data_sg(cmd
);
3604 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3607 * From PERSISTENT_RESERVE_OUT parameter list (payload)
3609 res_key
= core_scsi3_extract_reservation_key(&buf
[0]);
3610 sa_res_key
= core_scsi3_extract_reservation_key(&buf
[8]);
3612 * REGISTER_AND_MOVE uses a different SA parameter list containing
3613 * SCSI TransportIDs.
3615 if (sa
!= PRO_REGISTER_AND_MOVE
) {
3616 spec_i_pt
= (buf
[20] & 0x08);
3617 all_tg_pt
= (buf
[20] & 0x04);
3618 aptpl
= (buf
[20] & 0x01);
3620 aptpl
= (buf
[17] & 0x01);
3621 unreg
= (buf
[17] & 0x02);
3623 transport_kunmap_data_sg(cmd
);
3627 * SPEC_I_PT=1 is only valid for Service action: REGISTER
3629 if (spec_i_pt
&& ((cdb
[1] & 0x1f) != PRO_REGISTER
))
3630 return TCM_INVALID_PARAMETER_LIST
;
3633 * From spc4r17 section 6.14:
3635 * If the SPEC_I_PT bit is set to zero, the service action is not
3636 * REGISTER AND MOVE, and the parameter list length is not 24, then
3637 * the command shall be terminated with CHECK CONDITION status, with
3638 * the sense key set to ILLEGAL REQUEST, and the additional sense
3639 * code set to PARAMETER LIST LENGTH ERROR.
3641 if (!spec_i_pt
&& ((cdb
[1] & 0x1f) != PRO_REGISTER_AND_MOVE
) &&
3642 (cmd
->data_length
!= 24)) {
3643 pr_warn("SPC-PR: Received PR OUT illegal parameter"
3644 " list length: %u\n", cmd
->data_length
);
3645 return TCM_INVALID_PARAMETER_LIST
;
3649 * (core_scsi3_emulate_pro_* function parameters
3650 * are defined by spc4r17 Table 174:
3651 * PERSISTENT_RESERVE_OUT service actions and valid parameters.
3655 ret
= core_scsi3_emulate_pro_register(cmd
,
3656 res_key
, sa_res_key
, aptpl
, all_tg_pt
, spec_i_pt
, REGISTER
);
3659 ret
= core_scsi3_emulate_pro_reserve(cmd
, type
, scope
, res_key
);
3662 ret
= core_scsi3_emulate_pro_release(cmd
, type
, scope
, res_key
);
3665 ret
= core_scsi3_emulate_pro_clear(cmd
, res_key
);
3668 ret
= core_scsi3_emulate_pro_preempt(cmd
, type
, scope
,
3669 res_key
, sa_res_key
, PREEMPT
);
3671 case PRO_PREEMPT_AND_ABORT
:
3672 ret
= core_scsi3_emulate_pro_preempt(cmd
, type
, scope
,
3673 res_key
, sa_res_key
, PREEMPT_AND_ABORT
);
3675 case PRO_REGISTER_AND_IGNORE_EXISTING_KEY
:
3676 ret
= core_scsi3_emulate_pro_register(cmd
,
3677 0, sa_res_key
, aptpl
, all_tg_pt
, spec_i_pt
, REGISTER_AND_IGNORE_EXISTING_KEY
);
3679 case PRO_REGISTER_AND_MOVE
:
3680 ret
= core_scsi3_emulate_pro_register_and_move(cmd
, res_key
,
3681 sa_res_key
, aptpl
, unreg
);
3684 pr_err("Unknown PERSISTENT_RESERVE_OUT service"
3685 " action: 0x%02x\n", cdb
[1] & 0x1f);
3686 return TCM_INVALID_CDB_FIELD
;
3690 target_complete_cmd(cmd
, GOOD
);
3695 * PERSISTENT_RESERVE_IN Service Action READ_KEYS
3697 * See spc4r17 section 5.7.6.2 and section 6.13.2, Table 160
3699 static sense_reason_t
3700 core_scsi3_pri_read_keys(struct se_cmd
*cmd
)
3702 struct se_device
*dev
= cmd
->se_dev
;
3703 struct t10_pr_registration
*pr_reg
;
3705 u32 add_len
= 0, off
= 8;
3707 if (cmd
->data_length
< 8) {
3708 pr_err("PRIN SA READ_KEYS SCSI Data Length: %u"
3709 " too small\n", cmd
->data_length
);
3710 return TCM_INVALID_CDB_FIELD
;
3713 buf
= transport_kmap_data_sg(cmd
);
3715 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3717 buf
[0] = ((dev
->t10_pr
.pr_generation
>> 24) & 0xff);
3718 buf
[1] = ((dev
->t10_pr
.pr_generation
>> 16) & 0xff);
3719 buf
[2] = ((dev
->t10_pr
.pr_generation
>> 8) & 0xff);
3720 buf
[3] = (dev
->t10_pr
.pr_generation
& 0xff);
3722 spin_lock(&dev
->t10_pr
.registration_lock
);
3723 list_for_each_entry(pr_reg
, &dev
->t10_pr
.registration_list
,
3726 * Check for overflow of 8byte PRI READ_KEYS payload and
3727 * next reservation key list descriptor.
3729 if ((add_len
+ 8) > (cmd
->data_length
- 8))
3732 buf
[off
++] = ((pr_reg
->pr_res_key
>> 56) & 0xff);
3733 buf
[off
++] = ((pr_reg
->pr_res_key
>> 48) & 0xff);
3734 buf
[off
++] = ((pr_reg
->pr_res_key
>> 40) & 0xff);
3735 buf
[off
++] = ((pr_reg
->pr_res_key
>> 32) & 0xff);
3736 buf
[off
++] = ((pr_reg
->pr_res_key
>> 24) & 0xff);
3737 buf
[off
++] = ((pr_reg
->pr_res_key
>> 16) & 0xff);
3738 buf
[off
++] = ((pr_reg
->pr_res_key
>> 8) & 0xff);
3739 buf
[off
++] = (pr_reg
->pr_res_key
& 0xff);
3743 spin_unlock(&dev
->t10_pr
.registration_lock
);
3745 buf
[4] = ((add_len
>> 24) & 0xff);
3746 buf
[5] = ((add_len
>> 16) & 0xff);
3747 buf
[6] = ((add_len
>> 8) & 0xff);
3748 buf
[7] = (add_len
& 0xff);
3750 transport_kunmap_data_sg(cmd
);
3756 * PERSISTENT_RESERVE_IN Service Action READ_RESERVATION
3758 * See spc4r17 section 5.7.6.3 and section 6.13.3.2 Table 161 and 162
3760 static sense_reason_t
3761 core_scsi3_pri_read_reservation(struct se_cmd
*cmd
)
3763 struct se_device
*dev
= cmd
->se_dev
;
3764 struct t10_pr_registration
*pr_reg
;
3767 u32 add_len
= 16; /* Hardcoded to 16 when a reservation is held. */
3769 if (cmd
->data_length
< 8) {
3770 pr_err("PRIN SA READ_RESERVATIONS SCSI Data Length: %u"
3771 " too small\n", cmd
->data_length
);
3772 return TCM_INVALID_CDB_FIELD
;
3775 buf
= transport_kmap_data_sg(cmd
);
3777 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3779 buf
[0] = ((dev
->t10_pr
.pr_generation
>> 24) & 0xff);
3780 buf
[1] = ((dev
->t10_pr
.pr_generation
>> 16) & 0xff);
3781 buf
[2] = ((dev
->t10_pr
.pr_generation
>> 8) & 0xff);
3782 buf
[3] = (dev
->t10_pr
.pr_generation
& 0xff);
3784 spin_lock(&dev
->dev_reservation_lock
);
3785 pr_reg
= dev
->dev_pr_res_holder
;
3788 * Set the hardcoded Additional Length
3790 buf
[4] = ((add_len
>> 24) & 0xff);
3791 buf
[5] = ((add_len
>> 16) & 0xff);
3792 buf
[6] = ((add_len
>> 8) & 0xff);
3793 buf
[7] = (add_len
& 0xff);
3795 if (cmd
->data_length
< 22)
3799 * Set the Reservation key.
3801 * From spc4r17, section 5.7.10:
3802 * A persistent reservation holder has its reservation key
3803 * returned in the parameter data from a PERSISTENT
3804 * RESERVE IN command with READ RESERVATION service action as
3806 * a) For a persistent reservation of the type Write Exclusive
3807 * - All Registrants or Exclusive Access  All Regitrants,
3808 * the reservation key shall be set to zero; or
3809 * b) For all other persistent reservation types, the
3810 * reservation key shall be set to the registered
3811 * reservation key for the I_T nexus that holds the
3812 * persistent reservation.
3814 if ((pr_reg
->pr_res_type
== PR_TYPE_WRITE_EXCLUSIVE_ALLREG
) ||
3815 (pr_reg
->pr_res_type
== PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
))
3818 pr_res_key
= pr_reg
->pr_res_key
;
3820 buf
[8] = ((pr_res_key
>> 56) & 0xff);
3821 buf
[9] = ((pr_res_key
>> 48) & 0xff);
3822 buf
[10] = ((pr_res_key
>> 40) & 0xff);
3823 buf
[11] = ((pr_res_key
>> 32) & 0xff);
3824 buf
[12] = ((pr_res_key
>> 24) & 0xff);
3825 buf
[13] = ((pr_res_key
>> 16) & 0xff);
3826 buf
[14] = ((pr_res_key
>> 8) & 0xff);
3827 buf
[15] = (pr_res_key
& 0xff);
3829 * Set the SCOPE and TYPE
3831 buf
[21] = (pr_reg
->pr_res_scope
& 0xf0) |
3832 (pr_reg
->pr_res_type
& 0x0f);
3836 spin_unlock(&dev
->dev_reservation_lock
);
3837 transport_kunmap_data_sg(cmd
);
3843 * PERSISTENT_RESERVE_IN Service Action REPORT_CAPABILITIES
3845 * See spc4r17 section 6.13.4 Table 165
3847 static sense_reason_t
3848 core_scsi3_pri_report_capabilities(struct se_cmd
*cmd
)
3850 struct se_device
*dev
= cmd
->se_dev
;
3851 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
3853 u16 add_len
= 8; /* Hardcoded to 8. */
3855 if (cmd
->data_length
< 6) {
3856 pr_err("PRIN SA REPORT_CAPABILITIES SCSI Data Length:"
3857 " %u too small\n", cmd
->data_length
);
3858 return TCM_INVALID_CDB_FIELD
;
3861 buf
= transport_kmap_data_sg(cmd
);
3863 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3865 buf
[0] = ((add_len
<< 8) & 0xff);
3866 buf
[1] = (add_len
& 0xff);
3867 buf
[2] |= 0x10; /* CRH: Compatible Reservation Hanlding bit. */
3868 buf
[2] |= 0x08; /* SIP_C: Specify Initiator Ports Capable bit */
3869 buf
[2] |= 0x04; /* ATP_C: All Target Ports Capable bit */
3870 buf
[2] |= 0x01; /* PTPL_C: Persistence across Target Power Loss bit */
3872 * We are filling in the PERSISTENT RESERVATION TYPE MASK below, so
3873 * set the TMV: Task Mask Valid bit.
3877 * Change ALLOW COMMANDs to 0x20 or 0x40 later from Table 166
3879 buf
[3] |= 0x10; /* ALLOW COMMANDs field 001b */
3881 * PTPL_A: Persistence across Target Power Loss Active bit
3883 if (pr_tmpl
->pr_aptpl_active
)
3886 * Setup the PERSISTENT RESERVATION TYPE MASK from Table 167
3888 buf
[4] |= 0x80; /* PR_TYPE_EXCLUSIVE_ACCESS_ALLREG */
3889 buf
[4] |= 0x40; /* PR_TYPE_EXCLUSIVE_ACCESS_REGONLY */
3890 buf
[4] |= 0x20; /* PR_TYPE_WRITE_EXCLUSIVE_REGONLY */
3891 buf
[4] |= 0x08; /* PR_TYPE_EXCLUSIVE_ACCESS */
3892 buf
[4] |= 0x02; /* PR_TYPE_WRITE_EXCLUSIVE */
3893 buf
[5] |= 0x01; /* PR_TYPE_EXCLUSIVE_ACCESS_ALLREG */
3895 transport_kunmap_data_sg(cmd
);
3901 * PERSISTENT_RESERVE_IN Service Action READ_FULL_STATUS
3903 * See spc4r17 section 6.13.5 Table 168 and 169
3905 static sense_reason_t
3906 core_scsi3_pri_read_full_status(struct se_cmd
*cmd
)
3908 struct se_device
*dev
= cmd
->se_dev
;
3909 struct se_node_acl
*se_nacl
;
3910 struct se_portal_group
*se_tpg
;
3911 struct t10_pr_registration
*pr_reg
, *pr_reg_tmp
;
3912 struct t10_reservation
*pr_tmpl
= &dev
->t10_pr
;
3914 u32 add_desc_len
= 0, add_len
= 0, desc_len
, exp_desc_len
;
3915 u32 off
= 8; /* off into first Full Status descriptor */
3916 int format_code
= 0, pr_res_type
= 0, pr_res_scope
= 0;
3917 bool all_reg
= false;
3919 if (cmd
->data_length
< 8) {
3920 pr_err("PRIN SA READ_FULL_STATUS SCSI Data Length: %u"
3921 " too small\n", cmd
->data_length
);
3922 return TCM_INVALID_CDB_FIELD
;
3925 buf
= transport_kmap_data_sg(cmd
);
3927 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE
;
3929 buf
[0] = ((dev
->t10_pr
.pr_generation
>> 24) & 0xff);
3930 buf
[1] = ((dev
->t10_pr
.pr_generation
>> 16) & 0xff);
3931 buf
[2] = ((dev
->t10_pr
.pr_generation
>> 8) & 0xff);
3932 buf
[3] = (dev
->t10_pr
.pr_generation
& 0xff);
3934 spin_lock(&dev
->dev_reservation_lock
);
3935 if (dev
->dev_pr_res_holder
) {
3936 struct t10_pr_registration
*pr_holder
= dev
->dev_pr_res_holder
;
3938 if (pr_holder
->pr_res_type
== PR_TYPE_WRITE_EXCLUSIVE_ALLREG
||
3939 pr_holder
->pr_res_type
== PR_TYPE_EXCLUSIVE_ACCESS_ALLREG
) {
3941 pr_res_type
= pr_holder
->pr_res_type
;
3942 pr_res_scope
= pr_holder
->pr_res_scope
;
3945 spin_unlock(&dev
->dev_reservation_lock
);
3947 spin_lock(&pr_tmpl
->registration_lock
);
3948 list_for_each_entry_safe(pr_reg
, pr_reg_tmp
,
3949 &pr_tmpl
->registration_list
, pr_reg_list
) {
3951 se_nacl
= pr_reg
->pr_reg_nacl
;
3952 se_tpg
= pr_reg
->pr_reg_nacl
->se_tpg
;
3955 atomic_inc(&pr_reg
->pr_res_holders
);
3956 smp_mb__after_atomic_inc();
3957 spin_unlock(&pr_tmpl
->registration_lock
);
3959 * Determine expected length of $FABRIC_MOD specific
3960 * TransportID full status descriptor..
3962 exp_desc_len
= se_tpg
->se_tpg_tfo
->tpg_get_pr_transport_id_len(
3963 se_tpg
, se_nacl
, pr_reg
, &format_code
);
3965 if ((exp_desc_len
+ add_len
) > cmd
->data_length
) {
3966 pr_warn("SPC-3 PRIN READ_FULL_STATUS ran"
3967 " out of buffer: %d\n", cmd
->data_length
);
3968 spin_lock(&pr_tmpl
->registration_lock
);
3969 atomic_dec(&pr_reg
->pr_res_holders
);
3970 smp_mb__after_atomic_dec();
3974 * Set RESERVATION KEY
3976 buf
[off
++] = ((pr_reg
->pr_res_key
>> 56) & 0xff);
3977 buf
[off
++] = ((pr_reg
->pr_res_key
>> 48) & 0xff);
3978 buf
[off
++] = ((pr_reg
->pr_res_key
>> 40) & 0xff);
3979 buf
[off
++] = ((pr_reg
->pr_res_key
>> 32) & 0xff);
3980 buf
[off
++] = ((pr_reg
->pr_res_key
>> 24) & 0xff);
3981 buf
[off
++] = ((pr_reg
->pr_res_key
>> 16) & 0xff);
3982 buf
[off
++] = ((pr_reg
->pr_res_key
>> 8) & 0xff);
3983 buf
[off
++] = (pr_reg
->pr_res_key
& 0xff);
3984 off
+= 4; /* Skip Over Reserved area */
3987 * Set ALL_TG_PT bit if PROUT SA REGISTER had this set.
3989 if (pr_reg
->pr_reg_all_tg_pt
)
3992 * The struct se_lun pointer will be present for the
3993 * reservation holder for PR_HOLDER bit.
3995 * Also, if this registration is the reservation
3996 * holder or there is an All Registrants reservation
3997 * active, fill in SCOPE and TYPE in the next byte.
3999 if (pr_reg
->pr_res_holder
) {
4001 buf
[off
++] = (pr_reg
->pr_res_scope
& 0xf0) |
4002 (pr_reg
->pr_res_type
& 0x0f);
4003 } else if (all_reg
) {
4005 buf
[off
++] = (pr_res_scope
& 0xf0) |
4006 (pr_res_type
& 0x0f);
4011 off
+= 4; /* Skip over reserved area */
4013 * From spc4r17 6.3.15:
4015 * If the ALL_TG_PT bit set to zero, the RELATIVE TARGET PORT
4016 * IDENTIFIER field contains the relative port identifier (see
4017 * 3.1.120) of the target port that is part of the I_T nexus
4018 * described by this full status descriptor. If the ALL_TG_PT
4019 * bit is set to one, the contents of the RELATIVE TARGET PORT
4020 * IDENTIFIER field are not defined by this standard.
4022 if (!pr_reg
->pr_reg_all_tg_pt
) {
4023 struct se_port
*port
= pr_reg
->pr_reg_tg_pt_lun
->lun_sep
;
4025 buf
[off
++] = ((port
->sep_rtpi
>> 8) & 0xff);
4026 buf
[off
++] = (port
->sep_rtpi
& 0xff);
4028 off
+= 2; /* Skip over RELATIVE TARGET PORT IDENTIFIER */
4031 * Now, have the $FABRIC_MOD fill in the protocol identifier
4033 desc_len
= se_tpg
->se_tpg_tfo
->tpg_get_pr_transport_id(se_tpg
,
4034 se_nacl
, pr_reg
, &format_code
, &buf
[off
+4]);
4036 spin_lock(&pr_tmpl
->registration_lock
);
4037 atomic_dec(&pr_reg
->pr_res_holders
);
4038 smp_mb__after_atomic_dec();
4040 * Set the ADDITIONAL DESCRIPTOR LENGTH
4042 buf
[off
++] = ((desc_len
>> 24) & 0xff);
4043 buf
[off
++] = ((desc_len
>> 16) & 0xff);
4044 buf
[off
++] = ((desc_len
>> 8) & 0xff);
4045 buf
[off
++] = (desc_len
& 0xff);
4047 * Size of full desctipor header minus TransportID
4048 * containing $FABRIC_MOD specific) initiator device/port
4051 * See spc4r17 Section 6.13.5 Table 169
4053 add_desc_len
= (24 + desc_len
);
4056 add_len
+= add_desc_len
;
4058 spin_unlock(&pr_tmpl
->registration_lock
);
4060 * Set ADDITIONAL_LENGTH
4062 buf
[4] = ((add_len
>> 24) & 0xff);
4063 buf
[5] = ((add_len
>> 16) & 0xff);
4064 buf
[6] = ((add_len
>> 8) & 0xff);
4065 buf
[7] = (add_len
& 0xff);
4067 transport_kunmap_data_sg(cmd
);
4073 target_scsi3_emulate_pr_in(struct se_cmd
*cmd
)
4078 * Following spc2r20 5.5.1 Reservations overview:
4080 * If a logical unit has been reserved by any RESERVE command and is
4081 * still reserved by any initiator, all PERSISTENT RESERVE IN and all
4082 * PERSISTENT RESERVE OUT commands shall conflict regardless of
4083 * initiator or service action and shall terminate with a RESERVATION
4086 if (cmd
->se_dev
->dev_reservation_flags
& DRF_SPC2_RESERVATIONS
) {
4087 pr_err("Received PERSISTENT_RESERVE CDB while legacy"
4088 " SPC-2 reservation is held, returning"
4089 " RESERVATION_CONFLICT\n");
4090 return TCM_RESERVATION_CONFLICT
;
4093 switch (cmd
->t_task_cdb
[1] & 0x1f) {
4095 ret
= core_scsi3_pri_read_keys(cmd
);
4097 case PRI_READ_RESERVATION
:
4098 ret
= core_scsi3_pri_read_reservation(cmd
);
4100 case PRI_REPORT_CAPABILITIES
:
4101 ret
= core_scsi3_pri_report_capabilities(cmd
);
4103 case PRI_READ_FULL_STATUS
:
4104 ret
= core_scsi3_pri_read_full_status(cmd
);
4107 pr_err("Unknown PERSISTENT_RESERVE_IN service"
4108 " action: 0x%02x\n", cmd
->t_task_cdb
[1] & 0x1f);
4109 return TCM_INVALID_CDB_FIELD
;
4113 target_complete_cmd(cmd
, GOOD
);
4118 target_check_reservation(struct se_cmd
*cmd
)
4120 struct se_device
*dev
= cmd
->se_dev
;
4125 if (dev
->se_hba
->hba_flags
& HBA_FLAGS_INTERNAL_USE
)
4127 if (dev
->transport
->transport_type
== TRANSPORT_PLUGIN_PHBA_PDEV
)
4130 spin_lock(&dev
->dev_reservation_lock
);
4131 if (dev
->dev_reservation_flags
& DRF_SPC2_RESERVATIONS
)
4132 ret
= target_scsi2_reservation_check(cmd
);
4134 ret
= target_scsi3_pr_reservation_check(cmd
);
4135 spin_unlock(&dev
->dev_reservation_lock
);